summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMystery Man 535 <uid535@mandriva.org>2002-12-03 20:02:29 +0000
committerMystery Man 535 <uid535@mandriva.org>2002-12-03 20:02:29 +0000
commit6eb04547105e92f777b167c83d9cf2113b84b941 (patch)
tree9c89e726365ca895940a9f7e0be3a1bac274dc01
parent289a674b450b2ea2ddbd02577c88d8db44e02403 (diff)
downloaddrakx-6eb04547105e92f777b167c83d9cf2113b84b941.tar
drakx-6eb04547105e92f777b167c83d9cf2113b84b941.tar.gz
drakx-6eb04547105e92f777b167c83d9cf2113b84b941.tar.bz2
drakx-6eb04547105e92f777b167c83d9cf2113b84b941.tar.xz
drakx-6eb04547105e92f777b167c83d9cf2113b84b941.zip
workaround perl sprintf bug when some parameters are utf8 and some not
-rw-r--r--perl-install/c/stuff.xs.pl26
-rw-r--r--perl-install/common.pm9
2 files changed, 34 insertions, 1 deletions
diff --git a/perl-install/c/stuff.xs.pl b/perl-install/c/stuff.xs.pl
index 60eb94b92..b1ec93bd2 100644
--- a/perl-install/c/stuff.xs.pl
+++ b/perl-install/c/stuff.xs.pl
@@ -520,6 +520,32 @@ iconv(s, from_charset, to_charset)
OUTPUT:
RETVAL
+int
+is_tagged_utf8(s)
+ SV *s
+ CODE:
+ RETVAL = SvUTF8(s);
+ OUTPUT:
+ RETVAL
+
+void
+set_tagged_utf8(s)
+ SV *s
+ CODE:
+ SvUTF8_on(s);
+
+void
+upgrade_utf8(s)
+ SV *s
+ CODE:
+ sv_utf8_upgrade(s);
+
+void
+unset_tagged_utf8(s)
+ SV *s
+ CODE:
+ SvUTF8_off(s);
+
char *
standard_charset()
CODE:
diff --git a/perl-install/common.pm b/perl-install/common.pm
index 0e431cbe4..ce86aa4a6 100644
--- a/perl-install/common.pm
+++ b/perl-install/common.pm
@@ -25,9 +25,16 @@ $SECTORSIZE = 512;
#-#####################################################################################
+sub sprintf_fixutf8 {
+ my $need_upgrade;
+ $need_upgrade |= to_bool(c::is_tagged_utf8($_)) + 1 foreach @_;
+ if ($need_upgrade == 3) { c::upgrade_utf8($_) foreach @_ };
+ sprintf shift, @_;
+}
+
sub N {
my $s = shift @_; my $t = translate($s);
- sprintf $t, @_;
+ sprintf_fixutf8 $t, @_;
}
sub N_ { $_[0] }
07193bb5a1'>perl-install/share/po/ca.po4758
-rw-r--r--perl-install/share/po/cy.po5436
-rw-r--r--perl-install/share/po/da.po4770
-rw-r--r--perl-install/share/po/de.po5782
-rw-r--r--perl-install/share/po/el.po4508
-rw-r--r--perl-install/share/po/eo.po4282
-rw-r--r--perl-install/share/po/es.po5346
-rw-r--r--perl-install/share/po/et.po4464
-rw-r--r--perl-install/share/po/eu.po4983
-rw-r--r--perl-install/share/po/fi.po4561
-rw-r--r--perl-install/share/po/ga.po4230
-rw-r--r--perl-install/share/po/gl.po4277
-rw-r--r--perl-install/share/po/hr.po4750
-rw-r--r--perl-install/share/po/id.po4713
-rw-r--r--perl-install/share/po/is.po4247
-rw-r--r--perl-install/share/po/it.po5271
-rw-r--r--perl-install/share/po/ja.po4710
-rw-r--r--perl-install/share/po/ko.po4563
-rw-r--r--perl-install/share/po/lt.po4283
-rw-r--r--perl-install/share/po/lv.po4285
-rw-r--r--perl-install/share/po/mt.po5655
-rw-r--r--perl-install/share/po/nl.po6767
-rw-r--r--perl-install/share/po/no.po835
-rw-r--r--perl-install/share/po/pt.po4581
-rw-r--r--perl-install/share/po/pt_BR.po4527
-rw-r--r--perl-install/share/po/ro.po6506
-rw-r--r--perl-install/share/po/ru.po11563
-rw-r--r--perl-install/share/po/sk.po5841
-rw-r--r--perl-install/share/po/sl.po4225
-rw-r--r--perl-install/share/po/sp.po839
-rw-r--r--perl-install/share/po/sr.po4677
-rw-r--r--perl-install/share/po/sv.po4757
-rw-r--r--perl-install/share/po/ta.po4491
-rw-r--r--perl-install/share/po/th.po4257
-rw-r--r--perl-install/share/po/tr.po5630
-rw-r--r--perl-install/share/po/uk.po4528
-rw-r--r--perl-install/share/po/vi.po12407
-rw-r--r--perl-install/share/po/wa.po4788
46 files changed, 122918 insertions, 97454 deletions
diff --git a/perl-install/share/po/DrakX.pot b/perl-install/share/po/DrakX.pot
index d8f2b5744..fd99f2f55 100644
--- a/perl-install/share/po/DrakX.pot
+++ b/perl-install/share/po/DrakX.pot
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2002-08-31 16:29+0200\n"
+"POT-Creation-Date: 2002-09-02 20:14+0200\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"
@@ -182,7 +182,7 @@ msgid "Ok"
msgstr ""
#: ../../Xconfig/main.pm_.c:121 ../../diskdrake/dav.pm_.c:24
-#: ../../harddrake/ui.pm_.c:95 ../../printerdrake.pm_.c:3135
+#: ../../harddrake/ui.pm_.c:98 ../../printerdrake.pm_.c:3155
#: ../../standalone/logdrake_.c:224
msgid "Quit"
msgstr ""
@@ -208,7 +208,7 @@ msgstr ""
msgid "Generic"
msgstr ""
-#: ../../Xconfig/monitor.pm_.c:99 ../../harddrake/ui.pm_.c:36
+#: ../../Xconfig/monitor.pm_.c:99 ../../harddrake/ui.pm_.c:37
msgid "Vendor"
msgstr ""
@@ -279,7 +279,7 @@ msgstr ""
#: ../../interactive/newt.pm_.c:174 ../../interactive/stdio.pm_.c:39
#: ../../interactive/stdio.pm_.c:143 ../../my_gtk.pm_.c:158
#: ../../my_gtk.pm_.c:162 ../../my_gtk.pm_.c:287
-#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:2113
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:2124
#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3926
#: ../../standalone/drakbackup_.c:3959 ../../standalone/drakbackup_.c:3985
#: ../../standalone/drakbackup_.c:4012 ../../standalone/drakbackup_.c:4039
@@ -471,7 +471,7 @@ msgstr ""
#: ../../any.pm_.c:170 ../../any.pm_.c:788
#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1095 ../../network/modem.pm_.c:48
+#: ../../install_steps_interactive.pm_.c:1096 ../../network/modem.pm_.c:48
#: ../../printerdrake.pm_.c:850 ../../printerdrake.pm_.c:965
#: ../../standalone/drakbackup_.c:3528 ../../standalone/drakconnect_.c:624
#: ../../standalone/drakconnect_.c:649
@@ -479,7 +479,7 @@ msgid "Password"
msgstr ""
#: ../../any.pm_.c:171 ../../any.pm_.c:789
-#: ../../install_steps_interactive.pm_.c:1096
+#: ../../install_steps_interactive.pm_.c:1097
msgid "Password (again)"
msgstr ""
@@ -515,12 +515,12 @@ msgstr ""
#: ../../any.pm_.c:184 ../../any.pm_.c:764
#: ../../diskdrake/interactive.pm_.c:1191
-#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1091
msgid "Please try again"
msgstr ""
#: ../../any.pm_.c:184 ../../any.pm_.c:764
-#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1091
msgid "The passwords do not match"
msgstr ""
@@ -572,7 +572,7 @@ msgstr ""
#: ../../any.pm_.c:257 ../../any.pm_.c:776 ../../diskdrake/dav.pm_.c:64
#: ../../diskdrake/hd_gtk.pm_.c:153 ../../diskdrake/removable.pm_.c:27
#: ../../diskdrake/smbnfs_gtk.pm_.c:88 ../../interactive/http.pm_.c:153
-#: ../../printerdrake.pm_.c:3135 ../../standalone/drakbackup_.c:2772
+#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2772
msgid "Done"
msgstr ""
@@ -880,7 +880,7 @@ msgstr ""
msgid "No sharing"
msgstr ""
-#: ../../any.pm_.c:987 ../../install_any.pm_.c:1180 ../../standalone.pm_.c:58
+#: ../../any.pm_.c:987 ../../install_any.pm_.c:1183 ../../standalone.pm_.c:58
#, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr ""
@@ -890,7 +890,7 @@ msgid ""
"You can export using NFS or Samba. Please select which you'd like to use."
msgstr ""
-#: ../../any.pm_.c:998 ../../install_any.pm_.c:1185 ../../standalone.pm_.c:63
+#: ../../any.pm_.c:998 ../../install_any.pm_.c:1188 ../../standalone.pm_.c:63
#, c-format
msgid "Mandatory package %s is missing"
msgstr ""
@@ -1082,8 +1082,8 @@ msgstr ""
msgid "Boot Style Configuration"
msgstr ""
-#: ../../bootlook.pm_.c:78 ../../harddrake/ui.pm_.c:59
-#: ../../harddrake/ui.pm_.c:60 ../../standalone/drakfloppy_.c:81
+#: ../../bootlook.pm_.c:78 ../../harddrake/ui.pm_.c:62
+#: ../../harddrake/ui.pm_.c:63 ../../standalone/drakfloppy_.c:81
#: ../../standalone/logdrake_.c:101
msgid "/_File"
msgstr ""
@@ -1093,7 +1093,7 @@ msgstr ""
msgid "/File/_Quit"
msgstr ""
-#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:60
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:63
#: ../../standalone/drakfloppy_.c:82 ../../standalone/logdrake_.c:107
msgid "<control>Q"
msgstr ""
@@ -2302,205 +2302,213 @@ msgstr ""
msgid "Driver:"
msgstr ""
-#: ../../harddrake/sound.pm_.c:172
+#: ../../harddrake/sound.pm_.c:173
msgid "No known driver"
msgstr ""
-#: ../../harddrake/sound.pm_.c:173
+#: ../../harddrake/sound.pm_.c:174
#, c-format
msgid "There's no known driver for your sound card (%s)"
msgstr ""
-#: ../../harddrake/sound.pm_.c:176
+#: ../../harddrake/sound.pm_.c:177
msgid "Unkown driver"
msgstr ""
-#: ../../harddrake/sound.pm_.c:177
+#: ../../harddrake/sound.pm_.c:178
#, c-format
msgid ""
"The \"%s\" driver for your sound card is unlisted\n"
"\n"
"Please send the output of the \"lspcidrake -v\" command to\n"
-"Thierry Vignaud <tvignaud at mandrakesoft dot com>\n"
-"with subject: unlisted sound driver"
+"<install at mandrakesoft dot com>\n"
+"with subject: unlisted sound driver \"%s\""
msgstr ""
-#: ../../harddrake/ui.pm_.c:15
+#: ../../harddrake/ui.pm_.c:16
msgid "Model"
msgstr ""
-#: ../../harddrake/ui.pm_.c:15
+#: ../../harddrake/ui.pm_.c:16
msgid "hard disk model"
msgstr ""
-#: ../../harddrake/ui.pm_.c:16
+#: ../../harddrake/ui.pm_.c:17
msgid "Channel"
msgstr ""
-#: ../../harddrake/ui.pm_.c:16
+#: ../../harddrake/ui.pm_.c:17
msgid "EIDE/SCSI channel"
msgstr ""
-#: ../../harddrake/ui.pm_.c:18
+#: ../../harddrake/ui.pm_.c:19
msgid "Bus"
msgstr ""
-#: ../../harddrake/ui.pm_.c:19
+#: ../../harddrake/ui.pm_.c:20
msgid ""
"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
msgstr ""
-#: ../../harddrake/ui.pm_.c:20
+#: ../../harddrake/ui.pm_.c:21
msgid "Module"
msgstr ""
-#: ../../harddrake/ui.pm_.c:20
+#: ../../harddrake/ui.pm_.c:21
msgid "the module of the GNU/Linux kernel that handle that device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:21
+#: ../../harddrake/ui.pm_.c:22
msgid "Media class"
msgstr ""
-#: ../../harddrake/ui.pm_.c:21
+#: ../../harddrake/ui.pm_.c:22
msgid "class of hardware device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:22 ../../printerdrake.pm_.c:1517
+#: ../../harddrake/ui.pm_.c:23 ../../printerdrake.pm_.c:1517
msgid "Description"
msgstr ""
-#: ../../harddrake/ui.pm_.c:22
+#: ../../harddrake/ui.pm_.c:23
msgid "this field describe the device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:24
+#: ../../harddrake/ui.pm_.c:25
msgid "Bus identification"
msgstr ""
-#: ../../harddrake/ui.pm_.c:25
+#: ../../harddrake/ui.pm_.c:26
msgid ""
"- PCI and USB devices: this list the vendor, device, subvendor and subdevice "
"PCI/USB ids"
msgstr ""
-#: ../../harddrake/ui.pm_.c:27
+#: ../../harddrake/ui.pm_.c:28
msgid "Location on the bus"
msgstr ""
-#: ../../harddrake/ui.pm_.c:28
+#: ../../harddrake/ui.pm_.c:29
msgid ""
"- pci devices: this gives the PCI slot, device and function of this card\n"
"- eide devices: the device is either a slave or a master device\n"
"- scsi devices: the scsi bus and the scsi device ids"
msgstr ""
-#: ../../harddrake/ui.pm_.c:31
+#: ../../harddrake/ui.pm_.c:32
msgid "Old device file"
msgstr ""
-#: ../../harddrake/ui.pm_.c:32
+#: ../../harddrake/ui.pm_.c:33
msgid "old static device name used in dev package"
msgstr ""
-#: ../../harddrake/ui.pm_.c:33
+#: ../../harddrake/ui.pm_.c:34
msgid "New devfs device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:34
+#: ../../harddrake/ui.pm_.c:35
msgid "new dinamic device name generated by incore kernel devfs"
msgstr ""
-#: ../../harddrake/ui.pm_.c:35
+#: ../../harddrake/ui.pm_.c:36
msgid "Number of buttons"
msgstr ""
-#: ../../harddrake/ui.pm_.c:36
+#: ../../harddrake/ui.pm_.c:37
msgid "the vendor name of the device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:60
+#: ../../harddrake/ui.pm_.c:38
+msgid "Alternative drivers"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:39
+msgid "the list of alternative drivers for this sound card"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:63
msgid "/_Quit"
msgstr ""
-#: ../../harddrake/ui.pm_.c:61 ../../harddrake/ui.pm_.c:62
-#: ../../harddrake/ui.pm_.c:68 ../../standalone/logdrake_.c:110
+#: ../../harddrake/ui.pm_.c:64 ../../harddrake/ui.pm_.c:65
+#: ../../harddrake/ui.pm_.c:71 ../../standalone/logdrake_.c:110
msgid "/_Help"
msgstr ""
-#: ../../harddrake/ui.pm_.c:62
+#: ../../harddrake/ui.pm_.c:65
msgid "/_Help..."
msgstr ""
-#: ../../harddrake/ui.pm_.c:63
+#: ../../harddrake/ui.pm_.c:66
msgid "Harddrake help"
msgstr ""
-#: ../../harddrake/ui.pm_.c:64
+#: ../../harddrake/ui.pm_.c:67
msgid ""
"Description of the fields:\n"
"\n"
msgstr ""
-#: ../../harddrake/ui.pm_.c:68
+#: ../../harddrake/ui.pm_.c:71
msgid "/_About..."
msgstr ""
-#: ../../harddrake/ui.pm_.c:69
+#: ../../harddrake/ui.pm_.c:72
msgid "About Harddrake"
msgstr ""
-#: ../../harddrake/ui.pm_.c:70
+#: ../../harddrake/ui.pm_.c:73
msgid ""
"This is HardDrake, a Mandrake hardware configuration tool.\n"
"Version:"
msgstr ""
-#: ../../harddrake/ui.pm_.c:71
+#: ../../harddrake/ui.pm_.c:74
msgid "Author:"
msgstr ""
-#: ../../harddrake/ui.pm_.c:83
+#: ../../harddrake/ui.pm_.c:86
msgid "Harddrake2 version "
msgstr ""
-#: ../../harddrake/ui.pm_.c:100
+#: ../../harddrake/ui.pm_.c:103
msgid "Detected hardware"
msgstr ""
-#: ../../harddrake/ui.pm_.c:102
+#: ../../harddrake/ui.pm_.c:105
msgid "Information"
msgstr ""
-#: ../../harddrake/ui.pm_.c:105
+#: ../../harddrake/ui.pm_.c:108
msgid "Configure module"
msgstr ""
-#: ../../harddrake/ui.pm_.c:106
+#: ../../harddrake/ui.pm_.c:109
msgid "Run config tool"
msgstr ""
-#: ../../harddrake/ui.pm_.c:110
+#: ../../harddrake/ui.pm_.c:113
msgid "Detection in progress"
msgstr ""
-#: ../../harddrake/ui.pm_.c:110 ../../interactive.pm_.c:391
+#: ../../harddrake/ui.pm_.c:113 ../../interactive.pm_.c:391
msgid "Please wait"
msgstr ""
-#: ../../harddrake/ui.pm_.c:153
+#: ../../harddrake/ui.pm_.c:156
msgid "primary"
msgstr ""
-#: ../../harddrake/ui.pm_.c:153
+#: ../../harddrake/ui.pm_.c:156
msgid "secondary"
msgstr ""
-#: ../../harddrake/ui.pm_.c:190
+#: ../../harddrake/ui.pm_.c:197
msgid "You can configure each parameter of the module here."
msgstr ""
-#: ../../harddrake/ui.pm_.c:206
+#: ../../harddrake/ui.pm_.c:213
#, c-format
msgid "Running \"%s\" ..."
msgstr ""
@@ -3494,7 +3502,7 @@ msgid ""
"order to configure the clock according to the time zone you are in;\n"
"\n"
" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
-"configuration wizard. Consult the correpsonding chapter of the ``User\n"
+"configuration wizard. Consult the corresponding chapter of the ``User\n"
"Guide'' for more information on how to setup a new printer. The interface\n"
"presented there is similar to the one used during installation;\n"
"\n"
@@ -3568,27 +3576,27 @@ msgstr ""
msgid "Can't use broadcast with no NIS domain"
msgstr ""
-#: ../../install_any.pm_.c:859
+#: ../../install_any.pm_.c:862
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr ""
-#: ../../install_any.pm_.c:863
+#: ../../install_any.pm_.c:866
msgid "This floppy is not FAT formatted"
msgstr ""
-#: ../../install_any.pm_.c:875
+#: ../../install_any.pm_.c:878
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
msgstr ""
-#: ../../install_any.pm_.c:898 ../../partition_table.pm_.c:767
+#: ../../install_any.pm_.c:901 ../../partition_table.pm_.c:767
#, c-format
msgid "Error reading file %s"
msgstr ""
-#: ../../install_any.pm_.c:1020
+#: ../../install_any.pm_.c:1023
msgid ""
"An error occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
@@ -3798,7 +3806,7 @@ msgstr ""
msgid "Welcome to %s"
msgstr ""
-#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:771
+#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:772
msgid "No floppy drive available"
msgstr ""
@@ -4153,7 +4161,7 @@ msgid "Are you sure you refuse the licence?"
msgstr ""
#: ../../install_steps_interactive.pm_.c:211
-#: ../../install_steps_interactive.pm_.c:1022
+#: ../../install_steps_interactive.pm_.c:1023
#: ../../standalone/keyboarddrake_.c:31
msgid "Keyboard"
msgstr ""
@@ -4475,141 +4483,141 @@ msgstr ""
msgid "Contacting the mirror to get the list of available packages..."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:944
+#: ../../install_steps_interactive.pm_.c:945
msgid "Which is your timezone?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:949
+#: ../../install_steps_interactive.pm_.c:950
msgid "Hardware clock set to GMT"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:950
+#: ../../install_steps_interactive.pm_.c:951
msgid "Automatic time synchronization (using NTP)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:957
+#: ../../install_steps_interactive.pm_.c:958
msgid "NTP Server"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:991
-#: ../../install_steps_interactive.pm_.c:999
+#: ../../install_steps_interactive.pm_.c:992
+#: ../../install_steps_interactive.pm_.c:1000
msgid "Remote CUPS server"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:992
+#: ../../install_steps_interactive.pm_.c:993
msgid "No printer"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1009
+#: ../../install_steps_interactive.pm_.c:1010
msgid "Do you have an ISA sound card?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1011
+#: ../../install_steps_interactive.pm_.c:1012
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1013
+#: ../../install_steps_interactive.pm_.c:1014
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1018 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1019 ../../steps.pm_.c:27
msgid "Summary"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1021
+#: ../../install_steps_interactive.pm_.c:1022
msgid "Mouse"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1023
+#: ../../install_steps_interactive.pm_.c:1024
msgid "Timezone"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1024 ../../printerdrake.pm_.c:2926
-#: ../../printerdrake.pm_.c:3015
+#: ../../install_steps_interactive.pm_.c:1025 ../../printerdrake.pm_.c:2937
+#: ../../printerdrake.pm_.c:3026
msgid "Printer"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1026
+#: ../../install_steps_interactive.pm_.c:1027
msgid "ISDN card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1029
-#: ../../install_steps_interactive.pm_.c:1031
+#: ../../install_steps_interactive.pm_.c:1030
+#: ../../install_steps_interactive.pm_.c:1032
msgid "Sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1033
+#: ../../install_steps_interactive.pm_.c:1034
msgid "TV card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1073
-#: ../../install_steps_interactive.pm_.c:1098
-#: ../../install_steps_interactive.pm_.c:1102
+#: ../../install_steps_interactive.pm_.c:1074
+#: ../../install_steps_interactive.pm_.c:1099
+#: ../../install_steps_interactive.pm_.c:1103
msgid "LDAP"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1074
-#: ../../install_steps_interactive.pm_.c:1098
-#: ../../install_steps_interactive.pm_.c:1111
+#: ../../install_steps_interactive.pm_.c:1075
+#: ../../install_steps_interactive.pm_.c:1099
+#: ../../install_steps_interactive.pm_.c:1112
msgid "NIS"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1075
-#: ../../install_steps_interactive.pm_.c:1098
-#: ../../install_steps_interactive.pm_.c:1119
-#: ../../install_steps_interactive.pm_.c:1125
+#: ../../install_steps_interactive.pm_.c:1076
+#: ../../install_steps_interactive.pm_.c:1099
+#: ../../install_steps_interactive.pm_.c:1120
+#: ../../install_steps_interactive.pm_.c:1126
msgid "Windows Domain"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1076
-#: ../../install_steps_interactive.pm_.c:1098
+#: ../../install_steps_interactive.pm_.c:1077
+#: ../../install_steps_interactive.pm_.c:1099
msgid "Local files"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1085
-#: ../../install_steps_interactive.pm_.c:1086 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1086
+#: ../../install_steps_interactive.pm_.c:1087 ../../steps.pm_.c:24
msgid "Set root password"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1087
+#: ../../install_steps_interactive.pm_.c:1088
msgid "No password"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1092
+#: ../../install_steps_interactive.pm_.c:1093
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1098 ../../network/modem.pm_.c:49
+#: ../../install_steps_interactive.pm_.c:1099 ../../network/modem.pm_.c:49
#: ../../standalone/drakconnect_.c:625 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../install_steps_interactive.pm_.c:1107
msgid "Authentication LDAP"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1107
+#: ../../install_steps_interactive.pm_.c:1108
msgid "LDAP Base dn"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1108
+#: ../../install_steps_interactive.pm_.c:1109
msgid "LDAP Server"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1115
msgid "Authentication NIS"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1115
+#: ../../install_steps_interactive.pm_.c:1116
msgid "NIS Domain"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1116
+#: ../../install_steps_interactive.pm_.c:1117
msgid "NIS Server"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1123
msgid ""
"For this to work for a W2K PDC, you will probably need to have the admin "
"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
@@ -4625,19 +4633,19 @@ msgid ""
"good."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1124
+#: ../../install_steps_interactive.pm_.c:1125
msgid "Authentication Windows Domain"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1126
+#: ../../install_steps_interactive.pm_.c:1127
msgid "Domain Admin User Name"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1127
+#: ../../install_steps_interactive.pm_.c:1128
msgid "Domain Admin Password"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1162
+#: ../../install_steps_interactive.pm_.c:1163
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
"depending on the normal bootloader. This is useful if you don't want to "
@@ -4655,19 +4663,19 @@ msgid ""
"drive and press \"Ok\"."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1178
+#: ../../install_steps_interactive.pm_.c:1179
msgid "First floppy drive"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1179
+#: ../../install_steps_interactive.pm_.c:1180
msgid "Second floppy drive"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1180 ../../printerdrake.pm_.c:2459
+#: ../../install_steps_interactive.pm_.c:1181 ../../printerdrake.pm_.c:2470
msgid "Skip"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1185
+#: ../../install_steps_interactive.pm_.c:1186
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -4683,7 +4691,7 @@ msgid ""
"%s"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1191
+#: ../../install_steps_interactive.pm_.c:1192
msgid ""
"\n"
"\n"
@@ -4692,28 +4700,28 @@ msgid ""
"because XFS needs a very large driver)."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1199
+#: ../../install_steps_interactive.pm_.c:1200
msgid "Sorry, no floppy drive available"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1203
+#: ../../install_steps_interactive.pm_.c:1204
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1207
+#: ../../install_steps_interactive.pm_.c:1208
#, c-format
msgid "Insert a floppy in %s"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1210
+#: ../../install_steps_interactive.pm_.c:1211
msgid "Creating bootdisk..."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1217
+#: ../../install_steps_interactive.pm_.c:1218
msgid "Preparing bootloader..."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1228
+#: ../../install_steps_interactive.pm_.c:1229
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -4721,25 +4729,25 @@ msgid ""
" need to use BootX to boot your machine"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1234
+#: ../../install_steps_interactive.pm_.c:1235
msgid "Do you want to use aboot?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1237
+#: ../../install_steps_interactive.pm_.c:1238
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1244
+#: ../../install_steps_interactive.pm_.c:1245
msgid "Installing bootloader"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1250
+#: ../../install_steps_interactive.pm_.c:1251
msgid "Installation of bootloader failed. The following error occured:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1258
+#: ../../install_steps_interactive.pm_.c:1259
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -4750,24 +4758,24 @@ msgid ""
"At your next boot you should see the bootloader prompt."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1292
+#: ../../install_steps_interactive.pm_.c:1293
#: ../../standalone/drakautoinst_.c:79
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1296
+#: ../../install_steps_interactive.pm_.c:1297
msgid "Creating auto install floppy..."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1307
+#: ../../install_steps_interactive.pm_.c:1308
msgid ""
"Some steps are not completed.\n"
"\n"
"Do you really want to quit now?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1318
+#: ../../install_steps_interactive.pm_.c:1319
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
@@ -4786,15 +4794,15 @@ msgid ""
"install chapter of the Official Mandrake Linux User's Guide."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1331
+#: ../../install_steps_interactive.pm_.c:1332
msgid "http://www.mandrakelinux.com/en/90errata.php3"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1336
+#: ../../install_steps_interactive.pm_.c:1337
msgid "Generate auto install floppy"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1338
+#: ../../install_steps_interactive.pm_.c:1339
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -4803,15 +4811,15 @@ msgid ""
"You may prefer to replay the installation.\n"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1343
+#: ../../install_steps_interactive.pm_.c:1344
msgid "Automated"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1343
+#: ../../install_steps_interactive.pm_.c:1344
msgid "Replay"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1346
+#: ../../install_steps_interactive.pm_.c:1347
msgid "Save packages selection"
msgstr ""
@@ -4847,7 +4855,7 @@ msgid "Basic"
msgstr ""
#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:158
-#: ../../printerdrake.pm_.c:2113
+#: ../../printerdrake.pm_.c:2124
msgid "<- Previous"
msgstr ""
@@ -5447,7 +5455,7 @@ msgstr ""
msgid "Finish"
msgstr ""
-#: ../../my_gtk.pm_.c:159 ../../printerdrake.pm_.c:2115
+#: ../../my_gtk.pm_.c:159 ../../printerdrake.pm_.c:2126
msgid "Next ->"
msgstr ""
@@ -5502,6 +5510,62 @@ msgstr ""
msgid "use pptp"
msgstr ""
+#: ../../network/drakfirewall.pm_.c:12
+msgid "Web Server"
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:17
+msgid "Domain Name Server"
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:32
+msgid "Mail Server"
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:37
+msgid "POP and IMAP Server"
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:111
+msgid "No network card"
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:129
+msgid ""
+"drakfirewall configurator\n"
+"\n"
+"This configures a personal firewall for this Mandrake Linux machine.\n"
+"For a powerful dedicated firewall solution, please look to the\n"
+"specialized MandrakeSecurity Firewall distribution."
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:147
+msgid "Which services would you like to allow the Internet to connect to?"
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:148
+msgid ""
+"You can enter miscellaneous ports. \n"
+"Valid examples are: 139/tcp 139/udp.\n"
+"Have a look at /etc/services for information."
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:154
+#, c-format
+msgid ""
+"Invalid port given: %s.\n"
+"The proper format is \"port/tcp\" or \"port/udp\", \n"
+"where port is between 1 and 65535."
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:162
+msgid "Everything (no firewall)"
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:164
+msgid "Other ports"
+msgstr ""
+
#: ../../network/ethernet.pm_.c:37
msgid ""
"Which dhcp client do you want to use?\n"
@@ -5801,7 +5865,7 @@ msgstr ""
msgid "Use auto detection"
msgstr ""
-#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:3131
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:3151
#: ../../standalone/drakconnect_.c:274 ../../standalone/drakconnect_.c:277
#: ../../standalone/drakfloppy_.c:145
msgid "Expert Mode"
@@ -6014,62 +6078,6 @@ msgid ""
"need some manual fix after installation."
msgstr ""
-#: ../../network/tinyfirewall.pm_.c:12
-msgid "Web Server"
-msgstr ""
-
-#: ../../network/tinyfirewall.pm_.c:17
-msgid "Domain Name Server"
-msgstr ""
-
-#: ../../network/tinyfirewall.pm_.c:32
-msgid "Mail Server"
-msgstr ""
-
-#: ../../network/tinyfirewall.pm_.c:37
-msgid "POP and IMAP Server"
-msgstr ""
-
-#: ../../network/tinyfirewall.pm_.c:111
-msgid "No network card"
-msgstr ""
-
-#: ../../network/tinyfirewall.pm_.c:129
-msgid ""
-"tinyfirewall configurator\n"
-"\n"
-"This configures a personal firewall for this Mandrake Linux machine.\n"
-"For a powerful dedicated firewall solution, please look to the\n"
-"specialized MandrakeSecurity Firewall distribution."
-msgstr ""
-
-#: ../../network/tinyfirewall.pm_.c:147
-msgid "Which services would you like to allow the Internet to connect to?"
-msgstr ""
-
-#: ../../network/tinyfirewall.pm_.c:148
-msgid ""
-"You can enter miscellaneous ports. \n"
-"Valid examples are: 139/tcp 139/udp.\n"
-"Have a look at /etc/services for information."
-msgstr ""
-
-#: ../../network/tinyfirewall.pm_.c:154
-#, c-format
-msgid ""
-"Invalid port given: %s.\n"
-"The proper format is \"port/tcp\" or \"port/udp\", \n"
-"where port is between 1 and 65535."
-msgstr ""
-
-#: ../../network/tinyfirewall.pm_.c:162
-msgid "Everything (no firewall)"
-msgstr ""
-
-#: ../../network/tinyfirewall.pm_.c:164
-msgid "Other ports"
-msgstr ""
-
#: ../../network/tools.pm_.c:41
msgid "Internet configuration"
msgstr ""
@@ -6302,7 +6310,7 @@ msgid "Unknown Model"
msgstr ""
#: ../../printer.pm_.c:735 ../../printer.pm_.c:926 ../../printer.pm_.c:1318
-#: ../../printerdrake.pm_.c:2249 ../../printerdrake.pm_.c:3394
+#: ../../printerdrake.pm_.c:2260 ../../printerdrake.pm_.c:3414
msgid "Unknown model"
msgstr ""
@@ -6389,10 +6397,10 @@ msgstr ""
msgid "On CUPS server \"%s\""
msgstr ""
-#: ../../printer.pm_.c:1128 ../../printerdrake.pm_.c:3052
-#: ../../printerdrake.pm_.c:3063 ../../printerdrake.pm_.c:3283
-#: ../../printerdrake.pm_.c:3335 ../../printerdrake.pm_.c:3361
-#: ../../printerdrake.pm_.c:3536 ../../printerdrake.pm_.c:3538
+#: ../../printer.pm_.c:1128 ../../printerdrake.pm_.c:3071
+#: ../../printerdrake.pm_.c:3082 ../../printerdrake.pm_.c:3303
+#: ../../printerdrake.pm_.c:3355 ../../printerdrake.pm_.c:3381
+#: ../../printerdrake.pm_.c:3556 ../../printerdrake.pm_.c:3558
msgid " (Default)"
msgstr ""
@@ -6415,11 +6423,11 @@ msgstr ""
msgid "Printer auto-detection (Local, TCP/Socket, and SMB printers)"
msgstr ""
-#: ../../printerdrake.pm_.c:84 ../../printerdrake.pm_.c:3115
+#: ../../printerdrake.pm_.c:84 ../../printerdrake.pm_.c:3135
msgid "CUPS configuration"
msgstr ""
-#: ../../printerdrake.pm_.c:85 ../../printerdrake.pm_.c:3116
+#: ../../printerdrake.pm_.c:85 ../../printerdrake.pm_.c:3136
msgid "Specify CUPS server"
msgstr ""
@@ -6466,18 +6474,18 @@ msgstr ""
#: ../../printerdrake.pm_.c:177 ../../printerdrake.pm_.c:247
#: ../../printerdrake.pm_.c:1529 ../../printerdrake.pm_.c:1533
-#: ../../printerdrake.pm_.c:1651 ../../printerdrake.pm_.c:2192
-#: ../../printerdrake.pm_.c:2345 ../../printerdrake.pm_.c:2404
-#: ../../printerdrake.pm_.c:2477 ../../printerdrake.pm_.c:2498
-#: ../../printerdrake.pm_.c:2688 ../../printerdrake.pm_.c:2729
-#: ../../printerdrake.pm_.c:2734 ../../printerdrake.pm_.c:2768
-#: ../../printerdrake.pm_.c:2773 ../../printerdrake.pm_.c:2810
-#: ../../printerdrake.pm_.c:2863 ../../printerdrake.pm_.c:2883
-#: ../../printerdrake.pm_.c:2897 ../../printerdrake.pm_.c:2931
-#: ../../printerdrake.pm_.c:2977 ../../printerdrake.pm_.c:2995
-#: ../../printerdrake.pm_.c:3076 ../../printerdrake.pm_.c:3149
-#: ../../printerdrake.pm_.c:3451 ../../printerdrake.pm_.c:3506
-#: ../../printerdrake.pm_.c:3559 ../../standalone/printerdrake_.c:57
+#: ../../printerdrake.pm_.c:1651 ../../printerdrake.pm_.c:2203
+#: ../../printerdrake.pm_.c:2356 ../../printerdrake.pm_.c:2415
+#: ../../printerdrake.pm_.c:2488 ../../printerdrake.pm_.c:2509
+#: ../../printerdrake.pm_.c:2699 ../../printerdrake.pm_.c:2740
+#: ../../printerdrake.pm_.c:2745 ../../printerdrake.pm_.c:2779
+#: ../../printerdrake.pm_.c:2784 ../../printerdrake.pm_.c:2821
+#: ../../printerdrake.pm_.c:2874 ../../printerdrake.pm_.c:2894
+#: ../../printerdrake.pm_.c:2908 ../../printerdrake.pm_.c:2942
+#: ../../printerdrake.pm_.c:2988 ../../printerdrake.pm_.c:3006
+#: ../../printerdrake.pm_.c:3095 ../../printerdrake.pm_.c:3169
+#: ../../printerdrake.pm_.c:3471 ../../printerdrake.pm_.c:3526
+#: ../../printerdrake.pm_.c:3579 ../../standalone/printerdrake_.c:57
msgid "Printerdrake"
msgstr ""
@@ -6574,7 +6582,7 @@ msgid ""
msgstr ""
#: ../../printerdrake.pm_.c:269 ../../printerdrake.pm_.c:278
-#: ../../printerdrake.pm_.c:3098 ../../printerdrake.pm_.c:3222
+#: ../../printerdrake.pm_.c:3117 ../../printerdrake.pm_.c:3242
msgid "Add a new printer"
msgstr ""
@@ -7111,16 +7119,42 @@ msgstr ""
msgid ""
"To be able to print with your Lexmark inkjet and this configuration, you "
"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
-"com/). Go to the US site and click on the \"Drivers\" button. Then choose "
-"your model and afterwards \"Linux\" as operating system. The drivers come as "
-"RPM packages or shell scripts with interactive graphical installation. You "
-"do not need to do this configuration by the graphical frontends. Cancel "
-"directly after the license agreement. Then print printhead alignment pages "
-"with \"lexmarkmaintain\" and adjust the head alignment settings with this "
-"program."
+"com/). Click on the \"Drivers\" link. Then choose your model and afterwards "
+"\"Linux\" as operating system. The drivers come as RPM packages or shell "
+"scripts with interactive graphical installation. You do not need to do this "
+"configuration by the graphical frontends. Cancel directly after the license "
+"agreement. Then print printhead alignment pages with \"lexmarkmaintain\" and "
+"adjust the head alignment settings with this program."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:1816
+msgid "GDI Laser Printer using the Zenographics ZJ-Stream Format"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:1817
+msgid ""
+"Your printer belongs to the group of GDI laser printers (winprinters) sold "
+"by different manufacturers which uses the Zenographics ZJ-stream raster "
+"format for the data sent to the printer. The driver for these printers is "
+"still in a very early development stage and so it will perhaps not always "
+"work properly. Especially it is possible that the printer only works when "
+"you choose the A4 paper size.\n"
+"\n"
+"Some of these printers, as the HP LaserJet 1000, for which this driver was "
+"originally created, need their firmware to be uploaded to them after they "
+"are turned on. In the case of the HP LaserJet 1000 you have to search the "
+"printer's Windows driver CD or your Windows partition for the file "
+"\"sihp1000.img\" and upload the file to the printer with one of the "
+"following commands:\n"
+"\n"
+" lpr -o raw sihp1000.img\n"
+" cat sihp1000.img > /dev/usb/lp0\n"
+"\n"
+"The first command can be given by any normal user, the second must be given "
+"as root. After having done so you can print normally.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2029
+#: ../../printerdrake.pm_.c:2040
msgid ""
"Printer default settings\n"
"\n"
@@ -7130,33 +7164,33 @@ msgid ""
"printout quality/resolution printing can get substantially slower."
msgstr ""
-#: ../../printerdrake.pm_.c:2038
+#: ../../printerdrake.pm_.c:2049
#, c-format
msgid "Option %s must be an integer number!"
msgstr ""
-#: ../../printerdrake.pm_.c:2042
+#: ../../printerdrake.pm_.c:2053
#, c-format
msgid "Option %s must be a number!"
msgstr ""
-#: ../../printerdrake.pm_.c:2047
+#: ../../printerdrake.pm_.c:2058
#, c-format
msgid "Option %s out of range!"
msgstr ""
-#: ../../printerdrake.pm_.c:2086
+#: ../../printerdrake.pm_.c:2097
#, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
"as the default printer?"
msgstr ""
-#: ../../printerdrake.pm_.c:2109
+#: ../../printerdrake.pm_.c:2120
msgid "Test pages"
msgstr ""
-#: ../../printerdrake.pm_.c:2110
+#: ../../printerdrake.pm_.c:2121
msgid ""
"Please select the test pages you want to print.\n"
"Note: the photo test page can take a rather long time to get printed and on "
@@ -7164,39 +7198,39 @@ msgid ""
"it is enough to print the standard test page."
msgstr ""
-#: ../../printerdrake.pm_.c:2114
+#: ../../printerdrake.pm_.c:2125
msgid "No test pages"
msgstr ""
-#: ../../printerdrake.pm_.c:2115
+#: ../../printerdrake.pm_.c:2126
msgid "Print"
msgstr ""
-#: ../../printerdrake.pm_.c:2172
+#: ../../printerdrake.pm_.c:2183
msgid "Standard test page"
msgstr ""
-#: ../../printerdrake.pm_.c:2175
+#: ../../printerdrake.pm_.c:2186
msgid "Alternative test page (Letter)"
msgstr ""
-#: ../../printerdrake.pm_.c:2178
+#: ../../printerdrake.pm_.c:2189
msgid "Alternative test page (A4)"
msgstr ""
-#: ../../printerdrake.pm_.c:2180
+#: ../../printerdrake.pm_.c:2191
msgid "Photo test page"
msgstr ""
-#: ../../printerdrake.pm_.c:2184
+#: ../../printerdrake.pm_.c:2195
msgid "Do not print any test page"
msgstr ""
-#: ../../printerdrake.pm_.c:2193 ../../printerdrake.pm_.c:2346
+#: ../../printerdrake.pm_.c:2204 ../../printerdrake.pm_.c:2357
msgid "Printing test page(s)..."
msgstr ""
-#: ../../printerdrake.pm_.c:2218
+#: ../../printerdrake.pm_.c:2229
#, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -7206,21 +7240,21 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2222
+#: ../../printerdrake.pm_.c:2233
msgid ""
"Test page(s) have been sent to the printer.\n"
"It may take some time before the printer starts.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2229
+#: ../../printerdrake.pm_.c:2240
msgid "Did it work properly?"
msgstr ""
-#: ../../printerdrake.pm_.c:2251 ../../printerdrake.pm_.c:3396
+#: ../../printerdrake.pm_.c:2262 ../../printerdrake.pm_.c:3416
msgid "Raw printer"
msgstr ""
-#: ../../printerdrake.pm_.c:2277
+#: ../../printerdrake.pm_.c:2288
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -7229,15 +7263,15 @@ msgid ""
"to modify the option settings easily.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2279
+#: ../../printerdrake.pm_.c:2290
msgid ""
"These commands you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications, but here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2282 ../../printerdrake.pm_.c:2299
-#: ../../printerdrake.pm_.c:2309
+#: ../../printerdrake.pm_.c:2293 ../../printerdrake.pm_.c:2310
+#: ../../printerdrake.pm_.c:2320
#, c-format
msgid ""
"\n"
@@ -7246,7 +7280,7 @@ msgid ""
"line, e. g. \"%s <file>\". "
msgstr ""
-#: ../../printerdrake.pm_.c:2285 ../../printerdrake.pm_.c:2325
+#: ../../printerdrake.pm_.c:2296 ../../printerdrake.pm_.c:2336
#, c-format
msgid ""
"To know about the options available for the current printer read either the "
@@ -7254,41 +7288,41 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2289
+#: ../../printerdrake.pm_.c:2300
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2294 ../../printerdrake.pm_.c:2304
+#: ../../printerdrake.pm_.c:2305 ../../printerdrake.pm_.c:2315
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2296 ../../printerdrake.pm_.c:2306
-#: ../../printerdrake.pm_.c:2316
+#: ../../printerdrake.pm_.c:2307 ../../printerdrake.pm_.c:2317
+#: ../../printerdrake.pm_.c:2327
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2301 ../../printerdrake.pm_.c:2311
+#: ../../printerdrake.pm_.c:2312 ../../printerdrake.pm_.c:2322
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
msgstr ""
-#: ../../printerdrake.pm_.c:2314
+#: ../../printerdrake.pm_.c:2325
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\" or \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2318
+#: ../../printerdrake.pm_.c:2329
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -7298,7 +7332,7 @@ msgid ""
"jams.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2322
+#: ../../printerdrake.pm_.c:2333
#, c-format
msgid ""
"\n"
@@ -7307,40 +7341,40 @@ msgid ""
"line, e. g. \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2332
+#: ../../printerdrake.pm_.c:2343
#, c-format
msgid "Printing/Scanning/Photo Cards on \"%s\""
msgstr ""
-#: ../../printerdrake.pm_.c:2333
+#: ../../printerdrake.pm_.c:2344
#, c-format
msgid "Printing/Scanning on \"%s\""
msgstr ""
-#: ../../printerdrake.pm_.c:2335
+#: ../../printerdrake.pm_.c:2346
#, c-format
msgid "Printing/Photo Card Access on \"%s\""
msgstr ""
-#: ../../printerdrake.pm_.c:2336
+#: ../../printerdrake.pm_.c:2347
#, c-format
msgid "Printing on the printer \"%s\""
msgstr ""
-#: ../../printerdrake.pm_.c:2339 ../../printerdrake.pm_.c:2342
-#: ../../printerdrake.pm_.c:2343 ../../printerdrake.pm_.c:2344
-#: ../../printerdrake.pm_.c:3380 ../../standalone/drakTermServ_.c:248
+#: ../../printerdrake.pm_.c:2350 ../../printerdrake.pm_.c:2353
+#: ../../printerdrake.pm_.c:2354 ../../printerdrake.pm_.c:2355
+#: ../../printerdrake.pm_.c:3400 ../../standalone/drakTermServ_.c:248
#: ../../standalone/drakbackup_.c:1560 ../../standalone/drakbackup_.c:4208
-#: ../../standalone/drakbug_.c:129 ../../standalone/drakfont_.c:705
+#: ../../standalone/drakbug_.c:130 ../../standalone/drakfont_.c:705
#: ../../standalone/drakfont_.c:1014
msgid "Close"
msgstr ""
-#: ../../printerdrake.pm_.c:2342
+#: ../../printerdrake.pm_.c:2353
msgid "Print option list"
msgstr ""
-#: ../../printerdrake.pm_.c:2362
+#: ../../printerdrake.pm_.c:2373
#, c-format
msgid ""
"Your multi-function device was configured automatically to be able to scan. "
@@ -7354,7 +7388,7 @@ msgid ""
"Do not use \"scannerdrake\" for this device!"
msgstr ""
-#: ../../printerdrake.pm_.c:2383
+#: ../../printerdrake.pm_.c:2394
msgid ""
"Your printer was configured automatically to give you access to the photo "
"card drives from your PC. Now you can access your photo cards using the "
@@ -7367,17 +7401,17 @@ msgid ""
"of the file lists."
msgstr ""
-#: ../../printerdrake.pm_.c:2405 ../../printerdrake.pm_.c:2864
-#: ../../printerdrake.pm_.c:3150
+#: ../../printerdrake.pm_.c:2416 ../../printerdrake.pm_.c:2875
+#: ../../printerdrake.pm_.c:3170
msgid "Reading printer data..."
msgstr ""
-#: ../../printerdrake.pm_.c:2425 ../../printerdrake.pm_.c:2453
-#: ../../printerdrake.pm_.c:2488
+#: ../../printerdrake.pm_.c:2436 ../../printerdrake.pm_.c:2464
+#: ../../printerdrake.pm_.c:2499
msgid "Transfer printer configuration"
msgstr ""
-#: ../../printerdrake.pm_.c:2426
+#: ../../printerdrake.pm_.c:2437
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -7387,51 +7421,51 @@ msgid ""
"Not all queues can be transferred due to the following reasons:\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2429
+#: ../../printerdrake.pm_.c:2440
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2431
+#: ../../printerdrake.pm_.c:2442
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2433
+#: ../../printerdrake.pm_.c:2444
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2435
+#: ../../printerdrake.pm_.c:2446
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:2436
+#: ../../printerdrake.pm_.c:2447
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
"or with native CUPS drivers cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:2437
+#: ../../printerdrake.pm_.c:2448
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
"\"Transfer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:2440
+#: ../../printerdrake.pm_.c:2451
msgid "Do not transfer printers"
msgstr ""
-#: ../../printerdrake.pm_.c:2441 ../../printerdrake.pm_.c:2458
+#: ../../printerdrake.pm_.c:2452 ../../printerdrake.pm_.c:2469
msgid "Transfer"
msgstr ""
-#: ../../printerdrake.pm_.c:2454
+#: ../../printerdrake.pm_.c:2465
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -7439,56 +7473,56 @@ msgid ""
"You can also type a new name or skip this printer."
msgstr ""
-#: ../../printerdrake.pm_.c:2462
+#: ../../printerdrake.pm_.c:2473
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr ""
-#: ../../printerdrake.pm_.c:2467
+#: ../../printerdrake.pm_.c:2478
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
"do you really want to overwrite its configuration?"
msgstr ""
-#: ../../printerdrake.pm_.c:2475
+#: ../../printerdrake.pm_.c:2486
msgid "New printer name"
msgstr ""
-#: ../../printerdrake.pm_.c:2478
+#: ../../printerdrake.pm_.c:2489
#, c-format
msgid "Transferring %s..."
msgstr ""
-#: ../../printerdrake.pm_.c:2489
+#: ../../printerdrake.pm_.c:2500
#, c-format
msgid ""
"You have transferred your former default printer (\"%s\"), Should it be also "
"the default printer under the new printing system %s?"
msgstr ""
-#: ../../printerdrake.pm_.c:2499
+#: ../../printerdrake.pm_.c:2510
msgid "Refreshing printer data..."
msgstr ""
-#: ../../printerdrake.pm_.c:2507 ../../printerdrake.pm_.c:2579
-#: ../../printerdrake.pm_.c:2591
+#: ../../printerdrake.pm_.c:2518 ../../printerdrake.pm_.c:2590
+#: ../../printerdrake.pm_.c:2602
msgid "Configuration of a remote printer"
msgstr ""
-#: ../../printerdrake.pm_.c:2508
+#: ../../printerdrake.pm_.c:2519
msgid "Starting network..."
msgstr ""
-#: ../../printerdrake.pm_.c:2543 ../../printerdrake.pm_.c:2547
-#: ../../printerdrake.pm_.c:2549
+#: ../../printerdrake.pm_.c:2554 ../../printerdrake.pm_.c:2558
+#: ../../printerdrake.pm_.c:2560
msgid "Configure the network now"
msgstr ""
-#: ../../printerdrake.pm_.c:2544
+#: ../../printerdrake.pm_.c:2555
msgid "Network functionality not configured"
msgstr ""
-#: ../../printerdrake.pm_.c:2545
+#: ../../printerdrake.pm_.c:2556
msgid ""
"You are going to configure a remote printer. This needs working network "
"access, but your network is not configured yet. If you go on without network "
@@ -7496,11 +7530,11 @@ msgid ""
"configuring now. How do you want to proceed?"
msgstr ""
-#: ../../printerdrake.pm_.c:2548
+#: ../../printerdrake.pm_.c:2559
msgid "Go on without configuring the network"
msgstr ""
-#: ../../printerdrake.pm_.c:2581
+#: ../../printerdrake.pm_.c:2592
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -7510,31 +7544,31 @@ msgid ""
"\"Printer\""
msgstr ""
-#: ../../printerdrake.pm_.c:2582
+#: ../../printerdrake.pm_.c:2593
msgid ""
"The network access was not running and could not be started. Please check "
"your configuration and your hardware. Then try to configure your remote "
"printer again."
msgstr ""
-#: ../../printerdrake.pm_.c:2592
+#: ../../printerdrake.pm_.c:2603
msgid "Restarting printing system..."
msgstr ""
-#: ../../printerdrake.pm_.c:2630
+#: ../../printerdrake.pm_.c:2641
msgid "high"
msgstr ""
-#: ../../printerdrake.pm_.c:2630
+#: ../../printerdrake.pm_.c:2641
msgid "paranoid"
msgstr ""
-#: ../../printerdrake.pm_.c:2631
+#: ../../printerdrake.pm_.c:2642
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr ""
-#: ../../printerdrake.pm_.c:2632
+#: ../../printerdrake.pm_.c:2643
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -7549,11 +7583,11 @@ msgid ""
"Do you really want to configure printing on this machine?"
msgstr ""
-#: ../../printerdrake.pm_.c:2664
+#: ../../printerdrake.pm_.c:2675
msgid "Starting the printing system at boot time"
msgstr ""
-#: ../../printerdrake.pm_.c:2665
+#: ../../printerdrake.pm_.c:2676
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -7567,59 +7601,59 @@ msgid ""
"again?"
msgstr ""
-#: ../../printerdrake.pm_.c:2689 ../../printerdrake.pm_.c:2730
-#: ../../printerdrake.pm_.c:2769 ../../printerdrake.pm_.c:2811
-#: ../../printerdrake.pm_.c:2932
+#: ../../printerdrake.pm_.c:2700 ../../printerdrake.pm_.c:2741
+#: ../../printerdrake.pm_.c:2780 ../../printerdrake.pm_.c:2822
+#: ../../printerdrake.pm_.c:2943
msgid "Checking installed software..."
msgstr ""
-#: ../../printerdrake.pm_.c:2735
+#: ../../printerdrake.pm_.c:2746
msgid "Removing LPRng..."
msgstr ""
-#: ../../printerdrake.pm_.c:2774
+#: ../../printerdrake.pm_.c:2785
msgid "Removing LPD..."
msgstr ""
-#: ../../printerdrake.pm_.c:2847
+#: ../../printerdrake.pm_.c:2858
msgid "Select Printer Spooler"
msgstr ""
-#: ../../printerdrake.pm_.c:2848
+#: ../../printerdrake.pm_.c:2859
msgid "Which printing system (spooler) do you want to use?"
msgstr ""
-#: ../../printerdrake.pm_.c:2884
+#: ../../printerdrake.pm_.c:2895
#, c-format
msgid "Configuring printer \"%s\"..."
msgstr ""
-#: ../../printerdrake.pm_.c:2898
+#: ../../printerdrake.pm_.c:2909
msgid "Installing Foomatic..."
msgstr ""
-#: ../../printerdrake.pm_.c:2968 ../../printerdrake.pm_.c:3009
-#: ../../printerdrake.pm_.c:3397 ../../printerdrake.pm_.c:3470
+#: ../../printerdrake.pm_.c:2979 ../../printerdrake.pm_.c:3020
+#: ../../printerdrake.pm_.c:3417 ../../printerdrake.pm_.c:3490
msgid "Printer options"
msgstr ""
-#: ../../printerdrake.pm_.c:2978
+#: ../../printerdrake.pm_.c:2989
msgid "Preparing Printerdrake..."
msgstr ""
-#: ../../printerdrake.pm_.c:2996 ../../printerdrake.pm_.c:3560
+#: ../../printerdrake.pm_.c:3007 ../../printerdrake.pm_.c:3580
msgid "Configuring applications..."
msgstr ""
-#: ../../printerdrake.pm_.c:3016
+#: ../../printerdrake.pm_.c:3027
msgid "Would you like to configure printing?"
msgstr ""
-#: ../../printerdrake.pm_.c:3028
+#: ../../printerdrake.pm_.c:3039
msgid "Printing system: "
msgstr ""
-#: ../../printerdrake.pm_.c:3080
+#: ../../printerdrake.pm_.c:3099
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; to view information about it; "
@@ -7627,137 +7661,137 @@ msgid ""
"OpenOffice.org/GIMP."
msgstr ""
-#: ../../printerdrake.pm_.c:3081
+#: ../../printerdrake.pm_.c:3100
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; or to view information about "
"it."
msgstr ""
-#: ../../printerdrake.pm_.c:3107
+#: ../../printerdrake.pm_.c:3127
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr ""
-#: ../../printerdrake.pm_.c:3125
+#: ../../printerdrake.pm_.c:3145
msgid "Change the printing system"
msgstr ""
-#: ../../printerdrake.pm_.c:3130 ../../standalone/drakconnect_.c:277
+#: ../../printerdrake.pm_.c:3150 ../../standalone/drakconnect_.c:277
msgid "Normal Mode"
msgstr ""
-#: ../../printerdrake.pm_.c:3290 ../../printerdrake.pm_.c:3340
-#: ../../printerdrake.pm_.c:3553
+#: ../../printerdrake.pm_.c:3310 ../../printerdrake.pm_.c:3360
+#: ../../printerdrake.pm_.c:3573
msgid "Do you want to configure another printer?"
msgstr ""
-#: ../../printerdrake.pm_.c:3375
+#: ../../printerdrake.pm_.c:3395
msgid "Modify printer configuration"
msgstr ""
-#: ../../printerdrake.pm_.c:3377
+#: ../../printerdrake.pm_.c:3397
#, c-format
msgid ""
"Printer %s\n"
"What do you want to modify on this printer?"
msgstr ""
-#: ../../printerdrake.pm_.c:3381
+#: ../../printerdrake.pm_.c:3401
msgid "Do it!"
msgstr ""
-#: ../../printerdrake.pm_.c:3386 ../../printerdrake.pm_.c:3441
+#: ../../printerdrake.pm_.c:3406 ../../printerdrake.pm_.c:3461
msgid "Printer connection type"
msgstr ""
-#: ../../printerdrake.pm_.c:3387 ../../printerdrake.pm_.c:3445
+#: ../../printerdrake.pm_.c:3407 ../../printerdrake.pm_.c:3465
msgid "Printer name, description, location"
msgstr ""
-#: ../../printerdrake.pm_.c:3389 ../../printerdrake.pm_.c:3463
+#: ../../printerdrake.pm_.c:3409 ../../printerdrake.pm_.c:3483
msgid "Printer manufacturer, model, driver"
msgstr ""
-#: ../../printerdrake.pm_.c:3390 ../../printerdrake.pm_.c:3464
+#: ../../printerdrake.pm_.c:3410 ../../printerdrake.pm_.c:3484
msgid "Printer manufacturer, model"
msgstr ""
-#: ../../printerdrake.pm_.c:3399 ../../printerdrake.pm_.c:3474
+#: ../../printerdrake.pm_.c:3419 ../../printerdrake.pm_.c:3494
msgid "Set this printer as the default"
msgstr ""
-#: ../../printerdrake.pm_.c:3401 ../../printerdrake.pm_.c:3479
+#: ../../printerdrake.pm_.c:3421 ../../printerdrake.pm_.c:3499
msgid "Add this printer to Star Office/OpenOffice.org/GIMP"
msgstr ""
-#: ../../printerdrake.pm_.c:3402 ../../printerdrake.pm_.c:3488
+#: ../../printerdrake.pm_.c:3422 ../../printerdrake.pm_.c:3508
msgid "Remove this printer from Star Office/OpenOffice.org/GIMP"
msgstr ""
-#: ../../printerdrake.pm_.c:3403 ../../printerdrake.pm_.c:3497
+#: ../../printerdrake.pm_.c:3423 ../../printerdrake.pm_.c:3517
msgid "Print test pages"
msgstr ""
-#: ../../printerdrake.pm_.c:3404 ../../printerdrake.pm_.c:3499
+#: ../../printerdrake.pm_.c:3424 ../../printerdrake.pm_.c:3519
msgid "Know how to use this printer"
msgstr ""
-#: ../../printerdrake.pm_.c:3406 ../../printerdrake.pm_.c:3501
+#: ../../printerdrake.pm_.c:3426 ../../printerdrake.pm_.c:3521
msgid "Remove printer"
msgstr ""
-#: ../../printerdrake.pm_.c:3452
+#: ../../printerdrake.pm_.c:3472
#, c-format
msgid "Removing old printer \"%s\"..."
msgstr ""
-#: ../../printerdrake.pm_.c:3477
+#: ../../printerdrake.pm_.c:3497
msgid "Default printer"
msgstr ""
-#: ../../printerdrake.pm_.c:3478
+#: ../../printerdrake.pm_.c:3498
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr ""
-#: ../../printerdrake.pm_.c:3482 ../../printerdrake.pm_.c:3485
+#: ../../printerdrake.pm_.c:3502 ../../printerdrake.pm_.c:3505
msgid "Adding printer to Star Office/OpenOffice.org/GIMP"
msgstr ""
-#: ../../printerdrake.pm_.c:3483
+#: ../../printerdrake.pm_.c:3503
#, c-format
msgid ""
"The printer \"%s\" was successfully added to Star Office/OpenOffice.org/GIMP."
msgstr ""
-#: ../../printerdrake.pm_.c:3486
+#: ../../printerdrake.pm_.c:3506
#, c-format
msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org/GIMP."
msgstr ""
-#: ../../printerdrake.pm_.c:3491 ../../printerdrake.pm_.c:3494
+#: ../../printerdrake.pm_.c:3511 ../../printerdrake.pm_.c:3514
msgid "Removing printer from Star Office/OpenOffice.org/GIMP"
msgstr ""
-#: ../../printerdrake.pm_.c:3492
+#: ../../printerdrake.pm_.c:3512
#, c-format
msgid ""
"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org/"
"GIMP."
msgstr ""
-#: ../../printerdrake.pm_.c:3495
+#: ../../printerdrake.pm_.c:3515
#, c-format
msgid ""
"Failed to remove the printer \"%s\" from Star Office/OpenOffice.org/GIMP."
msgstr ""
-#: ../../printerdrake.pm_.c:3503
+#: ../../printerdrake.pm_.c:3523
#, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr ""
-#: ../../printerdrake.pm_.c:3507
+#: ../../printerdrake.pm_.c:3527
#, c-format
msgid "Removing printer \"%s\"..."
msgstr ""
@@ -8140,18 +8174,18 @@ msgid "Thank you for choosing Mandrake Linux 9.0"
msgstr ""
#: ../../share/advertising/01-thanks.pl_.c:10
-msgid "Welcome to the Open Source world."
+msgid "Welcome to the Open Source world"
msgstr ""
#: ../../share/advertising/01-thanks.pl_.c:11
msgid ""
"The success of MandrakeSoft is based upon the principle of Free Software. "
"Your new operating system is the result of collaborative work on the part of "
-"the worldwide Linux Community."
+"the worldwide Linux Community"
msgstr ""
#: ../../share/advertising/02-community.pl_.c:9
-msgid "Get involved in the Free Software world."
+msgid "Get involved in the Free Software world"
msgstr ""
#: ../../share/advertising/02-community.pl_.c:10
@@ -8161,7 +8195,7 @@ msgstr ""
#: ../../share/advertising/02-community.pl_.c:11
msgid ""
"To share your own knowledge and help build Linux tools, join the discussions "
-"forum you'll find on our \"Community\" webpages."
+"forum you'll find on our \"Community\" webpages"
msgstr ""
#: ../../share/advertising/03-internet.pl_.c:9
@@ -8170,23 +8204,23 @@ msgstr ""
#: ../../share/advertising/03-internet.pl_.c:10
msgid ""
-"Mandrake Linux 9.0 has selected the best softwares for you. Surf the Web and "
+"Mandrake Linux 9.0 has selected the best software for you. Surf the Web and "
"view animations with Mozilla and Konqueror, or read your mail and handle "
-"your personal information with Evolution and Kmail."
+"your personal information with Evolution and Kmail"
msgstr ""
#: ../../share/advertising/04-multimedia.pl_.c:9
-msgid "Discover the most up-to-date graphical and multimedia tools!"
+msgid "Discover the most up-to-date graphics and multimedia tools!"
msgstr ""
#: ../../share/advertising/04-multimedia.pl_.c:10
-msgid "Push multimedia at its limits!"
+msgid "Push multimedia to its limits!"
msgstr ""
#: ../../share/advertising/04-multimedia.pl_.c:11
msgid ""
"Mandrake Linux 9.0 enables you to use the very latest software to play audio "
-"files, edit and handle your images or photos, and plays videos."
+"files, edit and handle your images or photos, and play videos"
msgstr ""
#: ../../share/advertising/05-games.pl_.c:9
@@ -8196,7 +8230,7 @@ msgstr ""
#: ../../share/advertising/05-games.pl_.c:10
msgid ""
"Mandrake Linux 9.0 provides the best Open Source games - arcade, action, "
-"cards, sports, strategy, ..."
+"cards, sports, strategy..."
msgstr ""
#: ../../share/advertising/06-mcc.pl_.c:9 ../../standalone/drakbug_.c:69
@@ -8206,7 +8240,7 @@ msgstr ""
#: ../../share/advertising/06-mcc.pl_.c:10
msgid ""
"Mandrake Linux 9.0 provides a powerful tool to fully customize and configure "
-"your machine."
+"your machine"
msgstr ""
#: ../../share/advertising/07-desktop.pl_.c:9
@@ -8224,23 +8258,23 @@ msgid "Development simplified"
msgstr ""
#: ../../share/advertising/08-development.pl_.c:10
-msgid "Mandrake Linux 9.0 is the ultimate development platform."
+msgid "Mandrake Linux 9.0 is the ultimate development platform"
msgstr ""
#: ../../share/advertising/08-development.pl_.c:11
msgid ""
"Use the full power of the GNU gcc 3 compiler as well as the best Open Source "
-"development environments."
+"development environments"
msgstr ""
#: ../../share/advertising/09-server.pl_.c:9
-msgid "Turn your machine into a reliable server."
+msgid "Turn your machine into a reliable server"
msgstr ""
#: ../../share/advertising/09-server.pl_.c:10
msgid ""
"Transform your machine into a powerful server in a few clicks of your mouse: "
-"Web server, mail, firewall, router, file and print server, ..."
+"Web server, mail, firewall, router, file and print server..."
msgstr ""
#: ../../share/advertising/10-mnf.pl_.c:9
@@ -8250,7 +8284,7 @@ msgstr ""
#: ../../share/advertising/10-mnf.pl_.c:10
msgid ""
"The MandrakeSecurity range includes the Multi Network Firewall product (M.N."
-"F.)."
+"F.)"
msgstr ""
#: ../../share/advertising/10-mnf.pl_.c:11
@@ -8270,7 +8304,7 @@ msgstr ""
#: ../../share/advertising/11-mdkstore.pl_.c:10
msgid ""
"Our full range of Linux solutions, as well as special offers on products and "
-"'goodies', are available online at our e-store."
+"'goodies', are available online at our e-store"
msgstr ""
#: ../../share/advertising/12-mdkstore.pl_.c:9
@@ -8280,8 +8314,8 @@ msgstr ""
#: ../../share/advertising/12-mdkstore.pl_.c:10
msgid ""
"MandrakeSoft works alongside a selection of companies offering professional "
-"solutions compatible with Mandrake Linux. A list of these partners is "
-"available on the MandrakeStore."
+"solutions compatible with Mandrake Linux; a list of these partners is "
+"available on the MandrakeStore"
msgstr ""
#: ../../share/advertising/13-mdkcampus.pl_.c:9
@@ -8295,14 +8329,14 @@ msgid ""
msgstr ""
#: ../../share/advertising/13-mdkcampus.pl_.c:11
-msgid "Certify yourself on Linux."
+msgid "Certify yourself on Linux"
msgstr ""
#: ../../share/advertising/13-mdkcampus.pl_.c:12
msgid ""
-"Whether you choose to teach yourself online or via our netwirk of training "
+"Whether you choose to teach yourself online or via our network of training "
"partners, the Linux-Campus catalogue prepares you for the acknowledged LPI "
-"certification program (worldwide professional technical certification)."
+"certification program (worldwide professional technical certification)"
msgstr ""
#: ../../share/advertising/14-mdkexpert.pl_.c:9
@@ -8311,15 +8345,15 @@ msgstr ""
#: ../../share/advertising/14-mdkexpert.pl_.c:10
msgid ""
-"Find the solutions of your problems via MandrakeSoft's online support "
-"platform."
+"Find the solutions to your problems via MandrakeSoft's online support "
+"platform"
msgstr ""
#: ../../share/advertising/14-mdkexpert.pl_.c:11
msgid ""
-"Join the MandrakeSoft support teams and the Linux Community online th share "
-"your knowledge and help your others by becoming a recognized Expert on the "
-"online tehnial support website:"
+"Join the MandrakeSoft support teams and the Linux Community online to share "
+"your knowledge and help others by becoming a recognized Expert on the online "
+"technical support website:"
msgstr ""
#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:9
@@ -8327,7 +8361,7 @@ msgid "MandrakeExpert Corporate"
msgstr ""
#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:10
-msgid "An online platform to respond to company's specific support needs."
+msgid "An online platform to respond to company's specific support needs"
msgstr ""
#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:11
@@ -9846,9 +9880,9 @@ msgstr ""
msgid "Synchronization tool"
msgstr ""
-#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:85
-#: ../../standalone/drakbug_.c:150 ../../standalone/drakbug_.c:152
-#: ../../standalone/drakbug_.c:156
+#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:86
+#: ../../standalone/drakbug_.c:151 ../../standalone/drakbug_.c:153
+#: ../../standalone/drakbug_.c:157
msgid "Standalone Tools"
msgstr ""
@@ -9892,23 +9926,23 @@ msgstr ""
msgid "Configuration Wizards"
msgstr ""
-#: ../../standalone/drakbug_.c:96
+#: ../../standalone/drakbug_.c:97
msgid "Application:"
msgstr ""
-#: ../../standalone/drakbug_.c:97
+#: ../../standalone/drakbug_.c:98
msgid "Package: "
msgstr ""
-#: ../../standalone/drakbug_.c:98
+#: ../../standalone/drakbug_.c:99
msgid "Kernel:"
msgstr ""
-#: ../../standalone/drakbug_.c:99
+#: ../../standalone/drakbug_.c:100
msgid "Release: "
msgstr ""
-#: ../../standalone/drakbug_.c:114
+#: ../../standalone/drakbug_.c:115
msgid ""
"\n"
"\n"
@@ -9920,19 +9954,19 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbug_.c:135
+#: ../../standalone/drakbug_.c:136
msgid "Report"
msgstr ""
-#: ../../standalone/drakbug_.c:165
+#: ../../standalone/drakbug_.c:166
msgid "Not installed"
msgstr ""
-#: ../../standalone/drakbug_.c:182
+#: ../../standalone/drakbug_.c:183
msgid "connecting to Bugzilla wizard ..."
msgstr ""
-#: ../../standalone/drakbug_.c:189
+#: ../../standalone/drakbug_.c:190
msgid "No browser available! Please install one"
msgstr ""
@@ -11302,7 +11336,7 @@ msgstr ""
msgid "Exit install"
msgstr ""
-#: ../../ugtk.pm_.c:595
+#: ../../ugtk.pm_.c:594
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr ""
diff --git a/perl-install/share/po/af.po b/perl-install/share/po/af.po
index 035147415..c2688c33d 100644
--- a/perl-install/share/po/af.po
+++ b/perl-install/share/po/af.po
@@ -6,8 +6,8 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: drakfloppy 0.43\n"
-"POT-Creation-Date: 2002-08-21 15:44+0200\n"
+"Project-Id-Version: DrakX\n"
+"POT-Creation-Date: 2002-09-02 20:14+0200\n"
"PO-Revision-Date: 2001-08-20 21:28-0000\n"
"Last-Translator: Schalk W. Cronjé <schalkc@uk.ntaba.com>\n"
"Language-Team: Afrikaans <mandrake@af.org.za>\n"
@@ -51,19 +51,19 @@ msgstr "32 MB"
msgid "64 MB or more"
msgstr "64MB of meer"
-#: ../../Xconfig/card.pm_.c:201
+#: ../../Xconfig/card.pm_.c:203
msgid "Choose a X server"
msgstr "Kies 'n X-bediener"
-#: ../../Xconfig/card.pm_.c:201
+#: ../../Xconfig/card.pm_.c:203
msgid "X server"
msgstr "X-bediener"
-#: ../../Xconfig/card.pm_.c:228
+#: ../../Xconfig/card.pm_.c:230
msgid "Multi-head configuration"
msgstr "Multikopkonfigurasie"
-#: ../../Xconfig/card.pm_.c:229
+#: ../../Xconfig/card.pm_.c:231
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
@@ -71,27 +71,27 @@ msgstr ""
"U stelsel onderstuen multikopkonfigurasie.\n"
"Wat wil u doen?"
-#: ../../Xconfig/card.pm_.c:284
+#: ../../Xconfig/card.pm_.c:286
msgid "Select the memory size of your graphics card"
msgstr "Kies die geheue grootte van u videokaart"
-#: ../../Xconfig/card.pm_.c:345
+#: ../../Xconfig/card.pm_.c:347
msgid "XFree configuration"
msgstr "XFree-konfigurasie"
-#: ../../Xconfig/card.pm_.c:347
+#: ../../Xconfig/card.pm_.c:349
msgid "Which configuration of XFree do you want to have?"
msgstr "Watter tipe XFree-konfigurasie verlang u?"
-#: ../../Xconfig/card.pm_.c:379
+#: ../../Xconfig/card.pm_.c:381
msgid "Configure all heads independently"
msgstr "Konfigureer skyfkoppe afsonderlik"
-#: ../../Xconfig/card.pm_.c:380
+#: ../../Xconfig/card.pm_.c:382
msgid "Use Xinerama extension"
msgstr "Gebruik Xinerama-ekstensies"
-#: ../../Xconfig/card.pm_.c:384
+#: ../../Xconfig/card.pm_.c:386
#, fuzzy, c-format
msgid "Configure only card \"%s\"%s"
msgstr "Konfigureer net die \"%s\" kaart (%s)"
@@ -102,13 +102,13 @@ msgstr "Konfigureer net die \"%s\" kaart (%s)"
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:435
+#: ../../Xconfig/card.pm_.c:410 ../../Xconfig/card.pm_.c:436
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s with 3D hardware acceleration"
msgstr "XFree %s met 3D-hardwareversnelling"
-#: ../../Xconfig/card.pm_.c:412
+#: ../../Xconfig/card.pm_.c:413
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -117,18 +117,18 @@ msgstr ""
"U videokaart kan slegs 3D-versnelling onder XFree %s ondersteun.\n"
"DIt word wel onder XFree %s ondersteun wat dalk beter 2D-ondersteuning het."
-#: ../../Xconfig/card.pm_.c:414 ../../Xconfig/card.pm_.c:437
+#: ../../Xconfig/card.pm_.c:415 ../../Xconfig/card.pm_.c:438
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr ""
"U videokaart kan vir 3D-hardewareversnelling ondestuen word in XFree %s."
-#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:443
+#: ../../Xconfig/card.pm_.c:423 ../../Xconfig/card.pm_.c:444
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s met EKSPERIMENTELE 3D-hardewareversnelling"
-#: ../../Xconfig/card.pm_.c:425
+#: ../../Xconfig/card.pm_.c:426
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -140,7 +140,7 @@ msgstr ""
"MAAR LET DAAROP DAT DIT EKSPERIMENTEEL IS EN DIE REKENAAR MAG VRIES.\n"
"U kaart word deur XFree %s ondersteun, wat beter 2D-ondersteuning bied."
-#: ../../Xconfig/card.pm_.c:428 ../../Xconfig/card.pm_.c:445
+#: ../../Xconfig/card.pm_.c:429 ../../Xconfig/card.pm_.c:446
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
@@ -150,54 +150,55 @@ msgstr ""
"bied,\n"
"MAAR LET DAAROP DAT DIT EKSPERIMENTEEL IS EN DIE REKENAAR MAG VRIES."
-#: ../../Xconfig/card.pm_.c:451
+#: ../../Xconfig/card.pm_.c:452
msgid "Xpmac (installation display driver)"
msgstr "Xpmac (installasievertoondrywer)"
#
-#: ../../Xconfig/main.pm_.c:78 ../../Xconfig/main.pm_.c:79
-#: ../../Xconfig/monitor.pm_.c:94 ../../any.pm_.c:974
+#: ../../Xconfig/main.pm_.c:76 ../../Xconfig/main.pm_.c:77
+#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:977
msgid "Custom"
msgstr "Aangepaste"
-#: ../../Xconfig/main.pm_.c:104
+#: ../../Xconfig/main.pm_.c:102
#, fuzzy
msgid "Graphic Card"
msgstr "Videokaart"
-#: ../../Xconfig/main.pm_.c:107 ../../Xconfig/monitor.pm_.c:91
+#: ../../Xconfig/main.pm_.c:105 ../../Xconfig/monitor.pm_.c:93
msgid "Monitor"
msgstr "Monitor"
-#: ../../Xconfig/main.pm_.c:110 ../../Xconfig/resolution_and_depth.pm_.c:209
+#: ../../Xconfig/main.pm_.c:108 ../../Xconfig/resolution_and_depth.pm_.c:209
msgid "Resolution"
msgstr "Resolusie"
-#: ../../Xconfig/main.pm_.c:114
+#: ../../Xconfig/main.pm_.c:113
msgid "Test"
msgstr ""
-#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:59
-#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/removable.pm_.c:25
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:63
+#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/removable.pm_.c:25
#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "Opsies"
#: ../../Xconfig/main.pm_.c:121 ../../Xconfig/resolution_and_depth.pm_.c:268
-#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:281
+#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:275
#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
-#: ../../interactive.pm_.c:351 ../../interactive/http.pm_.c:104
+#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:104
#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
-#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:156
-#: ../../my_gtk.pm_.c:284 ../../my_gtk.pm_.c:307
-#: ../../standalone/drakbackup_.c:3324 ../../standalone/drakbackup_.c:3419
-#: ../../standalone/drakbackup_.c:3438
+#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:159
+#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310
+#: ../../standalone/drakbackup_.c:3972 ../../standalone/drakbackup_.c:4067
+#: ../../standalone/drakbackup_.c:4086
msgid "Ok"
msgstr "OK"
#: ../../Xconfig/main.pm_.c:121 ../../diskdrake/dav.pm_.c:24
-#: ../../printerdrake.pm_.c:2933 ../../standalone/logdrake_.c:224
+#: ../../harddrake/ui.pm_.c:98 ../../printerdrake.pm_.c:3155
+#: ../../standalone/logdrake_.c:224
msgid "Quit"
msgstr "Verlaat"
@@ -214,28 +215,28 @@ msgstr ""
"\n"
"%s"
-#: ../../Xconfig/monitor.pm_.c:91
+#: ../../Xconfig/monitor.pm_.c:93
msgid "Choose a monitor"
msgstr "Kies 'n monitor"
-#: ../../Xconfig/monitor.pm_.c:95
+#: ../../Xconfig/monitor.pm_.c:97
msgid "Plug'n Play"
msgstr ""
-#: ../../Xconfig/monitor.pm_.c:96 ../../mouse.pm_.c:45
+#: ../../Xconfig/monitor.pm_.c:98 ../../mouse.pm_.c:46
msgid "Generic"
msgstr "Generies"
-#: ../../Xconfig/monitor.pm_.c:97 ../../harddrake/ui.pm_.c:36
+#: ../../Xconfig/monitor.pm_.c:99 ../../harddrake/ui.pm_.c:37
#, fuzzy
msgid "Vendor"
msgstr "Herroep"
-#: ../../Xconfig/monitor.pm_.c:107
+#: ../../Xconfig/monitor.pm_.c:109
msgid "Plug'n Play probing failed. Please choose a precise monitor"
msgstr ""
-#: ../../Xconfig/monitor.pm_.c:112
+#: ../../Xconfig/monitor.pm_.c:114
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -257,11 +258,11 @@ msgstr ""
"monitor spesifiseer nie, dit kan die monitor beskadig. Indien u twyfel,\n"
"kies konservatief."
-#: ../../Xconfig/monitor.pm_.c:119
+#: ../../Xconfig/monitor.pm_.c:121
msgid "Horizontal refresh rate"
msgstr "Horisontale verfristempo"
-#: ../../Xconfig/monitor.pm_.c:120
+#: ../../Xconfig/monitor.pm_.c:122
msgid "Vertical refresh rate"
msgstr "Vertikale verfristempo"
@@ -298,36 +299,41 @@ msgstr "Kies die resolusie en kleurdiepte"
msgid "Graphics card: %s"
msgstr "Videokaart: %s"
-#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1015
-#: ../../bootlook.pm_.c:334 ../../diskdrake/smbnfs_gtk.pm_.c:87
-#: ../../install_steps_gtk.pm_.c:412 ../../install_steps_gtk.pm_.c:470
-#: ../../install_steps_interactive.pm_.c:576 ../../interactive.pm_.c:142
-#: ../../interactive.pm_.c:351 ../../interactive/http.pm_.c:105
+#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1018
+#: ../../bootlook.pm_.c:338 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:406 ../../install_steps_gtk.pm_.c:464
+#: ../../install_steps_interactive.pm_.c:560 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:105
#: ../../interactive/newt.pm_.c:174 ../../interactive/stdio.pm_.c:39
-#: ../../interactive/stdio.pm_.c:143 ../../my_gtk.pm_.c:155
-#: ../../my_gtk.pm_.c:159 ../../my_gtk.pm_.c:284
-#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1990
-#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3278
-#: ../../standalone/drakbackup_.c:3311 ../../standalone/drakbackup_.c:3337
-#: ../../standalone/drakbackup_.c:3364 ../../standalone/drakbackup_.c:3391
-#: ../../standalone/drakbackup_.c:3451 ../../standalone/drakbackup_.c:3478
-#: ../../standalone/drakbackup_.c:3504 ../../standalone/drakconnect_.c:115
-#: ../../standalone/drakconnect_.c:147 ../../standalone/drakconnect_.c:289
-#: ../../standalone/drakconnect_.c:537 ../../standalone/drakconnect_.c:679
-#: ../../standalone/drakfloppy_.c:234 ../../standalone/drakfloppy_.c:383
-#: ../../standalone/drakfont_.c:970 ../../standalone/drakgw_.c:598
-#: ../../standalone/logdrake_.c:224 ../../standalone/logdrake_.c:528
-#: ../../standalone/tinyfirewall_.c:64
+#: ../../interactive/stdio.pm_.c:143 ../../my_gtk.pm_.c:158
+#: ../../my_gtk.pm_.c:162 ../../my_gtk.pm_.c:287
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:2124
+#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3926
+#: ../../standalone/drakbackup_.c:3959 ../../standalone/drakbackup_.c:3985
+#: ../../standalone/drakbackup_.c:4012 ../../standalone/drakbackup_.c:4039
+#: ../../standalone/drakbackup_.c:4099 ../../standalone/drakbackup_.c:4126
+#: ../../standalone/drakbackup_.c:4156 ../../standalone/drakbackup_.c:4182
+#: ../../standalone/drakconnect_.c:115 ../../standalone/drakconnect_.c:147
+#: ../../standalone/drakconnect_.c:289 ../../standalone/drakconnect_.c:537
+#: ../../standalone/drakconnect_.c:679 ../../standalone/drakfloppy_.c:234
+#: ../../standalone/drakfloppy_.c:383 ../../standalone/drakfont_.c:970
+#: ../../standalone/drakgw_.c:536 ../../standalone/logdrake_.c:224
+#: ../../standalone/logdrake_.c:526
msgid "Cancel"
msgstr "Kanselleer"
-#: ../../Xconfig/test.pm_.c:26
+#: ../../Xconfig/test.pm_.c:30
+msgid "Test of the configuration"
+msgstr "Toets konfigurasie"
+
+#: ../../Xconfig/test.pm_.c:31
msgid "Do you want to test the configuration?"
msgstr "Wil u die konfigurasie toets?"
-#: ../../Xconfig/test.pm_.c:26
-msgid "Test of the configuration"
-msgstr "Toets konfigurasie"
+#: ../../Xconfig/test.pm_.c:31
+#, fuzzy
+msgid "Warning: testing this graphic card may freeze your computer"
+msgstr "Waarskuwing: Toetsing is gevaarlik met hierdie videokaart"
#: ../../Xconfig/various.pm_.c:29
#, c-format
@@ -463,26 +469,22 @@ msgstr "Laai vauit DOS/Windows (loadlin)"
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:158 ../../any.pm_.c:190
+#: ../../any.pm_.c:159 ../../any.pm_.c:190
msgid "Bootloader main options"
msgstr "Herlaaistelsel hoofopsies"
-#: ../../any.pm_.c:159 ../../any.pm_.c:191
+#: ../../any.pm_.c:160 ../../any.pm_.c:191
msgid "Bootloader to use"
msgstr "Herlaaistelsel om te gebruik"
-#: ../../any.pm_.c:161
+#: ../../any.pm_.c:162
msgid "Bootloader installation"
msgstr "Herlaaiprogram installasie"
-#: ../../any.pm_.c:163 ../../any.pm_.c:193
+#: ../../any.pm_.c:164 ../../any.pm_.c:193
msgid "Boot device"
msgstr "Herlaaitoestel"
-#: ../../any.pm_.c:164
-msgid "LBA (doesn't work on old BIOSes)"
-msgstr "LBA (werk nie op 'n ou BIOS'e nie)"
-
#: ../../any.pm_.c:165
msgid "Compact"
msgstr "Kompak"
@@ -499,16 +501,17 @@ msgstr "Videomodus"
msgid "Delay before booting default image"
msgstr "Wagperiode voro verstekstelsel gelaai word"
-#: ../../any.pm_.c:170 ../../any.pm_.c:786
+#: ../../any.pm_.c:170 ../../any.pm_.c:788
#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1111 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:743 ../../printerdrake.pm_.c:858
-#: ../../standalone/drakconnect_.c:624 ../../standalone/drakconnect_.c:649
+#: ../../install_steps_interactive.pm_.c:1096 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:850 ../../printerdrake.pm_.c:965
+#: ../../standalone/drakbackup_.c:3528 ../../standalone/drakconnect_.c:624
+#: ../../standalone/drakconnect_.c:649
msgid "Password"
msgstr "Wagwoord"
-#: ../../any.pm_.c:171 ../../any.pm_.c:787
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../any.pm_.c:171 ../../any.pm_.c:789
+#: ../../install_steps_interactive.pm_.c:1097
msgid "Password (again)"
msgstr "Wagwoord (weer)"
@@ -543,14 +546,14 @@ msgid ""
msgstr ""
"Opsie ``Beperk instruksielynopsies'' kan nie sonder wagwoord gebruikword nie"
-#: ../../any.pm_.c:184 ../../any.pm_.c:762
-#: ../../diskdrake/interactive.pm_.c:1180
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../any.pm_.c:184 ../../any.pm_.c:764
+#: ../../diskdrake/interactive.pm_.c:1191
+#: ../../install_steps_interactive.pm_.c:1091
msgid "Please try again"
msgstr "Probeer asb. weer"
-#: ../../any.pm_.c:184 ../../any.pm_.c:762
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../any.pm_.c:184 ../../any.pm_.c:764
+#: ../../install_steps_interactive.pm_.c:1091
msgid "The passwords do not match"
msgstr "Die wagwoorde stem nie ooreen nie."
@@ -595,16 +598,16 @@ msgstr ""
"Hier is die huidige inskrywings\n"
"U kan byvoeg or verwyder soos nodig."
-#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1483
-#: ../../standalone/drakbackup_.c:1596 ../../standalone/drakfont_.c:1011
+#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1558
+#: ../../standalone/drakbackup_.c:1671 ../../standalone/drakfont_.c:1011
#: ../../standalone/drakfont_.c:1054
msgid "Add"
msgstr "Voeg by"
-#: ../../any.pm_.c:257 ../../any.pm_.c:774 ../../diskdrake/dav.pm_.c:60
+#: ../../any.pm_.c:257 ../../any.pm_.c:776 ../../diskdrake/dav.pm_.c:64
#: ../../diskdrake/hd_gtk.pm_.c:153 ../../diskdrake/removable.pm_.c:27
#: ../../diskdrake/smbnfs_gtk.pm_.c:88 ../../interactive/http.pm_.c:153
-#: ../../standalone/drakbackup_.c:2696
+#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2772
msgid "Done"
msgstr "Klaar"
@@ -616,7 +619,7 @@ msgstr "Verander"
msgid "Which type of entry do you want to add?"
msgstr "Watter tipe inskrywing wil u byvoeg?"
-#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1630
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1705
msgid "Linux"
msgstr "Linux"
@@ -711,13 +714,13 @@ msgstr "Beskik u oor nog?"
msgid "Do you have any %s interfaces?"
msgstr "Het u enige %s koppelvlakke?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:821 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:283
+#: ../../any.pm_.c:660 ../../any.pm_.c:823 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:286
msgid "No"
msgstr "Nee"
-#: ../../any.pm_.c:660 ../../any.pm_.c:820 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:283
+#: ../../any.pm_.c:660 ../../any.pm_.c:822 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:286
msgid "Yes"
msgstr "Ja"
@@ -814,39 +817,47 @@ msgstr ""
msgid "access to administrative files"
msgstr ""
-#: ../../any.pm_.c:758
+#: ../../any.pm_.c:754
+msgid "access to network tools"
+msgstr ""
+
+#: ../../any.pm_.c:755
+msgid "access to compilation tools"
+msgstr ""
+
+#: ../../any.pm_.c:760
#, c-format
msgid "(already added %s)"
msgstr "(%s alreeds bygevoeg)"
-#: ../../any.pm_.c:763
+#: ../../any.pm_.c:765
msgid "This password is too simple"
msgstr "Die wagwoorde is te eenvoudig"
-#: ../../any.pm_.c:764
+#: ../../any.pm_.c:766
msgid "Please give a user name"
msgstr "Gee asb. 'n gebruikerskode"
-#: ../../any.pm_.c:765
+#: ../../any.pm_.c:767
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
"Die gebruikerskode maag alleenlikui kleinletter, nommers, '-' en '_' bestaan"
-#: ../../any.pm_.c:766
+#: ../../any.pm_.c:768
#, fuzzy
msgid "The user name is too long"
msgstr "Hierdie genruikerskode bestaan alreeds"
-#: ../../any.pm_.c:767
+#: ../../any.pm_.c:769
msgid "This user name is already added"
msgstr "Hierdie genruikerskode bestaan alreeds"
-#: ../../any.pm_.c:771
+#: ../../any.pm_.c:773
msgid "Add user"
msgstr "Voeg gebruiker by"
-#: ../../any.pm_.c:772
+#: ../../any.pm_.c:774
#, c-format
msgid ""
"Enter a user\n"
@@ -855,32 +866,32 @@ msgstr ""
"Tik 'n gebruiker in\n"
"%s"
-#: ../../any.pm_.c:773
+#: ../../any.pm_.c:775
msgid "Accept user"
msgstr "Aanvaar gebruiker"
-#: ../../any.pm_.c:784
+#: ../../any.pm_.c:786
msgid "Real name"
msgstr "Regte naam"
-#: ../../any.pm_.c:785 ../../printerdrake.pm_.c:742
-#: ../../printerdrake.pm_.c:857
+#: ../../any.pm_.c:787 ../../printerdrake.pm_.c:849
+#: ../../printerdrake.pm_.c:964
msgid "User name"
msgstr "Gebruikerskode"
-#: ../../any.pm_.c:788
+#: ../../any.pm_.c:790
msgid "Shell"
msgstr "Dop"
-#: ../../any.pm_.c:790
+#: ../../any.pm_.c:792
msgid "Icon"
msgstr "Ikoon"
-#: ../../any.pm_.c:817
+#: ../../any.pm_.c:819
msgid "Autologin"
msgstr "Outointeken"
-#: ../../any.pm_.c:818
+#: ../../any.pm_.c:820
msgid ""
"I can set up your computer to automatically log on one user.\n"
"Do you want to use this feature?"
@@ -888,60 +899,60 @@ msgstr ""
"Ek kan u rekenaar so opstel om X outomaties een gebruiker in te teken.\n"
"Verlang u hierdie funksionaliteit?"
-#: ../../any.pm_.c:822
+#: ../../any.pm_.c:824
msgid "Choose the default user:"
msgstr "Kies die verstek gebruiker:"
#
-#: ../../any.pm_.c:823
+#: ../../any.pm_.c:825
msgid "Choose the window manager to run:"
msgstr "Kies die vensterbestuurder om te loop:"
-#: ../../any.pm_.c:838
+#: ../../any.pm_.c:840
#, fuzzy
msgid "Please choose a language to use."
msgstr "Kies asb. 'n taal om te gebruik."
-#: ../../any.pm_.c:840
+#: ../../any.pm_.c:842
msgid ""
"Mandrake Linux can support multiple languages. Select\n"
"the languages you would like to install. They will be available\n"
"when your installation is complete and you restart your system."
msgstr "U kan ander tale selekteer wat na installasie beskikbaar sal wees."
-#: ../../any.pm_.c:854 ../../install_steps_interactive.pm_.c:708
+#: ../../any.pm_.c:856 ../../install_steps_interactive.pm_.c:692
#: ../../standalone/drakxtv_.c:73
msgid "All"
msgstr "Alles"
-#: ../../any.pm_.c:974
+#: ../../any.pm_.c:977
#, fuzzy
msgid "Allow all users"
msgstr "Voeg 'n gebruiker by"
-#: ../../any.pm_.c:974
+#: ../../any.pm_.c:977
#, fuzzy
msgid "No sharing"
msgstr "CUPS word gelaai"
-#: ../../any.pm_.c:984 ../../standalone.pm_.c:57
+#: ../../any.pm_.c:987 ../../install_any.pm_.c:1183 ../../standalone.pm_.c:58
#, fuzzy, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr ""
"Hierdie pakket moet opgradeer word\n"
"Is u seker u wil dit deselekteer?"
-#: ../../any.pm_.c:987
+#: ../../any.pm_.c:990
msgid ""
"You can export using NFS or Samba. Please select which you'd like to use."
msgstr ""
-#: ../../any.pm_.c:995 ../../standalone.pm_.c:61
+#: ../../any.pm_.c:998 ../../install_any.pm_.c:1188 ../../standalone.pm_.c:63
#, c-format
msgid "Mandatory package %s is missing"
msgstr ""
-#: ../../any.pm_.c:1001
+#: ../../any.pm_.c:1004
msgid ""
"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
@@ -950,42 +961,42 @@ msgid ""
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:1015
+#: ../../any.pm_.c:1018
msgid "Launch userdrake"
msgstr ""
-#: ../../any.pm_.c:1017
+#: ../../any.pm_.c:1020
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
msgstr ""
-#: ../../any.pm_.c:1068
+#: ../../any.pm_.c:1071
msgid "Welcome To Crackers"
msgstr "Krakers welkom"
-#: ../../any.pm_.c:1069
+#: ../../any.pm_.c:1072
msgid "Poor"
msgstr "Swak"
-#: ../../any.pm_.c:1070 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1073 ../../mouse.pm_.c:31
msgid "Standard"
msgstr "Standaard"
-#: ../../any.pm_.c:1071
+#: ../../any.pm_.c:1074
msgid "High"
msgstr "Hoog"
-#: ../../any.pm_.c:1072
+#: ../../any.pm_.c:1075
#, fuzzy
msgid "Higher"
msgstr "Hoog"
-#: ../../any.pm_.c:1073
+#: ../../any.pm_.c:1076
msgid "Paranoid"
msgstr "Paranoïes"
-#: ../../any.pm_.c:1076
+#: ../../any.pm_.c:1079
msgid ""
"This level is to be used with care. It makes your system more easy to use,\n"
"but very sensitive: it must not be used for a machine connected to others\n"
@@ -997,7 +1008,7 @@ msgstr ""
"wagwoord\n"
"toegang nie."
-#: ../../any.pm_.c:1079
+#: ../../any.pm_.c:1082
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -1005,7 +1016,7 @@ msgstr ""
"Wagwoorde is nou ontsper, maar gebruik as 'n netwerkrekenaar word nie "
"aanbeveel nie."
-#: ../../any.pm_.c:1080
+#: ../../any.pm_.c:1083
#, fuzzy
msgid ""
"This is the standard security recommended for a computer that will be used "
@@ -1015,13 +1026,13 @@ msgstr ""
"wat aan die internet as 'n kliënt konnekteer. Daar is heelwat "
"sekuriteitstoetse."
-#: ../../any.pm_.c:1081
+#: ../../any.pm_.c:1084
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr ""
-#: ../../any.pm_.c:1082
+#: ../../any.pm_.c:1085
#, fuzzy
msgid ""
"With this security level, the use of this system as a server becomes "
@@ -1035,7 +1046,7 @@ msgstr ""
"Die sekuriteit is goed genoeg sodat 'n stelsel konneksies wat baie kliënte\n"
"af kan aanvaar."
-#: ../../any.pm_.c:1085
+#: ../../any.pm_.c:1088
#, fuzzy
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
@@ -1044,32 +1055,32 @@ msgstr ""
"Hierdie is Vlak-4 sekuriteit, maar die stelsel is afgeslote.\n"
"Sekuriteitseienskappe is maksimaal."
-#: ../../any.pm_.c:1091
+#: ../../any.pm_.c:1094
#, fuzzy
msgid "DrakSec Basic Options"
msgstr "Opsies"
-#: ../../any.pm_.c:1092
+#: ../../any.pm_.c:1095
#, fuzzy
msgid "Please choose the desired security level"
msgstr "Gebruik sekuriteitsvlak"
-#: ../../any.pm_.c:1095
+#: ../../any.pm_.c:1098
#, fuzzy
msgid "Security level"
msgstr "Sekuriteitsvlak word gestel."
-#: ../../any.pm_.c:1097
+#: ../../any.pm_.c:1100
#, fuzzy
msgid "Use libsafe for servers"
msgstr "Selekteer opsies vir bediener"
-#: ../../any.pm_.c:1098
+#: ../../any.pm_.c:1101
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
-#: ../../any.pm_.c:1099
+#: ../../any.pm_.c:1102
msgid "Security Administrator (login or email)"
msgstr ""
@@ -1109,13 +1120,13 @@ msgstr ""
# and only one line per string for the GRUB messages
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:935
+#: ../../bootloader.pm_.c:932
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Welkom by GRUB, die bedryfstelselkieskaart!"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:938
+#: ../../bootloader.pm_.c:935
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr ""
@@ -1124,44 +1135,44 @@ msgstr ""
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:941
+#: ../../bootloader.pm_.c:938
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Druk ENTER om die gekose bedryfstelsel te laai, 'e' om te redigeer."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:941
msgid "commands before booting, or 'c' for a command-line."
msgstr "instruksies voor herlaai, of 'c' vir 'n instruksielyn."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:947
+#: ../../bootloader.pm_.c:944
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "Die uitgeligte inskrywing sal outomaties in %ds gelaai word."
-#: ../../bootloader.pm_.c:951
+#: ../../bootloader.pm_.c:948
msgid "not enough room in /boot"
msgstr "nie genoeg spasie in /boot nie"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1051
+#: ../../bootloader.pm_.c:1048
msgid "Desktop"
msgstr "Werkskerm"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1053
+#: ../../bootloader.pm_.c:1050
msgid "Start Menu"
msgstr "Beginkieskaart"
-#: ../../bootloader.pm_.c:1072
+#: ../../bootloader.pm_.c:1069
#, fuzzy, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "Waar wil u die herlaaistelsel installeer"
-#: ../../bootlook.pm_.c:45
+#: ../../bootlook.pm_.c:45 ../../standalone/draksplash_.c:25
msgid "no help implemented yet.\n"
msgstr "Gee hulp beskikbaar nie (nog nie).\n"
@@ -1169,8 +1180,8 @@ msgstr "Gee hulp beskikbaar nie (nog nie).\n"
msgid "Boot Style Configuration"
msgstr "Herlaaistylkonfigurasie"
-#: ../../bootlook.pm_.c:78 ../../harddrake/ui.pm_.c:59
-#: ../../harddrake/ui.pm_.c:60 ../../standalone/drakfloppy_.c:81
+#: ../../bootlook.pm_.c:78 ../../harddrake/ui.pm_.c:62
+#: ../../harddrake/ui.pm_.c:63 ../../standalone/drakfloppy_.c:81
#: ../../standalone/logdrake_.c:101
msgid "/_File"
msgstr "/_Lêer"
@@ -1180,7 +1191,7 @@ msgstr "/_Lêer"
msgid "/File/_Quit"
msgstr "/Lêer/_Verlaat"
-#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:60
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:63
#: ../../standalone/drakfloppy_.c:82 ../../standalone/logdrake_.c:107
msgid "<control>Q"
msgstr "<control>Q"
@@ -1222,94 +1233,101 @@ msgstr "Installeer stelsel"
msgid "Display theme under console"
msgstr ""
-#: ../../bootlook.pm_.c:166
+#: ../../bootlook.pm_.c:145
+#, fuzzy
+msgid "Create new theme"
+msgstr "Kies 'n nuwe grootte"
+
+#: ../../bootlook.pm_.c:169
msgid "Can't create Bootsplash preview"
msgstr ""
-#: ../../bootlook.pm_.c:166 ../../bootlook.pm_.c:184 ../../bootlook.pm_.c:187
-#: ../../bootlook.pm_.c:190 ../../bootlook.pm_.c:220 ../../bootlook.pm_.c:222
-#: ../../bootlook.pm_.c:232 ../../bootlook.pm_.c:241 ../../bootlook.pm_.c:248
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:336
-#: ../../diskdrake/interactive.pm_.c:351 ../../diskdrake/interactive.pm_.c:464
-#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../bootlook.pm_.c:169 ../../bootlook.pm_.c:187 ../../bootlook.pm_.c:190
+#: ../../bootlook.pm_.c:193 ../../bootlook.pm_.c:223 ../../bootlook.pm_.c:225
+#: ../../bootlook.pm_.c:235 ../../bootlook.pm_.c:244 ../../bootlook.pm_.c:251
+#: ../../diskdrake/dav.pm_.c:73 ../../diskdrake/hd_gtk.pm_.c:116
+#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/interactive.pm_.c:355
+#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/interactive.pm_.c:474
+#: ../../diskdrake/smbnfs_gtk.pm_.c:45 ../../fsedit.pm_.c:239
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:365 ../../interactive/http.pm_.c:119
-#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:80
+#: ../../interactive/http.pm_.c:119 ../../interactive/http.pm_.c:120
+#: ../../standalone/draksplash_.c:32
msgid "Error"
msgstr "Fout"
-#: ../../bootlook.pm_.c:183
+#: ../../bootlook.pm_.c:186
#, c-format
msgid "Backup %s to %s.old"
msgstr ""
-#: ../../bootlook.pm_.c:184
+#: ../../bootlook.pm_.c:187
msgid "unable to backup lilo message"
msgstr ""
-#: ../../bootlook.pm_.c:186
+#: ../../bootlook.pm_.c:189
#, c-format
msgid "Copy %s to %s"
msgstr ""
-#: ../../bootlook.pm_.c:187
+#: ../../bootlook.pm_.c:190
msgid "can't change lilo message"
msgstr ""
-#: ../../bootlook.pm_.c:190
+#: ../../bootlook.pm_.c:193
msgid "Lilo message not found"
msgstr ""
-#: ../../bootlook.pm_.c:220
+#: ../../bootlook.pm_.c:223
msgid "Can't write /etc/sysconfig/bootsplash."
msgstr ""
-#: ../../bootlook.pm_.c:220
+#: ../../bootlook.pm_.c:223
#, fuzzy, c-format
msgid "Write %s"
msgstr "XFree %s"
-#: ../../bootlook.pm_.c:222
+#: ../../bootlook.pm_.c:225
msgid ""
"Can't write /etc/sysconfig/bootsplash\n"
"File not found."
msgstr ""
-#: ../../bootlook.pm_.c:233
+#: ../../bootlook.pm_.c:236
#, c-format
msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
msgstr ""
-#: ../../bootlook.pm_.c:236
+#: ../../bootlook.pm_.c:239
#, c-format
-msgid "Make initrd 'mkinird -f /boot/initrd-%s.img %s'."
+msgid "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
msgstr ""
-#: ../../bootlook.pm_.c:242
+#: ../../bootlook.pm_.c:245
msgid ""
"Can't relaunch LiLo!\n"
"Launch \"lilo\" as root in command line to complete LiLo theme installation."
msgstr ""
-#: ../../bootlook.pm_.c:246
+#: ../../bootlook.pm_.c:249
msgid "Relaunch 'lilo'"
msgstr ""
-#: ../../bootlook.pm_.c:248
+#: ../../bootlook.pm_.c:251 ../../standalone/draksplash_.c:161
+#: ../../standalone/draksplash_.c:330 ../../standalone/draksplash_.c:454
#, fuzzy
msgid "Notice"
msgstr "Geen video"
-#: ../../bootlook.pm_.c:249
+#: ../../bootlook.pm_.c:252
msgid "LiLo and Bootsplash themes installation successfull"
msgstr ""
-#: ../../bootlook.pm_.c:249
+#: ../../bootlook.pm_.c:252
#, fuzzy
msgid "Theme installation failed!"
msgstr "Kies installasieklas"
-#: ../../bootlook.pm_.c:258
+#: ../../bootlook.pm_.c:261
#, c-format
msgid ""
"You are currently using %s as your boot manager.\n"
@@ -1318,23 +1336,22 @@ msgstr ""
"U gebruik huidig %s as herlaaibestuurder.\n"
"Kliek op Konfigureer om opstelassistent te laai."
-#: ../../bootlook.pm_.c:260 ../../standalone/drakbackup_.c:2352
-#: ../../standalone/drakbackup_.c:2362 ../../standalone/drakbackup_.c:2372
-#: ../../standalone/drakbackup_.c:2380 ../../standalone/drakgw_.c:592
-#: ../../standalone/tinyfirewall_.c:58
+#: ../../bootlook.pm_.c:263 ../../standalone/drakbackup_.c:2427
+#: ../../standalone/drakbackup_.c:2437 ../../standalone/drakbackup_.c:2447
+#: ../../standalone/drakbackup_.c:2455 ../../standalone/drakgw_.c:530
msgid "Configure"
msgstr "Konfigureer"
-#: ../../bootlook.pm_.c:267
+#: ../../bootlook.pm_.c:270
#, fuzzy
msgid "Splash selection"
msgstr "Stoor pakketseleksie"
-#: ../../bootlook.pm_.c:270
+#: ../../bootlook.pm_.c:273
msgid "Themes"
msgstr ""
-#: ../../bootlook.pm_.c:272
+#: ../../bootlook.pm_.c:275
msgid ""
"\n"
"Select a theme for\n"
@@ -1343,44 +1360,44 @@ msgid ""
"them separatly"
msgstr ""
-#: ../../bootlook.pm_.c:275
+#: ../../bootlook.pm_.c:278
msgid "Lilo screen"
msgstr ""
-#: ../../bootlook.pm_.c:279
+#: ../../bootlook.pm_.c:283
msgid "Bootsplash"
msgstr ""
-#: ../../bootlook.pm_.c:314
+#: ../../bootlook.pm_.c:318
msgid "System mode"
msgstr "Stelselmode"
-#: ../../bootlook.pm_.c:316
+#: ../../bootlook.pm_.c:320
msgid "Launch the graphical environment when your system starts"
msgstr "Laai X-Windowstelsel met herlaai"
-#: ../../bootlook.pm_.c:321
+#: ../../bootlook.pm_.c:325
msgid "No, I don't want autologin"
msgstr "Nee, ek verlang outo-aanteken"
-#: ../../bootlook.pm_.c:323
+#: ../../bootlook.pm_.c:327
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "Ja, ek verlang outoaanteken met hierdie (gebruiker,werkskerm)"
-#: ../../bootlook.pm_.c:333 ../../network/netconnect.pm_.c:101
+#: ../../bootlook.pm_.c:337 ../../network/netconnect.pm_.c:101
#: ../../standalone/drakTermServ_.c:173 ../../standalone/drakTermServ_.c:300
-#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:3513
-#: ../../standalone/drakbackup_.c:4290 ../../standalone/drakconnect_.c:108
+#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4191
+#: ../../standalone/drakbackup_.c:4952 ../../standalone/drakconnect_.c:108
#: ../../standalone/drakconnect_.c:140 ../../standalone/drakconnect_.c:296
#: ../../standalone/drakconnect_.c:435 ../../standalone/drakconnect_.c:521
#: ../../standalone/drakconnect_.c:564 ../../standalone/drakconnect_.c:667
#: ../../standalone/drakfloppy_.c:376 ../../standalone/drakfont_.c:612
#: ../../standalone/drakfont_.c:799 ../../standalone/drakfont_.c:876
-#: ../../standalone/drakfont_.c:963 ../../standalone/logdrake_.c:521
+#: ../../standalone/drakfont_.c:963 ../../standalone/logdrake_.c:519
msgid "OK"
msgstr "OK"
-#: ../../bootlook.pm_.c:403
+#: ../../bootlook.pm_.c:407
#, c-format
msgid "can not open /etc/inittab for reading: %s"
msgstr "kan nie /etc/inittab oopmaak vir lees nie: %s"
@@ -1484,50 +1501,54 @@ msgstr "seriaal"
msgid "United States"
msgstr ""
-#: ../../detect_devices.pm_.c:599 ../../detect_devices.pm_.c:641
-#: ../../detect_devices.pm_.c:803
-#, fuzzy
-msgid "Unknown Model"
-msgstr "Onbekende model"
-
#: ../../diskdrake/dav.pm_.c:23
#, fuzzy
msgid "New"
msgstr "nuut"
-#: ../../diskdrake/dav.pm_.c:57
+#: ../../diskdrake/dav.pm_.c:59 ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/smbnfs_gtk.pm_.c:81
+msgid "Unmount"
+msgstr "Ontheg"
+
+#: ../../diskdrake/dav.pm_.c:60 ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/smbnfs_gtk.pm_.c:82
+msgid "Mount"
+msgstr "Heg"
+
+#: ../../diskdrake/dav.pm_.c:61
msgid "Server"
msgstr "Bediener"
-#: ../../diskdrake/dav.pm_.c:58 ../../diskdrake/interactive.pm_.c:375
-#: ../../diskdrake/interactive.pm_.c:558 ../../diskdrake/interactive.pm_.c:585
+#: ../../diskdrake/dav.pm_.c:62 ../../diskdrake/interactive.pm_.c:379
+#: ../../diskdrake/interactive.pm_.c:568 ../../diskdrake/interactive.pm_.c:595
#: ../../diskdrake/removable.pm_.c:24 ../../diskdrake/removable_gtk.pm_.c:15
#: ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr "Hegpunt"
#
-#: ../../diskdrake/dav.pm_.c:68
+#: ../../diskdrake/dav.pm_.c:81
#, fuzzy
msgid "Please enter the WebDAV server URL"
msgstr "Toets asb. die muis"
-#: ../../diskdrake/dav.pm_.c:71
+#: ../../diskdrake/dav.pm_.c:84
msgid "The URL must begin with http:// or https://"
msgstr ""
-#: ../../diskdrake/dav.pm_.c:92
+#: ../../diskdrake/dav.pm_.c:105
#, fuzzy
msgid "Server: "
msgstr "Bediener"
-#: ../../diskdrake/dav.pm_.c:93 ../../diskdrake/interactive.pm_.c:435
-#: ../../diskdrake/interactive.pm_.c:1079
-#: ../../diskdrake/interactive.pm_.c:1153
+#: ../../diskdrake/dav.pm_.c:106 ../../diskdrake/interactive.pm_.c:440
+#: ../../diskdrake/interactive.pm_.c:1089
+#: ../../diskdrake/interactive.pm_.c:1164
msgid "Mount point: "
msgstr "Hegpunt:"
-#: ../../diskdrake/dav.pm_.c:94 ../../diskdrake/interactive.pm_.c:1159
+#: ../../diskdrake/dav.pm_.c:107 ../../diskdrake/interactive.pm_.c:1170
#, c-format
msgid "Options: %s"
msgstr "Opsies: %s"
@@ -1536,8 +1557,9 @@ msgstr "Opsies: %s"
msgid "Please make a backup of your data first"
msgstr "Rugsteun u data eers asb."
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:924
-#: ../../diskdrake/interactive.pm_.c:933 ../../diskdrake/interactive.pm_.c:999
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:934
+#: ../../diskdrake/interactive.pm_.c:943
+#: ../../diskdrake/interactive.pm_.c:1009
msgid "Read carefully!"
msgstr "Lees noukeurig!"
@@ -1575,10 +1597,15 @@ msgid "Please click on a partition"
msgstr "Kliek asb. op 'n partisie"
#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
-#: ../../install_steps_gtk.pm_.c:471
+#: ../../install_steps_gtk.pm_.c:465
msgid "Details"
msgstr "Detail"
+#: ../../diskdrake/hd_gtk.pm_.c:252
+#, fuzzy
+msgid "No hard drives found"
+msgstr "Plaaslike drukker"
+
#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Ext2"
msgstr "Ext2"
@@ -1604,13 +1631,13 @@ msgstr "SunOS"
msgid "Swap"
msgstr "Ruilarea"
-#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1105
msgid "Empty"
msgstr "Leeg"
-#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:331
-#: ../../install_steps_gtk.pm_.c:389 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1679
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:325
+#: ../../install_steps_gtk.pm_.c:383 ../../mouse.pm_.c:165
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1754
msgid "Other"
msgstr "Ander"
@@ -1618,12 +1645,12 @@ msgstr "Ander"
msgid "Filesystem types:"
msgstr "LOersteltipes:"
-#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:397
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:402
msgid "Create"
msgstr "Skep"
-#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:376
-#: ../../diskdrake/interactive.pm_.c:521 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:380
+#: ../../diskdrake/interactive.pm_.c:531 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "Tipe"
@@ -1633,7 +1660,7 @@ msgstr "Tipe"
msgid "Use ``%s'' instead"
msgstr "Gebruik ``%s'' instede."
-#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:389
msgid "Delete"
msgstr "Uitwis"
@@ -1641,7 +1668,7 @@ msgstr "Uitwis"
msgid "Use ``Unmount'' first"
msgstr "Gebruik ``Ontheg'' eerste"
-#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:513
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:518
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
@@ -1649,72 +1676,72 @@ msgstr ""
"Alle data om hierdie partisie %s sal uitgewis word na verandering van die "
"partisietipe"
-#: ../../diskdrake/interactive.pm_.c:173
+#: ../../diskdrake/interactive.pm_.c:174
msgid "Choose a partition"
msgstr "Kies 'n partisie"
-#: ../../diskdrake/interactive.pm_.c:173
+#: ../../diskdrake/interactive.pm_.c:174
msgid "Choose another partition"
msgstr "Kies 'n ander partisie"
-#: ../../diskdrake/interactive.pm_.c:198
+#: ../../diskdrake/interactive.pm_.c:199
msgid "Exit"
msgstr "Verlaat"
-#: ../../diskdrake/interactive.pm_.c:220
+#: ../../diskdrake/interactive.pm_.c:221
msgid "Toggle to expert mode"
msgstr "Skakel oor na kundige gebruiksvlak"
-#: ../../diskdrake/interactive.pm_.c:220
+#: ../../diskdrake/interactive.pm_.c:221
msgid "Toggle to normal mode"
msgstr "Skakel oor na normale gebruiksvlak"
-#: ../../diskdrake/interactive.pm_.c:220
+#: ../../diskdrake/interactive.pm_.c:221
msgid "Undo"
msgstr "Herroep"
-#: ../../diskdrake/interactive.pm_.c:239
+#: ../../diskdrake/interactive.pm_.c:240
msgid "Continue anyway?"
msgstr "Wil u in elk geval voortgaan?"
-#: ../../diskdrake/interactive.pm_.c:244
+#: ../../diskdrake/interactive.pm_.c:245
msgid "Quit without saving"
msgstr "Verlaat, maar moenie iets stoor nie"
-#: ../../diskdrake/interactive.pm_.c:244
+#: ../../diskdrake/interactive.pm_.c:245
msgid "Quit without writing the partition table?"
msgstr "Wil u verlaat, sonder om die partisietabel op te dateer?"
-#: ../../diskdrake/interactive.pm_.c:249
+#: ../../diskdrake/interactive.pm_.c:250
msgid "Do you want to save /etc/fstab modifications"
msgstr "Wil u die /etc/fstab veranderinge stoor?"
-#: ../../diskdrake/interactive.pm_.c:261
+#: ../../diskdrake/interactive.pm_.c:263
msgid "Auto allocate"
msgstr "Outo-allokeer"
-#: ../../diskdrake/interactive.pm_.c:261
+#: ../../diskdrake/interactive.pm_.c:263
msgid "Clear all"
msgstr "Verwydeer almal"
-#: ../../diskdrake/interactive.pm_.c:261
+#: ../../diskdrake/interactive.pm_.c:263
#: ../../install_steps_interactive.pm_.c:214
msgid "More"
msgstr "Nog"
-#: ../../diskdrake/interactive.pm_.c:264
+#: ../../diskdrake/interactive.pm_.c:267
msgid "Hard drive information"
msgstr "Hardeskyfinligting"
-#: ../../diskdrake/interactive.pm_.c:294
+#: ../../diskdrake/interactive.pm_.c:298
msgid "All primary partitions are used"
msgstr "Alle primêre partisies is gebruik"
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:299
msgid "I can't add any more partition"
msgstr "Ek kan nie meer partisies byvoeg nie"
-#: ../../diskdrake/interactive.pm_.c:296
+#: ../../diskdrake/interactive.pm_.c:300
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -1722,35 +1749,35 @@ msgstr ""
"Om meer partisies te verkry, verwyder asb. een om 'n ektensiepartisiete kan "
"skep"
-#: ../../diskdrake/interactive.pm_.c:306
+#: ../../diskdrake/interactive.pm_.c:310
#, fuzzy
msgid "Save partition table"
msgstr "Skryf partisietabel"
-#: ../../diskdrake/interactive.pm_.c:307
+#: ../../diskdrake/interactive.pm_.c:311
#, fuzzy
msgid "Restore partition table"
msgstr "Reddingspartisietabel"
-#: ../../diskdrake/interactive.pm_.c:308
+#: ../../diskdrake/interactive.pm_.c:312
msgid "Rescue partition table"
msgstr "Reddingspartisietabel"
-#: ../../diskdrake/interactive.pm_.c:310
+#: ../../diskdrake/interactive.pm_.c:314
#, fuzzy
msgid "Reload partition table"
msgstr "Reddingspartisietabel"
-#: ../../diskdrake/interactive.pm_.c:315
+#: ../../diskdrake/interactive.pm_.c:319
#, fuzzy
msgid "Removable media automounting"
msgstr "Verwyderbare media"
-#: ../../diskdrake/interactive.pm_.c:324 ../../diskdrake/interactive.pm_.c:344
+#: ../../diskdrake/interactive.pm_.c:328 ../../diskdrake/interactive.pm_.c:348
msgid "Select file"
msgstr "Selekteer lOer"
-#: ../../diskdrake/interactive.pm_.c:331
+#: ../../diskdrake/interactive.pm_.c:335
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1758,11 +1785,11 @@ msgstr ""
"Die rugsteunpartisietabel het nie dieselfde grootte nie\n"
"Wil u voortgaan?"
-#: ../../diskdrake/interactive.pm_.c:345
+#: ../../diskdrake/interactive.pm_.c:349
msgid "Warning"
msgstr "Waarskuwing"
-#: ../../diskdrake/interactive.pm_.c:346
+#: ../../diskdrake/interactive.pm_.c:350
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1770,114 +1797,106 @@ msgstr ""
"Sit 'n floppie in die aandrywer.\n"
"Alle data op hierdie floppie sal verloor word."
-#: ../../diskdrake/interactive.pm_.c:357
+#: ../../diskdrake/interactive.pm_.c:361
msgid "Trying to rescue partition table"
msgstr "Partisietabel Reddingspoging"
-#: ../../diskdrake/interactive.pm_.c:363
+#: ../../diskdrake/interactive.pm_.c:367
msgid "Detailed information"
msgstr "Gedetaileerde inligting"
-#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:652
+#: ../../diskdrake/interactive.pm_.c:382 ../../diskdrake/interactive.pm_.c:662
msgid "Resize"
msgstr "Verstel Grootte"
-#: ../../diskdrake/interactive.pm_.c:379 ../../diskdrake/interactive.pm_.c:705
+#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/interactive.pm_.c:715
msgid "Move"
msgstr "Skuif"
-#: ../../diskdrake/interactive.pm_.c:380
+#: ../../diskdrake/interactive.pm_.c:384
msgid "Format"
msgstr "Formatteer"
-#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/smbnfs_gtk.pm_.c:82
-msgid "Mount"
-msgstr "Heg"
-
-#: ../../diskdrake/interactive.pm_.c:382
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Add to RAID"
msgstr "Voeg by RAID"
-#: ../../diskdrake/interactive.pm_.c:383
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Add to LVM"
msgstr "Voeg by LVM"
-#: ../../diskdrake/interactive.pm_.c:384 ../../diskdrake/smbnfs_gtk.pm_.c:81
-msgid "Unmount"
-msgstr "Ontheg"
-
-#: ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/interactive.pm_.c:390
msgid "Remove from RAID"
msgstr "Verwyder uit RAID"
-#: ../../diskdrake/interactive.pm_.c:387
+#: ../../diskdrake/interactive.pm_.c:391
msgid "Remove from LVM"
msgstr "Verwyder uit LVM"
-#: ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/interactive.pm_.c:392
msgid "Modify RAID"
msgstr "Verander RAID"
-#: ../../diskdrake/interactive.pm_.c:389
+#: ../../diskdrake/interactive.pm_.c:393
msgid "Use for loopback"
msgstr "Gebruik vir teruglus"
-#: ../../diskdrake/interactive.pm_.c:428
+#: ../../diskdrake/interactive.pm_.c:433
msgid "Create a new partition"
msgstr "Kies 'n nuwe grootte"
-#: ../../diskdrake/interactive.pm_.c:431
+#: ../../diskdrake/interactive.pm_.c:436
msgid "Start sector: "
msgstr "Kies sektor: "
-#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:805
+#: ../../diskdrake/interactive.pm_.c:438 ../../diskdrake/interactive.pm_.c:815
msgid "Size in MB: "
msgstr "Grootte in MB: "
-#: ../../diskdrake/interactive.pm_.c:434 ../../diskdrake/interactive.pm_.c:806
+#: ../../diskdrake/interactive.pm_.c:439 ../../diskdrake/interactive.pm_.c:816
msgid "Filesystem type: "
msgstr "LOerstelseltipe: "
-#: ../../diskdrake/interactive.pm_.c:439
+#: ../../diskdrake/interactive.pm_.c:444
msgid "Preference: "
msgstr "Voorkeure: "
-#: ../../diskdrake/interactive.pm_.c:464
+#: ../../diskdrake/interactive.pm_.c:469
msgid ""
"You can't create a new partition\n"
"(since you reached the maximal number of primary partitions).\n"
"First remove a primary partition and create an extended partition."
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:494
+#: ../../diskdrake/interactive.pm_.c:499
#, fuzzy
msgid "Remove the loopback file?"
msgstr "Terugluslêer %s word geformateer"
-#: ../../diskdrake/interactive.pm_.c:519
+#: ../../diskdrake/interactive.pm_.c:529
msgid "Change partition type"
msgstr "Verander partisietipe"
#
-#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:530 ../../diskdrake/removable.pm_.c:48
msgid "Which filesystem do you want?"
msgstr "Watter lêerstelsel verlang u?"
-#: ../../diskdrake/interactive.pm_.c:526
+#: ../../diskdrake/interactive.pm_.c:536
msgid "Switching from ext2 to ext3"
msgstr "Oorskakeling van ext2 na ext3"
-#: ../../diskdrake/interactive.pm_.c:556
+#: ../../diskdrake/interactive.pm_.c:566
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "Waar wil u terugluslêer %s heg?"
-#: ../../diskdrake/interactive.pm_.c:557
+#: ../../diskdrake/interactive.pm_.c:567
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Waar wil u toestel %s heg?"
-#: ../../diskdrake/interactive.pm_.c:563
+#: ../../diskdrake/interactive.pm_.c:573
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1885,138 +1904,138 @@ msgstr ""
"Kan nie hegpunt ontset nie, omdat hierdie partisie vir teruglus\n"
"gebruik word. Verwyder eers die teruglus."
-#: ../../diskdrake/interactive.pm_.c:584
+#: ../../diskdrake/interactive.pm_.c:594
#, fuzzy, c-format
msgid "Where do you want to mount %s?"
msgstr "Waar wil u toestel %s heg?"
-#: ../../diskdrake/interactive.pm_.c:608
+#: ../../diskdrake/interactive.pm_.c:618
msgid "Computing FAT filesystem bounds"
msgstr "FAT lêerstelselgrense word bereken"
-#: ../../diskdrake/interactive.pm_.c:608 ../../diskdrake/interactive.pm_.c:667
-#: ../../install_interactive.pm_.c:131
+#: ../../diskdrake/interactive.pm_.c:618 ../../diskdrake/interactive.pm_.c:677
+#: ../../install_interactive.pm_.c:133
msgid "Resizing"
msgstr "Grootteverandering"
-#: ../../diskdrake/interactive.pm_.c:640
+#: ../../diskdrake/interactive.pm_.c:650
msgid "This partition is not resizeable"
msgstr "Hierdie partisie se greootte kan nie verstel word nie"
-#: ../../diskdrake/interactive.pm_.c:645
+#: ../../diskdrake/interactive.pm_.c:655
msgid "All data on this partition should be backed-up"
msgstr "Alle data om hierdie partisie moet gerugsteun word."
-#: ../../diskdrake/interactive.pm_.c:647
+#: ../../diskdrake/interactive.pm_.c:657
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr "Alle data om partisie %s sal uitgewis word met die grootteverandering"
-#: ../../diskdrake/interactive.pm_.c:652
+#: ../../diskdrake/interactive.pm_.c:662
msgid "Choose the new size"
msgstr "Kies die nuwe grootte"
-#: ../../diskdrake/interactive.pm_.c:653
+#: ../../diskdrake/interactive.pm_.c:663
msgid "New size in MB: "
msgstr "Nuwe grootte in MB: "
-#: ../../diskdrake/interactive.pm_.c:706
+#: ../../diskdrake/interactive.pm_.c:716
msgid "Which disk do you want to move it to?"
msgstr "Na watter skyf wil u skuif?"
-#: ../../diskdrake/interactive.pm_.c:707
+#: ../../diskdrake/interactive.pm_.c:717
msgid "Sector"
msgstr "Sektor"
-#: ../../diskdrake/interactive.pm_.c:708
+#: ../../diskdrake/interactive.pm_.c:718
msgid "Which sector do you want to move it to?"
msgstr "Na watter sektor wil u skuif?"
-#: ../../diskdrake/interactive.pm_.c:711
+#: ../../diskdrake/interactive.pm_.c:721
msgid "Moving"
msgstr "Verskuiwing"
-#: ../../diskdrake/interactive.pm_.c:711
+#: ../../diskdrake/interactive.pm_.c:721
msgid "Moving partition..."
msgstr "Partisie word verskuif..."
-#: ../../diskdrake/interactive.pm_.c:728
+#: ../../diskdrake/interactive.pm_.c:738
msgid "Choose an existing RAID to add to"
msgstr "Kies 'n bestaande RAID om by toe te voeg"
-#: ../../diskdrake/interactive.pm_.c:729 ../../diskdrake/interactive.pm_.c:746
+#: ../../diskdrake/interactive.pm_.c:739 ../../diskdrake/interactive.pm_.c:756
msgid "new"
msgstr "nuut"
-#: ../../diskdrake/interactive.pm_.c:744
+#: ../../diskdrake/interactive.pm_.c:754
msgid "Choose an existing LVM to add to"
msgstr "Kies 'n bestaande LVM om by toe te voeg"
-#: ../../diskdrake/interactive.pm_.c:749
+#: ../../diskdrake/interactive.pm_.c:759
msgid "LVM name?"
msgstr "LVM naam?"
-#: ../../diskdrake/interactive.pm_.c:790
+#: ../../diskdrake/interactive.pm_.c:800
msgid "This partition can't be used for loopback"
msgstr "Hierdie partisie kan nie vir teruglus gebruik word nie."
-#: ../../diskdrake/interactive.pm_.c:803
+#: ../../diskdrake/interactive.pm_.c:813
msgid "Loopback"
msgstr "Teruglus"
-#: ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:814
msgid "Loopback file name: "
msgstr "Teruglus lêernaam:"
-#: ../../diskdrake/interactive.pm_.c:809
+#: ../../diskdrake/interactive.pm_.c:819
#, fuzzy
msgid "Give a file name"
msgstr "Regte naam"
-#: ../../diskdrake/interactive.pm_.c:812
+#: ../../diskdrake/interactive.pm_.c:822
msgid "File already used by another loopback, choose another one"
msgstr "Lêer word alreeds deur 'n ander teruglus gebruik,kies 'n ander een"
-#: ../../diskdrake/interactive.pm_.c:813
+#: ../../diskdrake/interactive.pm_.c:823
msgid "File already exists. Use it?"
msgstr "Lêer bestaan alreeds. Moet dit gebruik word?"
-#: ../../diskdrake/interactive.pm_.c:836
+#: ../../diskdrake/interactive.pm_.c:846
msgid "Mount options"
msgstr "Hegopsies:"
-#: ../../diskdrake/interactive.pm_.c:843
+#: ../../diskdrake/interactive.pm_.c:853
msgid "Various"
msgstr "Verskeie"
-#: ../../diskdrake/interactive.pm_.c:907 ../../standalone/drakfloppy_.c:103
+#: ../../diskdrake/interactive.pm_.c:917 ../../standalone/drakfloppy_.c:103
msgid "device"
msgstr "toestel"
-#: ../../diskdrake/interactive.pm_.c:908
+#: ../../diskdrake/interactive.pm_.c:918
msgid "level"
msgstr "vlak"
-#: ../../diskdrake/interactive.pm_.c:909
+#: ../../diskdrake/interactive.pm_.c:919
msgid "chunk size"
msgstr "blokgrootte"
-#: ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:934
msgid "Be careful: this operation is dangerous."
msgstr "Wees versigtig: hierdie is 'n gevaarlike operasie"
-#: ../../diskdrake/interactive.pm_.c:939
+#: ../../diskdrake/interactive.pm_.c:949
msgid "What type of partitioning?"
msgstr "Watter tipe van partisionering?"
-#: ../../diskdrake/interactive.pm_.c:955
+#: ../../diskdrake/interactive.pm_.c:965
#, fuzzy, c-format
msgid "The package %s is needed. Install it?"
msgstr ""
"Hierdie pakket moet opgradeer word\n"
"Is u seker u wil dit deselekteer?"
-#: ../../diskdrake/interactive.pm_.c:969
+#: ../../diskdrake/interactive.pm_.c:979
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -2029,7 +2048,7 @@ msgstr ""
"gebruik\n"
"nie, dan het u nie /boot nodig nie."
-#: ../../diskdrake/interactive.pm_.c:973
+#: ../../diskdrake/interactive.pm_.c:983
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -2042,7 +2061,7 @@ msgstr ""
"gebruik,moet u\n"
"asb. 'n /boot partisie skep,"
-#: ../../diskdrake/interactive.pm_.c:979
+#: ../../diskdrake/interactive.pm_.c:989
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
@@ -2052,137 +2071,137 @@ msgstr ""
"Geen herlaaistelsel sal dit kan hanteer sonder 'n /boot partisie nie.\n"
"Onthou om 'n /boot by te voeg."
-#: ../../diskdrake/interactive.pm_.c:999
+#: ../../diskdrake/interactive.pm_.c:1009
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "Partisietabel van skyf %s gaan opdateer word!"
-#: ../../diskdrake/interactive.pm_.c:1003
+#: ../../diskdrake/interactive.pm_.c:1013
msgid "You'll need to reboot before the modification can take place"
msgstr "U sal moet herlaai voor die veranderinge geaktiveer kan word"
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1024
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr "Alle data om partisie %s sal uitgewis word met formatering."
-#: ../../diskdrake/interactive.pm_.c:1016
+#: ../../diskdrake/interactive.pm_.c:1026
msgid "Formatting"
msgstr "Formatering"
-#: ../../diskdrake/interactive.pm_.c:1017
+#: ../../diskdrake/interactive.pm_.c:1027
#, c-format
msgid "Formatting loopback file %s"
msgstr "Terugluslêer %s word geformateer"
-#: ../../diskdrake/interactive.pm_.c:1018
-#: ../../install_steps_interactive.pm_.c:476
+#: ../../diskdrake/interactive.pm_.c:1028
+#: ../../install_steps_interactive.pm_.c:459
#, c-format
msgid "Formatting partition %s"
msgstr "Partisie %s word formateer"
-#: ../../diskdrake/interactive.pm_.c:1029
+#: ../../diskdrake/interactive.pm_.c:1039
#, fuzzy
msgid "Hide files"
msgstr "mkraid het gefaal"
-#: ../../diskdrake/interactive.pm_.c:1029
+#: ../../diskdrake/interactive.pm_.c:1039
#, fuzzy
msgid "Move files to the new partition"
msgstr "Nie genoeg spasie beskikbaar om nuwe partisies toe te ken nie"
-#: ../../diskdrake/interactive.pm_.c:1030
+#: ../../diskdrake/interactive.pm_.c:1040
#, c-format
msgid ""
"Directory %s already contains data\n"
"(%s)"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1041
+#: ../../diskdrake/interactive.pm_.c:1051
#, fuzzy
msgid "Moving files to the new partition"
msgstr "Nie genoeg spasie beskikbaar om nuwe partisies toe te ken nie"
-#: ../../diskdrake/interactive.pm_.c:1045
+#: ../../diskdrake/interactive.pm_.c:1055
#, c-format
msgid "Copying %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1049
+#: ../../diskdrake/interactive.pm_.c:1059
#, fuzzy, c-format
msgid "Removing %s"
msgstr "LPD word verwyder..."
-#: ../../diskdrake/interactive.pm_.c:1059
+#: ../../diskdrake/interactive.pm_.c:1069
#, c-format
msgid "partition %s is now known as %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1080
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1090
+#: ../../diskdrake/interactive.pm_.c:1149
msgid "Device: "
msgstr "Toestel:"
-#: ../../diskdrake/interactive.pm_.c:1081
+#: ../../diskdrake/interactive.pm_.c:1091
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "DOS-skyfletter: %s ('n raaiskoot)\n"
-#: ../../diskdrake/interactive.pm_.c:1085
-#: ../../diskdrake/interactive.pm_.c:1093
-#: ../../diskdrake/interactive.pm_.c:1157
+#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1103
+#: ../../diskdrake/interactive.pm_.c:1168
msgid "Type: "
msgstr "Tipe:"
-#: ../../diskdrake/interactive.pm_.c:1089
+#: ../../diskdrake/interactive.pm_.c:1099
msgid "Name: "
msgstr "Naam: "
-#: ../../diskdrake/interactive.pm_.c:1097
+#: ../../diskdrake/interactive.pm_.c:1107
#, c-format
msgid "Start: sector %s\n"
msgstr "Begin: sektor %s\n"
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1108
#, c-format
msgid "Size: %s"
msgstr "Grootte: %s"
-#: ../../diskdrake/interactive.pm_.c:1100
+#: ../../diskdrake/interactive.pm_.c:1110
#, c-format
msgid ", %s sectors"
msgstr ", %s sektore"
-#: ../../diskdrake/interactive.pm_.c:1102
+#: ../../diskdrake/interactive.pm_.c:1112
#, fuzzy, c-format
msgid "Cylinder %d to %d\n"
msgstr "Silinder %d na silinder %d\n"
-#: ../../diskdrake/interactive.pm_.c:1103
+#: ../../diskdrake/interactive.pm_.c:1113
msgid "Formatted\n"
msgstr "Geformateer\n"
-#: ../../diskdrake/interactive.pm_.c:1104
+#: ../../diskdrake/interactive.pm_.c:1114
msgid "Not formatted\n"
msgstr "Nie geformatter\n"
-#: ../../diskdrake/interactive.pm_.c:1105
+#: ../../diskdrake/interactive.pm_.c:1115
msgid "Mounted\n"
msgstr "Geheg\n"
-#: ../../diskdrake/interactive.pm_.c:1106
+#: ../../diskdrake/interactive.pm_.c:1116
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1108
+#: ../../diskdrake/interactive.pm_.c:1118
#, fuzzy, c-format
msgid ""
"Loopback file(s):\n"
" %s\n"
msgstr "Teruglus lêer(s): %s\n"
-#: ../../diskdrake/interactive.pm_.c:1109
+#: ../../diskdrake/interactive.pm_.c:1119
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -2190,27 +2209,27 @@ msgstr ""
"Verstekpartisie vir herlaai\n"
" (vir MS_DOS doeleindes, nie LILO s'n nie)\n"
-#: ../../diskdrake/interactive.pm_.c:1111
+#: ../../diskdrake/interactive.pm_.c:1121
#, c-format
msgid "Level %s\n"
msgstr "Vlak %s\n"
-#: ../../diskdrake/interactive.pm_.c:1112
+#: ../../diskdrake/interactive.pm_.c:1122
#, c-format
msgid "Chunk size %s\n"
msgstr "Blokgrootte %s\n"
-#: ../../diskdrake/interactive.pm_.c:1113
+#: ../../diskdrake/interactive.pm_.c:1123
#, c-format
msgid "RAID-disks %s\n"
msgstr "RAID-skywe %s\n"
-#: ../../diskdrake/interactive.pm_.c:1115
+#: ../../diskdrake/interactive.pm_.c:1125
#, c-format
msgid "Loopback file name: %s"
msgstr "Teruglus lêernaam: %s"
-#: ../../diskdrake/interactive.pm_.c:1118
+#: ../../diskdrake/interactive.pm_.c:1128
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -2222,7 +2241,7 @@ msgstr ""
"drywerpartisie is en verkieslik alleen gelos\n"
"moet word.\n"
-#: ../../diskdrake/interactive.pm_.c:1121
+#: ../../diskdrake/interactive.pm_.c:1131
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2233,60 +2252,64 @@ msgstr ""
"Hierdie spesiale herlaaipartisie\n"
"is om u stelsel te duolaai.\n"
-#: ../../diskdrake/interactive.pm_.c:1140
+#: ../../diskdrake/interactive.pm_.c:1150
+msgid "Read-only"
+msgstr ""
+
+#: ../../diskdrake/interactive.pm_.c:1151
#, c-format
msgid "Size: %s\n"
msgstr "Grootte: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1141
+#: ../../diskdrake/interactive.pm_.c:1152
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Geometrie: %s silinders, %s koppe, %s sektore\n"
-#: ../../diskdrake/interactive.pm_.c:1142
+#: ../../diskdrake/interactive.pm_.c:1153
msgid "Info: "
msgstr "Info:"
-#: ../../diskdrake/interactive.pm_.c:1143
+#: ../../diskdrake/interactive.pm_.c:1154
#, c-format
msgid "LVM-disks %s\n"
msgstr "LVM-skywe %s\n"
-#: ../../diskdrake/interactive.pm_.c:1144
+#: ../../diskdrake/interactive.pm_.c:1155
#, c-format
msgid "Partition table type: %s\n"
msgstr "Partisietabeltipe: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1145
+#: ../../diskdrake/interactive.pm_.c:1156
#, fuzzy, c-format
msgid "on channel %d id %d\n"
msgstr "op bus %d id %d\n"
-#: ../../diskdrake/interactive.pm_.c:1175
+#: ../../diskdrake/interactive.pm_.c:1186
#, fuzzy
msgid "Filesystem encryption key"
msgstr "LOerstelseltipe: "
-#: ../../diskdrake/interactive.pm_.c:1176
+#: ../../diskdrake/interactive.pm_.c:1187
msgid "Choose your filesystem encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1179
+#: ../../diskdrake/interactive.pm_.c:1190
#, fuzzy, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr ""
"Hierdie wagwoord is te eenvoudig. Dit moet ten minste %d karakters bevat."
-#: ../../diskdrake/interactive.pm_.c:1180
+#: ../../diskdrake/interactive.pm_.c:1191
#, fuzzy
msgid "The encryption keys do not match"
msgstr "Die wagwoorde stem nie ooreen nie."
-#: ../../diskdrake/interactive.pm_.c:1183
+#: ../../diskdrake/interactive.pm_.c:1194
msgid "Encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1184
+#: ../../diskdrake/interactive.pm_.c:1195
msgid "Encryption key (again)"
msgstr ""
@@ -2324,7 +2347,7 @@ msgid ""
"Please enter your username, password and domain name to access this host."
msgstr ""
-#: ../../diskdrake/smbnfs_gtk.pm_.c:178
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3527
#, fuzzy
msgid "Username"
msgstr "Gebruikerskode"
@@ -2339,23 +2362,23 @@ msgstr "NIS-domein"
msgid "Search servers"
msgstr "DNS bediener"
-#: ../../fs.pm_.c:552 ../../fs.pm_.c:562 ../../fs.pm_.c:566 ../../fs.pm_.c:570
-#: ../../fs.pm_.c:574 ../../fs.pm_.c:578
+#: ../../fs.pm_.c:544 ../../fs.pm_.c:554 ../../fs.pm_.c:558 ../../fs.pm_.c:562
+#: ../../fs.pm_.c:566 ../../fs.pm_.c:570
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s formatering ban %s het gefaal"
-#: ../../fs.pm_.c:615
+#: ../../fs.pm_.c:607
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "Ek weet nie om %s as tipe %s te formateer nie"
-#: ../../fs.pm_.c:687 ../../fs.pm_.c:731
+#: ../../fs.pm_.c:681 ../../fs.pm_.c:724
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../fs.pm_.c:746 ../../partition_table.pm_.c:602
+#: ../../fs.pm_.c:739 ../../partition_table.pm_.c:598
#, c-format
msgid "error unmounting %s: %s"
msgstr "fout met onthegting van %s: %s"
@@ -2372,264 +2395,328 @@ msgstr ""
msgid "server"
msgstr "bediener"
-#: ../../fsedit.pm_.c:472
+#: ../../fsedit.pm_.c:240
+#, fuzzy, c-format
+msgid ""
+"I can't read the partition table of device %s, it's too corrupted for me :(\n"
+"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
+"The other solution is to not allow DrakX to modify the partition table.\n"
+"(the error is %s)\n"
+"\n"
+"Do you agree to loose all the partitions?\n"
+msgstr ""
+"Ek kan nie u partisietabel lees nie, dit is te korrup.\n"
+"Ek sal die nodige partisies skoonmaak, maar alle data sal vernietig word.\n"
+"Die ander opsie is om DrakX te belet om die partisietabel te verander.\n"
+"(fout is %s)\n"
+"\n"
+"Will u al die partisies verwyder?\n"
+
+#: ../../fsedit.pm_.c:501
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr "U kan nie JFS vir partisies kleiner as 16MB gebruik nie"
-#: ../../fsedit.pm_.c:473
+#: ../../fsedit.pm_.c:502
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr "U kan nie ReiserFS vir partisies kleiner as 32MB gebruik nie"
-#: ../../fsedit.pm_.c:492
+#: ../../fsedit.pm_.c:521
msgid "Mount points must begin with a leading /"
msgstr "Hegpunte moet met 'n / begin"
-#: ../../fsedit.pm_.c:493
+#: ../../fsedit.pm_.c:522
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Daar is alreeds 'n partisie met hegpunt %s\n"
-#: ../../fsedit.pm_.c:497
+#: ../../fsedit.pm_.c:526
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr "U kan nie LVM logiese volume vir hegpunt %s gebruik nie."
-#: ../../fsedit.pm_.c:499
+#: ../../fsedit.pm_.c:528
msgid "This directory should remain within the root filesystem"
msgstr "Hierdie lêergids moet altyd in die wortellêerstelsel bly"
-#: ../../fsedit.pm_.c:501
+#: ../../fsedit.pm_.c:530
#, fuzzy
msgid ""
"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
"point\n"
msgstr "U benodig 'n ware lêerstelsel (ext2, reiserfs) vir hierdie hegpunt\n"
-#: ../../fsedit.pm_.c:503
+#: ../../fsedit.pm_.c:532
#, fuzzy, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr "U kan nie LVM logiese volume vir hegpunt %s gebruik nie."
-#: ../../fsedit.pm_.c:570
+#: ../../fsedit.pm_.c:599
#, fuzzy
msgid "Not enough free space for auto-allocating"
msgstr "Nie genoeg spasie beskikbaar om nuwe partisies toe te ken nie"
-#: ../../fsedit.pm_.c:572
+#: ../../fsedit.pm_.c:601
msgid "Nothing to do"
msgstr ""
-#: ../../fsedit.pm_.c:665
+#: ../../fsedit.pm_.c:694
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Four om %s in skryfmode te open: %s"
-#: ../../fsedit.pm_.c:750
+#: ../../harddrake/sound.pm_.c:155
+msgid "No alternative driver"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:156
+#, c-format
+msgid "There's no known OSS/ALSA alternative driver for your sound card (%s)"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:158
+#, fuzzy
+msgid "Sound configuration"
+msgstr "Konfigurasie"
+
+#: ../../harddrake/sound.pm_.c:159
+#, c-format
msgid ""
-"An error occurred - no valid devices were found on which to create new "
-"filesystems. Please check your hardware for the cause of this problem"
+"Here you can select an alternative driver (either OSS or ALSA) for your "
+"sound card (%s)"
msgstr ""
-"'n Fout het voorgekom - geen geldige toestelle om die nuwe lêerstelsels op "
-"te skep, is gevind nie. Deursoek asb. die hardeware vir die oorsaak."
-#: ../../fsedit.pm_.c:773
-msgid "You don't have any partitions!"
-msgstr "U get geen partisies nie!"
+#: ../../harddrake/sound.pm_.c:162
+#, fuzzy
+msgid "Driver:"
+msgstr "Drywer"
+
+#: ../../harddrake/sound.pm_.c:173
+msgid "No known driver"
+msgstr ""
-#: ../../harddrake/ui.pm_.c:15
+#: ../../harddrake/sound.pm_.c:174
+#, c-format
+msgid "There's no known driver for your sound card (%s)"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:177
+#, fuzzy
+msgid "Unkown driver"
+msgstr "Onbekende model"
+
+#: ../../harddrake/sound.pm_.c:178
+#, c-format
+msgid ""
+"The \"%s\" driver for your sound card is unlisted\n"
+"\n"
+"Please send the output of the \"lspcidrake -v\" command to\n"
+"<install at mandrakesoft dot com>\n"
+"with subject: unlisted sound driver \"%s\""
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:16
#, fuzzy
msgid "Model"
msgstr "Muis"
-#: ../../harddrake/ui.pm_.c:15
+#: ../../harddrake/ui.pm_.c:16
#, fuzzy
msgid "hard disk model"
msgstr "Kaartgeheue (DMA)"
-#: ../../harddrake/ui.pm_.c:16
+#: ../../harddrake/ui.pm_.c:17
#, fuzzy
msgid "Channel"
msgstr "Kanselleer"
-#: ../../harddrake/ui.pm_.c:16
+#: ../../harddrake/ui.pm_.c:17
msgid "EIDE/SCSI channel"
msgstr ""
-#: ../../harddrake/ui.pm_.c:18
+#: ../../harddrake/ui.pm_.c:19
msgid "Bus"
msgstr ""
-#: ../../harddrake/ui.pm_.c:19
+#: ../../harddrake/ui.pm_.c:20
msgid ""
"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
msgstr ""
-#: ../../harddrake/ui.pm_.c:20
+#: ../../harddrake/ui.pm_.c:21
#, fuzzy
msgid "Module"
msgstr "Muis"
-#: ../../harddrake/ui.pm_.c:20
+#: ../../harddrake/ui.pm_.c:21
msgid "the module of the GNU/Linux kernel that handle that device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:21
+#: ../../harddrake/ui.pm_.c:22
msgid "Media class"
msgstr ""
-#: ../../harddrake/ui.pm_.c:21
+#: ../../harddrake/ui.pm_.c:22
msgid "class of hardware device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:22 ../../printerdrake.pm_.c:1404
+#: ../../harddrake/ui.pm_.c:23 ../../printerdrake.pm_.c:1517
msgid "Description"
msgstr "Beskrywing"
-#: ../../harddrake/ui.pm_.c:22
+#: ../../harddrake/ui.pm_.c:23
msgid "this field describe the device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:24
+#: ../../harddrake/ui.pm_.c:25
#, fuzzy
msgid "Bus identification"
msgstr "Magtiging"
-#: ../../harddrake/ui.pm_.c:25
+#: ../../harddrake/ui.pm_.c:26
msgid ""
-"- PCI and USB devices : this list the vendor, device, subvendor and "
-"subdevice PCI/USB ids"
+"- PCI and USB devices: this list the vendor, device, subvendor and subdevice "
+"PCI/USB ids"
msgstr ""
-#: ../../harddrake/ui.pm_.c:27
+#: ../../harddrake/ui.pm_.c:28
msgid "Location on the bus"
msgstr ""
-#: ../../harddrake/ui.pm_.c:28
+#: ../../harddrake/ui.pm_.c:29
msgid ""
"- pci devices: this gives the PCI slot, device and function of this card\n"
"- eide devices: the device is either a slave or a master device\n"
"- scsi devices: the scsi bus and the scsi device ids"
msgstr ""
-#: ../../harddrake/ui.pm_.c:31
+#: ../../harddrake/ui.pm_.c:32
#, fuzzy
msgid "Old device file"
msgstr "Selekteer lOer"
-#: ../../harddrake/ui.pm_.c:32
+#: ../../harddrake/ui.pm_.c:33
msgid "old static device name used in dev package"
msgstr ""
-#: ../../harddrake/ui.pm_.c:33
+#: ../../harddrake/ui.pm_.c:34
#, fuzzy
msgid "New devfs device"
msgstr "Netwerkportaaltoestel"
-#: ../../harddrake/ui.pm_.c:34
+#: ../../harddrake/ui.pm_.c:35
msgid "new dinamic device name generated by incore kernel devfs"
msgstr ""
-#: ../../harddrake/ui.pm_.c:35
+#: ../../harddrake/ui.pm_.c:36
#, fuzzy
msgid "Number of buttons"
msgstr "2 knoppies"
-#: ../../harddrake/ui.pm_.c:36
+#: ../../harddrake/ui.pm_.c:37
msgid "the vendor name of the device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:60
+#: ../../harddrake/ui.pm_.c:38
+#, fuzzy
+msgid "Alternative drivers"
+msgstr "Alternatiewe toetsbladsy (A4)"
+
+#: ../../harddrake/ui.pm_.c:39
+msgid "the list of alternative drivers for this sound card"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:63
#, fuzzy
msgid "/_Quit"
msgstr "Verlaat"
-#: ../../harddrake/ui.pm_.c:61 ../../harddrake/ui.pm_.c:62
-#: ../../harddrake/ui.pm_.c:68 ../../standalone/logdrake_.c:110
+#: ../../harddrake/ui.pm_.c:64 ../../harddrake/ui.pm_.c:65
+#: ../../harddrake/ui.pm_.c:71 ../../standalone/logdrake_.c:110
msgid "/_Help"
msgstr "/_Help"
-#: ../../harddrake/ui.pm_.c:62
+#: ../../harddrake/ui.pm_.c:65
#, fuzzy
msgid "/_Help..."
msgstr "/_Help"
-#: ../../harddrake/ui.pm_.c:63
+#: ../../harddrake/ui.pm_.c:66
msgid "Harddrake help"
msgstr ""
-#: ../../harddrake/ui.pm_.c:64
+#: ../../harddrake/ui.pm_.c:67
msgid ""
"Description of the fields:\n"
"\n"
msgstr ""
-#: ../../harddrake/ui.pm_.c:68
+#: ../../harddrake/ui.pm_.c:71
#, fuzzy
msgid "/_About..."
msgstr "/Help/_Aangaande..."
-#: ../../harddrake/ui.pm_.c:69
+#: ../../harddrake/ui.pm_.c:72
msgid "About Harddrake"
msgstr ""
-#: ../../harddrake/ui.pm_.c:70
+#: ../../harddrake/ui.pm_.c:73
msgid ""
"This is HardDrake, a Mandrake hardware configuration tool.\n"
"Version:"
msgstr ""
-#: ../../harddrake/ui.pm_.c:71
+#: ../../harddrake/ui.pm_.c:74
#, fuzzy
msgid "Author:"
msgstr "Aftas"
-#: ../../harddrake/ui.pm_.c:83
+#: ../../harddrake/ui.pm_.c:86
#, fuzzy
msgid "Harddrake2 version "
msgstr "Hardeskyfdeteksie."
-#: ../../harddrake/ui.pm_.c:91
+#: ../../harddrake/ui.pm_.c:103
#, fuzzy
msgid "Detected hardware"
msgstr "Sien hardeware inligting"
-#: ../../harddrake/ui.pm_.c:92
+#: ../../harddrake/ui.pm_.c:105
#, fuzzy
-msgid "Configure module"
-msgstr "Stel muistoestel op"
+msgid "Information"
+msgstr "Vertoon inligting"
-#: ../../harddrake/ui.pm_.c:92
+#: ../../harddrake/ui.pm_.c:108
#, fuzzy
-msgid "Informations"
-msgstr "Vertoon inligting"
+msgid "Configure module"
+msgstr "Stel muistoestel op"
-#: ../../harddrake/ui.pm_.c:92
+#: ../../harddrake/ui.pm_.c:109
msgid "Run config tool"
msgstr ""
-#: ../../harddrake/ui.pm_.c:96
+#: ../../harddrake/ui.pm_.c:113
#, fuzzy
msgid "Detection in progress"
msgstr "Op poort %s bespeur"
-#: ../../harddrake/ui.pm_.c:96 ../../interactive.pm_.c:388
+#: ../../harddrake/ui.pm_.c:113 ../../interactive.pm_.c:391
msgid "Please wait"
msgstr "Wag asb."
-#: ../../harddrake/ui.pm_.c:139
+#: ../../harddrake/ui.pm_.c:156
msgid "primary"
msgstr ""
-#: ../../harddrake/ui.pm_.c:139
+#: ../../harddrake/ui.pm_.c:156
#, fuzzy
msgid "secondary"
msgstr "%d sekondes"
-#: ../../harddrake/ui.pm_.c:176
+#: ../../harddrake/ui.pm_.c:197
msgid "You can configure each parameter of the module here."
msgstr ""
-#: ../../harddrake/ui.pm_.c:192
+#: ../../harddrake/ui.pm_.c:213
#, fuzzy, c-format
msgid "Running \"%s\" ..."
msgstr "Drukkerdata word gelees..."
@@ -2662,16 +2749,16 @@ msgstr ""
#: ../../harddrake/v4l.pm_.c:213
#, fuzzy
-msgid "Card model :"
+msgid "Card model:"
msgstr "Kaartgeheue (DMA)"
#: ../../harddrake/v4l.pm_.c:214
#, fuzzy
-msgid "Tuner type :"
+msgid "Tuner type:"
msgstr "Verander tipe"
#: ../../harddrake/v4l.pm_.c:215
-msgid "Number of capture buffers :"
+msgid "Number of capture buffers:"
msgstr ""
#: ../../harddrake/v4l.pm_.c:215
@@ -2680,11 +2767,11 @@ msgstr ""
#: ../../harddrake/v4l.pm_.c:217
#, fuzzy
-msgid "PLL setting :"
+msgid "PLL setting:"
msgstr "Formatering"
#: ../../harddrake/v4l.pm_.c:218
-msgid "Radio support :"
+msgid "Radio support:"
msgstr ""
#: ../../harddrake/v4l.pm_.c:218
@@ -2697,22 +2784,22 @@ msgid ""
"GNU/Linux is a multiuser system, and this means that each user can have his\n"
"own preferences, his own files and so on. You can read the ``User Guide''\n"
"to learn more. But unlike \"root\", which is the administrator, the users\n"
-"you will add here will not be entitled to change anything except their own\n"
-"files and their own configuration. You will have to create at least one\n"
-"regular user for yourself. That account is where you should log in for\n"
-"routine use. Although it is very practical to log in as \"root\" everyday,\n"
-"it may also be very dangerous! The slightest mistake could mean that your\n"
-"system would not work any more. If you make a serious mistake as a regular\n"
-"user, you may only lose some information, but not the entire system.\n"
+"you add here will not be entitled to change anything except their own files\n"
+"and their own configuration. You will have to create at least one regular\n"
+"user for yourself. That account is where you should log in for routine use.\n"
+"Although it is very practical to log in as \"root\" everyday, it may also\n"
+"be very dangerous! The slightest mistake could mean that your system would\n"
+"not work any more. If you make a serious mistake as a regular user, you may\n"
+"only lose some information, but not the entire system.\n"
"\n"
"First, you have to enter your real name. This is not mandatory, of course -\n"
"as you can actually enter whatever you want. DrakX will then take the first\n"
"word you have entered in the box and will bring it over to the \"User\n"
"name\". This is the name this particular user will use to log onto the\n"
"system. You can change it. You then have to enter a password here. A\n"
-"non-privileged (regular) user's password is not as crucial as \"root\"' one\n"
-"from a security point of view, but that is no reason to neglect it: after\n"
-"all, your files are at risk.\n"
+"non-privileged (regular) user's password is not as crucial as the \"root\"'\n"
+"one from a security point of view, but that is no reason to neglect it:\n"
+"after all, your files are at risk.\n"
"\n"
"If you click on \"Accept user\", you can then add as many as you want. Add\n"
"a user for each one of your friends: your father or your sister, for\n"
@@ -2831,7 +2918,7 @@ msgid ""
"to have a graphical workstation!\n"
"\n"
"Moving the mouse cursor over a group name will display a short explanatory\n"
-"text about that group. If you deselect all groups when performing a regular\n"
+"text about that group. If you unselect all groups when performing a regular\n"
"installation (by opposition to an upgrade), a dialog will pop up proposing\n"
"different options for a minimal installation:\n"
"\n"
@@ -2857,10 +2944,10 @@ msgstr ""
#: ../../help.pm_.c:128
msgid ""
-"Finally, depending on whether or not you selected individual packages, you\n"
-"will be presented a tree containing all packages classified by groups and\n"
-"subgroups. While browsing the tree, you can select entire groups,\n"
-"subgroups, or individual packages.\n"
+"Finally, depending on whether or not you chose to be able to select\n"
+"individual packages, you will be presented a tree containing all packages\n"
+"classified by groups and subgroups. While browsing the tree, you can select\n"
+"entire groups, subgroups, or individual packages.\n"
"\n"
"Whenever you select a package on the tree, a description appears on the\n"
"right. When your selection is finished, click the \"Install\" button which\n"
@@ -2895,11 +2982,11 @@ msgstr ""
#: ../../help.pm_.c:164
msgid ""
-"You are now proposed to set up your Internet/network connection. If you\n"
-"wish to connect your computer to the Internet or to a local network, click\n"
-"\"OK\". The autodetection of network devices and modem will be launched. If\n"
-"this detection fails, uncheck the \"Use auto detection\" box next time. You\n"
-"may also choose not to configure the network, or do it later; in that case,\n"
+"You are now able to set up your Internet/network connection. If you wish to\n"
+"connect your computer to the Internet or to a local network, click \"OK\".\n"
+"The autodetection of network devices and modem will be launched. If this\n"
+"detection fails, uncheck the \"Use auto detection\" box next time. You may\n"
+"also choose not to configure the network, or do it later; in that case,\n"
"simply click the \"Cancel\" button.\n"
"\n"
"Available connections are: traditional modem, ISDN modem, ADSL connection,\n"
@@ -2947,7 +3034,7 @@ msgstr ""
msgid ""
"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
"local time according to the time zone you selected. It is however possible\n"
-"to deactivate this by deselecting \"Hardware clock set to GMT\" so that the\n"
+"to deactivate this by unselecting \"Hardware clock set to GMT\" so that the\n"
"hardware clock is the same as the system clock. This is useful when the\n"
"machine is hosting another operating system like Windows.\n"
"\n"
@@ -2978,24 +3065,12 @@ msgid ""
"If you can see the message during the test, and answer \"Yes\", then DrakX\n"
"will proceed to the next step. If you cannot see the message, it simply\n"
"means that the configuration was wrong and the test will automatically end\n"
-"after 10 seconds, restoring the screen."
-msgstr ""
-
-#: ../../help.pm_.c:237
-msgid ""
-"The first time you try the X configuration, you may not be very satisfied\n"
-"with its display (screen is too small, shifted left or right...). Hence,\n"
-"even if X starts up correctly, DrakX then asks you if the configuration\n"
-"suits you. It will also propose to change it by displaying a list of valid\n"
-"modes it could find, asking you to select one.\n"
-"\n"
-"As a last resort, if you still cannot get X to work, choose \"Change\n"
-"graphics card\", select \"Unlisted card\", and when prompted on which\n"
-"server, choose \"FBDev\". This is a failsafe option which works with any\n"
-"modern graphics card. Then choose \"Test again\" to be sure."
+"after 10 seconds, restoring the screen. Refer then to the Video\n"
+"configuration section of the user guide for more information on how to\n"
+"configure your display."
msgstr ""
-#: ../../help.pm_.c:249
+#: ../../help.pm_.c:239
msgid ""
"Finally, you will be asked whether you want to see the graphical interface\n"
"at boot. Note this question will be asked even if you chose not to test the\n"
@@ -3004,7 +3079,7 @@ msgid ""
"configured."
msgstr ""
-#: ../../help.pm_.c:256
+#: ../../help.pm_.c:246
msgid ""
"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
@@ -3024,13 +3099,13 @@ msgid ""
"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
"password, or any other reason.\n"
"\n"
-"When you click on this step, you will be asked to enter a disk inside the\n"
-"drive. The floppy disk you will insert must be empty or contain data which\n"
-"you do not need. You will not have to format it since DrakX will rewrite\n"
-"the whole disk."
+"If you say \"Yes\", you will be asked to enter a disk inside the drive. The\n"
+"floppy disk you will insert must be empty or contain data which you do not\n"
+"need. You will not have to format it since DrakX will rewrite the whole\n"
+"disk."
msgstr ""
-#: ../../help.pm_.c:280
+#: ../../help.pm_.c:270
msgid ""
"At this point, you need to choose where you want to install the Mandrake\n"
"Linux operating system on your hard drive. If your hard drive is empty or\n"
@@ -3063,7 +3138,9 @@ msgid ""
"\n"
" * \"Use existing partition\": the wizard has detected one or more existing\n"
"Linux partitions on your hard drive. If you want to use them, choose this\n"
-"option;\n"
+"option. You will then be asked to choose the mount points associated to\n"
+"each of the partitions. The legacy mount points are selected by default,\n"
+"and you should generally keep them.\n"
"\n"
" * \"Use the free space on the Windows; partition\": if Microsoft Windows\n"
"is installed on your hard drive and takes all the space available on it,\n"
@@ -3096,10 +3173,12 @@ msgid ""
" * \"Expert mode\": choose this option if you want to manually partition\n"
"your hard drive. Be careful - it is a powerful but dangerous choice. You\n"
"can very easily lose all your data. Hence, do not choose this unless you\n"
-"know what you are doing."
+"know what you are doing. To know how do use the DiskDrake utility used\n"
+"here, refer to the section ``Managing Your Partitions'' of the ````User\n"
+"Guide''''"
msgstr ""
-#: ../../help.pm_.c:347
+#: ../../help.pm_.c:341
msgid ""
"There you are. Installation is now complete and your GNU/Linux system is\n"
"ready to use. Just click \"OK\" to reboot the system. You can start\n"
@@ -3132,7 +3211,7 @@ msgid ""
"\"mformat a:\")"
msgstr ""
-#: ../../help.pm_.c:378
+#: ../../help.pm_.c:372
msgid ""
"Any partitions that have been newly defined must be formatted for use\n"
"(formatting means creating a filesystem).\n"
@@ -3160,7 +3239,7 @@ msgid ""
"for bad blocks on the disk."
msgstr ""
-#: ../../help.pm_.c:404
+#: ../../help.pm_.c:398
msgid ""
"Your new Mandrake Linux operating system is currently being installed.\n"
"Depending on the number of packages you will be installing and the speed of\n"
@@ -3170,12 +3249,12 @@ msgid ""
"Please be patient."
msgstr ""
-#: ../../help.pm_.c:412
+#: ../../help.pm_.c:406
msgid ""
"At the time you are installing Mandrake Linux, it is likely that some\n"
"packages have been updated since the initial release. Some bugs may have\n"
"been fixed, and security issues solved. To allow you to benefit from these\n"
-"updates, you are now proposed to download them from the Internet. Choose\n"
+"updates, you are now able to download them from the Internet. Choose\n"
"\"Yes\" if you have a working Internet connection, or \"No\" if you prefer\n"
"to install updated packages later.\n"
"\n"
@@ -3185,7 +3264,7 @@ msgid ""
"install the selected package(s), or \"Cancel\" to abort."
msgstr ""
-#: ../../help.pm_.c:425
+#: ../../help.pm_.c:419
#, fuzzy
msgid ""
"Before continuing, you should read carefully the terms of the license. It\n"
@@ -3201,19 +3280,19 @@ msgstr ""
"Aanvaar\n"
"knoppie."
-#: ../../help.pm_.c:432
+#: ../../help.pm_.c:426
msgid ""
"At this point, it is time to choose the security level desired for the\n"
"machine. As a rule of thumb, the more exposed the machine is, and the more\n"
"the data stored in it is crucial, the higher the security level should be.\n"
"However, a higher security level is generally obtained at the expense of\n"
-"easiness of use. Refer to the \"msec\" chapter of the ``Reference Manual''\n"
-"to get more information about the meaning of these levels.\n"
+"ease of use. Refer to the \"msec\" chapter of the ``Reference Manual'' to\n"
+"get more information about the meaning of these levels.\n"
"\n"
"If you do not know what to choose, keep the default option."
msgstr ""
-#: ../../help.pm_.c:442
+#: ../../help.pm_.c:436
msgid ""
"At this point, you need to choose which partition(s) will be used for the\n"
"installation of your Mandrake Linux system. If partitions have already been\n"
@@ -3230,26 +3309,26 @@ msgid ""
" * \"Clear all\": this option deletes all partitions on the selected hard\n"
"drive;\n"
"\n"
-" * \"Auto allocate\": this option enables to automatically create \"Ext2\"\n"
-"and swap partitions in free space of your hard drive;\n"
+" * \"Auto allocate\": this option enables to automatically create ext3 and\n"
+"swap partitions in free space of your hard drive;\n"
"\n"
-" * \"More\": gives access to additional features:\n"
+"\"More\": gives access to additional features:\n"
"\n"
-" * \"Save partition table\": saves the partition table to a floppy.\n"
-"Useful for later partition-table recovery if necessary. It is strongly\n"
-"recommended to perform this step;\n"
+" * \"Save partition table\": saves the partition table to a floppy. Useful\n"
+"for later partition-table recovery if necessary. It is strongly recommended\n"
+"to perform this step;\n"
"\n"
-" * \"Restore partition table\": allows to restore a previously saved\n"
+" * \"Restore partition table\": allows to restore a previously saved\n"
"partition table from floppy disk;\n"
"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you\n"
-"can try to recover it using this option. Please be careful and remember\n"
-"that it can fail;\n"
+" * \"Rescue partition table\": if your partition table is damaged, you can\n"
+"try to recover it using this option. Please be careful and remember that it\n"
+"can fail;\n"
"\n"
-" * \"Reload partition table\": discards all changes and loads your\n"
-"initial partition table;\n"
+" * \"Reload partition table\": discards all changes and loads your initial\n"
+"partition table;\n"
"\n"
-" * \"Removable media automounting\": unchecking this option will force\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
"users to manually mount and unmount removable medias such as floppies and\n"
"CD-ROMs.\n"
"\n"
@@ -3277,7 +3356,7 @@ msgid ""
" * Ctrl-m to set the mount point.\n"
"\n"
"To get information about the different filesystem types available, please\n"
-"read the ext2fs chapter from the ``Reference Manual''.\n"
+"read the ext2FS chapter from the ``Reference Manual''.\n"
"\n"
"If you are installing on a PPC machine, you will want to create a small HFS\n"
"``bootstrap'' partition of at least 1MB, which will be used by the yaboot\n"
@@ -3286,7 +3365,7 @@ msgid ""
"emergency boot situations."
msgstr ""
-#: ../../help.pm_.c:513
+#: ../../help.pm_.c:507
msgid ""
"More than one Microsoft partition has been detected on your hard drive.\n"
"Please choose the one you want to resize in order to install your new\n"
@@ -3319,11 +3398,11 @@ msgid ""
"disk or partition is called \"C:\")."
msgstr ""
-#: ../../help.pm_.c:544
+#: ../../help.pm_.c:538
msgid "Please be patient. This operation can take several minutes."
msgstr ""
-#: ../../help.pm_.c:547
+#: ../../help.pm_.c:541
#, fuzzy
msgid ""
"DrakX now needs to know if you want to perform a default (\"Recommended\")\n"
@@ -3331,23 +3410,23 @@ msgid ""
"also choose to do a new install or an upgrade of an existing Mandrake Linux\n"
"system:\n"
"\n"
-" * \"Install\": completely wipes out the old system. In fact, depending on\n"
-"what currently holds your machine, you will be able to keep some old (Linux\n"
-"or other) partitions unchanged;\n"
+" * \"Install\": completely wipes out the old system, however, depending on\n"
+"what is currently installed on your machine, you may be able to keep some\n"
+"old partitions (Linux or otherwise) unchanged;\n"
"\n"
" * \"Upgrade\": this installation class allows to simply update the\n"
"packages currently installed on your Mandrake Linux system. It keeps the\n"
"current partitions of your hard drives as well as user configurations. All\n"
-"other configuration steps remain available with respect to plain\n"
+"other configuration steps remain available, similar to a normal\n"
"installation;\n"
"\n"
-" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
-"existing Mandrake Linux system while keeping all system configurations\n"
-"unchanged. Adding new packages to the current installation is also\n"
-"possible.\n"
+" * \"Upgrade Packages Only\": this new installation class allows you to\n"
+"upgrade an existing Mandrake Linux system while keeping all system\n"
+"configurations unchanged. Adding new packages to the current installation\n"
+"is also possible.\n"
"\n"
-"Upgrades should work fine for Mandrake Linux systems starting from \"8.1\"\n"
-"release.\n"
+"Upgrades should work fine on Mandrake Linux systems containing version\n"
+"\"8.1\" or later.\n"
"\n"
"Depending on your knowledge of GNU/Linux, select one of the following\n"
"choices:\n"
@@ -3356,30 +3435,35 @@ msgid ""
"operating system. The installation will be very easy and you will only be\n"
"asked a few questions;\n"
"\n"
-" * Expert: if you have a good knowledge of GNU/Linux, you can choose this\n"
-"installation class. The expert installation will allow you to perform a\n"
-"highly-customized installation. Answering some of the questions can be\n"
-"difficult if you do not have a good knowledge of GNU/Linux, so do not\n"
-"choose this unless you know what you are doing."
+" * Expert: if you have a good understanding of GNU/Linux, you may wish to\n"
+"perform a highly customized installation. Some of the decisions you will\n"
+"have to make may be difficult if you do not have good knowledge of\n"
+"GNU/Linux, so it is not recommended that those without a fair amount of\n"
+"experience select this installation class."
msgstr "Kies asb. "
-#: ../../help.pm_.c:584
+#: ../../help.pm_.c:578
msgid ""
"Normally, DrakX selects the right keyboard for you (depending on the\n"
-"language you have chosen) and you won't even see this step. However, you\n"
-"might not have a keyboard that corresponds exactly to your language: for\n"
-"example, if you are an English speaking Swiss person, you may still want\n"
-"your keyboard to be a Swiss keyboard. Or if you speak English but are\n"
-"located in Quebec, you may find yourself in the same situation. In both\n"
-"cases, you will have to go back to this installation step and select an\n"
-"appropriate keyboard from the list.\n"
+"language you have chosen). However, you might not have a keyboard that\n"
+"corresponds exactly to your language: for example, if you are an English\n"
+"speaking Swiss person, you may still want your keyboard to be a Swiss\n"
+"keyboard. Or if you speak English but are located in Quebec, you may find\n"
+"yourself in the same situation. In both cases, you will have to go back to\n"
+"this installation step and select an appropriate keyboard from the list.\n"
"\n"
"Click on the \"More\" button to be presented with the complete list of\n"
-"supported keyboards."
+"supported keyboards.\n"
+"\n"
+"If you choose a keyboard layout based on a non-latin alphabet, you will be\n"
+"asked on next dialog to choose the key binding that will switch the\n"
+"keyboard layout between the latin and non latin layouts."
msgstr ""
-#: ../../help.pm_.c:597
+#: ../../help.pm_.c:594
msgid ""
+"The first step is to choose your preferred language.\n"
+"\n"
"Please choose your preferred language for installation and system usage.\n"
"\n"
"Clicking on the \"Advanced\" button will allow you to select other\n"
@@ -3393,7 +3477,7 @@ msgid ""
"additional locales, click the \"OK\" button to continue."
msgstr ""
-#: ../../help.pm_.c:610
+#: ../../help.pm_.c:609
msgid ""
"DrakX generally detects the number of buttons your mouse has. If not, it\n"
"assumes you have a two-button mouse and will set it up for third-button\n"
@@ -3406,10 +3490,17 @@ msgid ""
"If you choose a mouse other than the default, a test screen will be\n"
"displayed. Use the buttons and wheel to verify that the settings are\n"
"correct. If the mouse is not working well, press the space bar or [Return]\n"
-"to \"Cancel\" and choose again."
+"to \"Cancel\" and choose again.\n"
+"\n"
+"Wheel mouses are sometimes not automatically detected. You will need to\n"
+"manually select it in the list. Be sure to select the one corresponding to\n"
+"the correct port it is attached to. After you have pressed the \"OK\"\n"
+"button, a mouse image is displayed. You then need to move the wheel of your\n"
+"mouse to activate it correctly. Then test all buttons and movements are\n"
+"correct."
msgstr ""
-#: ../../help.pm_.c:624
+#: ../../help.pm_.c:630
msgid ""
"Please select the correct port. For example, the \"COM1\" port under\n"
"Windows is named \"ttyS0\" under GNU/Linux."
@@ -3417,7 +3508,7 @@ msgstr ""
"Kies asb. die korrekte poort. Onthou dat COM1 onder MS Windows \n"
"ttyS0 onder GNU/Linux is."
-#: ../../help.pm_.c:628
+#: ../../help.pm_.c:634
msgid ""
"This is the most crucial decision point for the security of your GNU/Linux\n"
"system: you have to enter the \"root\" password. \"root\" is the system\n"
@@ -3447,15 +3538,15 @@ msgid ""
"In Expert mode, you will be asked if you will be connecting to an\n"
"authentication server, like NIS or LDAP.\n"
"\n"
-"If your network uses the LDAP (or NIS) protocol for authentication, select\n"
-"\"LDAP\" (or \"NIS\") as authentication. If you do not know, ask your\n"
-"network administrator.\n"
+"If your network uses either of the LDAP, NIS, or PDC Windows Domain\n"
+"authentication services, select the appropriate one as \"authentication\".\n"
+"If you do not know, ask your network administrator.\n"
"\n"
"If your computer is not connected to any administrated network, you will\n"
"want to choose \"Local files\" for authentication."
msgstr ""
-#: ../../help.pm_.c:664
+#: ../../help.pm_.c:670
msgid ""
"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
@@ -3494,8 +3585,11 @@ msgid ""
"options. !!\n"
"\n"
"Clicking the \"Advanced\" button in this dialog will offer many advanced\n"
-"options, which are reserved to the expert user.\n"
-"\n"
+"options, which are reserved for the expert user."
+msgstr ""
+
+#: ../../help.pm_.c:710
+msgid ""
"After you have configured the general bootloader parameters, the list of\n"
"boot options which will be available at boot time will be displayed.\n"
"\n"
@@ -3503,16 +3597,7 @@ msgid ""
"automatically be added to the boot menu. Here, you can choose to fine-tune\n"
"the existing options. Select an entry and click \"Modify\" to modify or\n"
"remove it; \"Add\" creates a new entry; and \"Done\" goes on to the next\n"
-"installation step."
-msgstr ""
-
-#: ../../help.pm_.c:713
-msgid ""
-"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
-"either GNU/Linux or any other operating system present on your computer.\n"
-"Normally, these other operating systems are correctly detected and\n"
-"installed. If this is not the case, you can add an entry by hand in this\n"
-"screen. Be careful to choose the correct parameters.\n"
+"installation step.\n"
"\n"
"You may also not want to give access to these other operating systems to\n"
"anyone. In which case, you can delete the corresponding entries. But then,\n"
@@ -3577,18 +3662,18 @@ msgstr ""
#: ../../help.pm_.c:759
#, fuzzy
msgid ""
-"DrakX now detects any IDE device present in your computer. It will also\n"
-"scan for one or more PCI SCSI card(s) on your system. If a SCSI card is\n"
+"DrakX now detects any IDE devices present in your computer. It will also\n"
+"scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
"found, DrakX will automatically install the appropriate driver.\n"
"\n"
"Because hardware detection does not always detect a piece of hardware,\n"
"DrakX will ask you to confirm if a PCI SCSI card is present. Click \"Yes\"\n"
"if you know that there is a SCSI card installed in your machine. You will\n"
-"be presented a list of SCSI cards to choose from. Click \"No\" if you have\n"
-"no SCSI hardware. If you are unsure, you can check the list of hardware\n"
-"detected in your machine by selecting \"See hardware info\" and clicking\n"
-"\"OK\". Examine the list of hardware and then click on the \"OK\" button to\n"
-"return to the SCSI interface question.\n"
+"be presented with a list of SCSI cards to choose from. Click \"No\" if you\n"
+"have no SCSI hardware. If you are unsure, you can check the list of\n"
+"hardware detected in your machine by selecting \"See hardware info\" and\n"
+"clicking \"OK\". Examine the list of hardware and then click on the \"OK\"\n"
+"button to return to the SCSI interface question.\n"
"\n"
"If you have to manually specify your adapter, DrakX will ask if you want to\n"
"specify options for it. You should allow DrakX to probe the hardware for\n"
@@ -3723,7 +3808,9 @@ msgid ""
"order to configure the clock according to the time zone you are in;\n"
"\n"
" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
-"configuration wizard;\n"
+"configuration wizard. Consult the corresponding chapter of the ``User\n"
+"Guide'' for more information on how to setup a new printer. The interface\n"
+"presented there is similar to the one used during installation;\n"
"\n"
" * \"Sound card\": if a sound card is detected on your system, it is\n"
"displayed here. No modification possible at installation time;\n"
@@ -3736,14 +3823,14 @@ msgid ""
"associated with it."
msgstr ""
-#: ../../help.pm_.c:894
+#: ../../help.pm_.c:896
msgid ""
"Choose the hard drive you want to erase in order to install your new\n"
"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
"and will not be recoverable!"
msgstr ""
-#: ../../help.pm_.c:899
+#: ../../help.pm_.c:901
msgid ""
"Click on \"OK\" if you want to delete all data and partitions present on\n"
"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
@@ -3767,7 +3854,7 @@ msgstr ""
msgid "You must also format %s"
msgstr ""
-#: ../../install_any.pm_.c:418
+#: ../../install_any.pm_.c:423
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -3782,20 +3869,29 @@ msgid ""
"Do you really want to install these servers?\n"
msgstr ""
-#: ../../install_any.pm_.c:453
+#: ../../install_any.pm_.c:441
+#, c-format
+msgid ""
+"The following packages will be removed to allow upgrading your system: %s\n"
+"\n"
+"\n"
+"Do you really want to remove these packages?\n"
+msgstr ""
+
+#: ../../install_any.pm_.c:471
msgid "Can't use broadcast with no NIS domain"
msgstr "Kan nie uitsaau sonder 'n NIS-domein nie"
-#: ../../install_any.pm_.c:841
+#: ../../install_any.pm_.c:862
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Sit 'n FAT-geformatteerde skyf in aandrywer %s"
-#: ../../install_any.pm_.c:845
+#: ../../install_any.pm_.c:866
msgid "This floppy is not FAT formatted"
msgstr "Hierdie floppie is nie in FAT-formaat nie"
-#: ../../install_any.pm_.c:857
+#: ../../install_any.pm_.c:878
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -3803,11 +3899,19 @@ msgstr ""
"Om hierdie gestoorde pakketkeuse te gebruik, herlaai die installasie met "
"\"linux defcfg=floppy\""
-#: ../../install_any.pm_.c:880 ../../partition_table.pm_.c:771
+#: ../../install_any.pm_.c:901 ../../partition_table.pm_.c:767
#, c-format
msgid "Error reading file %s"
msgstr "Fout met die les van lêer %s"
+#: ../../install_any.pm_.c:1023
+msgid ""
+"An error occurred - no valid devices were found on which to create new "
+"filesystems. Please check your hardware for the cause of this problem"
+msgstr ""
+"'n Fout het voorgekom - geen geldige toestelle om die nuwe lêerstelsels op "
+"te skep, is gevind nie. Deursoek asb. die hardeware vir die oorsaak."
+
#: ../../install_interactive.pm_.c:23
#, c-format
msgid ""
@@ -3841,59 +3945,59 @@ msgstr ""
"\n"
"Wil u steeds voortgaan?"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:168
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:169
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "U moet oor 'n FAT partisie wat as /boot/efi geheg is, beskik"
-#: ../../install_interactive.pm_.c:91
+#: ../../install_interactive.pm_.c:92
msgid "Use free space"
msgstr "Gebruik beskikbare spasie"
-#: ../../install_interactive.pm_.c:93
+#: ../../install_interactive.pm_.c:94
msgid "Not enough free space to allocate new partitions"
msgstr "Nie genoeg spasie beskikbaar om nuwe partisies toe te ken nie"
-#: ../../install_interactive.pm_.c:101
+#: ../../install_interactive.pm_.c:102
msgid "Use existing partitions"
msgstr "Gebruik bestaande partisies"
-#: ../../install_interactive.pm_.c:103
+#: ../../install_interactive.pm_.c:104
msgid "There is no existing partition to use"
msgstr "Daar is geen bestaande partisies om te gebruik nie"
-#: ../../install_interactive.pm_.c:110
+#: ../../install_interactive.pm_.c:111
msgid "Use the Windows partition for loopback"
msgstr "Gebruik vir die Windows-partisie vir teruglus"
-#: ../../install_interactive.pm_.c:113
+#: ../../install_interactive.pm_.c:114
msgid "Which partition do you want to use for Linux4Win?"
msgstr "Watter partisie wil u vir Linux4Win gebruik?"
-#: ../../install_interactive.pm_.c:115
+#: ../../install_interactive.pm_.c:116
msgid "Choose the sizes"
msgstr "Kies die groottes"
-#: ../../install_interactive.pm_.c:116
+#: ../../install_interactive.pm_.c:117
msgid "Root partition size in MB: "
msgstr "Basispartisiegrootte in MB:"
-#: ../../install_interactive.pm_.c:117
+#: ../../install_interactive.pm_.c:118
msgid "Swap partition size in MB: "
msgstr "Ruilpartisiegrootte in MB: "
-#: ../../install_interactive.pm_.c:126
+#: ../../install_interactive.pm_.c:128
msgid "Use the free space on the Windows partition"
msgstr "Gebruik die beskikbare spasie op die Windowspartisie"
-#: ../../install_interactive.pm_.c:129
+#: ../../install_interactive.pm_.c:131
msgid "Which partition do you want to resize?"
msgstr "Watter partisie se grootte wil u verander?"
-#: ../../install_interactive.pm_.c:131
+#: ../../install_interactive.pm_.c:133
msgid "Resizing Windows partition"
msgstr "Windowslêerstelselgrense word bereken"
-#: ../../install_interactive.pm_.c:134
+#: ../../install_interactive.pm_.c:136
#, c-format
msgid ""
"The FAT resizer is unable to handle your partition, \n"
@@ -3902,14 +4006,14 @@ msgstr ""
"Die FAT-verstellingsprogram kan nie u partisie hanteer nie.\n"
"Fout: %s"
-#: ../../install_interactive.pm_.c:137
+#: ../../install_interactive.pm_.c:139
msgid ""
"Your Windows partition is too fragmented. Please reboot your computer under "
"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
"installation."
msgstr "U Windows-partisie is te gefragmenteer. Loop eers 'defrag' asb."
-#: ../../install_interactive.pm_.c:138
+#: ../../install_interactive.pm_.c:140
#, fuzzy
msgid ""
"WARNING!\n"
@@ -3931,21 +4035,21 @@ msgstr ""
"hierdie installasie. Rugstuen ook u data. Insien u skeer is van u saak, kies "
"OK."
-#: ../../install_interactive.pm_.c:148
+#: ../../install_interactive.pm_.c:150
msgid "Which size do you want to keep for Windows on"
msgstr "Watter grootte wil u vir Windows behou?"
-#: ../../install_interactive.pm_.c:149
+#: ../../install_interactive.pm_.c:151
#, c-format
msgid "partition %s"
msgstr "partisie %s"
-#: ../../install_interactive.pm_.c:156
+#: ../../install_interactive.pm_.c:158
#, c-format
msgid "FAT resizing failed: %s"
msgstr "FAT-grootteverandering het gefaal: %s"
-#: ../../install_interactive.pm_.c:171
+#: ../../install_interactive.pm_.c:173
msgid ""
"There is no FAT partition to resize or to use as loopback (or not enough "
"space left)"
@@ -3953,32 +4057,32 @@ msgstr ""
"Daar is geen FAT partisies om te verander of om as teruglus (nie genoeg "
"spasie nie) te gebruik nie"
-#: ../../install_interactive.pm_.c:177
+#: ../../install_interactive.pm_.c:179
msgid "Erase entire disk"
msgstr "Wis hele skyf"
-#: ../../install_interactive.pm_.c:177
+#: ../../install_interactive.pm_.c:179
msgid "Remove Windows(TM)"
msgstr "Verwyder Windows(TM)"
-#: ../../install_interactive.pm_.c:180
+#: ../../install_interactive.pm_.c:182
msgid "You have more than one hard drive, which one do you install linux on?"
msgstr "U het meer as een hardeskyf, waar wil u Linux installeer?"
-#: ../../install_interactive.pm_.c:183
+#: ../../install_interactive.pm_.c:185
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr "Alle bestaande partisies en data sal uitgewis word op skyf %s"
-#: ../../install_interactive.pm_.c:191
+#: ../../install_interactive.pm_.c:193
msgid "Custom disk partitioning"
msgstr "Gespesialiseerde skyfpartisionering"
-#: ../../install_interactive.pm_.c:195
+#: ../../install_interactive.pm_.c:197
msgid "Use fdisk"
msgstr "Gebruik fdisk"
-#: ../../install_interactive.pm_.c:198
+#: ../../install_interactive.pm_.c:200
#, c-format
msgid ""
"You can now partition %s.\n"
@@ -3987,28 +4091,28 @@ msgstr ""
"U het nou partisie %s partisioneer.\n"
"Wanneer u klaar is, stoor u veranderinge met 'w'."
-#: ../../install_interactive.pm_.c:227
+#: ../../install_interactive.pm_.c:229
msgid "You don't have enough free space on your Windows partition"
msgstr "Die Windowspartisie beskik nie oor die nodige spasie nie."
-#: ../../install_interactive.pm_.c:243
+#: ../../install_interactive.pm_.c:245
msgid "I can't find any room for installing"
msgstr "Ek kon geen plek vir installasie vind nie."
-#: ../../install_interactive.pm_.c:246
+#: ../../install_interactive.pm_.c:248
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr "Die DrakX partisioneringsassistent het die volgende oplossings:"
-#: ../../install_interactive.pm_.c:250
+#: ../../install_interactive.pm_.c:252
#, c-format
msgid "Partitioning failed: %s"
msgstr "Partisionering het misluk: %s"
-#: ../../install_interactive.pm_.c:260
+#: ../../install_interactive.pm_.c:262
msgid "Bringing up the network"
msgstr "Netwerk op pad op"
-#: ../../install_interactive.pm_.c:265
+#: ../../install_interactive.pm_.c:267
msgid "Bringing down the network"
msgstr "Netwerk op pad af"
@@ -4020,12 +4124,12 @@ msgstr ""
"'n Fout het plaasgevind en ek weet nie hoe om dit veilig te hanteer\n"
"nie. Gaan op u eie risiko voort."
-#: ../../install_steps.pm_.c:210
+#: ../../install_steps.pm_.c:211
#, c-format
msgid "Duplicate mount point %s"
msgstr "Duplikaat hegpunt %s"
-#: ../../install_steps.pm_.c:379
+#: ../../install_steps.pm_.c:380
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -4037,12 +4141,12 @@ msgstr ""
"Toets die CD op 'n werkende Linux installasie met \"rpm -qpl Mandrake/RPMS/*."
"rpm\"\n"
-#: ../../install_steps.pm_.c:451
+#: ../../install_steps.pm_.c:452
#, c-format
msgid "Welcome to %s"
msgstr "Welkom by %s"
-#: ../../install_steps.pm_.c:530 ../../install_steps.pm_.c:770
+#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:772
msgid "No floppy drive available"
msgstr "Geen sagteskyaandrywer beskikbaar nie"
@@ -4075,44 +4179,44 @@ msgstr "Installasieklas"
msgid "Please choose one of the following classes of installation:"
msgstr "Kies asb. een van die volgende installasieklasse:"
-#: ../../install_steps_gtk.pm_.c:243 ../../install_steps_interactive.pm_.c:694
+#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:678
msgid "Package Group Selection"
msgstr "Kies pakketgroepe"
-#: ../../install_steps_gtk.pm_.c:276 ../../install_steps_interactive.pm_.c:709
+#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:693
msgid "Individual package selection"
msgstr "Individuele pakketseleksie"
-#: ../../install_steps_gtk.pm_.c:299 ../../install_steps_interactive.pm_.c:633
+#: ../../install_steps_gtk.pm_.c:293 ../../install_steps_interactive.pm_.c:617
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Totale grootte: %d / %d MB"
-#: ../../install_steps_gtk.pm_.c:341
+#: ../../install_steps_gtk.pm_.c:335
msgid "Bad package"
msgstr "Foutiewe pakket"
-#: ../../install_steps_gtk.pm_.c:342
+#: ../../install_steps_gtk.pm_.c:336
#, c-format
msgid "Name: %s\n"
msgstr "Naam: %s\n"
-#: ../../install_steps_gtk.pm_.c:343
+#: ../../install_steps_gtk.pm_.c:337
#, c-format
msgid "Version: %s\n"
msgstr "Weergawe: %s\n"
-#: ../../install_steps_gtk.pm_.c:344
+#: ../../install_steps_gtk.pm_.c:338
#, c-format
msgid "Size: %d KB\n"
msgstr "Groote: %d KB\n"
-#: ../../install_steps_gtk.pm_.c:345
+#: ../../install_steps_gtk.pm_.c:339
#, c-format
msgid "Importance: %s\n"
msgstr "Belangrikheid: %s\n"
-#: ../../install_steps_gtk.pm_.c:367
+#: ../../install_steps_gtk.pm_.c:361
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr ""
@@ -4120,28 +4224,28 @@ msgstr ""
"beskikbaar is nie"
#
-#: ../../install_steps_gtk.pm_.c:372
+#: ../../install_steps_gtk.pm_.c:366
msgid "The following packages are going to be installed"
msgstr "Die volgende pakkette gaan installeer word"
#
-#: ../../install_steps_gtk.pm_.c:373
+#: ../../install_steps_gtk.pm_.c:367
msgid "The following packages are going to be removed"
msgstr "Dei volgende pakkette gaan verwyder word"
-#: ../../install_steps_gtk.pm_.c:385
+#: ../../install_steps_gtk.pm_.c:379
msgid "You can't select/unselect this package"
msgstr "U kan nie hierdie pakket selekteer/deselekteer nie"
-#: ../../install_steps_gtk.pm_.c:397
+#: ../../install_steps_gtk.pm_.c:391
msgid "This is a mandatory package, it can't be unselected"
msgstr "Hierdie is 'n verpligte pakket. Dit kan nie uitgehaal word nie."
-#: ../../install_steps_gtk.pm_.c:399
+#: ../../install_steps_gtk.pm_.c:393
msgid "You can't unselect this package. It is already installed"
msgstr "U kan nie heirdie pakket verwyder nie. Dis alreeds geïnstalleer"
-#: ../../install_steps_gtk.pm_.c:402
+#: ../../install_steps_gtk.pm_.c:396
msgid ""
"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
@@ -4149,76 +4253,76 @@ msgstr ""
"Hierdie pakket moet opgradeer word\n"
"Is u seker u wil dit deselekteer?"
-#: ../../install_steps_gtk.pm_.c:405
+#: ../../install_steps_gtk.pm_.c:399
msgid "You can't unselect this package. It must be upgraded"
msgstr "U kan nie hierdie pakket deselekteer nie. Dit moet opgradeer word."
-#: ../../install_steps_gtk.pm_.c:410
+#: ../../install_steps_gtk.pm_.c:404
msgid "Show automatically selected packages"
msgstr "Wys outogeselekteerde pakkette."
-#: ../../install_steps_gtk.pm_.c:411 ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_gtk.pm_.c:405 ../../install_steps_interactive.pm_.c:255
#: ../../install_steps_interactive.pm_.c:259
-#: ../../standalone/drakbackup_.c:3600
+#: ../../standalone/drakbackup_.c:4257
msgid "Install"
msgstr "Installasie"
-#: ../../install_steps_gtk.pm_.c:414
+#: ../../install_steps_gtk.pm_.c:408
msgid "Load/Save on floppy"
msgstr "Laai/Stoor op floppie"
-#: ../../install_steps_gtk.pm_.c:415
+#: ../../install_steps_gtk.pm_.c:409
msgid "Updating package selection"
msgstr "Pakketseleksie word opgedateer"
-#: ../../install_steps_gtk.pm_.c:420
+#: ../../install_steps_gtk.pm_.c:414
msgid "Minimal install"
msgstr "Minimale installasie"
-#: ../../install_steps_gtk.pm_.c:435 ../../install_steps_interactive.pm_.c:538
+#: ../../install_steps_gtk.pm_.c:429 ../../install_steps_interactive.pm_.c:522
msgid "Choose the packages you want to install"
msgstr "Kies die pakkette wat u wil installeer"
-#: ../../install_steps_gtk.pm_.c:451 ../../install_steps_interactive.pm_.c:778
+#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:762
msgid "Installing"
msgstr "Besig met installasie"
-#: ../../install_steps_gtk.pm_.c:457
+#: ../../install_steps_gtk.pm_.c:451
msgid "Estimating"
msgstr "Skatting"
-#: ../../install_steps_gtk.pm_.c:464
+#: ../../install_steps_gtk.pm_.c:458
msgid "Time remaining "
msgstr "Tyd oor "
-#: ../../install_steps_gtk.pm_.c:476
+#: ../../install_steps_gtk.pm_.c:470
msgid "Please wait, preparing installation..."
msgstr "Wag asb. installasie word voorberei"
-#: ../../install_steps_gtk.pm_.c:560
+#: ../../install_steps_gtk.pm_.c:554
#, c-format
msgid "%d packages"
msgstr "%d pakkette"
-#: ../../install_steps_gtk.pm_.c:565
+#: ../../install_steps_gtk.pm_.c:559
#, c-format
msgid "Installing package %s"
msgstr "Installeer pakket %s"
#
-#: ../../install_steps_gtk.pm_.c:602 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:802
+#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:786
#: ../../standalone/drakautoinst_.c:202
msgid "Accept"
msgstr "Aanvaar "
#
-#: ../../install_steps_gtk.pm_.c:602 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:802
+#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:786
msgid "Refuse"
msgstr "Weier"
-#: ../../install_steps_gtk.pm_.c:603 ../../install_steps_interactive.pm_.c:803
+#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:787
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4233,17 +4337,17 @@ msgstr ""
"nie\n"
"hieroor beskik nie, druk Kanselleer om installasies vanaf dié CDROM te vermy."
-#: ../../install_steps_gtk.pm_.c:617 ../../install_steps_gtk.pm_.c:621
-#: ../../install_steps_interactive.pm_.c:815
-#: ../../install_steps_interactive.pm_.c:819
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_gtk.pm_.c:615
+#: ../../install_steps_interactive.pm_.c:799
+#: ../../install_steps_interactive.pm_.c:803
msgid "Go on anyway?"
msgstr "Gaan steeds voort?"
-#: ../../install_steps_gtk.pm_.c:617 ../../install_steps_interactive.pm_.c:815
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:799
msgid "There was an error ordering packages:"
msgstr "Daar was 'n fout met pakkette:"
-#: ../../install_steps_gtk.pm_.c:621 ../../install_steps_interactive.pm_.c:819
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:803
msgid "There was an error installing packages:"
msgstr "Daar was 'n fout met die installasie van die pakkette:"
@@ -4418,7 +4522,7 @@ msgid "Are you sure you refuse the licence?"
msgstr ""
#: ../../install_steps_interactive.pm_.c:211
-#: ../../install_steps_interactive.pm_.c:1038
+#: ../../install_steps_interactive.pm_.c:1023
#: ../../standalone/keyboarddrake_.c:31
msgid "Keyboard"
msgstr "Sleutelbord"
@@ -4470,11 +4574,11 @@ msgstr "Pakketseleksie word opgedateer"
msgid "Please choose the type of your mouse."
msgstr "Wat is u muistoestel?"
-#: ../../install_steps_interactive.pm_.c:281 ../../standalone/mousedrake_.c:59
+#: ../../install_steps_interactive.pm_.c:281 ../../standalone/mousedrake_.c:60
msgid "Mouse Port"
msgstr "Muispoort"
-#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:61
msgid "Please choose on which serial port your mouse is connected to."
msgstr "Aan watter seriaalpoort is u muis gekoppel?"
@@ -4506,45 +4610,20 @@ msgstr "IDE word opgestel"
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:336
+#: ../../install_steps_interactive.pm_.c:338
msgid "No partition available"
msgstr "geen beskikbare partisies"
-#: ../../install_steps_interactive.pm_.c:339
+#: ../../install_steps_interactive.pm_.c:341
msgid "Scanning partitions to find mount points"
msgstr "Hegpunte vir partisies word nou gesoek"
-#: ../../install_steps_interactive.pm_.c:347
+#: ../../install_steps_interactive.pm_.c:349
msgid "Choose the mount points"
msgstr "Kies die hegpunte"
-#: ../../install_steps_interactive.pm_.c:366
-#, c-format
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to not allow DrakX to modify the partition table.\n"
-"(the error is %s)\n"
-"\n"
-"Do you agree to loose all the partitions?\n"
-msgstr ""
-"Ek kan nie u partisietabel lees nie, dit is te korrup.\n"
-"Ek sal die nodige partisies skoonmaak, maar alle data sal vernietig word.\n"
-"Die ander opsie is om DrakX te belet om die partisietabel te verander.\n"
-"(fout is %s)\n"
-"\n"
-"Will u al die partisies verwyder?\n"
-
#: ../../install_steps_interactive.pm_.c:379
msgid ""
-"DiskDrake failed to read correctly the partition table.\n"
-"Continue at your own risk!"
-msgstr ""
-"DrakX kon nie die partisietabel korrek interpreteer nie.\n"
-"Gaan aan op u eie risiko!"
-
-#: ../../install_steps_interactive.pm_.c:396
-msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
msgstr ""
@@ -4552,69 +4631,69 @@ msgstr ""
"sal herlaaipartisie met DiskDrake moet skep indien u die stelsel wil "
"herlaai."
-#: ../../install_steps_interactive.pm_.c:405
+#: ../../install_steps_interactive.pm_.c:388
msgid "No root partition found to perform an upgrade"
msgstr "Geen wortellêerstelsel gevind nie"
-#: ../../install_steps_interactive.pm_.c:406
+#: ../../install_steps_interactive.pm_.c:389
msgid "Root Partition"
msgstr "Basispartisie"
-#: ../../install_steps_interactive.pm_.c:407
+#: ../../install_steps_interactive.pm_.c:390
msgid "What is the root partition (/) of your system?"
msgstr "Wat is die basispartisie (/) van u stelsel?"
-#: ../../install_steps_interactive.pm_.c:421
+#: ../../install_steps_interactive.pm_.c:404
msgid "You need to reboot for the partition table modifications to take place"
msgstr "U moet herlaai om die partisietabelveranderinge te aktiveer"
-#: ../../install_steps_interactive.pm_.c:445
+#: ../../install_steps_interactive.pm_.c:428
msgid "Choose the partitions you want to format"
msgstr "Kies die partisies om te formatteer"
-#: ../../install_steps_interactive.pm_.c:446
+#: ../../install_steps_interactive.pm_.c:429
msgid "Check bad blocks?"
msgstr "Toets vir foutiewe areas?"
-#: ../../install_steps_interactive.pm_.c:473
+#: ../../install_steps_interactive.pm_.c:456
msgid "Formatting partitions"
msgstr "Partisies word formateer"
-#: ../../install_steps_interactive.pm_.c:475
+#: ../../install_steps_interactive.pm_.c:458
#, c-format
msgid "Creating and formatting file %s"
msgstr "Lêer %s word geskep en formatteer"
-#: ../../install_steps_interactive.pm_.c:480
+#: ../../install_steps_interactive.pm_.c:463
#, c-format
msgid ""
"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
"you can loose data)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:482
+#: ../../install_steps_interactive.pm_.c:465
msgid "Not enough swap space to fulfill installation, please add some"
msgstr "Nie genoeg ruilarea om die installasie te voltooi. Voeg asb. by."
-#: ../../install_steps_interactive.pm_.c:489
+#: ../../install_steps_interactive.pm_.c:472
#, fuzzy
msgid "Looking for available packages and rebuilding rpm database..."
msgstr "Soek vir beskikbare pakkette"
-#: ../../install_steps_interactive.pm_.c:490
+#: ../../install_steps_interactive.pm_.c:473
msgid "Looking for available packages..."
msgstr "Soek vir beskikbare pakkette"
-#: ../../install_steps_interactive.pm_.c:493
+#: ../../install_steps_interactive.pm_.c:476
#, fuzzy
msgid "Looking at packages already installed..."
msgstr "U kan nie heirdie pakket verwyder nie. Dis alreeds geïnstalleer"
-#: ../../install_steps_interactive.pm_.c:497
+#: ../../install_steps_interactive.pm_.c:480
msgid "Finding packages to upgrade..."
msgstr "Soek vir pakkette om op te gradeer."
-#: ../../install_steps_interactive.pm_.c:515
+#: ../../install_steps_interactive.pm_.c:498
#, c-format
msgid ""
"Your system does not have enough space left for installation or upgrade (%d "
@@ -4622,7 +4701,7 @@ msgid ""
msgstr ""
"U stelsel het nie genoeg plek vir 'n installasie of opgradering nie (%d > %d)"
-#: ../../install_steps_interactive.pm_.c:550
+#: ../../install_steps_interactive.pm_.c:534
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
@@ -4630,55 +4709,55 @@ msgstr ""
"Kies asb. die laai of stoor pakketkeuse op die floppie.\n"
"Die formaat is dieselfde as outoinstallasie-genereerde floppies."
-#: ../../install_steps_interactive.pm_.c:553
+#: ../../install_steps_interactive.pm_.c:537
msgid "Load from floppy"
msgstr "Laai vanaf floppie"
-#: ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_interactive.pm_.c:539
msgid "Loading from floppy"
msgstr "Oplaai vanaf floppie"
-#: ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_interactive.pm_.c:539
msgid "Package selection"
msgstr "Pakketkeuse"
-#: ../../install_steps_interactive.pm_.c:560
+#: ../../install_steps_interactive.pm_.c:544
msgid "Insert a floppy containing package selection"
msgstr "Sit 'n floppie met die pakketkeuse in aandrywer "
-#: ../../install_steps_interactive.pm_.c:572
+#: ../../install_steps_interactive.pm_.c:556
msgid "Save on floppy"
msgstr "Stoor op floppie"
-#: ../../install_steps_interactive.pm_.c:646
+#: ../../install_steps_interactive.pm_.c:630
msgid "Selected size is larger than available space"
msgstr "Geselekteerde grootte is groter as beskikbare spasie."
-#: ../../install_steps_interactive.pm_.c:660
+#: ../../install_steps_interactive.pm_.c:644
#, fuzzy
msgid "Type of install"
msgstr "Kies pakket om te installeer"
-#: ../../install_steps_interactive.pm_.c:661
+#: ../../install_steps_interactive.pm_.c:645
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:664
+#: ../../install_steps_interactive.pm_.c:648
#, fuzzy
msgid "With X"
msgstr "Wag"
-#: ../../install_steps_interactive.pm_.c:666
+#: ../../install_steps_interactive.pm_.c:650
msgid "With basic documentation (recommended!)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:667
+#: ../../install_steps_interactive.pm_.c:651
msgid "Truly minimal install (especially no urpmi)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:752
+#: ../../install_steps_interactive.pm_.c:736
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -4688,16 +4767,16 @@ msgstr ""
"Indien u oor geen van die gelyste CD's beskik nie, kliek Kanselleer.\n"
"Indien u net oor sekere CDs beskik, deselekteer die ander en kliek OK."
-#: ../../install_steps_interactive.pm_.c:757
+#: ../../install_steps_interactive.pm_.c:741
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "CDROM getiteld \"%s\""
-#: ../../install_steps_interactive.pm_.c:778
+#: ../../install_steps_interactive.pm_.c:762
msgid "Preparing installation"
msgstr "Berei installasie voor"
-#: ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:771
#, c-format
msgid ""
"Installing package %s\n"
@@ -4706,21 +4785,21 @@ msgstr ""
"Installeer nou pakket %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:833
+#: ../../install_steps_interactive.pm_.c:817
msgid "Post-install configuration"
msgstr "Postinstallasiekonfigurasie"
-#: ../../install_steps_interactive.pm_.c:839
+#: ../../install_steps_interactive.pm_.c:823
#, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Sit 'n herlaaiskyf wat gebruik is, in aandrywer %s"
-#: ../../install_steps_interactive.pm_.c:845
+#: ../../install_steps_interactive.pm_.c:829
#, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Sit asb. die module-opdateringsfloppie in aandrywer %s"
-#: ../../install_steps_interactive.pm_.c:865
+#: ../../install_steps_interactive.pm_.c:849
msgid ""
"You now have the opportunity to download encryption software.\n"
"\n"
@@ -4790,7 +4869,7 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:904
+#: ../../install_steps_interactive.pm_.c:888
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
"have been released after the distribution was released. They may\n"
@@ -4802,159 +4881,159 @@ msgid ""
"Do you want to install the updates ?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:919
+#: ../../install_steps_interactive.pm_.c:903
#, fuzzy
msgid ""
"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr "Spieël word gekontak vir die lys van pakkette"
-#: ../../install_steps_interactive.pm_.c:924
+#: ../../install_steps_interactive.pm_.c:908
msgid "Choose a mirror from which to get the packages"
msgstr "Kies 'n spieël waar die pakkette verkry kan word"
-#: ../../install_steps_interactive.pm_.c:933
+#: ../../install_steps_interactive.pm_.c:917
msgid "Contacting the mirror to get the list of available packages..."
msgstr "Spieël word gekontak vir die lys van pakkette"
-#: ../../install_steps_interactive.pm_.c:960
+#: ../../install_steps_interactive.pm_.c:945
msgid "Which is your timezone?"
msgstr "Wat is u tydsone?"
-#: ../../install_steps_interactive.pm_.c:965
+#: ../../install_steps_interactive.pm_.c:950
msgid "Hardware clock set to GMT"
msgstr "Hardewareklok gestel vir GMT"
-#: ../../install_steps_interactive.pm_.c:966
+#: ../../install_steps_interactive.pm_.c:951
msgid "Automatic time synchronization (using NTP)"
msgstr "Outotydsinkronisasie met NTP"
-#: ../../install_steps_interactive.pm_.c:973
+#: ../../install_steps_interactive.pm_.c:958
msgid "NTP Server"
msgstr "NTP-bediener"
#
-#: ../../install_steps_interactive.pm_.c:1007
-#: ../../install_steps_interactive.pm_.c:1015
+#: ../../install_steps_interactive.pm_.c:992
+#: ../../install_steps_interactive.pm_.c:1000
msgid "Remote CUPS server"
msgstr "Verwyder CUPS-bediener"
-#: ../../install_steps_interactive.pm_.c:1008
+#: ../../install_steps_interactive.pm_.c:993
msgid "No printer"
msgstr "Geen drukker"
-#: ../../install_steps_interactive.pm_.c:1025
+#: ../../install_steps_interactive.pm_.c:1010
#, fuzzy
msgid "Do you have an ISA sound card?"
msgstr "Beskik u oor nog?"
-#: ../../install_steps_interactive.pm_.c:1027
+#: ../../install_steps_interactive.pm_.c:1012
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1029
+#: ../../install_steps_interactive.pm_.c:1014
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1034 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1019 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Opsomming"
-#: ../../install_steps_interactive.pm_.c:1037
+#: ../../install_steps_interactive.pm_.c:1022
msgid "Mouse"
msgstr "Muis"
-#: ../../install_steps_interactive.pm_.c:1039
+#: ../../install_steps_interactive.pm_.c:1024
msgid "Timezone"
msgstr "Tydsone"
-#: ../../install_steps_interactive.pm_.c:1040 ../../printerdrake.pm_.c:2728
-#: ../../printerdrake.pm_.c:2814
+#: ../../install_steps_interactive.pm_.c:1025 ../../printerdrake.pm_.c:2937
+#: ../../printerdrake.pm_.c:3026
msgid "Printer"
msgstr "Drukker"
-#: ../../install_steps_interactive.pm_.c:1042
+#: ../../install_steps_interactive.pm_.c:1027
msgid "ISDN card"
msgstr "ISDN-kaart"
-#: ../../install_steps_interactive.pm_.c:1045
-#: ../../install_steps_interactive.pm_.c:1047
+#: ../../install_steps_interactive.pm_.c:1030
+#: ../../install_steps_interactive.pm_.c:1032
msgid "Sound card"
msgstr "Klankkaart"
-#: ../../install_steps_interactive.pm_.c:1049
+#: ../../install_steps_interactive.pm_.c:1034
msgid "TV card"
msgstr "TV-kaaer"
-#: ../../install_steps_interactive.pm_.c:1089
-#: ../../install_steps_interactive.pm_.c:1114
-#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1074
+#: ../../install_steps_interactive.pm_.c:1099
+#: ../../install_steps_interactive.pm_.c:1103
msgid "LDAP"
msgstr "KDAP"
-#: ../../install_steps_interactive.pm_.c:1090
-#: ../../install_steps_interactive.pm_.c:1114
-#: ../../install_steps_interactive.pm_.c:1127
+#: ../../install_steps_interactive.pm_.c:1075
+#: ../../install_steps_interactive.pm_.c:1099
+#: ../../install_steps_interactive.pm_.c:1112
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1091
-#: ../../install_steps_interactive.pm_.c:1114
-#: ../../install_steps_interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1141
+#: ../../install_steps_interactive.pm_.c:1076
+#: ../../install_steps_interactive.pm_.c:1099
+#: ../../install_steps_interactive.pm_.c:1120
+#: ../../install_steps_interactive.pm_.c:1126
#, fuzzy
msgid "Windows Domain"
msgstr "NIS-domein"
-#: ../../install_steps_interactive.pm_.c:1092
-#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1077
+#: ../../install_steps_interactive.pm_.c:1099
msgid "Local files"
msgstr "Plaaslike lêers"
-#: ../../install_steps_interactive.pm_.c:1101
-#: ../../install_steps_interactive.pm_.c:1102 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1086
+#: ../../install_steps_interactive.pm_.c:1087 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Kies 'root' se wagwoord"
-#: ../../install_steps_interactive.pm_.c:1103
+#: ../../install_steps_interactive.pm_.c:1088
msgid "No password"
msgstr "Geen wagwoord"
-#: ../../install_steps_interactive.pm_.c:1108
+#: ../../install_steps_interactive.pm_.c:1093
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr ""
"Hierdie wagwoord is te eenvoudig. Dit moet ten minste %d karakters bevat."
-#: ../../install_steps_interactive.pm_.c:1114 ../../network/modem.pm_.c:49
+#: ../../install_steps_interactive.pm_.c:1099 ../../network/modem.pm_.c:49
#: ../../standalone/drakconnect_.c:625 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Magtiging"
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1107
msgid "Authentication LDAP"
msgstr "LDAP-magtiging"
-#: ../../install_steps_interactive.pm_.c:1123
+#: ../../install_steps_interactive.pm_.c:1108
msgid "LDAP Base dn"
msgstr "LDAP Basis-dn"
-#: ../../install_steps_interactive.pm_.c:1124
+#: ../../install_steps_interactive.pm_.c:1109
msgid "LDAP Server"
msgstr "LDAP-bediener"
-#: ../../install_steps_interactive.pm_.c:1130
+#: ../../install_steps_interactive.pm_.c:1115
msgid "Authentication NIS"
msgstr "NIS-magtiging"
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1116
msgid "NIS Domain"
msgstr "NIS-domein"
-#: ../../install_steps_interactive.pm_.c:1132
+#: ../../install_steps_interactive.pm_.c:1117
msgid "NIS Server"
msgstr "NIS-bediener"
-#: ../../install_steps_interactive.pm_.c:1138
+#: ../../install_steps_interactive.pm_.c:1123
msgid ""
"For this to work for a W2K PDC, you will probably need to have the admin "
"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
@@ -4970,21 +5049,21 @@ msgid ""
"good."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1140
+#: ../../install_steps_interactive.pm_.c:1125
#, fuzzy
msgid "Authentication Windows Domain"
msgstr "LDAP-magtiging"
-#: ../../install_steps_interactive.pm_.c:1142
+#: ../../install_steps_interactive.pm_.c:1127
#, fuzzy
msgid "Domain Admin User Name"
msgstr "Domeinnaam"
-#: ../../install_steps_interactive.pm_.c:1143
+#: ../../install_steps_interactive.pm_.c:1128
msgid "Domain Admin Password"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1178
+#: ../../install_steps_interactive.pm_.c:1163
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
"depending on the normal bootloader. This is useful if you don't want to "
@@ -5011,19 +5090,19 @@ msgstr ""
"Indien u 'n herlaaiskyf wil maak,\n"
"plaas 'n skyf in die aandrywer en druk \"OK\"."
-#: ../../install_steps_interactive.pm_.c:1194
+#: ../../install_steps_interactive.pm_.c:1179
msgid "First floppy drive"
msgstr "Eerste sagteskyfaandrywer"
-#: ../../install_steps_interactive.pm_.c:1195
+#: ../../install_steps_interactive.pm_.c:1180
msgid "Second floppy drive"
msgstr "Tweede sagteskyfaandrywer"
-#: ../../install_steps_interactive.pm_.c:1196 ../../printerdrake.pm_.c:2277
+#: ../../install_steps_interactive.pm_.c:1181 ../../printerdrake.pm_.c:2470
msgid "Skip"
msgstr "Mis hierdie stap"
-#: ../../install_steps_interactive.pm_.c:1201
+#: ../../install_steps_interactive.pm_.c:1186
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5047,7 +5126,7 @@ msgstr ""
"ernstige stelselfalings te herstel. Wil u 'n herlaaiskyf maak?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1207
+#: ../../install_steps_interactive.pm_.c:1192
msgid ""
"\n"
"\n"
@@ -5056,28 +5135,28 @@ msgid ""
"because XFS needs a very large driver)."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1215
+#: ../../install_steps_interactive.pm_.c:1200
msgid "Sorry, no floppy drive available"
msgstr "Jammer, geen sagteskyfaandrywer beskikbaar nie"
-#: ../../install_steps_interactive.pm_.c:1219
+#: ../../install_steps_interactive.pm_.c:1204
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "Kies die sagteskyfaandrywer wat u wil gebruik"
-#: ../../install_steps_interactive.pm_.c:1223
+#: ../../install_steps_interactive.pm_.c:1208
#, fuzzy, c-format
msgid "Insert a floppy in %s"
msgstr "Sit 'n skyf in aandrywer %s"
-#: ../../install_steps_interactive.pm_.c:1226
+#: ../../install_steps_interactive.pm_.c:1211
msgid "Creating bootdisk..."
msgstr "Herlaaiskyf word geskryf"
-#: ../../install_steps_interactive.pm_.c:1233
+#: ../../install_steps_interactive.pm_.c:1218
msgid "Preparing bootloader..."
msgstr "Herlaaistelsel word voorberei"
-#: ../../install_steps_interactive.pm_.c:1244
+#: ../../install_steps_interactive.pm_.c:1229
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5085,11 +5164,11 @@ msgid ""
" need to use BootX to boot your machine"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1250
+#: ../../install_steps_interactive.pm_.c:1235
msgid "Do you want to use aboot?"
msgstr "Wil u aboot gebruik?"
-#: ../../install_steps_interactive.pm_.c:1253
+#: ../../install_steps_interactive.pm_.c:1238
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -5097,15 +5176,15 @@ msgstr ""
"Die 'aboot' installasie het gefaal. Wil u 'n installasie afwurg al\n"
"word die eerste partisie vernietig?"
-#: ../../install_steps_interactive.pm_.c:1260
+#: ../../install_steps_interactive.pm_.c:1245
msgid "Installing bootloader"
msgstr "Herlaaistelselinstallasie"
-#: ../../install_steps_interactive.pm_.c:1266
+#: ../../install_steps_interactive.pm_.c:1251
msgid "Installation of bootloader failed. The following error occured:"
msgstr "Installasie van herlaaiprogram het gefaal a.g.v. hierdie fout: "
-#: ../../install_steps_interactive.pm_.c:1274
+#: ../../install_steps_interactive.pm_.c:1259
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -5116,17 +5195,17 @@ msgid ""
"At your next boot you should see the bootloader prompt."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1308
+#: ../../install_steps_interactive.pm_.c:1293
#: ../../standalone/drakautoinst_.c:79
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Sit 'n leë floppie in aandrywer %s"
-#: ../../install_steps_interactive.pm_.c:1312
+#: ../../install_steps_interactive.pm_.c:1297
msgid "Creating auto install floppy..."
msgstr "Outoinstallasieskyf word geskep."
-#: ../../install_steps_interactive.pm_.c:1323
+#: ../../install_steps_interactive.pm_.c:1308
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -5136,7 +5215,7 @@ msgstr ""
"\n"
"Wil u werklik nou aborteer?"
-#: ../../install_steps_interactive.pm_.c:1334
+#: ../../install_steps_interactive.pm_.c:1319
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
@@ -5168,15 +5247,15 @@ msgstr ""
"Inligting oor stelskonfigurasie is beskikbaar in die postinstallasie-\n"
"hoofstuk in die Offisiële Liux-Mandrake Gebruikersgids."
-#: ../../install_steps_interactive.pm_.c:1347
+#: ../../install_steps_interactive.pm_.c:1332
msgid "http://www.mandrakelinux.com/en/90errata.php3"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1352
+#: ../../install_steps_interactive.pm_.c:1337
msgid "Generate auto install floppy"
msgstr "Skep outoinstallasieskyf"
-#: ../../install_steps_interactive.pm_.c:1354
+#: ../../install_steps_interactive.pm_.c:1339
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -5185,15 +5264,15 @@ msgid ""
"You may prefer to replay the installation.\n"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1359
+#: ../../install_steps_interactive.pm_.c:1344
msgid "Automated"
msgstr "Outomaties"
-#: ../../install_steps_interactive.pm_.c:1359
+#: ../../install_steps_interactive.pm_.c:1344
msgid "Replay"
msgstr "Herspeel"
-#: ../../install_steps_interactive.pm_.c:1362
+#: ../../install_steps_interactive.pm_.c:1347
msgid "Save packages selection"
msgstr "Stoor pakketseleksie"
@@ -5202,7 +5281,8 @@ msgstr "Stoor pakketseleksie"
msgid "Mandrake Linux Installation %s"
msgstr "Mandrake Linux Installasie %s"
-#: ../../install_steps_newt.pm_.c:34
+#. -PO This string must fit in a 80-char wide text screen
+#: ../../install_steps_newt.pm_.c:35
msgid ""
" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
msgstr ""
@@ -5220,22 +5300,22 @@ msgstr ""
msgid "Choose a file"
msgstr "Kies 'n lêer"
-#: ../../interactive.pm_.c:317
+#: ../../interactive.pm_.c:320
msgid "Advanced"
msgstr "Gevorderd"
-#: ../../interactive.pm_.c:318
+#: ../../interactive.pm_.c:321
msgid "Basic"
msgstr ""
-#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:155
-#: ../../printerdrake.pm_.c:1990
+#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:158
+#: ../../printerdrake.pm_.c:2124
msgid "<- Previous"
msgstr "<- Vorige"
#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
-#: ../../standalone/drakbackup_.c:3464 ../../standalone/drakbackup_.c:3491
-#: ../../standalone/drakbackup_.c:3517
+#: ../../standalone/drakbackup_.c:4112 ../../standalone/drakbackup_.c:4139
+#: ../../standalone/drakbackup_.c:4169 ../../standalone/drakbackup_.c:4195
#, fuzzy
msgid "Next"
msgstr "Teks"
@@ -5303,378 +5383,378 @@ msgstr ""
msgid "Re-submit"
msgstr ""
-#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:152 ../../keyboard.pm_.c:187
msgid "Czech (QWERTZ)"
msgstr "Tseggies (QWERTZ)"
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:153 ../../keyboard.pm_.c:189
msgid "German"
msgstr "Duits"
-#: ../../keyboard.pm_.c:175
+#: ../../keyboard.pm_.c:154
msgid "Dvorak"
msgstr "Dvorak"
-#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:218
+#: ../../keyboard.pm_.c:155 ../../keyboard.pm_.c:197
msgid "Spanish"
msgstr "Spaans"
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:156 ../../keyboard.pm_.c:198
msgid "Finnish"
msgstr "Finnies"
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:220
+#: ../../keyboard.pm_.c:157 ../../keyboard.pm_.c:199
msgid "French"
msgstr "Frans"
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:158 ../../keyboard.pm_.c:231
msgid "Norwegian"
msgstr "Norweegs"
-#: ../../keyboard.pm_.c:180
+#: ../../keyboard.pm_.c:159
msgid "Polish"
msgstr "Pools"
-#: ../../keyboard.pm_.c:181 ../../keyboard.pm_.c:260
+#: ../../keyboard.pm_.c:160 ../../keyboard.pm_.c:239
msgid "Russian"
msgstr "Russies"
-#: ../../keyboard.pm_.c:183 ../../keyboard.pm_.c:262
+#: ../../keyboard.pm_.c:162 ../../keyboard.pm_.c:241
msgid "Swedish"
msgstr "Sweeds"
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:278
+#: ../../keyboard.pm_.c:163 ../../keyboard.pm_.c:257
msgid "UK keyboard"
msgstr "VK sleutelbord"
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:279
+#: ../../keyboard.pm_.c:164 ../../keyboard.pm_.c:258
msgid "US keyboard"
msgstr "VSA sleutelbord"
-#: ../../keyboard.pm_.c:187
+#: ../../keyboard.pm_.c:166
msgid "Albanian"
msgstr "Albanies"
-#: ../../keyboard.pm_.c:188
+#: ../../keyboard.pm_.c:167
msgid "Armenian (old)"
msgstr "Armenies (oud)"
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:168
msgid "Armenian (typewriter)"
msgstr "Armenies (tikmasjien)"
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:169
msgid "Armenian (phonetic)"
msgstr "Armenies (Foneties)"
-#: ../../keyboard.pm_.c:195
+#: ../../keyboard.pm_.c:174
msgid "Azerbaidjani (latin)"
msgstr "Azerbaidjani (latyns)"
-#: ../../keyboard.pm_.c:197
+#: ../../keyboard.pm_.c:176
msgid "Belgian"
msgstr "Belgies"
-#: ../../keyboard.pm_.c:198
+#: ../../keyboard.pm_.c:177
#, fuzzy
msgid "Bengali"
msgstr "Aktiveer"
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:178
#, fuzzy
msgid "Bulgarian (phonetic)"
msgstr "Armenies (Foneties)"
-#: ../../keyboard.pm_.c:200
+#: ../../keyboard.pm_.c:179
#, fuzzy
msgid "Bulgarian (BDS)"
msgstr "Bulgaars"
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:180
msgid "Brazilian (ABNT-2)"
msgstr "Brasiliaans (ABNT-2)"
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:183
#, fuzzy
msgid "Bosnian"
msgstr "Estoniaans"
-#: ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:184
msgid "Belarusian"
msgstr "Belarussies"
-#: ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:185
msgid "Swiss (German layout)"
msgstr "Switsers (Duitse uitleg)"
-#: ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:186
msgid "Swiss (French layout)"
msgstr "Switsers (Franse uitleg)"
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:188
msgid "Czech (QWERTY)"
msgstr "Tseggies (QWERTY)"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:190
msgid "German (no dead keys)"
msgstr "Duits (geen dooie sleutels)"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:191
msgid "Devanagari"
msgstr ""
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:192
msgid "Danish"
msgstr "Deens"
-#: ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:193
msgid "Dvorak (US)"
msgstr "Dvorak (VSA)"
-#: ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:194
msgid "Dvorak (Norwegian)"
msgstr "Dvorak (Norweegs)"
-#: ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:195
#, fuzzy
msgid "Dvorak (Swedish)"
msgstr "Dvorak (VSA)"
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:196
msgid "Estonian"
msgstr "Estoniaans"
-#: ../../keyboard.pm_.c:221
+#: ../../keyboard.pm_.c:200
msgid "Georgian (\"Russian\" layout)"
msgstr "Georgies (Russiese uitleg)"
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:201
msgid "Georgian (\"Latin\" layout)"
msgstr "Georgies (Latynse uitleg)"
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:202
msgid "Greek"
msgstr "Grieks"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:203
msgid "Gujarati"
msgstr ""
-#: ../../keyboard.pm_.c:225
+#: ../../keyboard.pm_.c:204
msgid "Gurmukhi"
msgstr ""
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:205
msgid "Hungarian"
msgstr "Hongaars"
-#: ../../keyboard.pm_.c:227
+#: ../../keyboard.pm_.c:206
msgid "Croatian"
msgstr "Kroaties"
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:207
msgid "Israeli"
msgstr "Israelies"
-#: ../../keyboard.pm_.c:229
+#: ../../keyboard.pm_.c:208
msgid "Israeli (Phonetic)"
msgstr "Israelies (Foneties)"
-#: ../../keyboard.pm_.c:230
+#: ../../keyboard.pm_.c:209
msgid "Iranian"
msgstr "Iranies"
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:210
msgid "Icelandic"
msgstr "Yslandies"
-#: ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:211
msgid "Italian"
msgstr "Italiaans"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:212
msgid "Inuktitut"
msgstr ""
-#: ../../keyboard.pm_.c:234
+#: ../../keyboard.pm_.c:213
msgid "Japanese 106 keys"
msgstr "Japanees 106 sleutels"
-#: ../../keyboard.pm_.c:237
+#: ../../keyboard.pm_.c:216
msgid "Korean keyboard"
msgstr "Koreaanse sleutelbord"
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:217
msgid "Latin American"
msgstr "Latyns-Amerikaans"
-#: ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:218
#, fuzzy
msgid "Laotian"
msgstr "Latvies"
-#: ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:219
msgid "Lithuanian AZERTY (old)"
msgstr "Lituanies AZERTY (oud)"
-#: ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:221
msgid "Lithuanian AZERTY (new)"
msgstr "Lituanies AZERTY (nuut)"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:222
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Lituanies \"nommerry\" QWERTY"
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:223
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "Lituanies \"foneties\" QWERTY"
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:224
msgid "Latvian"
msgstr "Latvies"
-#: ../../keyboard.pm_.c:246
+#: ../../keyboard.pm_.c:225
msgid "Macedonian"
msgstr "Masedonies"
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:226
msgid "Myanmar (Burmese)"
msgstr ""
-#: ../../keyboard.pm_.c:248
+#: ../../keyboard.pm_.c:227
#, fuzzy
msgid "Mongolian (cyrillic)"
msgstr "Serwies (Kirillies)"
-#: ../../keyboard.pm_.c:249
+#: ../../keyboard.pm_.c:228
msgid "Maltese (UK)"
msgstr ""
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:229
msgid "Maltese (US)"
msgstr ""
-#: ../../keyboard.pm_.c:251
+#: ../../keyboard.pm_.c:230
msgid "Dutch"
msgstr "Nederlands"
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:232
msgid "Polish (qwerty layout)"
msgstr "Pools (QWERTY uitleg)"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:233
msgid "Polish (qwertz layout)"
msgstr "Pools (QWERTZ uitleg)"
-#: ../../keyboard.pm_.c:255
+#: ../../keyboard.pm_.c:234
msgid "Portuguese"
msgstr "Portugees"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:235
msgid "Canadian (Quebec)"
msgstr "Kanadees (Quebec)"
-#: ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:237
msgid "Romanian (qwertz)"
msgstr "Romanies (QWERTZ)"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:238
msgid "Romanian (qwerty)"
msgstr "Romanies (QWERTY)"
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:240
msgid "Russian (Yawerty)"
msgstr "Russue (Yawerty)"
-#: ../../keyboard.pm_.c:263
+#: ../../keyboard.pm_.c:242
msgid "Slovenian"
msgstr "Sloveens"
-#: ../../keyboard.pm_.c:264
+#: ../../keyboard.pm_.c:243
msgid "Slovakian (QWERTZ)"
msgstr "Slovaaks (QWERTZ)"
-#: ../../keyboard.pm_.c:265
+#: ../../keyboard.pm_.c:244
msgid "Slovakian (QWERTY)"
msgstr "Slovaaks (QWERTY)"
-#: ../../keyboard.pm_.c:267
+#: ../../keyboard.pm_.c:246
msgid "Serbian (cyrillic)"
msgstr "Serwies (Kirillies)"
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:248
msgid "Tamil (Unicode)"
msgstr ""
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:249
msgid "Tamil (TSCII)"
msgstr ""
-#: ../../keyboard.pm_.c:271
+#: ../../keyboard.pm_.c:250
msgid "Thai keyboard"
msgstr "Thai sleutelbord"
-#: ../../keyboard.pm_.c:273
+#: ../../keyboard.pm_.c:252
msgid "Tajik keyboard"
msgstr "Tajik sleutelbord"
-#: ../../keyboard.pm_.c:274
+#: ../../keyboard.pm_.c:253
msgid "Turkish (traditional \"F\" model)"
msgstr "Turks (tradisionele \"F\" model)"
-#: ../../keyboard.pm_.c:275
+#: ../../keyboard.pm_.c:254
msgid "Turkish (modern \"Q\" model)"
msgstr "Turks (moderne \"Q\" modem)"
-#: ../../keyboard.pm_.c:277
+#: ../../keyboard.pm_.c:256
msgid "Ukrainian"
msgstr "Ukranies"
-#: ../../keyboard.pm_.c:280
+#: ../../keyboard.pm_.c:259
msgid "US keyboard (international)"
msgstr "VSA internasionale sleutelbord"
-#: ../../keyboard.pm_.c:281
+#: ../../keyboard.pm_.c:260
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "Viëtnamees \"nommerry\" QWERTY"
-#: ../../keyboard.pm_.c:282
+#: ../../keyboard.pm_.c:261
msgid "Yugoslavian (latin)"
msgstr "Jugoslaavs (latynse uitleg)"
-#: ../../keyboard.pm_.c:289
+#: ../../keyboard.pm_.c:268
msgid "Right Alt key"
msgstr ""
-#: ../../keyboard.pm_.c:290
+#: ../../keyboard.pm_.c:269
msgid "Both Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:291
+#: ../../keyboard.pm_.c:270
msgid "Control and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:292
+#: ../../keyboard.pm_.c:271
msgid "CapsLock key"
msgstr ""
-#: ../../keyboard.pm_.c:293
+#: ../../keyboard.pm_.c:272
msgid "Ctrl and Alt keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:294
+#: ../../keyboard.pm_.c:273
msgid "Alt and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:295
+#: ../../keyboard.pm_.c:274
msgid "\"Menu\" key"
msgstr ""
-#: ../../keyboard.pm_.c:296
+#: ../../keyboard.pm_.c:275
msgid "Left \"Windows\" key"
msgstr ""
-#: ../../keyboard.pm_.c:297
+#: ../../keyboard.pm_.c:276
msgid "Right \"Windows\" key"
msgstr ""
@@ -5732,11 +5812,11 @@ msgstr "Generiese PS2 wielmuis"
msgid "GlidePoint"
msgstr "GlidePoint"
-#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:63
+#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:65
msgid "Kensington Thinking Mouse"
msgstr "Kensington Thinking Mouse"
-#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:59
+#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:61
msgid "Genius NetMouse"
msgstr "Genius NetMouse"
@@ -5744,118 +5824,128 @@ msgstr "Genius NetMouse"
msgid "Genius NetScroll"
msgstr "Genius NetScroll"
-#: ../../mouse.pm_.c:43 ../../mouse.pm_.c:68
+#: ../../mouse.pm_.c:39 ../../mouse.pm_.c:48
+#, fuzzy
+msgid "Microsoft Explorer"
+msgstr "Microsoft IntelliMouse"
+
+#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:70
msgid "1 button"
msgstr "1 knop"
-#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:51
+#: ../../mouse.pm_.c:45 ../../mouse.pm_.c:53
msgid "Generic 2 Button Mouse"
msgstr "Generiese 2-knop muis"
#
-#: ../../mouse.pm_.c:46
+#: ../../mouse.pm_.c:47
msgid "Wheel"
msgstr "Wiel"
-#: ../../mouse.pm_.c:49
+#: ../../mouse.pm_.c:51
msgid "serial"
msgstr "seriaal"
-#: ../../mouse.pm_.c:52
+#: ../../mouse.pm_.c:54
msgid "Generic 3 Button Mouse"
msgstr "Generiese 3-knop muis"
-#: ../../mouse.pm_.c:53
+#: ../../mouse.pm_.c:55
msgid "Microsoft IntelliMouse"
msgstr "Microsoft IntelliMouse"
-#: ../../mouse.pm_.c:54
+#: ../../mouse.pm_.c:56
msgid "Logitech MouseMan"
msgstr "Logitech MouseMan"
-#: ../../mouse.pm_.c:55
+#: ../../mouse.pm_.c:57
msgid "Mouse Systems"
msgstr "Mouse Systems"
-#: ../../mouse.pm_.c:57
+#: ../../mouse.pm_.c:59
msgid "Logitech CC Series"
msgstr "Logitech CC Reeks (seriaal)"
-#: ../../mouse.pm_.c:58
+#: ../../mouse.pm_.c:60
msgid "Logitech MouseMan+/FirstMouse+"
msgstr "Logitech MouseMan+/FirstMouse+"
-#: ../../mouse.pm_.c:60
+#: ../../mouse.pm_.c:62
msgid "MM Series"
msgstr "MM Series"
-#: ../../mouse.pm_.c:61
+#: ../../mouse.pm_.c:63
msgid "MM HitTablet"
msgstr "MM HitTablet"
-#: ../../mouse.pm_.c:62
+#: ../../mouse.pm_.c:64
msgid "Logitech Mouse (serial, old C7 type)"
msgstr "Logitech Muis (seriaal, ou C7 tipe)"
-#: ../../mouse.pm_.c:66
+#: ../../mouse.pm_.c:68
msgid "busmouse"
msgstr "busmuis"
-#: ../../mouse.pm_.c:69
+#: ../../mouse.pm_.c:71
msgid "2 buttons"
msgstr "2 knoppies"
-#: ../../mouse.pm_.c:70
+#: ../../mouse.pm_.c:72
msgid "3 buttons"
msgstr "3 knoppies"
-#: ../../mouse.pm_.c:73
+#: ../../mouse.pm_.c:75
msgid "none"
msgstr "niks"
-#: ../../mouse.pm_.c:75
+#: ../../mouse.pm_.c:77
msgid "No mouse"
msgstr "Geen muis"
#
-#: ../../mouse.pm_.c:445
+#: ../../mouse.pm_.c:482
msgid "Please test the mouse"
msgstr "Toets asb. die muis"
#
-#: ../../mouse.pm_.c:446
+#: ../../mouse.pm_.c:483
msgid "To activate the mouse,"
msgstr "Om die muis te aktiveer"
-#: ../../mouse.pm_.c:447
+#: ../../mouse.pm_.c:484
msgid "MOVE YOUR WHEEL!"
msgstr "BEWEEG DIE WIEL!"
-#: ../../my_gtk.pm_.c:156
+#: ../../my_gtk.pm_.c:64
+#, fuzzy
+msgid "-adobe-utopia-regular-r-*-*-25-*-*-*-p-*-iso8859-*,*-r-*"
+msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
+
+#: ../../my_gtk.pm_.c:159
msgid "Finish"
msgstr "Finnies"
-#: ../../my_gtk.pm_.c:156 ../../printerdrake.pm_.c:1992
+#: ../../my_gtk.pm_.c:159 ../../printerdrake.pm_.c:2126
msgid "Next ->"
msgstr "Volgende ->"
-#: ../../my_gtk.pm_.c:284
+#: ../../my_gtk.pm_.c:287
msgid "Is this correct?"
msgstr "Is dit korrek?"
-#: ../../my_gtk.pm_.c:356 ../../services.pm_.c:222
+#: ../../my_gtk.pm_.c:359 ../../services.pm_.c:222
msgid "Info"
msgstr "Info"
-#: ../../my_gtk.pm_.c:377
+#: ../../my_gtk.pm_.c:380
msgid "Expand Tree"
msgstr "Maak boom oop"
-#: ../../my_gtk.pm_.c:378
+#: ../../my_gtk.pm_.c:381
msgid "Collapse Tree"
msgstr "Maak boom toe"
-#: ../../my_gtk.pm_.c:379
+#: ../../my_gtk.pm_.c:382
msgid "Toggle between flat and group sorted"
msgstr "Skakel tussen plat- en groepsortering"
@@ -5894,6 +5984,68 @@ msgstr "gebruik pppoe"
msgid "use pptp"
msgstr "gebruik pptp"
+#: ../../network/drakfirewall.pm_.c:12
+#, fuzzy
+msgid "Web Server"
+msgstr "Bediener"
+
+#: ../../network/drakfirewall.pm_.c:17
+#, fuzzy
+msgid "Domain Name Server"
+msgstr "Domeinnaam"
+
+#: ../../network/drakfirewall.pm_.c:32
+#, fuzzy
+msgid "Mail Server"
+msgstr "Datbasis"
+
+#: ../../network/drakfirewall.pm_.c:37
+#, fuzzy
+msgid "POP and IMAP Server"
+msgstr "LDAP-bediener"
+
+#: ../../network/drakfirewall.pm_.c:111
+#, fuzzy
+msgid "No network card"
+msgstr "geen netwerkkaart gevind nie"
+
+#: ../../network/drakfirewall.pm_.c:129
+msgid ""
+"drakfirewall configurator\n"
+"\n"
+"This configures a personal firewall for this Mandrake Linux machine.\n"
+"For a powerful dedicated firewall solution, please look to the\n"
+"specialized MandrakeSecurity Firewall distribution."
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:147
+msgid "Which services would you like to allow the Internet to connect to?"
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:148
+msgid ""
+"You can enter miscellaneous ports. \n"
+"Valid examples are: 139/tcp 139/udp.\n"
+"Have a look at /etc/services for information."
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:154
+#, c-format
+msgid ""
+"Invalid port given: %s.\n"
+"The proper format is \"port/tcp\" or \"port/udp\", \n"
+"where port is between 1 and 65535."
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:162
+msgid "Everything (no firewall)"
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:164
+#, fuzzy
+msgid "Other ports"
+msgstr "Toets poorte"
+
#: ../../network/ethernet.pm_.c:37
msgid ""
"Which dhcp client do you want to use?\n"
@@ -5910,7 +6062,7 @@ msgstr ""
"Geen ethernetkaart is op die stelsel gevind nie.\n"
"Ek kan nie hierdie konneksietipe opstel nie."
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:247
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:240
msgid "Choose the network interface"
msgstr "Kies die netwerkkoppelvlak"
@@ -5923,7 +6075,7 @@ msgstr "Kies asb. die netwerkkoppelvlak wat u wil gebruik vir die internet."
msgid "no network card found"
msgstr "geen netwerkkaart gevind nie"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:366
msgid "Configuring network"
msgstr "Stel netwerk op"
@@ -5940,7 +6092,7 @@ msgstr ""
"bv. ``myne.mywerk.co.za''."
#
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:370
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:371
msgid "Host name"
msgstr "Rekenaarnaam"
@@ -6235,13 +6387,13 @@ msgstr "Kies die profiel om te konfigureer"
msgid "Use auto detection"
msgstr "Gebruik outobespeuring"
-#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2930
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:3151
#: ../../standalone/drakconnect_.c:274 ../../standalone/drakconnect_.c:277
#: ../../standalone/drakfloppy_.c:145
msgid "Expert Mode"
msgstr "Kundige bedryfsvlak"
-#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:283
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:386
msgid "Detecting devices..."
msgstr "Toestel word afgetas..."
@@ -6410,11 +6562,11 @@ msgstr "Outomatiese IP"
msgid "Start at boot"
msgstr "Gelaai tydens herlaaityd"
-#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:753
+#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:860
msgid "IP address should be in format 1.2.3.4"
msgstr "IP-adres moet in 1.2.3.4. formaat wees"
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:367
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -6426,43 +6578,55 @@ msgstr ""
"bv. ``myne.mywerk.co.za''.\n"
"U mag ook die netwerkhek byvoeg indien daar een is"
-#: ../../network/network.pm_.c:371
+#: ../../network/network.pm_.c:372
msgid "DNS server"
msgstr "DNS bediener"
-#: ../../network/network.pm_.c:372
+#: ../../network/network.pm_.c:373
#, c-format
msgid "Gateway (e.g. %s)"
msgstr ""
-#: ../../network/network.pm_.c:374
+#: ../../network/network.pm_.c:375
msgid "Gateway device"
msgstr "Netwerkportaaltoestel"
-#: ../../network/network.pm_.c:386
+#: ../../network/network.pm_.c:387
msgid "Proxies configuration"
msgstr "Instaanbedienerkonfigurasie"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:388
msgid "HTTP proxy"
msgstr "HTTP instaanbediener"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:389
msgid "FTP proxy"
msgstr "FTP instaanbediener"
-#: ../../network/network.pm_.c:389
+#: ../../network/network.pm_.c:390
msgid "Track network card id (useful for laptops)"
msgstr "Volg netwerkkart ID. (nuttig vir skootrekenaars)"
-#: ../../network/network.pm_.c:392
+#: ../../network/network.pm_.c:393
msgid "Proxy should be http://..."
msgstr "Instaanbediener moet begin met http://"
-#: ../../network/network.pm_.c:393
+#: ../../network/network.pm_.c:394
msgid "Proxy should be ftp://..."
msgstr "Instaanbediener moet begin met ftp://"
+#: ../../network/shorewall.pm_.c:24
+msgid "Firewalling configuration detected!"
+msgstr "Vuurmuurkonfigurasie gevind!"
+
+#: ../../network/shorewall.pm_.c:25
+msgid ""
+"Warning! An existing firewalling configuration has been detected. You may "
+"need some manual fix after installation."
+msgstr ""
+"Waarskuwing! 'n Bestaande vuurmuurkonfigurasie is bespeur. U sal dalk na "
+"dietyd self regstellings moet aanbring."
+
#: ../../network/tools.pm_.c:41
msgid "Internet configuration"
msgstr "Internetkonfigurasie"
@@ -6569,15 +6733,15 @@ msgstr "Wagwoord"
msgid "United Kingdom"
msgstr ""
-#: ../../partition_table.pm_.c:606
+#: ../../partition_table.pm_.c:602
msgid "mount failed: "
msgstr "heg het gefaal"
-#: ../../partition_table.pm_.c:670
+#: ../../partition_table.pm_.c:666
msgid "Extended partition not supported on this platform"
msgstr "Ekstensiepartisie word nie op hierdie platform ondersteun nie"
-#: ../../partition_table.pm_.c:688
+#: ../../partition_table.pm_.c:684
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
@@ -6587,21 +6751,21 @@ msgstr ""
"Die enigste oplossing is om die primêre partisie te skuif sodat die gat\n"
"langs die ekstensie partisies is"
-#: ../../partition_table.pm_.c:778
+#: ../../partition_table.pm_.c:774
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "Herstel van léer %s het gefaal: %s"
-#: ../../partition_table.pm_.c:780
+#: ../../partition_table.pm_.c:776
msgid "Bad backup file"
msgstr "Korrupte rugsteunlêer"
-#: ../../partition_table.pm_.c:802
+#: ../../partition_table.pm_.c:798
#, c-format
msgid "Error writing to file %s"
msgstr "Fout in die skryf van %s"
-#: ../../partition_table/raw.pm_.c:187
+#: ../../partition_table/raw.pm_.c:189
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
@@ -6648,158 +6812,163 @@ msgstr "LPD - Lyndrukkerdiensprogram"
msgid "PDQ - Print, Don't Queue"
msgstr "PDQ - Druk sonder drukkertou"
-#: ../../printer.pm_.c:35 ../../printer.pm_.c:854
+#: ../../printer.pm_.c:34 ../../printer.pm_.c:1125
msgid "CUPS"
msgstr "CUPS"
-#: ../../printer.pm_.c:36
+#: ../../printer.pm_.c:35
msgid "LPRng"
msgstr "LPRng"
-#: ../../printer.pm_.c:37
+#: ../../printer.pm_.c:36
msgid "LPD"
msgstr "LPD"
-#: ../../printer.pm_.c:38
+#: ../../printer.pm_.c:37
msgid "PDQ"
msgstr "PDQ"
-#: ../../printer.pm_.c:50
+#: ../../printer.pm_.c:49
msgid "Local printer"
msgstr "Plaaslike drukker"
#
-#: ../../printer.pm_.c:51
+#: ../../printer.pm_.c:50
msgid "Remote printer"
msgstr "Eksterne drukker"
#
-#: ../../printer.pm_.c:52
+#: ../../printer.pm_.c:51
msgid "Printer on remote CUPS server"
msgstr "Eksterne CUPS-drukker"
#
-#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:776
+#: ../../printer.pm_.c:52 ../../printerdrake.pm_.c:883
msgid "Printer on remote lpd server"
msgstr "Eksterne LPD-drukker"
#
-#: ../../printer.pm_.c:54
+#: ../../printer.pm_.c:53
#, fuzzy
msgid "Network printer (TCP/Socket)"
msgstr "Netwerkdrukker (sok)"
-#: ../../printer.pm_.c:55
+#: ../../printer.pm_.c:54
msgid "Printer on SMB/Windows 95/98/NT server"
msgstr "Eksterne SMB/Windows 95/98/NT-drukker"
-#: ../../printer.pm_.c:56
+#: ../../printer.pm_.c:55
msgid "Printer on NetWare server"
msgstr "Eksterne Netware-drukker"
-#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:780
+#: ../../printer.pm_.c:56 ../../printerdrake.pm_.c:887
msgid "Enter a printer device URI"
msgstr "Tik drukkertoestel URI in"
-#: ../../printer.pm_.c:58
+#: ../../printer.pm_.c:57
msgid "Pipe job into a command"
msgstr "Pyk drukstuk na program"
-#: ../../printer.pm_.c:487 ../../printer.pm_.c:678 ../../printer.pm_.c:1000
-#: ../../printerdrake.pm_.c:2070 ../../printerdrake.pm_.c:3189
+#: ../../printer.pm_.c:324 ../../printer.pm_.c:366 ../../printer.pm_.c:533
+#, fuzzy
+msgid "Unknown Model"
+msgstr "Onbekende model"
+
+#: ../../printer.pm_.c:735 ../../printer.pm_.c:926 ../../printer.pm_.c:1318
+#: ../../printerdrake.pm_.c:2260 ../../printerdrake.pm_.c:3414
msgid "Unknown model"
msgstr "Onbekende model"
-#: ../../printer.pm_.c:515
+#: ../../printer.pm_.c:763
#, fuzzy
msgid "Local Printers"
msgstr "Plaaslike drukker"
#
-#: ../../printer.pm_.c:517 ../../printer.pm_.c:855
+#: ../../printer.pm_.c:765 ../../printer.pm_.c:1126
#, fuzzy
msgid "Remote Printers"
msgstr "Eksterne drukker"
-#: ../../printer.pm_.c:524 ../../printerdrake.pm_.c:301
+#: ../../printer.pm_.c:772 ../../printerdrake.pm_.c:404
#, c-format
msgid " on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:527 ../../printerdrake.pm_.c:303
+#: ../../printer.pm_.c:775 ../../printerdrake.pm_.c:406
#, c-format
msgid ", USB printer \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:532
+#: ../../printer.pm_.c:780
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:535
+#: ../../printer.pm_.c:783
msgid ", multi-function device on USB"
msgstr ""
-#: ../../printer.pm_.c:537
+#: ../../printer.pm_.c:785
msgid ", multi-function device on HP JetDirect"
msgstr ""
-#: ../../printer.pm_.c:539
+#: ../../printer.pm_.c:787
msgid ", multi-function device"
msgstr ""
-#: ../../printer.pm_.c:542
+#: ../../printer.pm_.c:790
#, fuzzy, c-format
msgid ", printing to %s"
msgstr "Fout in die skryf van %s"
-#: ../../printer.pm_.c:544
+#: ../../printer.pm_.c:792
#, c-format
msgid " on LPD server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:546
+#: ../../printer.pm_.c:794
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ""
-#: ../../printer.pm_.c:550
+#: ../../printer.pm_.c:798
#, c-format
msgid " on SMB/Windows server \"%s\", share \"%s\""
msgstr ""
-#: ../../printer.pm_.c:554
+#: ../../printer.pm_.c:802
#, c-format
msgid " on Novell server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:556
+#: ../../printer.pm_.c:804
#, c-format
msgid ", using command %s"
msgstr ""
-#: ../../printer.pm_.c:675 ../../printerdrake.pm_.c:1540
+#: ../../printer.pm_.c:923 ../../printerdrake.pm_.c:1656
msgid "Raw printer (No driver)"
msgstr ""
-#: ../../printer.pm_.c:824
+#: ../../printer.pm_.c:1095
#, c-format
msgid "(on %s)"
msgstr "(op %s)"
-#: ../../printer.pm_.c:826
+#: ../../printer.pm_.c:1097
msgid "(on this machine)"
msgstr "(op hierdie rekenaar)"
-#: ../../printer.pm_.c:851
+#: ../../printer.pm_.c:1122
#, fuzzy, c-format
msgid "On CUPS server \"%s\""
msgstr "CUPS-bediener IP:"
-#: ../../printer.pm_.c:857 ../../printerdrake.pm_.c:2851
-#: ../../printerdrake.pm_.c:2862 ../../printerdrake.pm_.c:3078
-#: ../../printerdrake.pm_.c:3130 ../../printerdrake.pm_.c:3156
-#: ../../printerdrake.pm_.c:3326 ../../printerdrake.pm_.c:3328
+#: ../../printer.pm_.c:1128 ../../printerdrake.pm_.c:3071
+#: ../../printerdrake.pm_.c:3082 ../../printerdrake.pm_.c:3303
+#: ../../printerdrake.pm_.c:3355 ../../printerdrake.pm_.c:3381
+#: ../../printerdrake.pm_.c:3556 ../../printerdrake.pm_.c:3558
msgid " (Default)"
msgstr " (Verstek)"
@@ -6827,13 +6996,13 @@ msgstr ""
msgid "Printer auto-detection (Local, TCP/Socket, and SMB printers)"
msgstr ""
-#: ../../printerdrake.pm_.c:84 ../../printerdrake.pm_.c:2914
+#: ../../printerdrake.pm_.c:84 ../../printerdrake.pm_.c:3135
#, fuzzy
msgid "CUPS configuration"
msgstr "Konfigurasie"
#
-#: ../../printerdrake.pm_.c:85 ../../printerdrake.pm_.c:2915
+#: ../../printerdrake.pm_.c:85 ../../printerdrake.pm_.c:3136
#, fuzzy
msgid "Specify CUPS server"
msgstr "Verwyder CUPS-bediener"
@@ -6863,7 +7032,7 @@ msgstr ""
msgid "The IP address should look like 192.168.1.20"
msgstr "IP-adres moet iets soos 192.168.1.20. lyk"
-#: ../../printerdrake.pm_.c:95 ../../printerdrake.pm_.c:987
+#: ../../printerdrake.pm_.c:95 ../../printerdrake.pm_.c:1094
msgid "The port number should be an integer!"
msgstr "Die poortnommer moet heeltal wees."
@@ -6871,7 +7040,7 @@ msgstr "Die poortnommer moet heeltal wees."
msgid "CUPS server IP"
msgstr "CUPS-bediener IP:"
-#: ../../printerdrake.pm_.c:103 ../../printerdrake.pm_.c:1007
+#: ../../printerdrake.pm_.c:103 ../../printerdrake.pm_.c:1114
msgid "Port"
msgstr "Poort"
@@ -6879,13 +7048,135 @@ msgstr "Poort"
msgid "Automatic CUPS configuration"
msgstr "Outomatiese CUPS konfigurasie"
-#: ../../printerdrake.pm_.c:183 ../../printerdrake.pm_.c:192
-#: ../../printerdrake.pm_.c:2897 ../../printerdrake.pm_.c:3017
+#: ../../printerdrake.pm_.c:177 ../../printerdrake.pm_.c:247
+#: ../../printerdrake.pm_.c:1529 ../../printerdrake.pm_.c:1533
+#: ../../printerdrake.pm_.c:1651 ../../printerdrake.pm_.c:2203
+#: ../../printerdrake.pm_.c:2356 ../../printerdrake.pm_.c:2415
+#: ../../printerdrake.pm_.c:2488 ../../printerdrake.pm_.c:2509
+#: ../../printerdrake.pm_.c:2699 ../../printerdrake.pm_.c:2740
+#: ../../printerdrake.pm_.c:2745 ../../printerdrake.pm_.c:2779
+#: ../../printerdrake.pm_.c:2784 ../../printerdrake.pm_.c:2821
+#: ../../printerdrake.pm_.c:2874 ../../printerdrake.pm_.c:2894
+#: ../../printerdrake.pm_.c:2908 ../../printerdrake.pm_.c:2942
+#: ../../printerdrake.pm_.c:2988 ../../printerdrake.pm_.c:3006
+#: ../../printerdrake.pm_.c:3095 ../../printerdrake.pm_.c:3169
+#: ../../printerdrake.pm_.c:3471 ../../printerdrake.pm_.c:3526
+#: ../../printerdrake.pm_.c:3579 ../../standalone/printerdrake_.c:57
+#, fuzzy
+msgid "Printerdrake"
+msgstr "Drukker"
+
+#
+#: ../../printerdrake.pm_.c:178
+#, fuzzy
+msgid "Checking your system..."
+msgstr "Watter drukkerstelsel verlang u?"
+
+#: ../../printerdrake.pm_.c:186
+msgid ""
+"There are no printers found which are directly connected to your machine"
+msgstr ""
+
+#
+#: ../../printerdrake.pm_.c:198
+#, fuzzy
+msgid ""
+"The following printers\n"
+"\n"
+msgstr "Dei volgende pakkette gaan verwyder word"
+
+#
+#: ../../printerdrake.pm_.c:199
+#, fuzzy
+msgid ""
+"The following printer\n"
+"\n"
+msgstr "Dei volgende pakkette gaan verwyder word"
+
+#: ../../printerdrake.pm_.c:201
+msgid ""
+"\n"
+"and one unknown printer are "
+msgstr ""
+
+#: ../../printerdrake.pm_.c:203
+#, c-format
+msgid ""
+"\n"
+"and %d unknown printers are "
+msgstr ""
+
+#: ../../printerdrake.pm_.c:207
+msgid ""
+"\n"
+"are "
+msgstr ""
+
+#: ../../printerdrake.pm_.c:208
+msgid ""
+"\n"
+"is "
+msgstr ""
+
+#: ../../printerdrake.pm_.c:210
+#, fuzzy
+msgid "directly connected to your system"
+msgstr "Daar is geen netwerkkaart op hierdie rekenaar nie!"
+
+#: ../../printerdrake.pm_.c:213
+msgid ""
+"\n"
+"There is one unknown printer directly connected to your system"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:215
+#, c-format
+msgid ""
+"\n"
+"There are %d unknown printers directly connected to your system"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:221
+#, fuzzy
+msgid " (Make sure that all your printers are connected and turned on).\n"
+msgstr "Op watter seriaalpoort is u modem gekoppel?"
+
+#: ../../printerdrake.pm_.c:235
+msgid ""
+"Do you want to enable printing on the printers mentioned above or on "
+"printers in the local network?\n"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:236
+#, fuzzy
+msgid "Do you want to enable printing on printers in the local network?\n"
+msgstr ""
+"Wil u hierdie drukker (\"%s\")\n"
+"die verstek drukker maak?"
+
+#: ../../printerdrake.pm_.c:238
+#, fuzzy
+msgid "Do you want to enable printing on the printers mentioned above?\n"
+msgstr "Wil u die konneksie met herlaaityd aanskakel?"
+
+#: ../../printerdrake.pm_.c:239
+msgid "Are you sure that you want to set up printing on this machine?\n"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:240
+#, c-format
+msgid ""
+"NOTE: Depending on the printer model and the printing system up to %d MB of "
+"additional software will be installed."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:269 ../../printerdrake.pm_.c:278
+#: ../../printerdrake.pm_.c:3117 ../../printerdrake.pm_.c:3242
#, fuzzy
msgid "Add a new printer"
msgstr "Voeg drukker by"
-#: ../../printerdrake.pm_.c:184
+#: ../../printerdrake.pm_.c:270
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -6898,7 +7189,7 @@ msgid ""
"connection types."
msgstr ""
-#: ../../printerdrake.pm_.c:193
+#: ../../printerdrake.pm_.c:280
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -6907,7 +7198,7 @@ msgid ""
"computer, connected directly to the network or to a remote Windows machine.\n"
"\n"
"If you have printer(s) connected to this machine, Please plug it/them in on "
-"this computer and turn it/them on so that they can be auto-detected. Also "
+"this computer and turn it/them on so that it/they can be auto-detected. Also "
"your network printer(s) and you Windows machines must be connected and "
"turned on.\n"
"\n"
@@ -6920,7 +7211,22 @@ msgid ""
"want to set up your printer(s) now."
msgstr ""
-#: ../../printerdrake.pm_.c:202
+#: ../../printerdrake.pm_.c:289 ../../printerdrake.pm_.c:306
+msgid ""
+"\n"
+"Welcome to the Printer Setup Wizard\n"
+"\n"
+"This wizard will help you to install your printer(s) connected to this "
+"computer.\n"
+"\n"
+"If you have printer(s) connected to this machine, Please plug it/them in on "
+"this computer and turn it/them on so that it/they can be auto-detected.\n"
+"\n"
+" Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
+"want to set up your printer(s) now."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:297
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -6929,7 +7235,7 @@ msgid ""
"computer or connected directly to the network.\n"
"\n"
"If you have printer(s) connected to this machine, Please plug it/them in on "
-"this computer and turn it/them on so that they can be auto-detected. Also "
+"this computer and turn it/them on so that it/they can be auto-detected. Also "
"your network printer(s) must be connected and turned on.\n"
"\n"
"Note that auto-detecting printers on the network takes longer than the auto-"
@@ -6941,26 +7247,26 @@ msgid ""
msgstr ""
#
-#: ../../printerdrake.pm_.c:213
+#: ../../printerdrake.pm_.c:315
#, fuzzy
msgid "Auto-detect printers connected to this machine"
msgstr "Eksterne drukker"
-#: ../../printerdrake.pm_.c:215
+#: ../../printerdrake.pm_.c:318
msgid "Auto-detect printers connected directly to the local network"
msgstr ""
-#: ../../printerdrake.pm_.c:218
+#: ../../printerdrake.pm_.c:321
msgid "Auto-detect printers connected to machines running Microsoft Windows"
msgstr ""
-#: ../../printerdrake.pm_.c:245 ../../printerdrake.pm_.c:459
-#: ../../printerdrake.pm_.c:484
+#: ../../printerdrake.pm_.c:348 ../../printerdrake.pm_.c:562
+#: ../../printerdrake.pm_.c:587
#, fuzzy
msgid "Local Printer"
msgstr "Plaaslike drukker"
-#: ../../printerdrake.pm_.c:246
+#: ../../printerdrake.pm_.c:349
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -6974,51 +7280,51 @@ msgid ""
"Center."
msgstr ""
-#: ../../printerdrake.pm_.c:283 ../../printerdrake.pm_.c:474
-#: ../../printerdrake.pm_.c:683 ../../printerdrake.pm_.c:923
+#: ../../printerdrake.pm_.c:386 ../../printerdrake.pm_.c:577
+#: ../../printerdrake.pm_.c:790 ../../printerdrake.pm_.c:1030
#, fuzzy
msgid "Printer auto-detection"
msgstr "Gebruik outobespeuring"
-#: ../../printerdrake.pm_.c:305
+#: ../../printerdrake.pm_.c:408
#, c-format
msgid ", network printer \"%s\", port %s"
msgstr ""
-#: ../../printerdrake.pm_.c:307
+#: ../../printerdrake.pm_.c:410
#, fuzzy, c-format
msgid ", printer \"%s\" on SMB/Windows server \"%s\""
msgstr "Eksterne SMB/Windows 95/98/NT-drukker"
-#: ../../printerdrake.pm_.c:313
+#: ../../printerdrake.pm_.c:416
#, fuzzy, c-format
msgid "Detected %s"
msgstr "%s bespeur"
-#: ../../printerdrake.pm_.c:317 ../../printerdrake.pm_.c:348
-#: ../../printerdrake.pm_.c:367
+#: ../../printerdrake.pm_.c:420 ../../printerdrake.pm_.c:451
+#: ../../printerdrake.pm_.c:470
#, c-format
msgid "Printer on parallel port \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:319 ../../printerdrake.pm_.c:350
-#: ../../printerdrake.pm_.c:372
+#: ../../printerdrake.pm_.c:422 ../../printerdrake.pm_.c:453
+#: ../../printerdrake.pm_.c:475
#, c-format
msgid "USB printer \\/*%s"
msgstr ""
#
-#: ../../printerdrake.pm_.c:321
+#: ../../printerdrake.pm_.c:424
#, fuzzy, c-format
msgid "Network printer \"%s\", port %s"
msgstr "Netwerkdrukker (sok)"
-#: ../../printerdrake.pm_.c:323
+#: ../../printerdrake.pm_.c:426
#, fuzzy, c-format
msgid "Printer \"%s\" on SMB/Windows server \"%s\""
msgstr "Eksterne SMB/Windows 95/98/NT-drukker"
-#: ../../printerdrake.pm_.c:460
+#: ../../printerdrake.pm_.c:563
msgid ""
"No local printer found! To manually install a printer enter a device name/"
"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
@@ -7026,34 +7332,34 @@ msgid ""
"printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:464
+#: ../../printerdrake.pm_.c:567
#, fuzzy
msgid "You must enter a device or file name!"
msgstr "Tik drukkertoestel URI in"
-#: ../../printerdrake.pm_.c:475
+#: ../../printerdrake.pm_.c:578
#, fuzzy
msgid "No printer found!"
msgstr "Plaaslike drukker"
-#: ../../printerdrake.pm_.c:485
+#: ../../printerdrake.pm_.c:588
#, fuzzy
msgid "Available printers"
msgstr "Plaaslike drukker"
-#: ../../printerdrake.pm_.c:489
+#: ../../printerdrake.pm_.c:592
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:490
+#: ../../printerdrake.pm_.c:593
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up or enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:492
+#: ../../printerdrake.pm_.c:595
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
@@ -7061,7 +7367,7 @@ msgid ""
"configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:493
+#: ../../printerdrake.pm_.c:596
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
@@ -7069,38 +7375,38 @@ msgid ""
"customized printer configuration, turn on \"Manual configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:495
+#: ../../printerdrake.pm_.c:598
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:496
+#: ../../printerdrake.pm_.c:599
#, fuzzy
msgid "Please choose the port where your printer is connected to."
msgstr "Op watter seriaalpoort is u modem gekoppel?"
-#: ../../printerdrake.pm_.c:498
+#: ../../printerdrake.pm_.c:601
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:503
+#: ../../printerdrake.pm_.c:606
#, fuzzy
msgid "You must choose/enter a printer/device!"
msgstr "Tik drukkertoestel URI in"
-#: ../../printerdrake.pm_.c:523
+#: ../../printerdrake.pm_.c:626
#, fuzzy
msgid "Manual configuration"
msgstr "Kleurkonfigurasie"
-#: ../../printerdrake.pm_.c:577
+#: ../../printerdrake.pm_.c:680
msgid "Remote lpd Printer Options"
msgstr "Eksterne lpd drukkeropsies"
-#: ../../printerdrake.pm_.c:578
+#: ../../printerdrake.pm_.c:681
#, fuzzy
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
@@ -7110,48 +7416,48 @@ msgstr ""
"van die drukkkerbediener en die naam van die drukkertou\n"
"voorsien word."
-#: ../../printerdrake.pm_.c:579
+#: ../../printerdrake.pm_.c:682
msgid "Remote host name"
msgstr "Eksterne bedienernaam"
#
-#: ../../printerdrake.pm_.c:580
+#: ../../printerdrake.pm_.c:683
msgid "Remote printer name"
msgstr "Eksterne drukkernaam"
-#: ../../printerdrake.pm_.c:583
+#: ../../printerdrake.pm_.c:686
msgid "Remote host name missing!"
msgstr "Eksterne bedienernaam ontbreek!"
-#: ../../printerdrake.pm_.c:587
+#: ../../printerdrake.pm_.c:690
msgid "Remote printer name missing!"
msgstr "Eksterne drukkernam ontbreek!"
-#: ../../printerdrake.pm_.c:609 ../../printerdrake.pm_.c:1119
+#: ../../printerdrake.pm_.c:712 ../../printerdrake.pm_.c:1225
#, fuzzy, c-format
msgid "Detected model: %s %s"
msgstr "%s bespeur"
-#: ../../printerdrake.pm_.c:683 ../../printerdrake.pm_.c:923
+#: ../../printerdrake.pm_.c:790 ../../printerdrake.pm_.c:1030
#, fuzzy
msgid "Scanning network..."
msgstr "Konneksie word begin..."
-#: ../../printerdrake.pm_.c:692 ../../printerdrake.pm_.c:713
+#: ../../printerdrake.pm_.c:799 ../../printerdrake.pm_.c:820
#, c-format
msgid ", printer \"%s\" on server \"%s\""
msgstr ""
-#: ../../printerdrake.pm_.c:695 ../../printerdrake.pm_.c:716
+#: ../../printerdrake.pm_.c:802 ../../printerdrake.pm_.c:823
#, fuzzy, c-format
msgid "Printer \"%s\" on server \"%s\""
msgstr "Netwerk op pad af"
-#: ../../printerdrake.pm_.c:736
+#: ../../printerdrake.pm_.c:843
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "SMB (Windows 9x/NT) drukkeropsies"
-#: ../../printerdrake.pm_.c:737
+#: ../../printerdrake.pm_.c:844
#, fuzzy
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
@@ -7164,46 +7470,46 @@ msgstr ""
"nie); moontlik die IP adres van die drukkerbediener; die drukkernaam; \n"
"toepaslike gebruikerskode en wagwoord; werkgroepnaam."
-#: ../../printerdrake.pm_.c:738
+#: ../../printerdrake.pm_.c:845
msgid ""
" If the desired printer was auto-detected, simply choose it from the list "
"and then add user name, password, and/or workgroup if needed."
msgstr ""
-#: ../../printerdrake.pm_.c:739
+#: ../../printerdrake.pm_.c:846
msgid "SMB server host"
msgstr "SMB-bedienernaam"
-#: ../../printerdrake.pm_.c:740
+#: ../../printerdrake.pm_.c:847
msgid "SMB server IP"
msgstr "SMB-bediener IP:"
-#: ../../printerdrake.pm_.c:741
+#: ../../printerdrake.pm_.c:848
msgid "Share name"
msgstr "Drukkernaam:"
-#: ../../printerdrake.pm_.c:744
+#: ../../printerdrake.pm_.c:851
msgid "Workgroup"
msgstr "Werkgroep:"
-#: ../../printerdrake.pm_.c:746
+#: ../../printerdrake.pm_.c:853
#, fuzzy
msgid "Auto-detected"
msgstr "Gebruik outobespeuring"
-#: ../../printerdrake.pm_.c:757
+#: ../../printerdrake.pm_.c:864
msgid "Either the server name or the server's IP must be given!"
msgstr "Óf die bedienernaam óf die bediener-IP moet verskaf word!"
-#: ../../printerdrake.pm_.c:761
+#: ../../printerdrake.pm_.c:868
msgid "Samba share name missing!"
msgstr "SAMBA-deelnaam ontbreek!"
-#: ../../printerdrake.pm_.c:767
+#: ../../printerdrake.pm_.c:874
msgid "SECURITY WARNING!"
msgstr ""
-#: ../../printerdrake.pm_.c:768
+#: ../../printerdrake.pm_.c:875
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -7227,7 +7533,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:778
+#: ../../printerdrake.pm_.c:885
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -7236,7 +7542,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:781
+#: ../../printerdrake.pm_.c:888
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
@@ -7244,11 +7550,11 @@ msgid ""
"Do you really want to continue setting up this printer as you are doing now?"
msgstr ""
-#: ../../printerdrake.pm_.c:853
+#: ../../printerdrake.pm_.c:960
msgid "NetWare Printer Options"
msgstr "NetWare drukkeropsies"
-#: ../../printerdrake.pm_.c:854
+#: ../../printerdrake.pm_.c:961
#, fuzzy
msgid ""
"To print on a NetWare printer, you need to provide the NetWare print server "
@@ -7261,44 +7567,44 @@ msgstr ""
"rekenaarnaam nie); moontlik die IP adres van die drukkerbediener;\n"
"die drukkernaam; toepaslike gebruikerskode en wagwoord."
-#: ../../printerdrake.pm_.c:855
+#: ../../printerdrake.pm_.c:962
msgid "Printer Server"
msgstr "Drukkerbediener"
-#: ../../printerdrake.pm_.c:856
+#: ../../printerdrake.pm_.c:963
msgid "Print Queue Name"
msgstr "Drukkertounaam"
-#: ../../printerdrake.pm_.c:861
+#: ../../printerdrake.pm_.c:968
msgid "NCP server name missing!"
msgstr "NCP-bedienernaam ontbreek!"
-#: ../../printerdrake.pm_.c:865
+#: ../../printerdrake.pm_.c:972
msgid "NCP queue name missing!"
msgstr "NCP-tounaam ontbreek!"
-#: ../../printerdrake.pm_.c:932 ../../printerdrake.pm_.c:952
+#: ../../printerdrake.pm_.c:1039 ../../printerdrake.pm_.c:1059
#, c-format
msgid ", host \"%s\", port %s"
msgstr ""
-#: ../../printerdrake.pm_.c:935 ../../printerdrake.pm_.c:955
+#: ../../printerdrake.pm_.c:1042 ../../printerdrake.pm_.c:1062
#, c-format
msgid "Host \"%s\", port %s"
msgstr ""
-#: ../../printerdrake.pm_.c:975
+#: ../../printerdrake.pm_.c:1082
#, fuzzy
msgid "TCP/Socket Printer Options"
msgstr "Sokdrukkeropsies"
-#: ../../printerdrake.pm_.c:977
+#: ../../printerdrake.pm_.c:1084
msgid ""
"Choose one of the auto-detected printers from the list or enter the hostname "
"or IP and the optional port number (default is 9100) into the input fields."
msgstr ""
-#: ../../printerdrake.pm_.c:978
+#: ../../printerdrake.pm_.c:1085
#, fuzzy
msgid ""
"To print to a TCP or socket printer, you need to provide the host name or IP "
@@ -7312,21 +7618,21 @@ msgstr ""
"maar dit mag anders wees met ander bedieners. Raadpleeg die handleiding\n"
"wat saam met die hardeware gekom het."
-#: ../../printerdrake.pm_.c:983
+#: ../../printerdrake.pm_.c:1090
#, fuzzy
msgid "Printer host name or IP missing!"
msgstr "Drukkerbedienernaam ontbreek!"
-#: ../../printerdrake.pm_.c:1005
+#: ../../printerdrake.pm_.c:1112
#, fuzzy
msgid "Printer host name or IP"
msgstr "Drukkerbedienernaam"
-#: ../../printerdrake.pm_.c:1054 ../../printerdrake.pm_.c:1056
+#: ../../printerdrake.pm_.c:1160 ../../printerdrake.pm_.c:1162
msgid "Printer Device URI"
msgstr "Drukkertoestel URI"
-#: ../../printerdrake.pm_.c:1055
+#: ../../printerdrake.pm_.c:1161
msgid ""
"You can specify directly the URI to access the printer. The URI must fulfill "
"either the CUPS or the Foomatic specifications. Note that not all URI types "
@@ -7336,11 +7642,11 @@ msgstr ""
"CUPS- of Foomatic-formaat wees. Nie alle UTI-tipes moet deur al die "
"spoelprogramme ondersteun nie."
-#: ../../printerdrake.pm_.c:1070
+#: ../../printerdrake.pm_.c:1176
msgid "A valid URI must be entered!"
msgstr "'n Geldige URI moet verskaf word!"
-#: ../../printerdrake.pm_.c:1402
+#: ../../printerdrake.pm_.c:1515
#, fuzzy
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
@@ -7350,31 +7656,31 @@ msgstr ""
"Die Beskrywing- en Liggingvelde is opsioneel.\n"
"Hulle dien as inligting vir gebruikers."
-#: ../../printerdrake.pm_.c:1403
+#: ../../printerdrake.pm_.c:1516
msgid "Name of printer"
msgstr "Drukkernaam"
-#: ../../printerdrake.pm_.c:1405
+#: ../../printerdrake.pm_.c:1518
msgid "Location"
msgstr "Ligging"
-#: ../../printerdrake.pm_.c:1416 ../../printerdrake.pm_.c:1536
+#: ../../printerdrake.pm_.c:1530 ../../printerdrake.pm_.c:1652
#, fuzzy
msgid "Reading printer database..."
msgstr "Drukkerdata word gelees..."
-#: ../../printerdrake.pm_.c:1419
+#: ../../printerdrake.pm_.c:1534
#, fuzzy
msgid "Preparing printer database..."
msgstr "Drukkerdata word gelees..."
#
-#: ../../printerdrake.pm_.c:1516
+#: ../../printerdrake.pm_.c:1631
#, fuzzy
msgid "Your printer model"
msgstr "Eksterne drukkernaam"
-#: ../../printerdrake.pm_.c:1517
+#: ../../printerdrake.pm_.c:1632
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -7389,27 +7695,27 @@ msgid ""
"%s"
msgstr ""
-#: ../../printerdrake.pm_.c:1522 ../../printerdrake.pm_.c:1525
+#: ../../printerdrake.pm_.c:1637 ../../printerdrake.pm_.c:1640
#, fuzzy
msgid "The model is correct"
msgstr "Is dit korrek?"
#
-#: ../../printerdrake.pm_.c:1523 ../../printerdrake.pm_.c:1524
-#: ../../printerdrake.pm_.c:1527
+#: ../../printerdrake.pm_.c:1638 ../../printerdrake.pm_.c:1639
+#: ../../printerdrake.pm_.c:1642
#, fuzzy
msgid "Select model manually"
msgstr "Eksterne drukkernaam"
-#: ../../printerdrake.pm_.c:1543
+#: ../../printerdrake.pm_.c:1659
msgid "Printer model selection"
msgstr "Drukkermodelkeuse"
-#: ../../printerdrake.pm_.c:1544
+#: ../../printerdrake.pm_.c:1660
msgid "Which printer model do you have?"
msgstr "Oor watter tipe drukker beskik u?"
-#: ../../printerdrake.pm_.c:1545
+#: ../../printerdrake.pm_.c:1661
msgid ""
"\n"
"\n"
@@ -7418,18 +7724,18 @@ msgid ""
"standing on a wrong model or on \"Raw printer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1548
+#: ../../printerdrake.pm_.c:1664
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
msgstr ""
-#: ../../printerdrake.pm_.c:1624
+#: ../../printerdrake.pm_.c:1741
#, fuzzy
msgid "OKI winprinter configuration"
msgstr "Verander drukkerkonfigurasie"
-#: ../../printerdrake.pm_.c:1625
+#: ../../printerdrake.pm_.c:1742
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -7439,12 +7745,12 @@ msgid ""
"not work. Your connection type setting will be ignored by the driver."
msgstr ""
-#: ../../printerdrake.pm_.c:1668 ../../printerdrake.pm_.c:1695
+#: ../../printerdrake.pm_.c:1785 ../../printerdrake.pm_.c:1812
#, fuzzy
msgid "Lexmark inkjet configuration"
msgstr "Internetkonfigurasie"
-#: ../../printerdrake.pm_.c:1669
+#: ../../printerdrake.pm_.c:1786
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
"no printers on remote machines or print server boxes. Please connect your "
@@ -7452,20 +7758,46 @@ msgid ""
"to."
msgstr ""
-#: ../../printerdrake.pm_.c:1696
+#: ../../printerdrake.pm_.c:1813
msgid ""
"To be able to print with your Lexmark inkjet and this configuration, you "
"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
-"com/). Go to the US site and click on the \"Drivers\" button. Then choose "
-"your model and afterwards \"Linux\" as operating system. The drivers come as "
-"RPM packages or shell scripts with interactive graphical installation. You "
-"do not need to do this configuration by the graphical frontends. Cancel "
-"directly after the license agreement. Then print printhead alignment pages "
-"with \"lexmarkmaintain\" and adjust the head alignment settings with this "
-"program."
+"com/). Click on the \"Drivers\" link. Then choose your model and afterwards "
+"\"Linux\" as operating system. The drivers come as RPM packages or shell "
+"scripts with interactive graphical installation. You do not need to do this "
+"configuration by the graphical frontends. Cancel directly after the license "
+"agreement. Then print printhead alignment pages with \"lexmarkmaintain\" and "
+"adjust the head alignment settings with this program."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:1816
+msgid "GDI Laser Printer using the Zenographics ZJ-Stream Format"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:1817
+msgid ""
+"Your printer belongs to the group of GDI laser printers (winprinters) sold "
+"by different manufacturers which uses the Zenographics ZJ-stream raster "
+"format for the data sent to the printer. The driver for these printers is "
+"still in a very early development stage and so it will perhaps not always "
+"work properly. Especially it is possible that the printer only works when "
+"you choose the A4 paper size.\n"
+"\n"
+"Some of these printers, as the HP LaserJet 1000, for which this driver was "
+"originally created, need their firmware to be uploaded to them after they "
+"are turned on. In the case of the HP LaserJet 1000 you have to search the "
+"printer's Windows driver CD or your Windows partition for the file "
+"\"sihp1000.img\" and upload the file to the printer with one of the "
+"following commands:\n"
+"\n"
+" lpr -o raw sihp1000.img\n"
+" cat sihp1000.img > /dev/usb/lp0\n"
+"\n"
+"The first command can be given by any normal user, the second must be given "
+"as root. After having done so you can print normally.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1912
+#: ../../printerdrake.pm_.c:2040
msgid ""
"Printer default settings\n"
"\n"
@@ -7475,22 +7807,22 @@ msgid ""
"printout quality/resolution printing can get substantially slower."
msgstr ""
-#: ../../printerdrake.pm_.c:1921
+#: ../../printerdrake.pm_.c:2049
#, c-format
msgid "Option %s must be an integer number!"
msgstr "Opsie %s moet 'n heeltal wees!"
-#: ../../printerdrake.pm_.c:1925
+#: ../../printerdrake.pm_.c:2053
#, c-format
msgid "Option %s must be a number!"
msgstr "Opsie %s moet 'n nommer wees"
-#: ../../printerdrake.pm_.c:1930
+#: ../../printerdrake.pm_.c:2058
#, c-format
msgid "Option %s out of range!"
msgstr "Opsie %s is buite bereik!"
-#: ../../printerdrake.pm_.c:1969
+#: ../../printerdrake.pm_.c:2097
#, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
@@ -7499,11 +7831,11 @@ msgstr ""
"Wil u hierdie drukker (\"%s\")\n"
"die verstek drukker maak?"
-#: ../../printerdrake.pm_.c:1986
+#: ../../printerdrake.pm_.c:2120
msgid "Test pages"
msgstr "Toetsbladsye"
-#: ../../printerdrake.pm_.c:1987
+#: ../../printerdrake.pm_.c:2121
msgid ""
"Please select the test pages you want to print.\n"
"Note: the photo test page can take a rather long time to get printed and on "
@@ -7511,40 +7843,40 @@ msgid ""
"it is enough to print the standard test page."
msgstr ""
-#: ../../printerdrake.pm_.c:1991
+#: ../../printerdrake.pm_.c:2125
msgid "No test pages"
msgstr "Geen toetsbladsye"
-#: ../../printerdrake.pm_.c:1992
+#: ../../printerdrake.pm_.c:2126
msgid "Print"
msgstr "Druk"
-#: ../../printerdrake.pm_.c:1994
+#: ../../printerdrake.pm_.c:2183
msgid "Standard test page"
msgstr "Standaard toetsbladsy"
-#: ../../printerdrake.pm_.c:1997
+#: ../../printerdrake.pm_.c:2186
msgid "Alternative test page (Letter)"
msgstr "Alternatiewe toetsbladsy (Lettergrootte)"
-#: ../../printerdrake.pm_.c:2000
+#: ../../printerdrake.pm_.c:2189
msgid "Alternative test page (A4)"
msgstr "Alternatiewe toetsbladsy (A4)"
-#: ../../printerdrake.pm_.c:2002
+#: ../../printerdrake.pm_.c:2191
msgid "Photo test page"
msgstr "Fototoetsbladsy"
-#: ../../printerdrake.pm_.c:2006
+#: ../../printerdrake.pm_.c:2195
#, fuzzy
msgid "Do not print any test page"
msgstr "Druk toetsbladsy(e)"
-#: ../../printerdrake.pm_.c:2014 ../../printerdrake.pm_.c:2166
+#: ../../printerdrake.pm_.c:2204 ../../printerdrake.pm_.c:2357
msgid "Printing test page(s)..."
msgstr "Toetsbladsy(e) word gedruk..."
-#: ../../printerdrake.pm_.c:2039
+#: ../../printerdrake.pm_.c:2229
#, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -7559,7 +7891,7 @@ msgstr ""
"%s\n"
"\n"
-#: ../../printerdrake.pm_.c:2043
+#: ../../printerdrake.pm_.c:2233
msgid ""
"Test page(s) have been sent to the printer.\n"
"It may take some time before the printer starts.\n"
@@ -7567,16 +7899,16 @@ msgstr ""
"Toetsbladsy(e) is na die drukker gestuur.\n"
"Dit mag 'n tydjie neem voordat drukwerk begin.\n"
-#: ../../printerdrake.pm_.c:2050
+#: ../../printerdrake.pm_.c:2240
msgid "Did it work properly?"
msgstr "Het dit reg gewerk?"
-#: ../../printerdrake.pm_.c:2072 ../../printerdrake.pm_.c:3191
+#: ../../printerdrake.pm_.c:2262 ../../printerdrake.pm_.c:3416
#, fuzzy
msgid "Raw printer"
msgstr "Geen drukker"
-#: ../../printerdrake.pm_.c:2098
+#: ../../printerdrake.pm_.c:2288
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -7585,15 +7917,15 @@ msgid ""
"to modify the option settings easily.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2100
+#: ../../printerdrake.pm_.c:2290
msgid ""
"These commands you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications, but here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2103 ../../printerdrake.pm_.c:2120
-#: ../../printerdrake.pm_.c:2130
+#: ../../printerdrake.pm_.c:2293 ../../printerdrake.pm_.c:2310
+#: ../../printerdrake.pm_.c:2320
#, c-format
msgid ""
"\n"
@@ -7602,7 +7934,7 @@ msgid ""
"line, e. g. \"%s <file>\". "
msgstr ""
-#: ../../printerdrake.pm_.c:2106 ../../printerdrake.pm_.c:2146
+#: ../../printerdrake.pm_.c:2296 ../../printerdrake.pm_.c:2336
#, c-format
msgid ""
"To know about the options available for the current printer read either the "
@@ -7610,41 +7942,41 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2110
+#: ../../printerdrake.pm_.c:2300
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2115 ../../printerdrake.pm_.c:2125
+#: ../../printerdrake.pm_.c:2305 ../../printerdrake.pm_.c:2315
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2117 ../../printerdrake.pm_.c:2127
-#: ../../printerdrake.pm_.c:2137
+#: ../../printerdrake.pm_.c:2307 ../../printerdrake.pm_.c:2317
+#: ../../printerdrake.pm_.c:2327
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2122 ../../printerdrake.pm_.c:2132
+#: ../../printerdrake.pm_.c:2312 ../../printerdrake.pm_.c:2322
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
msgstr ""
-#: ../../printerdrake.pm_.c:2135
+#: ../../printerdrake.pm_.c:2325
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\" or \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2139
+#: ../../printerdrake.pm_.c:2329
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -7654,7 +7986,7 @@ msgid ""
"jams.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2143
+#: ../../printerdrake.pm_.c:2333
#, c-format
msgid ""
"\n"
@@ -7663,41 +7995,41 @@ msgid ""
"line, e. g. \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2153
+#: ../../printerdrake.pm_.c:2343
#, fuzzy, c-format
msgid "Printing/Scanning/Photo Cards on \"%s\""
msgstr "Netwerk op pad af"
-#: ../../printerdrake.pm_.c:2154
+#: ../../printerdrake.pm_.c:2344
#, fuzzy, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "Netwerk op pad af"
-#: ../../printerdrake.pm_.c:2156
+#: ../../printerdrake.pm_.c:2346
#, fuzzy, c-format
msgid "Printing/Photo Card Access on \"%s\""
msgstr "Netwerk op pad af"
-#: ../../printerdrake.pm_.c:2157
+#: ../../printerdrake.pm_.c:2347
#, fuzzy, c-format
msgid "Printing on the printer \"%s\""
msgstr "Netwerk op pad af"
-#: ../../printerdrake.pm_.c:2160 ../../printerdrake.pm_.c:2163
-#: ../../printerdrake.pm_.c:2164 ../../printerdrake.pm_.c:2165
-#: ../../printerdrake.pm_.c:3175 ../../standalone/drakTermServ_.c:248
-#: ../../standalone/drakbackup_.c:1485 ../../standalone/drakbackup_.c:3530
-#: ../../standalone/drakbug_.c:129 ../../standalone/drakfont_.c:705
+#: ../../printerdrake.pm_.c:2350 ../../printerdrake.pm_.c:2353
+#: ../../printerdrake.pm_.c:2354 ../../printerdrake.pm_.c:2355
+#: ../../printerdrake.pm_.c:3400 ../../standalone/drakTermServ_.c:248
+#: ../../standalone/drakbackup_.c:1560 ../../standalone/drakbackup_.c:4208
+#: ../../standalone/drakbug_.c:130 ../../standalone/drakfont_.c:705
#: ../../standalone/drakfont_.c:1014
msgid "Close"
msgstr "Sluit af"
-#: ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2353
#, fuzzy
msgid "Print option list"
msgstr "Drukkeropsies"
-#: ../../printerdrake.pm_.c:2182
+#: ../../printerdrake.pm_.c:2373
#, c-format
msgid ""
"Your multi-function device was configured automatically to be able to scan. "
@@ -7711,7 +8043,7 @@ msgid ""
"Do not use \"scannerdrake\" for this device!"
msgstr ""
-#: ../../printerdrake.pm_.c:2202
+#: ../../printerdrake.pm_.c:2394
msgid ""
"Your printer was configured automatically to give you access to the photo "
"card drives from your PC. Now you can access your photo cards using the "
@@ -7724,17 +8056,17 @@ msgid ""
"of the file lists."
msgstr ""
-#: ../../printerdrake.pm_.c:2223 ../../printerdrake.pm_.c:2673
-#: ../../printerdrake.pm_.c:2945
+#: ../../printerdrake.pm_.c:2416 ../../printerdrake.pm_.c:2875
+#: ../../printerdrake.pm_.c:3170
msgid "Reading printer data..."
msgstr "Drukkerdata word gelees..."
-#: ../../printerdrake.pm_.c:2243 ../../printerdrake.pm_.c:2271
-#: ../../printerdrake.pm_.c:2306
+#: ../../printerdrake.pm_.c:2436 ../../printerdrake.pm_.c:2464
+#: ../../printerdrake.pm_.c:2499
msgid "Transfer printer configuration"
msgstr "Dra drukkerkonfigurasie oor"
-#: ../../printerdrake.pm_.c:2244
+#: ../../printerdrake.pm_.c:2437
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -7744,51 +8076,51 @@ msgid ""
"Not all queues can be transferred due to the following reasons:\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2247
+#: ../../printerdrake.pm_.c:2440
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2249
+#: ../../printerdrake.pm_.c:2442
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2251
+#: ../../printerdrake.pm_.c:2444
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr "LPD en LPRng ondersteun nie IPP-drukkers nie.\n"
-#: ../../printerdrake.pm_.c:2253
+#: ../../printerdrake.pm_.c:2446
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:2254
+#: ../../printerdrake.pm_.c:2447
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
"or with native CUPS drivers cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:2255
+#: ../../printerdrake.pm_.c:2448
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
"\"Transfer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:2258
+#: ../../printerdrake.pm_.c:2451
msgid "Do not transfer printers"
msgstr "Moet nie drukkers oordra nie"
-#: ../../printerdrake.pm_.c:2259 ../../printerdrake.pm_.c:2276
+#: ../../printerdrake.pm_.c:2452 ../../printerdrake.pm_.c:2469
msgid "Transfer"
msgstr "Oordrag"
-#: ../../printerdrake.pm_.c:2272
+#: ../../printerdrake.pm_.c:2465
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -7796,61 +8128,61 @@ msgid ""
"You can also type a new name or skip this printer."
msgstr ""
-#: ../../printerdrake.pm_.c:2280
+#: ../../printerdrake.pm_.c:2473
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr ""
-#: ../../printerdrake.pm_.c:2285
+#: ../../printerdrake.pm_.c:2478
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
"do you really want to overwrite its configuration?"
msgstr ""
-#: ../../printerdrake.pm_.c:2293
+#: ../../printerdrake.pm_.c:2486
msgid "New printer name"
msgstr "Nuwe drukkernaam"
-#: ../../printerdrake.pm_.c:2296
+#: ../../printerdrake.pm_.c:2489
#, c-format
msgid "Transferring %s..."
msgstr "%s word oorgedra..."
-#: ../../printerdrake.pm_.c:2307
+#: ../../printerdrake.pm_.c:2500
#, c-format
msgid ""
"You have transferred your former default printer (\"%s\"), Should it be also "
"the default printer under the new printing system %s?"
msgstr ""
-#: ../../printerdrake.pm_.c:2316
+#: ../../printerdrake.pm_.c:2510
#, fuzzy
msgid "Refreshing printer data..."
msgstr "Drukkerdata word gelees..."
-#: ../../printerdrake.pm_.c:2324 ../../printerdrake.pm_.c:2395
-#: ../../printerdrake.pm_.c:2407
+#: ../../printerdrake.pm_.c:2518 ../../printerdrake.pm_.c:2590
+#: ../../printerdrake.pm_.c:2602
#, fuzzy
msgid "Configuration of a remote printer"
msgstr "Konfigureer drukker"
-#: ../../printerdrake.pm_.c:2325
+#: ../../printerdrake.pm_.c:2519
#, fuzzy
msgid "Starting network..."
msgstr "Konneksie word begin..."
-#: ../../printerdrake.pm_.c:2359 ../../printerdrake.pm_.c:2363
-#: ../../printerdrake.pm_.c:2365
+#: ../../printerdrake.pm_.c:2554 ../../printerdrake.pm_.c:2558
+#: ../../printerdrake.pm_.c:2560
#, fuzzy
msgid "Configure the network now"
msgstr "Stel netwerk op"
-#: ../../printerdrake.pm_.c:2360
+#: ../../printerdrake.pm_.c:2555
#, fuzzy
msgid "Network functionality not configured"
msgstr "Monitor is nie opgestel nie"
-#: ../../printerdrake.pm_.c:2361
+#: ../../printerdrake.pm_.c:2556
msgid ""
"You are going to configure a remote printer. This needs working network "
"access, but your network is not configured yet. If you go on without network "
@@ -7858,12 +8190,12 @@ msgid ""
"configuring now. How do you want to proceed?"
msgstr ""
-#: ../../printerdrake.pm_.c:2364
+#: ../../printerdrake.pm_.c:2559
#, fuzzy
msgid "Go on without configuring the network"
msgstr "Stel netwerk op"
-#: ../../printerdrake.pm_.c:2397
+#: ../../printerdrake.pm_.c:2592
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -7873,7 +8205,7 @@ msgid ""
"\"Printer\""
msgstr ""
-#: ../../printerdrake.pm_.c:2398
+#: ../../printerdrake.pm_.c:2593
msgid ""
"The network access was not running and could not be started. Please check "
"your configuration and your hardware. Then try to configure your remote "
@@ -7881,27 +8213,27 @@ msgid ""
msgstr ""
#
-#: ../../printerdrake.pm_.c:2408
+#: ../../printerdrake.pm_.c:2603
#, fuzzy
msgid "Restarting printing system..."
msgstr "Watter drukkerstelsel verlang u?"
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2641
#, fuzzy
msgid "high"
msgstr "Hoog"
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2641
#, fuzzy
msgid "paranoid"
msgstr "Paranoïes"
-#: ../../printerdrake.pm_.c:2447
+#: ../../printerdrake.pm_.c:2642
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr ""
-#: ../../printerdrake.pm_.c:2448
+#: ../../printerdrake.pm_.c:2643
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -7917,12 +8249,12 @@ msgid ""
msgstr ""
#
-#: ../../printerdrake.pm_.c:2480
+#: ../../printerdrake.pm_.c:2675
#, fuzzy
msgid "Starting the printing system at boot time"
msgstr "Watter drukkerstelsel verlang u?"
-#: ../../printerdrake.pm_.c:2481
+#: ../../printerdrake.pm_.c:2676
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -7936,79 +8268,74 @@ msgid ""
"again?"
msgstr ""
-#: ../../printerdrake.pm_.c:2504 ../../printerdrake.pm_.c:2544
-#: ../../printerdrake.pm_.c:2581 ../../printerdrake.pm_.c:2621
-#: ../../printerdrake.pm_.c:2733
+#: ../../printerdrake.pm_.c:2700 ../../printerdrake.pm_.c:2741
+#: ../../printerdrake.pm_.c:2780 ../../printerdrake.pm_.c:2822
+#: ../../printerdrake.pm_.c:2943
msgid "Checking installed software..."
msgstr "Installeerde sagteware word deursoek..."
-#: ../../printerdrake.pm_.c:2548
+#: ../../printerdrake.pm_.c:2746
msgid "Removing LPRng..."
msgstr "LPRng word verwyder..."
-#: ../../printerdrake.pm_.c:2585
+#: ../../printerdrake.pm_.c:2785
msgid "Removing LPD..."
msgstr "LPD word verwyder..."
-#: ../../printerdrake.pm_.c:2657
+#: ../../printerdrake.pm_.c:2858
msgid "Select Printer Spooler"
msgstr "Kies drukkerspoelprogram"
#
-#: ../../printerdrake.pm_.c:2658
+#: ../../printerdrake.pm_.c:2859
msgid "Which printing system (spooler) do you want to use?"
msgstr "Watter drukkerstelsel (spoelprogram) verlang u?"
-#: ../../printerdrake.pm_.c:2691
+#: ../../printerdrake.pm_.c:2895
#, fuzzy, c-format
msgid "Configuring printer \"%s\"..."
msgstr "Konfigureer drukker"
-#: ../../printerdrake.pm_.c:2704
+#: ../../printerdrake.pm_.c:2909
#, fuzzy
msgid "Installing Foomatic..."
msgstr "Installeer pakket %s"
-#: ../../printerdrake.pm_.c:2769 ../../printerdrake.pm_.c:2808
-#: ../../printerdrake.pm_.c:3192 ../../printerdrake.pm_.c:3262
+#: ../../printerdrake.pm_.c:2979 ../../printerdrake.pm_.c:3020
+#: ../../printerdrake.pm_.c:3417 ../../printerdrake.pm_.c:3490
msgid "Printer options"
msgstr "Drukkeropsies"
-#: ../../printerdrake.pm_.c:2778
+#: ../../printerdrake.pm_.c:2989
#, fuzzy
-msgid "Preparing PrinterDrake..."
+msgid "Preparing Printerdrake..."
msgstr "Drukkerdata word gelees..."
-#: ../../printerdrake.pm_.c:2795 ../../printerdrake.pm_.c:3349
+#: ../../printerdrake.pm_.c:3007 ../../printerdrake.pm_.c:3580
#, fuzzy
msgid "Configuring applications..."
msgstr "Konfigureer drukker"
-#: ../../printerdrake.pm_.c:2815
+#: ../../printerdrake.pm_.c:3027
msgid "Would you like to configure printing?"
msgstr "Wil u 'n drukwerk nou konfigureer?"
-#: ../../printerdrake.pm_.c:2827
+#: ../../printerdrake.pm_.c:3039
msgid "Printing system: "
msgstr "Drukkerstelsel:"
-#: ../../printerdrake.pm_.c:2875
-#, fuzzy
-msgid "Printerdrake"
-msgstr "Drukker"
-
-#: ../../printerdrake.pm_.c:2879
+#: ../../printerdrake.pm_.c:3099
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; to view information about it; "
"or to make a printer on a remote CUPS server available for Star Office/"
-"OpenOffice.org."
+"OpenOffice.org/GIMP."
msgstr ""
"Hier is die bestaande drukkertoue.\n"
"U kan byvoeg or verwyder soos nodig."
-#: ../../printerdrake.pm_.c:2880
+#: ../../printerdrake.pm_.c:3100
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
@@ -8018,30 +8345,30 @@ msgstr ""
"Hier is die bestaande drukkertoue.\n"
"U kan byvoeg or verwyder soos nodig."
-#: ../../printerdrake.pm_.c:2906
+#: ../../printerdrake.pm_.c:3127
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr ""
-#: ../../printerdrake.pm_.c:2924
+#: ../../printerdrake.pm_.c:3145
#, fuzzy
msgid "Change the printing system"
msgstr "Stel netwerk op"
-#: ../../printerdrake.pm_.c:2929 ../../standalone/drakconnect_.c:277
+#: ../../printerdrake.pm_.c:3150 ../../standalone/drakconnect_.c:277
msgid "Normal Mode"
msgstr "Normale modus"
-#: ../../printerdrake.pm_.c:3085 ../../printerdrake.pm_.c:3135
-#: ../../printerdrake.pm_.c:3343
+#: ../../printerdrake.pm_.c:3310 ../../printerdrake.pm_.c:3360
+#: ../../printerdrake.pm_.c:3573
#, fuzzy
msgid "Do you want to configure another printer?"
msgstr "Wil u die konfigurasie toets?"
-#: ../../printerdrake.pm_.c:3170
+#: ../../printerdrake.pm_.c:3395
msgid "Modify printer configuration"
msgstr "Verander drukkerkonfigurasie"
-#: ../../printerdrake.pm_.c:3172
+#: ../../printerdrake.pm_.c:3397
#, fuzzy, c-format
msgid ""
"Printer %s\n"
@@ -8050,102 +8377,104 @@ msgstr ""
"Drukker %s: %s %s\n"
"Wil u hierdie drukker verander?"
-#: ../../printerdrake.pm_.c:3176
+#: ../../printerdrake.pm_.c:3401
msgid "Do it!"
msgstr "Gaan voort!"
-#: ../../printerdrake.pm_.c:3181 ../../printerdrake.pm_.c:3236
+#: ../../printerdrake.pm_.c:3406 ../../printerdrake.pm_.c:3461
msgid "Printer connection type"
msgstr "Drukkerkonneksietipe"
-#: ../../printerdrake.pm_.c:3182 ../../printerdrake.pm_.c:3240
+#: ../../printerdrake.pm_.c:3407 ../../printerdrake.pm_.c:3465
msgid "Printer name, description, location"
msgstr "Drukkernaam,. beskrywing, ligging"
-#: ../../printerdrake.pm_.c:3184 ../../printerdrake.pm_.c:3255
+#: ../../printerdrake.pm_.c:3409 ../../printerdrake.pm_.c:3483
msgid "Printer manufacturer, model, driver"
msgstr "Drukkervervaardiger, model, drywer"
-#: ../../printerdrake.pm_.c:3185 ../../printerdrake.pm_.c:3256
+#: ../../printerdrake.pm_.c:3410 ../../printerdrake.pm_.c:3484
msgid "Printer manufacturer, model"
msgstr "Drukkervervaardiger, model"
-#: ../../printerdrake.pm_.c:3194 ../../printerdrake.pm_.c:3266
+#: ../../printerdrake.pm_.c:3419 ../../printerdrake.pm_.c:3494
msgid "Set this printer as the default"
msgstr "Maak hierdie die verstekdrukker"
-#: ../../printerdrake.pm_.c:3196 ../../printerdrake.pm_.c:3271
-msgid "Add this printer to Star Office/OpenOffice.org"
+#: ../../printerdrake.pm_.c:3421 ../../printerdrake.pm_.c:3499
+msgid "Add this printer to Star Office/OpenOffice.org/GIMP"
msgstr ""
-#: ../../printerdrake.pm_.c:3197 ../../printerdrake.pm_.c:3280
-msgid "Remove this printer from Star Office/OpenOffice.org"
+#: ../../printerdrake.pm_.c:3422 ../../printerdrake.pm_.c:3508
+msgid "Remove this printer from Star Office/OpenOffice.org/GIMP"
msgstr ""
-#: ../../printerdrake.pm_.c:3198 ../../printerdrake.pm_.c:3289
+#: ../../printerdrake.pm_.c:3423 ../../printerdrake.pm_.c:3517
msgid "Print test pages"
msgstr "Druk toetsbladsy(e)"
-#: ../../printerdrake.pm_.c:3199 ../../printerdrake.pm_.c:3291
+#: ../../printerdrake.pm_.c:3424 ../../printerdrake.pm_.c:3519
#, fuzzy
msgid "Know how to use this printer"
msgstr "Wil u die konfigurasie toets?"
#
-#: ../../printerdrake.pm_.c:3201 ../../printerdrake.pm_.c:3293
+#: ../../printerdrake.pm_.c:3426 ../../printerdrake.pm_.c:3521
msgid "Remove printer"
msgstr "Verwyder drukker"
-#: ../../printerdrake.pm_.c:3245
+#: ../../printerdrake.pm_.c:3472
#, fuzzy, c-format
msgid "Removing old printer \"%s\"..."
msgstr "Drukkerdata word gelees..."
-#: ../../printerdrake.pm_.c:3269
+#: ../../printerdrake.pm_.c:3497
msgid "Default printer"
msgstr "Verstek drukker"
-#: ../../printerdrake.pm_.c:3270
+#: ../../printerdrake.pm_.c:3498
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr "Drukker \"%s\" is nou die verstekdrukker"
-#: ../../printerdrake.pm_.c:3274 ../../printerdrake.pm_.c:3277
-msgid "Adding printer to Star Office/OpenOffice.org"
+#: ../../printerdrake.pm_.c:3502 ../../printerdrake.pm_.c:3505
+msgid "Adding printer to Star Office/OpenOffice.org/GIMP"
msgstr ""
-#: ../../printerdrake.pm_.c:3275
+#: ../../printerdrake.pm_.c:3503
#, c-format
msgid ""
-"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
+"The printer \"%s\" was successfully added to Star Office/OpenOffice.org/GIMP."
msgstr ""
-#: ../../printerdrake.pm_.c:3278
+#: ../../printerdrake.pm_.c:3506
#, c-format
-msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
+msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org/GIMP."
msgstr ""
-#: ../../printerdrake.pm_.c:3283 ../../printerdrake.pm_.c:3286
-msgid "Removing printer from Star Office/OpenOffice.org"
+#: ../../printerdrake.pm_.c:3511 ../../printerdrake.pm_.c:3514
+msgid "Removing printer from Star Office/OpenOffice.org/GIMP"
msgstr ""
-#: ../../printerdrake.pm_.c:3284
+#: ../../printerdrake.pm_.c:3512
#, c-format
msgid ""
-"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
+"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org/"
+"GIMP."
msgstr ""
-#: ../../printerdrake.pm_.c:3287
+#: ../../printerdrake.pm_.c:3515
#, c-format
-msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
+msgid ""
+"Failed to remove the printer \"%s\" from Star Office/OpenOffice.org/GIMP."
msgstr ""
-#: ../../printerdrake.pm_.c:3295
+#: ../../printerdrake.pm_.c:3523
#, fuzzy, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr "Wil u die werklik die drukker verwyder?"
-#: ../../printerdrake.pm_.c:3297
+#: ../../printerdrake.pm_.c:3527
#, fuzzy, c-format
msgid "Removing printer \"%s\"..."
msgstr "Drukkerdata word gelees..."
@@ -8545,7 +8874,7 @@ msgstr "Internet"
msgid "File sharing"
msgstr ""
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1669
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1744
#, fuzzy
msgid "System"
msgstr "Stelselmode"
@@ -8601,15 +8930,15 @@ msgstr "Toestand"
msgid "Stop"
msgstr "Sektor"
-#: ../../share/advertising/00-thanks.pl_.c:9
-msgid "Thank you for choosing Mandrake Linux 8.2"
+#: ../../share/advertising/01-thanks.pl_.c:9
+msgid "Thank you for choosing Mandrake Linux 9.0"
msgstr ""
-#: ../../share/advertising/00-thanks.pl_.c:10
+#: ../../share/advertising/01-thanks.pl_.c:10
msgid "Welcome to the Open Source world"
msgstr ""
-#: ../../share/advertising/00-thanks.pl_.c:11
+#: ../../share/advertising/01-thanks.pl_.c:11
msgid ""
"The success of MandrakeSoft is based upon the principle of Free Software. "
"Your new operating system is the result of collaborative work on the part of "
@@ -8617,177 +8946,213 @@ msgid ""
msgstr ""
#
-#: ../../share/advertising/01-gnu.pl_.c:9
+#: ../../share/advertising/02-community.pl_.c:9
#, fuzzy
-msgid "Join the Free Software world"
+msgid "Get involved in the Free Software world"
msgstr "Protokol vir die res van die wêreld"
-#: ../../share/advertising/01-gnu.pl_.c:10
+#: ../../share/advertising/02-community.pl_.c:10
+msgid "Want to know more about the Open Source community?"
+msgstr ""
+
+#: ../../share/advertising/02-community.pl_.c:11
msgid ""
-"Get to know the Open Source community and become a member. Learn, teach, and "
-"help others by joining the many discussion forums that you will find in our "
-"\"Community\" webpages"
+"To share your own knowledge and help build Linux tools, join the discussions "
+"forum you'll find on our \"Community\" webpages"
msgstr ""
-#: ../../share/advertising/02-internet.pl_.c:9
+#: ../../share/advertising/03-internet.pl_.c:9
#, fuzzy
-msgid "Internet and Messaging"
-msgstr "Internettoegang"
+msgid "Get the most from the Internet"
+msgstr "Konnekteer aan die internet"
-#: ../../share/advertising/02-internet.pl_.c:10
+#: ../../share/advertising/03-internet.pl_.c:10
msgid ""
-"Mandrake Linux 8.2 provides the best software to access everything the "
-"Internet has to offer: Surf the web & view animations with Mozilla and "
-"Konqueror, exchange email & organize your personal information with "
-"Evolution and Kmail, and much more"
+"Mandrake Linux 9.0 has selected the best software for you. Surf the Web and "
+"view animations with Mozilla and Konqueror, or read your mail and handle "
+"your personal information with Evolution and Kmail"
msgstr ""
-#: ../../share/advertising/03-graphic.pl_.c:9
-#, fuzzy
-msgid "Multimedia and Graphics"
-msgstr "Multimedia - Grafika"
+#: ../../share/advertising/04-multimedia.pl_.c:9
+msgid "Discover the most up-to-date graphics and multimedia tools!"
+msgstr ""
+
+#: ../../share/advertising/04-multimedia.pl_.c:10
+msgid "Push multimedia to its limits!"
+msgstr ""
-#: ../../share/advertising/03-graphic.pl_.c:10
+#: ../../share/advertising/04-multimedia.pl_.c:11
msgid ""
-"Mandrake Linux 8.2 lets you push your multimedia computer to its limits! Use "
-"the latest software to play music and audio files, edit and organize your "
-"images and photos, watch TV and videos, and much more"
+"Mandrake Linux 9.0 enables you to use the very latest software to play audio "
+"files, edit and handle your images or photos, and play videos"
msgstr ""
-#: ../../share/advertising/04-develop.pl_.c:9
-msgid "Development"
-msgstr "Ontwikkeling"
+#: ../../share/advertising/05-games.pl_.c:9
+msgid "Games"
+msgstr "Speletjies"
-#: ../../share/advertising/04-develop.pl_.c:10
+#: ../../share/advertising/05-games.pl_.c:10
msgid ""
-"Mandrake Linux 8.2 is the ultimate development platform. Discover the power "
-"of the GNU gcc compiler as well as the best Open Source development "
-"environments"
+"Mandrake Linux 9.0 provides the best Open Source games - arcade, action, "
+"cards, sports, strategy..."
msgstr ""
-#: ../../share/advertising/05-contcenter.pl_.c:9
-#: ../../standalone/drakbug_.c:69
+#: ../../share/advertising/06-mcc.pl_.c:9 ../../standalone/drakbug_.c:69
#, fuzzy
msgid "Mandrake Control Center"
msgstr "Beheersentrum"
-#: ../../share/advertising/05-contcenter.pl_.c:10
+#: ../../share/advertising/06-mcc.pl_.c:10
msgid ""
-"The Mandrake Linux 8.2 Control Center is a one-stop location for fully "
-"customizing and configuring your Mandrake system"
+"Mandrake Linux 9.0 provides a powerful tool to fully customize and configure "
+"your machine"
msgstr ""
-#: ../../share/advertising/06-user.pl_.c:9
+#: ../../share/advertising/07-desktop.pl_.c:9
#, fuzzy
msgid "User interfaces"
msgstr "Netwerkkoppelvlak"
-#: ../../share/advertising/06-user.pl_.c:10
+#: ../../share/advertising/07-desktop.pl_.c:10
msgid ""
-"Mandrake Linux 8.2 provides 11 different graphical desktop environments and "
-"window managers to choose from including GNOME 1.4, KDE 2.2.2, Window Maker "
-"0.8, and the rest"
+"Mandrake Linux 9.0 provides 11 user interfaces which can be fully modified: "
+"KDE 3, Gnome 2, WindowMaker..."
msgstr ""
-#: ../../share/advertising/07-server.pl_.c:9
+#: ../../share/advertising/08-development.pl_.c:9
#, fuzzy
-msgid "Server Software"
-msgstr "SMB-bedienernaam"
+msgid "Development simplified"
+msgstr "Ontwikkeling"
+
+#: ../../share/advertising/08-development.pl_.c:10
+msgid "Mandrake Linux 9.0 is the ultimate development platform"
+msgstr ""
-#: ../../share/advertising/07-server.pl_.c:10
+#: ../../share/advertising/08-development.pl_.c:11
msgid ""
-"Transform your machine into a powerful server with just a few clicks of the "
-"mouse: Web server, email, firewall, router, file and print server, ..."
+"Use the full power of the GNU gcc 3 compiler as well as the best Open Source "
+"development environments"
msgstr ""
-#: ../../share/advertising/08-games.pl_.c:9
-msgid "Games"
-msgstr "Speletjies"
+#: ../../share/advertising/09-server.pl_.c:9
+msgid "Turn your machine into a reliable server"
+msgstr ""
-#: ../../share/advertising/08-games.pl_.c:10
+#: ../../share/advertising/09-server.pl_.c:10
msgid ""
-"Mandrake Linux 8.2 provides the best Open Source games - arcade, action, "
-"cards, sports, strategy, ..."
+"Transform your machine into a powerful server in a few clicks of your mouse: "
+"Web server, mail, firewall, router, file and print server..."
msgstr ""
-#: ../../share/advertising/09-MDKcampus.pl_.c:9
-msgid "MandrakeCampus"
+#: ../../share/advertising/10-mnf.pl_.c:9
+msgid "Optimize your security"
msgstr ""
-#: ../../share/advertising/09-MDKcampus.pl_.c:10
+#: ../../share/advertising/10-mnf.pl_.c:10
msgid ""
-"Would you like to learn Linux simply, quickly, and for free? MandrakeSoft "
-"provides free Linux training, as well as a way to test your progress, at "
-"MandrakeCampus -- our online training center"
+"The MandrakeSecurity range includes the Multi Network Firewall product (M.N."
+"F.)"
msgstr ""
-#: ../../share/advertising/10-MDKexpert.pl_.c:9
-#, fuzzy
-msgid "MandrakeExpert"
-msgstr "Kundige"
+#: ../../share/advertising/10-mnf.pl_.c:11
+msgid ""
+"This firewall product includes network features which allow you to fulfill "
+"all your security needs"
+msgstr ""
+
+#: ../../share/advertising/10-mnf.pl_.c:12
+msgid "This product is available on MandrakeStore website"
+msgstr ""
+
+#: ../../share/advertising/11-mdkstore.pl_.c:9
+msgid "The official MandrakeSoft store"
+msgstr ""
-#: ../../share/advertising/10-MDKexpert.pl_.c:10
+#: ../../share/advertising/11-mdkstore.pl_.c:10
msgid ""
-"Quality support from the Linux Community, and from MandrakeSoft, is just "
-"around the corner. And if you're already a Linux veteran, become an \"Expert"
-"\" and share your knowledge at our support website"
+"Our full range of Linux solutions, as well as special offers on products and "
+"'goodies', are available online at our e-store"
+msgstr ""
+
+#: ../../share/advertising/12-mdkstore.pl_.c:9
+msgid "Strategic partners"
+msgstr ""
+
+#: ../../share/advertising/12-mdkstore.pl_.c:10
+msgid ""
+"MandrakeSoft works alongside a selection of companies offering professional "
+"solutions compatible with Mandrake Linux; a list of these partners is "
+"available on the MandrakeStore"
msgstr ""
-#: ../../share/advertising/11-consul.pl_.c:9
-msgid "MandrakeConsulting"
+#: ../../share/advertising/13-mdkcampus.pl_.c:9
+msgid "Discover MandrakeSoft's training catalogue Linux-Campus"
msgstr ""
-#: ../../share/advertising/11-consul.pl_.c:10
+#: ../../share/advertising/13-mdkcampus.pl_.c:10
msgid ""
-"For all of your IT projects, our consultants are ready to analyze your "
-"requirements and offer a customized solution. Benefit from MandrakeSoft's "
-"vast experience as a Linux producer to provide a true IT alternative for "
-"your business organization"
+"The training program has been create to respond to the needs of both users "
+"and experts (Network and System administrations)"
+msgstr ""
+
+#: ../../share/advertising/13-mdkcampus.pl_.c:11
+msgid "Certify yourself on Linux"
msgstr ""
-#: ../../share/advertising/12-MDKstore.pl_.c:9
+#: ../../share/advertising/13-mdkcampus.pl_.c:12
+msgid ""
+"Whether you choose to teach yourself online or via our network of training "
+"partners, the Linux-Campus catalogue prepares you for the acknowledged LPI "
+"certification program (worldwide professional technical certification)"
+msgstr ""
+
+#: ../../share/advertising/14-mdkexpert.pl_.c:9
#, fuzzy
-msgid "MandrakeStore"
-msgstr "verpligtend"
+msgid "Become a MandrakeExpert"
+msgstr "Kundige"
-#: ../../share/advertising/12-MDKstore.pl_.c:10
+#: ../../share/advertising/14-mdkexpert.pl_.c:10
msgid ""
-"A full range of Linux solutions, as well as special offers on products and "
-"'goodies', are available online at our e-store"
+"Find the solutions to your problems via MandrakeSoft's online support "
+"platform"
msgstr ""
-#: ../../share/advertising/13-Nvert.pl_.c:9
+#: ../../share/advertising/14-mdkexpert.pl_.c:11
msgid ""
-"For more information on MandrakeSoft's Professional Services and commercial "
-"offerings, please see the following web page:"
+"Join the MandrakeSoft support teams and the Linux Community online to share "
+"your knowledge and help others by becoming a recognized Expert on the online "
+"technical support website:"
+msgstr ""
+
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:9
+#, fuzzy
+msgid "MandrakeExpert Corporate"
+msgstr "Kundige"
+
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:10
+msgid "An online platform to respond to company's specific support needs"
msgstr ""
-#: ../../share/advertising/13-Nvert.pl_.c:11
-msgid "http://www.mandrakesoft.com/sales/contact"
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:11
+msgid ""
+"All incidents will be followed up by a single qualified MandrakeSoft "
+"technical expert."
msgstr ""
-#: ../../standalone.pm_.c:40
+#: ../../standalone.pm_.c:41
#, fuzzy
msgid "Installing packages..."
msgstr "Installeer pakket %s"
-#: ../../standalone/XFdrake_.c:143
+#: ../../standalone/XFdrake_.c:145
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "Teken uit en gebruik dan Ctrl-Alt-Backspace"
-#: ../../standalone/XFdrake_.c:147
+#: ../../standalone/XFdrake_.c:149
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "Teken asb. weer in %s om veranderinge te aktiveer"
-#: ../../standalone/diskdrake_.c:81
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I'll try to go on blanking bad partitions"
-msgstr ""
-"Ek kan nie u partisietabel lees nie, dit is te korrup.\n"
-"Ek sal die nodige partisies skoonmak."
-
#: ../../standalone/drakTermServ_.c:188
#, fuzzy
msgid "Mandrake Terminal Server Configuration"
@@ -8831,12 +9196,13 @@ msgstr "Voeg gebruiker by"
msgid "Add/Del Clients"
msgstr "DHCP-Kliënt"
-#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3282
-#: ../../standalone/drakbackup_.c:3315 ../../standalone/drakbackup_.c:3341
-#: ../../standalone/drakbackup_.c:3368 ../../standalone/drakbackup_.c:3395
-#: ../../standalone/drakbackup_.c:3434 ../../standalone/drakbackup_.c:3455
-#: ../../standalone/drakbackup_.c:3482 ../../standalone/drakbackup_.c:3508
-#: ../../standalone/drakbackup_.c:3533 ../../standalone/drakfont_.c:700
+#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3930
+#: ../../standalone/drakbackup_.c:3963 ../../standalone/drakbackup_.c:3989
+#: ../../standalone/drakbackup_.c:4016 ../../standalone/drakbackup_.c:4043
+#: ../../standalone/drakbackup_.c:4082 ../../standalone/drakbackup_.c:4103
+#: ../../standalone/drakbackup_.c:4130 ../../standalone/drakbackup_.c:4160
+#: ../../standalone/drakbackup_.c:4186 ../../standalone/drakbackup_.c:4211
+#: ../../standalone/drakfont_.c:700
msgid "Help"
msgstr ""
@@ -8993,8 +9359,8 @@ msgid ""
"The parameters of the auto-install are available in the sections on the left"
msgstr ""
-#: ../../standalone/drakautoinst_.c:239 ../../standalone/drakgw_.c:548
-#: ../../standalone/scannerdrake_.c:105
+#: ../../standalone/drakautoinst_.c:239 ../../standalone/drakgw_.c:484
+#: ../../standalone/scannerdrake_.c:119
msgid "Congratulations!"
msgstr "Geluk!"
@@ -9021,27 +9387,31 @@ msgstr "Voeg 'n gebruiker by"
msgid "Remove the last item"
msgstr "Terugluslêer %s word geformateer"
-#: ../../standalone/drakbackup_.c:625
+#: ../../standalone/drakbackup_.c:619
msgid "Cron not available yet as non-root"
msgstr ""
-#: ../../standalone/drakbackup_.c:731
+#: ../../standalone/drakbackup_.c:725
msgid "WARNING"
msgstr ""
-#: ../../standalone/drakbackup_.c:732
+#: ../../standalone/drakbackup_.c:726
#, fuzzy
msgid "FATAL"
msgstr "FAT"
-#: ../../standalone/drakbackup_.c:744
+#: ../../standalone/drakbackup_.c:727
+msgid "INFO"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:739
msgid ""
"\n"
" DrakBackup Report \n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:745
+#: ../../standalone/drakbackup_.c:740
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -9049,7 +9419,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:749
+#: ../../standalone/drakbackup_.c:744
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -9057,13 +9427,20 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:770 ../../standalone/drakbackup_.c:840
-#: ../../standalone/drakbackup_.c:894
+#: ../../standalone/drakbackup_.c:765 ../../standalone/drakbackup_.c:835
+#: ../../standalone/drakbackup_.c:889
#, fuzzy
msgid "Total progess"
msgstr "Toetsbladsye"
-#: ../../standalone/drakbackup_.c:822
+#: ../../standalone/drakbackup_.c:788
+msgid ""
+"Sorry, perl-Expect is not installed/enabled. To use\n"
+"this feature, install perl-Expect and comment lines 772-774,\n"
+" as well as 788,789. Then uncomment line 787."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:817
#, c-format
msgid ""
"%s exists, delete?\n"
@@ -9072,16 +9449,41 @@ msgid ""
" need to purge the entry from authorized_keys on the server."
msgstr ""
-#: ../../standalone/drakbackup_.c:831
+#: ../../standalone/drakbackup_.c:826
msgid "This may take a moment to generate the keys."
msgstr ""
-#: ../../standalone/drakbackup_.c:838
+#: ../../standalone/drakbackup_.c:833
#, c-format
msgid "ERROR: Cannot spawn %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:865
+#: ../../standalone/drakbackup_.c:850
+#, c-format
+msgid "No password prompt on %s at port %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:851
+#, fuzzy, c-format
+msgid "Bad password on %s"
+msgstr "Geen wagwoord"
+
+#: ../../standalone/drakbackup_.c:852
+#, c-format
+msgid "Permission denied transferring %s to %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:853
+#, fuzzy, c-format
+msgid "Can't find %s on %s"
+msgstr "Kan nie %s oopmaak nie: %s\n"
+
+#: ../../standalone/drakbackup_.c:856
+#, c-format
+msgid "%s not responding"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:860
#, c-format
msgid ""
"Transfer successful\n"
@@ -9092,63 +9494,68 @@ msgid ""
"without being prompted for a password."
msgstr ""
-#: ../../standalone/drakbackup_.c:908
+#: ../../standalone/drakbackup_.c:903
msgid "WebDAV remote site already in sync!"
msgstr ""
-#: ../../standalone/drakbackup_.c:912
+#: ../../standalone/drakbackup_.c:907
msgid "WebDAV transfer failed!"
msgstr ""
-#: ../../standalone/drakbackup_.c:934
+#: ../../standalone/drakbackup_.c:928
msgid "No CDR/DVDR in drive!"
msgstr ""
-#: ../../standalone/drakbackup_.c:938
+#: ../../standalone/drakbackup_.c:932
msgid "Does not appear to be recordable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:942
+#: ../../standalone/drakbackup_.c:936
msgid "Not erasable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:981
+#: ../../standalone/drakbackup_.c:975
msgid "This may take a moment to erase the media."
msgstr ""
-#: ../../standalone/drakbackup_.c:1045
+#: ../../standalone/drakbackup_.c:1060
msgid "Permission problem accessing CD."
msgstr ""
-#: ../../standalone/drakbackup_.c:1144 ../../standalone/drakbackup_.c:1193
+#: ../../standalone/drakbackup_.c:1087
+#, c-format
+msgid "No tape in %s!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1199 ../../standalone/drakbackup_.c:1248
msgid "Backup system files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:1194 ../../standalone/drakbackup_.c:1261
+#: ../../standalone/drakbackup_.c:1249 ../../standalone/drakbackup_.c:1316
#, fuzzy
msgid "Hard Disk Backup files..."
msgstr "Korrupte rugsteunlêer"
-#: ../../standalone/drakbackup_.c:1206
+#: ../../standalone/drakbackup_.c:1261
#, fuzzy
msgid "Backup User files..."
msgstr "Korrupte rugsteunlêer"
-#: ../../standalone/drakbackup_.c:1207
+#: ../../standalone/drakbackup_.c:1262
msgid "Hard Disk Backup Progress..."
msgstr ""
-#: ../../standalone/drakbackup_.c:1260
+#: ../../standalone/drakbackup_.c:1315
#, fuzzy
msgid "Backup Other files..."
msgstr "Korrupte rugsteunlêer"
-#: ../../standalone/drakbackup_.c:1266
+#: ../../standalone/drakbackup_.c:1321
#, fuzzy
msgid "No changes to backup!"
msgstr "Korrupte rugsteunlêer"
-#: ../../standalone/drakbackup_.c:1282 ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1337 ../../standalone/drakbackup_.c:1360
#, c-format
msgid ""
"\n"
@@ -9156,810 +9563,934 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1289
+#: ../../standalone/drakbackup_.c:1344
#, c-format
msgid ""
-"file list sent by FTP : %s\n"
+"file list sent by FTP: %s\n"
" "
msgstr ""
-#: ../../standalone/drakbackup_.c:1292
+#: ../../standalone/drakbackup_.c:1347
msgid ""
"\n"
" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1310
+#: ../../standalone/drakbackup_.c:1365
msgid ""
"\n"
"Drakbackup activities via CD:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1315
+#: ../../standalone/drakbackup_.c:1370
msgid ""
"\n"
"Drakbackup activities via tape:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1324
+#: ../../standalone/drakbackup_.c:1379
#, fuzzy
msgid " Error during mail sending. \n"
msgstr "Fout met die les van lêer %s"
-#: ../../standalone/drakbackup_.c:1346
+#: ../../standalone/drakbackup_.c:1404
msgid "Can't create catalog!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1459 ../../standalone/drakbackup_.c:1470
-#: ../../standalone/drakbackup_.c:1481 ../../standalone/drakfont_.c:1004
+#: ../../standalone/drakbackup_.c:1517 ../../standalone/drakbackup_.c:1528
+#: ../../standalone/drakfont_.c:1004
#, fuzzy
msgid "File Selection"
msgstr "Pakketkeuse"
-#: ../../standalone/drakbackup_.c:1486
+#: ../../standalone/drakbackup_.c:1556
msgid "Select the files or directories and click on 'Add'"
msgstr ""
-#: ../../standalone/drakbackup_.c:1525
+#: ../../standalone/drakbackup_.c:1600
msgid ""
"\n"
"Please check all options that you need.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1526
+#: ../../standalone/drakbackup_.c:1601
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1527
+#: ../../standalone/drakbackup_.c:1602
#, fuzzy
msgid "Backup your System files. (/etc directory)"
msgstr "Korrupte rugsteunlêer"
-#: ../../standalone/drakbackup_.c:1528
+#: ../../standalone/drakbackup_.c:1603
msgid "Use incremental backup (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1529
+#: ../../standalone/drakbackup_.c:1604
msgid "Do not include critical files (passwd, group, fstab)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1530
+#: ../../standalone/drakbackup_.c:1605
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr ""
-#: ../../standalone/drakbackup_.c:1547
+#: ../../standalone/drakbackup_.c:1622
#, fuzzy
msgid "Please check all users that you want to include in your backup."
msgstr "Kies die pakkette wat u wil installeer"
-#: ../../standalone/drakbackup_.c:1574
+#: ../../standalone/drakbackup_.c:1649
msgid "Do not include the browser cache"
msgstr ""
-#: ../../standalone/drakbackup_.c:1575 ../../standalone/drakbackup_.c:1599
+#: ../../standalone/drakbackup_.c:1650 ../../standalone/drakbackup_.c:1674
msgid "Use Incremental Backups (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1597 ../../standalone/drakfont_.c:1058
+#: ../../standalone/drakbackup_.c:1672 ../../standalone/drakfont_.c:1058
#, fuzzy
msgid "Remove Selected"
msgstr "Verwyder tou"
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:1710
#, fuzzy
msgid "Windows (FAT32)"
msgstr "Verwyder Windows(TM)"
-#: ../../standalone/drakbackup_.c:1674
+#: ../../standalone/drakbackup_.c:1749
#, fuzzy
msgid "Users"
msgstr "Gebruikerskode"
-#: ../../standalone/drakbackup_.c:1700
+#: ../../standalone/drakbackup_.c:1775
#, fuzzy
msgid "Use network connection to backup"
msgstr "Korrupte rugsteunlêer"
-#: ../../standalone/drakbackup_.c:1706
+#: ../../standalone/drakbackup_.c:1777
+msgid "Net Method:"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1781
msgid "Use Expect for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1707
+#: ../../standalone/drakbackup_.c:1782
msgid ""
"Create/Transfer\n"
"backup keys for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1708
+#: ../../standalone/drakbackup_.c:1783
#, fuzzy
msgid ""
" Transfer \n"
"Now"
msgstr "Oordrag"
-#: ../../standalone/drakbackup_.c:1709
+#: ../../standalone/drakbackup_.c:1784
msgid "Keys in place already"
msgstr ""
#
-#: ../../standalone/drakbackup_.c:1713
+#: ../../standalone/drakbackup_.c:1788
#, fuzzy
msgid "Please enter the host name or IP."
msgstr "Toets asb. die muis"
-#: ../../standalone/drakbackup_.c:1718
+#: ../../standalone/drakbackup_.c:1793
msgid ""
"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
-#: ../../standalone/drakbackup_.c:1723
+#: ../../standalone/drakbackup_.c:1798
#, fuzzy
msgid "Please enter your login"
msgstr "Probeer asb. weer"
-#: ../../standalone/drakbackup_.c:1728
+#: ../../standalone/drakbackup_.c:1803
#, fuzzy
msgid "Please enter your password"
msgstr "Probeer asb. weer"
-#: ../../standalone/drakbackup_.c:1734
+#: ../../standalone/drakbackup_.c:1809
#, fuzzy
msgid "Remember this password"
msgstr "Geen wagwoord"
-#: ../../standalone/drakbackup_.c:1745
+#: ../../standalone/drakbackup_.c:1820
msgid "Need hostname, username and password!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1841
+#: ../../standalone/drakbackup_.c:1915
msgid "Use CD/DVDROM to backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1844
+#: ../../standalone/drakbackup_.c:1918
msgid ""
"Please choose your CD/DVD device\n"
"(Press Enter to propogate settings to other fields.\n"
"This field isn't necessary, only a tool to fill in the form.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1849
+#: ../../standalone/drakbackup_.c:1923
#, fuzzy
msgid "Please choose your CD/DVD media size"
msgstr "Wat is u sleutelborduitleg?"
-#: ../../standalone/drakbackup_.c:1855
+#: ../../standalone/drakbackup_.c:1929
#, fuzzy
msgid "Please check for multisession CD"
msgstr "Kliek asb. op 'n partisie"
-#: ../../standalone/drakbackup_.c:1861
+#: ../../standalone/drakbackup_.c:1935
#, fuzzy
msgid "Please check if you are using CDRW media"
msgstr "Kliek asb. op 'n partisie"
-#: ../../standalone/drakbackup_.c:1867
+#: ../../standalone/drakbackup_.c:1941
#, fuzzy
msgid "Please check if you want to erase your RW media (1st Session)"
msgstr "Kliek asb. op 'n partisie"
-#: ../../standalone/drakbackup_.c:1868
+#: ../../standalone/drakbackup_.c:1942
#, fuzzy
msgid " Erase Now "
msgstr "Oordrag"
-#: ../../standalone/drakbackup_.c:1874
+#: ../../standalone/drakbackup_.c:1948
#, fuzzy
msgid "Please check if you are using a DVDR device"
msgstr "Kliek asb. op 'n partisie"
-#: ../../standalone/drakbackup_.c:1880
+#: ../../standalone/drakbackup_.c:1954
#, fuzzy
msgid "Please check if you are using a DVDRAM device"
msgstr "Kliek asb. op 'n partisie"
-#: ../../standalone/drakbackup_.c:1893
+#: ../../standalone/drakbackup_.c:1967
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
msgstr ""
-#: ../../standalone/drakbackup_.c:1926
+#: ../../standalone/drakbackup_.c:2000
#, fuzzy
msgid "No CD device defined!"
msgstr "Selekteer lOer"
-#: ../../standalone/drakbackup_.c:1974
+#: ../../standalone/drakbackup_.c:2048
#, fuzzy
msgid "Use tape to backup"
msgstr "Korrupte rugsteunlêer"
-#: ../../standalone/drakbackup_.c:1977
+#: ../../standalone/drakbackup_.c:2051
msgid "Please enter the device name to use for backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1983
+#: ../../standalone/drakbackup_.c:2057
#, fuzzy
msgid "Please check if you want to use the non-rewinding device."
msgstr "Kies die pakkette wat u wil installeer"
-#: ../../standalone/drakbackup_.c:1989
+#: ../../standalone/drakbackup_.c:2063
#, fuzzy
msgid "Please check if you want to erase your tape before the backup."
msgstr "Kies die pakkette wat u wil installeer"
-#: ../../standalone/drakbackup_.c:1995
+#: ../../standalone/drakbackup_.c:2069
#, fuzzy
msgid "Please check if you want to eject your tape after the backup."
msgstr "Kies die pakkette wat u wil installeer"
-#: ../../standalone/drakbackup_.c:2001 ../../standalone/drakbackup_.c:2074
-#: ../../standalone/drakbackup_.c:3025
+#: ../../standalone/drakbackup_.c:2075 ../../standalone/drakbackup_.c:2149
+#: ../../standalone/drakbackup_.c:3116
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
msgstr ""
#
-#: ../../standalone/drakbackup_.c:2066
+#: ../../standalone/drakbackup_.c:2140
#, fuzzy
msgid "Please enter the directory to save to:"
msgstr "Toets asb. die muis"
-#: ../../standalone/drakbackup_.c:2080 ../../standalone/drakbackup_.c:3031
+#: ../../standalone/drakbackup_.c:2155 ../../standalone/drakbackup_.c:3122
#, fuzzy
msgid "Use quota for backup files."
msgstr "Korrupte rugsteunlêer"
-#: ../../standalone/drakbackup_.c:2146
+#: ../../standalone/drakbackup_.c:2221
#, fuzzy
msgid "Network"
msgstr "Netwerkkoppelvlak"
-#: ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:2226
msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2156
+#: ../../standalone/drakbackup_.c:2231
msgid "HardDrive / NFS"
msgstr ""
-#: ../../standalone/drakbackup_.c:2161
+#: ../../standalone/drakbackup_.c:2236
#, fuzzy
msgid "Tape"
msgstr "Tipe"
-#: ../../standalone/drakbackup_.c:2175 ../../standalone/drakbackup_.c:2179
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2250 ../../standalone/drakbackup_.c:2254
+#: ../../standalone/drakbackup_.c:2258
msgid "hourly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2176 ../../standalone/drakbackup_.c:2180
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2251 ../../standalone/drakbackup_.c:2255
+#: ../../standalone/drakbackup_.c:2258
msgid "daily"
msgstr ""
-#: ../../standalone/drakbackup_.c:2177 ../../standalone/drakbackup_.c:2181
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2252 ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2258
msgid "weekly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2178 ../../standalone/drakbackup_.c:2182
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2253 ../../standalone/drakbackup_.c:2257
+#: ../../standalone/drakbackup_.c:2258
msgid "monthly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2196
+#: ../../standalone/drakbackup_.c:2271
#, fuzzy
msgid "Use daemon"
msgstr "Gebruikerskode"
-#: ../../standalone/drakbackup_.c:2201
+#: ../../standalone/drakbackup_.c:2276
#, fuzzy
msgid ""
"Please choose the time \n"
"interval between each backup"
msgstr "Kies die pakkette wat u wil installeer"
-#: ../../standalone/drakbackup_.c:2207
+#: ../../standalone/drakbackup_.c:2282
#, fuzzy
msgid ""
"Please choose the\n"
"media for backup."
msgstr "Kies asb. 'n taal om te gebruik."
-#: ../../standalone/drakbackup_.c:2214
+#: ../../standalone/drakbackup_.c:2289
msgid ""
"Please be sure that the cron daemon is included in your services. \n"
"\n"
"Note that currently all 'net' medias also use the hard drive."
msgstr ""
-#: ../../standalone/drakbackup_.c:2251
-msgid "Send mail report after each backup to :"
+#: ../../standalone/drakbackup_.c:2326
+msgid "Send mail report after each backup to:"
msgstr ""
-#: ../../standalone/drakbackup_.c:2257
+#: ../../standalone/drakbackup_.c:2332
msgid "Delete Hard Drive tar files after backup to other media."
msgstr ""
-#: ../../standalone/drakbackup_.c:2296
+#: ../../standalone/drakbackup_.c:2371
#, fuzzy
msgid "What"
msgstr "Wag"
#
-#: ../../standalone/drakbackup_.c:2301
+#: ../../standalone/drakbackup_.c:2376
#, fuzzy
msgid "Where"
msgstr "Wiel"
#
-#: ../../standalone/drakbackup_.c:2306
+#: ../../standalone/drakbackup_.c:2381
#, fuzzy
msgid "When"
msgstr "Wiel"
-#: ../../standalone/drakbackup_.c:2311
+#: ../../standalone/drakbackup_.c:2386
#, fuzzy
msgid "More Options"
msgstr "Module opsies:"
-#: ../../standalone/drakbackup_.c:2330 ../../standalone/drakbackup_.c:3873
+#: ../../standalone/drakbackup_.c:2405 ../../standalone/drakbackup_.c:4530
#, fuzzy
msgid "Drakbackup Configuration"
msgstr "Netwerkkonfigurasie"
-#: ../../standalone/drakbackup_.c:2348
+#: ../../standalone/drakbackup_.c:2423
#, fuzzy
msgid "Please choose where you want to backup"
msgstr "Kies die pakkette wat u wil installeer"
-#: ../../standalone/drakbackup_.c:2350
+#: ../../standalone/drakbackup_.c:2425
msgid "on Hard Drive"
msgstr ""
-#: ../../standalone/drakbackup_.c:2360
+#: ../../standalone/drakbackup_.c:2435
msgid "across Network"
msgstr ""
-#: ../../standalone/drakbackup_.c:2370
+#: ../../standalone/drakbackup_.c:2445
msgid "on CDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2378
+#: ../../standalone/drakbackup_.c:2453
msgid "on Tape Device"
msgstr ""
-#: ../../standalone/drakbackup_.c:2421
+#: ../../standalone/drakbackup_.c:2496
#, fuzzy
msgid "Please choose what you want to backup"
msgstr "Kies die pakkette wat u wil installeer"
-#: ../../standalone/drakbackup_.c:2422
+#: ../../standalone/drakbackup_.c:2497
#, fuzzy
msgid "Backup system"
msgstr "Stel lêerstelsels op"
-#: ../../standalone/drakbackup_.c:2423
+#: ../../standalone/drakbackup_.c:2498
msgid "Backup Users"
msgstr ""
-#: ../../standalone/drakbackup_.c:2426
+#: ../../standalone/drakbackup_.c:2501
msgid "Select user manually"
msgstr ""
-#: ../../standalone/drakbackup_.c:2508
+#: ../../standalone/drakbackup_.c:2584
msgid ""
"\n"
"Backup Sources: \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2509
+#: ../../standalone/drakbackup_.c:2585
msgid ""
"\n"
"- System Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2511
+#: ../../standalone/drakbackup_.c:2587
msgid ""
"\n"
"- User Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2513
+#: ../../standalone/drakbackup_.c:2589
msgid ""
"\n"
"- Other Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2515
+#: ../../standalone/drakbackup_.c:2591
#, c-format
msgid ""
"\n"
-"- Save on Hard drive on path : %s\n"
+"- Save on Hard drive on path: %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2518
+#: ../../standalone/drakbackup_.c:2594
msgid ""
"\n"
"- Delete hard drive tar files after backup.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2524
+#: ../../standalone/drakbackup_.c:2600
msgid ""
"\n"
"- Burn to CD"
msgstr ""
-#: ../../standalone/drakbackup_.c:2525
+#: ../../standalone/drakbackup_.c:2601
msgid "RW"
msgstr ""
-#: ../../standalone/drakbackup_.c:2526
+#: ../../standalone/drakbackup_.c:2602
#, fuzzy, c-format
-msgid " on device : %s"
+msgid " on device: %s"
msgstr "Muistoestel: %s\n"
-#: ../../standalone/drakbackup_.c:2527
+#: ../../standalone/drakbackup_.c:2603
msgid " (multi-session)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2528
+#: ../../standalone/drakbackup_.c:2604
#, c-format
msgid ""
"\n"
-"- Save to Tape on device : %s"
+"- Save to Tape on device: %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2529
+#: ../../standalone/drakbackup_.c:2605
#, c-format
msgid "\t\tErase=%s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2532
+#: ../../standalone/drakbackup_.c:2608
#, c-format
msgid ""
"\n"
-"- Save via %s on host : %s\n"
+"- Save via %s on host: %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2533
+#: ../../standalone/drakbackup_.c:2609
#, c-format
msgid ""
"\t\t user name: %s\n"
"\t\t on path: %s \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2534
+#: ../../standalone/drakbackup_.c:2610
#, fuzzy
msgid ""
"\n"
"- Options:\n"
msgstr "Opsies"
-#: ../../standalone/drakbackup_.c:2535
+#: ../../standalone/drakbackup_.c:2611
msgid "\tDo not include System Files\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2538
+#: ../../standalone/drakbackup_.c:2614
msgid "\tBackups use tar and bzip2\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2540
+#: ../../standalone/drakbackup_.c:2616
msgid "\tBackups use tar and gzip\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2543
+#: ../../standalone/drakbackup_.c:2619
#, c-format
msgid ""
"\n"
-"- Daemon (%s) include :\n"
+"- Daemon (%s) include:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2544
+#: ../../standalone/drakbackup_.c:2620
msgid "\t-Hard drive.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2545
+#: ../../standalone/drakbackup_.c:2621
msgid "\t-CDROM.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2546
+#: ../../standalone/drakbackup_.c:2622
msgid "\t-Tape \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2547
+#: ../../standalone/drakbackup_.c:2623
msgid "\t-Network by FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2548
+#: ../../standalone/drakbackup_.c:2624
msgid "\t-Network by SSH.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2549
+#: ../../standalone/drakbackup_.c:2625
msgid "\t-Network by rsync.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2550
+#: ../../standalone/drakbackup_.c:2626
msgid "\t-Network by webdav.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2552
+#: ../../standalone/drakbackup_.c:2628
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2558
+#: ../../standalone/drakbackup_.c:2634
msgid ""
"List of data to restore:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2725
+#: ../../standalone/drakbackup_.c:2801
msgid ""
"List of data corrupted:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2727
+#: ../../standalone/drakbackup_.c:2803
#, fuzzy
msgid "Please uncheck or remove it on next time."
msgstr "Op watter seriaalpoort is u modem gekoppel?"
-#: ../../standalone/drakbackup_.c:2737
+#: ../../standalone/drakbackup_.c:2813
msgid "Backup files are corrupted"
msgstr ""
-#: ../../standalone/drakbackup_.c:2758
+#: ../../standalone/drakbackup_.c:2834
msgid " All of your selected data have been "
msgstr ""
-#: ../../standalone/drakbackup_.c:2759
+#: ../../standalone/drakbackup_.c:2835
#, c-format
msgid " Successfuly Restored on %s "
msgstr ""
-#: ../../standalone/drakbackup_.c:2877
+#: ../../standalone/drakbackup_.c:2953
#, fuzzy
msgid " Restore Configuration "
msgstr "Netwerkkonfigurasie"
-#: ../../standalone/drakbackup_.c:2895
+#: ../../standalone/drakbackup_.c:2971
msgid "OK to restore the other files."
msgstr ""
-#: ../../standalone/drakbackup_.c:2912
+#: ../../standalone/drakbackup_.c:2988
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2975
+#: ../../standalone/drakbackup_.c:3066
#, fuzzy
msgid "Backup the system files before:"
msgstr "Korrupte rugsteunlêer"
-#: ../../standalone/drakbackup_.c:2977
+#: ../../standalone/drakbackup_.c:3068
#, fuzzy
msgid "please choose the date to restore"
msgstr "Wat is u muistoestel?"
-#: ../../standalone/drakbackup_.c:3014
+#: ../../standalone/drakbackup_.c:3105
#, fuzzy
msgid "Use Hard Disk to backup"
msgstr "Korrupte rugsteunlêer"
#
-#: ../../standalone/drakbackup_.c:3017
+#: ../../standalone/drakbackup_.c:3108
#, fuzzy
msgid "Please enter the directory to save:"
msgstr "Toets asb. die muis"
-#: ../../standalone/drakbackup_.c:3060
+#: ../../standalone/drakbackup_.c:3151
#, fuzzy
msgid "FTP Connection"
msgstr "LAN konneksie"
-#: ../../standalone/drakbackup_.c:3067
+#: ../../standalone/drakbackup_.c:3158
#, fuzzy
msgid "Secure Connection"
msgstr "Kies drukkerkonneksie"
-#: ../../standalone/drakbackup_.c:3093
+#: ../../standalone/drakbackup_.c:3184
#, fuzzy
msgid "Restore from Hard Disk."
msgstr "Herstel vanaf floppie"
-#: ../../standalone/drakbackup_.c:3095
+#: ../../standalone/drakbackup_.c:3186
msgid "Please enter the directory where backups are stored"
msgstr ""
-#: ../../standalone/drakbackup_.c:3157
+#: ../../standalone/drakbackup_.c:3254
#, fuzzy
msgid "Select another media to restore from"
msgstr "Wat is u muistoestel?"
-#: ../../standalone/drakbackup_.c:3159
+#: ../../standalone/drakbackup_.c:3256
#, fuzzy
msgid "Other Media"
msgstr "Ander"
-#: ../../standalone/drakbackup_.c:3164
+#: ../../standalone/drakbackup_.c:3261
#, fuzzy
msgid "Restore system"
msgstr "Installeer stelsel"
-#: ../../standalone/drakbackup_.c:3165
+#: ../../standalone/drakbackup_.c:3262
#, fuzzy
msgid "Restore Users"
msgstr "Herstel vanaf lêer"
-#: ../../standalone/drakbackup_.c:3166
+#: ../../standalone/drakbackup_.c:3263
#, fuzzy
msgid "Restore Other"
msgstr "Herstel vanaf lêer"
-#: ../../standalone/drakbackup_.c:3168
+#: ../../standalone/drakbackup_.c:3265
#, fuzzy
msgid "select path to restore (instead of /)"
msgstr "Wat is u muistoestel?"
-#: ../../standalone/drakbackup_.c:3172
+#: ../../standalone/drakbackup_.c:3269
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:3174
+#: ../../standalone/drakbackup_.c:3271
msgid "Remove user directories before restore."
msgstr ""
-#: ../../standalone/drakbackup_.c:3232
+#: ../../standalone/drakbackup_.c:3384
+msgid ""
+"Restore Selected\n"
+"Catalog Entry"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3394
+#, fuzzy
+msgid ""
+"Restore Selected\n"
+"Files"
+msgstr "Verwyder tou"
+
+#: ../../standalone/drakbackup_.c:3411
+#, fuzzy
+msgid ""
+"Change\n"
+"Restore Path"
+msgstr "Herstel vanaf lêer"
+
+#: ../../standalone/drakbackup_.c:3477
+#, c-format
+msgid "Backup files not found at %s."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3490
+#, c-format
+msgid ""
+"Insert the CD with volume label %s\n"
+" in the CD drive under mount point /mnt/cdrom"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3490
+#, fuzzy
+msgid "Restore From CD"
+msgstr "Herstel vanaf floppie"
+
+#: ../../standalone/drakbackup_.c:3492
+#, c-format
+msgid "Not the correct CD label. Disk is labelled %s."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3502
+#, c-format
+msgid ""
+"Insert the tape with volume label %s\n"
+" in the tape drive device %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3502
+#, fuzzy
+msgid "Restore From Tape"
+msgstr "Reddingspartisietabel"
+
+#: ../../standalone/drakbackup_.c:3504
+#, c-format
+msgid "Not the correct tape label. Tape is labelled %s."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3524
+#, fuzzy
+msgid "Restore Via Network"
+msgstr "Herstel vanaf lêer"
+
+#: ../../standalone/drakbackup_.c:3524
+#, c-format
+msgid "Restore Via Network Protocol: %s"
+msgstr ""
+
+#
+#: ../../standalone/drakbackup_.c:3525
+#, fuzzy
+msgid "Host Name"
+msgstr "Rekenaarnaam"
+
+#: ../../standalone/drakbackup_.c:3526
+msgid "Host Path or Module"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3533
+#, fuzzy
+msgid "Password required"
+msgstr "Wagwoord"
+
+#: ../../standalone/drakbackup_.c:3539
+#, fuzzy
+msgid "Username required"
+msgstr "Gebruikerskode"
+
+#: ../../standalone/drakbackup_.c:3542
+#, fuzzy
+msgid "Hostname required"
+msgstr "Bedienernaam:"
+
+#: ../../standalone/drakbackup_.c:3547
+msgid "Path or Module required"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3560
+msgid "Files Restored..."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3563
+#, fuzzy
+msgid "Restore Failed..."
+msgstr "Herstel vanaf lêer"
+
+#: ../../standalone/drakbackup_.c:3801
msgid "Restore all backups"
msgstr ""
#
-#: ../../standalone/drakbackup_.c:3241
+#: ../../standalone/drakbackup_.c:3810
#, fuzzy
msgid "Custom Restore"
msgstr "Aangepaste"
-#: ../../standalone/drakbackup_.c:3287 ../../standalone/drakbackup_.c:3320
-#: ../../standalone/drakbackup_.c:3346 ../../standalone/drakbackup_.c:3373
-#: ../../standalone/drakbackup_.c:3400 ../../standalone/drakbackup_.c:3460
-#: ../../standalone/drakbackup_.c:3487 ../../standalone/drakbackup_.c:3513
+#: ../../standalone/drakbackup_.c:3856
+msgid "CD in place - continue."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3862
+msgid "Browse to new restore repository."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3865
+#, fuzzy
+msgid "Restore From Catalog"
+msgstr "Reddingspartisietabel"
+
+#: ../../standalone/drakbackup_.c:3893
+#, fuzzy
+msgid "Restore Progress"
+msgstr "Herstel vanaf lêer"
+
+#: ../../standalone/drakbackup_.c:3935 ../../standalone/drakbackup_.c:3968
+#: ../../standalone/drakbackup_.c:3994 ../../standalone/drakbackup_.c:4021
+#: ../../standalone/drakbackup_.c:4048 ../../standalone/drakbackup_.c:4108
+#: ../../standalone/drakbackup_.c:4135 ../../standalone/drakbackup_.c:4165
+#: ../../standalone/drakbackup_.c:4191
#, fuzzy
msgid "Previous"
msgstr "<- Vorige"
-#: ../../standalone/drakbackup_.c:3291 ../../standalone/drakbackup_.c:3377
+#: ../../standalone/drakbackup_.c:3939 ../../standalone/drakbackup_.c:4025
#: ../../standalone/logdrake_.c:223
#, fuzzy
msgid "Save"
msgstr "Toestand"
-#: ../../standalone/drakbackup_.c:3350
+#: ../../standalone/drakbackup_.c:3998
#, fuzzy
msgid "Build Backup"
msgstr "Korrupte rugsteunlêer"
-#: ../../standalone/drakbackup_.c:3404 ../../standalone/drakbackup_.c:3974
+#: ../../standalone/drakbackup_.c:4052 ../../standalone/drakbackup_.c:4632
#, fuzzy
msgid "Restore"
msgstr "Herstel vanaf lêer"
-#: ../../standalone/drakbackup_.c:3553
-msgid ""
-"Please Build backup before to restore it...\n"
-" or verify that your path to save is correct."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3574
+#: ../../standalone/drakbackup_.c:4231
msgid ""
-"Error during sendmail\n"
-" your report mail was not sent\n"
+"Error during sendmail.\n"
+" Your report mail was not sent.\n"
" Please configure sendmail"
msgstr ""
#
-#: ../../standalone/drakbackup_.c:3598
+#: ../../standalone/drakbackup_.c:4255
#, fuzzy
msgid ""
"The following packages need to be installed:\n"
" @list_of_rpm_to_install"
msgstr "Die volgende pakkette gaan installeer word"
-#: ../../standalone/drakbackup_.c:3621
+#: ../../standalone/drakbackup_.c:4278
msgid ""
"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
-#: ../../standalone/drakbackup_.c:3644
+#: ../../standalone/drakbackup_.c:4301
#, fuzzy
msgid "Please select data to restore..."
msgstr "Kies asb. 'n taal om te gebruik."
-#: ../../standalone/drakbackup_.c:3665
+#: ../../standalone/drakbackup_.c:4322
#, fuzzy
msgid "Please select media for backup..."
msgstr "Kies asb. 'n taal om te gebruik."
-#: ../../standalone/drakbackup_.c:3687
+#: ../../standalone/drakbackup_.c:4344
#, fuzzy
msgid "Please select data to backup..."
msgstr "Kies asb. 'n taal om te gebruik."
-#: ../../standalone/drakbackup_.c:3709
+#: ../../standalone/drakbackup_.c:4366
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
msgstr ""
-#: ../../standalone/drakbackup_.c:3730
+#: ../../standalone/drakbackup_.c:4387
msgid "Under Devel ... please wait."
msgstr ""
-#: ../../standalone/drakbackup_.c:3811
+#: ../../standalone/drakbackup_.c:4468
#, fuzzy
msgid "Backup system files"
msgstr "Korrupte rugsteunlêer"
-#: ../../standalone/drakbackup_.c:3813
+#: ../../standalone/drakbackup_.c:4470
#, fuzzy
msgid "Backup user files"
msgstr "Korrupte rugsteunlêer"
-#: ../../standalone/drakbackup_.c:3815
+#: ../../standalone/drakbackup_.c:4472
#, fuzzy
msgid "Backup other files"
msgstr "Korrupte rugsteunlêer"
-#: ../../standalone/drakbackup_.c:3817 ../../standalone/drakbackup_.c:3850
+#: ../../standalone/drakbackup_.c:4474 ../../standalone/drakbackup_.c:4507
msgid "Total Progress"
msgstr ""
-#: ../../standalone/drakbackup_.c:3841
+#: ../../standalone/drakbackup_.c:4498
msgid "files sending by FTP"
msgstr ""
-#: ../../standalone/drakbackup_.c:3845
+#: ../../standalone/drakbackup_.c:4502
#, fuzzy
msgid "Sending files..."
msgstr "Stoor in lêer"
-#: ../../standalone/drakbackup_.c:3931
+#: ../../standalone/drakbackup_.c:4588
#, fuzzy
msgid "Backup Now from configuration file"
msgstr "Netwerkkonfigurasie"
-#: ../../standalone/drakbackup_.c:3936
+#: ../../standalone/drakbackup_.c:4593
#, fuzzy
msgid "View Backup Configuration."
msgstr "Netwerkkonfigurasie"
-#: ../../standalone/drakbackup_.c:3956
+#: ../../standalone/drakbackup_.c:4614
#, fuzzy
msgid "Wizard Configuration"
msgstr "Konfigurasie"
-#: ../../standalone/drakbackup_.c:3961
+#: ../../standalone/drakbackup_.c:4619
#, fuzzy
msgid "Advanced Configuration"
msgstr "Sluit konfigurasie af"
-#: ../../standalone/drakbackup_.c:3966
+#: ../../standalone/drakbackup_.c:4624
#, fuzzy
msgid "Backup Now"
msgstr "Stel lêerstelsels op"
-#: ../../standalone/drakbackup_.c:3996
+#: ../../standalone/drakbackup_.c:4658
msgid "Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:4045
+#: ../../standalone/drakbackup_.c:4707
msgid ""
"options description:\n"
"\n"
@@ -9991,7 +10522,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4075
+#: ../../standalone/drakbackup_.c:4737
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -10000,7 +10531,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4083
+#: ../../standalone/drakbackup_.c:4745
msgid ""
"options description:\n"
"\n"
@@ -10041,45 +10572,45 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4122
+#: ../../standalone/drakbackup_.c:4784
msgid ""
"restore description:\n"
" \n"
-"Only the most recent date will be used ,because with incremental \n"
-"backups it is necesarry to restore one by one each older backups.\n"
+"Only the most recent date will be used, because with incremental \n"
+"backups it is necessary to restore one by one each older backup.\n"
"\n"
-"So if you don't like to restore a user please unselect all his\n"
-"check box.\n"
+"So if you don't want to restore a user please unselect all their\n"
+"check boxes.\n"
"\n"
-"Otherwise, you are able to select only one of this\n"
+"Otherwise, you are able to select only one of these.\n"
"\n"
" - Incremental Backups:\n"
"\n"
"\tThe incremental backup is the most powerful \n"
-"\toption to use backup, this option allow you \n"
-"\tto backup all your data the first time, and \n"
-"\tonly the changed after.\n"
-"\tSo you will be able during the restore\n"
+"\toption to use. This option allows you to \n"
+"\tbackup all of your data the first time, and \n"
+"\tonly the changed data after.\n"
+"\tSo you will be able, during the restore\n"
"\tstep, to restore your data from a specified\n"
"\tdate.\n"
-"\tIf you have not selected this options all\n"
+"\tIf you have not selected this option all\n"
"\told backups are deleted before each backup. \n"
"\n"
"\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4148 ../../standalone/drakbackup_.c:4225
+#: ../../standalone/drakbackup_.c:4810 ../../standalone/drakbackup_.c:4887
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
-#: ../../standalone/drakbackup_.c:4150 ../../standalone/drakbackup_.c:4227
+#: ../../standalone/drakbackup_.c:4812 ../../standalone/drakbackup_.c:4889
msgid ""
" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
-#: ../../standalone/drakbackup_.c:4152 ../../standalone/drakbackup_.c:4229
+#: ../../standalone/drakbackup_.c:4814 ../../standalone/drakbackup_.c:4891
msgid ""
" This program is free software; you can redistribute it and/or modify\n"
" it under the terms of the GNU General Public License as published by\n"
@@ -10096,7 +10627,7 @@ msgid ""
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
msgstr ""
-#: ../../standalone/drakbackup_.c:4166
+#: ../../standalone/drakbackup_.c:4828
msgid ""
"Description:\n"
"\n"
@@ -10136,7 +10667,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4204
+#: ../../standalone/drakbackup_.c:4866
msgid ""
"options description:\n"
"\n"
@@ -10147,7 +10678,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4213
+#: ../../standalone/drakbackup_.c:4875
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -10160,7 +10691,7 @@ msgid ""
"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4243
+#: ../../standalone/drakbackup_.c:4905
msgid ""
"Description:\n"
"\n"
@@ -10241,9 +10772,9 @@ msgstr ""
msgid "Synchronization tool"
msgstr ""
-#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:85
-#: ../../standalone/drakbug_.c:150 ../../standalone/drakbug_.c:152
-#: ../../standalone/drakbug_.c:156
+#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:86
+#: ../../standalone/drakbug_.c:151 ../../standalone/drakbug_.c:153
+#: ../../standalone/drakbug_.c:157
#, fuzzy
msgid "Standalone Tools"
msgstr "Konsole hulpprogramme"
@@ -10296,26 +10827,26 @@ msgstr "Drukker"
msgid "Configuration Wizards"
msgstr "Netwerkkonfigurasie-assistent"
-#: ../../standalone/drakbug_.c:96
+#: ../../standalone/drakbug_.c:97
#, fuzzy
msgid "Application:"
msgstr "Magtiging"
-#: ../../standalone/drakbug_.c:97
+#: ../../standalone/drakbug_.c:98
#, fuzzy
msgid "Package: "
msgstr "Pakketkeuse"
-#: ../../standalone/drakbug_.c:98
+#: ../../standalone/drakbug_.c:99
msgid "Kernel:"
msgstr ""
-#: ../../standalone/drakbug_.c:99
+#: ../../standalone/drakbug_.c:100
#, fuzzy
msgid "Release: "
msgstr "Wag asb."
-#: ../../standalone/drakbug_.c:114
+#: ../../standalone/drakbug_.c:115
msgid ""
"\n"
"\n"
@@ -10327,21 +10858,21 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbug_.c:135
+#: ../../standalone/drakbug_.c:136
#, fuzzy
msgid "Report"
msgstr "Poort"
-#: ../../standalone/drakbug_.c:165
+#: ../../standalone/drakbug_.c:166
#, fuzzy
msgid "Not installed"
msgstr "Verlaay installasie"
-#: ../../standalone/drakbug_.c:182
+#: ../../standalone/drakbug_.c:183
msgid "connecting to Bugzilla wizard ..."
msgstr ""
-#: ../../standalone/drakbug_.c:189
+#: ../../standalone/drakbug_.c:190
#, fuzzy
msgid "No browser available! Please install one"
msgstr "U kan ander tale selekteer wat na installasie beskikbaar sal wees."
@@ -10786,7 +11317,7 @@ msgstr "Hegpunt"
#: ../../standalone/drakfont_.c:909
#, fuzzy
-msgid "Choose the applications that will support the fonts :"
+msgid "Choose the applications that will support the fonts:"
msgstr "Kies die partisies om te formatteer"
#: ../../standalone/drakfont_.c:918
@@ -10869,19 +11400,19 @@ msgstr "Daar is geen netwerkkaart op hierdie rekenaar nie!"
msgid "Post Uninstall"
msgstr "Verlaay installasie"
-#: ../../standalone/drakgw_.c:42 ../../standalone/drakgw_.c:195
+#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:188
msgid "Internet Connection Sharing"
msgstr "Internetkonneksiedeling"
-#: ../../standalone/drakgw_.c:121
+#: ../../standalone/drakgw_.c:119
msgid "Sorry, we support only 2.4 kernels."
msgstr ""
-#: ../../standalone/drakgw_.c:133
+#: ../../standalone/drakgw_.c:130
msgid "Internet Connection Sharing currently enabled"
msgstr "Internetkonneksiedeling is ontsper"
-#: ../../standalone/drakgw_.c:134
+#: ../../standalone/drakgw_.c:131
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -10893,31 +11424,31 @@ msgstr ""
"\n"
"Wat wil u doen?"
-#: ../../standalone/drakgw_.c:138
+#: ../../standalone/drakgw_.c:135
msgid "disable"
msgstr "deaktiveer"
-#: ../../standalone/drakgw_.c:138 ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:135 ../../standalone/drakgw_.c:160
msgid "dismiss"
msgstr "ignoreer/sien oor"
-#: ../../standalone/drakgw_.c:138 ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:135 ../../standalone/drakgw_.c:160
msgid "reconfigure"
msgstr "herkonfigureer"
-#: ../../standalone/drakgw_.c:141
+#: ../../standalone/drakgw_.c:138
msgid "Disabling servers..."
msgstr "Bedieners word gedeaktiveer..."
-#: ../../standalone/drakgw_.c:149
+#: ../../standalone/drakgw_.c:146
msgid "Internet connection sharing is now disabled."
msgstr "Internetkonneksiedeling is gedeaktiveer"
-#: ../../standalone/drakgw_.c:158
+#: ../../standalone/drakgw_.c:155
msgid "Internet Connection Sharing currently disabled"
msgstr "Internetkonneksiedeling is gesper"
-#: ../../standalone/drakgw_.c:159
+#: ../../standalone/drakgw_.c:156
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
@@ -10929,19 +11460,19 @@ msgstr ""
"\n"
"Wat wil u doen?"
-#: ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:160
msgid "enable"
msgstr "Aktiveer"
-#: ../../standalone/drakgw_.c:170
+#: ../../standalone/drakgw_.c:167
msgid "Enabling servers..."
msgstr "Bedieneers word aktiveer..."
-#: ../../standalone/drakgw_.c:175
+#: ../../standalone/drakgw_.c:172
msgid "Internet connection sharing is now enabled."
msgstr "Internetkonneksiedeling is geaktiveer"
-#: ../../standalone/drakgw_.c:196
+#: ../../standalone/drakgw_.c:189
#, fuzzy
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
@@ -10958,21 +11489,21 @@ msgstr ""
"\n"
"Wil u internetdeling opstel?\n"
-#: ../../standalone/drakgw_.c:222
+#: ../../standalone/drakgw_.c:215
#, c-format
msgid "Interface %s (using module %s)"
msgstr "Koppelvlak %s (met module %s)"
-#: ../../standalone/drakgw_.c:223
+#: ../../standalone/drakgw_.c:216
#, c-format
msgid "Interface %s"
msgstr "Koppelvlak %s"
-#: ../../standalone/drakgw_.c:231
+#: ../../standalone/drakgw_.c:224
msgid "No network adapter on your system!"
msgstr "Daar is geen netwerkkaart op hierdie rekenaar nie!"
-#: ../../standalone/drakgw_.c:232
+#: ../../standalone/drakgw_.c:225
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
@@ -10980,12 +11511,12 @@ msgstr ""
"Geen ethernetkaart is op die stelsel gevind nie. Gebruik asb. die "
"hardewarekonfigurasieprogram."
-#: ../../standalone/drakgw_.c:238
+#: ../../standalone/drakgw_.c:231
msgid "Network interface"
msgstr "Netwerkkoppelvlak"
#
-#: ../../standalone/drakgw_.c:239
+#: ../../standalone/drakgw_.c:232
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -11000,19 +11531,19 @@ msgstr ""
"\n"
"Ek gaan nou u LAN met daardie kaart opstel."
-#: ../../standalone/drakgw_.c:248
+#: ../../standalone/drakgw_.c:241
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
msgstr ""
"Kies asb. die netwerkkaart wat aan die loakel area netwerk gekoppel is."
-#: ../../standalone/drakgw_.c:266
+#: ../../standalone/drakgw_.c:259
#, fuzzy
msgid "Network interface already configured"
msgstr "Monitor is nie opgestel nie"
-#: ../../standalone/drakgw_.c:267
+#: ../../standalone/drakgw_.c:260
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -11022,17 +11553,17 @@ msgid ""
"You can do it manually but you need to know what you're doing."
msgstr ""
-#: ../../standalone/drakgw_.c:272
+#: ../../standalone/drakgw_.c:265
#, fuzzy
msgid "Automatic reconfiguration"
msgstr "Outomatiese CUPS konfigurasie"
-#: ../../standalone/drakgw_.c:273
+#: ../../standalone/drakgw_.c:266
#, fuzzy
msgid "Show current interface configuration"
msgstr "Verander drukkerkonfigurasie"
-#: ../../standalone/drakgw_.c:275
+#: ../../standalone/drakgw_.c:268
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -11043,7 +11574,7 @@ msgid ""
"Driver: %s"
msgstr ""
-#: ../../standalone/drakgw_.c:287
+#: ../../standalone/drakgw_.c:280
msgid ""
"I can keep your current configuration and assume you already set up a DHCP "
"server; in that case please verify I correctly read the C-Class Network that "
@@ -11055,78 +11586,66 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakgw_.c:292
+#: ../../standalone/drakgw_.c:285
msgid "C-Class Local Network"
msgstr ""
-#: ../../standalone/drakgw_.c:293
+#: ../../standalone/drakgw_.c:286
#, fuzzy
msgid "(This) DHCP Server IP"
msgstr "CUPS-bediener IP:"
-#: ../../standalone/drakgw_.c:294
+#: ../../standalone/drakgw_.c:287
msgid "Re-configure interface and DHCP server"
msgstr ""
-#: ../../standalone/drakgw_.c:301
+#: ../../standalone/drakgw_.c:294
msgid "The Local Network did not finish with `.0', bailing out."
msgstr ""
-#: ../../standalone/drakgw_.c:312
+#: ../../standalone/drakgw_.c:305
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr "Moontlike LAN-adresbotsing gevind in konfigurasie %s!\n"
-#: ../../standalone/drakgw_.c:320
-msgid "Firewalling configuration detected!"
-msgstr "Vuurmuurkonfigurasie gevind!"
-
-#: ../../standalone/drakgw_.c:321
-msgid ""
-"Warning! An existing firewalling configuration has been detected. You may "
-"need some manual fix after installation."
-msgstr ""
-"Waarskuwing! 'n Bestaande vuurmuurkonfigurasie is bespeur. U sal dalk na "
-"dietyd self regstellings moet aanbring."
-
-#: ../../standalone/drakgw_.c:328
+#: ../../standalone/drakgw_.c:315
msgid "Configuring..."
msgstr "Konfigurasie in aabou..."
-#: ../../standalone/drakgw_.c:329
+#: ../../standalone/drakgw_.c:316
msgid "Configuring scripts, installing software, starting servers..."
msgstr ""
"Skrips word konfigureer, sagterware installeer en bedieners afgeskop..."
-#: ../../standalone/drakgw_.c:365
+#: ../../standalone/drakgw_.c:352
#, c-format
msgid "Problems installing package %s"
msgstr "Probleme met Installasue van pakket %s"
-#: ../../standalone/drakgw_.c:549
+#: ../../standalone/drakgw_.c:485
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
"Area Network, using automatic network configuration (DHCP)."
msgstr ""
-#: ../../standalone/drakgw_.c:566
+#: ../../standalone/drakgw_.c:504
msgid "The setup has already been done, but it's currently disabled."
msgstr "Die opstelling van is alreeds gedoen, maar is tans gedeaktiveer."
-#: ../../standalone/drakgw_.c:567
+#: ../../standalone/drakgw_.c:505
msgid "The setup has already been done, and it's currently enabled."
msgstr "Die opstelling is alreeds gedoen en is alreeds ook geaktiveer."
-#: ../../standalone/drakgw_.c:568
+#: ../../standalone/drakgw_.c:506
msgid "No Internet Connection Sharing has ever been configured."
msgstr "Geen internetkonneksiedeling is al gekonfigureer nie."
-#: ../../standalone/drakgw_.c:573
+#: ../../standalone/drakgw_.c:511
msgid "Internet connection sharing configuration"
msgstr "Internetkonneksiedelingkonfigurasie"
-#: ../../standalone/drakgw_.c:580
+#: ../../standalone/drakgw_.c:518
#, fuzzy, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -11136,6 +11655,158 @@ msgid ""
"Click on Configure to launch the setup wizard."
msgstr "Internetkonneksiedeling"
+#: ../../standalone/draksound_.c:46
+#, fuzzy
+msgid "No Sound Card detected!"
+msgstr "Nie gekonnekteer nieKabelkonneksie"
+
+#: ../../standalone/draksound_.c:47
+msgid ""
+"No Sound Card has been detected on your machine. Please verify that a Linux-"
+"supported Sound Card is correctly plugged in.\n"
+"\n"
+"\n"
+"You can visit our hardware database at:\n"
+"\n"
+"\n"
+"http://www.linux-mandrake.com/en/hardware.php3"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:32
+msgid "package ImageMagick is required for correct working"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:76
+#, fuzzy
+msgid "first step creation"
+msgstr "herlaaiskyfskepping"
+
+#: ../../standalone/draksplash_.c:77
+#, fuzzy
+msgid "final resolution"
+msgstr "Resolusie"
+
+#: ../../standalone/draksplash_.c:78 ../../standalone/draksplash_.c:170
+#, fuzzy
+msgid "choose image file"
+msgstr "Kies 'n lêer"
+
+#: ../../standalone/draksplash_.c:79
+#, fuzzy
+msgid "Theme name"
+msgstr "Drukkernaam:"
+
+#: ../../standalone/draksplash_.c:81
+msgid "make bootsplash step 2"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:82
+#, fuzzy
+msgid "go to lilosplash configuration"
+msgstr "Postinstallasiekonfigurasie"
+
+#: ../../standalone/draksplash_.c:83
+#, fuzzy
+msgid "quit"
+msgstr "Verlaat"
+
+#: ../../standalone/draksplash_.c:84
+#, fuzzy
+msgid "save theme"
+msgstr "Installeer stelsel"
+
+#: ../../standalone/draksplash_.c:85
+msgid "browse"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:98 ../../standalone/draksplash_.c:159
+#, fuzzy
+msgid "Configure bootsplash picture"
+msgstr "Konfigureer dienste"
+
+#: ../../standalone/draksplash_.c:99
+msgid "x coordinate of text box in number of character"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:100
+msgid "y coordinate of text box in number of character"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:101
+msgid "text width"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:102
+msgid "text box height"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:103
+msgid "the progress bar x coordinate of its upper left corner"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:104
+msgid "the progress bar y coordinate of its upper left corner"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:105
+msgid "the width of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:106
+msgid "the heigth of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:107
+msgid "the color of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:119
+#, fuzzy
+msgid "go back"
+msgstr "Teruglus"
+
+#: ../../standalone/draksplash_.c:120
+#, fuzzy
+msgid "preview"
+msgstr "toestel"
+
+#: ../../standalone/draksplash_.c:121
+#, fuzzy
+msgid "choose color"
+msgstr "Kies 'n monitor"
+
+#: ../../standalone/draksplash_.c:124
+msgid "Display logo on Console"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:125
+msgid "Make kernel message quiet by default"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:161 ../../standalone/draksplash_.c:330
+#, c-format
+msgid "This theme haven't yet any bootsplash in %s !"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:213
+msgid "saving Bootsplash theme..."
+msgstr ""
+
+#: ../../standalone/draksplash_.c:436
+#, fuzzy
+msgid "ProgressBar color selection"
+msgstr "Drukkermodelkeuse"
+
+#: ../../standalone/draksplash_.c:454
+#, fuzzy
+msgid "You must choose an image file first!"
+msgstr "Tik drukkertoestel URI in"
+
+#: ../../standalone/draksplash_.c:463
+#, fuzzy
+msgid "Generating preview ..."
+msgstr "Toestel word afgetas..."
+
#: ../../standalone/drakxtv_.c:49
msgid ""
"XawTV isn't installed!\n"
@@ -11228,11 +11899,11 @@ msgid ""
msgstr ""
#: ../../standalone/drakxtv_.c:109
-msgid "TV norm :"
+msgid "TV norm:"
msgstr ""
#: ../../standalone/drakxtv_.c:110
-msgid "Area :"
+msgid "Area:"
msgstr ""
#: ../../standalone/drakxtv_.c:114
@@ -11310,7 +11981,7 @@ msgstr "Kon nie die intydse opgradering begin nie !!!\n"
msgid "The change is done, but to be effective you must logout"
msgstr ""
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:517
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:515
msgid "logdrake"
msgstr ""
@@ -11492,7 +12163,7 @@ msgstr "interessant"
#: ../../standalone/logdrake_.c:431
msgid ""
-"You will receive an alert if one of the selected service is no more running"
+"You will receive an alert if one of the selected services is no more running"
msgstr ""
#: ../../standalone/logdrake_.c:443
@@ -11514,19 +12185,19 @@ msgstr "Kleurkonfigurasie"
msgid "Please enter your email address below "
msgstr "Probeer asb. weer"
-#: ../../standalone/logdrake_.c:499
+#: ../../standalone/logdrake_.c:497
msgid "Save as.."
msgstr ""
-#: ../../standalone/mousedrake_.c:43
+#: ../../standalone/mousedrake_.c:45
msgid "Please, choose the type of your mouse."
msgstr "Wat is u muistoestel?"
-#: ../../standalone/mousedrake_.c:57
+#: ../../standalone/mousedrake_.c:58
msgid "Emulate third button?"
msgstr "Emuleer derde knop?"
-#: ../../standalone/printerdrake_.c:48
+#: ../../standalone/printerdrake_.c:57
#, fuzzy
msgid "Reading printer data ..."
msgstr "Drukkerdata word gelees..."
@@ -11540,34 +12211,45 @@ msgstr "Toestel word afgetas..."
msgid "Test ports"
msgstr "Toets poorte"
-#: ../../standalone/scannerdrake_.c:52
+#: ../../standalone/scannerdrake_.c:53 ../../standalone/scannerdrake_.c:68
+#: ../../standalone/scannerdrake_.c:81
#, c-format
-msgid "%s found on %s, configure it ?"
+msgid "The %s is not supported by this version of Mandrake Linux."
msgstr ""
+#: ../../standalone/scannerdrake_.c:56
+#, fuzzy, c-format
+msgid "%s found on %s, configure it?"
+msgstr "Wil u 'n drukwerk nou konfigureer?"
+
#: ../../standalone/scannerdrake_.c:59
+#, c-format
+msgid "%s is not in the scanner database, configure it manually?"
+msgstr ""
+
+#: ../../standalone/scannerdrake_.c:65
#, fuzzy
msgid "Select a scanner"
msgstr "Selekteer 'n videokaart"
-#: ../../standalone/scannerdrake_.c:79
+#: ../../standalone/scannerdrake_.c:93
#, c-format
msgid "This %s scanner is unsupported"
msgstr ""
-#: ../../standalone/scannerdrake_.c:93
+#: ../../standalone/scannerdrake_.c:107
#, c-format
msgid ""
"Scannerdrake was not able to detect your %s scanner.\n"
"Please select the device where your scanner is plugged"
msgstr ""
-#: ../../standalone/scannerdrake_.c:95
+#: ../../standalone/scannerdrake_.c:109
#, fuzzy
msgid "choose device"
msgstr "Herlaaitoestel"
-#: ../../standalone/scannerdrake_.c:101
+#: ../../standalone/scannerdrake_.c:115
#, c-format
msgid ""
"This %s scanner must be configured by printerdrake.\n"
@@ -11575,7 +12257,7 @@ msgid ""
"section."
msgstr ""
-#: ../../standalone/scannerdrake_.c:106
+#: ../../standalone/scannerdrake_.c:120
#, c-format
msgid ""
"Your %s scanner has been configured.\n"
@@ -11583,44 +12265,18 @@ msgid ""
"applications menu."
msgstr ""
-#: ../../standalone/service_harddrake_.c:57
+#: ../../standalone/service_harddrake_.c:39
#, c-format
msgid "Some devices in the \"%s\" hardware class were removed:\n"
msgstr ""
-#: ../../standalone/service_harddrake_.c:61
+#: ../../standalone/service_harddrake_.c:43
#, c-format
msgid ""
"\n"
"Some devices in the %s class were added:\n"
msgstr ""
-#: ../../standalone/tinyfirewall_.c:30
-msgid "Firewalling Configuration"
-msgstr "Vuurmuurkonfigurasie"
-
-#: ../../standalone/tinyfirewall_.c:43
-msgid "Firewalling configuration"
-msgstr "Vuurmuurkonfigurasie"
-
-#: ../../standalone/tinyfirewall_.c:78
-msgid ""
-"Firewalling\n"
-"\n"
-"You already have set up a firewall.\n"
-"Click on Configure to change or remove the firewall"
-msgstr ""
-
-#: ../../standalone/tinyfirewall_.c:82
-msgid ""
-"Firewalling\n"
-"\n"
-"Click on Configure to set up a standard firewall"
-msgstr ""
-"Vuurmuur\n"
-"\n"
-"Kliek op Konfigureer om die standaard vuurmuur op te stel."
-
#: ../../steps.pm_.c:14
msgid "Choose your language"
msgstr "Kies u taal"
@@ -11694,173 +12350,7 @@ msgstr "Installeer stelsel"
msgid "Exit install"
msgstr "Verlaay installasie"
-#: ../../tinyfirewall.pm_.c:9
-msgid ""
-"tinyfirewall configurator\n"
-"\n"
-"This configures a personal firewall for this Mandrake Linux machine.\n"
-"For a powerful dedicated firewall solution, please look to the\n"
-"specialized MandrakeSecurity Firewall distribution."
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:14
-msgid ""
-"We'll now ask you questions about which services you'd like to allow\n"
-"the Internet to connect to. Please think carefully about these\n"
-"questions, as your computer's security is important.\n"
-"\n"
-"Please, if you're not currently using one of these services, firewall\n"
-"it off. You can change this configuration anytime you like by\n"
-"re-running this application!"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:21
-msgid ""
-"Are you running a web server on this machine that you need the whole\n"
-"Internet to see? If you are running a webserver that only needs to be\n"
-"accessed by this machine, you can safely answer NO here.\n"
-"\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:26
-msgid ""
-"Are you running a name server on this machine? If you didn't set one\n"
-"up to give away IP and zone information to the whole Internet, please\n"
-"answer no.\n"
-"\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:31
-msgid ""
-"Do you want to allow incoming Secure Shell (ssh) connections? This\n"
-"is a telnet-replacement that you might use to login. If you're using\n"
-"telnet now, you should definitely switch to ssh. telnet is not\n"
-"encrypted -- so some attackers can steal your password if you use\n"
-"it. ssh is encrypted and doesn't allow for this eavesdropping."
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:36
-msgid ""
-"Do you want to allow incoming telnet connections?\n"
-"This is horribly unsafe, as we explained in the previous screen. We\n"
-"strongly recommend answering No here and using ssh in place of\n"
-"telnet.\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:41
-msgid ""
-"Are you running an FTP server here that you need accessible to the\n"
-"Internet? If you are, we strongly recommend that you only use it for\n"
-"Anonymous transfers. Any passwords sent by FTP can be stolen by some\n"
-"attackers, since FTP also uses no encryption for transferring passwords.\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:46
-msgid ""
-"Are you running a mail server here? If you're sending you \n"
-"messages through pine, mutt or any other text-based mail client,\n"
-"you probably are. Otherwise, you should firewall this off.\n"
-"\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:51
-msgid ""
-"Are you running a POP or IMAP server here? This would\n"
-"be used to host non-web-based mail accounts for people via \n"
-"this machine.\n"
-"\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:56
-msgid ""
-"You appear to be running a 2.2 kernel. If your network IP\n"
-"is automatically set by a computer in your home or office \n"
-"(dynamically assigned), we need to allow for this. Is\n"
-"this the case?\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:61
-msgid ""
-"Is your computer getting time syncronized to another computer?\n"
-"Mostly, this is used by medium-large Unix/Linux organizations\n"
-"to synchronize time for logging and such. If you're not part\n"
-"of a larger office and haven't heard of this, you probably \n"
-"aren't."
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:66
-msgid ""
-"Configuration complete. May we write these changes to disk?\n"
-"\n"
-"\n"
-"\n"
-msgstr ""
-"Konfigurasie is voltooi. Moet ons hierdie veranderinge na skyf skryf?\n"
-"\n"
-"\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:82
-#, c-format
-msgid "Can't open %s: %s\n"
-msgstr "Kan nie %s oopmaak nie: %s\n"
-
-#: ../../tinyfirewall.pm_.c:84
-#, c-format
-msgid "Can't open %s for writing: %s\n"
-msgstr "Kon nie %s in skryfmode oopmaak nie: %s\n"
-
-#: ../../tinyfirewall.pm_.c:178
-msgid "No I don't need DHCP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:178
-msgid "Yes I need DHCP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:179
-msgid "No I don't need NTP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:179
-msgid "Yes I need NTP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:180 ../../tinyfirewall.pm_.c:184
-msgid "Don't Save"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:180 ../../tinyfirewall.pm_.c:184
-#: ../../tinyfirewall.pm_.c:204
-msgid "Save & Quit"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:195 ../../tinyfirewall.pm_.c:199
-#, fuzzy
-msgid "Firewall Configuration Wizard"
-msgstr "Vuurmuurkonfigurasie"
-
-#: ../../tinyfirewall.pm_.c:197
-msgid "No (firewall this off from the internet)"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:198
-msgid "Yes (allow this through the firewall)"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:230
-#, fuzzy
-msgid "Please Wait... Verifying installed packages"
-msgstr "Wag asb. installasie word voorberei"
-
-#: ../../tinyfirewall.pm_.c:236
-#, c-format
-msgid ""
-"Failure installing the needed packages : %s and Bastille.\n"
-" Try to install them manually."
-msgstr ""
-
-#: ../../ugtk.pm_.c:619
+#: ../../ugtk.pm_.c:594
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
@@ -11994,6 +12484,10 @@ msgid "Graphical Environment"
msgstr "Grafiese omgewing"
#: ../../share/compssUsers:999
+msgid "Development"
+msgstr "Ontwikkeling"
+
+#: ../../share/compssUsers:999
msgid "Apache, Pro-ftpd"
msgstr "Apache, Pro-ftpd"
@@ -12108,102 +12602,58 @@ msgstr "Multimedia - CD Sny"
msgid "Scientific Workstation"
msgstr "Wetenskaplike werkstasie"
-#~ msgid "$mode: $warning"
-#~ msgstr "$mode: $warning"
+#~ msgid "LBA (doesn't work on old BIOSes)"
+#~ msgstr "LBA (werk nie op 'n ou BIOS'e nie)"
+
+#~ msgid "You don't have any partitions!"
+#~ msgstr "U get geen partisies nie!"
-#, fuzzy
#~ msgid ""
-#~ "This level is to be used with care. It makes your system more easy to "
-#~ "use,\n"
-#~ " but very sensitive: it must not be used for a machine "
-#~ "connected to others\n"
-#~ " or to the Internet. There is no password access."
+#~ "DiskDrake failed to read correctly the partition table.\n"
+#~ "Continue at your own risk!"
#~ msgstr ""
-#~ "Hierdie vlak moet met sorg gebruik word. Dit maak 'n stelsel baie maklik\n"
-#~ "om te gebruik, maar is baie sensitief. Dit moet nie gebruik vir 'n "
-#~ "rekenaar\n"
-#~ "wat aan ander rekenaars of die internet gekoppel is nie. Daar is geen "
-#~ "wagwoord\n"
-#~ "toegang nie."
+#~ "DrakX kon nie die partisietabel korrek interpreteer nie.\n"
+#~ "Gaan aan op u eie risiko!"
-#, fuzzy
#~ msgid ""
-#~ "With this security level, the use of this system as a server becomes "
-#~ "possible.\n"
-#~ " The security is now high enough to use the system as a "
-#~ "server which can accept\n"
-#~ " connections from many clients. Note: if your machine is "
-#~ "only a client on the Internet, you should choose a lower level."
+#~ "I can't read your partition table, it's too corrupted for me :(\n"
+#~ "I'll try to go on blanking bad partitions"
#~ msgstr ""
-#~ "Met hierdie sekuriteitsvlak, kan die stelsel as 'n bediener gebruik "
-#~ "word.\n"
-#~ "Die sekuriteit is goed genoeg sodat 'n stelsel konneksies wat baie "
-#~ "kliënte\n"
-#~ "af kan aanvaar."
+#~ "Ek kan nie u partisietabel lees nie, dit is te korrup.\n"
+#~ "Ek sal die nodige partisies skoonmak."
-#, fuzzy
-#~ msgid "Basic Options"
-#~ msgstr "Opsies"
+#~ msgid "Firewalling Configuration"
+#~ msgstr "Vuurmuurkonfigurasie"
-#, fuzzy
-#~ msgid "Security Checks"
-#~ msgstr "Sekuriteit"
+#~ msgid "Firewalling configuration"
+#~ msgstr "Vuurmuurkonfigurasie"
-#, fuzzy
-#~ msgid "Please choose your CD space"
-#~ msgstr "Wat is u sleutelborduitleg?"
+#~ msgid ""
+#~ "Firewalling\n"
+#~ "\n"
+#~ "Click on Configure to set up a standard firewall"
+#~ msgstr ""
+#~ "Vuurmuur\n"
+#~ "\n"
+#~ "Kliek op Konfigureer om die standaard vuurmuur op te stel."
-#
-#, fuzzy
-#~ msgid "Please enter the cd writer speed"
-#~ msgstr "Toets asb. die muis"
+#~ msgid ""
+#~ "Configuration complete. May we write these changes to disk?\n"
+#~ "\n"
+#~ "\n"
+#~ "\n"
+#~ msgstr ""
+#~ "Konfigurasie is voltooi. Moet ons hierdie veranderinge na skyf skryf?\n"
+#~ "\n"
+#~ "\n"
+#~ "\n"
-#, fuzzy
-#~ msgid "Please check if you want to include install boot on your CD."
-#~ msgstr "Kies die pakkette wat u wil installeer"
+#~ msgid "Can't open %s for writing: %s\n"
+#~ msgstr "Kon nie %s in skryfmode oopmaak nie: %s\n"
#~ msgid "Url should begin with 'ftp:'"
#~ msgstr "Instaanbediener moet begin met ftp://"
-#, fuzzy
-#~ msgid ""
-#~ "Please check if you want to include\n"
-#~ " install boot on your CD."
-#~ msgstr "Kies die pakkette wat u wil installeer"
-
-#, fuzzy
-#~ msgid "Windows PDC"
-#~ msgstr "Verwyder Windows(TM)"
-
-#, fuzzy
-#~ msgid "Tamil"
-#~ msgstr "Tabel"
-
-#, fuzzy
-#~ msgid "PDC Server Name"
-#~ msgstr "NTP-bediener"
-
-#
-#, fuzzy
-#~ msgid "Set up printer manually"
-#~ msgstr "Eksterne drukkernaam"
-
-#, fuzzy
-#~ msgid "Installing HPOJ package..."
-#~ msgstr "Installeer pakket %s"
-
-#, fuzzy
-#~ msgid "Installing SANE packages..."
-#~ msgstr "Installeer pakket %s"
-
-#, fuzzy
-#~ msgid "Installing mtools packages..."
-#~ msgstr "Installeer pakket %s"
-
-#, fuzzy
-#~ msgid "Making printer port available for CUPS..."
-#~ msgstr "Drukkerdata word gelees..."
-
#~ msgid "Control Center"
#~ msgstr "Beheersentrum"
@@ -12283,9 +12733,6 @@ msgstr "Wetenskaplike werkstasie"
#~ msgid "Select a graphics card"
#~ msgstr "Selekteer 'n videokaart"
-#~ msgid "Warning: testing this graphics card may freeze your computer"
-#~ msgstr "Waarskuwing: Toetsing is gevaarlik met hierdie videokaart"
-
#~ msgid "Standard VGA, 640x480 at 60 Hz"
#~ msgstr "Standaard VGA, 640x480 teen 60 Hz"
diff --git a/perl-install/share/po/ar.po b/perl-install/share/po/ar.po
index b6e81d45d..1e418a75b 100644
--- a/perl-install/share/po/ar.po
+++ b/perl-install/share/po/ar.po
@@ -5,8 +5,8 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: drakfloppy 0.43\n"
-"POT-Creation-Date: 2002-08-21 15:44+0200\n"
+"Project-Id-Version: DrakX\n"
+"POT-Creation-Date: 2002-09-02 20:14+0200\n"
"PO-Revision-Date: 2001-5-12 HO:MI+ZONE\n"
"Last-Translator: Mohammed Gamal <f2c2001@yahoo.com>\n"
"Language-Team: Arabic \n"
@@ -50,19 +50,19 @@ msgstr "32 ميŰșŰ§ŰšŰ§ÙŠŰȘ"
msgid "64 MB or more"
msgstr "64 ميŰșŰ§ŰšŰ§ÙŠŰȘ ŰŁÙˆ ŰŁÙƒŰ«Ű±"
-#: ../../Xconfig/card.pm_.c:201
+#: ../../Xconfig/card.pm_.c:203
msgid "Choose a X server"
msgstr "Ű„ŰźŰȘ۱ ŰźŰ§ŰŻÙ… X"
-#: ../../Xconfig/card.pm_.c:201
+#: ../../Xconfig/card.pm_.c:203
msgid "X server"
msgstr "ŰźŰ§ŰŻÙ… X"
-#: ../../Xconfig/card.pm_.c:228
+#: ../../Xconfig/card.pm_.c:230
msgid "Multi-head configuration"
msgstr "Ű„Űčۯۧۯ مŰȘŰčŰŻŰŻ Ű§Ù„Ű±Ű€ÙˆŰł"
-#: ../../Xconfig/card.pm_.c:229
+#: ../../Xconfig/card.pm_.c:231
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
@@ -70,27 +70,27 @@ msgstr ""
"Ù†ŰžŰ§Ù…Ùƒ ÙŠŰŻŰčم Ű§Ù„Ű„Űčۯۧۯ مŰȘŰčŰŻŰŻ Ű§Ù„Ű±Ű€ÙˆŰł.\n"
"Ù…Ű§Ű°Ű§ ŰȘŰ±ÙŠŰŻ ŰŁÙ† ŰȘفŰčÙ„ŰŸ"
-#: ../../Xconfig/card.pm_.c:284
+#: ../../Xconfig/card.pm_.c:286
msgid "Select the memory size of your graphics card"
msgstr "Ű„ŰźŰȘ۱ Ű­ŰŹÙ… Ű°Ű§ÙƒŰ±Ű© ŰšŰ·Ű§Ù‚Ű© Ű§Ù„ŰŽŰ§ŰŽŰ©"
-#: ../../Xconfig/card.pm_.c:345
+#: ../../Xconfig/card.pm_.c:347
msgid "XFree configuration"
msgstr "Ű„Űčۯۧۯ XFree"
-#: ../../Xconfig/card.pm_.c:347
+#: ../../Xconfig/card.pm_.c:349
msgid "Which configuration of XFree do you want to have?"
msgstr "ŰŁÙŠ ۧŰčۯۧۯ لـXFree ŰȘŰ±ÙŠŰŻŰŸ"
-#: ../../Xconfig/card.pm_.c:379
+#: ../../Xconfig/card.pm_.c:381
msgid "Configure all heads independently"
msgstr "ۧŰčۯۧۯ كل Ű§Ù„Ű±Ű€ÙˆŰł ŰšŰŽÙƒÙ„ Ù…ŰłŰȘقل"
-#: ../../Xconfig/card.pm_.c:380
+#: ../../Xconfig/card.pm_.c:382
msgid "Use Xinerama extension"
msgstr "ۧ۳ŰȘŰźŰŻŰ§Ù… Ű§Ù…ŰȘۯۧۯ Xinerama"
-#: ../../Xconfig/card.pm_.c:384
+#: ../../Xconfig/card.pm_.c:386
#, fuzzy, c-format
msgid "Configure only card \"%s\"%s"
msgstr "قم ۚۄŰčۯۧۯ Ű§Ù„ŰšŰ·Ű§Ù‚Ű© \"%s\" ÙÙ‚Ű· (%s)"
@@ -101,13 +101,13 @@ msgstr "قم ۚۄŰčۯۧۯ Ű§Ù„ŰšŰ·Ű§Ù‚Ű© \"%s\" ÙÙ‚Ű· (%s)"
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:435
+#: ../../Xconfig/card.pm_.c:410 ../../Xconfig/card.pm_.c:436
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s with 3D hardware acceleration"
msgstr "XFree %s مŰč ŰȘŰłŰ±ÙŠŰč Ű«Ù„Ű§Ű«ÙŠ Ű§Ù„ŰŁŰšŰčۧۯ"
-#: ../../Xconfig/card.pm_.c:412
+#: ../../Xconfig/card.pm_.c:413
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -117,17 +117,17 @@ msgstr ""
"ŰšŰ·Ű§Ù‚ŰȘك Ù…ŰŻŰčÙˆÙ…Ű© Űčن Ű·Ű±ÙŠÙ‚ XFree %s Ű§Ù„ŰȘي يمكن ŰŁÙ† ŰȘكون Ù…ŰŻŰčÙˆÙ…Ű© ŰšŰŽÙ„ ŰŁÙŰ¶Ù„ في Ű§Ù„ÙˆŰ¶Űč "
"Ű«Ù†Ű§ŰŠÙŠ Ű§Ù„ŰŁŰšŰčۧۯ."
-#: ../../Xconfig/card.pm_.c:414 ../../Xconfig/card.pm_.c:437
+#: ../../Xconfig/card.pm_.c:415 ../../Xconfig/card.pm_.c:438
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr "يمكن Ù„ŰšŰ·Ű§Ù‚ŰȘك Ű§Ù„Ű­Ű”ÙˆÙ„ Űčلى ŰŻŰčم للŰȘŰłŰ±ÙŠŰč Ű«Ù„Ű§Ű«ÙŠ Ű§Ù„ŰŁŰšŰčۧۯ مŰč XFree %s"
-#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:443
+#: ../../Xconfig/card.pm_.c:423 ../../Xconfig/card.pm_.c:444
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s مŰč ŰŻŰčم ŰȘŰŹŰ±ÙŠŰšÙŠ Ù„Ù„Ű±ŰłÙˆÙ… Ű«Ù„Ű§Ű«ÙŠŰ© Ű§Ù„ŰŁŰšŰčۧۯ"
-#: ../../Xconfig/card.pm_.c:425
+#: ../../Xconfig/card.pm_.c:426
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -139,7 +139,7 @@ msgstr ""
"ŰšŰ·Ű§Ù‚ŰȘك Ù…ŰŻŰčÙˆÙ…Ű© Űčن Ű·Ű±ÙŠÙ‚ XFree %s Ű§Ù„ŰȘي يمكن ŰŁÙ† ŰȘكون Ù…ŰŻŰčÙˆÙ…Ű© ŰšŰŽÙƒÙ„ ŰŁÙŰ¶Ù„ في ÙˆŰ¶ŰčÙŠŰ© "
"Ű§Ù„Ű±ŰłÙˆÙ… Ű«Ù†Ű§ŰŠÙŠŰ© Ű§Ù„ŰŁŰšŰčۧۯ."
-#: ../../Xconfig/card.pm_.c:428 ../../Xconfig/card.pm_.c:445
+#: ../../Xconfig/card.pm_.c:429 ../../Xconfig/card.pm_.c:446
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
@@ -148,53 +148,54 @@ msgstr ""
"يمكن Ù„ŰšŰ·Ű§Ù‚ŰȘك Ű§Ù„ŰȘمŰȘŰč ۚۯŰčم Ù„Ù„Ű±ŰłÙˆÙ… Ű«Ù„Ű§Ű«ÙŠŰ© Ű§Ù„ŰŁŰšŰčۧۯ مŰč XFree %s, \n"
"Ù„Ű§Ű­Űž ŰŁÙ† Ù‡Ű°Ű§ Ű§Ù„ŰŻŰčم ŰȘŰŹŰ±ÙŠŰšÙŠ و Ù‚ŰŻ يŰȘ۳ۚۚ في Ű§ÙŠÙ‚Ű§Ù ŰŹÙ‡Ű§ŰČك."
-#: ../../Xconfig/card.pm_.c:451
+#: ../../Xconfig/card.pm_.c:452
msgid "Xpmac (installation display driver)"
msgstr "Xpmac (Ù…ŰŽŰșل Űč۱۶ Ű§Ù„ŰȘŰ«ŰšÙŠŰȘ)"
-#: ../../Xconfig/main.pm_.c:78 ../../Xconfig/main.pm_.c:79
-#: ../../Xconfig/monitor.pm_.c:94 ../../any.pm_.c:974
+#: ../../Xconfig/main.pm_.c:76 ../../Xconfig/main.pm_.c:77
+#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:977
msgid "Custom"
msgstr "Ù…ŰźŰ”Ű”"
-#: ../../Xconfig/main.pm_.c:104
+#: ../../Xconfig/main.pm_.c:102
#, fuzzy
msgid "Graphic Card"
msgstr "ŰšŰ·Ű§Ù‚Ű© Ű§Ù„ŰŽŰ§ŰŽŰ©"
-#: ../../Xconfig/main.pm_.c:107 ../../Xconfig/monitor.pm_.c:91
+#: ../../Xconfig/main.pm_.c:105 ../../Xconfig/monitor.pm_.c:93
msgid "Monitor"
msgstr "Ű§Ù„ŰŽŰ§ŰŽŰ©"
-#: ../../Xconfig/main.pm_.c:110 ../../Xconfig/resolution_and_depth.pm_.c:209
+#: ../../Xconfig/main.pm_.c:108 ../../Xconfig/resolution_and_depth.pm_.c:209
msgid "Resolution"
msgstr "ŰŻÙ‚Ű© Ű§Ù„Űč۱۶"
-#: ../../Xconfig/main.pm_.c:114
+#: ../../Xconfig/main.pm_.c:113
msgid "Test"
msgstr ""
-#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:59
-#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/removable.pm_.c:25
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:63
+#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/removable.pm_.c:25
#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "ŰźÙŠŰ§Ű±Ű§ŰȘ"
#: ../../Xconfig/main.pm_.c:121 ../../Xconfig/resolution_and_depth.pm_.c:268
-#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:281
+#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:275
#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
-#: ../../interactive.pm_.c:351 ../../interactive/http.pm_.c:104
+#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:104
#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
-#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:156
-#: ../../my_gtk.pm_.c:284 ../../my_gtk.pm_.c:307
-#: ../../standalone/drakbackup_.c:3324 ../../standalone/drakbackup_.c:3419
-#: ../../standalone/drakbackup_.c:3438
+#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:159
+#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310
+#: ../../standalone/drakbackup_.c:3972 ../../standalone/drakbackup_.c:4067
+#: ../../standalone/drakbackup_.c:4086
msgid "Ok"
msgstr "Ù…ÙˆŰ§ÙÙ‚"
#: ../../Xconfig/main.pm_.c:121 ../../diskdrake/dav.pm_.c:24
-#: ../../printerdrake.pm_.c:2933 ../../standalone/logdrake_.c:224
+#: ../../harddrake/ui.pm_.c:98 ../../printerdrake.pm_.c:3155
+#: ../../standalone/logdrake_.c:224
msgid "Quit"
msgstr "ŰźŰ±ÙˆŰŹ"
@@ -211,28 +212,28 @@ msgstr ""
"\n"
"%s"
-#: ../../Xconfig/monitor.pm_.c:91
+#: ../../Xconfig/monitor.pm_.c:93
msgid "Choose a monitor"
msgstr "Ű„ŰźŰȘ۱ ێۧێ۩"
-#: ../../Xconfig/monitor.pm_.c:95
+#: ../../Xconfig/monitor.pm_.c:97
msgid "Plug'n Play"
msgstr ""
-#: ../../Xconfig/monitor.pm_.c:96 ../../mouse.pm_.c:45
+#: ../../Xconfig/monitor.pm_.c:98 ../../mouse.pm_.c:46
msgid "Generic"
msgstr "Generic"
-#: ../../Xconfig/monitor.pm_.c:97 ../../harddrake/ui.pm_.c:36
+#: ../../Xconfig/monitor.pm_.c:99 ../../harddrake/ui.pm_.c:37
#, fuzzy
msgid "Vendor"
msgstr "ŰȘ۱ۧۏŰč"
-#: ../../Xconfig/monitor.pm_.c:107
+#: ../../Xconfig/monitor.pm_.c:109
msgid "Plug'n Play probing failed. Please choose a precise monitor"
msgstr ""
-#: ../../Xconfig/monitor.pm_.c:112
+#: ../../Xconfig/monitor.pm_.c:114
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -253,11 +254,11 @@ msgstr ""
"ŰŁÙƒŰšŰ± من Ù…Ù‚ŰŻŰ±Ű© ێۧێŰȘك Ù„ŰŁÙ†Ùƒ ŰšÙ‡Ű°Ű§ Ù‚ŰŻ ŰȘŰŻÙ…Ű± ێۧێŰȘك.\n"
" ۧ۰ۧ لم ŰȘكن مŰȘŰŁÙƒŰŻŰ§ يمكنك ۧ۟ŰȘÙŠŰ§Ű± ۧŰčۯۧۯۧŰȘ ŰčŰ§ŰŻÙŠŰ©."
-#: ../../Xconfig/monitor.pm_.c:119
+#: ../../Xconfig/monitor.pm_.c:121
msgid "Horizontal refresh rate"
msgstr "Ù†ŰłŰšŰ© Ű§Ù„Ű„Ù†Űčۧێ Ű§Ù„ŰŁÙÙ‚ÙŠ"
-#: ../../Xconfig/monitor.pm_.c:120
+#: ../../Xconfig/monitor.pm_.c:122
msgid "Vertical refresh rate"
msgstr "Ù†ŰłŰšŰ© Ű§Ù„Ű„Ù†Űčۧێ Ű§Ù„Ű±ŰŁŰłÙŠ"
@@ -294,36 +295,41 @@ msgstr "ۧ۟ŰȘ۱ ŰŻÙ‚Ű© Ű§Ù„Űč۱۶ و Űčمق Ű§Ù„ŰŁÙ„ÙˆŰ§Ù…"
msgid "Graphics card: %s"
msgstr "ŰšŰ·Ű§Ù‚Ű© Ű§Ù„ŰŽŰ§ŰŽŰ©: %s"
-#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1015
-#: ../../bootlook.pm_.c:334 ../../diskdrake/smbnfs_gtk.pm_.c:87
-#: ../../install_steps_gtk.pm_.c:412 ../../install_steps_gtk.pm_.c:470
-#: ../../install_steps_interactive.pm_.c:576 ../../interactive.pm_.c:142
-#: ../../interactive.pm_.c:351 ../../interactive/http.pm_.c:105
+#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1018
+#: ../../bootlook.pm_.c:338 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:406 ../../install_steps_gtk.pm_.c:464
+#: ../../install_steps_interactive.pm_.c:560 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:105
#: ../../interactive/newt.pm_.c:174 ../../interactive/stdio.pm_.c:39
-#: ../../interactive/stdio.pm_.c:143 ../../my_gtk.pm_.c:155
-#: ../../my_gtk.pm_.c:159 ../../my_gtk.pm_.c:284
-#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1990
-#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3278
-#: ../../standalone/drakbackup_.c:3311 ../../standalone/drakbackup_.c:3337
-#: ../../standalone/drakbackup_.c:3364 ../../standalone/drakbackup_.c:3391
-#: ../../standalone/drakbackup_.c:3451 ../../standalone/drakbackup_.c:3478
-#: ../../standalone/drakbackup_.c:3504 ../../standalone/drakconnect_.c:115
-#: ../../standalone/drakconnect_.c:147 ../../standalone/drakconnect_.c:289
-#: ../../standalone/drakconnect_.c:537 ../../standalone/drakconnect_.c:679
-#: ../../standalone/drakfloppy_.c:234 ../../standalone/drakfloppy_.c:383
-#: ../../standalone/drakfont_.c:970 ../../standalone/drakgw_.c:598
-#: ../../standalone/logdrake_.c:224 ../../standalone/logdrake_.c:528
-#: ../../standalone/tinyfirewall_.c:64
+#: ../../interactive/stdio.pm_.c:143 ../../my_gtk.pm_.c:158
+#: ../../my_gtk.pm_.c:162 ../../my_gtk.pm_.c:287
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:2124
+#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3926
+#: ../../standalone/drakbackup_.c:3959 ../../standalone/drakbackup_.c:3985
+#: ../../standalone/drakbackup_.c:4012 ../../standalone/drakbackup_.c:4039
+#: ../../standalone/drakbackup_.c:4099 ../../standalone/drakbackup_.c:4126
+#: ../../standalone/drakbackup_.c:4156 ../../standalone/drakbackup_.c:4182
+#: ../../standalone/drakconnect_.c:115 ../../standalone/drakconnect_.c:147
+#: ../../standalone/drakconnect_.c:289 ../../standalone/drakconnect_.c:537
+#: ../../standalone/drakconnect_.c:679 ../../standalone/drakfloppy_.c:234
+#: ../../standalone/drakfloppy_.c:383 ../../standalone/drakfont_.c:970
+#: ../../standalone/drakgw_.c:536 ../../standalone/logdrake_.c:224
+#: ../../standalone/logdrake_.c:526
msgid "Cancel"
msgstr "Ű§Ù„Űșۧۥ"
-#: ../../Xconfig/test.pm_.c:26
+#: ../../Xconfig/test.pm_.c:30
+msgid "Test of the configuration"
+msgstr "ۧ۟ŰȘۚۧ۱ Ű§Ù„Ű„Űčۯۧۯ"
+
+#: ../../Xconfig/test.pm_.c:31
msgid "Do you want to test the configuration?"
msgstr "هل ŰȘŰ±ÙŠŰŻ ŰȘۏ۱ۚ۩ Ű§Ù„Ű„Űčۯۧۯ۟"
-#: ../../Xconfig/test.pm_.c:26
-msgid "Test of the configuration"
-msgstr "ۧ۟ŰȘۚۧ۱ Ű§Ù„Ű„Űčۯۧۯ"
+#: ../../Xconfig/test.pm_.c:31
+#, fuzzy
+msgid "Warning: testing this graphic card may freeze your computer"
+msgstr "ŰȘŰ­Ű°ÙŠŰ±: ۧ۟ŰȘۚۧ۱ ŰšŰ·Ű§Ù‚Ű© Ű§Ù„Űč۱۶ Ù‡Ű°Ù‡ Ù‚ŰŻ يŰȘ۳ۚ في Ű§ÙŠÙ‚Ű§Ù ŰŹÙ‡Ű§ŰČك"
#: ../../Xconfig/various.pm_.c:29
#, c-format
@@ -458,26 +464,22 @@ msgstr "Ű§Ù„Ű„Ù‚Ù„Ű§Űč من DOS/Windows (loadlin)"
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:158 ../../any.pm_.c:190
+#: ../../any.pm_.c:159 ../../any.pm_.c:190
msgid "Bootloader main options"
msgstr "ŰźÙŠŰ§Ű±Ű§ŰȘ Ù…Ű­Ù…Ù‘Ù„ Ű§Ù„Ű„Ù‚Ù„Ű§Űč Ű§Ù„Ű±ŰŠÙŠŰłÙŠŰ©"
-#: ../../any.pm_.c:159 ../../any.pm_.c:191
+#: ../../any.pm_.c:160 ../../any.pm_.c:191
msgid "Bootloader to use"
msgstr "Ù…Ű­Ù…Ù‘Ù„ Ű§Ù„Ű„Ù‚Ù„Ű§Űč Ű§Ù„Ù…ÙŰłŰȘŰźŰŻÙ…"
-#: ../../any.pm_.c:161
+#: ../../any.pm_.c:162
msgid "Bootloader installation"
msgstr "ŰȘŰ«ŰšÙŠŰȘ Ù…Ű­Ù…Ù„ Ű§Ù„Ű„Ù‚Ù„Ű§Űč"
-#: ../../any.pm_.c:163 ../../any.pm_.c:193
+#: ../../any.pm_.c:164 ../../any.pm_.c:193
msgid "Boot device"
msgstr "ŰŹÙ‡Ű§ŰČ Ű§Ù„Ű„Ù‚Ù„Ű§Űč"
-#: ../../any.pm_.c:164
-msgid "LBA (doesn't work on old BIOSes)"
-msgstr "LBA (Ù„Ű§ يŰčمل مŰč ŰŁÙ†ŰžÙ…Ű© Ű§Ù„Ù€BIOS Ű§Ù„Ù‚ŰŻÙŠÙ…Ű©)"
-
#: ../../any.pm_.c:165
msgid "Compact"
msgstr "Ù…ŰŻÙ…ŰŹ"
@@ -494,16 +496,17 @@ msgstr "ÙˆŰ¶ŰčÙŠŰ© Ű§Ù„ÙÙŠŰŻÙŠŰ©"
msgid "Delay before booting default image"
msgstr "ŰȘوقيŰȘ Ù…Ű§ Ù‚ŰšÙ„ Ű§Ù‚Ù„Ű§Űč Ű§Ù„Ű”ÙˆŰ±Ű© Ű§Ù„Ű§ÙŰȘŰ±Ű§Ű¶ÙŠŰ©"
-#: ../../any.pm_.c:170 ../../any.pm_.c:786
+#: ../../any.pm_.c:170 ../../any.pm_.c:788
#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1111 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:743 ../../printerdrake.pm_.c:858
-#: ../../standalone/drakconnect_.c:624 ../../standalone/drakconnect_.c:649
+#: ../../install_steps_interactive.pm_.c:1096 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:850 ../../printerdrake.pm_.c:965
+#: ../../standalone/drakbackup_.c:3528 ../../standalone/drakconnect_.c:624
+#: ../../standalone/drakconnect_.c:649
msgid "Password"
msgstr "ÙƒÙ„Ù…Ű© Ű§Ù„Ù…Ű±ÙˆŰ±"
-#: ../../any.pm_.c:171 ../../any.pm_.c:787
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../any.pm_.c:171 ../../any.pm_.c:789
+#: ../../install_steps_interactive.pm_.c:1097
msgid "Password (again)"
msgstr "ÙƒÙ„Ù…Ű© Ű§Ù„Ù…Ű±ÙˆŰ± (Ű«Ű§Ù†ÙŠŰ©)"
@@ -537,14 +540,14 @@ msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr "ŰźÙŠŰ§Ű± ``ŰȘŰŽŰŻÙŠŰŻ ŰźÙŠŰ§Ű±Ű§ŰȘ ۳۷۱ Ű§Ù„ŰŁÙˆŰ§Ù…Ű±`` ŰšŰŻÙˆÙ† Ù‚Ű§ŰŠŰŻŰ© من ŰŻÙˆÙ† ÙƒÙ„Ù…Ű© Ù…Ű±ÙˆŰ±"
-#: ../../any.pm_.c:184 ../../any.pm_.c:762
-#: ../../diskdrake/interactive.pm_.c:1180
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../any.pm_.c:184 ../../any.pm_.c:764
+#: ../../diskdrake/interactive.pm_.c:1191
+#: ../../install_steps_interactive.pm_.c:1091
msgid "Please try again"
msgstr "۱ۏۧۥ ŰŹŰ§ÙˆÙ„ Ù…Ű±Ű© ŰŁŰźŰ±Ù‰"
-#: ../../any.pm_.c:184 ../../any.pm_.c:762
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../any.pm_.c:184 ../../any.pm_.c:764
+#: ../../install_steps_interactive.pm_.c:1091
msgid "The passwords do not match"
msgstr "ÙƒÙ„Ù…Ű§ŰȘ Ű§Ù„Ù…Ű±ÙˆŰ± ŰșÙŠŰ± مŰȘŰ·Ű§ŰšÙ‚Ű©"
@@ -589,16 +592,16 @@ msgstr ""
"Ù‡Ű§ Ù‡Ù†Ű§ Ű§Ù„Ù…ŰŻŰźÙ„Ű§ŰȘ Ű§Ù„Ù…ŰźŰȘÙ„ÙŰ©.\n"
"يمكنك Ű§Ű¶Ű§ÙŰ© Ù…ŰŻŰźÙ„Ű§ŰȘ ŰŁŰźŰ±Ù‰ ŰŁÙˆ ŰȘŰșÙŠÙŠŰ± Ű§Ù„Ù…ÙˆŰŹÙˆŰŻÙŠÙ†."
-#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1483
-#: ../../standalone/drakbackup_.c:1596 ../../standalone/drakfont_.c:1011
+#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1558
+#: ../../standalone/drakbackup_.c:1671 ../../standalone/drakfont_.c:1011
#: ../../standalone/drakfont_.c:1054
msgid "Add"
msgstr "Ű§Ű¶Ű§ÙŰ©"
-#: ../../any.pm_.c:257 ../../any.pm_.c:774 ../../diskdrake/dav.pm_.c:60
+#: ../../any.pm_.c:257 ../../any.pm_.c:776 ../../diskdrake/dav.pm_.c:64
#: ../../diskdrake/hd_gtk.pm_.c:153 ../../diskdrake/removable.pm_.c:27
#: ../../diskdrake/smbnfs_gtk.pm_.c:88 ../../interactive/http.pm_.c:153
-#: ../../standalone/drakbackup_.c:2696
+#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2772
msgid "Done"
msgstr "Ű§Ù†ŰȘهى"
@@ -610,7 +613,7 @@ msgstr "ŰȘŰčŰŻÙŠÙ„"
msgid "Which type of entry do you want to add?"
msgstr "Ù…Ű§ نوŰč Ű§Ù„Ù…ŰŻŰźÙ„ Ű§Ù„Ű°ÙŠ ŰȘŰ±ÙŠŰŻ Ű§Ű¶Ű§ÙŰȘÙ‡ŰŸ"
-#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1630
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1705
msgid "Linux"
msgstr "Ù„ÙŠÙ†ÙƒŰł"
@@ -704,13 +707,13 @@ msgstr "هل ŰčÙ†ŰŻÙƒ ÙˆŰ§Ű­ŰŻŰ© ŰŁŰźŰ±Ù‰ŰŸ"
msgid "Do you have any %s interfaces?"
msgstr "هل Ù„ŰŻÙŠÙƒ ŰŁÙŠ ÙˆŰ§ŰŹÙ‡Ű§ŰȘ %s۟"
-#: ../../any.pm_.c:660 ../../any.pm_.c:821 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:283
+#: ../../any.pm_.c:660 ../../any.pm_.c:823 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:286
msgid "No"
msgstr "Ù„Ű§"
-#: ../../any.pm_.c:660 ../../any.pm_.c:820 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:283
+#: ../../any.pm_.c:660 ../../any.pm_.c:822 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:286
msgid "Yes"
msgstr "نŰčم"
@@ -809,38 +812,48 @@ msgstr "Ű§ŰłÙ…Ű­ ŰšÙ€\"su\""
msgid "access to administrative files"
msgstr "Ű§Ù„ÙˆŰ”ÙˆÙ„ Ű§Ù„Ù‰ Ù…Ù„ÙŰ§ŰȘ Ű§Ù„Ű„ŰŻŰ§Ű±Ű©"
-#: ../../any.pm_.c:758
+#: ../../any.pm_.c:754
+#, fuzzy
+msgid "access to network tools"
+msgstr "Ű§Ù„ÙˆŰ”ÙˆÙ„ Ű§Ù„Ù‰ ŰŁŰŻÙˆŰ§ŰȘ rpm"
+
+#: ../../any.pm_.c:755
+#, fuzzy
+msgid "access to compilation tools"
+msgstr "Ű§Ù„ÙˆŰ”ÙˆÙ„ Ű§Ù„Ù‰ ŰŁŰŻÙˆŰ§ŰȘ rpm"
+
+#: ../../any.pm_.c:760
#, c-format
msgid "(already added %s)"
msgstr "(ŰȘم Ű§Ű¶Ű§ÙŰ© %s Ù…ŰłŰšÙ‚Ű§)"
-#: ../../any.pm_.c:763
+#: ../../any.pm_.c:765
msgid "This password is too simple"
msgstr "ÙƒÙ„Ù…Ű© Ű§Ù„Ù…Ű±ÙˆŰ± Ù‡Ű°Ù‡ ŰšŰłÙŠŰ·Ű© ۏۯۧ"
-#: ../../any.pm_.c:764
+#: ../../any.pm_.c:766
msgid "Please give a user name"
msgstr "Ű±ŰŹŰ§ŰĄÙ‹ قم ۚۄŰč۷ۧۥ Ű§ŰłÙ… Ù…ŰłŰȘŰźŰŻÙ…"
-#: ../../any.pm_.c:765
+#: ../../any.pm_.c:767
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr "Ű§ŰłÙ… Ű§Ù„Ù…ŰłŰȘŰźŰŻÙ… ÙŠŰŹŰš ŰŁÙ† ÙŠŰ­ŰȘوي ÙÙ‚Ű· Űčلى Ű§Ù„Ű­Ű±ÙˆÙ Ű§Ù„Ű”ŰșÙŠŰ±Ű©, Ű§Ù„ŰŁŰ±Ù‚Ű§Ù…, `-' و `_'"
-#: ../../any.pm_.c:766
+#: ../../any.pm_.c:768
#, fuzzy
msgid "The user name is too long"
msgstr "Ű§ŰłÙ… Ű§Ù„Ù…ŰłŰȘŰźŰŻÙ… Ù…ÙŰ¶Ű§Ù Ù…ŰłŰšÙ‚Ű§"
-#: ../../any.pm_.c:767
+#: ../../any.pm_.c:769
msgid "This user name is already added"
msgstr "Ű§ŰłÙ… Ű§Ù„Ù…ŰłŰȘŰźŰŻÙ… Ù…ÙŰ¶Ű§Ù Ù…ŰłŰšÙ‚Ű§"
-#: ../../any.pm_.c:771
+#: ../../any.pm_.c:773
msgid "Add user"
msgstr "Ű§Ű¶Ù Ù…ŰłŰȘŰźŰŻÙ…"
-#: ../../any.pm_.c:772
+#: ../../any.pm_.c:774
#, c-format
msgid ""
"Enter a user\n"
@@ -849,32 +862,32 @@ msgstr ""
"ŰŁŰŻŰźÙ„ Ù…ŰłŰȘŰźŰŻÙ…\n"
"%s"
-#: ../../any.pm_.c:773
+#: ../../any.pm_.c:775
msgid "Accept user"
msgstr "ÙˆŰ§ÙÙ‚ Űčلى Ű§Ù„Ù…ŰłŰȘŰźŰŻÙ…"
-#: ../../any.pm_.c:784
+#: ../../any.pm_.c:786
msgid "Real name"
msgstr "Ű§Ù„Ű§ŰłÙ… Ű§Ù„Ű­Ù‚ÙŠÙ‚ÙŠ"
-#: ../../any.pm_.c:785 ../../printerdrake.pm_.c:742
-#: ../../printerdrake.pm_.c:857
+#: ../../any.pm_.c:787 ../../printerdrake.pm_.c:849
+#: ../../printerdrake.pm_.c:964
msgid "User name"
msgstr "Ű§ŰłÙ… Ű§Ù„Ù…ŰłŰȘŰźŰŻÙ…"
-#: ../../any.pm_.c:788
+#: ../../any.pm_.c:790
msgid "Shell"
msgstr "Ű§Ù„ŰșÙ„Ű§Ù"
-#: ../../any.pm_.c:790
+#: ../../any.pm_.c:792
msgid "Icon"
msgstr "ŰŁÙŠÙ‚ÙˆÙ†Ű©"
-#: ../../any.pm_.c:817
+#: ../../any.pm_.c:819
msgid "Autologin"
msgstr "ŰŻŰźÙˆÙ„ ŰąÙ„ÙŠ"
-#: ../../any.pm_.c:818
+#: ../../any.pm_.c:820
msgid ""
"I can set up your computer to automatically log on one user.\n"
"Do you want to use this feature?"
@@ -882,54 +895,54 @@ msgstr ""
"يمكنني ۧŰčۯۧۯ ŰŹÙ‡Ű§ŰČك لŰȘŰłŰŹÙŠÙ„ Ű§Ù„ŰŻŰźÙˆÙ„ ŰąÙ„ÙŠÙ„ Ù„Ù…ŰłŰȘŰźŰŻÙ… Ù…Ű§.\n"
"هل ŰȘŰ±ÙŠŰŻ ۧ۳ŰȘŰźŰŻŰ§Ù… Ù‡Ű°Ù‡ Ű§Ù„Ù…ÙŠŰČŰ©ŰŸ"
-#: ../../any.pm_.c:822
+#: ../../any.pm_.c:824
msgid "Choose the default user:"
msgstr "ۧ۟ŰȘ۱ Ű§Ù„Ù…ŰłŰȘŰźŰŻÙ… Ű§Ù„Ű§ÙŰȘŰ±Ű§Ű¶ÙŠ:"
-#: ../../any.pm_.c:823
+#: ../../any.pm_.c:825
msgid "Choose the window manager to run:"
msgstr "ۧ۟ŰȘ۱ Ù…ŰŻÙŠŰ± Ű§Ù„Ù†ÙˆŰ§ÙŰ° Ű§Ù„Ű°ÙŠ ŰłÙŠŰȘم ŰȘŰŽŰșيله:"
-#: ../../any.pm_.c:838
+#: ../../any.pm_.c:840
msgid "Please choose a language to use."
msgstr "۱ۏۧۥ ۧ۟ŰȘ۱ لŰșŰ© Ű§Ù„Ű§ŰłŰȘŰźŰŻŰ§Ù…."
-#: ../../any.pm_.c:840
+#: ../../any.pm_.c:842
msgid ""
"Mandrake Linux can support multiple languages. Select\n"
"the languages you would like to install. They will be available\n"
"when your installation is complete and you restart your system."
msgstr "يمكنكن ۧ۟ŰȘÙŠŰ§Ű± لŰșۧŰȘ ŰŁŰźŰ±Ù‰ و Ű§Ù„ŰȘي ŰłŰȘكون مŰȘÙˆÙŰ±Ű© ŰšŰčŰŻ Ű§Ù„ŰȘŰ«ŰšÙŠŰȘ"
-#: ../../any.pm_.c:854 ../../install_steps_interactive.pm_.c:708
+#: ../../any.pm_.c:856 ../../install_steps_interactive.pm_.c:692
#: ../../standalone/drakxtv_.c:73
msgid "All"
msgstr "Ű§Ù„ÙƒÙ„"
-#: ../../any.pm_.c:974
+#: ../../any.pm_.c:977
msgid "Allow all users"
msgstr "Ű§ŰłÙ…Ű­ لكل Ű§Ù„Ù…ŰłŰȘŰźŰŻÙ…ÙŠÙ†"
-#: ../../any.pm_.c:974
+#: ../../any.pm_.c:977
msgid "No sharing"
msgstr "Ù„Ű§ Ù…ŰŽŰ§Ű±ÙƒŰ©"
-#: ../../any.pm_.c:984 ../../standalone.pm_.c:57
+#: ../../any.pm_.c:987 ../../install_any.pm_.c:1183 ../../standalone.pm_.c:58
#, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "Ű§Ù„Ű­ŰČÙ…Ű© %s ÙŠŰŹŰš ŰŁÙ† ŰȘÙŰ«ŰšÙ‘ŰȘ. هل ŰȘŰ±ÙŠŰŻ ŰȘŰ«ŰšÙŠŰȘÙ‡Ű§ŰŸ"
-#: ../../any.pm_.c:987
+#: ../../any.pm_.c:990
msgid ""
"You can export using NFS or Samba. Please select which you'd like to use."
msgstr "يمكنك Ű§Ù„ŰȘŰ”ŰŻÙŠŰ± ۚۧ۳ŰȘŰźŰŻŰ§Ù… NFS ŰŁÙˆ Samba. ŰŁÙŠ Ù…Ù†Ù‡Ù…Ű§ ŰȘŰ±ÙŠŰŻ"
-#: ../../any.pm_.c:995 ../../standalone.pm_.c:61
+#: ../../any.pm_.c:998 ../../install_any.pm_.c:1188 ../../standalone.pm_.c:63
#, c-format
msgid "Mandatory package %s is missing"
msgstr "Ű§Ù„Ű­ŰČÙ…Ű© Ű§Ù„Ű¶Ű±ÙˆŰ±ÙŠŰ© %s Ù…ÙÙ‚ÙˆŰŻŰ©"
-#: ../../any.pm_.c:1001
+#: ../../any.pm_.c:1004
msgid ""
"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
@@ -938,11 +951,11 @@ msgid ""
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:1015
+#: ../../any.pm_.c:1018
msgid "Launch userdrake"
msgstr "ŰŽŰșّل userdrake"
-#: ../../any.pm_.c:1017
+#: ../../any.pm_.c:1020
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
@@ -950,56 +963,56 @@ msgstr ""
"Ű§Ù„Ù…ŰŽŰ§Ű±ÙƒŰ© لكل Ù…ŰłŰȘŰźŰŻÙ… ŰȘŰłŰȘŰźŰŻÙ… Ű§Ù„Ù…ŰŹÙ…ÙˆŰčŰ© \"fileshare\".\n"
"يمكنك ŰŁÙ† ŰȘŰłŰȘŰźŰŻÙ… userdrake Ù„Ű„Ű¶Ű§ÙŰ© Ù…ŰłŰȘŰźŰŻÙ… في Ù‡Ű°Ù‡ Ű§Ù„Ù…ŰŹÙ…ÙˆŰčŰ©."
-#: ../../any.pm_.c:1068
+#: ../../any.pm_.c:1071
msgid "Welcome To Crackers"
msgstr "Ù…Ű±Ű­ŰšŰ§ ŰšŰ§Ù„Ù…ŰźŰȘŰ±Ù‚ÙŠÙ†"
-#: ../../any.pm_.c:1069
+#: ../../any.pm_.c:1072
msgid "Poor"
msgstr "ÙÙ‚ÙŠŰ±"
-#: ../../any.pm_.c:1070 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1073 ../../mouse.pm_.c:31
msgid "Standard"
msgstr "Ű§Ù„Ù‚ÙŠŰ§ŰłÙŠ"
-#: ../../any.pm_.c:1071
+#: ../../any.pm_.c:1074
msgid "High"
msgstr "Ù…Ű±ŰȘفŰč"
-#: ../../any.pm_.c:1072
+#: ../../any.pm_.c:1075
msgid "Higher"
msgstr "Ù…Ű±ŰȘفŰč ŰŁÙƒŰ«Ű±"
-#: ../../any.pm_.c:1073
+#: ../../any.pm_.c:1076
msgid "Paranoid"
msgstr "Ù…Ű±ŰȘفŰč ۏۯۧ"
-#: ../../any.pm_.c:1076
+#: ../../any.pm_.c:1079
msgid ""
"This level is to be used with care. It makes your system more easy to use,\n"
"but very sensitive: it must not be used for a machine connected to others\n"
"or to the Internet. There is no password access."
msgstr ""
-#: ../../any.pm_.c:1079
+#: ../../any.pm_.c:1082
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
msgstr ""
-#: ../../any.pm_.c:1080
+#: ../../any.pm_.c:1083
msgid ""
"This is the standard security recommended for a computer that will be used "
"to connect to the Internet as a client."
msgstr ""
-#: ../../any.pm_.c:1081
+#: ../../any.pm_.c:1084
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr ""
-#: ../../any.pm_.c:1082
+#: ../../any.pm_.c:1085
msgid ""
"With this security level, the use of this system as a server becomes "
"possible.\n"
@@ -1009,36 +1022,36 @@ msgid ""
"Internet, you should choose a lower level."
msgstr ""
-#: ../../any.pm_.c:1085
+#: ../../any.pm_.c:1088
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
"security features are at their maximum."
msgstr ""
-#: ../../any.pm_.c:1091
+#: ../../any.pm_.c:1094
#, fuzzy
msgid "DrakSec Basic Options"
msgstr "ŰźÙŠŰ§Ű±Ű§ŰȘ"
-#: ../../any.pm_.c:1092
+#: ../../any.pm_.c:1095
#, fuzzy
msgid "Please choose the desired security level"
msgstr "۱ۏۧۥ ۧ۟ŰȘ۱ ŰȘŰ§Ű±ÙŠŰź Ű§Ù„Ű„ŰłŰȘŰčۧۯ۩"
-#: ../../any.pm_.c:1095
+#: ../../any.pm_.c:1098
msgid "Security level"
msgstr "Ù…ŰłŰȘوى Ű§Ù„ŰŁÙ…Ù†"
-#: ../../any.pm_.c:1097
+#: ../../any.pm_.c:1100
msgid "Use libsafe for servers"
msgstr "Ű„ŰłŰȘŰźŰŻÙ… libsafe Ù„Ù„Ù…Ù„Ù‚Ù…Ű§ŰȘ"
-#: ../../any.pm_.c:1098
+#: ../../any.pm_.c:1101
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
-#: ../../any.pm_.c:1099
+#: ../../any.pm_.c:1102
msgid "Security Administrator (login or email)"
msgstr ""
@@ -1067,57 +1080,57 @@ msgstr ""
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:935
+#: ../../bootloader.pm_.c:932
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Welcome to GRUB the operating system chooser!"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:938
+#: ../../bootloader.pm_.c:935
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "Use the %c and %c keys for selecting which entry is highlighted."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:941
+#: ../../bootloader.pm_.c:938
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Press enter to boot the selected OS, 'e' to edit the"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:941
msgid "commands before booting, or 'c' for a command-line."
msgstr "commands before booting, or 'c' for a command-line."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:947
+#: ../../bootloader.pm_.c:944
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "The highlighted entry will be booted automatically in %d seconds."
-#: ../../bootloader.pm_.c:951
+#: ../../bootloader.pm_.c:948
msgid "not enough room in /boot"
msgstr "Ù„Ű§ ŰȘÙˆŰŹŰŻ Ù…ŰłŰ§Ű­Ùˆ ÙƒŰ§ÙÙŠŰ© في /boot"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1051
+#: ../../bootloader.pm_.c:1048
msgid "Desktop"
msgstr "۳۷ۭ Ű§Ù„Ù…ÙƒŰȘŰš"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1053
+#: ../../bootloader.pm_.c:1050
msgid "Start Menu"
msgstr "Start Menu"
-#: ../../bootloader.pm_.c:1072
+#: ../../bootloader.pm_.c:1069
#, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "يمكنك ŰȘŰ«ŰšÙŠŰȘ Ù…Ű­Ù…Ù‘Ù„ Ű§Ù„Ű„Ù‚Ù„Ű§Űč Űčلى Ű§Ù„ŰȘŰŹŰČŰŠŰ© %s\n"
-#: ../../bootlook.pm_.c:45
+#: ../../bootlook.pm_.c:45 ../../standalone/draksplash_.c:25
msgid "no help implemented yet.\n"
msgstr "Ù„Ű§ ŰȘÙˆŰŹŰŻ Ù…ŰłŰ§ŰčŰŻŰ© Ù„Ù‡Ű°Ű§ Ű­ŰȘى Ű§Ù„ŰąÙ†.\n"
@@ -1125,8 +1138,8 @@ msgstr "Ù„Ű§ ŰȘÙˆŰŹŰŻ Ù…ŰłŰ§ŰčŰŻŰ© Ù„Ù‡Ű°Ű§ Ű­ŰȘى Ű§Ù„ŰąÙ†.\n"
msgid "Boot Style Configuration"
msgstr "ۧŰčۯۧۯ ŰŁŰłÙ„ÙˆŰš Ű§Ù„Ű„Ù‚Ù„Ű§Űč"
-#: ../../bootlook.pm_.c:78 ../../harddrake/ui.pm_.c:59
-#: ../../harddrake/ui.pm_.c:60 ../../standalone/drakfloppy_.c:81
+#: ../../bootlook.pm_.c:78 ../../harddrake/ui.pm_.c:62
+#: ../../harddrake/ui.pm_.c:63 ../../standalone/drakfloppy_.c:81
#: ../../standalone/logdrake_.c:101
msgid "/_File"
msgstr "/_ملف"
@@ -1136,7 +1149,7 @@ msgstr "/_ملف"
msgid "/File/_Quit"
msgstr "/ملف/_ŰźŰ±ÙˆŰŹ"
-#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:60
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:63
#: ../../standalone/drakfloppy_.c:82 ../../standalone/logdrake_.c:107
msgid "<control>Q"
msgstr "<ŰȘŰ­ÙƒÙ…>Q"
@@ -1178,94 +1191,101 @@ msgstr "ŰȘŰ«ŰšÙŠŰȘ Ű§Ù„Ù†ŰžŰ§Ù…"
msgid "Display theme under console"
msgstr ""
-#: ../../bootlook.pm_.c:166
+#: ../../bootlook.pm_.c:145
+#, fuzzy
+msgid "Create new theme"
+msgstr "ۧŰčمل ŰȘŰŹŰČŰŠŰ© ŰŹŰŻÙŠŰŻŰ©"
+
+#: ../../bootlook.pm_.c:169
msgid "Can't create Bootsplash preview"
msgstr ""
-#: ../../bootlook.pm_.c:166 ../../bootlook.pm_.c:184 ../../bootlook.pm_.c:187
-#: ../../bootlook.pm_.c:190 ../../bootlook.pm_.c:220 ../../bootlook.pm_.c:222
-#: ../../bootlook.pm_.c:232 ../../bootlook.pm_.c:241 ../../bootlook.pm_.c:248
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:336
-#: ../../diskdrake/interactive.pm_.c:351 ../../diskdrake/interactive.pm_.c:464
-#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../bootlook.pm_.c:169 ../../bootlook.pm_.c:187 ../../bootlook.pm_.c:190
+#: ../../bootlook.pm_.c:193 ../../bootlook.pm_.c:223 ../../bootlook.pm_.c:225
+#: ../../bootlook.pm_.c:235 ../../bootlook.pm_.c:244 ../../bootlook.pm_.c:251
+#: ../../diskdrake/dav.pm_.c:73 ../../diskdrake/hd_gtk.pm_.c:116
+#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/interactive.pm_.c:355
+#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/interactive.pm_.c:474
+#: ../../diskdrake/smbnfs_gtk.pm_.c:45 ../../fsedit.pm_.c:239
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:365 ../../interactive/http.pm_.c:119
-#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:80
+#: ../../interactive/http.pm_.c:119 ../../interactive/http.pm_.c:120
+#: ../../standalone/draksplash_.c:32
msgid "Error"
msgstr "۟۷ۣ"
-#: ../../bootlook.pm_.c:183
+#: ../../bootlook.pm_.c:186
#, c-format
msgid "Backup %s to %s.old"
msgstr ""
-#: ../../bootlook.pm_.c:184
+#: ../../bootlook.pm_.c:187
msgid "unable to backup lilo message"
msgstr ""
-#: ../../bootlook.pm_.c:186
+#: ../../bootlook.pm_.c:189
#, fuzzy, c-format
msgid "Copy %s to %s"
msgstr "ŰŹŰ§Ű±ÙŠ Ù†ŰłŰź %s"
-#: ../../bootlook.pm_.c:187
+#: ../../bootlook.pm_.c:190
msgid "can't change lilo message"
msgstr ""
-#: ../../bootlook.pm_.c:190
+#: ../../bootlook.pm_.c:193
msgid "Lilo message not found"
msgstr ""
-#: ../../bootlook.pm_.c:220
+#: ../../bootlook.pm_.c:223
msgid "Can't write /etc/sysconfig/bootsplash."
msgstr ""
-#: ../../bootlook.pm_.c:220
+#: ../../bootlook.pm_.c:223
#, fuzzy, c-format
msgid "Write %s"
msgstr "XFree %s"
-#: ../../bootlook.pm_.c:222
+#: ../../bootlook.pm_.c:225
msgid ""
"Can't write /etc/sysconfig/bootsplash\n"
"File not found."
msgstr ""
-#: ../../bootlook.pm_.c:233
+#: ../../bootlook.pm_.c:236
#, c-format
msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
msgstr ""
-#: ../../bootlook.pm_.c:236
+#: ../../bootlook.pm_.c:239
#, c-format
-msgid "Make initrd 'mkinird -f /boot/initrd-%s.img %s'."
+msgid "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
msgstr ""
-#: ../../bootlook.pm_.c:242
+#: ../../bootlook.pm_.c:245
msgid ""
"Can't relaunch LiLo!\n"
"Launch \"lilo\" as root in command line to complete LiLo theme installation."
msgstr ""
-#: ../../bootlook.pm_.c:246
+#: ../../bootlook.pm_.c:249
msgid "Relaunch 'lilo'"
msgstr ""
-#: ../../bootlook.pm_.c:248
+#: ../../bootlook.pm_.c:251 ../../standalone/draksplash_.c:161
+#: ../../standalone/draksplash_.c:330 ../../standalone/draksplash_.c:454
#, fuzzy
msgid "Notice"
msgstr "Ù„Ű§ ÙÙŠŰŻÙŠÙˆ"
-#: ../../bootlook.pm_.c:249
+#: ../../bootlook.pm_.c:252
msgid "LiLo and Bootsplash themes installation successfull"
msgstr ""
-#: ../../bootlook.pm_.c:249
+#: ../../bootlook.pm_.c:252
#, fuzzy
msgid "Theme installation failed!"
msgstr "ۧ۟ŰȘ۱ نوŰč Ű§Ù„ŰȘŰ«ŰšÙŠŰȘ"
-#: ../../bootlook.pm_.c:258
+#: ../../bootlook.pm_.c:261
#, c-format
msgid ""
"You are currently using %s as your boot manager.\n"
@@ -1274,22 +1294,21 @@ msgstr ""
"ŰŁÙ†ŰȘ ŰȘŰłŰȘŰźŰŻÙ… %s ÙƒÙ…ŰŻÙŠŰ± Ű§Ù‚Ù„Ű§Űč Ű­Ű§Ù„ÙŠŰ§.\n"
"ۧ۶ŰșŰ· Űčلى ŰȘÙ‡ÙŠŰŠŰ© لŰȘŰŽŰșيل مŰčŰ§Ù„ŰŹ Ű§Ù„Ű„Űčۯۧۯ"
-#: ../../bootlook.pm_.c:260 ../../standalone/drakbackup_.c:2352
-#: ../../standalone/drakbackup_.c:2362 ../../standalone/drakbackup_.c:2372
-#: ../../standalone/drakbackup_.c:2380 ../../standalone/drakgw_.c:592
-#: ../../standalone/tinyfirewall_.c:58
+#: ../../bootlook.pm_.c:263 ../../standalone/drakbackup_.c:2427
+#: ../../standalone/drakbackup_.c:2437 ../../standalone/drakbackup_.c:2447
+#: ../../standalone/drakbackup_.c:2455 ../../standalone/drakgw_.c:530
msgid "Configure"
msgstr "Ű„Űčۯۧۯ"
-#: ../../bootlook.pm_.c:267
+#: ../../bootlook.pm_.c:270
msgid "Splash selection"
msgstr ""
-#: ../../bootlook.pm_.c:270
+#: ../../bootlook.pm_.c:273
msgid "Themes"
msgstr ""
-#: ../../bootlook.pm_.c:272
+#: ../../bootlook.pm_.c:275
msgid ""
"\n"
"Select a theme for\n"
@@ -1298,44 +1317,44 @@ msgid ""
"them separatly"
msgstr ""
-#: ../../bootlook.pm_.c:275
+#: ../../bootlook.pm_.c:278
msgid "Lilo screen"
msgstr ""
-#: ../../bootlook.pm_.c:279
+#: ../../bootlook.pm_.c:283
msgid "Bootsplash"
msgstr ""
-#: ../../bootlook.pm_.c:314
+#: ../../bootlook.pm_.c:318
msgid "System mode"
msgstr "ÙˆŰ¶Űč Ű§Ù„Ù†ŰžŰ§Ù…"
-#: ../../bootlook.pm_.c:316
+#: ../../bootlook.pm_.c:320
msgid "Launch the graphical environment when your system starts"
msgstr "ŰŽŰșّل X-Window ŰčÙ†ŰŻ ۚۯۥ Ű§Ù„ŰȘŰŽŰșيل"
-#: ../../bootlook.pm_.c:321
+#: ../../bootlook.pm_.c:325
msgid "No, I don't want autologin"
msgstr "Ù„Ű§, Ù„Ű§ ŰŁŰ±ÙŠŰŻ ŰŻŰźÙˆÙ„Ű§ ŰŁÙ„ÙŠŰ§"
-#: ../../bootlook.pm_.c:323
+#: ../../bootlook.pm_.c:327
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "نŰčم, ŰŁŰ±ÙŠŰŻ ŰŻŰźÙˆÙ„Ű§ ŰąÙ„ÙŠŰ§ مŰč Ù‡Ű°Ű§ )Ű§Ù„Ù…ŰłŰȘŰźŰŻÙ…, ۳۷ۭ Ű§Ù„Ù…ÙƒŰȘŰš("
-#: ../../bootlook.pm_.c:333 ../../network/netconnect.pm_.c:101
+#: ../../bootlook.pm_.c:337 ../../network/netconnect.pm_.c:101
#: ../../standalone/drakTermServ_.c:173 ../../standalone/drakTermServ_.c:300
-#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:3513
-#: ../../standalone/drakbackup_.c:4290 ../../standalone/drakconnect_.c:108
+#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4191
+#: ../../standalone/drakbackup_.c:4952 ../../standalone/drakconnect_.c:108
#: ../../standalone/drakconnect_.c:140 ../../standalone/drakconnect_.c:296
#: ../../standalone/drakconnect_.c:435 ../../standalone/drakconnect_.c:521
#: ../../standalone/drakconnect_.c:564 ../../standalone/drakconnect_.c:667
#: ../../standalone/drakfloppy_.c:376 ../../standalone/drakfont_.c:612
#: ../../standalone/drakfont_.c:799 ../../standalone/drakfont_.c:876
-#: ../../standalone/drakfont_.c:963 ../../standalone/logdrake_.c:521
+#: ../../standalone/drakfont_.c:963 ../../standalone/logdrake_.c:519
msgid "OK"
msgstr "Ù…ÙˆŰ§ÙÙ‚"
-#: ../../bootlook.pm_.c:403
+#: ../../bootlook.pm_.c:407
#, c-format
msgid "can not open /etc/inittab for reading: %s"
msgstr "لم يمكن فŰȘŰ­ /etc/inittab Ù„Ù„Ù‚Ű±Ű§ŰĄŰ©: %s"
@@ -1432,49 +1451,53 @@ msgstr "Ű§Ù„Ù†Ù…ŰłŰ§"
msgid "United States"
msgstr "Ű§Ù„ÙˆÙ„Ű§ÙŠŰ§ŰȘ Ű§Ù„Ù…ŰȘŰ­ŰŻŰ©"
-#: ../../detect_devices.pm_.c:599 ../../detect_devices.pm_.c:641
-#: ../../detect_devices.pm_.c:803
-#, fuzzy
-msgid "Unknown Model"
-msgstr "ŰșÙŠŰ± مŰčŰ±ÙˆÙ"
-
#: ../../diskdrake/dav.pm_.c:23
#, fuzzy
msgid "New"
msgstr "ŰŹŰŻÙŠŰŻ"
-#: ../../diskdrake/dav.pm_.c:57
+#: ../../diskdrake/dav.pm_.c:59 ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/smbnfs_gtk.pm_.c:81
+msgid "Unmount"
+msgstr "ۧŰČل Ű§Ù„ŰȘŰŹÙ‡ÙŠŰČ"
+
+#: ../../diskdrake/dav.pm_.c:60 ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/smbnfs_gtk.pm_.c:82
+msgid "Mount"
+msgstr "ŰŹÙ‡ŰČ"
+
+#: ../../diskdrake/dav.pm_.c:61
msgid "Server"
msgstr "ŰźŰ§ŰŻÙ…"
-#: ../../diskdrake/dav.pm_.c:58 ../../diskdrake/interactive.pm_.c:375
-#: ../../diskdrake/interactive.pm_.c:558 ../../diskdrake/interactive.pm_.c:585
+#: ../../diskdrake/dav.pm_.c:62 ../../diskdrake/interactive.pm_.c:379
+#: ../../diskdrake/interactive.pm_.c:568 ../../diskdrake/interactive.pm_.c:595
#: ../../diskdrake/removable.pm_.c:24 ../../diskdrake/removable_gtk.pm_.c:15
#: ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr "Ù†Ù‚Ű·Ű© Ű§Ù„ŰȘŰŹÙ‡ÙŠŰČ"
-#: ../../diskdrake/dav.pm_.c:68
+#: ../../diskdrake/dav.pm_.c:81
#, fuzzy
msgid "Please enter the WebDAV server URL"
msgstr "۱ۏۧۥ ŰŁŰŻŰźÙ„ ۳۱ŰčŰ© ŰłÙˆŰ§Ù‚Ű© كŰȘۧۚ۩ Ű§Ù„ŰŁÙ‚Ű±Ű§Ű”"
-#: ../../diskdrake/dav.pm_.c:71
+#: ../../diskdrake/dav.pm_.c:84
msgid "The URL must begin with http:// or https://"
msgstr ""
-#: ../../diskdrake/dav.pm_.c:92
+#: ../../diskdrake/dav.pm_.c:105
#, fuzzy
msgid "Server: "
msgstr "ŰźŰ§ŰŻÙ…"
-#: ../../diskdrake/dav.pm_.c:93 ../../diskdrake/interactive.pm_.c:435
-#: ../../diskdrake/interactive.pm_.c:1079
-#: ../../diskdrake/interactive.pm_.c:1153
+#: ../../diskdrake/dav.pm_.c:106 ../../diskdrake/interactive.pm_.c:440
+#: ../../diskdrake/interactive.pm_.c:1089
+#: ../../diskdrake/interactive.pm_.c:1164
msgid "Mount point: "
msgstr "Ù†Ù‚Ű·Ű© Ű§Ù„ŰȘŰŹÙ‡ÙŠŰČ: "
-#: ../../diskdrake/dav.pm_.c:94 ../../diskdrake/interactive.pm_.c:1159
+#: ../../diskdrake/dav.pm_.c:107 ../../diskdrake/interactive.pm_.c:1170
#, c-format
msgid "Options: %s"
msgstr "Ű§Ù„ŰźÙŠŰ§Ű±Ű§ŰȘ: %s"
@@ -1483,8 +1506,9 @@ msgstr "Ű§Ù„ŰźÙŠŰ§Ű±Ű§ŰȘ: %s"
msgid "Please make a backup of your data first"
msgstr "۱ۏۧۥ قم ŰšŰčمل Ù†ŰłŰźŰ© ۭۧŰȘÙŠŰ§Ű·ÙŠŰ© من ŰšÙŠŰ§Ù†Ű§ŰȘك ŰŁÙˆÙ„Ű§"
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:924
-#: ../../diskdrake/interactive.pm_.c:933 ../../diskdrake/interactive.pm_.c:999
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:934
+#: ../../diskdrake/interactive.pm_.c:943
+#: ../../diskdrake/interactive.pm_.c:1009
msgid "Read carefully!"
msgstr "Ű§Ù‚Ű±ŰŁ ŰŹÙŠŰŻŰ§!"
@@ -1522,10 +1546,18 @@ msgid "Please click on a partition"
msgstr "ÙŰ¶Ù„Ű§ ۧ۶ŰșŰ· Űčلى ŰȘŰŹŰČŰŠŰ©"
#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
-#: ../../install_steps_gtk.pm_.c:471
+#: ../../install_steps_gtk.pm_.c:465
msgid "Details"
msgstr "ŰȘÙŰ§Ű”ÙŠÙ„"
+#
+#: ../../diskdrake/hd_gtk.pm_.c:252
+#, fuzzy
+msgid "No hard drives found"
+msgstr ""
+"لم يŰȘم Ű§ÙŠŰ­Ű§ŰŻ ۷ۧۚŰčŰ© Ù…Ű­Ù„ÙŠŰ©!\n"
+"\n"
+
#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Ext2"
msgstr "Ext2"
@@ -1550,13 +1582,13 @@ msgstr "SunOS"
msgid "Swap"
msgstr "Ű§Ù„ŰȘŰšŰŻÙŠÙ„"
-#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1105
msgid "Empty"
msgstr "ÙŰ§Ű±Űș"
-#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:331
-#: ../../install_steps_gtk.pm_.c:389 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1679
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:325
+#: ../../install_steps_gtk.pm_.c:383 ../../mouse.pm_.c:165
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1754
msgid "Other"
msgstr "ŰŁŰźŰ±Ù‰"
@@ -1564,12 +1596,12 @@ msgstr "ŰŁŰźŰ±Ù‰"
msgid "Filesystem types:"
msgstr "ŰŁÙ†ÙˆŰ§Űč ŰŁÙ†ŰžÙ…Ű© Ű§Ù„Ù…Ù„ÙŰ§ŰȘ:"
-#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:397
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:402
msgid "Create"
msgstr "Űčمل ŰȘŰŹŰČŰŠŰ©"
-#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:376
-#: ../../diskdrake/interactive.pm_.c:521 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:380
+#: ../../diskdrake/interactive.pm_.c:531 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "Ű§Ù„Ù†ÙˆŰč"
@@ -1579,7 +1611,7 @@ msgstr "Ű§Ù„Ù†ÙˆŰč"
msgid "Use ``%s'' instead"
msgstr "ۧ۳ŰȘŰźŰŻÙ… ``%s'' ŰšŰŻÙ„Ű§ من Ű°Ù„Ùƒ"
-#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:389
msgid "Delete"
msgstr "Ű„Ù„Űșۧۥ"
@@ -1587,108 +1619,108 @@ msgstr "Ű„Ù„Űșۧۥ"
msgid "Use ``Unmount'' first"
msgstr "ۧ۳ŰȘŰźŰŻÙ… ``ۧŰČŰ§Ù„Ű© Ű§Ù„ŰȘŰŹÙ‡ÙŠŰČ'' ŰŁÙˆÙ„Ű§"
-#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:513
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:518
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
msgstr "ŰšŰčŰŻ ŰȘŰșÙŠÙŠŰ± نوŰč Ű§Ù„ŰȘŰŹŰČŰŠŰ© %s, ÙŰ„Ù†Ùƒ ŰłŰȘ۳۟۱ كل Ű§Ù„ŰšÙŠŰ§Ù†Ű§ŰȘ Űčلى Ű§Ù„ŰȘŰŹŰČŰŠŰ©"
-#: ../../diskdrake/interactive.pm_.c:173
+#: ../../diskdrake/interactive.pm_.c:174
msgid "Choose a partition"
msgstr "Ű„ŰźŰȘ۱ ŰȘŰŹŰČŰŠŰ©"
-#: ../../diskdrake/interactive.pm_.c:173
+#: ../../diskdrake/interactive.pm_.c:174
msgid "Choose another partition"
msgstr "Ű„ŰźŰȘ۱ ێۧێ۩"
-#: ../../diskdrake/interactive.pm_.c:198
+#: ../../diskdrake/interactive.pm_.c:199
msgid "Exit"
msgstr "ŰźŰ±ÙˆŰŹ"
-#: ../../diskdrake/interactive.pm_.c:220
+#: ../../diskdrake/interactive.pm_.c:221
msgid "Toggle to expert mode"
msgstr "Ű§Ù„Ù†ŰȘÙ‚Ű§Ù„ Ű§Ù„Ù‰ ÙˆŰ¶ŰčÙŠŰ© Ű§Ù„ŰźŰšÙŠŰ±"
-#: ../../diskdrake/interactive.pm_.c:220
+#: ../../diskdrake/interactive.pm_.c:221
msgid "Toggle to normal mode"
msgstr "Ű§Ù„Ű§Ù†ŰȘÙ‚Ű§Ù„ Ű§Ù„Ù‰ Ű§Ù„ÙˆŰ¶Űč Ű§Ù„ŰčŰ§ŰŻÙŠ"
-#: ../../diskdrake/interactive.pm_.c:220
+#: ../../diskdrake/interactive.pm_.c:221
msgid "Undo"
msgstr "ŰȘ۱ۧۏŰč"
-#: ../../diskdrake/interactive.pm_.c:239
+#: ../../diskdrake/interactive.pm_.c:240
msgid "Continue anyway?"
msgstr "هل ŰȘŰ±ÙŠŰŻ Ű§Ù„Ű§ÙƒÙ…Ű§Ù„ Űčلى ŰŁÙŠ Ű­Ű§Ù„ŰŸ"
-#: ../../diskdrake/interactive.pm_.c:244
+#: ../../diskdrake/interactive.pm_.c:245
msgid "Quit without saving"
msgstr "Ű§Ù„ŰźŰ±ÙˆŰŹ ŰšŰŻÙˆÙ† Ű§Ù„Ű­ÙŰž"
-#: ../../diskdrake/interactive.pm_.c:244
+#: ../../diskdrake/interactive.pm_.c:245
msgid "Quit without writing the partition table?"
msgstr "هل ŰȘŰ±ÙŠŰŻ Ű§Ù„ŰźŰ±ÙˆŰŹ ŰšŰŻÙˆÙ† كŰȘۧۚ۩ ŰŹŰŻÙˆÙ„ Ű§Ù„ŰȘÙ‚ŰłÙŠÙ…ŰŸ"
-#: ../../diskdrake/interactive.pm_.c:249
+#: ../../diskdrake/interactive.pm_.c:250
msgid "Do you want to save /etc/fstab modifications"
msgstr "هل ŰȘŰ±ÙŠŰŻ Ű­ÙŰž ŰȘŰčŰŻÙŠÙ„Ű§ŰȘ /etc/fstab"
-#: ../../diskdrake/interactive.pm_.c:261
+#: ../../diskdrake/interactive.pm_.c:263
msgid "Auto allocate"
msgstr "ŰȘŰ­ŰŻÙŠŰŻ ŰąÙ„ÙŠ"
-#: ../../diskdrake/interactive.pm_.c:261
+#: ../../diskdrake/interactive.pm_.c:263
msgid "Clear all"
msgstr "ŰŁÙ…ŰłŰ­ Ű§Ù„ÙƒÙ„"
-#: ../../diskdrake/interactive.pm_.c:261
+#: ../../diskdrake/interactive.pm_.c:263
#: ../../install_steps_interactive.pm_.c:214
msgid "More"
msgstr "ŰŁÙƒŰ«Ű±"
-#: ../../diskdrake/interactive.pm_.c:264
+#: ../../diskdrake/interactive.pm_.c:267
msgid "Hard drive information"
msgstr "مŰčÙ„ÙˆÙ…Ű§ŰȘ Ű§Ù„Ù‚Ű±Ű” Ű§Ù„Ű”Ù„Űš"
-#: ../../diskdrake/interactive.pm_.c:294
+#: ../../diskdrake/interactive.pm_.c:298
msgid "All primary partitions are used"
msgstr "كل Ű§Ù„ŰȘŰŹŰČۊۧŰȘ Ű§Ù„Ű±ŰŠÙŠŰłÙŠŰ© Ù…ŰłŰȘŰźŰŻÙ…Ű©"
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:299
msgid "I can't add any more partition"
msgstr "Ù„Ű§ يمكنني Ű§Ű¶Ű§ÙŰ© ŰŁÙŠ ŰȘŰŹŰČŰŠŰ© ŰŁŰźŰ±Ù‰"
-#: ../../diskdrake/interactive.pm_.c:296
+#: ../../diskdrake/interactive.pm_.c:300
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
msgstr "لكي ŰȘمŰȘلك ŰȘŰŹŰČۊۧŰȘ ŰŁÙƒŰ«Ű±, ÙŠŰ±ŰŹÙ‰ Ű§Ù„Űșۧۥ ŰȘŰŹŰČŰŠŰ© كي ŰȘŰȘمكن من Űčمل ŰȘŰŹŰČŰŠŰ© ممŰȘŰŻŰ©"
-#: ../../diskdrake/interactive.pm_.c:306
+#: ../../diskdrake/interactive.pm_.c:310
msgid "Save partition table"
msgstr "Ű­ÙŰž ŰŹŰŻÙˆÙ„ Ű§Ù„ŰȘÙ‚ŰłÙŠÙ…"
-#: ../../diskdrake/interactive.pm_.c:307
+#: ../../diskdrake/interactive.pm_.c:311
msgid "Restore partition table"
msgstr "ۧ۳ŰȘŰčۧۯ۩ ŰŹŰŻÙˆÙ„ Ű§Ù„ŰȘÙ‚ŰłÙŠÙ…"
-#: ../../diskdrake/interactive.pm_.c:308
+#: ../../diskdrake/interactive.pm_.c:312
msgid "Rescue partition table"
msgstr "Ű„Ù†Ù‚Ű§Ű° ŰŹŰŻÙˆÙ„ Ű§Ù„ŰȘÙ‚ŰłÙŠÙ…"
-#: ../../diskdrake/interactive.pm_.c:310
+#: ../../diskdrake/interactive.pm_.c:314
msgid "Reload partition table"
msgstr "Ű„Űčۧۯ۩ ŰȘŰ­Ù…ÙŠÙ„ ŰŹŰŻÙˆÙ„ Ű§Ù„ŰȘÙ‚ŰłÙŠÙ…"
-#: ../../diskdrake/interactive.pm_.c:315
+#: ../../diskdrake/interactive.pm_.c:319
msgid "Removable media automounting"
msgstr "Ű§Ù„ŰȘŰŹÙ‡ÙŠŰČ Ű§Ù„ŰąÙ„ÙŠ Ù„Ù„ÙˆŰłŰ§ŰŠŰ· Ű§Ù„Ù‚Ű§ŰšÙ„Ű© Ù„Ù„Ű„ŰČŰ§Ù„Ű©"
-#: ../../diskdrake/interactive.pm_.c:324 ../../diskdrake/interactive.pm_.c:344
+#: ../../diskdrake/interactive.pm_.c:328 ../../diskdrake/interactive.pm_.c:348
msgid "Select file"
msgstr "ۧ۟ŰȘ۱ ملف"
-#: ../../diskdrake/interactive.pm_.c:331
+#: ../../diskdrake/interactive.pm_.c:335
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1696,11 +1728,11 @@ msgstr ""
"ŰŹŰŻÙˆÙ„ Ű§Ù„ŰȘÙ‚ŰłÙŠÙ… Ű§Ù„Ù…Ű­ÙÙˆŰž Ù„ÙŠŰł ŰšÙ†ÙŰł Ű§Ù„Ű­ŰŹÙ…\n"
"Ù„Ű§ ŰČلŰȘ ŰȘŰ±ÙŠŰŻ Ű§Ù„Ű„ÙƒÙ…Ű§Ù„ŰŸ"
-#: ../../diskdrake/interactive.pm_.c:345
+#: ../../diskdrake/interactive.pm_.c:349
msgid "Warning"
msgstr "ŰȘŰ­Ű°ÙŠŰ±"
-#: ../../diskdrake/interactive.pm_.c:346
+#: ../../diskdrake/interactive.pm_.c:350
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1708,112 +1740,104 @@ msgstr ""
"ŰŁŰŻŰźÙ„ Ù‚Ű±Ű”Ű§ Ù…Ű±Ù†Ű§ في Ű§Ù„ŰłÙˆŰ§Ù‚Ű©\n"
"كل Ű§Ù„ŰšÙŠŰ§Ù†Ű§ŰȘ Űčلى Ű§Ù„Ù‚Ű±Ű” ŰłŰȘÙ…Ű­Ù‰"
-#: ../../diskdrake/interactive.pm_.c:357
+#: ../../diskdrake/interactive.pm_.c:361
msgid "Trying to rescue partition table"
msgstr "ŰŹŰ§Ű±ÙŠ Ù…Ű­Ű§ÙˆÙ„Ű© Ű§Ù†Ù‚Ű§Ű° ŰŹŰŻÙˆÙ„ Ű§Ù„ŰȘÙ‚ŰłÙŠÙ…"
-#: ../../diskdrake/interactive.pm_.c:363
+#: ../../diskdrake/interactive.pm_.c:367
msgid "Detailed information"
msgstr "مŰčÙ„ÙˆÙ…Ű§ŰȘ Ù…ÙŰ”Ù‘Ù„Ű©"
-#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:652
+#: ../../diskdrake/interactive.pm_.c:382 ../../diskdrake/interactive.pm_.c:662
msgid "Resize"
msgstr "ŰȘŰșÙŠÙŠŰ± Ű§Ù„Ű­ŰŹÙ…"
-#: ../../diskdrake/interactive.pm_.c:379 ../../diskdrake/interactive.pm_.c:705
+#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/interactive.pm_.c:715
msgid "Move"
msgstr "نقل"
-#: ../../diskdrake/interactive.pm_.c:380
+#: ../../diskdrake/interactive.pm_.c:384
msgid "Format"
msgstr "ŰȘÙ†ŰłÙŠÙ‚"
-#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/smbnfs_gtk.pm_.c:82
-msgid "Mount"
-msgstr "ŰŹÙ‡ŰČ"
-
-#: ../../diskdrake/interactive.pm_.c:382
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Add to RAID"
msgstr "Ű§Ű¶Ű§ÙŰ© Ű§Ù„Ù‰ RAID"
-#: ../../diskdrake/interactive.pm_.c:383
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Add to LVM"
msgstr "Ű§Ű¶Ű§ÙŰ© Ű§Ù„Ù‰ LVM"
-#: ../../diskdrake/interactive.pm_.c:384 ../../diskdrake/smbnfs_gtk.pm_.c:81
-msgid "Unmount"
-msgstr "ۧŰČل Ű§Ù„ŰȘŰŹÙ‡ÙŠŰČ"
-
-#: ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/interactive.pm_.c:390
msgid "Remove from RAID"
msgstr "ۧŰČŰ§Ù„Ű© من RAID"
-#: ../../diskdrake/interactive.pm_.c:387
+#: ../../diskdrake/interactive.pm_.c:391
msgid "Remove from LVM"
msgstr "ۧŰČŰ§Ù„Ű© من LVM"
-#: ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/interactive.pm_.c:392
msgid "Modify RAID"
msgstr "ŰȘŰčŰŻÙŠÙ„ RAID"
-#: ../../diskdrake/interactive.pm_.c:389
+#: ../../diskdrake/interactive.pm_.c:393
msgid "Use for loopback"
msgstr "ۧ۳ŰȘŰźŰŻŰ§Ù… لـloopback"
-#: ../../diskdrake/interactive.pm_.c:428
+#: ../../diskdrake/interactive.pm_.c:433
msgid "Create a new partition"
msgstr "ۧŰčمل ŰȘŰŹŰČŰŠŰ© ŰŹŰŻÙŠŰŻŰ©"
-#: ../../diskdrake/interactive.pm_.c:431
+#: ../../diskdrake/interactive.pm_.c:436
msgid "Start sector: "
msgstr "Ù‚Ű·Ű§Űč Ű§Ù„ŰšŰŻŰ§ÙŠŰ©: "
-#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:805
+#: ../../diskdrake/interactive.pm_.c:438 ../../diskdrake/interactive.pm_.c:815
msgid "Size in MB: "
msgstr "Ű§Ù„Ű­ŰŹÙ… ŰšŰ§Ù„ÙŠŰșŰ§ŰšŰ§ÙŠŰȘ: "
-#: ../../diskdrake/interactive.pm_.c:434 ../../diskdrake/interactive.pm_.c:806
+#: ../../diskdrake/interactive.pm_.c:439 ../../diskdrake/interactive.pm_.c:816
msgid "Filesystem type: "
msgstr "نوŰč Ù†ŰžŰ§Ù… Ű§Ù„Ù…ÙŰ§ŰȘ: "
-#: ../../diskdrake/interactive.pm_.c:439
+#: ../../diskdrake/interactive.pm_.c:444
msgid "Preference: "
msgstr "Ű§Ù„ŰȘÙŰ¶ÙŠÙ„: "
-#: ../../diskdrake/interactive.pm_.c:464
+#: ../../diskdrake/interactive.pm_.c:469
msgid ""
"You can't create a new partition\n"
"(since you reached the maximal number of primary partitions).\n"
"First remove a primary partition and create an extended partition."
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:494
+#: ../../diskdrake/interactive.pm_.c:499
msgid "Remove the loopback file?"
msgstr "هل ŰȘŰ±ÙŠŰŻ ۧŰČŰ§Ù„Ű© ملف loopback۟"
-#: ../../diskdrake/interactive.pm_.c:519
+#: ../../diskdrake/interactive.pm_.c:529
msgid "Change partition type"
msgstr "ŰșÙŠŰ± نوŰč Ű§Ù„ŰȘŰŹŰČŰŠŰ©"
-#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:530 ../../diskdrake/removable.pm_.c:48
msgid "Which filesystem do you want?"
msgstr "ŰŁÙŠ Ù†ŰžŰ§Ù… Ù…Ù„ÙŰ§ŰȘ ŰȘŰ±ÙŠŰŻŰŸ"
-#: ../../diskdrake/interactive.pm_.c:526
+#: ../../diskdrake/interactive.pm_.c:536
msgid "Switching from ext2 to ext3"
msgstr "ŰŹŰ§Ű±ÙŠ Ű§Ù„ŰȘŰșÙŠÙŠŰ± من ext2 Ű§Ù„Ù‰ ext3"
-#: ../../diskdrake/interactive.pm_.c:556
+#: ../../diskdrake/interactive.pm_.c:566
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "ŰŁÙŠÙ† ŰȘŰ±ÙŠŰŻ ŰȘŰŹÙ‡ÙŠŰČ Ù…Ù„Ù loopback %s۟"
-#: ../../diskdrake/interactive.pm_.c:557
+#: ../../diskdrake/interactive.pm_.c:567
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "ŰŁÙŠÙ† ŰȘŰ±ÙŠŰŻ ŰšŰŹÙ‡ÙŠŰČ Ű§Ù„ŰŹÙ‡Ű§ŰČ%s۟"
-#: ../../diskdrake/interactive.pm_.c:563
+#: ../../diskdrake/interactive.pm_.c:573
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1821,135 +1845,135 @@ msgstr ""
"لم يمكن ۧŰČŰ§Ù„Ű© ŰȘŰčيين Ù†Ù‚Ű·Ű© Ű§Ù„ŰȘŰŹÙ‡ÙŠŰČ Ù†ŰžŰ±Ű§ Ù„ŰŁÙ† Ù‡Ű°Ù‡ Ű§Ù„ŰȘŰŹŰČŰŠŰ© Ù…ŰłŰȘŰźŰŻÙ…Ű© لـloop back.\n"
"قم ۚۄŰČŰ§Ù„Ű© Ű§Ù„Ù€loopback ŰŁÙˆÙ„Ű§"
-#: ../../diskdrake/interactive.pm_.c:584
+#: ../../diskdrake/interactive.pm_.c:594
#, fuzzy, c-format
msgid "Where do you want to mount %s?"
msgstr "ŰŁÙŠÙ† ŰȘŰ±ÙŠŰŻ ŰšŰŹÙ‡ÙŠŰČ Ű§Ù„ŰŹÙ‡Ű§ŰČ%s۟"
-#: ../../diskdrake/interactive.pm_.c:608
+#: ../../diskdrake/interactive.pm_.c:618
msgid "Computing FAT filesystem bounds"
msgstr "ŰŹŰ§Ű±ÙŠ ۭ۳ۧۚ Ű±ÙˆŰ§ŰšŰ· Ù†ŰžŰ§Ù… Ù…Ù„ÙŰ§ŰȘ FAT"
-#: ../../diskdrake/interactive.pm_.c:608 ../../diskdrake/interactive.pm_.c:667
-#: ../../install_interactive.pm_.c:131
+#: ../../diskdrake/interactive.pm_.c:618 ../../diskdrake/interactive.pm_.c:677
+#: ../../install_interactive.pm_.c:133
msgid "Resizing"
msgstr "ŰŹŰ§Ű±ÙŠ ŰȘŰșÙŠÙŠŰ± Ű§Ù„Ű­ŰŹÙ…"
-#: ../../diskdrake/interactive.pm_.c:640
+#: ../../diskdrake/interactive.pm_.c:650
msgid "This partition is not resizeable"
msgstr "Ù‡Ű°Ű§ Ű§Ù„ŰȘÙ‚ŰłÙŠÙ… ŰșÙŠŰ± Ù‚Ű§ŰšÙ„ لŰȘŰșÙŠÙŠŰ± Ű§Ù„Ű­ŰŹÙ…"
-#: ../../diskdrake/interactive.pm_.c:645
+#: ../../diskdrake/interactive.pm_.c:655
msgid "All data on this partition should be backed-up"
msgstr "كل Ű§Ù„ŰšÙŠŰ§Ù†Ű§ŰȘ Űčلى Ù‡Ű°Ù‡ Ű§Ù„ŰȘŰŹŰČŰŠŰ© ÙŠŰŹŰš Ű­ÙŰžÙ‡Ű§ ۭۧŰȘÙŠŰ§Ű·ÙŠŰ§"
-#: ../../diskdrake/interactive.pm_.c:647
+#: ../../diskdrake/interactive.pm_.c:657
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr "ŰšŰčŰŻ ŰȘŰșÙŠÙŠŰ± Ű­ŰŹÙ… Ű§Ù„ŰȘŰŹŰČŰŠŰ© %s, ÙŰ„Ù† كل Ű§Ù„ŰšÙŠŰ§Ù†Ű§ŰȘ Űčلى Ù‡Ű°Ù‡ Ű§Ù„ŰȘŰŹŰČŰŠŰ© ŰłŰȘÙÙ‚ŰŻ"
-#: ../../diskdrake/interactive.pm_.c:652
+#: ../../diskdrake/interactive.pm_.c:662
msgid "Choose the new size"
msgstr "ۧ۟ŰȘ۱ Ű§Ù„Ű­ŰŹÙ… Ű§Ù„ŰŹŰŻÙŠŰŻ"
-#: ../../diskdrake/interactive.pm_.c:653
+#: ../../diskdrake/interactive.pm_.c:663
msgid "New size in MB: "
msgstr "Ű§Ù„Ű­ŰŹÙ… Ű§Ù„ŰŹŰŻÙŠŰŻ ŰšŰ§Ù„Ù…ÙŠŰșŰ§ŰšŰ§ÙŠŰȘ: "
-#: ../../diskdrake/interactive.pm_.c:706
+#: ../../diskdrake/interactive.pm_.c:716
msgid "Which disk do you want to move it to?"
msgstr "ŰŁÙŠ Ù‚Ű±Ű” ŰȘŰ±ÙŠŰŻ Ù†Ù‚Ù„Ù‡ŰŸ"
-#: ../../diskdrake/interactive.pm_.c:707
+#: ../../diskdrake/interactive.pm_.c:717
msgid "Sector"
msgstr "Ű§Ù„Ù‚Ű·Ű§Űč"
-#: ../../diskdrake/interactive.pm_.c:708
+#: ../../diskdrake/interactive.pm_.c:718
msgid "Which sector do you want to move it to?"
msgstr "ŰŁÙŠ Ù‚Ű·Ű§Űč ŰȘŰ±ÙŠŰŻ Ù†Ù‚Ù„Ù‡ŰŸ"
-#: ../../diskdrake/interactive.pm_.c:711
+#: ../../diskdrake/interactive.pm_.c:721
msgid "Moving"
msgstr "ŰŹŰ§Ű±ÙŠ Ű§Ù„Ù†Ù‚Ù„"
-#: ../../diskdrake/interactive.pm_.c:711
+#: ../../diskdrake/interactive.pm_.c:721
msgid "Moving partition..."
msgstr "ŰŹŰ§Ű±ÙŠ نقل Ű§Ù„ŰȘŰŹŰČŰŠŰ©..."
-#: ../../diskdrake/interactive.pm_.c:728
+#: ../../diskdrake/interactive.pm_.c:738
msgid "Choose an existing RAID to add to"
msgstr "ۧ۟ŰȘ۱ RAID Ù…ÙˆŰŹÙˆŰŻ Ù„Ù„Ű§Ű¶Ű§ÙŰ©"
-#: ../../diskdrake/interactive.pm_.c:729 ../../diskdrake/interactive.pm_.c:746
+#: ../../diskdrake/interactive.pm_.c:739 ../../diskdrake/interactive.pm_.c:756
msgid "new"
msgstr "ŰŹŰŻÙŠŰŻ"
-#: ../../diskdrake/interactive.pm_.c:744
+#: ../../diskdrake/interactive.pm_.c:754
msgid "Choose an existing LVM to add to"
msgstr "ۧ۟ŰȘ۱ LVM l,ŰŹÙˆŰŻ Ù„Ù„Ű§Ű¶Ű§ÙŰ©"
-#: ../../diskdrake/interactive.pm_.c:749
+#: ../../diskdrake/interactive.pm_.c:759
msgid "LVM name?"
msgstr "Ű§ŰłÙ… LVM۟"
-#: ../../diskdrake/interactive.pm_.c:790
+#: ../../diskdrake/interactive.pm_.c:800
msgid "This partition can't be used for loopback"
msgstr "Ù‡Ű°Ù‡ Ű§Ù„ŰȘŰŹŰČŰŠŰ© Ù„Ű§ يمكن ۧ۳ŰȘŰźŰŻŰ§Ù…Ù‡Ű§ لـloopback"
-#: ../../diskdrake/interactive.pm_.c:803
+#: ../../diskdrake/interactive.pm_.c:813
msgid "Loopback"
msgstr "Loopback"
-#: ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:814
msgid "Loopback file name: "
msgstr "Ű§ŰłÙ… ملف Loopback: "
-#: ../../diskdrake/interactive.pm_.c:809
+#: ../../diskdrake/interactive.pm_.c:819
msgid "Give a file name"
msgstr "ۧŰčŰ· Ű§ŰłÙ… ملف"
-#: ../../diskdrake/interactive.pm_.c:812
+#: ../../diskdrake/interactive.pm_.c:822
msgid "File already used by another loopback, choose another one"
msgstr "Ù‡Ű°Ű§ Ű§Ù„Ù…Ù„Ù Ù…ŰłŰȘŰźŰŻÙ… من loopback ŰŁŰźŰ±Ù‰, ۧ۟ŰȘ۱ Ù…Ù„ÙŰ§ ۹۟۱"
-#: ../../diskdrake/interactive.pm_.c:813
+#: ../../diskdrake/interactive.pm_.c:823
msgid "File already exists. Use it?"
msgstr "Ű§Ù„Ù…Ù„Ù Ù…ÙˆŰŹÙˆŰŻ Ù…ŰłŰšÙ‚Ű§, هل ŰȘŰ±ÙŠŰŻ ۧ۳ŰȘŰźŰŻŰ§Ù…Ù‡ŰŸ"
-#: ../../diskdrake/interactive.pm_.c:836
+#: ../../diskdrake/interactive.pm_.c:846
msgid "Mount options"
msgstr "ŰźÙŠŰ§Ű±Ű§ŰȘ Ű§Ù„ŰȘŰŹÙ‡ÙŠŰČ"
-#: ../../diskdrake/interactive.pm_.c:843
+#: ../../diskdrake/interactive.pm_.c:853
msgid "Various"
msgstr "مŰȘنوŰčŰ©"
-#: ../../diskdrake/interactive.pm_.c:907 ../../standalone/drakfloppy_.c:103
+#: ../../diskdrake/interactive.pm_.c:917 ../../standalone/drakfloppy_.c:103
msgid "device"
msgstr "ÙˆŰ­ŰŻŰ©"
-#: ../../diskdrake/interactive.pm_.c:908
+#: ../../diskdrake/interactive.pm_.c:918
msgid "level"
msgstr "Ű§Ù„Ù…ŰłŰȘوى"
-#: ../../diskdrake/interactive.pm_.c:909
+#: ../../diskdrake/interactive.pm_.c:919
msgid "chunk size"
msgstr "Ű­ŰŹÙ… chunk"
-#: ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:934
msgid "Be careful: this operation is dangerous."
msgstr "كن ۭ۰۱ۧ: Ù‡Ű°Ù‡ Ű§Ù„ŰčÙ…Ù„ÙŠŰ© ŰźŰ·ÙŠŰ±Ű©"
-#: ../../diskdrake/interactive.pm_.c:939
+#: ../../diskdrake/interactive.pm_.c:949
msgid "What type of partitioning?"
msgstr "ŰŁÙŠ نوŰč من Ű§Ù„ŰȘŰŹŰČŰŠŰ©ŰŸ"
-#: ../../diskdrake/interactive.pm_.c:955
+#: ../../diskdrake/interactive.pm_.c:965
#, fuzzy, c-format
msgid "The package %s is needed. Install it?"
msgstr "Ű§Ù„Ű­ŰČÙ…Ű© %s ÙŠŰŹŰš ŰŁÙ† ŰȘÙŰ«ŰšÙ‘ŰȘ. هل ŰȘŰ±ÙŠŰŻ ŰȘŰ«ŰšÙŠŰȘÙ‡Ű§ŰŸ"
-#: ../../diskdrake/interactive.pm_.c:969
+#: ../../diskdrake/interactive.pm_.c:979
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -1957,7 +1981,7 @@ msgid ""
"need /boot"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:973
+#: ../../diskdrake/interactive.pm_.c:983
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -1965,51 +1989,51 @@ msgid ""
"If you plan to use the LILO boot manager, be careful to add a /boot partition"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:979
+#: ../../diskdrake/interactive.pm_.c:989
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
"So be careful to add a /boot partition"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:999
+#: ../../diskdrake/interactive.pm_.c:1009
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "ŰŹŰŻÙˆÙ„ ۧŰȘŰȘÙ‚ŰłÙŠÙ… Ù„Ù„Ù‚Ű±Ű” %s ŰłÙŠŰȘم كŰȘۧۚŰȘه Ű§Ù„Ù‰ Ű§Ù„Ù‚Ű±Ű”!"
-#: ../../diskdrake/interactive.pm_.c:1003
+#: ../../diskdrake/interactive.pm_.c:1013
msgid "You'll need to reboot before the modification can take place"
msgstr "ŰłŰȘŰ­ŰȘۧۏ Ű§Ù„Ù‰ ۧŰčۧۯ۩ Ű§Ù„ŰȘŰŽŰșيل Ù‚ŰšÙ„ ŰŁÙ† يŰȘم ŰȘفŰčيل Ű§Ù„ŰȘŰčŰŻÙŠÙ„Ű§ŰȘ"
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1024
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr "ŰšŰčŰŻ ŰȘÙ‡ÙŠŰŠŰ© Ű§Ù„ŰȘÙ‚ŰłÙŠÙ… %s, ÙŰ„Ù† كل Ű§Ù„ŰšÙŠŰ§Ù†Ű§ŰȘ Ű§Ù„Ù…ÙˆŰŹÙˆŰŻŰ© Űčلى Ű§Ù„ŰȘŰŹŰČŰŠŰ© ŰłŰȘÙÙ‚ŰŻ"
-#: ../../diskdrake/interactive.pm_.c:1016
+#: ../../diskdrake/interactive.pm_.c:1026
msgid "Formatting"
msgstr "ŰŹŰ§Ű±ÙŠ Ű§Ù„ŰȘÙ‡ÙŠŰŠŰ©"
-#: ../../diskdrake/interactive.pm_.c:1017
+#: ../../diskdrake/interactive.pm_.c:1027
#, c-format
msgid "Formatting loopback file %s"
msgstr "ŰŹŰ§Ű±ÙŠ ŰȘÙ‡ÙŠŰŠŰ© ملف loopback: %s"
-#: ../../diskdrake/interactive.pm_.c:1018
-#: ../../install_steps_interactive.pm_.c:476
+#: ../../diskdrake/interactive.pm_.c:1028
+#: ../../install_steps_interactive.pm_.c:459
#, c-format
msgid "Formatting partition %s"
msgstr "ŰŹŰ§Ű±ÙŠ ŰȘÙ‡ÙŠŰŠŰ© Ű§Ù„ŰȘŰŹŰČŰŠŰ© %s"
-#: ../../diskdrake/interactive.pm_.c:1029
+#: ../../diskdrake/interactive.pm_.c:1039
msgid "Hide files"
msgstr "۟ۚۥ Ű§Ù„Ù…Ù„ÙŰ§ŰȘ"
-#: ../../diskdrake/interactive.pm_.c:1029
+#: ../../diskdrake/interactive.pm_.c:1039
msgid "Move files to the new partition"
msgstr "Ű§Ù†Ù‚Ù„ Ű§Ù„Ù…Ù„ÙŰ§ŰȘ Ű§Ù„Ù‰ ŰȘŰŹŰČŰŠŰ© ŰŹŰŻÙŠŰŻŰ©"
-#: ../../diskdrake/interactive.pm_.c:1030
+#: ../../diskdrake/interactive.pm_.c:1040
#, c-format
msgid ""
"Directory %s already contains data\n"
@@ -2018,116 +2042,116 @@ msgstr ""
"Ű§Ù„ŰŻÙ„ÙŠÙ„ %s ÙŠŰ­ŰȘوي Ù…ŰłŰšÙ‚Ű§ Űčلى ŰšŰč۶ Ű§Ù„ŰšÙŠŰ§Ù†Ű§ŰȘ\n"
"(%s)"
-#: ../../diskdrake/interactive.pm_.c:1041
+#: ../../diskdrake/interactive.pm_.c:1051
msgid "Moving files to the new partition"
msgstr "ŰŹŰ§Ű±ÙŠ نقل Ű§Ù„Ù…Ù„ÙŰ§ŰȘ Ű§Ù„Ù‰ Ű§Ù„ŰȘŰŹŰČŰŠŰ© Ű§Ù„ŰŹŰŻÙŠŰŻŰ©"
-#: ../../diskdrake/interactive.pm_.c:1045
+#: ../../diskdrake/interactive.pm_.c:1055
#, c-format
msgid "Copying %s"
msgstr "ŰŹŰ§Ű±ÙŠ Ù†ŰłŰź %s"
-#: ../../diskdrake/interactive.pm_.c:1049
+#: ../../diskdrake/interactive.pm_.c:1059
#, c-format
msgid "Removing %s"
msgstr "ŰŹŰ§Ű±ÙŠ ۧŰČŰ§Ù„Ű© %s"
-#: ../../diskdrake/interactive.pm_.c:1059
+#: ../../diskdrake/interactive.pm_.c:1069
#, c-format
msgid "partition %s is now known as %s"
msgstr "Ű§Ù„ŰȘŰŹŰČŰŠŰ© %s مŰčŰ±ÙˆÙŰ© Ű§Ù„ŰąÙ† ŰšŰ§Ù„Ű„ŰłÙ… %s"
-#: ../../diskdrake/interactive.pm_.c:1080
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1090
+#: ../../diskdrake/interactive.pm_.c:1149
msgid "Device: "
msgstr "Ű§Ù„ŰŹÙ‡Ű§ŰČ: "
-#: ../../diskdrake/interactive.pm_.c:1081
+#: ../../diskdrake/interactive.pm_.c:1091
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "Ű­Ű±Ù ŰłÙˆŰ§Ù‚Ű© DOS: %s (Ù…ŰŹŰ±ŰŻ ŰȘŰźÙ…ÙŠÙ†)\n"
-#: ../../diskdrake/interactive.pm_.c:1085
-#: ../../diskdrake/interactive.pm_.c:1093
-#: ../../diskdrake/interactive.pm_.c:1157
+#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1103
+#: ../../diskdrake/interactive.pm_.c:1168
msgid "Type: "
msgstr "Ű§Ù„Ù†ÙˆŰč: "
-#: ../../diskdrake/interactive.pm_.c:1089
+#: ../../diskdrake/interactive.pm_.c:1099
msgid "Name: "
msgstr "Ű§Ù„Ű§ŰłÙ…: "
-#: ../../diskdrake/interactive.pm_.c:1097
+#: ../../diskdrake/interactive.pm_.c:1107
#, c-format
msgid "Start: sector %s\n"
msgstr "Ű§Ù„ŰšŰŻŰ§ÙŠŰ©: Ù‚Ű·Ű§Űč %s\n"
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1108
#, c-format
msgid "Size: %s"
msgstr "Ű§Ù„Ű­ŰŹÙ…: %s"
-#: ../../diskdrake/interactive.pm_.c:1100
+#: ../../diskdrake/interactive.pm_.c:1110
#, c-format
msgid ", %s sectors"
msgstr ", %s Ù‚Ű·Ű§Űč"
-#: ../../diskdrake/interactive.pm_.c:1102
+#: ../../diskdrake/interactive.pm_.c:1112
#, c-format
msgid "Cylinder %d to %d\n"
msgstr "Ű§Ù„Ű§ŰłŰ·ÙˆŰ§Ù†Ű© %d Ű§Ù„Ù‰ %d\n"
-#: ../../diskdrake/interactive.pm_.c:1103
+#: ../../diskdrake/interactive.pm_.c:1113
msgid "Formatted\n"
msgstr "Ù…ŰŹÙ‡ŰČ\n"
-#: ../../diskdrake/interactive.pm_.c:1104
+#: ../../diskdrake/interactive.pm_.c:1114
msgid "Not formatted\n"
msgstr "ŰșÙŠŰ± Ù…ŰŹÙ‡ŰČ\n"
-#: ../../diskdrake/interactive.pm_.c:1105
+#: ../../diskdrake/interactive.pm_.c:1115
msgid "Mounted\n"
msgstr "Ù…Ű­Ù…Ù„\n"
-#: ../../diskdrake/interactive.pm_.c:1106
+#: ../../diskdrake/interactive.pm_.c:1116
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1108
+#: ../../diskdrake/interactive.pm_.c:1118
#, c-format
msgid ""
"Loopback file(s):\n"
" %s\n"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1109
+#: ../../diskdrake/interactive.pm_.c:1119
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1111
+#: ../../diskdrake/interactive.pm_.c:1121
#, c-format
msgid "Level %s\n"
msgstr "Ű§Ù„Ù…ŰłŰȘوى %s\n"
-#: ../../diskdrake/interactive.pm_.c:1112
+#: ../../diskdrake/interactive.pm_.c:1122
#, c-format
msgid "Chunk size %s\n"
msgstr "Ű­ŰŹÙ… Chunk %s\n"
-#: ../../diskdrake/interactive.pm_.c:1113
+#: ../../diskdrake/interactive.pm_.c:1123
#, c-format
msgid "RAID-disks %s\n"
msgstr "ŰŁÙ‚Ű±Ű§Ű” RAID %s\n"
-#: ../../diskdrake/interactive.pm_.c:1115
+#: ../../diskdrake/interactive.pm_.c:1125
#, c-format
msgid "Loopback file name: %s"
msgstr "Ű§ŰłÙ… ملف Loopback: %s"
-#: ../../diskdrake/interactive.pm_.c:1118
+#: ../../diskdrake/interactive.pm_.c:1128
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -2135,7 +2159,7 @@ msgid ""
"probably leave it alone.\n"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1121
+#: ../../diskdrake/interactive.pm_.c:1131
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2143,57 +2167,61 @@ msgid ""
"dual-booting your system.\n"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1140
+#: ../../diskdrake/interactive.pm_.c:1150
+msgid "Read-only"
+msgstr ""
+
+#: ../../diskdrake/interactive.pm_.c:1151
#, c-format
msgid "Size: %s\n"
msgstr "Ű§Ù„Ű­ŰŹÙ…: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1141
+#: ../../diskdrake/interactive.pm_.c:1152
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Ű§Ù„Ù‡Ù†ŰŻŰłŰ©: %s Ű§ŰłŰ·ÙˆŰ§Ù†Ű©, %s ۱ۣ۳, %s Ù‚Ű·Ű§Űč\n"
-#: ../../diskdrake/interactive.pm_.c:1142
+#: ../../diskdrake/interactive.pm_.c:1153
msgid "Info: "
msgstr "مŰčÙ„ÙˆÙ…Ű§ŰȘ: "
-#: ../../diskdrake/interactive.pm_.c:1143
+#: ../../diskdrake/interactive.pm_.c:1154
#, c-format
msgid "LVM-disks %s\n"
msgstr "ŰŁÙ‚Ű±Ű§Ű” LVM %s\n"
-#: ../../diskdrake/interactive.pm_.c:1144
+#: ../../diskdrake/interactive.pm_.c:1155
#, c-format
msgid "Partition table type: %s\n"
msgstr "نوŰč ŰŹŰŻÙˆÙ„ Ű§Ù„ŰȘÙ‚ŰłÙŠÙ…: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1145
+#: ../../diskdrake/interactive.pm_.c:1156
#, fuzzy, c-format
msgid "on channel %d id %d\n"
msgstr "Űčلى bus %d id %d\n"
-#: ../../diskdrake/interactive.pm_.c:1175
+#: ../../diskdrake/interactive.pm_.c:1186
msgid "Filesystem encryption key"
msgstr "مفŰȘۭۧ ŰȘŰŽÙÙŠŰ± Ù†ŰžŰ§Ù… Ű§Ù„Ù…Ù„ÙŰ§ŰȘ"
-#: ../../diskdrake/interactive.pm_.c:1176
+#: ../../diskdrake/interactive.pm_.c:1187
msgid "Choose your filesystem encryption key"
msgstr "ۧ۟ŰȘ۱ مفŰȘۭۧ ŰȘŰŽÙÙŠŰ± Ù†ŰžŰ§Ù… Ű§Ù„Ù…Ù„ÙŰ§ŰȘ"
-#: ../../diskdrake/interactive.pm_.c:1179
+#: ../../diskdrake/interactive.pm_.c:1190
#, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr "مفŰȘۭۧ Ű§Ù„ŰȘŰŽÙÙŠŰ± Ù‡Ű°Ű§ ŰšŰłÙŠŰ· ۏۯۧ (ÙŠŰŹŰš ŰŁÙ† يكون %d Ű­Ű±ÙŰ§ Űčلى Ű§Ù„ŰŁÙ‚Ù„)"
-#: ../../diskdrake/interactive.pm_.c:1180
+#: ../../diskdrake/interactive.pm_.c:1191
msgid "The encryption keys do not match"
msgstr "Ù…ÙŰ§ŰȘÙŠŰ­ Ű§Ù„ŰȘŰŽÙÙŠŰ± ŰșÙŠŰ± مŰȘŰ·Ű§ŰšÙ‚Ű©"
-#: ../../diskdrake/interactive.pm_.c:1183
+#: ../../diskdrake/interactive.pm_.c:1194
msgid "Encryption key"
msgstr "Ù…ÙŰ§ŰȘŰ­ Ű§Ù„ŰȘŰŽÙÙŠŰ±"
-#: ../../diskdrake/interactive.pm_.c:1184
+#: ../../diskdrake/interactive.pm_.c:1195
msgid "Encryption key (again)"
msgstr "Ù…ÙŰ§ŰȘŰ­ Ű§Ù„ŰȘŰŽÙÙŠŰ± (Ù…Ű±Ű© ŰŁŰźŰ±Ù‰)"
@@ -2230,7 +2258,7 @@ msgid ""
"Please enter your username, password and domain name to access this host."
msgstr ""
-#: ../../diskdrake/smbnfs_gtk.pm_.c:178
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3527
#, fuzzy
msgid "Username"
msgstr "Ű§ŰłÙ… Ű§Ù„Ù…ŰłŰȘŰźŰŻÙ…"
@@ -2244,23 +2272,23 @@ msgstr "NIS Domain"
msgid "Search servers"
msgstr "ۭۧۚ۫ في ŰŁŰŹÙ‡ŰČŰ© Ű§Ù„ŰźŰ§ŰŻÙ…"
-#: ../../fs.pm_.c:552 ../../fs.pm_.c:562 ../../fs.pm_.c:566 ../../fs.pm_.c:570
-#: ../../fs.pm_.c:574 ../../fs.pm_.c:578
+#: ../../fs.pm_.c:544 ../../fs.pm_.c:554 ../../fs.pm_.c:558 ../../fs.pm_.c:562
+#: ../../fs.pm_.c:566 ../../fs.pm_.c:570
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s ŰȘŰŹÙ‡ÙŠŰČ %s Ù‚ŰŻ ÙŰŽÙ„"
-#: ../../fs.pm_.c:615
+#: ../../fs.pm_.c:607
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "Ù„Ű§ ŰŁŰčŰ±Ù كيف ŰŁŰŹÙ‡ŰČ %s في Ű§Ù„Ù†ÙˆŰč %s"
-#: ../../fs.pm_.c:687 ../../fs.pm_.c:731
+#: ../../fs.pm_.c:681 ../../fs.pm_.c:724
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../fs.pm_.c:746 ../../partition_table.pm_.c:602
+#: ../../fs.pm_.c:739 ../../partition_table.pm_.c:598
#, c-format
msgid "error unmounting %s: %s"
msgstr ""
@@ -2277,258 +2305,318 @@ msgstr "مŰč /usr"
msgid "server"
msgstr "ŰźŰ§ŰŻÙ…"
-#: ../../fsedit.pm_.c:472
+#: ../../fsedit.pm_.c:240
+#, c-format
+msgid ""
+"I can't read the partition table of device %s, it's too corrupted for me :(\n"
+"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
+"The other solution is to not allow DrakX to modify the partition table.\n"
+"(the error is %s)\n"
+"\n"
+"Do you agree to loose all the partitions?\n"
+msgstr ""
+
+#: ../../fsedit.pm_.c:501
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr ""
-#: ../../fsedit.pm_.c:473
+#: ../../fsedit.pm_.c:502
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr ""
-#: ../../fsedit.pm_.c:492
+#: ../../fsedit.pm_.c:521
msgid "Mount points must begin with a leading /"
msgstr ""
-#: ../../fsedit.pm_.c:493
+#: ../../fsedit.pm_.c:522
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr ""
-#: ../../fsedit.pm_.c:497
+#: ../../fsedit.pm_.c:526
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr ""
-#: ../../fsedit.pm_.c:499
+#: ../../fsedit.pm_.c:528
msgid "This directory should remain within the root filesystem"
msgstr ""
-#: ../../fsedit.pm_.c:501
+#: ../../fsedit.pm_.c:530
msgid ""
"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
"point\n"
msgstr ""
-#: ../../fsedit.pm_.c:503
+#: ../../fsedit.pm_.c:532
#, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr ""
-#: ../../fsedit.pm_.c:570
+#: ../../fsedit.pm_.c:599
msgid "Not enough free space for auto-allocating"
msgstr "Ù„Ű§ ŰȘÙˆŰŹŰŻ Ù…ŰłŰ§Ű­Ű© ÙƒŰ§ÙÙŠŰ© للŰȘŰ­ŰŻÙŠŰŻ Ű§Ù„ŰąÙ„ÙŠ"
-#: ../../fsedit.pm_.c:572
+#: ../../fsedit.pm_.c:601
msgid "Nothing to do"
msgstr "Ù„Ű§ ŰŽÙŠŰŠ للŰčمل"
-#: ../../fsedit.pm_.c:665
+#: ../../fsedit.pm_.c:694
#, c-format
msgid "Error opening %s for writing: %s"
msgstr " فŰȘŰ­Ű© Ű§Ù„ŰźŰ·Ű„ %s للكŰȘۧۚ۩ :%s"
-#: ../../fsedit.pm_.c:750
+#: ../../harddrake/sound.pm_.c:155
+msgid "No alternative driver"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:156
+#, c-format
+msgid "There's no known OSS/ALSA alternative driver for your sound card (%s)"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:158
+#, fuzzy
+msgid "Sound configuration"
+msgstr " CUPS ۧŰčۯۧۯۧŰȘ"
+
+#: ../../harddrake/sound.pm_.c:159
+#, c-format
msgid ""
-"An error occurred - no valid devices were found on which to create new "
-"filesystems. Please check your hardware for the cause of this problem"
+"Here you can select an alternative driver (either OSS or ALSA) for your "
+"sound card (%s)"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:162
+#, fuzzy
+msgid "Driver:"
+msgstr "Ű§Ù„Ù…Ű­Ű±Ùƒ"
+
+#: ../../harddrake/sound.pm_.c:173
+#, fuzzy
+msgid "No known driver"
+msgstr "Ù…ŰŽŰșل X"
+
+#: ../../harddrake/sound.pm_.c:174
+#, c-format
+msgid "There's no known driver for your sound card (%s)"
msgstr ""
-#: ../../fsedit.pm_.c:773
-msgid "You don't have any partitions!"
-msgstr "Ù„ÙŠŰł Ù„ŰŻÙŠÙƒ ŰŁÙŠÙ‘ ÙÙˆŰ§Ű”Ù„ ! "
+#: ../../harddrake/sound.pm_.c:177
+#, fuzzy
+msgid "Unkown driver"
+msgstr "ŰșÙŠŰ± مŰčŰ±ÙˆÙ"
-#: ../../harddrake/ui.pm_.c:15
+#: ../../harddrake/sound.pm_.c:178
+#, c-format
+msgid ""
+"The \"%s\" driver for your sound card is unlisted\n"
+"\n"
+"Please send the output of the \"lspcidrake -v\" command to\n"
+"<install at mandrakesoft dot com>\n"
+"with subject: unlisted sound driver \"%s\""
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:16
#, fuzzy
msgid "Model"
msgstr "ÙˆŰ­ŰŻŰ©"
-#: ../../harddrake/ui.pm_.c:15
+#: ../../harddrake/ui.pm_.c:16
#, fuzzy
msgid "hard disk model"
msgstr "Card mem (DMA)"
-#: ../../harddrake/ui.pm_.c:16
+#: ../../harddrake/ui.pm_.c:17
#, fuzzy
msgid "Channel"
msgstr "Ű§Ù„Űșۧۥ"
-#: ../../harddrake/ui.pm_.c:16
+#: ../../harddrake/ui.pm_.c:17
msgid "EIDE/SCSI channel"
msgstr ""
-#: ../../harddrake/ui.pm_.c:18
+#: ../../harddrake/ui.pm_.c:19
msgid "Bus"
msgstr ""
-#: ../../harddrake/ui.pm_.c:19
+#: ../../harddrake/ui.pm_.c:20
msgid ""
"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
msgstr ""
-#: ../../harddrake/ui.pm_.c:20
+#: ../../harddrake/ui.pm_.c:21
msgid "Module"
msgstr "ÙˆŰ­ŰŻŰ©"
-#: ../../harddrake/ui.pm_.c:20
+#: ../../harddrake/ui.pm_.c:21
msgid "the module of the GNU/Linux kernel that handle that device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:21
+#: ../../harddrake/ui.pm_.c:22
msgid "Media class"
msgstr ""
-#: ../../harddrake/ui.pm_.c:21
+#: ../../harddrake/ui.pm_.c:22
msgid "class of hardware device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:22 ../../printerdrake.pm_.c:1404
+#: ../../harddrake/ui.pm_.c:23 ../../printerdrake.pm_.c:1517
msgid "Description"
msgstr "Ű§Ù„ÙˆŰ”Ù"
-#: ../../harddrake/ui.pm_.c:22
+#: ../../harddrake/ui.pm_.c:23
msgid "this field describe the device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:24
+#: ../../harddrake/ui.pm_.c:25
#, fuzzy
msgid "Bus identification"
msgstr "Ű§Ù„ŰȘŰ­Ù‚Ù‚"
-#: ../../harddrake/ui.pm_.c:25
+#: ../../harddrake/ui.pm_.c:26
msgid ""
-"- PCI and USB devices : this list the vendor, device, subvendor and "
-"subdevice PCI/USB ids"
+"- PCI and USB devices: this list the vendor, device, subvendor and subdevice "
+"PCI/USB ids"
msgstr ""
-#: ../../harddrake/ui.pm_.c:27
+#: ../../harddrake/ui.pm_.c:28
msgid "Location on the bus"
msgstr ""
-#: ../../harddrake/ui.pm_.c:28
+#: ../../harddrake/ui.pm_.c:29
msgid ""
"- pci devices: this gives the PCI slot, device and function of this card\n"
"- eide devices: the device is either a slave or a master device\n"
"- scsi devices: the scsi bus and the scsi device ids"
msgstr ""
-#: ../../harddrake/ui.pm_.c:31
+#: ../../harddrake/ui.pm_.c:32
#, fuzzy
msgid "Old device file"
msgstr "ۧ۟ŰȘ۱ ملف"
-#: ../../harddrake/ui.pm_.c:32
+#: ../../harddrake/ui.pm_.c:33
msgid "old static device name used in dev package"
msgstr ""
-#: ../../harddrake/ui.pm_.c:33
+#: ../../harddrake/ui.pm_.c:34
#, fuzzy
msgid "New devfs device"
msgstr "Gateway device"
-#: ../../harddrake/ui.pm_.c:34
+#: ../../harddrake/ui.pm_.c:35
msgid "new dinamic device name generated by incore kernel devfs"
msgstr ""
-#: ../../harddrake/ui.pm_.c:35
+#: ../../harddrake/ui.pm_.c:36
#, fuzzy
msgid "Number of buttons"
msgstr "2 buttons"
-#: ../../harddrake/ui.pm_.c:36
+#: ../../harddrake/ui.pm_.c:37
msgid "the vendor name of the device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:60
+#: ../../harddrake/ui.pm_.c:38
+msgid "Alternative drivers"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:39
+msgid "the list of alternative drivers for this sound card"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:63
#, fuzzy
msgid "/_Quit"
msgstr "ŰźŰ±ÙˆŰŹ"
-#: ../../harddrake/ui.pm_.c:61 ../../harddrake/ui.pm_.c:62
-#: ../../harddrake/ui.pm_.c:68 ../../standalone/logdrake_.c:110
+#: ../../harddrake/ui.pm_.c:64 ../../harddrake/ui.pm_.c:65
+#: ../../harddrake/ui.pm_.c:71 ../../standalone/logdrake_.c:110
msgid "/_Help"
msgstr "/_Ù…ŰłŰ§ŰčŰŻŰ©"
-#: ../../harddrake/ui.pm_.c:62
+#: ../../harddrake/ui.pm_.c:65
#, fuzzy
msgid "/_Help..."
msgstr "/_Ù…ŰłŰ§ŰčŰŻŰ©"
-#: ../../harddrake/ui.pm_.c:63
+#: ../../harddrake/ui.pm_.c:66
msgid "Harddrake help"
msgstr ""
-#: ../../harddrake/ui.pm_.c:64
+#: ../../harddrake/ui.pm_.c:67
msgid ""
"Description of the fields:\n"
"\n"
msgstr ""
-#: ../../harddrake/ui.pm_.c:68
+#: ../../harddrake/ui.pm_.c:71
#, fuzzy
msgid "/_About..."
msgstr "/Ù…ŰłŰ§ŰčŰŻŰ©/_Ű­ÙˆÙ„ Ű§Ù„ŰšŰ±Ù†Ű§Ù…ŰŹ..."
-#: ../../harddrake/ui.pm_.c:69
+#: ../../harddrake/ui.pm_.c:72
msgid "About Harddrake"
msgstr ""
-#: ../../harddrake/ui.pm_.c:70
+#: ../../harddrake/ui.pm_.c:73
msgid ""
"This is HardDrake, a Mandrake hardware configuration tool.\n"
"Version:"
msgstr ""
-#: ../../harddrake/ui.pm_.c:71
+#: ../../harddrake/ui.pm_.c:74
#, fuzzy
msgid "Author:"
msgstr "ŰȘŰ­Ù‚Ù‚ ŰąÙ„ÙŠ"
-#: ../../harddrake/ui.pm_.c:83
+#: ../../harddrake/ui.pm_.c:86
#, fuzzy
msgid "Harddrake2 version "
msgstr "Ű§Ù„ŰȘŰ­Ù‚Ù‚ من Ű§Ù„ŰŁÙ‚Ű±Ű§Ű” Ű§Ù„Ű”Ù„ŰšŰ©"
-#: ../../harddrake/ui.pm_.c:91
+#: ../../harddrake/ui.pm_.c:103
#, fuzzy
msgid "Detected hardware"
msgstr "Űč۱۶ مŰčÙ„ÙˆÙ…Ű§ŰȘ Ű§Ù„ŰčŰȘۧۯ"
-#: ../../harddrake/ui.pm_.c:92
+#: ../../harddrake/ui.pm_.c:105
#, fuzzy
-msgid "Configure module"
-msgstr "Ű„Űčۯۧۯ Ű§Ù„ÙŰŁŰ±Ű©"
+msgid "Information"
+msgstr "ۧŰč۱۶ Ű§Ù„Ù…ŰčÙ„ÙˆÙ…Ű§ŰȘ"
-#: ../../harddrake/ui.pm_.c:92
+#: ../../harddrake/ui.pm_.c:108
#, fuzzy
-msgid "Informations"
-msgstr "ۧŰč۱۶ Ű§Ù„Ù…ŰčÙ„ÙˆÙ…Ű§ŰȘ"
+msgid "Configure module"
+msgstr "Ű„Űčۯۧۯ Ű§Ù„ÙŰŁŰ±Ű©"
-#: ../../harddrake/ui.pm_.c:92
+#: ../../harddrake/ui.pm_.c:109
msgid "Run config tool"
msgstr ""
-#: ../../harddrake/ui.pm_.c:96
+#: ../../harddrake/ui.pm_.c:113
msgid "Detection in progress"
msgstr ""
-#: ../../harddrake/ui.pm_.c:96 ../../interactive.pm_.c:388
+#: ../../harddrake/ui.pm_.c:113 ../../interactive.pm_.c:391
msgid "Please wait"
msgstr "من ÙŰ¶Ù„Ùƒ Ű§Ù†ŰȘ۞۱"
-#: ../../harddrake/ui.pm_.c:139
+#: ../../harddrake/ui.pm_.c:156
msgid "primary"
msgstr ""
-#: ../../harddrake/ui.pm_.c:139
+#: ../../harddrake/ui.pm_.c:156
#, fuzzy
msgid "secondary"
msgstr "%d Ű«ÙˆŰ§Ù†"
-#: ../../harddrake/ui.pm_.c:176
+#: ../../harddrake/ui.pm_.c:197
msgid "You can configure each parameter of the module here."
msgstr ""
-#: ../../harddrake/ui.pm_.c:192
+#: ../../harddrake/ui.pm_.c:213
#, fuzzy, c-format
msgid "Running \"%s\" ..."
msgstr "ŰŹŰ§Ű±ÙŠ ۧŰČŰ§Ù„Ű© Ű§Ù„Ű·Ű§ŰšŰčŰ© \"%s\" ..."
@@ -2561,16 +2649,16 @@ msgstr ""
#: ../../harddrake/v4l.pm_.c:213
#, fuzzy
-msgid "Card model :"
+msgid "Card model:"
msgstr "Card mem (DMA)"
#: ../../harddrake/v4l.pm_.c:214
#, fuzzy
-msgid "Tuner type :"
+msgid "Tuner type:"
msgstr "ŰșÙŠÙ‘Ű± Ű§Ù„Ù†ÙˆŰč"
#: ../../harddrake/v4l.pm_.c:215
-msgid "Number of capture buffers :"
+msgid "Number of capture buffers:"
msgstr ""
#: ../../harddrake/v4l.pm_.c:215
@@ -2579,11 +2667,11 @@ msgstr ""
#: ../../harddrake/v4l.pm_.c:217
#, fuzzy
-msgid "PLL setting :"
+msgid "PLL setting:"
msgstr "Ű­Ù…Ù„ Ű§Ù„Ű„ŰčۯۧۯۧŰȘ"
#: ../../harddrake/v4l.pm_.c:218
-msgid "Radio support :"
+msgid "Radio support:"
msgstr ""
#: ../../harddrake/v4l.pm_.c:218
@@ -2595,22 +2683,22 @@ msgid ""
"GNU/Linux is a multiuser system, and this means that each user can have his\n"
"own preferences, his own files and so on. You can read the ``User Guide''\n"
"to learn more. But unlike \"root\", which is the administrator, the users\n"
-"you will add here will not be entitled to change anything except their own\n"
-"files and their own configuration. You will have to create at least one\n"
-"regular user for yourself. That account is where you should log in for\n"
-"routine use. Although it is very practical to log in as \"root\" everyday,\n"
-"it may also be very dangerous! The slightest mistake could mean that your\n"
-"system would not work any more. If you make a serious mistake as a regular\n"
-"user, you may only lose some information, but not the entire system.\n"
+"you add here will not be entitled to change anything except their own files\n"
+"and their own configuration. You will have to create at least one regular\n"
+"user for yourself. That account is where you should log in for routine use.\n"
+"Although it is very practical to log in as \"root\" everyday, it may also\n"
+"be very dangerous! The slightest mistake could mean that your system would\n"
+"not work any more. If you make a serious mistake as a regular user, you may\n"
+"only lose some information, but not the entire system.\n"
"\n"
"First, you have to enter your real name. This is not mandatory, of course -\n"
"as you can actually enter whatever you want. DrakX will then take the first\n"
"word you have entered in the box and will bring it over to the \"User\n"
"name\". This is the name this particular user will use to log onto the\n"
"system. You can change it. You then have to enter a password here. A\n"
-"non-privileged (regular) user's password is not as crucial as \"root\"' one\n"
-"from a security point of view, but that is no reason to neglect it: after\n"
-"all, your files are at risk.\n"
+"non-privileged (regular) user's password is not as crucial as the \"root\"'\n"
+"one from a security point of view, but that is no reason to neglect it:\n"
+"after all, your files are at risk.\n"
"\n"
"If you click on \"Accept user\", you can then add as many as you want. Add\n"
"a user for each one of your friends: your father or your sister, for\n"
@@ -2747,7 +2835,7 @@ msgid ""
"to have a graphical workstation!\n"
"\n"
"Moving the mouse cursor over a group name will display a short explanatory\n"
-"text about that group. If you deselect all groups when performing a regular\n"
+"text about that group. If you unselect all groups when performing a regular\n"
"installation (by opposition to an upgrade), a dialog will pop up proposing\n"
"different options for a minimal installation:\n"
"\n"
@@ -2773,10 +2861,10 @@ msgstr ""
#: ../../help.pm_.c:128
msgid ""
-"Finally, depending on whether or not you selected individual packages, you\n"
-"will be presented a tree containing all packages classified by groups and\n"
-"subgroups. While browsing the tree, you can select entire groups,\n"
-"subgroups, or individual packages.\n"
+"Finally, depending on whether or not you chose to be able to select\n"
+"individual packages, you will be presented a tree containing all packages\n"
+"classified by groups and subgroups. While browsing the tree, you can select\n"
+"entire groups, subgroups, or individual packages.\n"
"\n"
"Whenever you select a package on the tree, a description appears on the\n"
"right. When your selection is finished, click the \"Install\" button which\n"
@@ -2811,11 +2899,11 @@ msgstr ""
#: ../../help.pm_.c:164
msgid ""
-"You are now proposed to set up your Internet/network connection. If you\n"
-"wish to connect your computer to the Internet or to a local network, click\n"
-"\"OK\". The autodetection of network devices and modem will be launched. If\n"
-"this detection fails, uncheck the \"Use auto detection\" box next time. You\n"
-"may also choose not to configure the network, or do it later; in that case,\n"
+"You are now able to set up your Internet/network connection. If you wish to\n"
+"connect your computer to the Internet or to a local network, click \"OK\".\n"
+"The autodetection of network devices and modem will be launched. If this\n"
+"detection fails, uncheck the \"Use auto detection\" box next time. You may\n"
+"also choose not to configure the network, or do it later; in that case,\n"
"simply click the \"Cancel\" button.\n"
"\n"
"Available connections are: traditional modem, ISDN modem, ADSL connection,\n"
@@ -2856,7 +2944,7 @@ msgstr ""
msgid ""
"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
"local time according to the time zone you selected. It is however possible\n"
-"to deactivate this by deselecting \"Hardware clock set to GMT\" so that the\n"
+"to deactivate this by unselecting \"Hardware clock set to GMT\" so that the\n"
"hardware clock is the same as the system clock. This is useful when the\n"
"machine is hosting another operating system like Windows.\n"
"\n"
@@ -2887,24 +2975,12 @@ msgid ""
"If you can see the message during the test, and answer \"Yes\", then DrakX\n"
"will proceed to the next step. If you cannot see the message, it simply\n"
"means that the configuration was wrong and the test will automatically end\n"
-"after 10 seconds, restoring the screen."
+"after 10 seconds, restoring the screen. Refer then to the Video\n"
+"configuration section of the user guide for more information on how to\n"
+"configure your display."
msgstr ""
-#: ../../help.pm_.c:237
-msgid ""
-"The first time you try the X configuration, you may not be very satisfied\n"
-"with its display (screen is too small, shifted left or right...). Hence,\n"
-"even if X starts up correctly, DrakX then asks you if the configuration\n"
-"suits you. It will also propose to change it by displaying a list of valid\n"
-"modes it could find, asking you to select one.\n"
-"\n"
-"As a last resort, if you still cannot get X to work, choose \"Change\n"
-"graphics card\", select \"Unlisted card\", and when prompted on which\n"
-"server, choose \"FBDev\". This is a failsafe option which works with any\n"
-"modern graphics card. Then choose \"Test again\" to be sure."
-msgstr ""
-
-#: ../../help.pm_.c:249
+#: ../../help.pm_.c:239
msgid ""
"Finally, you will be asked whether you want to see the graphical interface\n"
"at boot. Note this question will be asked even if you chose not to test the\n"
@@ -2913,7 +2989,7 @@ msgid ""
"configured."
msgstr ""
-#: ../../help.pm_.c:256
+#: ../../help.pm_.c:246
msgid ""
"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
@@ -2933,13 +3009,13 @@ msgid ""
"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
"password, or any other reason.\n"
"\n"
-"When you click on this step, you will be asked to enter a disk inside the\n"
-"drive. The floppy disk you will insert must be empty or contain data which\n"
-"you do not need. You will not have to format it since DrakX will rewrite\n"
-"the whole disk."
+"If you say \"Yes\", you will be asked to enter a disk inside the drive. The\n"
+"floppy disk you will insert must be empty or contain data which you do not\n"
+"need. You will not have to format it since DrakX will rewrite the whole\n"
+"disk."
msgstr ""
-#: ../../help.pm_.c:280
+#: ../../help.pm_.c:270
msgid ""
"At this point, you need to choose where you want to install the Mandrake\n"
"Linux operating system on your hard drive. If your hard drive is empty or\n"
@@ -2972,7 +3048,9 @@ msgid ""
"\n"
" * \"Use existing partition\": the wizard has detected one or more existing\n"
"Linux partitions on your hard drive. If you want to use them, choose this\n"
-"option;\n"
+"option. You will then be asked to choose the mount points associated to\n"
+"each of the partitions. The legacy mount points are selected by default,\n"
+"and you should generally keep them.\n"
"\n"
" * \"Use the free space on the Windows; partition\": if Microsoft Windows\n"
"is installed on your hard drive and takes all the space available on it,\n"
@@ -3005,10 +3083,12 @@ msgid ""
" * \"Expert mode\": choose this option if you want to manually partition\n"
"your hard drive. Be careful - it is a powerful but dangerous choice. You\n"
"can very easily lose all your data. Hence, do not choose this unless you\n"
-"know what you are doing."
+"know what you are doing. To know how do use the DiskDrake utility used\n"
+"here, refer to the section ``Managing Your Partitions'' of the ````User\n"
+"Guide''''"
msgstr ""
-#: ../../help.pm_.c:347
+#: ../../help.pm_.c:341
msgid ""
"There you are. Installation is now complete and your GNU/Linux system is\n"
"ready to use. Just click \"OK\" to reboot the system. You can start\n"
@@ -3041,7 +3121,7 @@ msgid ""
"\"mformat a:\")"
msgstr ""
-#: ../../help.pm_.c:378
+#: ../../help.pm_.c:372
msgid ""
"Any partitions that have been newly defined must be formatted for use\n"
"(formatting means creating a filesystem).\n"
@@ -3069,7 +3149,7 @@ msgid ""
"for bad blocks on the disk."
msgstr ""
-#: ../../help.pm_.c:404
+#: ../../help.pm_.c:398
msgid ""
"Your new Mandrake Linux operating system is currently being installed.\n"
"Depending on the number of packages you will be installing and the speed of\n"
@@ -3079,12 +3159,12 @@ msgid ""
"Please be patient."
msgstr ""
-#: ../../help.pm_.c:412
+#: ../../help.pm_.c:406
msgid ""
"At the time you are installing Mandrake Linux, it is likely that some\n"
"packages have been updated since the initial release. Some bugs may have\n"
"been fixed, and security issues solved. To allow you to benefit from these\n"
-"updates, you are now proposed to download them from the Internet. Choose\n"
+"updates, you are now able to download them from the Internet. Choose\n"
"\"Yes\" if you have a working Internet connection, or \"No\" if you prefer\n"
"to install updated packages later.\n"
"\n"
@@ -3094,7 +3174,7 @@ msgid ""
"install the selected package(s), or \"Cancel\" to abort."
msgstr ""
-#: ../../help.pm_.c:425
+#: ../../help.pm_.c:419
msgid ""
"Before continuing, you should read carefully the terms of the license. It\n"
"covers the whole Mandrake Linux distribution, and if you do not agree with\n"
@@ -3103,19 +3183,19 @@ msgid ""
"\"Accept\" button."
msgstr ""
-#: ../../help.pm_.c:432
+#: ../../help.pm_.c:426
msgid ""
"At this point, it is time to choose the security level desired for the\n"
"machine. As a rule of thumb, the more exposed the machine is, and the more\n"
"the data stored in it is crucial, the higher the security level should be.\n"
"However, a higher security level is generally obtained at the expense of\n"
-"easiness of use. Refer to the \"msec\" chapter of the ``Reference Manual''\n"
-"to get more information about the meaning of these levels.\n"
+"ease of use. Refer to the \"msec\" chapter of the ``Reference Manual'' to\n"
+"get more information about the meaning of these levels.\n"
"\n"
"If you do not know what to choose, keep the default option."
msgstr ""
-#: ../../help.pm_.c:442
+#: ../../help.pm_.c:436
msgid ""
"At this point, you need to choose which partition(s) will be used for the\n"
"installation of your Mandrake Linux system. If partitions have already been\n"
@@ -3132,26 +3212,26 @@ msgid ""
" * \"Clear all\": this option deletes all partitions on the selected hard\n"
"drive;\n"
"\n"
-" * \"Auto allocate\": this option enables to automatically create \"Ext2\"\n"
-"and swap partitions in free space of your hard drive;\n"
+" * \"Auto allocate\": this option enables to automatically create ext3 and\n"
+"swap partitions in free space of your hard drive;\n"
"\n"
-" * \"More\": gives access to additional features:\n"
+"\"More\": gives access to additional features:\n"
"\n"
-" * \"Save partition table\": saves the partition table to a floppy.\n"
-"Useful for later partition-table recovery if necessary. It is strongly\n"
-"recommended to perform this step;\n"
+" * \"Save partition table\": saves the partition table to a floppy. Useful\n"
+"for later partition-table recovery if necessary. It is strongly recommended\n"
+"to perform this step;\n"
"\n"
-" * \"Restore partition table\": allows to restore a previously saved\n"
+" * \"Restore partition table\": allows to restore a previously saved\n"
"partition table from floppy disk;\n"
"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you\n"
-"can try to recover it using this option. Please be careful and remember\n"
-"that it can fail;\n"
+" * \"Rescue partition table\": if your partition table is damaged, you can\n"
+"try to recover it using this option. Please be careful and remember that it\n"
+"can fail;\n"
"\n"
-" * \"Reload partition table\": discards all changes and loads your\n"
-"initial partition table;\n"
+" * \"Reload partition table\": discards all changes and loads your initial\n"
+"partition table;\n"
"\n"
-" * \"Removable media automounting\": unchecking this option will force\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
"users to manually mount and unmount removable medias such as floppies and\n"
"CD-ROMs.\n"
"\n"
@@ -3179,7 +3259,7 @@ msgid ""
" * Ctrl-m to set the mount point.\n"
"\n"
"To get information about the different filesystem types available, please\n"
-"read the ext2fs chapter from the ``Reference Manual''.\n"
+"read the ext2FS chapter from the ``Reference Manual''.\n"
"\n"
"If you are installing on a PPC machine, you will want to create a small HFS\n"
"``bootstrap'' partition of at least 1MB, which will be used by the yaboot\n"
@@ -3188,7 +3268,7 @@ msgid ""
"emergency boot situations."
msgstr ""
-#: ../../help.pm_.c:513
+#: ../../help.pm_.c:507
msgid ""
"More than one Microsoft partition has been detected on your hard drive.\n"
"Please choose the one you want to resize in order to install your new\n"
@@ -3221,34 +3301,34 @@ msgid ""
"disk or partition is called \"C:\")."
msgstr ""
-#: ../../help.pm_.c:544
+#: ../../help.pm_.c:538
msgid "Please be patient. This operation can take several minutes."
msgstr ""
-#: ../../help.pm_.c:547
+#: ../../help.pm_.c:541
msgid ""
"DrakX now needs to know if you want to perform a default (\"Recommended\")\n"
"installation or if you want to have greater control (\"Expert\"). You can\n"
"also choose to do a new install or an upgrade of an existing Mandrake Linux\n"
"system:\n"
"\n"
-" * \"Install\": completely wipes out the old system. In fact, depending on\n"
-"what currently holds your machine, you will be able to keep some old (Linux\n"
-"or other) partitions unchanged;\n"
+" * \"Install\": completely wipes out the old system, however, depending on\n"
+"what is currently installed on your machine, you may be able to keep some\n"
+"old partitions (Linux or otherwise) unchanged;\n"
"\n"
" * \"Upgrade\": this installation class allows to simply update the\n"
"packages currently installed on your Mandrake Linux system. It keeps the\n"
"current partitions of your hard drives as well as user configurations. All\n"
-"other configuration steps remain available with respect to plain\n"
+"other configuration steps remain available, similar to a normal\n"
"installation;\n"
"\n"
-" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
-"existing Mandrake Linux system while keeping all system configurations\n"
-"unchanged. Adding new packages to the current installation is also\n"
-"possible.\n"
+" * \"Upgrade Packages Only\": this new installation class allows you to\n"
+"upgrade an existing Mandrake Linux system while keeping all system\n"
+"configurations unchanged. Adding new packages to the current installation\n"
+"is also possible.\n"
"\n"
-"Upgrades should work fine for Mandrake Linux systems starting from \"8.1\"\n"
-"release.\n"
+"Upgrades should work fine on Mandrake Linux systems containing version\n"
+"\"8.1\" or later.\n"
"\n"
"Depending on your knowledge of GNU/Linux, select one of the following\n"
"choices:\n"
@@ -3257,30 +3337,35 @@ msgid ""
"operating system. The installation will be very easy and you will only be\n"
"asked a few questions;\n"
"\n"
-" * Expert: if you have a good knowledge of GNU/Linux, you can choose this\n"
-"installation class. The expert installation will allow you to perform a\n"
-"highly-customized installation. Answering some of the questions can be\n"
-"difficult if you do not have a good knowledge of GNU/Linux, so do not\n"
-"choose this unless you know what you are doing."
+" * Expert: if you have a good understanding of GNU/Linux, you may wish to\n"
+"perform a highly customized installation. Some of the decisions you will\n"
+"have to make may be difficult if you do not have good knowledge of\n"
+"GNU/Linux, so it is not recommended that those without a fair amount of\n"
+"experience select this installation class."
msgstr ""
-#: ../../help.pm_.c:584
+#: ../../help.pm_.c:578
msgid ""
"Normally, DrakX selects the right keyboard for you (depending on the\n"
-"language you have chosen) and you won't even see this step. However, you\n"
-"might not have a keyboard that corresponds exactly to your language: for\n"
-"example, if you are an English speaking Swiss person, you may still want\n"
-"your keyboard to be a Swiss keyboard. Or if you speak English but are\n"
-"located in Quebec, you may find yourself in the same situation. In both\n"
-"cases, you will have to go back to this installation step and select an\n"
-"appropriate keyboard from the list.\n"
+"language you have chosen). However, you might not have a keyboard that\n"
+"corresponds exactly to your language: for example, if you are an English\n"
+"speaking Swiss person, you may still want your keyboard to be a Swiss\n"
+"keyboard. Or if you speak English but are located in Quebec, you may find\n"
+"yourself in the same situation. In both cases, you will have to go back to\n"
+"this installation step and select an appropriate keyboard from the list.\n"
"\n"
"Click on the \"More\" button to be presented with the complete list of\n"
-"supported keyboards."
+"supported keyboards.\n"
+"\n"
+"If you choose a keyboard layout based on a non-latin alphabet, you will be\n"
+"asked on next dialog to choose the key binding that will switch the\n"
+"keyboard layout between the latin and non latin layouts."
msgstr ""
-#: ../../help.pm_.c:597
+#: ../../help.pm_.c:594
msgid ""
+"The first step is to choose your preferred language.\n"
+"\n"
"Please choose your preferred language for installation and system usage.\n"
"\n"
"Clicking on the \"Advanced\" button will allow you to select other\n"
@@ -3294,7 +3379,7 @@ msgid ""
"additional locales, click the \"OK\" button to continue."
msgstr ""
-#: ../../help.pm_.c:610
+#: ../../help.pm_.c:609
msgid ""
"DrakX generally detects the number of buttons your mouse has. If not, it\n"
"assumes you have a two-button mouse and will set it up for third-button\n"
@@ -3307,16 +3392,23 @@ msgid ""
"If you choose a mouse other than the default, a test screen will be\n"
"displayed. Use the buttons and wheel to verify that the settings are\n"
"correct. If the mouse is not working well, press the space bar or [Return]\n"
-"to \"Cancel\" and choose again."
+"to \"Cancel\" and choose again.\n"
+"\n"
+"Wheel mouses are sometimes not automatically detected. You will need to\n"
+"manually select it in the list. Be sure to select the one corresponding to\n"
+"the correct port it is attached to. After you have pressed the \"OK\"\n"
+"button, a mouse image is displayed. You then need to move the wheel of your\n"
+"mouse to activate it correctly. Then test all buttons and movements are\n"
+"correct."
msgstr ""
-#: ../../help.pm_.c:624
+#: ../../help.pm_.c:630
msgid ""
"Please select the correct port. For example, the \"COM1\" port under\n"
"Windows is named \"ttyS0\" under GNU/Linux."
msgstr ""
-#: ../../help.pm_.c:628
+#: ../../help.pm_.c:634
msgid ""
"This is the most crucial decision point for the security of your GNU/Linux\n"
"system: you have to enter the \"root\" password. \"root\" is the system\n"
@@ -3346,15 +3438,15 @@ msgid ""
"In Expert mode, you will be asked if you will be connecting to an\n"
"authentication server, like NIS or LDAP.\n"
"\n"
-"If your network uses the LDAP (or NIS) protocol for authentication, select\n"
-"\"LDAP\" (or \"NIS\") as authentication. If you do not know, ask your\n"
-"network administrator.\n"
+"If your network uses either of the LDAP, NIS, or PDC Windows Domain\n"
+"authentication services, select the appropriate one as \"authentication\".\n"
+"If you do not know, ask your network administrator.\n"
"\n"
"If your computer is not connected to any administrated network, you will\n"
"want to choose \"Local files\" for authentication."
msgstr ""
-#: ../../help.pm_.c:664
+#: ../../help.pm_.c:670
msgid ""
"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
@@ -3393,8 +3485,11 @@ msgid ""
"options. !!\n"
"\n"
"Clicking the \"Advanced\" button in this dialog will offer many advanced\n"
-"options, which are reserved to the expert user.\n"
-"\n"
+"options, which are reserved for the expert user."
+msgstr ""
+
+#: ../../help.pm_.c:710
+msgid ""
"After you have configured the general bootloader parameters, the list of\n"
"boot options which will be available at boot time will be displayed.\n"
"\n"
@@ -3402,16 +3497,7 @@ msgid ""
"automatically be added to the boot menu. Here, you can choose to fine-tune\n"
"the existing options. Select an entry and click \"Modify\" to modify or\n"
"remove it; \"Add\" creates a new entry; and \"Done\" goes on to the next\n"
-"installation step."
-msgstr ""
-
-#: ../../help.pm_.c:713
-msgid ""
-"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
-"either GNU/Linux or any other operating system present on your computer.\n"
-"Normally, these other operating systems are correctly detected and\n"
-"installed. If this is not the case, you can add an entry by hand in this\n"
-"screen. Be careful to choose the correct parameters.\n"
+"installation step.\n"
"\n"
"You may also not want to give access to these other operating systems to\n"
"anyone. In which case, you can delete the corresponding entries. But then,\n"
@@ -3459,18 +3545,18 @@ msgstr ""
#: ../../help.pm_.c:759
msgid ""
-"DrakX now detects any IDE device present in your computer. It will also\n"
-"scan for one or more PCI SCSI card(s) on your system. If a SCSI card is\n"
+"DrakX now detects any IDE devices present in your computer. It will also\n"
+"scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
"found, DrakX will automatically install the appropriate driver.\n"
"\n"
"Because hardware detection does not always detect a piece of hardware,\n"
"DrakX will ask you to confirm if a PCI SCSI card is present. Click \"Yes\"\n"
"if you know that there is a SCSI card installed in your machine. You will\n"
-"be presented a list of SCSI cards to choose from. Click \"No\" if you have\n"
-"no SCSI hardware. If you are unsure, you can check the list of hardware\n"
-"detected in your machine by selecting \"See hardware info\" and clicking\n"
-"\"OK\". Examine the list of hardware and then click on the \"OK\" button to\n"
-"return to the SCSI interface question.\n"
+"be presented with a list of SCSI cards to choose from. Click \"No\" if you\n"
+"have no SCSI hardware. If you are unsure, you can check the list of\n"
+"hardware detected in your machine by selecting \"See hardware info\" and\n"
+"clicking \"OK\". Examine the list of hardware and then click on the \"OK\"\n"
+"button to return to the SCSI interface question.\n"
"\n"
"If you have to manually specify your adapter, DrakX will ask if you want to\n"
"specify options for it. You should allow DrakX to probe the hardware for\n"
@@ -3587,7 +3673,9 @@ msgid ""
"order to configure the clock according to the time zone you are in;\n"
"\n"
" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
-"configuration wizard;\n"
+"configuration wizard. Consult the corresponding chapter of the ``User\n"
+"Guide'' for more information on how to setup a new printer. The interface\n"
+"presented there is similar to the one used during installation;\n"
"\n"
" * \"Sound card\": if a sound card is detected on your system, it is\n"
"displayed here. No modification possible at installation time;\n"
@@ -3600,14 +3688,14 @@ msgid ""
"associated with it."
msgstr ""
-#: ../../help.pm_.c:894
+#: ../../help.pm_.c:896
msgid ""
"Choose the hard drive you want to erase in order to install your new\n"
"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
"and will not be recoverable!"
msgstr ""
-#: ../../help.pm_.c:899
+#: ../../help.pm_.c:901
msgid ""
"Click on \"OK\" if you want to delete all data and partitions present on\n"
"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
@@ -3631,7 +3719,7 @@ msgstr ""
msgid "You must also format %s"
msgstr ""
-#: ../../install_any.pm_.c:418
+#: ../../install_any.pm_.c:423
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -3646,30 +3734,45 @@ msgid ""
"Do you really want to install these servers?\n"
msgstr ""
-#: ../../install_any.pm_.c:453
+#: ../../install_any.pm_.c:441
+#, c-format
+msgid ""
+"The following packages will be removed to allow upgrading your system: %s\n"
+"\n"
+"\n"
+"Do you really want to remove these packages?\n"
+msgstr ""
+
+#: ../../install_any.pm_.c:471
msgid "Can't use broadcast with no NIS domain"
msgstr "NIS Ù„Ű§ ŰȘŰłŰ·ÙŠŰč ۧ ŰłŰȘŰčÙ…Ű§Ù„ Ù‡Ű° ۧ Ű§Ù„ŰšŰ±Ù†Ű§Ù…ŰŹ مŰč"
-#: ../../install_any.pm_.c:841
+#: ../../install_any.pm_.c:862
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr ""
-#: ../../install_any.pm_.c:845
+#: ../../install_any.pm_.c:866
msgid "This floppy is not FAT formatted"
msgstr ""
-#: ../../install_any.pm_.c:857
+#: ../../install_any.pm_.c:878
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
msgstr ""
-#: ../../install_any.pm_.c:880 ../../partition_table.pm_.c:771
+#: ../../install_any.pm_.c:901 ../../partition_table.pm_.c:767
#, c-format
msgid "Error reading file %s"
msgstr ""
+#: ../../install_any.pm_.c:1023
+msgid ""
+"An error occurred - no valid devices were found on which to create new "
+"filesystems. Please check your hardware for the cause of this problem"
+msgstr ""
+
#: ../../install_interactive.pm_.c:23
#, c-format
msgid ""
@@ -3695,73 +3798,73 @@ msgid ""
"Continue anyway?"
msgstr "ۧ۳ŰȘÙ…Ű±Ù‘ ŰšŰŁÙŠÙ‘Ű© Ű­Ű§Ù„"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:168
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:169
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr ""
-#: ../../install_interactive.pm_.c:91
+#: ../../install_interactive.pm_.c:92
msgid "Use free space"
msgstr "ۧ۳ŰȘŰčمل Ù…ÙƒŰ§Ù†Ű§ ۭ۱ۧ"
-#: ../../install_interactive.pm_.c:93
+#: ../../install_interactive.pm_.c:94
msgid "Not enough free space to allocate new partitions"
msgstr ""
-#: ../../install_interactive.pm_.c:101
+#: ../../install_interactive.pm_.c:102
msgid "Use existing partitions"
msgstr ""
-#: ../../install_interactive.pm_.c:103
+#: ../../install_interactive.pm_.c:104
msgid "There is no existing partition to use"
msgstr ""
-#: ../../install_interactive.pm_.c:110
+#: ../../install_interactive.pm_.c:111
msgid "Use the Windows partition for loopback"
msgstr ""
-#: ../../install_interactive.pm_.c:113
+#: ../../install_interactive.pm_.c:114
msgid "Which partition do you want to use for Linux4Win?"
msgstr ""
-#: ../../install_interactive.pm_.c:115
+#: ../../install_interactive.pm_.c:116
msgid "Choose the sizes"
msgstr ""
-#: ../../install_interactive.pm_.c:116
+#: ../../install_interactive.pm_.c:117
msgid "Root partition size in MB: "
msgstr ""
-#: ../../install_interactive.pm_.c:117
+#: ../../install_interactive.pm_.c:118
msgid "Swap partition size in MB: "
msgstr ""
-#: ../../install_interactive.pm_.c:126
+#: ../../install_interactive.pm_.c:128
msgid "Use the free space on the Windows partition"
msgstr ""
-#: ../../install_interactive.pm_.c:129
+#: ../../install_interactive.pm_.c:131
msgid "Which partition do you want to resize?"
msgstr ""
-#: ../../install_interactive.pm_.c:131
+#: ../../install_interactive.pm_.c:133
msgid "Resizing Windows partition"
msgstr ""
-#: ../../install_interactive.pm_.c:134
+#: ../../install_interactive.pm_.c:136
#, c-format
msgid ""
"The FAT resizer is unable to handle your partition, \n"
"the following error occured: %s"
msgstr ""
-#: ../../install_interactive.pm_.c:137
+#: ../../install_interactive.pm_.c:139
msgid ""
"Your Windows partition is too fragmented. Please reboot your computer under "
"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
"installation."
msgstr ""
-#: ../../install_interactive.pm_.c:138
+#: ../../install_interactive.pm_.c:140
msgid ""
"WARNING!\n"
"\n"
@@ -3773,80 +3876,80 @@ msgid ""
"When sure, press Ok."
msgstr ""
-#: ../../install_interactive.pm_.c:148
+#: ../../install_interactive.pm_.c:150
msgid "Which size do you want to keep for Windows on"
msgstr ""
-#: ../../install_interactive.pm_.c:149
+#: ../../install_interactive.pm_.c:151
#, c-format
msgid "partition %s"
msgstr ""
-#: ../../install_interactive.pm_.c:156
+#: ../../install_interactive.pm_.c:158
#, c-format
msgid "FAT resizing failed: %s"
msgstr ""
-#: ../../install_interactive.pm_.c:171
+#: ../../install_interactive.pm_.c:173
msgid ""
"There is no FAT partition to resize or to use as loopback (or not enough "
"space left)"
msgstr ""
-#: ../../install_interactive.pm_.c:177
+#: ../../install_interactive.pm_.c:179
msgid "Erase entire disk"
msgstr ""
-#: ../../install_interactive.pm_.c:177
+#: ../../install_interactive.pm_.c:179
msgid "Remove Windows(TM)"
msgstr ""
-#: ../../install_interactive.pm_.c:180
+#: ../../install_interactive.pm_.c:182
msgid "You have more than one hard drive, which one do you install linux on?"
msgstr ""
-#: ../../install_interactive.pm_.c:183
+#: ../../install_interactive.pm_.c:185
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr ""
-#: ../../install_interactive.pm_.c:191
+#: ../../install_interactive.pm_.c:193
msgid "Custom disk partitioning"
msgstr ""
-#: ../../install_interactive.pm_.c:195
+#: ../../install_interactive.pm_.c:197
msgid "Use fdisk"
msgstr ""
-#: ../../install_interactive.pm_.c:198
+#: ../../install_interactive.pm_.c:200
#, c-format
msgid ""
"You can now partition %s.\n"
"When you are done, don't forget to save using `w'"
msgstr ""
-#: ../../install_interactive.pm_.c:227
+#: ../../install_interactive.pm_.c:229
msgid "You don't have enough free space on your Windows partition"
msgstr ""
-#: ../../install_interactive.pm_.c:243
+#: ../../install_interactive.pm_.c:245
msgid "I can't find any room for installing"
msgstr ""
-#: ../../install_interactive.pm_.c:246
+#: ../../install_interactive.pm_.c:248
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr ""
-#: ../../install_interactive.pm_.c:250
+#: ../../install_interactive.pm_.c:252
#, c-format
msgid "Partitioning failed: %s"
msgstr ""
-#: ../../install_interactive.pm_.c:260
+#: ../../install_interactive.pm_.c:262
msgid "Bringing up the network"
msgstr ""
-#: ../../install_interactive.pm_.c:265
+#: ../../install_interactive.pm_.c:267
msgid "Bringing down the network"
msgstr ""
@@ -3856,12 +3959,12 @@ msgid ""
"Continue at your own risk."
msgstr ""
-#: ../../install_steps.pm_.c:210
+#: ../../install_steps.pm_.c:211
#, c-format
msgid "Duplicate mount point %s"
msgstr ""
-#: ../../install_steps.pm_.c:379
+#: ../../install_steps.pm_.c:380
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -3869,12 +3972,12 @@ msgid ""
"\"\n"
msgstr ""
-#: ../../install_steps.pm_.c:451
+#: ../../install_steps.pm_.c:452
#, c-format
msgid "Welcome to %s"
msgstr ""
-#: ../../install_steps.pm_.c:530 ../../install_steps.pm_.c:770
+#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:772
msgid "No floppy drive available"
msgstr ""
@@ -3900,142 +4003,142 @@ msgstr ""
msgid "Please choose one of the following classes of installation:"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:243 ../../install_steps_interactive.pm_.c:694
+#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:678
msgid "Package Group Selection"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:276 ../../install_steps_interactive.pm_.c:709
+#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:693
msgid "Individual package selection"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:299 ../../install_steps_interactive.pm_.c:633
+#: ../../install_steps_gtk.pm_.c:293 ../../install_steps_interactive.pm_.c:617
#, c-format
msgid "Total size: %d / %d MB"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:341
+#: ../../install_steps_gtk.pm_.c:335
msgid "Bad package"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:342
+#: ../../install_steps_gtk.pm_.c:336
#, c-format
msgid "Name: %s\n"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:343
+#: ../../install_steps_gtk.pm_.c:337
#, c-format
msgid "Version: %s\n"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:344
+#: ../../install_steps_gtk.pm_.c:338
#, c-format
msgid "Size: %d KB\n"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:345
+#: ../../install_steps_gtk.pm_.c:339
#, c-format
msgid "Importance: %s\n"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:367
+#: ../../install_steps_gtk.pm_.c:361
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:372
+#: ../../install_steps_gtk.pm_.c:366
msgid "The following packages are going to be installed"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:373
+#: ../../install_steps_gtk.pm_.c:367
msgid "The following packages are going to be removed"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:385
+#: ../../install_steps_gtk.pm_.c:379
msgid "You can't select/unselect this package"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:397
+#: ../../install_steps_gtk.pm_.c:391
msgid "This is a mandatory package, it can't be unselected"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:399
+#: ../../install_steps_gtk.pm_.c:393
msgid "You can't unselect this package. It is already installed"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:402
+#: ../../install_steps_gtk.pm_.c:396
msgid ""
"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:405
+#: ../../install_steps_gtk.pm_.c:399
msgid "You can't unselect this package. It must be upgraded"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:410
+#: ../../install_steps_gtk.pm_.c:404
msgid "Show automatically selected packages"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:411 ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_gtk.pm_.c:405 ../../install_steps_interactive.pm_.c:255
#: ../../install_steps_interactive.pm_.c:259
-#: ../../standalone/drakbackup_.c:3600
+#: ../../standalone/drakbackup_.c:4257
msgid "Install"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:414
+#: ../../install_steps_gtk.pm_.c:408
msgid "Load/Save on floppy"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:415
+#: ../../install_steps_gtk.pm_.c:409
msgid "Updating package selection"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:420
+#: ../../install_steps_gtk.pm_.c:414
msgid "Minimal install"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:435 ../../install_steps_interactive.pm_.c:538
+#: ../../install_steps_gtk.pm_.c:429 ../../install_steps_interactive.pm_.c:522
msgid "Choose the packages you want to install"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:451 ../../install_steps_interactive.pm_.c:778
+#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:762
msgid "Installing"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:457
+#: ../../install_steps_gtk.pm_.c:451
msgid "Estimating"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:464
+#: ../../install_steps_gtk.pm_.c:458
msgid "Time remaining "
msgstr ""
-#: ../../install_steps_gtk.pm_.c:476
+#: ../../install_steps_gtk.pm_.c:470
msgid "Please wait, preparing installation..."
msgstr ""
-#: ../../install_steps_gtk.pm_.c:560
+#: ../../install_steps_gtk.pm_.c:554
#, c-format
msgid "%d packages"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:565
+#: ../../install_steps_gtk.pm_.c:559
#, c-format
msgid "Installing package %s"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:602 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:802
+#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:786
#: ../../standalone/drakautoinst_.c:202
msgid "Accept"
msgstr "Ù‚ŰšÙˆÙ„"
-#: ../../install_steps_gtk.pm_.c:602 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:802
+#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:786
msgid "Refuse"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:603 ../../install_steps_interactive.pm_.c:803
+#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:787
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4045,17 +4148,17 @@ msgid ""
"If you don't have it, press Cancel to avoid installation from this Cd-Rom."
msgstr ""
-#: ../../install_steps_gtk.pm_.c:617 ../../install_steps_gtk.pm_.c:621
-#: ../../install_steps_interactive.pm_.c:815
-#: ../../install_steps_interactive.pm_.c:819
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_gtk.pm_.c:615
+#: ../../install_steps_interactive.pm_.c:799
+#: ../../install_steps_interactive.pm_.c:803
msgid "Go on anyway?"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:617 ../../install_steps_interactive.pm_.c:815
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:799
msgid "There was an error ordering packages:"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:621 ../../install_steps_interactive.pm_.c:819
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:803
msgid "There was an error installing packages:"
msgstr ""
@@ -4229,7 +4332,7 @@ msgid "Are you sure you refuse the licence?"
msgstr ""
#: ../../install_steps_interactive.pm_.c:211
-#: ../../install_steps_interactive.pm_.c:1038
+#: ../../install_steps_interactive.pm_.c:1023
#: ../../standalone/keyboarddrake_.c:31
msgid "Keyboard"
msgstr "Ù„ÙˆŰ­Ű© Ű§Ù„Ù…ÙŰ§ŰȘÙŠŰ­"
@@ -4277,11 +4380,11 @@ msgstr ""
msgid "Please choose the type of your mouse."
msgstr "۱ۏۧۥ ۧ۟ŰȘ۱ لŰșŰ© نوŰč Ű§Ù„ÙŰŁŰ±Ű©."
-#: ../../install_steps_interactive.pm_.c:281 ../../standalone/mousedrake_.c:59
+#: ../../install_steps_interactive.pm_.c:281 ../../standalone/mousedrake_.c:60
msgid "Mouse Port"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:61
msgid "Please choose on which serial port your mouse is connected to."
msgstr ""
@@ -4313,199 +4416,182 @@ msgstr ""
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:336
+#: ../../install_steps_interactive.pm_.c:338
msgid "No partition available"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:339
+#: ../../install_steps_interactive.pm_.c:341
msgid "Scanning partitions to find mount points"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:347
+#: ../../install_steps_interactive.pm_.c:349
msgid "Choose the mount points"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:366
-#, c-format
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to not allow DrakX to modify the partition table.\n"
-"(the error is %s)\n"
-"\n"
-"Do you agree to loose all the partitions?\n"
-msgstr ""
-
#: ../../install_steps_interactive.pm_.c:379
msgid ""
-"DiskDrake failed to read correctly the partition table.\n"
-"Continue at your own risk!"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:396
-msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:405
+#: ../../install_steps_interactive.pm_.c:388
msgid "No root partition found to perform an upgrade"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:406
+#: ../../install_steps_interactive.pm_.c:389
msgid "Root Partition"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:407
+#: ../../install_steps_interactive.pm_.c:390
msgid "What is the root partition (/) of your system?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:421
+#: ../../install_steps_interactive.pm_.c:404
msgid "You need to reboot for the partition table modifications to take place"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:445
+#: ../../install_steps_interactive.pm_.c:428
msgid "Choose the partitions you want to format"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:446
+#: ../../install_steps_interactive.pm_.c:429
msgid "Check bad blocks?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:473
+#: ../../install_steps_interactive.pm_.c:456
msgid "Formatting partitions"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:475
+#: ../../install_steps_interactive.pm_.c:458
#, c-format
msgid "Creating and formatting file %s"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:480
+#: ../../install_steps_interactive.pm_.c:463
#, c-format
msgid ""
"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
"you can loose data)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:482
+#: ../../install_steps_interactive.pm_.c:465
msgid "Not enough swap space to fulfill installation, please add some"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:489
+#: ../../install_steps_interactive.pm_.c:472
msgid "Looking for available packages and rebuilding rpm database..."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:490
+#: ../../install_steps_interactive.pm_.c:473
msgid "Looking for available packages..."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:493
+#: ../../install_steps_interactive.pm_.c:476
#, fuzzy
msgid "Looking at packages already installed..."
msgstr "ۧ۟ŰȘ۱ Ű§Ù„Ű­ŰČم Ű§Ù„ŰȘي ŰłŰȘÙŰ«ŰšÙ‘ÙŽŰȘ"
-#: ../../install_steps_interactive.pm_.c:497
+#: ../../install_steps_interactive.pm_.c:480
msgid "Finding packages to upgrade..."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:515
+#: ../../install_steps_interactive.pm_.c:498
#, c-format
msgid ""
"Your system does not have enough space left for installation or upgrade (%d "
"> %d)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:550
+#: ../../install_steps_interactive.pm_.c:534
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:553
+#: ../../install_steps_interactive.pm_.c:537
msgid "Load from floppy"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_interactive.pm_.c:539
msgid "Loading from floppy"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_interactive.pm_.c:539
msgid "Package selection"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:560
+#: ../../install_steps_interactive.pm_.c:544
msgid "Insert a floppy containing package selection"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:572
+#: ../../install_steps_interactive.pm_.c:556
msgid "Save on floppy"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:646
+#: ../../install_steps_interactive.pm_.c:630
msgid "Selected size is larger than available space"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:660
+#: ../../install_steps_interactive.pm_.c:644
msgid "Type of install"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:661
+#: ../../install_steps_interactive.pm_.c:645
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:664
+#: ../../install_steps_interactive.pm_.c:648
msgid "With X"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:666
+#: ../../install_steps_interactive.pm_.c:650
msgid "With basic documentation (recommended!)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:667
+#: ../../install_steps_interactive.pm_.c:651
msgid "Truly minimal install (especially no urpmi)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:752
+#: ../../install_steps_interactive.pm_.c:736
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
"If only some CDs are missing, unselect them, then click Ok."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:757
+#: ../../install_steps_interactive.pm_.c:741
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr ""
-#: ../../install_steps_interactive.pm_.c:778
+#: ../../install_steps_interactive.pm_.c:762
msgid "Preparing installation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:771
#, c-format
msgid ""
"Installing package %s\n"
"%d%%"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:833
+#: ../../install_steps_interactive.pm_.c:817
msgid "Post-install configuration"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:839
+#: ../../install_steps_interactive.pm_.c:823
#, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:845
+#: ../../install_steps_interactive.pm_.c:829
#, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:865
+#: ../../install_steps_interactive.pm_.c:849
msgid ""
"You now have the opportunity to download encryption software.\n"
"\n"
@@ -4544,7 +4630,7 @@ msgid ""
"USA"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:904
+#: ../../install_steps_interactive.pm_.c:888
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
"have been released after the distribution was released. They may\n"
@@ -4556,155 +4642,155 @@ msgid ""
"Do you want to install the updates ?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:919
+#: ../../install_steps_interactive.pm_.c:903
msgid ""
"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:924
+#: ../../install_steps_interactive.pm_.c:908
msgid "Choose a mirror from which to get the packages"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:933
+#: ../../install_steps_interactive.pm_.c:917
msgid "Contacting the mirror to get the list of available packages..."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:960
+#: ../../install_steps_interactive.pm_.c:945
msgid "Which is your timezone?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:965
+#: ../../install_steps_interactive.pm_.c:950
msgid "Hardware clock set to GMT"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:966
+#: ../../install_steps_interactive.pm_.c:951
msgid "Automatic time synchronization (using NTP)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:973
+#: ../../install_steps_interactive.pm_.c:958
msgid "NTP Server"
msgstr "ŰźŰ§ŰŻÙ… NTP"
-#: ../../install_steps_interactive.pm_.c:1007
-#: ../../install_steps_interactive.pm_.c:1015
+#: ../../install_steps_interactive.pm_.c:992
+#: ../../install_steps_interactive.pm_.c:1000
msgid "Remote CUPS server"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1008
+#: ../../install_steps_interactive.pm_.c:993
msgid "No printer"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1025
+#: ../../install_steps_interactive.pm_.c:1010
msgid "Do you have an ISA sound card?"
msgstr "ŰšŰ·Ű§Ù‚Ű© Ű§Ù„Ű”Ù‘ÙˆŰȘ ISA هل ŰčÙ†ŰŻÙƒ ŰčÙ†ŰŻ"
-#: ../../install_steps_interactive.pm_.c:1027
+#: ../../install_steps_interactive.pm_.c:1012
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1029
+#: ../../install_steps_interactive.pm_.c:1014
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1034 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1019 ../../steps.pm_.c:27
msgid "Summary"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1037
+#: ../../install_steps_interactive.pm_.c:1022
msgid "Mouse"
msgstr "Ű§Ù„ÙŰŁŰ±Ű©"
-#: ../../install_steps_interactive.pm_.c:1039
+#: ../../install_steps_interactive.pm_.c:1024
msgid "Timezone"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1040 ../../printerdrake.pm_.c:2728
-#: ../../printerdrake.pm_.c:2814
+#: ../../install_steps_interactive.pm_.c:1025 ../../printerdrake.pm_.c:2937
+#: ../../printerdrake.pm_.c:3026
msgid "Printer"
msgstr "۷ۧۚŰčŰ©"
-#: ../../install_steps_interactive.pm_.c:1042
+#: ../../install_steps_interactive.pm_.c:1027
msgid "ISDN card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1045
-#: ../../install_steps_interactive.pm_.c:1047
+#: ../../install_steps_interactive.pm_.c:1030
+#: ../../install_steps_interactive.pm_.c:1032
msgid "Sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1049
+#: ../../install_steps_interactive.pm_.c:1034
msgid "TV card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1089
-#: ../../install_steps_interactive.pm_.c:1114
-#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1074
+#: ../../install_steps_interactive.pm_.c:1099
+#: ../../install_steps_interactive.pm_.c:1103
msgid "LDAP"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1090
-#: ../../install_steps_interactive.pm_.c:1114
-#: ../../install_steps_interactive.pm_.c:1127
+#: ../../install_steps_interactive.pm_.c:1075
+#: ../../install_steps_interactive.pm_.c:1099
+#: ../../install_steps_interactive.pm_.c:1112
msgid "NIS"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1091
-#: ../../install_steps_interactive.pm_.c:1114
-#: ../../install_steps_interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1141
+#: ../../install_steps_interactive.pm_.c:1076
+#: ../../install_steps_interactive.pm_.c:1099
+#: ../../install_steps_interactive.pm_.c:1120
+#: ../../install_steps_interactive.pm_.c:1126
#, fuzzy
msgid "Windows Domain"
msgstr "Ű§Ű­Ű”Ù„ Űčلى ŰźŰ·ÙˆŰ· Windows"
-#: ../../install_steps_interactive.pm_.c:1092
-#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1077
+#: ../../install_steps_interactive.pm_.c:1099
msgid "Local files"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1101
-#: ../../install_steps_interactive.pm_.c:1102 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1086
+#: ../../install_steps_interactive.pm_.c:1087 ../../steps.pm_.c:24
msgid "Set root password"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1103
+#: ../../install_steps_interactive.pm_.c:1088
msgid "No password"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1108
+#: ../../install_steps_interactive.pm_.c:1093
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1114 ../../network/modem.pm_.c:49
+#: ../../install_steps_interactive.pm_.c:1099 ../../network/modem.pm_.c:49
#: ../../standalone/drakconnect_.c:625 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Ű§Ù„ŰȘŰ­Ù‚Ù‚"
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1107
msgid "Authentication LDAP"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1123
+#: ../../install_steps_interactive.pm_.c:1108
msgid "LDAP Base dn"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1124
+#: ../../install_steps_interactive.pm_.c:1109
msgid "LDAP Server"
msgstr "ŰźŰ§ŰŻÙ… LDAP"
-#: ../../install_steps_interactive.pm_.c:1130
+#: ../../install_steps_interactive.pm_.c:1115
msgid "Authentication NIS"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1116
msgid "NIS Domain"
msgstr "NIS Domain"
-#: ../../install_steps_interactive.pm_.c:1132
+#: ../../install_steps_interactive.pm_.c:1117
msgid "NIS Server"
msgstr " Ű§Ù„ŰźŰ§ŰŻÙ… NIS"
-#: ../../install_steps_interactive.pm_.c:1138
+#: ../../install_steps_interactive.pm_.c:1123
msgid ""
"For this to work for a W2K PDC, you will probably need to have the admin "
"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
@@ -4720,21 +4806,21 @@ msgid ""
"good."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1140
+#: ../../install_steps_interactive.pm_.c:1125
#, fuzzy
msgid "Authentication Windows Domain"
msgstr "Ű§Ù„ŰȘŰ­Ù‚Ù‚"
-#: ../../install_steps_interactive.pm_.c:1142
+#: ../../install_steps_interactive.pm_.c:1127
#, fuzzy
msgid "Domain Admin User Name"
msgstr "Domain name"
-#: ../../install_steps_interactive.pm_.c:1143
+#: ../../install_steps_interactive.pm_.c:1128
msgid "Domain Admin Password"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1178
+#: ../../install_steps_interactive.pm_.c:1163
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
"depending on the normal bootloader. This is useful if you don't want to "
@@ -4752,19 +4838,19 @@ msgid ""
"drive and press \"Ok\"."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1194
+#: ../../install_steps_interactive.pm_.c:1179
msgid "First floppy drive"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1195
+#: ../../install_steps_interactive.pm_.c:1180
msgid "Second floppy drive"
msgstr "Ű§Ù„Ù…ŰŻŰźÙ„ Ű§Ù„Ù…Ű±Ù† Ű§Ù„Ű«Ù‘Ű§Ù†ÙŠ"
-#: ../../install_steps_interactive.pm_.c:1196 ../../printerdrake.pm_.c:2277
+#: ../../install_steps_interactive.pm_.c:1181 ../../printerdrake.pm_.c:2470
msgid "Skip"
msgstr "ŰȘŰźŰ·ÙŠ"
-#: ../../install_steps_interactive.pm_.c:1201
+#: ../../install_steps_interactive.pm_.c:1186
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -4780,7 +4866,7 @@ msgid ""
"%s"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1207
+#: ../../install_steps_interactive.pm_.c:1192
msgid ""
"\n"
"\n"
@@ -4789,28 +4875,28 @@ msgid ""
"because XFS needs a very large driver)."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1215
+#: ../../install_steps_interactive.pm_.c:1200
msgid "Sorry, no floppy drive available"
msgstr "ŰąŰłÙ , Ù„Ű§ Ù…ŰŻŰźÙ„ Ù…Ű±Ù† مŰȘۭۧ"
-#: ../../install_steps_interactive.pm_.c:1219
+#: ../../install_steps_interactive.pm_.c:1204
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1223
+#: ../../install_steps_interactive.pm_.c:1208
#, c-format
msgid "Insert a floppy in %s"
msgstr "ŰŁŰŻŰźÙ„ Ù‚Ű±Ű” Ù…Ű±Ù† ŰšŰ§Ù„ŰŻÙ‘Ű§ŰźÙ„ %s"
-#: ../../install_steps_interactive.pm_.c:1226
+#: ../../install_steps_interactive.pm_.c:1211
msgid "Creating bootdisk..."
msgstr " Ű„Ù†ŰŽŰ§ŰĄ Ù‚Ű±Ű” Ű§Ù„Ű§ Ù‚Ù„Ű§ Űč "
-#: ../../install_steps_interactive.pm_.c:1233
+#: ../../install_steps_interactive.pm_.c:1218
msgid "Preparing bootloader..."
msgstr " bootloader Ű„Űčۯۧۯ "
-#: ../../install_steps_interactive.pm_.c:1244
+#: ../../install_steps_interactive.pm_.c:1229
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -4818,25 +4904,25 @@ msgid ""
" need to use BootX to boot your machine"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1250
+#: ../../install_steps_interactive.pm_.c:1235
msgid "Do you want to use aboot?"
msgstr " aboot هل ŰȘŰ±ÙŠŰŻ ŰŁÙ† ŰȘŰłŰȘŰźŰŻÙ… "
-#: ../../install_steps_interactive.pm_.c:1253
+#: ../../install_steps_interactive.pm_.c:1238
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1260
+#: ../../install_steps_interactive.pm_.c:1245
msgid "Installing bootloader"
msgstr "bootloader Ű§Ù„ŰȘÙ‘Ű±ÙƒÙŠŰš "
-#: ../../install_steps_interactive.pm_.c:1266
+#: ../../install_steps_interactive.pm_.c:1251
msgid "Installation of bootloader failed. The following error occured:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1274
+#: ../../install_steps_interactive.pm_.c:1259
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -4847,24 +4933,24 @@ msgid ""
"At your next boot you should see the bootloader prompt."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1308
+#: ../../install_steps_interactive.pm_.c:1293
#: ../../standalone/drakautoinst_.c:79
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1312
+#: ../../install_steps_interactive.pm_.c:1297
msgid "Creating auto install floppy..."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1323
+#: ../../install_steps_interactive.pm_.c:1308
msgid ""
"Some steps are not completed.\n"
"\n"
"Do you really want to quit now?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1334
+#: ../../install_steps_interactive.pm_.c:1319
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
@@ -4883,16 +4969,16 @@ msgid ""
"install chapter of the Official Mandrake Linux User's Guide."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1347
+#: ../../install_steps_interactive.pm_.c:1332
#, fuzzy
msgid "http://www.mandrakelinux.com/en/90errata.php3"
msgstr "http://www.mandrakesoft.com/sales/contact"
-#: ../../install_steps_interactive.pm_.c:1352
+#: ../../install_steps_interactive.pm_.c:1337
msgid "Generate auto install floppy"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1354
+#: ../../install_steps_interactive.pm_.c:1339
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -4901,15 +4987,15 @@ msgid ""
"You may prefer to replay the installation.\n"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1359
+#: ../../install_steps_interactive.pm_.c:1344
msgid "Automated"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1359
+#: ../../install_steps_interactive.pm_.c:1344
msgid "Replay"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1362
+#: ../../install_steps_interactive.pm_.c:1347
msgid "Save packages selection"
msgstr ""
@@ -4918,7 +5004,8 @@ msgstr ""
msgid "Mandrake Linux Installation %s"
msgstr ""
-#: ../../install_steps_newt.pm_.c:34
+#. -PO This string must fit in a 80-char wide text screen
+#: ../../install_steps_newt.pm_.c:35
msgid ""
" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
msgstr ""
@@ -4935,22 +5022,22 @@ msgstr "consolehelper missing"
msgid "Choose a file"
msgstr "Ű„ŰźŰȘ۱ ملف"
-#: ../../interactive.pm_.c:317
+#: ../../interactive.pm_.c:320
msgid "Advanced"
msgstr "مŰȘÙ‚ŰŻÙ…"
-#: ../../interactive.pm_.c:318
+#: ../../interactive.pm_.c:321
msgid "Basic"
msgstr "Basic"
-#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:155
-#: ../../printerdrake.pm_.c:1990
+#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:158
+#: ../../printerdrake.pm_.c:2124
msgid "<- Previous"
msgstr "<-ŰłŰ§ŰšÙ‚ "
#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
-#: ../../standalone/drakbackup_.c:3464 ../../standalone/drakbackup_.c:3491
-#: ../../standalone/drakbackup_.c:3517
+#: ../../standalone/drakbackup_.c:4112 ../../standalone/drakbackup_.c:4139
+#: ../../standalone/drakbackup_.c:4169 ../../standalone/drakbackup_.c:4195
msgid "Next"
msgstr "Ű§Ù„ŰȘŰ§Ù„ÙŠ"
@@ -5016,375 +5103,375 @@ msgstr ""
msgid "Re-submit"
msgstr "Ű„Űčۧۯ۩ ŰȘŰłÙ„ÙŠÙ…"
-#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:152 ../../keyboard.pm_.c:187
msgid "Czech (QWERTZ)"
msgstr "Ű§Ù„ŰȘŰŽÙŠÙƒÙŠŰ© (QWERTZ)"
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:153 ../../keyboard.pm_.c:189
msgid "German"
msgstr "Ű§Ù„ŰŁÙ„Ù…Ű§Ù†ÙŠŰ©"
-#: ../../keyboard.pm_.c:175
+#: ../../keyboard.pm_.c:154
msgid "Dvorak"
msgstr "Dvorak"
-#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:218
+#: ../../keyboard.pm_.c:155 ../../keyboard.pm_.c:197
msgid "Spanish"
msgstr "Ű§Ù„Ű„ŰłŰšŰ§Ù†ÙŠŰ©"
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:156 ../../keyboard.pm_.c:198
msgid "Finnish"
msgstr "Ű§Ù„ÙÙ†Ù„Ù†ŰŻÙŠŰ©"
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:220
+#: ../../keyboard.pm_.c:157 ../../keyboard.pm_.c:199
msgid "French"
msgstr "Ű§Ù„ÙŰ±Ù†ŰłÙŠŰ©"
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:158 ../../keyboard.pm_.c:231
msgid "Norwegian"
msgstr "Ű§Ù„Ù†Ű±ÙˆÙŠŰŹÙŠŰ©"
-#: ../../keyboard.pm_.c:180
+#: ../../keyboard.pm_.c:159
msgid "Polish"
msgstr "Ű§Ù„ŰšÙˆÙ„Ù†ŰŻÙŠŰ©"
-#: ../../keyboard.pm_.c:181 ../../keyboard.pm_.c:260
+#: ../../keyboard.pm_.c:160 ../../keyboard.pm_.c:239
msgid "Russian"
msgstr "Ű§Ù„Ű±ÙˆŰłÙŠŰ©"
-#: ../../keyboard.pm_.c:183 ../../keyboard.pm_.c:262
+#: ../../keyboard.pm_.c:162 ../../keyboard.pm_.c:241
msgid "Swedish"
msgstr "Ű§Ù„ŰłÙˆÙŠŰŻÙŠŰ©"
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:278
+#: ../../keyboard.pm_.c:163 ../../keyboard.pm_.c:257
msgid "UK keyboard"
msgstr "Ù„ÙˆŰ­Ű© Ű§Ù„Ù…ÙŰ§ŰȘÙŠŰ­ Ű§Ù„ŰšŰ±ÙŠŰ·Ű§Ù†ÙŠŰ©"
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:279
+#: ../../keyboard.pm_.c:164 ../../keyboard.pm_.c:258
msgid "US keyboard"
msgstr "Ù„ÙˆŰ­Ű© Ű§Ù„Ù…ÙŰ§ŰȘÙŠŰ­ Ű§Ù„ŰŁÙ…Ű±ÙŠÙƒÙŠŰ©"
-#: ../../keyboard.pm_.c:187
+#: ../../keyboard.pm_.c:166
msgid "Albanian"
msgstr "Ű§Ù„ŰŁÙ„ŰšŰ§Ù†ÙŠŰ©Ù‘"
-#: ../../keyboard.pm_.c:188
+#: ../../keyboard.pm_.c:167
msgid "Armenian (old)"
msgstr "Ű§Ù„ŰŁŰ±Ù…ÙŠÙ†ÙŠŰ© (Ù‚ŰŻÙŠÙ…)"
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:168
msgid "Armenian (typewriter)"
msgstr "Ű§Ù„ŰŁŰ±Ù…ÙŠÙ†ÙŠŰ© (ŰąÙ„Ű© ÙƒŰ§ŰȘۚ۩)"
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:169
msgid "Armenian (phonetic)"
msgstr "Ű§Ù„ŰŁŰ±Ù…ÙŠÙ†ÙŠŰ©Ù‘ (Ű”ÙˆŰȘي)"
-#: ../../keyboard.pm_.c:195
+#: ../../keyboard.pm_.c:174
msgid "Azerbaidjani (latin)"
msgstr "Ű§Ù„ŰŁŰ°Ű±ŰšÙŠŰŹŰ§Ù†ÙŠŰ© (Ù„Ű§ŰȘيني)"
-#: ../../keyboard.pm_.c:197
+#: ../../keyboard.pm_.c:176
msgid "Belgian"
msgstr "Ű§Ù„ŰšÙ„ŰŹÙŠÙƒÙŠŰ©"
-#: ../../keyboard.pm_.c:198
+#: ../../keyboard.pm_.c:177
#, fuzzy
msgid "Bengali"
msgstr "ŰȘمكين"
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:178
msgid "Bulgarian (phonetic)"
msgstr "Ű§Ù„ŰšÙ„ŰșŰ§Ű±ÙŠŰ© (Ű”ÙˆŰȘÙŠŰ©)"
-#: ../../keyboard.pm_.c:200
+#: ../../keyboard.pm_.c:179
msgid "Bulgarian (BDS)"
msgstr "Ű§Ù„ŰšÙ„ŰșŰ§Ű±ÙŠŰ© (BDS)"
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:180
msgid "Brazilian (ABNT-2)"
msgstr "Ű§Ù„ŰšŰ±Ű§ŰČÙŠÙ„ÙŠŰ©Ù‘ (ABNT-2)"
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:183
#, fuzzy
msgid "Bosnian"
msgstr "Ű§Ù„Ű„ŰłŰȘÙˆÙ†ÙŠŰ©"
-#: ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:184
msgid "Belarusian"
msgstr "Ű§Ù„ŰšÙŠÙ„Ű§Ű±ÙˆŰłÙŠŰ©"
-#: ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:185
msgid "Swiss (German layout)"
msgstr "Ű§Ù„ŰłÙˆÙŠŰłŰ±ÙŠŰ© (ŰȘŰ”Ù…ÙŠÙ… ŰŁÙ„Ù…Ű§Ù†ÙŠ)"
-#: ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:186
msgid "Swiss (French layout)"
msgstr "Ű§Ù„ŰłÙˆÙŠŰłŰ±ÙŠŰ© (ŰȘŰ”Ù…ÙŠÙ… ÙŰ±Ù†ŰłÙŠ) "
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:188
msgid "Czech (QWERTY)"
msgstr "Ű§Ù„ŰȘŰŽÙŠÙƒÙŠŰ© (QWERTY)"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:190
msgid "German (no dead keys)"
msgstr " Ű§Ù„ŰŁÙ„Ù…Ű§Ù†ÙŠŰ©Ù‘ (no dead keys)"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:191
msgid "Devanagari"
msgstr ""
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:192
msgid "Danish"
msgstr "Ű§Ù„ŰŻÙ†Ù…Ű§Ű±ÙƒÙŠŰ©"
-#: ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:193
msgid "Dvorak (US)"
msgstr "Dvorak (US)"
-#: ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:194
msgid "Dvorak (Norwegian)"
msgstr "Dvorak (Ù†Ű±ÙˆÙŠŰŹÙŠŰ©Ù‘) "
-#: ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:195
msgid "Dvorak (Swedish)"
msgstr "Dvorak (ŰłÙˆÙŠŰŻÙŠŰ©)"
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:196
msgid "Estonian"
msgstr "Ű§Ù„Ű„ŰłŰȘÙˆÙ†ÙŠŰ©"
-#: ../../keyboard.pm_.c:221
+#: ../../keyboard.pm_.c:200
msgid "Georgian (\"Russian\" layout)"
msgstr "Ű§Ù„ŰŹÙˆŰ±ŰŹÙŠŰ© (Ű§Ù„ŰȘŰ”Ù…ÙŠÙ… Ű§Ù„Ű±ÙˆŰłÙŠ)"
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:201
msgid "Georgian (\"Latin\" layout)"
msgstr "Ű§Ù„ŰŹÙˆŰ±ŰŹÙŠŰ©Ù‘ (Ű§Ù„ŰȘŰ”Ù…ÙŠÙ… Ű§Ù„Ù„Ű§ŰȘيني)"
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:202
msgid "Greek"
msgstr "Ű§Ù„ÙŠÙˆÙ†Ű§Ù†ÙŠŰ©"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:203
msgid "Gujarati"
msgstr ""
-#: ../../keyboard.pm_.c:225
+#: ../../keyboard.pm_.c:204
msgid "Gurmukhi"
msgstr ""
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:205
msgid "Hungarian"
msgstr "Ű§Ù„Ù…ŰŹŰ±ÙŠŰ© Ű§Ù„Ù‡Ù†ŰșŰ§Ű±ÙŠŰ©"
-#: ../../keyboard.pm_.c:227
+#: ../../keyboard.pm_.c:206
msgid "Croatian"
msgstr "Ű§Ù„ÙƒŰ±ÙˆŰ§ŰȘÙŠŰ©"
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:207
msgid "Israeli"
msgstr "Ű§Ù„ŰčŰšŰ±ÙŠŰ©"
-#: ../../keyboard.pm_.c:229
+#: ../../keyboard.pm_.c:208
msgid "Israeli (Phonetic)"
msgstr "Ű§Ù„ŰčŰšŰ±ÙŠŰ© (Ű”ÙˆŰȘÙŠŰ©)"
-#: ../../keyboard.pm_.c:230
+#: ../../keyboard.pm_.c:209
msgid "Iranian"
msgstr "Ű§Ù„Ű„ÙŠŰ±Ű§Ù†ÙŠÙ‘Ű©"
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:210
msgid "Icelandic"
msgstr "Ű§Ù„ŰąÙŠŰłÙ„Ű§Ù†ŰŻÙŠŰ©"
-#: ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:211
msgid "Italian"
msgstr "Ű§Ù„Ű„ÙŠŰ·Ű§Ù„ÙŠŰ©"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:212
msgid "Inuktitut"
msgstr ""
-#: ../../keyboard.pm_.c:234
+#: ../../keyboard.pm_.c:213
msgid "Japanese 106 keys"
msgstr "Ű§Ù„ÙŠŰ§ŰšŰ§Ù†ÙŠŰ© 106 Ù…ÙŰ§ŰȘÙŠŰ­"
-#: ../../keyboard.pm_.c:237
+#: ../../keyboard.pm_.c:216
msgid "Korean keyboard"
msgstr "Ù„ÙˆŰ­Ű© Ű§Ù„Ù…ÙŰ§ŰȘÙŠŰ­ Ű§Ù„ÙƒÙˆŰ±ÙŠŰ©"
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:217
msgid "Latin American"
msgstr "Ű§Ù„ŰŁÙ…Ű±ÙŠÙƒÙŠŰ© Ű§Ù„Ù„Ű§ŰȘÙŠÙ†ÙŠŰ©"
-#: ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:218
#, fuzzy
msgid "Laotian"
msgstr "Ű§Ù„Ù„Ű§ŰȘÙÙŠŰ©"
-#: ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:219
msgid "Lithuanian AZERTY (old)"
msgstr "Ű§Ù„Ù„Ù‘ÙŠŰȘÙˆŰ§Ù†ÙŠŰ©Ù‘ AZERTY ( Ù‚ŰŻÙŠÙ… ) "
-#: ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:221
msgid "Lithuanian AZERTY (new)"
msgstr "Ű§Ù„Ù„Ù‘ÙŠŰȘÙˆŰ§Ù†ÙŠÙ‘Ű© AZERTY ( ŰŹŰŻÙŠŰŻ ) "
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:222
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Ű§Ù„Ù„Ù‘ÙŠŰȘÙˆŰ§Ù†ÙŠŰ©Ù‘ \"number row\" QWERTY"
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:223
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr " Ű§Ù„Ù„Ù‘ÙŠŰȘÙˆŰ§Ù†ÙŠŰ©Ù‘ \"phonetic\" QWERTY"
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:224
msgid "Latvian"
msgstr "Ű§Ù„Ù„Ű§ŰȘÙÙŠŰ©"
-#: ../../keyboard.pm_.c:246
+#: ../../keyboard.pm_.c:225
msgid "Macedonian"
msgstr "Ű§Ù„Ù…Ù‚ŰŻÙˆÙ†ÙŠŰ©"
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:226
msgid "Myanmar (Burmese)"
msgstr ""
-#: ../../keyboard.pm_.c:248
+#: ../../keyboard.pm_.c:227
#, fuzzy
msgid "Mongolian (cyrillic)"
msgstr "Ű§Ù„Ű”Ù‘Ű±ŰšÙŠŰ©Ù‘ (cyrillic)"
-#: ../../keyboard.pm_.c:249
+#: ../../keyboard.pm_.c:228
msgid "Maltese (UK)"
msgstr ""
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:229
msgid "Maltese (US)"
msgstr ""
-#: ../../keyboard.pm_.c:251
+#: ../../keyboard.pm_.c:230
msgid "Dutch"
msgstr "Ű§Ù„Ù‡ÙˆÙ„Ù†ŰŻÙŠÙ‘Ű©"
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:232
msgid "Polish (qwerty layout)"
msgstr "Ű§Ù„ŰšÙˆÙ„Ù†ŰŻÙŠŰ© (qwerty layout)"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:233
msgid "Polish (qwertz layout)"
msgstr "Ű§Ù„ŰšÙˆÙ„Ù†ŰŻÙŠŰ© (qwertz layout)"
-#: ../../keyboard.pm_.c:255
+#: ../../keyboard.pm_.c:234
msgid "Portuguese"
msgstr "Ű§Ù„ŰšŰ±ŰȘŰșŰ§Ù„ÙŠŰ©"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:235
msgid "Canadian (Quebec)"
msgstr "Ű§Ù„ÙƒÙ†ŰŻÙŠÙ‘Ű© (ÙƒÙŠŰšÙŠÙƒ)"
-#: ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:237
msgid "Romanian (qwertz)"
msgstr "Ű§Ù„Ű±Ù‘ÙˆÙ…Ű§Ù†ÙŠÙ‘Ű© (qwertz)"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:238
msgid "Romanian (qwerty)"
msgstr "Ű§Ù„Ű±Ù‘ÙˆÙ…Ű§Ù†ÙŠŰ©Ù‘ (qwertz)"
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:240
msgid "Russian (Yawerty)"
msgstr "Ű§Ù„Ű±Ù‘ÙˆŰłÙŠŰ©Ù‘ (Yawerty)"
-#: ../../keyboard.pm_.c:263
+#: ../../keyboard.pm_.c:242
msgid "Slovenian"
msgstr "Ű§Ù„ŰłÙ„ÙˆÙÙŠÙ†ÙŠŰ©"
-#: ../../keyboard.pm_.c:264
+#: ../../keyboard.pm_.c:243
msgid "Slovakian (QWERTZ)"
msgstr "Ű§Ù„ŰłÙ„ÙˆÙŰ§ÙƒÙŠŰ© (QWERTZ)"
-#: ../../keyboard.pm_.c:265
+#: ../../keyboard.pm_.c:244
msgid "Slovakian (QWERTY)"
msgstr "Ű§Ù„ŰłÙ„ÙˆÙŰ§ÙƒÙŠŰ© (QWERTZ)"
-#: ../../keyboard.pm_.c:267
+#: ../../keyboard.pm_.c:246
msgid "Serbian (cyrillic)"
msgstr "Ű§Ù„Ű”Ù‘Ű±ŰšÙŠŰ©Ù‘ (cyrillic)"
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:248
msgid "Tamil (Unicode)"
msgstr "Ű§Ù„ŰȘŰ§Ù…ÙŠÙ„ (Unicode)"
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:249
msgid "Tamil (TSCII)"
msgstr "Ű§Ù„ŰȘŰ§Ù…ÙŠÙ„ (TSCII)"
-#: ../../keyboard.pm_.c:271
+#: ../../keyboard.pm_.c:250
msgid "Thai keyboard"
msgstr "Ù„ÙˆŰ­Ű© Ű§Ù„Ù…ÙŰ§ŰȘÙŠŰ­ Ű§Ù„ŰȘÙ‘Ű§ÙŠÙ„Ű§Ù†ŰŻÙŠÙ‘Ű©"
-#: ../../keyboard.pm_.c:273
+#: ../../keyboard.pm_.c:252
msgid "Tajik keyboard"
msgstr "Ù„ÙˆŰ­Ű© Ù…ÙŰ§ŰȘÙŠŰ­ Ű§Ù„Ű·Ù‘Ű§ŰŹÙŠÙƒÙŠÙ‘Ű©"
-#: ../../keyboard.pm_.c:274
+#: ../../keyboard.pm_.c:253
msgid "Turkish (traditional \"F\" model)"
msgstr "Ű§Ù„ŰȘÙ‘Ű±ÙƒÙŠÙ‘ (traditional \"F\" model)"
-#: ../../keyboard.pm_.c:275
+#: ../../keyboard.pm_.c:254
msgid "Turkish (modern \"Q\" model)"
msgstr "Ű§Ù„ŰȘÙ‘Ű±ÙƒÙŠÙ‘ (modern \"Q\" model)"
-#: ../../keyboard.pm_.c:277
+#: ../../keyboard.pm_.c:256
msgid "Ukrainian"
msgstr "Ű§Ù„ŰŁÙˆÙƒŰ±Ű§Ù†ÙŠŰ©"
-#: ../../keyboard.pm_.c:280
+#: ../../keyboard.pm_.c:259
msgid "US keyboard (international)"
msgstr "( "
-#: ../../keyboard.pm_.c:281
+#: ../../keyboard.pm_.c:260
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "Ű§Ù„ÙÙŠŰȘÙ†Ű§Ù…ÙŠÙ‘ \"numeric row\" QWERTY"
-#: ../../keyboard.pm_.c:282
+#: ../../keyboard.pm_.c:261
msgid "Yugoslavian (latin)"
msgstr "( يوŰșŰłÙ„Ű§ÙÙŠÙ‘ ( Ű§Ù„Ù„Ù‘Ű§ŰȘÙŠÙ†ÙŠÙ‘Ű© "
-#: ../../keyboard.pm_.c:289
+#: ../../keyboard.pm_.c:268
msgid "Right Alt key"
msgstr "مفŰȘۭۧ Alt key"
-#: ../../keyboard.pm_.c:290
+#: ../../keyboard.pm_.c:269
msgid "Both Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:291
+#: ../../keyboard.pm_.c:270
msgid "Control and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:292
+#: ../../keyboard.pm_.c:271
msgid "CapsLock key"
msgstr "مفŰȘۭۧ CapsLock"
-#: ../../keyboard.pm_.c:293
+#: ../../keyboard.pm_.c:272
msgid "Ctrl and Alt keys simultaneously"
msgstr "Ctrl and Alt keys simultaneously"
-#: ../../keyboard.pm_.c:294
+#: ../../keyboard.pm_.c:273
msgid "Alt and Shift keys simultaneously"
msgstr "Alt and Shift keys simultaneously"
-#: ../../keyboard.pm_.c:295
+#: ../../keyboard.pm_.c:274
msgid "\"Menu\" key"
msgstr "\"Menu\" key"
-#: ../../keyboard.pm_.c:296
+#: ../../keyboard.pm_.c:275
msgid "Left \"Windows\" key"
msgstr "Left \"Windows\" key"
-#: ../../keyboard.pm_.c:297
+#: ../../keyboard.pm_.c:276
msgid "Right \"Windows\" key"
msgstr "Right \"Windows\" key"
@@ -5442,11 +5529,11 @@ msgstr "Generic PS2 Wheel Mouse"
msgid "GlidePoint"
msgstr "GlidePoint"
-#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:63
+#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:65
msgid "Kensington Thinking Mouse"
msgstr "Kensington Thinking Mouse"
-#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:59
+#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:61
msgid "Genius NetMouse"
msgstr "Genius NetMouse"
@@ -5454,115 +5541,125 @@ msgstr "Genius NetMouse"
msgid "Genius NetScroll"
msgstr "Genius NetScroll"
-#: ../../mouse.pm_.c:43 ../../mouse.pm_.c:68
+#: ../../mouse.pm_.c:39 ../../mouse.pm_.c:48
+#, fuzzy
+msgid "Microsoft Explorer"
+msgstr "Microsoft IntelliMouse"
+
+#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:70
msgid "1 button"
msgstr "1 button"
-#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:51
+#: ../../mouse.pm_.c:45 ../../mouse.pm_.c:53
msgid "Generic 2 Button Mouse"
msgstr "Generic 2 Button Mouse"
-#: ../../mouse.pm_.c:46
+#: ../../mouse.pm_.c:47
msgid "Wheel"
msgstr "Wheel"
-#: ../../mouse.pm_.c:49
+#: ../../mouse.pm_.c:51
msgid "serial"
msgstr "serial"
-#: ../../mouse.pm_.c:52
+#: ../../mouse.pm_.c:54
msgid "Generic 3 Button Mouse"
msgstr "Generic 3 Button Mouse"
-#: ../../mouse.pm_.c:53
+#: ../../mouse.pm_.c:55
msgid "Microsoft IntelliMouse"
msgstr "Microsoft IntelliMouse"
-#: ../../mouse.pm_.c:54
+#: ../../mouse.pm_.c:56
msgid "Logitech MouseMan"
msgstr "Logitech MouseMan"
-#: ../../mouse.pm_.c:55
+#: ../../mouse.pm_.c:57
msgid "Mouse Systems"
msgstr "Mouse Systems"
-#: ../../mouse.pm_.c:57
+#: ../../mouse.pm_.c:59
msgid "Logitech CC Series"
msgstr "Logitech CC Series"
-#: ../../mouse.pm_.c:58
+#: ../../mouse.pm_.c:60
msgid "Logitech MouseMan+/FirstMouse+"
msgstr "Logitech MouseMan+/FirstMouse+"
-#: ../../mouse.pm_.c:60
+#: ../../mouse.pm_.c:62
msgid "MM Series"
msgstr "MM Series"
-#: ../../mouse.pm_.c:61
+#: ../../mouse.pm_.c:63
msgid "MM HitTablet"
msgstr "MM HitTablet"
-#: ../../mouse.pm_.c:62
+#: ../../mouse.pm_.c:64
msgid "Logitech Mouse (serial, old C7 type)"
msgstr "Logitech Mouse (serial, old C7 type)"
-#: ../../mouse.pm_.c:66
+#: ../../mouse.pm_.c:68
msgid "busmouse"
msgstr "busmouse"
-#: ../../mouse.pm_.c:69
+#: ../../mouse.pm_.c:71
msgid "2 buttons"
msgstr "2 buttons"
-#: ../../mouse.pm_.c:70
+#: ../../mouse.pm_.c:72
msgid "3 buttons"
msgstr "3 buttons"
-#: ../../mouse.pm_.c:73
+#: ../../mouse.pm_.c:75
msgid "none"
msgstr "ÙˆÙ„Ű§ ÙˆŰ§Ű­ŰŻ"
-#: ../../mouse.pm_.c:75
+#: ../../mouse.pm_.c:77
msgid "No mouse"
msgstr "No mouse"
-#: ../../mouse.pm_.c:445
+#: ../../mouse.pm_.c:482
msgid "Please test the mouse"
msgstr "من ÙŰ¶Ù„Ùƒ ۧ۟ŰȘۚ۱ Ű§Ù„ÙŰŁŰ±Ű©"
-#: ../../mouse.pm_.c:446
+#: ../../mouse.pm_.c:483
msgid "To activate the mouse,"
msgstr "To activate the mouse,"
-#: ../../mouse.pm_.c:447
+#: ../../mouse.pm_.c:484
msgid "MOVE YOUR WHEEL!"
msgstr " WHEEL! Ű­Ű±Ù‘Ùƒ "
-#: ../../my_gtk.pm_.c:156
+#: ../../my_gtk.pm_.c:64
+#, fuzzy
+msgid "-adobe-utopia-regular-r-*-*-25-*-*-*-p-*-iso8859-*,*-r-*"
+msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
+
+#: ../../my_gtk.pm_.c:159
msgid "Finish"
msgstr "Ű„Ù†ŰȘÙ‡Ű§ŰĄ"
-#: ../../my_gtk.pm_.c:156 ../../printerdrake.pm_.c:1992
+#: ../../my_gtk.pm_.c:159 ../../printerdrake.pm_.c:2126
msgid "Next ->"
msgstr "Ű§Ù„ŰȘŰ§Ù„ÙŠ ->"
-#: ../../my_gtk.pm_.c:284
+#: ../../my_gtk.pm_.c:287
msgid "Is this correct?"
msgstr "هل Ù‡Ű°Ű§ Ű”Ű­ÙŠŰ­ ? "
-#: ../../my_gtk.pm_.c:356 ../../services.pm_.c:222
+#: ../../my_gtk.pm_.c:359 ../../services.pm_.c:222
msgid "Info"
msgstr "Ű§Ù„Ù…ŰčÙ„ÙˆÙ…Ű§ŰȘ"
-#: ../../my_gtk.pm_.c:377
+#: ../../my_gtk.pm_.c:380
msgid "Expand Tree"
msgstr "Expand Tree"
-#: ../../my_gtk.pm_.c:378
+#: ../../my_gtk.pm_.c:381
msgid "Collapse Tree"
msgstr "Collapse Tree"
-#: ../../my_gtk.pm_.c:379
+#: ../../my_gtk.pm_.c:382
msgid "Toggle between flat and group sorted"
msgstr ""
@@ -5597,6 +5694,74 @@ msgstr "use pppoe"
msgid "use pptp"
msgstr "use pptp"
+#: ../../network/drakfirewall.pm_.c:12
+#, fuzzy
+msgid "Web Server"
+msgstr "ŰźŰ§ŰŻÙ…"
+
+#: ../../network/drakfirewall.pm_.c:17
+#, fuzzy
+msgid "Domain Name Server"
+msgstr "Domain name"
+
+#: ../../network/drakfirewall.pm_.c:32
+#, fuzzy
+msgid "Mail Server"
+msgstr "ŰźŰ§ŰŻÙ… Ù‚ÙˆŰ§ŰčŰŻ ŰšÙŠŰ§Ù†Ű§ŰȘ"
+
+#: ../../network/drakfirewall.pm_.c:37
+#, fuzzy
+msgid "POP and IMAP Server"
+msgstr "ŰźŰ§ŰŻÙ… LDAP"
+
+#: ../../network/drakfirewall.pm_.c:111
+#, fuzzy
+msgid "No network card"
+msgstr "Ù„Ű§ ŰšŰ·Ű§Ù‚Ű© ŰŽŰšÙƒŰ© ÙˆŰŹŰŻŰȘ "
+
+#: ../../network/drakfirewall.pm_.c:129
+#, fuzzy
+msgid ""
+"drakfirewall configurator\n"
+"\n"
+"This configures a personal firewall for this Mandrake Linux machine.\n"
+"For a powerful dedicated firewall solution, please look to the\n"
+"specialized MandrakeSecurity Firewall distribution."
+msgstr ""
+"ۣۯۧ۩ ŰȘÙ‡ÙŠŰŠŰ© Ű§Ù„ŰŹŰŻŰ§Ű± Ű§Ù„Ù†Ű§Ű±ÙŠ Ű§Ù„ŰšŰłÙŠŰ·\n"
+"\n"
+"Ù‡Ű°Ù‡ Ű§Ù„ŰŁŰŻŰ§Ű© ŰȘŰłÙ…Ű­ لك ŰšŰȘÙ‡ÙŠŰŠŰ© ۏۯۧ۱ Ù†Ű§Ű±ÙŠ ŰŽŰźŰ”ÙŠ Ù„Ù†ŰžŰ§Ù… Mandrake Linux Ù‡Ű°Ű§.\n"
+"ۄ۰ۧ كنŰȘ ŰȘŰ±ÙŠŰŻ ۏۯۧ۱ۧ Ù†Ű§Ű±ÙŠŰ§ مŰȘ۟۔۔ۧ, Ű§Ù„Ù‚ Ù†ŰžŰ±Ű© Űčلى\n"
+"ŰȘوŰČيŰčŰ© MandrakeSecurity Firewall."
+
+#: ../../network/drakfirewall.pm_.c:147
+msgid "Which services would you like to allow the Internet to connect to?"
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:148
+msgid ""
+"You can enter miscellaneous ports. \n"
+"Valid examples are: 139/tcp 139/udp.\n"
+"Have a look at /etc/services for information."
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:154
+#, c-format
+msgid ""
+"Invalid port given: %s.\n"
+"The proper format is \"port/tcp\" or \"port/udp\", \n"
+"where port is between 1 and 65535."
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:162
+msgid "Everything (no firewall)"
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:164
+#, fuzzy
+msgid "Other ports"
+msgstr "ŰŁŰźŰ±Ù‰"
+
#: ../../network/ethernet.pm_.c:37
msgid ""
"Which dhcp client do you want to use?\n"
@@ -5611,7 +5776,7 @@ msgid ""
"I cannot set up this connection type."
msgstr ""
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:247
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:240
msgid "Choose the network interface"
msgstr "ۧ۟ŰȘ۱ Ű§Ù„ŰłÙ‘Ű·Ű­ Ű§Ù„ŰšÙŠÙ†ÙŠÙ‘ Ù„Ù„ŰŽŰšÙƒŰ© "
@@ -5624,7 +5789,7 @@ msgstr ""
msgid "no network card found"
msgstr "Ù„Ű§ ŰšŰ·Ű§Ù‚Ű© ŰŽŰšÙƒŰ© ÙˆŰŹŰŻŰȘ "
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:366
msgid "Configuring network"
msgstr "ۧ Űčۯۧۯ ŰŽŰšÙƒŰ©"
@@ -5636,7 +5801,7 @@ msgid ""
"such as ``mybox.mylab.myco.com''."
msgstr ""
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:370
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:371
msgid "Host name"
msgstr "Host Ű§ŰłÙ… "
@@ -5898,13 +6063,13 @@ msgstr ""
msgid "Use auto detection"
msgstr ""
-#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2930
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:3151
#: ../../standalone/drakconnect_.c:274 ../../standalone/drakconnect_.c:277
#: ../../standalone/drakfloppy_.c:145
msgid "Expert Mode"
msgstr "ÙˆŰ¶ŰčÙŠŰ© Ű§Ù„ŰźŰšÙŠŰ±"
-#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:283
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:386
msgid "Detecting devices..."
msgstr ""
@@ -6052,11 +6217,11 @@ msgstr "Automatic IP"
msgid "Start at boot"
msgstr "ۧۚۯۣ ŰčÙ†ŰŻ Ű§Ù„Ű„Ù‚Ù„Ű§Űč"
-#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:753
+#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:860
msgid "IP address should be in format 1.2.3.4"
msgstr ""
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:367
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -6064,43 +6229,55 @@ msgid ""
"You may also enter the IP address of the gateway if you have one"
msgstr ""
-#: ../../network/network.pm_.c:371
+#: ../../network/network.pm_.c:372
msgid "DNS server"
msgstr "Ű§Ù„ŰźŰ§ŰŻÙ… DNS"
-#: ../../network/network.pm_.c:372
+#: ../../network/network.pm_.c:373
#, c-format
msgid "Gateway (e.g. %s)"
msgstr "Gateway (e.g. %s)"
-#: ../../network/network.pm_.c:374
+#: ../../network/network.pm_.c:375
msgid "Gateway device"
msgstr "Gateway device"
-#: ../../network/network.pm_.c:386
+#: ../../network/network.pm_.c:387
msgid "Proxies configuration"
msgstr "Proxies ۧŰčۯۧۯ"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:388
msgid "HTTP proxy"
msgstr "HTTP proxy"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:389
msgid "FTP proxy"
msgstr "FTP proxy"
-#: ../../network/network.pm_.c:389
+#: ../../network/network.pm_.c:390
msgid "Track network card id (useful for laptops)"
msgstr ""
-#: ../../network/network.pm_.c:392
+#: ../../network/network.pm_.c:393
msgid "Proxy should be http://..."
msgstr ""
-#: ../../network/network.pm_.c:393
+#: ../../network/network.pm_.c:394
msgid "Proxy should be ftp://..."
msgstr ""
+#: ../../network/shorewall.pm_.c:24
+msgid "Firewalling configuration detected!"
+msgstr "ŰȘم Ű§ÙƒŰȘŰŽŰ§Ù Ű„Űčۯۧۯ Ù„Ù„ŰŹŰŻŰ§Ű± Ű§Ù„Ù†Ű§Ű±ÙŠ!"
+
+#: ../../network/shorewall.pm_.c:25
+msgid ""
+"Warning! An existing firewalling configuration has been detected. You may "
+"need some manual fix after installation."
+msgstr ""
+"ŰȘŰ­Ű°ÙŠŰ±! ŰȘم Ű„ÙŠŰŹŰ§ŰŻ Ű„Űčۯۧۯ ۏۯۧ۱ Ù†Ű§Ű±ÙŠ Ù…ÙˆŰŹÙˆŰŻ Ù…ŰłŰšÙ‚Ű§. Ű±ŰšÙ…Ű§ ŰȘŰ­ŰȘۧۏ Ű§Ù„Ù‰ Ű§Ű”Ù„Ű§Ű­ ÙŠŰŻÙˆÙŠ ŰšŰčŰŻ "
+"Ű§Ù„ŰȘŰ«ŰšÙŠŰȘ."
+
#: ../../network/tools.pm_.c:41
msgid "Internet configuration"
msgstr "ۧŰčۯۧۯ Internet "
@@ -6204,36 +6381,36 @@ msgstr "Account Password"
msgid "United Kingdom"
msgstr ""
-#: ../../partition_table.pm_.c:606
+#: ../../partition_table.pm_.c:602
msgid "mount failed: "
msgstr "ÙŰŽÙ„ Ű§Ù„ŰȘŰ­Ù…ÙŠÙ„: "
-#: ../../partition_table.pm_.c:670
+#: ../../partition_table.pm_.c:666
msgid "Extended partition not supported on this platform"
msgstr ""
-#: ../../partition_table.pm_.c:688
+#: ../../partition_table.pm_.c:684
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
"to the extended partitions."
msgstr ""
-#: ../../partition_table.pm_.c:778
+#: ../../partition_table.pm_.c:774
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr ""
-#: ../../partition_table.pm_.c:780
+#: ../../partition_table.pm_.c:776
msgid "Bad backup file"
msgstr ""
-#: ../../partition_table.pm_.c:802
+#: ../../partition_table.pm_.c:798
#, c-format
msgid "Error writing to file %s"
msgstr ""
-#: ../../partition_table/raw.pm_.c:187
+#: ../../partition_table/raw.pm_.c:189
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
@@ -6276,150 +6453,155 @@ msgstr "LPD - Line Printer Daemon"
msgid "PDQ - Print, Don't Queue"
msgstr "PDQ - Print, Don't Queue"
-#: ../../printer.pm_.c:35 ../../printer.pm_.c:854
+#: ../../printer.pm_.c:34 ../../printer.pm_.c:1125
msgid "CUPS"
msgstr "CUPS"
-#: ../../printer.pm_.c:36
+#: ../../printer.pm_.c:35
msgid "LPRng"
msgstr "LPRng"
-#: ../../printer.pm_.c:37
+#: ../../printer.pm_.c:36
msgid "LPD"
msgstr "LPD"
-#: ../../printer.pm_.c:38
+#: ../../printer.pm_.c:37
msgid "PDQ"
msgstr "PDQ"
-#: ../../printer.pm_.c:50
+#: ../../printer.pm_.c:49
msgid "Local printer"
msgstr "۷ۧۚŰčŰ© Ù…Ű­Ù„ÙŠŰ©"
-#: ../../printer.pm_.c:51
+#: ../../printer.pm_.c:50
msgid "Remote printer"
msgstr "۷ۧۚŰčŰ© ŰšŰčÙŠŰŻŰ©"
-#: ../../printer.pm_.c:52
+#: ../../printer.pm_.c:51
msgid "Printer on remote CUPS server"
msgstr ""
-#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:776
+#: ../../printer.pm_.c:52 ../../printerdrake.pm_.c:883
msgid "Printer on remote lpd server"
msgstr ""
-#: ../../printer.pm_.c:54
+#: ../../printer.pm_.c:53
msgid "Network printer (TCP/Socket)"
msgstr "۷ۧۚŰčŰ© ŰŽŰšÙƒŰ© (TCP/Socket)"
-#: ../../printer.pm_.c:55
+#: ../../printer.pm_.c:54
msgid "Printer on SMB/Windows 95/98/NT server"
msgstr ""
-#: ../../printer.pm_.c:56
+#: ../../printer.pm_.c:55
msgid "Printer on NetWare server"
msgstr ""
-#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:780
+#: ../../printer.pm_.c:56 ../../printerdrake.pm_.c:887
msgid "Enter a printer device URI"
msgstr ""
-#: ../../printer.pm_.c:58
+#: ../../printer.pm_.c:57
msgid "Pipe job into a command"
msgstr ""
-#: ../../printer.pm_.c:487 ../../printer.pm_.c:678 ../../printer.pm_.c:1000
-#: ../../printerdrake.pm_.c:2070 ../../printerdrake.pm_.c:3189
+#: ../../printer.pm_.c:324 ../../printer.pm_.c:366 ../../printer.pm_.c:533
+#, fuzzy
+msgid "Unknown Model"
+msgstr "ŰșÙŠŰ± مŰčŰ±ÙˆÙ"
+
+#: ../../printer.pm_.c:735 ../../printer.pm_.c:926 ../../printer.pm_.c:1318
+#: ../../printerdrake.pm_.c:2260 ../../printerdrake.pm_.c:3414
msgid "Unknown model"
msgstr ""
-#: ../../printer.pm_.c:515
+#: ../../printer.pm_.c:763
msgid "Local Printers"
msgstr "Ű§Ù„Ű·Ű§ŰšŰčۧŰȘ Ű§Ù„Ù…Ű­Ù„ÙŠŰ©"
-#: ../../printer.pm_.c:517 ../../printer.pm_.c:855
+#: ../../printer.pm_.c:765 ../../printer.pm_.c:1126
msgid "Remote Printers"
msgstr "Ű§Ù„Ű·Ű§ŰšŰčۧŰȘ Ű§Ù„ŰšŰčÙŠŰŻŰ©"
-#: ../../printer.pm_.c:524 ../../printerdrake.pm_.c:301
+#: ../../printer.pm_.c:772 ../../printerdrake.pm_.c:404
#, c-format
msgid " on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:527 ../../printerdrake.pm_.c:303
+#: ../../printer.pm_.c:775 ../../printerdrake.pm_.c:406
#, c-format
msgid ", USB printer \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:532
+#: ../../printer.pm_.c:780
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:535
+#: ../../printer.pm_.c:783
msgid ", multi-function device on USB"
msgstr ""
-#: ../../printer.pm_.c:537
+#: ../../printer.pm_.c:785
msgid ", multi-function device on HP JetDirect"
msgstr ""
-#: ../../printer.pm_.c:539
+#: ../../printer.pm_.c:787
msgid ", multi-function device"
msgstr ""
-#: ../../printer.pm_.c:542
+#: ../../printer.pm_.c:790
#, c-format
msgid ", printing to %s"
msgstr ""
-#: ../../printer.pm_.c:544
+#: ../../printer.pm_.c:792
#, c-format
msgid " on LPD server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:546
+#: ../../printer.pm_.c:794
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ""
-#: ../../printer.pm_.c:550
+#: ../../printer.pm_.c:798
#, c-format
msgid " on SMB/Windows server \"%s\", share \"%s\""
msgstr ""
-#: ../../printer.pm_.c:554
+#: ../../printer.pm_.c:802
#, c-format
msgid " on Novell server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:556
+#: ../../printer.pm_.c:804
#, c-format
msgid ", using command %s"
msgstr ""
-#: ../../printer.pm_.c:675 ../../printerdrake.pm_.c:1540
+#: ../../printer.pm_.c:923 ../../printerdrake.pm_.c:1656
msgid "Raw printer (No driver)"
msgstr ""
-#: ../../printer.pm_.c:824
+#: ../../printer.pm_.c:1095
#, c-format
msgid "(on %s)"
msgstr ""
-#: ../../printer.pm_.c:826
+#: ../../printer.pm_.c:1097
msgid "(on this machine)"
msgstr ""
-#: ../../printer.pm_.c:851
+#: ../../printer.pm_.c:1122
#, c-format
msgid "On CUPS server \"%s\""
msgstr "Űčلى ŰźŰ§ŰŻÙ… CUPS \"%s\""
-#: ../../printer.pm_.c:857 ../../printerdrake.pm_.c:2851
-#: ../../printerdrake.pm_.c:2862 ../../printerdrake.pm_.c:3078
-#: ../../printerdrake.pm_.c:3130 ../../printerdrake.pm_.c:3156
-#: ../../printerdrake.pm_.c:3326 ../../printerdrake.pm_.c:3328
+#: ../../printer.pm_.c:1128 ../../printerdrake.pm_.c:3071
+#: ../../printerdrake.pm_.c:3082 ../../printerdrake.pm_.c:3303
+#: ../../printerdrake.pm_.c:3355 ../../printerdrake.pm_.c:3381
+#: ../../printerdrake.pm_.c:3556 ../../printerdrake.pm_.c:3558
msgid " (Default)"
msgstr ""
@@ -6442,11 +6624,11 @@ msgstr ""
msgid "Printer auto-detection (Local, TCP/Socket, and SMB printers)"
msgstr ""
-#: ../../printerdrake.pm_.c:84 ../../printerdrake.pm_.c:2914
+#: ../../printerdrake.pm_.c:84 ../../printerdrake.pm_.c:3135
msgid "CUPS configuration"
msgstr " CUPS ۧŰčۯۧۯۧŰȘ"
-#: ../../printerdrake.pm_.c:85 ../../printerdrake.pm_.c:2915
+#: ../../printerdrake.pm_.c:85 ../../printerdrake.pm_.c:3136
msgid "Specify CUPS server"
msgstr "Ű§Ù„ŰźŰ§ŰŻÙ… CUPS Ű­ŰŻÙ‘ŰŻ"
@@ -6475,7 +6657,7 @@ msgstr ""
msgid "The IP address should look like 192.168.1.20"
msgstr ""
-#: ../../printerdrake.pm_.c:95 ../../printerdrake.pm_.c:987
+#: ../../printerdrake.pm_.c:95 ../../printerdrake.pm_.c:1094
msgid "The port number should be an integer!"
msgstr ""
@@ -6483,7 +6665,7 @@ msgstr ""
msgid "CUPS server IP"
msgstr "ŰčÙ†ÙˆŰ§Ù† IP Ù„ŰźŰ§ŰŻÙ… CUPS"
-#: ../../printerdrake.pm_.c:103 ../../printerdrake.pm_.c:1007
+#: ../../printerdrake.pm_.c:103 ../../printerdrake.pm_.c:1114
msgid "Port"
msgstr "Ű§Ù„ŰšÙˆŰ§ŰšŰ©"
@@ -6491,12 +6673,127 @@ msgstr "Ű§Ù„ŰšÙˆŰ§ŰšŰ©"
msgid "Automatic CUPS configuration"
msgstr "ŰȘÙ‡ÙŠŰŠŰ© CUPS ŰąÙ„ÙŠŰ©"
-#: ../../printerdrake.pm_.c:183 ../../printerdrake.pm_.c:192
-#: ../../printerdrake.pm_.c:2897 ../../printerdrake.pm_.c:3017
+#: ../../printerdrake.pm_.c:177 ../../printerdrake.pm_.c:247
+#: ../../printerdrake.pm_.c:1529 ../../printerdrake.pm_.c:1533
+#: ../../printerdrake.pm_.c:1651 ../../printerdrake.pm_.c:2203
+#: ../../printerdrake.pm_.c:2356 ../../printerdrake.pm_.c:2415
+#: ../../printerdrake.pm_.c:2488 ../../printerdrake.pm_.c:2509
+#: ../../printerdrake.pm_.c:2699 ../../printerdrake.pm_.c:2740
+#: ../../printerdrake.pm_.c:2745 ../../printerdrake.pm_.c:2779
+#: ../../printerdrake.pm_.c:2784 ../../printerdrake.pm_.c:2821
+#: ../../printerdrake.pm_.c:2874 ../../printerdrake.pm_.c:2894
+#: ../../printerdrake.pm_.c:2908 ../../printerdrake.pm_.c:2942
+#: ../../printerdrake.pm_.c:2988 ../../printerdrake.pm_.c:3006
+#: ../../printerdrake.pm_.c:3095 ../../printerdrake.pm_.c:3169
+#: ../../printerdrake.pm_.c:3471 ../../printerdrake.pm_.c:3526
+#: ../../printerdrake.pm_.c:3579 ../../standalone/printerdrake_.c:57
+msgid "Printerdrake"
+msgstr "Printerdrake"
+
+#: ../../printerdrake.pm_.c:178
+msgid "Checking your system..."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:186
+msgid ""
+"There are no printers found which are directly connected to your machine"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:198
+msgid ""
+"The following printers\n"
+"\n"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:199
+msgid ""
+"The following printer\n"
+"\n"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:201
+msgid ""
+"\n"
+"and one unknown printer are "
+msgstr ""
+
+#: ../../printerdrake.pm_.c:203
+#, c-format
+msgid ""
+"\n"
+"and %d unknown printers are "
+msgstr ""
+
+#: ../../printerdrake.pm_.c:207
+msgid ""
+"\n"
+"are "
+msgstr ""
+
+#: ../../printerdrake.pm_.c:208
+msgid ""
+"\n"
+"is "
+msgstr ""
+
+#: ../../printerdrake.pm_.c:210
+#, fuzzy
+msgid "directly connected to your system"
+msgstr "Ű§Ù†ŰłŰź Ű§Ù„ŰźŰ·ÙˆŰ· Ű§Ù„Ù‰ Ù†ŰžŰ§Ù…Ùƒ"
+
+#: ../../printerdrake.pm_.c:213
+msgid ""
+"\n"
+"There is one unknown printer directly connected to your system"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:215
+#, c-format
+msgid ""
+"\n"
+"There are %d unknown printers directly connected to your system"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:221
+#, fuzzy
+msgid " (Make sure that all your printers are connected and turned on).\n"
+msgstr "۱ۏۧۥ ۧ۟ŰȘ۱ Ű§Ù„Ù…Ù†ÙŰ° Ű§Ù„Ù…ÙˆŰ”Ù„Ű© Ű„Ù„ÙŠÙ‡ ۷ۧۚŰčŰȘك."
+
+#: ../../printerdrake.pm_.c:235
+msgid ""
+"Do you want to enable printing on the printers mentioned above or on "
+"printers in the local network?\n"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:236
+#, fuzzy
+msgid "Do you want to enable printing on printers in the local network?\n"
+msgstr ""
+"هل ŰȘŰ±ÙŠŰŻ ŰȘŰčيين Ù‡Ű°Ù‡ Ű§Ù„Ű·Ű§ŰšŰčŰ© (\"%s\")\n"
+"ÙƒŰ·Ű§ŰšŰčŰ© Ű§ÙŰȘŰ±Ű§Ű¶ÙŠŰ©ŰŸ"
+
+#: ../../printerdrake.pm_.c:238
+#, fuzzy
+msgid "Do you want to enable printing on the printers mentioned above?\n"
+msgstr "هل ŰȘŰ±ÙŠŰŻ ŰȘۏ۱ۚ۩ Ű„Űčۯۧۯ ۷ۧۚŰčŰ© ŰŁŰźŰ±Ù‰ŰŸ"
+
+#: ../../printerdrake.pm_.c:239
+msgid "Are you sure that you want to set up printing on this machine?\n"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:240
+#, c-format
+msgid ""
+"NOTE: Depending on the printer model and the printing system up to %d MB of "
+"additional software will be installed."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:269 ../../printerdrake.pm_.c:278
+#: ../../printerdrake.pm_.c:3117 ../../printerdrake.pm_.c:3242
msgid "Add a new printer"
msgstr "ŰŁŰ¶Ù ۷ۧۚŰčŰ© ŰŹŰŻÙŠŰŻŰ©"
-#: ../../printerdrake.pm_.c:184
+#: ../../printerdrake.pm_.c:270
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -6509,7 +6806,7 @@ msgid ""
"connection types."
msgstr ""
-#: ../../printerdrake.pm_.c:193
+#: ../../printerdrake.pm_.c:280
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -6518,7 +6815,7 @@ msgid ""
"computer, connected directly to the network or to a remote Windows machine.\n"
"\n"
"If you have printer(s) connected to this machine, Please plug it/them in on "
-"this computer and turn it/them on so that they can be auto-detected. Also "
+"this computer and turn it/them on so that it/they can be auto-detected. Also "
"your network printer(s) and you Windows machines must be connected and "
"turned on.\n"
"\n"
@@ -6531,7 +6828,22 @@ msgid ""
"want to set up your printer(s) now."
msgstr ""
-#: ../../printerdrake.pm_.c:202
+#: ../../printerdrake.pm_.c:289 ../../printerdrake.pm_.c:306
+msgid ""
+"\n"
+"Welcome to the Printer Setup Wizard\n"
+"\n"
+"This wizard will help you to install your printer(s) connected to this "
+"computer.\n"
+"\n"
+"If you have printer(s) connected to this machine, Please plug it/them in on "
+"this computer and turn it/them on so that it/they can be auto-detected.\n"
+"\n"
+" Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
+"want to set up your printer(s) now."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:297
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -6540,7 +6852,7 @@ msgid ""
"computer or connected directly to the network.\n"
"\n"
"If you have printer(s) connected to this machine, Please plug it/them in on "
-"this computer and turn it/them on so that they can be auto-detected. Also "
+"this computer and turn it/them on so that it/they can be auto-detected. Also "
"your network printer(s) must be connected and turned on.\n"
"\n"
"Note that auto-detecting printers on the network takes longer than the auto-"
@@ -6551,25 +6863,25 @@ msgid ""
"want to set up your printer(s) now."
msgstr ""
-#: ../../printerdrake.pm_.c:213
+#: ../../printerdrake.pm_.c:315
#, fuzzy
msgid "Auto-detect printers connected to this machine"
msgstr "ŰȘŰ­Ù‚Ù‚ من Ű§Ù„Ű·Ű§ŰšŰčۧŰȘ ŰąÙ„ÙŠŰ§"
-#: ../../printerdrake.pm_.c:215
+#: ../../printerdrake.pm_.c:318
msgid "Auto-detect printers connected directly to the local network"
msgstr ""
-#: ../../printerdrake.pm_.c:218
+#: ../../printerdrake.pm_.c:321
msgid "Auto-detect printers connected to machines running Microsoft Windows"
msgstr ""
-#: ../../printerdrake.pm_.c:245 ../../printerdrake.pm_.c:459
-#: ../../printerdrake.pm_.c:484
+#: ../../printerdrake.pm_.c:348 ../../printerdrake.pm_.c:562
+#: ../../printerdrake.pm_.c:587
msgid "Local Printer"
msgstr "۷ۧۚŰčŰ© Ù…Ű­Ù„ÙŠŰ©"
-#: ../../printerdrake.pm_.c:246
+#: ../../printerdrake.pm_.c:349
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -6583,50 +6895,50 @@ msgid ""
"Center."
msgstr ""
-#: ../../printerdrake.pm_.c:283 ../../printerdrake.pm_.c:474
-#: ../../printerdrake.pm_.c:683 ../../printerdrake.pm_.c:923
+#: ../../printerdrake.pm_.c:386 ../../printerdrake.pm_.c:577
+#: ../../printerdrake.pm_.c:790 ../../printerdrake.pm_.c:1030
#, fuzzy
msgid "Printer auto-detection"
msgstr "ŰȘŰ­Ù‚Ù‚ ŰąÙ„ÙŠ"
-#: ../../printerdrake.pm_.c:305
+#: ../../printerdrake.pm_.c:408
#, c-format
msgid ", network printer \"%s\", port %s"
msgstr ""
-#: ../../printerdrake.pm_.c:307
+#: ../../printerdrake.pm_.c:410
#, c-format
msgid ", printer \"%s\" on SMB/Windows server \"%s\""
msgstr ""
-#: ../../printerdrake.pm_.c:313
+#: ../../printerdrake.pm_.c:416
#, c-format
msgid "Detected %s"
msgstr "ŰȘم Ű§Ù„ŰȘŰ­Ù‚Ù‚ من %s"
-#: ../../printerdrake.pm_.c:317 ../../printerdrake.pm_.c:348
-#: ../../printerdrake.pm_.c:367
+#: ../../printerdrake.pm_.c:420 ../../printerdrake.pm_.c:451
+#: ../../printerdrake.pm_.c:470
#, c-format
msgid "Printer on parallel port \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:319 ../../printerdrake.pm_.c:350
-#: ../../printerdrake.pm_.c:372
+#: ../../printerdrake.pm_.c:422 ../../printerdrake.pm_.c:453
+#: ../../printerdrake.pm_.c:475
#, c-format
msgid "USB printer \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:321
+#: ../../printerdrake.pm_.c:424
#, fuzzy, c-format
msgid "Network printer \"%s\", port %s"
msgstr "۷ۧۚŰčŰ© ŰŽŰšÙƒŰ© (TCP/Socket)"
-#: ../../printerdrake.pm_.c:323
+#: ../../printerdrake.pm_.c:426
#, c-format
msgid "Printer \"%s\" on SMB/Windows server \"%s\""
msgstr ""
-#: ../../printerdrake.pm_.c:460
+#: ../../printerdrake.pm_.c:563
msgid ""
"No local printer found! To manually install a printer enter a device name/"
"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
@@ -6634,36 +6946,36 @@ msgid ""
"printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:464
+#: ../../printerdrake.pm_.c:567
msgid "You must enter a device or file name!"
msgstr ""
#
-#: ../../printerdrake.pm_.c:475
+#: ../../printerdrake.pm_.c:578
#, fuzzy
msgid "No printer found!"
msgstr ""
"لم يŰȘم Ű§ÙŠŰ­Ű§ŰŻ ۷ۧۚŰčŰ© Ù…Ű­Ù„ÙŠŰ©!\n"
"\n"
-#: ../../printerdrake.pm_.c:485
+#: ../../printerdrake.pm_.c:588
#, fuzzy
msgid "Available printers"
msgstr "۷ۧۚŰčŰ© Ù…Ű­Ù„ÙŠŰ©"
-#: ../../printerdrake.pm_.c:489
+#: ../../printerdrake.pm_.c:592
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:490
+#: ../../printerdrake.pm_.c:593
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up or enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:492
+#: ../../printerdrake.pm_.c:595
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
@@ -6671,7 +6983,7 @@ msgid ""
"configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:493
+#: ../../printerdrake.pm_.c:596
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
@@ -6679,81 +6991,81 @@ msgid ""
"customized printer configuration, turn on \"Manual configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:495
+#: ../../printerdrake.pm_.c:598
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:496
+#: ../../printerdrake.pm_.c:599
msgid "Please choose the port where your printer is connected to."
msgstr "۱ۏۧۥ ۧ۟ŰȘ۱ Ű§Ù„Ù…Ù†ÙŰ° Ű§Ù„Ù…ÙˆŰ”Ù„Ű© Ű„Ù„ÙŠÙ‡ ۷ۧۚŰčŰȘك."
-#: ../../printerdrake.pm_.c:498
+#: ../../printerdrake.pm_.c:601
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:503
+#: ../../printerdrake.pm_.c:606
msgid "You must choose/enter a printer/device!"
msgstr ""
-#: ../../printerdrake.pm_.c:523
+#: ../../printerdrake.pm_.c:626
msgid "Manual configuration"
msgstr "Ű„Űčۯۧۯ ÙŠŰŻÙˆÙŠ"
-#: ../../printerdrake.pm_.c:577
+#: ../../printerdrake.pm_.c:680
msgid "Remote lpd Printer Options"
msgstr ""
-#: ../../printerdrake.pm_.c:578
+#: ../../printerdrake.pm_.c:681
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
"server and the printer name on that server."
msgstr ""
-#: ../../printerdrake.pm_.c:579
+#: ../../printerdrake.pm_.c:682
msgid "Remote host name"
msgstr ""
-#: ../../printerdrake.pm_.c:580
+#: ../../printerdrake.pm_.c:683
msgid "Remote printer name"
msgstr ""
-#: ../../printerdrake.pm_.c:583
+#: ../../printerdrake.pm_.c:686
msgid "Remote host name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:587
+#: ../../printerdrake.pm_.c:690
msgid "Remote printer name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:609 ../../printerdrake.pm_.c:1119
+#: ../../printerdrake.pm_.c:712 ../../printerdrake.pm_.c:1225
#, fuzzy, c-format
msgid "Detected model: %s %s"
msgstr "ŰȘم Ű§Ù„ŰȘŰ­Ù‚Ù‚ من %s"
-#: ../../printerdrake.pm_.c:683 ../../printerdrake.pm_.c:923
+#: ../../printerdrake.pm_.c:790 ../../printerdrake.pm_.c:1030
#, fuzzy
msgid "Scanning network..."
msgstr "ŰŹŰ§Ű±ÙŠ ۚۯۥ Ű§Ù„ŰŽŰšÙƒŰ©..."
-#: ../../printerdrake.pm_.c:692 ../../printerdrake.pm_.c:713
+#: ../../printerdrake.pm_.c:799 ../../printerdrake.pm_.c:820
#, c-format
msgid ", printer \"%s\" on server \"%s\""
msgstr ""
-#: ../../printerdrake.pm_.c:695 ../../printerdrake.pm_.c:716
+#: ../../printerdrake.pm_.c:802 ../../printerdrake.pm_.c:823
#, fuzzy, c-format
msgid "Printer \"%s\" on server \"%s\""
msgstr "ŰŹŰ§Ű±ÙŠ Ű§Ù„Ű·ŰšŰ§ŰčŰ© Űčلى Ű§Ù„Ű·Ű§ŰšŰčŰ© \"%s\""
-#: ../../printerdrake.pm_.c:736
+#: ../../printerdrake.pm_.c:843
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr ""
-#: ../../printerdrake.pm_.c:737
+#: ../../printerdrake.pm_.c:844
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
"may be different from its TCP/IP hostname!) and possibly the IP address of "
@@ -6761,46 +7073,46 @@ msgid ""
"access and any applicable user name, password, and workgroup information."
msgstr ""
-#: ../../printerdrake.pm_.c:738
+#: ../../printerdrake.pm_.c:845
msgid ""
" If the desired printer was auto-detected, simply choose it from the list "
"and then add user name, password, and/or workgroup if needed."
msgstr ""
-#: ../../printerdrake.pm_.c:739
+#: ../../printerdrake.pm_.c:846
msgid "SMB server host"
msgstr ""
-#: ../../printerdrake.pm_.c:740
+#: ../../printerdrake.pm_.c:847
msgid "SMB server IP"
msgstr ""
-#: ../../printerdrake.pm_.c:741
+#: ../../printerdrake.pm_.c:848
msgid "Share name"
msgstr ""
-#: ../../printerdrake.pm_.c:744
+#: ../../printerdrake.pm_.c:851
msgid "Workgroup"
msgstr "Ù…ŰŹÙ…ÙˆŰčŰ© Ű§Ù„Űčمل"
-#: ../../printerdrake.pm_.c:746
+#: ../../printerdrake.pm_.c:853
#, fuzzy
msgid "Auto-detected"
msgstr "ŰȘŰ­Ù‚Ù‚ ŰąÙ„ÙŠ"
-#: ../../printerdrake.pm_.c:757
+#: ../../printerdrake.pm_.c:864
msgid "Either the server name or the server's IP must be given!"
msgstr ""
-#: ../../printerdrake.pm_.c:761
+#: ../../printerdrake.pm_.c:868
msgid "Samba share name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:767
+#: ../../printerdrake.pm_.c:874
msgid "SECURITY WARNING!"
msgstr ""
-#: ../../printerdrake.pm_.c:768
+#: ../../printerdrake.pm_.c:875
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -6824,7 +7136,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:778
+#: ../../printerdrake.pm_.c:885
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -6833,7 +7145,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:781
+#: ../../printerdrake.pm_.c:888
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
@@ -6841,11 +7153,11 @@ msgid ""
"Do you really want to continue setting up this printer as you are doing now?"
msgstr ""
-#: ../../printerdrake.pm_.c:853
+#: ../../printerdrake.pm_.c:960
msgid "NetWare Printer Options"
msgstr ""
-#: ../../printerdrake.pm_.c:854
+#: ../../printerdrake.pm_.c:961
msgid ""
"To print on a NetWare printer, you need to provide the NetWare print server "
"name (Note! it may be different from its TCP/IP hostname!) as well as the "
@@ -6853,43 +7165,43 @@ msgid ""
"name and password."
msgstr ""
-#: ../../printerdrake.pm_.c:855
+#: ../../printerdrake.pm_.c:962
msgid "Printer Server"
msgstr ""
-#: ../../printerdrake.pm_.c:856
+#: ../../printerdrake.pm_.c:963
msgid "Print Queue Name"
msgstr ""
-#: ../../printerdrake.pm_.c:861
+#: ../../printerdrake.pm_.c:968
msgid "NCP server name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:865
+#: ../../printerdrake.pm_.c:972
msgid "NCP queue name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:932 ../../printerdrake.pm_.c:952
+#: ../../printerdrake.pm_.c:1039 ../../printerdrake.pm_.c:1059
#, c-format
msgid ", host \"%s\", port %s"
msgstr ""
-#: ../../printerdrake.pm_.c:935 ../../printerdrake.pm_.c:955
+#: ../../printerdrake.pm_.c:1042 ../../printerdrake.pm_.c:1062
#, c-format
msgid "Host \"%s\", port %s"
msgstr ""
-#: ../../printerdrake.pm_.c:975
+#: ../../printerdrake.pm_.c:1082
msgid "TCP/Socket Printer Options"
msgstr ""
-#: ../../printerdrake.pm_.c:977
+#: ../../printerdrake.pm_.c:1084
msgid ""
"Choose one of the auto-detected printers from the list or enter the hostname "
"or IP and the optional port number (default is 9100) into the input fields."
msgstr ""
-#: ../../printerdrake.pm_.c:978
+#: ../../printerdrake.pm_.c:1085
msgid ""
"To print to a TCP or socket printer, you need to provide the host name or IP "
"of the printer and optionally the port number (default is 9100). On HP "
@@ -6897,58 +7209,58 @@ msgid ""
"vary. See the manual of your hardware."
msgstr ""
-#: ../../printerdrake.pm_.c:983
+#: ../../printerdrake.pm_.c:1090
#, fuzzy
msgid "Printer host name or IP missing!"
msgstr "Ű§ŰłÙ… Ù…ŰłŰȘŰ¶ÙŠÙ Ű§Ù„Ű·Ű§ŰšŰčŰ©"
-#: ../../printerdrake.pm_.c:1005
+#: ../../printerdrake.pm_.c:1112
#, fuzzy
msgid "Printer host name or IP"
msgstr "Ű§ŰłÙ… Ù…ŰłŰȘŰ¶ÙŠÙ Ű§Ù„Ű·Ű§ŰšŰčŰ©"
-#: ../../printerdrake.pm_.c:1054 ../../printerdrake.pm_.c:1056
+#: ../../printerdrake.pm_.c:1160 ../../printerdrake.pm_.c:1162
msgid "Printer Device URI"
msgstr ""
-#: ../../printerdrake.pm_.c:1055
+#: ../../printerdrake.pm_.c:1161
msgid ""
"You can specify directly the URI to access the printer. The URI must fulfill "
"either the CUPS or the Foomatic specifications. Note that not all URI types "
"are supported by all the spoolers."
msgstr ""
-#: ../../printerdrake.pm_.c:1070
+#: ../../printerdrake.pm_.c:1176
msgid "A valid URI must be entered!"
msgstr ""
-#: ../../printerdrake.pm_.c:1402
+#: ../../printerdrake.pm_.c:1515
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
"Location fields do not need to be filled in. They are comments for the users."
msgstr ""
-#: ../../printerdrake.pm_.c:1403
+#: ../../printerdrake.pm_.c:1516
msgid "Name of printer"
msgstr ""
-#: ../../printerdrake.pm_.c:1405
+#: ../../printerdrake.pm_.c:1518
msgid "Location"
msgstr "Ű§Ù„Ù…ÙƒŰ§Ù†"
-#: ../../printerdrake.pm_.c:1416 ../../printerdrake.pm_.c:1536
+#: ../../printerdrake.pm_.c:1530 ../../printerdrake.pm_.c:1652
msgid "Reading printer database..."
msgstr ""
-#: ../../printerdrake.pm_.c:1419
+#: ../../printerdrake.pm_.c:1534
msgid "Preparing printer database..."
msgstr ""
-#: ../../printerdrake.pm_.c:1516
+#: ../../printerdrake.pm_.c:1631
msgid "Your printer model"
msgstr ""
-#: ../../printerdrake.pm_.c:1517
+#: ../../printerdrake.pm_.c:1632
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -6963,24 +7275,24 @@ msgid ""
"%s"
msgstr ""
-#: ../../printerdrake.pm_.c:1522 ../../printerdrake.pm_.c:1525
+#: ../../printerdrake.pm_.c:1637 ../../printerdrake.pm_.c:1640
msgid "The model is correct"
msgstr ""
-#: ../../printerdrake.pm_.c:1523 ../../printerdrake.pm_.c:1524
-#: ../../printerdrake.pm_.c:1527
+#: ../../printerdrake.pm_.c:1638 ../../printerdrake.pm_.c:1639
+#: ../../printerdrake.pm_.c:1642
msgid "Select model manually"
msgstr "ŰȘم ۧ۟ŰȘÙŠŰ§Ű± Ű§Ù„Ù†Ù‘Ù…ÙˆŰ°ŰŹ ÙŠŰŻÙˆÙŠÙ‘Ù‹Ű§"
-#: ../../printerdrake.pm_.c:1543
+#: ../../printerdrake.pm_.c:1659
msgid "Printer model selection"
msgstr "Ű„ŰźŰȘÙŠŰ§Ű± ÙˆŰ­ŰŻŰ§ŰȘ Ű§Ù„Ű·Ű§ŰšŰčŰ©"
-#: ../../printerdrake.pm_.c:1544
+#: ../../printerdrake.pm_.c:1660
msgid "Which printer model do you have?"
msgstr "Ù…Ű§ هو نوŰč Ű§Ù„Ű·Ű§ŰšŰčŰ© Ù„ŰŻÙŠÙƒŰŸ"
-#: ../../printerdrake.pm_.c:1545
+#: ../../printerdrake.pm_.c:1661
msgid ""
"\n"
"\n"
@@ -6989,17 +7301,17 @@ msgid ""
"standing on a wrong model or on \"Raw printer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1548
+#: ../../printerdrake.pm_.c:1664
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
msgstr ""
-#: ../../printerdrake.pm_.c:1624
+#: ../../printerdrake.pm_.c:1741
msgid "OKI winprinter configuration"
msgstr "Ű„Űčۯۧۯ OKI WinPrinter"
-#: ../../printerdrake.pm_.c:1625
+#: ../../printerdrake.pm_.c:1742
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -7009,11 +7321,11 @@ msgid ""
"not work. Your connection type setting will be ignored by the driver."
msgstr ""
-#: ../../printerdrake.pm_.c:1668 ../../printerdrake.pm_.c:1695
+#: ../../printerdrake.pm_.c:1785 ../../printerdrake.pm_.c:1812
msgid "Lexmark inkjet configuration"
msgstr "Ű„Űčۯۧۯ Lexmark Inkjet"
-#: ../../printerdrake.pm_.c:1669
+#: ../../printerdrake.pm_.c:1786
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
"no printers on remote machines or print server boxes. Please connect your "
@@ -7021,20 +7333,46 @@ msgid ""
"to."
msgstr ""
-#: ../../printerdrake.pm_.c:1696
+#: ../../printerdrake.pm_.c:1813
msgid ""
"To be able to print with your Lexmark inkjet and this configuration, you "
"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
-"com/). Go to the US site and click on the \"Drivers\" button. Then choose "
-"your model and afterwards \"Linux\" as operating system. The drivers come as "
-"RPM packages or shell scripts with interactive graphical installation. You "
-"do not need to do this configuration by the graphical frontends. Cancel "
-"directly after the license agreement. Then print printhead alignment pages "
-"with \"lexmarkmaintain\" and adjust the head alignment settings with this "
-"program."
+"com/). Click on the \"Drivers\" link. Then choose your model and afterwards "
+"\"Linux\" as operating system. The drivers come as RPM packages or shell "
+"scripts with interactive graphical installation. You do not need to do this "
+"configuration by the graphical frontends. Cancel directly after the license "
+"agreement. Then print printhead alignment pages with \"lexmarkmaintain\" and "
+"adjust the head alignment settings with this program."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:1816
+msgid "GDI Laser Printer using the Zenographics ZJ-Stream Format"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:1817
+msgid ""
+"Your printer belongs to the group of GDI laser printers (winprinters) sold "
+"by different manufacturers which uses the Zenographics ZJ-stream raster "
+"format for the data sent to the printer. The driver for these printers is "
+"still in a very early development stage and so it will perhaps not always "
+"work properly. Especially it is possible that the printer only works when "
+"you choose the A4 paper size.\n"
+"\n"
+"Some of these printers, as the HP LaserJet 1000, for which this driver was "
+"originally created, need their firmware to be uploaded to them after they "
+"are turned on. In the case of the HP LaserJet 1000 you have to search the "
+"printer's Windows driver CD or your Windows partition for the file "
+"\"sihp1000.img\" and upload the file to the printer with one of the "
+"following commands:\n"
+"\n"
+" lpr -o raw sihp1000.img\n"
+" cat sihp1000.img > /dev/usb/lp0\n"
+"\n"
+"The first command can be given by any normal user, the second must be given "
+"as root. After having done so you can print normally.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1912
+#: ../../printerdrake.pm_.c:2040
msgid ""
"Printer default settings\n"
"\n"
@@ -7044,22 +7382,22 @@ msgid ""
"printout quality/resolution printing can get substantially slower."
msgstr ""
-#: ../../printerdrake.pm_.c:1921
+#: ../../printerdrake.pm_.c:2049
#, c-format
msgid "Option %s must be an integer number!"
msgstr ""
-#: ../../printerdrake.pm_.c:1925
+#: ../../printerdrake.pm_.c:2053
#, c-format
msgid "Option %s must be a number!"
msgstr ""
-#: ../../printerdrake.pm_.c:1930
+#: ../../printerdrake.pm_.c:2058
#, c-format
msgid "Option %s out of range!"
msgstr ""
-#: ../../printerdrake.pm_.c:1969
+#: ../../printerdrake.pm_.c:2097
#, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
@@ -7068,11 +7406,11 @@ msgstr ""
"هل ŰȘŰ±ÙŠŰŻ ŰȘŰčيين Ù‡Ű°Ù‡ Ű§Ù„Ű·Ű§ŰšŰčŰ© (\"%s\")\n"
"ÙƒŰ·Ű§ŰšŰčŰ© Ű§ÙŰȘŰ±Ű§Ű¶ÙŠŰ©ŰŸ"
-#: ../../printerdrake.pm_.c:1986
+#: ../../printerdrake.pm_.c:2120
msgid "Test pages"
msgstr ""
-#: ../../printerdrake.pm_.c:1987
+#: ../../printerdrake.pm_.c:2121
msgid ""
"Please select the test pages you want to print.\n"
"Note: the photo test page can take a rather long time to get printed and on "
@@ -7080,39 +7418,39 @@ msgid ""
"it is enough to print the standard test page."
msgstr ""
-#: ../../printerdrake.pm_.c:1991
+#: ../../printerdrake.pm_.c:2125
msgid "No test pages"
msgstr ""
-#: ../../printerdrake.pm_.c:1992
+#: ../../printerdrake.pm_.c:2126
msgid "Print"
msgstr "Ű„Ű·ŰšŰč"
-#: ../../printerdrake.pm_.c:1994
+#: ../../printerdrake.pm_.c:2183
msgid "Standard test page"
msgstr ""
-#: ../../printerdrake.pm_.c:1997
+#: ../../printerdrake.pm_.c:2186
msgid "Alternative test page (Letter)"
msgstr ""
-#: ../../printerdrake.pm_.c:2000
+#: ../../printerdrake.pm_.c:2189
msgid "Alternative test page (A4)"
msgstr ""
-#: ../../printerdrake.pm_.c:2002
+#: ../../printerdrake.pm_.c:2191
msgid "Photo test page"
msgstr ""
-#: ../../printerdrake.pm_.c:2006
+#: ../../printerdrake.pm_.c:2195
msgid "Do not print any test page"
msgstr ""
-#: ../../printerdrake.pm_.c:2014 ../../printerdrake.pm_.c:2166
+#: ../../printerdrake.pm_.c:2204 ../../printerdrake.pm_.c:2357
msgid "Printing test page(s)..."
msgstr ""
-#: ../../printerdrake.pm_.c:2039
+#: ../../printerdrake.pm_.c:2229
#, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -7122,21 +7460,21 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2043
+#: ../../printerdrake.pm_.c:2233
msgid ""
"Test page(s) have been sent to the printer.\n"
"It may take some time before the printer starts.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2050
+#: ../../printerdrake.pm_.c:2240
msgid "Did it work properly?"
msgstr ""
-#: ../../printerdrake.pm_.c:2072 ../../printerdrake.pm_.c:3191
+#: ../../printerdrake.pm_.c:2262 ../../printerdrake.pm_.c:3416
msgid "Raw printer"
msgstr "۷ۧۚŰčŰ© ŰźŰ§Ù…"
-#: ../../printerdrake.pm_.c:2098
+#: ../../printerdrake.pm_.c:2288
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -7145,15 +7483,15 @@ msgid ""
"to modify the option settings easily.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2100
+#: ../../printerdrake.pm_.c:2290
msgid ""
"These commands you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications, but here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2103 ../../printerdrake.pm_.c:2120
-#: ../../printerdrake.pm_.c:2130
+#: ../../printerdrake.pm_.c:2293 ../../printerdrake.pm_.c:2310
+#: ../../printerdrake.pm_.c:2320
#, c-format
msgid ""
"\n"
@@ -7162,7 +7500,7 @@ msgid ""
"line, e. g. \"%s <file>\". "
msgstr ""
-#: ../../printerdrake.pm_.c:2106 ../../printerdrake.pm_.c:2146
+#: ../../printerdrake.pm_.c:2296 ../../printerdrake.pm_.c:2336
#, c-format
msgid ""
"To know about the options available for the current printer read either the "
@@ -7170,41 +7508,41 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2110
+#: ../../printerdrake.pm_.c:2300
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2115 ../../printerdrake.pm_.c:2125
+#: ../../printerdrake.pm_.c:2305 ../../printerdrake.pm_.c:2315
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2117 ../../printerdrake.pm_.c:2127
-#: ../../printerdrake.pm_.c:2137
+#: ../../printerdrake.pm_.c:2307 ../../printerdrake.pm_.c:2317
+#: ../../printerdrake.pm_.c:2327
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2122 ../../printerdrake.pm_.c:2132
+#: ../../printerdrake.pm_.c:2312 ../../printerdrake.pm_.c:2322
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
msgstr ""
-#: ../../printerdrake.pm_.c:2135
+#: ../../printerdrake.pm_.c:2325
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\" or \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2139
+#: ../../printerdrake.pm_.c:2329
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -7214,7 +7552,7 @@ msgid ""
"jams.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2143
+#: ../../printerdrake.pm_.c:2333
#, c-format
msgid ""
"\n"
@@ -7223,40 +7561,40 @@ msgid ""
"line, e. g. \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2153
+#: ../../printerdrake.pm_.c:2343
#, fuzzy, c-format
msgid "Printing/Scanning/Photo Cards on \"%s\""
msgstr "ŰŹŰ§Ű±ÙŠ Ű§Ù„Ű·ŰšŰ§ŰčŰ©/Ű§Ù„Ù…ŰłŰ­ Űčلى \"%s\""
-#: ../../printerdrake.pm_.c:2154
+#: ../../printerdrake.pm_.c:2344
#, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "ŰŹŰ§Ű±ÙŠ Ű§Ù„Ű·ŰšŰ§ŰčŰ©/Ű§Ù„Ù…ŰłŰ­ Űčلى \"%s\""
-#: ../../printerdrake.pm_.c:2156
+#: ../../printerdrake.pm_.c:2346
#, fuzzy, c-format
msgid "Printing/Photo Card Access on \"%s\""
msgstr "ŰŹŰ§Ű±ÙŠ Ű§Ù„Ű·ŰšŰ§ŰčŰ©/Ű§Ù„Ù…ŰłŰ­ Űčلى \"%s\""
-#: ../../printerdrake.pm_.c:2157
+#: ../../printerdrake.pm_.c:2347
#, c-format
msgid "Printing on the printer \"%s\""
msgstr "ŰŹŰ§Ű±ÙŠ Ű§Ù„Ű·ŰšŰ§ŰčŰ© Űčلى Ű§Ù„Ű·Ű§ŰšŰčŰ© \"%s\""
-#: ../../printerdrake.pm_.c:2160 ../../printerdrake.pm_.c:2163
-#: ../../printerdrake.pm_.c:2164 ../../printerdrake.pm_.c:2165
-#: ../../printerdrake.pm_.c:3175 ../../standalone/drakTermServ_.c:248
-#: ../../standalone/drakbackup_.c:1485 ../../standalone/drakbackup_.c:3530
-#: ../../standalone/drakbug_.c:129 ../../standalone/drakfont_.c:705
+#: ../../printerdrake.pm_.c:2350 ../../printerdrake.pm_.c:2353
+#: ../../printerdrake.pm_.c:2354 ../../printerdrake.pm_.c:2355
+#: ../../printerdrake.pm_.c:3400 ../../standalone/drakTermServ_.c:248
+#: ../../standalone/drakbackup_.c:1560 ../../standalone/drakbackup_.c:4208
+#: ../../standalone/drakbug_.c:130 ../../standalone/drakfont_.c:705
#: ../../standalone/drakfont_.c:1014
msgid "Close"
msgstr "Ű„ŰșÙ„Ű§Ù‚"
-#: ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2353
msgid "Print option list"
msgstr "Ù‚Ű§ŰŠÙ…Ű© ŰźÙŠŰ§Ű±Ű§ŰȘ Ű§Ù„Ű·Ű§ŰšŰčŰ©"
-#: ../../printerdrake.pm_.c:2182
+#: ../../printerdrake.pm_.c:2373
#, c-format
msgid ""
"Your multi-function device was configured automatically to be able to scan. "
@@ -7270,7 +7608,7 @@ msgid ""
"Do not use \"scannerdrake\" for this device!"
msgstr ""
-#: ../../printerdrake.pm_.c:2202
+#: ../../printerdrake.pm_.c:2394
msgid ""
"Your printer was configured automatically to give you access to the photo "
"card drives from your PC. Now you can access your photo cards using the "
@@ -7283,17 +7621,17 @@ msgid ""
"of the file lists."
msgstr ""
-#: ../../printerdrake.pm_.c:2223 ../../printerdrake.pm_.c:2673
-#: ../../printerdrake.pm_.c:2945
+#: ../../printerdrake.pm_.c:2416 ../../printerdrake.pm_.c:2875
+#: ../../printerdrake.pm_.c:3170
msgid "Reading printer data..."
msgstr ""
-#: ../../printerdrake.pm_.c:2243 ../../printerdrake.pm_.c:2271
-#: ../../printerdrake.pm_.c:2306
+#: ../../printerdrake.pm_.c:2436 ../../printerdrake.pm_.c:2464
+#: ../../printerdrake.pm_.c:2499
msgid "Transfer printer configuration"
msgstr "نقل Ű„ŰčۯۧۯۧŰȘ Ű§Ù„Ű·Ű§ŰšŰčŰ©"
-#: ../../printerdrake.pm_.c:2244
+#: ../../printerdrake.pm_.c:2437
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -7303,51 +7641,51 @@ msgid ""
"Not all queues can be transferred due to the following reasons:\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2247
+#: ../../printerdrake.pm_.c:2440
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2249
+#: ../../printerdrake.pm_.c:2442
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2251
+#: ../../printerdrake.pm_.c:2444
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2253
+#: ../../printerdrake.pm_.c:2446
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:2254
+#: ../../printerdrake.pm_.c:2447
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
"or with native CUPS drivers cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:2255
+#: ../../printerdrake.pm_.c:2448
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
"\"Transfer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:2258
+#: ../../printerdrake.pm_.c:2451
msgid "Do not transfer printers"
msgstr ""
-#: ../../printerdrake.pm_.c:2259 ../../printerdrake.pm_.c:2276
+#: ../../printerdrake.pm_.c:2452 ../../printerdrake.pm_.c:2469
msgid "Transfer"
msgstr ""
-#: ../../printerdrake.pm_.c:2272
+#: ../../printerdrake.pm_.c:2465
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -7355,56 +7693,56 @@ msgid ""
"You can also type a new name or skip this printer."
msgstr ""
-#: ../../printerdrake.pm_.c:2280
+#: ../../printerdrake.pm_.c:2473
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr ""
-#: ../../printerdrake.pm_.c:2285
+#: ../../printerdrake.pm_.c:2478
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
"do you really want to overwrite its configuration?"
msgstr ""
-#: ../../printerdrake.pm_.c:2293
+#: ../../printerdrake.pm_.c:2486
msgid "New printer name"
msgstr ""
-#: ../../printerdrake.pm_.c:2296
+#: ../../printerdrake.pm_.c:2489
#, c-format
msgid "Transferring %s..."
msgstr ""
-#: ../../printerdrake.pm_.c:2307
+#: ../../printerdrake.pm_.c:2500
#, c-format
msgid ""
"You have transferred your former default printer (\"%s\"), Should it be also "
"the default printer under the new printing system %s?"
msgstr ""
-#: ../../printerdrake.pm_.c:2316
+#: ../../printerdrake.pm_.c:2510
msgid "Refreshing printer data..."
msgstr ""
-#: ../../printerdrake.pm_.c:2324 ../../printerdrake.pm_.c:2395
-#: ../../printerdrake.pm_.c:2407
+#: ../../printerdrake.pm_.c:2518 ../../printerdrake.pm_.c:2590
+#: ../../printerdrake.pm_.c:2602
msgid "Configuration of a remote printer"
msgstr ""
-#: ../../printerdrake.pm_.c:2325
+#: ../../printerdrake.pm_.c:2519
msgid "Starting network..."
msgstr "ŰŹŰ§Ű±ÙŠ ۚۯۥ Ű§Ù„ŰŽŰšÙƒŰ©..."
-#: ../../printerdrake.pm_.c:2359 ../../printerdrake.pm_.c:2363
-#: ../../printerdrake.pm_.c:2365
+#: ../../printerdrake.pm_.c:2554 ../../printerdrake.pm_.c:2558
+#: ../../printerdrake.pm_.c:2560
msgid "Configure the network now"
msgstr ""
-#: ../../printerdrake.pm_.c:2360
+#: ../../printerdrake.pm_.c:2555
msgid "Network functionality not configured"
msgstr "لم يŰȘم ŰȘŰ­ŰŻÙŠŰŻ ÙˆŰžÙŠÙÙŠŰ© Ű§Ù„ŰŽŰšÙƒŰ©"
-#: ../../printerdrake.pm_.c:2361
+#: ../../printerdrake.pm_.c:2556
msgid ""
"You are going to configure a remote printer. This needs working network "
"access, but your network is not configured yet. If you go on without network "
@@ -7412,11 +7750,11 @@ msgid ""
"configuring now. How do you want to proceed?"
msgstr ""
-#: ../../printerdrake.pm_.c:2364
+#: ../../printerdrake.pm_.c:2559
msgid "Go on without configuring the network"
msgstr ""
-#: ../../printerdrake.pm_.c:2397
+#: ../../printerdrake.pm_.c:2592
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -7426,31 +7764,31 @@ msgid ""
"\"Printer\""
msgstr ""
-#: ../../printerdrake.pm_.c:2398
+#: ../../printerdrake.pm_.c:2593
msgid ""
"The network access was not running and could not be started. Please check "
"your configuration and your hardware. Then try to configure your remote "
"printer again."
msgstr ""
-#: ../../printerdrake.pm_.c:2408
+#: ../../printerdrake.pm_.c:2603
msgid "Restarting printing system..."
msgstr ""
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2641
msgid "high"
msgstr "Ù…Ű±ŰȘفŰč"
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2641
msgid "paranoid"
msgstr ""
-#: ../../printerdrake.pm_.c:2447
+#: ../../printerdrake.pm_.c:2642
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr ""
-#: ../../printerdrake.pm_.c:2448
+#: ../../printerdrake.pm_.c:2643
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -7465,11 +7803,11 @@ msgid ""
"Do you really want to configure printing on this machine?"
msgstr ""
-#: ../../printerdrake.pm_.c:2480
+#: ../../printerdrake.pm_.c:2675
msgid "Starting the printing system at boot time"
msgstr ""
-#: ../../printerdrake.pm_.c:2481
+#: ../../printerdrake.pm_.c:2676
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -7483,99 +7821,96 @@ msgid ""
"again?"
msgstr ""
-#: ../../printerdrake.pm_.c:2504 ../../printerdrake.pm_.c:2544
-#: ../../printerdrake.pm_.c:2581 ../../printerdrake.pm_.c:2621
-#: ../../printerdrake.pm_.c:2733
+#: ../../printerdrake.pm_.c:2700 ../../printerdrake.pm_.c:2741
+#: ../../printerdrake.pm_.c:2780 ../../printerdrake.pm_.c:2822
+#: ../../printerdrake.pm_.c:2943
msgid "Checking installed software..."
msgstr ""
-#: ../../printerdrake.pm_.c:2548
+#: ../../printerdrake.pm_.c:2746
msgid "Removing LPRng..."
msgstr ""
-#: ../../printerdrake.pm_.c:2585
+#: ../../printerdrake.pm_.c:2785
msgid "Removing LPD..."
msgstr ""
-#: ../../printerdrake.pm_.c:2657
+#: ../../printerdrake.pm_.c:2858
msgid "Select Printer Spooler"
msgstr ""
-#: ../../printerdrake.pm_.c:2658
+#: ../../printerdrake.pm_.c:2859
msgid "Which printing system (spooler) do you want to use?"
msgstr "ŰŁÙŠ Ù†ŰžŰ§Ù… ۷ۚۧŰčŰ© ŰȘŰ±ÙŠŰŻ ŰŁÙ† ŰȘŰłŰȘŰźŰŻÙ…ŰŸ"
-#: ../../printerdrake.pm_.c:2691
+#: ../../printerdrake.pm_.c:2895
#, c-format
msgid "Configuring printer \"%s\"..."
msgstr "ŰŹŰ§Ű±ÙŠ Ű„Űčۯۧۯ Ű§Ù„Ű·Ű§ŰšŰčŰ© \"%s\" ..."
-#: ../../printerdrake.pm_.c:2704
+#: ../../printerdrake.pm_.c:2909
msgid "Installing Foomatic..."
msgstr ""
-#: ../../printerdrake.pm_.c:2769 ../../printerdrake.pm_.c:2808
-#: ../../printerdrake.pm_.c:3192 ../../printerdrake.pm_.c:3262
+#: ../../printerdrake.pm_.c:2979 ../../printerdrake.pm_.c:3020
+#: ../../printerdrake.pm_.c:3417 ../../printerdrake.pm_.c:3490
msgid "Printer options"
msgstr ""
-#: ../../printerdrake.pm_.c:2778
-msgid "Preparing PrinterDrake..."
-msgstr ""
+#: ../../printerdrake.pm_.c:2989
+#, fuzzy
+msgid "Preparing Printerdrake..."
+msgstr "ŰŹŰ§Ű±ÙŠ Ù‚Ű±Ű§ŰĄŰ© ŰšÙŠŰ§Ù†Ű§ŰȘ Ű§Ù„Ű·Ű§ŰšŰčŰ© ..."
-#: ../../printerdrake.pm_.c:2795 ../../printerdrake.pm_.c:3349
+#: ../../printerdrake.pm_.c:3007 ../../printerdrake.pm_.c:3580
msgid "Configuring applications..."
msgstr "ŰŹŰ§Ű±ÙŠ Ű„Űčۯۧۯ Ű§Ù„ŰȘŰ·ŰšÙŠÙ‚Ű§ŰȘ..."
-#: ../../printerdrake.pm_.c:2815
+#: ../../printerdrake.pm_.c:3027
msgid "Would you like to configure printing?"
msgstr ""
-#: ../../printerdrake.pm_.c:2827
+#: ../../printerdrake.pm_.c:3039
msgid "Printing system: "
msgstr ""
-#: ../../printerdrake.pm_.c:2875
-msgid "Printerdrake"
-msgstr "Printerdrake"
-
-#: ../../printerdrake.pm_.c:2879
+#: ../../printerdrake.pm_.c:3099
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; to view information about it; "
"or to make a printer on a remote CUPS server available for Star Office/"
-"OpenOffice.org."
+"OpenOffice.org/GIMP."
msgstr ""
-#: ../../printerdrake.pm_.c:2880
+#: ../../printerdrake.pm_.c:3100
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; or to view information about "
"it."
msgstr ""
-#: ../../printerdrake.pm_.c:2906
+#: ../../printerdrake.pm_.c:3127
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr ""
-#: ../../printerdrake.pm_.c:2924
+#: ../../printerdrake.pm_.c:3145
msgid "Change the printing system"
msgstr "ŰȘŰșÙŠÙŠŰ± Ù†ŰžŰ§Ù… Ű§Ù„Ű·ŰšŰ§ŰčŰ©"
-#: ../../printerdrake.pm_.c:2929 ../../standalone/drakconnect_.c:277
+#: ../../printerdrake.pm_.c:3150 ../../standalone/drakconnect_.c:277
msgid "Normal Mode"
msgstr ""
-#: ../../printerdrake.pm_.c:3085 ../../printerdrake.pm_.c:3135
-#: ../../printerdrake.pm_.c:3343
+#: ../../printerdrake.pm_.c:3310 ../../printerdrake.pm_.c:3360
+#: ../../printerdrake.pm_.c:3573
msgid "Do you want to configure another printer?"
msgstr "هل ŰȘŰ±ÙŠŰŻ ŰȘۏ۱ۚ۩ Ű„Űčۯۧۯ ۷ۧۚŰčŰ© ŰŁŰźŰ±Ù‰ŰŸ"
-#: ../../printerdrake.pm_.c:3170
+#: ../../printerdrake.pm_.c:3395
msgid "Modify printer configuration"
msgstr "ŰȘŰčŰŻÙŠÙ„ ۧŰčۯۧۯۧŰȘ Ű§Ù„Ű·Ű§ŰšŰčŰ©"
-#: ../../printerdrake.pm_.c:3172
+#: ../../printerdrake.pm_.c:3397
#, c-format
msgid ""
"Printer %s\n"
@@ -7584,100 +7919,102 @@ msgstr ""
"Ű§Ù„Ű·Ű§ŰšŰčŰ© %s\n"
"هل ŰȘŰ±ÙŠŰŻ ŰȘŰčŰŻÙŠÙ„ ŰȘلك Ű§Ù„Ű·Ű§ŰšŰčŰ©ŰŸ"
-#: ../../printerdrake.pm_.c:3176
+#: ../../printerdrake.pm_.c:3401
msgid "Do it!"
msgstr ""
-#: ../../printerdrake.pm_.c:3181 ../../printerdrake.pm_.c:3236
+#: ../../printerdrake.pm_.c:3406 ../../printerdrake.pm_.c:3461
msgid "Printer connection type"
msgstr "نوŰč ÙˆŰ”Ù„Ű© Ű§Ù„Ű·Ű§ŰšŰčŰ©"
-#: ../../printerdrake.pm_.c:3182 ../../printerdrake.pm_.c:3240
+#: ../../printerdrake.pm_.c:3407 ../../printerdrake.pm_.c:3465
msgid "Printer name, description, location"
msgstr ""
-#: ../../printerdrake.pm_.c:3184 ../../printerdrake.pm_.c:3255
+#: ../../printerdrake.pm_.c:3409 ../../printerdrake.pm_.c:3483
msgid "Printer manufacturer, model, driver"
msgstr ""
-#: ../../printerdrake.pm_.c:3185 ../../printerdrake.pm_.c:3256
+#: ../../printerdrake.pm_.c:3410 ../../printerdrake.pm_.c:3484
msgid "Printer manufacturer, model"
msgstr ""
-#: ../../printerdrake.pm_.c:3194 ../../printerdrake.pm_.c:3266
+#: ../../printerdrake.pm_.c:3419 ../../printerdrake.pm_.c:3494
msgid "Set this printer as the default"
msgstr ""
-#: ../../printerdrake.pm_.c:3196 ../../printerdrake.pm_.c:3271
-msgid "Add this printer to Star Office/OpenOffice.org"
+#: ../../printerdrake.pm_.c:3421 ../../printerdrake.pm_.c:3499
+msgid "Add this printer to Star Office/OpenOffice.org/GIMP"
msgstr ""
-#: ../../printerdrake.pm_.c:3197 ../../printerdrake.pm_.c:3280
-msgid "Remove this printer from Star Office/OpenOffice.org"
+#: ../../printerdrake.pm_.c:3422 ../../printerdrake.pm_.c:3508
+msgid "Remove this printer from Star Office/OpenOffice.org/GIMP"
msgstr ""
-#: ../../printerdrake.pm_.c:3198 ../../printerdrake.pm_.c:3289
+#: ../../printerdrake.pm_.c:3423 ../../printerdrake.pm_.c:3517
msgid "Print test pages"
msgstr ""
-#: ../../printerdrake.pm_.c:3199 ../../printerdrake.pm_.c:3291
+#: ../../printerdrake.pm_.c:3424 ../../printerdrake.pm_.c:3519
msgid "Know how to use this printer"
msgstr "ۧŰčŰ±Ù كيف ŰȘŰłŰȘŰźŰŻÙ… Ù‡Ű°Ù‡ Ű§Ù„Ű·Ű§ŰšŰčŰ©"
-#: ../../printerdrake.pm_.c:3201 ../../printerdrake.pm_.c:3293
+#: ../../printerdrake.pm_.c:3426 ../../printerdrake.pm_.c:3521
msgid "Remove printer"
msgstr ""
-#: ../../printerdrake.pm_.c:3245
+#: ../../printerdrake.pm_.c:3472
#, c-format
msgid "Removing old printer \"%s\"..."
msgstr "ŰŹŰ§Ű±ÙŠ ۧŰČŰ§Ù„Ű© Ű§Ù„Ű·Ű§ŰšŰčŰ© Ű§Ù„Ù‚ŰŻÙŠÙ…Ű© \"%s\" ..."
-#: ../../printerdrake.pm_.c:3269
+#: ../../printerdrake.pm_.c:3497
msgid "Default printer"
msgstr ""
-#: ../../printerdrake.pm_.c:3270
+#: ../../printerdrake.pm_.c:3498
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr ""
-#: ../../printerdrake.pm_.c:3274 ../../printerdrake.pm_.c:3277
-msgid "Adding printer to Star Office/OpenOffice.org"
+#: ../../printerdrake.pm_.c:3502 ../../printerdrake.pm_.c:3505
+msgid "Adding printer to Star Office/OpenOffice.org/GIMP"
msgstr ""
-#: ../../printerdrake.pm_.c:3275
+#: ../../printerdrake.pm_.c:3503
#, c-format
msgid ""
-"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
+"The printer \"%s\" was successfully added to Star Office/OpenOffice.org/GIMP."
msgstr ""
-#: ../../printerdrake.pm_.c:3278
+#: ../../printerdrake.pm_.c:3506
#, c-format
-msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
+msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org/GIMP."
msgstr ""
-#: ../../printerdrake.pm_.c:3283 ../../printerdrake.pm_.c:3286
-msgid "Removing printer from Star Office/OpenOffice.org"
+#: ../../printerdrake.pm_.c:3511 ../../printerdrake.pm_.c:3514
+msgid "Removing printer from Star Office/OpenOffice.org/GIMP"
msgstr ""
-#: ../../printerdrake.pm_.c:3284
+#: ../../printerdrake.pm_.c:3512
#, c-format
msgid ""
-"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
+"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org/"
+"GIMP."
msgstr ""
-#: ../../printerdrake.pm_.c:3287
+#: ../../printerdrake.pm_.c:3515
#, c-format
-msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
+msgid ""
+"Failed to remove the printer \"%s\" from Star Office/OpenOffice.org/GIMP."
msgstr ""
-#: ../../printerdrake.pm_.c:3295
+#: ../../printerdrake.pm_.c:3523
#, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr ""
-#: ../../printerdrake.pm_.c:3297
+#: ../../printerdrake.pm_.c:3527
#, c-format
msgid "Removing printer \"%s\"..."
msgstr "ŰŹŰ§Ű±ÙŠ ۧŰČŰ§Ù„Ű© Ű§Ù„Ű·Ű§ŰšŰčŰ© \"%s\" ..."
@@ -8004,7 +8341,7 @@ msgstr "Ű„Ù†ŰȘŰ±Ù†ŰȘ"
msgid "File sharing"
msgstr ""
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1669
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1744
msgid "System"
msgstr "Ù†ŰžŰ§Ù…"
@@ -8055,186 +8392,228 @@ msgstr "ۧۚۯۣ"
msgid "Stop"
msgstr "ŰȘوقف"
-#: ../../share/advertising/00-thanks.pl_.c:9
-msgid "Thank you for choosing Mandrake Linux 8.2"
+#: ../../share/advertising/01-thanks.pl_.c:9
+msgid "Thank you for choosing Mandrake Linux 9.0"
msgstr ""
-#: ../../share/advertising/00-thanks.pl_.c:10
+#: ../../share/advertising/01-thanks.pl_.c:10
msgid "Welcome to the Open Source world"
msgstr ""
-#: ../../share/advertising/00-thanks.pl_.c:11
+#: ../../share/advertising/01-thanks.pl_.c:11
msgid ""
"The success of MandrakeSoft is based upon the principle of Free Software. "
"Your new operating system is the result of collaborative work on the part of "
"the worldwide Linux Community"
msgstr ""
-#: ../../share/advertising/01-gnu.pl_.c:9
-msgid "Join the Free Software world"
+#: ../../share/advertising/02-community.pl_.c:9
+msgid "Get involved in the Free Software world"
+msgstr ""
+
+#: ../../share/advertising/02-community.pl_.c:10
+msgid "Want to know more about the Open Source community?"
msgstr ""
-#: ../../share/advertising/01-gnu.pl_.c:10
+#: ../../share/advertising/02-community.pl_.c:11
msgid ""
-"Get to know the Open Source community and become a member. Learn, teach, and "
-"help others by joining the many discussion forums that you will find in our "
-"\"Community\" webpages"
+"To share your own knowledge and help build Linux tools, join the discussions "
+"forum you'll find on our \"Community\" webpages"
msgstr ""
-#: ../../share/advertising/02-internet.pl_.c:9
-msgid "Internet and Messaging"
-msgstr "Ű§Ù„Ű„Ù†ŰȘŰ±Ù†ŰȘ و Ű§Ù„Ù…Ű±Ű§ŰłÙ„Ű©"
+#: ../../share/advertising/03-internet.pl_.c:9
+#, fuzzy
+msgid "Get the most from the Internet"
+msgstr "ÙˆŰ”Ù‘Ù„ Ű„Ù„Ù‰ Ű§Ù„Ű„Ù†ŰȘŰ±Ù†ŰȘ "
-#: ../../share/advertising/02-internet.pl_.c:10
+#: ../../share/advertising/03-internet.pl_.c:10
msgid ""
-"Mandrake Linux 8.2 provides the best software to access everything the "
-"Internet has to offer: Surf the web & view animations with Mozilla and "
-"Konqueror, exchange email & organize your personal information with "
-"Evolution and Kmail, and much more"
+"Mandrake Linux 9.0 has selected the best software for you. Surf the Web and "
+"view animations with Mozilla and Konqueror, or read your mail and handle "
+"your personal information with Evolution and Kmail"
msgstr ""
-#: ../../share/advertising/03-graphic.pl_.c:9
-msgid "Multimedia and Graphics"
-msgstr "ÙˆŰłŰ§ŰŠŰ· مŰȘŰčŰŻŰŻŰ© و Ű±ŰłÙˆÙ…ÙŠŰ§ŰȘ"
+#: ../../share/advertising/04-multimedia.pl_.c:9
+msgid "Discover the most up-to-date graphics and multimedia tools!"
+msgstr ""
-#: ../../share/advertising/03-graphic.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 lets you push your multimedia computer to its limits! Use "
-"the latest software to play music and audio files, edit and organize your "
-"images and photos, watch TV and videos, and much more"
+#: ../../share/advertising/04-multimedia.pl_.c:10
+msgid "Push multimedia to its limits!"
msgstr ""
-#: ../../share/advertising/04-develop.pl_.c:9
-msgid "Development"
+#: ../../share/advertising/04-multimedia.pl_.c:11
+msgid ""
+"Mandrake Linux 9.0 enables you to use the very latest software to play audio "
+"files, edit and handle your images or photos, and play videos"
msgstr ""
-#: ../../share/advertising/04-develop.pl_.c:10
+#: ../../share/advertising/05-games.pl_.c:9
+msgid "Games"
+msgstr "Ű§Ù„Ű§Ù„Űčۧۚ"
+
+#: ../../share/advertising/05-games.pl_.c:10
msgid ""
-"Mandrake Linux 8.2 is the ultimate development platform. Discover the power "
-"of the GNU gcc compiler as well as the best Open Source development "
-"environments"
+"Mandrake Linux 9.0 provides the best Open Source games - arcade, action, "
+"cards, sports, strategy..."
msgstr ""
+" ÙŠÙ…ŰŻÙ‘ÙˆÙ† ŰŁÙŰ¶Ù„ لŰčŰš ŰšÙ…Ű”Ű§ŰŻŰ± مفŰȘÙˆŰ­Ű© Mandrake Linux 9.0 - arcade, action, "
+"cards, sports, strategy,...."
-#: ../../share/advertising/05-contcenter.pl_.c:9
-#: ../../standalone/drakbug_.c:69
+#: ../../share/advertising/06-mcc.pl_.c:9 ../../standalone/drakbug_.c:69
msgid "Mandrake Control Center"
msgstr "Ù…Ű±ÙƒŰČ ŰȘŰ­ÙƒÙ… Mandrake"
-#: ../../share/advertising/05-contcenter.pl_.c:10
+#: ../../share/advertising/06-mcc.pl_.c:10
msgid ""
-"The Mandrake Linux 8.2 Control Center is a one-stop location for fully "
-"customizing and configuring your Mandrake system"
+"Mandrake Linux 9.0 provides a powerful tool to fully customize and configure "
+"your machine"
msgstr ""
-#: ../../share/advertising/06-user.pl_.c:9
+#: ../../share/advertising/07-desktop.pl_.c:9
msgid "User interfaces"
msgstr "ÙˆŰ§ŰŹÙ‡Ű§ŰȘ Ű§Ù„Ű„ŰłŰȘŰźŰŻŰ§Ù…"
-#: ../../share/advertising/06-user.pl_.c:10
+#: ../../share/advertising/07-desktop.pl_.c:10
+msgid ""
+"Mandrake Linux 9.0 provides 11 user interfaces which can be fully modified: "
+"KDE 3, Gnome 2, WindowMaker..."
+msgstr ""
+
+#: ../../share/advertising/08-development.pl_.c:9
+msgid "Development simplified"
+msgstr ""
+
+#: ../../share/advertising/08-development.pl_.c:10
+msgid "Mandrake Linux 9.0 is the ultimate development platform"
+msgstr ""
+
+#: ../../share/advertising/08-development.pl_.c:11
msgid ""
-"Mandrake Linux 8.2 provides 11 different graphical desktop environments and "
-"window managers to choose from including GNOME 1.4, KDE 2.2.2, Window Maker "
-"0.8, and the rest"
+"Use the full power of the GNU gcc 3 compiler as well as the best Open Source "
+"development environments"
msgstr ""
-#: ../../share/advertising/07-server.pl_.c:9
-msgid "Server Software"
-msgstr "ŰšŰ±Ű§Ù…ŰŹ Ű§Ù„ŰźŰ§ŰŻÙ…"
+#: ../../share/advertising/09-server.pl_.c:9
+msgid "Turn your machine into a reliable server"
+msgstr ""
-#: ../../share/advertising/07-server.pl_.c:10
+#: ../../share/advertising/09-server.pl_.c:10
+#, fuzzy
msgid ""
-"Transform your machine into a powerful server with just a few clicks of the "
-"mouse: Web server, email, firewall, router, file and print server, ..."
+"Transform your machine into a powerful server in a few clicks of your mouse: "
+"Web server, mail, firewall, router, file and print server..."
msgstr ""
"Ű­ÙˆÙ‘Ù„ Ù…Ű§ÙƒÙŠÙ†ŰȘك Ű„Ù„Ù‰ ŰźŰ§ŰŻÙ… قويّ مŰč/Űš ÙÙ‚Ű· Ù†Ù‚Ű±Ű§ŰȘ Ù‚Ù„ÙŠÙ„Ű© من Ű§Ù„ Ű§Ù„ÙŰŁŰ±Ű© : ŰźŰ§ŰŻÙ… Ű§Ù„ÙˆÙŠŰš , "
"Ű§Ù„ŰšŰ±ÙŠŰŻ Ű§Ù„Ű„Ù„ÙƒŰȘŰ±ÙˆÙ†ÙŠÙ‘ , ÙÙŠŰ±ÙˆÙˆÙ„ , Ű§Ù„Ű­ÙÙ‘Ű§Ű± , Ű§Ù„Ù…Ù„ÙÙ‘ و ŰźŰ§ŰŻÙ… Ű§Ù„Ű·Ù‘ŰšŰč ,"
-#: ../../share/advertising/08-games.pl_.c:9
-msgid "Games"
-msgstr "Ű§Ù„Ű§Ù„Űčۧۚ"
+#: ../../share/advertising/10-mnf.pl_.c:9
+msgid "Optimize your security"
+msgstr ""
-#: ../../share/advertising/08-games.pl_.c:10
+#: ../../share/advertising/10-mnf.pl_.c:10
msgid ""
-"Mandrake Linux 8.2 provides the best Open Source games - arcade, action, "
-"cards, sports, strategy, ..."
+"The MandrakeSecurity range includes the Multi Network Firewall product (M.N."
+"F.)"
+msgstr ""
+
+#: ../../share/advertising/10-mnf.pl_.c:11
+msgid ""
+"This firewall product includes network features which allow you to fulfill "
+"all your security needs"
+msgstr ""
+
+#: ../../share/advertising/10-mnf.pl_.c:12
+msgid "This product is available on MandrakeStore website"
+msgstr ""
+
+#: ../../share/advertising/11-mdkstore.pl_.c:9
+msgid "The official MandrakeSoft store"
msgstr ""
-" ÙŠÙ…ŰŻÙ‘ÙˆÙ† ŰŁÙŰ¶Ù„ لŰčŰš ŰšÙ…Ű”Ű§ŰŻŰ± مفŰȘÙˆŰ­Ű© Mandrake Linux 8.2 - arcade, action, "
-"cards, sports, strategy,...."
-#: ../../share/advertising/09-MDKcampus.pl_.c:9
-msgid "MandrakeCampus"
-msgstr "MandrakeCampus"
+#: ../../share/advertising/11-mdkstore.pl_.c:10
+msgid ""
+"Our full range of Linux solutions, as well as special offers on products and "
+"'goodies', are available online at our e-store"
+msgstr ""
-#: ../../share/advertising/09-MDKcampus.pl_.c:10
+#: ../../share/advertising/12-mdkstore.pl_.c:9
+msgid "Strategic partners"
+msgstr ""
+
+#: ../../share/advertising/12-mdkstore.pl_.c:10
msgid ""
-"Would you like to learn Linux simply, quickly, and for free? MandrakeSoft "
-"provides free Linux training, as well as a way to test your progress, at "
-"MandrakeCampus -- our online training center"
+"MandrakeSoft works alongside a selection of companies offering professional "
+"solutions compatible with Mandrake Linux; a list of these partners is "
+"available on the MandrakeStore"
msgstr ""
-#: ../../share/advertising/10-MDKexpert.pl_.c:9
-msgid "MandrakeExpert"
-msgstr "MandrakeExpert"
+#: ../../share/advertising/13-mdkcampus.pl_.c:9
+msgid "Discover MandrakeSoft's training catalogue Linux-Campus"
+msgstr ""
-#: ../../share/advertising/10-MDKexpert.pl_.c:10
+#: ../../share/advertising/13-mdkcampus.pl_.c:10
msgid ""
-"Quality support from the Linux Community, and from MandrakeSoft, is just "
-"around the corner. And if you're already a Linux veteran, become an \"Expert"
-"\" and share your knowledge at our support website"
+"The training program has been create to respond to the needs of both users "
+"and experts (Network and System administrations)"
msgstr ""
-#: ../../share/advertising/11-consul.pl_.c:9
-msgid "MandrakeConsulting"
-msgstr "ۧ۳ŰȘێۧ۱ۧŰȘ Mandrake"
+#: ../../share/advertising/13-mdkcampus.pl_.c:11
+msgid "Certify yourself on Linux"
+msgstr ""
-#: ../../share/advertising/11-consul.pl_.c:10
+#: ../../share/advertising/13-mdkcampus.pl_.c:12
msgid ""
-"For all of your IT projects, our consultants are ready to analyze your "
-"requirements and offer a customized solution. Benefit from MandrakeSoft's "
-"vast experience as a Linux producer to provide a true IT alternative for "
-"your business organization"
+"Whether you choose to teach yourself online or via our network of training "
+"partners, the Linux-Campus catalogue prepares you for the acknowledged LPI "
+"certification program (worldwide professional technical certification)"
msgstr ""
-#: ../../share/advertising/12-MDKstore.pl_.c:9
-msgid "MandrakeStore"
-msgstr "MandrakeStore"
+#: ../../share/advertising/14-mdkexpert.pl_.c:9
+#, fuzzy
+msgid "Become a MandrakeExpert"
+msgstr "MandrakeExpert"
-#: ../../share/advertising/12-MDKstore.pl_.c:10
+#: ../../share/advertising/14-mdkexpert.pl_.c:10
msgid ""
-"A full range of Linux solutions, as well as special offers on products and "
-"'goodies', are available online at our e-store"
+"Find the solutions to your problems via MandrakeSoft's online support "
+"platform"
msgstr ""
-#: ../../share/advertising/13-Nvert.pl_.c:9
+#: ../../share/advertising/14-mdkexpert.pl_.c:11
msgid ""
-"For more information on MandrakeSoft's Professional Services and commercial "
-"offerings, please see the following web page:"
+"Join the MandrakeSoft support teams and the Linux Community online to share "
+"your knowledge and help others by becoming a recognized Expert on the online "
+"technical support website:"
msgstr ""
-#: ../../share/advertising/13-Nvert.pl_.c:11
-msgid "http://www.mandrakesoft.com/sales/contact"
-msgstr "http://www.mandrakesoft.com/sales/contact"
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:9
+#, fuzzy
+msgid "MandrakeExpert Corporate"
+msgstr "MandrakeExpert"
-#: ../../standalone.pm_.c:40
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:10
+msgid "An online platform to respond to company's specific support needs"
+msgstr ""
+
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:11
+msgid ""
+"All incidents will be followed up by a single qualified MandrakeSoft "
+"technical expert."
+msgstr ""
+
+#: ../../standalone.pm_.c:41
msgid "Installing packages..."
msgstr "ŰȘŰ±ÙƒÙŠŰš Ű·Ű±ÙˆŰŻ ..."
-#: ../../standalone/XFdrake_.c:143
+#: ../../standalone/XFdrake_.c:145
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "ÙŠŰ±ŰŹÙ‰ ŰȘŰłŰŹÙŠÙ„ Ű§Ù„ŰźŰ±ÙˆŰŹ Ű«Ù… ۧ۳ŰȘŰźŰŻÙ… Ctrl-Alt-BackSpace"
-#: ../../standalone/XFdrake_.c:147
+#: ../../standalone/XFdrake_.c:149
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "ÙŠŰ±ŰŹÙ‰ ۧŰčۧۯ۩ ŰȘŰłŰŹÙŠÙ„ Ű§Ù„ŰŻŰźÙˆÙ„ Ű§Ù„Ù‰ %s لŰȘÙ†ŰŽÙŠŰ· Ű§Ù„ŰȘŰșÙŠÙŠŰ±Ű§ŰȘ"
-#: ../../standalone/diskdrake_.c:81
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I'll try to go on blanking bad partitions"
-msgstr ""
-" Ù„Ű§ يمكن ŰŁÙ† ŰŁÙ‚Ű±ŰŁ ŰŹŰŻÙˆÙ„ ÙŰ§Ű”Ù„Ùƒ هو ÙŠÙŰłŰŻ ŰŁÙŠŰ¶Ù‹Ű§ ŰłÙˆÙ ŰŁŰ­Ű§ÙˆÙ„ ŰŁÙ† ŰŁŰłŰȘÙ…Ű±Ù‘ ÙÙˆŰ§Ű”Ù„ ŰłÙŠÙ‘ŰŠŰ© "
-
#: ../../standalone/drakTermServ_.c:188
#, fuzzy
msgid "Mandrake Terminal Server Configuration"
@@ -8278,12 +8657,13 @@ msgstr "Ű§Ű¶Ù Ù…ŰłŰȘŰźŰŻÙ…"
msgid "Add/Del Clients"
msgstr "DHCP Ű§Ù„Űčميل"
-#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3282
-#: ../../standalone/drakbackup_.c:3315 ../../standalone/drakbackup_.c:3341
-#: ../../standalone/drakbackup_.c:3368 ../../standalone/drakbackup_.c:3395
-#: ../../standalone/drakbackup_.c:3434 ../../standalone/drakbackup_.c:3455
-#: ../../standalone/drakbackup_.c:3482 ../../standalone/drakbackup_.c:3508
-#: ../../standalone/drakbackup_.c:3533 ../../standalone/drakfont_.c:700
+#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3930
+#: ../../standalone/drakbackup_.c:3963 ../../standalone/drakbackup_.c:3989
+#: ../../standalone/drakbackup_.c:4016 ../../standalone/drakbackup_.c:4043
+#: ../../standalone/drakbackup_.c:4082 ../../standalone/drakbackup_.c:4103
+#: ../../standalone/drakbackup_.c:4130 ../../standalone/drakbackup_.c:4160
+#: ../../standalone/drakbackup_.c:4186 ../../standalone/drakbackup_.c:4211
+#: ../../standalone/drakfont_.c:700
msgid "Help"
msgstr "Ù…ŰłŰ§ŰčŰŻŰ©"
@@ -8440,8 +8820,8 @@ msgid ""
"The parameters of the auto-install are available in the sections on the left"
msgstr ""
-#: ../../standalone/drakautoinst_.c:239 ../../standalone/drakgw_.c:548
-#: ../../standalone/scannerdrake_.c:105
+#: ../../standalone/drakautoinst_.c:239 ../../standalone/drakgw_.c:484
+#: ../../standalone/scannerdrake_.c:119
msgid "Congratulations!"
msgstr ""
@@ -8463,27 +8843,31 @@ msgstr ""
msgid "Remove the last item"
msgstr "ŰŁŰČل Ű§Ù„Ù…Ű§ŰŻŰ© Ű§Ù„ŰŁŰźÙŠŰ±Ű©"
-#: ../../standalone/drakbackup_.c:625
+#: ../../standalone/drakbackup_.c:619
msgid "Cron not available yet as non-root"
msgstr ""
-#: ../../standalone/drakbackup_.c:731
+#: ../../standalone/drakbackup_.c:725
msgid "WARNING"
msgstr ""
-#: ../../standalone/drakbackup_.c:732
+#: ../../standalone/drakbackup_.c:726
#, fuzzy
msgid "FATAL"
msgstr "FAT"
-#: ../../standalone/drakbackup_.c:744
+#: ../../standalone/drakbackup_.c:727
+msgid "INFO"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:739
msgid ""
"\n"
" DrakBackup Report \n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:745
+#: ../../standalone/drakbackup_.c:740
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -8491,7 +8875,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:749
+#: ../../standalone/drakbackup_.c:744
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -8499,13 +8883,20 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:770 ../../standalone/drakbackup_.c:840
-#: ../../standalone/drakbackup_.c:894
+#: ../../standalone/drakbackup_.c:765 ../../standalone/drakbackup_.c:835
+#: ../../standalone/drakbackup_.c:889
#, fuzzy
msgid "Total progess"
msgstr "Ű§ŰŹÙ…Ű§Ù„ÙŠ Ű§Ù„ŰȘÙ‚ŰŻÙ…"
-#: ../../standalone/drakbackup_.c:822
+#: ../../standalone/drakbackup_.c:788
+msgid ""
+"Sorry, perl-Expect is not installed/enabled. To use\n"
+"this feature, install perl-Expect and comment lines 772-774,\n"
+" as well as 788,789. Then uncomment line 787."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:817
#, c-format
msgid ""
"%s exists, delete?\n"
@@ -8514,16 +8905,41 @@ msgid ""
" need to purge the entry from authorized_keys on the server."
msgstr ""
-#: ../../standalone/drakbackup_.c:831
+#: ../../standalone/drakbackup_.c:826
msgid "This may take a moment to generate the keys."
msgstr ""
-#: ../../standalone/drakbackup_.c:838
+#: ../../standalone/drakbackup_.c:833
#, c-format
msgid "ERROR: Cannot spawn %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:865
+#: ../../standalone/drakbackup_.c:850
+#, c-format
+msgid "No password prompt on %s at port %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:851
+#, c-format
+msgid "Bad password on %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:852
+#, c-format
+msgid "Permission denied transferring %s to %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:853
+#, fuzzy, c-format
+msgid "Can't find %s on %s"
+msgstr "Ù„Ű§ يمكن ŰŁÙ† ينفŰȘŰ­ %s: %s\n"
+
+#: ../../standalone/drakbackup_.c:856
+#, c-format
+msgid "%s not responding"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:860
#, c-format
msgid ""
"Transfer successful\n"
@@ -8534,59 +8950,64 @@ msgid ""
"without being prompted for a password."
msgstr ""
-#: ../../standalone/drakbackup_.c:908
+#: ../../standalone/drakbackup_.c:903
msgid "WebDAV remote site already in sync!"
msgstr ""
-#: ../../standalone/drakbackup_.c:912
+#: ../../standalone/drakbackup_.c:907
msgid "WebDAV transfer failed!"
msgstr ""
-#: ../../standalone/drakbackup_.c:934
+#: ../../standalone/drakbackup_.c:928
msgid "No CDR/DVDR in drive!"
msgstr ""
-#: ../../standalone/drakbackup_.c:938
+#: ../../standalone/drakbackup_.c:932
msgid "Does not appear to be recordable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:942
+#: ../../standalone/drakbackup_.c:936
msgid "Not erasable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:981
+#: ../../standalone/drakbackup_.c:975
msgid "This may take a moment to erase the media."
msgstr ""
-#: ../../standalone/drakbackup_.c:1045
+#: ../../standalone/drakbackup_.c:1060
msgid "Permission problem accessing CD."
msgstr ""
-#: ../../standalone/drakbackup_.c:1144 ../../standalone/drakbackup_.c:1193
+#: ../../standalone/drakbackup_.c:1087
+#, c-format
+msgid "No tape in %s!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1199 ../../standalone/drakbackup_.c:1248
msgid "Backup system files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:1194 ../../standalone/drakbackup_.c:1261
+#: ../../standalone/drakbackup_.c:1249 ../../standalone/drakbackup_.c:1316
msgid "Hard Disk Backup files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:1206
+#: ../../standalone/drakbackup_.c:1261
msgid "Backup User files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:1207
+#: ../../standalone/drakbackup_.c:1262
msgid "Hard Disk Backup Progress..."
msgstr ""
-#: ../../standalone/drakbackup_.c:1260
+#: ../../standalone/drakbackup_.c:1315
msgid "Backup Other files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:1266
+#: ../../standalone/drakbackup_.c:1321
msgid "No changes to backup!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1282 ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1337 ../../standalone/drakbackup_.c:1360
#, c-format
msgid ""
"\n"
@@ -8594,293 +9015,297 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1289
+#: ../../standalone/drakbackup_.c:1344
#, fuzzy, c-format
msgid ""
-"file list sent by FTP : %s\n"
+"file list sent by FTP: %s\n"
" "
msgstr "Ű§Ű±ŰłŰ§Ù„ Ű§Ù„Ù…Ù„ÙŰ§ŰȘ Űčن Ű·Ű±ÙŠÙ‚ FTP"
-#: ../../standalone/drakbackup_.c:1292
+#: ../../standalone/drakbackup_.c:1347
msgid ""
"\n"
" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1310
+#: ../../standalone/drakbackup_.c:1365
msgid ""
"\n"
"Drakbackup activities via CD:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1315
+#: ../../standalone/drakbackup_.c:1370
msgid ""
"\n"
"Drakbackup activities via tape:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1324
+#: ../../standalone/drakbackup_.c:1379
msgid " Error during mail sending. \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1346
+#: ../../standalone/drakbackup_.c:1404
msgid "Can't create catalog!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1459 ../../standalone/drakbackup_.c:1470
-#: ../../standalone/drakbackup_.c:1481 ../../standalone/drakfont_.c:1004
+#: ../../standalone/drakbackup_.c:1517 ../../standalone/drakbackup_.c:1528
+#: ../../standalone/drakfont_.c:1004
msgid "File Selection"
msgstr ""
-#: ../../standalone/drakbackup_.c:1486
+#: ../../standalone/drakbackup_.c:1556
msgid "Select the files or directories and click on 'Add'"
msgstr ""
-#: ../../standalone/drakbackup_.c:1525
+#: ../../standalone/drakbackup_.c:1600
msgid ""
"\n"
"Please check all options that you need.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1526
+#: ../../standalone/drakbackup_.c:1601
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1527
+#: ../../standalone/drakbackup_.c:1602
#, fuzzy
msgid "Backup your System files. (/etc directory)"
msgstr "Ű§Ù†ŰłŰź Ù…Ù„ÙŰ§ŰȘ Ű§Ù„Ù†ŰžŰ§Ù… Ù‚ŰšÙ„:"
-#: ../../standalone/drakbackup_.c:1528
+#: ../../standalone/drakbackup_.c:1603
msgid "Use incremental backup (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1529
+#: ../../standalone/drakbackup_.c:1604
msgid "Do not include critical files (passwd, group, fstab)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1530
+#: ../../standalone/drakbackup_.c:1605
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr ""
-#: ../../standalone/drakbackup_.c:1547
+#: ../../standalone/drakbackup_.c:1622
msgid "Please check all users that you want to include in your backup."
msgstr "۱ۏۧۥ ۧ۟ŰȘ۱ كل Ű§Ù„Ù…ŰłŰȘŰźŰŻÙ…ÙŠÙ† Ű§Ù„Ű°ÙŠÙ† ŰȘŰ±ÙŠŰŻ ŰȘŰ¶Ù…ÙŠÙ†Ù‡Ù… في Ű§Ù„Ù†ŰłŰź Ű§Ù„Ű„Ű­ŰȘÙŠŰ§Ű·ÙŠ."
-#: ../../standalone/drakbackup_.c:1574
+#: ../../standalone/drakbackup_.c:1649
msgid "Do not include the browser cache"
msgstr ""
-#: ../../standalone/drakbackup_.c:1575 ../../standalone/drakbackup_.c:1599
+#: ../../standalone/drakbackup_.c:1650 ../../standalone/drakbackup_.c:1674
msgid "Use Incremental Backups (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1597 ../../standalone/drakfont_.c:1058
+#: ../../standalone/drakbackup_.c:1672 ../../standalone/drakfont_.c:1058
msgid "Remove Selected"
msgstr "ۧŰČل Ű§Ù„Ù…Ű§ŰŻŰ© Ű§Ù„Ù…ŰźŰȘۧ۱۩"
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:1710
msgid "Windows (FAT32)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1674
+#: ../../standalone/drakbackup_.c:1749
msgid "Users"
msgstr "Ű§Ù„Ù…ŰłŰȘŰźŰŻÙ…ÙˆÙ†"
-#: ../../standalone/drakbackup_.c:1700
+#: ../../standalone/drakbackup_.c:1775
#, fuzzy
msgid "Use network connection to backup"
msgstr "ۧ۳ŰȘŰźŰŻÙ… Ű§Ù„Ù‚Ű±Ű” Ű§Ù„Ű”Ù„Űš Ù„Ù„Ù†ŰłŰź Ű§Ù„Ű„Ű­ŰȘÙŠŰ§Ű·ÙŠ"
-#: ../../standalone/drakbackup_.c:1706
+#: ../../standalone/drakbackup_.c:1777
+msgid "Net Method:"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1781
msgid "Use Expect for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1707
+#: ../../standalone/drakbackup_.c:1782
msgid ""
"Create/Transfer\n"
"backup keys for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1708
+#: ../../standalone/drakbackup_.c:1783
msgid ""
" Transfer \n"
"Now"
msgstr ""
-#: ../../standalone/drakbackup_.c:1709
+#: ../../standalone/drakbackup_.c:1784
msgid "Keys in place already"
msgstr ""
-#: ../../standalone/drakbackup_.c:1713
+#: ../../standalone/drakbackup_.c:1788
msgid "Please enter the host name or IP."
msgstr "ÙŰ¶Ù„Ű§ ŰŁŰŻŰźÙ„ Ű§ŰłÙ… Ű§Ù„Ù…ŰłŰȘŰ¶ÙŠÙ ŰŁÙˆ ŰčÙ†ÙˆŰ§Ù† IP."
-#: ../../standalone/drakbackup_.c:1718
+#: ../../standalone/drakbackup_.c:1793
#, fuzzy
msgid ""
"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr "ÙŰ¶Ù„Ű§Ù‹ ŰŁŰŻŰźÙ„ Ű§Ù„ŰŻÙ„ÙŠÙ„ Ű§Ù„Ù…ÙˆŰŹÙˆŰŻŰ© فيه Ű§Ù„Ù†ŰłŰź Ű§Ù„Ű„Ű­ŰȘÙŠŰ§Ű·ÙŠŰ©"
-#: ../../standalone/drakbackup_.c:1723
+#: ../../standalone/drakbackup_.c:1798
msgid "Please enter your login"
msgstr "۱ۏۧۥ ŰŁŰŻŰźÙ„ Ű§ŰłÙ… Ű§Ù„ŰŻŰźÙˆÙ„"
-#: ../../standalone/drakbackup_.c:1728
+#: ../../standalone/drakbackup_.c:1803
msgid "Please enter your password"
msgstr "۱ۏۧۥ ÙƒÙ„Ù…Ű© Ű§Ù„Ù…Ű±ÙˆŰ±"
-#: ../../standalone/drakbackup_.c:1734
+#: ../../standalone/drakbackup_.c:1809
msgid "Remember this password"
msgstr "ŰȘŰ°ÙƒÙ‘Ű± ÙƒÙ„Ù…Ű© Ű§Ù„ŰłÙ‘Ű±Ù‘ Ù‡Ű°Ù‡ "
-#: ../../standalone/drakbackup_.c:1745
+#: ../../standalone/drakbackup_.c:1820
msgid "Need hostname, username and password!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1841
+#: ../../standalone/drakbackup_.c:1915
msgid "Use CD/DVDROM to backup"
msgstr "Ű„Ù„Ù‰ Ű§Ù„Ù…ŰłŰ§ŰčŰŻ CD/DVDROM Ű§Ù„Ű§ŰłŰȘŰčÙ…Ű§Ù„ "
-#: ../../standalone/drakbackup_.c:1844
+#: ../../standalone/drakbackup_.c:1918
msgid ""
"Please choose your CD/DVD device\n"
"(Press Enter to propogate settings to other fields.\n"
"This field isn't necessary, only a tool to fill in the form.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1849
+#: ../../standalone/drakbackup_.c:1923
#, fuzzy
msgid "Please choose your CD/DVD media size"
msgstr "۱ۏۧۥ ۧ۟ŰȘ۱ Ù…ŰłŰ§Ű­Ű© Ű§Ù„Ù‚Ű±Ű” Ű§Ù„Ù…ŰŻÙ…ŰŹ"
-#: ../../standalone/drakbackup_.c:1855
+#: ../../standalone/drakbackup_.c:1929
#, fuzzy
msgid "Please check for multisession CD"
msgstr "ÙŰ¶Ù„Ű§ قم ŰšŰ§Ù„ŰȘŰŁŰŽÙŠŰ± Ù‡Ù†Ű§ ۧ۰ۧ كنŰȘ ŰȘŰłŰȘŰźŰŻÙ… ÙˆŰłÙŠŰ· CDRW"
-#: ../../standalone/drakbackup_.c:1861
+#: ../../standalone/drakbackup_.c:1935
msgid "Please check if you are using CDRW media"
msgstr "ÙŰ¶Ù„Ű§ قم ŰšŰ§Ù„ŰȘŰŁŰŽÙŠŰ± Ù‡Ù†Ű§ ۧ۰ۧ كنŰȘ ŰȘŰłŰȘŰźŰŻÙ… ÙˆŰłÙŠŰ· CDRW"
-#: ../../standalone/drakbackup_.c:1867
+#: ../../standalone/drakbackup_.c:1941
#, fuzzy
msgid "Please check if you want to erase your RW media (1st Session)"
msgstr "ÙÙŠÙ…Ű§ Ù…Ű¶Ù‰ CDRW من ÙŰ¶Ù„Ùƒ ÙŰ­Ű” ,ۄ۰ۧ ۣ۱ۯŰȘ ŰŁÙ† ŰȘÙ…Ű­Ùˆ "
-#: ../../standalone/drakbackup_.c:1868
+#: ../../standalone/drakbackup_.c:1942
msgid " Erase Now "
msgstr ""
-#: ../../standalone/drakbackup_.c:1874
+#: ../../standalone/drakbackup_.c:1948
#, fuzzy
msgid "Please check if you are using a DVDR device"
msgstr "ÙŰ¶Ù„Ű§ قم ŰšŰ§Ù„ŰȘŰŁŰŽÙŠŰ± Ù‡Ù†Ű§ ۧ۰ۧ كنŰȘ ŰȘŰłŰȘŰźŰŻÙ… ÙˆŰłÙŠŰ· CDRW"
-#: ../../standalone/drakbackup_.c:1880
+#: ../../standalone/drakbackup_.c:1954
#, fuzzy
msgid "Please check if you are using a DVDRAM device"
msgstr "ÙŰ¶Ù„Ű§ قم ŰšŰ§Ù„ŰȘŰŁŰŽÙŠŰ± Ù‡Ù†Ű§ ۧ۰ۧ كنŰȘ ŰȘŰłŰȘŰźŰŻÙ… ÙˆŰłÙŠŰ· CDRW"
-#: ../../standalone/drakbackup_.c:1893
+#: ../../standalone/drakbackup_.c:1967
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
msgstr ""
-#: ../../standalone/drakbackup_.c:1926
+#: ../../standalone/drakbackup_.c:2000
#, fuzzy
msgid "No CD device defined!"
msgstr "ۧ۟ŰȘ۱ ملف"
-#: ../../standalone/drakbackup_.c:1974
+#: ../../standalone/drakbackup_.c:2048
msgid "Use tape to backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1977
+#: ../../standalone/drakbackup_.c:2051
msgid "Please enter the device name to use for backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1983
+#: ../../standalone/drakbackup_.c:2057
#, fuzzy
msgid "Please check if you want to use the non-rewinding device."
msgstr "ÙÙŠÙ…Ű§ Ù…Ű¶Ù‰ CDRW من ÙŰ¶Ù„Ùƒ ÙŰ­Ű” ,ۄ۰ۧ ۣ۱ۯŰȘ ŰŁÙ† ŰȘÙ…Ű­Ùˆ "
-#: ../../standalone/drakbackup_.c:1989
+#: ../../standalone/drakbackup_.c:2063
#, fuzzy
msgid "Please check if you want to erase your tape before the backup."
msgstr "ÙÙŠÙ…Ű§ Ù…Ű¶Ù‰ CDRW من ÙŰ¶Ù„Ùƒ ÙŰ­Ű” ,ۄ۰ۧ ۣ۱ۯŰȘ ŰŁÙ† ŰȘÙ…Ű­Ùˆ "
-#: ../../standalone/drakbackup_.c:1995
+#: ../../standalone/drakbackup_.c:2069
#, fuzzy
msgid "Please check if you want to eject your tape after the backup."
msgstr "ÙÙŠÙ…Ű§ Ù…Ű¶Ù‰ CDRW من ÙŰ¶Ù„Ùƒ ÙŰ­Ű” ,ۄ۰ۧ ۣ۱ۯŰȘ ŰŁÙ† ŰȘÙ…Ű­Ùˆ "
-#: ../../standalone/drakbackup_.c:2001 ../../standalone/drakbackup_.c:2074
-#: ../../standalone/drakbackup_.c:3025
+#: ../../standalone/drakbackup_.c:2075 ../../standalone/drakbackup_.c:2149
+#: ../../standalone/drakbackup_.c:3116
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:2066
+#: ../../standalone/drakbackup_.c:2140
#, fuzzy
msgid "Please enter the directory to save to:"
msgstr "ÙŰ¶Ù„Ű§Ù‹ ŰŁŰŻŰźÙ„ Ű§Ù„ŰŻÙ„ÙŠÙ„ Ű§Ù„Ù…ÙˆŰŹÙˆŰŻŰ© فيه Ű§Ù„Ù†ŰłŰź Ű§Ù„Ű„Ű­ŰȘÙŠŰ§Ű·ÙŠŰ©"
-#: ../../standalone/drakbackup_.c:2080 ../../standalone/drakbackup_.c:3031
+#: ../../standalone/drakbackup_.c:2155 ../../standalone/drakbackup_.c:3122
msgid "Use quota for backup files."
msgstr ""
-#: ../../standalone/drakbackup_.c:2146
+#: ../../standalone/drakbackup_.c:2221
msgid "Network"
msgstr "Ű§Ù„ŰŽŰšÙƒŰ©"
-#: ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:2226
msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2156
+#: ../../standalone/drakbackup_.c:2231
msgid "HardDrive / NFS"
msgstr "HardDrive / NFS"
-#: ../../standalone/drakbackup_.c:2161
+#: ../../standalone/drakbackup_.c:2236
#, fuzzy
msgid "Tape"
msgstr "Ű§Ù„Ù†ÙˆŰč"
-#: ../../standalone/drakbackup_.c:2175 ../../standalone/drakbackup_.c:2179
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2250 ../../standalone/drakbackup_.c:2254
+#: ../../standalone/drakbackup_.c:2258
msgid "hourly"
msgstr "كلّ ۳ۧŰčŰ© "
-#: ../../standalone/drakbackup_.c:2176 ../../standalone/drakbackup_.c:2180
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2251 ../../standalone/drakbackup_.c:2255
+#: ../../standalone/drakbackup_.c:2258
msgid "daily"
msgstr "ÙŠÙˆÙ…ÙŠÙ‘Ù‹Ű§ "
-#: ../../standalone/drakbackup_.c:2177 ../../standalone/drakbackup_.c:2181
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2252 ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2258
msgid "weekly"
msgstr "ŰŁŰłŰšÙˆŰčÙŠÙ‘Ű§"
-#: ../../standalone/drakbackup_.c:2178 ../../standalone/drakbackup_.c:2182
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2253 ../../standalone/drakbackup_.c:2257
+#: ../../standalone/drakbackup_.c:2258
msgid "monthly"
msgstr "ŰŽÙ‡Ű±ÙŠŰ§"
-#: ../../standalone/drakbackup_.c:2196
+#: ../../standalone/drakbackup_.c:2271
msgid "Use daemon"
msgstr "ۧ۳ŰȘŰźŰŻÙ… Ű§Ù„Ù…Ű±Ű§Ù‚Űš"
-#: ../../standalone/drakbackup_.c:2201
+#: ../../standalone/drakbackup_.c:2276
msgid ""
"Please choose the time \n"
"interval between each backup"
@@ -8888,7 +9313,7 @@ msgstr ""
"ÙŰ¶Ù„Ű§ ۧ۟ŰȘ۱ Ű§Ù„ÙŰȘ۱۩ \n"
"Ù…Ű§ ŰšÙŠÙ† كل ŰčÙ…Ù„ÙŠŰ© Ù†ŰłŰź ۭۧŰȘÙŠŰ§Ű·ÙŠ"
-#: ../../standalone/drakbackup_.c:2207
+#: ../../standalone/drakbackup_.c:2282
msgid ""
"Please choose the\n"
"media for backup."
@@ -8896,78 +9321,78 @@ msgstr ""
"۱ۏۧۥ ۧ۟ŰȘ۱\n"
"ÙˆŰłÙŠŰ· Ű§Ù„Ù†ŰłŰź Ű§Ù„Ű§Ű­ŰȘÙŠŰ§Ű·ÙŠ"
-#: ../../standalone/drakbackup_.c:2214
+#: ../../standalone/drakbackup_.c:2289
msgid ""
"Please be sure that the cron daemon is included in your services. \n"
"\n"
"Note that currently all 'net' medias also use the hard drive."
msgstr ""
-#: ../../standalone/drakbackup_.c:2251
-msgid "Send mail report after each backup to :"
+#: ../../standalone/drakbackup_.c:2326
+msgid "Send mail report after each backup to:"
msgstr ""
-#: ../../standalone/drakbackup_.c:2257
+#: ../../standalone/drakbackup_.c:2332
msgid "Delete Hard Drive tar files after backup to other media."
msgstr ""
-#: ../../standalone/drakbackup_.c:2296
+#: ../../standalone/drakbackup_.c:2371
msgid "What"
msgstr "Ù…Ű§Ű°Ű§ "
-#: ../../standalone/drakbackup_.c:2301
+#: ../../standalone/drakbackup_.c:2376
msgid "Where"
msgstr "ŰŁÙŠÙ†"
-#: ../../standalone/drakbackup_.c:2306
+#: ../../standalone/drakbackup_.c:2381
msgid "When"
msgstr "مŰȘى "
-#: ../../standalone/drakbackup_.c:2311
+#: ../../standalone/drakbackup_.c:2386
msgid "More Options"
msgstr "ŰźÙŠŰ§Ű±Ű§ŰȘ ŰŁÙƒŰ«Ű±"
-#: ../../standalone/drakbackup_.c:2330 ../../standalone/drakbackup_.c:3873
+#: ../../standalone/drakbackup_.c:2405 ../../standalone/drakbackup_.c:4530
msgid "Drakbackup Configuration"
msgstr "Ű„ŰčۯۧۯۧŰȘ Drakbackup"
-#: ../../standalone/drakbackup_.c:2348
+#: ../../standalone/drakbackup_.c:2423
msgid "Please choose where you want to backup"
msgstr "۱ۏۧۥ ۧ۟ŰȘ۱ ŰŁÙŠÙ† ŰȘŰ±ÙŠŰŻ Ű§Ù„Ù†ŰłŰź Ű§Ù„Ű§Ű­ŰȘÙŠŰ§Ű·ÙŠ."
-#: ../../standalone/drakbackup_.c:2350
+#: ../../standalone/drakbackup_.c:2425
msgid "on Hard Drive"
msgstr "Űčلى Ű§Ù„Ù‚Ű±Ű” Ű§Ù„Ű”Ù‘Ù„Űš"
-#: ../../standalone/drakbackup_.c:2360
+#: ../../standalone/drakbackup_.c:2435
msgid "across Network"
msgstr "Űčۚ۱ Ű§Ù„ŰŽÙ‘ŰšÙƒŰ©"
-#: ../../standalone/drakbackup_.c:2370
+#: ../../standalone/drakbackup_.c:2445
msgid "on CDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2378
+#: ../../standalone/drakbackup_.c:2453
msgid "on Tape Device"
msgstr ""
-#: ../../standalone/drakbackup_.c:2421
+#: ../../standalone/drakbackup_.c:2496
msgid "Please choose what you want to backup"
msgstr "۱ۏۧۥ ۧ۟ŰȘ۱ Ù…Ű§ ŰȘŰ±ÙŠŰŻ Ù†ŰłŰźÙ‡ ۭۧŰȘÙŠŰ§Ű·ÙŠŰ§Ù‹"
-#: ../../standalone/drakbackup_.c:2422
+#: ../../standalone/drakbackup_.c:2497
msgid "Backup system"
msgstr "Ù†ŰžŰ§Ù… Ű§Ù„Ù…ŰłŰ§ŰčŰŻ"
-#: ../../standalone/drakbackup_.c:2423
+#: ../../standalone/drakbackup_.c:2498
msgid "Backup Users"
msgstr "Ù…ŰłŰȘŰźŰŻÙ…Ùˆ Ű§Ù„Ù…ŰłŰ§ŰčŰŻ"
-#: ../../standalone/drakbackup_.c:2426
+#: ../../standalone/drakbackup_.c:2501
msgid "Select user manually"
msgstr "ۧ۟ŰȘŰ±Ű§Ù„Ù…ŰłŰȘŰźŰŻÙ… ÙŠŰŻÙˆÙŠÙ‘Ù‹Ű§"
-#: ../../standalone/drakbackup_.c:2508
+#: ../../standalone/drakbackup_.c:2584
msgid ""
"\n"
"Backup Sources: \n"
@@ -8975,7 +9400,7 @@ msgstr ""
"\n"
"Ù…Ű”Ű§ŰŻŰ± Ű§Ù„Ù…ŰłŰ§ŰčŰŻ :\n"
-#: ../../standalone/drakbackup_.c:2509
+#: ../../standalone/drakbackup_.c:2585
msgid ""
"\n"
"- System Files:\n"
@@ -8983,7 +9408,7 @@ msgstr ""
"\n"
"-Ù…Ù„ÙÙ‘Ű§ŰȘ Ű§Ù„Ù†Ù‘ŰžŰ§Ù… :\n"
-#: ../../standalone/drakbackup_.c:2511
+#: ../../standalone/drakbackup_.c:2587
msgid ""
"\n"
"- User Files:\n"
@@ -8991,7 +9416,7 @@ msgstr ""
"\n"
"-Ù…Ù„ÙÙ‘Ű§ŰȘ Ű§Ù„Ù…ŰłŰȘŰźŰŻÙ…:\n"
-#: ../../standalone/drakbackup_.c:2513
+#: ../../standalone/drakbackup_.c:2589
msgid ""
"\n"
"- Other Files:\n"
@@ -8999,71 +9424,71 @@ msgstr ""
"\n"
"-Ű§Ù„Ù…Ù„ÙÙ‘Ű§ŰȘ Ű§Ù„ŰŁŰźŰ±Ù‰:\n"
-#: ../../standalone/drakbackup_.c:2515
+#: ../../standalone/drakbackup_.c:2591
#, c-format
msgid ""
"\n"
-"- Save on Hard drive on path : %s\n"
+"- Save on Hard drive on path: %s\n"
msgstr ""
"\n"
"- Ű§Ű­ÙŰŻ Ű§Ù„Ù‚Ű±Ű” Ű§Ù„Ű”Ù‘Ù„Űš Űčلى Ű§Ù„Ű·Ù‘Ű±ÙŠÙ‚ :%s\n"
-#: ../../standalone/drakbackup_.c:2518
+#: ../../standalone/drakbackup_.c:2594
msgid ""
"\n"
"- Delete hard drive tar files after backup.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2524
+#: ../../standalone/drakbackup_.c:2600
msgid ""
"\n"
"- Burn to CD"
msgstr ""
-#: ../../standalone/drakbackup_.c:2525
+#: ../../standalone/drakbackup_.c:2601
msgid "RW"
msgstr ""
-#: ../../standalone/drakbackup_.c:2526
+#: ../../standalone/drakbackup_.c:2602
#, fuzzy, c-format
-msgid " on device : %s"
+msgid " on device: %s"
msgstr "ŰŹÙ‡Ű§ŰČ Ű§Ù„ÙŰŁŰ±Ű©: %s\n"
-#: ../../standalone/drakbackup_.c:2527
+#: ../../standalone/drakbackup_.c:2603
msgid " (multi-session)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2528
+#: ../../standalone/drakbackup_.c:2604
#, fuzzy, c-format
msgid ""
"\n"
-"- Save to Tape on device : %s"
+"- Save to Tape on device: %s"
msgstr ""
"\n"
-"-FTP و Űčلى host Ű§Ű­ÙŰŻ Űčلى : %s\n"
+"-FTP و Űčلى host Ű§Ű­ÙŰŻ Űčلى: %s\n"
-#: ../../standalone/drakbackup_.c:2529
+#: ../../standalone/drakbackup_.c:2605
#, c-format
msgid "\t\tErase=%s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2532
+#: ../../standalone/drakbackup_.c:2608
#, fuzzy, c-format
msgid ""
"\n"
-"- Save via %s on host : %s\n"
+"- Save via %s on host: %s\n"
msgstr ""
"\n"
-"-FTP و Űčلى host Ű§Ű­ÙŰŻ Űčلى : %s\n"
+"-FTP و Űčلى host Ű§Ű­ÙŰŻ Űčلى: %s\n"
-#: ../../standalone/drakbackup_.c:2533
+#: ../../standalone/drakbackup_.c:2609
#, c-format
msgid ""
"\t\t user name: %s\n"
"\t\t on path: %s \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2534
+#: ../../standalone/drakbackup_.c:2610
msgid ""
"\n"
"- Options:\n"
@@ -9071,234 +9496,353 @@ msgstr ""
"\n"
"- ŰźÙŠŰ§Ű±Ű§ŰȘ:\n"
-#: ../../standalone/drakbackup_.c:2535
+#: ../../standalone/drakbackup_.c:2611
msgid "\tDo not include System Files\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2538
+#: ../../standalone/drakbackup_.c:2614
msgid "\tBackups use tar and bzip2\n"
msgstr "\tBackups use tar and bzip2\n"
-#: ../../standalone/drakbackup_.c:2540
+#: ../../standalone/drakbackup_.c:2616
msgid "\tBackups use tar and gzip\n"
msgstr "\tBackups use tar and gzip\n"
-#: ../../standalone/drakbackup_.c:2543
+#: ../../standalone/drakbackup_.c:2619
#, c-format
msgid ""
"\n"
-"- Daemon (%s) include :\n"
+"- Daemon (%s) include:\n"
msgstr ""
"\n"
"-Daemon (%s) include :\n"
-#: ../../standalone/drakbackup_.c:2544
+#: ../../standalone/drakbackup_.c:2620
msgid "\t-Hard drive.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2545
+#: ../../standalone/drakbackup_.c:2621
msgid "\t-CDROM.\n"
msgstr "\t-CDROM.\n"
-#: ../../standalone/drakbackup_.c:2546
+#: ../../standalone/drakbackup_.c:2622
msgid "\t-Tape \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2547
+#: ../../standalone/drakbackup_.c:2623
msgid "\t-Network by FTP.\n"
msgstr "\t-Network by FTP.\n"
-#: ../../standalone/drakbackup_.c:2548
+#: ../../standalone/drakbackup_.c:2624
msgid "\t-Network by SSH.\n"
msgstr "\t-Network by SSH.\n"
-#: ../../standalone/drakbackup_.c:2549
+#: ../../standalone/drakbackup_.c:2625
#, fuzzy
msgid "\t-Network by rsync.\n"
msgstr "\t-Network by FTP.\n"
-#: ../../standalone/drakbackup_.c:2550
+#: ../../standalone/drakbackup_.c:2626
#, fuzzy
msgid "\t-Network by webdav.\n"
msgstr "\t-Network by FTP.\n"
-#: ../../standalone/drakbackup_.c:2552
+#: ../../standalone/drakbackup_.c:2628
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2558
+#: ../../standalone/drakbackup_.c:2634
msgid ""
"List of data to restore:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2725
+#: ../../standalone/drakbackup_.c:2801
msgid ""
"List of data corrupted:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2727
+#: ../../standalone/drakbackup_.c:2803
msgid "Please uncheck or remove it on next time."
msgstr ""
-#: ../../standalone/drakbackup_.c:2737
+#: ../../standalone/drakbackup_.c:2813
msgid "Backup files are corrupted"
msgstr ""
-#: ../../standalone/drakbackup_.c:2758
+#: ../../standalone/drakbackup_.c:2834
msgid " All of your selected data have been "
msgstr ""
-#: ../../standalone/drakbackup_.c:2759
+#: ../../standalone/drakbackup_.c:2835
#, c-format
msgid " Successfuly Restored on %s "
msgstr ""
-#: ../../standalone/drakbackup_.c:2877
+#: ../../standalone/drakbackup_.c:2953
msgid " Restore Configuration "
msgstr ""
-#: ../../standalone/drakbackup_.c:2895
+#: ../../standalone/drakbackup_.c:2971
msgid "OK to restore the other files."
msgstr "ۧ۶ŰșŰ· Ù…ÙˆŰ§ÙÙ‚ Ù„Ű§ŰłŰȘŰčۧۯ۩ Ù…Ù„ÙŰ§ŰȘ Ű§ŰźŰ±Ù‰"
-#: ../../standalone/drakbackup_.c:2912
+#: ../../standalone/drakbackup_.c:2988
msgid "User list to restore (only the most recent date per user is important)"
msgstr "Ù‚Ű§ŰŠÙ…Ű© Ű§Ù„Ù…ŰłŰȘŰźŰŻÙ…ÙŠÙ† Ű§Ù„Ű°ÙŠÙ† ŰłÙŠŰȘم ۧ۳ŰȘŰčۧۯŰȘهم"
-#: ../../standalone/drakbackup_.c:2975
+#: ../../standalone/drakbackup_.c:3066
msgid "Backup the system files before:"
msgstr "Ű§Ù†ŰłŰź Ù…Ù„ÙŰ§ŰȘ Ű§Ù„Ù†ŰžŰ§Ù… Ù‚ŰšÙ„:"
-#: ../../standalone/drakbackup_.c:2977
+#: ../../standalone/drakbackup_.c:3068
msgid "please choose the date to restore"
msgstr "۱ۏۧۥ ۧ۟ŰȘ۱ ŰȘŰ§Ű±ÙŠŰź Ű§Ù„Ű„ŰłŰȘŰčۧۯ۩"
-#: ../../standalone/drakbackup_.c:3014
+#: ../../standalone/drakbackup_.c:3105
msgid "Use Hard Disk to backup"
msgstr "ۧ۳ŰȘŰźŰŻÙ… Ű§Ù„Ù‚Ű±Ű” Ű§Ù„Ű”Ù„Űš Ù„Ù„Ù†ŰłŰź Ű§Ù„Ű„Ű­ŰȘÙŠŰ§Ű·ÙŠ"
-#: ../../standalone/drakbackup_.c:3017
+#: ../../standalone/drakbackup_.c:3108
msgid "Please enter the directory to save:"
msgstr ""
-#: ../../standalone/drakbackup_.c:3060
+#: ../../standalone/drakbackup_.c:3151
msgid "FTP Connection"
msgstr "ÙˆŰ”Ù„Ű© FTP"
-#: ../../standalone/drakbackup_.c:3067
+#: ../../standalone/drakbackup_.c:3158
msgid "Secure Connection"
msgstr "ÙˆŰ”Ù„Ű© ŰąÙ…Ù†Ű©"
-#: ../../standalone/drakbackup_.c:3093
+#: ../../standalone/drakbackup_.c:3184
msgid "Restore from Hard Disk."
msgstr "ۧ۳ŰȘŰčŰŻ من Ű§Ù„Ù‚Ű±Ű” Ű§Ù„Ű”Ù„Űš"
-#: ../../standalone/drakbackup_.c:3095
+#: ../../standalone/drakbackup_.c:3186
msgid "Please enter the directory where backups are stored"
msgstr "ÙŰ¶Ù„Ű§Ù‹ ŰŁŰŻŰźÙ„ Ű§Ù„ŰŻÙ„ÙŠÙ„ Ű§Ù„Ù…ÙˆŰŹÙˆŰŻŰ© فيه Ű§Ù„Ù†ŰłŰź Ű§Ù„Ű„Ű­ŰȘÙŠŰ§Ű·ÙŠŰ©"
-#: ../../standalone/drakbackup_.c:3157
+#: ../../standalone/drakbackup_.c:3254
msgid "Select another media to restore from"
msgstr "ۧ۟ŰȘ۱ ÙˆŰłÙŠŰ· ۹۟۱ Ù„Ù„Ű§ŰłŰȘŰčۧۯ۩ منه"
-#: ../../standalone/drakbackup_.c:3159
+#: ../../standalone/drakbackup_.c:3256
msgid "Other Media"
msgstr "ÙˆŰłÙŠŰ· ۹۟۱"
-#: ../../standalone/drakbackup_.c:3164
+#: ../../standalone/drakbackup_.c:3261
msgid "Restore system"
msgstr "ۧ۳ŰȘŰčŰŻ Ű§Ù„Ù†Ù‘ŰžŰ§Ù…"
-#: ../../standalone/drakbackup_.c:3165
+#: ../../standalone/drakbackup_.c:3262
msgid "Restore Users"
msgstr "ŰŁŰčŰŻ Ű§Ù„Ù…ŰłŰȘŰźŰŻÙ…ÙŠÙ† "
-#: ../../standalone/drakbackup_.c:3166
+#: ../../standalone/drakbackup_.c:3263
msgid "Restore Other"
msgstr "ۧ۳ŰȘŰčŰŻ ۹۟۱"
-#: ../../standalone/drakbackup_.c:3168
+#: ../../standalone/drakbackup_.c:3265
#, fuzzy
msgid "select path to restore (instead of /)"
msgstr "ۧ۟ŰȘ۱ Ù…ŰłŰ§Ű± Ű§Ù„Ű„ŰłŰȘŰčۧۯ۩ (ŰšŰŻÙ„Ű§Ù‹ من / )"
-#: ../../standalone/drakbackup_.c:3172
+#: ../../standalone/drakbackup_.c:3269
msgid "Do new backup before restore (only for incremental backups.)"
msgstr "قم ŰšÙ†ŰłŰź ۭۧŰȘÙŠŰ§Ű·ÙŠ ŰŹŰŻÙŠŰŻ ÙŰšÙ„ Ű§Ù„Ű„ŰłŰȘŰčۧۯ۩ (ÙÙ‚Ű· Ù„Ù„Ù†ŰłŰź Ű§Ù„Ű„Ű­ŰȘÙŠŰ§Ű·ÙŠŰ© Ű§Ù„Ù…ŰȘۯ۱ۏ۩)"
-#: ../../standalone/drakbackup_.c:3174
+#: ../../standalone/drakbackup_.c:3271
msgid "Remove user directories before restore."
msgstr "ŰŁŰČل ŰŁŰŻÙ„Ű© Ű§Ù„Ù…ŰłŰȘŰźŰŻÙ…ÙŠÙ† Ù‚ŰšÙ„ Ű§Ù„Ű„ŰłŰȘŰčۧۯ۩"
-#: ../../standalone/drakbackup_.c:3232
+#: ../../standalone/drakbackup_.c:3384
+msgid ""
+"Restore Selected\n"
+"Catalog Entry"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3394
+#, fuzzy
+msgid ""
+"Restore Selected\n"
+"Files"
+msgstr "ۧŰČل Ű§Ù„Ù…Ű§ŰŻŰ© Ű§Ù„Ù…ŰźŰȘۧ۱۩"
+
+#: ../../standalone/drakbackup_.c:3411
+#, fuzzy
+msgid ""
+"Change\n"
+"Restore Path"
+msgstr "ۧ۳ŰȘŰčŰŻ ۹۟۱"
+
+#: ../../standalone/drakbackup_.c:3477
+#, c-format
+msgid "Backup files not found at %s."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3490
+#, c-format
+msgid ""
+"Insert the CD with volume label %s\n"
+" in the CD drive under mount point /mnt/cdrom"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3490
+#, fuzzy
+msgid "Restore From CD"
+msgstr "ۧ۳ŰȘŰčŰŻ من Ű§Ù„Ù‚Ű±Ű” Ű§Ù„Ű”Ù„Űš"
+
+#: ../../standalone/drakbackup_.c:3492
+#, c-format
+msgid "Not the correct CD label. Disk is labelled %s."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3502
+#, c-format
+msgid ""
+"Insert the tape with volume label %s\n"
+" in the tape drive device %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3502
+#, fuzzy
+msgid "Restore From Tape"
+msgstr "ۧ۳ŰȘŰčۧۯ۩ ŰŹŰŻÙˆÙ„ Ű§Ù„ŰȘÙ‚ŰłÙŠÙ…"
+
+#: ../../standalone/drakbackup_.c:3504
+#, c-format
+msgid "Not the correct tape label. Tape is labelled %s."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3524
+#, fuzzy
+msgid "Restore Via Network"
+msgstr "ŰŁŰčŰŻ Ű§Ù„Ù…ŰłŰȘŰźŰŻÙ…ÙŠÙ† "
+
+#: ../../standalone/drakbackup_.c:3524
+#, c-format
+msgid "Restore Via Network Protocol: %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3525
+#, fuzzy
+msgid "Host Name"
+msgstr "Host Ű§ŰłÙ… "
+
+#: ../../standalone/drakbackup_.c:3526
+msgid "Host Path or Module"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3533
+#, fuzzy
+msgid "Password required"
+msgstr "ÙƒÙ„Ù…Ű© Ű§Ù„Ù…Ű±ÙˆŰ±"
+
+#: ../../standalone/drakbackup_.c:3539
+#, fuzzy
+msgid "Username required"
+msgstr "Ű§ŰłÙ… Ű§Ù„Ù…ŰłŰȘŰźŰŻÙ…"
+
+#: ../../standalone/drakbackup_.c:3542
+#, fuzzy
+msgid "Hostname required"
+msgstr "Ű§ŰłÙ… Ű§Ù„Ù…ŰłŰȘŰ¶ÙŠÙ :"
+
+#: ../../standalone/drakbackup_.c:3547
+msgid "Path or Module required"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3560
+msgid "Files Restored..."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3563
+#, fuzzy
+msgid "Restore Failed..."
+msgstr "ۧ۳ŰȘŰčŰŻ ۹۟۱"
+
+#: ../../standalone/drakbackup_.c:3801
msgid "Restore all backups"
msgstr "ۧ۳ŰȘŰčŰŻ كل Ű§Ù„Ù†ŰłŰź Ű§Ù„Ű„Ű­ŰȘÙŠŰ§Ű·ÙŠŰ©"
-#: ../../standalone/drakbackup_.c:3241
+#: ../../standalone/drakbackup_.c:3810
msgid "Custom Restore"
msgstr "ۧ۳ŰȘŰčۧۯ۩ Ù…ŰźŰ”Ű”Ű©"
-#: ../../standalone/drakbackup_.c:3287 ../../standalone/drakbackup_.c:3320
-#: ../../standalone/drakbackup_.c:3346 ../../standalone/drakbackup_.c:3373
-#: ../../standalone/drakbackup_.c:3400 ../../standalone/drakbackup_.c:3460
-#: ../../standalone/drakbackup_.c:3487 ../../standalone/drakbackup_.c:3513
+#: ../../standalone/drakbackup_.c:3856
+msgid "CD in place - continue."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3862
+msgid "Browse to new restore repository."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3865
+#, fuzzy
+msgid "Restore From Catalog"
+msgstr "ۧ۳ŰȘŰčۧۯ۩ ŰŹŰŻÙˆÙ„ Ű§Ù„ŰȘÙ‚ŰłÙŠÙ…"
+
+#: ../../standalone/drakbackup_.c:3893
+#, fuzzy
+msgid "Restore Progress"
+msgstr "ŰŁŰčŰŻ Ű§Ù„Ù…ŰłŰȘŰźŰŻÙ…ÙŠÙ† "
+
+#: ../../standalone/drakbackup_.c:3935 ../../standalone/drakbackup_.c:3968
+#: ../../standalone/drakbackup_.c:3994 ../../standalone/drakbackup_.c:4021
+#: ../../standalone/drakbackup_.c:4048 ../../standalone/drakbackup_.c:4108
+#: ../../standalone/drakbackup_.c:4135 ../../standalone/drakbackup_.c:4165
+#: ../../standalone/drakbackup_.c:4191
msgid "Previous"
msgstr "Ű§Ù„ŰłŰ§ŰšÙ‚"
-#: ../../standalone/drakbackup_.c:3291 ../../standalone/drakbackup_.c:3377
+#: ../../standalone/drakbackup_.c:3939 ../../standalone/drakbackup_.c:4025
#: ../../standalone/logdrake_.c:223
msgid "Save"
msgstr "Ű­ÙŰž"
-#: ../../standalone/drakbackup_.c:3350
+#: ../../standalone/drakbackup_.c:3998
msgid "Build Backup"
msgstr "Ű§ŰšÙ†ÙŠ Ű§Ù„Ù†ŰłŰźŰ© Ű§Ù„Ű„Ű­ŰȘÙŠŰ§Ű·ÙŠŰ©"
-#: ../../standalone/drakbackup_.c:3404 ../../standalone/drakbackup_.c:3974
+#: ../../standalone/drakbackup_.c:4052 ../../standalone/drakbackup_.c:4632
msgid "Restore"
msgstr "ۧ۳ŰȘŰčۧۯ۩"
-#: ../../standalone/drakbackup_.c:3553
+#: ../../standalone/drakbackup_.c:4231
msgid ""
-"Please Build backup before to restore it...\n"
-" or verify that your path to save is correct."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3574
-msgid ""
-"Error during sendmail\n"
-" your report mail was not sent\n"
+"Error during sendmail.\n"
+" Your report mail was not sent.\n"
" Please configure sendmail"
msgstr ""
-#: ../../standalone/drakbackup_.c:3598
+#: ../../standalone/drakbackup_.c:4255
#, fuzzy
msgid ""
"The following packages need to be installed:\n"
" @list_of_rpm_to_install"
msgstr "Ű§Ù„Ű­ŰČÙ…Ű© %s ÙŠŰŹŰš ŰŁÙ† ŰȘÙŰ«ŰšÙ‘ŰȘ. هل ŰȘŰ±ÙŠŰŻ ŰȘŰ«ŰšÙŠŰȘÙ‡Ű§ŰŸ"
-#: ../../standalone/drakbackup_.c:3621
+#: ../../standalone/drakbackup_.c:4278
msgid ""
"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
-#: ../../standalone/drakbackup_.c:3644
+#: ../../standalone/drakbackup_.c:4301
msgid "Please select data to restore..."
msgstr "۱ۏۧۥ ۧ۟ŰȘ۱ ŰȘŰ§Ű±ÙŠŰź Ű§Ù„Ű„ŰłŰȘŰčۧۯ۩..."
-#: ../../standalone/drakbackup_.c:3665
+#: ../../standalone/drakbackup_.c:4322
msgid "Please select media for backup..."
msgstr "۱ۏۧۥ ۧ۟ŰȘ۱ ÙˆŰłÙŠŰ· Ű§Ù„Ù†ŰłŰź Ű§Ù„Ű„Ű­ŰȘÙŠŰ§Ű·ÙŠ..."
-#: ../../standalone/drakbackup_.c:3687
+#: ../../standalone/drakbackup_.c:4344
msgid "Please select data to backup..."
msgstr "۱ۏۧۥ ۧ۟ŰȘ۱ Ű§Ù„ŰšÙŠŰ§Ù†Ű§ŰȘ Ű§Ù„Ù…Ű·Ù„ÙˆŰš Ù†ŰłŰźÙ‡Ű§ ۭۧŰȘÙŠŰ§Ű·ÙŠŰ§..."
-#: ../../standalone/drakbackup_.c:3709
+#: ../../standalone/drakbackup_.c:4366
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
@@ -9306,59 +9850,59 @@ msgstr ""
"لم يŰȘم Ű§ÙŠŰŹŰ§ŰŻ ملف ŰȘÙ‡ÙŠŰŠŰ© \n"
"ÙŰ¶Ù„Ű§ ۧ۶ŰșŰ· مŰčŰ§Ù„ŰŹ Ù„ŰŁÙˆ مŰȘÙ‚ŰŻÙ…."
-#: ../../standalone/drakbackup_.c:3730
+#: ../../standalone/drakbackup_.c:4387
msgid "Under Devel ... please wait."
msgstr "ŰȘŰ­ŰȘ Ű§Ù„ŰȘŰ·ÙˆÙŠŰ± ... Ű§Ù†ŰȘ۞۱ ÙŰ¶Ù„Ű§"
-#: ../../standalone/drakbackup_.c:3811
+#: ../../standalone/drakbackup_.c:4468
msgid "Backup system files"
msgstr "Ű§Ù†ŰłŰź Ù…Ù„ÙŰ§ŰȘ Ű§Ù„Ù†ŰžŰ§Ù…"
-#: ../../standalone/drakbackup_.c:3813
+#: ../../standalone/drakbackup_.c:4470
msgid "Backup user files"
msgstr "Ű§Ù†ŰłŰź Ù…Ù„ÙŰ§ŰȘ Ű§Ù„Ù…ŰłŰȘŰźŰŻÙ…"
-#: ../../standalone/drakbackup_.c:3815
+#: ../../standalone/drakbackup_.c:4472
msgid "Backup other files"
msgstr "Ű§Ù†ŰłŰź Ù…Ù„ÙŰ§ŰȘ ŰŁŰźŰ±Ù‰"
-#: ../../standalone/drakbackup_.c:3817 ../../standalone/drakbackup_.c:3850
+#: ../../standalone/drakbackup_.c:4474 ../../standalone/drakbackup_.c:4507
msgid "Total Progress"
msgstr "Ű§ŰŹÙ…Ű§Ù„ÙŠ Ű§Ù„ŰȘÙ‚ŰŻÙ…"
-#: ../../standalone/drakbackup_.c:3841
+#: ../../standalone/drakbackup_.c:4498
msgid "files sending by FTP"
msgstr "Ű§Ű±ŰłŰ§Ù„ Ű§Ù„Ù…Ù„ÙŰ§ŰȘ Űčن Ű·Ű±ÙŠÙ‚ FTP"
-#: ../../standalone/drakbackup_.c:3845
+#: ../../standalone/drakbackup_.c:4502
msgid "Sending files..."
msgstr "ŰŹŰ§Ű±ÙŠ Ű§Ű±ŰłŰ§Ù„ Ű§Ù„Ù…Ù„ÙŰ§ŰȘ..."
-#: ../../standalone/drakbackup_.c:3931
+#: ../../standalone/drakbackup_.c:4588
msgid "Backup Now from configuration file"
msgstr "قم ŰšŰ§Ù„Ù†ŰłŰź Ű§Ù„ŰąÙ† من ملف Ű§Ù„ŰȘÙ‡ÙŠŰŠŰ©"
-#: ../../standalone/drakbackup_.c:3936
+#: ../../standalone/drakbackup_.c:4593
msgid "View Backup Configuration."
msgstr "ۧŰč۱۶ ŰȘÙ‡ÙŠŰŠŰ© Ű§Ù„Ù†ŰłŰź Ű§Ù„Ű„Ű­ŰȘÙŠŰ§Ű·ÙŠ"
-#: ../../standalone/drakbackup_.c:3956
+#: ../../standalone/drakbackup_.c:4614
msgid "Wizard Configuration"
msgstr "Ű„ŰčۯۧۯۧŰȘ Ű§Ù„Ù…ŰčŰ§Ù„ŰŹ"
-#: ../../standalone/drakbackup_.c:3961
+#: ../../standalone/drakbackup_.c:4619
msgid "Advanced Configuration"
msgstr "Ű„Űčۯۧۯ مŰȘÙ‚ŰŻÙ…"
-#: ../../standalone/drakbackup_.c:3966
+#: ../../standalone/drakbackup_.c:4624
msgid "Backup Now"
msgstr "قم ŰšŰ§Ù„Ù†ŰłŰź Ű§Ù„Ű„Ű­ŰȘÙŠŰ§Ű·ÙŠ Ű§Ù„ŰąÙ†"
-#: ../../standalone/drakbackup_.c:3996
+#: ../../standalone/drakbackup_.c:4658
msgid "Drakbackup"
msgstr "Drakbackup"
-#: ../../standalone/drakbackup_.c:4045
+#: ../../standalone/drakbackup_.c:4707
msgid ""
"options description:\n"
"\n"
@@ -9390,7 +9934,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4075
+#: ../../standalone/drakbackup_.c:4737
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -9399,7 +9943,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4083
+#: ../../standalone/drakbackup_.c:4745
msgid ""
"options description:\n"
"\n"
@@ -9440,47 +9984,47 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4122
+#: ../../standalone/drakbackup_.c:4784
msgid ""
"restore description:\n"
" \n"
-"Only the most recent date will be used ,because with incremental \n"
-"backups it is necesarry to restore one by one each older backups.\n"
+"Only the most recent date will be used, because with incremental \n"
+"backups it is necessary to restore one by one each older backup.\n"
"\n"
-"So if you don't like to restore a user please unselect all his\n"
-"check box.\n"
+"So if you don't want to restore a user please unselect all their\n"
+"check boxes.\n"
"\n"
-"Otherwise, you are able to select only one of this\n"
+"Otherwise, you are able to select only one of these.\n"
"\n"
" - Incremental Backups:\n"
"\n"
"\tThe incremental backup is the most powerful \n"
-"\toption to use backup, this option allow you \n"
-"\tto backup all your data the first time, and \n"
-"\tonly the changed after.\n"
-"\tSo you will be able during the restore\n"
+"\toption to use. This option allows you to \n"
+"\tbackup all of your data the first time, and \n"
+"\tonly the changed data after.\n"
+"\tSo you will be able, during the restore\n"
"\tstep, to restore your data from a specified\n"
"\tdate.\n"
-"\tIf you have not selected this options all\n"
+"\tIf you have not selected this option all\n"
"\told backups are deleted before each backup. \n"
"\n"
"\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4148 ../../standalone/drakbackup_.c:4225
+#: ../../standalone/drakbackup_.c:4810 ../../standalone/drakbackup_.c:4887
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
" ŰŹÙ…ÙŠŰč Ű§Ù„Ű­Ù‚ÙˆÙ‚ Ù…Ű­ÙÙˆŰžŰ© (C) 2001 MandrakeSoft من ŰŻÙˆŰšÙˆÙ† ŰłÙŠŰšŰ§ŰłŰȘÙŠŰ§Ù† <dupont_s"
"\\@epita.fr>"
-#: ../../standalone/drakbackup_.c:4150 ../../standalone/drakbackup_.c:4227
+#: ../../standalone/drakbackup_.c:4812 ../../standalone/drakbackup_.c:4889
msgid ""
" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
-#: ../../standalone/drakbackup_.c:4152 ../../standalone/drakbackup_.c:4229
+#: ../../standalone/drakbackup_.c:4814 ../../standalone/drakbackup_.c:4891
msgid ""
" This program is free software; you can redistribute it and/or modify\n"
" it under the terms of the GNU General Public License as published by\n"
@@ -9513,7 +10057,7 @@ msgstr ""
"02111-1307,\n"
" USA."
-#: ../../standalone/drakbackup_.c:4166
+#: ../../standalone/drakbackup_.c:4828
msgid ""
"Description:\n"
"\n"
@@ -9553,7 +10097,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4204
+#: ../../standalone/drakbackup_.c:4866
msgid ""
"options description:\n"
"\n"
@@ -9564,7 +10108,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4213
+#: ../../standalone/drakbackup_.c:4875
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -9577,7 +10121,7 @@ msgid ""
"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4243
+#: ../../standalone/drakbackup_.c:4905
msgid ""
"Description:\n"
"\n"
@@ -9658,9 +10202,9 @@ msgstr ""
msgid "Synchronization tool"
msgstr ""
-#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:85
-#: ../../standalone/drakbug_.c:150 ../../standalone/drakbug_.c:152
-#: ../../standalone/drakbug_.c:156
+#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:86
+#: ../../standalone/drakbug_.c:151 ../../standalone/drakbug_.c:153
+#: ../../standalone/drakbug_.c:157
#, fuzzy
msgid "Standalone Tools"
msgstr "ŰŁŰŻÙˆŰ§ŰȘ ۳۷۱ Ű§Ù„ŰŁÙˆŰ§Ù…Ű±"
@@ -9712,25 +10256,25 @@ msgstr "Printerdrake"
msgid "Configuration Wizards"
msgstr "مŰčŰ§Ù„ŰŹ Ű„Űčۯۧۯ Ű§Ù„ŰŽŰšÙƒŰ©"
-#: ../../standalone/drakbug_.c:96
+#: ../../standalone/drakbug_.c:97
#, fuzzy
msgid "Application:"
msgstr "Ű§Ù„ŰȘŰ­Ù‚Ù‚"
-#: ../../standalone/drakbug_.c:97
+#: ../../standalone/drakbug_.c:98
msgid "Package: "
msgstr ""
-#: ../../standalone/drakbug_.c:98
+#: ../../standalone/drakbug_.c:99
msgid "Kernel:"
msgstr ""
-#: ../../standalone/drakbug_.c:99
+#: ../../standalone/drakbug_.c:100
#, fuzzy
msgid "Release: "
msgstr "من ÙŰ¶Ù„Ùƒ Ű§Ù†ŰȘ۞۱"
-#: ../../standalone/drakbug_.c:114
+#: ../../standalone/drakbug_.c:115
msgid ""
"\n"
"\n"
@@ -9742,21 +10286,21 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbug_.c:135
+#: ../../standalone/drakbug_.c:136
#, fuzzy
msgid "Report"
msgstr "ۧ۳ŰȘŰčۧۯ۩"
-#: ../../standalone/drakbug_.c:165
+#: ../../standalone/drakbug_.c:166
#, fuzzy
msgid "Not installed"
msgstr "Ù…Ű§ ŰšŰčŰŻ ۧŰČŰ§Ù„Ű© Ű§Ù„ŰȘŰ«ŰšÙŠŰȘ"
-#: ../../standalone/drakbug_.c:182
+#: ../../standalone/drakbug_.c:183
msgid "connecting to Bugzilla wizard ..."
msgstr ""
-#: ../../standalone/drakbug_.c:189
+#: ../../standalone/drakbug_.c:190
#, fuzzy
msgid "No browser available! Please install one"
msgstr "ŰłŰȘكون Ù„Ù‚Ű·Ű§ŰȘ Ű§Ù„ŰŽŰ§ŰŽŰ© Ù…ÙˆŰŹÙˆŰŻŰ© ŰšŰčŰŻ Ű§Ù„ŰȘŰ«ŰšÙŠŰȘ في %s"
@@ -10197,7 +10741,7 @@ msgid "Font List"
msgstr "Ù‚Ű§ŰŠÙ…Ű© Ű§Ù„ŰźŰ·ÙˆŰ·"
#: ../../standalone/drakfont_.c:909
-msgid "Choose the applications that will support the fonts :"
+msgid "Choose the applications that will support the fonts:"
msgstr "ۧ۟ŰȘ۱ Ű§Ù„ŰȘŰ·ŰšÙŠÙ‚Ű§ŰȘ Ű§Ù„ŰȘي ŰłŰȘŰŻŰčم Ű§Ù„ŰźŰ·ÙˆŰ· :"
#: ../../standalone/drakfont_.c:918
@@ -10268,19 +10812,19 @@ msgstr "ŰŁŰČل Ű§Ù„ŰźŰ·ÙˆŰ· من Ű§Ù„Ù†ŰžŰ§Ù…"
msgid "Post Uninstall"
msgstr "Ù…Ű§ ŰšŰčŰŻ ۧŰČŰ§Ù„Ű© Ű§Ù„ŰȘŰ«ŰšÙŠŰȘ"
-#: ../../standalone/drakgw_.c:42 ../../standalone/drakgw_.c:195
+#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:188
msgid "Internet Connection Sharing"
msgstr "Ù…ŰŽŰ§Ű±ÙƒŰ© Ű§Ù„Ű„ŰȘŰ”Ű§Ù„ ŰšŰ§Ù„Ű„Ù†ŰȘŰ±Ù†ŰȘ"
-#: ../../standalone/drakgw_.c:121
+#: ../../standalone/drakgw_.c:119
msgid "Sorry, we support only 2.4 kernels."
msgstr "ŰąŰłÙÙˆÙ†, Ù†Ű­Ù† Ù†ŰŻŰčم ۧ۔ۯۧ۱ۧŰȘ Ű§Ù„Ù†ÙˆŰ§Ű© 2.4"
-#: ../../standalone/drakgw_.c:133
+#: ../../standalone/drakgw_.c:130
msgid "Internet Connection Sharing currently enabled"
msgstr "Ù…ŰŽŰ§Ű±ÙƒŰ© Ű§Ù„Ű„ŰȘŰ”Ű§Ù„ ŰšŰ§Ù„Ű„Ù†ŰȘŰ±Ù†ŰȘ Ù…Ù…ÙƒÙ†Ű© Ű­Ű§Ù„ÙŠŰ§"
-#: ../../standalone/drakgw_.c:134
+#: ../../standalone/drakgw_.c:131
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -10288,31 +10832,31 @@ msgid ""
"What would you like to do?"
msgstr ""
-#: ../../standalone/drakgw_.c:138
+#: ../../standalone/drakgw_.c:135
msgid "disable"
msgstr "ŰȘŰčŰ·ÙŠÙ„"
-#: ../../standalone/drakgw_.c:138 ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:135 ../../standalone/drakgw_.c:160
msgid "dismiss"
msgstr "Ű§Ù‡Ù…Ű§Ù„"
-#: ../../standalone/drakgw_.c:138 ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:135 ../../standalone/drakgw_.c:160
msgid "reconfigure"
msgstr "Ű„Űčۯۧ۩ Ű§Ù„Ű„Űčۯۧۯ"
-#: ../../standalone/drakgw_.c:141
+#: ../../standalone/drakgw_.c:138
msgid "Disabling servers..."
msgstr "ŰŹŰ§Ű±ÙŠ ŰȘŰčŰ·ÙŠÙ„ Ű§Ù„ŰźÙˆŰ§ŰŻÙ…..."
-#: ../../standalone/drakgw_.c:149
+#: ../../standalone/drakgw_.c:146
msgid "Internet connection sharing is now disabled."
msgstr "Ù…ŰŽŰ§Ű±ÙƒŰ© ۧŰȘŰ”Ű§Ù„ Ű§Ù„Ű„Ù†ŰȘŰ±Ù†ŰȘ ŰșÙŠŰ± Ù…Ù…ÙƒÙ‘ÙŽÙ†Ű© Ű§Ù„ŰąÙ†."
-#: ../../standalone/drakgw_.c:158
+#: ../../standalone/drakgw_.c:155
msgid "Internet Connection Sharing currently disabled"
msgstr "Ù…ŰŽŰ§Ű±ÙƒŰ© Ű§Ù„Ű„ŰȘŰ”Ű§Ù„ ŰšŰ§Ù„Ű„Ù†ŰȘŰ±Ù†ŰȘ"
-#: ../../standalone/drakgw_.c:159
+#: ../../standalone/drakgw_.c:156
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
@@ -10320,19 +10864,19 @@ msgid ""
"What would you like to do?"
msgstr ""
-#: ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:160
msgid "enable"
msgstr "ŰȘمكين"
-#: ../../standalone/drakgw_.c:170
+#: ../../standalone/drakgw_.c:167
msgid "Enabling servers..."
msgstr "ŰŹŰ§Ű±ÙŠ ŰȘمكين Ű§Ù„ŰźÙˆŰ§ŰŻÙ…..."
-#: ../../standalone/drakgw_.c:175
+#: ../../standalone/drakgw_.c:172
msgid "Internet connection sharing is now enabled."
msgstr "Ù…ŰŽŰ§Ű±ÙƒŰ© Ű„ŰȘŰ”Ű§Ù„ Ű§Ù„Ű„Ù†ŰȘŰ±Ù†ŰȘ Ù…Ù…ÙƒÙ‘ÙŽÙ†Ű© Ű§Ù„ŰąÙ†."
-#: ../../standalone/drakgw_.c:196
+#: ../../standalone/drakgw_.c:189
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
"With that feature, other computers on your local network will be able to use "
@@ -10342,31 +10886,31 @@ msgid ""
"(LAN)."
msgstr ""
-#: ../../standalone/drakgw_.c:222
+#: ../../standalone/drakgw_.c:215
#, c-format
msgid "Interface %s (using module %s)"
msgstr "Ű§Ù„ÙˆŰ§ŰŹÙ‡Ű© %s (ۚۧ۳ŰȘŰźŰŻŰ§Ù… Ű§Ù„ÙˆŰ­ŰŻŰ© %s)"
-#: ../../standalone/drakgw_.c:223
+#: ../../standalone/drakgw_.c:216
#, c-format
msgid "Interface %s"
msgstr "Ű§Ù„ÙˆŰ§ŰŹÙ‡Ű© %s"
-#: ../../standalone/drakgw_.c:231
+#: ../../standalone/drakgw_.c:224
msgid "No network adapter on your system!"
msgstr "Ù„Ű§ Ù…Ű­ÙˆÙ‘Ù„ Ű§Ù„ŰŽÙ‘ŰšÙƒŰ© Űčلى Ù†ŰžŰ§Ù…Ùƒ"
-#: ../../standalone/drakgw_.c:232
+#: ../../standalone/drakgw_.c:225
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
msgstr ""
-#: ../../standalone/drakgw_.c:238
+#: ../../standalone/drakgw_.c:231
msgid "Network interface"
msgstr "۳۷ۭ ŰšÙŠÙ†ÙŠÙ‘ Ù„Ù„ŰŽŰšÙƒŰ© "
-#: ../../standalone/drakgw_.c:239
+#: ../../standalone/drakgw_.c:232
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -10376,17 +10920,17 @@ msgid ""
"I am about to setup your Local Area Network with that adapter."
msgstr ""
-#: ../../standalone/drakgw_.c:248
+#: ../../standalone/drakgw_.c:241
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
msgstr ""
-#: ../../standalone/drakgw_.c:266
+#: ../../standalone/drakgw_.c:259
msgid "Network interface already configured"
msgstr "ÙˆŰ§ŰŹÙ‡Ű© Ű§Ù„ŰŽŰšÙƒŰ© مŰčŰŻÙ‘Ű© Ù…ŰłŰšÙ‚Ű§!"
-#: ../../standalone/drakgw_.c:267
+#: ../../standalone/drakgw_.c:260
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -10396,15 +10940,15 @@ msgid ""
"You can do it manually but you need to know what you're doing."
msgstr ""
-#: ../../standalone/drakgw_.c:272
+#: ../../standalone/drakgw_.c:265
msgid "Automatic reconfiguration"
msgstr "ۧŰčۯۧ۩ ŰȘÙ‡ÙŠŰŠŰ© ŰąÙ„ÙŠŰ©"
-#: ../../standalone/drakgw_.c:273
+#: ../../standalone/drakgw_.c:266
msgid "Show current interface configuration"
msgstr "ŰŁŰžÙ‡Ű± ŰȘÙ‡ÙŠŰŠŰ© Ű§Ù„ÙˆŰ§ŰŹÙ‡Ű© Ű§Ù„Ű­Ű§Ù„ÙŠŰ©"
-#: ../../standalone/drakgw_.c:275
+#: ../../standalone/drakgw_.c:268
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -10421,7 +10965,7 @@ msgstr ""
"Ű”ÙŰ© Ű§Ù„Ù€IP: %s\n"
"Ű§Ù„Ù…ŰŽŰșل: %s"
-#: ../../standalone/drakgw_.c:287
+#: ../../standalone/drakgw_.c:280
msgid ""
"I can keep your current configuration and assume you already set up a DHCP "
"server; in that case please verify I correctly read the C-Class Network that "
@@ -10433,54 +10977,42 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakgw_.c:292
+#: ../../standalone/drakgw_.c:285
msgid "C-Class Local Network"
msgstr "ŰŽŰšÙƒŰ© Ù…Ű­Ù„ÙŠŰ© من Ű§Ù„ÙŰŠŰ© C"
-#: ../../standalone/drakgw_.c:293
+#: ../../standalone/drakgw_.c:286
msgid "(This) DHCP Server IP"
msgstr "ŰčÙ†ÙˆŰ§Ù† IP Ù„ŰźŰ§ŰŻÙ… DHCP (Ù‡Ű°Ű§)"
-#: ../../standalone/drakgw_.c:294
+#: ../../standalone/drakgw_.c:287
msgid "Re-configure interface and DHCP server"
msgstr "Ű„Űčۧۯ۩ Ű„Űčۯۧۯ Ű§Ù„ÙˆŰ§ŰŹÙ‡Ű© و ŰźŰ§ŰŻÙ… DHCP"
-#: ../../standalone/drakgw_.c:301
+#: ../../standalone/drakgw_.c:294
msgid "The Local Network did not finish with `.0', bailing out."
msgstr "Ű§Ù„ŰŽŰšÙƒŰ© Ű§Ù„Ù…Ű­Ù„ÙŠŰ© لم ŰȘنŰȘه ŰšÙ€`0', ŰŹŰ§Ű±ÙŠ Ű§Ù„ŰźŰ±ÙˆŰŹ."
-#: ../../standalone/drakgw_.c:312
+#: ../../standalone/drakgw_.c:305
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr ""
"ŰȘم Ű§ÙŠŰŹŰ§ŰŻ ŰȘŰčۧ۱۶ في ŰčÙ†ÙˆŰ§Ù† Ű§Ù„ŰŽŰšÙƒŰ© Ű§Ù„Ù…Ű­Ù„ÙŠŰ© Ű§Ù„Ù…ŰšŰŻŰŠÙŠ في Ű§Ù„Ű„Űčۯۧۯ Ű§Ù„Ű­Ű§Ù„ÙŠ لـ%s!\n"
-#: ../../standalone/drakgw_.c:320
-msgid "Firewalling configuration detected!"
-msgstr "ŰȘم Ű§ÙƒŰȘŰŽŰ§Ù Ű„Űčۯۧۯ Ù„Ù„ŰŹŰŻŰ§Ű± Ű§Ù„Ù†Ű§Ű±ÙŠ!"
-
-#: ../../standalone/drakgw_.c:321
-msgid ""
-"Warning! An existing firewalling configuration has been detected. You may "
-"need some manual fix after installation."
-msgstr ""
-"ŰȘŰ­Ű°ÙŠŰ±! ŰȘم Ű„ÙŠŰŹŰ§ŰŻ Ű„Űčۯۧۯ ۏۯۧ۱ Ù†Ű§Ű±ÙŠ Ù…ÙˆŰŹÙˆŰŻ Ù…ŰłŰšÙ‚Ű§. Ű±ŰšÙ…Ű§ ŰȘŰ­ŰȘۧۏ Ű§Ù„Ù‰ Ű§Ű”Ù„Ű§Ű­ ÙŠŰŻÙˆÙŠ ŰšŰčŰŻ "
-"Ű§Ù„ŰȘŰ«ŰšÙŠŰȘ."
-
-#: ../../standalone/drakgw_.c:328
+#: ../../standalone/drakgw_.c:315
msgid "Configuring..."
msgstr "ŰŹŰ§Ű±ÙŠ Ű§Ù„Ű„Űčۯۧۯ..."
-#: ../../standalone/drakgw_.c:329
+#: ../../standalone/drakgw_.c:316
msgid "Configuring scripts, installing software, starting servers..."
msgstr "ŰŹŰ§Ű±ÙŠ Ű„Űčۯۧۯ Ű§Ù„Ù†Ű”ÙˆŰ” Ű§Ù„ŰšŰ±Ù…ŰŹÙŠŰ© و ŰȘŰ«ŰšÙŠŰȘ Ű§Ù„ŰšŰ±Ù…ŰŹÙŠŰ§ŰȘ و ۚۯۥ Ű§Ù„ŰźŰŻÙ…Ű§ŰȘ..."
-#: ../../standalone/drakgw_.c:365
+#: ../../standalone/drakgw_.c:352
#, c-format
msgid "Problems installing package %s"
msgstr "ÙƒŰ§Ù†ŰȘ Ù‡Ù†Ű§Ùƒ Ù…ŰŽŰ§ÙƒÙ„ في ŰȘŰ«ŰšÙŠŰȘ Ű§Ù„Ű­ŰČÙ…Ű© %s"
-#: ../../standalone/drakgw_.c:549
+#: ../../standalone/drakgw_.c:485
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
@@ -10490,23 +11022,23 @@ msgstr ""
"يمكنك Ű§Ù„ŰąÙ† Ù…ŰŽŰ§Ű±ÙƒŰ© ۧŰȘŰ”Ű§Ù„ Ű§Ù„Ű„Ù†ŰȘŰ±Ù†ŰȘ مŰč Ű§Ù„ŰŁŰŹÙ‡ŰČŰ© Ű§Ù„ŰŁŰźŰ±Ù‰ في ŰŽŰšÙƒŰȘك Ű§Ù„Ù…Ű­Ù„ÙŠŰ© ۚۧ۳ŰȘŰźŰŻŰ§Ù… "
"Ű„Űčۯۧۯ Ű§Ù„ŰŽŰšÙƒŰ© Ű§Ù„ŰŁÙˆŰȘÙˆÙ…Ű§ŰȘيكي (DHCP)."
-#: ../../standalone/drakgw_.c:566
+#: ../../standalone/drakgw_.c:504
msgid "The setup has already been done, but it's currently disabled."
msgstr "ŰȘم Űčمل Ű§Ù„ŰȘÙ†Ű”ÙŠŰš, و لكنه ŰșÙŠŰ± ممكَّن Ű§Ù„ŰąÙ†"
-#: ../../standalone/drakgw_.c:567
+#: ../../standalone/drakgw_.c:505
msgid "The setup has already been done, and it's currently enabled."
msgstr "ŰȘم Űčمل Ű§Ù„ŰȘÙ†Ű”ÙŠŰš, و هو ممكَّن Ű§Ù„ŰąÙ†."
-#: ../../standalone/drakgw_.c:568
+#: ../../standalone/drakgw_.c:506
msgid "No Internet Connection Sharing has ever been configured."
msgstr "لم يŰȘم ۧŰčۯۧۯ ŰŁÙŠ Ù…ŰŽŰ§Ű±ÙƒŰ© ۧŰȘŰ”Ű§Ù„ ŰšŰ§Ù„Ű„Ù†ŰȘŰ±Ù†ŰȘ"
-#: ../../standalone/drakgw_.c:573
+#: ../../standalone/drakgw_.c:511
msgid "Internet connection sharing configuration"
msgstr "Ű„ŰčۯۧۯۧŰȘ Ù…ŰŽŰ§Ű±ÙƒŰ© Ű„ŰȘŰ”Ű§Ù„ Ű§Ù„Ű„Ù†ŰȘŰ±Ù†ŰȘ"
-#: ../../standalone/drakgw_.c:580
+#: ../../standalone/drakgw_.c:518
#, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -10521,6 +11053,166 @@ msgstr ""
"\n"
"ۧ۶ŰșŰ· Űčلى ŰȘÙ‡ÙŠŰŠŰ© لŰȘŰŽŰșيل مŰčŰ§Ù„ŰŹ Ű§Ù„Ű„Űčۯۧۯ."
+#: ../../standalone/draksound_.c:46
+#, fuzzy
+msgid "No Sound Card detected!"
+msgstr "لم يŰȘم Ű§ÙŠŰŹŰ§ŰŻ ŰšŰ·Ű§Ù‚Ű© ŰȘÙ„ÙŰ§ŰČ!"
+
+#: ../../standalone/draksound_.c:47
+#, fuzzy
+msgid ""
+"No Sound Card has been detected on your machine. Please verify that a Linux-"
+"supported Sound Card is correctly plugged in.\n"
+"\n"
+"\n"
+"You can visit our hardware database at:\n"
+"\n"
+"\n"
+"http://www.linux-mandrake.com/en/hardware.php3"
+msgstr ""
+"لم يŰȘم Ű§ÙŠŰŹŰ§ŰŻ ŰšŰ·Ű§Ù‚Ű© ŰȘÙ„ÙŰ§ŰČ Űčلى ŰŹÙ‡Ű§ŰČك. ÙŰ¶Ù„Ű§Ù‹ ŰȘŰŁÙƒŰŻ من ŰŁÙ† ŰšŰ·Ű§Ù‚Ű© Ű§Ù„ÙÙŠŰŻÙŠÙˆ/Ű§Ù„ŰȘÙ„ÙŰ§ŰČ "
+"Ű§Ù„Ù…ŰŻŰčÙˆÙ…Ű© في Ù„ÙŠÙ†ÙƒŰł Ù…ÙˆŰ”ÙˆÙ„Ű© ŰšŰŽÙƒÙ„ Ű”Ű­ÙŠŰ­.\n"
+"\n"
+"\n"
+"يمكنك ŰČÙŠŰ§Ű±Ű© Ù‚Ű§ŰčŰŻŰ© ŰšÙŠŰ§Ù†Ű§ŰȘ Ű§Ù„ŰčŰȘۧۯ Ű§Ù„Ù…ŰŻŰčوم Ű§Ù„ŰźŰ§Ű”Ű© ŰšÙ†Ű§ Űčلى:\n"
+"\n"
+"\n"
+"http://www.linux-mandrake.com/en/hardware.php3"
+
+#: ../../standalone/draksplash_.c:32
+msgid "package ImageMagick is required for correct working"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:76
+#, fuzzy
+msgid "first step creation"
+msgstr "Ű”Ù†Űč Ù‚Ű±Ű” Ù…Ű±Ù† Ù„ŰšŰŻŰĄ Ű§Ù„Ù†ŰžŰ§Ù…"
+
+#: ../../standalone/draksplash_.c:77
+#, fuzzy
+msgid "final resolution"
+msgstr "ŰŻÙ‚Ű© Ű§Ù„Űč۱۶"
+
+#: ../../standalone/draksplash_.c:78 ../../standalone/draksplash_.c:170
+#, fuzzy
+msgid "choose image file"
+msgstr "Ű„ŰźŰȘ۱ ملف"
+
+#: ../../standalone/draksplash_.c:79
+#, fuzzy
+msgid "Theme name"
+msgstr "Ű§ŰłÙ… Ű§Ù„Ù…ŰłŰȘŰźŰŻÙ…"
+
+#: ../../standalone/draksplash_.c:81
+msgid "make bootsplash step 2"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:82
+#, fuzzy
+msgid "go to lilosplash configuration"
+msgstr "Proxies ۧŰčۯۧۯ"
+
+#: ../../standalone/draksplash_.c:83
+#, fuzzy
+msgid "quit"
+msgstr "ŰźŰ±ÙˆŰŹ"
+
+#: ../../standalone/draksplash_.c:84
+#, fuzzy
+msgid "save theme"
+msgstr "ŰȘŰ«ŰšÙŠŰȘ Ű§Ù„Ù†ŰžŰ§Ù…"
+
+#: ../../standalone/draksplash_.c:85
+msgid "browse"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:98 ../../standalone/draksplash_.c:159
+#, fuzzy
+msgid "Configure bootsplash picture"
+msgstr "ŰȘÙ‡ÙŠŰŠŰ© Ű§Ù„ŰźŰŻÙ…Ű§ŰȘ"
+
+#: ../../standalone/draksplash_.c:99
+msgid "x coordinate of text box in number of character"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:100
+msgid "y coordinate of text box in number of character"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:101
+msgid "text width"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:102
+msgid "text box height"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:103
+msgid "the progress bar x coordinate of its upper left corner"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:104
+msgid "the progress bar y coordinate of its upper left corner"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:105
+msgid "the width of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:106
+msgid "the heigth of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:107
+msgid "the color of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:119
+#, fuzzy
+msgid "go back"
+msgstr "Loopback"
+
+#: ../../standalone/draksplash_.c:120
+#, fuzzy
+msgid "preview"
+msgstr "ÙˆŰ­ŰŻŰ©"
+
+#: ../../standalone/draksplash_.c:121
+#, fuzzy
+msgid "choose color"
+msgstr "Ű„ŰźŰȘ۱ ێۧێ۩"
+
+#: ../../standalone/draksplash_.c:124
+msgid "Display logo on Console"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:125
+msgid "Make kernel message quiet by default"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:161 ../../standalone/draksplash_.c:330
+#, c-format
+msgid "This theme haven't yet any bootsplash in %s !"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:213
+msgid "saving Bootsplash theme..."
+msgstr ""
+
+#: ../../standalone/draksplash_.c:436
+#, fuzzy
+msgid "ProgressBar color selection"
+msgstr "Ű„ŰźŰȘÙŠŰ§Ű± ÙˆŰ­ŰŻŰ§ŰȘ Ű§Ù„Ű·Ű§ŰšŰčŰ©"
+
+#: ../../standalone/draksplash_.c:454
+msgid "You must choose an image file first!"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:463
+#, fuzzy
+msgid "Generating preview ..."
+msgstr "ŰŹŰ§Ű±ÙŠ Ű§Ù„ŰȘŰ­Ù‚Ù‚ من Ű§Ù„ŰŁŰŹÙ‡ŰČŰ© ..."
+
#: ../../standalone/drakxtv_.c:49
msgid ""
"XawTV isn't installed!\n"
@@ -10609,11 +11301,11 @@ msgstr ""
"ۧ۷ۚŰč tv norm Ű§Ù„ŰźŰ§Ű” ŰšÙƒ و ŰšÙ„ŰŻÙƒ"
#: ../../standalone/drakxtv_.c:109
-msgid "TV norm :"
+msgid "TV norm:"
msgstr "TV norm :"
#: ../../standalone/drakxtv_.c:110
-msgid "Area :"
+msgid "Area:"
msgstr "Ű§Ù„Ù…Ù†Ű·Ù‚Ű© :"
#: ../../standalone/drakxtv_.c:114
@@ -10696,7 +11388,7 @@ msgstr "لم ŰŁŰȘمكن من ۚۯۥ Ű§Ù„ŰȘŰ±Ù‚ÙŠŰ© Ű§Ù„Ű­ÙŠŰ© !!!\n"
msgid "The change is done, but to be effective you must logout"
msgstr "ŰȘم Űčمل Ű§Ù„ŰȘŰșÙŠÙŠŰ±, و لكن ليŰȘم ŰȘفŰčيله ÙŠŰŹŰš Űčليك Ű§Ù„ŰźŰ±ÙˆŰŹ"
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:517
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:515
msgid "logdrake"
msgstr "logdrake"
@@ -10874,8 +11566,9 @@ msgid "service setting"
msgstr "Ű„ŰčۯۧۯۧŰȘ Ű§Ù„ŰźŰŻÙ…Ű§ŰȘ"
#: ../../standalone/logdrake_.c:431
+#, fuzzy
msgid ""
-"You will receive an alert if one of the selected service is no more running"
+"You will receive an alert if one of the selected services is no more running"
msgstr "ŰłÙˆÙ ŰȘŰłŰȘلم ŰȘÙ†ŰšÙŠÙ‡Ű§Ù‹ ۄ۰ۧ ÙƒŰ§Ù†ŰȘ ŰŁŰ­ŰŻ Ű§Ù„ŰźŰŻÙ…Ű§ŰȘ Ű§Ù„Ù…ŰźŰȘۧ۱۩ ŰșÙŠŰ± ŰčŰ§Ù…Ù„Ű©."
#: ../../standalone/logdrake_.c:443
@@ -10895,19 +11588,19 @@ msgstr "Ű„ŰčۯۧۯۧŰȘ Ű§Ù„ŰȘÙ†ŰšÙŠÙ‡"
msgid "Please enter your email address below "
msgstr "۱ۏۧۥ ÙƒÙ„Ù…Ű© Ű§Ù„Ù…Ű±ÙˆŰ±"
-#: ../../standalone/logdrake_.c:499
+#: ../../standalone/logdrake_.c:497
msgid "Save as.."
msgstr "Ű­ÙŰž ŰšŰ„ŰłÙ….."
-#: ../../standalone/mousedrake_.c:43
+#: ../../standalone/mousedrake_.c:45
msgid "Please, choose the type of your mouse."
msgstr "ÙŰ¶Ù„Ű§Ù‹, ۧ۟ŰȘ۱ نوŰč Ű§Ù„ÙŰŁŰ±Ű© Ű§Ù„ŰźŰ§Ű”Ű© ŰšÙƒ."
-#: ../../standalone/mousedrake_.c:57
+#: ../../standalone/mousedrake_.c:58
msgid "Emulate third button?"
msgstr "Ù…Ű­Ű§ÙƒŰ§Ű© Ű§Ù„ŰČ۱ Ű§Ù„Ű«Ű§Ù„Ű«ŰŸ"
-#: ../../standalone/printerdrake_.c:48
+#: ../../standalone/printerdrake_.c:57
msgid "Reading printer data ..."
msgstr "ŰŹŰ§Ű±ÙŠ Ù‚Ű±Ű§ŰĄŰ© ŰšÙŠŰ§Ù†Ű§ŰȘ Ű§Ù„Ű·Ű§ŰšŰčŰ© ..."
@@ -10919,32 +11612,43 @@ msgstr "ŰŹŰ§Ű±ÙŠ Ű§Ù„ŰȘŰ­Ù‚Ù‚ من Ű§Ù„ŰŁŰŹÙ‡ŰČŰ© ..."
msgid "Test ports"
msgstr ""
-#: ../../standalone/scannerdrake_.c:52
+#: ../../standalone/scannerdrake_.c:53 ../../standalone/scannerdrake_.c:68
+#: ../../standalone/scannerdrake_.c:81
#, c-format
-msgid "%s found on %s, configure it ?"
+msgid "The %s is not supported by this version of Mandrake Linux."
+msgstr ""
+
+#: ../../standalone/scannerdrake_.c:56
+#, fuzzy, c-format
+msgid "%s found on %s, configure it?"
msgstr "%s found on %s وفّق ŰšÙŠÙ†Ù‡ "
#: ../../standalone/scannerdrake_.c:59
+#, c-format
+msgid "%s is not in the scanner database, configure it manually?"
+msgstr ""
+
+#: ../../standalone/scannerdrake_.c:65
msgid "Select a scanner"
msgstr "ۧ۟ŰȘ۱ ŰŹÙ‡Ű§ŰČ Ű§Ù„Ù…ŰłŰ­ Ű§Ù„Ű¶ÙˆŰŠÙŠ"
-#: ../../standalone/scannerdrake_.c:79
+#: ../../standalone/scannerdrake_.c:93
#, c-format
msgid "This %s scanner is unsupported"
msgstr "Ù‡Ű°Ű§ %s Ű§Ù„Ù…Ű§ŰłŰ­ Ű§Ù„Ű¶Ù‘ÙˆŰŠÙŠÙ‘ ŰșÙŠŰ± Ù…ŰŻŰčّم"
-#: ../../standalone/scannerdrake_.c:93
+#: ../../standalone/scannerdrake_.c:107
#, c-format
msgid ""
"Scannerdrake was not able to detect your %s scanner.\n"
"Please select the device where your scanner is plugged"
msgstr ""
-#: ../../standalone/scannerdrake_.c:95
+#: ../../standalone/scannerdrake_.c:109
msgid "choose device"
msgstr "ۧ۟ŰȘ۱ Ű§Ù„ŰŹÙ‡Ű§ŰČ "
-#: ../../standalone/scannerdrake_.c:101
+#: ../../standalone/scannerdrake_.c:115
#, c-format
msgid ""
"This %s scanner must be configured by printerdrake.\n"
@@ -10954,7 +11658,7 @@ msgstr ""
"Ű§Ù„Ù…Ű§ŰłŰ­ Ű§Ù„Ű¶ÙˆŰŠÙŠ %s ÙŠŰŹŰš ۧŰčŰŻŰ§ŰŻÙ‡ Űčن Ű·Ű±ÙŠÙ‚ PrinterDrake.\n"
"يمكن ŰȘŰŽŰșيل PrinterDrake من Ù…Ű±ÙƒŰČ Ű§Ù„ŰȘŰ­ÙƒÙ… في Ù‚ŰłÙ… Ű§Ù„ŰčŰȘۧۯ."
-#: ../../standalone/scannerdrake_.c:106
+#: ../../standalone/scannerdrake_.c:120
#, c-format
msgid ""
"Your %s scanner has been configured.\n"
@@ -10965,48 +11669,18 @@ msgstr ""
"يمكنك Ű§Ù„ŰąÙ† Ù…ŰłŰ­ Ű§Ù„Ù…ŰłŰȘÙ†ŰŻŰ§ŰȘ ۚۧ۳ŰȘŰźŰŻŰ§Ù… ``XSane'' من ÙŰ±Űč ÙˆŰłŰ§ŰŠŰ· مŰȘŰčŰŻŰŻŰ©/ŰšŰ±Ű§Ù…ŰŹ Ű±ŰłÙˆÙ…ÙŠŰ© "
"في Ù‚Ű§ŰŠÙ…Ű© Ű§Ù„ŰȘŰ·ŰšÙŠÙ‚Ű§ŰȘ."
-#: ../../standalone/service_harddrake_.c:57
+#: ../../standalone/service_harddrake_.c:39
#, c-format
msgid "Some devices in the \"%s\" hardware class were removed:\n"
msgstr ""
-#: ../../standalone/service_harddrake_.c:61
+#: ../../standalone/service_harddrake_.c:43
#, c-format
msgid ""
"\n"
"Some devices in the %s class were added:\n"
msgstr ""
-#: ../../standalone/tinyfirewall_.c:30
-msgid "Firewalling Configuration"
-msgstr "Ű„ŰčۯۧۯۧŰȘ Ű§Ù„ŰŹŰŻŰ§Ű± Ű§Ù„Ù†Ű§Ű±ÙŠ"
-
-#: ../../standalone/tinyfirewall_.c:43
-msgid "Firewalling configuration"
-msgstr "ŰŁŰčۯۧۯۧŰȘ Ű§Ù„ŰŹŰŻŰ§Ű± Ű§Ù„Ù†Ű§Ű±ÙŠ"
-
-#: ../../standalone/tinyfirewall_.c:78
-msgid ""
-"Firewalling\n"
-"\n"
-"You already have set up a firewall.\n"
-"Click on Configure to change or remove the firewall"
-msgstr ""
-"Ű§Ù„ŰŹŰŻŰ§Ű± Ű§Ù„Ù†Ű§Ű±ÙŠ\n"
-"\n"
-"Ù„Ù‚ŰŻ قمŰȘ ۚۄŰčۯۧۯ ۏۯۧ۱ Ù†Ű§Ű±ÙŠ Ù…ŰłŰšÙ‚Ű§.\n"
-"ۧ۶ŰșŰ· ŰȘÙ‡ÙŠŰŠŰ© لŰȘŰșÙŠÙŠŰ± ŰŁÙˆ Ű„ŰČŰ§Ù„Ű© Ű§Ù„ŰŹŰŻŰ§Ű± Ű§Ù„Ù†Ű§Ű±ÙŠ"
-
-#: ../../standalone/tinyfirewall_.c:82
-msgid ""
-"Firewalling\n"
-"\n"
-"Click on Configure to set up a standard firewall"
-msgstr ""
-"Ű§Ù„ŰŹŰŻŰ§Ű± Ű§Ù„Ù†Ű§Ű±ÙŠ\n"
-"\n"
-"ۧ۶ŰșŰ· ŰȘÙ‡ÙŠŰŠŰ© Ù„Ű„Űčۯۧۯ ۏۯۧ۱ Ù†Ű§Ű±ÙŠ Ù‚ÙŠŰ§ŰłÙŠ"
-
#: ../../steps.pm_.c:14
msgid "Choose your language"
msgstr "ۧ۟ŰȘ۱ لŰșŰȘك"
@@ -11079,224 +11753,7 @@ msgstr "ŰȘŰ«ŰšÙŠŰȘ ŰȘŰ­ŰŻÙŠŰ«Ű§ŰȘ Ű§Ù„Ù†ŰžŰ§Ù…"
msgid "Exit install"
msgstr "Ű§Ù„ŰźŰ±ÙˆŰŹ من Ű§Ù„ŰȘŰ«ŰšÙŠŰȘ"
-#: ../../tinyfirewall.pm_.c:9
-msgid ""
-"tinyfirewall configurator\n"
-"\n"
-"This configures a personal firewall for this Mandrake Linux machine.\n"
-"For a powerful dedicated firewall solution, please look to the\n"
-"specialized MandrakeSecurity Firewall distribution."
-msgstr ""
-"ۣۯۧ۩ ŰȘÙ‡ÙŠŰŠŰ© Ű§Ù„ŰŹŰŻŰ§Ű± Ű§Ù„Ù†Ű§Ű±ÙŠ Ű§Ù„ŰšŰłÙŠŰ·\n"
-"\n"
-"Ù‡Ű°Ù‡ Ű§Ù„ŰŁŰŻŰ§Ű© ŰȘŰłÙ…Ű­ لك ŰšŰȘÙ‡ÙŠŰŠŰ© ۏۯۧ۱ Ù†Ű§Ű±ÙŠ ŰŽŰźŰ”ÙŠ Ù„Ù†ŰžŰ§Ù… Mandrake Linux Ù‡Ű°Ű§.\n"
-"ۄ۰ۧ كنŰȘ ŰȘŰ±ÙŠŰŻ ۏۯۧ۱ۧ Ù†Ű§Ű±ÙŠŰ§ مŰȘ۟۔۔ۧ, Ű§Ù„Ù‚ Ù†ŰžŰ±Ű© Űčلى\n"
-"ŰȘوŰČيŰčŰ© MandrakeSecurity Firewall."
-
-#: ../../tinyfirewall.pm_.c:14
-msgid ""
-"We'll now ask you questions about which services you'd like to allow\n"
-"the Internet to connect to. Please think carefully about these\n"
-"questions, as your computer's security is important.\n"
-"\n"
-"Please, if you're not currently using one of these services, firewall\n"
-"it off. You can change this configuration anytime you like by\n"
-"re-running this application!"
-msgstr ""
-"Ű§Ù„ŰąÙ† ŰłÙ†ŰłŰŁÙ„Ùƒ ŰšŰč۶ Ű§Ù„ŰŁŰłŰŠÙ„Ű© Ű­ÙˆÙ„ ŰŁÙŠ Ű§Ù„ŰźŰŻÙ…Ű§ŰȘ ŰȘŰ±ÙŠŰŻ ŰŁÙ† ŰȘŰłÙ…Ű­ Ù„Ù‡Ű§\n"
-"ŰšŰ§Ù„Ű„ŰȘŰ”Ű§Ù„ ŰšŰ§Ù„Ű„Ù†ŰȘŰ±Ù†ŰȘ. ÙŰ¶Ù„Ű§ ÙÙƒŰ± ŰšŰčÙ†Ű§ÙŠŰ© Ű­ÙˆÙ„ Ù‡Ű°Ù‡\n"
-"Ű§Ù„ŰŁŰłŰŠÙ„Ű© Ù„ŰŁÙ† ŰŁÙ…Ù† ÙƒÙ…ŰšÙŠÙˆŰȘŰ±Ùƒ مهم.\n"
-"\n"
-"۱ۏۧۥ, ۧ۰ۧ كنŰȘ Ù„Ű§ ŰȘŰłŰȘŰźŰŻÙ… ŰŁÙŠŰ§Ù‹ من Ù‡Ű°Ù‡ Ű§Ù„ŰźŰŻÙ…Ű§ŰȘ ÙŰ§Ű­ŰŹŰšÙ‡Ű§ Űčن\n"
-"Ű§Ù„ŰŹŰŻŰ§Ű± Ű§Ù„Ù†Ű§Ű±ÙŠ. يمكنك ŰȘŰșÙŠÙŠŰ± Ű§Ù„ŰȘÙ‡ÙŠŰŠŰ© في ŰŁÙŠ وقŰȘ ŰȘŰ±ÙŠŰŻ Űčن Ű·Ű±ÙŠÙ‚\n"
-"ŰȘŰŽŰșيل Ù‡Ű°Ű§ Ű§Ù„ŰšŰ±Ù†Ű§Ù…ŰŹ Ù…Ű±Ű© ŰŁŰźŰ±Ù‰!"
-
-#: ../../tinyfirewall.pm_.c:21
-msgid ""
-"Are you running a web server on this machine that you need the whole\n"
-"Internet to see? If you are running a webserver that only needs to be\n"
-"accessed by this machine, you can safely answer NO here.\n"
-"\n"
-msgstr ""
-"هل ŰȘŰŽŰșّل ŰźŰ§ŰŻÙ… ÙˆÙŠŰš Űčلى Ù‡Ű°Ű§ Ű§Ù„ŰŹÙ‡Ű§ŰČ Ùˆ ŰȘŰ±ÙŠŰŻ كل Ű§Ù„Ű„Ù†ŰȘŰ±Ù†ŰȘ ŰŁÙ†\n"
-"ŰȘŰ±Ű§Ù‡ŰŸ ۧ۰ۧ كنŰȘ ŰȘŰłŰȘŰźŰŻÙ… ŰźŰ§ŰŻÙ… ÙˆÙŠŰš ŰȘŰ­ŰȘۧۏ ÙÙ‚Ű· ŰŁÙ† ŰȘŰ”Ù„ Ű§Ù„ÙŠÙ‡ Űčن Ű·Ű±ÙŠÙ‚\n"
-"Ù‡Ű°Ű§ Ű§Ù„ŰŹÙ‡Ű§ŰČ ÙÙŠÙ…ÙƒÙ†Ùƒ ŰŁÙ† ŰȘŰŹÙŠŰš ŰšÙ€\"Ù„Ű§\" Ù‡Ù†Ű§.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:26
-msgid ""
-"Are you running a name server on this machine? If you didn't set one\n"
-"up to give away IP and zone information to the whole Internet, please\n"
-"answer no.\n"
-"\n"
-msgstr ""
-"هل ŰȘŰŽŰșل ŰźŰ§ŰŻÙ… ŰŁŰłÙ…Ű§ŰĄ Ù†Ű·Ű§Ù‚Ű§ŰȘ Ù‡Ù†Ű§ŰŸ ۄ۰ۧ لم ŰȘكن ŰŁŰčŰŻŰŻŰȘ ÙˆŰ§Ű­ŰŻŰ§\n"
-"Ù„Ű„Űč۷ۧۥ مŰčÙ„ÙˆÙ…Ű§ŰȘ Ű§Ù„Ù€IP و Ű§Ù„Ù…ÙƒŰ§Ù† لكل Ű§Ù„Ű„Ù†ŰȘŰ±Ù†ŰȘ, ÙŰ¶Ù„Ű§ ŰŁŰŹŰš\n"
-"ŰšÙ€\"Ù„Ű§\".\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:31
-msgid ""
-"Do you want to allow incoming Secure Shell (ssh) connections? This\n"
-"is a telnet-replacement that you might use to login. If you're using\n"
-"telnet now, you should definitely switch to ssh. telnet is not\n"
-"encrypted -- so some attackers can steal your password if you use\n"
-"it. ssh is encrypted and doesn't allow for this eavesdropping."
-msgstr ""
-"هل ŰȘŰ±ÙŠŰŻ Ű§Ù„ŰłÙ…Ű§Ű­ Ù„Ű„ŰȘŰ”Ű§Ù„Ű§ŰȘ ssh Ű§Ù„ÙˆŰ§Ű±ŰŻŰ©ŰŸ Ù‡Ű°Ű§\n"
-"ŰšŰŻÙŠÙ„ Űčن telnet و يمكنك ۧ۳ŰȘŰźŰŻŰ§Ù…Ù‡ Ù„Ù„ŰŻŰźÙˆÙ„. Ù„Ű„Ű°Ű§ كنŰȘ ŰȘŰłŰȘŰźŰŻÙ…\n"
-"telnet Ű§Ù„ŰąÙ† ÙÙŠŰŹŰš Űčليك Ű­ŰȘÙ…Ű§ ŰšŰ§Ù„ŰȘŰšŰŻÙŠÙ„ Ű§Ù„Ù‰ ssh. Telnet ŰșÙŠŰ±\n"
-"Ù…ŰŽÙŰ± -- Ù…Ù…Ű§ ÙŠŰłÙ…Ű­ Ù„Ù„Ù…ŰźŰȘŰ±Ù‚ÙŠÙ† ŰšŰłŰ±Ù‚Ű© ÙƒÙ„Ù…Ű© Ű§Ù„Ù…Ű±ÙˆŰ± ۄ۰ۧ كنŰȘ ŰȘŰłŰȘŰźŰŻÙ…Ù‡Ű§.\n"
-"SSH Ù…ŰŽÙŰ± و Ù„Ű§ ÙŠŰłÙ…Ű­ ŰšŰ§Ù„ŰȘÙ„Ű”Ű”."
-
-#: ../../tinyfirewall.pm_.c:36
-msgid ""
-"Do you want to allow incoming telnet connections?\n"
-"This is horribly unsafe, as we explained in the previous screen. We\n"
-"strongly recommend answering No here and using ssh in place of\n"
-"telnet.\n"
-msgstr ""
-"هل ŰȘŰ±ÙŠŰŻ Ű§Ù„ŰłÙ…Ű§Ű­ Ù„Ű„ŰȘŰ”Ű§Ù„Ű§ŰȘ Telnet Ű§Ù„ÙˆŰ§Ű±ŰŻŰ©ŰŸ\n"
-"Ù‡Ű°Ű§ ŰșÙŠŰ± ŰąÙ… ŰšŰŽÙƒÙ„ Ù…ŰźÙŠÙ ÙƒÙ…Ű§ ŰŽŰ±Ű­Ù†Ű§ في Ű§Ù„ŰźŰ·ÙˆŰ© Ű§Ù„ŰłŰ§ŰšÙ‚Ű©. Ù†Ű­Ù† Ù†Ù†Ű”Ű­ ŰšÙ‚ÙˆŰ©\n"
-"ŰšŰ§Ù„Ű„ŰŹŰ§ŰšŰ© Űš\"Ù„Ű§\" Ù‡Ù†Ű§ و ۧ۳ŰȘŰźŰŻŰ§Ù… SSH ŰšŰŻÙ„Ű§\n"
-"من Telnet.\n"
-
-#: ../../tinyfirewall.pm_.c:41
-msgid ""
-"Are you running an FTP server here that you need accessible to the\n"
-"Internet? If you are, we strongly recommend that you only use it for\n"
-"Anonymous transfers. Any passwords sent by FTP can be stolen by some\n"
-"attackers, since FTP also uses no encryption for transferring passwords.\n"
-msgstr ""
-"هل ŰȘŰŽŰșل ŰźŰ§ŰŻÙ… FTP Ù‡Ù†Ű§ و ŰȘŰ±ÙŠŰŻ ŰŁÙ† ÙŠÙŰłÙ…Ű­ Ù„Ù„ÙˆŰ”Ù„ Ű§Ù„ÙŠÙ‡ Űčن Ű·Ű±ÙŠÙ‚\n"
-"Ű§Ù„Ű„Ù†ŰȘŰ±Ù†ŰȘ۟ ۄ۰ۧ كنŰȘ ÙƒŰ°Ù„Ùƒ ÙÙ†Ű­Ù† Ù†Ù†Ű”Ű­ ŰšÙ‚ÙˆŰ© ۚۧ۳ŰȘŰźŰŻŰ§Ù…Ù‡ ÙÙ‚Ű·\n"
-"لنقل Ű§Ù„Ù…Ù„ÙŰ§ŰȘ Űčن Ű·Ű±ÙŠÙ‚ Ű§Ù„ŰŻŰźÙˆÙ„ Ű§Ù„Ù„Ű§Ű„ŰłÙ…ÙŠ [Anonymous]. ŰŁÙŠ ÙƒÙ„Ù…Ű§ŰȘ Ù…Ű±ÙˆŰ± Ù…ŰšŰčÙˆŰ«Ű©\n"
-"Űčن Ű·Ű±ÙŠÙ‚ FTP يمكن ŰłŰ±Ù‚ŰȘÙ‡Ű§ Űčن Ű·Ű±ÙŠÙ‚ ŰšŰč۶ Ű§Ù„Ù…ŰźŰȘŰ±Ù‚ÙŠÙ† ŰšÙ…Ű§ ŰŁÙ† FTP ŰŁÙŠŰ¶Ű§ Ù„Ű§ ÙŠŰłŰȘŰźŰŻÙ… "
-"Ű§Ù„ŰȘŰŽÙÙŠŰ± لنقل ÙƒÙ„Ù…Ű§ŰȘ Ű§Ù„Ù…Ű±ÙˆŰ±.\n"
-
-#: ../../tinyfirewall.pm_.c:46
-msgid ""
-"Are you running a mail server here? If you're sending you \n"
-"messages through pine, mutt or any other text-based mail client,\n"
-"you probably are. Otherwise, you should firewall this off.\n"
-"\n"
-msgstr ""
-"هل ŰȘŰŽŰșل ŰźŰ§ŰŻÙ… ŰšŰ±ÙŠŰŻ Ù‡Ù†Ű§ŰŸ ۄ۰ۧ كنŰȘ ŰȘŰ±ŰłÙ„ Ű§Ù„Ű±ŰłŰ§ŰŠÙ„ من ŰźÙ„Ű§Ù„ \n"
-"pine ŰŁÙˆ mutt ŰŁÙˆ ŰŁÙŠ ŰšŰ±Ù†Ű§Ù…ŰŹ ŰšŰ±ÙŠŰŻ يŰčمل في ۳۷۱ Ű§Ù„ŰŁÙˆŰ§Ù…Ű±,\n"
-"ÙŰ§Ù„ŰŁŰ±ŰŹŰ­ ŰŁÙ†Ùƒ ŰȘفŰčل Ű°Ù„Ùƒ. ۄ۰ۧ ÙƒŰ§Ù† ŰșÙŠŰ± Ű°Ù„Ùƒ, ÙŰłÙŠŰŹŰš Űčليك Ű­ŰŹŰš Ű§Ù„ŰŹŰŻŰ§Ű± Ű§Ù„Ù†Ű§Ű±ÙŠ Űčن Ù‡Ű°Ű§.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:51
-msgid ""
-"Are you running a POP or IMAP server here? This would\n"
-"be used to host non-web-based mail accounts for people via \n"
-"this machine.\n"
-"\n"
-msgstr ""
-"هل ŰȘŰŽŰșل ŰźŰŻÙ…Ű© POP ŰŁÙˆ IMAP Ù‡Ù†Ű§ŰŸ Ù‡Ű°Ű§ ŰłÙˆÙ\n"
-"ÙŠŰłŰȘŰźŰŻÙ… Ù„Ű§ŰłŰȘŰ¶Ű§ÙŰ© ۭ۳ۧۚۧŰȘ Ű§Ù„ŰšŰ±ÙŠŰŻ ŰșÙŠŰ± Ű§Ù„Ù…ŰčŰȘÙ…ŰŻŰ© Űčلى Ű§Ù„Ű„Ù†ŰȘŰ±Ù†ŰȘ\n"
-"Űčۚ۱ Ù‡Ű°Ù‡ Ű§Ù„Ù…Ű§ÙƒÙŠÙ†Ű©.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:56
-msgid ""
-"You appear to be running a 2.2 kernel. If your network IP\n"
-"is automatically set by a computer in your home or office \n"
-"(dynamically assigned), we need to allow for this. Is\n"
-"this the case?\n"
-msgstr ""
-"ÙŠŰšŰŻÙˆ ŰŁÙ†Ùƒ ŰȘŰŽŰșل Ù†ÙˆŰ§Ű© من Ű§Ù„Ű„Ű”ŰŻŰ§Ű± 2.2. ۄ۰ۧ ÙƒŰ§Ù† ŰčÙ†ÙˆŰ§Ù† IP Ű§Ù„ŰźŰ§Ű”\n"
-"ŰšŰŽŰšÙƒŰȘك يŰȘم ŰȘŰ­ŰŻÙŠŰŻÙ‡ Űčن Ű·Ű±ÙŠÙ‚ Ű§Ù„ÙƒÙ…ŰšÙŠÙˆŰȘ۱ في ŰšÙŠŰȘك ŰŁÙˆ مكŰȘŰšÙƒ \n"
-"(مُŰčيَّن ŰŻÙŠÙ†Ű§Ù…ÙŠÙƒÙŠŰ§Ù‹), ŰłÙŠŰŹŰš Űčليك Ű§Ù„ŰłÙ…Ű§Ű­ ŰšÙ‡Ű°Ű§. هل\n"
-"Ù‡Ű°Ù‡ هي Ű§Ù„Ù‚Ű¶ÙŠŰ©ŰŸ\n"
-
-#: ../../tinyfirewall.pm_.c:61
-msgid ""
-"Is your computer getting time syncronized to another computer?\n"
-"Mostly, this is used by medium-large Unix/Linux organizations\n"
-"to synchronize time for logging and such. If you're not part\n"
-"of a larger office and haven't heard of this, you probably \n"
-"aren't."
-msgstr ""
-"هل Ű§Ù„ŰȘوقيŰȘ في ŰŹÙ‡Ű§ŰČك مŰȘŰČŰ§Ù…Ù† مŰč ŰŹÙ‡Ű§ŰČ ŰąŰźŰ±ŰŸ\n"
-"ŰșŰ§Ù„ŰšŰ§, Ù‡Ű°Ù‡ Ű§Ù„Ű·Ű±ÙŠÙ‚Ű© ŰȘŰłŰȘŰźŰŻÙ… في ŰŁÙ†ŰžÙ…Ű© ÙŠÙˆÙ†ÙŠÙƒŰł/Ù„ÙŠÙ†ÙƒŰł Ű§Ù„Ù…ŰȘÙˆŰłŰ·Ű© و Ű§Ù„ÙƒŰšÙŠŰ±Ű©.\n"
-"لŰȘŰ­ŰŻÙŠŰ« ŰŁÙˆÙ‚Ű§ŰȘ Ű§Ù„ŰŻŰźÙˆÙ„ و ŰŁŰŽÙŠŰ§ŰĄ ŰŁŰźŰ±Ù‰ ÙƒÙ‡Ű°Ù‡. ۄ۰ۧ لم ŰȘكن ŰŹŰČۥۧ من\n"
-"مكŰȘŰš ŰŁÙƒŰšŰ± (ŰŁÙˆ ŰŽŰŠ من Ù‡Ű°Ű§ Ű§Ù„Ù‚ŰšÙŠÙ„) ŰŁÙˆ لم ŰȘŰłÙ…Űč ŰšÙ‡Ű°Ű§ من Ù‚ŰšÙ„, ÙŰ§Ù„ŰŁŰ±ŰŹŰ­ ŰŁÙ†\n"
-"Ù‡Ű°Ű§ Ù„Ű§ ÙŠŰ­Ű”Ù„."
-
-#: ../../tinyfirewall.pm_.c:66
-msgid ""
-"Configuration complete. May we write these changes to disk?\n"
-"\n"
-"\n"
-"\n"
-msgstr ""
-"Ű§ÙƒŰȘملŰȘ Ű§Ù„ŰȘÙ‡ÙŠŰŠŰ©. هل ÙŠÙ…ÙƒÙ†Ù†Ű§ كŰȘۧۚ۩ Ù‡Ű°Ù‡ Ű§Ù„ŰȘŰșÙŠÙŠŰ±Ű§ŰȘ Ű§Ù„Ù‰ Ű§Ù„Ù‚Ű±Ű”ŰŸ\n"
-"\n"
-"\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:82
-#, c-format
-msgid "Can't open %s: %s\n"
-msgstr "Ù„Ű§ يمكن ŰŁÙ† ينفŰȘŰ­ %s: %s\n"
-
-#: ../../tinyfirewall.pm_.c:84
-#, c-format
-msgid "Can't open %s for writing: %s\n"
-msgstr "%sللكŰȘۧۚ۩ %sÙ„Ű§ يمكن ŰŁÙ† ينفŰȘŰ­ \n"
-
-#: ../../tinyfirewall.pm_.c:178
-msgid "No I don't need DHCP"
-msgstr "Ù„Ű§, Ù„Ű§ ŰŁŰ­ŰȘۧۏ Ű§Ù„Ù‰ DHCP"
-
-#: ../../tinyfirewall.pm_.c:178
-msgid "Yes I need DHCP"
-msgstr "نŰčم ŰŁŰ­ŰȘۧۏ Ű§Ù„Ù‰ DHCP"
-
-#: ../../tinyfirewall.pm_.c:179
-msgid "No I don't need NTP"
-msgstr "Ù„Ű§, Ù„Ű§ ŰŁŰ­ŰȘۧۏ Ű§Ù„Ù‰ NTP"
-
-#: ../../tinyfirewall.pm_.c:179
-msgid "Yes I need NTP"
-msgstr "نŰčم ŰŁŰ­ŰȘۧۏ NTP"
-
-#: ../../tinyfirewall.pm_.c:180 ../../tinyfirewall.pm_.c:184
-msgid "Don't Save"
-msgstr "Ù„Ű§ ŰȘŰ­ÙŰž"
-
-#: ../../tinyfirewall.pm_.c:180 ../../tinyfirewall.pm_.c:184
-#: ../../tinyfirewall.pm_.c:204
-msgid "Save & Quit"
-msgstr "Ű„Ű­ÙŰž و ۧ۟۱ۏ"
-
-#: ../../tinyfirewall.pm_.c:195 ../../tinyfirewall.pm_.c:199
-msgid "Firewall Configuration Wizard"
-msgstr "مŰčŰ§Ù„ŰŹ Ű„Űčۯۧۯ Ű§Ù„ŰŹŰŻŰ§Ű± Ű§Ù„Ù†Ű§Ű±ÙŠ"
-
-#: ../../tinyfirewall.pm_.c:197
-msgid "No (firewall this off from the internet)"
-msgstr "Ù„Ű§ (Ű§Ù…Ù†Űč Ù‡Ű°Ű§ من Ű§Ù„Ű„Ù†ŰȘŰ±Ù†ŰȘ Űčن Ű·Ű±ÙŠÙ‚ Ű§Ù„ŰŹŰŻŰ§Ű± Ű§Ù„Ù†Ű§Ű±ÙŠ)"
-
-#: ../../tinyfirewall.pm_.c:198
-msgid "Yes (allow this through the firewall)"
-msgstr "نŰčم (Ű§ŰłÙ…Ű­ Ù„Ù‡Ű°Ű§ من ŰźÙ„Ű§Ù„ Ű§Ù„ŰŹŰŻŰ§Ű± Ű§Ù„Ù†Ű§Ű±ÙŠ)"
-
-#: ../../tinyfirewall.pm_.c:230
-msgid "Please Wait... Verifying installed packages"
-msgstr "ÙŠŰ±ŰŹÙ‰ Ű§Ù„Ű„Ù†ŰȘ۞ۧ۱... ŰŹŰ§Ű±ÙŠ Ű§Ù„ŰȘŰŁÙƒŰŻ من Ű§Ù„Ű­ŰČم Ű§Ù„Ù…Ű«ŰšŰȘŰ©"
-
-#: ../../tinyfirewall.pm_.c:236
-#, c-format
-msgid ""
-"Failure installing the needed packages : %s and Bastille.\n"
-" Try to install them manually."
-msgstr ""
-"ÙŰŽÙ„ ŰȘŰ«ŰšÙŠŰȘ Ű§Ù„Ű­ŰČم Ű§Ù„Ű¶Ű±ÙˆŰ±ÙŠŰ©: %s و Bastille.\n"
-" Ű­Ű§ÙˆÙ„ ŰȘŰ«ŰšÙŠŰȘهم ÙŠŰŻÙˆÙŠŰ§Ù‹."
-
-#: ../../ugtk.pm_.c:619
+#: ../../ugtk.pm_.c:594
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
@@ -11428,6 +11885,10 @@ msgid "Graphical Environment"
msgstr "ŰšÙŠŰŠŰ§ŰȘ Ű±ŰłÙˆÙ…ÙŠŰ©"
#: ../../share/compssUsers:999
+msgid "Development"
+msgstr ""
+
+#: ../../share/compssUsers:999
msgid "Apache, Pro-ftpd"
msgstr "Apache, Pro-ftpd"
@@ -11539,16 +12000,247 @@ msgstr "ÙˆŰłŰ§ŰŠŰ· مŰȘŰčŰŻŰŻŰ© - Ù†ŰłŰź ŰŁÙ‚Ű±Ű§Ű”"
msgid "Scientific Workstation"
msgstr "Ù…Ű­Ű·Ű© Űčمل ŰčÙ„Ù…ÙŠŰ©"
-#~ msgid "$mode: $warning"
-#~ msgstr "$mode: $warning"
+#~ msgid ""
+#~ "tinyfirewall configurator\n"
+#~ "\n"
+#~ "This configures a personal firewall for this Mandrake Linux machine.\n"
+#~ "For a powerful dedicated firewall solution, please look to the\n"
+#~ "specialized MandrakeSecurity Firewall distribution."
+#~ msgstr ""
+#~ "ۣۯۧ۩ ŰȘÙ‡ÙŠŰŠŰ© Ű§Ù„ŰŹŰŻŰ§Ű± Ű§Ù„Ù†Ű§Ű±ÙŠ Ű§Ù„ŰšŰłÙŠŰ·\n"
+#~ "\n"
+#~ "Ù‡Ű°Ù‡ Ű§Ù„ŰŁŰŻŰ§Ű© ŰȘŰłÙ…Ű­ لك ŰšŰȘÙ‡ÙŠŰŠŰ© ۏۯۧ۱ Ù†Ű§Ű±ÙŠ ŰŽŰźŰ”ÙŠ Ù„Ù†ŰžŰ§Ù… Mandrake Linux Ù‡Ű°Ű§.\n"
+#~ "ۄ۰ۧ كنŰȘ ŰȘŰ±ÙŠŰŻ ۏۯۧ۱ۧ Ù†Ű§Ű±ÙŠŰ§ مŰȘ۟۔۔ۧ, Ű§Ù„Ù‚ Ù†ŰžŰ±Ű© Űčلى\n"
+#~ "ŰȘوŰČيŰčŰ© MandrakeSecurity Firewall."
-#, fuzzy
-#~ msgid "Basic Options"
-#~ msgstr "ŰźÙŠŰ§Ű±Ű§ŰȘ"
+#~ msgid "Internet and Messaging"
+#~ msgstr "Ű§Ù„Ű„Ù†ŰȘŰ±Ù†ŰȘ و Ű§Ù„Ù…Ű±Ű§ŰłÙ„Ű©"
-#, fuzzy
-#~ msgid "Security Checks"
-#~ msgstr "Ű§Ù„ŰŁÙ…Ù†"
+#~ msgid "Multimedia and Graphics"
+#~ msgstr "ÙˆŰłŰ§ŰŠŰ· مŰȘŰčŰŻŰŻŰ© و Ű±ŰłÙˆÙ…ÙŠŰ§ŰȘ"
+
+#~ msgid "Server Software"
+#~ msgstr "ŰšŰ±Ű§Ù…ŰŹ Ű§Ù„ŰźŰ§ŰŻÙ…"
+
+#~ msgid "MandrakeCampus"
+#~ msgstr "MandrakeCampus"
+
+#~ msgid "MandrakeConsulting"
+#~ msgstr "ۧ۳ŰȘێۧ۱ۧŰȘ Mandrake"
+
+#~ msgid "MandrakeStore"
+#~ msgstr "MandrakeStore"
+
+#~ msgid "LBA (doesn't work on old BIOSes)"
+#~ msgstr "LBA (Ù„Ű§ يŰčمل مŰč ŰŁÙ†ŰžÙ…Ű© Ű§Ù„Ù€BIOS Ű§Ù„Ù‚ŰŻÙŠÙ…Ű©)"
+
+#~ msgid "You don't have any partitions!"
+#~ msgstr "Ù„ÙŠŰł Ù„ŰŻÙŠÙƒ ŰŁÙŠÙ‘ ÙÙˆŰ§Ű”Ù„ ! "
+
+#~ msgid ""
+#~ "I can't read your partition table, it's too corrupted for me :(\n"
+#~ "I'll try to go on blanking bad partitions"
+#~ msgstr ""
+#~ " Ù„Ű§ يمكن ŰŁÙ† ŰŁÙ‚Ű±ŰŁ ŰŹŰŻÙˆÙ„ ÙŰ§Ű”Ù„Ùƒ هو ÙŠÙŰłŰŻ ŰŁÙŠŰ¶Ù‹Ű§ ŰłÙˆÙ ŰŁŰ­Ű§ÙˆÙ„ ŰŁÙ† ŰŁŰłŰȘÙ…Ű±Ù‘ ÙÙˆŰ§Ű”Ù„ ŰłÙŠÙ‘ŰŠŰ© "
+
+#~ msgid "Firewalling Configuration"
+#~ msgstr "Ű„ŰčۯۧۯۧŰȘ Ű§Ù„ŰŹŰŻŰ§Ű± Ű§Ù„Ù†Ű§Ű±ÙŠ"
+
+#~ msgid "Firewalling configuration"
+#~ msgstr "ŰŁŰčۯۧۯۧŰȘ Ű§Ù„ŰŹŰŻŰ§Ű± Ű§Ù„Ù†Ű§Ű±ÙŠ"
+
+#~ msgid ""
+#~ "Firewalling\n"
+#~ "\n"
+#~ "You already have set up a firewall.\n"
+#~ "Click on Configure to change or remove the firewall"
+#~ msgstr ""
+#~ "Ű§Ù„ŰŹŰŻŰ§Ű± Ű§Ù„Ù†Ű§Ű±ÙŠ\n"
+#~ "\n"
+#~ "Ù„Ù‚ŰŻ قمŰȘ ۚۄŰčۯۧۯ ۏۯۧ۱ Ù†Ű§Ű±ÙŠ Ù…ŰłŰšÙ‚Ű§.\n"
+#~ "ۧ۶ŰșŰ· ŰȘÙ‡ÙŠŰŠŰ© لŰȘŰșÙŠÙŠŰ± ŰŁÙˆ Ű„ŰČŰ§Ù„Ű© Ű§Ù„ŰŹŰŻŰ§Ű± Ű§Ù„Ù†Ű§Ű±ÙŠ"
+
+#~ msgid ""
+#~ "Firewalling\n"
+#~ "\n"
+#~ "Click on Configure to set up a standard firewall"
+#~ msgstr ""
+#~ "Ű§Ù„ŰŹŰŻŰ§Ű± Ű§Ù„Ù†Ű§Ű±ÙŠ\n"
+#~ "\n"
+#~ "ۧ۶ŰșŰ· ŰȘÙ‡ÙŠŰŠŰ© Ù„Ű„Űčۯۧۯ ۏۯۧ۱ Ù†Ű§Ű±ÙŠ Ù‚ÙŠŰ§ŰłÙŠ"
+
+#~ msgid ""
+#~ "We'll now ask you questions about which services you'd like to allow\n"
+#~ "the Internet to connect to. Please think carefully about these\n"
+#~ "questions, as your computer's security is important.\n"
+#~ "\n"
+#~ "Please, if you're not currently using one of these services, firewall\n"
+#~ "it off. You can change this configuration anytime you like by\n"
+#~ "re-running this application!"
+#~ msgstr ""
+#~ "Ű§Ù„ŰąÙ† ŰłÙ†ŰłŰŁÙ„Ùƒ ŰšŰč۶ Ű§Ù„ŰŁŰłŰŠÙ„Ű© Ű­ÙˆÙ„ ŰŁÙŠ Ű§Ù„ŰźŰŻÙ…Ű§ŰȘ ŰȘŰ±ÙŠŰŻ ŰŁÙ† ŰȘŰłÙ…Ű­ Ù„Ù‡Ű§\n"
+#~ "ŰšŰ§Ù„Ű„ŰȘŰ”Ű§Ù„ ŰšŰ§Ù„Ű„Ù†ŰȘŰ±Ù†ŰȘ. ÙŰ¶Ù„Ű§ ÙÙƒŰ± ŰšŰčÙ†Ű§ÙŠŰ© Ű­ÙˆÙ„ Ù‡Ű°Ù‡\n"
+#~ "Ű§Ù„ŰŁŰłŰŠÙ„Ű© Ù„ŰŁÙ† ŰŁÙ…Ù† ÙƒÙ…ŰšÙŠÙˆŰȘŰ±Ùƒ مهم.\n"
+#~ "\n"
+#~ "۱ۏۧۥ, ۧ۰ۧ كنŰȘ Ù„Ű§ ŰȘŰłŰȘŰźŰŻÙ… ŰŁÙŠŰ§Ù‹ من Ù‡Ű°Ù‡ Ű§Ù„ŰźŰŻÙ…Ű§ŰȘ ÙŰ§Ű­ŰŹŰšÙ‡Ű§ Űčن\n"
+#~ "Ű§Ù„ŰŹŰŻŰ§Ű± Ű§Ù„Ù†Ű§Ű±ÙŠ. يمكنك ŰȘŰșÙŠÙŠŰ± Ű§Ù„ŰȘÙ‡ÙŠŰŠŰ© في ŰŁÙŠ وقŰȘ ŰȘŰ±ÙŠŰŻ Űčن Ű·Ű±ÙŠÙ‚\n"
+#~ "ŰȘŰŽŰșيل Ù‡Ű°Ű§ Ű§Ù„ŰšŰ±Ù†Ű§Ù…ŰŹ Ù…Ű±Ű© ŰŁŰźŰ±Ù‰!"
+
+#~ msgid ""
+#~ "Are you running a web server on this machine that you need the whole\n"
+#~ "Internet to see? If you are running a webserver that only needs to be\n"
+#~ "accessed by this machine, you can safely answer NO here.\n"
+#~ "\n"
+#~ msgstr ""
+#~ "هل ŰȘŰŽŰșّل ŰźŰ§ŰŻÙ… ÙˆÙŠŰš Űčلى Ù‡Ű°Ű§ Ű§Ù„ŰŹÙ‡Ű§ŰČ Ùˆ ŰȘŰ±ÙŠŰŻ كل Ű§Ù„Ű„Ù†ŰȘŰ±Ù†ŰȘ ŰŁÙ†\n"
+#~ "ŰȘŰ±Ű§Ù‡ŰŸ ۧ۰ۧ كنŰȘ ŰȘŰłŰȘŰźŰŻÙ… ŰźŰ§ŰŻÙ… ÙˆÙŠŰš ŰȘŰ­ŰȘۧۏ ÙÙ‚Ű· ŰŁÙ† ŰȘŰ”Ù„ Ű§Ù„ÙŠÙ‡ Űčن Ű·Ű±ÙŠÙ‚\n"
+#~ "Ù‡Ű°Ű§ Ű§Ù„ŰŹÙ‡Ű§ŰČ ÙÙŠÙ…ÙƒÙ†Ùƒ ŰŁÙ† ŰȘŰŹÙŠŰš ŰšÙ€\"Ù„Ű§\" Ù‡Ù†Ű§.\n"
+#~ "\n"
+
+#~ msgid ""
+#~ "Are you running a name server on this machine? If you didn't set one\n"
+#~ "up to give away IP and zone information to the whole Internet, please\n"
+#~ "answer no.\n"
+#~ "\n"
+#~ msgstr ""
+#~ "هل ŰȘŰŽŰșل ŰźŰ§ŰŻÙ… ŰŁŰłÙ…Ű§ŰĄ Ù†Ű·Ű§Ù‚Ű§ŰȘ Ù‡Ù†Ű§ŰŸ ۄ۰ۧ لم ŰȘكن ŰŁŰčŰŻŰŻŰȘ ÙˆŰ§Ű­ŰŻŰ§\n"
+#~ "Ù„Ű„Űč۷ۧۥ مŰčÙ„ÙˆÙ…Ű§ŰȘ Ű§Ù„Ù€IP و Ű§Ù„Ù…ÙƒŰ§Ù† لكل Ű§Ù„Ű„Ù†ŰȘŰ±Ù†ŰȘ, ÙŰ¶Ù„Ű§ ŰŁŰŹŰš\n"
+#~ "ŰšÙ€\"Ù„Ű§\".\n"
+#~ "\n"
+
+#~ msgid ""
+#~ "Do you want to allow incoming Secure Shell (ssh) connections? This\n"
+#~ "is a telnet-replacement that you might use to login. If you're using\n"
+#~ "telnet now, you should definitely switch to ssh. telnet is not\n"
+#~ "encrypted -- so some attackers can steal your password if you use\n"
+#~ "it. ssh is encrypted and doesn't allow for this eavesdropping."
+#~ msgstr ""
+#~ "هل ŰȘŰ±ÙŠŰŻ Ű§Ù„ŰłÙ…Ű§Ű­ Ù„Ű„ŰȘŰ”Ű§Ù„Ű§ŰȘ ssh Ű§Ù„ÙˆŰ§Ű±ŰŻŰ©ŰŸ Ù‡Ű°Ű§\n"
+#~ "ŰšŰŻÙŠÙ„ Űčن telnet و يمكنك ۧ۳ŰȘŰźŰŻŰ§Ù…Ù‡ Ù„Ù„ŰŻŰźÙˆÙ„. Ù„Ű„Ű°Ű§ كنŰȘ ŰȘŰłŰȘŰźŰŻÙ…\n"
+#~ "telnet Ű§Ù„ŰąÙ† ÙÙŠŰŹŰš Űčليك Ű­ŰȘÙ…Ű§ ŰšŰ§Ù„ŰȘŰšŰŻÙŠÙ„ Ű§Ù„Ù‰ ssh. Telnet ŰșÙŠŰ±\n"
+#~ "Ù…ŰŽÙŰ± -- Ù…Ù…Ű§ ÙŠŰłÙ…Ű­ Ù„Ù„Ù…ŰźŰȘŰ±Ù‚ÙŠÙ† ŰšŰłŰ±Ù‚Ű© ÙƒÙ„Ù…Ű© Ű§Ù„Ù…Ű±ÙˆŰ± ۄ۰ۧ كنŰȘ ŰȘŰłŰȘŰźŰŻÙ…Ù‡Ű§.\n"
+#~ "SSH Ù…ŰŽÙŰ± و Ù„Ű§ ÙŠŰłÙ…Ű­ ŰšŰ§Ù„ŰȘÙ„Ű”Ű”."
+
+#~ msgid ""
+#~ "Do you want to allow incoming telnet connections?\n"
+#~ "This is horribly unsafe, as we explained in the previous screen. We\n"
+#~ "strongly recommend answering No here and using ssh in place of\n"
+#~ "telnet.\n"
+#~ msgstr ""
+#~ "هل ŰȘŰ±ÙŠŰŻ Ű§Ù„ŰłÙ…Ű§Ű­ Ù„Ű„ŰȘŰ”Ű§Ù„Ű§ŰȘ Telnet Ű§Ù„ÙˆŰ§Ű±ŰŻŰ©ŰŸ\n"
+#~ "Ù‡Ű°Ű§ ŰșÙŠŰ± ŰąÙ… ŰšŰŽÙƒÙ„ Ù…ŰźÙŠÙ ÙƒÙ…Ű§ ŰŽŰ±Ű­Ù†Ű§ في Ű§Ù„ŰźŰ·ÙˆŰ© Ű§Ù„ŰłŰ§ŰšÙ‚Ű©. Ù†Ű­Ù† Ù†Ù†Ű”Ű­ ŰšÙ‚ÙˆŰ©\n"
+#~ "ŰšŰ§Ù„Ű„ŰŹŰ§ŰšŰ© Űš\"Ù„Ű§\" Ù‡Ù†Ű§ و ۧ۳ŰȘŰźŰŻŰ§Ù… SSH ŰšŰŻÙ„Ű§\n"
+#~ "من Telnet.\n"
+
+#~ msgid ""
+#~ "Are you running an FTP server here that you need accessible to the\n"
+#~ "Internet? If you are, we strongly recommend that you only use it for\n"
+#~ "Anonymous transfers. Any passwords sent by FTP can be stolen by some\n"
+#~ "attackers, since FTP also uses no encryption for transferring passwords.\n"
+#~ msgstr ""
+#~ "هل ŰȘŰŽŰșل ŰźŰ§ŰŻÙ… FTP Ù‡Ù†Ű§ و ŰȘŰ±ÙŠŰŻ ŰŁÙ† ÙŠÙŰłÙ…Ű­ Ù„Ù„ÙˆŰ”Ù„ Ű§Ù„ÙŠÙ‡ Űčن Ű·Ű±ÙŠÙ‚\n"
+#~ "Ű§Ù„Ű„Ù†ŰȘŰ±Ù†ŰȘ۟ ۄ۰ۧ كنŰȘ ÙƒŰ°Ù„Ùƒ ÙÙ†Ű­Ù† Ù†Ù†Ű”Ű­ ŰšÙ‚ÙˆŰ© ۚۧ۳ŰȘŰźŰŻŰ§Ù…Ù‡ ÙÙ‚Ű·\n"
+#~ "لنقل Ű§Ù„Ù…Ù„ÙŰ§ŰȘ Űčن Ű·Ű±ÙŠÙ‚ Ű§Ù„ŰŻŰźÙˆÙ„ Ű§Ù„Ù„Ű§Ű„ŰłÙ…ÙŠ [Anonymous]. ŰŁÙŠ ÙƒÙ„Ù…Ű§ŰȘ Ù…Ű±ÙˆŰ± Ù…ŰšŰčÙˆŰ«Ű©\n"
+#~ "Űčن Ű·Ű±ÙŠÙ‚ FTP يمكن ŰłŰ±Ù‚ŰȘÙ‡Ű§ Űčن Ű·Ű±ÙŠÙ‚ ŰšŰč۶ Ű§Ù„Ù…ŰźŰȘŰ±Ù‚ÙŠÙ† ŰšÙ…Ű§ ŰŁÙ† FTP ŰŁÙŠŰ¶Ű§ Ù„Ű§ ÙŠŰłŰȘŰźŰŻÙ… "
+#~ "Ű§Ù„ŰȘŰŽÙÙŠŰ± لنقل ÙƒÙ„Ù…Ű§ŰȘ Ű§Ù„Ù…Ű±ÙˆŰ±.\n"
+
+#~ msgid ""
+#~ "Are you running a mail server here? If you're sending you \n"
+#~ "messages through pine, mutt or any other text-based mail client,\n"
+#~ "you probably are. Otherwise, you should firewall this off.\n"
+#~ "\n"
+#~ msgstr ""
+#~ "هل ŰȘŰŽŰșل ŰźŰ§ŰŻÙ… ŰšŰ±ÙŠŰŻ Ù‡Ù†Ű§ŰŸ ۄ۰ۧ كنŰȘ ŰȘŰ±ŰłÙ„ Ű§Ù„Ű±ŰłŰ§ŰŠÙ„ من ŰźÙ„Ű§Ù„ \n"
+#~ "pine ŰŁÙˆ mutt ŰŁÙˆ ŰŁÙŠ ŰšŰ±Ù†Ű§Ù…ŰŹ ŰšŰ±ÙŠŰŻ يŰčمل في ۳۷۱ Ű§Ù„ŰŁÙˆŰ§Ù…Ű±,\n"
+#~ "ÙŰ§Ù„ŰŁŰ±ŰŹŰ­ ŰŁÙ†Ùƒ ŰȘفŰčل Ű°Ù„Ùƒ. ۄ۰ۧ ÙƒŰ§Ù† ŰșÙŠŰ± Ű°Ù„Ùƒ, ÙŰłÙŠŰŹŰš Űčليك Ű­ŰŹŰš Ű§Ù„ŰŹŰŻŰ§Ű± Ű§Ù„Ù†Ű§Ű±ÙŠ Űčن "
+#~ "Ù‡Ű°Ű§.\n"
+#~ "\n"
+
+#~ msgid ""
+#~ "Are you running a POP or IMAP server here? This would\n"
+#~ "be used to host non-web-based mail accounts for people via \n"
+#~ "this machine.\n"
+#~ "\n"
+#~ msgstr ""
+#~ "هل ŰȘŰŽŰșل ŰźŰŻÙ…Ű© POP ŰŁÙˆ IMAP Ù‡Ù†Ű§ŰŸ Ù‡Ű°Ű§ ŰłÙˆÙ\n"
+#~ "ÙŠŰłŰȘŰźŰŻÙ… Ù„Ű§ŰłŰȘŰ¶Ű§ÙŰ© ۭ۳ۧۚۧŰȘ Ű§Ù„ŰšŰ±ÙŠŰŻ ŰșÙŠŰ± Ű§Ù„Ù…ŰčŰȘÙ…ŰŻŰ© Űčلى Ű§Ù„Ű„Ù†ŰȘŰ±Ù†ŰȘ\n"
+#~ "Űčۚ۱ Ù‡Ű°Ù‡ Ű§Ù„Ù…Ű§ÙƒÙŠÙ†Ű©.\n"
+#~ "\n"
+
+#~ msgid ""
+#~ "You appear to be running a 2.2 kernel. If your network IP\n"
+#~ "is automatically set by a computer in your home or office \n"
+#~ "(dynamically assigned), we need to allow for this. Is\n"
+#~ "this the case?\n"
+#~ msgstr ""
+#~ "ÙŠŰšŰŻÙˆ ŰŁÙ†Ùƒ ŰȘŰŽŰșل Ù†ÙˆŰ§Ű© من Ű§Ù„Ű„Ű”ŰŻŰ§Ű± 2.2. ۄ۰ۧ ÙƒŰ§Ù† ŰčÙ†ÙˆŰ§Ù† IP Ű§Ù„ŰźŰ§Ű”\n"
+#~ "ŰšŰŽŰšÙƒŰȘك يŰȘم ŰȘŰ­ŰŻÙŠŰŻÙ‡ Űčن Ű·Ű±ÙŠÙ‚ Ű§Ù„ÙƒÙ…ŰšÙŠÙˆŰȘ۱ في ŰšÙŠŰȘك ŰŁÙˆ مكŰȘŰšÙƒ \n"
+#~ "(مُŰčيَّن ŰŻÙŠÙ†Ű§Ù…ÙŠÙƒÙŠŰ§Ù‹), ŰłÙŠŰŹŰš Űčليك Ű§Ù„ŰłÙ…Ű§Ű­ ŰšÙ‡Ű°Ű§. هل\n"
+#~ "Ù‡Ű°Ù‡ هي Ű§Ù„Ù‚Ű¶ÙŠŰ©ŰŸ\n"
+
+#~ msgid ""
+#~ "Is your computer getting time syncronized to another computer?\n"
+#~ "Mostly, this is used by medium-large Unix/Linux organizations\n"
+#~ "to synchronize time for logging and such. If you're not part\n"
+#~ "of a larger office and haven't heard of this, you probably \n"
+#~ "aren't."
+#~ msgstr ""
+#~ "هل Ű§Ù„ŰȘوقيŰȘ في ŰŹÙ‡Ű§ŰČك مŰȘŰČŰ§Ù…Ù† مŰč ŰŹÙ‡Ű§ŰČ ŰąŰźŰ±ŰŸ\n"
+#~ "ŰșŰ§Ù„ŰšŰ§, Ù‡Ű°Ù‡ Ű§Ù„Ű·Ű±ÙŠÙ‚Ű© ŰȘŰłŰȘŰźŰŻÙ… في ŰŁÙ†ŰžÙ…Ű© ÙŠÙˆÙ†ÙŠÙƒŰł/Ù„ÙŠÙ†ÙƒŰł Ű§Ù„Ù…ŰȘÙˆŰłŰ·Ű© و Ű§Ù„ÙƒŰšÙŠŰ±Ű©.\n"
+#~ "لŰȘŰ­ŰŻÙŠŰ« ŰŁÙˆÙ‚Ű§ŰȘ Ű§Ù„ŰŻŰźÙˆÙ„ و ŰŁŰŽÙŠŰ§ŰĄ ŰŁŰźŰ±Ù‰ ÙƒÙ‡Ű°Ù‡. ۄ۰ۧ لم ŰȘكن ŰŹŰČۥۧ من\n"
+#~ "مكŰȘŰš ŰŁÙƒŰšŰ± (ŰŁÙˆ ŰŽŰŠ من Ù‡Ű°Ű§ Ű§Ù„Ù‚ŰšÙŠÙ„) ŰŁÙˆ لم ŰȘŰłÙ…Űč ŰšÙ‡Ű°Ű§ من Ù‚ŰšÙ„, ÙŰ§Ù„ŰŁŰ±ŰŹŰ­ ŰŁÙ†\n"
+#~ "Ù‡Ű°Ű§ Ù„Ű§ ÙŠŰ­Ű”Ù„."
+
+#~ msgid ""
+#~ "Configuration complete. May we write these changes to disk?\n"
+#~ "\n"
+#~ "\n"
+#~ "\n"
+#~ msgstr ""
+#~ "Ű§ÙƒŰȘملŰȘ Ű§Ù„ŰȘÙ‡ÙŠŰŠŰ©. هل ÙŠÙ…ÙƒÙ†Ù†Ű§ كŰȘۧۚ۩ Ù‡Ű°Ù‡ Ű§Ù„ŰȘŰșÙŠÙŠŰ±Ű§ŰȘ Ű§Ù„Ù‰ Ű§Ù„Ù‚Ű±Ű”ŰŸ\n"
+#~ "\n"
+#~ "\n"
+#~ "\n"
+
+#~ msgid "Can't open %s for writing: %s\n"
+#~ msgstr "%sللكŰȘۧۚ۩ %sÙ„Ű§ يمكن ŰŁÙ† ينفŰȘŰ­ \n"
+
+#~ msgid "No I don't need DHCP"
+#~ msgstr "Ù„Ű§, Ù„Ű§ ŰŁŰ­ŰȘۧۏ Ű§Ù„Ù‰ DHCP"
+
+#~ msgid "Yes I need DHCP"
+#~ msgstr "نŰčم ŰŁŰ­ŰȘۧۏ Ű§Ù„Ù‰ DHCP"
+
+#~ msgid "No I don't need NTP"
+#~ msgstr "Ù„Ű§, Ù„Ű§ ŰŁŰ­ŰȘۧۏ Ű§Ù„Ù‰ NTP"
+
+#~ msgid "Yes I need NTP"
+#~ msgstr "نŰčم ŰŁŰ­ŰȘۧۏ NTP"
+
+#~ msgid "Don't Save"
+#~ msgstr "Ù„Ű§ ŰȘŰ­ÙŰž"
+
+#~ msgid "Save & Quit"
+#~ msgstr "Ű„Ű­ÙŰž و ۧ۟۱ۏ"
+
+#~ msgid "Firewall Configuration Wizard"
+#~ msgstr "مŰčŰ§Ù„ŰŹ Ű„Űčۯۧۯ Ű§Ù„ŰŹŰŻŰ§Ű± Ű§Ù„Ù†Ű§Ű±ÙŠ"
+
+#~ msgid "No (firewall this off from the internet)"
+#~ msgstr "Ù„Ű§ (Ű§Ù…Ù†Űč Ù‡Ű°Ű§ من Ű§Ù„Ű„Ù†ŰȘŰ±Ù†ŰȘ Űčن Ű·Ű±ÙŠÙ‚ Ű§Ù„ŰŹŰŻŰ§Ű± Ű§Ù„Ù†Ű§Ű±ÙŠ)"
+
+#~ msgid "Yes (allow this through the firewall)"
+#~ msgstr "نŰčم (Ű§ŰłÙ…Ű­ Ù„Ù‡Ű°Ű§ من ŰźÙ„Ű§Ù„ Ű§Ù„ŰŹŰŻŰ§Ű± Ű§Ù„Ù†Ű§Ű±ÙŠ)"
+
+#~ msgid "Please Wait... Verifying installed packages"
+#~ msgstr "ÙŠŰ±ŰŹÙ‰ Ű§Ù„Ű„Ù†ŰȘ۞ۧ۱... ŰŹŰ§Ű±ÙŠ Ű§Ù„ŰȘŰŁÙƒŰŻ من Ű§Ù„Ű­ŰČم Ű§Ù„Ù…Ű«ŰšŰȘŰ©"
+
+#~ msgid ""
+#~ "Failure installing the needed packages: %s and Bastille.\n"
+#~ " Try to install them manually."
+#~ msgstr ""
+#~ "ÙŰŽÙ„ ŰȘŰ«ŰšÙŠŰȘ Ű§Ù„Ű­ŰČم Ű§Ù„Ű¶Ű±ÙˆŰ±ÙŠŰ©: %s و Bastille.\n"
+#~ " Ű­Ű§ÙˆÙ„ ŰȘŰ«ŰšÙŠŰȘهم ÙŠŰŻÙˆÙŠŰ§Ù‹."
#~ msgid "Data list to include on CDROM."
#~ msgstr "Ù‚Ű§ŰŠÙ…Ű© Ű§Ù„ŰšÙŠŰ§Ù†Ű§ŰȘ Ű§Ù„ŰȘي ŰłŰȘŰ¶Ù…Ù† في Ű§Ù„Ù‚Ű±Ű”."
@@ -11575,18 +12267,6 @@ msgstr "Ù…Ű­Ű·Ű© Űčمل ŰčÙ„Ù…ÙŠŰ©"
#~ " من ÙŰ¶Ù„Ùƒ ÙŰ­Ű” ۄ۰ۧ ۣ۱ۯŰȘ ŰŁÙ† ŰȘŰȘŰ¶Ù…Ù‘Ù† \n"
#~ "Ű±ÙƒÙ‘Űš Ű§Ù„ŰŹŰŻŰ± Űčلى Ù‚Ű±Ű”Ùƒ Ű§Ù„Ù…ŰŻÙ…ŰŹ"
-#, fuzzy
-#~ msgid "PDC Server Name"
-#~ msgstr "ŰźŰ§ŰŻÙ… NTP"
-
-#, fuzzy
-#~ msgid "Installing SANE packages..."
-#~ msgstr "ŰȘŰ±ÙƒÙŠŰš Ű·Ű±ÙˆŰŻ ..."
-
-#, fuzzy
-#~ msgid "Installing mtools packages..."
-#~ msgstr "ŰȘŰ±ÙƒÙŠŰš Ű·Ű±ÙˆŰŻ ..."
-
#~ msgid "Control Center"
#~ msgstr "Ù…Ű±ÙƒŰČ Ű§Ù„ŰȘÙ‘Ű­ÙƒÙ‘Ù… "
@@ -11690,12 +12370,6 @@ msgstr "Ù…Ű­Ű·Ű© Űčمل ŰčÙ„Ù…ÙŠŰ©"
#~ msgid "Choose a X driver"
#~ msgstr "Ű„ŰźŰȘ۱ Ù…ŰŽŰșل X"
-#~ msgid "X driver"
-#~ msgstr "Ù…ŰŽŰșل X"
-
-#~ msgid "Warning: testing this graphics card may freeze your computer"
-#~ msgstr "ŰȘŰ­Ű°ÙŠŰ±: ۧ۟ŰȘۚۧ۱ ŰšŰ·Ű§Ù‚Ű© Ű§Ù„Űč۱۶ Ù‡Ű°Ù‡ Ù‚ŰŻ يŰȘ۳ۚ في Ű§ÙŠÙ‚Ű§Ù ŰŹÙ‡Ű§ŰČك"
-
#~ msgid "Standard VGA, 640x480 at 60 Hz"
#~ msgstr "Standard VGA, 640x480 at 60 Hz"
diff --git a/perl-install/share/po/az.po b/perl-install/share/po/az.po
index e21ba8371..ed3f2ef88 100644
--- a/perl-install/share/po/az.po
+++ b/perl-install/share/po/az.po
@@ -5,8 +5,8 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: drakfloppy 0.43\n"
-"POT-Creation-Date: 2002-08-21 15:44+0200\n"
+"Project-Id-Version: DrakX\n"
+"POT-Creation-Date: 2002-09-02 20:14+0200\n"
"PO-Revision-Date: 2001-09-01 22:26GMT +0200\n"
"Last-Translator: Vasif İsmayıloğlu MD <azerb_linux@hotmail.com>\n"
"Language-Team: Azerbaijani Turkish <linuxaz@azerimal.net>\n"
@@ -48,23 +48,22 @@ msgid "32 MB"
msgstr "32 MB"
#: ../../Xconfig/card.pm_.c:24
-#, fuzzy
msgid "64 MB or more"
-msgstr "16 MB və ya daha çox"
+msgstr "64 MB və ya daha çox"
-#: ../../Xconfig/card.pm_.c:201
+#: ../../Xconfig/card.pm_.c:203
msgid "Choose a X server"
msgstr "Bir X vericisi seçin"
-#: ../../Xconfig/card.pm_.c:201
+#: ../../Xconfig/card.pm_.c:203
msgid "X server"
msgstr "X verici"
-#: ../../Xconfig/card.pm_.c:228
+#: ../../Xconfig/card.pm_.c:230
msgid "Multi-head configuration"
msgstr "Çoxlu BaƟlıq quraƟdırılması"
-#: ../../Xconfig/card.pm_.c:229
+#: ../../Xconfig/card.pm_.c:231
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
@@ -72,27 +71,27 @@ msgstr ""
"Sizin sisteminiz çoxlu baƟlıq quraƟdırmasını dəstəkləyir.\n"
"Nə etmək istəyirsiniz?"
-#: ../../Xconfig/card.pm_.c:284
+#: ../../Xconfig/card.pm_.c:286
msgid "Select the memory size of your graphics card"
msgstr "Ekran kartınızın yaddaƟ böyĂŒklĂŒyĂŒnĂŒ seçin"
-#: ../../Xconfig/card.pm_.c:345
+#: ../../Xconfig/card.pm_.c:347
msgid "XFree configuration"
msgstr "XFree quraƟdırılması"
-#: ../../Xconfig/card.pm_.c:347
+#: ../../Xconfig/card.pm_.c:349
msgid "Which configuration of XFree do you want to have?"
msgstr "Necə bir XFree qurğusunu istəyirsiniz?"
-#: ../../Xconfig/card.pm_.c:379
+#: ../../Xconfig/card.pm_.c:381
msgid "Configure all heads independently"
msgstr "BĂŒtĂŒn baƟlıqları ayrı ayrı quraƟdır"
-#: ../../Xconfig/card.pm_.c:380
+#: ../../Xconfig/card.pm_.c:382
msgid "Use Xinerama extension"
msgstr "Xinerama ifadələrini iƟlət"
-#: ../../Xconfig/card.pm_.c:384
+#: ../../Xconfig/card.pm_.c:386
#, fuzzy, c-format
msgid "Configure only card \"%s\"%s"
msgstr "Təkcə \"%s\" kartını qur (%s)"
@@ -103,13 +102,13 @@ msgstr "Təkcə \"%s\" kartını qur (%s)"
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:435
+#: ../../Xconfig/card.pm_.c:410 ../../Xconfig/card.pm_.c:436
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s with 3D hardware acceleration"
msgstr "3D avadanlıq sĂŒr'ətləndirməsi ilə XFree %s"
-#: ../../Xconfig/card.pm_.c:412
+#: ../../Xconfig/card.pm_.c:413
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -121,17 +120,17 @@ msgstr ""
"Sizin kartınıza XFree %s tərəfindən dəstək verilir ve bu 2D ĂŒĂ§ĂŒn daha yaxĆŸÄ± "
"bir fikir olar."
-#: ../../Xconfig/card.pm_.c:414 ../../Xconfig/card.pm_.c:437
+#: ../../Xconfig/card.pm_.c:415 ../../Xconfig/card.pm_.c:438
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr "Sizin kartınızın XFree %s ilə 3D dəstəyi ola bilər."
-#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:443
+#: ../../Xconfig/card.pm_.c:423 ../../Xconfig/card.pm_.c:444
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "SINAQ MƏRHƏLƏSÄ°NDƏKÄ° 3D sĂŒr'ətləndirmə dəstəkli XFree %s"
-#: ../../Xconfig/card.pm_.c:425
+#: ../../Xconfig/card.pm_.c:426
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -145,7 +144,7 @@ msgstr ""
"Sizin kartınıza XFree %s tərəfindən dəstək verilir ve bu 2D ĂŒĂ§ĂŒn daha yaxĆŸÄ± "
"bir seçki olar."
-#: ../../Xconfig/card.pm_.c:428 ../../Xconfig/card.pm_.c:445
+#: ../../Xconfig/card.pm_.c:429 ../../Xconfig/card.pm_.c:446
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
@@ -154,53 +153,54 @@ msgstr ""
"Sizin kartınızın XFree %s ilə 3D dəstəyi ola bilər.\n"
"DÄ°QQƏT! BU SINAQ MƏRHƏLƏSINDƏDIR VƏ KOMPÜTERÄ°NÄ°Z DONDURA BILƏR."
-#: ../../Xconfig/card.pm_.c:451
+#: ../../Xconfig/card.pm_.c:452
msgid "Xpmac (installation display driver)"
msgstr ""
-#: ../../Xconfig/main.pm_.c:78 ../../Xconfig/main.pm_.c:79
-#: ../../Xconfig/monitor.pm_.c:94 ../../any.pm_.c:974
+#: ../../Xconfig/main.pm_.c:76 ../../Xconfig/main.pm_.c:77
+#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:977
msgid "Custom"
msgstr "XĂŒsusi"
-#: ../../Xconfig/main.pm_.c:104
+#: ../../Xconfig/main.pm_.c:102
#, fuzzy
msgid "Graphic Card"
msgstr "Ekran kartı"
-#: ../../Xconfig/main.pm_.c:107 ../../Xconfig/monitor.pm_.c:91
+#: ../../Xconfig/main.pm_.c:105 ../../Xconfig/monitor.pm_.c:93
msgid "Monitor"
msgstr "Monitor"
-#: ../../Xconfig/main.pm_.c:110 ../../Xconfig/resolution_and_depth.pm_.c:209
+#: ../../Xconfig/main.pm_.c:108 ../../Xconfig/resolution_and_depth.pm_.c:209
msgid "Resolution"
msgstr "Rezolyusiya"
-#: ../../Xconfig/main.pm_.c:114
+#: ../../Xconfig/main.pm_.c:113
msgid "Test"
msgstr ""
-#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:59
-#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/removable.pm_.c:25
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:63
+#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/removable.pm_.c:25
#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "Seçənəklər"
#: ../../Xconfig/main.pm_.c:121 ../../Xconfig/resolution_and_depth.pm_.c:268
-#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:281
+#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:275
#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
-#: ../../interactive.pm_.c:351 ../../interactive/http.pm_.c:104
+#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:104
#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
-#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:156
-#: ../../my_gtk.pm_.c:284 ../../my_gtk.pm_.c:307
-#: ../../standalone/drakbackup_.c:3324 ../../standalone/drakbackup_.c:3419
-#: ../../standalone/drakbackup_.c:3438
+#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:159
+#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310
+#: ../../standalone/drakbackup_.c:3972 ../../standalone/drakbackup_.c:4067
+#: ../../standalone/drakbackup_.c:4086
msgid "Ok"
msgstr "Oldu"
#: ../../Xconfig/main.pm_.c:121 ../../diskdrake/dav.pm_.c:24
-#: ../../printerdrake.pm_.c:2933 ../../standalone/logdrake_.c:224
+#: ../../harddrake/ui.pm_.c:98 ../../printerdrake.pm_.c:3155
+#: ../../standalone/logdrake_.c:224
msgid "Quit"
msgstr "Çıx"
@@ -217,28 +217,28 @@ msgstr ""
"\n"
"%s"
-#: ../../Xconfig/monitor.pm_.c:91
+#: ../../Xconfig/monitor.pm_.c:93
msgid "Choose a monitor"
msgstr "Monitorunuzu seçin"
-#: ../../Xconfig/monitor.pm_.c:95
+#: ../../Xconfig/monitor.pm_.c:97
msgid "Plug'n Play"
msgstr ""
-#: ../../Xconfig/monitor.pm_.c:96 ../../mouse.pm_.c:45
+#: ../../Xconfig/monitor.pm_.c:98 ../../mouse.pm_.c:46
msgid "Generic"
msgstr "Ümumi"
-#: ../../Xconfig/monitor.pm_.c:97 ../../harddrake/ui.pm_.c:36
+#: ../../Xconfig/monitor.pm_.c:99 ../../harddrake/ui.pm_.c:37
#, fuzzy
msgid "Vendor"
msgstr "Geri al"
-#: ../../Xconfig/monitor.pm_.c:107
+#: ../../Xconfig/monitor.pm_.c:109
msgid "Plug'n Play probing failed. Please choose a precise monitor"
msgstr ""
-#: ../../Xconfig/monitor.pm_.c:112
+#: ../../Xconfig/monitor.pm_.c:114
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -256,11 +256,11 @@ msgstr ""
"seçməməyiniz çox vacibdir, əks halda monitor zərər görər.\n"
"Seçərkən bir qərarsızlığa dĂŒĆŸÉ™rsəniz, alçaq rezolyusiya seçin."
-#: ../../Xconfig/monitor.pm_.c:119
+#: ../../Xconfig/monitor.pm_.c:121
msgid "Horizontal refresh rate"
msgstr "ÜfĂŒqi yeniləmə sĂŒr'əti"
-#: ../../Xconfig/monitor.pm_.c:120
+#: ../../Xconfig/monitor.pm_.c:122
msgid "Vertical refresh rate"
msgstr "ƞaquli yeniləmə sĂŒr'əti"
@@ -297,36 +297,41 @@ msgstr "Rezolyusiya və rəng dərinliyini seçin"
msgid "Graphics card: %s"
msgstr "Ekran kartı: %s"
-#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1015
-#: ../../bootlook.pm_.c:334 ../../diskdrake/smbnfs_gtk.pm_.c:87
-#: ../../install_steps_gtk.pm_.c:412 ../../install_steps_gtk.pm_.c:470
-#: ../../install_steps_interactive.pm_.c:576 ../../interactive.pm_.c:142
-#: ../../interactive.pm_.c:351 ../../interactive/http.pm_.c:105
+#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1018
+#: ../../bootlook.pm_.c:338 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:406 ../../install_steps_gtk.pm_.c:464
+#: ../../install_steps_interactive.pm_.c:560 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:105
#: ../../interactive/newt.pm_.c:174 ../../interactive/stdio.pm_.c:39
-#: ../../interactive/stdio.pm_.c:143 ../../my_gtk.pm_.c:155
-#: ../../my_gtk.pm_.c:159 ../../my_gtk.pm_.c:284
-#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1990
-#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3278
-#: ../../standalone/drakbackup_.c:3311 ../../standalone/drakbackup_.c:3337
-#: ../../standalone/drakbackup_.c:3364 ../../standalone/drakbackup_.c:3391
-#: ../../standalone/drakbackup_.c:3451 ../../standalone/drakbackup_.c:3478
-#: ../../standalone/drakbackup_.c:3504 ../../standalone/drakconnect_.c:115
-#: ../../standalone/drakconnect_.c:147 ../../standalone/drakconnect_.c:289
-#: ../../standalone/drakconnect_.c:537 ../../standalone/drakconnect_.c:679
-#: ../../standalone/drakfloppy_.c:234 ../../standalone/drakfloppy_.c:383
-#: ../../standalone/drakfont_.c:970 ../../standalone/drakgw_.c:598
-#: ../../standalone/logdrake_.c:224 ../../standalone/logdrake_.c:528
-#: ../../standalone/tinyfirewall_.c:64
+#: ../../interactive/stdio.pm_.c:143 ../../my_gtk.pm_.c:158
+#: ../../my_gtk.pm_.c:162 ../../my_gtk.pm_.c:287
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:2124
+#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3926
+#: ../../standalone/drakbackup_.c:3959 ../../standalone/drakbackup_.c:3985
+#: ../../standalone/drakbackup_.c:4012 ../../standalone/drakbackup_.c:4039
+#: ../../standalone/drakbackup_.c:4099 ../../standalone/drakbackup_.c:4126
+#: ../../standalone/drakbackup_.c:4156 ../../standalone/drakbackup_.c:4182
+#: ../../standalone/drakconnect_.c:115 ../../standalone/drakconnect_.c:147
+#: ../../standalone/drakconnect_.c:289 ../../standalone/drakconnect_.c:537
+#: ../../standalone/drakconnect_.c:679 ../../standalone/drakfloppy_.c:234
+#: ../../standalone/drakfloppy_.c:383 ../../standalone/drakfont_.c:970
+#: ../../standalone/drakgw_.c:536 ../../standalone/logdrake_.c:224
+#: ../../standalone/logdrake_.c:526
msgid "Cancel"
msgstr "Ləğv et"
-#: ../../Xconfig/test.pm_.c:26
+#: ../../Xconfig/test.pm_.c:30
+msgid "Test of the configuration"
+msgstr "Qurğuların sınağı"
+
+#: ../../Xconfig/test.pm_.c:31
msgid "Do you want to test the configuration?"
msgstr "Qurğuları sınamaq istəyirsiniz?"
-#: ../../Xconfig/test.pm_.c:26
-msgid "Test of the configuration"
-msgstr "Qurğuların sınağı"
+#: ../../Xconfig/test.pm_.c:31
+#, fuzzy
+msgid "Warning: testing this graphic card may freeze your computer"
+msgstr "Diqqət: Bu qrafika kartı ilə ediləcək sınaq təhlĂŒkəlidir"
#: ../../Xconfig/various.pm_.c:29
#, c-format
@@ -462,26 +467,22 @@ msgstr "DOS/Wİndowsdan açıl (loadlin)"
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:158 ../../any.pm_.c:190
+#: ../../any.pm_.c:159 ../../any.pm_.c:190
msgid "Bootloader main options"
msgstr "Sistem yĂŒkləyicisi ana seçənəkləri"
-#: ../../any.pm_.c:159 ../../any.pm_.c:191
+#: ../../any.pm_.c:160 ../../any.pm_.c:191
msgid "Bootloader to use"
msgstr "Ä°stifadə ediləcək AçılÄ±ĆŸ idarəcisi"
-#: ../../any.pm_.c:161
+#: ../../any.pm_.c:162
msgid "Bootloader installation"
msgstr "AçılÄ±ĆŸ yĂŒkləyici quruluƟu"
-#: ../../any.pm_.c:163 ../../any.pm_.c:193
+#: ../../any.pm_.c:164 ../../any.pm_.c:193
msgid "Boot device"
msgstr "AçılÄ±ĆŸ avadanlığı"
-#: ../../any.pm_.c:164
-msgid "LBA (doesn't work on old BIOSes)"
-msgstr "LBA (köhnə BIOSlarda iƟləməz)"
-
#: ../../any.pm_.c:165
msgid "Compact"
msgstr "Bəsit"
@@ -498,16 +499,17 @@ msgstr "Ekran modu"
msgid "Delay before booting default image"
msgstr "AçılÄ±ĆŸda gecikmə mĂŒddəti"
-#: ../../any.pm_.c:170 ../../any.pm_.c:786
+#: ../../any.pm_.c:170 ../../any.pm_.c:788
#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1111 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:743 ../../printerdrake.pm_.c:858
-#: ../../standalone/drakconnect_.c:624 ../../standalone/drakconnect_.c:649
+#: ../../install_steps_interactive.pm_.c:1096 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:850 ../../printerdrake.pm_.c:965
+#: ../../standalone/drakbackup_.c:3528 ../../standalone/drakconnect_.c:624
+#: ../../standalone/drakconnect_.c:649
msgid "Password"
msgstr "Parol"
-#: ../../any.pm_.c:171 ../../any.pm_.c:787
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../any.pm_.c:171 ../../any.pm_.c:789
+#: ../../install_steps_interactive.pm_.c:1097
msgid "Password (again)"
msgstr "Parol (təkrar)"
@@ -542,14 +544,14 @@ msgid ""
msgstr ""
"``Əmr sətiri seçənəklərini məhdudlaƟdır`` seçənəyi parolsuz bir iƟə yaramaz"
-#: ../../any.pm_.c:184 ../../any.pm_.c:762
-#: ../../diskdrake/interactive.pm_.c:1180
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../any.pm_.c:184 ../../any.pm_.c:764
+#: ../../diskdrake/interactive.pm_.c:1191
+#: ../../install_steps_interactive.pm_.c:1091
msgid "Please try again"
msgstr "XahiƟ edirik təkrar sınayın"
-#: ../../any.pm_.c:184 ../../any.pm_.c:762
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../any.pm_.c:184 ../../any.pm_.c:764
+#: ../../install_steps_interactive.pm_.c:1091
msgid "The passwords do not match"
msgstr "Parollar uyğun gəlmir"
@@ -594,16 +596,16 @@ msgstr ""
"Buradakı bir birindən fərqli seçənəklərə yenilərini əlavə edə bilər,\n"
"ya da mövcud olanları dəyiƟdirə bilərsiniz."
-#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1483
-#: ../../standalone/drakbackup_.c:1596 ../../standalone/drakfont_.c:1011
+#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1558
+#: ../../standalone/drakbackup_.c:1671 ../../standalone/drakfont_.c:1011
#: ../../standalone/drakfont_.c:1054
msgid "Add"
msgstr "Əlavə et"
-#: ../../any.pm_.c:257 ../../any.pm_.c:774 ../../diskdrake/dav.pm_.c:60
+#: ../../any.pm_.c:257 ../../any.pm_.c:776 ../../diskdrake/dav.pm_.c:64
#: ../../diskdrake/hd_gtk.pm_.c:153 ../../diskdrake/removable.pm_.c:27
#: ../../diskdrake/smbnfs_gtk.pm_.c:88 ../../interactive/http.pm_.c:153
-#: ../../standalone/drakbackup_.c:2696
+#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2772
msgid "Done"
msgstr "Qurtardı"
@@ -615,7 +617,7 @@ msgstr "TəkmilləƟdir"
msgid "Which type of entry do you want to add?"
msgstr "Ne cĂŒr bir giriƟ istəyirsiniz?"
-#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1630
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1705
msgid "Linux"
msgstr "Linuks"
@@ -710,13 +712,13 @@ msgstr "BaƟqa var?"
msgid "Do you have any %s interfaces?"
msgstr "Heç %s ara ĂŒzĂŒ var?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:821 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:283
+#: ../../any.pm_.c:660 ../../any.pm_.c:823 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:286
msgid "No"
msgstr "Xeyr"
-#: ../../any.pm_.c:660 ../../any.pm_.c:820 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:283
+#: ../../any.pm_.c:660 ../../any.pm_.c:822 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:286
msgid "Yes"
msgstr "Bəli"
@@ -814,40 +816,48 @@ msgstr ""
msgid "access to administrative files"
msgstr ""
-#: ../../any.pm_.c:758
+#: ../../any.pm_.c:754
+msgid "access to network tools"
+msgstr ""
+
+#: ../../any.pm_.c:755
+msgid "access to compilation tools"
+msgstr ""
+
+#: ../../any.pm_.c:760
#, c-format
msgid "(already added %s)"
msgstr "(%s artıq əlavə edilmiƟdir)"
-#: ../../any.pm_.c:763
+#: ../../any.pm_.c:765
msgid "This password is too simple"
msgstr "Zəif parol seçdiniz!"
-#: ../../any.pm_.c:764
+#: ../../any.pm_.c:766
msgid "Please give a user name"
msgstr "XahiƟ edirik bir istifadəçi adı alın"
-#: ../../any.pm_.c:765
+#: ../../any.pm_.c:767
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
"Ä°stifadəçi adında sadacə kiçik hərflər, rəqəmlər, `-' və `_' xarakterləri "
"ola bilər"
-#: ../../any.pm_.c:766
+#: ../../any.pm_.c:768
#, fuzzy
msgid "The user name is too long"
msgstr "Bu istifadəçi adı artıq vardır"
-#: ../../any.pm_.c:767
+#: ../../any.pm_.c:769
msgid "This user name is already added"
msgstr "Bu istifadəçi adı artıq vardır"
-#: ../../any.pm_.c:771
+#: ../../any.pm_.c:773
msgid "Add user"
msgstr "İstifadəçini əlavə et"
-#: ../../any.pm_.c:772
+#: ../../any.pm_.c:774
#, c-format
msgid ""
"Enter a user\n"
@@ -856,32 +866,32 @@ msgstr ""
"Bir istifadəçi girin\n"
"%s"
-#: ../../any.pm_.c:773
+#: ../../any.pm_.c:775
msgid "Accept user"
msgstr "İstifadəçini qəbul et"
-#: ../../any.pm_.c:784
+#: ../../any.pm_.c:786
msgid "Real name"
msgstr "Həqiqi adı"
-#: ../../any.pm_.c:785 ../../printerdrake.pm_.c:742
-#: ../../printerdrake.pm_.c:857
+#: ../../any.pm_.c:787 ../../printerdrake.pm_.c:849
+#: ../../printerdrake.pm_.c:964
msgid "User name"
msgstr "Ä°stifadəçi adı"
-#: ../../any.pm_.c:788
+#: ../../any.pm_.c:790
msgid "Shell"
msgstr "Qabıq"
-#: ../../any.pm_.c:790
+#: ../../any.pm_.c:792
msgid "Icon"
msgstr "Timsal"
-#: ../../any.pm_.c:817
+#: ../../any.pm_.c:819
msgid "Autologin"
msgstr "Avtomatik GiriƟ"
-#: ../../any.pm_.c:818
+#: ../../any.pm_.c:820
#, fuzzy
msgid ""
"I can set up your computer to automatically log on one user.\n"
@@ -890,59 +900,59 @@ msgstr ""
"KompĂŒterinizi avtomatik olaraq bir istifadəçi ilə baƟlada bilərəm.\n"
"İstəmirsiniz isə rədd edin."
-#: ../../any.pm_.c:822
+#: ../../any.pm_.c:824
msgid "Choose the default user:"
msgstr "Əsas istifadəçini seçin:"
-#: ../../any.pm_.c:823
+#: ../../any.pm_.c:825
msgid "Choose the window manager to run:"
msgstr "İstifadə etmək istədiyiniz pəncərə idarəçisini seçin:"
-#: ../../any.pm_.c:838
+#: ../../any.pm_.c:840
#, fuzzy
msgid "Please choose a language to use."
msgstr "XahiƟ edirik istifadə ĂŒĂ§ĂŒn bir dil seçin."
-#: ../../any.pm_.c:840
+#: ../../any.pm_.c:842
msgid ""
"Mandrake Linux can support multiple languages. Select\n"
"the languages you would like to install. They will be available\n"
"when your installation is complete and you restart your system."
msgstr "Qurulumdan sonra istifadə edə biləcəyiniz baƟqa dillər seçə bilərsiniz"
-#: ../../any.pm_.c:854 ../../install_steps_interactive.pm_.c:708
+#: ../../any.pm_.c:856 ../../install_steps_interactive.pm_.c:692
#: ../../standalone/drakxtv_.c:73
msgid "All"
msgstr "Hamısı"
-#: ../../any.pm_.c:974
+#: ../../any.pm_.c:977
#, fuzzy
msgid "Allow all users"
msgstr "İstifadəçi əlavə et"
-#: ../../any.pm_.c:974
+#: ../../any.pm_.c:977
#, fuzzy
msgid "No sharing"
msgstr "CUPS baƟlayır"
-#: ../../any.pm_.c:984 ../../standalone.pm_.c:57
+#: ../../any.pm_.c:987 ../../install_any.pm_.c:1183 ../../standalone.pm_.c:58
#, fuzzy, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr ""
"Bu paket yenilənməlidir\n"
"Sistemdən çıxarmaq mövzusunda ciddisiniz?"
-#: ../../any.pm_.c:987
+#: ../../any.pm_.c:990
msgid ""
"You can export using NFS or Samba. Please select which you'd like to use."
msgstr ""
-#: ../../any.pm_.c:995 ../../standalone.pm_.c:61
+#: ../../any.pm_.c:998 ../../install_any.pm_.c:1188 ../../standalone.pm_.c:63
#, c-format
msgid "Mandatory package %s is missing"
msgstr ""
-#: ../../any.pm_.c:1001
+#: ../../any.pm_.c:1004
msgid ""
"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
@@ -951,42 +961,42 @@ msgid ""
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:1015
+#: ../../any.pm_.c:1018
msgid "Launch userdrake"
msgstr ""
-#: ../../any.pm_.c:1017
+#: ../../any.pm_.c:1020
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
msgstr ""
-#: ../../any.pm_.c:1068
+#: ../../any.pm_.c:1071
msgid "Welcome To Crackers"
msgstr "Krakerlərə xoƟgəlmiƟsiniz"
-#: ../../any.pm_.c:1069
+#: ../../any.pm_.c:1072
msgid "Poor"
msgstr "Zəif"
-#: ../../any.pm_.c:1070 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1073 ../../mouse.pm_.c:31
msgid "Standard"
msgstr "Standart"
-#: ../../any.pm_.c:1071
+#: ../../any.pm_.c:1074
msgid "High"
msgstr "YĂŒksək"
-#: ../../any.pm_.c:1072
+#: ../../any.pm_.c:1075
#, fuzzy
msgid "Higher"
msgstr "YĂŒksək"
-#: ../../any.pm_.c:1073
+#: ../../any.pm_.c:1076
msgid "Paranoid"
msgstr "ĆžĂŒbhəci"
-#: ../../any.pm_.c:1076
+#: ../../any.pm_.c:1079
msgid ""
"This level is to be used with care. It makes your system more easy to use,\n"
"but very sensitive: it must not be used for a machine connected to others\n"
@@ -997,7 +1007,7 @@ msgstr ""
"iƟlədiləcək, ancaq xətalara qarĆŸÄ± da həssaiyyəti də artacaqdır. Ä°nternetə \n"
"bağlı isəniz bunu tövsiyə etmirik. Parol ilə girilir."
-#: ../../any.pm_.c:1079
+#: ../../any.pm_.c:1082
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -1005,7 +1015,7 @@ msgstr ""
"Parollar fəallaƟdırıldı, yenə də bir Ɵəbəkə ĂŒstĂŒndə istifadə edilməməsi "
"tövsiyə edilir."
-#: ../../any.pm_.c:1080
+#: ../../any.pm_.c:1083
#, fuzzy
msgid ""
"This is the standard security recommended for a computer that will be used "
@@ -1014,13 +1024,13 @@ msgstr ""
"Ä°nternetə bağlı bir kompĂŒter ĂŒĂ§ĂŒn standart və tövsiyə edilən bir "
"təhlĂŒkəsizlik səviyyəsidir."
-#: ../../any.pm_.c:1081
+#: ../../any.pm_.c:1084
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr ""
-#: ../../any.pm_.c:1082
+#: ../../any.pm_.c:1085
#, fuzzy
msgid ""
"With this security level, the use of this system as a server becomes "
@@ -1035,7 +1045,7 @@ msgstr ""
"TəhlĂŒkəsizlik, birdən çox alıcının bağlanmasına icazə verəcək Ɵəkildə "
"artırılmÄ±ĆŸdır. "
-#: ../../any.pm_.c:1085
+#: ../../any.pm_.c:1088
#, fuzzy
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
@@ -1045,32 +1055,32 @@ msgstr ""
"tamamilə qapalıdır.\n"
"TəhlĂŒkəsizlik səviyyəsi indi ən ĂŒstdədir."
-#: ../../any.pm_.c:1091
+#: ../../any.pm_.c:1094
#, fuzzy
msgid "DrakSec Basic Options"
msgstr "Seçənəklər"
-#: ../../any.pm_.c:1092
+#: ../../any.pm_.c:1095
#, fuzzy
msgid "Please choose the desired security level"
msgstr "TəhlĂŒkəsizlik səviyyəsini seçin"
-#: ../../any.pm_.c:1095
+#: ../../any.pm_.c:1098
#, fuzzy
msgid "Security level"
msgstr "TəhlĂŒkəsizlik səviyyəsinin quraƟdırılması"
-#: ../../any.pm_.c:1097
+#: ../../any.pm_.c:1100
#, fuzzy
msgid "Use libsafe for servers"
msgstr "X verici ĂŒĂ§ĂŒn seçənəkləri göstərin"
-#: ../../any.pm_.c:1098
+#: ../../any.pm_.c:1101
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
-#: ../../any.pm_.c:1099
+#: ../../any.pm_.c:1102
msgid "Security Administrator (login or email)"
msgstr ""
@@ -1112,7 +1122,7 @@ msgstr ""
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:935
+#: ../../bootloader.pm_.c:932
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Emeliyyat sistemi secici GRUB'a xos gəlmissiniz!"
@@ -1126,7 +1136,7 @@ msgstr "Emeliyyat sistemi secici GRUB'a xos gəlmissiniz!"
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:938
+#: ../../bootloader.pm_.c:935
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "%c ve %c duymeleri ile isıqlandırılmıs girisleri sece bilersiniz"
@@ -1141,7 +1151,7 @@ msgstr "%c ve %c duymeleri ile isıqlandırılmıs girisleri sece bilersiniz"
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:941
+#: ../../bootloader.pm_.c:938
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Sistemi secili emeliyyat sistemiyle acmaq ucun entere,"
@@ -1155,7 +1165,7 @@ msgstr "Sistemi secili emeliyyat sistemiyle acmaq ucun entere,"
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:941
msgid "commands before booting, or 'c' for a command-line."
msgstr ""
"acilisdan evvel emrleri duzeltmək ucun 'e', emr setiri ucun ise 'c' basin"
@@ -1170,32 +1180,32 @@ msgstr ""
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:947
+#: ../../bootloader.pm_.c:944
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "Isaretli secenek %d saniye icinde sistemi acacaq."
-#: ../../bootloader.pm_.c:951
+#: ../../bootloader.pm_.c:948
msgid "not enough room in /boot"
msgstr "/boot içində lazımi yer yoxdur"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1051
+#: ../../bootloader.pm_.c:1048
msgid "Desktop"
msgstr "Masa ÜstĂŒ"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1053
+#: ../../bootloader.pm_.c:1050
msgid "Start Menu"
msgstr "BaƟlama Menyusu"
-#: ../../bootloader.pm_.c:1072
+#: ../../bootloader.pm_.c:1069
#, fuzzy, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "Sistem yĂŒkləyicisini haraya qurmaq istəyirsiniz?"
-#: ../../bootlook.pm_.c:45
+#: ../../bootlook.pm_.c:45 ../../standalone/draksplash_.c:25
msgid "no help implemented yet.\n"
msgstr "hələlik yardım sistemi mövcud deyildir.\n"
@@ -1203,8 +1213,8 @@ msgstr "hələlik yardım sistemi mövcud deyildir.\n"
msgid "Boot Style Configuration"
msgstr "Qurulum Tərzi QuraƟdırılması"
-#: ../../bootlook.pm_.c:78 ../../harddrake/ui.pm_.c:59
-#: ../../harddrake/ui.pm_.c:60 ../../standalone/drakfloppy_.c:81
+#: ../../bootlook.pm_.c:78 ../../harddrake/ui.pm_.c:62
+#: ../../harddrake/ui.pm_.c:63 ../../standalone/drakfloppy_.c:81
#: ../../standalone/logdrake_.c:101
msgid "/_File"
msgstr "/_Fayl"
@@ -1214,7 +1224,7 @@ msgstr "/_Fayl"
msgid "/File/_Quit"
msgstr "/Fayl/_Çıx"
-#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:60
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:63
#: ../../standalone/drakfloppy_.c:82 ../../standalone/logdrake_.c:107
msgid "<control>Q"
msgstr "<control>Q"
@@ -1256,94 +1266,101 @@ msgstr "Sistemi qur"
msgid "Display theme under console"
msgstr ""
-#: ../../bootlook.pm_.c:166
+#: ../../bootlook.pm_.c:145
+#, fuzzy
+msgid "Create new theme"
+msgstr "Yeni bölmə yarat"
+
+#: ../../bootlook.pm_.c:169
msgid "Can't create Bootsplash preview"
msgstr ""
-#: ../../bootlook.pm_.c:166 ../../bootlook.pm_.c:184 ../../bootlook.pm_.c:187
-#: ../../bootlook.pm_.c:190 ../../bootlook.pm_.c:220 ../../bootlook.pm_.c:222
-#: ../../bootlook.pm_.c:232 ../../bootlook.pm_.c:241 ../../bootlook.pm_.c:248
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:336
-#: ../../diskdrake/interactive.pm_.c:351 ../../diskdrake/interactive.pm_.c:464
-#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../bootlook.pm_.c:169 ../../bootlook.pm_.c:187 ../../bootlook.pm_.c:190
+#: ../../bootlook.pm_.c:193 ../../bootlook.pm_.c:223 ../../bootlook.pm_.c:225
+#: ../../bootlook.pm_.c:235 ../../bootlook.pm_.c:244 ../../bootlook.pm_.c:251
+#: ../../diskdrake/dav.pm_.c:73 ../../diskdrake/hd_gtk.pm_.c:116
+#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/interactive.pm_.c:355
+#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/interactive.pm_.c:474
+#: ../../diskdrake/smbnfs_gtk.pm_.c:45 ../../fsedit.pm_.c:239
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:365 ../../interactive/http.pm_.c:119
-#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:80
+#: ../../interactive/http.pm_.c:119 ../../interactive/http.pm_.c:120
+#: ../../standalone/draksplash_.c:32
msgid "Error"
msgstr "Xəta"
-#: ../../bootlook.pm_.c:183
+#: ../../bootlook.pm_.c:186
#, c-format
msgid "Backup %s to %s.old"
msgstr ""
-#: ../../bootlook.pm_.c:184
+#: ../../bootlook.pm_.c:187
msgid "unable to backup lilo message"
msgstr ""
-#: ../../bootlook.pm_.c:186
+#: ../../bootlook.pm_.c:189
#, c-format
msgid "Copy %s to %s"
msgstr ""
-#: ../../bootlook.pm_.c:187
+#: ../../bootlook.pm_.c:190
msgid "can't change lilo message"
msgstr ""
-#: ../../bootlook.pm_.c:190
+#: ../../bootlook.pm_.c:193
msgid "Lilo message not found"
msgstr ""
-#: ../../bootlook.pm_.c:220
+#: ../../bootlook.pm_.c:223
msgid "Can't write /etc/sysconfig/bootsplash."
msgstr ""
-#: ../../bootlook.pm_.c:220
+#: ../../bootlook.pm_.c:223
#, fuzzy, c-format
msgid "Write %s"
msgstr "XFree %s"
-#: ../../bootlook.pm_.c:222
+#: ../../bootlook.pm_.c:225
msgid ""
"Can't write /etc/sysconfig/bootsplash\n"
"File not found."
msgstr ""
-#: ../../bootlook.pm_.c:233
+#: ../../bootlook.pm_.c:236
#, c-format
msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
msgstr ""
-#: ../../bootlook.pm_.c:236
+#: ../../bootlook.pm_.c:239
#, c-format
-msgid "Make initrd 'mkinird -f /boot/initrd-%s.img %s'."
+msgid "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
msgstr ""
-#: ../../bootlook.pm_.c:242
+#: ../../bootlook.pm_.c:245
msgid ""
"Can't relaunch LiLo!\n"
"Launch \"lilo\" as root in command line to complete LiLo theme installation."
msgstr ""
-#: ../../bootlook.pm_.c:246
+#: ../../bootlook.pm_.c:249
msgid "Relaunch 'lilo'"
msgstr ""
-#: ../../bootlook.pm_.c:248
+#: ../../bootlook.pm_.c:251 ../../standalone/draksplash_.c:161
+#: ../../standalone/draksplash_.c:330 ../../standalone/draksplash_.c:454
#, fuzzy
msgid "Notice"
msgstr "NoVÄ°deo"
-#: ../../bootlook.pm_.c:249
+#: ../../bootlook.pm_.c:252
msgid "LiLo and Bootsplash themes installation successfull"
msgstr ""
-#: ../../bootlook.pm_.c:249
+#: ../../bootlook.pm_.c:252
#, fuzzy
msgid "Theme installation failed!"
msgstr "QuruluƟ sinifini seçin"
-#: ../../bootlook.pm_.c:258
+#: ../../bootlook.pm_.c:261
#, c-format
msgid ""
"You are currently using %s as your boot manager.\n"
@@ -1352,23 +1369,22 @@ msgstr ""
"AçılÄ±ĆŸ Ä°darəçisi olaraq hazırda %s iƟlədirsiniz.\n"
"QuraƟdırma sehirbazını baƟlatmaq ĂŒĂ§ĂŒn tıqlayın."
-#: ../../bootlook.pm_.c:260 ../../standalone/drakbackup_.c:2352
-#: ../../standalone/drakbackup_.c:2362 ../../standalone/drakbackup_.c:2372
-#: ../../standalone/drakbackup_.c:2380 ../../standalone/drakgw_.c:592
-#: ../../standalone/tinyfirewall_.c:58
+#: ../../bootlook.pm_.c:263 ../../standalone/drakbackup_.c:2427
+#: ../../standalone/drakbackup_.c:2437 ../../standalone/drakbackup_.c:2447
+#: ../../standalone/drakbackup_.c:2455 ../../standalone/drakgw_.c:530
msgid "Configure"
msgstr "Qur"
-#: ../../bootlook.pm_.c:267
+#: ../../bootlook.pm_.c:270
#, fuzzy
msgid "Splash selection"
msgstr "Paket seçkilərini saxla"
-#: ../../bootlook.pm_.c:270
+#: ../../bootlook.pm_.c:273
msgid "Themes"
msgstr ""
-#: ../../bootlook.pm_.c:272
+#: ../../bootlook.pm_.c:275
msgid ""
"\n"
"Select a theme for\n"
@@ -1377,45 +1393,45 @@ msgid ""
"them separatly"
msgstr ""
-#: ../../bootlook.pm_.c:275
+#: ../../bootlook.pm_.c:278
msgid "Lilo screen"
msgstr ""
-#: ../../bootlook.pm_.c:279
+#: ../../bootlook.pm_.c:283
msgid "Bootsplash"
msgstr ""
-#: ../../bootlook.pm_.c:314
+#: ../../bootlook.pm_.c:318
msgid "System mode"
msgstr "Sistem modu"
-#: ../../bootlook.pm_.c:316
+#: ../../bootlook.pm_.c:320
msgid "Launch the graphical environment when your system starts"
msgstr "AçılÄ±ĆŸda X-Window sistemini baƟlat"
-#: ../../bootlook.pm_.c:321
+#: ../../bootlook.pm_.c:325
msgid "No, I don't want autologin"
msgstr "Xeyr, Avtomatik giriƟ istəmirəm"
-#: ../../bootlook.pm_.c:323
+#: ../../bootlook.pm_.c:327
msgid "Yes, I want autologin with this (user, desktop)"
msgstr ""
"Bəli, bu istifadəçi ĂŒĂ§ĂŒn avtomatik giriƟ istəyirəm (istifadəçi, masa ĂŒstĂŒ)"
-#: ../../bootlook.pm_.c:333 ../../network/netconnect.pm_.c:101
+#: ../../bootlook.pm_.c:337 ../../network/netconnect.pm_.c:101
#: ../../standalone/drakTermServ_.c:173 ../../standalone/drakTermServ_.c:300
-#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:3513
-#: ../../standalone/drakbackup_.c:4290 ../../standalone/drakconnect_.c:108
+#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4191
+#: ../../standalone/drakbackup_.c:4952 ../../standalone/drakconnect_.c:108
#: ../../standalone/drakconnect_.c:140 ../../standalone/drakconnect_.c:296
#: ../../standalone/drakconnect_.c:435 ../../standalone/drakconnect_.c:521
#: ../../standalone/drakconnect_.c:564 ../../standalone/drakconnect_.c:667
#: ../../standalone/drakfloppy_.c:376 ../../standalone/drakfont_.c:612
#: ../../standalone/drakfont_.c:799 ../../standalone/drakfont_.c:876
-#: ../../standalone/drakfont_.c:963 ../../standalone/logdrake_.c:521
+#: ../../standalone/drakfont_.c:963 ../../standalone/logdrake_.c:519
msgid "OK"
msgstr "Oldu"
-#: ../../bootlook.pm_.c:403
+#: ../../bootlook.pm_.c:407
#, c-format
msgid "can not open /etc/inittab for reading: %s"
msgstr "/etc/inittab oxunmaq ĂŒĂ§ĂŒn açıla bilmir: %s"
@@ -1521,48 +1537,53 @@ msgstr "serial"
msgid "United States"
msgstr ""
-#: ../../detect_devices.pm_.c:599 ../../detect_devices.pm_.c:641
-#: ../../detect_devices.pm_.c:803
-msgid "Unknown Model"
-msgstr ""
-
#: ../../diskdrake/dav.pm_.c:23
#, fuzzy
msgid "New"
msgstr "yeni"
-#: ../../diskdrake/dav.pm_.c:57
+#: ../../diskdrake/dav.pm_.c:59 ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/smbnfs_gtk.pm_.c:81
+msgid "Unmount"
+msgstr "Ayır"
+
+#: ../../diskdrake/dav.pm_.c:60 ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/smbnfs_gtk.pm_.c:82
+msgid "Mount"
+msgstr "Bağla"
+
+#: ../../diskdrake/dav.pm_.c:61
msgid "Server"
msgstr "Verici"
-#: ../../diskdrake/dav.pm_.c:58 ../../diskdrake/interactive.pm_.c:375
-#: ../../diskdrake/interactive.pm_.c:558 ../../diskdrake/interactive.pm_.c:585
+#: ../../diskdrake/dav.pm_.c:62 ../../diskdrake/interactive.pm_.c:379
+#: ../../diskdrake/interactive.pm_.c:568 ../../diskdrake/interactive.pm_.c:595
#: ../../diskdrake/removable.pm_.c:24 ../../diskdrake/removable_gtk.pm_.c:15
#: ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr "Bağlama nöqtəsi"
-#: ../../diskdrake/dav.pm_.c:68
+#: ../../diskdrake/dav.pm_.c:81
#, fuzzy
msgid "Please enter the WebDAV server URL"
msgstr "XahiƟ edirik siçanınızı seçin"
-#: ../../diskdrake/dav.pm_.c:71
+#: ../../diskdrake/dav.pm_.c:84
msgid "The URL must begin with http:// or https://"
msgstr ""
-#: ../../diskdrake/dav.pm_.c:92
+#: ../../diskdrake/dav.pm_.c:105
#, fuzzy
msgid "Server: "
msgstr "Verici"
-#: ../../diskdrake/dav.pm_.c:93 ../../diskdrake/interactive.pm_.c:435
-#: ../../diskdrake/interactive.pm_.c:1079
-#: ../../diskdrake/interactive.pm_.c:1153
+#: ../../diskdrake/dav.pm_.c:106 ../../diskdrake/interactive.pm_.c:440
+#: ../../diskdrake/interactive.pm_.c:1089
+#: ../../diskdrake/interactive.pm_.c:1164
msgid "Mount point: "
msgstr "Bağlama nöqtəsi: "
-#: ../../diskdrake/dav.pm_.c:94 ../../diskdrake/interactive.pm_.c:1159
+#: ../../diskdrake/dav.pm_.c:107 ../../diskdrake/interactive.pm_.c:1170
#, c-format
msgid "Options: %s"
msgstr "Seçənəklər: %s"
@@ -1571,8 +1592,9 @@ msgstr "Seçənəklər: %s"
msgid "Please make a backup of your data first"
msgstr "Əvvəlcə datanızın yedəyini alın"
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:924
-#: ../../diskdrake/interactive.pm_.c:933 ../../diskdrake/interactive.pm_.c:999
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:934
+#: ../../diskdrake/interactive.pm_.c:943
+#: ../../diskdrake/interactive.pm_.c:1009
msgid "Read carefully!"
msgstr "Diqqətlə Oxuyun!"
@@ -1611,10 +1633,15 @@ msgid "Please click on a partition"
msgstr "XahiƟ edirik bir bölmə ĂŒstĂŒnə tıqlayın"
#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
-#: ../../install_steps_gtk.pm_.c:471
+#: ../../install_steps_gtk.pm_.c:465
msgid "Details"
msgstr "Ətraflı"
+#: ../../diskdrake/hd_gtk.pm_.c:252
+#, fuzzy
+msgid "No hard drives found"
+msgstr "Yerli Çap Edici"
+
#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Ext2"
msgstr "Ext2"
@@ -1640,13 +1667,13 @@ msgstr "SunOS"
msgid "Swap"
msgstr "Swap"
-#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1105
msgid "Empty"
msgstr "BoƟ"
-#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:331
-#: ../../install_steps_gtk.pm_.c:389 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1679
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:325
+#: ../../install_steps_gtk.pm_.c:383 ../../mouse.pm_.c:165
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1754
msgid "Other"
msgstr "Digər"
@@ -1654,12 +1681,12 @@ msgstr "Digər"
msgid "Filesystem types:"
msgstr "Fayl sistemi növĂŒ:"
-#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:397
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:402
msgid "Create"
msgstr "Yarat"
-#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:376
-#: ../../diskdrake/interactive.pm_.c:521 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:380
+#: ../../diskdrake/interactive.pm_.c:531 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "Növ"
@@ -1669,7 +1696,7 @@ msgstr "Növ"
msgid "Use ``%s'' instead"
msgstr "Yerinə ``%s'' iƟlət"
-#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:389
msgid "Delete"
msgstr "Sil"
@@ -1677,7 +1704,7 @@ msgstr "Sil"
msgid "Use ``Unmount'' first"
msgstr "Əvvəlcə ``Ayır'-ı iƟlət"
-#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:513
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:518
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
@@ -1685,111 +1712,111 @@ msgstr ""
"%s bölməsinin növĂŒnĂŒ dəyiƟdirdikdən sonra, bu bölmədəki bĂŒtĂŒn mə'lumatlar "
"silinəcəkdir"
-#: ../../diskdrake/interactive.pm_.c:173
+#: ../../diskdrake/interactive.pm_.c:174
#, fuzzy
msgid "Choose a partition"
msgstr "Monitorunuzu seçin"
-#: ../../diskdrake/interactive.pm_.c:173
+#: ../../diskdrake/interactive.pm_.c:174
#, fuzzy
msgid "Choose another partition"
msgstr "Yeni bölmə yarat"
-#: ../../diskdrake/interactive.pm_.c:198
+#: ../../diskdrake/interactive.pm_.c:199
#, fuzzy
msgid "Exit"
msgstr "Ext2"
-#: ../../diskdrake/interactive.pm_.c:220
+#: ../../diskdrake/interactive.pm_.c:221
msgid "Toggle to expert mode"
msgstr "Usta moduna keç"
-#: ../../diskdrake/interactive.pm_.c:220
+#: ../../diskdrake/interactive.pm_.c:221
msgid "Toggle to normal mode"
msgstr "Normal moda keç"
-#: ../../diskdrake/interactive.pm_.c:220
+#: ../../diskdrake/interactive.pm_.c:221
msgid "Undo"
msgstr "Geri al"
-#: ../../diskdrake/interactive.pm_.c:239
+#: ../../diskdrake/interactive.pm_.c:240
msgid "Continue anyway?"
msgstr "Davam edilsin?"
-#: ../../diskdrake/interactive.pm_.c:244
+#: ../../diskdrake/interactive.pm_.c:245
msgid "Quit without saving"
msgstr "Qeyd etmədən Çıx"
-#: ../../diskdrake/interactive.pm_.c:244
+#: ../../diskdrake/interactive.pm_.c:245
msgid "Quit without writing the partition table?"
msgstr "Bölmə cədvəlini qeyd etmədən çıxırsınız?"
-#: ../../diskdrake/interactive.pm_.c:249
+#: ../../diskdrake/interactive.pm_.c:250
#, fuzzy
msgid "Do you want to save /etc/fstab modifications"
msgstr "Qurğuları sınamaq istəyirsiniz?"
-#: ../../diskdrake/interactive.pm_.c:261
+#: ../../diskdrake/interactive.pm_.c:263
msgid "Auto allocate"
msgstr "Avtomatik ayır"
-#: ../../diskdrake/interactive.pm_.c:261
+#: ../../diskdrake/interactive.pm_.c:263
msgid "Clear all"
msgstr "Hamısını təmizlə"
-#: ../../diskdrake/interactive.pm_.c:261
+#: ../../diskdrake/interactive.pm_.c:263
#: ../../install_steps_interactive.pm_.c:214
msgid "More"
msgstr "Daha Çox"
-#: ../../diskdrake/interactive.pm_.c:264
+#: ../../diskdrake/interactive.pm_.c:267
#, fuzzy
msgid "Hard drive information"
msgstr "Sabit disk seçkisi"
-#: ../../diskdrake/interactive.pm_.c:294
+#: ../../diskdrake/interactive.pm_.c:298
msgid "All primary partitions are used"
msgstr "BĂŒtĂŒn birinci bölmələr istifadədədir"
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:299
msgid "I can't add any more partition"
msgstr "Artıq bölmə əlavə edilə bilməz"
-#: ../../diskdrake/interactive.pm_.c:296
+#: ../../diskdrake/interactive.pm_.c:300
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
msgstr "Artıq bölmə yaratmaq ĂŒĂ§ĂŒn, bir bölməni silib məntiqi bölmə yaradın"
-#: ../../diskdrake/interactive.pm_.c:306
+#: ../../diskdrake/interactive.pm_.c:310
#, fuzzy
msgid "Save partition table"
msgstr "Bölmə cədvəlini yaz"
-#: ../../diskdrake/interactive.pm_.c:307
+#: ../../diskdrake/interactive.pm_.c:311
#, fuzzy
msgid "Restore partition table"
msgstr "Bölmə cədvəlini qurtar"
-#: ../../diskdrake/interactive.pm_.c:308
+#: ../../diskdrake/interactive.pm_.c:312
msgid "Rescue partition table"
msgstr "Bölmə cədvəlini qurtar"
-#: ../../diskdrake/interactive.pm_.c:310
+#: ../../diskdrake/interactive.pm_.c:314
#, fuzzy
msgid "Reload partition table"
msgstr "Bölmə cədvəlini qurtar"
-#: ../../diskdrake/interactive.pm_.c:315
+#: ../../diskdrake/interactive.pm_.c:319
#, fuzzy
msgid "Removable media automounting"
msgstr "Taxılıb sökĂŒlə bilən avadanlıqların avtomatik bağlanması"
-#: ../../diskdrake/interactive.pm_.c:324 ../../diskdrake/interactive.pm_.c:344
+#: ../../diskdrake/interactive.pm_.c:328 ../../diskdrake/interactive.pm_.c:348
msgid "Select file"
msgstr "Fayl seç"
-#: ../../diskdrake/interactive.pm_.c:331
+#: ../../diskdrake/interactive.pm_.c:335
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1797,11 +1824,11 @@ msgstr ""
"Yedək bölmə cədvəli eyni böyĂŒklĂŒyə sahib deyil\n"
"Davam etmək istəyirsiniz?"
-#: ../../diskdrake/interactive.pm_.c:345
+#: ../../diskdrake/interactive.pm_.c:349
msgid "Warning"
msgstr "Xəbərdarlıq"
-#: ../../diskdrake/interactive.pm_.c:346
+#: ../../diskdrake/interactive.pm_.c:350
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1809,114 +1836,106 @@ msgstr ""
"Disket sĂŒrĂŒcĂŒyə bir disket yerləƟdirin\n"
"Bu disketdəki bĂŒtĂŒn mə'lumatlar yox olacaqdır"
-#: ../../diskdrake/interactive.pm_.c:357
+#: ../../diskdrake/interactive.pm_.c:361
msgid "Trying to rescue partition table"
msgstr "Bölmə cədvəli qurtarılmağa cəhd edilir"
-#: ../../diskdrake/interactive.pm_.c:363
+#: ../../diskdrake/interactive.pm_.c:367
#, fuzzy
msgid "Detailed information"
msgstr "Mə'lumatı göstər"
-#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:652
+#: ../../diskdrake/interactive.pm_.c:382 ../../diskdrake/interactive.pm_.c:662
msgid "Resize"
msgstr "BöyĂŒklĂŒyĂŒnĂŒ DəyiƟdir"
-#: ../../diskdrake/interactive.pm_.c:379 ../../diskdrake/interactive.pm_.c:705
+#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/interactive.pm_.c:715
msgid "Move"
msgstr "DaĆŸÄ±"
-#: ../../diskdrake/interactive.pm_.c:380
+#: ../../diskdrake/interactive.pm_.c:384
msgid "Format"
msgstr "ƞəkilləndir"
-#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/smbnfs_gtk.pm_.c:82
-msgid "Mount"
-msgstr "Bağla"
-
-#: ../../diskdrake/interactive.pm_.c:382
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Add to RAID"
msgstr "RAIDə əlavə et"
-#: ../../diskdrake/interactive.pm_.c:383
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Add to LVM"
msgstr "LVMə əlavə et"
-#: ../../diskdrake/interactive.pm_.c:384 ../../diskdrake/smbnfs_gtk.pm_.c:81
-msgid "Unmount"
-msgstr "Ayır"
-
-#: ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/interactive.pm_.c:390
msgid "Remove from RAID"
msgstr "RAIDdən ayır"
-#: ../../diskdrake/interactive.pm_.c:387
+#: ../../diskdrake/interactive.pm_.c:391
msgid "Remove from LVM"
msgstr "LVMdən ayır"
-#: ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/interactive.pm_.c:392
msgid "Modify RAID"
msgstr "RAIDi dəyiƟdir"
-#: ../../diskdrake/interactive.pm_.c:389
+#: ../../diskdrake/interactive.pm_.c:393
msgid "Use for loopback"
msgstr "Loopback ĂŒĂ§ĂŒn istifadə et"
-#: ../../diskdrake/interactive.pm_.c:428
+#: ../../diskdrake/interactive.pm_.c:433
msgid "Create a new partition"
msgstr "Yeni bölmə yarat"
-#: ../../diskdrake/interactive.pm_.c:431
+#: ../../diskdrake/interactive.pm_.c:436
msgid "Start sector: "
msgstr "BaƟlanÄŸÄ±Ă§ sektoru: "
-#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:805
+#: ../../diskdrake/interactive.pm_.c:438 ../../diskdrake/interactive.pm_.c:815
msgid "Size in MB: "
msgstr "MB cinsindən böyĂŒklĂŒk: "
-#: ../../diskdrake/interactive.pm_.c:434 ../../diskdrake/interactive.pm_.c:806
+#: ../../diskdrake/interactive.pm_.c:439 ../../diskdrake/interactive.pm_.c:816
msgid "Filesystem type: "
msgstr "Fayl sistemi növĂŒ: "
-#: ../../diskdrake/interactive.pm_.c:439
+#: ../../diskdrake/interactive.pm_.c:444
msgid "Preference: "
msgstr "XĂŒsusiyyətlər: "
-#: ../../diskdrake/interactive.pm_.c:464
+#: ../../diskdrake/interactive.pm_.c:469
msgid ""
"You can't create a new partition\n"
"(since you reached the maximal number of primary partitions).\n"
"First remove a primary partition and create an extended partition."
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:494
+#: ../../diskdrake/interactive.pm_.c:499
#, fuzzy
msgid "Remove the loopback file?"
msgstr "Loopback faylı Ɵəkilləndirilir: %s"
-#: ../../diskdrake/interactive.pm_.c:519
+#: ../../diskdrake/interactive.pm_.c:529
msgid "Change partition type"
msgstr "Bölmə növĂŒnĂŒ DəyiƟdir"
-#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:530 ../../diskdrake/removable.pm_.c:48
msgid "Which filesystem do you want?"
msgstr "Hansı dili istəyirsiniz?"
-#: ../../diskdrake/interactive.pm_.c:526
+#: ../../diskdrake/interactive.pm_.c:536
msgid "Switching from ext2 to ext3"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:556
+#: ../../diskdrake/interactive.pm_.c:566
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "%s loopback avadanlığını haraya bağlamaq istəyirsiniz?"
-#: ../../diskdrake/interactive.pm_.c:557
+#: ../../diskdrake/interactive.pm_.c:567
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "%s avadanlığını haraya bağlamaq istəyirsiniz?"
-#: ../../diskdrake/interactive.pm_.c:563
+#: ../../diskdrake/interactive.pm_.c:573
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1925,144 +1944,144 @@ msgstr ""
"nöqtəsindən ayrıla bilinmir.\n"
"Əvvəlcə loopback-ı ləğv edin."
-#: ../../diskdrake/interactive.pm_.c:584
+#: ../../diskdrake/interactive.pm_.c:594
#, fuzzy, c-format
msgid "Where do you want to mount %s?"
msgstr "%s avadanlığını haraya bağlamaq istəyirsiniz?"
-#: ../../diskdrake/interactive.pm_.c:608
+#: ../../diskdrake/interactive.pm_.c:618
msgid "Computing FAT filesystem bounds"
msgstr "Fat fayl sistemi ucları hesaplanır"
-#: ../../diskdrake/interactive.pm_.c:608 ../../diskdrake/interactive.pm_.c:667
-#: ../../install_interactive.pm_.c:131
+#: ../../diskdrake/interactive.pm_.c:618 ../../diskdrake/interactive.pm_.c:677
+#: ../../install_interactive.pm_.c:133
msgid "Resizing"
msgstr "BöyĂŒklĂŒyĂŒ dəyiƟdirilir"
-#: ../../diskdrake/interactive.pm_.c:640
+#: ../../diskdrake/interactive.pm_.c:650
msgid "This partition is not resizeable"
msgstr "Hansı bölmə növĂŒnĂŒ istəyirsiniz?"
-#: ../../diskdrake/interactive.pm_.c:645
+#: ../../diskdrake/interactive.pm_.c:655
msgid "All data on this partition should be backed-up"
msgstr "Bu bölmədəki bĂŒtĂŒn mə'lumatlar yedəklənməlidir"
-#: ../../diskdrake/interactive.pm_.c:647
+#: ../../diskdrake/interactive.pm_.c:657
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr ""
"%s bölməsi böyĂŒklĂŒyĂŒ dəyiƟdirildirkdən sonra bu bölmədəki bĂŒtĂŒn mə'lumatlar "
"silinəcəkdir"
-#: ../../diskdrake/interactive.pm_.c:652
+#: ../../diskdrake/interactive.pm_.c:662
msgid "Choose the new size"
msgstr "Yeni böyĂŒklĂŒk seçin"
-#: ../../diskdrake/interactive.pm_.c:653
+#: ../../diskdrake/interactive.pm_.c:663
#, fuzzy
msgid "New size in MB: "
msgstr "MB cinsindən böyĂŒklĂŒk: "
-#: ../../diskdrake/interactive.pm_.c:706
+#: ../../diskdrake/interactive.pm_.c:716
msgid "Which disk do you want to move it to?"
msgstr "Hansı diskə daĆŸÄ±maq istəyirsiniz?"
-#: ../../diskdrake/interactive.pm_.c:707
+#: ../../diskdrake/interactive.pm_.c:717
msgid "Sector"
msgstr "Sektor"
-#: ../../diskdrake/interactive.pm_.c:708
+#: ../../diskdrake/interactive.pm_.c:718
msgid "Which sector do you want to move it to?"
msgstr "Hansı sektora daĆŸÄ±maq istəyirsiniz?"
-#: ../../diskdrake/interactive.pm_.c:711
+#: ../../diskdrake/interactive.pm_.c:721
msgid "Moving"
msgstr "DaĆŸÄ±nır"
-#: ../../diskdrake/interactive.pm_.c:711
+#: ../../diskdrake/interactive.pm_.c:721
msgid "Moving partition..."
msgstr "Bölmə daĆŸÄ±nır..."
-#: ../../diskdrake/interactive.pm_.c:728
+#: ../../diskdrake/interactive.pm_.c:738
msgid "Choose an existing RAID to add to"
msgstr "Əlavə etmək ĂŒĂ§ĂŒn mövcud bir RAID seçin"
-#: ../../diskdrake/interactive.pm_.c:729 ../../diskdrake/interactive.pm_.c:746
+#: ../../diskdrake/interactive.pm_.c:739 ../../diskdrake/interactive.pm_.c:756
msgid "new"
msgstr "yeni"
-#: ../../diskdrake/interactive.pm_.c:744
+#: ../../diskdrake/interactive.pm_.c:754
msgid "Choose an existing LVM to add to"
msgstr "Əlavə etmək ĂŒĂ§ĂŒn mövcud bir LVM seçin"
-#: ../../diskdrake/interactive.pm_.c:749
+#: ../../diskdrake/interactive.pm_.c:759
msgid "LVM name?"
msgstr "LVM adı?"
-#: ../../diskdrake/interactive.pm_.c:790
+#: ../../diskdrake/interactive.pm_.c:800
msgid "This partition can't be used for loopback"
msgstr "Bu disk bölməsi loopback ĂŒĂ§ĂŒn iƟlədilməz"
-#: ../../diskdrake/interactive.pm_.c:803
+#: ../../diskdrake/interactive.pm_.c:813
msgid "Loopback"
msgstr "Loopback"
-#: ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:814
msgid "Loopback file name: "
msgstr "Loopback fayl adı: "
-#: ../../diskdrake/interactive.pm_.c:809
+#: ../../diskdrake/interactive.pm_.c:819
#, fuzzy
msgid "Give a file name"
msgstr "Həqiqi adı"
-#: ../../diskdrake/interactive.pm_.c:812
+#: ../../diskdrake/interactive.pm_.c:822
msgid "File already used by another loopback, choose another one"
msgstr ""
"Fayl baƟqa bir loopback tərəfindən istifadədədir, baƟqa\n"
"birini seçin"
-#: ../../diskdrake/interactive.pm_.c:813
+#: ../../diskdrake/interactive.pm_.c:823
msgid "File already exists. Use it?"
msgstr "Fayl onsuz da vardır. İƟlədilsin?"
-#: ../../diskdrake/interactive.pm_.c:836
+#: ../../diskdrake/interactive.pm_.c:846
#, fuzzy
msgid "Mount options"
msgstr "Modul seçənəkləri:"
-#: ../../diskdrake/interactive.pm_.c:843
+#: ../../diskdrake/interactive.pm_.c:853
msgid "Various"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:907 ../../standalone/drakfloppy_.c:103
+#: ../../diskdrake/interactive.pm_.c:917 ../../standalone/drakfloppy_.c:103
msgid "device"
msgstr "avadanlıq"
-#: ../../diskdrake/interactive.pm_.c:908
+#: ../../diskdrake/interactive.pm_.c:918
msgid "level"
msgstr "səviyyə"
-#: ../../diskdrake/interactive.pm_.c:909
+#: ../../diskdrake/interactive.pm_.c:919
msgid "chunk size"
msgstr "parça böyĂŒklĂŒyĂŒ"
-#: ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:934
msgid "Be careful: this operation is dangerous."
msgstr "Diqqətlı olun: bu əməliyyat təhlĂŒkəlidir."
-#: ../../diskdrake/interactive.pm_.c:939
+#: ../../diskdrake/interactive.pm_.c:949
msgid "What type of partitioning?"
msgstr "Nəcə bölməlandirmə istəyirsən?"
-#: ../../diskdrake/interactive.pm_.c:955
+#: ../../diskdrake/interactive.pm_.c:965
#, fuzzy, c-format
msgid "The package %s is needed. Install it?"
msgstr ""
"Bu paket yenilənməlidir\n"
"Sistemdən çıxarmaq mövzusunda ciddisiniz?"
-#: ../../diskdrake/interactive.pm_.c:969
+#: ../../diskdrake/interactive.pm_.c:979
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -2074,7 +2093,7 @@ msgstr ""
"ehtiyacınız yoxdur və ya LILO istifadəsini sınayarsınız, ancaq LILO iƟləməyə "
"bilər."
-#: ../../diskdrake/interactive.pm_.c:973
+#: ../../diskdrake/interactive.pm_.c:983
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -2086,7 +2105,7 @@ msgstr ""
"istəyirsinizsə, \n"
"/boot bölməsini əlavə edərkən çox diqqətli olmalısınız."
-#: ../../diskdrake/interactive.pm_.c:979
+#: ../../diskdrake/interactive.pm_.c:989
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
@@ -2097,132 +2116,132 @@ msgstr ""
"Əgər lilo ya da grub istifadə etmək istəyirsinizsə, bir /boot bölməsi\n"
"əlavə etməyi unutmayın"
-#: ../../diskdrake/interactive.pm_.c:999
+#: ../../diskdrake/interactive.pm_.c:1009
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "%s sĂŒrĂŒcĂŒsĂŒnĂŒn bölmə cədvəli diskə yazılacaq!"
-#: ../../diskdrake/interactive.pm_.c:1003
+#: ../../diskdrake/interactive.pm_.c:1013
msgid "You'll need to reboot before the modification can take place"
msgstr "Yeni qurğuların fəallaƟmağı ĂŒĂ§ĂŒn sistemi yenidən baƟlatmalısınız"
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1024
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr ""
"%s bölməsi Ɵəkilləndirildikdən sonra bu bölmədəki bĂŒtĂŒn mə'lumatlar "
"silinəcəkdir"
-#: ../../diskdrake/interactive.pm_.c:1016
+#: ../../diskdrake/interactive.pm_.c:1026
msgid "Formatting"
msgstr "ƞəkilləndirilir"
-#: ../../diskdrake/interactive.pm_.c:1017
+#: ../../diskdrake/interactive.pm_.c:1027
#, c-format
msgid "Formatting loopback file %s"
msgstr "Loopback faylı Ɵəkilləndirilir: %s"
-#: ../../diskdrake/interactive.pm_.c:1018
-#: ../../install_steps_interactive.pm_.c:476
+#: ../../diskdrake/interactive.pm_.c:1028
+#: ../../install_steps_interactive.pm_.c:459
#, c-format
msgid "Formatting partition %s"
msgstr "ƞəkilləndirilən bölmə: %s"
-#: ../../diskdrake/interactive.pm_.c:1029
+#: ../../diskdrake/interactive.pm_.c:1039
#, fuzzy
msgid "Hide files"
msgstr "mkraid iflas etdi"
-#: ../../diskdrake/interactive.pm_.c:1029
+#: ../../diskdrake/interactive.pm_.c:1039
#, fuzzy
msgid "Move files to the new partition"
msgstr "Yeni bölmələr ĂŒĂ§ĂŒn boƟ sahə yoxdur"
-#: ../../diskdrake/interactive.pm_.c:1030
+#: ../../diskdrake/interactive.pm_.c:1040
#, c-format
msgid ""
"Directory %s already contains data\n"
"(%s)"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1041
+#: ../../diskdrake/interactive.pm_.c:1051
#, fuzzy
msgid "Moving files to the new partition"
msgstr "Yeni bölmələr ĂŒĂ§ĂŒn boƟ sahə yoxdur"
-#: ../../diskdrake/interactive.pm_.c:1045
+#: ../../diskdrake/interactive.pm_.c:1055
#, c-format
msgid "Copying %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1049
+#: ../../diskdrake/interactive.pm_.c:1059
#, fuzzy, c-format
msgid "Removing %s"
msgstr "Rezolyusiya: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1059
+#: ../../diskdrake/interactive.pm_.c:1069
#, c-format
msgid "partition %s is now known as %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1080
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1090
+#: ../../diskdrake/interactive.pm_.c:1149
msgid "Device: "
msgstr "Avadanlıq: "
-#: ../../diskdrake/interactive.pm_.c:1081
+#: ../../diskdrake/interactive.pm_.c:1091
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "DOS sĂŒrĂŒcĂŒ hərfi: %s (sadəcə təxmini)\n"
-#: ../../diskdrake/interactive.pm_.c:1085
-#: ../../diskdrake/interactive.pm_.c:1093
-#: ../../diskdrake/interactive.pm_.c:1157
+#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1103
+#: ../../diskdrake/interactive.pm_.c:1168
msgid "Type: "
msgstr "Növ: "
-#: ../../diskdrake/interactive.pm_.c:1089
+#: ../../diskdrake/interactive.pm_.c:1099
msgid "Name: "
msgstr "Ad: "
-#: ../../diskdrake/interactive.pm_.c:1097
+#: ../../diskdrake/interactive.pm_.c:1107
#, c-format
msgid "Start: sector %s\n"
msgstr "BaƟlanğıc: sektor %s\n"
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1108
#, c-format
msgid "Size: %s"
msgstr "BöyĂŒklĂŒyĂŒ: %s"
-#: ../../diskdrake/interactive.pm_.c:1100
+#: ../../diskdrake/interactive.pm_.c:1110
#, c-format
msgid ", %s sectors"
msgstr ", %s sektor"
-#: ../../diskdrake/interactive.pm_.c:1102
+#: ../../diskdrake/interactive.pm_.c:1112
#, fuzzy, c-format
msgid "Cylinder %d to %d\n"
msgstr "Silindr %d -dən silindr %d-yə\n"
-#: ../../diskdrake/interactive.pm_.c:1103
+#: ../../diskdrake/interactive.pm_.c:1113
msgid "Formatted\n"
msgstr "ƞəkilləndirilmiƟ\n"
-#: ../../diskdrake/interactive.pm_.c:1104
+#: ../../diskdrake/interactive.pm_.c:1114
msgid "Not formatted\n"
msgstr "ƞəkilləndirilməmiƟ\n"
-#: ../../diskdrake/interactive.pm_.c:1105
+#: ../../diskdrake/interactive.pm_.c:1115
msgid "Mounted\n"
msgstr "Bağlı\n"
-#: ../../diskdrake/interactive.pm_.c:1106
+#: ../../diskdrake/interactive.pm_.c:1116
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1108
+#: ../../diskdrake/interactive.pm_.c:1118
#, c-format
msgid ""
"Loopback file(s):\n"
@@ -2231,7 +2250,7 @@ msgstr ""
"Loopback faylı:\n"
" %s\n"
-#: ../../diskdrake/interactive.pm_.c:1109
+#: ../../diskdrake/interactive.pm_.c:1119
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -2239,27 +2258,27 @@ msgstr ""
"Ana açılma bölməsi\n"
" (MS-DOS açılÄ±ĆŸÄ± ĂŒĂ§ĂŒn)\n"
-#: ../../diskdrake/interactive.pm_.c:1111
+#: ../../diskdrake/interactive.pm_.c:1121
#, c-format
msgid "Level %s\n"
msgstr "Səviyyə %s\n"
-#: ../../diskdrake/interactive.pm_.c:1112
+#: ../../diskdrake/interactive.pm_.c:1122
#, c-format
msgid "Chunk size %s\n"
msgstr "Parça böyĂŒklĂŒyĂŒ %s\n"
-#: ../../diskdrake/interactive.pm_.c:1113
+#: ../../diskdrake/interactive.pm_.c:1123
#, c-format
msgid "RAID-disks %s\n"
msgstr "RAID-diskləri %s\n"
-#: ../../diskdrake/interactive.pm_.c:1115
+#: ../../diskdrake/interactive.pm_.c:1125
#, c-format
msgid "Loopback file name: %s"
msgstr "Loopback faylı adı: %s"
-#: ../../diskdrake/interactive.pm_.c:1118
+#: ../../diskdrake/interactive.pm_.c:1128
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -2270,7 +2289,7 @@ msgstr ""
"Bəlkə də bu bir SĂŒrĂŒcĂŒ bölməsidir.\n"
"Onda bunu ele beləcə buraxın.\n"
-#: ../../diskdrake/interactive.pm_.c:1121
+#: ../../diskdrake/interactive.pm_.c:1131
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2281,59 +2300,63 @@ msgstr ""
"Bu, ikili açılÄ±ĆŸ ĂŒĂ§ĂŒn xĂŒsusi\n"
"Bootstrap-dır.\n"
-#: ../../diskdrake/interactive.pm_.c:1140
+#: ../../diskdrake/interactive.pm_.c:1150
+msgid "Read-only"
+msgstr ""
+
+#: ../../diskdrake/interactive.pm_.c:1151
#, c-format
msgid "Size: %s\n"
msgstr "BöyĂŒklĂŒk: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1141
+#: ../../diskdrake/interactive.pm_.c:1152
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Geometriyası: %s silindr, %s baƟ, %s sektor\n"
-#: ../../diskdrake/interactive.pm_.c:1142
+#: ../../diskdrake/interactive.pm_.c:1153
msgid "Info: "
msgstr "Mə'lumat: "
-#: ../../diskdrake/interactive.pm_.c:1143
+#: ../../diskdrake/interactive.pm_.c:1154
#, c-format
msgid "LVM-disks %s\n"
msgstr "LVM-diskləri %s\n"
-#: ../../diskdrake/interactive.pm_.c:1144
+#: ../../diskdrake/interactive.pm_.c:1155
#, c-format
msgid "Partition table type: %s\n"
msgstr "Bölmə cədvəli növĂŒ: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1145
+#: ../../diskdrake/interactive.pm_.c:1156
#, fuzzy, c-format
msgid "on channel %d id %d\n"
msgstr "%d data yolunda, %d nö'li\n"
-#: ../../diskdrake/interactive.pm_.c:1175
+#: ../../diskdrake/interactive.pm_.c:1186
#, fuzzy
msgid "Filesystem encryption key"
msgstr "Fayl sistemi növĂŒ: "
-#: ../../diskdrake/interactive.pm_.c:1176
+#: ../../diskdrake/interactive.pm_.c:1187
msgid "Choose your filesystem encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1179
+#: ../../diskdrake/interactive.pm_.c:1190
#, fuzzy, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr "Bu parol çox sadədir (en az %d xarakter boyunda olmalıdır)"
-#: ../../diskdrake/interactive.pm_.c:1180
+#: ../../diskdrake/interactive.pm_.c:1191
#, fuzzy
msgid "The encryption keys do not match"
msgstr "Parollar uyğun gəlmir"
-#: ../../diskdrake/interactive.pm_.c:1183
+#: ../../diskdrake/interactive.pm_.c:1194
msgid "Encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1184
+#: ../../diskdrake/interactive.pm_.c:1195
msgid "Encryption key (again)"
msgstr ""
@@ -2372,7 +2395,7 @@ msgid ""
"Please enter your username, password and domain name to access this host."
msgstr ""
-#: ../../diskdrake/smbnfs_gtk.pm_.c:178
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3527
#, fuzzy
msgid "Username"
msgstr "Ä°stifadəçi adı"
@@ -2387,23 +2410,23 @@ msgstr "NIS sahəsi"
msgid "Search servers"
msgstr "DNS verici"
-#: ../../fs.pm_.c:552 ../../fs.pm_.c:562 ../../fs.pm_.c:566 ../../fs.pm_.c:570
-#: ../../fs.pm_.c:574 ../../fs.pm_.c:578
+#: ../../fs.pm_.c:544 ../../fs.pm_.c:554 ../../fs.pm_.c:558 ../../fs.pm_.c:562
+#: ../../fs.pm_.c:566 ../../fs.pm_.c:570
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s Ɵəkilləndirilməsində %s bölmə xətası"
-#: ../../fs.pm_.c:615
+#: ../../fs.pm_.c:607
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "%s'i necə Ɵəkilləndirəcəyimi bilmirəm (Növ: %s)"
-#: ../../fs.pm_.c:687 ../../fs.pm_.c:731
+#: ../../fs.pm_.c:681 ../../fs.pm_.c:724
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../fs.pm_.c:746 ../../partition_table.pm_.c:602
+#: ../../fs.pm_.c:739 ../../partition_table.pm_.c:598
#, c-format
msgid "error unmounting %s: %s"
msgstr "%s ayrılırkən xəta oldu: %s"
@@ -2420,33 +2443,52 @@ msgstr ""
msgid "server"
msgstr "verici"
-#: ../../fsedit.pm_.c:472
+#: ../../fsedit.pm_.c:240
+#, fuzzy, c-format
+msgid ""
+"I can't read the partition table of device %s, it's too corrupted for me :(\n"
+"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
+"The other solution is to not allow DrakX to modify the partition table.\n"
+"(the error is %s)\n"
+"\n"
+"Do you agree to loose all the partitions?\n"
+msgstr ""
+"Bölmə cədvəlinizi oxuya bilmirəm, dəyəsən biraz xarab olub:-(\n"
+"Xarab olmuƟ bolmələri dĂŒzəltməyə çalÄ±ĆŸacam.\n"
+"Amma bĂŒtĂŒn mə'lumatlar itəcəkdir.\n"
+"BaƟqa bir yol isə DrakXin bölmə cədvəllərini yoxlamasını "
+"passivləƟdirməkdir.\n"
+"(xəta %s)\n"
+"\n"
+"BĂŒtĂŒn bölmələri itirmək istəyirsiniz?\n"
+
+#: ../../fsedit.pm_.c:501
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr "16MB dən kiçik disk bölmələrində JFS istifadə etməlisiniz"
-#: ../../fsedit.pm_.c:473
+#: ../../fsedit.pm_.c:502
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr "32MB dən kiçik disk bölmələrində ReiserFS istifadə etməlisiniz"
-#: ../../fsedit.pm_.c:492
+#: ../../fsedit.pm_.c:521
msgid "Mount points must begin with a leading /"
msgstr "Bağlama nöqtələri / ilə baƟlamalıdır"
-#: ../../fsedit.pm_.c:493
+#: ../../fsedit.pm_.c:522
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Onsuz da bağlama nöqtəsi %s olan bir bölmə var\n"
-#: ../../fsedit.pm_.c:497
+#: ../../fsedit.pm_.c:526
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr "%s ĂŒĂ§ĂŒn LVM Məntiqi Cildini istifadə edə bilməzsiniz"
-#: ../../fsedit.pm_.c:499
+#: ../../fsedit.pm_.c:528
msgid "This directory should remain within the root filesystem"
msgstr "Bu qovluq kök fayl sistemi içərisində olmalıdır"
-#: ../../fsedit.pm_.c:501
+#: ../../fsedit.pm_.c:530
#, fuzzy
msgid ""
"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
@@ -2455,231 +2497,277 @@ msgstr ""
"Bu bağlama nöqtəsi ĂŒĂ§ĂŒn həqiqi bir fayl sisteminə (ext2, reisrfs)\n"
"ehtiyac vardır.\n"
-#: ../../fsedit.pm_.c:503
+#: ../../fsedit.pm_.c:532
#, fuzzy, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr "%s ĂŒĂ§ĂŒn LVM Məntiqi Cildini istifadə edə bilməzsiniz"
-#: ../../fsedit.pm_.c:570
+#: ../../fsedit.pm_.c:599
#, fuzzy
msgid "Not enough free space for auto-allocating"
msgstr "Avtomatik yerləƟdirmə ĂŒĂ§ĂŒn boƟ sahə yoxdur"
-#: ../../fsedit.pm_.c:572
+#: ../../fsedit.pm_.c:601
msgid "Nothing to do"
msgstr ""
-#: ../../fsedit.pm_.c:665
+#: ../../fsedit.pm_.c:694
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Yazmaq ĂŒĂ§ĂŒn açılan %s'də xəta: %s"
-#: ../../fsedit.pm_.c:750
+#: ../../harddrake/sound.pm_.c:155
+msgid "No alternative driver"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:156
+#, c-format
+msgid "There's no known OSS/ALSA alternative driver for your sound card (%s)"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:158
+#, fuzzy
+msgid "Sound configuration"
+msgstr "Yerli ƞəbəkə QuraƟdırılması"
+
+#: ../../harddrake/sound.pm_.c:159
+#, c-format
msgid ""
-"An error occurred - no valid devices were found on which to create new "
-"filesystems. Please check your hardware for the cause of this problem"
+"Here you can select an alternative driver (either OSS or ALSA) for your "
+"sound card (%s)"
msgstr ""
-"Bir xəta oldu. Yeni fayl sisteminin yaradılacağı hökmlĂŒ bir sĂŒrĂŒcĂŒ "
-"tapılmadı. Bu problemin qaynağı ĂŒĂ§ĂŒn avadanlığınızı yoxlayın"
-#: ../../fsedit.pm_.c:773
-msgid "You don't have any partitions!"
-msgstr "Heç disk bölməniz yoxdur!"
+#: ../../harddrake/sound.pm_.c:162
+#, fuzzy
+msgid "Driver:"
+msgstr "SĂŒrĂŒcĂŒ"
+
+#: ../../harddrake/sound.pm_.c:173
+msgid "No known driver"
+msgstr ""
-#: ../../harddrake/ui.pm_.c:15
+#: ../../harddrake/sound.pm_.c:174
+#, c-format
+msgid "There's no known driver for your sound card (%s)"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:177
+msgid "Unkown driver"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:178
+#, c-format
+msgid ""
+"The \"%s\" driver for your sound card is unlisted\n"
+"\n"
+"Please send the output of the \"lspcidrake -v\" command to\n"
+"<install at mandrakesoft dot com>\n"
+"with subject: unlisted sound driver \"%s\""
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:16
#, fuzzy
msgid "Model"
msgstr "Siçan"
-#: ../../harddrake/ui.pm_.c:15
+#: ../../harddrake/ui.pm_.c:16
#, fuzzy
msgid "hard disk model"
msgstr "Kart mem (DMA)"
-#: ../../harddrake/ui.pm_.c:16
+#: ../../harddrake/ui.pm_.c:17
#, fuzzy
msgid "Channel"
msgstr "Ləğv et"
-#: ../../harddrake/ui.pm_.c:16
+#: ../../harddrake/ui.pm_.c:17
msgid "EIDE/SCSI channel"
msgstr ""
-#: ../../harddrake/ui.pm_.c:18
+#: ../../harddrake/ui.pm_.c:19
msgid "Bus"
msgstr ""
-#: ../../harddrake/ui.pm_.c:19
+#: ../../harddrake/ui.pm_.c:20
msgid ""
"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
msgstr ""
-#: ../../harddrake/ui.pm_.c:20
+#: ../../harddrake/ui.pm_.c:21
#, fuzzy
msgid "Module"
msgstr "Siçan"
-#: ../../harddrake/ui.pm_.c:20
+#: ../../harddrake/ui.pm_.c:21
msgid "the module of the GNU/Linux kernel that handle that device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:21
+#: ../../harddrake/ui.pm_.c:22
msgid "Media class"
msgstr ""
-#: ../../harddrake/ui.pm_.c:21
+#: ../../harddrake/ui.pm_.c:22
msgid "class of hardware device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:22 ../../printerdrake.pm_.c:1404
+#: ../../harddrake/ui.pm_.c:23 ../../printerdrake.pm_.c:1517
msgid "Description"
msgstr "Ä°zah"
-#: ../../harddrake/ui.pm_.c:22
+#: ../../harddrake/ui.pm_.c:23
msgid "this field describe the device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:24
+#: ../../harddrake/ui.pm_.c:25
#, fuzzy
msgid "Bus identification"
msgstr "Tanıtma"
-#: ../../harddrake/ui.pm_.c:25
+#: ../../harddrake/ui.pm_.c:26
msgid ""
-"- PCI and USB devices : this list the vendor, device, subvendor and "
-"subdevice PCI/USB ids"
+"- PCI and USB devices: this list the vendor, device, subvendor and subdevice "
+"PCI/USB ids"
msgstr ""
-#: ../../harddrake/ui.pm_.c:27
+#: ../../harddrake/ui.pm_.c:28
msgid "Location on the bus"
msgstr ""
-#: ../../harddrake/ui.pm_.c:28
+#: ../../harddrake/ui.pm_.c:29
msgid ""
"- pci devices: this gives the PCI slot, device and function of this card\n"
"- eide devices: the device is either a slave or a master device\n"
"- scsi devices: the scsi bus and the scsi device ids"
msgstr ""
-#: ../../harddrake/ui.pm_.c:31
+#: ../../harddrake/ui.pm_.c:32
#, fuzzy
msgid "Old device file"
msgstr "Fayl seç"
-#: ../../harddrake/ui.pm_.c:32
+#: ../../harddrake/ui.pm_.c:33
msgid "old static device name used in dev package"
msgstr ""
-#: ../../harddrake/ui.pm_.c:33
+#: ../../harddrake/ui.pm_.c:34
#, fuzzy
msgid "New devfs device"
msgstr "Keçit avadanlığı"
-#: ../../harddrake/ui.pm_.c:34
+#: ../../harddrake/ui.pm_.c:35
msgid "new dinamic device name generated by incore kernel devfs"
msgstr ""
-#: ../../harddrake/ui.pm_.c:35
+#: ../../harddrake/ui.pm_.c:36
#, fuzzy
msgid "Number of buttons"
msgstr "2 dĂŒyməli"
-#: ../../harddrake/ui.pm_.c:36
+#: ../../harddrake/ui.pm_.c:37
msgid "the vendor name of the device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:60
+#: ../../harddrake/ui.pm_.c:38
+#, fuzzy
+msgid "Alternative drivers"
+msgstr "Sınaq səhifəsi çap edilir..."
+
+#: ../../harddrake/ui.pm_.c:39
+msgid "the list of alternative drivers for this sound card"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:63
#, fuzzy
msgid "/_Quit"
msgstr "Çıx"
-#: ../../harddrake/ui.pm_.c:61 ../../harddrake/ui.pm_.c:62
-#: ../../harddrake/ui.pm_.c:68 ../../standalone/logdrake_.c:110
+#: ../../harddrake/ui.pm_.c:64 ../../harddrake/ui.pm_.c:65
+#: ../../harddrake/ui.pm_.c:71 ../../standalone/logdrake_.c:110
msgid "/_Help"
msgstr "/_Kömək"
-#: ../../harddrake/ui.pm_.c:62
+#: ../../harddrake/ui.pm_.c:65
#, fuzzy
msgid "/_Help..."
msgstr "/_Kömək"
-#: ../../harddrake/ui.pm_.c:63
+#: ../../harddrake/ui.pm_.c:66
msgid "Harddrake help"
msgstr ""
-#: ../../harddrake/ui.pm_.c:64
+#: ../../harddrake/ui.pm_.c:67
msgid ""
"Description of the fields:\n"
"\n"
msgstr ""
-#: ../../harddrake/ui.pm_.c:68
+#: ../../harddrake/ui.pm_.c:71
#, fuzzy
msgid "/_About..."
msgstr "/Kömək/_Haqqında..."
-#: ../../harddrake/ui.pm_.c:69
+#: ../../harddrake/ui.pm_.c:72
msgid "About Harddrake"
msgstr ""
-#: ../../harddrake/ui.pm_.c:70
+#: ../../harddrake/ui.pm_.c:73
msgid ""
"This is HardDrake, a Mandrake hardware configuration tool.\n"
"Version:"
msgstr ""
-#: ../../harddrake/ui.pm_.c:71
+#: ../../harddrake/ui.pm_.c:74
#, fuzzy
msgid "Author:"
msgstr "Avtomatik yoxla"
-#: ../../harddrake/ui.pm_.c:83
+#: ../../harddrake/ui.pm_.c:86
#, fuzzy
msgid "Harddrake2 version "
msgstr "Sabit disk seçkisi"
-#: ../../harddrake/ui.pm_.c:91
+#: ../../harddrake/ui.pm_.c:103
#, fuzzy
msgid "Detected hardware"
msgstr "Avadanlıq mə'lumatına bax"
-#: ../../harddrake/ui.pm_.c:92
+#: ../../harddrake/ui.pm_.c:105
#, fuzzy
-msgid "Configure module"
-msgstr "Siçan qurğuları"
+msgid "Information"
+msgstr "Mə'lumatı göstər"
-#: ../../harddrake/ui.pm_.c:92
+#: ../../harddrake/ui.pm_.c:108
#, fuzzy
-msgid "Informations"
-msgstr "Mə'lumatı göstər"
+msgid "Configure module"
+msgstr "Siçan qurğuları"
-#: ../../harddrake/ui.pm_.c:92
+#: ../../harddrake/ui.pm_.c:109
msgid "Run config tool"
msgstr ""
-#: ../../harddrake/ui.pm_.c:96
+#: ../../harddrake/ui.pm_.c:113
#, fuzzy
msgid "Detection in progress"
msgstr "%s qapısında tapıldı"
-#: ../../harddrake/ui.pm_.c:96 ../../interactive.pm_.c:388
+#: ../../harddrake/ui.pm_.c:113 ../../interactive.pm_.c:391
msgid "Please wait"
msgstr "XahiƟ edirik gözləyin"
-#: ../../harddrake/ui.pm_.c:139
+#: ../../harddrake/ui.pm_.c:156
msgid "primary"
msgstr ""
-#: ../../harddrake/ui.pm_.c:139
+#: ../../harddrake/ui.pm_.c:156
#, fuzzy
msgid "secondary"
msgstr "%d saniyə sonra çıxılacaq"
-#: ../../harddrake/ui.pm_.c:176
+#: ../../harddrake/ui.pm_.c:197
msgid "You can configure each parameter of the module here."
msgstr ""
-#: ../../harddrake/ui.pm_.c:192
+#: ../../harddrake/ui.pm_.c:213
#, fuzzy, c-format
msgid "Running \"%s\" ..."
msgstr "CUPS sĂŒrĂŒcĂŒ datası oxunur..."
@@ -2712,16 +2800,16 @@ msgstr ""
#: ../../harddrake/v4l.pm_.c:213
#, fuzzy
-msgid "Card model :"
+msgid "Card model:"
msgstr "Kart mem (DMA)"
#: ../../harddrake/v4l.pm_.c:214
#, fuzzy
-msgid "Tuner type :"
+msgid "Tuner type:"
msgstr "Bölmə növĂŒnĂŒ DəyiƟdir"
#: ../../harddrake/v4l.pm_.c:215
-msgid "Number of capture buffers :"
+msgid "Number of capture buffers:"
msgstr ""
#: ../../harddrake/v4l.pm_.c:215
@@ -2730,11 +2818,11 @@ msgstr ""
#: ../../harddrake/v4l.pm_.c:217
#, fuzzy
-msgid "PLL setting :"
+msgid "PLL setting:"
msgstr "ƞəkilləndirilir"
#: ../../harddrake/v4l.pm_.c:218
-msgid "Radio support :"
+msgid "Radio support:"
msgstr ""
#: ../../harddrake/v4l.pm_.c:218
@@ -2746,22 +2834,22 @@ msgid ""
"GNU/Linux is a multiuser system, and this means that each user can have his\n"
"own preferences, his own files and so on. You can read the ``User Guide''\n"
"to learn more. But unlike \"root\", which is the administrator, the users\n"
-"you will add here will not be entitled to change anything except their own\n"
-"files and their own configuration. You will have to create at least one\n"
-"regular user for yourself. That account is where you should log in for\n"
-"routine use. Although it is very practical to log in as \"root\" everyday,\n"
-"it may also be very dangerous! The slightest mistake could mean that your\n"
-"system would not work any more. If you make a serious mistake as a regular\n"
-"user, you may only lose some information, but not the entire system.\n"
+"you add here will not be entitled to change anything except their own files\n"
+"and their own configuration. You will have to create at least one regular\n"
+"user for yourself. That account is where you should log in for routine use.\n"
+"Although it is very practical to log in as \"root\" everyday, it may also\n"
+"be very dangerous! The slightest mistake could mean that your system would\n"
+"not work any more. If you make a serious mistake as a regular user, you may\n"
+"only lose some information, but not the entire system.\n"
"\n"
"First, you have to enter your real name. This is not mandatory, of course -\n"
"as you can actually enter whatever you want. DrakX will then take the first\n"
"word you have entered in the box and will bring it over to the \"User\n"
"name\". This is the name this particular user will use to log onto the\n"
"system. You can change it. You then have to enter a password here. A\n"
-"non-privileged (regular) user's password is not as crucial as \"root\"' one\n"
-"from a security point of view, but that is no reason to neglect it: after\n"
-"all, your files are at risk.\n"
+"non-privileged (regular) user's password is not as crucial as the \"root\"'\n"
+"one from a security point of view, but that is no reason to neglect it:\n"
+"after all, your files are at risk.\n"
"\n"
"If you click on \"Accept user\", you can then add as many as you want. Add\n"
"a user for each one of your friends: your father or your sister, for\n"
@@ -2874,7 +2962,7 @@ msgid ""
"to have a graphical workstation!\n"
"\n"
"Moving the mouse cursor over a group name will display a short explanatory\n"
-"text about that group. If you deselect all groups when performing a regular\n"
+"text about that group. If you unselect all groups when performing a regular\n"
"installation (by opposition to an upgrade), a dialog will pop up proposing\n"
"different options for a minimal installation:\n"
"\n"
@@ -2900,10 +2988,10 @@ msgstr ""
#: ../../help.pm_.c:128
msgid ""
-"Finally, depending on whether or not you selected individual packages, you\n"
-"will be presented a tree containing all packages classified by groups and\n"
-"subgroups. While browsing the tree, you can select entire groups,\n"
-"subgroups, or individual packages.\n"
+"Finally, depending on whether or not you chose to be able to select\n"
+"individual packages, you will be presented a tree containing all packages\n"
+"classified by groups and subgroups. While browsing the tree, you can select\n"
+"entire groups, subgroups, or individual packages.\n"
"\n"
"Whenever you select a package on the tree, a description appears on the\n"
"right. When your selection is finished, click the \"Install\" button which\n"
@@ -2938,11 +3026,11 @@ msgstr ""
#: ../../help.pm_.c:164
msgid ""
-"You are now proposed to set up your Internet/network connection. If you\n"
-"wish to connect your computer to the Internet or to a local network, click\n"
-"\"OK\". The autodetection of network devices and modem will be launched. If\n"
-"this detection fails, uncheck the \"Use auto detection\" box next time. You\n"
-"may also choose not to configure the network, or do it later; in that case,\n"
+"You are now able to set up your Internet/network connection. If you wish to\n"
+"connect your computer to the Internet or to a local network, click \"OK\".\n"
+"The autodetection of network devices and modem will be launched. If this\n"
+"detection fails, uncheck the \"Use auto detection\" box next time. You may\n"
+"also choose not to configure the network, or do it later; in that case,\n"
"simply click the \"Cancel\" button.\n"
"\n"
"Available connections are: traditional modem, ISDN modem, ADSL connection,\n"
@@ -2992,7 +3080,7 @@ msgstr ""
msgid ""
"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
"local time according to the time zone you selected. It is however possible\n"
-"to deactivate this by deselecting \"Hardware clock set to GMT\" so that the\n"
+"to deactivate this by unselecting \"Hardware clock set to GMT\" so that the\n"
"hardware clock is the same as the system clock. This is useful when the\n"
"machine is hosting another operating system like Windows.\n"
"\n"
@@ -3023,24 +3111,12 @@ msgid ""
"If you can see the message during the test, and answer \"Yes\", then DrakX\n"
"will proceed to the next step. If you cannot see the message, it simply\n"
"means that the configuration was wrong and the test will automatically end\n"
-"after 10 seconds, restoring the screen."
-msgstr ""
-
-#: ../../help.pm_.c:237
-msgid ""
-"The first time you try the X configuration, you may not be very satisfied\n"
-"with its display (screen is too small, shifted left or right...). Hence,\n"
-"even if X starts up correctly, DrakX then asks you if the configuration\n"
-"suits you. It will also propose to change it by displaying a list of valid\n"
-"modes it could find, asking you to select one.\n"
-"\n"
-"As a last resort, if you still cannot get X to work, choose \"Change\n"
-"graphics card\", select \"Unlisted card\", and when prompted on which\n"
-"server, choose \"FBDev\". This is a failsafe option which works with any\n"
-"modern graphics card. Then choose \"Test again\" to be sure."
+"after 10 seconds, restoring the screen. Refer then to the Video\n"
+"configuration section of the user guide for more information on how to\n"
+"configure your display."
msgstr ""
-#: ../../help.pm_.c:249
+#: ../../help.pm_.c:239
msgid ""
"Finally, you will be asked whether you want to see the graphical interface\n"
"at boot. Note this question will be asked even if you chose not to test the\n"
@@ -3049,7 +3125,7 @@ msgid ""
"configured."
msgstr ""
-#: ../../help.pm_.c:256
+#: ../../help.pm_.c:246
msgid ""
"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
@@ -3069,13 +3145,13 @@ msgid ""
"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
"password, or any other reason.\n"
"\n"
-"When you click on this step, you will be asked to enter a disk inside the\n"
-"drive. The floppy disk you will insert must be empty or contain data which\n"
-"you do not need. You will not have to format it since DrakX will rewrite\n"
-"the whole disk."
+"If you say \"Yes\", you will be asked to enter a disk inside the drive. The\n"
+"floppy disk you will insert must be empty or contain data which you do not\n"
+"need. You will not have to format it since DrakX will rewrite the whole\n"
+"disk."
msgstr ""
-#: ../../help.pm_.c:280
+#: ../../help.pm_.c:270
#, fuzzy
msgid ""
"At this point, you need to choose where you want to install the Mandrake\n"
@@ -3109,7 +3185,9 @@ msgid ""
"\n"
" * \"Use existing partition\": the wizard has detected one or more existing\n"
"Linux partitions on your hard drive. If you want to use them, choose this\n"
-"option;\n"
+"option. You will then be asked to choose the mount points associated to\n"
+"each of the partitions. The legacy mount points are selected by default,\n"
+"and you should generally keep them.\n"
"\n"
" * \"Use the free space on the Windows; partition\": if Microsoft Windows\n"
"is installed on your hard drive and takes all the space available on it,\n"
@@ -3142,7 +3220,9 @@ msgid ""
" * \"Expert mode\": choose this option if you want to manually partition\n"
"your hard drive. Be careful - it is a powerful but dangerous choice. You\n"
"can very easily lose all your data. Hence, do not choose this unless you\n"
-"know what you are doing."
+"know what you are doing. To know how do use the DiskDrake utility used\n"
+"here, refer to the section ``Managing Your Partitions'' of the ````User\n"
+"Guide''''"
msgstr ""
"Bu nöqtədə Linuks Mandrakeni sabit diskinizdə haraya quracağınıza\n"
"qərar verəcəksiniz. Əgər diskiniz boƟ isə və ya bir baƟqa sistem\n"
@@ -3193,7 +3273,7 @@ msgstr ""
"bilgiyi asandlıqla itirə bilərsiniz.\n"
" TəcrĂŒbəsiz isəniz bunu seçməyin."
-#: ../../help.pm_.c:347
+#: ../../help.pm_.c:341
msgid ""
"There you are. Installation is now complete and your GNU/Linux system is\n"
"ready to use. Just click \"OK\" to reboot the system. You can start\n"
@@ -3226,7 +3306,7 @@ msgid ""
"\"mformat a:\")"
msgstr ""
-#: ../../help.pm_.c:378
+#: ../../help.pm_.c:372
#, fuzzy
msgid ""
"Any partitions that have been newly defined must be formatted for use\n"
@@ -3282,7 +3362,7 @@ msgstr ""
"Yeni Linuks Mandrake sisteminizi qurmaq ĂŒĂ§ĂŒn baƟqa bölmə seçmək\n"
"istəyirsiniz isə \"Ləğv et\" dĂŒyməsinə basın."
-#: ../../help.pm_.c:404
+#: ../../help.pm_.c:398
#, fuzzy
msgid ""
"Your new Mandrake Linux operating system is currently being installed.\n"
@@ -3299,12 +3379,12 @@ msgstr ""
"\n"
"XahiƟ edirik, səbrli olun."
-#: ../../help.pm_.c:412
+#: ../../help.pm_.c:406
msgid ""
"At the time you are installing Mandrake Linux, it is likely that some\n"
"packages have been updated since the initial release. Some bugs may have\n"
"been fixed, and security issues solved. To allow you to benefit from these\n"
-"updates, you are now proposed to download them from the Internet. Choose\n"
+"updates, you are now able to download them from the Internet. Choose\n"
"\"Yes\" if you have a working Internet connection, or \"No\" if you prefer\n"
"to install updated packages later.\n"
"\n"
@@ -3314,7 +3394,7 @@ msgid ""
"install the selected package(s), or \"Cancel\" to abort."
msgstr ""
-#: ../../help.pm_.c:425
+#: ../../help.pm_.c:419
msgid ""
"Before continuing, you should read carefully the terms of the license. It\n"
"covers the whole Mandrake Linux distribution, and if you do not agree with\n"
@@ -3323,19 +3403,19 @@ msgid ""
"\"Accept\" button."
msgstr ""
-#: ../../help.pm_.c:432
+#: ../../help.pm_.c:426
msgid ""
"At this point, it is time to choose the security level desired for the\n"
"machine. As a rule of thumb, the more exposed the machine is, and the more\n"
"the data stored in it is crucial, the higher the security level should be.\n"
"However, a higher security level is generally obtained at the expense of\n"
-"easiness of use. Refer to the \"msec\" chapter of the ``Reference Manual''\n"
-"to get more information about the meaning of these levels.\n"
+"ease of use. Refer to the \"msec\" chapter of the ``Reference Manual'' to\n"
+"get more information about the meaning of these levels.\n"
"\n"
"If you do not know what to choose, keep the default option."
msgstr ""
-#: ../../help.pm_.c:442
+#: ../../help.pm_.c:436
#, fuzzy
msgid ""
"At this point, you need to choose which partition(s) will be used for the\n"
@@ -3353,26 +3433,26 @@ msgid ""
" * \"Clear all\": this option deletes all partitions on the selected hard\n"
"drive;\n"
"\n"
-" * \"Auto allocate\": this option enables to automatically create \"Ext2\"\n"
-"and swap partitions in free space of your hard drive;\n"
+" * \"Auto allocate\": this option enables to automatically create ext3 and\n"
+"swap partitions in free space of your hard drive;\n"
"\n"
-" * \"More\": gives access to additional features:\n"
+"\"More\": gives access to additional features:\n"
"\n"
-" * \"Save partition table\": saves the partition table to a floppy.\n"
-"Useful for later partition-table recovery if necessary. It is strongly\n"
-"recommended to perform this step;\n"
+" * \"Save partition table\": saves the partition table to a floppy. Useful\n"
+"for later partition-table recovery if necessary. It is strongly recommended\n"
+"to perform this step;\n"
"\n"
-" * \"Restore partition table\": allows to restore a previously saved\n"
+" * \"Restore partition table\": allows to restore a previously saved\n"
"partition table from floppy disk;\n"
"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you\n"
-"can try to recover it using this option. Please be careful and remember\n"
-"that it can fail;\n"
+" * \"Rescue partition table\": if your partition table is damaged, you can\n"
+"try to recover it using this option. Please be careful and remember that it\n"
+"can fail;\n"
"\n"
-" * \"Reload partition table\": discards all changes and loads your\n"
-"initial partition table;\n"
+" * \"Reload partition table\": discards all changes and loads your initial\n"
+"partition table;\n"
"\n"
-" * \"Removable media automounting\": unchecking this option will force\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
"users to manually mount and unmount removable medias such as floppies and\n"
"CD-ROMs.\n"
"\n"
@@ -3400,7 +3480,7 @@ msgid ""
" * Ctrl-m to set the mount point.\n"
"\n"
"To get information about the different filesystem types available, please\n"
-"read the ext2fs chapter from the ``Reference Manual''.\n"
+"read the ext2FS chapter from the ``Reference Manual''.\n"
"\n"
"If you are installing on a PPC machine, you will want to create a small HFS\n"
"``bootstrap'' partition of at least 1MB, which will be used by the yaboot\n"
@@ -3477,7 +3557,7 @@ msgstr ""
"Əgər daha çox yeriniz varsa ; məsələn 50 MB, onda bĂŒtĂŒn kernel və ramdisk "
"əksini təcili açılÄ±ĆŸ halları ĂŒĂ§ĂŒn saxlaya bilərsiniz."
-#: ../../help.pm_.c:513
+#: ../../help.pm_.c:507
#, fuzzy
msgid ""
"More than one Microsoft partition has been detected on your hard drive.\n"
@@ -3541,11 +3621,11 @@ msgstr ""
"SCSI sĂŒrĂŒcĂŒlərində \"a\" nın mənası \"birinci sĂŒrĂŒcĂŒ\",\n"
"\"b\"nin mənası \"ikinci sĂŒrĂŒcĂŒ\"dĂŒr vs..."
-#: ../../help.pm_.c:544
+#: ../../help.pm_.c:538
msgid "Please be patient. This operation can take several minutes."
msgstr "Səbrli olun. Bu əməliyyat bir neçə deqiqə sĂŒrə bilər."
-#: ../../help.pm_.c:547
+#: ../../help.pm_.c:541
#, fuzzy
msgid ""
"DrakX now needs to know if you want to perform a default (\"Recommended\")\n"
@@ -3553,23 +3633,23 @@ msgid ""
"also choose to do a new install or an upgrade of an existing Mandrake Linux\n"
"system:\n"
"\n"
-" * \"Install\": completely wipes out the old system. In fact, depending on\n"
-"what currently holds your machine, you will be able to keep some old (Linux\n"
-"or other) partitions unchanged;\n"
+" * \"Install\": completely wipes out the old system, however, depending on\n"
+"what is currently installed on your machine, you may be able to keep some\n"
+"old partitions (Linux or otherwise) unchanged;\n"
"\n"
" * \"Upgrade\": this installation class allows to simply update the\n"
"packages currently installed on your Mandrake Linux system. It keeps the\n"
"current partitions of your hard drives as well as user configurations. All\n"
-"other configuration steps remain available with respect to plain\n"
+"other configuration steps remain available, similar to a normal\n"
"installation;\n"
"\n"
-" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
-"existing Mandrake Linux system while keeping all system configurations\n"
-"unchanged. Adding new packages to the current installation is also\n"
-"possible.\n"
+" * \"Upgrade Packages Only\": this new installation class allows you to\n"
+"upgrade an existing Mandrake Linux system while keeping all system\n"
+"configurations unchanged. Adding new packages to the current installation\n"
+"is also possible.\n"
"\n"
-"Upgrades should work fine for Mandrake Linux systems starting from \"8.1\"\n"
-"release.\n"
+"Upgrades should work fine on Mandrake Linux systems containing version\n"
+"\"8.1\" or later.\n"
"\n"
"Depending on your knowledge of GNU/Linux, select one of the following\n"
"choices:\n"
@@ -3578,11 +3658,11 @@ msgid ""
"operating system. The installation will be very easy and you will only be\n"
"asked a few questions;\n"
"\n"
-" * Expert: if you have a good knowledge of GNU/Linux, you can choose this\n"
-"installation class. The expert installation will allow you to perform a\n"
-"highly-customized installation. Answering some of the questions can be\n"
-"difficult if you do not have a good knowledge of GNU/Linux, so do not\n"
-"choose this unless you know what you are doing."
+" * Expert: if you have a good understanding of GNU/Linux, you may wish to\n"
+"perform a highly customized installation. Some of the decisions you will\n"
+"have to make may be difficult if you do not have good knowledge of\n"
+"GNU/Linux, so it is not recommended that those without a fair amount of\n"
+"experience select this installation class."
msgstr ""
"XahiƟ edirik Linuks Mandrakenin daha əvvəlki buraxılÄ±ĆŸları qurulu deyilsə və "
"ya mĂŒxtəlif əməliyyat sistemlərindən istifadə etmək istəyirsinizsə \"YĂŒklə\" "
@@ -3614,23 +3694,28 @@ msgstr ""
" çıxa bilmək çox zəhmətli olur. Ona görə də nə etdiyinizi bilirsəniz, bu "
"sinifi seçin."
-#: ../../help.pm_.c:584
+#: ../../help.pm_.c:578
msgid ""
"Normally, DrakX selects the right keyboard for you (depending on the\n"
-"language you have chosen) and you won't even see this step. However, you\n"
-"might not have a keyboard that corresponds exactly to your language: for\n"
-"example, if you are an English speaking Swiss person, you may still want\n"
-"your keyboard to be a Swiss keyboard. Or if you speak English but are\n"
-"located in Quebec, you may find yourself in the same situation. In both\n"
-"cases, you will have to go back to this installation step and select an\n"
-"appropriate keyboard from the list.\n"
+"language you have chosen). However, you might not have a keyboard that\n"
+"corresponds exactly to your language: for example, if you are an English\n"
+"speaking Swiss person, you may still want your keyboard to be a Swiss\n"
+"keyboard. Or if you speak English but are located in Quebec, you may find\n"
+"yourself in the same situation. In both cases, you will have to go back to\n"
+"this installation step and select an appropriate keyboard from the list.\n"
"\n"
"Click on the \"More\" button to be presented with the complete list of\n"
-"supported keyboards."
+"supported keyboards.\n"
+"\n"
+"If you choose a keyboard layout based on a non-latin alphabet, you will be\n"
+"asked on next dialog to choose the key binding that will switch the\n"
+"keyboard layout between the latin and non latin layouts."
msgstr ""
-#: ../../help.pm_.c:597
+#: ../../help.pm_.c:594
msgid ""
+"The first step is to choose your preferred language.\n"
+"\n"
"Please choose your preferred language for installation and system usage.\n"
"\n"
"Clicking on the \"Advanced\" button will allow you to select other\n"
@@ -3644,7 +3729,7 @@ msgid ""
"additional locales, click the \"OK\" button to continue."
msgstr ""
-#: ../../help.pm_.c:610
+#: ../../help.pm_.c:609
msgid ""
"DrakX generally detects the number of buttons your mouse has. If not, it\n"
"assumes you have a two-button mouse and will set it up for third-button\n"
@@ -3657,10 +3742,17 @@ msgid ""
"If you choose a mouse other than the default, a test screen will be\n"
"displayed. Use the buttons and wheel to verify that the settings are\n"
"correct. If the mouse is not working well, press the space bar or [Return]\n"
-"to \"Cancel\" and choose again."
+"to \"Cancel\" and choose again.\n"
+"\n"
+"Wheel mouses are sometimes not automatically detected. You will need to\n"
+"manually select it in the list. Be sure to select the one corresponding to\n"
+"the correct port it is attached to. After you have pressed the \"OK\"\n"
+"button, a mouse image is displayed. You then need to move the wheel of your\n"
+"mouse to activate it correctly. Then test all buttons and movements are\n"
+"correct."
msgstr ""
-#: ../../help.pm_.c:624
+#: ../../help.pm_.c:630
#, fuzzy
msgid ""
"Please select the correct port. For example, the \"COM1\" port under\n"
@@ -3669,7 +3761,7 @@ msgstr ""
"XahiƟ edirik doğru qapını seçin. Məsələn, MS Windowsdakı COM1'in qarĆŸÄ±lığı\n"
"Linuksda ttyS0'dır."
-#: ../../help.pm_.c:628
+#: ../../help.pm_.c:634
msgid ""
"This is the most crucial decision point for the security of your GNU/Linux\n"
"system: you have to enter the \"root\" password. \"root\" is the system\n"
@@ -3699,15 +3791,15 @@ msgid ""
"In Expert mode, you will be asked if you will be connecting to an\n"
"authentication server, like NIS or LDAP.\n"
"\n"
-"If your network uses the LDAP (or NIS) protocol for authentication, select\n"
-"\"LDAP\" (or \"NIS\") as authentication. If you do not know, ask your\n"
-"network administrator.\n"
+"If your network uses either of the LDAP, NIS, or PDC Windows Domain\n"
+"authentication services, select the appropriate one as \"authentication\".\n"
+"If you do not know, ask your network administrator.\n"
"\n"
"If your computer is not connected to any administrated network, you will\n"
"want to choose \"Local files\" for authentication."
msgstr ""
-#: ../../help.pm_.c:664
+#: ../../help.pm_.c:670
msgid ""
"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
@@ -3746,8 +3838,12 @@ msgid ""
"options. !!\n"
"\n"
"Clicking the \"Advanced\" button in this dialog will offer many advanced\n"
-"options, which are reserved to the expert user.\n"
-"\n"
+"options, which are reserved for the expert user."
+msgstr ""
+
+#: ../../help.pm_.c:710
+#, fuzzy
+msgid ""
"After you have configured the general bootloader parameters, the list of\n"
"boot options which will be available at boot time will be displayed.\n"
"\n"
@@ -3755,17 +3851,7 @@ msgid ""
"automatically be added to the boot menu. Here, you can choose to fine-tune\n"
"the existing options. Select an entry and click \"Modify\" to modify or\n"
"remove it; \"Add\" creates a new entry; and \"Done\" goes on to the next\n"
-"installation step."
-msgstr ""
-
-#: ../../help.pm_.c:713
-#, fuzzy
-msgid ""
-"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
-"either GNU/Linux or any other operating system present on your computer.\n"
-"Normally, these other operating systems are correctly detected and\n"
-"installed. If this is not the case, you can add an entry by hand in this\n"
-"screen. Be careful to choose the correct parameters.\n"
+"installation step.\n"
"\n"
"You may also not want to give access to these other operating systems to\n"
"anyone. In which case, you can delete the corresponding entries. But then,\n"
@@ -3825,18 +3911,18 @@ msgstr ""
#: ../../help.pm_.c:759
#, fuzzy
msgid ""
-"DrakX now detects any IDE device present in your computer. It will also\n"
-"scan for one or more PCI SCSI card(s) on your system. If a SCSI card is\n"
+"DrakX now detects any IDE devices present in your computer. It will also\n"
+"scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
"found, DrakX will automatically install the appropriate driver.\n"
"\n"
"Because hardware detection does not always detect a piece of hardware,\n"
"DrakX will ask you to confirm if a PCI SCSI card is present. Click \"Yes\"\n"
"if you know that there is a SCSI card installed in your machine. You will\n"
-"be presented a list of SCSI cards to choose from. Click \"No\" if you have\n"
-"no SCSI hardware. If you are unsure, you can check the list of hardware\n"
-"detected in your machine by selecting \"See hardware info\" and clicking\n"
-"\"OK\". Examine the list of hardware and then click on the \"OK\" button to\n"
-"return to the SCSI interface question.\n"
+"be presented with a list of SCSI cards to choose from. Click \"No\" if you\n"
+"have no SCSI hardware. If you are unsure, you can check the list of\n"
+"hardware detected in your machine by selecting \"See hardware info\" and\n"
+"clicking \"OK\". Examine the list of hardware and then click on the \"OK\"\n"
+"button to return to the SCSI interface question.\n"
"\n"
"If you have to manually specify your adapter, DrakX will ask if you want to\n"
"specify options for it. You should allow DrakX to probe the hardware for\n"
@@ -4086,7 +4172,9 @@ msgid ""
"order to configure the clock according to the time zone you are in;\n"
"\n"
" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
-"configuration wizard;\n"
+"configuration wizard. Consult the corresponding chapter of the ``User\n"
+"Guide'' for more information on how to setup a new printer. The interface\n"
+"presented there is similar to the one used during installation;\n"
"\n"
" * \"Sound card\": if a sound card is detected on your system, it is\n"
"displayed here. No modification possible at installation time;\n"
@@ -4099,7 +4187,7 @@ msgid ""
"associated with it."
msgstr ""
-#: ../../help.pm_.c:894
+#: ../../help.pm_.c:896
#, fuzzy
msgid ""
"Choose the hard drive you want to erase in order to install your new\n"
@@ -4110,7 +4198,7 @@ msgstr ""
"Diqqətli olun, sĂŒrĂŒcĂŒdəki bĂŒtĂŒn mə'lumatlar silinəcək\n"
"və geri gəlməyəcək."
-#: ../../help.pm_.c:899
+#: ../../help.pm_.c:901
#, fuzzy
msgid ""
"Click on \"OK\" if you want to delete all data and partitions present on\n"
@@ -4143,7 +4231,7 @@ msgstr ""
msgid "You must also format %s"
msgstr ""
-#: ../../install_any.pm_.c:418
+#: ../../install_any.pm_.c:423
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -4167,20 +4255,29 @@ msgstr ""
"\n"
"Bu vericiləri qurmaq istəyirsiniz?\n"
-#: ../../install_any.pm_.c:453
+#: ../../install_any.pm_.c:441
+#, c-format
+msgid ""
+"The following packages will be removed to allow upgrading your system: %s\n"
+"\n"
+"\n"
+"Do you really want to remove these packages?\n"
+msgstr ""
+
+#: ../../install_any.pm_.c:471
msgid "Can't use broadcast with no NIS domain"
msgstr "NİS domeyni olmadan translasiya iƟlədilə bilməz"
-#: ../../install_any.pm_.c:841
+#: ../../install_any.pm_.c:862
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "%s sĂŒrĂŒcĂŒsĂŒnə FAT ƟəkilləndirilmiƟ bir disket taxın"
-#: ../../install_any.pm_.c:845
+#: ../../install_any.pm_.c:866
msgid "This floppy is not FAT formatted"
msgstr "Bu floppi FAT Ɵəklində deyildir"
-#: ../../install_any.pm_.c:857
+#: ../../install_any.pm_.c:878
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -4188,11 +4285,19 @@ msgstr ""
"Bu saxlanmÄ±ĆŸ paketlər seçkisini iƟlətmək ĂŒĂ§ĂŒn qurulumu ``linux "
"defcfg=floppy''ilə baƟladın."
-#: ../../install_any.pm_.c:880 ../../partition_table.pm_.c:771
+#: ../../install_any.pm_.c:901 ../../partition_table.pm_.c:767
#, c-format
msgid "Error reading file %s"
msgstr "%s faylı oxunurkan xəta oldu"
+#: ../../install_any.pm_.c:1023
+msgid ""
+"An error occurred - no valid devices were found on which to create new "
+"filesystems. Please check your hardware for the cause of this problem"
+msgstr ""
+"Bir xəta oldu. Yeni fayl sisteminin yaradılacağı hökmlĂŒ bir sĂŒrĂŒcĂŒ "
+"tapılmadı. Bu problemin qaynağı ĂŒĂ§ĂŒn avadanlığınızı yoxlayın"
+
#: ../../install_interactive.pm_.c:23
#, c-format
msgid ""
@@ -4227,60 +4332,60 @@ msgstr ""
"Bir swap sahəniz yoxdur\n"
"Davam edim?"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:168
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:169
#, fuzzy
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "Bir swap sahəsinə ehtiyacınız var"
-#: ../../install_interactive.pm_.c:91
+#: ../../install_interactive.pm_.c:92
msgid "Use free space"
msgstr "BoƟ sahəni istifadə et"
-#: ../../install_interactive.pm_.c:93
+#: ../../install_interactive.pm_.c:94
msgid "Not enough free space to allocate new partitions"
msgstr "Yeni bölmələr ĂŒĂ§ĂŒn boƟ sahə yoxdur"
-#: ../../install_interactive.pm_.c:101
+#: ../../install_interactive.pm_.c:102
msgid "Use existing partitions"
msgstr "Var olan bölmələri iƟlədimmi"
-#: ../../install_interactive.pm_.c:103
+#: ../../install_interactive.pm_.c:104
msgid "There is no existing partition to use"
msgstr "Bölmə cədvəli qurtarılmağa çalÄ±ĆŸÄ±lır"
-#: ../../install_interactive.pm_.c:110
+#: ../../install_interactive.pm_.c:111
msgid "Use the Windows partition for loopback"
msgstr "Loopback ĂŒĂ§ĂŒn Windows bölməsini iƟlət"
-#: ../../install_interactive.pm_.c:113
+#: ../../install_interactive.pm_.c:114
msgid "Which partition do you want to use for Linux4Win?"
msgstr "Linuks4Win'i qurmaq ĂŒĂ§ĂŒn hansı disk bölməsini istifadə edəcəksiniz?"
-#: ../../install_interactive.pm_.c:115
+#: ../../install_interactive.pm_.c:116
msgid "Choose the sizes"
msgstr "BöyĂŒklĂŒklərini seçin"
-#: ../../install_interactive.pm_.c:116
+#: ../../install_interactive.pm_.c:117
msgid "Root partition size in MB: "
msgstr "Kök (root) bölməsi böyĂŒklĂŒyĂŒ (Mb): "
-#: ../../install_interactive.pm_.c:117
+#: ../../install_interactive.pm_.c:118
msgid "Swap partition size in MB: "
msgstr "Swap sahəsi böyĂŒklĂŒyĂŒ (Mb): "
-#: ../../install_interactive.pm_.c:126
+#: ../../install_interactive.pm_.c:128
msgid "Use the free space on the Windows partition"
msgstr "Windows bölməsindəki boƟ sahəni iƟlət"
-#: ../../install_interactive.pm_.c:129
+#: ../../install_interactive.pm_.c:131
msgid "Which partition do you want to resize?"
msgstr "Hansı bölmənin böyĂŒklĂŒyĂŒnĂŒ dəyiƟdirəcəksiniz?"
-#: ../../install_interactive.pm_.c:131
+#: ../../install_interactive.pm_.c:133
msgid "Resizing Windows partition"
msgstr "Fat fayl sistemi ucları hesaplanır"
-#: ../../install_interactive.pm_.c:134
+#: ../../install_interactive.pm_.c:136
#, c-format
msgid ""
"The FAT resizer is unable to handle your partition, \n"
@@ -4289,7 +4394,7 @@ msgstr ""
"FAT tədqiqatçımız sizin bölĂŒmləri iƟlədə bilmir,\n"
"bu xəta oldu: %s"
-#: ../../install_interactive.pm_.c:137
+#: ../../install_interactive.pm_.c:139
msgid ""
"Your Windows partition is too fragmented. Please reboot your computer under "
"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
@@ -4298,7 +4403,7 @@ msgstr ""
"Sizin Windows bölĂŒmĂŒ çox dağınıqdır. DaxiƟ edirik, əvvəlcə birləƟdirin "
"(defraq)"
-#: ../../install_interactive.pm_.c:138
+#: ../../install_interactive.pm_.c:140
#, fuzzy
msgid ""
"WARNING!\n"
@@ -4318,56 +4423,56 @@ msgstr ""
"Ardından quruluma \n"
"davam edin. Verilərinizin yedəyini almağı da unutmayın!"
-#: ../../install_interactive.pm_.c:148
+#: ../../install_interactive.pm_.c:150
msgid "Which size do you want to keep for Windows on"
msgstr "Hansı sektora daĆŸÄ±maq istəyirsiniz?"
-#: ../../install_interactive.pm_.c:149
+#: ../../install_interactive.pm_.c:151
#, c-format
msgid "partition %s"
msgstr "bölmə %s"
-#: ../../install_interactive.pm_.c:156
+#: ../../install_interactive.pm_.c:158
#, c-format
msgid "FAT resizing failed: %s"
msgstr "FAT böyĂŒklĂŒyĂŒ dəyiƟdirilməsi bacarılmadı: %s"
-#: ../../install_interactive.pm_.c:171
+#: ../../install_interactive.pm_.c:173
msgid ""
"There is no FAT partition to resize or to use as loopback (or not enough "
"space left)"
msgstr "FAT bölməsi yoxdur ya da loopback ĂŒĂ§ĂŒn lazımi yer buraxılmayıb"
-#: ../../install_interactive.pm_.c:177
+#: ../../install_interactive.pm_.c:179
msgid "Erase entire disk"
msgstr "BĂŒtĂŒn diski sil"
-#: ../../install_interactive.pm_.c:177
+#: ../../install_interactive.pm_.c:179
msgid "Remove Windows(TM)"
msgstr "\"Windows\"u sil"
-#: ../../install_interactive.pm_.c:180
+#: ../../install_interactive.pm_.c:182
msgid "You have more than one hard drive, which one do you install linux on?"
msgstr ""
"Sizin birdən çox diskiniz var, linux qurmaq ĂŒĂ§ĂŒn hansını istifadə "
"edəcəksiniz?"
-#: ../../install_interactive.pm_.c:183
+#: ../../install_interactive.pm_.c:185
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr ""
"%s bölĂŒməsinin böyĂŒklĂŒyĂŒ dəyiƟdirildikdən sonra bu bölmədəki bĂŒtĂŒn "
"mə'lumatlar silinəcəkdir"
-#: ../../install_interactive.pm_.c:191
+#: ../../install_interactive.pm_.c:193
msgid "Custom disk partitioning"
msgstr "Hazırkı disk bölmələndirməsi"
-#: ../../install_interactive.pm_.c:195
+#: ../../install_interactive.pm_.c:197
msgid "Use fdisk"
msgstr "Fdisk istifadə et"
-#: ../../install_interactive.pm_.c:198
+#: ../../install_interactive.pm_.c:200
#, c-format
msgid ""
"You can now partition %s.\n"
@@ -4376,28 +4481,28 @@ msgstr ""
"Ä°ndi %s sabit diskinizi bölmələndirə bilərsiniz\n"
"İƟinizi bitirdiyinizdə `w' ilə qeyd etməyi unutmayın"
-#: ../../install_interactive.pm_.c:227
+#: ../../install_interactive.pm_.c:229
msgid "You don't have enough free space on your Windows partition"
msgstr "Heç Windows disk bölməniz yoxdur!"
-#: ../../install_interactive.pm_.c:243
+#: ../../install_interactive.pm_.c:245
msgid "I can't find any room for installing"
msgstr "Artıq bölmə əlavə edilə bilməz"
-#: ../../install_interactive.pm_.c:246
+#: ../../install_interactive.pm_.c:248
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr "DrakX bölmə sehirbazı bu yolu tapdı:"
-#: ../../install_interactive.pm_.c:250
+#: ../../install_interactive.pm_.c:252
#, c-format
msgid "Partitioning failed: %s"
msgstr "Bölmə cədvəli növĂŒ: %s"
-#: ../../install_interactive.pm_.c:260
+#: ../../install_interactive.pm_.c:262
msgid "Bringing up the network"
msgstr "ƞəbəkə fəallaƟdırılır"
-#: ../../install_interactive.pm_.c:265
+#: ../../install_interactive.pm_.c:267
msgid "Bringing down the network"
msgstr "ƞəbəkə dayandırılır"
@@ -4409,12 +4514,12 @@ msgstr ""
"Bir xəta oldu, fəqət necə dĂŒzəldiləcəyini bilmirəm.\n"
"Davam edin, riski sizə aitdir!"
-#: ../../install_steps.pm_.c:210
+#: ../../install_steps.pm_.c:211
#, c-format
msgid "Duplicate mount point %s"
msgstr "%s bağlama nöqtəsini çoxalt"
-#: ../../install_steps.pm_.c:379
+#: ../../install_steps.pm_.c:380
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -4426,12 +4531,12 @@ msgstr ""
"Əvvəldən Linuks qurulu bir sistemdə \"rpm -qpl Mandrake/RPMS/*.rpm\"'yi\n"
"istifadə edərək Cd-Rom'u yoxlayın.\n"
-#: ../../install_steps.pm_.c:451
+#: ../../install_steps.pm_.c:452
#, c-format
msgid "Welcome to %s"
msgstr "%s Sisteminə XoƟgəlmiƟsiniz"
-#: ../../install_steps.pm_.c:530 ../../install_steps.pm_.c:770
+#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:772
msgid "No floppy drive available"
msgstr "Disket sĂŒrĂŒcĂŒ yoxdur"
@@ -4463,69 +4568,69 @@ msgstr "Qurulum Sinifi"
msgid "Please choose one of the following classes of installation:"
msgstr "XahiƟ edirik aƟağıdakı qurulum siniflərindən birisini seçiniz:"
-#: ../../install_steps_gtk.pm_.c:243 ../../install_steps_interactive.pm_.c:694
+#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:678
msgid "Package Group Selection"
msgstr "Paket Qrup Seçkisi"
-#: ../../install_steps_gtk.pm_.c:276 ../../install_steps_interactive.pm_.c:709
+#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:693
msgid "Individual package selection"
msgstr "Fərdi paket seçkisi"
-#: ../../install_steps_gtk.pm_.c:299 ../../install_steps_interactive.pm_.c:633
+#: ../../install_steps_gtk.pm_.c:293 ../../install_steps_interactive.pm_.c:617
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Ümumi böyĂŒklĂŒk: %d / %d Mb"
-#: ../../install_steps_gtk.pm_.c:341
+#: ../../install_steps_gtk.pm_.c:335
msgid "Bad package"
msgstr "Xətalı paket"
-#: ../../install_steps_gtk.pm_.c:342
+#: ../../install_steps_gtk.pm_.c:336
#, c-format
msgid "Name: %s\n"
msgstr "Ad: %s\n"
-#: ../../install_steps_gtk.pm_.c:343
+#: ../../install_steps_gtk.pm_.c:337
#, c-format
msgid "Version: %s\n"
msgstr "BuraxılÄ±ĆŸ: %s\n"
-#: ../../install_steps_gtk.pm_.c:344
+#: ../../install_steps_gtk.pm_.c:338
#, c-format
msgid "Size: %d KB\n"
msgstr "BöyĂŒklĂŒyĂŒ: %d KB\n"
-#: ../../install_steps_gtk.pm_.c:345
+#: ../../install_steps_gtk.pm_.c:339
#, c-format
msgid "Importance: %s\n"
msgstr "Əhəmiyyət: %s\n"
-#: ../../install_steps_gtk.pm_.c:367
+#: ../../install_steps_gtk.pm_.c:361
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr "Bu paketi seçə bilməzsiniz, Ă§ĂŒnki qurmaq ĂŒĂ§ĂŒn yer çatmır."
-#: ../../install_steps_gtk.pm_.c:372
+#: ../../install_steps_gtk.pm_.c:366
msgid "The following packages are going to be installed"
msgstr "AƟağıdakı paketlər qurulacaqdır"
-#: ../../install_steps_gtk.pm_.c:373
+#: ../../install_steps_gtk.pm_.c:367
msgid "The following packages are going to be removed"
msgstr "AƟağıdakı paketlər sistemdən silinəcəklər"
-#: ../../install_steps_gtk.pm_.c:385
+#: ../../install_steps_gtk.pm_.c:379
msgid "You can't select/unselect this package"
msgstr "Bu paketi seçə bilməzsiniz/sistemdən çıxarda bilməzsınız"
-#: ../../install_steps_gtk.pm_.c:397
+#: ../../install_steps_gtk.pm_.c:391
msgid "This is a mandatory package, it can't be unselected"
msgstr "Bu lazımlı bir paketdir, sistemdən çıxardıla bilməz"
-#: ../../install_steps_gtk.pm_.c:399
+#: ../../install_steps_gtk.pm_.c:393
msgid "You can't unselect this package. It is already installed"
msgstr "Bu paketi sistemdən çıxarda bilməzsınız. Artıq qurulmuƟdur."
-#: ../../install_steps_gtk.pm_.c:402
+#: ../../install_steps_gtk.pm_.c:396
msgid ""
"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
@@ -4533,77 +4638,77 @@ msgstr ""
"Bu paket yenilənməlidir\n"
"Sistemdən çıxarmaq mövzusunda ciddisiniz?"
-#: ../../install_steps_gtk.pm_.c:405
+#: ../../install_steps_gtk.pm_.c:399
msgid "You can't unselect this package. It must be upgraded"
msgstr "Bu paketi sistemdən çıxarda bilməzsiniz. Yenilənməlidir"
-#: ../../install_steps_gtk.pm_.c:410
+#: ../../install_steps_gtk.pm_.c:404
msgid "Show automatically selected packages"
msgstr "Avtomatik seçili paketləri göstər"
-#: ../../install_steps_gtk.pm_.c:411 ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_gtk.pm_.c:405 ../../install_steps_interactive.pm_.c:255
#: ../../install_steps_interactive.pm_.c:259
-#: ../../standalone/drakbackup_.c:3600
+#: ../../standalone/drakbackup_.c:4257
msgid "Install"
msgstr "Qurulum"
-#: ../../install_steps_gtk.pm_.c:414
+#: ../../install_steps_gtk.pm_.c:408
#, fuzzy
msgid "Load/Save on floppy"
msgstr "Disketə qeyd et"
-#: ../../install_steps_gtk.pm_.c:415
+#: ../../install_steps_gtk.pm_.c:409
#, fuzzy
msgid "Updating package selection"
msgstr "Paket seçkilərini saxla"
-#: ../../install_steps_gtk.pm_.c:420
+#: ../../install_steps_gtk.pm_.c:414
#, fuzzy
msgid "Minimal install"
msgstr "Qurulumdan çıx"
-#: ../../install_steps_gtk.pm_.c:435 ../../install_steps_interactive.pm_.c:538
+#: ../../install_steps_gtk.pm_.c:429 ../../install_steps_interactive.pm_.c:522
msgid "Choose the packages you want to install"
msgstr "Qurmaq istədiyiniz paketləri seçin"
-#: ../../install_steps_gtk.pm_.c:451 ../../install_steps_interactive.pm_.c:778
+#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:762
msgid "Installing"
msgstr "Qurulur"
-#: ../../install_steps_gtk.pm_.c:457
+#: ../../install_steps_gtk.pm_.c:451
msgid "Estimating"
msgstr "Təxmini olaraq hesaplanır"
-#: ../../install_steps_gtk.pm_.c:464
+#: ../../install_steps_gtk.pm_.c:458
msgid "Time remaining "
msgstr "Qalan mĂŒddət"
-#: ../../install_steps_gtk.pm_.c:476
+#: ../../install_steps_gtk.pm_.c:470
msgid "Please wait, preparing installation..."
msgstr "XahiƟ edirik gözləyin, qurulum hazırlanır"
-#: ../../install_steps_gtk.pm_.c:560
+#: ../../install_steps_gtk.pm_.c:554
#, c-format
msgid "%d packages"
msgstr "%d paket"
-#: ../../install_steps_gtk.pm_.c:565
+#: ../../install_steps_gtk.pm_.c:559
#, c-format
msgid "Installing package %s"
msgstr "%s paketi qurulur"
-#: ../../install_steps_gtk.pm_.c:602 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:802
+#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:786
#: ../../standalone/drakautoinst_.c:202
msgid "Accept"
msgstr "Qəbul Et"
-#: ../../install_steps_gtk.pm_.c:602 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:802
+#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:786
msgid "Refuse"
msgstr "Rədd Et"
-#: ../../install_steps_gtk.pm_.c:603 ../../install_steps_interactive.pm_.c:803
+#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:787
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4617,17 +4722,17 @@ msgstr ""
"\"%s\" adlı Cd-Romu sĂŒrĂŒcĂŒnĂŒzə taxın və OLDU'ya basın.\n"
"Əgər Cd-Rom əlinizdə deyilsə bu Cd-Rom'dan qurmamaq ĂŒĂ§ĂŒn Ä°MTÄ°NA ET'ə basın."
-#: ../../install_steps_gtk.pm_.c:617 ../../install_steps_gtk.pm_.c:621
-#: ../../install_steps_interactive.pm_.c:815
-#: ../../install_steps_interactive.pm_.c:819
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_gtk.pm_.c:615
+#: ../../install_steps_interactive.pm_.c:799
+#: ../../install_steps_interactive.pm_.c:803
msgid "Go on anyway?"
msgstr "Yenə də davam edək?"
-#: ../../install_steps_gtk.pm_.c:617 ../../install_steps_interactive.pm_.c:815
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:799
msgid "There was an error ordering packages:"
msgstr "Paketləri istərkən bir xəta oldu:"
-#: ../../install_steps_gtk.pm_.c:621 ../../install_steps_interactive.pm_.c:819
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:803
msgid "There was an error installing packages:"
msgstr "Paketlər qurulurkən bir xəta oldu:"
@@ -4947,7 +5052,7 @@ msgid "Are you sure you refuse the licence?"
msgstr ""
#: ../../install_steps_interactive.pm_.c:211
-#: ../../install_steps_interactive.pm_.c:1038
+#: ../../install_steps_interactive.pm_.c:1023
#: ../../standalone/keyboarddrake_.c:31
msgid "Keyboard"
msgstr "Klaviatura"
@@ -4999,11 +5104,11 @@ msgstr "Paket seçkilərini saxla"
msgid "Please choose the type of your mouse."
msgstr "XahiƟ edirik siçanınızın növĂŒnĂŒ seçin."
-#: ../../install_steps_interactive.pm_.c:281 ../../standalone/mousedrake_.c:59
+#: ../../install_steps_interactive.pm_.c:281 ../../standalone/mousedrake_.c:60
msgid "Mouse Port"
msgstr "Siçan Qapısı"
-#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:61
msgid "Please choose on which serial port your mouse is connected to."
msgstr "Siçanınızın bağlı olduğu serial Qapıyı seçin."
@@ -5035,117 +5140,90 @@ msgstr "IDE qapıları qurulur"
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:336
+#: ../../install_steps_interactive.pm_.c:338
msgid "No partition available"
msgstr "uyğun bölmə tapılmadı"
-#: ../../install_steps_interactive.pm_.c:339
+#: ../../install_steps_interactive.pm_.c:341
msgid "Scanning partitions to find mount points"
msgstr "Bağlama nöqtələri ĂŒĂ§ĂŒn bölmələr daranır"
-#: ../../install_steps_interactive.pm_.c:347
+#: ../../install_steps_interactive.pm_.c:349
msgid "Choose the mount points"
msgstr "Bağlama nöqtələrini seçin"
-#: ../../install_steps_interactive.pm_.c:366
-#, c-format
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to not allow DrakX to modify the partition table.\n"
-"(the error is %s)\n"
-"\n"
-"Do you agree to loose all the partitions?\n"
-msgstr ""
-"Bölmə cədvəlinizi oxuya bilmirəm, dəyəsən biraz xarab olub:-(\n"
-"Xarab olmuƟ bolmələri dĂŒzəltməyə çalÄ±ĆŸacam.\n"
-"Amma bĂŒtĂŒn mə'lumatlar itəcəkdir.\n"
-"BaƟqa bir yol isə DrakXin bölmə cədvəllərini yoxlamasını "
-"passivləƟdirməkdir.\n"
-"(xəta %s)\n"
-"\n"
-"BĂŒtĂŒn bölmələri itirmək istəyirsiniz?\n"
-
#: ../../install_steps_interactive.pm_.c:379
msgid ""
-"DiskDrake failed to read correctly the partition table.\n"
-"Continue at your own risk!"
-msgstr ""
-"DiskDrake bölmə cədvəlini oxumağı bacara bilmədi.\n"
-"ÖzĂŒnĂŒz davam edə bilərsiniz."
-
-#: ../../install_steps_interactive.pm_.c:396
-msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:405
+#: ../../install_steps_interactive.pm_.c:388
#, fuzzy
msgid "No root partition found to perform an upgrade"
msgstr "ƞəkilləndiriləcək disk bölmələrini seçin"
-#: ../../install_steps_interactive.pm_.c:406
+#: ../../install_steps_interactive.pm_.c:389
msgid "Root Partition"
msgstr "Kök (root) Bölməsi"
-#: ../../install_steps_interactive.pm_.c:407
+#: ../../install_steps_interactive.pm_.c:390
msgid "What is the root partition (/) of your system?"
msgstr "Sisteminizin kök (/) bölməsi hansıdır?"
-#: ../../install_steps_interactive.pm_.c:421
+#: ../../install_steps_interactive.pm_.c:404
msgid "You need to reboot for the partition table modifications to take place"
msgstr ""
"Bölmə cəvəlindəki dəyiƟikliklərin daxil olması ĂŒĂ§ĂŒn kompĂŒterinizi yenidən "
"baƟlatmalısınız."
-#: ../../install_steps_interactive.pm_.c:445
+#: ../../install_steps_interactive.pm_.c:428
msgid "Choose the partitions you want to format"
msgstr "ƞəkilləndiriləcək disk bölmələrini seçin"
-#: ../../install_steps_interactive.pm_.c:446
+#: ../../install_steps_interactive.pm_.c:429
msgid "Check bad blocks?"
msgstr "Xətalı bloklar sınansınmı?"
-#: ../../install_steps_interactive.pm_.c:473
+#: ../../install_steps_interactive.pm_.c:456
msgid "Formatting partitions"
msgstr "Bölmələr Ɵəkilləndirilir"
-#: ../../install_steps_interactive.pm_.c:475
+#: ../../install_steps_interactive.pm_.c:458
#, c-format
msgid "Creating and formatting file %s"
msgstr "%s faylı yaradılır və Ɵəkilləndirilir"
-#: ../../install_steps_interactive.pm_.c:480
+#: ../../install_steps_interactive.pm_.c:463
#, c-format
msgid ""
"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
"you can loose data)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:482
+#: ../../install_steps_interactive.pm_.c:465
msgid "Not enough swap space to fulfill installation, please add some"
msgstr "Qurulumu bitirmək ĂŒĂ§ĂŒn lazımi sahə yoxdur, xahiƟ edirik əlavə edin"
-#: ../../install_steps_interactive.pm_.c:489
+#: ../../install_steps_interactive.pm_.c:472
#, fuzzy
msgid "Looking for available packages and rebuilding rpm database..."
msgstr "Mövcud olan paketlər axtarılır."
-#: ../../install_steps_interactive.pm_.c:490
+#: ../../install_steps_interactive.pm_.c:473
msgid "Looking for available packages..."
msgstr "Mövcud olan paketlər axtarılır."
-#: ../../install_steps_interactive.pm_.c:493
+#: ../../install_steps_interactive.pm_.c:476
#, fuzzy
msgid "Looking at packages already installed..."
msgstr "Bu paketi sistemdən çıxarda bilməzsınız. Artıq qurulmuƟdur."
-#: ../../install_steps_interactive.pm_.c:497
+#: ../../install_steps_interactive.pm_.c:480
msgid "Finding packages to upgrade..."
msgstr "GĂŒncəllənəcək paketlar tapılır"
-#: ../../install_steps_interactive.pm_.c:515
+#: ../../install_steps_interactive.pm_.c:498
#, c-format
msgid ""
"Your system does not have enough space left for installation or upgrade (%d "
@@ -5153,63 +5231,63 @@ msgid ""
msgstr ""
"Sisteminizdə qurulum ya da gĂŒncəlləmə ĂŒĂ§ĂŒn lazımi boƟ yer yoxdur(%d > %d)"
-#: ../../install_steps_interactive.pm_.c:550
+#: ../../install_steps_interactive.pm_.c:534
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:553
+#: ../../install_steps_interactive.pm_.c:537
#, fuzzy
msgid "Load from floppy"
msgstr "Disketdən geri çağır"
-#: ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_interactive.pm_.c:539
#, fuzzy
msgid "Loading from floppy"
msgstr "Disketdən geri çağır"
-#: ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_interactive.pm_.c:539
#, fuzzy
msgid "Package selection"
msgstr "Paket Qrup Seçkisi"
-#: ../../install_steps_interactive.pm_.c:560
+#: ../../install_steps_interactive.pm_.c:544
#, fuzzy
msgid "Insert a floppy containing package selection"
msgstr "%s sĂŒrĂŒcĂŒsĂŒnə bir disket taxın"
-#: ../../install_steps_interactive.pm_.c:572
+#: ../../install_steps_interactive.pm_.c:556
msgid "Save on floppy"
msgstr "Disketə qeyd et"
-#: ../../install_steps_interactive.pm_.c:646
+#: ../../install_steps_interactive.pm_.c:630
msgid "Selected size is larger than available space"
msgstr "Seçili böyĂŒklĂŒk var olandan daha böyĂŒkdĂŒr"
-#: ../../install_steps_interactive.pm_.c:660
+#: ../../install_steps_interactive.pm_.c:644
msgid "Type of install"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:661
+#: ../../install_steps_interactive.pm_.c:645
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:664
+#: ../../install_steps_interactive.pm_.c:648
msgid "With X"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:666
+#: ../../install_steps_interactive.pm_.c:650
msgid "With basic documentation (recommended!)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:667
+#: ../../install_steps_interactive.pm_.c:651
msgid "Truly minimal install (especially no urpmi)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:752
+#: ../../install_steps_interactive.pm_.c:736
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -5220,16 +5298,16 @@ msgstr ""
"CD'lərdən bə'ziləi əksik isə, onları seçili vəziyyətdən çıxardıb OLDU'ya "
"basın."
-#: ../../install_steps_interactive.pm_.c:757
+#: ../../install_steps_interactive.pm_.c:741
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "\"%s\" adlı Cd-Rom"
-#: ../../install_steps_interactive.pm_.c:778
+#: ../../install_steps_interactive.pm_.c:762
msgid "Preparing installation"
msgstr "Qurulum hazırlanır"
-#: ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:771
#, c-format
msgid ""
"Installing package %s\n"
@@ -5238,21 +5316,21 @@ msgstr ""
"%s paketi qurulur\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:833
+#: ../../install_steps_interactive.pm_.c:817
msgid "Post-install configuration"
msgstr "Qurulum sonrası qurğular"
-#: ../../install_steps_interactive.pm_.c:839
+#: ../../install_steps_interactive.pm_.c:823
#, fuzzy, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "%s sĂŒrĂŒcĂŒsĂŒnə bir disket taxın"
-#: ../../install_steps_interactive.pm_.c:845
+#: ../../install_steps_interactive.pm_.c:829
#, fuzzy, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "%s sĂŒrĂŒcĂŒsĂŒnə boƟ bir disket yerləƟdirin"
-#: ../../install_steps_interactive.pm_.c:865
+#: ../../install_steps_interactive.pm_.c:849
msgid ""
"You now have the opportunity to download encryption software.\n"
"\n"
@@ -5322,7 +5400,7 @@ msgstr ""
"USA\n"
"ĂŒnvanına yazınız."
-#: ../../install_steps_interactive.pm_.c:904
+#: ../../install_steps_interactive.pm_.c:888
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
"have been released after the distribution was released. They may\n"
@@ -5334,164 +5412,164 @@ msgid ""
"Do you want to install the updates ?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:919
+#: ../../install_steps_interactive.pm_.c:903
#, fuzzy
msgid ""
"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr "Əks ĂŒnvanına bağlantı qurulur"
-#: ../../install_steps_interactive.pm_.c:924
+#: ../../install_steps_interactive.pm_.c:908
msgid "Choose a mirror from which to get the packages"
msgstr "Paketleri almaq ĂŒĂ§ĂŒn bir əks ĂŒnvanı seçin"
-#: ../../install_steps_interactive.pm_.c:933
+#: ../../install_steps_interactive.pm_.c:917
msgid "Contacting the mirror to get the list of available packages..."
msgstr "Əks ĂŒnvanına bağlantı qurulur"
-#: ../../install_steps_interactive.pm_.c:960
+#: ../../install_steps_interactive.pm_.c:945
msgid "Which is your timezone?"
msgstr "Sisteminiz hansı məqsədlə istifadə ediləcək?"
-#: ../../install_steps_interactive.pm_.c:965
+#: ../../install_steps_interactive.pm_.c:950
#, fuzzy
msgid "Hardware clock set to GMT"
msgstr "Avadanlıq saatınız GMT-yə göra quruludur mu?"
-#: ../../install_steps_interactive.pm_.c:966
+#: ../../install_steps_interactive.pm_.c:951
msgid "Automatic time synchronization (using NTP)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:973
+#: ../../install_steps_interactive.pm_.c:958
#, fuzzy
msgid "NTP Server"
msgstr "NIS Verici"
-#: ../../install_steps_interactive.pm_.c:1007
-#: ../../install_steps_interactive.pm_.c:1015
+#: ../../install_steps_interactive.pm_.c:992
+#: ../../install_steps_interactive.pm_.c:1000
msgid "Remote CUPS server"
msgstr "Uzaq CUPS vericisi"
-#: ../../install_steps_interactive.pm_.c:1008
+#: ../../install_steps_interactive.pm_.c:993
msgid "No printer"
msgstr "Çap Edicisiz"
-#: ../../install_steps_interactive.pm_.c:1025
+#: ../../install_steps_interactive.pm_.c:1010
#, fuzzy
msgid "Do you have an ISA sound card?"
msgstr "BaƟqa var?"
-#: ../../install_steps_interactive.pm_.c:1027
+#: ../../install_steps_interactive.pm_.c:1012
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1029
+#: ../../install_steps_interactive.pm_.c:1014
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1034 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1019 ../../steps.pm_.c:27
msgid "Summary"
msgstr "MĂŒndəricat"
-#: ../../install_steps_interactive.pm_.c:1037
+#: ../../install_steps_interactive.pm_.c:1022
msgid "Mouse"
msgstr "Siçan"
-#: ../../install_steps_interactive.pm_.c:1039
+#: ../../install_steps_interactive.pm_.c:1024
msgid "Timezone"
msgstr "Vaxt Dilimi"
-#: ../../install_steps_interactive.pm_.c:1040 ../../printerdrake.pm_.c:2728
-#: ../../printerdrake.pm_.c:2814
+#: ../../install_steps_interactive.pm_.c:1025 ../../printerdrake.pm_.c:2937
+#: ../../printerdrake.pm_.c:3026
msgid "Printer"
msgstr "Çap Edici"
-#: ../../install_steps_interactive.pm_.c:1042
+#: ../../install_steps_interactive.pm_.c:1027
msgid "ISDN card"
msgstr "ISDN kartı"
-#: ../../install_steps_interactive.pm_.c:1045
-#: ../../install_steps_interactive.pm_.c:1047
+#: ../../install_steps_interactive.pm_.c:1030
+#: ../../install_steps_interactive.pm_.c:1032
msgid "Sound card"
msgstr "Səs kartı"
-#: ../../install_steps_interactive.pm_.c:1049
+#: ../../install_steps_interactive.pm_.c:1034
msgid "TV card"
msgstr "TV kartı"
-#: ../../install_steps_interactive.pm_.c:1089
-#: ../../install_steps_interactive.pm_.c:1114
-#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1074
+#: ../../install_steps_interactive.pm_.c:1099
+#: ../../install_steps_interactive.pm_.c:1103
msgid "LDAP"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1090
-#: ../../install_steps_interactive.pm_.c:1114
-#: ../../install_steps_interactive.pm_.c:1127
+#: ../../install_steps_interactive.pm_.c:1075
+#: ../../install_steps_interactive.pm_.c:1099
+#: ../../install_steps_interactive.pm_.c:1112
#, fuzzy
msgid "NIS"
msgstr "NIS istifadə et"
-#: ../../install_steps_interactive.pm_.c:1091
-#: ../../install_steps_interactive.pm_.c:1114
-#: ../../install_steps_interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1141
+#: ../../install_steps_interactive.pm_.c:1076
+#: ../../install_steps_interactive.pm_.c:1099
+#: ../../install_steps_interactive.pm_.c:1120
+#: ../../install_steps_interactive.pm_.c:1126
#, fuzzy
msgid "Windows Domain"
msgstr "NIS sahəsi"
-#: ../../install_steps_interactive.pm_.c:1092
-#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1077
+#: ../../install_steps_interactive.pm_.c:1099
#, fuzzy
msgid "Local files"
msgstr "Yerli Çap Edici"
-#: ../../install_steps_interactive.pm_.c:1101
-#: ../../install_steps_interactive.pm_.c:1102 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1086
+#: ../../install_steps_interactive.pm_.c:1087 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Root parolunu qur"
-#: ../../install_steps_interactive.pm_.c:1103
+#: ../../install_steps_interactive.pm_.c:1088
msgid "No password"
msgstr "Parolsuz"
-#: ../../install_steps_interactive.pm_.c:1108
+#: ../../install_steps_interactive.pm_.c:1093
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr "Bu parol çox sadədir (en az %d xarakter boyunda olmalıdır)"
-#: ../../install_steps_interactive.pm_.c:1114 ../../network/modem.pm_.c:49
+#: ../../install_steps_interactive.pm_.c:1099 ../../network/modem.pm_.c:49
#: ../../standalone/drakconnect_.c:625 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Tanıtma"
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1107
#, fuzzy
msgid "Authentication LDAP"
msgstr "Tanıtma"
-#: ../../install_steps_interactive.pm_.c:1123
+#: ../../install_steps_interactive.pm_.c:1108
msgid "LDAP Base dn"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1124
+#: ../../install_steps_interactive.pm_.c:1109
#, fuzzy
msgid "LDAP Server"
msgstr "Verici"
-#: ../../install_steps_interactive.pm_.c:1130
+#: ../../install_steps_interactive.pm_.c:1115
#, fuzzy
msgid "Authentication NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1116
msgid "NIS Domain"
msgstr "NIS sahəsi"
-#: ../../install_steps_interactive.pm_.c:1132
+#: ../../install_steps_interactive.pm_.c:1117
msgid "NIS Server"
msgstr "NIS Verici"
-#: ../../install_steps_interactive.pm_.c:1138
+#: ../../install_steps_interactive.pm_.c:1123
msgid ""
"For this to work for a W2K PDC, you will probably need to have the admin "
"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
@@ -5507,21 +5585,21 @@ msgid ""
"good."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1140
+#: ../../install_steps_interactive.pm_.c:1125
#, fuzzy
msgid "Authentication Windows Domain"
msgstr "Tanıtma"
-#: ../../install_steps_interactive.pm_.c:1142
+#: ../../install_steps_interactive.pm_.c:1127
#, fuzzy
msgid "Domain Admin User Name"
msgstr "Sahə(domain) adı"
-#: ../../install_steps_interactive.pm_.c:1143
+#: ../../install_steps_interactive.pm_.c:1128
msgid "Domain Admin Password"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1178
+#: ../../install_steps_interactive.pm_.c:1163
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
"depending on the normal bootloader. This is useful if you don't want to "
@@ -5552,19 +5630,19 @@ msgstr ""
"yerləƟdirin\n"
"və \"OLDU\" basın."
-#: ../../install_steps_interactive.pm_.c:1194
+#: ../../install_steps_interactive.pm_.c:1179
msgid "First floppy drive"
msgstr "Ä°lk disket sĂŒrĂŒcĂŒ"
-#: ../../install_steps_interactive.pm_.c:1195
+#: ../../install_steps_interactive.pm_.c:1180
msgid "Second floppy drive"
msgstr "Ä°kinci disket sĂŒrĂŒcĂŒ"
-#: ../../install_steps_interactive.pm_.c:1196 ../../printerdrake.pm_.c:2277
+#: ../../install_steps_interactive.pm_.c:1181 ../../printerdrake.pm_.c:2470
msgid "Skip"
msgstr "Nəzərə Alma"
-#: ../../install_steps_interactive.pm_.c:1201
+#: ../../install_steps_interactive.pm_.c:1186
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5594,7 +5672,7 @@ msgstr ""
"və \"OLDU\" basın.\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1207
+#: ../../install_steps_interactive.pm_.c:1192
msgid ""
"\n"
"\n"
@@ -5603,28 +5681,28 @@ msgid ""
"because XFS needs a very large driver)."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1215
+#: ../../install_steps_interactive.pm_.c:1200
msgid "Sorry, no floppy drive available"
msgstr "BaÄŸÄ±ĆŸlayın, disket sĂŒrĂŒcĂŒ yoxdur"
-#: ../../install_steps_interactive.pm_.c:1219
+#: ../../install_steps_interactive.pm_.c:1204
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "AçılÄ±ĆŸ disketi yaratmaq ĂŒĂ§ĂŒn istifadə ediləcək disket sĂŒrĂŒcĂŒyĂŒ seçin"
-#: ../../install_steps_interactive.pm_.c:1223
+#: ../../install_steps_interactive.pm_.c:1208
#, fuzzy, c-format
msgid "Insert a floppy in %s"
msgstr "%s sĂŒrĂŒcĂŒsĂŒnə bir disket taxın"
-#: ../../install_steps_interactive.pm_.c:1226
+#: ../../install_steps_interactive.pm_.c:1211
msgid "Creating bootdisk..."
msgstr "AçılÄ±ĆŸ disketi yaradılır"
-#: ../../install_steps_interactive.pm_.c:1233
+#: ../../install_steps_interactive.pm_.c:1218
msgid "Preparing bootloader..."
msgstr "AçılÄ±ĆŸ yĂŒkləyici hazırlanır"
-#: ../../install_steps_interactive.pm_.c:1244
+#: ../../install_steps_interactive.pm_.c:1229
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5632,11 +5710,11 @@ msgid ""
" need to use BootX to boot your machine"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1250
+#: ../../install_steps_interactive.pm_.c:1235
msgid "Do you want to use aboot?"
msgstr "aboot istifadə etmək istəyirsiniz?"
-#: ../../install_steps_interactive.pm_.c:1253
+#: ../../install_steps_interactive.pm_.c:1238
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -5644,17 +5722,17 @@ msgstr ""
"aboot qurulumunda xata, \n"
"ilk disk bölməsini yox etsə belə yenə də qurulmasını istəyirsiniz?"
-#: ../../install_steps_interactive.pm_.c:1260
+#: ../../install_steps_interactive.pm_.c:1245
#, fuzzy
msgid "Installing bootloader"
msgstr "Sistem yĂŒkləyicini qur"
-#: ../../install_steps_interactive.pm_.c:1266
+#: ../../install_steps_interactive.pm_.c:1251
msgid "Installation of bootloader failed. The following error occured:"
msgstr "AçılÄ±ĆŸ yĂŒkləyicisi qurulumu iflas etdi. Xəta:"
-#: ../../install_steps_interactive.pm_.c:1274
-#, fuzzy, c-format
+#: ../../install_steps_interactive.pm_.c:1259
+#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
" enable the bootloader. If you don't see the bootloader prompt at\n"
@@ -5666,21 +5744,21 @@ msgstr ""
"Siz Open FÄ°rmware açılÄ±ĆŸ avadanlığınızı açılÄ±ĆŸ yĂŒkləyicisini\n"
"fəallaƟdırmaq ĂŒĂ§ĂŒn dəyiƟdirməli ola bilərsiniz. Əmr-Seçənək-O-F dĂŒymələrini\n"
" yenidən baƟlarkən basın və bunları girin:\n"
-" setenv boot-device $of_boot,\\\\:tbxi\n"
+" setenv boot-device %s,\\\\:tbxi\n"
" Sonra da bunları yazın: shut-down\n"
"Bir sonrakı baƟlanğıcda açılÄ±ĆŸ yĂŒkləyicisi sətirini görməlisiniz."
-#: ../../install_steps_interactive.pm_.c:1308
+#: ../../install_steps_interactive.pm_.c:1293
#: ../../standalone/drakautoinst_.c:79
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "%s sĂŒrĂŒcĂŒsĂŒnə boƟ bir disket yerləƟdirin"
-#: ../../install_steps_interactive.pm_.c:1312
+#: ../../install_steps_interactive.pm_.c:1297
msgid "Creating auto install floppy..."
msgstr "Avtomatik qurulum disketi hazırlanır"
-#: ../../install_steps_interactive.pm_.c:1323
+#: ../../install_steps_interactive.pm_.c:1308
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -5690,7 +5768,7 @@ msgstr ""
"\n"
"Həqiqətən də çıxmaq istəyirsiniz?"
-#: ../../install_steps_interactive.pm_.c:1334
+#: ../../install_steps_interactive.pm_.c:1319
#, fuzzy, c-format
msgid ""
"Congratulations, installation is complete.\n"
@@ -5716,15 +5794,15 @@ msgstr ""
"Sisteminizin qurğuları haqqında daha geniƟ bilgiyi Linuks Mandrake \n"
"Ä°stifadəçi Kitabcığında tapa bilərsiniz."
-#: ../../install_steps_interactive.pm_.c:1347
+#: ../../install_steps_interactive.pm_.c:1332
msgid "http://www.mandrakelinux.com/en/90errata.php3"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1352
+#: ../../install_steps_interactive.pm_.c:1337
msgid "Generate auto install floppy"
msgstr "Avtomatik qurulum disketi hazırlanır"
-#: ../../install_steps_interactive.pm_.c:1354
+#: ../../install_steps_interactive.pm_.c:1339
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -5738,15 +5816,15 @@ msgstr ""
"\n"
"Bu qurulumu takrar etmək istəyə bilərsiniz axı.\n"
-#: ../../install_steps_interactive.pm_.c:1359
+#: ../../install_steps_interactive.pm_.c:1344
msgid "Automated"
msgstr "AvtomatlaƟdırılmÄ±ĆŸ"
-#: ../../install_steps_interactive.pm_.c:1359
+#: ../../install_steps_interactive.pm_.c:1344
msgid "Replay"
msgstr "Təkrarla"
-#: ../../install_steps_interactive.pm_.c:1362
+#: ../../install_steps_interactive.pm_.c:1347
msgid "Save packages selection"
msgstr "Paket seçkilərini saxla"
@@ -5755,7 +5833,8 @@ msgstr "Paket seçkilərini saxla"
msgid "Mandrake Linux Installation %s"
msgstr "Linuks-Mandrake Qurulumu %s"
-#: ../../install_steps_newt.pm_.c:34
+#. -PO This string must fit in a 80-char wide text screen
+#: ../../install_steps_newt.pm_.c:35
msgid ""
" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
msgstr ""
@@ -5774,22 +5853,22 @@ msgstr ""
msgid "Choose a file"
msgstr "Monitorunuzu seçin"
-#: ../../interactive.pm_.c:317
+#: ../../interactive.pm_.c:320
msgid "Advanced"
msgstr "Ətraflı"
-#: ../../interactive.pm_.c:318
+#: ../../interactive.pm_.c:321
msgid "Basic"
msgstr ""
-#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:155
-#: ../../printerdrake.pm_.c:1990
+#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:158
+#: ../../printerdrake.pm_.c:2124
msgid "<- Previous"
msgstr "<- Əvvəlki"
#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
-#: ../../standalone/drakbackup_.c:3464 ../../standalone/drakbackup_.c:3491
-#: ../../standalone/drakbackup_.c:3517
+#: ../../standalone/drakbackup_.c:4112 ../../standalone/drakbackup_.c:4139
+#: ../../standalone/drakbackup_.c:4169 ../../standalone/drakbackup_.c:4195
#, fuzzy
msgid "Next"
msgstr "Sonrakı ->"
@@ -5857,385 +5936,385 @@ msgstr ""
msgid "Re-submit"
msgstr ""
-#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:152 ../../keyboard.pm_.c:187
msgid "Czech (QWERTZ)"
msgstr "Çex dili (QWERTZ)"
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:153 ../../keyboard.pm_.c:189
msgid "German"
msgstr "Almanca"
-#: ../../keyboard.pm_.c:175
+#: ../../keyboard.pm_.c:154
msgid "Dvorak"
msgstr "Dvorak"
-#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:218
+#: ../../keyboard.pm_.c:155 ../../keyboard.pm_.c:197
msgid "Spanish"
msgstr "Ä°spanca"
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:156 ../../keyboard.pm_.c:198
msgid "Finnish"
msgstr "Fincə"
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:220
+#: ../../keyboard.pm_.c:157 ../../keyboard.pm_.c:199
msgid "French"
msgstr "Fransızca"
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:158 ../../keyboard.pm_.c:231
msgid "Norwegian"
msgstr "Norveçcə"
-#: ../../keyboard.pm_.c:180
+#: ../../keyboard.pm_.c:159
msgid "Polish"
msgstr "Polyakca"
-#: ../../keyboard.pm_.c:181 ../../keyboard.pm_.c:260
+#: ../../keyboard.pm_.c:160 ../../keyboard.pm_.c:239
msgid "Russian"
msgstr "Rusca"
-#: ../../keyboard.pm_.c:183 ../../keyboard.pm_.c:262
+#: ../../keyboard.pm_.c:162 ../../keyboard.pm_.c:241
msgid "Swedish"
msgstr "İsveçcə"
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:278
+#: ../../keyboard.pm_.c:163 ../../keyboard.pm_.c:257
msgid "UK keyboard"
msgstr "İngiliz (UK) klaviaturası"
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:279
+#: ../../keyboard.pm_.c:164 ../../keyboard.pm_.c:258
msgid "US keyboard"
msgstr "Amerikan (US) klaviaturası"
-#: ../../keyboard.pm_.c:187
+#: ../../keyboard.pm_.c:166
#, fuzzy
msgid "Albanian"
msgstr "Farsca"
-#: ../../keyboard.pm_.c:188
+#: ../../keyboard.pm_.c:167
msgid "Armenian (old)"
msgstr "Ermenicə (köhnə) "
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:168
msgid "Armenian (typewriter)"
msgstr "Ermenicə (yazı maĆŸÄ±nı)"
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:169
msgid "Armenian (phonetic)"
msgstr "Ermenicə (fonetik)"
-#: ../../keyboard.pm_.c:195
+#: ../../keyboard.pm_.c:174
msgid "Azerbaidjani (latin)"
msgstr "Azərbaycanca (latın)"
-#: ../../keyboard.pm_.c:197
+#: ../../keyboard.pm_.c:176
msgid "Belgian"
msgstr "Belçika dili"
-#: ../../keyboard.pm_.c:198
+#: ../../keyboard.pm_.c:177
#, fuzzy
msgid "Bengali"
msgstr "fəallaƟdır"
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:178
#, fuzzy
msgid "Bulgarian (phonetic)"
msgstr "Ermenicə (fonetik)"
-#: ../../keyboard.pm_.c:200
+#: ../../keyboard.pm_.c:179
#, fuzzy
msgid "Bulgarian (BDS)"
msgstr "Bulqarca"
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:180
msgid "Brazilian (ABNT-2)"
msgstr "Brazilya dili (ABNT-2)"
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:183
#, fuzzy
msgid "Bosnian"
msgstr "Estoniya dili"
-#: ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:184
msgid "Belarusian"
msgstr "Belarusca"
-#: ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:185
msgid "Swiss (German layout)"
msgstr "Ä°sveçcə (Alman sırası)"
-#: ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:186
msgid "Swiss (French layout)"
msgstr "Ä°sveçcə (Fransız sırası)"
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:188
msgid "Czech (QWERTY)"
msgstr "Çex dili (QWERTY)"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:190
msgid "German (no dead keys)"
msgstr "Almanca (ölĂŒ dĂŒymələr olmasın)"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:191
msgid "Devanagari"
msgstr ""
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:192
msgid "Danish"
msgstr "Danimarka dili"
-#: ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:193
msgid "Dvorak (US)"
msgstr "Dvorak (US)"
-#: ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:194
msgid "Dvorak (Norwegian)"
msgstr "Dvorak (Norveçcə)"
-#: ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:195
#, fuzzy
msgid "Dvorak (Swedish)"
msgstr "Dvorak (US)"
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:196
msgid "Estonian"
msgstr "Estoniya dili"
-#: ../../keyboard.pm_.c:221
+#: ../../keyboard.pm_.c:200
msgid "Georgian (\"Russian\" layout)"
msgstr "GĂŒrcĂŒ dili (\"Rus\" sırası)"
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:201
msgid "Georgian (\"Latin\" layout)"
msgstr "GĂŒrcĂŒ dili (\"Latın\" sırası)"
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:202
msgid "Greek"
msgstr "Yunanca"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:203
msgid "Gujarati"
msgstr ""
-#: ../../keyboard.pm_.c:225
+#: ../../keyboard.pm_.c:204
msgid "Gurmukhi"
msgstr ""
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:205
msgid "Hungarian"
msgstr "Macarca"
-#: ../../keyboard.pm_.c:227
+#: ../../keyboard.pm_.c:206
msgid "Croatian"
msgstr "Xırvatca"
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:207
msgid "Israeli"
msgstr "Ä°srail"
-#: ../../keyboard.pm_.c:229
+#: ../../keyboard.pm_.c:208
msgid "Israeli (Phonetic)"
msgstr "Ä°srail (Fonetik)"
-#: ../../keyboard.pm_.c:230
+#: ../../keyboard.pm_.c:209
msgid "Iranian"
msgstr "Farsca"
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:210
msgid "Icelandic"
msgstr "Ä°zlandiya dili"
-#: ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:211
msgid "Italian"
msgstr "Ä°talyanca"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:212
msgid "Inuktitut"
msgstr ""
-#: ../../keyboard.pm_.c:234
+#: ../../keyboard.pm_.c:213
msgid "Japanese 106 keys"
msgstr "Yaponca 106 dĂŒyməli"
-#: ../../keyboard.pm_.c:237
+#: ../../keyboard.pm_.c:216
msgid "Korean keyboard"
msgstr "Koreya klaviaturası"
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:217
msgid "Latin American"
msgstr "Latın Amerika dili"
-#: ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:218
#, fuzzy
msgid "Laotian"
msgstr "Yeri"
-#: ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:219
msgid "Lithuanian AZERTY (old)"
msgstr "Litvaniya dili AZERTY (köhnə)"
-#: ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:221
msgid "Lithuanian AZERTY (new)"
msgstr "Litvanya dili AZERTY (yeni)"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:222
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Litvanya dili \"number row\" QWERTY"
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:223
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "Litvanya dili \"Fonetik\" QWERTY"
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:224
#, fuzzy
msgid "Latvian"
msgstr "Yeri"
-#: ../../keyboard.pm_.c:246
+#: ../../keyboard.pm_.c:225
msgid "Macedonian"
msgstr "Makedoniya dili"
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:226
msgid "Myanmar (Burmese)"
msgstr ""
-#: ../../keyboard.pm_.c:248
+#: ../../keyboard.pm_.c:227
#, fuzzy
msgid "Mongolian (cyrillic)"
msgstr "Azərbaycanca (kiril)"
-#: ../../keyboard.pm_.c:249
+#: ../../keyboard.pm_.c:228
msgid "Maltese (UK)"
msgstr ""
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:229
msgid "Maltese (US)"
msgstr ""
-#: ../../keyboard.pm_.c:251
+#: ../../keyboard.pm_.c:230
msgid "Dutch"
msgstr "Hollandiya dili"
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:232
msgid "Polish (qwerty layout)"
msgstr "Polyakca (QWERTY sırası)"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:233
msgid "Polish (qwertz layout)"
msgstr "Polyakca (QWERTZ sırası)"
-#: ../../keyboard.pm_.c:255
+#: ../../keyboard.pm_.c:234
msgid "Portuguese"
msgstr "Portuqalca"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:235
msgid "Canadian (Quebec)"
msgstr "Fransızca (Kanada/Quebec)"
-#: ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:237
#, fuzzy
msgid "Romanian (qwertz)"
msgstr "Rusca (Yawerty)"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:238
#, fuzzy
msgid "Romanian (qwerty)"
msgstr "Rusca (Yawerty)"
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:240
msgid "Russian (Yawerty)"
msgstr "Rusca (Yawerty)"
-#: ../../keyboard.pm_.c:263
+#: ../../keyboard.pm_.c:242
msgid "Slovenian"
msgstr "Slovencə"
-#: ../../keyboard.pm_.c:264
+#: ../../keyboard.pm_.c:243
msgid "Slovakian (QWERTZ)"
msgstr "Slovakca (QWERTZ)"
-#: ../../keyboard.pm_.c:265
+#: ../../keyboard.pm_.c:244
msgid "Slovakian (QWERTY)"
msgstr "Slovakca (QWERTY)"
-#: ../../keyboard.pm_.c:267
+#: ../../keyboard.pm_.c:246
#, fuzzy
msgid "Serbian (cyrillic)"
msgstr "Azərbaycanca (kiril)"
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:248
msgid "Tamil (Unicode)"
msgstr ""
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:249
msgid "Tamil (TSCII)"
msgstr ""
-#: ../../keyboard.pm_.c:271
+#: ../../keyboard.pm_.c:250
msgid "Thai keyboard"
msgstr "Thai klaviatura"
-#: ../../keyboard.pm_.c:273
+#: ../../keyboard.pm_.c:252
#, fuzzy
msgid "Tajik keyboard"
msgstr "Thai klaviatura"
-#: ../../keyboard.pm_.c:274
+#: ../../keyboard.pm_.c:253
msgid "Turkish (traditional \"F\" model)"
msgstr "TĂŒrkcə (ənənəvi \"F\" klaviatura)"
-#: ../../keyboard.pm_.c:275
+#: ../../keyboard.pm_.c:254
msgid "Turkish (modern \"Q\" model)"
msgstr "TĂŒrkcə (mĂŒasir \"Q\" klaviatura)"
-#: ../../keyboard.pm_.c:277
+#: ../../keyboard.pm_.c:256
msgid "Ukrainian"
msgstr "Ukrayna dili"
-#: ../../keyboard.pm_.c:280
+#: ../../keyboard.pm_.c:259
msgid "US keyboard (international)"
msgstr "Amerikan (US) klaviaturası (beynəlmiləl)"
-#: ../../keyboard.pm_.c:281
+#: ../../keyboard.pm_.c:260
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "Vyetnam dili \"numeric row\" QWERTY"
-#: ../../keyboard.pm_.c:282
+#: ../../keyboard.pm_.c:261
#, fuzzy
msgid "Yugoslavian (latin)"
msgstr "Yugoslavca (latın/kiril)"
-#: ../../keyboard.pm_.c:289
+#: ../../keyboard.pm_.c:268
msgid "Right Alt key"
msgstr ""
-#: ../../keyboard.pm_.c:290
+#: ../../keyboard.pm_.c:269
msgid "Both Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:291
+#: ../../keyboard.pm_.c:270
msgid "Control and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:292
+#: ../../keyboard.pm_.c:271
msgid "CapsLock key"
msgstr ""
-#: ../../keyboard.pm_.c:293
+#: ../../keyboard.pm_.c:272
msgid "Ctrl and Alt keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:294
+#: ../../keyboard.pm_.c:273
msgid "Alt and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:295
+#: ../../keyboard.pm_.c:274
msgid "\"Menu\" key"
msgstr ""
-#: ../../keyboard.pm_.c:296
+#: ../../keyboard.pm_.c:275
msgid "Left \"Windows\" key"
msgstr ""
-#: ../../keyboard.pm_.c:297
+#: ../../keyboard.pm_.c:276
msgid "Right \"Windows\" key"
msgstr ""
@@ -6293,11 +6372,11 @@ msgstr "Sıravi PS2 Çərxli Siçan"
msgid "GlidePoint"
msgstr "GlidePoint"
-#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:63
+#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:65
msgid "Kensington Thinking Mouse"
msgstr "Kensington Thinking Mouse"
-#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:59
+#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:61
msgid "Genius NetMouse"
msgstr "Genius NetMouse"
@@ -6305,115 +6384,124 @@ msgstr "Genius NetMouse"
msgid "Genius NetScroll"
msgstr "Genius NetScroll"
-#: ../../mouse.pm_.c:43 ../../mouse.pm_.c:68
+#: ../../mouse.pm_.c:39 ../../mouse.pm_.c:48
+#, fuzzy
+msgid "Microsoft Explorer"
+msgstr "Microsoft IntelliMouse"
+
+#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:70
msgid "1 button"
msgstr "1 dĂŒymə"
-#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:51
+#: ../../mouse.pm_.c:45 ../../mouse.pm_.c:53
msgid "Generic 2 Button Mouse"
msgstr "Sıravi 2 DĂŒyməli Siçan"
-#: ../../mouse.pm_.c:46
+#: ../../mouse.pm_.c:47
msgid "Wheel"
msgstr "Çərx"
-#: ../../mouse.pm_.c:49
+#: ../../mouse.pm_.c:51
msgid "serial"
msgstr "serial"
-#: ../../mouse.pm_.c:52
+#: ../../mouse.pm_.c:54
msgid "Generic 3 Button Mouse"
msgstr "Sıravi 3 DĂŒyməli Siçan"
-#: ../../mouse.pm_.c:53
+#: ../../mouse.pm_.c:55
msgid "Microsoft IntelliMouse"
msgstr "Microsoft IntelliMouse"
-#: ../../mouse.pm_.c:54
+#: ../../mouse.pm_.c:56
msgid "Logitech MouseMan"
msgstr "Logitech MouseMan"
-#: ../../mouse.pm_.c:55
+#: ../../mouse.pm_.c:57
msgid "Mouse Systems"
msgstr "Mouse Systems"
-#: ../../mouse.pm_.c:57
+#: ../../mouse.pm_.c:59
msgid "Logitech CC Series"
msgstr "Logitech CC Series"
-#: ../../mouse.pm_.c:58
+#: ../../mouse.pm_.c:60
msgid "Logitech MouseMan+/FirstMouse+"
msgstr "Logitech MouseMan+/FirstMouse+"
-#: ../../mouse.pm_.c:60
+#: ../../mouse.pm_.c:62
msgid "MM Series"
msgstr "MM Series"
-#: ../../mouse.pm_.c:61
+#: ../../mouse.pm_.c:63
msgid "MM HitTablet"
msgstr "MM HitTablet"
-#: ../../mouse.pm_.c:62
+#: ../../mouse.pm_.c:64
msgid "Logitech Mouse (serial, old C7 type)"
msgstr "Logitech mouse (serial ya da köhnə C7 növĂŒ)"
-#: ../../mouse.pm_.c:66
+#: ../../mouse.pm_.c:68
msgid "busmouse"
msgstr "busmouse"
-#: ../../mouse.pm_.c:69
+#: ../../mouse.pm_.c:71
msgid "2 buttons"
msgstr "2 dĂŒyməli"
-#: ../../mouse.pm_.c:70
+#: ../../mouse.pm_.c:72
msgid "3 buttons"
msgstr "3 dĂŒyməli"
-#: ../../mouse.pm_.c:73
+#: ../../mouse.pm_.c:75
msgid "none"
msgstr "heç biri"
-#: ../../mouse.pm_.c:75
+#: ../../mouse.pm_.c:77
msgid "No mouse"
msgstr "Siçansızs"
-#: ../../mouse.pm_.c:445
+#: ../../mouse.pm_.c:482
msgid "Please test the mouse"
msgstr "XahiƟ edirik siçanınızı seçin"
-#: ../../mouse.pm_.c:446
+#: ../../mouse.pm_.c:483
msgid "To activate the mouse,"
msgstr "Siçanınızı iƟə salmaq ĂŒĂ§ĂŒn,"
-#: ../../mouse.pm_.c:447
+#: ../../mouse.pm_.c:484
msgid "MOVE YOUR WHEEL!"
msgstr "TƏKƏRİ OYNADIN!"
-#: ../../my_gtk.pm_.c:156
+#: ../../my_gtk.pm_.c:64
+msgid "-adobe-utopia-regular-r-*-*-25-*-*-*-p-*-iso8859-*,*-r-*"
+msgstr ""
+
+#: ../../my_gtk.pm_.c:159
msgid "Finish"
msgstr "Qurtar"
-#: ../../my_gtk.pm_.c:156 ../../printerdrake.pm_.c:1992
+#: ../../my_gtk.pm_.c:159 ../../printerdrake.pm_.c:2126
msgid "Next ->"
msgstr "Sonrakı ->"
-#: ../../my_gtk.pm_.c:284
+#: ../../my_gtk.pm_.c:287
msgid "Is this correct?"
msgstr "Doğrudur?"
-#: ../../my_gtk.pm_.c:356 ../../services.pm_.c:222
+#: ../../my_gtk.pm_.c:359 ../../services.pm_.c:222
msgid "Info"
msgstr "Mə'lumat"
-#: ../../my_gtk.pm_.c:377
+#: ../../my_gtk.pm_.c:380
msgid "Expand Tree"
msgstr "Ağacı Aç"
-#: ../../my_gtk.pm_.c:378
+#: ../../my_gtk.pm_.c:381
msgid "Collapse Tree"
msgstr "Ağacı Qapat"
-#: ../../my_gtk.pm_.c:379
+#: ../../my_gtk.pm_.c:382
msgid "Toggle between flat and group sorted"
msgstr "Otaq və grup sıralaması arasında gəz"
@@ -6451,6 +6539,75 @@ msgstr "pppoe istifadə et"
msgid "use pptp"
msgstr "pptpe istifadə et"
+#: ../../network/drakfirewall.pm_.c:12
+#, fuzzy
+msgid "Web Server"
+msgstr "Verici"
+
+#: ../../network/drakfirewall.pm_.c:17
+#, fuzzy
+msgid "Domain Name Server"
+msgstr "Sahə(domain) adı"
+
+#: ../../network/drakfirewall.pm_.c:32
+#, fuzzy
+msgid "Mail Server"
+msgstr "Databeyz"
+
+#: ../../network/drakfirewall.pm_.c:37
+#, fuzzy
+msgid "POP and IMAP Server"
+msgstr "Verici"
+
+#: ../../network/drakfirewall.pm_.c:111
+#, fuzzy
+msgid "No network card"
+msgstr "Ɵəbəkə kartı tapılmadı"
+
+#: ../../network/drakfirewall.pm_.c:129
+#, fuzzy
+msgid ""
+"drakfirewall configurator\n"
+"\n"
+"This configures a personal firewall for this Mandrake Linux machine.\n"
+"For a powerful dedicated firewall solution, please look to the\n"
+"specialized MandrakeSecurity Firewall distribution."
+msgstr ""
+"tinyfirewall configurator\n"
+"\n"
+"Bu, Linuks Mandrake sisteminiz ĂŒĂ§ĂŒn Ɵəxsi bir firewall quraƟdıracaqdır.\n"
+"Daha gĂŒclĂŒ və e'tibarlı sistem ĂŒĂ§ĂŒn xahiƟ edirik xĂŒsusi MandrakeSecurity "
+"Firewall\n"
+"buraxılÄ±ĆŸÄ±nı tədqiq edin."
+
+#: ../../network/drakfirewall.pm_.c:147
+msgid "Which services would you like to allow the Internet to connect to?"
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:148
+msgid ""
+"You can enter miscellaneous ports. \n"
+"Valid examples are: 139/tcp 139/udp.\n"
+"Have a look at /etc/services for information."
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:154
+#, c-format
+msgid ""
+"Invalid port given: %s.\n"
+"The proper format is \"port/tcp\" or \"port/udp\", \n"
+"where port is between 1 and 65535."
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:162
+msgid "Everything (no firewall)"
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:164
+#, fuzzy
+msgid "Other ports"
+msgstr "Qapıları sına"
+
#: ../../network/ethernet.pm_.c:37
msgid ""
"Which dhcp client do you want to use?\n"
@@ -6467,7 +6624,7 @@ msgstr ""
"Sisteminizdə heç bir eternet Ɵəbəkə adapteri tapıla bilmədi.\n"
"Bu bağlantı Ɵəklini qura bilmərəm."
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:247
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:240
msgid "Choose the network interface"
msgstr "ƞəbəkə ara ĂŒzĂŒnĂŒ seçin"
@@ -6480,7 +6637,7 @@ msgstr "Ä°nternetə bağlanmaq ĂŒĂ§ĂŒn Ɵəbəkə adapteri seçin."
msgid "no network card found"
msgstr "Ɵəbəkə kartı tapılmadı"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:366
msgid "Configuring network"
msgstr "ƞəbəkə Qurğuları"
@@ -6495,7 +6652,7 @@ msgstr ""
"Məsələn``kompĂŒteradı.sahəadı.com''.\n"
"Əgə Ɵəbəkə keçidi istifadə edirsinizsə bunun da IP nömrəsini girməlisiniz."
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:370
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:371
msgid "Host name"
msgstr "Ev sahibi adı"
@@ -6794,13 +6951,13 @@ msgstr "Qurulacaq profili seçin"
msgid "Use auto detection"
msgstr "Avtomatik təsbit iƟlət"
-#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2930
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:3151
#: ../../standalone/drakconnect_.c:274 ../../standalone/drakconnect_.c:277
#: ../../standalone/drakfloppy_.c:145
msgid "Expert Mode"
msgstr "Usta Modu"
-#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:283
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:386
msgid "Detecting devices..."
msgstr "Avadanlıqlar tanınır..."
@@ -6965,11 +7122,11 @@ msgstr "AvtomatlaƟdırılmÄ±ĆŸ IP"
msgid "Start at boot"
msgstr "AçılÄ±ĆŸda baƟladılır"
-#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:753
+#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:860
msgid "IP address should be in format 1.2.3.4"
msgstr "IP ĂŒnvanı 1.2.3.4 Ɵəklində olmalıdır"
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:367
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -6980,43 +7137,55 @@ msgstr ""
"Məsələn``kompĂŒteradı.sahəadı.com''.\n"
"Əgər Ɵəbəkə keçidi istifadə edirsinizsə bunun da IP nömrəsini girməlisiniz."
-#: ../../network/network.pm_.c:371
+#: ../../network/network.pm_.c:372
msgid "DNS server"
msgstr "DNS verici"
-#: ../../network/network.pm_.c:372
+#: ../../network/network.pm_.c:373
#, c-format
msgid "Gateway (e.g. %s)"
msgstr ""
-#: ../../network/network.pm_.c:374
+#: ../../network/network.pm_.c:375
msgid "Gateway device"
msgstr "Keçit avadanlığı"
-#: ../../network/network.pm_.c:386
+#: ../../network/network.pm_.c:387
msgid "Proxies configuration"
msgstr "Vəkil vericilər quraƟdırılması"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:388
msgid "HTTP proxy"
msgstr "HTTP vəkil verici"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:389
msgid "FTP proxy"
msgstr "FTP vəkil verici"
-#: ../../network/network.pm_.c:389
+#: ../../network/network.pm_.c:390
msgid "Track network card id (useful for laptops)"
msgstr ""
-#: ../../network/network.pm_.c:392
+#: ../../network/network.pm_.c:393
msgid "Proxy should be http://..."
msgstr "Vəkil verici http://... Ɵəklində olmalıdır."
-#: ../../network/network.pm_.c:393
+#: ../../network/network.pm_.c:394
msgid "Proxy should be ftp://..."
msgstr "Vəkil verici ftp://... olmalıdır."
+#: ../../network/shorewall.pm_.c:24
+msgid "Firewalling configuration detected!"
+msgstr "Oddan divar (Firewall) quruluƟu tapıldı!"
+
+#: ../../network/shorewall.pm_.c:25
+msgid ""
+"Warning! An existing firewalling configuration has been detected. You may "
+"need some manual fix after installation."
+msgstr ""
+"Diqqət! Var olan Firewall qurğusu tapıldı. YĂŒkləmədən sonra bir az əl "
+"gəzdirə bilərsiniz."
+
#: ../../network/tools.pm_.c:41
msgid "Internet configuration"
msgstr "İnternet qurğuları"
@@ -7125,15 +7294,15 @@ msgstr "Hesap Parolu"
msgid "United Kingdom"
msgstr ""
-#: ../../partition_table.pm_.c:606
+#: ../../partition_table.pm_.c:602
msgid "mount failed: "
msgstr "bağlama iflas etdi: "
-#: ../../partition_table.pm_.c:670
+#: ../../partition_table.pm_.c:666
msgid "Extended partition not supported on this platform"
msgstr "Bu platformda geniƟlədilmiƟ bölmələr dəstəklənmir"
-#: ../../partition_table.pm_.c:688
+#: ../../partition_table.pm_.c:684
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
@@ -7144,21 +7313,21 @@ msgstr ""
"daĆŸÄ±yaraq\n"
"məsələni həll edə bilərsiniz."
-#: ../../partition_table.pm_.c:778
+#: ../../partition_table.pm_.c:774
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "%s faylından qurtarılÄ±ĆŸda xəta: %s"
-#: ../../partition_table.pm_.c:780
+#: ../../partition_table.pm_.c:776
msgid "Bad backup file"
msgstr "Xətalı yedəkləmə faylı"
-#: ../../partition_table.pm_.c:802
+#: ../../partition_table.pm_.c:798
#, c-format
msgid "Error writing to file %s"
msgstr "%s faylına yazarkən xəta oldu"
-#: ../../partition_table/raw.pm_.c:187
+#: ../../partition_table/raw.pm_.c:189
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
@@ -7204,158 +7373,162 @@ msgstr ""
msgid "PDQ - Print, Don't Queue"
msgstr ""
-#: ../../printer.pm_.c:35 ../../printer.pm_.c:854
+#: ../../printer.pm_.c:34 ../../printer.pm_.c:1125
msgid "CUPS"
msgstr ""
-#: ../../printer.pm_.c:36
+#: ../../printer.pm_.c:35
msgid "LPRng"
msgstr ""
-#: ../../printer.pm_.c:37
+#: ../../printer.pm_.c:36
msgid "LPD"
msgstr ""
-#: ../../printer.pm_.c:38
+#: ../../printer.pm_.c:37
msgid "PDQ"
msgstr ""
-#: ../../printer.pm_.c:50
+#: ../../printer.pm_.c:49
msgid "Local printer"
msgstr "Yerli Çap Edici"
-#: ../../printer.pm_.c:51
+#: ../../printer.pm_.c:50
msgid "Remote printer"
msgstr "Uzaq Çap Edici"
-#: ../../printer.pm_.c:52
+#: ../../printer.pm_.c:51
#, fuzzy
msgid "Printer on remote CUPS server"
msgstr "Uzaq CUPS vericisi"
-#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:776
+#: ../../printer.pm_.c:52 ../../printerdrake.pm_.c:883
#, fuzzy
msgid "Printer on remote lpd server"
msgstr "Uzaq çap edici vericisi(lpd)"
-#: ../../printer.pm_.c:54
+#: ../../printer.pm_.c:53
#, fuzzy
msgid "Network printer (TCP/Socket)"
msgstr "ƞəbəkə Çap Edicisi (soket) "
-#: ../../printer.pm_.c:55
+#: ../../printer.pm_.c:54
#, fuzzy
msgid "Printer on SMB/Windows 95/98/NT server"
msgstr "SMB/Windows 95/98/NT"
-#: ../../printer.pm_.c:56
+#: ../../printer.pm_.c:55
#, fuzzy
msgid "Printer on NetWare server"
msgstr "Çap Edici Vericisi"
-#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:780
+#: ../../printer.pm_.c:56 ../../printerdrake.pm_.c:887
#, fuzzy
msgid "Enter a printer device URI"
msgstr "Çap Edici avadanlığı URI"
-#: ../../printer.pm_.c:58
+#: ../../printer.pm_.c:57
msgid "Pipe job into a command"
msgstr ""
-#: ../../printer.pm_.c:487 ../../printer.pm_.c:678 ../../printer.pm_.c:1000
-#: ../../printerdrake.pm_.c:2070 ../../printerdrake.pm_.c:3189
+#: ../../printer.pm_.c:324 ../../printer.pm_.c:366 ../../printer.pm_.c:533
+msgid "Unknown Model"
+msgstr ""
+
+#: ../../printer.pm_.c:735 ../../printer.pm_.c:926 ../../printer.pm_.c:1318
+#: ../../printerdrake.pm_.c:2260 ../../printerdrake.pm_.c:3414
msgid "Unknown model"
msgstr ""
-#: ../../printer.pm_.c:515
+#: ../../printer.pm_.c:763
#, fuzzy
msgid "Local Printers"
msgstr "Yerli Çap Edici"
-#: ../../printer.pm_.c:517 ../../printer.pm_.c:855
+#: ../../printer.pm_.c:765 ../../printer.pm_.c:1126
#, fuzzy
msgid "Remote Printers"
msgstr "Uzaq Çap Edici"
-#: ../../printer.pm_.c:524 ../../printerdrake.pm_.c:301
+#: ../../printer.pm_.c:772 ../../printerdrake.pm_.c:404
#, c-format
msgid " on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:527 ../../printerdrake.pm_.c:303
+#: ../../printer.pm_.c:775 ../../printerdrake.pm_.c:406
#, c-format
msgid ", USB printer \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:532
+#: ../../printer.pm_.c:780
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:535
+#: ../../printer.pm_.c:783
msgid ", multi-function device on USB"
msgstr ""
-#: ../../printer.pm_.c:537
+#: ../../printer.pm_.c:785
msgid ", multi-function device on HP JetDirect"
msgstr ""
-#: ../../printer.pm_.c:539
+#: ../../printer.pm_.c:787
msgid ", multi-function device"
msgstr ""
-#: ../../printer.pm_.c:542
+#: ../../printer.pm_.c:790
#, fuzzy, c-format
msgid ", printing to %s"
msgstr "%s faylına yazarkən xəta oldu"
-#: ../../printer.pm_.c:544
+#: ../../printer.pm_.c:792
#, c-format
msgid " on LPD server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:546
+#: ../../printer.pm_.c:794
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ""
-#: ../../printer.pm_.c:550
+#: ../../printer.pm_.c:798
#, c-format
msgid " on SMB/Windows server \"%s\", share \"%s\""
msgstr ""
-#: ../../printer.pm_.c:554
+#: ../../printer.pm_.c:802
#, c-format
msgid " on Novell server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:556
+#: ../../printer.pm_.c:804
#, c-format
msgid ", using command %s"
msgstr ""
-#: ../../printer.pm_.c:675 ../../printerdrake.pm_.c:1540
+#: ../../printer.pm_.c:923 ../../printerdrake.pm_.c:1656
msgid "Raw printer (No driver)"
msgstr ""
-#: ../../printer.pm_.c:824
+#: ../../printer.pm_.c:1095
#, fuzzy, c-format
msgid "(on %s)"
msgstr "(modul %s)"
-#: ../../printer.pm_.c:826
+#: ../../printer.pm_.c:1097
msgid "(on this machine)"
msgstr ""
-#: ../../printer.pm_.c:851
+#: ../../printer.pm_.c:1122
#, fuzzy, c-format
msgid "On CUPS server \"%s\""
msgstr "CUPS verici IP"
-#: ../../printer.pm_.c:857 ../../printerdrake.pm_.c:2851
-#: ../../printerdrake.pm_.c:2862 ../../printerdrake.pm_.c:3078
-#: ../../printerdrake.pm_.c:3130 ../../printerdrake.pm_.c:3156
-#: ../../printerdrake.pm_.c:3326 ../../printerdrake.pm_.c:3328
+#: ../../printer.pm_.c:1128 ../../printerdrake.pm_.c:3071
+#: ../../printerdrake.pm_.c:3082 ../../printerdrake.pm_.c:3303
+#: ../../printerdrake.pm_.c:3355 ../../printerdrake.pm_.c:3381
+#: ../../printerdrake.pm_.c:3556 ../../printerdrake.pm_.c:3558
msgid " (Default)"
msgstr " (Əsas)"
@@ -7382,12 +7555,12 @@ msgstr ""
msgid "Printer auto-detection (Local, TCP/Socket, and SMB printers)"
msgstr ""
-#: ../../printerdrake.pm_.c:84 ../../printerdrake.pm_.c:2914
+#: ../../printerdrake.pm_.c:84 ../../printerdrake.pm_.c:3135
#, fuzzy
msgid "CUPS configuration"
msgstr "Yerli ƞəbəkə QuraƟdırılması"
-#: ../../printerdrake.pm_.c:85 ../../printerdrake.pm_.c:2915
+#: ../../printerdrake.pm_.c:85 ../../printerdrake.pm_.c:3136
#, fuzzy
msgid "Specify CUPS server"
msgstr "Uzaq CUPS vericisi"
@@ -7418,7 +7591,7 @@ msgstr ""
msgid "The IP address should look like 192.168.1.20"
msgstr "IP ĂŒnvanı 1.2.3.4 Ɵəklində olmalıdır"
-#: ../../printerdrake.pm_.c:95 ../../printerdrake.pm_.c:987
+#: ../../printerdrake.pm_.c:95 ../../printerdrake.pm_.c:1094
#, fuzzy
msgid "The port number should be an integer!"
msgstr "Qapı nömrəsi rəqəmlə yazılmalıdır"
@@ -7427,7 +7600,7 @@ msgstr "Qapı nömrəsi rəqəmlə yazılmalıdır"
msgid "CUPS server IP"
msgstr "CUPS verici IP"
-#: ../../printerdrake.pm_.c:103 ../../printerdrake.pm_.c:1007
+#: ../../printerdrake.pm_.c:103 ../../printerdrake.pm_.c:1114
msgid "Port"
msgstr "Qapı"
@@ -7436,13 +7609,130 @@ msgstr "Qapı"
msgid "Automatic CUPS configuration"
msgstr "Qurulum Tərzi QuraƟdırılması"
-#: ../../printerdrake.pm_.c:183 ../../printerdrake.pm_.c:192
-#: ../../printerdrake.pm_.c:2897 ../../printerdrake.pm_.c:3017
+#: ../../printerdrake.pm_.c:177 ../../printerdrake.pm_.c:247
+#: ../../printerdrake.pm_.c:1529 ../../printerdrake.pm_.c:1533
+#: ../../printerdrake.pm_.c:1651 ../../printerdrake.pm_.c:2203
+#: ../../printerdrake.pm_.c:2356 ../../printerdrake.pm_.c:2415
+#: ../../printerdrake.pm_.c:2488 ../../printerdrake.pm_.c:2509
+#: ../../printerdrake.pm_.c:2699 ../../printerdrake.pm_.c:2740
+#: ../../printerdrake.pm_.c:2745 ../../printerdrake.pm_.c:2779
+#: ../../printerdrake.pm_.c:2784 ../../printerdrake.pm_.c:2821
+#: ../../printerdrake.pm_.c:2874 ../../printerdrake.pm_.c:2894
+#: ../../printerdrake.pm_.c:2908 ../../printerdrake.pm_.c:2942
+#: ../../printerdrake.pm_.c:2988 ../../printerdrake.pm_.c:3006
+#: ../../printerdrake.pm_.c:3095 ../../printerdrake.pm_.c:3169
+#: ../../printerdrake.pm_.c:3471 ../../printerdrake.pm_.c:3526
+#: ../../printerdrake.pm_.c:3579 ../../standalone/printerdrake_.c:57
+#, fuzzy
+msgid "Printerdrake"
+msgstr "Çap Edici"
+
+#: ../../printerdrake.pm_.c:178
+#, fuzzy
+msgid "Checking your system..."
+msgstr "Hansı çap edici sistemini istifadə etmək istəyirsiniz?"
+
+#: ../../printerdrake.pm_.c:186
+msgid ""
+"There are no printers found which are directly connected to your machine"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:198
+#, fuzzy
+msgid ""
+"The following printers\n"
+"\n"
+msgstr "AƟağıdakı paketlər sistemdən silinəcəklər"
+
+#: ../../printerdrake.pm_.c:199
+#, fuzzy
+msgid ""
+"The following printer\n"
+"\n"
+msgstr "AƟağıdakı paketlər sistemdən silinəcəklər"
+
+#: ../../printerdrake.pm_.c:201
+msgid ""
+"\n"
+"and one unknown printer are "
+msgstr ""
+
+#: ../../printerdrake.pm_.c:203
+#, c-format
+msgid ""
+"\n"
+"and %d unknown printers are "
+msgstr ""
+
+#: ../../printerdrake.pm_.c:207
+msgid ""
+"\n"
+"are "
+msgstr ""
+
+#: ../../printerdrake.pm_.c:208
+msgid ""
+"\n"
+"is "
+msgstr ""
+
+#: ../../printerdrake.pm_.c:210
+#, fuzzy
+msgid "directly connected to your system"
+msgstr "Siseminizdə Ɵəbəkə adapteri yoxdur!"
+
+#: ../../printerdrake.pm_.c:213
+msgid ""
+"\n"
+"There is one unknown printer directly connected to your system"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:215
+#, c-format
+msgid ""
+"\n"
+"There are %d unknown printers directly connected to your system"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:221
+#, fuzzy
+msgid " (Make sure that all your printers are connected and turned on).\n"
+msgstr "Modeminizin hansı serial qapıya bağlı olduğunu seçiniz"
+
+#: ../../printerdrake.pm_.c:235
+msgid ""
+"Do you want to enable printing on the printers mentioned above or on "
+"printers in the local network?\n"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:236
+#, fuzzy
+msgid "Do you want to enable printing on printers in the local network?\n"
+msgstr "Çap edicini sınamaq istəyirsiniz?"
+
+#: ../../printerdrake.pm_.c:238
+#, fuzzy
+msgid "Do you want to enable printing on the printers mentioned above?\n"
+msgstr "Bağlantınızı açılÄ±ĆŸda baƟlatmaq istəyirsiniz?"
+
+#: ../../printerdrake.pm_.c:239
+msgid "Are you sure that you want to set up printing on this machine?\n"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:240
+#, c-format
+msgid ""
+"NOTE: Depending on the printer model and the printing system up to %d MB of "
+"additional software will be installed."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:269 ../../printerdrake.pm_.c:278
+#: ../../printerdrake.pm_.c:3117 ../../printerdrake.pm_.c:3242
#, fuzzy
msgid "Add a new printer"
msgstr "Çap Edicisiz"
-#: ../../printerdrake.pm_.c:184
+#: ../../printerdrake.pm_.c:270
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7455,7 +7745,7 @@ msgid ""
"connection types."
msgstr ""
-#: ../../printerdrake.pm_.c:193
+#: ../../printerdrake.pm_.c:280
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7464,7 +7754,7 @@ msgid ""
"computer, connected directly to the network or to a remote Windows machine.\n"
"\n"
"If you have printer(s) connected to this machine, Please plug it/them in on "
-"this computer and turn it/them on so that they can be auto-detected. Also "
+"this computer and turn it/them on so that it/they can be auto-detected. Also "
"your network printer(s) and you Windows machines must be connected and "
"turned on.\n"
"\n"
@@ -7477,7 +7767,22 @@ msgid ""
"want to set up your printer(s) now."
msgstr ""
-#: ../../printerdrake.pm_.c:202
+#: ../../printerdrake.pm_.c:289 ../../printerdrake.pm_.c:306
+msgid ""
+"\n"
+"Welcome to the Printer Setup Wizard\n"
+"\n"
+"This wizard will help you to install your printer(s) connected to this "
+"computer.\n"
+"\n"
+"If you have printer(s) connected to this machine, Please plug it/them in on "
+"this computer and turn it/them on so that it/they can be auto-detected.\n"
+"\n"
+" Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
+"want to set up your printer(s) now."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:297
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7486,7 +7791,7 @@ msgid ""
"computer or connected directly to the network.\n"
"\n"
"If you have printer(s) connected to this machine, Please plug it/them in on "
-"this computer and turn it/them on so that they can be auto-detected. Also "
+"this computer and turn it/them on so that it/they can be auto-detected. Also "
"your network printer(s) must be connected and turned on.\n"
"\n"
"Note that auto-detecting printers on the network takes longer than the auto-"
@@ -7497,26 +7802,26 @@ msgid ""
"want to set up your printer(s) now."
msgstr ""
-#: ../../printerdrake.pm_.c:213
+#: ../../printerdrake.pm_.c:315
#, fuzzy
msgid "Auto-detect printers connected to this machine"
msgstr "Uzaq Çap Edici"
-#: ../../printerdrake.pm_.c:215
+#: ../../printerdrake.pm_.c:318
msgid "Auto-detect printers connected directly to the local network"
msgstr ""
-#: ../../printerdrake.pm_.c:218
+#: ../../printerdrake.pm_.c:321
msgid "Auto-detect printers connected to machines running Microsoft Windows"
msgstr ""
-#: ../../printerdrake.pm_.c:245 ../../printerdrake.pm_.c:459
-#: ../../printerdrake.pm_.c:484
+#: ../../printerdrake.pm_.c:348 ../../printerdrake.pm_.c:562
+#: ../../printerdrake.pm_.c:587
#, fuzzy
msgid "Local Printer"
msgstr "Yerli Çap Edici"
-#: ../../printerdrake.pm_.c:246
+#: ../../printerdrake.pm_.c:349
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -7530,50 +7835,50 @@ msgid ""
"Center."
msgstr ""
-#: ../../printerdrake.pm_.c:283 ../../printerdrake.pm_.c:474
-#: ../../printerdrake.pm_.c:683 ../../printerdrake.pm_.c:923
+#: ../../printerdrake.pm_.c:386 ../../printerdrake.pm_.c:577
+#: ../../printerdrake.pm_.c:790 ../../printerdrake.pm_.c:1030
#, fuzzy
msgid "Printer auto-detection"
msgstr "Avtomatik təsbit iƟlət"
-#: ../../printerdrake.pm_.c:305
+#: ../../printerdrake.pm_.c:408
#, c-format
msgid ", network printer \"%s\", port %s"
msgstr ""
-#: ../../printerdrake.pm_.c:307
+#: ../../printerdrake.pm_.c:410
#, fuzzy, c-format
msgid ", printer \"%s\" on SMB/Windows server \"%s\""
msgstr "SMB/Windows 95/98/NT"
-#: ../../printerdrake.pm_.c:313
+#: ../../printerdrake.pm_.c:416
#, fuzzy, c-format
msgid "Detected %s"
msgstr "%s tapıldı"
-#: ../../printerdrake.pm_.c:317 ../../printerdrake.pm_.c:348
-#: ../../printerdrake.pm_.c:367
+#: ../../printerdrake.pm_.c:420 ../../printerdrake.pm_.c:451
+#: ../../printerdrake.pm_.c:470
#, c-format
msgid "Printer on parallel port \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:319 ../../printerdrake.pm_.c:350
-#: ../../printerdrake.pm_.c:372
+#: ../../printerdrake.pm_.c:422 ../../printerdrake.pm_.c:453
+#: ../../printerdrake.pm_.c:475
#, c-format
msgid "USB printer \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:321
+#: ../../printerdrake.pm_.c:424
#, fuzzy, c-format
msgid "Network printer \"%s\", port %s"
msgstr "ƞəbəkə Çap Edicisi (soket) "
-#: ../../printerdrake.pm_.c:323
+#: ../../printerdrake.pm_.c:426
#, fuzzy, c-format
msgid "Printer \"%s\" on SMB/Windows server \"%s\""
msgstr "SMB/Windows 95/98/NT"
-#: ../../printerdrake.pm_.c:460
+#: ../../printerdrake.pm_.c:563
msgid ""
"No local printer found! To manually install a printer enter a device name/"
"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
@@ -7581,34 +7886,34 @@ msgid ""
"printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:464
+#: ../../printerdrake.pm_.c:567
#, fuzzy
msgid "You must enter a device or file name!"
msgstr "Çap Edici avadanlığı URI"
-#: ../../printerdrake.pm_.c:475
+#: ../../printerdrake.pm_.c:578
#, fuzzy
msgid "No printer found!"
msgstr "Yerli Çap Edici"
-#: ../../printerdrake.pm_.c:485
+#: ../../printerdrake.pm_.c:588
#, fuzzy
msgid "Available printers"
msgstr "Yerli Çap Edici"
-#: ../../printerdrake.pm_.c:489
+#: ../../printerdrake.pm_.c:592
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:490
+#: ../../printerdrake.pm_.c:593
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up or enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:492
+#: ../../printerdrake.pm_.c:595
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
@@ -7616,7 +7921,7 @@ msgid ""
"configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:493
+#: ../../printerdrake.pm_.c:596
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
@@ -7624,38 +7929,38 @@ msgid ""
"customized printer configuration, turn on \"Manual configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:495
+#: ../../printerdrake.pm_.c:598
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:496
+#: ../../printerdrake.pm_.c:599
#, fuzzy
msgid "Please choose the port where your printer is connected to."
msgstr "Modeminizin hansı serial qapıya bağlı olduğunu seçiniz"
-#: ../../printerdrake.pm_.c:498
+#: ../../printerdrake.pm_.c:601
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:503
+#: ../../printerdrake.pm_.c:606
#, fuzzy
msgid "You must choose/enter a printer/device!"
msgstr "Çap Edici avadanlığı URI"
-#: ../../printerdrake.pm_.c:523
+#: ../../printerdrake.pm_.c:626
#, fuzzy
msgid "Manual configuration"
msgstr "QuraƟdırma"
-#: ../../printerdrake.pm_.c:577
+#: ../../printerdrake.pm_.c:680
msgid "Remote lpd Printer Options"
msgstr "Uzaq Çap Edici (lpd) Seçənəkləri"
-#: ../../printerdrake.pm_.c:578
+#: ../../printerdrake.pm_.c:681
#, fuzzy
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
@@ -7665,51 +7970,51 @@ msgstr ""
"çap edicinin bağlı olduğu çap edici vericisinin adını və növbə \n"
"adınını verməlisiniz."
-#: ../../printerdrake.pm_.c:579
+#: ../../printerdrake.pm_.c:682
#, fuzzy
msgid "Remote host name"
msgstr "Uzaqdakı ev sahibi adı"
-#: ../../printerdrake.pm_.c:580
+#: ../../printerdrake.pm_.c:683
#, fuzzy
msgid "Remote printer name"
msgstr "Uzaq Çap Edici"
-#: ../../printerdrake.pm_.c:583
+#: ../../printerdrake.pm_.c:686
#, fuzzy
msgid "Remote host name missing!"
msgstr "Uzaqdakı ev sahibi adı"
-#: ../../printerdrake.pm_.c:587
+#: ../../printerdrake.pm_.c:690
#, fuzzy
msgid "Remote printer name missing!"
msgstr "Uzaqdakı ev sahibi adı"
-#: ../../printerdrake.pm_.c:609 ../../printerdrake.pm_.c:1119
+#: ../../printerdrake.pm_.c:712 ../../printerdrake.pm_.c:1225
#, fuzzy, c-format
msgid "Detected model: %s %s"
msgstr "%s tapıldı"
-#: ../../printerdrake.pm_.c:683 ../../printerdrake.pm_.c:923
+#: ../../printerdrake.pm_.c:790 ../../printerdrake.pm_.c:1030
#, fuzzy
msgid "Scanning network..."
msgstr "Bağlantınız baƟladılır..."
-#: ../../printerdrake.pm_.c:692 ../../printerdrake.pm_.c:713
+#: ../../printerdrake.pm_.c:799 ../../printerdrake.pm_.c:820
#, c-format
msgid ", printer \"%s\" on server \"%s\""
msgstr ""
-#: ../../printerdrake.pm_.c:695 ../../printerdrake.pm_.c:716
+#: ../../printerdrake.pm_.c:802 ../../printerdrake.pm_.c:823
#, fuzzy, c-format
msgid "Printer \"%s\" on server \"%s\""
msgstr "ƞəbəkə dayandırılır"
-#: ../../printerdrake.pm_.c:736
+#: ../../printerdrake.pm_.c:843
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "SMB (Windows 9x/NT) Çap Edici Seçənəkləri"
-#: ../../printerdrake.pm_.c:737
+#: ../../printerdrake.pm_.c:844
#, fuzzy
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
@@ -7722,46 +8027,46 @@ msgstr ""
"IP ĂŒnvanı, çap edicinin paylaƟdırma adı, iƟləmə grupu, istifadəçi adı və \n"
"parol verilməlidir."
-#: ../../printerdrake.pm_.c:738
+#: ../../printerdrake.pm_.c:845
msgid ""
" If the desired printer was auto-detected, simply choose it from the list "
"and then add user name, password, and/or workgroup if needed."
msgstr ""
-#: ../../printerdrake.pm_.c:739
+#: ../../printerdrake.pm_.c:846
msgid "SMB server host"
msgstr "SMB verici adı"
-#: ../../printerdrake.pm_.c:740
+#: ../../printerdrake.pm_.c:847
msgid "SMB server IP"
msgstr "SMB verici IP"
-#: ../../printerdrake.pm_.c:741
+#: ../../printerdrake.pm_.c:848
msgid "Share name"
msgstr "PaylaƟdırma adı"
-#: ../../printerdrake.pm_.c:744
+#: ../../printerdrake.pm_.c:851
msgid "Workgroup"
msgstr "İƟ qrupu"
-#: ../../printerdrake.pm_.c:746
+#: ../../printerdrake.pm_.c:853
#, fuzzy
msgid "Auto-detected"
msgstr "Avtomatik təsbit iƟlət"
-#: ../../printerdrake.pm_.c:757
+#: ../../printerdrake.pm_.c:864
msgid "Either the server name or the server's IP must be given!"
msgstr ""
-#: ../../printerdrake.pm_.c:761
+#: ../../printerdrake.pm_.c:868
msgid "Samba share name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:767
+#: ../../printerdrake.pm_.c:874
msgid "SECURITY WARNING!"
msgstr ""
-#: ../../printerdrake.pm_.c:768
+#: ../../printerdrake.pm_.c:875
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -7785,7 +8090,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:778
+#: ../../printerdrake.pm_.c:885
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -7794,7 +8099,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:781
+#: ../../printerdrake.pm_.c:888
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
@@ -7802,11 +8107,11 @@ msgid ""
"Do you really want to continue setting up this printer as you are doing now?"
msgstr ""
-#: ../../printerdrake.pm_.c:853
+#: ../../printerdrake.pm_.c:960
msgid "NetWare Printer Options"
msgstr "NetWare Çap Edici Qurğuları"
-#: ../../printerdrake.pm_.c:854
+#: ../../printerdrake.pm_.c:961
#, fuzzy
msgid ""
"To print on a NetWare printer, you need to provide the NetWare print server "
@@ -7818,44 +8123,44 @@ msgstr ""
"edici \n"
"növbəsi adı ilə istifadəçi adı va parolu verilməlidir."
-#: ../../printerdrake.pm_.c:855
+#: ../../printerdrake.pm_.c:962
msgid "Printer Server"
msgstr "Çap Edici Vericisi"
-#: ../../printerdrake.pm_.c:856
+#: ../../printerdrake.pm_.c:963
msgid "Print Queue Name"
msgstr "Çap Edici Növbə Adı"
-#: ../../printerdrake.pm_.c:861
+#: ../../printerdrake.pm_.c:968
msgid "NCP server name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:865
+#: ../../printerdrake.pm_.c:972
msgid "NCP queue name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:932 ../../printerdrake.pm_.c:952
+#: ../../printerdrake.pm_.c:1039 ../../printerdrake.pm_.c:1059
#, c-format
msgid ", host \"%s\", port %s"
msgstr ""
-#: ../../printerdrake.pm_.c:935 ../../printerdrake.pm_.c:955
+#: ../../printerdrake.pm_.c:1042 ../../printerdrake.pm_.c:1062
#, c-format
msgid "Host \"%s\", port %s"
msgstr ""
-#: ../../printerdrake.pm_.c:975
+#: ../../printerdrake.pm_.c:1082
#, fuzzy
msgid "TCP/Socket Printer Options"
msgstr "Soket Çap Edici Qurğuları"
-#: ../../printerdrake.pm_.c:977
+#: ../../printerdrake.pm_.c:1084
msgid ""
"Choose one of the auto-detected printers from the list or enter the hostname "
"or IP and the optional port number (default is 9100) into the input fields."
msgstr ""
-#: ../../printerdrake.pm_.c:978
+#: ../../printerdrake.pm_.c:1085
#, fuzzy
msgid ""
"To print to a TCP or socket printer, you need to provide the host name or IP "
@@ -7866,61 +8171,61 @@ msgstr ""
"Soket çap edicidən yekun almaq ĂŒĂ§ĂŒn, çap edicinin ev sahibi adını ve "
"mĂŒmkĂŒnsə, qapısının nömrəsini verməlisiniz."
-#: ../../printerdrake.pm_.c:983
+#: ../../printerdrake.pm_.c:1090
#, fuzzy
msgid "Printer host name or IP missing!"
msgstr "Çap Edici Ev sahibi"
-#: ../../printerdrake.pm_.c:1005
+#: ../../printerdrake.pm_.c:1112
#, fuzzy
msgid "Printer host name or IP"
msgstr "Çap Edici Ev sahibi"
-#: ../../printerdrake.pm_.c:1054 ../../printerdrake.pm_.c:1056
+#: ../../printerdrake.pm_.c:1160 ../../printerdrake.pm_.c:1162
msgid "Printer Device URI"
msgstr "Çap Edici avadanlığı URI"
-#: ../../printerdrake.pm_.c:1055
+#: ../../printerdrake.pm_.c:1161
msgid ""
"You can specify directly the URI to access the printer. The URI must fulfill "
"either the CUPS or the Foomatic specifications. Note that not all URI types "
"are supported by all the spoolers."
msgstr ""
-#: ../../printerdrake.pm_.c:1070
+#: ../../printerdrake.pm_.c:1176
msgid "A valid URI must be entered!"
msgstr ""
-#: ../../printerdrake.pm_.c:1402
+#: ../../printerdrake.pm_.c:1515
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
"Location fields do not need to be filled in. They are comments for the users."
msgstr ""
-#: ../../printerdrake.pm_.c:1403
+#: ../../printerdrake.pm_.c:1516
msgid "Name of printer"
msgstr "Çap edici adı"
-#: ../../printerdrake.pm_.c:1405
+#: ../../printerdrake.pm_.c:1518
msgid "Location"
msgstr "Yeri"
-#: ../../printerdrake.pm_.c:1416 ../../printerdrake.pm_.c:1536
+#: ../../printerdrake.pm_.c:1530 ../../printerdrake.pm_.c:1652
#, fuzzy
msgid "Reading printer database..."
msgstr "CUPS sĂŒrĂŒcĂŒ datası oxunur..."
-#: ../../printerdrake.pm_.c:1419
+#: ../../printerdrake.pm_.c:1534
#, fuzzy
msgid "Preparing printer database..."
msgstr "CUPS sĂŒrĂŒcĂŒ datası oxunur..."
-#: ../../printerdrake.pm_.c:1516
+#: ../../printerdrake.pm_.c:1631
#, fuzzy
msgid "Your printer model"
msgstr "Uzaq Çap Edici"
-#: ../../printerdrake.pm_.c:1517
+#: ../../printerdrake.pm_.c:1632
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -7935,28 +8240,28 @@ msgid ""
"%s"
msgstr ""
-#: ../../printerdrake.pm_.c:1522 ../../printerdrake.pm_.c:1525
+#: ../../printerdrake.pm_.c:1637 ../../printerdrake.pm_.c:1640
#, fuzzy
msgid "The model is correct"
msgstr "Doğrudur?"
-#: ../../printerdrake.pm_.c:1523 ../../printerdrake.pm_.c:1524
-#: ../../printerdrake.pm_.c:1527
+#: ../../printerdrake.pm_.c:1638 ../../printerdrake.pm_.c:1639
+#: ../../printerdrake.pm_.c:1642
#, fuzzy
msgid "Select model manually"
msgstr "Uzaq Çap Edici"
-#: ../../printerdrake.pm_.c:1543
+#: ../../printerdrake.pm_.c:1659
#, fuzzy
msgid "Printer model selection"
msgstr "Çap Edici Bağlantısı"
-#: ../../printerdrake.pm_.c:1544
+#: ../../printerdrake.pm_.c:1660
#, fuzzy
msgid "Which printer model do you have?"
msgstr "Nə cĂŒr bir çap ediciniz var?"
-#: ../../printerdrake.pm_.c:1545
+#: ../../printerdrake.pm_.c:1661
msgid ""
"\n"
"\n"
@@ -7965,18 +8270,18 @@ msgid ""
"standing on a wrong model or on \"Raw printer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1548
+#: ../../printerdrake.pm_.c:1664
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
msgstr ""
-#: ../../printerdrake.pm_.c:1624
+#: ../../printerdrake.pm_.c:1741
#, fuzzy
msgid "OKI winprinter configuration"
msgstr "İnternet qurğuları"
-#: ../../printerdrake.pm_.c:1625
+#: ../../printerdrake.pm_.c:1742
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -7986,12 +8291,12 @@ msgid ""
"not work. Your connection type setting will be ignored by the driver."
msgstr ""
-#: ../../printerdrake.pm_.c:1668 ../../printerdrake.pm_.c:1695
+#: ../../printerdrake.pm_.c:1785 ../../printerdrake.pm_.c:1812
#, fuzzy
msgid "Lexmark inkjet configuration"
msgstr "İnternet qurğuları"
-#: ../../printerdrake.pm_.c:1669
+#: ../../printerdrake.pm_.c:1786
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
"no printers on remote machines or print server boxes. Please connect your "
@@ -7999,20 +8304,46 @@ msgid ""
"to."
msgstr ""
-#: ../../printerdrake.pm_.c:1696
+#: ../../printerdrake.pm_.c:1813
msgid ""
"To be able to print with your Lexmark inkjet and this configuration, you "
"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
-"com/). Go to the US site and click on the \"Drivers\" button. Then choose "
-"your model and afterwards \"Linux\" as operating system. The drivers come as "
-"RPM packages or shell scripts with interactive graphical installation. You "
-"do not need to do this configuration by the graphical frontends. Cancel "
-"directly after the license agreement. Then print printhead alignment pages "
-"with \"lexmarkmaintain\" and adjust the head alignment settings with this "
-"program."
+"com/). Click on the \"Drivers\" link. Then choose your model and afterwards "
+"\"Linux\" as operating system. The drivers come as RPM packages or shell "
+"scripts with interactive graphical installation. You do not need to do this "
+"configuration by the graphical frontends. Cancel directly after the license "
+"agreement. Then print printhead alignment pages with \"lexmarkmaintain\" and "
+"adjust the head alignment settings with this program."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:1816
+msgid "GDI Laser Printer using the Zenographics ZJ-Stream Format"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:1817
+msgid ""
+"Your printer belongs to the group of GDI laser printers (winprinters) sold "
+"by different manufacturers which uses the Zenographics ZJ-stream raster "
+"format for the data sent to the printer. The driver for these printers is "
+"still in a very early development stage and so it will perhaps not always "
+"work properly. Especially it is possible that the printer only works when "
+"you choose the A4 paper size.\n"
+"\n"
+"Some of these printers, as the HP LaserJet 1000, for which this driver was "
+"originally created, need their firmware to be uploaded to them after they "
+"are turned on. In the case of the HP LaserJet 1000 you have to search the "
+"printer's Windows driver CD or your Windows partition for the file "
+"\"sihp1000.img\" and upload the file to the printer with one of the "
+"following commands:\n"
+"\n"
+" lpr -o raw sihp1000.img\n"
+" cat sihp1000.img > /dev/usb/lp0\n"
+"\n"
+"The first command can be given by any normal user, the second must be given "
+"as root. After having done so you can print normally.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1912
+#: ../../printerdrake.pm_.c:2040
msgid ""
"Printer default settings\n"
"\n"
@@ -8022,34 +8353,34 @@ msgid ""
"printout quality/resolution printing can get substantially slower."
msgstr ""
-#: ../../printerdrake.pm_.c:1921
+#: ../../printerdrake.pm_.c:2049
#, c-format
msgid "Option %s must be an integer number!"
msgstr ""
-#: ../../printerdrake.pm_.c:1925
+#: ../../printerdrake.pm_.c:2053
#, c-format
msgid "Option %s must be a number!"
msgstr ""
-#: ../../printerdrake.pm_.c:1930
+#: ../../printerdrake.pm_.c:2058
#, c-format
msgid "Option %s out of range!"
msgstr ""
-#: ../../printerdrake.pm_.c:1969
+#: ../../printerdrake.pm_.c:2097
#, fuzzy, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
"as the default printer?"
msgstr "Çap edicini sınamaq istəyirsiniz?"
-#: ../../printerdrake.pm_.c:1986
+#: ../../printerdrake.pm_.c:2120
#, fuzzy
msgid "Test pages"
msgstr "Qapıları sına"
-#: ../../printerdrake.pm_.c:1987
+#: ../../printerdrake.pm_.c:2121
msgid ""
"Please select the test pages you want to print.\n"
"Note: the photo test page can take a rather long time to get printed and on "
@@ -8057,45 +8388,45 @@ msgid ""
"it is enough to print the standard test page."
msgstr ""
-#: ../../printerdrake.pm_.c:1991
+#: ../../printerdrake.pm_.c:2125
#, fuzzy
msgid "No test pages"
msgstr "Bəli, hər iki sınaq səhifəsini də çap et"
-#: ../../printerdrake.pm_.c:1992
+#: ../../printerdrake.pm_.c:2126
#, fuzzy
msgid "Print"
msgstr "Çap Edici"
-#: ../../printerdrake.pm_.c:1994
+#: ../../printerdrake.pm_.c:2183
#, fuzzy
msgid "Standard test page"
msgstr "Standart"
-#: ../../printerdrake.pm_.c:1997
+#: ../../printerdrake.pm_.c:2186
msgid "Alternative test page (Letter)"
msgstr ""
-#: ../../printerdrake.pm_.c:2000
+#: ../../printerdrake.pm_.c:2189
#, fuzzy
msgid "Alternative test page (A4)"
msgstr "Sınaq səhifəsi çap edilir..."
-#: ../../printerdrake.pm_.c:2002
+#: ../../printerdrake.pm_.c:2191
#, fuzzy
msgid "Photo test page"
msgstr "Sınaq səhifəsi çap edilir..."
-#: ../../printerdrake.pm_.c:2006
+#: ../../printerdrake.pm_.c:2195
#, fuzzy
msgid "Do not print any test page"
msgstr "Sınaq səhifəsi çap edilir..."
-#: ../../printerdrake.pm_.c:2014 ../../printerdrake.pm_.c:2166
+#: ../../printerdrake.pm_.c:2204 ../../printerdrake.pm_.c:2357
msgid "Printing test page(s)..."
msgstr "Sınaq səhifəsi çap edilir..."
-#: ../../printerdrake.pm_.c:2039
+#: ../../printerdrake.pm_.c:2229
#, fuzzy, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -8111,7 +8442,7 @@ msgstr ""
"\n"
"DĂŒz mĂŒ iƟləyir?"
-#: ../../printerdrake.pm_.c:2043
+#: ../../printerdrake.pm_.c:2233
#, fuzzy
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -8121,16 +8452,16 @@ msgstr ""
"Çap edicinin iƟləməsi ĂŒĂ§ĂŒn bir az vaxt keçər.\n"
"DĂŒz mĂŒ iƟləyir?"
-#: ../../printerdrake.pm_.c:2050
+#: ../../printerdrake.pm_.c:2240
msgid "Did it work properly?"
msgstr ""
-#: ../../printerdrake.pm_.c:2072 ../../printerdrake.pm_.c:3191
+#: ../../printerdrake.pm_.c:2262 ../../printerdrake.pm_.c:3416
#, fuzzy
msgid "Raw printer"
msgstr "Çap Edicisiz"
-#: ../../printerdrake.pm_.c:2098
+#: ../../printerdrake.pm_.c:2288
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -8139,15 +8470,15 @@ msgid ""
"to modify the option settings easily.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2100
+#: ../../printerdrake.pm_.c:2290
msgid ""
"These commands you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications, but here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2103 ../../printerdrake.pm_.c:2120
-#: ../../printerdrake.pm_.c:2130
+#: ../../printerdrake.pm_.c:2293 ../../printerdrake.pm_.c:2310
+#: ../../printerdrake.pm_.c:2320
#, c-format
msgid ""
"\n"
@@ -8156,7 +8487,7 @@ msgid ""
"line, e. g. \"%s <file>\". "
msgstr ""
-#: ../../printerdrake.pm_.c:2106 ../../printerdrake.pm_.c:2146
+#: ../../printerdrake.pm_.c:2296 ../../printerdrake.pm_.c:2336
#, c-format
msgid ""
"To know about the options available for the current printer read either the "
@@ -8164,41 +8495,41 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2110
+#: ../../printerdrake.pm_.c:2300
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2115 ../../printerdrake.pm_.c:2125
+#: ../../printerdrake.pm_.c:2305 ../../printerdrake.pm_.c:2315
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2117 ../../printerdrake.pm_.c:2127
-#: ../../printerdrake.pm_.c:2137
+#: ../../printerdrake.pm_.c:2307 ../../printerdrake.pm_.c:2317
+#: ../../printerdrake.pm_.c:2327
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2122 ../../printerdrake.pm_.c:2132
+#: ../../printerdrake.pm_.c:2312 ../../printerdrake.pm_.c:2322
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
msgstr ""
-#: ../../printerdrake.pm_.c:2135
+#: ../../printerdrake.pm_.c:2325
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\" or \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2139
+#: ../../printerdrake.pm_.c:2329
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -8208,7 +8539,7 @@ msgid ""
"jams.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2143
+#: ../../printerdrake.pm_.c:2333
#, c-format
msgid ""
"\n"
@@ -8217,41 +8548,41 @@ msgid ""
"line, e. g. \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2153
+#: ../../printerdrake.pm_.c:2343
#, fuzzy, c-format
msgid "Printing/Scanning/Photo Cards on \"%s\""
msgstr "ƞəbəkə dayandırılır"
-#: ../../printerdrake.pm_.c:2154
+#: ../../printerdrake.pm_.c:2344
#, fuzzy, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "ƞəbəkə dayandırılır"
-#: ../../printerdrake.pm_.c:2156
+#: ../../printerdrake.pm_.c:2346
#, fuzzy, c-format
msgid "Printing/Photo Card Access on \"%s\""
msgstr "ƞəbəkə dayandırılır"
-#: ../../printerdrake.pm_.c:2157
+#: ../../printerdrake.pm_.c:2347
#, fuzzy, c-format
msgid "Printing on the printer \"%s\""
msgstr "ƞəbəkə dayandırılır"
-#: ../../printerdrake.pm_.c:2160 ../../printerdrake.pm_.c:2163
-#: ../../printerdrake.pm_.c:2164 ../../printerdrake.pm_.c:2165
-#: ../../printerdrake.pm_.c:3175 ../../standalone/drakTermServ_.c:248
-#: ../../standalone/drakbackup_.c:1485 ../../standalone/drakbackup_.c:3530
-#: ../../standalone/drakbug_.c:129 ../../standalone/drakfont_.c:705
+#: ../../printerdrake.pm_.c:2350 ../../printerdrake.pm_.c:2353
+#: ../../printerdrake.pm_.c:2354 ../../printerdrake.pm_.c:2355
+#: ../../printerdrake.pm_.c:3400 ../../standalone/drakTermServ_.c:248
+#: ../../standalone/drakbackup_.c:1560 ../../standalone/drakbackup_.c:4208
+#: ../../standalone/drakbug_.c:130 ../../standalone/drakfont_.c:705
#: ../../standalone/drakfont_.c:1014
msgid "Close"
msgstr "Qapat"
-#: ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2353
#, fuzzy
msgid "Print option list"
msgstr "Çap edici seçənəkləri"
-#: ../../printerdrake.pm_.c:2182
+#: ../../printerdrake.pm_.c:2373
#, c-format
msgid ""
"Your multi-function device was configured automatically to be able to scan. "
@@ -8265,7 +8596,7 @@ msgid ""
"Do not use \"scannerdrake\" for this device!"
msgstr ""
-#: ../../printerdrake.pm_.c:2202
+#: ../../printerdrake.pm_.c:2394
msgid ""
"Your printer was configured automatically to give you access to the photo "
"card drives from your PC. Now you can access your photo cards using the "
@@ -8278,19 +8609,19 @@ msgid ""
"of the file lists."
msgstr ""
-#: ../../printerdrake.pm_.c:2223 ../../printerdrake.pm_.c:2673
-#: ../../printerdrake.pm_.c:2945
+#: ../../printerdrake.pm_.c:2416 ../../printerdrake.pm_.c:2875
+#: ../../printerdrake.pm_.c:3170
#, fuzzy
msgid "Reading printer data..."
msgstr "CUPS sĂŒrĂŒcĂŒ datası oxunur..."
-#: ../../printerdrake.pm_.c:2243 ../../printerdrake.pm_.c:2271
-#: ../../printerdrake.pm_.c:2306
+#: ../../printerdrake.pm_.c:2436 ../../printerdrake.pm_.c:2464
+#: ../../printerdrake.pm_.c:2499
#, fuzzy
msgid "Transfer printer configuration"
msgstr "İnternet qurğuları"
-#: ../../printerdrake.pm_.c:2244
+#: ../../printerdrake.pm_.c:2437
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -8300,51 +8631,51 @@ msgid ""
"Not all queues can be transferred due to the following reasons:\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2247
+#: ../../printerdrake.pm_.c:2440
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2249
+#: ../../printerdrake.pm_.c:2442
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2251
+#: ../../printerdrake.pm_.c:2444
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2253
+#: ../../printerdrake.pm_.c:2446
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:2254
+#: ../../printerdrake.pm_.c:2447
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
"or with native CUPS drivers cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:2255
+#: ../../printerdrake.pm_.c:2448
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
"\"Transfer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:2258
+#: ../../printerdrake.pm_.c:2451
msgid "Do not transfer printers"
msgstr ""
-#: ../../printerdrake.pm_.c:2259 ../../printerdrake.pm_.c:2276
+#: ../../printerdrake.pm_.c:2452 ../../printerdrake.pm_.c:2469
msgid "Transfer"
msgstr ""
-#: ../../printerdrake.pm_.c:2272
+#: ../../printerdrake.pm_.c:2465
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -8352,61 +8683,61 @@ msgid ""
"You can also type a new name or skip this printer."
msgstr ""
-#: ../../printerdrake.pm_.c:2280
+#: ../../printerdrake.pm_.c:2473
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr "Çap edici adı təkcə hərf, rəqəm və alt xətt daxil edə bilər"
-#: ../../printerdrake.pm_.c:2285
+#: ../../printerdrake.pm_.c:2478
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
"do you really want to overwrite its configuration?"
msgstr ""
-#: ../../printerdrake.pm_.c:2293
+#: ../../printerdrake.pm_.c:2486
#, fuzzy
msgid "New printer name"
msgstr "Çap Edicisiz"
-#: ../../printerdrake.pm_.c:2296
+#: ../../printerdrake.pm_.c:2489
#, c-format
msgid "Transferring %s..."
msgstr ""
-#: ../../printerdrake.pm_.c:2307
+#: ../../printerdrake.pm_.c:2500
#, c-format
msgid ""
"You have transferred your former default printer (\"%s\"), Should it be also "
"the default printer under the new printing system %s?"
msgstr ""
-#: ../../printerdrake.pm_.c:2316
+#: ../../printerdrake.pm_.c:2510
#, fuzzy
msgid "Refreshing printer data..."
msgstr "CUPS sĂŒrĂŒcĂŒ datası oxunur..."
-#: ../../printerdrake.pm_.c:2324 ../../printerdrake.pm_.c:2395
-#: ../../printerdrake.pm_.c:2407
+#: ../../printerdrake.pm_.c:2518 ../../printerdrake.pm_.c:2590
+#: ../../printerdrake.pm_.c:2602
msgid "Configuration of a remote printer"
msgstr ""
-#: ../../printerdrake.pm_.c:2325
+#: ../../printerdrake.pm_.c:2519
#, fuzzy
msgid "Starting network..."
msgstr "Bağlantınız baƟladılır..."
-#: ../../printerdrake.pm_.c:2359 ../../printerdrake.pm_.c:2363
-#: ../../printerdrake.pm_.c:2365
+#: ../../printerdrake.pm_.c:2554 ../../printerdrake.pm_.c:2558
+#: ../../printerdrake.pm_.c:2560
#, fuzzy
msgid "Configure the network now"
msgstr "ƞəbəkəni qur"
-#: ../../printerdrake.pm_.c:2360
+#: ../../printerdrake.pm_.c:2555
#, fuzzy
msgid "Network functionality not configured"
msgstr "Monitor qurulmayıb"
-#: ../../printerdrake.pm_.c:2361
+#: ../../printerdrake.pm_.c:2556
msgid ""
"You are going to configure a remote printer. This needs working network "
"access, but your network is not configured yet. If you go on without network "
@@ -8414,12 +8745,12 @@ msgid ""
"configuring now. How do you want to proceed?"
msgstr ""
-#: ../../printerdrake.pm_.c:2364
+#: ../../printerdrake.pm_.c:2559
#, fuzzy
msgid "Go on without configuring the network"
msgstr "ƞəbəkə Qurğuları"
-#: ../../printerdrake.pm_.c:2397
+#: ../../printerdrake.pm_.c:2592
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -8429,34 +8760,34 @@ msgid ""
"\"Printer\""
msgstr ""
-#: ../../printerdrake.pm_.c:2398
+#: ../../printerdrake.pm_.c:2593
msgid ""
"The network access was not running and could not be started. Please check "
"your configuration and your hardware. Then try to configure your remote "
"printer again."
msgstr ""
-#: ../../printerdrake.pm_.c:2408
+#: ../../printerdrake.pm_.c:2603
#, fuzzy
msgid "Restarting printing system..."
msgstr "Hansı çap edici sistemini istifadə etmək istəyirsiniz?"
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2641
#, fuzzy
msgid "high"
msgstr "YĂŒksək"
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2641
#, fuzzy
msgid "paranoid"
msgstr "ĆžĂŒbhəci"
-#: ../../printerdrake.pm_.c:2447
+#: ../../printerdrake.pm_.c:2642
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr ""
-#: ../../printerdrake.pm_.c:2448
+#: ../../printerdrake.pm_.c:2643
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -8471,12 +8802,12 @@ msgid ""
"Do you really want to configure printing on this machine?"
msgstr ""
-#: ../../printerdrake.pm_.c:2480
+#: ../../printerdrake.pm_.c:2675
#, fuzzy
msgid "Starting the printing system at boot time"
msgstr "Hansı çap edici sistemini istifadə etmək istəyirsiniz?"
-#: ../../printerdrake.pm_.c:2481
+#: ../../printerdrake.pm_.c:2676
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -8490,81 +8821,76 @@ msgid ""
"again?"
msgstr ""
-#: ../../printerdrake.pm_.c:2504 ../../printerdrake.pm_.c:2544
-#: ../../printerdrake.pm_.c:2581 ../../printerdrake.pm_.c:2621
-#: ../../printerdrake.pm_.c:2733
+#: ../../printerdrake.pm_.c:2700 ../../printerdrake.pm_.c:2741
+#: ../../printerdrake.pm_.c:2780 ../../printerdrake.pm_.c:2822
+#: ../../printerdrake.pm_.c:2943
msgid "Checking installed software..."
msgstr ""
-#: ../../printerdrake.pm_.c:2548
+#: ../../printerdrake.pm_.c:2746
msgid "Removing LPRng..."
msgstr ""
-#: ../../printerdrake.pm_.c:2585
+#: ../../printerdrake.pm_.c:2785
msgid "Removing LPD..."
msgstr ""
-#: ../../printerdrake.pm_.c:2657
+#: ../../printerdrake.pm_.c:2858
#, fuzzy
msgid "Select Printer Spooler"
msgstr "Çap Edici Bağlantısı Seçin"
-#: ../../printerdrake.pm_.c:2658
+#: ../../printerdrake.pm_.c:2859
#, fuzzy
msgid "Which printing system (spooler) do you want to use?"
msgstr "Hansı çap edici sistemini istifadə etmək istəyirsiniz?"
-#: ../../printerdrake.pm_.c:2691
+#: ../../printerdrake.pm_.c:2895
#, fuzzy, c-format
msgid "Configuring printer \"%s\"..."
msgstr "Çap Edicini Qur"
-#: ../../printerdrake.pm_.c:2704
+#: ../../printerdrake.pm_.c:2909
#, fuzzy
msgid "Installing Foomatic..."
msgstr "%s paketi qurulur"
-#: ../../printerdrake.pm_.c:2769 ../../printerdrake.pm_.c:2808
-#: ../../printerdrake.pm_.c:3192 ../../printerdrake.pm_.c:3262
+#: ../../printerdrake.pm_.c:2979 ../../printerdrake.pm_.c:3020
+#: ../../printerdrake.pm_.c:3417 ../../printerdrake.pm_.c:3490
msgid "Printer options"
msgstr "Çap edici seçənəkləri"
-#: ../../printerdrake.pm_.c:2778
+#: ../../printerdrake.pm_.c:2989
#, fuzzy
-msgid "Preparing PrinterDrake..."
+msgid "Preparing Printerdrake..."
msgstr "CUPS sĂŒrĂŒcĂŒ datası oxunur..."
-#: ../../printerdrake.pm_.c:2795 ../../printerdrake.pm_.c:3349
+#: ../../printerdrake.pm_.c:3007 ../../printerdrake.pm_.c:3580
#, fuzzy
msgid "Configuring applications..."
msgstr "Çap Edicini Qur"
-#: ../../printerdrake.pm_.c:2815
+#: ../../printerdrake.pm_.c:3027
#, fuzzy
msgid "Would you like to configure printing?"
msgstr "Bir çap edici qurmaq istəyirsiniz?"
-#: ../../printerdrake.pm_.c:2827
+#: ../../printerdrake.pm_.c:3039
msgid "Printing system: "
msgstr ""
-#: ../../printerdrake.pm_.c:2875
-#, fuzzy
-msgid "Printerdrake"
-msgstr "Çap Edici"
-
-#: ../../printerdrake.pm_.c:2879
+#: ../../printerdrake.pm_.c:3099
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; to view information about it; "
"or to make a printer on a remote CUPS server available for Star Office/"
-"OpenOffice.org."
+"OpenOffice.org/GIMP."
msgstr ""
"AƟağıda yazıçıdakı növbələr verilmiƟdir.\n"
"Yenilərini əlavə edə bilər, və ya mövcud olanları dəyiƟdirə bilərsiniz."
-#: ../../printerdrake.pm_.c:2880
+#: ../../printerdrake.pm_.c:3100
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
@@ -8574,137 +8900,139 @@ msgstr ""
"AƟağıda yazıçıdakı növbələr verilmiƟdir.\n"
"Yenilərini əlavə edə bilər, və ya mövcud olanları dəyiƟdirə bilərsiniz."
-#: ../../printerdrake.pm_.c:2906
+#: ../../printerdrake.pm_.c:3127
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr ""
-#: ../../printerdrake.pm_.c:2924
+#: ../../printerdrake.pm_.c:3145
#, fuzzy
msgid "Change the printing system"
msgstr "ƞəbəkəni qur"
-#: ../../printerdrake.pm_.c:2929 ../../standalone/drakconnect_.c:277
+#: ../../printerdrake.pm_.c:3150 ../../standalone/drakconnect_.c:277
msgid "Normal Mode"
msgstr "Normal Mod"
-#: ../../printerdrake.pm_.c:3085 ../../printerdrake.pm_.c:3135
-#: ../../printerdrake.pm_.c:3343
+#: ../../printerdrake.pm_.c:3310 ../../printerdrake.pm_.c:3360
+#: ../../printerdrake.pm_.c:3573
#, fuzzy
msgid "Do you want to configure another printer?"
msgstr "Qurğuları sınamaq istəyirsiniz?"
-#: ../../printerdrake.pm_.c:3170
+#: ../../printerdrake.pm_.c:3395
#, fuzzy
msgid "Modify printer configuration"
msgstr "İnternet qurğuları"
-#: ../../printerdrake.pm_.c:3172
+#: ../../printerdrake.pm_.c:3397
#, fuzzy, c-format
msgid ""
"Printer %s\n"
"What do you want to modify on this printer?"
msgstr "Qurğuları sınamaq istəyirsiniz?"
-#: ../../printerdrake.pm_.c:3176
+#: ../../printerdrake.pm_.c:3401
msgid "Do it!"
msgstr ""
-#: ../../printerdrake.pm_.c:3181 ../../printerdrake.pm_.c:3236
+#: ../../printerdrake.pm_.c:3406 ../../printerdrake.pm_.c:3461
#, fuzzy
msgid "Printer connection type"
msgstr "Ä°nternet Bağlantısı BölĂŒĆŸdĂŒrĂŒlməsi"
-#: ../../printerdrake.pm_.c:3182 ../../printerdrake.pm_.c:3240
+#: ../../printerdrake.pm_.c:3407 ../../printerdrake.pm_.c:3465
#, fuzzy
msgid "Printer name, description, location"
msgstr "Çap Edici Bağlantısı"
-#: ../../printerdrake.pm_.c:3184 ../../printerdrake.pm_.c:3255
+#: ../../printerdrake.pm_.c:3409 ../../printerdrake.pm_.c:3483
msgid "Printer manufacturer, model, driver"
msgstr ""
-#: ../../printerdrake.pm_.c:3185 ../../printerdrake.pm_.c:3256
+#: ../../printerdrake.pm_.c:3410 ../../printerdrake.pm_.c:3484
msgid "Printer manufacturer, model"
msgstr ""
-#: ../../printerdrake.pm_.c:3194 ../../printerdrake.pm_.c:3266
+#: ../../printerdrake.pm_.c:3419 ../../printerdrake.pm_.c:3494
msgid "Set this printer as the default"
msgstr ""
-#: ../../printerdrake.pm_.c:3196 ../../printerdrake.pm_.c:3271
-msgid "Add this printer to Star Office/OpenOffice.org"
+#: ../../printerdrake.pm_.c:3421 ../../printerdrake.pm_.c:3499
+msgid "Add this printer to Star Office/OpenOffice.org/GIMP"
msgstr ""
-#: ../../printerdrake.pm_.c:3197 ../../printerdrake.pm_.c:3280
-msgid "Remove this printer from Star Office/OpenOffice.org"
+#: ../../printerdrake.pm_.c:3422 ../../printerdrake.pm_.c:3508
+msgid "Remove this printer from Star Office/OpenOffice.org/GIMP"
msgstr ""
-#: ../../printerdrake.pm_.c:3198 ../../printerdrake.pm_.c:3289
+#: ../../printerdrake.pm_.c:3423 ../../printerdrake.pm_.c:3517
#, fuzzy
msgid "Print test pages"
msgstr "Sınaq səhifəsi çap edilir..."
-#: ../../printerdrake.pm_.c:3199 ../../printerdrake.pm_.c:3291
+#: ../../printerdrake.pm_.c:3424 ../../printerdrake.pm_.c:3519
#, fuzzy
msgid "Know how to use this printer"
msgstr "Qurğuları sınamaq istəyirsiniz?"
-#: ../../printerdrake.pm_.c:3201 ../../printerdrake.pm_.c:3293
+#: ../../printerdrake.pm_.c:3426 ../../printerdrake.pm_.c:3521
#, fuzzy
msgid "Remove printer"
msgstr "Uzaq Çap Edici"
-#: ../../printerdrake.pm_.c:3245
+#: ../../printerdrake.pm_.c:3472
#, fuzzy, c-format
msgid "Removing old printer \"%s\"..."
msgstr "CUPS sĂŒrĂŒcĂŒ datası oxunur..."
-#: ../../printerdrake.pm_.c:3269
+#: ../../printerdrake.pm_.c:3497
#, fuzzy
msgid "Default printer"
msgstr "Yerli Çap Edici"
-#: ../../printerdrake.pm_.c:3270
+#: ../../printerdrake.pm_.c:3498
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr ""
-#: ../../printerdrake.pm_.c:3274 ../../printerdrake.pm_.c:3277
-msgid "Adding printer to Star Office/OpenOffice.org"
+#: ../../printerdrake.pm_.c:3502 ../../printerdrake.pm_.c:3505
+msgid "Adding printer to Star Office/OpenOffice.org/GIMP"
msgstr ""
-#: ../../printerdrake.pm_.c:3275
+#: ../../printerdrake.pm_.c:3503
#, c-format
msgid ""
-"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
+"The printer \"%s\" was successfully added to Star Office/OpenOffice.org/GIMP."
msgstr ""
-#: ../../printerdrake.pm_.c:3278
+#: ../../printerdrake.pm_.c:3506
#, c-format
-msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
+msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org/GIMP."
msgstr ""
-#: ../../printerdrake.pm_.c:3283 ../../printerdrake.pm_.c:3286
-msgid "Removing printer from Star Office/OpenOffice.org"
+#: ../../printerdrake.pm_.c:3511 ../../printerdrake.pm_.c:3514
+msgid "Removing printer from Star Office/OpenOffice.org/GIMP"
msgstr ""
-#: ../../printerdrake.pm_.c:3284
+#: ../../printerdrake.pm_.c:3512
#, c-format
msgid ""
-"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
+"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org/"
+"GIMP."
msgstr ""
-#: ../../printerdrake.pm_.c:3287
+#: ../../printerdrake.pm_.c:3515
#, c-format
-msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
+msgid ""
+"Failed to remove the printer \"%s\" from Star Office/OpenOffice.org/GIMP."
msgstr ""
-#: ../../printerdrake.pm_.c:3295
+#: ../../printerdrake.pm_.c:3523
#, fuzzy, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr "ƞəbəkəni yenidən baƟlatmaq istəyirsiniz?"
-#: ../../printerdrake.pm_.c:3297
+#: ../../printerdrake.pm_.c:3527
#, fuzzy, c-format
msgid "Removing printer \"%s\"..."
msgstr "CUPS sĂŒrĂŒcĂŒ datası oxunur..."
@@ -9119,7 +9447,7 @@ msgstr "Ä°nternet"
msgid "File sharing"
msgstr ""
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1669
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1744
#, fuzzy
msgid "System"
msgstr "Sistem modu"
@@ -9178,191 +9506,228 @@ msgstr "Hal:"
msgid "Stop"
msgstr "Sektor"
-#: ../../share/advertising/00-thanks.pl_.c:9
-msgid "Thank you for choosing Mandrake Linux 8.2"
+#: ../../share/advertising/01-thanks.pl_.c:9
+msgid "Thank you for choosing Mandrake Linux 9.0"
msgstr ""
-#: ../../share/advertising/00-thanks.pl_.c:10
+#: ../../share/advertising/01-thanks.pl_.c:10
msgid "Welcome to the Open Source world"
msgstr ""
-#: ../../share/advertising/00-thanks.pl_.c:11
+#: ../../share/advertising/01-thanks.pl_.c:11
msgid ""
"The success of MandrakeSoft is based upon the principle of Free Software. "
"Your new operating system is the result of collaborative work on the part of "
"the worldwide Linux Community"
msgstr ""
-#: ../../share/advertising/01-gnu.pl_.c:9
+#: ../../share/advertising/02-community.pl_.c:9
#, fuzzy
-msgid "Join the Free Software world"
+msgid "Get involved in the Free Software world"
msgstr "BĂŒtĂŒn dĂŒnya"
-#: ../../share/advertising/01-gnu.pl_.c:10
+#: ../../share/advertising/02-community.pl_.c:10
+msgid "Want to know more about the Open Source community?"
+msgstr ""
+
+#: ../../share/advertising/02-community.pl_.c:11
msgid ""
-"Get to know the Open Source community and become a member. Learn, teach, and "
-"help others by joining the many discussion forums that you will find in our "
-"\"Community\" webpages"
+"To share your own knowledge and help build Linux tools, join the discussions "
+"forum you'll find on our \"Community\" webpages"
msgstr ""
-#: ../../share/advertising/02-internet.pl_.c:9
+#: ../../share/advertising/03-internet.pl_.c:9
#, fuzzy
-msgid "Internet and Messaging"
-msgstr "İnternet imkanı"
+msgid "Get the most from the Internet"
+msgstr "İnternetə bağlan"
-#: ../../share/advertising/02-internet.pl_.c:10
+#: ../../share/advertising/03-internet.pl_.c:10
msgid ""
-"Mandrake Linux 8.2 provides the best software to access everything the "
-"Internet has to offer: Surf the web & view animations with Mozilla and "
-"Konqueror, exchange email & organize your personal information with "
-"Evolution and Kmail, and much more"
+"Mandrake Linux 9.0 has selected the best software for you. Surf the Web and "
+"view animations with Mozilla and Konqueror, or read your mail and handle "
+"your personal information with Evolution and Kmail"
msgstr ""
-#: ../../share/advertising/03-graphic.pl_.c:9
-#, fuzzy
-msgid "Multimedia and Graphics"
-msgstr "Multimedya - Qrafika"
+#: ../../share/advertising/04-multimedia.pl_.c:9
+msgid "Discover the most up-to-date graphics and multimedia tools!"
+msgstr ""
+
+#: ../../share/advertising/04-multimedia.pl_.c:10
+msgid "Push multimedia to its limits!"
+msgstr ""
-#: ../../share/advertising/03-graphic.pl_.c:10
+#: ../../share/advertising/04-multimedia.pl_.c:11
msgid ""
-"Mandrake Linux 8.2 lets you push your multimedia computer to its limits! Use "
-"the latest software to play music and audio files, edit and organize your "
-"images and photos, watch TV and videos, and much more"
+"Mandrake Linux 9.0 enables you to use the very latest software to play audio "
+"files, edit and handle your images or photos, and play videos"
msgstr ""
-#: ../../share/advertising/04-develop.pl_.c:9
-msgid "Development"
-msgstr "TəcrĂŒbi"
+#: ../../share/advertising/05-games.pl_.c:9
+msgid "Games"
+msgstr "Oyunlar"
-#: ../../share/advertising/04-develop.pl_.c:10
+#: ../../share/advertising/05-games.pl_.c:10
msgid ""
-"Mandrake Linux 8.2 is the ultimate development platform. Discover the power "
-"of the GNU gcc compiler as well as the best Open Source development "
-"environments"
+"Mandrake Linux 9.0 provides the best Open Source games - arcade, action, "
+"cards, sports, strategy..."
msgstr ""
-#: ../../share/advertising/05-contcenter.pl_.c:9
-#: ../../standalone/drakbug_.c:69
+#: ../../share/advertising/06-mcc.pl_.c:9 ../../standalone/drakbug_.c:69
#, fuzzy
msgid "Mandrake Control Center"
msgstr "İdarə Mərkəzi"
-#: ../../share/advertising/05-contcenter.pl_.c:10
+#: ../../share/advertising/06-mcc.pl_.c:10
msgid ""
-"The Mandrake Linux 8.2 Control Center is a one-stop location for fully "
-"customizing and configuring your Mandrake system"
+"Mandrake Linux 9.0 provides a powerful tool to fully customize and configure "
+"your machine"
msgstr ""
-#: ../../share/advertising/06-user.pl_.c:9
+#: ../../share/advertising/07-desktop.pl_.c:9
#, fuzzy
msgid "User interfaces"
msgstr "ƞəbəkə ara ĂŒzĂŒ"
-#: ../../share/advertising/06-user.pl_.c:10
+#: ../../share/advertising/07-desktop.pl_.c:10
msgid ""
-"Mandrake Linux 8.2 provides 11 different graphical desktop environments and "
-"window managers to choose from including GNOME 1.4, KDE 2.2.2, Window Maker "
-"0.8, and the rest"
+"Mandrake Linux 9.0 provides 11 user interfaces which can be fully modified: "
+"KDE 3, Gnome 2, WindowMaker..."
msgstr ""
-#: ../../share/advertising/07-server.pl_.c:9
+#: ../../share/advertising/08-development.pl_.c:9
#, fuzzy
-msgid "Server Software"
-msgstr "SMB verici adı"
+msgid "Development simplified"
+msgstr "TəcrĂŒbi"
+
+#: ../../share/advertising/08-development.pl_.c:10
+msgid "Mandrake Linux 9.0 is the ultimate development platform"
+msgstr ""
-#: ../../share/advertising/07-server.pl_.c:10
+#: ../../share/advertising/08-development.pl_.c:11
msgid ""
-"Transform your machine into a powerful server with just a few clicks of the "
-"mouse: Web server, email, firewall, router, file and print server, ..."
+"Use the full power of the GNU gcc 3 compiler as well as the best Open Source "
+"development environments"
msgstr ""
-#: ../../share/advertising/08-games.pl_.c:9
-msgid "Games"
-msgstr "Oyunlar"
+#: ../../share/advertising/09-server.pl_.c:9
+msgid "Turn your machine into a reliable server"
+msgstr ""
-#: ../../share/advertising/08-games.pl_.c:10
+#: ../../share/advertising/09-server.pl_.c:10
msgid ""
-"Mandrake Linux 8.2 provides the best Open Source games - arcade, action, "
-"cards, sports, strategy, ..."
+"Transform your machine into a powerful server in a few clicks of your mouse: "
+"Web server, mail, firewall, router, file and print server..."
msgstr ""
-#: ../../share/advertising/09-MDKcampus.pl_.c:9
-msgid "MandrakeCampus"
+#: ../../share/advertising/10-mnf.pl_.c:9
+msgid "Optimize your security"
msgstr ""
-#: ../../share/advertising/09-MDKcampus.pl_.c:10
+#: ../../share/advertising/10-mnf.pl_.c:10
msgid ""
-"Would you like to learn Linux simply, quickly, and for free? MandrakeSoft "
-"provides free Linux training, as well as a way to test your progress, at "
-"MandrakeCampus -- our online training center"
+"The MandrakeSecurity range includes the Multi Network Firewall product (M.N."
+"F.)"
msgstr ""
-#: ../../share/advertising/10-MDKexpert.pl_.c:9
-#, fuzzy
-msgid "MandrakeExpert"
-msgstr "Usta"
+#: ../../share/advertising/10-mnf.pl_.c:11
+msgid ""
+"This firewall product includes network features which allow you to fulfill "
+"all your security needs"
+msgstr ""
+
+#: ../../share/advertising/10-mnf.pl_.c:12
+msgid "This product is available on MandrakeStore website"
+msgstr ""
-#: ../../share/advertising/10-MDKexpert.pl_.c:10
+#: ../../share/advertising/11-mdkstore.pl_.c:9
+msgid "The official MandrakeSoft store"
+msgstr ""
+
+#: ../../share/advertising/11-mdkstore.pl_.c:10
msgid ""
-"Quality support from the Linux Community, and from MandrakeSoft, is just "
-"around the corner. And if you're already a Linux veteran, become an \"Expert"
-"\" and share your knowledge at our support website"
+"Our full range of Linux solutions, as well as special offers on products and "
+"'goodies', are available online at our e-store"
msgstr ""
-#: ../../share/advertising/11-consul.pl_.c:9
-msgid "MandrakeConsulting"
+#: ../../share/advertising/12-mdkstore.pl_.c:9
+msgid "Strategic partners"
msgstr ""
-#: ../../share/advertising/11-consul.pl_.c:10
+#: ../../share/advertising/12-mdkstore.pl_.c:10
msgid ""
-"For all of your IT projects, our consultants are ready to analyze your "
-"requirements and offer a customized solution. Benefit from MandrakeSoft's "
-"vast experience as a Linux producer to provide a true IT alternative for "
-"your business organization"
+"MandrakeSoft works alongside a selection of companies offering professional "
+"solutions compatible with Mandrake Linux; a list of these partners is "
+"available on the MandrakeStore"
msgstr ""
-#: ../../share/advertising/12-MDKstore.pl_.c:9
-msgid "MandrakeStore"
+#: ../../share/advertising/13-mdkcampus.pl_.c:9
+msgid "Discover MandrakeSoft's training catalogue Linux-Campus"
msgstr ""
-#: ../../share/advertising/12-MDKstore.pl_.c:10
+#: ../../share/advertising/13-mdkcampus.pl_.c:10
msgid ""
-"A full range of Linux solutions, as well as special offers on products and "
-"'goodies', are available online at our e-store"
+"The training program has been create to respond to the needs of both users "
+"and experts (Network and System administrations)"
msgstr ""
-#: ../../share/advertising/13-Nvert.pl_.c:9
+#: ../../share/advertising/13-mdkcampus.pl_.c:11
+msgid "Certify yourself on Linux"
+msgstr ""
+
+#: ../../share/advertising/13-mdkcampus.pl_.c:12
msgid ""
-"For more information on MandrakeSoft's Professional Services and commercial "
-"offerings, please see the following web page:"
+"Whether you choose to teach yourself online or via our network of training "
+"partners, the Linux-Campus catalogue prepares you for the acknowledged LPI "
+"certification program (worldwide professional technical certification)"
msgstr ""
-#: ../../share/advertising/13-Nvert.pl_.c:11
-msgid "http://www.mandrakesoft.com/sales/contact"
+#: ../../share/advertising/14-mdkexpert.pl_.c:9
+#, fuzzy
+msgid "Become a MandrakeExpert"
+msgstr "Usta"
+
+#: ../../share/advertising/14-mdkexpert.pl_.c:10
+msgid ""
+"Find the solutions to your problems via MandrakeSoft's online support "
+"platform"
msgstr ""
-#: ../../standalone.pm_.c:40
+#: ../../share/advertising/14-mdkexpert.pl_.c:11
+msgid ""
+"Join the MandrakeSoft support teams and the Linux Community online to share "
+"your knowledge and help others by becoming a recognized Expert on the online "
+"technical support website:"
+msgstr ""
+
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:9
+#, fuzzy
+msgid "MandrakeExpert Corporate"
+msgstr "Usta"
+
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:10
+msgid "An online platform to respond to company's specific support needs"
+msgstr ""
+
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:11
+msgid ""
+"All incidents will be followed up by a single qualified MandrakeSoft "
+"technical expert."
+msgstr ""
+
+#: ../../standalone.pm_.c:41
#, fuzzy
msgid "Installing packages..."
msgstr "%s paketi qurulur"
-#: ../../standalone/XFdrake_.c:143
+#: ../../standalone/XFdrake_.c:145
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "LĂŒtfen çıxın və Ctrl-Alt-BackSpace dĂŒymələrinə basın"
-#: ../../standalone/XFdrake_.c:147
+#: ../../standalone/XFdrake_.c:149
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "\"%s\"a(ə) təkrar girin və dəyiƟiklikləri fəallaƟdırın"
-#: ../../standalone/diskdrake_.c:81
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I'll try to go on blanking bad partitions"
-msgstr ""
-"Bölmə cədvəlini oxuya bilmirəm, dəyəsən biraz xarab olub:-(\n"
-"Xəsərli hissələri dĂŒzəltməyə cəhd edəcəm"
-
#: ../../standalone/drakTermServ_.c:188
#, fuzzy
msgid "Mandrake Terminal Server Configuration"
@@ -9406,12 +9771,13 @@ msgstr "İstifadəçini əlavə et"
msgid "Add/Del Clients"
msgstr "DHCP Alıcısı"
-#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3282
-#: ../../standalone/drakbackup_.c:3315 ../../standalone/drakbackup_.c:3341
-#: ../../standalone/drakbackup_.c:3368 ../../standalone/drakbackup_.c:3395
-#: ../../standalone/drakbackup_.c:3434 ../../standalone/drakbackup_.c:3455
-#: ../../standalone/drakbackup_.c:3482 ../../standalone/drakbackup_.c:3508
-#: ../../standalone/drakbackup_.c:3533 ../../standalone/drakfont_.c:700
+#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3930
+#: ../../standalone/drakbackup_.c:3963 ../../standalone/drakbackup_.c:3989
+#: ../../standalone/drakbackup_.c:4016 ../../standalone/drakbackup_.c:4043
+#: ../../standalone/drakbackup_.c:4082 ../../standalone/drakbackup_.c:4103
+#: ../../standalone/drakbackup_.c:4130 ../../standalone/drakbackup_.c:4160
+#: ../../standalone/drakbackup_.c:4186 ../../standalone/drakbackup_.c:4211
+#: ../../standalone/drakfont_.c:700
#, fuzzy
msgid "Help"
msgstr "/_Yardım"
@@ -9572,8 +9938,8 @@ msgid ""
"The parameters of the auto-install are available in the sections on the left"
msgstr ""
-#: ../../standalone/drakautoinst_.c:239 ../../standalone/drakgw_.c:548
-#: ../../standalone/scannerdrake_.c:105
+#: ../../standalone/drakautoinst_.c:239 ../../standalone/drakgw_.c:484
+#: ../../standalone/scannerdrake_.c:119
msgid "Congratulations!"
msgstr "Təbriklər!"
@@ -9598,27 +9964,31 @@ msgstr "İstifadəçi əlavə et"
msgid "Remove the last item"
msgstr "Loopback faylı Ɵəkilləndirilir: %s"
-#: ../../standalone/drakbackup_.c:625
+#: ../../standalone/drakbackup_.c:619
msgid "Cron not available yet as non-root"
msgstr ""
-#: ../../standalone/drakbackup_.c:731
+#: ../../standalone/drakbackup_.c:725
msgid "WARNING"
msgstr ""
-#: ../../standalone/drakbackup_.c:732
+#: ../../standalone/drakbackup_.c:726
#, fuzzy
msgid "FATAL"
msgstr "FAT"
-#: ../../standalone/drakbackup_.c:744
+#: ../../standalone/drakbackup_.c:727
+msgid "INFO"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:739
msgid ""
"\n"
" DrakBackup Report \n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:745
+#: ../../standalone/drakbackup_.c:740
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -9626,7 +9996,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:749
+#: ../../standalone/drakbackup_.c:744
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -9634,13 +10004,20 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:770 ../../standalone/drakbackup_.c:840
-#: ../../standalone/drakbackup_.c:894
+#: ../../standalone/drakbackup_.c:765 ../../standalone/drakbackup_.c:835
+#: ../../standalone/drakbackup_.c:889
#, fuzzy
msgid "Total progess"
msgstr "Qapıları sına"
-#: ../../standalone/drakbackup_.c:822
+#: ../../standalone/drakbackup_.c:788
+msgid ""
+"Sorry, perl-Expect is not installed/enabled. To use\n"
+"this feature, install perl-Expect and comment lines 772-774,\n"
+" as well as 788,789. Then uncomment line 787."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:817
#, c-format
msgid ""
"%s exists, delete?\n"
@@ -9649,16 +10026,41 @@ msgid ""
" need to purge the entry from authorized_keys on the server."
msgstr ""
-#: ../../standalone/drakbackup_.c:831
+#: ../../standalone/drakbackup_.c:826
msgid "This may take a moment to generate the keys."
msgstr ""
-#: ../../standalone/drakbackup_.c:838
+#: ../../standalone/drakbackup_.c:833
#, c-format
msgid "ERROR: Cannot spawn %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:865
+#: ../../standalone/drakbackup_.c:850
+#, c-format
+msgid "No password prompt on %s at port %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:851
+#, fuzzy, c-format
+msgid "Bad password on %s"
+msgstr "Parolsuz"
+
+#: ../../standalone/drakbackup_.c:852
+#, c-format
+msgid "Permission denied transferring %s to %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:853
+#, fuzzy, c-format
+msgid "Can't find %s on %s"
+msgstr "%s açıla bilmir: %s\n"
+
+#: ../../standalone/drakbackup_.c:856
+#, c-format
+msgid "%s not responding"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:860
#, c-format
msgid ""
"Transfer successful\n"
@@ -9669,63 +10071,68 @@ msgid ""
"without being prompted for a password."
msgstr ""
-#: ../../standalone/drakbackup_.c:908
+#: ../../standalone/drakbackup_.c:903
msgid "WebDAV remote site already in sync!"
msgstr ""
-#: ../../standalone/drakbackup_.c:912
+#: ../../standalone/drakbackup_.c:907
msgid "WebDAV transfer failed!"
msgstr ""
-#: ../../standalone/drakbackup_.c:934
+#: ../../standalone/drakbackup_.c:928
msgid "No CDR/DVDR in drive!"
msgstr ""
-#: ../../standalone/drakbackup_.c:938
+#: ../../standalone/drakbackup_.c:932
msgid "Does not appear to be recordable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:942
+#: ../../standalone/drakbackup_.c:936
msgid "Not erasable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:981
+#: ../../standalone/drakbackup_.c:975
msgid "This may take a moment to erase the media."
msgstr ""
-#: ../../standalone/drakbackup_.c:1045
+#: ../../standalone/drakbackup_.c:1060
msgid "Permission problem accessing CD."
msgstr ""
-#: ../../standalone/drakbackup_.c:1144 ../../standalone/drakbackup_.c:1193
+#: ../../standalone/drakbackup_.c:1087
+#, c-format
+msgid "No tape in %s!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1199 ../../standalone/drakbackup_.c:1248
msgid "Backup system files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:1194 ../../standalone/drakbackup_.c:1261
+#: ../../standalone/drakbackup_.c:1249 ../../standalone/drakbackup_.c:1316
#, fuzzy
msgid "Hard Disk Backup files..."
msgstr "Xətalı yedəkləmə faylı"
-#: ../../standalone/drakbackup_.c:1206
+#: ../../standalone/drakbackup_.c:1261
#, fuzzy
msgid "Backup User files..."
msgstr "Xətalı yedəkləmə faylı"
-#: ../../standalone/drakbackup_.c:1207
+#: ../../standalone/drakbackup_.c:1262
msgid "Hard Disk Backup Progress..."
msgstr ""
-#: ../../standalone/drakbackup_.c:1260
+#: ../../standalone/drakbackup_.c:1315
#, fuzzy
msgid "Backup Other files..."
msgstr "Xətalı yedəkləmə faylı"
-#: ../../standalone/drakbackup_.c:1266
+#: ../../standalone/drakbackup_.c:1321
#, fuzzy
msgid "No changes to backup!"
msgstr "Xətalı yedəkləmə faylı"
-#: ../../standalone/drakbackup_.c:1282 ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1337 ../../standalone/drakbackup_.c:1360
#, c-format
msgid ""
"\n"
@@ -9733,800 +10140,923 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1289
+#: ../../standalone/drakbackup_.c:1344
#, c-format
msgid ""
-"file list sent by FTP : %s\n"
+"file list sent by FTP: %s\n"
" "
msgstr ""
-#: ../../standalone/drakbackup_.c:1292
+#: ../../standalone/drakbackup_.c:1347
msgid ""
"\n"
" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1310
+#: ../../standalone/drakbackup_.c:1365
msgid ""
"\n"
"Drakbackup activities via CD:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1315
+#: ../../standalone/drakbackup_.c:1370
msgid ""
"\n"
"Drakbackup activities via tape:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1324
+#: ../../standalone/drakbackup_.c:1379
#, fuzzy
msgid " Error during mail sending. \n"
msgstr "%s faylı oxunurkan xəta oldu"
-#: ../../standalone/drakbackup_.c:1346
+#: ../../standalone/drakbackup_.c:1404
msgid "Can't create catalog!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1459 ../../standalone/drakbackup_.c:1470
-#: ../../standalone/drakbackup_.c:1481 ../../standalone/drakfont_.c:1004
+#: ../../standalone/drakbackup_.c:1517 ../../standalone/drakbackup_.c:1528
+#: ../../standalone/drakfont_.c:1004
#, fuzzy
msgid "File Selection"
msgstr "Paket Qrup Seçkisi"
-#: ../../standalone/drakbackup_.c:1486
+#: ../../standalone/drakbackup_.c:1556
msgid "Select the files or directories and click on 'Add'"
msgstr ""
-#: ../../standalone/drakbackup_.c:1525
+#: ../../standalone/drakbackup_.c:1600
msgid ""
"\n"
"Please check all options that you need.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1526
+#: ../../standalone/drakbackup_.c:1601
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1527
+#: ../../standalone/drakbackup_.c:1602
#, fuzzy
msgid "Backup your System files. (/etc directory)"
msgstr "Xətalı yedəkləmə faylı"
-#: ../../standalone/drakbackup_.c:1528
+#: ../../standalone/drakbackup_.c:1603
msgid "Use incremental backup (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1529
+#: ../../standalone/drakbackup_.c:1604
msgid "Do not include critical files (passwd, group, fstab)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1530
+#: ../../standalone/drakbackup_.c:1605
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr ""
-#: ../../standalone/drakbackup_.c:1547
+#: ../../standalone/drakbackup_.c:1622
#, fuzzy
msgid "Please check all users that you want to include in your backup."
msgstr "XahiƟ edirik qurmaq istədiyiniz paketləri seçin."
-#: ../../standalone/drakbackup_.c:1574
+#: ../../standalone/drakbackup_.c:1649
msgid "Do not include the browser cache"
msgstr ""
-#: ../../standalone/drakbackup_.c:1575 ../../standalone/drakbackup_.c:1599
+#: ../../standalone/drakbackup_.c:1650 ../../standalone/drakbackup_.c:1674
msgid "Use Incremental Backups (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1597 ../../standalone/drakfont_.c:1058
+#: ../../standalone/drakbackup_.c:1672 ../../standalone/drakfont_.c:1058
#, fuzzy
msgid "Remove Selected"
msgstr "Növbəni sil"
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:1710
#, fuzzy
msgid "Windows (FAT32)"
msgstr "\"Windows\"u sil"
-#: ../../standalone/drakbackup_.c:1674
+#: ../../standalone/drakbackup_.c:1749
#, fuzzy
msgid "Users"
msgstr "Ä°stifadəçi adı"
-#: ../../standalone/drakbackup_.c:1700
+#: ../../standalone/drakbackup_.c:1775
#, fuzzy
msgid "Use network connection to backup"
msgstr "Xətalı yedəkləmə faylı"
-#: ../../standalone/drakbackup_.c:1706
+#: ../../standalone/drakbackup_.c:1777
+msgid "Net Method:"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1781
msgid "Use Expect for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1707
+#: ../../standalone/drakbackup_.c:1782
msgid ""
"Create/Transfer\n"
"backup keys for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1708
+#: ../../standalone/drakbackup_.c:1783
msgid ""
" Transfer \n"
"Now"
msgstr ""
-#: ../../standalone/drakbackup_.c:1709
+#: ../../standalone/drakbackup_.c:1784
msgid "Keys in place already"
msgstr ""
-#: ../../standalone/drakbackup_.c:1713
+#: ../../standalone/drakbackup_.c:1788
#, fuzzy
msgid "Please enter the host name or IP."
msgstr "XahiƟ edirik siçanınızı seçin"
-#: ../../standalone/drakbackup_.c:1718
+#: ../../standalone/drakbackup_.c:1793
msgid ""
"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
-#: ../../standalone/drakbackup_.c:1723
+#: ../../standalone/drakbackup_.c:1798
#, fuzzy
msgid "Please enter your login"
msgstr "XahiƟ edirik təkrar sınayın"
-#: ../../standalone/drakbackup_.c:1728
+#: ../../standalone/drakbackup_.c:1803
#, fuzzy
msgid "Please enter your password"
msgstr "XahiƟ edirik təkrar sınayın"
-#: ../../standalone/drakbackup_.c:1734
+#: ../../standalone/drakbackup_.c:1809
#, fuzzy
msgid "Remember this password"
msgstr "Parolsuz"
-#: ../../standalone/drakbackup_.c:1745
+#: ../../standalone/drakbackup_.c:1820
msgid "Need hostname, username and password!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1841
+#: ../../standalone/drakbackup_.c:1915
msgid "Use CD/DVDROM to backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1844
+#: ../../standalone/drakbackup_.c:1918
msgid ""
"Please choose your CD/DVD device\n"
"(Press Enter to propogate settings to other fields.\n"
"This field isn't necessary, only a tool to fill in the form.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1849
+#: ../../standalone/drakbackup_.c:1923
#, fuzzy
msgid "Please choose your CD/DVD media size"
msgstr "Klaviatura quruluƟunu seçiniz."
-#: ../../standalone/drakbackup_.c:1855
+#: ../../standalone/drakbackup_.c:1929
#, fuzzy
msgid "Please check for multisession CD"
msgstr "XahiƟ edirik bir bölmə ĂŒstĂŒnə tıqlayın"
-#: ../../standalone/drakbackup_.c:1861
+#: ../../standalone/drakbackup_.c:1935
#, fuzzy
msgid "Please check if you are using CDRW media"
msgstr "XahiƟ edirik bir bölmə ĂŒstĂŒnə tıqlayın"
-#: ../../standalone/drakbackup_.c:1867
+#: ../../standalone/drakbackup_.c:1941
#, fuzzy
msgid "Please check if you want to erase your RW media (1st Session)"
msgstr "XahiƟ edirik bir bölmə ĂŒstĂŒnə tıqlayın"
-#: ../../standalone/drakbackup_.c:1868
+#: ../../standalone/drakbackup_.c:1942
msgid " Erase Now "
msgstr ""
-#: ../../standalone/drakbackup_.c:1874
+#: ../../standalone/drakbackup_.c:1948
#, fuzzy
msgid "Please check if you are using a DVDR device"
msgstr "XahiƟ edirik bir bölmə ĂŒstĂŒnə tıqlayın"
-#: ../../standalone/drakbackup_.c:1880
+#: ../../standalone/drakbackup_.c:1954
#, fuzzy
msgid "Please check if you are using a DVDRAM device"
msgstr "XahiƟ edirik bir bölmə ĂŒstĂŒnə tıqlayın"
-#: ../../standalone/drakbackup_.c:1893
+#: ../../standalone/drakbackup_.c:1967
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
msgstr ""
-#: ../../standalone/drakbackup_.c:1926
+#: ../../standalone/drakbackup_.c:2000
#, fuzzy
msgid "No CD device defined!"
msgstr "Fayl seç"
-#: ../../standalone/drakbackup_.c:1974
+#: ../../standalone/drakbackup_.c:2048
#, fuzzy
msgid "Use tape to backup"
msgstr "Xətalı yedəkləmə faylı"
-#: ../../standalone/drakbackup_.c:1977
+#: ../../standalone/drakbackup_.c:2051
msgid "Please enter the device name to use for backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1983
+#: ../../standalone/drakbackup_.c:2057
#, fuzzy
msgid "Please check if you want to use the non-rewinding device."
msgstr "XahiƟ edirik qurmaq istədiyiniz paketləri seçin."
-#: ../../standalone/drakbackup_.c:1989
+#: ../../standalone/drakbackup_.c:2063
#, fuzzy
msgid "Please check if you want to erase your tape before the backup."
msgstr "XahiƟ edirik qurmaq istədiyiniz paketləri seçin."
-#: ../../standalone/drakbackup_.c:1995
+#: ../../standalone/drakbackup_.c:2069
#, fuzzy
msgid "Please check if you want to eject your tape after the backup."
msgstr "XahiƟ edirik qurmaq istədiyiniz paketləri seçin."
-#: ../../standalone/drakbackup_.c:2001 ../../standalone/drakbackup_.c:2074
-#: ../../standalone/drakbackup_.c:3025
+#: ../../standalone/drakbackup_.c:2075 ../../standalone/drakbackup_.c:2149
+#: ../../standalone/drakbackup_.c:3116
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:2066
+#: ../../standalone/drakbackup_.c:2140
#, fuzzy
msgid "Please enter the directory to save to:"
msgstr "XahiƟ edirik siçanınızı seçin"
-#: ../../standalone/drakbackup_.c:2080 ../../standalone/drakbackup_.c:3031
+#: ../../standalone/drakbackup_.c:2155 ../../standalone/drakbackup_.c:3122
#, fuzzy
msgid "Use quota for backup files."
msgstr "Xətalı yedəkləmə faylı"
-#: ../../standalone/drakbackup_.c:2146
+#: ../../standalone/drakbackup_.c:2221
#, fuzzy
msgid "Network"
msgstr "ƞəbəkə ara ĂŒzĂŒ"
-#: ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:2226
msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2156
+#: ../../standalone/drakbackup_.c:2231
msgid "HardDrive / NFS"
msgstr ""
-#: ../../standalone/drakbackup_.c:2161
+#: ../../standalone/drakbackup_.c:2236
#, fuzzy
msgid "Tape"
msgstr "Növ"
-#: ../../standalone/drakbackup_.c:2175 ../../standalone/drakbackup_.c:2179
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2250 ../../standalone/drakbackup_.c:2254
+#: ../../standalone/drakbackup_.c:2258
msgid "hourly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2176 ../../standalone/drakbackup_.c:2180
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2251 ../../standalone/drakbackup_.c:2255
+#: ../../standalone/drakbackup_.c:2258
msgid "daily"
msgstr ""
-#: ../../standalone/drakbackup_.c:2177 ../../standalone/drakbackup_.c:2181
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2252 ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2258
msgid "weekly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2178 ../../standalone/drakbackup_.c:2182
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2253 ../../standalone/drakbackup_.c:2257
+#: ../../standalone/drakbackup_.c:2258
msgid "monthly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2196
+#: ../../standalone/drakbackup_.c:2271
#, fuzzy
msgid "Use daemon"
msgstr "Ä°stifadəçi adı"
-#: ../../standalone/drakbackup_.c:2201
+#: ../../standalone/drakbackup_.c:2276
#, fuzzy
msgid ""
"Please choose the time \n"
"interval between each backup"
msgstr "XahiƟ edirik qurmaq istədiyiniz paketləri seçin."
-#: ../../standalone/drakbackup_.c:2207
+#: ../../standalone/drakbackup_.c:2282
#, fuzzy
msgid ""
"Please choose the\n"
"media for backup."
msgstr "XahiƟ edirik istifadə ĂŒĂ§ĂŒn bir dil seçin."
-#: ../../standalone/drakbackup_.c:2214
+#: ../../standalone/drakbackup_.c:2289
msgid ""
"Please be sure that the cron daemon is included in your services. \n"
"\n"
"Note that currently all 'net' medias also use the hard drive."
msgstr ""
-#: ../../standalone/drakbackup_.c:2251
-msgid "Send mail report after each backup to :"
+#: ../../standalone/drakbackup_.c:2326
+msgid "Send mail report after each backup to:"
msgstr ""
-#: ../../standalone/drakbackup_.c:2257
+#: ../../standalone/drakbackup_.c:2332
msgid "Delete Hard Drive tar files after backup to other media."
msgstr ""
-#: ../../standalone/drakbackup_.c:2296
+#: ../../standalone/drakbackup_.c:2371
msgid "What"
msgstr ""
-#: ../../standalone/drakbackup_.c:2301
+#: ../../standalone/drakbackup_.c:2376
#, fuzzy
msgid "Where"
msgstr "Çərx"
-#: ../../standalone/drakbackup_.c:2306
+#: ../../standalone/drakbackup_.c:2381
#, fuzzy
msgid "When"
msgstr "Çərx"
-#: ../../standalone/drakbackup_.c:2311
+#: ../../standalone/drakbackup_.c:2386
#, fuzzy
msgid "More Options"
msgstr "Modul seçənəkləri:"
-#: ../../standalone/drakbackup_.c:2330 ../../standalone/drakbackup_.c:3873
+#: ../../standalone/drakbackup_.c:2405 ../../standalone/drakbackup_.c:4530
#, fuzzy
msgid "Drakbackup Configuration"
msgstr "ƞəbəkə quraƟdırılması"
-#: ../../standalone/drakbackup_.c:2348
+#: ../../standalone/drakbackup_.c:2423
#, fuzzy
msgid "Please choose where you want to backup"
msgstr "XahiƟ edirik qurmaq istədiyiniz paketləri seçin."
-#: ../../standalone/drakbackup_.c:2350
+#: ../../standalone/drakbackup_.c:2425
msgid "on Hard Drive"
msgstr ""
-#: ../../standalone/drakbackup_.c:2360
+#: ../../standalone/drakbackup_.c:2435
msgid "across Network"
msgstr ""
-#: ../../standalone/drakbackup_.c:2370
+#: ../../standalone/drakbackup_.c:2445
msgid "on CDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2378
+#: ../../standalone/drakbackup_.c:2453
msgid "on Tape Device"
msgstr ""
-#: ../../standalone/drakbackup_.c:2421
+#: ../../standalone/drakbackup_.c:2496
#, fuzzy
msgid "Please choose what you want to backup"
msgstr "XahiƟ edirik qurmaq istədiyiniz paketləri seçin."
-#: ../../standalone/drakbackup_.c:2422
+#: ../../standalone/drakbackup_.c:2497
#, fuzzy
msgid "Backup system"
msgstr "Fayl sistemi qurğuları"
-#: ../../standalone/drakbackup_.c:2423
+#: ../../standalone/drakbackup_.c:2498
msgid "Backup Users"
msgstr ""
-#: ../../standalone/drakbackup_.c:2426
+#: ../../standalone/drakbackup_.c:2501
msgid "Select user manually"
msgstr ""
-#: ../../standalone/drakbackup_.c:2508
+#: ../../standalone/drakbackup_.c:2584
msgid ""
"\n"
"Backup Sources: \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2509
+#: ../../standalone/drakbackup_.c:2585
msgid ""
"\n"
"- System Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2511
+#: ../../standalone/drakbackup_.c:2587
msgid ""
"\n"
"- User Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2513
+#: ../../standalone/drakbackup_.c:2589
msgid ""
"\n"
"- Other Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2515
+#: ../../standalone/drakbackup_.c:2591
#, c-format
msgid ""
"\n"
-"- Save on Hard drive on path : %s\n"
+"- Save on Hard drive on path: %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2518
+#: ../../standalone/drakbackup_.c:2594
msgid ""
"\n"
"- Delete hard drive tar files after backup.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2524
+#: ../../standalone/drakbackup_.c:2600
msgid ""
"\n"
"- Burn to CD"
msgstr ""
-#: ../../standalone/drakbackup_.c:2525
+#: ../../standalone/drakbackup_.c:2601
msgid "RW"
msgstr ""
-#: ../../standalone/drakbackup_.c:2526
+#: ../../standalone/drakbackup_.c:2602
#, fuzzy, c-format
-msgid " on device : %s"
+msgid " on device: %s"
msgstr "Siçan avadanlığı: %s\n"
-#: ../../standalone/drakbackup_.c:2527
+#: ../../standalone/drakbackup_.c:2603
msgid " (multi-session)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2528
+#: ../../standalone/drakbackup_.c:2604
#, c-format
msgid ""
"\n"
-"- Save to Tape on device : %s"
+"- Save to Tape on device: %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2529
+#: ../../standalone/drakbackup_.c:2605
#, c-format
msgid "\t\tErase=%s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2532
+#: ../../standalone/drakbackup_.c:2608
#, c-format
msgid ""
"\n"
-"- Save via %s on host : %s\n"
+"- Save via %s on host: %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2533
+#: ../../standalone/drakbackup_.c:2609
#, c-format
msgid ""
"\t\t user name: %s\n"
"\t\t on path: %s \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2534
+#: ../../standalone/drakbackup_.c:2610
#, fuzzy
msgid ""
"\n"
"- Options:\n"
msgstr "Seçənəklər"
-#: ../../standalone/drakbackup_.c:2535
+#: ../../standalone/drakbackup_.c:2611
msgid "\tDo not include System Files\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2538
+#: ../../standalone/drakbackup_.c:2614
msgid "\tBackups use tar and bzip2\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2540
+#: ../../standalone/drakbackup_.c:2616
msgid "\tBackups use tar and gzip\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2543
+#: ../../standalone/drakbackup_.c:2619
#, c-format
msgid ""
"\n"
-"- Daemon (%s) include :\n"
+"- Daemon (%s) include:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2544
+#: ../../standalone/drakbackup_.c:2620
msgid "\t-Hard drive.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2545
+#: ../../standalone/drakbackup_.c:2621
msgid "\t-CDROM.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2546
+#: ../../standalone/drakbackup_.c:2622
msgid "\t-Tape \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2547
+#: ../../standalone/drakbackup_.c:2623
msgid "\t-Network by FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2548
+#: ../../standalone/drakbackup_.c:2624
msgid "\t-Network by SSH.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2549
+#: ../../standalone/drakbackup_.c:2625
msgid "\t-Network by rsync.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2550
+#: ../../standalone/drakbackup_.c:2626
msgid "\t-Network by webdav.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2552
+#: ../../standalone/drakbackup_.c:2628
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2558
+#: ../../standalone/drakbackup_.c:2634
msgid ""
"List of data to restore:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2725
+#: ../../standalone/drakbackup_.c:2801
msgid ""
"List of data corrupted:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2727
+#: ../../standalone/drakbackup_.c:2803
#, fuzzy
msgid "Please uncheck or remove it on next time."
msgstr "Modeminizin hansı serial qapıya bağlı olduğunu seçiniz"
-#: ../../standalone/drakbackup_.c:2737
+#: ../../standalone/drakbackup_.c:2813
msgid "Backup files are corrupted"
msgstr ""
-#: ../../standalone/drakbackup_.c:2758
+#: ../../standalone/drakbackup_.c:2834
msgid " All of your selected data have been "
msgstr ""
-#: ../../standalone/drakbackup_.c:2759
+#: ../../standalone/drakbackup_.c:2835
#, c-format
msgid " Successfuly Restored on %s "
msgstr ""
-#: ../../standalone/drakbackup_.c:2877
+#: ../../standalone/drakbackup_.c:2953
#, fuzzy
msgid " Restore Configuration "
msgstr "ƞəbəkə quraƟdırılması"
-#: ../../standalone/drakbackup_.c:2895
+#: ../../standalone/drakbackup_.c:2971
msgid "OK to restore the other files."
msgstr ""
-#: ../../standalone/drakbackup_.c:2912
+#: ../../standalone/drakbackup_.c:2988
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2975
+#: ../../standalone/drakbackup_.c:3066
#, fuzzy
msgid "Backup the system files before:"
msgstr "Xətalı yedəkləmə faylı"
-#: ../../standalone/drakbackup_.c:2977
+#: ../../standalone/drakbackup_.c:3068
#, fuzzy
msgid "please choose the date to restore"
msgstr "XahiƟ edirik siçanınızın növĂŒnĂŒ seçin."
-#: ../../standalone/drakbackup_.c:3014
+#: ../../standalone/drakbackup_.c:3105
#, fuzzy
msgid "Use Hard Disk to backup"
msgstr "Xətalı yedəkləmə faylı"
-#: ../../standalone/drakbackup_.c:3017
+#: ../../standalone/drakbackup_.c:3108
#, fuzzy
msgid "Please enter the directory to save:"
msgstr "XahiƟ edirik siçanınızı seçin"
-#: ../../standalone/drakbackup_.c:3060
+#: ../../standalone/drakbackup_.c:3151
#, fuzzy
msgid "FTP Connection"
msgstr "Yerli ƞəbəkə quraƟdırılması"
-#: ../../standalone/drakbackup_.c:3067
+#: ../../standalone/drakbackup_.c:3158
#, fuzzy
msgid "Secure Connection"
msgstr "Çap Edici Bağlantısı Seçin"
-#: ../../standalone/drakbackup_.c:3093
+#: ../../standalone/drakbackup_.c:3184
#, fuzzy
msgid "Restore from Hard Disk."
msgstr "Disketdən geri çağır"
-#: ../../standalone/drakbackup_.c:3095
+#: ../../standalone/drakbackup_.c:3186
msgid "Please enter the directory where backups are stored"
msgstr ""
-#: ../../standalone/drakbackup_.c:3157
+#: ../../standalone/drakbackup_.c:3254
#, fuzzy
msgid "Select another media to restore from"
msgstr "XahiƟ edirik siçanınızın növĂŒnĂŒ seçin."
-#: ../../standalone/drakbackup_.c:3159
+#: ../../standalone/drakbackup_.c:3256
#, fuzzy
msgid "Other Media"
msgstr "Digər"
-#: ../../standalone/drakbackup_.c:3164
+#: ../../standalone/drakbackup_.c:3261
#, fuzzy
msgid "Restore system"
msgstr "Sistemi qur"
-#: ../../standalone/drakbackup_.c:3165
+#: ../../standalone/drakbackup_.c:3262
#, fuzzy
msgid "Restore Users"
msgstr "Fayldan geri çağır"
-#: ../../standalone/drakbackup_.c:3166
+#: ../../standalone/drakbackup_.c:3263
#, fuzzy
msgid "Restore Other"
msgstr "Fayldan geri çağır"
-#: ../../standalone/drakbackup_.c:3168
+#: ../../standalone/drakbackup_.c:3265
#, fuzzy
msgid "select path to restore (instead of /)"
msgstr "XahiƟ edirik siçanınızın növĂŒnĂŒ seçin."
-#: ../../standalone/drakbackup_.c:3172
+#: ../../standalone/drakbackup_.c:3269
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:3174
+#: ../../standalone/drakbackup_.c:3271
msgid "Remove user directories before restore."
msgstr ""
-#: ../../standalone/drakbackup_.c:3232
+#: ../../standalone/drakbackup_.c:3384
+msgid ""
+"Restore Selected\n"
+"Catalog Entry"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3394
+#, fuzzy
+msgid ""
+"Restore Selected\n"
+"Files"
+msgstr "Növbəni sil"
+
+#: ../../standalone/drakbackup_.c:3411
+#, fuzzy
+msgid ""
+"Change\n"
+"Restore Path"
+msgstr "Fayldan geri çağır"
+
+#: ../../standalone/drakbackup_.c:3477
+#, c-format
+msgid "Backup files not found at %s."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3490
+#, c-format
+msgid ""
+"Insert the CD with volume label %s\n"
+" in the CD drive under mount point /mnt/cdrom"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3490
+#, fuzzy
+msgid "Restore From CD"
+msgstr "Disketdən geri çağır"
+
+#: ../../standalone/drakbackup_.c:3492
+#, c-format
+msgid "Not the correct CD label. Disk is labelled %s."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3502
+#, c-format
+msgid ""
+"Insert the tape with volume label %s\n"
+" in the tape drive device %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3502
+#, fuzzy
+msgid "Restore From Tape"
+msgstr "Bölmə cədvəlini qurtar"
+
+#: ../../standalone/drakbackup_.c:3504
+#, c-format
+msgid "Not the correct tape label. Tape is labelled %s."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3524
+#, fuzzy
+msgid "Restore Via Network"
+msgstr "Fayldan geri çağır"
+
+#: ../../standalone/drakbackup_.c:3524
+#, c-format
+msgid "Restore Via Network Protocol: %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3525
+#, fuzzy
+msgid "Host Name"
+msgstr "Ev sahibi adı"
+
+#: ../../standalone/drakbackup_.c:3526
+msgid "Host Path or Module"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3533
+#, fuzzy
+msgid "Password required"
+msgstr "Parol"
+
+#: ../../standalone/drakbackup_.c:3539
+#, fuzzy
+msgid "Username required"
+msgstr "Ä°stifadəçi adı"
+
+#: ../../standalone/drakbackup_.c:3542
+#, fuzzy
+msgid "Hostname required"
+msgstr "Ev sahibi adı:"
+
+#: ../../standalone/drakbackup_.c:3547
+msgid "Path or Module required"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3560
+msgid "Files Restored..."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3563
+#, fuzzy
+msgid "Restore Failed..."
+msgstr "Fayldan geri çağır"
+
+#: ../../standalone/drakbackup_.c:3801
msgid "Restore all backups"
msgstr ""
-#: ../../standalone/drakbackup_.c:3241
+#: ../../standalone/drakbackup_.c:3810
#, fuzzy
msgid "Custom Restore"
msgstr "XĂŒsusi"
-#: ../../standalone/drakbackup_.c:3287 ../../standalone/drakbackup_.c:3320
-#: ../../standalone/drakbackup_.c:3346 ../../standalone/drakbackup_.c:3373
-#: ../../standalone/drakbackup_.c:3400 ../../standalone/drakbackup_.c:3460
-#: ../../standalone/drakbackup_.c:3487 ../../standalone/drakbackup_.c:3513
+#: ../../standalone/drakbackup_.c:3856
+msgid "CD in place - continue."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3862
+msgid "Browse to new restore repository."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3865
+#, fuzzy
+msgid "Restore From Catalog"
+msgstr "Bölmə cədvəlini qurtar"
+
+#: ../../standalone/drakbackup_.c:3893
+#, fuzzy
+msgid "Restore Progress"
+msgstr "Fayldan geri çağır"
+
+#: ../../standalone/drakbackup_.c:3935 ../../standalone/drakbackup_.c:3968
+#: ../../standalone/drakbackup_.c:3994 ../../standalone/drakbackup_.c:4021
+#: ../../standalone/drakbackup_.c:4048 ../../standalone/drakbackup_.c:4108
+#: ../../standalone/drakbackup_.c:4135 ../../standalone/drakbackup_.c:4165
+#: ../../standalone/drakbackup_.c:4191
#, fuzzy
msgid "Previous"
msgstr "<- Əvvəlki"
-#: ../../standalone/drakbackup_.c:3291 ../../standalone/drakbackup_.c:3377
+#: ../../standalone/drakbackup_.c:3939 ../../standalone/drakbackup_.c:4025
#: ../../standalone/logdrake_.c:223
#, fuzzy
msgid "Save"
msgstr "Hal:"
-#: ../../standalone/drakbackup_.c:3350
+#: ../../standalone/drakbackup_.c:3998
#, fuzzy
msgid "Build Backup"
msgstr "Xətalı yedəkləmə faylı"
-#: ../../standalone/drakbackup_.c:3404 ../../standalone/drakbackup_.c:3974
+#: ../../standalone/drakbackup_.c:4052 ../../standalone/drakbackup_.c:4632
#, fuzzy
msgid "Restore"
msgstr "Fayldan geri çağır"
-#: ../../standalone/drakbackup_.c:3553
-msgid ""
-"Please Build backup before to restore it...\n"
-" or verify that your path to save is correct."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3574
+#: ../../standalone/drakbackup_.c:4231
msgid ""
-"Error during sendmail\n"
-" your report mail was not sent\n"
+"Error during sendmail.\n"
+" Your report mail was not sent.\n"
" Please configure sendmail"
msgstr ""
-#: ../../standalone/drakbackup_.c:3598
+#: ../../standalone/drakbackup_.c:4255
#, fuzzy
msgid ""
"The following packages need to be installed:\n"
" @list_of_rpm_to_install"
msgstr "AƟağıdakı paketlər qurulacaqdır"
-#: ../../standalone/drakbackup_.c:3621
+#: ../../standalone/drakbackup_.c:4278
msgid ""
"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
-#: ../../standalone/drakbackup_.c:3644
+#: ../../standalone/drakbackup_.c:4301
#, fuzzy
msgid "Please select data to restore..."
msgstr "XahiƟ edirik istifadə ĂŒĂ§ĂŒn bir dil seçin."
-#: ../../standalone/drakbackup_.c:3665
+#: ../../standalone/drakbackup_.c:4322
#, fuzzy
msgid "Please select media for backup..."
msgstr "XahiƟ edirik istifadə ĂŒĂ§ĂŒn bir dil seçin."
-#: ../../standalone/drakbackup_.c:3687
+#: ../../standalone/drakbackup_.c:4344
#, fuzzy
msgid "Please select data to backup..."
msgstr "XahiƟ edirik istifadə ĂŒĂ§ĂŒn bir dil seçin."
-#: ../../standalone/drakbackup_.c:3709
+#: ../../standalone/drakbackup_.c:4366
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
msgstr ""
-#: ../../standalone/drakbackup_.c:3730
+#: ../../standalone/drakbackup_.c:4387
msgid "Under Devel ... please wait."
msgstr ""
-#: ../../standalone/drakbackup_.c:3811
+#: ../../standalone/drakbackup_.c:4468
#, fuzzy
msgid "Backup system files"
msgstr "Xətalı yedəkləmə faylı"
-#: ../../standalone/drakbackup_.c:3813
+#: ../../standalone/drakbackup_.c:4470
#, fuzzy
msgid "Backup user files"
msgstr "Xətalı yedəkləmə faylı"
-#: ../../standalone/drakbackup_.c:3815
+#: ../../standalone/drakbackup_.c:4472
#, fuzzy
msgid "Backup other files"
msgstr "Xətalı yedəkləmə faylı"
-#: ../../standalone/drakbackup_.c:3817 ../../standalone/drakbackup_.c:3850
+#: ../../standalone/drakbackup_.c:4474 ../../standalone/drakbackup_.c:4507
msgid "Total Progress"
msgstr ""
-#: ../../standalone/drakbackup_.c:3841
+#: ../../standalone/drakbackup_.c:4498
msgid "files sending by FTP"
msgstr ""
-#: ../../standalone/drakbackup_.c:3845
+#: ../../standalone/drakbackup_.c:4502
#, fuzzy
msgid "Sending files..."
msgstr "Fayla qeyd et"
-#: ../../standalone/drakbackup_.c:3931
+#: ../../standalone/drakbackup_.c:4588
#, fuzzy
msgid "Backup Now from configuration file"
msgstr "ƞəbəkə quraƟdırılması"
-#: ../../standalone/drakbackup_.c:3936
+#: ../../standalone/drakbackup_.c:4593
#, fuzzy
msgid "View Backup Configuration."
msgstr "ƞəbəkə quraƟdırılması"
-#: ../../standalone/drakbackup_.c:3956
+#: ../../standalone/drakbackup_.c:4614
#, fuzzy
msgid "Wizard Configuration"
msgstr "Yerli ƞəbəkə QuraƟdırılması"
-#: ../../standalone/drakbackup_.c:3961
+#: ../../standalone/drakbackup_.c:4619
#, fuzzy
msgid "Advanced Configuration"
msgstr "Yerli ƞəbəkə QuraƟdırılması"
-#: ../../standalone/drakbackup_.c:3966
+#: ../../standalone/drakbackup_.c:4624
#, fuzzy
msgid "Backup Now"
msgstr "Fayl sistemi qurğuları"
-#: ../../standalone/drakbackup_.c:3996
+#: ../../standalone/drakbackup_.c:4658
msgid "Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:4045
+#: ../../standalone/drakbackup_.c:4707
msgid ""
"options description:\n"
"\n"
@@ -10558,7 +11088,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4075
+#: ../../standalone/drakbackup_.c:4737
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -10567,7 +11097,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4083
+#: ../../standalone/drakbackup_.c:4745
msgid ""
"options description:\n"
"\n"
@@ -10608,45 +11138,45 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4122
+#: ../../standalone/drakbackup_.c:4784
msgid ""
"restore description:\n"
" \n"
-"Only the most recent date will be used ,because with incremental \n"
-"backups it is necesarry to restore one by one each older backups.\n"
+"Only the most recent date will be used, because with incremental \n"
+"backups it is necessary to restore one by one each older backup.\n"
"\n"
-"So if you don't like to restore a user please unselect all his\n"
-"check box.\n"
+"So if you don't want to restore a user please unselect all their\n"
+"check boxes.\n"
"\n"
-"Otherwise, you are able to select only one of this\n"
+"Otherwise, you are able to select only one of these.\n"
"\n"
" - Incremental Backups:\n"
"\n"
"\tThe incremental backup is the most powerful \n"
-"\toption to use backup, this option allow you \n"
-"\tto backup all your data the first time, and \n"
-"\tonly the changed after.\n"
-"\tSo you will be able during the restore\n"
+"\toption to use. This option allows you to \n"
+"\tbackup all of your data the first time, and \n"
+"\tonly the changed data after.\n"
+"\tSo you will be able, during the restore\n"
"\tstep, to restore your data from a specified\n"
"\tdate.\n"
-"\tIf you have not selected this options all\n"
+"\tIf you have not selected this option all\n"
"\told backups are deleted before each backup. \n"
"\n"
"\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4148 ../../standalone/drakbackup_.c:4225
+#: ../../standalone/drakbackup_.c:4810 ../../standalone/drakbackup_.c:4887
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
-#: ../../standalone/drakbackup_.c:4150 ../../standalone/drakbackup_.c:4227
+#: ../../standalone/drakbackup_.c:4812 ../../standalone/drakbackup_.c:4889
msgid ""
" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
-#: ../../standalone/drakbackup_.c:4152 ../../standalone/drakbackup_.c:4229
+#: ../../standalone/drakbackup_.c:4814 ../../standalone/drakbackup_.c:4891
msgid ""
" This program is free software; you can redistribute it and/or modify\n"
" it under the terms of the GNU General Public License as published by\n"
@@ -10663,7 +11193,7 @@ msgid ""
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
msgstr ""
-#: ../../standalone/drakbackup_.c:4166
+#: ../../standalone/drakbackup_.c:4828
msgid ""
"Description:\n"
"\n"
@@ -10703,7 +11233,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4204
+#: ../../standalone/drakbackup_.c:4866
msgid ""
"options description:\n"
"\n"
@@ -10714,7 +11244,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4213
+#: ../../standalone/drakbackup_.c:4875
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -10727,7 +11257,7 @@ msgid ""
"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4243
+#: ../../standalone/drakbackup_.c:4905
msgid ""
"Description:\n"
"\n"
@@ -10808,9 +11338,9 @@ msgstr ""
msgid "Synchronization tool"
msgstr ""
-#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:85
-#: ../../standalone/drakbug_.c:150 ../../standalone/drakbug_.c:152
-#: ../../standalone/drakbug_.c:156
+#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:86
+#: ../../standalone/drakbug_.c:151 ../../standalone/drakbug_.c:153
+#: ../../standalone/drakbug_.c:157
#, fuzzy
msgid "Standalone Tools"
msgstr "Konsol Vasitələri"
@@ -10862,26 +11392,26 @@ msgstr "Çap Edici"
msgid "Configuration Wizards"
msgstr "ƞəbəkə QuraƟdırılması Sehirbazı"
-#: ../../standalone/drakbug_.c:96
+#: ../../standalone/drakbug_.c:97
#, fuzzy
msgid "Application:"
msgstr "Tanıtma"
-#: ../../standalone/drakbug_.c:97
+#: ../../standalone/drakbug_.c:98
#, fuzzy
msgid "Package: "
msgstr "Paket Qrup Seçkisi"
-#: ../../standalone/drakbug_.c:98
+#: ../../standalone/drakbug_.c:99
msgid "Kernel:"
msgstr ""
-#: ../../standalone/drakbug_.c:99
+#: ../../standalone/drakbug_.c:100
#, fuzzy
msgid "Release: "
msgstr "XahiƟ edirik gözləyin"
-#: ../../standalone/drakbug_.c:114
+#: ../../standalone/drakbug_.c:115
msgid ""
"\n"
"\n"
@@ -10893,21 +11423,21 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbug_.c:135
+#: ../../standalone/drakbug_.c:136
#, fuzzy
msgid "Report"
msgstr "Qapı"
-#: ../../standalone/drakbug_.c:165
+#: ../../standalone/drakbug_.c:166
#, fuzzy
msgid "Not installed"
msgstr "Qurulumdan çıx"
-#: ../../standalone/drakbug_.c:182
+#: ../../standalone/drakbug_.c:183
msgid "connecting to Bugzilla wizard ..."
msgstr ""
-#: ../../standalone/drakbug_.c:189
+#: ../../standalone/drakbug_.c:190
#, fuzzy
msgid "No browser available! Please install one"
msgstr "Qurulumdan sonra istifadə edə biləcəyiniz baƟqa dillər seçə bilərsiniz"
@@ -11357,7 +11887,7 @@ msgstr "Bağlama nöqtəsi"
#: ../../standalone/drakfont_.c:909
#, fuzzy
-msgid "Choose the applications that will support the fonts :"
+msgid "Choose the applications that will support the fonts:"
msgstr "ƞəkilləndiriləcək disk bölmələrini seçin"
#: ../../standalone/drakfont_.c:918
@@ -11439,19 +11969,19 @@ msgstr "Siseminizdə Ɵəbəkə adapteri yoxdur!"
msgid "Post Uninstall"
msgstr "Qurulumdan çıx"
-#: ../../standalone/drakgw_.c:42 ../../standalone/drakgw_.c:195
+#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:188
msgid "Internet Connection Sharing"
msgstr "Ä°nternet Bağlantısı BölĂŒĆŸdĂŒrĂŒlməsi"
-#: ../../standalone/drakgw_.c:121
+#: ../../standalone/drakgw_.c:119
msgid "Sorry, we support only 2.4 kernels."
msgstr ""
-#: ../../standalone/drakgw_.c:133
+#: ../../standalone/drakgw_.c:130
msgid "Internet Connection Sharing currently enabled"
msgstr "Ä°nternet Bağlantısı BölĂŒĆŸdĂŒrĂŒlməsi fəallaƟdırıldı"
-#: ../../standalone/drakgw_.c:134
+#: ../../standalone/drakgw_.c:131
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -11463,31 +11993,31 @@ msgstr ""
"\n"
"Nə etmək istəyirsiniz?"
-#: ../../standalone/drakgw_.c:138
+#: ../../standalone/drakgw_.c:135
msgid "disable"
msgstr "passivləƟdir"
-#: ../../standalone/drakgw_.c:138 ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:135 ../../standalone/drakgw_.c:160
msgid "dismiss"
msgstr "keç"
-#: ../../standalone/drakgw_.c:138 ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:135 ../../standalone/drakgw_.c:160
msgid "reconfigure"
msgstr "yenidən quraƟdır"
-#: ../../standalone/drakgw_.c:141
+#: ../../standalone/drakgw_.c:138
msgid "Disabling servers..."
msgstr "Vericilər bağlanır..."
-#: ../../standalone/drakgw_.c:149
+#: ../../standalone/drakgw_.c:146
msgid "Internet connection sharing is now disabled."
msgstr "Ä°nternet Bağlantısı BölĂŒĆŸdĂŒrĂŒlməsi indi bağlandı"
-#: ../../standalone/drakgw_.c:158
+#: ../../standalone/drakgw_.c:155
msgid "Internet Connection Sharing currently disabled"
msgstr "Ä°nternet Bağlantısı BölĂŒĆŸdĂŒrĂŒlməsi passivləƟdirildi"
-#: ../../standalone/drakgw_.c:159
+#: ../../standalone/drakgw_.c:156
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
@@ -11499,19 +12029,19 @@ msgstr ""
"\n"
"Nə etmək istəyirsiniz?"
-#: ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:160
msgid "enable"
msgstr "fəallaƟdır"
-#: ../../standalone/drakgw_.c:170
+#: ../../standalone/drakgw_.c:167
msgid "Enabling servers..."
msgstr "Xidmətlər fəallaƟdırılır..."
-#: ../../standalone/drakgw_.c:175
+#: ../../standalone/drakgw_.c:172
msgid "Internet connection sharing is now enabled."
msgstr "Ä°nternet Bağlantısı BölĂŒĆŸdĂŒrĂŒlməsi indi açıldı"
-#: ../../standalone/drakgw_.c:196
+#: ../../standalone/drakgw_.c:189
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
"With that feature, other computers on your local network will be able to use "
@@ -11527,21 +12057,21 @@ msgstr ""
"Xəbədarlıq: Yerli ƞəbəkə (LAN) qurmaq ĂŒĂ§ĂŒn uyğun ƞəbəkə Adapterinə "
"ehtiyacınız var."
-#: ../../standalone/drakgw_.c:222
+#: ../../standalone/drakgw_.c:215
#, c-format
msgid "Interface %s (using module %s)"
msgstr "Ara Üz %s (%s modulu iƟlədilir)"
-#: ../../standalone/drakgw_.c:223
+#: ../../standalone/drakgw_.c:216
#, c-format
msgid "Interface %s"
msgstr "Ara ĂŒz %s"
-#: ../../standalone/drakgw_.c:231
+#: ../../standalone/drakgw_.c:224
msgid "No network adapter on your system!"
msgstr "Siseminizdə Ɵəbəkə adapteri yoxdur!"
-#: ../../standalone/drakgw_.c:232
+#: ../../standalone/drakgw_.c:225
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
@@ -11549,11 +12079,11 @@ msgstr ""
"Sisteminizdə Ɵəbəkə kartı tapıla bilməyib.Avadanlığı quran vasitəni iƟə "
"salın."
-#: ../../standalone/drakgw_.c:238
+#: ../../standalone/drakgw_.c:231
msgid "Network interface"
msgstr "ƞəbəkə ara ĂŒzĂŒ"
-#: ../../standalone/drakgw_.c:239
+#: ../../standalone/drakgw_.c:232
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -11568,18 +12098,18 @@ msgstr ""
"\n"
"Yerli ƞəbəkə adapterinizi qurmaq ĂŒzərəyəm?"
-#: ../../standalone/drakgw_.c:248
+#: ../../standalone/drakgw_.c:241
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
msgstr "Sizi Yerli ƞəbəkəyə bağlayacaq adapteri seçin"
-#: ../../standalone/drakgw_.c:266
+#: ../../standalone/drakgw_.c:259
#, fuzzy
msgid "Network interface already configured"
msgstr "Monitor qurulmayıb"
-#: ../../standalone/drakgw_.c:267
+#: ../../standalone/drakgw_.c:260
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -11589,17 +12119,17 @@ msgid ""
"You can do it manually but you need to know what you're doing."
msgstr ""
-#: ../../standalone/drakgw_.c:272
+#: ../../standalone/drakgw_.c:265
#, fuzzy
msgid "Automatic reconfiguration"
msgstr "Qurulum Tərzi QuraƟdırılması"
-#: ../../standalone/drakgw_.c:273
+#: ../../standalone/drakgw_.c:266
#, fuzzy
msgid "Show current interface configuration"
msgstr "İnternet qurğuları"
-#: ../../standalone/drakgw_.c:275
+#: ../../standalone/drakgw_.c:268
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -11610,7 +12140,7 @@ msgid ""
"Driver: %s"
msgstr ""
-#: ../../standalone/drakgw_.c:287
+#: ../../standalone/drakgw_.c:280
msgid ""
"I can keep your current configuration and assume you already set up a DHCP "
"server; in that case please verify I correctly read the C-Class Network that "
@@ -11622,54 +12152,42 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakgw_.c:292
+#: ../../standalone/drakgw_.c:285
msgid "C-Class Local Network"
msgstr ""
-#: ../../standalone/drakgw_.c:293
+#: ../../standalone/drakgw_.c:286
#, fuzzy
msgid "(This) DHCP Server IP"
msgstr "CUPS verici IP"
-#: ../../standalone/drakgw_.c:294
+#: ../../standalone/drakgw_.c:287
msgid "Re-configure interface and DHCP server"
msgstr ""
-#: ../../standalone/drakgw_.c:301
+#: ../../standalone/drakgw_.c:294
msgid "The Local Network did not finish with `.0', bailing out."
msgstr ""
-#: ../../standalone/drakgw_.c:312
+#: ../../standalone/drakgw_.c:305
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr "%s quğusunda dəyəsən bir LAN ĂŒnvan çaxÄ±ĆŸması tapıldı!\n"
-#: ../../standalone/drakgw_.c:320
-msgid "Firewalling configuration detected!"
-msgstr "Oddan divar (Firewall) quruluƟu tapıldı!"
-
-#: ../../standalone/drakgw_.c:321
-msgid ""
-"Warning! An existing firewalling configuration has been detected. You may "
-"need some manual fix after installation."
-msgstr ""
-"Diqqət! Var olan Firewall qurğusu tapıldı. YĂŒkləmədən sonra bir az əl "
-"gəzdirə bilərsiniz."
-
-#: ../../standalone/drakgw_.c:328
+#: ../../standalone/drakgw_.c:315
msgid "Configuring..."
msgstr "QuraƟdırılır..."
-#: ../../standalone/drakgw_.c:329
+#: ../../standalone/drakgw_.c:316
msgid "Configuring scripts, installing software, starting servers..."
msgstr "Skriptlə qurulur, proqram tə'minatı qurulur, xidmətlər baƟladılır..."
-#: ../../standalone/drakgw_.c:365
+#: ../../standalone/drakgw_.c:352
#, c-format
msgid "Problems installing package %s"
msgstr "%s paketi qurulurkən xəta oldu"
-#: ../../standalone/drakgw_.c:549
+#: ../../standalone/drakgw_.c:485
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
@@ -11680,23 +12198,23 @@ msgstr ""
"bölĂŒĆŸdĂŒrə bilərsiniz, bunun ĂŒĂ§ĂŒn isə avtomatik Ɵəbəkə quraƟdırılması (DHCP) "
"iƟlədilir."
-#: ../../standalone/drakgw_.c:566
+#: ../../standalone/drakgw_.c:504
msgid "The setup has already been done, but it's currently disabled."
msgstr "QuraƟdırma artıq qurtarıbdır, amma fəaliyyəti dayandırılıb."
-#: ../../standalone/drakgw_.c:567
+#: ../../standalone/drakgw_.c:505
msgid "The setup has already been done, and it's currently enabled."
msgstr "QuraƟdırma artıq qurtarıbdır və fəaliyyətdədir."
-#: ../../standalone/drakgw_.c:568
+#: ../../standalone/drakgw_.c:506
msgid "No Internet Connection Sharing has ever been configured."
msgstr "Ä°nternet Bağlantısı BölĂŒĆŸdĂŒrmə QuraƟdırması aparılmayıb."
-#: ../../standalone/drakgw_.c:573
+#: ../../standalone/drakgw_.c:511
msgid "Internet connection sharing configuration"
msgstr "Ä°nternet bağlantısı bölĂŒĆŸdĂŒrĂŒlməsi quraƟdırılması"
-#: ../../standalone/drakgw_.c:580
+#: ../../standalone/drakgw_.c:518
#, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -11711,6 +12229,158 @@ msgstr ""
"\n"
"QuraƟdırma sehirbazını açmaq ĂŒĂ§ĂŒn QuraƟdıra tıqlayın."
+#: ../../standalone/draksound_.c:46
+#, fuzzy
+msgid "No Sound Card detected!"
+msgstr "Bağlı deyil"
+
+#: ../../standalone/draksound_.c:47
+msgid ""
+"No Sound Card has been detected on your machine. Please verify that a Linux-"
+"supported Sound Card is correctly plugged in.\n"
+"\n"
+"\n"
+"You can visit our hardware database at:\n"
+"\n"
+"\n"
+"http://www.linux-mandrake.com/en/hardware.php3"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:32
+msgid "package ImageMagick is required for correct working"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:76
+#, fuzzy
+msgid "first step creation"
+msgstr "açılÄ±ĆŸ disketi yaradılması"
+
+#: ../../standalone/draksplash_.c:77
+#, fuzzy
+msgid "final resolution"
+msgstr "Rezolyusiya"
+
+#: ../../standalone/draksplash_.c:78 ../../standalone/draksplash_.c:170
+#, fuzzy
+msgid "choose image file"
+msgstr "Monitorunuzu seçin"
+
+#: ../../standalone/draksplash_.c:79
+#, fuzzy
+msgid "Theme name"
+msgstr "PaylaƟdırma adı"
+
+#: ../../standalone/draksplash_.c:81
+msgid "make bootsplash step 2"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:82
+#, fuzzy
+msgid "go to lilosplash configuration"
+msgstr "Qurulum sonrası qurğular"
+
+#: ../../standalone/draksplash_.c:83
+#, fuzzy
+msgid "quit"
+msgstr "Çıx"
+
+#: ../../standalone/draksplash_.c:84
+#, fuzzy
+msgid "save theme"
+msgstr "Sistemi qur"
+
+#: ../../standalone/draksplash_.c:85
+msgid "browse"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:98 ../../standalone/draksplash_.c:159
+#, fuzzy
+msgid "Configure bootsplash picture"
+msgstr "Xidmətləri qur"
+
+#: ../../standalone/draksplash_.c:99
+msgid "x coordinate of text box in number of character"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:100
+msgid "y coordinate of text box in number of character"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:101
+msgid "text width"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:102
+msgid "text box height"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:103
+msgid "the progress bar x coordinate of its upper left corner"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:104
+msgid "the progress bar y coordinate of its upper left corner"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:105
+msgid "the width of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:106
+msgid "the heigth of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:107
+msgid "the color of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:119
+#, fuzzy
+msgid "go back"
+msgstr "Loopback"
+
+#: ../../standalone/draksplash_.c:120
+#, fuzzy
+msgid "preview"
+msgstr "avadanlıq"
+
+#: ../../standalone/draksplash_.c:121
+#, fuzzy
+msgid "choose color"
+msgstr "Monitorunuzu seçin"
+
+#: ../../standalone/draksplash_.c:124
+msgid "Display logo on Console"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:125
+msgid "Make kernel message quiet by default"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:161 ../../standalone/draksplash_.c:330
+#, c-format
+msgid "This theme haven't yet any bootsplash in %s !"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:213
+msgid "saving Bootsplash theme..."
+msgstr ""
+
+#: ../../standalone/draksplash_.c:436
+#, fuzzy
+msgid "ProgressBar color selection"
+msgstr "Çap Edici Bağlantısı"
+
+#: ../../standalone/draksplash_.c:454
+#, fuzzy
+msgid "You must choose an image file first!"
+msgstr "Çap Edici avadanlığı URI"
+
+#: ../../standalone/draksplash_.c:463
+#, fuzzy
+msgid "Generating preview ..."
+msgstr "Avadanlıqlar tanınır..."
+
#: ../../standalone/drakxtv_.c:49
msgid ""
"XawTV isn't installed!\n"
@@ -11803,11 +12473,11 @@ msgid ""
msgstr ""
#: ../../standalone/drakxtv_.c:109
-msgid "TV norm :"
+msgid "TV norm:"
msgstr ""
#: ../../standalone/drakxtv_.c:110
-msgid "Area :"
+msgid "Area:"
msgstr ""
#: ../../standalone/drakxtv_.c:114
@@ -11883,7 +12553,7 @@ msgstr "TəkmilləƟdirmə iƟi baƟlaya bilmir !!!\n"
msgid "The change is done, but to be effective you must logout"
msgstr ""
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:517
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:515
msgid "logdrake"
msgstr "logdrake"
@@ -12062,7 +12732,7 @@ msgstr "avadanlıq"
#: ../../standalone/logdrake_.c:431
msgid ""
-"You will receive an alert if one of the selected service is no more running"
+"You will receive an alert if one of the selected services is no more running"
msgstr ""
#: ../../standalone/logdrake_.c:443
@@ -12084,19 +12754,19 @@ msgstr "QuraƟdırma"
msgid "Please enter your email address below "
msgstr "XahiƟ edirik təkrar sınayın"
-#: ../../standalone/logdrake_.c:499
+#: ../../standalone/logdrake_.c:497
msgid "Save as.."
msgstr "Fərqli qeyd et..."
-#: ../../standalone/mousedrake_.c:43
+#: ../../standalone/mousedrake_.c:45
msgid "Please, choose the type of your mouse."
msgstr "XahiƟ edirik siçanınızın növĂŒnĂŒ seçin."
-#: ../../standalone/mousedrake_.c:57
+#: ../../standalone/mousedrake_.c:58
msgid "Emulate third button?"
msgstr "3 dĂŒymə emulasiyası"
-#: ../../standalone/printerdrake_.c:48
+#: ../../standalone/printerdrake_.c:57
#, fuzzy
msgid "Reading printer data ..."
msgstr "CUPS sĂŒrĂŒcĂŒ datası oxunur..."
@@ -12110,34 +12780,45 @@ msgstr "Avadanlıqlar tanınır..."
msgid "Test ports"
msgstr "Qapıları sına"
-#: ../../standalone/scannerdrake_.c:52
+#: ../../standalone/scannerdrake_.c:53 ../../standalone/scannerdrake_.c:68
+#: ../../standalone/scannerdrake_.c:81
#, c-format
-msgid "%s found on %s, configure it ?"
+msgid "The %s is not supported by this version of Mandrake Linux."
msgstr ""
+#: ../../standalone/scannerdrake_.c:56
+#, fuzzy, c-format
+msgid "%s found on %s, configure it?"
+msgstr "Bir çap edici qurmaq istəyirsiniz?"
+
#: ../../standalone/scannerdrake_.c:59
+#, c-format
+msgid "%s is not in the scanner database, configure it manually?"
+msgstr ""
+
+#: ../../standalone/scannerdrake_.c:65
#, fuzzy
msgid "Select a scanner"
msgstr "Ekran kartınızı seçin"
-#: ../../standalone/scannerdrake_.c:79
+#: ../../standalone/scannerdrake_.c:93
#, c-format
msgid "This %s scanner is unsupported"
msgstr ""
-#: ../../standalone/scannerdrake_.c:93
+#: ../../standalone/scannerdrake_.c:107
#, c-format
msgid ""
"Scannerdrake was not able to detect your %s scanner.\n"
"Please select the device where your scanner is plugged"
msgstr ""
-#: ../../standalone/scannerdrake_.c:95
+#: ../../standalone/scannerdrake_.c:109
#, fuzzy
msgid "choose device"
msgstr "AçılÄ±ĆŸ avadanlığı"
-#: ../../standalone/scannerdrake_.c:101
+#: ../../standalone/scannerdrake_.c:115
#, c-format
msgid ""
"This %s scanner must be configured by printerdrake.\n"
@@ -12145,7 +12826,7 @@ msgid ""
"section."
msgstr ""
-#: ../../standalone/scannerdrake_.c:106
+#: ../../standalone/scannerdrake_.c:120
#, c-format
msgid ""
"Your %s scanner has been configured.\n"
@@ -12153,48 +12834,18 @@ msgid ""
"applications menu."
msgstr ""
-#: ../../standalone/service_harddrake_.c:57
+#: ../../standalone/service_harddrake_.c:39
#, c-format
msgid "Some devices in the \"%s\" hardware class were removed:\n"
msgstr ""
-#: ../../standalone/service_harddrake_.c:61
+#: ../../standalone/service_harddrake_.c:43
#, c-format
msgid ""
"\n"
"Some devices in the %s class were added:\n"
msgstr ""
-#: ../../standalone/tinyfirewall_.c:30
-msgid "Firewalling Configuration"
-msgstr "Firewall quraƟdırılması"
-
-#: ../../standalone/tinyfirewall_.c:43
-msgid "Firewalling configuration"
-msgstr "Firewall quraƟdırılması"
-
-#: ../../standalone/tinyfirewall_.c:78
-msgid ""
-"Firewalling\n"
-"\n"
-"You already have set up a firewall.\n"
-"Click on Configure to change or remove the firewall"
-msgstr ""
-"Firewall\n"
-"\n"
-"Firewall qurğularını artıq qurtarmısınız.\n"
-"Qur-a tıqlayaraq firewall qurğuların silin ya da təkmilləƟdirin."
-
-#: ../../standalone/tinyfirewall_.c:82
-msgid ""
-"Firewalling\n"
-"\n"
-"Click on Configure to set up a standard firewall"
-msgstr ""
-"Firewall\n"
-"\n"
-"Qur-a tıqlayaraq standart firewall qurğularını aparın."
-
#: ../../steps.pm_.c:14
msgid "Choose your language"
msgstr "İƟlətdiyiniz dili seçin"
@@ -12268,225 +12919,7 @@ msgstr "Sistemi qur"
msgid "Exit install"
msgstr "Qurulumdan çıx"
-#: ../../tinyfirewall.pm_.c:9
-msgid ""
-"tinyfirewall configurator\n"
-"\n"
-"This configures a personal firewall for this Mandrake Linux machine.\n"
-"For a powerful dedicated firewall solution, please look to the\n"
-"specialized MandrakeSecurity Firewall distribution."
-msgstr ""
-"tinyfirewall configurator\n"
-"\n"
-"Bu, Linuks Mandrake sisteminiz ĂŒĂ§ĂŒn Ɵəxsi bir firewall quraƟdıracaqdır.\n"
-"Daha gĂŒclĂŒ və e'tibarlı sistem ĂŒĂ§ĂŒn xahiƟ edirik xĂŒsusi MandrakeSecurity "
-"Firewall\n"
-"buraxılÄ±ĆŸÄ±nı tədqiq edin."
-
-#: ../../tinyfirewall.pm_.c:14
-msgid ""
-"We'll now ask you questions about which services you'd like to allow\n"
-"the Internet to connect to. Please think carefully about these\n"
-"questions, as your computer's security is important.\n"
-"\n"
-"Please, if you're not currently using one of these services, firewall\n"
-"it off. You can change this configuration anytime you like by\n"
-"re-running this application!"
-msgstr ""
-"İndi isə internetə bağlanırkən istifadə etməyi arzuladığınız xidmətləri\n"
-"soruƟacağıq. Bu suallara xahiƟ edirik diqqətlə cavab verin, Ă§ĂŒnkĂŒ "
-"kompĂŒterinizin \n"
-"təhlĂŒkəsizliyi çox vacib məsələdir.\n"
-"\n"
-"XahiƟ edirik, bu xidmətlərdən istifadə etmədiklərinizə yaxĆŸÄ± qərar verin ki, "
-"firewall\n"
-"onu bağlasın. Sonradan bu qurğuları özĂŒnĂŒz proqramı yenidən iƟə salaraq "
-"dəyiƟdirə bilərsiniz.!"
-
-#: ../../tinyfirewall.pm_.c:21
-msgid ""
-"Are you running a web server on this machine that you need the whole\n"
-"Internet to see? If you are running a webserver that only needs to be\n"
-"accessed by this machine, you can safely answer NO here.\n"
-"\n"
-msgstr ""
-"Sisteminizdə bĂŒtĂŒn Ä°nternetə göstərmək istədiyiniz veb vericisi "
-"iƟlədirsiniz? \n"
-"Təkcə bu kompĂŒterin görəcəyi bir veb vericisi olacaqsa burada YOX cavasbı "
-"verə bilərsiniz.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:26
-msgid ""
-"Are you running a name server on this machine? If you didn't set one\n"
-"up to give away IP and zone information to the whole Internet, please\n"
-"answer no.\n"
-"\n"
-msgstr ""
-"Bu kompĂŒterdə ad vericisi iƟlədirsiniz? Əgər internetə bağlanırkən bir IP "
-"ĂŒnvanı və\n"
-"nahiyə mə'lumatı almırsınızsa YOX cavabı verin.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:31
-msgid ""
-"Do you want to allow incoming Secure Shell (ssh) connections? This\n"
-"is a telnet-replacement that you might use to login. If you're using\n"
-"telnet now, you should definitely switch to ssh. telnet is not\n"
-"encrypted -- so some attackers can steal your password if you use\n"
-"it. ssh is encrypted and doesn't allow for this eavesdropping."
-msgstr ""
-"Gələn E'tibarlı Qabıq (ssh) bağlantılarına icazə vermək istəyiriniz? Bu, "
-"bir\n"
-"cĂŒr telnet əvəzidir. Ä°ndi telnet iƟlədirsinizsə onda \"ssh\"yə "
-"keçməlisiniz. \n"
-"Telnet kodlama iƟlətmir, ona görə dəbə'zi həkerlər parolunuzu oğurlaya "
-"bilər. \n"
-"ssh bunlara icazə verməz."
-
-#: ../../tinyfirewall.pm_.c:36
-msgid ""
-"Do you want to allow incoming telnet connections?\n"
-"This is horribly unsafe, as we explained in the previous screen. We\n"
-"strongly recommend answering No here and using ssh in place of\n"
-"telnet.\n"
-msgstr ""
-"Gələn telnet bağlantılarına icazə verim?\n"
-"Bu çox e'tibarsızdır. Bunu sizə əvvəlki ekranda söylədik. Buna \n"
-"yox cavabı verməyinizi tövsiyyə edirik. Yerinə ssh iƟlədin.\n"
-
-#: ../../tinyfirewall.pm_.c:41
-msgid ""
-"Are you running an FTP server here that you need accessible to the\n"
-"Internet? If you are, we strongly recommend that you only use it for\n"
-"Anonymous transfers. Any passwords sent by FTP can be stolen by some\n"
-"attackers, since FTP also uses no encryption for transferring passwords.\n"
-msgstr ""
-"Ä°nternetdən yetiƟilə bilən bir FTP vericisi iƟlədirsiniz? Əgər "
-"iƟlədirsinizsə,\n"
-"təkcə Anonim kĂ¶Ă§ĂŒrmələr ĂŒĂ§ĂŒn olmasını tövsiyyə edərik. FTP ilə göndərilən\n"
-"parollar həkerlər tərəfindən oğurlana bilər. FTP parolları kodlaya bilmir "
-"axı.\n"
-
-#: ../../tinyfirewall.pm_.c:46
-msgid ""
-"Are you running a mail server here? If you're sending you \n"
-"messages through pine, mutt or any other text-based mail client,\n"
-"you probably are. Otherwise, you should firewall this off.\n"
-"\n"
-msgstr ""
-"Burada məktub vericisi iƟlədirsiniz? Əgər ismarıclarınızı pine\n"
-"mutt və ya baƟqa mətn əsaslı məktub alıcısından göndərirsinizsə,\n"
-"demək ki, iƟlədirsiniz. Yoxsa firewall bunu bağlamalıdır.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:51
-msgid ""
-"Are you running a POP or IMAP server here? This would\n"
-"be used to host non-web-based mail accounts for people via \n"
-"this machine.\n"
-"\n"
-msgstr ""
-"Burada POP və ya IMAP vericisi iƟlədirsiniz? Bu isə\n"
-"kompĂŒterdə veb əsaslı olmayan məktub hesabları qurmaq ĂŒĂ§ĂŒn lazımdır.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:56
-msgid ""
-"You appear to be running a 2.2 kernel. If your network IP\n"
-"is automatically set by a computer in your home or office \n"
-"(dynamically assigned), we need to allow for this. Is\n"
-"this the case?\n"
-msgstr ""
-"Dəyəsən 2.2 çəkirdək iƟlədirsiniz. Əgər kompĂŒterinizin\n"
-"IPsi baƟqa bir kompĂŒter tərəfindən dinamik olaraq verilirsə,\n"
-"onda buna icazə vermək olar. Beledir?\n"
-
-#: ../../tinyfirewall.pm_.c:61
-msgid ""
-"Is your computer getting time syncronized to another computer?\n"
-"Mostly, this is used by medium-large Unix/Linux organizations\n"
-"to synchronize time for logging and such. If you're not part\n"
-"of a larger office and haven't heard of this, you probably \n"
-"aren't."
-msgstr ""
-"KompĂŒterinizin vaxtı baƟqa bir kompĂŒterlə sinxronlaƟdırır?\n"
-"Bu, daha çox orta və geniƟ Unix/Linuks Ɵirkətləri tərəfindən iƟlədilir.\n"
-"Əgər bir Ɵirkətin bir parçası deyilsinizsə, demək ki, iƟlətmirsiniz."
-
-#: ../../tinyfirewall.pm_.c:66
-msgid ""
-"Configuration complete. May we write these changes to disk?\n"
-"\n"
-"\n"
-"\n"
-msgstr ""
-"Qurulum qurtarıldı. DəyiƟiklikləri diskə yazım?\n"
-"\n"
-"\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:82
-#, c-format
-msgid "Can't open %s: %s\n"
-msgstr "%s açıla bilmir: %s\n"
-
-#: ../../tinyfirewall.pm_.c:84
-#, c-format
-msgid "Can't open %s for writing: %s\n"
-msgstr "Yazmaq ĂŒĂ§ĂŒn %s açıla bilmir: %s\n"
-
-#: ../../tinyfirewall.pm_.c:178
-msgid "No I don't need DHCP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:178
-msgid "Yes I need DHCP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:179
-msgid "No I don't need NTP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:179
-msgid "Yes I need NTP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:180 ../../tinyfirewall.pm_.c:184
-msgid "Don't Save"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:180 ../../tinyfirewall.pm_.c:184
-#: ../../tinyfirewall.pm_.c:204
-msgid "Save & Quit"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:195 ../../tinyfirewall.pm_.c:199
-#, fuzzy
-msgid "Firewall Configuration Wizard"
-msgstr "Firewall quraƟdırılması"
-
-#: ../../tinyfirewall.pm_.c:197
-msgid "No (firewall this off from the internet)"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:198
-msgid "Yes (allow this through the firewall)"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:230
-#, fuzzy
-msgid "Please Wait... Verifying installed packages"
-msgstr "XahiƟ edirik gözləyin, qurulum hazırlanır"
-
-#: ../../tinyfirewall.pm_.c:236
-#, c-format
-msgid ""
-"Failure installing the needed packages : %s and Bastille.\n"
-" Try to install them manually."
-msgstr ""
-
-#: ../../ugtk.pm_.c:619
+#: ../../ugtk.pm_.c:594
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr ""
@@ -12619,6 +13052,10 @@ msgid "Graphical Environment"
msgstr "Qrafiki Ara Üz"
#: ../../share/compssUsers:999
+msgid "Development"
+msgstr "TəcrĂŒbi"
+
+#: ../../share/compssUsers:999
msgid "Apache, Pro-ftpd"
msgstr "Apache və Pro-ftpd"
@@ -12728,98 +13165,187 @@ msgstr "Multimedya - CD Yandırma"
msgid "Scientific Workstation"
msgstr "Elmi iƟ stansiyası"
-#~ msgid "$mode: $warning"
-#~ msgstr "$mode: $warning"
+#~ msgid "LBA (doesn't work on old BIOSes)"
+#~ msgstr "LBA (köhnə BIOSlarda iƟləməz)"
+
+#~ msgid "You don't have any partitions!"
+#~ msgstr "Heç disk bölməniz yoxdur!"
-#, fuzzy
#~ msgid ""
-#~ "This level is to be used with care. It makes your system more easy to "
-#~ "use,\n"
-#~ " but very sensitive: it must not be used for a machine "
-#~ "connected to others\n"
-#~ " or to the Internet. There is no password access."
+#~ "DiskDrake failed to read correctly the partition table.\n"
+#~ "Continue at your own risk!"
#~ msgstr ""
-#~ "Bu səviyyə RAID'i diqqətli istifadənizi tövsiyə edirik. Sisteminiz daha "
-#~ "asand\n"
-#~ "iƟlədiləcək, ancaq xətalara qarĆŸÄ± da həssaiyyəti də artacaqdır. "
-#~ "İnternetə \n"
-#~ "bağlı isəniz bunu tövsiyə etmirik. Parol ilə girilir."
+#~ "DiskDrake bölmə cədvəlini oxumağı bacara bilmədi.\n"
+#~ "ÖzĂŒnĂŒz davam edə bilərsiniz."
-#, fuzzy
#~ msgid ""
-#~ "With this security level, the use of this system as a server becomes "
-#~ "possible.\n"
-#~ " The security is now high enough to use the system as a "
-#~ "server which can accept\n"
-#~ " connections from many clients. Note: if your machine is "
-#~ "only a client on the Internet, you should choose a lower level."
+#~ "I can't read your partition table, it's too corrupted for me :(\n"
+#~ "I'll try to go on blanking bad partitions"
#~ msgstr ""
-#~ "Bu təhlĂŒkəsizlik səviyyəsiylə sistemin bir verici olaraq istifadəsi "
-#~ "mĂŒmkĂŒndĂŒr. \n"
-#~ "TəhlĂŒkəsizlik, birdən çox alıcının bağlanmasına icazə verəcək Ɵəkildə "
-#~ "artırılmÄ±ĆŸdır. "
+#~ "Bölmə cədvəlini oxuya bilmirəm, dəyəsən biraz xarab olub:-(\n"
+#~ "Xəsərli hissələri dĂŒzəltməyə cəhd edəcəm"
-#, fuzzy
-#~ msgid "Basic Options"
-#~ msgstr "Seçənəklər"
+#~ msgid "Firewalling Configuration"
+#~ msgstr "Firewall quraƟdırılması"
-#, fuzzy
-#~ msgid "Security Checks"
-#~ msgstr "TəhlĂŒkəsizlik"
+#~ msgid "Firewalling configuration"
+#~ msgstr "Firewall quraƟdırılması"
-#, fuzzy
-#~ msgid "Please choose your CD space"
-#~ msgstr "Klaviatura quruluƟunu seçiniz."
+#~ msgid ""
+#~ "Firewalling\n"
+#~ "\n"
+#~ "You already have set up a firewall.\n"
+#~ "Click on Configure to change or remove the firewall"
+#~ msgstr ""
+#~ "Firewall\n"
+#~ "\n"
+#~ "Firewall qurğularını artıq qurtarmısınız.\n"
+#~ "Qur-a tıqlayaraq firewall qurğuların silin ya da təkmilləƟdirin."
-#, fuzzy
-#~ msgid "Please enter the cd writer speed"
-#~ msgstr "XahiƟ edirik siçanınızı seçin"
+#~ msgid ""
+#~ "Firewalling\n"
+#~ "\n"
+#~ "Click on Configure to set up a standard firewall"
+#~ msgstr ""
+#~ "Firewall\n"
+#~ "\n"
+#~ "Qur-a tıqlayaraq standart firewall qurğularını aparın."
-#, fuzzy
-#~ msgid "Please check if you want to include install boot on your CD."
-#~ msgstr "XahiƟ edirik qurmaq istədiyiniz paketləri seçin."
+#~ msgid ""
+#~ "We'll now ask you questions about which services you'd like to allow\n"
+#~ "the Internet to connect to. Please think carefully about these\n"
+#~ "questions, as your computer's security is important.\n"
+#~ "\n"
+#~ "Please, if you're not currently using one of these services, firewall\n"
+#~ "it off. You can change this configuration anytime you like by\n"
+#~ "re-running this application!"
+#~ msgstr ""
+#~ "İndi isə internetə bağlanırkən istifadə etməyi arzuladığınız xidmətləri\n"
+#~ "soruƟacağıq. Bu suallara xahiƟ edirik diqqətlə cavab verin, Ă§ĂŒnkĂŒ "
+#~ "kompĂŒterinizin \n"
+#~ "təhlĂŒkəsizliyi çox vacib məsələdir.\n"
+#~ "\n"
+#~ "XahiƟ edirik, bu xidmətlərdən istifadə etmədiklərinizə yaxĆŸÄ± qərar verin "
+#~ "ki, firewall\n"
+#~ "onu bağlasın. Sonradan bu qurğuları özĂŒnĂŒz proqramı yenidən iƟə salaraq "
+#~ "dəyiƟdirə bilərsiniz.!"
-#, fuzzy
-#~ msgid "Url should begin with 'ftp:'"
-#~ msgstr "Vəkil verici ftp://... olmalıdır."
+#~ msgid ""
+#~ "Are you running a web server on this machine that you need the whole\n"
+#~ "Internet to see? If you are running a webserver that only needs to be\n"
+#~ "accessed by this machine, you can safely answer NO here.\n"
+#~ "\n"
+#~ msgstr ""
+#~ "Sisteminizdə bĂŒtĂŒn Ä°nternetə göstərmək istədiyiniz veb vericisi "
+#~ "iƟlədirsiniz? \n"
+#~ "Təkcə bu kompĂŒterin görəcəyi bir veb vericisi olacaqsa burada YOX cavasbı "
+#~ "verə bilərsiniz.\n"
+#~ "\n"
-#, fuzzy
#~ msgid ""
-#~ "Please check if you want to include\n"
-#~ " install boot on your CD."
-#~ msgstr "XahiƟ edirik qurmaq istədiyiniz paketləri seçin."
+#~ "Are you running a name server on this machine? If you didn't set one\n"
+#~ "up to give away IP and zone information to the whole Internet, please\n"
+#~ "answer no.\n"
+#~ "\n"
+#~ msgstr ""
+#~ "Bu kompĂŒterdə ad vericisi iƟlədirsiniz? Əgər internetə bağlanırkən bir IP "
+#~ "ĂŒnvanı və\n"
+#~ "nahiyə mə'lumatı almırsınızsa YOX cavabı verin.\n"
+#~ "\n"
-#, fuzzy
-#~ msgid "Windows PDC"
-#~ msgstr "\"Windows\"u sil"
+#~ msgid ""
+#~ "Do you want to allow incoming Secure Shell (ssh) connections? This\n"
+#~ "is a telnet-replacement that you might use to login. If you're using\n"
+#~ "telnet now, you should definitely switch to ssh. telnet is not\n"
+#~ "encrypted -- so some attackers can steal your password if you use\n"
+#~ "it. ssh is encrypted and doesn't allow for this eavesdropping."
+#~ msgstr ""
+#~ "Gələn E'tibarlı Qabıq (ssh) bağlantılarına icazə vermək istəyiriniz? Bu, "
+#~ "bir\n"
+#~ "cĂŒr telnet əvəzidir. Ä°ndi telnet iƟlədirsinizsə onda \"ssh\"yə "
+#~ "keçməlisiniz. \n"
+#~ "Telnet kodlama iƟlətmir, ona görə dəbə'zi həkerlər parolunuzu oğurlaya "
+#~ "bilər. \n"
+#~ "ssh bunlara icazə verməz."
-#, fuzzy
-#~ msgid "Tamil"
-#~ msgstr "Cədvəl"
+#~ msgid ""
+#~ "Do you want to allow incoming telnet connections?\n"
+#~ "This is horribly unsafe, as we explained in the previous screen. We\n"
+#~ "strongly recommend answering No here and using ssh in place of\n"
+#~ "telnet.\n"
+#~ msgstr ""
+#~ "Gələn telnet bağlantılarına icazə verim?\n"
+#~ "Bu çox e'tibarsızdır. Bunu sizə əvvəlki ekranda söylədik. Buna \n"
+#~ "yox cavabı verməyinizi tövsiyyə edirik. Yerinə ssh iƟlədin.\n"
-#, fuzzy
-#~ msgid "PDC Server Name"
-#~ msgstr "NIS Verici"
+#~ msgid ""
+#~ "Are you running an FTP server here that you need accessible to the\n"
+#~ "Internet? If you are, we strongly recommend that you only use it for\n"
+#~ "Anonymous transfers. Any passwords sent by FTP can be stolen by some\n"
+#~ "attackers, since FTP also uses no encryption for transferring passwords.\n"
+#~ msgstr ""
+#~ "Ä°nternetdən yetiƟilə bilən bir FTP vericisi iƟlədirsiniz? Əgər "
+#~ "iƟlədirsinizsə,\n"
+#~ "təkcə Anonim kĂ¶Ă§ĂŒrmələr ĂŒĂ§ĂŒn olmasını tövsiyyə edərik. FTP ilə "
+#~ "göndərilən\n"
+#~ "parollar həkerlər tərəfindən oğurlana bilər. FTP parolları kodlaya bilmir "
+#~ "axı.\n"
-#, fuzzy
-#~ msgid "Set up printer manually"
-#~ msgstr "Uzaq Çap Edici"
+#~ msgid ""
+#~ "Are you running a mail server here? If you're sending you \n"
+#~ "messages through pine, mutt or any other text-based mail client,\n"
+#~ "you probably are. Otherwise, you should firewall this off.\n"
+#~ "\n"
+#~ msgstr ""
+#~ "Burada məktub vericisi iƟlədirsiniz? Əgər ismarıclarınızı pine\n"
+#~ "mutt və ya baƟqa mətn əsaslı məktub alıcısından göndərirsinizsə,\n"
+#~ "demək ki, iƟlədirsiniz. Yoxsa firewall bunu bağlamalıdır.\n"
+#~ "\n"
-#, fuzzy
-#~ msgid "Installing HPOJ package..."
-#~ msgstr "%s paketi qurulur"
+#~ msgid ""
+#~ "Are you running a POP or IMAP server here? This would\n"
+#~ "be used to host non-web-based mail accounts for people via \n"
+#~ "this machine.\n"
+#~ "\n"
+#~ msgstr ""
+#~ "Burada POP və ya IMAP vericisi iƟlədirsiniz? Bu isə\n"
+#~ "kompĂŒterdə veb əsaslı olmayan məktub hesabları qurmaq ĂŒĂ§ĂŒn lazımdır.\n"
+#~ "\n"
-#, fuzzy
-#~ msgid "Installing SANE packages..."
-#~ msgstr "%s paketi qurulur"
+#~ msgid ""
+#~ "You appear to be running a 2.2 kernel. If your network IP\n"
+#~ "is automatically set by a computer in your home or office \n"
+#~ "(dynamically assigned), we need to allow for this. Is\n"
+#~ "this the case?\n"
+#~ msgstr ""
+#~ "Dəyəsən 2.2 çəkirdək iƟlədirsiniz. Əgər kompĂŒterinizin\n"
+#~ "IPsi baƟqa bir kompĂŒter tərəfindən dinamik olaraq verilirsə,\n"
+#~ "onda buna icazə vermək olar. Beledir?\n"
-#, fuzzy
-#~ msgid "Installing mtools packages..."
-#~ msgstr "%s paketi qurulur"
+#~ msgid ""
+#~ "Is your computer getting time syncronized to another computer?\n"
+#~ "Mostly, this is used by medium-large Unix/Linux organizations\n"
+#~ "to synchronize time for logging and such. If you're not part\n"
+#~ "of a larger office and haven't heard of this, you probably \n"
+#~ "aren't."
+#~ msgstr ""
+#~ "KompĂŒterinizin vaxtı baƟqa bir kompĂŒterlə sinxronlaƟdırır?\n"
+#~ "Bu, daha çox orta və geniƟ Unix/Linuks Ɵirkətləri tərəfindən iƟlədilir.\n"
+#~ "Əgər bir Ɵirkətin bir parçası deyilsinizsə, demək ki, iƟlətmirsiniz."
-#, fuzzy
-#~ msgid "Making printer port available for CUPS..."
-#~ msgstr "CUPS sĂŒrĂŒcĂŒ datası oxunur..."
+#~ msgid ""
+#~ "Configuration complete. May we write these changes to disk?\n"
+#~ "\n"
+#~ "\n"
+#~ "\n"
+#~ msgstr ""
+#~ "Qurulum qurtarıldı. DəyiƟiklikləri diskə yazım?\n"
+#~ "\n"
+#~ "\n"
+#~ "\n"
+
+#~ msgid "Can't open %s for writing: %s\n"
+#~ msgstr "Yazmaq ĂŒĂ§ĂŒn %s açıla bilmir: %s\n"
#~ msgid "Control Center"
#~ msgstr "İdarə Mərkəzi"
@@ -12897,9 +13423,6 @@ msgstr "Elmi iƟ stansiyası"
#~ msgid "Select a graphics card"
#~ msgstr "Ekran kartınızı seçin"
-#~ msgid "Warning: testing this graphics card may freeze your computer"
-#~ msgstr "Diqqət: Bu qrafika kartı ilə ediləcək sınaq təhlĂŒkəlidir"
-
#~ msgid "Standard VGA, 640x480 at 60 Hz"
#~ msgstr "Standart VGA, 60 Hz-də 640x480 "
diff --git a/perl-install/share/po/be.po b/perl-install/share/po/be.po
index 250f86846..fbbee9ab5 100644
--- a/perl-install/share/po/be.po
+++ b/perl-install/share/po/be.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2002-08-21 15:44+0200\n"
+"POT-Creation-Date: 2002-09-02 20:14+0200\n"
"PO-Revision-Date: 2000-09-24 12:30 +0100\n"
"Last-Translator: Alexander Bokovoy <ab@avilink.net>\n"
"Language-Team: be\n"
@@ -49,46 +49,46 @@ msgstr "32 Ìá"
msgid "64 MB or more"
msgstr "64 Ìá öi áîëćé"
-#: ../../Xconfig/card.pm_.c:201
+#: ../../Xconfig/card.pm_.c:203
msgid "Choose a X server"
msgstr "Àáÿđûöć X ńćđâćđ"
-#: ../../Xconfig/card.pm_.c:201
+#: ../../Xconfig/card.pm_.c:203
msgid "X server"
msgstr "X ńćđâćđ"
-#: ../../Xconfig/card.pm_.c:228
+#: ../../Xconfig/card.pm_.c:230
#, fuzzy
msgid "Multi-head configuration"
msgstr "śûòàííć íàńòđîéêi"
-#: ../../Xconfig/card.pm_.c:229
+#: ../../Xconfig/card.pm_.c:231
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
msgstr ""
-#: ../../Xconfig/card.pm_.c:284
+#: ../../Xconfig/card.pm_.c:286
msgid "Select the memory size of your graphics card"
msgstr "Ïàçíàśöć ïàìćđ âiäęàïàìÿöi"
-#: ../../Xconfig/card.pm_.c:345
+#: ../../Xconfig/card.pm_.c:347
msgid "XFree configuration"
msgstr "Íàńòđîéêà XFree"
-#: ../../Xconfig/card.pm_.c:347
+#: ../../Xconfig/card.pm_.c:349
msgid "Which configuration of XFree do you want to have?"
msgstr "ßêóț êàíôiăóđàöûț XFree âû æàäàćöć àòđûìàöü?"
-#: ../../Xconfig/card.pm_.c:379
+#: ../../Xconfig/card.pm_.c:381
msgid "Configure all heads independently"
msgstr ""
-#: ../../Xconfig/card.pm_.c:380
+#: ../../Xconfig/card.pm_.c:382
msgid "Use Xinerama extension"
msgstr ""
-#: ../../Xconfig/card.pm_.c:384
+#: ../../Xconfig/card.pm_.c:386
#, fuzzy, c-format
msgid "Configure only card \"%s\"%s"
msgstr "Êàíôiăóđàâàöü ìàț êàđòó"
@@ -99,13 +99,13 @@ msgstr "Êàíôiăóđàâàöü ìàț êàđòó"
msgid "XFree %s"
msgstr "Ńćđâćđ XFree86 %s"
-#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:435
+#: ../../Xconfig/card.pm_.c:410 ../../Xconfig/card.pm_.c:436
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s with 3D hardware acceleration"
msgstr "XFree %s ç ïàäòđûìêàé 3D-ïàńêàđęííÿ"
-#: ../../Xconfig/card.pm_.c:412
+#: ../../Xconfig/card.pm_.c:413
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -114,19 +114,19 @@ msgstr ""
"Ïàäòđûìêà 3D-ïàńêàđęííÿ ą Âàűàé âłäęàêàđöć âûêàíàíà òîëüêł ą XFree %s.\n"
"XFree %s ìîæà âûêàđûńòîąâàöü òîëüêł 2D-ïàńêàđęííć äëÿ ăęòàé âłäęàêàđòû."
-#: ../../Xconfig/card.pm_.c:414 ../../Xconfig/card.pm_.c:437
+#: ../../Xconfig/card.pm_.c:415 ../../Xconfig/card.pm_.c:438
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr ""
"Âàűà âiäęàêàđòà ìîæà ìćöü 3D-ïàńêàđęííć, ÿêîć ïàäòđûìëiâàćööà òîëüêi XFree %"
"s."
-#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:443
+#: ../../Xconfig/card.pm_.c:423 ../../Xconfig/card.pm_.c:444
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s ç ęêńïćđûìćíòàëüíàé ïàäòđûìêàé 3D-ïàńêàđęííÿ"
-#: ../../Xconfig/card.pm_.c:425
+#: ../../Xconfig/card.pm_.c:426
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -139,7 +139,7 @@ msgstr ""
"ÇÀÂIŃÀÍÍß ÂÀŰÀĂÀ ÊÀÌÏ'ȚÒĘĐÓ. Âàűà âiäęàêàđòà ïàäòđûìëiâàćööà XFree %s, ÿêi\n"
"ëćïćé ïàäòđûìëiâàć êàđòû ç 2D-ïàńêàđęííćì."
-#: ../../Xconfig/card.pm_.c:428 ../../Xconfig/card.pm_.c:445
+#: ../../Xconfig/card.pm_.c:429 ../../Xconfig/card.pm_.c:446
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
@@ -150,53 +150,54 @@ msgstr ""
"ÌÀÉÖĆ ÍÀ ĄÂÀÇĆ, ŰÒÎ ĂĘÒÀ ĘÊŃÏĆĐÛÌĆÍÒÀËÜÍÀß ÏÀÄÒĐÛÌÊÀ I ÌÎÆÀ ÏĐÛÂĆŃÖI ÄÀ\n"
"ÇÀÂIŃÀÍÍß ÂÀŰÀĂÀ ÊÀÌÏ'ȚÒĘĐÓ."
-#: ../../Xconfig/card.pm_.c:451
+#: ../../Xconfig/card.pm_.c:452
msgid "Xpmac (installation display driver)"
msgstr ""
-#: ../../Xconfig/main.pm_.c:78 ../../Xconfig/main.pm_.c:79
-#: ../../Xconfig/monitor.pm_.c:94 ../../any.pm_.c:974
+#: ../../Xconfig/main.pm_.c:76 ../../Xconfig/main.pm_.c:77
+#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:977
msgid "Custom"
msgstr "Ïà âûáàđó"
-#: ../../Xconfig/main.pm_.c:104
+#: ../../Xconfig/main.pm_.c:102
#, fuzzy
msgid "Graphic Card"
msgstr "Âiäęàêàđòà"
-#: ../../Xconfig/main.pm_.c:107 ../../Xconfig/monitor.pm_.c:91
+#: ../../Xconfig/main.pm_.c:105 ../../Xconfig/monitor.pm_.c:93
msgid "Monitor"
msgstr "Ìàíiòîđ"
-#: ../../Xconfig/main.pm_.c:110 ../../Xconfig/resolution_and_depth.pm_.c:209
+#: ../../Xconfig/main.pm_.c:108 ../../Xconfig/resolution_and_depth.pm_.c:209
msgid "Resolution"
msgstr "Ïàìćđû ęêđàíó"
-#: ../../Xconfig/main.pm_.c:114
+#: ../../Xconfig/main.pm_.c:113
msgid "Test"
msgstr ""
-#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:59
-#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/removable.pm_.c:25
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:63
+#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/removable.pm_.c:25
#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "Îïöûi"
#: ../../Xconfig/main.pm_.c:121 ../../Xconfig/resolution_and_depth.pm_.c:268
-#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:281
+#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:275
#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
-#: ../../interactive.pm_.c:351 ../../interactive/http.pm_.c:104
+#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:104
#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
-#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:156
-#: ../../my_gtk.pm_.c:284 ../../my_gtk.pm_.c:307
-#: ../../standalone/drakbackup_.c:3324 ../../standalone/drakbackup_.c:3419
-#: ../../standalone/drakbackup_.c:3438
+#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:159
+#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310
+#: ../../standalone/drakbackup_.c:3972 ../../standalone/drakbackup_.c:4067
+#: ../../standalone/drakbackup_.c:4086
msgid "Ok"
msgstr "Îê"
#: ../../Xconfig/main.pm_.c:121 ../../diskdrake/dav.pm_.c:24
-#: ../../printerdrake.pm_.c:2933 ../../standalone/logdrake_.c:224
+#: ../../harddrake/ui.pm_.c:98 ../../printerdrake.pm_.c:3155
+#: ../../standalone/logdrake_.c:224
msgid "Quit"
msgstr "Âûőàä"
@@ -213,28 +214,28 @@ msgstr ""
"\n"
"%s"
-#: ../../Xconfig/monitor.pm_.c:91
+#: ../../Xconfig/monitor.pm_.c:93
msgid "Choose a monitor"
msgstr "Àáÿđûöć ìàíiòîđ"
-#: ../../Xconfig/monitor.pm_.c:95
+#: ../../Xconfig/monitor.pm_.c:97
msgid "Plug'n Play"
msgstr ""
-#: ../../Xconfig/monitor.pm_.c:96 ../../mouse.pm_.c:45
+#: ../../Xconfig/monitor.pm_.c:98 ../../mouse.pm_.c:46
msgid "Generic"
msgstr "Àăóëüíû"
-#: ../../Xconfig/monitor.pm_.c:97 ../../harddrake/ui.pm_.c:36
+#: ../../Xconfig/monitor.pm_.c:99 ../../harddrake/ui.pm_.c:37
#, fuzzy
msgid "Vendor"
msgstr "Àäêàò"
-#: ../../Xconfig/monitor.pm_.c:107
+#: ../../Xconfig/monitor.pm_.c:109
msgid "Plug'n Play probing failed. Please choose a precise monitor"
msgstr ""
-#: ../../Xconfig/monitor.pm_.c:112
+#: ../../Xconfig/monitor.pm_.c:114
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -257,11 +258,11 @@ msgstr ""
"âû ìîæàöć ńàïńàâàöü ìàíiòîđ.\n"
"Êàëi âû ńóìíÿâàćöćńÿ, àáÿđûöć êàíńćđâàòûąíûÿ íàńòđîéêi."
-#: ../../Xconfig/monitor.pm_.c:119
+#: ../../Xconfig/monitor.pm_.c:121
msgid "Horizontal refresh rate"
msgstr "Śàńöłíÿ ăàđûçàíòàëüíûé đàçăîđòêi"
-#: ../../Xconfig/monitor.pm_.c:120
+#: ../../Xconfig/monitor.pm_.c:122
msgid "Vertical refresh rate"
msgstr "Śàńöłíÿ âćđòûêàëüíàé đàçăîđòêi"
@@ -298,36 +299,41 @@ msgstr "Âûáàđ ïàìćđàą ęêđàíó i ăëûáiíi êîëćđó"
msgid "Graphics card: %s"
msgstr "Âiäęàêàđòà: %s"
-#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1015
-#: ../../bootlook.pm_.c:334 ../../diskdrake/smbnfs_gtk.pm_.c:87
-#: ../../install_steps_gtk.pm_.c:412 ../../install_steps_gtk.pm_.c:470
-#: ../../install_steps_interactive.pm_.c:576 ../../interactive.pm_.c:142
-#: ../../interactive.pm_.c:351 ../../interactive/http.pm_.c:105
+#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1018
+#: ../../bootlook.pm_.c:338 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:406 ../../install_steps_gtk.pm_.c:464
+#: ../../install_steps_interactive.pm_.c:560 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:105
#: ../../interactive/newt.pm_.c:174 ../../interactive/stdio.pm_.c:39
-#: ../../interactive/stdio.pm_.c:143 ../../my_gtk.pm_.c:155
-#: ../../my_gtk.pm_.c:159 ../../my_gtk.pm_.c:284
-#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1990
-#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3278
-#: ../../standalone/drakbackup_.c:3311 ../../standalone/drakbackup_.c:3337
-#: ../../standalone/drakbackup_.c:3364 ../../standalone/drakbackup_.c:3391
-#: ../../standalone/drakbackup_.c:3451 ../../standalone/drakbackup_.c:3478
-#: ../../standalone/drakbackup_.c:3504 ../../standalone/drakconnect_.c:115
-#: ../../standalone/drakconnect_.c:147 ../../standalone/drakconnect_.c:289
-#: ../../standalone/drakconnect_.c:537 ../../standalone/drakconnect_.c:679
-#: ../../standalone/drakfloppy_.c:234 ../../standalone/drakfloppy_.c:383
-#: ../../standalone/drakfont_.c:970 ../../standalone/drakgw_.c:598
-#: ../../standalone/logdrake_.c:224 ../../standalone/logdrake_.c:528
-#: ../../standalone/tinyfirewall_.c:64
+#: ../../interactive/stdio.pm_.c:143 ../../my_gtk.pm_.c:158
+#: ../../my_gtk.pm_.c:162 ../../my_gtk.pm_.c:287
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:2124
+#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3926
+#: ../../standalone/drakbackup_.c:3959 ../../standalone/drakbackup_.c:3985
+#: ../../standalone/drakbackup_.c:4012 ../../standalone/drakbackup_.c:4039
+#: ../../standalone/drakbackup_.c:4099 ../../standalone/drakbackup_.c:4126
+#: ../../standalone/drakbackup_.c:4156 ../../standalone/drakbackup_.c:4182
+#: ../../standalone/drakconnect_.c:115 ../../standalone/drakconnect_.c:147
+#: ../../standalone/drakconnect_.c:289 ../../standalone/drakconnect_.c:537
+#: ../../standalone/drakconnect_.c:679 ../../standalone/drakfloppy_.c:234
+#: ../../standalone/drakfloppy_.c:383 ../../standalone/drakfont_.c:970
+#: ../../standalone/drakgw_.c:536 ../../standalone/logdrake_.c:224
+#: ../../standalone/logdrake_.c:526
msgid "Cancel"
msgstr "Àäìćíà"
-#: ../../Xconfig/test.pm_.c:26
+#: ../../Xconfig/test.pm_.c:30
+msgid "Test of the configuration"
+msgstr "Ïđàâćđêà ïàđàìćòđàą íàńòđîéêi"
+
+#: ../../Xconfig/test.pm_.c:31
msgid "Do you want to test the configuration?"
msgstr "Öi æàäàćöć ïđàòęńöiđàâàöü íàńòđîéêi?"
-#: ../../Xconfig/test.pm_.c:26
-msgid "Test of the configuration"
-msgstr "Ïđàâćđêà ïàđàìćòđàą íàńòđîéêi"
+#: ../../Xconfig/test.pm_.c:31
+#, fuzzy
+msgid "Warning: testing this graphic card may freeze your computer"
+msgstr "Ïàïÿđęäæàííć: òęńöiđàâàííć íà ăęòàé âiäęàêàđöć íćáÿńïćśíà"
#: ../../Xconfig/various.pm_.c:29
#, c-format
@@ -463,27 +469,23 @@ msgstr ""
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:158 ../../any.pm_.c:190
+#: ../../any.pm_.c:159 ../../any.pm_.c:190
msgid "Bootloader main options"
msgstr "Ăàëîąíûÿ îïöûi ïàśàòêîâàăà çàăđóçśûêó"
-#: ../../any.pm_.c:159 ../../any.pm_.c:191
+#: ../../any.pm_.c:160 ../../any.pm_.c:191
#, fuzzy
msgid "Bootloader to use"
msgstr "Ăàëîąíûÿ îïöûi ïàśàòêîâàăà çàăđóçśûêó"
-#: ../../any.pm_.c:161
+#: ../../any.pm_.c:162
msgid "Bootloader installation"
msgstr "Óńòàëÿâàííć çàăđóçśûêó"
-#: ../../any.pm_.c:163 ../../any.pm_.c:193
+#: ../../any.pm_.c:164 ../../any.pm_.c:193
msgid "Boot device"
msgstr "Çàăđóçàśíàÿ ïđûëàäà"
-#: ../../any.pm_.c:164
-msgid "LBA (doesn't work on old BIOSes)"
-msgstr "LBA (íć ïđàöóć ïđû ńòàđûő âćđńiÿő BIOS)"
-
#: ../../any.pm_.c:165
msgid "Compact"
msgstr "Êàìïàêòíà"
@@ -500,16 +502,17 @@ msgstr "Âiäęà-đęæûì"
msgid "Delay before booting default image"
msgstr "Çàòđûìêà ïćđàä çàăđóçêàé âîáđàçó ïà äàìàąëćííț"
-#: ../../any.pm_.c:170 ../../any.pm_.c:786
+#: ../../any.pm_.c:170 ../../any.pm_.c:788
#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1111 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:743 ../../printerdrake.pm_.c:858
-#: ../../standalone/drakconnect_.c:624 ../../standalone/drakconnect_.c:649
+#: ../../install_steps_interactive.pm_.c:1096 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:850 ../../printerdrake.pm_.c:965
+#: ../../standalone/drakbackup_.c:3528 ../../standalone/drakconnect_.c:624
+#: ../../standalone/drakconnect_.c:649
msgid "Password"
msgstr "Ïàđîëü"
-#: ../../any.pm_.c:171 ../../any.pm_.c:787
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../any.pm_.c:171 ../../any.pm_.c:789
+#: ../../install_steps_interactive.pm_.c:1097
msgid "Password (again)"
msgstr "Ïàąòàđûöć ïàđîëü"
@@ -544,14 +547,14 @@ msgid ""
msgstr ""
"Îïöûÿ ``Àáìćæàâàííć îïöûÿą êàìàíäíàăà đàäêó'' íć âûêàđûńòîąâàćööà áćç ïàđîëÿ"
-#: ../../any.pm_.c:184 ../../any.pm_.c:762
-#: ../../diskdrake/interactive.pm_.c:1180
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../any.pm_.c:184 ../../any.pm_.c:764
+#: ../../diskdrake/interactive.pm_.c:1191
+#: ../../install_steps_interactive.pm_.c:1091
msgid "Please try again"
msgstr "Ïàńïđàáóéöć ÿűśę đàç"
-#: ../../any.pm_.c:184 ../../any.pm_.c:762
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../any.pm_.c:184 ../../any.pm_.c:764
+#: ../../install_steps_interactive.pm_.c:1091
msgid "The passwords do not match"
msgstr "Ïàđîëi íć ńóïàäàțöü"
@@ -597,16 +600,16 @@ msgstr ""
"Ó ìćíț ìàțööà íàńòóïíûÿ ïóíêòû.\n"
"Âû ìîæàöć äàäàöü ÿűśę, àëüáî çìÿíiöü ińíóțśûÿ."
-#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1483
-#: ../../standalone/drakbackup_.c:1596 ../../standalone/drakfont_.c:1011
+#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1558
+#: ../../standalone/drakbackup_.c:1671 ../../standalone/drakfont_.c:1011
#: ../../standalone/drakfont_.c:1054
msgid "Add"
msgstr "Äàäàöü"
-#: ../../any.pm_.c:257 ../../any.pm_.c:774 ../../diskdrake/dav.pm_.c:60
+#: ../../any.pm_.c:257 ../../any.pm_.c:776 ../../diskdrake/dav.pm_.c:64
#: ../../diskdrake/hd_gtk.pm_.c:153 ../../diskdrake/removable.pm_.c:27
#: ../../diskdrake/smbnfs_gtk.pm_.c:88 ../../interactive/http.pm_.c:153
-#: ../../standalone/drakbackup_.c:2696
+#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2772
msgid "Done"
msgstr "Çđîáëćíà"
@@ -619,7 +622,7 @@ msgstr "Çìÿíiöü RAID"
msgid "Which type of entry do you want to add?"
msgstr "ßêi òûï ïóíêòà æàäàćöć äàäàöü?"
-#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1630
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1705
msgid "Linux"
msgstr "Linux"
@@ -715,13 +718,13 @@ msgstr "Öi žńöü ó âàń iíűû?"
msgid "Do you have any %s interfaces?"
msgstr "Öi žńöü ó âàń %s iíòęđôćéń?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:821 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:283
+#: ../../any.pm_.c:660 ../../any.pm_.c:823 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:286
msgid "No"
msgstr "Íć"
-#: ../../any.pm_.c:660 ../../any.pm_.c:820 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:283
+#: ../../any.pm_.c:660 ../../any.pm_.c:822 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:286
msgid "Yes"
msgstr "Òàê"
@@ -819,40 +822,48 @@ msgstr ""
msgid "access to administrative files"
msgstr ""
-#: ../../any.pm_.c:758
+#: ../../any.pm_.c:754
+msgid "access to network tools"
+msgstr ""
+
+#: ../../any.pm_.c:755
+msgid "access to compilation tools"
+msgstr ""
+
+#: ../../any.pm_.c:760
#, c-format
msgid "(already added %s)"
msgstr "(óæî äàäàäçćíà %s)"
-#: ../../any.pm_.c:763
+#: ../../any.pm_.c:765
msgid "This password is too simple"
msgstr "Ăęòû ïàđîëü çàíàäòà ïđîńòû"
-#: ../../any.pm_.c:764
+#: ../../any.pm_.c:766
msgid "Please give a user name"
msgstr "Êàëi ëàńêà, óâÿäçiöć iìÿ êàđûńòàëüíiêó"
-#: ../../any.pm_.c:765
+#: ../../any.pm_.c:767
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
"Iìÿ êàđûńòàëüíiêó ïàâiííà çìÿűśàöü ëiòàđû òîëüêi íà íiæíiì đęăińòđû, \n"
"ëiśáû, `-' i `_'"
-#: ../../any.pm_.c:766
+#: ../../any.pm_.c:768
#, fuzzy
msgid "The user name is too long"
msgstr "Ăęòà iìÿ êàđûńòàëüíiêó ąæî äàäàäçćíà"
-#: ../../any.pm_.c:767
+#: ../../any.pm_.c:769
msgid "This user name is already added"
msgstr "Ăęòà iìÿ êàđûńòàëüíiêó ąæî äàäàäçćíà"
-#: ../../any.pm_.c:771
+#: ../../any.pm_.c:773
msgid "Add user"
msgstr "Äàäàöü êàđûńòàëüíiêà"
-#: ../../any.pm_.c:772
+#: ../../any.pm_.c:774
#, c-format
msgid ""
"Enter a user\n"
@@ -861,32 +872,32 @@ msgstr ""
"Óâÿäçiöć iìÿ êàđûńòàëüíiêó\n"
"%s"
-#: ../../any.pm_.c:773
+#: ../../any.pm_.c:775
msgid "Accept user"
msgstr "Ïđûíÿöü êàđûńòàëüíiêà"
-#: ../../any.pm_.c:784
+#: ../../any.pm_.c:786
msgid "Real name"
msgstr "Óëàńíàć iìÿ"
-#: ../../any.pm_.c:785 ../../printerdrake.pm_.c:742
-#: ../../printerdrake.pm_.c:857
+#: ../../any.pm_.c:787 ../../printerdrake.pm_.c:849
+#: ../../printerdrake.pm_.c:964
msgid "User name"
msgstr "Iìÿ êàđûńòàëüíiêó:"
-#: ../../any.pm_.c:788
+#: ../../any.pm_.c:790
msgid "Shell"
msgstr "Àáàëîíêà:"
-#: ../../any.pm_.c:790
+#: ../../any.pm_.c:792
msgid "Icon"
msgstr "Ïiêòàăđàìà"
-#: ../../any.pm_.c:817
+#: ../../any.pm_.c:819
msgid "Autologin"
msgstr "Àąòàìàòûśíû ąâàőîä ó ńińòęìó"
-#: ../../any.pm_.c:818
+#: ../../any.pm_.c:820
#, fuzzy
msgid ""
"I can set up your computer to automatically log on one user.\n"
@@ -895,57 +906,57 @@ msgstr ""
"Ìîæíà íàńòđîiöü ńińòęìó äëÿ àąòàìàòûśíàăà ąâàőîäó ą ńińòęìó äëÿ\n"
"àäíàăî êàđûńòàëüíiêà. Êàëi Âû íć æàäàćöć ăęòàăà, íàöińíiöć \"Àäìćíà\"."
-#: ../../any.pm_.c:822
+#: ../../any.pm_.c:824
msgid "Choose the default user:"
msgstr "Àáÿđûöć àńíîąíàăà êàđûńòàëüíiêà:"
-#: ../../any.pm_.c:823
+#: ../../any.pm_.c:825
msgid "Choose the window manager to run:"
msgstr "Àáÿđûöć ìęíęäæàđ âîêíàą:"
-#: ../../any.pm_.c:838
+#: ../../any.pm_.c:840
#, fuzzy
msgid "Please choose a language to use."
msgstr "Êàëi ëàńêà, àáÿđûöć ìîâó äëÿ êàđûńòàííÿ."
-#: ../../any.pm_.c:840
+#: ../../any.pm_.c:842
msgid ""
"Mandrake Linux can support multiple languages. Select\n"
"the languages you would like to install. They will be available\n"
"when your installation is complete and you restart your system."
msgstr "Âû ìîæàöć àáđàöü łíűûÿ ìîâû, ÿêiÿ áóäóöü äàńòóïíû ïàńëÿ ąńòàëÿâàííÿ"
-#: ../../any.pm_.c:854 ../../install_steps_interactive.pm_.c:708
+#: ../../any.pm_.c:856 ../../install_steps_interactive.pm_.c:692
#: ../../standalone/drakxtv_.c:73
msgid "All"
msgstr "Óńž"
-#: ../../any.pm_.c:974
+#: ../../any.pm_.c:977
#, fuzzy
msgid "Allow all users"
msgstr "Äàäàöü êàđûńòàëüíiêà"
-#: ../../any.pm_.c:974
+#: ../../any.pm_.c:977
#, fuzzy
msgid "No sharing"
msgstr "Śàêàćööà"
-#: ../../any.pm_.c:984 ../../standalone.pm_.c:57
+#: ../../any.pm_.c:987 ../../install_any.pm_.c:1183 ../../standalone.pm_.c:58
#, fuzzy, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "Âûáàđ ïàêćòàą äëÿ ąńòàëÿâàííÿ"
-#: ../../any.pm_.c:987
+#: ../../any.pm_.c:990
msgid ""
"You can export using NFS or Samba. Please select which you'd like to use."
msgstr ""
-#: ../../any.pm_.c:995 ../../standalone.pm_.c:61
+#: ../../any.pm_.c:998 ../../install_any.pm_.c:1188 ../../standalone.pm_.c:63
#, c-format
msgid "Mandatory package %s is missing"
msgstr ""
-#: ../../any.pm_.c:1001
+#: ../../any.pm_.c:1004
msgid ""
"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
@@ -954,42 +965,42 @@ msgid ""
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:1015
+#: ../../any.pm_.c:1018
msgid "Launch userdrake"
msgstr ""
-#: ../../any.pm_.c:1017
+#: ../../any.pm_.c:1020
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
msgstr ""
-#: ../../any.pm_.c:1068
+#: ../../any.pm_.c:1071
msgid "Welcome To Crackers"
msgstr "Ńàđäęśíà çàïđàűàćì ó Crackers"
-#: ../../any.pm_.c:1069
+#: ../../any.pm_.c:1072
msgid "Poor"
msgstr "Çóńłì ńëàáû"
-#: ../../any.pm_.c:1070 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1073 ../../mouse.pm_.c:31
msgid "Standard"
msgstr "Ńòàíäàđòíû"
-#: ../../any.pm_.c:1071
+#: ../../any.pm_.c:1074
msgid "High"
msgstr "Âûńîêi"
-#: ../../any.pm_.c:1072
+#: ../../any.pm_.c:1075
#, fuzzy
msgid "Higher"
msgstr "Âûńîêi"
-#: ../../any.pm_.c:1073
+#: ../../any.pm_.c:1076
msgid "Paranoid"
msgstr "Ïàđàíàiäàëüíû"
-#: ../../any.pm_.c:1076
+#: ../../any.pm_.c:1079
msgid ""
"This level is to be used with care. It makes your system more easy to use,\n"
"but very sensitive: it must not be used for a machine connected to others\n"
@@ -1001,7 +1012,7 @@ msgstr ""
"íà ìàűûíàő, ÿêiÿ äàëóśàíû äà ńćòêi öi äà Internet. Óâàőîä íć àáàđîíćíû "
"ïàđîëćì."
-#: ../../any.pm_.c:1079
+#: ../../any.pm_.c:1082
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -1009,7 +1020,7 @@ msgstr ""
"Ïàđîëü çàđàç óêëțśàíû, àëć âûêàđûńòàííć êàìï'țòęđó ą ÿêàńöi ńćòêàâàăà\n"
"òàêńàìà íć đęêàìćíäàâàíà."
-#: ../../any.pm_.c:1080
+#: ../../any.pm_.c:1083
#, fuzzy
msgid ""
"This is the standard security recommended for a computer that will be used "
@@ -1019,13 +1030,13 @@ msgstr ""
"ÿêi äàëóśàíû äà Internet ó ÿêàńöi êëićíòó. Äàäàíûÿ íîâûÿ ïđàâćđêi\n"
"áÿńïćêi."
-#: ../../any.pm_.c:1081
+#: ../../any.pm_.c:1084
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr ""
-#: ../../any.pm_.c:1082
+#: ../../any.pm_.c:1085
#, fuzzy
msgid ""
"With this security level, the use of this system as a server becomes "
@@ -1039,7 +1050,7 @@ msgstr ""
"ńćđâćđó. Óçđîâćíü áÿńïćêi äàńòàòêîâà âûńîêi äëÿ đàáîòû\n"
"ńćđâćđó, ÿêi äàïóńêàć çëóśęííi ńà űìàòëiêiìi êëićíòàìi."
-#: ../../any.pm_.c:1085
+#: ../../any.pm_.c:1088
#, fuzzy
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
@@ -1048,32 +1059,32 @@ msgstr ""
"Ïđûìàțööà ąëàńöiâàńöi 4 óçđîąíÿ, àëć çàđàç ńińòęìà ïîąíàńöț çàśûíćíà.\n"
"Ïàđàìćòđû áÿńïćêi ąńòàíîąëćíû íà ìàêńiìóì."
-#: ../../any.pm_.c:1091
+#: ../../any.pm_.c:1094
#, fuzzy
msgid "DrakSec Basic Options"
msgstr "Îïöûi"
-#: ../../any.pm_.c:1092
+#: ../../any.pm_.c:1095
#, fuzzy
msgid "Please choose the desired security level"
msgstr "Óçđîâćíü áÿńïćêi"
-#: ../../any.pm_.c:1095
+#: ../../any.pm_.c:1098
#, fuzzy
msgid "Security level"
msgstr "Íàńòđîéêi ąçđîąíÿ áÿńïćêi"
-#: ../../any.pm_.c:1097
+#: ../../any.pm_.c:1100
#, fuzzy
msgid "Use libsafe for servers"
msgstr "Àáÿđûöć äàäàòêîâûÿ íàńòđîéêi äëÿ ńćđâćđà"
-#: ../../any.pm_.c:1098
+#: ../../any.pm_.c:1101
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
-#: ../../any.pm_.c:1099
+#: ../../any.pm_.c:1102
msgid "Security Administrator (login or email)"
msgstr ""
@@ -1097,57 +1108,57 @@ msgstr ""
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:935
+#: ../../bootloader.pm_.c:932
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Welcome to GRUB the operating system chooser!"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:938
+#: ../../bootloader.pm_.c:935
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "Use the %c and %c keys for selecting which entry is highlighted."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:941
+#: ../../bootloader.pm_.c:938
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Press enter to boot the selected OS, 'e' to edit the"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:941
msgid "commands before booting, or 'c' for a command-line."
msgstr "commands before booting, or 'c' for a command-line."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:947
+#: ../../bootloader.pm_.c:944
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "The highlighted entry will be booted automatically in %d seconds."
-#: ../../bootloader.pm_.c:951
+#: ../../bootloader.pm_.c:948
msgid "not enough room in /boot"
msgstr "Íć őàïàć äûńêàâàé ïđàńòîđû ą /boot"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1051
+#: ../../bootloader.pm_.c:1048
msgid "Desktop"
msgstr "Ïđàöîąíû ńòîë"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1053
+#: ../../bootloader.pm_.c:1050
msgid "Start Menu"
msgstr "Ńòàđòàâàć ìćíț"
-#: ../../bootloader.pm_.c:1072
+#: ../../bootloader.pm_.c:1069
#, fuzzy, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "Êóäû âû æàäàćöć ąńòàëÿâàöü ïàśàòêîâû çàăđóçśûê?"
-#: ../../bootlook.pm_.c:45
+#: ../../bootlook.pm_.c:45 ../../standalone/draksplash_.c:25
msgid "no help implemented yet.\n"
msgstr ""
@@ -1156,8 +1167,8 @@ msgstr ""
msgid "Boot Style Configuration"
msgstr "Íàńòđîéêà ìàäęìó"
-#: ../../bootlook.pm_.c:78 ../../harddrake/ui.pm_.c:59
-#: ../../harddrake/ui.pm_.c:60 ../../standalone/drakfloppy_.c:81
+#: ../../bootlook.pm_.c:78 ../../harddrake/ui.pm_.c:62
+#: ../../harddrake/ui.pm_.c:63 ../../standalone/drakfloppy_.c:81
#: ../../standalone/logdrake_.c:101
#, fuzzy
msgid "/_File"
@@ -1168,7 +1179,7 @@ msgstr "Ôàéëû:\n"
msgid "/File/_Quit"
msgstr ""
-#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:60
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:63
#: ../../standalone/drakfloppy_.c:82 ../../standalone/logdrake_.c:107
msgid "<control>Q"
msgstr ""
@@ -1214,119 +1225,125 @@ msgstr "Óńòàëÿâàííć ńińòęìû"
msgid "Display theme under console"
msgstr ""
-#: ../../bootlook.pm_.c:166
+#: ../../bootlook.pm_.c:145
+#, fuzzy
+msgid "Create new theme"
+msgstr "Ńòâàđęííć íîâàăà đàçäçćëó"
+
+#: ../../bootlook.pm_.c:169
msgid "Can't create Bootsplash preview"
msgstr ""
-#: ../../bootlook.pm_.c:166 ../../bootlook.pm_.c:184 ../../bootlook.pm_.c:187
-#: ../../bootlook.pm_.c:190 ../../bootlook.pm_.c:220 ../../bootlook.pm_.c:222
-#: ../../bootlook.pm_.c:232 ../../bootlook.pm_.c:241 ../../bootlook.pm_.c:248
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:336
-#: ../../diskdrake/interactive.pm_.c:351 ../../diskdrake/interactive.pm_.c:464
-#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../bootlook.pm_.c:169 ../../bootlook.pm_.c:187 ../../bootlook.pm_.c:190
+#: ../../bootlook.pm_.c:193 ../../bootlook.pm_.c:223 ../../bootlook.pm_.c:225
+#: ../../bootlook.pm_.c:235 ../../bootlook.pm_.c:244 ../../bootlook.pm_.c:251
+#: ../../diskdrake/dav.pm_.c:73 ../../diskdrake/hd_gtk.pm_.c:116
+#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/interactive.pm_.c:355
+#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/interactive.pm_.c:474
+#: ../../diskdrake/smbnfs_gtk.pm_.c:45 ../../fsedit.pm_.c:239
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:365 ../../interactive/http.pm_.c:119
-#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:80
+#: ../../interactive/http.pm_.c:119 ../../interactive/http.pm_.c:120
+#: ../../standalone/draksplash_.c:32
msgid "Error"
msgstr "Ïàìûëêà"
-#: ../../bootlook.pm_.c:183
+#: ../../bootlook.pm_.c:186
#, c-format
msgid "Backup %s to %s.old"
msgstr ""
-#: ../../bootlook.pm_.c:184
+#: ../../bootlook.pm_.c:187
msgid "unable to backup lilo message"
msgstr ""
-#: ../../bootlook.pm_.c:186
+#: ../../bootlook.pm_.c:189
#, c-format
msgid "Copy %s to %s"
msgstr ""
-#: ../../bootlook.pm_.c:187
+#: ../../bootlook.pm_.c:190
msgid "can't change lilo message"
msgstr ""
-#: ../../bootlook.pm_.c:190
+#: ../../bootlook.pm_.c:193
msgid "Lilo message not found"
msgstr ""
-#: ../../bootlook.pm_.c:220
+#: ../../bootlook.pm_.c:223
msgid "Can't write /etc/sysconfig/bootsplash."
msgstr ""
-#: ../../bootlook.pm_.c:220
+#: ../../bootlook.pm_.c:223
#, fuzzy, c-format
msgid "Write %s"
msgstr "Ńćđâćđ XFree86 %s"
-#: ../../bootlook.pm_.c:222
+#: ../../bootlook.pm_.c:225
msgid ""
"Can't write /etc/sysconfig/bootsplash\n"
"File not found."
msgstr ""
-#: ../../bootlook.pm_.c:233
+#: ../../bootlook.pm_.c:236
#, c-format
msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
msgstr ""
-#: ../../bootlook.pm_.c:236
+#: ../../bootlook.pm_.c:239
#, c-format
-msgid "Make initrd 'mkinird -f /boot/initrd-%s.img %s'."
+msgid "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
msgstr ""
-#: ../../bootlook.pm_.c:242
+#: ../../bootlook.pm_.c:245
msgid ""
"Can't relaunch LiLo!\n"
"Launch \"lilo\" as root in command line to complete LiLo theme installation."
msgstr ""
-#: ../../bootlook.pm_.c:246
+#: ../../bootlook.pm_.c:249
msgid "Relaunch 'lilo'"
msgstr ""
-#: ../../bootlook.pm_.c:248
+#: ../../bootlook.pm_.c:251 ../../standalone/draksplash_.c:161
+#: ../../standalone/draksplash_.c:330 ../../standalone/draksplash_.c:454
#, fuzzy
msgid "Notice"
msgstr "ăàëüűòóê"
-#: ../../bootlook.pm_.c:249
+#: ../../bootlook.pm_.c:252
msgid "LiLo and Bootsplash themes installation successfull"
msgstr ""
-#: ../../bootlook.pm_.c:249
+#: ../../bootlook.pm_.c:252
#, fuzzy
msgid "Theme installation failed!"
msgstr "Êëàń óńòàëÿâàííÿ"
-#: ../../bootlook.pm_.c:258
+#: ../../bootlook.pm_.c:261
#, fuzzy, c-format
msgid ""
"You are currently using %s as your boot manager.\n"
"Click on Configure to launch the setup wizard."
msgstr "Ńóìćńíàć Iíòęđíęò-çëóśęííć"
-#: ../../bootlook.pm_.c:260 ../../standalone/drakbackup_.c:2352
-#: ../../standalone/drakbackup_.c:2362 ../../standalone/drakbackup_.c:2372
-#: ../../standalone/drakbackup_.c:2380 ../../standalone/drakgw_.c:592
-#: ../../standalone/tinyfirewall_.c:58
+#: ../../bootlook.pm_.c:263 ../../standalone/drakbackup_.c:2427
+#: ../../standalone/drakbackup_.c:2437 ../../standalone/drakbackup_.c:2447
+#: ../../standalone/drakbackup_.c:2455 ../../standalone/drakgw_.c:530
#, fuzzy
msgid "Configure"
msgstr "Íàńòđîéêà X Window"
-#: ../../bootlook.pm_.c:267
+#: ../../bootlook.pm_.c:270
#, fuzzy
msgid "Splash selection"
msgstr "Àńàáińòû âûáàđ ïàêćòàą"
-#: ../../bootlook.pm_.c:270
+#: ../../bootlook.pm_.c:273
#, fuzzy
msgid "Themes"
msgstr "Äđęâà"
-#: ../../bootlook.pm_.c:272
+#: ../../bootlook.pm_.c:275
msgid ""
"\n"
"Select a theme for\n"
@@ -1335,44 +1352,44 @@ msgid ""
"them separatly"
msgstr ""
-#: ../../bootlook.pm_.c:275
+#: ../../bootlook.pm_.c:278
msgid "Lilo screen"
msgstr ""
-#: ../../bootlook.pm_.c:279
+#: ../../bootlook.pm_.c:283
msgid "Bootsplash"
msgstr ""
-#: ../../bootlook.pm_.c:314
+#: ../../bootlook.pm_.c:318
msgid "System mode"
msgstr ""
-#: ../../bootlook.pm_.c:316
+#: ../../bootlook.pm_.c:320
msgid "Launch the graphical environment when your system starts"
msgstr ""
-#: ../../bootlook.pm_.c:321
+#: ../../bootlook.pm_.c:325
msgid "No, I don't want autologin"
msgstr ""
-#: ../../bootlook.pm_.c:323
+#: ../../bootlook.pm_.c:327
msgid "Yes, I want autologin with this (user, desktop)"
msgstr ""
-#: ../../bootlook.pm_.c:333 ../../network/netconnect.pm_.c:101
+#: ../../bootlook.pm_.c:337 ../../network/netconnect.pm_.c:101
#: ../../standalone/drakTermServ_.c:173 ../../standalone/drakTermServ_.c:300
-#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:3513
-#: ../../standalone/drakbackup_.c:4290 ../../standalone/drakconnect_.c:108
+#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4191
+#: ../../standalone/drakbackup_.c:4952 ../../standalone/drakconnect_.c:108
#: ../../standalone/drakconnect_.c:140 ../../standalone/drakconnect_.c:296
#: ../../standalone/drakconnect_.c:435 ../../standalone/drakconnect_.c:521
#: ../../standalone/drakconnect_.c:564 ../../standalone/drakconnect_.c:667
#: ../../standalone/drakfloppy_.c:376 ../../standalone/drakfont_.c:612
#: ../../standalone/drakfont_.c:799 ../../standalone/drakfont_.c:876
-#: ../../standalone/drakfont_.c:963 ../../standalone/logdrake_.c:521
+#: ../../standalone/drakfont_.c:963 ../../standalone/logdrake_.c:519
msgid "OK"
msgstr ""
-#: ../../bootlook.pm_.c:403
+#: ../../bootlook.pm_.c:407
#, c-format
msgid "can not open /etc/inittab for reading: %s"
msgstr ""
@@ -1476,48 +1493,53 @@ msgstr "ïàńëÿäîąíàÿ"
msgid "United States"
msgstr ""
-#: ../../detect_devices.pm_.c:599 ../../detect_devices.pm_.c:641
-#: ../../detect_devices.pm_.c:803
-msgid "Unknown Model"
-msgstr ""
-
#: ../../diskdrake/dav.pm_.c:23
msgid "New"
msgstr "Íîâû"
-#: ../../diskdrake/dav.pm_.c:57
+#: ../../diskdrake/dav.pm_.c:59 ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/smbnfs_gtk.pm_.c:81
+msgid "Unmount"
+msgstr "Đàçìàíöiđàâàöü"
+
+#: ../../diskdrake/dav.pm_.c:60 ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/smbnfs_gtk.pm_.c:82
+msgid "Mount"
+msgstr "Ìàíöiđàâàííć"
+
+#: ../../diskdrake/dav.pm_.c:61
#, fuzzy
msgid "Server"
msgstr "ńćđâćđ"
-#: ../../diskdrake/dav.pm_.c:58 ../../diskdrake/interactive.pm_.c:375
-#: ../../diskdrake/interactive.pm_.c:558 ../../diskdrake/interactive.pm_.c:585
+#: ../../diskdrake/dav.pm_.c:62 ../../diskdrake/interactive.pm_.c:379
+#: ../../diskdrake/interactive.pm_.c:568 ../../diskdrake/interactive.pm_.c:595
#: ../../diskdrake/removable.pm_.c:24 ../../diskdrake/removable_gtk.pm_.c:15
#: ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr "Êđîïêà ìàíöiđàâàííÿ"
-#: ../../diskdrake/dav.pm_.c:68
+#: ../../diskdrake/dav.pm_.c:81
#, fuzzy
msgid "Please enter the WebDAV server URL"
msgstr "Êàëł ëàńêà, çđàáłöć íćêàëüêł đóőàą ìûűűó."
-#: ../../diskdrake/dav.pm_.c:71
+#: ../../diskdrake/dav.pm_.c:84
msgid "The URL must begin with http:// or https://"
msgstr ""
-#: ../../diskdrake/dav.pm_.c:92
+#: ../../diskdrake/dav.pm_.c:105
#, fuzzy
msgid "Server: "
msgstr "ńćđâćđ"
-#: ../../diskdrake/dav.pm_.c:93 ../../diskdrake/interactive.pm_.c:435
-#: ../../diskdrake/interactive.pm_.c:1079
-#: ../../diskdrake/interactive.pm_.c:1153
+#: ../../diskdrake/dav.pm_.c:106 ../../diskdrake/interactive.pm_.c:440
+#: ../../diskdrake/interactive.pm_.c:1089
+#: ../../diskdrake/interactive.pm_.c:1164
msgid "Mount point: "
msgstr "Ïóíêò ìàíöiđàâàííÿ:"
-#: ../../diskdrake/dav.pm_.c:94 ../../diskdrake/interactive.pm_.c:1159
+#: ../../diskdrake/dav.pm_.c:107 ../../diskdrake/interactive.pm_.c:1170
#, c-format
msgid "Options: %s"
msgstr "Îïöûi: %s"
@@ -1526,8 +1548,9 @@ msgstr "Îïöûi: %s"
msgid "Please make a backup of your data first"
msgstr "Ïà-ïćđűàć, çđàáiöć đęçćđâîâóț êîïiț âàűûő äàäçćíûő"
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:924
-#: ../../diskdrake/interactive.pm_.c:933 ../../diskdrake/interactive.pm_.c:999
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:934
+#: ../../diskdrake/interactive.pm_.c:943
+#: ../../diskdrake/interactive.pm_.c:1009
msgid "Read carefully!"
msgstr "Śûòàéöć ąâàæëiâà!"
@@ -1565,10 +1588,15 @@ msgid "Please click on a partition"
msgstr "Íàöłńíłöć íà đàçäçćë"
#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
-#: ../../install_steps_gtk.pm_.c:471
+#: ../../install_steps_gtk.pm_.c:465
msgid "Details"
msgstr "Ïàäđàáÿçíàńöi"
+#: ../../diskdrake/hd_gtk.pm_.c:252
+#, fuzzy
+msgid "No hard drives found"
+msgstr "Ëàêàëüíû ïđûíòęđ"
+
#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Ext2"
msgstr "Ext2"
@@ -1594,13 +1622,13 @@ msgstr "SunOS"
msgid "Swap"
msgstr "Swap"
-#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1105
msgid "Empty"
msgstr "Ïóńòà"
-#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:331
-#: ../../install_steps_gtk.pm_.c:389 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1679
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:325
+#: ../../install_steps_gtk.pm_.c:383 ../../mouse.pm_.c:165
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1754
msgid "Other"
msgstr "Číűûÿ"
@@ -1608,12 +1636,12 @@ msgstr "Číűûÿ"
msgid "Filesystem types:"
msgstr "Òûïû ôàéëàâûő ńińòęìàą:"
-#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:397
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:402
msgid "Create"
msgstr "Ńòâàđûöü"
-#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:376
-#: ../../diskdrake/interactive.pm_.c:521 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:380
+#: ../../diskdrake/interactive.pm_.c:531 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "Òûï"
@@ -1623,7 +1651,7 @@ msgstr "Òûï"
msgid "Use ``%s'' instead"
msgstr "Âûêàđûńòîąâàéöć ``%s'' çàìćńò"
-#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:389
msgid "Delete"
msgstr "Çíiűśûöü"
@@ -1631,84 +1659,84 @@ msgstr "Çíiűśûöü"
msgid "Use ``Unmount'' first"
msgstr "Ńïàśàòêó çđàáiöć ``Unmount''"
-#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:513
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:518
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
msgstr "Óńć äàäçćíûÿ ą đàçäçćëć %s áóäóöü ńòđàśàíû ïàńëÿ çìćíû ÿăî òûïó"
-#: ../../diskdrake/interactive.pm_.c:173
+#: ../../diskdrake/interactive.pm_.c:174
#, fuzzy
msgid "Choose a partition"
msgstr "Àáÿđûöć äçćÿííć"
-#: ../../diskdrake/interactive.pm_.c:173
+#: ../../diskdrake/interactive.pm_.c:174
#, fuzzy
msgid "Choose another partition"
msgstr "Ńòâàđęííć íîâàăà đàçäçćëó"
-#: ../../diskdrake/interactive.pm_.c:198
+#: ../../diskdrake/interactive.pm_.c:199
#, fuzzy
msgid "Exit"
msgstr "Ext2"
-#: ../../diskdrake/interactive.pm_.c:220
+#: ../../diskdrake/interactive.pm_.c:221
msgid "Toggle to expert mode"
msgstr "Đęæûì ęêńïćđòó"
-#: ../../diskdrake/interactive.pm_.c:220
+#: ../../diskdrake/interactive.pm_.c:221
msgid "Toggle to normal mode"
msgstr "Çâûśàéíû đęæûì"
-#: ../../diskdrake/interactive.pm_.c:220
+#: ../../diskdrake/interactive.pm_.c:221
msgid "Undo"
msgstr "Àäêàò"
-#: ../../diskdrake/interactive.pm_.c:239
+#: ../../diskdrake/interactive.pm_.c:240
msgid "Continue anyway?"
msgstr "Ńàïđàąäû ïđàöÿăâàöü?"
-#: ../../diskdrake/interactive.pm_.c:244
+#: ../../diskdrake/interactive.pm_.c:245
msgid "Quit without saving"
msgstr "Âûéńöi áćç çàőàâàííÿ"
-#: ../../diskdrake/interactive.pm_.c:244
+#: ../../diskdrake/interactive.pm_.c:245
msgid "Quit without writing the partition table?"
msgstr "Âûéńöi áćç çàïińó òàáëiöû đàçäçćëàą"
-#: ../../diskdrake/interactive.pm_.c:249
+#: ../../diskdrake/interactive.pm_.c:250
#, fuzzy
msgid "Do you want to save /etc/fstab modifications"
msgstr "Öi æàäàćöć ïđàòęńöiđàâàöü íàńòđîéêi?"
-#: ../../diskdrake/interactive.pm_.c:261
+#: ../../diskdrake/interactive.pm_.c:263
msgid "Auto allocate"
msgstr "Đàçìćđêàâàöü àąòàìàòûśíà"
-#: ../../diskdrake/interactive.pm_.c:261
+#: ../../diskdrake/interactive.pm_.c:263
msgid "Clear all"
msgstr "Àśûńöiöü óńž"
-#: ../../diskdrake/interactive.pm_.c:261
+#: ../../diskdrake/interactive.pm_.c:263
#: ../../install_steps_interactive.pm_.c:214
#, fuzzy
msgid "More"
msgstr "Ïćđàíîń"
-#: ../../diskdrake/interactive.pm_.c:264
+#: ../../diskdrake/interactive.pm_.c:267
#, fuzzy
msgid "Hard drive information"
msgstr "Iíôàđìàöûÿ"
-#: ../../diskdrake/interactive.pm_.c:294
+#: ../../diskdrake/interactive.pm_.c:298
msgid "All primary partitions are used"
msgstr "Óńć ïćđűàńíûÿ đàçäçćëû âûêàđûńòàíû"
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:299
msgid "I can't add any more partition"
msgstr "Äàäàöü đàçäçćë íćìàăśûìà"
-#: ../../diskdrake/interactive.pm_.c:296
+#: ../../diskdrake/interactive.pm_.c:300
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -1716,35 +1744,35 @@ msgstr ""
"Êàá çđàáiöü áîëüű đàçäćëàą, âûäàëiöć àäçií i ńòâàđûöć ïàűûđàíû đàçäçćë "
"(extended)"
-#: ../../diskdrake/interactive.pm_.c:306
+#: ../../diskdrake/interactive.pm_.c:310
#, fuzzy
msgid "Save partition table"
msgstr "Çàïiń òàáëiöû đàçäçćëàą"
-#: ../../diskdrake/interactive.pm_.c:307
+#: ../../diskdrake/interactive.pm_.c:311
#, fuzzy
msgid "Restore partition table"
msgstr "Äàäàòêîâàÿ òàáëiöà đàçäçćëàą"
-#: ../../diskdrake/interactive.pm_.c:308
+#: ../../diskdrake/interactive.pm_.c:312
msgid "Rescue partition table"
msgstr "Äàäàòêîâàÿ òàáëiöà đàçäçćëàą"
-#: ../../diskdrake/interactive.pm_.c:310
+#: ../../diskdrake/interactive.pm_.c:314
#, fuzzy
msgid "Reload partition table"
msgstr "Äàäàòêîâàÿ òàáëiöà đàçäçćëàą"
-#: ../../diskdrake/interactive.pm_.c:315
+#: ../../diskdrake/interactive.pm_.c:319
#, fuzzy
msgid "Removable media automounting"
msgstr "Àąòàìàíöiđàâàííć çìćííûő íàçàïàűâàëüíłêàą"
-#: ../../diskdrake/interactive.pm_.c:324 ../../diskdrake/interactive.pm_.c:344
+#: ../../diskdrake/interactive.pm_.c:328 ../../diskdrake/interactive.pm_.c:348
msgid "Select file"
msgstr "Àáÿđûöć ôàéë"
-#: ../../diskdrake/interactive.pm_.c:331
+#: ../../diskdrake/interactive.pm_.c:335
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1752,11 +1780,11 @@ msgstr ""
"Òàáëiöà đàçìÿűśęííÿ đęçćđâîâàăà äûńêó ìàć iíűû ïàìćđ\n"
"Ïđàöÿăâàöü äàëćé?"
-#: ../../diskdrake/interactive.pm_.c:345
+#: ../../diskdrake/interactive.pm_.c:349
msgid "Warning"
msgstr "Óâàăà!"
-#: ../../diskdrake/interactive.pm_.c:346
+#: ../../diskdrake/interactive.pm_.c:350
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1764,115 +1792,107 @@ msgstr ""
"Óńòàąöć äûńêćòó ą äûńêàâîä\n"
"Óńć äàäçćíûÿ íà ăęòàé äûńêćöć áóäóöü ńòđàśàíû"
-#: ../../diskdrake/interactive.pm_.c:357
+#: ../../diskdrake/interactive.pm_.c:361
msgid "Trying to rescue partition table"
msgstr "Ïàńïđàáóćì âûđàòàâàöü òàáëiöó đàçäçćëàą"
-#: ../../diskdrake/interactive.pm_.c:363
+#: ../../diskdrake/interactive.pm_.c:367
#, fuzzy
msgid "Detailed information"
msgstr "Iíôàđìàöûÿ"
-#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:652
+#: ../../diskdrake/interactive.pm_.c:382 ../../diskdrake/interactive.pm_.c:662
msgid "Resize"
msgstr "Çìÿíćííć ïàìćđàą"
-#: ../../diskdrake/interactive.pm_.c:379 ../../diskdrake/interactive.pm_.c:705
+#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/interactive.pm_.c:715
msgid "Move"
msgstr "Ïćđàíîń"
-#: ../../diskdrake/interactive.pm_.c:380
+#: ../../diskdrake/interactive.pm_.c:384
msgid "Format"
msgstr "Ôàđìàòàâàííć"
-#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/smbnfs_gtk.pm_.c:82
-msgid "Mount"
-msgstr "Ìàíöiđàâàííć"
-
-#: ../../diskdrake/interactive.pm_.c:382
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Add to RAID"
msgstr "Äàäàöü äà RAID"
-#: ../../diskdrake/interactive.pm_.c:383
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Add to LVM"
msgstr "Äàäàöü äà LVM"
-#: ../../diskdrake/interactive.pm_.c:384 ../../diskdrake/smbnfs_gtk.pm_.c:81
-msgid "Unmount"
-msgstr "Đàçìàíöiđàâàöü"
-
-#: ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/interactive.pm_.c:390
msgid "Remove from RAID"
msgstr "Âûäàëiöü ç RAID"
-#: ../../diskdrake/interactive.pm_.c:387
+#: ../../diskdrake/interactive.pm_.c:391
msgid "Remove from LVM"
msgstr "Âûäàëiöü ç LVM"
-#: ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/interactive.pm_.c:392
msgid "Modify RAID"
msgstr "Çìÿíiöü RAID"
-#: ../../diskdrake/interactive.pm_.c:389
+#: ../../diskdrake/interactive.pm_.c:393
msgid "Use for loopback"
msgstr "Âûêàđûńòîąâàöü äëÿ âiđòóàëüíàé ôàéëàâàé ńińòęìû"
-#: ../../diskdrake/interactive.pm_.c:428
+#: ../../diskdrake/interactive.pm_.c:433
msgid "Create a new partition"
msgstr "Ńòâàđęííć íîâàăà đàçäçćëó"
-#: ../../diskdrake/interactive.pm_.c:431
+#: ../../diskdrake/interactive.pm_.c:436
msgid "Start sector: "
msgstr "Ïàśàòêîâû ńćêòàđ:"
-#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:805
+#: ../../diskdrake/interactive.pm_.c:438 ../../diskdrake/interactive.pm_.c:815
msgid "Size in MB: "
msgstr "Ïàìćđ ó Ìá:"
-#: ../../diskdrake/interactive.pm_.c:434 ../../diskdrake/interactive.pm_.c:806
+#: ../../diskdrake/interactive.pm_.c:439 ../../diskdrake/interactive.pm_.c:816
msgid "Filesystem type: "
msgstr "Òûï ôàéëàâàé ńińòęìû:"
-#: ../../diskdrake/interactive.pm_.c:439
+#: ../../diskdrake/interactive.pm_.c:444
msgid "Preference: "
msgstr "Ïàđàìćòđû: "
-#: ../../diskdrake/interactive.pm_.c:464
+#: ../../diskdrake/interactive.pm_.c:469
msgid ""
"You can't create a new partition\n"
"(since you reached the maximal number of primary partitions).\n"
"First remove a primary partition and create an extended partition."
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:494
+#: ../../diskdrake/interactive.pm_.c:499
#, fuzzy
msgid "Remove the loopback file?"
msgstr "Ôàđìàòàâàííć âiđòóàëüíàăà đàçäçćëó %s"
-#: ../../diskdrake/interactive.pm_.c:519
+#: ../../diskdrake/interactive.pm_.c:529
msgid "Change partition type"
msgstr "Çìÿíiöü òûï đàçäçćëó"
-#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:530 ../../diskdrake/removable.pm_.c:48
#, fuzzy
msgid "Which filesystem do you want?"
msgstr "ßêóț ńińòęìó äđóêó Âû æàäàćöć âûêàđûńòîąâàöü?"
-#: ../../diskdrake/interactive.pm_.c:526
+#: ../../diskdrake/interactive.pm_.c:536
msgid "Switching from ext2 to ext3"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:556
+#: ../../diskdrake/interactive.pm_.c:566
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "Êóäû âû æàäàćöć ìàíöiđàâàöü âiđòóàëüíóț ïđûëàäó %s?"
-#: ../../diskdrake/interactive.pm_.c:557
+#: ../../diskdrake/interactive.pm_.c:567
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Êóäû âû æàäàćöć ìàíöiđàâàöü ïđûëàäó %s?"
-#: ../../diskdrake/interactive.pm_.c:563
+#: ../../diskdrake/interactive.pm_.c:573
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1881,142 +1901,142 @@ msgstr ""
"âiđòóàëüíàé ôàéëàâàé ńińòęìû.\n"
"Ńïàśàòêó âûäàëiöć âiđòóàëüíóț ńińòęìó"
-#: ../../diskdrake/interactive.pm_.c:584
+#: ../../diskdrake/interactive.pm_.c:594
#, fuzzy, c-format
msgid "Where do you want to mount %s?"
msgstr "Êóäû âû æàäàćöć ìàíöiđàâàöü ïđûëàäó %s?"
-#: ../../diskdrake/interactive.pm_.c:608
+#: ../../diskdrake/interactive.pm_.c:618
msgid "Computing FAT filesystem bounds"
msgstr "Ïàäëłê ìćæàą ôàéëàâàé ńińòęìû FAT"
-#: ../../diskdrake/interactive.pm_.c:608 ../../diskdrake/interactive.pm_.c:667
-#: ../../install_interactive.pm_.c:131
+#: ../../diskdrake/interactive.pm_.c:618 ../../diskdrake/interactive.pm_.c:677
+#: ../../install_interactive.pm_.c:133
msgid "Resizing"
msgstr "Çìÿíćííć ïàìćđàą"
-#: ../../diskdrake/interactive.pm_.c:640
+#: ../../diskdrake/interactive.pm_.c:650
#, fuzzy
msgid "This partition is not resizeable"
msgstr "Ïàìćđû ÿêîăà đàçäçćëà âû æàäàćöć çìÿíiöü?"
-#: ../../diskdrake/interactive.pm_.c:645
+#: ../../diskdrake/interactive.pm_.c:655
msgid "All data on this partition should be backed-up"
msgstr "Óńć äàäçćíûÿ ą ăęòûì đàçäçćëć ïàâiííû áûöü çàđőiâàâàíûÿ"
-#: ../../diskdrake/interactive.pm_.c:647
+#: ../../diskdrake/interactive.pm_.c:657
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr "Óńć äàäçćíûÿ ą đàçäçćëć %s áóäóöü ńòđàśàíû"
-#: ../../diskdrake/interactive.pm_.c:652
+#: ../../diskdrake/interactive.pm_.c:662
msgid "Choose the new size"
msgstr "Âûáàđ íîâûő ïàìćđàą"
-#: ../../diskdrake/interactive.pm_.c:653
+#: ../../diskdrake/interactive.pm_.c:663
#, fuzzy
msgid "New size in MB: "
msgstr "Ïàìćđ ó Ìá:"
-#: ../../diskdrake/interactive.pm_.c:706
+#: ../../diskdrake/interactive.pm_.c:716
msgid "Which disk do you want to move it to?"
msgstr "Íà ÿêi äûńê ïćđàíćńöł?"
-#: ../../diskdrake/interactive.pm_.c:707
+#: ../../diskdrake/interactive.pm_.c:717
msgid "Sector"
msgstr "Ńćêòàđ"
-#: ../../diskdrake/interactive.pm_.c:708
+#: ../../diskdrake/interactive.pm_.c:718
msgid "Which sector do you want to move it to?"
msgstr "Íà ÿêi ńćêòàđ ïćđàíćńöł?"
-#: ../../diskdrake/interactive.pm_.c:711
+#: ../../diskdrake/interactive.pm_.c:721
msgid "Moving"
msgstr "Ïćđàíîńłì"
-#: ../../diskdrake/interactive.pm_.c:711
+#: ../../diskdrake/interactive.pm_.c:721
msgid "Moving partition..."
msgstr "Ïćđàíîńłööà đàçäçćë..."
-#: ../../diskdrake/interactive.pm_.c:728
+#: ../../diskdrake/interactive.pm_.c:738
msgid "Choose an existing RAID to add to"
msgstr "Àáÿđûöć ińíóțśû RAID äëÿ äàäàííÿ"
-#: ../../diskdrake/interactive.pm_.c:729 ../../diskdrake/interactive.pm_.c:746
+#: ../../diskdrake/interactive.pm_.c:739 ../../diskdrake/interactive.pm_.c:756
msgid "new"
msgstr "íîâû"
-#: ../../diskdrake/interactive.pm_.c:744
+#: ../../diskdrake/interactive.pm_.c:754
msgid "Choose an existing LVM to add to"
msgstr "Âûáÿđûöć ińíóțśû LVM äëÿ äàáàąëćííÿ"
-#: ../../diskdrake/interactive.pm_.c:749
+#: ../../diskdrake/interactive.pm_.c:759
msgid "LVM name?"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:790
+#: ../../diskdrake/interactive.pm_.c:800
msgid "This partition can't be used for loopback"
msgstr "Ăęòû đàçäçćë íć ìîæà áûöü âûêàđûńòàíû ïàä âiđòóàëüíóț ôàéëàâóț ńińòęìó"
-#: ../../diskdrake/interactive.pm_.c:803
+#: ../../diskdrake/interactive.pm_.c:813
msgid "Loopback"
msgstr "Âiđòóàëüíàÿ ôàéëàâàÿ ńińòęìà (loopback)"
-#: ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:814
msgid "Loopback file name: "
msgstr "Iìÿ âiđòóàëüíàăà đàçäçćëó"
-#: ../../diskdrake/interactive.pm_.c:809
+#: ../../diskdrake/interactive.pm_.c:819
#, fuzzy
msgid "Give a file name"
msgstr "Óëàńíàć iìÿ"
-#: ../../diskdrake/interactive.pm_.c:812
+#: ../../diskdrake/interactive.pm_.c:822
msgid "File already used by another loopback, choose another one"
msgstr ""
"Ôàéë óæî âûêàđûńòîąâàćööà iíűàé âiđòóàëüíàé ńińòęìàé. Êàëi ëàńêà, \n"
"àáÿđûöć iíűóț íàçâó"
-#: ../../diskdrake/interactive.pm_.c:813
+#: ../../diskdrake/interactive.pm_.c:823
msgid "File already exists. Use it?"
msgstr "Ôàéë óæî ińíóć. Âûêàđûńòàöü ÿăî?"
-#: ../../diskdrake/interactive.pm_.c:836
+#: ../../diskdrake/interactive.pm_.c:846
#, fuzzy
msgid "Mount options"
msgstr "Îïöûi ìîäóëț:"
-#: ../../diskdrake/interactive.pm_.c:843
+#: ../../diskdrake/interactive.pm_.c:853
msgid "Various"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:907 ../../standalone/drakfloppy_.c:103
+#: ../../diskdrake/interactive.pm_.c:917 ../../standalone/drakfloppy_.c:103
msgid "device"
msgstr "ïđûëàäà"
-#: ../../diskdrake/interactive.pm_.c:908
+#: ../../diskdrake/interactive.pm_.c:918
msgid "level"
msgstr "óçđîâćíü"
-#: ../../diskdrake/interactive.pm_.c:909
+#: ../../diskdrake/interactive.pm_.c:919
msgid "chunk size"
msgstr "ïàìćđ áëîêó"
-#: ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:934
msgid "Be careful: this operation is dangerous."
msgstr "Áóäçüöć óâàæëiâû. Ăęòóț àïćđàöûț íćëüăà àäìÿíiöü"
-#: ../../diskdrake/interactive.pm_.c:939
+#: ../../diskdrake/interactive.pm_.c:949
#, fuzzy
msgid "What type of partitioning?"
msgstr "ßêi òûï äđóêàđêi âû ìàćöć?"
-#: ../../diskdrake/interactive.pm_.c:955
+#: ../../diskdrake/interactive.pm_.c:965
#, fuzzy, c-format
msgid "The package %s is needed. Install it?"
msgstr "Âûáàđ ïàêćòàą äëÿ ąńòàëÿâàííÿ"
-#: ../../diskdrake/interactive.pm_.c:969
+#: ../../diskdrake/interactive.pm_.c:979
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -2027,7 +2047,7 @@ msgstr ""
"Êàëł âû äóìàćöć âûêàđûńòîąâàöü LILO - òàäû ăęòà íć áóäçć ïđàöàâàöü, LILO íć "
"âûêàđûńòîąâàćöà, òàäû /boot íć ïàòđęáíû."
-#: ../../diskdrake/interactive.pm_.c:973
+#: ../../diskdrake/interactive.pm_.c:983
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -2039,7 +2059,7 @@ msgstr ""
"Êàëi áóäçć âûêàđûńòîąâàööà äûńïćśàđ çàăđóçêi LILO, íć çàïàìÿòàéöć äàäàöü\n"
"đàçäçćë /boot"
-#: ../../diskdrake/interactive.pm_.c:979
+#: ../../diskdrake/interactive.pm_.c:989
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
@@ -2049,137 +2069,137 @@ msgstr ""
"Íÿìà çàăđóçśûêó, ÿêi á çàăđóçiąńÿ áćç /boot đàçäçćëà.\n"
"Äàäàéöć đàçäćë /boot, êàëi ëàńêà."
-#: ../../diskdrake/interactive.pm_.c:999
+#: ../../diskdrake/interactive.pm_.c:1009
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "Òàáëiöà đàçìÿűśęííÿ ïđûëàäû %s áóäçć çàïińàíà íà äûńê!"
-#: ../../diskdrake/interactive.pm_.c:1003
+#: ../../diskdrake/interactive.pm_.c:1013
msgid "You'll need to reboot before the modification can take place"
msgstr "Êàá çìÿíćííi ąńòóïiëi ą äçćÿííć, íćîáőîäíà ïćđàçàăđóçiööà"
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1024
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr "Óńć äàäçćíûć ą đàçäçćëć %s áóäóöü ńòđàśàíû ïàńëÿ ôàđìàòàâàííÿ"
-#: ../../diskdrake/interactive.pm_.c:1016
+#: ../../diskdrake/interactive.pm_.c:1026
msgid "Formatting"
msgstr "Ôàđìàòàâàííć"
-#: ../../diskdrake/interactive.pm_.c:1017
+#: ../../diskdrake/interactive.pm_.c:1027
#, c-format
msgid "Formatting loopback file %s"
msgstr "Ôàđìàòàâàííć âiđòóàëüíàăà đàçäçćëó %s"
-#: ../../diskdrake/interactive.pm_.c:1018
-#: ../../install_steps_interactive.pm_.c:476
+#: ../../diskdrake/interactive.pm_.c:1028
+#: ../../install_steps_interactive.pm_.c:459
#, c-format
msgid "Formatting partition %s"
msgstr "Ôàđìàòàâàííć đàçäçćëó %s"
-#: ../../diskdrake/interactive.pm_.c:1029
+#: ../../diskdrake/interactive.pm_.c:1039
#, fuzzy
msgid "Hide files"
msgstr "mkraid íć ïđàöàçäîëüíû"
-#: ../../diskdrake/interactive.pm_.c:1029
+#: ../../diskdrake/interactive.pm_.c:1039
#, fuzzy
msgid "Move files to the new partition"
msgstr "Íć őàïàć ïđàńòîđû äëÿ ńòâàđęííÿ íîâûő đàçäçćëàą"
-#: ../../diskdrake/interactive.pm_.c:1030
+#: ../../diskdrake/interactive.pm_.c:1040
#, c-format
msgid ""
"Directory %s already contains data\n"
"(%s)"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1041
+#: ../../diskdrake/interactive.pm_.c:1051
#, fuzzy
msgid "Moving files to the new partition"
msgstr "Íć őàïàć ïđàńòîđû äëÿ ńòâàđęííÿ íîâûő đàçäçćëàą"
-#: ../../diskdrake/interactive.pm_.c:1045
+#: ../../diskdrake/interactive.pm_.c:1055
#, c-format
msgid "Copying %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1049
+#: ../../diskdrake/interactive.pm_.c:1059
#, fuzzy, c-format
msgid "Removing %s"
msgstr "Ïàìćđû ęêđàíó: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1059
+#: ../../diskdrake/interactive.pm_.c:1069
#, c-format
msgid "partition %s is now known as %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1080
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1090
+#: ../../diskdrake/interactive.pm_.c:1149
msgid "Device: "
msgstr "Ïđûëàäà:"
-#: ../../diskdrake/interactive.pm_.c:1081
+#: ../../diskdrake/interactive.pm_.c:1091
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "Ëiòàđà äëÿ DOS-äûńêó: %s (íàąăàä)\n"
-#: ../../diskdrake/interactive.pm_.c:1085
-#: ../../diskdrake/interactive.pm_.c:1093
-#: ../../diskdrake/interactive.pm_.c:1157
+#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1103
+#: ../../diskdrake/interactive.pm_.c:1168
msgid "Type: "
msgstr "Òûï: "
-#: ../../diskdrake/interactive.pm_.c:1089
+#: ../../diskdrake/interactive.pm_.c:1099
msgid "Name: "
msgstr "Iìÿ: "
-#: ../../diskdrake/interactive.pm_.c:1097
+#: ../../diskdrake/interactive.pm_.c:1107
#, c-format
msgid "Start: sector %s\n"
msgstr "Ïàśàòàê: ńćêòàđ %s\n"
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1108
#, c-format
msgid "Size: %s"
msgstr "Ïàìćđ: %s"
-#: ../../diskdrake/interactive.pm_.c:1100
+#: ../../diskdrake/interactive.pm_.c:1110
#, c-format
msgid ", %s sectors"
msgstr ", %s ńćêòàđàą"
-#: ../../diskdrake/interactive.pm_.c:1102
+#: ../../diskdrake/interactive.pm_.c:1112
#, fuzzy, c-format
msgid "Cylinder %d to %d\n"
msgstr "Öûëiíäđû ç %d ïà %d\n"
-#: ../../diskdrake/interactive.pm_.c:1103
+#: ../../diskdrake/interactive.pm_.c:1113
msgid "Formatted\n"
msgstr "Ôàđìàòàâàííć\n"
-#: ../../diskdrake/interactive.pm_.c:1104
+#: ../../diskdrake/interactive.pm_.c:1114
msgid "Not formatted\n"
msgstr "Íć àäôàđìàòàâàíà\n"
-#: ../../diskdrake/interactive.pm_.c:1105
+#: ../../diskdrake/interactive.pm_.c:1115
msgid "Mounted\n"
msgstr "Çàìàíöiđàâàíà\n"
-#: ../../diskdrake/interactive.pm_.c:1106
+#: ../../diskdrake/interactive.pm_.c:1116
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1108
+#: ../../diskdrake/interactive.pm_.c:1118
#, fuzzy, c-format
msgid ""
"Loopback file(s):\n"
" %s\n"
msgstr "Ôàéë(û) âiđòóàëüíàé ôàéëàâàé ńińòęìû: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1109
+#: ../../diskdrake/interactive.pm_.c:1119
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -2187,27 +2207,27 @@ msgstr ""
"Çàăđóçàśíû đàçäçćë ïà äàìàąëćííț\n"
" (äëÿ çàăđóçêi MS-DOS, à íć äëÿ lilo)\n"
-#: ../../diskdrake/interactive.pm_.c:1111
+#: ../../diskdrake/interactive.pm_.c:1121
#, c-format
msgid "Level %s\n"
msgstr "Óçđîâćíü %s\n"
-#: ../../diskdrake/interactive.pm_.c:1112
+#: ../../diskdrake/interactive.pm_.c:1122
#, c-format
msgid "Chunk size %s\n"
msgstr "Ïàìćđ ôđàăìćíòó %s\n"
-#: ../../diskdrake/interactive.pm_.c:1113
+#: ../../diskdrake/interactive.pm_.c:1123
#, c-format
msgid "RAID-disks %s\n"
msgstr "RAID-äûńêi %s\n"
-#: ../../diskdrake/interactive.pm_.c:1115
+#: ../../diskdrake/interactive.pm_.c:1125
#, c-format
msgid "Loopback file name: %s"
msgstr "Iìÿ ôàéëó âiđòóàëüíàé ôàéëàâàé ńińòęìû: %s"
-#: ../../diskdrake/interactive.pm_.c:1118
+#: ../../diskdrake/interactive.pm_.c:1128
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -2215,7 +2235,7 @@ msgid ""
"probably leave it alone.\n"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1121
+#: ../../diskdrake/interactive.pm_.c:1131
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2223,60 +2243,64 @@ msgid ""
"dual-booting your system.\n"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1140
+#: ../../diskdrake/interactive.pm_.c:1150
+msgid "Read-only"
+msgstr ""
+
+#: ../../diskdrake/interactive.pm_.c:1151
#, c-format
msgid "Size: %s\n"
msgstr "Ïàìćđ: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1141
+#: ../../diskdrake/interactive.pm_.c:1152
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Ăćàìćòđûÿ: %s öûëiíäđàą, %s ăàëîâàê, %s ńćêòàđàą\n"
-#: ../../diskdrake/interactive.pm_.c:1142
+#: ../../diskdrake/interactive.pm_.c:1153
msgid "Info: "
msgstr "Iíôàđìàöûÿ: "
-#: ../../diskdrake/interactive.pm_.c:1143
+#: ../../diskdrake/interactive.pm_.c:1154
#, c-format
msgid "LVM-disks %s\n"
msgstr "LVM-äûńêi %s\n"
-#: ../../diskdrake/interactive.pm_.c:1144
+#: ../../diskdrake/interactive.pm_.c:1155
#, c-format
msgid "Partition table type: %s\n"
msgstr "Òûï òàáëiöû đàçäçćëàą: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1145
+#: ../../diskdrake/interactive.pm_.c:1156
#, fuzzy, c-format
msgid "on channel %d id %d\n"
msgstr "íà űûíć %d id %d\n"
-#: ../../diskdrake/interactive.pm_.c:1175
+#: ../../diskdrake/interactive.pm_.c:1186
#, fuzzy
msgid "Filesystem encryption key"
msgstr "Òûï ôàéëàâàé ńińòęìû:"
-#: ../../diskdrake/interactive.pm_.c:1176
+#: ../../diskdrake/interactive.pm_.c:1187
msgid "Choose your filesystem encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1179
+#: ../../diskdrake/interactive.pm_.c:1190
#, fuzzy, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr ""
"Ăęòû ïàđîëü çàíàäòà ïđîńòû (ÿăî äàąæûíÿ ïàâiííà áûöü íć ìćíćé çà %d ëiòàđàą)"
-#: ../../diskdrake/interactive.pm_.c:1180
+#: ../../diskdrake/interactive.pm_.c:1191
#, fuzzy
msgid "The encryption keys do not match"
msgstr "Ïàđîëi íć ńóïàäàțöü"
-#: ../../diskdrake/interactive.pm_.c:1183
+#: ../../diskdrake/interactive.pm_.c:1194
msgid "Encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1184
+#: ../../diskdrake/interactive.pm_.c:1195
msgid "Encryption key (again)"
msgstr ""
@@ -2315,7 +2339,7 @@ msgid ""
"Please enter your username, password and domain name to access this host."
msgstr ""
-#: ../../diskdrake/smbnfs_gtk.pm_.c:178
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3527
#, fuzzy
msgid "Username"
msgstr "Iìÿ êàđûńòàëüíiêó:"
@@ -2330,23 +2354,23 @@ msgstr "NIS Domain"
msgid "Search servers"
msgstr "DNS ńćđâćđ"
-#: ../../fs.pm_.c:552 ../../fs.pm_.c:562 ../../fs.pm_.c:566 ../../fs.pm_.c:570
-#: ../../fs.pm_.c:574 ../../fs.pm_.c:578
+#: ../../fs.pm_.c:544 ../../fs.pm_.c:554 ../../fs.pm_.c:558 ../../fs.pm_.c:562
+#: ../../fs.pm_.c:566 ../../fs.pm_.c:570
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s ïàìûëêà ôàđìàòàâàííÿ %s"
-#: ../../fs.pm_.c:615
+#: ../../fs.pm_.c:607
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "Íć âćäàț ÿê àäôàđìàòàâàöü %s ç òûïàì %s"
-#: ../../fs.pm_.c:687 ../../fs.pm_.c:731
+#: ../../fs.pm_.c:681 ../../fs.pm_.c:724
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../fs.pm_.c:746 ../../partition_table.pm_.c:602
+#: ../../fs.pm_.c:739 ../../partition_table.pm_.c:598
#, c-format
msgid "error unmounting %s: %s"
msgstr "ïàìûëêà đàçìàíöiđàâàííÿ %s: %s"
@@ -2363,34 +2387,52 @@ msgstr ""
msgid "server"
msgstr "ńćđâćđ"
-#: ../../fsedit.pm_.c:472
+#: ../../fsedit.pm_.c:240
+#, fuzzy, c-format
+msgid ""
+"I can't read the partition table of device %s, it's too corrupted for me :(\n"
+"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
+"The other solution is to not allow DrakX to modify the partition table.\n"
+"(the error is %s)\n"
+"\n"
+"Do you agree to loose all the partitions?\n"
+msgstr ""
+"Òàáëiöà đàçäçćëàą íć śûòàćööà, ÿíà çàíàäòà ńàïńàâàíàÿ äëÿ ìćíÿ :(\n"
+"Ïàńïđàáóț ińöi äàëćé i áóäó ïđàïóńêàöü äđęííûÿ đàçäçćëû (Óńć ÄÀÄĆÇĆÍÛß\n"
+"áóäóöü ńòđàśàíû!). Iíűàć đàűęííć íć äàçâîëiöü DrakX çìÿíiöü òàáëiöó "
+"đàçäçćëàą.\n"
+"(ïàìûëêà ą %s)\n"
+"\n"
+"Öi æàäàćöć ńòđàöiöü óńć đàçäçćëû?\n"
+
+#: ../../fsedit.pm_.c:501
#, fuzzy
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr "Âû íć ìîæàöć đàçáiâàöü íà đàçäćëû, ïàìćđ ÿêiő ìćíćé çà 16 Ìá"
-#: ../../fsedit.pm_.c:473
+#: ../../fsedit.pm_.c:502
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr "Âû íć ìîæàöć đàçáiâàöü íà đàçäćëû, ïàìćđ ÿêiő ìćíćé çà 32 Ìá"
-#: ../../fsedit.pm_.c:492
+#: ../../fsedit.pm_.c:521
msgid "Mount points must begin with a leading /"
msgstr "Ïóíêò ìàíöiđàâàííÿ ïàâiíćí ïàśûíàööà ç /"
-#: ../../fsedit.pm_.c:493
+#: ../../fsedit.pm_.c:522
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Óæî žńöü đàçäçćë ç ïóíêòàì ìàíöiđàâàííÿ %s\n"
-#: ../../fsedit.pm_.c:497
+#: ../../fsedit.pm_.c:526
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr ""
-#: ../../fsedit.pm_.c:499
+#: ../../fsedit.pm_.c:528
msgid "This directory should remain within the root filesystem"
msgstr "Ăęòû êàòàëîă ïàâłíćí çíàőîäçłööà ąíóòđû êàđàížâàé ôàéëàâàé ńłńòęìû"
-#: ../../fsedit.pm_.c:501
+#: ../../fsedit.pm_.c:530
#, fuzzy
msgid ""
"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
@@ -2399,232 +2441,278 @@ msgstr ""
"Âàì íćàáőîäíà çàäàöü ïđàâiëüíû òûï ôàéëàâàé ńińòęìû (ext2, reiserfs)\n"
"äëÿ ăęòàé êđîïêi ìàíöiđàâàííÿ\n"
-#: ../../fsedit.pm_.c:503
+#: ../../fsedit.pm_.c:532
#, fuzzy, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr ""
"Âàì íćàáőîäíà çàäàöü ïđàâiëüíû òûï ôàéëàâàé ńińòęìû (ext2, reiserfs)\n"
"äëÿ ăęòàé êđîïêi ìàíöiđàâàííÿ\n"
-#: ../../fsedit.pm_.c:570
+#: ../../fsedit.pm_.c:599
#, fuzzy
msgid "Not enough free space for auto-allocating"
msgstr "Íć őàïàć ïđàńòîđû äëÿ ńòâàđęííÿ íîâûő đàçäçćëàą"
-#: ../../fsedit.pm_.c:572
+#: ../../fsedit.pm_.c:601
msgid "Nothing to do"
msgstr ""
-#: ../../fsedit.pm_.c:665
+#: ../../fsedit.pm_.c:694
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Ïàìûëêà àäêđûööÿ %s äëÿ çàïińó: %s"
-#: ../../fsedit.pm_.c:750
+#: ../../harddrake/sound.pm_.c:155
+msgid "No alternative driver"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:156
+#, c-format
+msgid "There's no known OSS/ALSA alternative driver for your sound card (%s)"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:158
+#, fuzzy
+msgid "Sound configuration"
+msgstr "Íàńòđîéêà"
+
+#: ../../harddrake/sound.pm_.c:159
+#, c-format
msgid ""
-"An error occurred - no valid devices were found on which to create new "
-"filesystems. Please check your hardware for the cause of this problem"
+"Here you can select an alternative driver (either OSS or ALSA) for your "
+"sound card (%s)"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:162
+#, fuzzy
+msgid "Driver:"
+msgstr "ńćđâćđ"
+
+#: ../../harddrake/sound.pm_.c:173
+msgid "No known driver"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:174
+#, c-format
+msgid "There's no known driver for your sound card (%s)"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:177
+msgid "Unkown driver"
msgstr ""
-"Ïàìûëêà: äëÿ ńòâàđęííÿ íîâûő ôàéëàâûő ńińòęìàą íć çíàéäçćíû àäïàâćäíûÿ \n"
-"ïđûëàäû. Ïđàâćđöć àáńòàëÿâàííć äëÿ ïîűóêó iìàâćđíàé ïđûśûíû."
-#: ../../fsedit.pm_.c:773
-msgid "You don't have any partitions!"
-msgstr "Âû íć ńòâàđûëi àíiÿêiő đàçäçćëàą!"
+#: ../../harddrake/sound.pm_.c:178
+#, c-format
+msgid ""
+"The \"%s\" driver for your sound card is unlisted\n"
+"\n"
+"Please send the output of the \"lspcidrake -v\" command to\n"
+"<install at mandrakesoft dot com>\n"
+"with subject: unlisted sound driver \"%s\""
+msgstr ""
-#: ../../harddrake/ui.pm_.c:15
+#: ../../harddrake/ui.pm_.c:16
#, fuzzy
msgid "Model"
msgstr "Ïîđò ìûűû"
-#: ../../harddrake/ui.pm_.c:15
+#: ../../harddrake/ui.pm_.c:16
#, fuzzy
msgid "hard disk model"
msgstr "Àäđàńû ïàìÿöł êàđòû (DMA)"
-#: ../../harddrake/ui.pm_.c:16
+#: ../../harddrake/ui.pm_.c:17
#, fuzzy
msgid "Channel"
msgstr "Àäìćíà"
-#: ../../harddrake/ui.pm_.c:16
+#: ../../harddrake/ui.pm_.c:17
msgid "EIDE/SCSI channel"
msgstr ""
-#: ../../harddrake/ui.pm_.c:18
+#: ../../harddrake/ui.pm_.c:19
msgid "Bus"
msgstr ""
-#: ../../harddrake/ui.pm_.c:19
+#: ../../harddrake/ui.pm_.c:20
msgid ""
"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
msgstr ""
-#: ../../harddrake/ui.pm_.c:20
+#: ../../harddrake/ui.pm_.c:21
#, fuzzy
msgid "Module"
msgstr "Ïîđò ìûűû"
-#: ../../harddrake/ui.pm_.c:20
+#: ../../harddrake/ui.pm_.c:21
msgid "the module of the GNU/Linux kernel that handle that device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:21
+#: ../../harddrake/ui.pm_.c:22
msgid "Media class"
msgstr ""
-#: ../../harddrake/ui.pm_.c:21
+#: ../../harddrake/ui.pm_.c:22
msgid "class of hardware device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:22 ../../printerdrake.pm_.c:1404
+#: ../../harddrake/ui.pm_.c:23 ../../printerdrake.pm_.c:1517
msgid "Description"
msgstr "Àïińàííć"
-#: ../../harddrake/ui.pm_.c:22
+#: ../../harddrake/ui.pm_.c:23
msgid "this field describe the device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:24
+#: ../../harddrake/ui.pm_.c:25
#, fuzzy
msgid "Bus identification"
msgstr "Àąòęíòûôiêàöûÿ"
-#: ../../harddrake/ui.pm_.c:25
+#: ../../harddrake/ui.pm_.c:26
msgid ""
-"- PCI and USB devices : this list the vendor, device, subvendor and "
-"subdevice PCI/USB ids"
+"- PCI and USB devices: this list the vendor, device, subvendor and subdevice "
+"PCI/USB ids"
msgstr ""
-#: ../../harddrake/ui.pm_.c:27
+#: ../../harddrake/ui.pm_.c:28
msgid "Location on the bus"
msgstr ""
-#: ../../harddrake/ui.pm_.c:28
+#: ../../harddrake/ui.pm_.c:29
msgid ""
"- pci devices: this gives the PCI slot, device and function of this card\n"
"- eide devices: the device is either a slave or a master device\n"
"- scsi devices: the scsi bus and the scsi device ids"
msgstr ""
-#: ../../harddrake/ui.pm_.c:31
+#: ../../harddrake/ui.pm_.c:32
#, fuzzy
msgid "Old device file"
msgstr "Àáÿđûöć ôàéë"
-#: ../../harddrake/ui.pm_.c:32
+#: ../../harddrake/ui.pm_.c:33
msgid "old static device name used in dev package"
msgstr ""
-#: ../../harddrake/ui.pm_.c:33
+#: ../../harddrake/ui.pm_.c:34
#, fuzzy
msgid "New devfs device"
msgstr "Ïđûëàäà-űëțç"
-#: ../../harddrake/ui.pm_.c:34
+#: ../../harddrake/ui.pm_.c:35
msgid "new dinamic device name generated by incore kernel devfs"
msgstr ""
-#: ../../harddrake/ui.pm_.c:35
+#: ../../harddrake/ui.pm_.c:36
#, fuzzy
msgid "Number of buttons"
msgstr "2 êíîïêi"
-#: ../../harddrake/ui.pm_.c:36
+#: ../../harddrake/ui.pm_.c:37
msgid "the vendor name of the device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:60
+#: ../../harddrake/ui.pm_.c:38
+#, fuzzy
+msgid "Alternative drivers"
+msgstr "Äđóê òęńòàâûő ńòàđîíàê"
+
+#: ../../harddrake/ui.pm_.c:39
+msgid "the list of alternative drivers for this sound card"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:63
#, fuzzy
msgid "/_Quit"
msgstr "Âûőàä"
-#: ../../harddrake/ui.pm_.c:61 ../../harddrake/ui.pm_.c:62
-#: ../../harddrake/ui.pm_.c:68 ../../standalone/logdrake_.c:110
+#: ../../harddrake/ui.pm_.c:64 ../../harddrake/ui.pm_.c:65
+#: ../../harddrake/ui.pm_.c:71 ../../standalone/logdrake_.c:110
msgid "/_Help"
msgstr ""
-#: ../../harddrake/ui.pm_.c:62
+#: ../../harddrake/ui.pm_.c:65
msgid "/_Help..."
msgstr ""
-#: ../../harddrake/ui.pm_.c:63
+#: ../../harddrake/ui.pm_.c:66
msgid "Harddrake help"
msgstr ""
-#: ../../harddrake/ui.pm_.c:64
+#: ../../harddrake/ui.pm_.c:67
msgid ""
"Description of the fields:\n"
"\n"
msgstr ""
-#: ../../harddrake/ui.pm_.c:68
+#: ../../harddrake/ui.pm_.c:71
#, fuzzy
msgid "/_About..."
msgstr "Àäìÿíiöü"
-#: ../../harddrake/ui.pm_.c:69
+#: ../../harddrake/ui.pm_.c:72
msgid "About Harddrake"
msgstr ""
-#: ../../harddrake/ui.pm_.c:70
+#: ../../harddrake/ui.pm_.c:73
msgid ""
"This is HardDrake, a Mandrake hardware configuration tool.\n"
"Version:"
msgstr ""
-#: ../../harddrake/ui.pm_.c:71
+#: ../../harddrake/ui.pm_.c:74
#, fuzzy
msgid "Author:"
msgstr "Àąòàïîűóê"
-#: ../../harddrake/ui.pm_.c:83
+#: ../../harddrake/ui.pm_.c:86
#, fuzzy
msgid "Harddrake2 version "
msgstr "Âûçíàśęííć æîđńòêàăà äûńêó"
-#: ../../harddrake/ui.pm_.c:91
+#: ../../harddrake/ui.pm_.c:103
#, fuzzy
msgid "Detected hardware"
msgstr "Ăë. àïińàííć àáńòàëÿâàííÿ"
-#: ../../harddrake/ui.pm_.c:92
+#: ../../harddrake/ui.pm_.c:105
#, fuzzy
-msgid "Configure module"
-msgstr "Íàńòđîéêà ìûűû"
+msgid "Information"
+msgstr "Iíôàđìàöûÿ"
-#: ../../harddrake/ui.pm_.c:92
+#: ../../harddrake/ui.pm_.c:108
#, fuzzy
-msgid "Informations"
-msgstr "Iíôàđìàöûÿ"
+msgid "Configure module"
+msgstr "Íàńòđîéêà ìûűû"
-#: ../../harddrake/ui.pm_.c:92
+#: ../../harddrake/ui.pm_.c:109
msgid "Run config tool"
msgstr ""
-#: ../../harddrake/ui.pm_.c:96
+#: ../../harddrake/ui.pm_.c:113
#, fuzzy
msgid "Detection in progress"
msgstr "Äóáëÿâàííć ïóíêòó ìàíöiđàâàííÿ %s"
-#: ../../harddrake/ui.pm_.c:96 ../../interactive.pm_.c:388
+#: ../../harddrake/ui.pm_.c:113 ../../interactive.pm_.c:391
msgid "Please wait"
msgstr "Êàëi ëàńêà, ïàśàêàéöć"
-#: ../../harddrake/ui.pm_.c:139
+#: ../../harddrake/ui.pm_.c:156
msgid "primary"
msgstr ""
-#: ../../harddrake/ui.pm_.c:139
+#: ../../harddrake/ui.pm_.c:156
#, fuzzy
msgid "secondary"
msgstr "%d ńćêóíäàą"
-#: ../../harddrake/ui.pm_.c:176
+#: ../../harddrake/ui.pm_.c:197
msgid "You can configure each parameter of the module here."
msgstr ""
-#: ../../harddrake/ui.pm_.c:192
+#: ../../harddrake/ui.pm_.c:213
#, fuzzy, c-format
msgid "Running \"%s\" ..."
msgstr "Śûòàț áàçó äàäçćíûő äđàéâćđîą CUPS"
@@ -2657,16 +2745,16 @@ msgstr ""
#: ../../harddrake/v4l.pm_.c:213
#, fuzzy
-msgid "Card model :"
+msgid "Card model:"
msgstr "Àäđàńû ïàìÿöł êàđòû (DMA)"
#: ../../harddrake/v4l.pm_.c:214
#, fuzzy
-msgid "Tuner type :"
+msgid "Tuner type:"
msgstr "Çìÿíiöü òûï đàçäçćëó"
#: ../../harddrake/v4l.pm_.c:215
-msgid "Number of capture buffers :"
+msgid "Number of capture buffers:"
msgstr ""
#: ../../harddrake/v4l.pm_.c:215
@@ -2675,11 +2763,11 @@ msgstr ""
#: ../../harddrake/v4l.pm_.c:217
#, fuzzy
-msgid "PLL setting :"
+msgid "PLL setting:"
msgstr "ôàđìàòàâàííć"
#: ../../harddrake/v4l.pm_.c:218
-msgid "Radio support :"
+msgid "Radio support:"
msgstr ""
#: ../../harddrake/v4l.pm_.c:218
@@ -2691,22 +2779,22 @@ msgid ""
"GNU/Linux is a multiuser system, and this means that each user can have his\n"
"own preferences, his own files and so on. You can read the ``User Guide''\n"
"to learn more. But unlike \"root\", which is the administrator, the users\n"
-"you will add here will not be entitled to change anything except their own\n"
-"files and their own configuration. You will have to create at least one\n"
-"regular user for yourself. That account is where you should log in for\n"
-"routine use. Although it is very practical to log in as \"root\" everyday,\n"
-"it may also be very dangerous! The slightest mistake could mean that your\n"
-"system would not work any more. If you make a serious mistake as a regular\n"
-"user, you may only lose some information, but not the entire system.\n"
+"you add here will not be entitled to change anything except their own files\n"
+"and their own configuration. You will have to create at least one regular\n"
+"user for yourself. That account is where you should log in for routine use.\n"
+"Although it is very practical to log in as \"root\" everyday, it may also\n"
+"be very dangerous! The slightest mistake could mean that your system would\n"
+"not work any more. If you make a serious mistake as a regular user, you may\n"
+"only lose some information, but not the entire system.\n"
"\n"
"First, you have to enter your real name. This is not mandatory, of course -\n"
"as you can actually enter whatever you want. DrakX will then take the first\n"
"word you have entered in the box and will bring it over to the \"User\n"
"name\". This is the name this particular user will use to log onto the\n"
"system. You can change it. You then have to enter a password here. A\n"
-"non-privileged (regular) user's password is not as crucial as \"root\"' one\n"
-"from a security point of view, but that is no reason to neglect it: after\n"
-"all, your files are at risk.\n"
+"non-privileged (regular) user's password is not as crucial as the \"root\"'\n"
+"one from a security point of view, but that is no reason to neglect it:\n"
+"after all, your files are at risk.\n"
"\n"
"If you click on \"Accept user\", you can then add as many as you want. Add\n"
"a user for each one of your friends: your father or your sister, for\n"
@@ -2812,7 +2900,7 @@ msgid ""
"to have a graphical workstation!\n"
"\n"
"Moving the mouse cursor over a group name will display a short explanatory\n"
-"text about that group. If you deselect all groups when performing a regular\n"
+"text about that group. If you unselect all groups when performing a regular\n"
"installation (by opposition to an upgrade), a dialog will pop up proposing\n"
"different options for a minimal installation:\n"
"\n"
@@ -2838,10 +2926,10 @@ msgstr ""
#: ../../help.pm_.c:128
msgid ""
-"Finally, depending on whether or not you selected individual packages, you\n"
-"will be presented a tree containing all packages classified by groups and\n"
-"subgroups. While browsing the tree, you can select entire groups,\n"
-"subgroups, or individual packages.\n"
+"Finally, depending on whether or not you chose to be able to select\n"
+"individual packages, you will be presented a tree containing all packages\n"
+"classified by groups and subgroups. While browsing the tree, you can select\n"
+"entire groups, subgroups, or individual packages.\n"
"\n"
"Whenever you select a package on the tree, a description appears on the\n"
"right. When your selection is finished, click the \"Install\" button which\n"
@@ -2876,11 +2964,11 @@ msgstr ""
#: ../../help.pm_.c:164
msgid ""
-"You are now proposed to set up your Internet/network connection. If you\n"
-"wish to connect your computer to the Internet or to a local network, click\n"
-"\"OK\". The autodetection of network devices and modem will be launched. If\n"
-"this detection fails, uncheck the \"Use auto detection\" box next time. You\n"
-"may also choose not to configure the network, or do it later; in that case,\n"
+"You are now able to set up your Internet/network connection. If you wish to\n"
+"connect your computer to the Internet or to a local network, click \"OK\".\n"
+"The autodetection of network devices and modem will be launched. If this\n"
+"detection fails, uncheck the \"Use auto detection\" box next time. You may\n"
+"also choose not to configure the network, or do it later; in that case,\n"
"simply click the \"Cancel\" button.\n"
"\n"
"Available connections are: traditional modem, ISDN modem, ADSL connection,\n"
@@ -2921,7 +3009,7 @@ msgstr ""
msgid ""
"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
"local time according to the time zone you selected. It is however possible\n"
-"to deactivate this by deselecting \"Hardware clock set to GMT\" so that the\n"
+"to deactivate this by unselecting \"Hardware clock set to GMT\" so that the\n"
"hardware clock is the same as the system clock. This is useful when the\n"
"machine is hosting another operating system like Windows.\n"
"\n"
@@ -2952,24 +3040,12 @@ msgid ""
"If you can see the message during the test, and answer \"Yes\", then DrakX\n"
"will proceed to the next step. If you cannot see the message, it simply\n"
"means that the configuration was wrong and the test will automatically end\n"
-"after 10 seconds, restoring the screen."
-msgstr ""
-
-#: ../../help.pm_.c:237
-msgid ""
-"The first time you try the X configuration, you may not be very satisfied\n"
-"with its display (screen is too small, shifted left or right...). Hence,\n"
-"even if X starts up correctly, DrakX then asks you if the configuration\n"
-"suits you. It will also propose to change it by displaying a list of valid\n"
-"modes it could find, asking you to select one.\n"
-"\n"
-"As a last resort, if you still cannot get X to work, choose \"Change\n"
-"graphics card\", select \"Unlisted card\", and when prompted on which\n"
-"server, choose \"FBDev\". This is a failsafe option which works with any\n"
-"modern graphics card. Then choose \"Test again\" to be sure."
+"after 10 seconds, restoring the screen. Refer then to the Video\n"
+"configuration section of the user guide for more information on how to\n"
+"configure your display."
msgstr ""
-#: ../../help.pm_.c:249
+#: ../../help.pm_.c:239
msgid ""
"Finally, you will be asked whether you want to see the graphical interface\n"
"at boot. Note this question will be asked even if you chose not to test the\n"
@@ -2978,7 +3054,7 @@ msgid ""
"configured."
msgstr ""
-#: ../../help.pm_.c:256
+#: ../../help.pm_.c:246
msgid ""
"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
@@ -2998,13 +3074,13 @@ msgid ""
"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
"password, or any other reason.\n"
"\n"
-"When you click on this step, you will be asked to enter a disk inside the\n"
-"drive. The floppy disk you will insert must be empty or contain data which\n"
-"you do not need. You will not have to format it since DrakX will rewrite\n"
-"the whole disk."
+"If you say \"Yes\", you will be asked to enter a disk inside the drive. The\n"
+"floppy disk you will insert must be empty or contain data which you do not\n"
+"need. You will not have to format it since DrakX will rewrite the whole\n"
+"disk."
msgstr ""
-#: ../../help.pm_.c:280
+#: ../../help.pm_.c:270
#, fuzzy
msgid ""
"At this point, you need to choose where you want to install the Mandrake\n"
@@ -3038,7 +3114,9 @@ msgid ""
"\n"
" * \"Use existing partition\": the wizard has detected one or more existing\n"
"Linux partitions on your hard drive. If you want to use them, choose this\n"
-"option;\n"
+"option. You will then be asked to choose the mount points associated to\n"
+"each of the partitions. The legacy mount points are selected by default,\n"
+"and you should generally keep them.\n"
"\n"
" * \"Use the free space on the Windows; partition\": if Microsoft Windows\n"
"is installed on your hard drive and takes all the space available on it,\n"
@@ -3071,7 +3149,9 @@ msgid ""
" * \"Expert mode\": choose this option if you want to manually partition\n"
"your hard drive. Be careful - it is a powerful but dangerous choice. You\n"
"can very easily lose all your data. Hence, do not choose this unless you\n"
-"know what you are doing."
+"know what you are doing. To know how do use the DiskDrake utility used\n"
+"here, refer to the section ``Managing Your Partitions'' of the ````User\n"
+"Guide''''"
msgstr ""
"Ó ăęòûì ïóíêöć, âû ïàâłííû àáđàöü äçć íà âàűûì æîđńêłì \n"
"äûńêó óńòàëÿâàöü àïćđàöûéíóț ńłńòęìó Mandrake Linux. Êàëł äûńê ïóńòû\n"
@@ -3132,7 +3212,7 @@ msgstr ""
" ëžăêà çăóáłöü ńâàć äàäçćíûÿ. Òàìó íć àáłđàéöć ăęòóț îïöûț êàëł âûíć âćäàćöć "
"űòî đîáłöć."
-#: ../../help.pm_.c:347
+#: ../../help.pm_.c:341
msgid ""
"There you are. Installation is now complete and your GNU/Linux system is\n"
"ready to use. Just click \"OK\" to reboot the system. You can start\n"
@@ -3165,7 +3245,7 @@ msgid ""
"\"mformat a:\")"
msgstr ""
-#: ../../help.pm_.c:378
+#: ../../help.pm_.c:372
#, fuzzy
msgid ""
"Any partitions that have been newly defined must be formatted for use\n"
@@ -3222,7 +3302,7 @@ msgstr ""
"óńòàëÿâàííÿâàűàé\n"
"íîâàé àïćđàöûéíàé ńłńòęìû Mandrake Linux."
-#: ../../help.pm_.c:404
+#: ../../help.pm_.c:398
#, fuzzy
msgid ""
"Your new Mandrake Linux operating system is currently being installed.\n"
@@ -3240,12 +3320,12 @@ msgstr ""
"\n"
"Êàëł ëàńêà, ïàśàêàéöć."
-#: ../../help.pm_.c:412
+#: ../../help.pm_.c:406
msgid ""
"At the time you are installing Mandrake Linux, it is likely that some\n"
"packages have been updated since the initial release. Some bugs may have\n"
"been fixed, and security issues solved. To allow you to benefit from these\n"
-"updates, you are now proposed to download them from the Internet. Choose\n"
+"updates, you are now able to download them from the Internet. Choose\n"
"\"Yes\" if you have a working Internet connection, or \"No\" if you prefer\n"
"to install updated packages later.\n"
"\n"
@@ -3255,7 +3335,7 @@ msgid ""
"install the selected package(s), or \"Cancel\" to abort."
msgstr ""
-#: ../../help.pm_.c:425
+#: ../../help.pm_.c:419
msgid ""
"Before continuing, you should read carefully the terms of the license. It\n"
"covers the whole Mandrake Linux distribution, and if you do not agree with\n"
@@ -3264,19 +3344,19 @@ msgid ""
"\"Accept\" button."
msgstr ""
-#: ../../help.pm_.c:432
+#: ../../help.pm_.c:426
msgid ""
"At this point, it is time to choose the security level desired for the\n"
"machine. As a rule of thumb, the more exposed the machine is, and the more\n"
"the data stored in it is crucial, the higher the security level should be.\n"
"However, a higher security level is generally obtained at the expense of\n"
-"easiness of use. Refer to the \"msec\" chapter of the ``Reference Manual''\n"
-"to get more information about the meaning of these levels.\n"
+"ease of use. Refer to the \"msec\" chapter of the ``Reference Manual'' to\n"
+"get more information about the meaning of these levels.\n"
"\n"
"If you do not know what to choose, keep the default option."
msgstr ""
-#: ../../help.pm_.c:442
+#: ../../help.pm_.c:436
msgid ""
"At this point, you need to choose which partition(s) will be used for the\n"
"installation of your Mandrake Linux system. If partitions have already been\n"
@@ -3293,26 +3373,26 @@ msgid ""
" * \"Clear all\": this option deletes all partitions on the selected hard\n"
"drive;\n"
"\n"
-" * \"Auto allocate\": this option enables to automatically create \"Ext2\"\n"
-"and swap partitions in free space of your hard drive;\n"
+" * \"Auto allocate\": this option enables to automatically create ext3 and\n"
+"swap partitions in free space of your hard drive;\n"
"\n"
-" * \"More\": gives access to additional features:\n"
+"\"More\": gives access to additional features:\n"
"\n"
-" * \"Save partition table\": saves the partition table to a floppy.\n"
-"Useful for later partition-table recovery if necessary. It is strongly\n"
-"recommended to perform this step;\n"
+" * \"Save partition table\": saves the partition table to a floppy. Useful\n"
+"for later partition-table recovery if necessary. It is strongly recommended\n"
+"to perform this step;\n"
"\n"
-" * \"Restore partition table\": allows to restore a previously saved\n"
+" * \"Restore partition table\": allows to restore a previously saved\n"
"partition table from floppy disk;\n"
"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you\n"
-"can try to recover it using this option. Please be careful and remember\n"
-"that it can fail;\n"
+" * \"Rescue partition table\": if your partition table is damaged, you can\n"
+"try to recover it using this option. Please be careful and remember that it\n"
+"can fail;\n"
"\n"
-" * \"Reload partition table\": discards all changes and loads your\n"
-"initial partition table;\n"
+" * \"Reload partition table\": discards all changes and loads your initial\n"
+"partition table;\n"
"\n"
-" * \"Removable media automounting\": unchecking this option will force\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
"users to manually mount and unmount removable medias such as floppies and\n"
"CD-ROMs.\n"
"\n"
@@ -3340,7 +3420,7 @@ msgid ""
" * Ctrl-m to set the mount point.\n"
"\n"
"To get information about the different filesystem types available, please\n"
-"read the ext2fs chapter from the ``Reference Manual''.\n"
+"read the ext2FS chapter from the ``Reference Manual''.\n"
"\n"
"If you are installing on a PPC machine, you will want to create a small HFS\n"
"``bootstrap'' partition of at least 1MB, which will be used by the yaboot\n"
@@ -3349,7 +3429,7 @@ msgid ""
"emergency boot situations."
msgstr ""
-#: ../../help.pm_.c:513
+#: ../../help.pm_.c:507
#, fuzzy
msgid ""
"More than one Microsoft partition has been detected on your hard drive.\n"
@@ -3410,11 +3490,11 @@ msgstr ""
"\"Windows Čìÿ\" ńłìâàë âàűàăà äûńêó ą Windows (ïćđűû äûńê öł\n"
"đàçäçćë ïàçíàśàćööà ÿê \"C:\")."
-#: ../../help.pm_.c:544
+#: ../../help.pm_.c:538
msgid "Please be patient. This operation can take several minutes."
msgstr "Êàëł ëàńêà, ïàśàêàéöć. Ăęòàÿ àïćđàöûÿ àäûìć ïęąíû śàń."
-#: ../../help.pm_.c:547
+#: ../../help.pm_.c:541
#, fuzzy
msgid ""
"DrakX now needs to know if you want to perform a default (\"Recommended\")\n"
@@ -3422,23 +3502,23 @@ msgid ""
"also choose to do a new install or an upgrade of an existing Mandrake Linux\n"
"system:\n"
"\n"
-" * \"Install\": completely wipes out the old system. In fact, depending on\n"
-"what currently holds your machine, you will be able to keep some old (Linux\n"
-"or other) partitions unchanged;\n"
+" * \"Install\": completely wipes out the old system, however, depending on\n"
+"what is currently installed on your machine, you may be able to keep some\n"
+"old partitions (Linux or otherwise) unchanged;\n"
"\n"
" * \"Upgrade\": this installation class allows to simply update the\n"
"packages currently installed on your Mandrake Linux system. It keeps the\n"
"current partitions of your hard drives as well as user configurations. All\n"
-"other configuration steps remain available with respect to plain\n"
+"other configuration steps remain available, similar to a normal\n"
"installation;\n"
"\n"
-" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
-"existing Mandrake Linux system while keeping all system configurations\n"
-"unchanged. Adding new packages to the current installation is also\n"
-"possible.\n"
+" * \"Upgrade Packages Only\": this new installation class allows you to\n"
+"upgrade an existing Mandrake Linux system while keeping all system\n"
+"configurations unchanged. Adding new packages to the current installation\n"
+"is also possible.\n"
"\n"
-"Upgrades should work fine for Mandrake Linux systems starting from \"8.1\"\n"
-"release.\n"
+"Upgrades should work fine on Mandrake Linux systems containing version\n"
+"\"8.1\" or later.\n"
"\n"
"Depending on your knowledge of GNU/Linux, select one of the following\n"
"choices:\n"
@@ -3447,11 +3527,11 @@ msgid ""
"operating system. The installation will be very easy and you will only be\n"
"asked a few questions;\n"
"\n"
-" * Expert: if you have a good knowledge of GNU/Linux, you can choose this\n"
-"installation class. The expert installation will allow you to perform a\n"
-"highly-customized installation. Answering some of the questions can be\n"
-"difficult if you do not have a good knowledge of GNU/Linux, so do not\n"
-"choose this unless you know what you are doing."
+" * Expert: if you have a good understanding of GNU/Linux, you may wish to\n"
+"perform a highly customized installation. Some of the decisions you will\n"
+"have to make may be difficult if you do not have good knowledge of\n"
+"GNU/Linux, so it is not recommended that those without a fair amount of\n"
+"experience select this installation class."
msgstr ""
"Êàëł ëàńêà, íàöłńíłöć \"Óńòàëžąêà\" êàëł íć ìàćööà àíłÿêàé ïàïÿđęäíÿéâćđńłł "
"Mandrake Linux\n"
@@ -3485,23 +3565,28 @@ msgstr ""
"âćëüìł ńêëàäàíûìł, êàëł âû íć ìàćöć äîáđûő âćäàą ó GNU/Linux.\n"
" Òàìó íć àáłđàéöć ăęòû êëàń łíńòàëÿöûł, êàëł âû íć âćäàćöć òîć, űòî đîáłöć."
-#: ../../help.pm_.c:584
+#: ../../help.pm_.c:578
msgid ""
"Normally, DrakX selects the right keyboard for you (depending on the\n"
-"language you have chosen) and you won't even see this step. However, you\n"
-"might not have a keyboard that corresponds exactly to your language: for\n"
-"example, if you are an English speaking Swiss person, you may still want\n"
-"your keyboard to be a Swiss keyboard. Or if you speak English but are\n"
-"located in Quebec, you may find yourself in the same situation. In both\n"
-"cases, you will have to go back to this installation step and select an\n"
-"appropriate keyboard from the list.\n"
+"language you have chosen). However, you might not have a keyboard that\n"
+"corresponds exactly to your language: for example, if you are an English\n"
+"speaking Swiss person, you may still want your keyboard to be a Swiss\n"
+"keyboard. Or if you speak English but are located in Quebec, you may find\n"
+"yourself in the same situation. In both cases, you will have to go back to\n"
+"this installation step and select an appropriate keyboard from the list.\n"
"\n"
"Click on the \"More\" button to be presented with the complete list of\n"
-"supported keyboards."
+"supported keyboards.\n"
+"\n"
+"If you choose a keyboard layout based on a non-latin alphabet, you will be\n"
+"asked on next dialog to choose the key binding that will switch the\n"
+"keyboard layout between the latin and non latin layouts."
msgstr ""
-#: ../../help.pm_.c:597
+#: ../../help.pm_.c:594
msgid ""
+"The first step is to choose your preferred language.\n"
+"\n"
"Please choose your preferred language for installation and system usage.\n"
"\n"
"Clicking on the \"Advanced\" button will allow you to select other\n"
@@ -3515,7 +3600,7 @@ msgid ""
"additional locales, click the \"OK\" button to continue."
msgstr ""
-#: ../../help.pm_.c:610
+#: ../../help.pm_.c:609
msgid ""
"DrakX generally detects the number of buttons your mouse has. If not, it\n"
"assumes you have a two-button mouse and will set it up for third-button\n"
@@ -3528,16 +3613,23 @@ msgid ""
"If you choose a mouse other than the default, a test screen will be\n"
"displayed. Use the buttons and wheel to verify that the settings are\n"
"correct. If the mouse is not working well, press the space bar or [Return]\n"
-"to \"Cancel\" and choose again."
+"to \"Cancel\" and choose again.\n"
+"\n"
+"Wheel mouses are sometimes not automatically detected. You will need to\n"
+"manually select it in the list. Be sure to select the one corresponding to\n"
+"the correct port it is attached to. After you have pressed the \"OK\"\n"
+"button, a mouse image is displayed. You then need to move the wheel of your\n"
+"mouse to activate it correctly. Then test all buttons and movements are\n"
+"correct."
msgstr ""
-#: ../../help.pm_.c:624
+#: ../../help.pm_.c:630
msgid ""
"Please select the correct port. For example, the \"COM1\" port under\n"
"Windows is named \"ttyS0\" under GNU/Linux."
msgstr ""
-#: ../../help.pm_.c:628
+#: ../../help.pm_.c:634
msgid ""
"This is the most crucial decision point for the security of your GNU/Linux\n"
"system: you have to enter the \"root\" password. \"root\" is the system\n"
@@ -3567,15 +3659,15 @@ msgid ""
"In Expert mode, you will be asked if you will be connecting to an\n"
"authentication server, like NIS or LDAP.\n"
"\n"
-"If your network uses the LDAP (or NIS) protocol for authentication, select\n"
-"\"LDAP\" (or \"NIS\") as authentication. If you do not know, ask your\n"
-"network administrator.\n"
+"If your network uses either of the LDAP, NIS, or PDC Windows Domain\n"
+"authentication services, select the appropriate one as \"authentication\".\n"
+"If you do not know, ask your network administrator.\n"
"\n"
"If your computer is not connected to any administrated network, you will\n"
"want to choose \"Local files\" for authentication."
msgstr ""
-#: ../../help.pm_.c:664
+#: ../../help.pm_.c:670
msgid ""
"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
@@ -3614,8 +3706,12 @@ msgid ""
"options. !!\n"
"\n"
"Clicking the \"Advanced\" button in this dialog will offer many advanced\n"
-"options, which are reserved to the expert user.\n"
-"\n"
+"options, which are reserved for the expert user."
+msgstr ""
+
+#: ../../help.pm_.c:710
+#, fuzzy
+msgid ""
"After you have configured the general bootloader parameters, the list of\n"
"boot options which will be available at boot time will be displayed.\n"
"\n"
@@ -3623,17 +3719,7 @@ msgid ""
"automatically be added to the boot menu. Here, you can choose to fine-tune\n"
"the existing options. Select an entry and click \"Modify\" to modify or\n"
"remove it; \"Add\" creates a new entry; and \"Done\" goes on to the next\n"
-"installation step."
-msgstr ""
-
-#: ../../help.pm_.c:713
-#, fuzzy
-msgid ""
-"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
-"either GNU/Linux or any other operating system present on your computer.\n"
-"Normally, these other operating systems are correctly detected and\n"
-"installed. If this is not the case, you can add an entry by hand in this\n"
-"screen. Be careful to choose the correct parameters.\n"
+"installation step.\n"
"\n"
"You may also not want to give access to these other operating systems to\n"
"anyone. In which case, you can delete the corresponding entries. But then,\n"
@@ -3699,18 +3785,18 @@ msgstr ""
#: ../../help.pm_.c:759
msgid ""
-"DrakX now detects any IDE device present in your computer. It will also\n"
-"scan for one or more PCI SCSI card(s) on your system. If a SCSI card is\n"
+"DrakX now detects any IDE devices present in your computer. It will also\n"
+"scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
"found, DrakX will automatically install the appropriate driver.\n"
"\n"
"Because hardware detection does not always detect a piece of hardware,\n"
"DrakX will ask you to confirm if a PCI SCSI card is present. Click \"Yes\"\n"
"if you know that there is a SCSI card installed in your machine. You will\n"
-"be presented a list of SCSI cards to choose from. Click \"No\" if you have\n"
-"no SCSI hardware. If you are unsure, you can check the list of hardware\n"
-"detected in your machine by selecting \"See hardware info\" and clicking\n"
-"\"OK\". Examine the list of hardware and then click on the \"OK\" button to\n"
-"return to the SCSI interface question.\n"
+"be presented with a list of SCSI cards to choose from. Click \"No\" if you\n"
+"have no SCSI hardware. If you are unsure, you can check the list of\n"
+"hardware detected in your machine by selecting \"See hardware info\" and\n"
+"clicking \"OK\". Examine the list of hardware and then click on the \"OK\"\n"
+"button to return to the SCSI interface question.\n"
"\n"
"If you have to manually specify your adapter, DrakX will ask if you want to\n"
"specify options for it. You should allow DrakX to probe the hardware for\n"
@@ -3827,7 +3913,9 @@ msgid ""
"order to configure the clock according to the time zone you are in;\n"
"\n"
" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
-"configuration wizard;\n"
+"configuration wizard. Consult the corresponding chapter of the ``User\n"
+"Guide'' for more information on how to setup a new printer. The interface\n"
+"presented there is similar to the one used during installation;\n"
"\n"
" * \"Sound card\": if a sound card is detected on your system, it is\n"
"displayed here. No modification possible at installation time;\n"
@@ -3840,7 +3928,7 @@ msgid ""
"associated with it."
msgstr ""
-#: ../../help.pm_.c:894
+#: ../../help.pm_.c:896
#, fuzzy
msgid ""
"Choose the hard drive you want to erase in order to install your new\n"
@@ -3852,7 +3940,7 @@ msgstr ""
"áóäóöü\n"
" çíłűśàíû ł łő íćìàăśûìà áóäçć àäíàâłöü."
-#: ../../help.pm_.c:899
+#: ../../help.pm_.c:901
#, fuzzy
msgid ""
"Click on \"OK\" if you want to delete all data and partitions present on\n"
@@ -3884,7 +3972,7 @@ msgstr ""
msgid "You must also format %s"
msgstr ""
-#: ../../install_any.pm_.c:418
+#: ../../install_any.pm_.c:423
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -3899,30 +3987,47 @@ msgid ""
"Do you really want to install these servers?\n"
msgstr ""
-#: ../../install_any.pm_.c:453
+#: ../../install_any.pm_.c:441
+#, c-format
+msgid ""
+"The following packages will be removed to allow upgrading your system: %s\n"
+"\n"
+"\n"
+"Do you really want to remove these packages?\n"
+msgstr ""
+
+#: ../../install_any.pm_.c:471
msgid "Can't use broadcast with no NIS domain"
msgstr "Íćìàăśûìà âûêàđûńòîąâàöü broadcast áćç äàìćíà NIS"
-#: ../../install_any.pm_.c:841
+#: ../../install_any.pm_.c:862
#, fuzzy, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Óńòàąöć äûńêćòó ą äûńêàâîä %s"
-#: ../../install_any.pm_.c:845
+#: ../../install_any.pm_.c:866
msgid "This floppy is not FAT formatted"
msgstr ""
-#: ../../install_any.pm_.c:857
+#: ../../install_any.pm_.c:878
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
msgstr ""
-#: ../../install_any.pm_.c:880 ../../partition_table.pm_.c:771
+#: ../../install_any.pm_.c:901 ../../partition_table.pm_.c:767
#, c-format
msgid "Error reading file %s"
msgstr "Ïàìûëêà śûòàííÿ ôàéëó %s"
+#: ../../install_any.pm_.c:1023
+msgid ""
+"An error occurred - no valid devices were found on which to create new "
+"filesystems. Please check your hardware for the cause of this problem"
+msgstr ""
+"Ïàìûëêà: äëÿ ńòâàđęííÿ íîâûő ôàéëàâûő ńińòęìàą íć çíàéäçćíû àäïàâćäíûÿ \n"
+"ïđûëàäû. Ïđàâćđöć àáńòàëÿâàííć äëÿ ïîűóêó iìàâćđíàé ïđûśûíû."
+
#: ../../install_interactive.pm_.c:23
#, c-format
msgid ""
@@ -3956,61 +4061,61 @@ msgstr ""
"\n"
"Óńž àäíî ïđàöÿăâàöü?"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:168
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:169
#, fuzzy
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "Âû ïàâiííû ìćöü đàçäçćë swap"
-#: ../../install_interactive.pm_.c:91
+#: ../../install_interactive.pm_.c:92
msgid "Use free space"
msgstr "Âûêàđûńòîąâàöü íćçàíÿòóț ïđàńòîđó"
-#: ../../install_interactive.pm_.c:93
+#: ../../install_interactive.pm_.c:94
msgid "Not enough free space to allocate new partitions"
msgstr "Íć őàïàć ïđàńòîđû äëÿ ńòâàđęííÿ íîâûő đàçäçćëàą"
-#: ../../install_interactive.pm_.c:101
+#: ../../install_interactive.pm_.c:102
msgid "Use existing partitions"
msgstr "Âûêàđûńòîąâàöü ińíóțśû đàçäçćë"
-#: ../../install_interactive.pm_.c:103
+#: ../../install_interactive.pm_.c:104
msgid "There is no existing partition to use"
msgstr "Íÿìà ińíóțśûő đàçäçćëàą, ÿêiÿ ìîæíà âûêàđûńòàöü"
-#: ../../install_interactive.pm_.c:110
+#: ../../install_interactive.pm_.c:111
msgid "Use the Windows partition for loopback"
msgstr "Âûêàđûńòîąâàöü đàçäçćë Windows äëÿ âiđòóàëüíàé ôàéëàâàé ńińòęìû"
-#: ../../install_interactive.pm_.c:113
+#: ../../install_interactive.pm_.c:114
#, fuzzy
msgid "Which partition do you want to use for Linux4Win?"
msgstr "Ïàìćđû ÿêîăà đàçäçćëà âû æàäàćöć çìÿíiöü?"
-#: ../../install_interactive.pm_.c:115
+#: ../../install_interactive.pm_.c:116
msgid "Choose the sizes"
msgstr "Âûáàđ ïàìćđàą"
-#: ../../install_interactive.pm_.c:116
+#: ../../install_interactive.pm_.c:117
msgid "Root partition size in MB: "
msgstr "Êàđàížâû đàçäçćë ą Má: "
-#: ../../install_interactive.pm_.c:117
+#: ../../install_interactive.pm_.c:118
msgid "Swap partition size in MB: "
msgstr "Ïàìćđ swap đàçäçćëó ą Má:"
-#: ../../install_interactive.pm_.c:126
+#: ../../install_interactive.pm_.c:128
msgid "Use the free space on the Windows partition"
msgstr "Âûêàđûńòîąâàöü íćçàíÿòóț ïđàńòîđó íà đàçäçćëć Windows"
-#: ../../install_interactive.pm_.c:129
+#: ../../install_interactive.pm_.c:131
msgid "Which partition do you want to resize?"
msgstr "Ïàìćđû ÿêîăà đàçäçćëà âû æàäàćöć çìÿíiöü?"
-#: ../../install_interactive.pm_.c:131
+#: ../../install_interactive.pm_.c:133
msgid "Resizing Windows partition"
msgstr "Âûëiśęííć ìćæàą ôàéëàâàé ńińòęìû Windows"
-#: ../../install_interactive.pm_.c:134
+#: ../../install_interactive.pm_.c:136
#, c-format
msgid ""
"The FAT resizer is unable to handle your partition, \n"
@@ -4019,7 +4124,7 @@ msgstr ""
"Ó ïđàăđàìû çìćíû ïàìćđàą đàçäçćëà FAT íć àòđûìàëàńÿ\n"
"àïđàöàâàöü Âàű đàçäçćë, ïàìûëêà: %s"
-#: ../../install_interactive.pm_.c:137
+#: ../../install_interactive.pm_.c:139
msgid ""
"Your Windows partition is too fragmented. Please reboot your computer under "
"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
@@ -4028,7 +4133,7 @@ msgstr ""
"Âàű đàçäçćë ç Windows çàíàäòà ôđàăìćíòàâàíû. \n"
"Đęêàìćíäóćì ńïàśàòêó çàïóńöiöü ïđàăđàìó ``defrag''"
-#: ../../install_interactive.pm_.c:138
+#: ../../install_interactive.pm_.c:140
#, fuzzy
msgid ""
"WARNING!\n"
@@ -4049,21 +4154,21 @@ msgstr ""
"äàäçćíûő i òîëüêi ïîòûì çíîą âÿđíiöćńÿ äà ïđàăđàìû ąńòàëÿâàííÿ.\n"
"Êàëi ïàäđûőòàâàëińÿ, íàöińíiöć Ok."
-#: ../../install_interactive.pm_.c:148
+#: ../../install_interactive.pm_.c:150
msgid "Which size do you want to keep for Windows on"
msgstr "ßêóț ïđàńòîđó çàőàâàöü äëÿ Windows?"
-#: ../../install_interactive.pm_.c:149
+#: ../../install_interactive.pm_.c:151
#, c-format
msgid "partition %s"
msgstr "Đàçäçćë %s"
-#: ../../install_interactive.pm_.c:156
+#: ../../install_interactive.pm_.c:158
#, c-format
msgid "FAT resizing failed: %s"
msgstr "Àąòàçìÿíćííć ïàìćđàą íć àòđûìàëàńÿ äëÿ đàçäçćëó FAT %s"
-#: ../../install_interactive.pm_.c:171
+#: ../../install_interactive.pm_.c:173
msgid ""
"There is no FAT partition to resize or to use as loopback (or not enough "
"space left)"
@@ -4071,33 +4176,33 @@ msgstr ""
"Íć çíîéäçćíà đàçäçćëàą FAT äëÿ çìÿíćííÿ ïàìćđàą àëüáî âûêàđûńòàííÿ\n"
"ą ÿêàńöi âiđòóàëüíàé ôàéëàâàé ńińòęìû (öi íćäàńòàòêîâà ïđàńòîđû íà äûńêó)"
-#: ../../install_interactive.pm_.c:177
+#: ../../install_interactive.pm_.c:179
msgid "Erase entire disk"
msgstr "Ńöžđöi äàäçćíûÿ íà ąńiì äûńêó"
-#: ../../install_interactive.pm_.c:177
+#: ../../install_interactive.pm_.c:179
msgid "Remove Windows(TM)"
msgstr "Âûäàëiöü Windows(TM)"
-#: ../../install_interactive.pm_.c:180
+#: ../../install_interactive.pm_.c:182
msgid "You have more than one hard drive, which one do you install linux on?"
msgstr "Íà ÿêi ç ìàțśûőńÿ æîđńòêiő äûńêàą Âû æàäàćöć ąńòàëÿâàöü Linux?"
-#: ../../install_interactive.pm_.c:183
+#: ../../install_interactive.pm_.c:185
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr "Óńć ińíóțśûÿ đàçäçćëû íà äûńêó %s i äàäçćíûÿ íà iő áóäóöü ńòđàśàíû"
-#: ../../install_interactive.pm_.c:191
+#: ../../install_interactive.pm_.c:193
#, fuzzy
msgid "Custom disk partitioning"
msgstr "Âûêàđûńòîąâàöü ińíóțśû đàçäçćë"
-#: ../../install_interactive.pm_.c:195
+#: ../../install_interactive.pm_.c:197
msgid "Use fdisk"
msgstr "Âûêàđûńòîąâàöü fdisk"
-#: ../../install_interactive.pm_.c:198
+#: ../../install_interactive.pm_.c:200
#, c-format
msgid ""
"You can now partition %s.\n"
@@ -4106,30 +4211,30 @@ msgstr ""
"Âû ìîæàöć öÿïćđ đàçáiöü âàű äûńê %s\n"
"Ïà çàêàíśęííi íć çàáóäçüöćńÿ çàőàâàöü çìÿíćííi, ńêàđûńòàąűû `w'"
-#: ../../install_interactive.pm_.c:227
+#: ../../install_interactive.pm_.c:229
#, fuzzy
msgid "You don't have enough free space on your Windows partition"
msgstr "Âûêàđûńòîąâàöü íćçàíÿòóț ïđàńòîđó íà đàçäçćëć Windows"
-#: ../../install_interactive.pm_.c:243
+#: ../../install_interactive.pm_.c:245
#, fuzzy
msgid "I can't find any room for installing"
msgstr "Äàäàöü đàçäçćë íćìàăśûìà"
-#: ../../install_interactive.pm_.c:246
+#: ../../install_interactive.pm_.c:248
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr "Ìàéńòàđ ïàäđûőòîąêi đàçäçćëàą DrakX çíàéűîą íàńòóïíûÿ âàđûÿíòû:"
-#: ../../install_interactive.pm_.c:250
+#: ../../install_interactive.pm_.c:252
#, c-format
msgid "Partitioning failed: %s"
msgstr "Ïàäđûőòîąêà đàçäćëàą íć ąäàëàńÿ: %s"
-#: ../../install_interactive.pm_.c:260
+#: ../../install_interactive.pm_.c:262
msgid "Bringing up the network"
msgstr "Äàëóśęííć äà ńćòêi"
-#: ../../install_interactive.pm_.c:265
+#: ../../install_interactive.pm_.c:267
msgid "Bringing down the network"
msgstr "Àäëóśęííć àä ńćòêi"
@@ -4141,12 +4246,12 @@ msgstr ""
"Óçíiêëà ïàìûëêà, ÿêóț íć àòđûìëłâàćööà êàđęêòíà àïđàöàâàöü,\n"
"òàìó ïđàöÿăâàéöć íà ńâàț đûçûêó."
-#: ../../install_steps.pm_.c:210
+#: ../../install_steps.pm_.c:211
#, c-format
msgid "Duplicate mount point %s"
msgstr "Äóáëÿâàííć ïóíêòó ìàíöiđàâàííÿ %s"
-#: ../../install_steps.pm_.c:379
+#: ../../install_steps.pm_.c:380
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -4158,12 +4263,12 @@ msgstr ""
"Ïđàâćđöć cdrom íà âàűûì êàìïóòàđû, âûêàđûńòîąâàțśû\"rpm -qpl Mandrake/RPMS/*."
"rpm\"\n"
-#: ../../install_steps.pm_.c:451
+#: ../../install_steps.pm_.c:452
#, c-format
msgid "Welcome to %s"
msgstr "ĐĄĐ°Ń€ĐŽŃŃ‡ĐœĐ° Đ·Đ°ĐżŃ€Đ°ŃˆĐ°Đ”ĐŒ у %s"
-#: ../../install_steps.pm_.c:530 ../../install_steps.pm_.c:770
+#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:772
msgid "No floppy drive available"
msgstr "Äûńêàâîä íćäàńòóïíû"
@@ -4194,70 +4299,70 @@ msgstr "Êëàń Óńòàëÿâàííÿ"
msgid "Please choose one of the following classes of installation:"
msgstr "Êàëi ëàńêà, àáÿđûöć àäçií ç êëàńàą óńòàëÿâàííÿ:"
-#: ../../install_steps_gtk.pm_.c:243 ../../install_steps_interactive.pm_.c:694
+#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:678
msgid "Package Group Selection"
msgstr "Âûáàđ ăđóïû ïàêćòàą"
-#: ../../install_steps_gtk.pm_.c:276 ../../install_steps_interactive.pm_.c:709
+#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:693
msgid "Individual package selection"
msgstr "Àńàáińòû âûáàđ ïàêćòàą"
-#: ../../install_steps_gtk.pm_.c:299 ../../install_steps_interactive.pm_.c:633
+#: ../../install_steps_gtk.pm_.c:293 ../../install_steps_interactive.pm_.c:617
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Àăóëüíû ïàìćđ: %d / %d Má"
-#: ../../install_steps_gtk.pm_.c:341
+#: ../../install_steps_gtk.pm_.c:335
msgid "Bad package"
msgstr "Äđęííû ïàêćò"
-#: ../../install_steps_gtk.pm_.c:342
+#: ../../install_steps_gtk.pm_.c:336
#, c-format
msgid "Name: %s\n"
msgstr "Iìÿ: %s\n"
-#: ../../install_steps_gtk.pm_.c:343
+#: ../../install_steps_gtk.pm_.c:337
#, c-format
msgid "Version: %s\n"
msgstr "Âćđńiÿ: %s\n"
-#: ../../install_steps_gtk.pm_.c:344
+#: ../../install_steps_gtk.pm_.c:338
#, c-format
msgid "Size: %d KB\n"
msgstr "Ïàìćđ: %d Ká\n"
-#: ../../install_steps_gtk.pm_.c:345
+#: ../../install_steps_gtk.pm_.c:339
#, c-format
msgid "Importance: %s\n"
msgstr "Çíàśíàńöü: %s\n"
-#: ../../install_steps_gtk.pm_.c:367
+#: ../../install_steps_gtk.pm_.c:361
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr ""
"Âû íć ìîæàöć âûáđàöü ăęòû ïàêćò, òàìó ÿê íć őàïàć ìćńöà äëÿ ÿăî ąńòàëÿâàííÿ"
-#: ../../install_steps_gtk.pm_.c:372
+#: ../../install_steps_gtk.pm_.c:366
msgid "The following packages are going to be installed"
msgstr "Íàńòóïíûÿ ïàêćòû áóäóöü äàäàíû äà ńińòęìû"
-#: ../../install_steps_gtk.pm_.c:373
+#: ../../install_steps_gtk.pm_.c:367
msgid "The following packages are going to be removed"
msgstr "Íàńòóïíûÿ ïàêćòû áóäóöü âûäàëćíû"
-#: ../../install_steps_gtk.pm_.c:385
+#: ../../install_steps_gtk.pm_.c:379
msgid "You can't select/unselect this package"
msgstr "Âû íć ìîæàöć âûëóśàöü ł àäìÿíÿöü âûëóśęííć ăęòàăà ïàêćòó"
-#: ../../install_steps_gtk.pm_.c:397
+#: ../../install_steps_gtk.pm_.c:391
msgid "This is a mandatory package, it can't be unselected"
msgstr "Ăęòà àáàâÿçêîâû ïàêćò, ÿăî âûëóśęííć íćëüăà àäìÿíiöü"
-#: ../../install_steps_gtk.pm_.c:399
+#: ../../install_steps_gtk.pm_.c:393
msgid "You can't unselect this package. It is already installed"
msgstr "Âû íć ìîæàöć àäìÿíiöü âûëóśęííć ăęòàăà ïàêćòó. ší óæî ąńòàëÿâàíû"
-#: ../../install_steps_gtk.pm_.c:402
+#: ../../install_steps_gtk.pm_.c:396
msgid ""
"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
@@ -4265,78 +4370,78 @@ msgstr ""
"Ăęòû ïàêćò ïàâiíćí áûöü àáíîąëćíû\n"
"Âû ąïęąíćíû, űòî őîśàöć àäìÿíiöü âûëóśęííć?"
-#: ../../install_steps_gtk.pm_.c:405
+#: ../../install_steps_gtk.pm_.c:399
msgid "You can't unselect this package. It must be upgraded"
msgstr "Âû íć ìîæàöć àäìÿíiöü âûëóśęííć ăęòàăà ïàêćòó. ßăî ïàòđęáíà àáíàâiöü"
-#: ../../install_steps_gtk.pm_.c:410
+#: ../../install_steps_gtk.pm_.c:404
msgid "Show automatically selected packages"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:411 ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_gtk.pm_.c:405 ../../install_steps_interactive.pm_.c:255
#: ../../install_steps_interactive.pm_.c:259
-#: ../../standalone/drakbackup_.c:3600
+#: ../../standalone/drakbackup_.c:4257
msgid "Install"
msgstr "Óńòàëžąêà"
-#: ../../install_steps_gtk.pm_.c:414
+#: ../../install_steps_gtk.pm_.c:408
#, fuzzy
msgid "Load/Save on floppy"
msgstr "Çàőàâàííć íà äûńêćòó"
-#: ../../install_steps_gtk.pm_.c:415
+#: ../../install_steps_gtk.pm_.c:409
#, fuzzy
msgid "Updating package selection"
msgstr "Àńàáińòû âûáàđ ïàêćòàą"
-#: ../../install_steps_gtk.pm_.c:420
+#: ../../install_steps_gtk.pm_.c:414
#, fuzzy
msgid "Minimal install"
msgstr "Âûäàëiöü ç ńińòęìû"
-#: ../../install_steps_gtk.pm_.c:435 ../../install_steps_interactive.pm_.c:538
+#: ../../install_steps_gtk.pm_.c:429 ../../install_steps_interactive.pm_.c:522
msgid "Choose the packages you want to install"
msgstr "Âûáàđ ïàêćòàą äëÿ ąńòàëÿâàííÿ"
-#: ../../install_steps_gtk.pm_.c:451 ../../install_steps_interactive.pm_.c:778
+#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:762
msgid "Installing"
msgstr "Óńòàëžąâàćì"
-#: ../../install_steps_gtk.pm_.c:457
+#: ../../install_steps_gtk.pm_.c:451
msgid "Estimating"
msgstr "Śàêàćööà"
-#: ../../install_steps_gtk.pm_.c:464
+#: ../../install_steps_gtk.pm_.c:458
msgid "Time remaining "
msgstr "Çàńòàëîńÿ śàńó "
-#: ../../install_steps_gtk.pm_.c:476
+#: ../../install_steps_gtk.pm_.c:470
#, fuzzy
msgid "Please wait, preparing installation..."
msgstr "Ïàäđûőòîąêà ąńòàëÿâàíüíÿ"
-#: ../../install_steps_gtk.pm_.c:560
+#: ../../install_steps_gtk.pm_.c:554
#, c-format
msgid "%d packages"
msgstr "%d ïàêćòàą"
-#: ../../install_steps_gtk.pm_.c:565
+#: ../../install_steps_gtk.pm_.c:559
#, c-format
msgid "Installing package %s"
msgstr "Óńòàëÿâàííć ïàêćòó %s"
-#: ../../install_steps_gtk.pm_.c:602 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:802
+#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:786
#: ../../standalone/drakautoinst_.c:202
msgid "Accept"
msgstr "Ïđûíÿöü"
-#: ../../install_steps_gtk.pm_.c:602 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:802
+#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:786
msgid "Refuse"
msgstr "Àäêàçàöü"
-#: ../../install_steps_gtk.pm_.c:603 ../../install_steps_interactive.pm_.c:803
+#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:787
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4352,17 +4457,17 @@ msgstr ""
"Êàëi âû íć ìàćöć ÿăî, íàöińíiöć Àäìÿíiöü, êàá àäìÿíiöü óńòàëÿâàííć ç ăęòàăà "
"Cd."
-#: ../../install_steps_gtk.pm_.c:617 ../../install_steps_gtk.pm_.c:621
-#: ../../install_steps_interactive.pm_.c:815
-#: ../../install_steps_interactive.pm_.c:819
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_gtk.pm_.c:615
+#: ../../install_steps_interactive.pm_.c:799
+#: ../../install_steps_interactive.pm_.c:803
msgid "Go on anyway?"
msgstr "Óńž đîąíà ïđàöÿăâàöü?"
-#: ../../install_steps_gtk.pm_.c:617 ../../install_steps_interactive.pm_.c:815
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:799
msgid "There was an error ordering packages:"
msgstr "Àòđûìàëàńÿ ïàìûëêà ąïàđàäêàâàííÿ ïàêćòàą:"
-#: ../../install_steps_gtk.pm_.c:621 ../../install_steps_interactive.pm_.c:819
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:803
msgid "There was an error installing packages:"
msgstr "Àòđûìàëàńÿ ïàìûëêà ąïàđàäêàâàííÿ ïàêćòàą:"
@@ -4537,7 +4642,7 @@ msgid "Are you sure you refuse the licence?"
msgstr ""
#: ../../install_steps_interactive.pm_.c:211
-#: ../../install_steps_interactive.pm_.c:1038
+#: ../../install_steps_interactive.pm_.c:1023
#: ../../standalone/keyboarddrake_.c:31
msgid "Keyboard"
msgstr "Êëàâiÿòóđà"
@@ -4590,11 +4695,11 @@ msgstr "Àńàáińòû âûáàđ ïàêćòàą"
msgid "Please choose the type of your mouse."
msgstr "êàëi ëàńêà, ïàçíàśöć òûï âàűàé ìûűû."
-#: ../../install_steps_interactive.pm_.c:281 ../../standalone/mousedrake_.c:59
+#: ../../install_steps_interactive.pm_.c:281 ../../standalone/mousedrake_.c:60
msgid "Mouse Port"
msgstr "Ïîđò ìûűû"
-#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:61
msgid "Please choose on which serial port your mouse is connected to."
msgstr "Êàëi ëàńêà, ïàçíàśöć ïîńëÿäîąíû ïîđò, äà ÿêîăà ïàäêëțśàíà âàűàÿ ìûű."
@@ -4626,115 +4731,89 @@ msgstr "Íàńòđîéêà IDE"
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:336
+#: ../../install_steps_interactive.pm_.c:338
msgid "No partition available"
msgstr "íÿìà äàńòóïíûő đàçäçćëàą"
-#: ../../install_steps_interactive.pm_.c:339
+#: ../../install_steps_interactive.pm_.c:341
msgid "Scanning partitions to find mount points"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:347
+#: ../../install_steps_interactive.pm_.c:349
msgid "Choose the mount points"
msgstr "Àáÿđûöć ïóíêòû ìàíöiđàâàííÿ"
-#: ../../install_steps_interactive.pm_.c:366
-#, c-format
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to not allow DrakX to modify the partition table.\n"
-"(the error is %s)\n"
-"\n"
-"Do you agree to loose all the partitions?\n"
-msgstr ""
-"Òàáëiöà đàçäçćëàą íć śûòàćööà, ÿíà çàíàäòà ńàïńàâàíàÿ äëÿ ìćíÿ :(\n"
-"Ïàńïđàáóț ińöi äàëćé i áóäó ïđàïóńêàöü äđęííûÿ đàçäçćëû (Óńć ÄÀÄĆÇĆÍÛß\n"
-"áóäóöü ńòđàśàíû!). Iíűàć đàűęííć íć äàçâîëiöü DrakX çìÿíiöü òàáëiöó "
-"đàçäçćëàą.\n"
-"(ïàìûëêà ą %s)\n"
-"\n"
-"Öi æàäàćöć ńòđàöiöü óńć đàçäçćëû?\n"
-
#: ../../install_steps_interactive.pm_.c:379
msgid ""
-"DiskDrake failed to read correctly the partition table.\n"
-"Continue at your own risk!"
-msgstr ""
-"DiskDrake íć çìîă ïđàâiëüíà ïđàśûòàöü òàáëiöó đàäçćëàą.\n"
-"Ïđàöÿăâàéöć òîëüêi íà ńâàț đûçûêó!"
-
-#: ../../install_steps_interactive.pm_.c:396
-msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:405
+#: ../../install_steps_interactive.pm_.c:388
#, fuzzy
msgid "No root partition found to perform an upgrade"
msgstr "Êàđàížâû đàçäçćë íć çíîéäçćíû"
-#: ../../install_steps_interactive.pm_.c:406
+#: ../../install_steps_interactive.pm_.c:389
msgid "Root Partition"
msgstr "Êàđàížâû đàçäçćë"
-#: ../../install_steps_interactive.pm_.c:407
+#: ../../install_steps_interactive.pm_.c:390
msgid "What is the root partition (/) of your system?"
msgstr "ßêi đàäçćë êàđàížâû (/) äëÿ âàűàé ńińòęìû?"
-#: ../../install_steps_interactive.pm_.c:421
+#: ../../install_steps_interactive.pm_.c:404
msgid "You need to reboot for the partition table modifications to take place"
msgstr "Êàá ìàäûôiêàöûÿ òàáëiöû đàçäçćëàą çäćéńíiëàńÿ, ïàòđęáíà ïćđàçàăđóçêà."
-#: ../../install_steps_interactive.pm_.c:445
+#: ../../install_steps_interactive.pm_.c:428
msgid "Choose the partitions you want to format"
msgstr "Âûáàđ đàçäçćëàą äëÿ ôàđìàòàâàííÿ"
-#: ../../install_steps_interactive.pm_.c:446
+#: ../../install_steps_interactive.pm_.c:429
msgid "Check bad blocks?"
msgstr "Ïđàâćđûöü íà íàÿąíàńöü äđęííûő áëîêàą?"
-#: ../../install_steps_interactive.pm_.c:473
+#: ../../install_steps_interactive.pm_.c:456
msgid "Formatting partitions"
msgstr "Ôàđìàòàâàííÿ đàçäçćëàą"
-#: ../../install_steps_interactive.pm_.c:475
+#: ../../install_steps_interactive.pm_.c:458
#, c-format
msgid "Creating and formatting file %s"
msgstr "Ńòâàđęííć i ôàđìàòàâàííć ôàéëà %s"
-#: ../../install_steps_interactive.pm_.c:480
+#: ../../install_steps_interactive.pm_.c:463
#, c-format
msgid ""
"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
"you can loose data)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:482
+#: ../../install_steps_interactive.pm_.c:465
msgid "Not enough swap space to fulfill installation, please add some"
msgstr ""
"Íć őàïàć ìćńöà ą áóôćđû ïàäêàśêi (swap) äëÿ ąńòàëÿâàííÿ, ïàâÿëiśöć ÿăî."
-#: ../../install_steps_interactive.pm_.c:489
+#: ../../install_steps_interactive.pm_.c:472
#, fuzzy
msgid "Looking for available packages and rebuilding rpm database..."
msgstr "Ïđàăëÿä äàńòóïíûő ïàêćòàą"
-#: ../../install_steps_interactive.pm_.c:490
+#: ../../install_steps_interactive.pm_.c:473
msgid "Looking for available packages..."
msgstr "Ïđàăëÿä äàńòóïíûő ïàêćòàą"
-#: ../../install_steps_interactive.pm_.c:493
+#: ../../install_steps_interactive.pm_.c:476
#, fuzzy
msgid "Looking at packages already installed..."
msgstr "Âû íć ìîæàöć àäìÿíiöü âûëóśęííć ăęòàăà ïàêćòó. ší óæî ąńòàëÿâàíû"
-#: ../../install_steps_interactive.pm_.c:497
+#: ../../install_steps_interactive.pm_.c:480
msgid "Finding packages to upgrade..."
msgstr "Ïîűóê ïàêćòàą äëÿ àáíàąëćííÿ"
-#: ../../install_steps_interactive.pm_.c:515
+#: ../../install_steps_interactive.pm_.c:498
#, c-format
msgid ""
"Your system does not have enough space left for installation or upgrade (%d "
@@ -4742,65 +4821,65 @@ msgid ""
msgstr ""
"Âàűà ńińòęìà íć ìàć äàńòàêîâà ìćńöà äëÿ ąńòàëÿâàííÿ öi àáíàąëćííÿ (%d > %d)"
-#: ../../install_steps_interactive.pm_.c:550
+#: ../../install_steps_interactive.pm_.c:534
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:553
+#: ../../install_steps_interactive.pm_.c:537
#, fuzzy
msgid "Load from floppy"
msgstr "Àäíàąëćííć ç äûńêćòû"
-#: ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_interactive.pm_.c:539
#, fuzzy
msgid "Loading from floppy"
msgstr "Àäíàąëćííć ç äûńêćòû"
-#: ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_interactive.pm_.c:539
#, fuzzy
msgid "Package selection"
msgstr "Âûáàđ ăđóïû ïàêćòàą"
-#: ../../install_steps_interactive.pm_.c:560
+#: ../../install_steps_interactive.pm_.c:544
#, fuzzy
msgid "Insert a floppy containing package selection"
msgstr "Óńòàąöć äûńêćòó ą äûńêàâîä %s"
-#: ../../install_steps_interactive.pm_.c:572
+#: ../../install_steps_interactive.pm_.c:556
msgid "Save on floppy"
msgstr "Çàőàâàííć íà äûńêćòó"
-#: ../../install_steps_interactive.pm_.c:646
+#: ../../install_steps_interactive.pm_.c:630
msgid "Selected size is larger than available space"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:660
+#: ../../install_steps_interactive.pm_.c:644
#, fuzzy
msgid "Type of install"
msgstr "Âûáàđ ïàêćòàą äëÿ óńòàëÿâàííÿ"
-#: ../../install_steps_interactive.pm_.c:661
+#: ../../install_steps_interactive.pm_.c:645
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:664
+#: ../../install_steps_interactive.pm_.c:648
#, fuzzy
msgid "With X"
msgstr "Śàêàéöć"
-#: ../../install_steps_interactive.pm_.c:666
+#: ../../install_steps_interactive.pm_.c:650
msgid "With basic documentation (recommended!)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:667
+#: ../../install_steps_interactive.pm_.c:651
msgid "Truly minimal install (especially no urpmi)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:752
+#: ../../install_steps_interactive.pm_.c:736
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -4810,16 +4889,16 @@ msgstr ""
"Êàëi âû íć ìàćöć àíi âîäíàăà ç ăęòûő CD äûńêàą, íàöińíiöć Àäìÿíiöü.\n"
"Êàëi íćêàòîđûő ç CD äûńêàą íć ìàćöć, àäìÿíiöć iő âûäçÿëćííć i íàöińíiöć Îê."
-#: ../../install_steps_interactive.pm_.c:757
+#: ../../install_steps_interactive.pm_.c:741
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "Cd-Rom ïàçíàśàíû \"%s\""
-#: ../../install_steps_interactive.pm_.c:778
+#: ../../install_steps_interactive.pm_.c:762
msgid "Preparing installation"
msgstr "Ïàäđûőòîąêà ąńòàëÿâàíüíÿ"
-#: ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:771
#, c-format
msgid ""
"Installing package %s\n"
@@ -4828,21 +4907,21 @@ msgstr ""
"Óńòàëÿâàííć ïàêćòó %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:833
+#: ../../install_steps_interactive.pm_.c:817
msgid "Post-install configuration"
msgstr "Íàńòđîéêà ïàńëÿ ąńòàëÿâàííÿ"
-#: ../../install_steps_interactive.pm_.c:839
+#: ../../install_steps_interactive.pm_.c:823
#, fuzzy, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Óńòàąöć äûńêćòó ą äûńêàâîä %s"
-#: ../../install_steps_interactive.pm_.c:845
+#: ../../install_steps_interactive.pm_.c:829
#, fuzzy, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Óńòàąöć äûńêćòó ą äûńêàâîä %s"
-#: ../../install_steps_interactive.pm_.c:865
+#: ../../install_steps_interactive.pm_.c:849
msgid ""
"You now have the opportunity to download encryption software.\n"
"\n"
@@ -4920,7 +4999,7 @@ msgstr ""
"75002 Paris\n"
"FRANCE"
-#: ../../install_steps_interactive.pm_.c:904
+#: ../../install_steps_interactive.pm_.c:888
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
"have been released after the distribution was released. They may\n"
@@ -4932,169 +5011,169 @@ msgid ""
"Do you want to install the updates ?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:919
+#: ../../install_steps_interactive.pm_.c:903
#, fuzzy
msgid ""
"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr "Ńóâÿçü ç ëțđàì äëÿ àòđûìàííÿ ńïińó äàńòóïíûő ïàêćòàą"
-#: ../../install_steps_interactive.pm_.c:924
+#: ../../install_steps_interactive.pm_.c:908
msgid "Choose a mirror from which to get the packages"
msgstr "Âûáàđ ëțńòđà äëÿ àòđûìàííÿ ïàêćòàą"
-#: ../../install_steps_interactive.pm_.c:933
+#: ../../install_steps_interactive.pm_.c:917
msgid "Contacting the mirror to get the list of available packages..."
msgstr "Ńóâÿçü ç ëțđàì äëÿ àòđûìàííÿ ńïińó äàńòóïíûő ïàêćòàą"
-#: ../../install_steps_interactive.pm_.c:960
+#: ../../install_steps_interactive.pm_.c:945
msgid "Which is your timezone?"
msgstr "ßêi âàű śàńàâû ïîÿń?"
-#: ../../install_steps_interactive.pm_.c:965
+#: ../../install_steps_interactive.pm_.c:950
#, fuzzy
msgid "Hardware clock set to GMT"
msgstr "Âàű ńińòęìíû ăàäçiííiê óńòàëÿâàíû íà GMT?"
-#: ../../install_steps_interactive.pm_.c:966
+#: ../../install_steps_interactive.pm_.c:951
msgid "Automatic time synchronization (using NTP)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:973
+#: ../../install_steps_interactive.pm_.c:958
#, fuzzy
msgid "NTP Server"
msgstr "NIS ńćđâćđ:"
-#: ../../install_steps_interactive.pm_.c:1007
-#: ../../install_steps_interactive.pm_.c:1015
+#: ../../install_steps_interactive.pm_.c:992
+#: ../../install_steps_interactive.pm_.c:1000
msgid "Remote CUPS server"
msgstr "Àääàëćíû ńćđâćđ CUPS"
-#: ../../install_steps_interactive.pm_.c:1008
+#: ../../install_steps_interactive.pm_.c:993
#, fuzzy
msgid "No printer"
msgstr "Iìÿ äđóêàđêi"
-#: ../../install_steps_interactive.pm_.c:1025
+#: ../../install_steps_interactive.pm_.c:1010
#, fuzzy
msgid "Do you have an ISA sound card?"
msgstr "Öi žńöü ó âàń iíűû?"
-#: ../../install_steps_interactive.pm_.c:1027
+#: ../../install_steps_interactive.pm_.c:1012
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1029
+#: ../../install_steps_interactive.pm_.c:1014
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1034 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1019 ../../steps.pm_.c:27
msgid "Summary"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1037
+#: ../../install_steps_interactive.pm_.c:1022
#, fuzzy
msgid "Mouse"
msgstr "Ïîđò ìûűû"
-#: ../../install_steps_interactive.pm_.c:1039
+#: ../../install_steps_interactive.pm_.c:1024
msgid "Timezone"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1040 ../../printerdrake.pm_.c:2728
-#: ../../printerdrake.pm_.c:2814
+#: ../../install_steps_interactive.pm_.c:1025 ../../printerdrake.pm_.c:2937
+#: ../../printerdrake.pm_.c:3026
msgid "Printer"
msgstr "Ïđûíòęđ"
-#: ../../install_steps_interactive.pm_.c:1042
+#: ../../install_steps_interactive.pm_.c:1027
#, fuzzy
msgid "ISDN card"
msgstr "Óíóòđàíàÿ ISDN êàđòà"
-#: ../../install_steps_interactive.pm_.c:1045
-#: ../../install_steps_interactive.pm_.c:1047
+#: ../../install_steps_interactive.pm_.c:1030
+#: ../../install_steps_interactive.pm_.c:1032
#, fuzzy
msgid "Sound card"
msgstr "Ńòàíäàđòíû"
-#: ../../install_steps_interactive.pm_.c:1049
+#: ../../install_steps_interactive.pm_.c:1034
msgid "TV card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1089
-#: ../../install_steps_interactive.pm_.c:1114
-#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1074
+#: ../../install_steps_interactive.pm_.c:1099
+#: ../../install_steps_interactive.pm_.c:1103
msgid "LDAP"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1090
-#: ../../install_steps_interactive.pm_.c:1114
-#: ../../install_steps_interactive.pm_.c:1127
+#: ../../install_steps_interactive.pm_.c:1075
+#: ../../install_steps_interactive.pm_.c:1099
+#: ../../install_steps_interactive.pm_.c:1112
#, fuzzy
msgid "NIS"
msgstr "Âûêàđûńòîąâàöü NIS"
-#: ../../install_steps_interactive.pm_.c:1091
-#: ../../install_steps_interactive.pm_.c:1114
-#: ../../install_steps_interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1141
+#: ../../install_steps_interactive.pm_.c:1076
+#: ../../install_steps_interactive.pm_.c:1099
+#: ../../install_steps_interactive.pm_.c:1120
+#: ../../install_steps_interactive.pm_.c:1126
#, fuzzy
msgid "Windows Domain"
msgstr "Íàâóêîâûÿ ïđûêëàäàííł"
-#: ../../install_steps_interactive.pm_.c:1092
-#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1077
+#: ../../install_steps_interactive.pm_.c:1099
#, fuzzy
msgid "Local files"
msgstr "Ëàêàëüíû ïđûíòęđ"
-#: ../../install_steps_interactive.pm_.c:1101
-#: ../../install_steps_interactive.pm_.c:1102 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1086
+#: ../../install_steps_interactive.pm_.c:1087 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Ïàđîëü äëÿ root"
-#: ../../install_steps_interactive.pm_.c:1103
+#: ../../install_steps_interactive.pm_.c:1088
msgid "No password"
msgstr "Íÿìà ïàđîëț"
-#: ../../install_steps_interactive.pm_.c:1108
+#: ../../install_steps_interactive.pm_.c:1093
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr ""
"Ăęòû ïàđîëü çàíàäòà ïđîńòû (ÿăî äàąæûíÿ ïàâiííà áûöü íć ìćíćé çà %d ëiòàđàą)"
-#: ../../install_steps_interactive.pm_.c:1114 ../../network/modem.pm_.c:49
+#: ../../install_steps_interactive.pm_.c:1099 ../../network/modem.pm_.c:49
#: ../../standalone/drakconnect_.c:625 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Àąòęíòûôiêàöûÿ"
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1107
#, fuzzy
msgid "Authentication LDAP"
msgstr "Àąòęíòûôiêàöûÿ"
-#: ../../install_steps_interactive.pm_.c:1123
+#: ../../install_steps_interactive.pm_.c:1108
msgid "LDAP Base dn"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1124
+#: ../../install_steps_interactive.pm_.c:1109
#, fuzzy
msgid "LDAP Server"
msgstr "ńćđâćđ"
-#: ../../install_steps_interactive.pm_.c:1130
+#: ../../install_steps_interactive.pm_.c:1115
#, fuzzy
msgid "Authentication NIS"
msgstr "Àąòęíòûôiêàöûÿ NIS"
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1116
msgid "NIS Domain"
msgstr "NIS Domain"
-#: ../../install_steps_interactive.pm_.c:1132
+#: ../../install_steps_interactive.pm_.c:1117
msgid "NIS Server"
msgstr "NIS ńćđâćđ:"
-#: ../../install_steps_interactive.pm_.c:1138
+#: ../../install_steps_interactive.pm_.c:1123
msgid ""
"For this to work for a W2K PDC, you will probably need to have the admin "
"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
@@ -5110,22 +5189,22 @@ msgid ""
"good."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1140
+#: ../../install_steps_interactive.pm_.c:1125
#, fuzzy
msgid "Authentication Windows Domain"
msgstr "Àąòęíòûôiêàöûÿ"
-#: ../../install_steps_interactive.pm_.c:1142
+#: ../../install_steps_interactive.pm_.c:1127
#, fuzzy
msgid "Domain Admin User Name"
msgstr "Iìÿ äàìćíó"
-#: ../../install_steps_interactive.pm_.c:1143
+#: ../../install_steps_interactive.pm_.c:1128
#, fuzzy
msgid "Domain Admin Password"
msgstr "Ïàäöâćđäçiöü ïàđîëü"
-#: ../../install_steps_interactive.pm_.c:1178
+#: ../../install_steps_interactive.pm_.c:1163
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
"depending on the normal bootloader. This is useful if you don't want to "
@@ -5152,19 +5231,19 @@ msgstr ""
"Êàëi æàäàćöć ńòâàđûöü çàăđóçàśíû äûńê çàđàç, óńòàąöć äûńêćòó ą ïćđűû\n"
"äûńêàâîä i íàöińíiöć \"Ok\"."
-#: ../../install_steps_interactive.pm_.c:1194
+#: ../../install_steps_interactive.pm_.c:1179
msgid "First floppy drive"
msgstr "Ïćđűû äûńêàâîä"
-#: ../../install_steps_interactive.pm_.c:1195
+#: ../../install_steps_interactive.pm_.c:1180
msgid "Second floppy drive"
msgstr "Äđóăi äûńêàâîä"
-#: ../../install_steps_interactive.pm_.c:1196 ../../printerdrake.pm_.c:2277
+#: ../../install_steps_interactive.pm_.c:1181 ../../printerdrake.pm_.c:2470
msgid "Skip"
msgstr "Ïđàïóńöiöü"
-#: ../../install_steps_interactive.pm_.c:1201
+#: ../../install_steps_interactive.pm_.c:1186
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5190,7 +5269,7 @@ msgstr ""
"Æàäàćöć ńòâàđûöü çàăđóçàśíû äûńê çàđàç?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1207
+#: ../../install_steps_interactive.pm_.c:1192
msgid ""
"\n"
"\n"
@@ -5199,28 +5278,28 @@ msgid ""
"because XFS needs a very large driver)."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1215
+#: ../../install_steps_interactive.pm_.c:1200
msgid "Sorry, no floppy drive available"
msgstr "Âûáàśàéöć, àëć äûńêàâîä íćäàńòóïíû"
-#: ../../install_steps_interactive.pm_.c:1219
+#: ../../install_steps_interactive.pm_.c:1204
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "Àáÿđûöć äûńêàâîä, ó ÿêiì áóäçć ńòâàđàööà çàăđóçàśíàÿ äûńêćòà"
-#: ../../install_steps_interactive.pm_.c:1223
+#: ../../install_steps_interactive.pm_.c:1208
#, fuzzy, c-format
msgid "Insert a floppy in %s"
msgstr "Óńòàąöć äûńêćòó ą äûńêàâîä %s"
-#: ../../install_steps_interactive.pm_.c:1226
+#: ../../install_steps_interactive.pm_.c:1211
msgid "Creating bootdisk..."
msgstr "Ńòâàđęííć çàăđóçàśíàé äûńêćòû"
-#: ../../install_steps_interactive.pm_.c:1233
+#: ../../install_steps_interactive.pm_.c:1218
msgid "Preparing bootloader..."
msgstr "Ïàäđûőòîąêà çàăđóçśûêà"
-#: ../../install_steps_interactive.pm_.c:1244
+#: ../../install_steps_interactive.pm_.c:1229
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5228,11 +5307,11 @@ msgid ""
" need to use BootX to boot your machine"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1250
+#: ../../install_steps_interactive.pm_.c:1235
msgid "Do you want to use aboot?"
msgstr "Âû æàäàćöć âûêàđûńòîąâàöü aboot?"
-#: ../../install_steps_interactive.pm_.c:1253
+#: ../../install_steps_interactive.pm_.c:1238
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -5240,16 +5319,16 @@ msgstr ""
"Ïàìûëêà ąńòàëÿâàííÿ àboot, \n"
"ńïđàáàâàöü óńòàëžąâàöü, íćăëćäçÿśû íà ìàăśûìàńöü ïàđóűęííÿ ïćđűàăà đàçäćëó?"
-#: ../../install_steps_interactive.pm_.c:1260
+#: ../../install_steps_interactive.pm_.c:1245
#, fuzzy
msgid "Installing bootloader"
msgstr "Óńòàëÿâàííć çàăđóçśûêó"
-#: ../../install_steps_interactive.pm_.c:1266
+#: ../../install_steps_interactive.pm_.c:1251
msgid "Installation of bootloader failed. The following error occured:"
msgstr "Ïđàöęń óńòàëÿâàííÿ çàăđóçśûêà íć àòđûìàąńÿ. Óçíiêëà íàńòóïíàÿ ïàìûëêà:"
-#: ../../install_steps_interactive.pm_.c:1274
+#: ../../install_steps_interactive.pm_.c:1259
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -5260,17 +5339,17 @@ msgid ""
"At your next boot you should see the bootloader prompt."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1308
+#: ../../install_steps_interactive.pm_.c:1293
#: ../../standalone/drakautoinst_.c:79
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Óńòàąöć äûńêćòó ą äûńêàâîä %s"
-#: ../../install_steps_interactive.pm_.c:1312
+#: ../../install_steps_interactive.pm_.c:1297
msgid "Creating auto install floppy..."
msgstr "Ńòâàđęííć äûńêćòû äëÿ ąńòàëÿâàííÿ"
-#: ../../install_steps_interactive.pm_.c:1323
+#: ../../install_steps_interactive.pm_.c:1308
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -5279,7 +5358,7 @@ msgstr ""
"Íćêàòîđûÿ êđîêi íć çàâćđűàíû.\n"
"Âû ńàïđàąäû æàäàćöć âûéńöi çàđàç?"
-#: ../../install_steps_interactive.pm_.c:1334
+#: ../../install_steps_interactive.pm_.c:1319
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
@@ -5311,16 +5390,16 @@ msgstr ""
"Iíôàđìàöûÿ ïà íàńòđîéêć âàűàé ńińòęìû žńòü ą ïàńëÿ-ąńòàëžâàśíàé\n"
"ăëàâć âàűàăà Äàïàìîæíiêà Êàđûńòàëüíiêó ç Àôiöûéíàăà Mandrake Linux."
-#: ../../install_steps_interactive.pm_.c:1347
+#: ../../install_steps_interactive.pm_.c:1332
msgid "http://www.mandrakelinux.com/en/90errata.php3"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1352
+#: ../../install_steps_interactive.pm_.c:1337
#, fuzzy
msgid "Generate auto install floppy"
msgstr "Ńòâàđęííć äûńêćòû äëÿ ąńòàëÿâàííÿ"
-#: ../../install_steps_interactive.pm_.c:1354
+#: ../../install_steps_interactive.pm_.c:1339
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -5329,16 +5408,16 @@ msgid ""
"You may prefer to replay the installation.\n"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1359
+#: ../../install_steps_interactive.pm_.c:1344
msgid "Automated"
msgstr "Àąòàìàòûśíû"
-#: ../../install_steps_interactive.pm_.c:1359
+#: ../../install_steps_interactive.pm_.c:1344
#, fuzzy
msgid "Replay"
msgstr "Ïćđàçàăđóçiöü"
-#: ../../install_steps_interactive.pm_.c:1362
+#: ../../install_steps_interactive.pm_.c:1347
#, fuzzy
msgid "Save packages selection"
msgstr "Àńàáińòû âûáàđ ïàêćòàą"
@@ -5348,7 +5427,8 @@ msgstr "Àńàáińòû âûáàđ ïàêćòàą"
msgid "Mandrake Linux Installation %s"
msgstr "Óńòàëÿâàííć Mandrake Linux %s"
-#: ../../install_steps_newt.pm_.c:34
+#. -PO This string must fit in a 80-char wide text screen
+#: ../../install_steps_newt.pm_.c:35
msgid ""
" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
msgstr ""
@@ -5367,22 +5447,22 @@ msgstr ""
msgid "Choose a file"
msgstr "Àáÿđûöć äçćÿííć"
-#: ../../interactive.pm_.c:317
+#: ../../interactive.pm_.c:320
msgid "Advanced"
msgstr ""
-#: ../../interactive.pm_.c:318
+#: ../../interactive.pm_.c:321
msgid "Basic"
msgstr ""
-#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:155
-#: ../../printerdrake.pm_.c:1990
+#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:158
+#: ../../printerdrake.pm_.c:2124
msgid "<- Previous"
msgstr ""
#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
-#: ../../standalone/drakbackup_.c:3464 ../../standalone/drakbackup_.c:3491
-#: ../../standalone/drakbackup_.c:3517
+#: ../../standalone/drakbackup_.c:4112 ../../standalone/drakbackup_.c:4139
+#: ../../standalone/drakbackup_.c:4169 ../../standalone/drakbackup_.c:4195
#, fuzzy
msgid "Next"
msgstr "Òęêńò"
@@ -5450,387 +5530,387 @@ msgstr ""
msgid "Re-submit"
msgstr ""
-#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:152 ../../keyboard.pm_.c:187
msgid "Czech (QWERTZ)"
msgstr "Śćűńêi (QWERTZ)"
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:153 ../../keyboard.pm_.c:189
msgid "German"
msgstr "Íÿìćöêi"
-#: ../../keyboard.pm_.c:175
+#: ../../keyboard.pm_.c:154
msgid "Dvorak"
msgstr "Dvorak"
-#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:218
+#: ../../keyboard.pm_.c:155 ../../keyboard.pm_.c:197
msgid "Spanish"
msgstr "Ińïàíńêi"
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:156 ../../keyboard.pm_.c:198
msgid "Finnish"
msgstr "Ôiíńêi"
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:220
+#: ../../keyboard.pm_.c:157 ../../keyboard.pm_.c:199
msgid "French"
msgstr "Ôđàíöóçńêi"
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:158 ../../keyboard.pm_.c:231
msgid "Norwegian"
msgstr "Íàđâćæńêi"
-#: ../../keyboard.pm_.c:180
+#: ../../keyboard.pm_.c:159
msgid "Polish"
msgstr "Ïîëüńêi"
-#: ../../keyboard.pm_.c:181 ../../keyboard.pm_.c:260
+#: ../../keyboard.pm_.c:160 ../../keyboard.pm_.c:239
msgid "Russian"
msgstr "Đóńêi"
-#: ../../keyboard.pm_.c:183 ../../keyboard.pm_.c:262
+#: ../../keyboard.pm_.c:162 ../../keyboard.pm_.c:241
msgid "Swedish"
msgstr "Űâćöêi"
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:278
+#: ../../keyboard.pm_.c:163 ../../keyboard.pm_.c:257
msgid "UK keyboard"
msgstr "UK êëàâiÿòóđà"
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:279
+#: ../../keyboard.pm_.c:164 ../../keyboard.pm_.c:258
msgid "US keyboard"
msgstr "US êëàâiÿòóđà"
-#: ../../keyboard.pm_.c:187
+#: ../../keyboard.pm_.c:166
#, fuzzy
msgid "Albanian"
msgstr "Iđàíńêi"
-#: ../../keyboard.pm_.c:188
+#: ../../keyboard.pm_.c:167
msgid "Armenian (old)"
msgstr "Àđìÿíńêi (ńòàđû)"
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:168
msgid "Armenian (typewriter)"
msgstr "Àđìÿíńêi (typewriter)"
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:169
msgid "Armenian (phonetic)"
msgstr "Àđìÿíńêi (ôàíćòûśíû)"
-#: ../../keyboard.pm_.c:195
+#: ../../keyboard.pm_.c:174
msgid "Azerbaidjani (latin)"
msgstr "Àçćđáàéäæàíńêł (latin)"
-#: ../../keyboard.pm_.c:197
+#: ../../keyboard.pm_.c:176
msgid "Belgian"
msgstr "Áćëüăiéńêi"
-#: ../../keyboard.pm_.c:198
+#: ../../keyboard.pm_.c:177
#, fuzzy
msgid "Bengali"
msgstr "Òàáëiöà"
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:178
#, fuzzy
msgid "Bulgarian (phonetic)"
msgstr "Àđìÿíńêi (ôàíćòûśíû)"
-#: ../../keyboard.pm_.c:200
+#: ../../keyboard.pm_.c:179
#, fuzzy
msgid "Bulgarian (BDS)"
msgstr "Áàëăàđńêi"
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:180
msgid "Brazilian (ABNT-2)"
msgstr "Áđàçiëüńêi (ABNT-2)"
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:183
#, fuzzy
msgid "Bosnian"
msgstr "Ęńòîíńêi"
-#: ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:184
msgid "Belarusian"
msgstr "Áćëàđóńêł"
-#: ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:185
msgid "Swiss (German layout)"
msgstr "Űâćéöàđńêi (Íÿìćöêàÿ đàńêëàäêà)"
-#: ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:186
msgid "Swiss (French layout)"
msgstr "Űâćéöàđńêi (Ôđàíöóçńêàÿ đàńêëàäêà)"
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:188
msgid "Czech (QWERTY)"
msgstr "Śćűńêi (QWERTY)"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:190
msgid "German (no dead keys)"
msgstr "Íÿìćöêi (íÿìà çàáëàêiđàâàíûő êëàâiű)"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:191
msgid "Devanagari"
msgstr ""
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:192
msgid "Danish"
msgstr "Äàöêi"
-#: ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:193
msgid "Dvorak (US)"
msgstr "Dvorak (US)"
-#: ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:194
msgid "Dvorak (Norwegian)"
msgstr "Dvorak (Íàđâćæńêi)"
-#: ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:195
#, fuzzy
msgid "Dvorak (Swedish)"
msgstr "Dvorak (US)"
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:196
msgid "Estonian"
msgstr "Ęńòîíńêi"
-#: ../../keyboard.pm_.c:221
+#: ../../keyboard.pm_.c:200
msgid "Georgian (\"Russian\" layout)"
msgstr "Ăđóçiíńêi (\"Đóńêàÿ\" đàńêëàäêà)"
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:201
msgid "Georgian (\"Latin\" layout)"
msgstr "Ăđóçiíńêi (\"Ëàöiíńêàÿ\" đàńêëàäêà)"
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:202
msgid "Greek"
msgstr "Ăđęśàńêi"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:203
msgid "Gujarati"
msgstr ""
-#: ../../keyboard.pm_.c:225
+#: ../../keyboard.pm_.c:204
msgid "Gurmukhi"
msgstr ""
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:205
msgid "Hungarian"
msgstr "Ìàäüÿđńêi"
-#: ../../keyboard.pm_.c:227
+#: ../../keyboard.pm_.c:206
msgid "Croatian"
msgstr "Őàđâàöêi"
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:207
msgid "Israeli"
msgstr "Iąđûò"
-#: ../../keyboard.pm_.c:229
+#: ../../keyboard.pm_.c:208
msgid "Israeli (Phonetic)"
msgstr "Iąđûò (ôàíćòûśíû)"
-#: ../../keyboard.pm_.c:230
+#: ../../keyboard.pm_.c:209
msgid "Iranian"
msgstr "Iđàíńêi"
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:210
msgid "Icelandic"
msgstr "Ińëàíäńêi"
-#: ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:211
msgid "Italian"
msgstr "Iòàëüÿíńêi"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:212
msgid "Inuktitut"
msgstr ""
-#: ../../keyboard.pm_.c:234
+#: ../../keyboard.pm_.c:213
msgid "Japanese 106 keys"
msgstr "ßïîíńêi 106 êëàâiű"
-#: ../../keyboard.pm_.c:237
+#: ../../keyboard.pm_.c:216
#, fuzzy
msgid "Korean keyboard"
msgstr "UK êëàâiÿòóđà"
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:217
msgid "Latin American"
msgstr "Ëàöiíà-Àìćđûêàíńêi"
-#: ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:218
#, fuzzy
msgid "Laotian"
msgstr "Đàçìćđêàâàííć"
-#: ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:219
msgid "Lithuanian AZERTY (old)"
msgstr "Ëiòîąńêi AZERTY (ńòàđû)"
-#: ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:221
msgid "Lithuanian AZERTY (new)"
msgstr "Ëiòîąńêi AZERTY (íîâû)"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:222
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Ëiòîąńêi \"íóìàđ đàäêà\" QWERTY"
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:223
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "Ëiòîąńêi \"ôàíćòûśíû\" QWERTY"
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:224
#, fuzzy
msgid "Latvian"
msgstr "Đàçìćđêàâàííć"
-#: ../../keyboard.pm_.c:246
+#: ../../keyboard.pm_.c:225
msgid "Macedonian"
msgstr ""
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:226
msgid "Myanmar (Burmese)"
msgstr ""
-#: ../../keyboard.pm_.c:248
+#: ../../keyboard.pm_.c:227
#, fuzzy
msgid "Mongolian (cyrillic)"
msgstr "Àçćđáàéäæàíńêł (êłđûëłöà)"
-#: ../../keyboard.pm_.c:249
+#: ../../keyboard.pm_.c:228
msgid "Maltese (UK)"
msgstr ""
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:229
msgid "Maltese (US)"
msgstr ""
-#: ../../keyboard.pm_.c:251
+#: ../../keyboard.pm_.c:230
msgid "Dutch"
msgstr "Ăàëàíäńêi"
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:232
msgid "Polish (qwerty layout)"
msgstr "Ïîëüńêi (ńòàíäàđòíàÿ đàńêëàäêà)"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:233
msgid "Polish (qwertz layout)"
msgstr "Ïîëüńêi (qwertz đàńêëàäêà)"
-#: ../../keyboard.pm_.c:255
+#: ../../keyboard.pm_.c:234
msgid "Portuguese"
msgstr "Ïàđòóăàëüńêi"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:235
msgid "Canadian (Quebec)"
msgstr "Êàíàäńêi (Êâćáęê)"
-#: ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:237
#, fuzzy
msgid "Romanian (qwertz)"
msgstr "Đóńêi (ß-Â-Ć-Đ-Ò-È)"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:238
#, fuzzy
msgid "Romanian (qwerty)"
msgstr "Đóńêi (ß-Â-Ć-Đ-Ò-È)"
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:240
msgid "Russian (Yawerty)"
msgstr "Đóńêi (ß-Â-Ć-Đ-Ò-È)"
-#: ../../keyboard.pm_.c:263
+#: ../../keyboard.pm_.c:242
msgid "Slovenian"
msgstr "Ńëàâćíńêi"
-#: ../../keyboard.pm_.c:264
+#: ../../keyboard.pm_.c:243
msgid "Slovakian (QWERTZ)"
msgstr "Ńëàâàöêi (QWERTZ)"
-#: ../../keyboard.pm_.c:265
+#: ../../keyboard.pm_.c:244
msgid "Slovakian (QWERTY)"
msgstr "Ńëàâàöêi (QWERTY)"
-#: ../../keyboard.pm_.c:267
+#: ../../keyboard.pm_.c:246
#, fuzzy
msgid "Serbian (cyrillic)"
msgstr "Àçćđáàéäæàíńêł (êłđûëłöà)"
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:248
#, fuzzy
msgid "Tamil (Unicode)"
msgstr "i18n (äîáđà)"
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:249
msgid "Tamil (TSCII)"
msgstr ""
-#: ../../keyboard.pm_.c:271
+#: ../../keyboard.pm_.c:250
msgid "Thai keyboard"
msgstr "Òàéńêàÿ êëàâiÿòóđà"
-#: ../../keyboard.pm_.c:273
+#: ../../keyboard.pm_.c:252
#, fuzzy
msgid "Tajik keyboard"
msgstr "Òàéńêàÿ êëàâiÿòóđà"
-#: ../../keyboard.pm_.c:274
+#: ../../keyboard.pm_.c:253
msgid "Turkish (traditional \"F\" model)"
msgstr "Òóđęöêi (òđàäûöûžíàÿ \"F\" ìàäęëü)"
-#: ../../keyboard.pm_.c:275
+#: ../../keyboard.pm_.c:254
msgid "Turkish (modern \"Q\" model)"
msgstr "Òóđęöêi (ńóśàńíàÿ \"Q\" ìàäęëü)"
-#: ../../keyboard.pm_.c:277
+#: ../../keyboard.pm_.c:256
msgid "Ukrainian"
msgstr "Óêđàiíńêi"
-#: ../../keyboard.pm_.c:280
+#: ../../keyboard.pm_.c:259
msgid "US keyboard (international)"
msgstr "US êëàâiÿòóđà (ìiæíàđîäíàÿ)"
-#: ../../keyboard.pm_.c:281
+#: ../../keyboard.pm_.c:260
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "Âüćòíàìńêi \"íóìàđ đàäêà\" QWERTY"
-#: ../../keyboard.pm_.c:282
+#: ../../keyboard.pm_.c:261
#, fuzzy
msgid "Yugoslavian (latin)"
msgstr "Àçćđáàéäæàíńêł (latin)"
-#: ../../keyboard.pm_.c:289
+#: ../../keyboard.pm_.c:268
msgid "Right Alt key"
msgstr ""
-#: ../../keyboard.pm_.c:290
+#: ../../keyboard.pm_.c:269
msgid "Both Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:291
+#: ../../keyboard.pm_.c:270
msgid "Control and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:292
+#: ../../keyboard.pm_.c:271
msgid "CapsLock key"
msgstr ""
-#: ../../keyboard.pm_.c:293
+#: ../../keyboard.pm_.c:272
msgid "Ctrl and Alt keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:294
+#: ../../keyboard.pm_.c:273
msgid "Alt and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:295
+#: ../../keyboard.pm_.c:274
msgid "\"Menu\" key"
msgstr ""
-#: ../../keyboard.pm_.c:296
+#: ../../keyboard.pm_.c:275
msgid "Left \"Windows\" key"
msgstr ""
-#: ../../keyboard.pm_.c:297
+#: ../../keyboard.pm_.c:276
msgid "Right \"Windows\" key"
msgstr ""
@@ -5889,11 +5969,11 @@ msgstr "Çâûśàéíàÿ ìûű ç 2 êíîïêàìł"
msgid "GlidePoint"
msgstr "GlidePoint"
-#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:63
+#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:65
msgid "Kensington Thinking Mouse"
msgstr "Kensington Thinking Mouse"
-#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:59
+#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:61
msgid "Genius NetMouse"
msgstr "Genius NetMouse"
@@ -5901,119 +5981,128 @@ msgstr "Genius NetMouse"
msgid "Genius NetScroll"
msgstr "Genius NetScroll"
-#: ../../mouse.pm_.c:43 ../../mouse.pm_.c:68
+#: ../../mouse.pm_.c:39 ../../mouse.pm_.c:48
+#, fuzzy
+msgid "Microsoft Explorer"
+msgstr "Microsoft IntelliMouse"
+
+#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:70
#, fuzzy
msgid "1 button"
msgstr "2 êíîïêi"
-#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:51
+#: ../../mouse.pm_.c:45 ../../mouse.pm_.c:53
msgid "Generic 2 Button Mouse"
msgstr "Çâûśàéíàÿ ìûű ç 2 êíîïêàìł"
-#: ../../mouse.pm_.c:46
+#: ../../mouse.pm_.c:47
msgid "Wheel"
msgstr "Ç êîëàì"
-#: ../../mouse.pm_.c:49
+#: ../../mouse.pm_.c:51
msgid "serial"
msgstr "ïàńëÿäîąíàÿ"
-#: ../../mouse.pm_.c:52
+#: ../../mouse.pm_.c:54
msgid "Generic 3 Button Mouse"
msgstr "Çâûśàéíàÿ ìûű ç 3 êíîïêàìł"
-#: ../../mouse.pm_.c:53
+#: ../../mouse.pm_.c:55
msgid "Microsoft IntelliMouse"
msgstr "Microsoft IntelliMouse"
-#: ../../mouse.pm_.c:54
+#: ../../mouse.pm_.c:56
msgid "Logitech MouseMan"
msgstr "Logitech MouseMan"
-#: ../../mouse.pm_.c:55
+#: ../../mouse.pm_.c:57
msgid "Mouse Systems"
msgstr "Mouse Systems"
-#: ../../mouse.pm_.c:57
+#: ../../mouse.pm_.c:59
msgid "Logitech CC Series"
msgstr "Logitech CC Series"
-#: ../../mouse.pm_.c:58
+#: ../../mouse.pm_.c:60
msgid "Logitech MouseMan+/FirstMouse+"
msgstr "Logitech MouseMan+/FirstMouse+"
-#: ../../mouse.pm_.c:60
+#: ../../mouse.pm_.c:62
msgid "MM Series"
msgstr "MM Series"
-#: ../../mouse.pm_.c:61
+#: ../../mouse.pm_.c:63
msgid "MM HitTablet"
msgstr "MM HitTablet"
-#: ../../mouse.pm_.c:62
+#: ../../mouse.pm_.c:64
msgid "Logitech Mouse (serial, old C7 type)"
msgstr "Logitech Mouse (ïàńëÿäîąíàÿ, ńòàđû òûï C7)"
-#: ../../mouse.pm_.c:66
+#: ../../mouse.pm_.c:68
#, fuzzy
msgid "busmouse"
msgstr "Íÿìà ìûűû"
-#: ../../mouse.pm_.c:69
+#: ../../mouse.pm_.c:71
msgid "2 buttons"
msgstr "2 êíîïêi"
-#: ../../mouse.pm_.c:70
+#: ../../mouse.pm_.c:72
msgid "3 buttons"
msgstr "3 êíîïêi"
-#: ../../mouse.pm_.c:73
+#: ../../mouse.pm_.c:75
msgid "none"
msgstr "íÿìà"
-#: ../../mouse.pm_.c:75
+#: ../../mouse.pm_.c:77
msgid "No mouse"
msgstr "Íÿìà ìûűû"
-#: ../../mouse.pm_.c:445
+#: ../../mouse.pm_.c:482
msgid "Please test the mouse"
msgstr "Êàëł ëàńêà, çđàáłöć íćêàëüêł đóőàą ìûűűó."
-#: ../../mouse.pm_.c:446
+#: ../../mouse.pm_.c:483
#, fuzzy
msgid "To activate the mouse,"
msgstr "Êàëł ëàńêà, çđàáłöć íćêàëüêł đóőàą ìûűűó."
-#: ../../mouse.pm_.c:447
+#: ../../mouse.pm_.c:484
msgid "MOVE YOUR WHEEL!"
msgstr "Đóűöć êîëàì ìûűû!"
-#: ../../my_gtk.pm_.c:156
+#: ../../my_gtk.pm_.c:64
+msgid "-adobe-utopia-regular-r-*-*-25-*-*-*-p-*-iso8859-*,*-r-*"
+msgstr ""
+
+#: ../../my_gtk.pm_.c:159
#, fuzzy
msgid "Finish"
msgstr "Ôiíńêi"
-#: ../../my_gtk.pm_.c:156 ../../printerdrake.pm_.c:1992
+#: ../../my_gtk.pm_.c:159 ../../printerdrake.pm_.c:2126
msgid "Next ->"
msgstr "Äàëćé ->"
-#: ../../my_gtk.pm_.c:284
+#: ../../my_gtk.pm_.c:287
msgid "Is this correct?"
msgstr "Ăęòà äàêëàäíà?"
-#: ../../my_gtk.pm_.c:356 ../../services.pm_.c:222
+#: ../../my_gtk.pm_.c:359 ../../services.pm_.c:222
msgid "Info"
msgstr "Iíôàđìàöûÿ"
-#: ../../my_gtk.pm_.c:377
+#: ../../my_gtk.pm_.c:380
msgid "Expand Tree"
msgstr "Đàçăàđíóöü äđęâà"
-#: ../../my_gtk.pm_.c:378
+#: ../../my_gtk.pm_.c:381
msgid "Collapse Tree"
msgstr "Çăàđíóöü äđęâà"
-#: ../../my_gtk.pm_.c:379
+#: ../../my_gtk.pm_.c:382
msgid "Toggle between flat and group sorted"
msgstr "Ïćđàêëțśęííć ïàìiæ óïàđàäêàâàííćì ïà ăđóïć i àńîáêàő"
@@ -6049,6 +6138,69 @@ msgstr "âûêàđûńòîąâàöü pppoe"
msgid "use pptp"
msgstr "âûêàđûńòîąâàöü pppoe"
+#: ../../network/drakfirewall.pm_.c:12
+#, fuzzy
+msgid "Web Server"
+msgstr "ńćđâćđ"
+
+#: ../../network/drakfirewall.pm_.c:17
+#, fuzzy
+msgid "Domain Name Server"
+msgstr "Iìÿ äàìćíó"
+
+#: ../../network/drakfirewall.pm_.c:32
+#, fuzzy
+msgid "Mail Server"
+msgstr "Ńćđâćđ äđóêó"
+
+#: ../../network/drakfirewall.pm_.c:37
+#, fuzzy
+msgid "POP and IMAP Server"
+msgstr "ńćđâćđ"
+
+#: ../../network/drakfirewall.pm_.c:111
+#, fuzzy
+msgid "No network card"
+msgstr "ńćòêàâàÿ êàđòà íć çíîéäçćíà"
+
+#: ../../network/drakfirewall.pm_.c:129
+msgid ""
+"drakfirewall configurator\n"
+"\n"
+"This configures a personal firewall for this Mandrake Linux machine.\n"
+"For a powerful dedicated firewall solution, please look to the\n"
+"specialized MandrakeSecurity Firewall distribution."
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:147
+msgid "Which services would you like to allow the Internet to connect to?"
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:148
+msgid ""
+"You can enter miscellaneous ports. \n"
+"Valid examples are: 139/tcp 139/udp.\n"
+"Have a look at /etc/services for information."
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:154
+#, c-format
+msgid ""
+"Invalid port given: %s.\n"
+"The proper format is \"port/tcp\" or \"port/udp\", \n"
+"where port is between 1 and 65535."
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:162
+#, fuzzy
+msgid "Everything (no firewall)"
+msgstr "Ąńž ńêàíôiăóđàâàíà!"
+
+#: ../../network/drakfirewall.pm_.c:164
+#, fuzzy
+msgid "Other ports"
+msgstr "Iíűûÿ êđàiíû"
+
#: ../../network/ethernet.pm_.c:37
msgid ""
"Which dhcp client do you want to use?\n"
@@ -6066,7 +6218,7 @@ msgstr ""
"Íi âîäíû ethernet ńćòêàâû àäàïòàđ ó âàűàé ńińòęìć íć âûçíàśàíû. Êàëi ëàńêà, "
"ńêàđûńòàéöć êàíôiăóđàöûéíû iíńòđóìęíò."
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:247
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:240
msgid "Choose the network interface"
msgstr "Ïàçíàśöć ńćòêàâû iíòęđôćéń"
@@ -6081,7 +6233,7 @@ msgstr ""
msgid "no network card found"
msgstr "ńćòêàâàÿ êàđòà íć çíîéäçćíà"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:366
msgid "Configuring network"
msgstr "Íàńòđîéêà ńćòêi"
@@ -6097,7 +6249,7 @@ msgstr ""
"íàïđûêëàä ``mybox.mylab.myco.com''.\n"
"Âû ìîæàöć òàêńàìà ąâćńöi IP àäđàń űëțçó, êàëi ží ó âàń žńöü."
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:370
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:371
msgid "Host name"
msgstr "Iìÿ ìàűûíû"
@@ -6397,14 +6549,14 @@ msgstr "Àáÿđûöć àńíîąíàăà êàđûńòàëüíiêà:"
msgid "Use auto detection"
msgstr ""
-#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2930
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:3151
#: ../../standalone/drakconnect_.c:274 ../../standalone/drakconnect_.c:277
#: ../../standalone/drakfloppy_.c:145
#, fuzzy
msgid "Expert Mode"
msgstr "Ęêńïćđò"
-#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:283
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:386
msgid "Detecting devices..."
msgstr "Âûçíàśęííć ïđûëàäàą..."
@@ -6564,11 +6716,11 @@ msgstr "Àąòàìàòûśíû IP"
msgid "Start at boot"
msgstr "Ńòâàđûöü çàăđ. äûńê"
-#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:753
+#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:860
msgid "IP address should be in format 1.2.3.4"
msgstr "IP àäđàń ïàâiíćí áûöü ó ôàđìàöć 1.2.3.4"
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:367
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -6580,43 +6732,55 @@ msgstr ""
"íàïđûêëàä ``mybox.mylab.myco.com''.\n"
"Âû ìîæàöć òàêńàìà ąâćńöi IP àäđàń űëțçó, êàëi ží ó âàń žńöü."
-#: ../../network/network.pm_.c:371
+#: ../../network/network.pm_.c:372
msgid "DNS server"
msgstr "DNS ńćđâćđ"
-#: ../../network/network.pm_.c:372
+#: ../../network/network.pm_.c:373
#, c-format
msgid "Gateway (e.g. %s)"
msgstr ""
-#: ../../network/network.pm_.c:374
+#: ../../network/network.pm_.c:375
msgid "Gateway device"
msgstr "Ïđûëàäà-űëțç"
-#: ../../network/network.pm_.c:386
+#: ../../network/network.pm_.c:387
msgid "Proxies configuration"
msgstr "Íàńòđîéêà proxy êęűóțśûő ńćđâćđàą"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:388
msgid "HTTP proxy"
msgstr "HTTP proxy"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:389
msgid "FTP proxy"
msgstr "FTP proxy"
-#: ../../network/network.pm_.c:389
+#: ../../network/network.pm_.c:390
msgid "Track network card id (useful for laptops)"
msgstr ""
-#: ../../network/network.pm_.c:392
+#: ../../network/network.pm_.c:393
msgid "Proxy should be http://..."
msgstr "Proxy ïàâiíćí áûöü http://..."
-#: ../../network/network.pm_.c:393
+#: ../../network/network.pm_.c:394
msgid "Proxy should be ftp://..."
msgstr "Proxy ïàâiíćí áûöü ftp://..."
+#: ../../network/shorewall.pm_.c:24
+msgid "Firewalling configuration detected!"
+msgstr "Çíîéäçćíà ńłńòęìà ńćòêàâàé áÿńïćêł (firewall)!"
+
+#: ../../network/shorewall.pm_.c:25
+msgid ""
+"Warning! An existing firewalling configuration has been detected. You may "
+"need some manual fix after installation."
+msgstr ""
+"Óâàăà! Çíîéäçćíà łńíóțśàÿ ńińòęìà ńćòêàâàé áÿńïćêi (firewall). Âàì ìàăśûìà "
+"ńïàòđęáłööà ńêàđęêòàâàöü ÿć ïàńëÿ ąńòàëÿâàííÿ."
+
#: ../../network/tools.pm_.c:41
msgid "Internet configuration"
msgstr "Íàńòđîéêà çëóśęííÿ ç Iíòęđíęòàì"
@@ -6730,15 +6894,15 @@ msgstr "Ïàđîëü äëÿ ąâàőîäó"
msgid "United Kingdom"
msgstr ""
-#: ../../partition_table.pm_.c:606
+#: ../../partition_table.pm_.c:602
msgid "mount failed: "
msgstr "ïàìûëêà ìàíöiđàâàííÿ: "
-#: ../../partition_table.pm_.c:670
+#: ../../partition_table.pm_.c:666
msgid "Extended partition not supported on this platform"
msgstr "Ïàűûđàíû đàçäçćë íć ïàäòđûìëiâàćööà ăęòàé ïëàòôîđìàé"
-#: ../../partition_table.pm_.c:688
+#: ../../partition_table.pm_.c:684
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
@@ -6748,21 +6912,21 @@ msgstr ""
"Àäçiíû âûőàä ó òûì, êàá ïćđàìÿńöiöü ïćđűàńíûÿ đàçäçćëû òàê, êàá äçiđêà iűëà\n"
"àäđàçó çà ïàűûđàíûì (extended) đàçäçćëàì"
-#: ../../partition_table.pm_.c:778
+#: ../../partition_table.pm_.c:774
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "Àäíàąëćííć ç ôàéëà %s íć àòđûìàëàńÿ: %s"
-#: ../../partition_table.pm_.c:780
+#: ../../partition_table.pm_.c:776
msgid "Bad backup file"
msgstr "Äđęííû ôàéë đęçćđâîâàé êîïii"
-#: ../../partition_table.pm_.c:802
+#: ../../partition_table.pm_.c:798
#, c-format
msgid "Error writing to file %s"
msgstr "Ïàìûëêà çàïińó ą ôàéë %s"
-#: ../../partition_table/raw.pm_.c:187
+#: ../../partition_table/raw.pm_.c:189
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
@@ -6805,157 +6969,161 @@ msgstr ""
msgid "PDQ - Print, Don't Queue"
msgstr ""
-#: ../../printer.pm_.c:35 ../../printer.pm_.c:854
+#: ../../printer.pm_.c:34 ../../printer.pm_.c:1125
msgid "CUPS"
msgstr ""
-#: ../../printer.pm_.c:36
+#: ../../printer.pm_.c:35
msgid "LPRng"
msgstr ""
-#: ../../printer.pm_.c:37
+#: ../../printer.pm_.c:36
msgid "LPD"
msgstr ""
-#: ../../printer.pm_.c:38
+#: ../../printer.pm_.c:37
msgid "PDQ"
msgstr ""
-#: ../../printer.pm_.c:50
+#: ../../printer.pm_.c:49
msgid "Local printer"
msgstr "Ëàêàëüíû ïđûíòęđ"
-#: ../../printer.pm_.c:51
+#: ../../printer.pm_.c:50
msgid "Remote printer"
msgstr "Àääàëćíû ïđûíòęđ"
-#: ../../printer.pm_.c:52
+#: ../../printer.pm_.c:51
#, fuzzy
msgid "Printer on remote CUPS server"
msgstr "Àääàëćíû ńćđâćđ CUPS"
-#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:776
+#: ../../printer.pm_.c:52 ../../printerdrake.pm_.c:883
#, fuzzy
msgid "Printer on remote lpd server"
msgstr "Àääàëćíû ńćđâćđ lpd"
-#: ../../printer.pm_.c:54
+#: ../../printer.pm_.c:53
msgid "Network printer (TCP/Socket)"
msgstr "Ńćòêàâû ïđûíòęđ (TCP/Socket)"
-#: ../../printer.pm_.c:55
+#: ../../printer.pm_.c:54
#, fuzzy
msgid "Printer on SMB/Windows 95/98/NT server"
msgstr "SMB/Windows 95/98/NT"
-#: ../../printer.pm_.c:56
+#: ../../printer.pm_.c:55
#, fuzzy
msgid "Printer on NetWare server"
msgstr "Ńćđâćđ äđóêó"
-#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:780
+#: ../../printer.pm_.c:56 ../../printerdrake.pm_.c:887
#, fuzzy
msgid "Enter a printer device URI"
msgstr "URI ïđûíòęđó"
-#: ../../printer.pm_.c:58
+#: ../../printer.pm_.c:57
msgid "Pipe job into a command"
msgstr ""
-#: ../../printer.pm_.c:487 ../../printer.pm_.c:678 ../../printer.pm_.c:1000
-#: ../../printerdrake.pm_.c:2070 ../../printerdrake.pm_.c:3189
+#: ../../printer.pm_.c:324 ../../printer.pm_.c:366 ../../printer.pm_.c:533
+msgid "Unknown Model"
+msgstr ""
+
+#: ../../printer.pm_.c:735 ../../printer.pm_.c:926 ../../printer.pm_.c:1318
+#: ../../printerdrake.pm_.c:2260 ../../printerdrake.pm_.c:3414
msgid "Unknown model"
msgstr ""
-#: ../../printer.pm_.c:515
+#: ../../printer.pm_.c:763
#, fuzzy
msgid "Local Printers"
msgstr "Ëàêàëüíû ïđûíòęđ"
-#: ../../printer.pm_.c:517 ../../printer.pm_.c:855
+#: ../../printer.pm_.c:765 ../../printer.pm_.c:1126
#, fuzzy
msgid "Remote Printers"
msgstr "Àääàëćíû ïđûíòęđ"
-#: ../../printer.pm_.c:524 ../../printerdrake.pm_.c:301
+#: ../../printer.pm_.c:772 ../../printerdrake.pm_.c:404
#, c-format
msgid " on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:527 ../../printerdrake.pm_.c:303
+#: ../../printer.pm_.c:775 ../../printerdrake.pm_.c:406
#, c-format
msgid ", USB printer \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:532
+#: ../../printer.pm_.c:780
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:535
+#: ../../printer.pm_.c:783
msgid ", multi-function device on USB"
msgstr ""
-#: ../../printer.pm_.c:537
+#: ../../printer.pm_.c:785
msgid ", multi-function device on HP JetDirect"
msgstr ""
-#: ../../printer.pm_.c:539
+#: ../../printer.pm_.c:787
msgid ", multi-function device"
msgstr ""
-#: ../../printer.pm_.c:542
+#: ../../printer.pm_.c:790
#, fuzzy, c-format
msgid ", printing to %s"
msgstr "Ïàìûëêà çàïińó ą ôàéë %s"
-#: ../../printer.pm_.c:544
+#: ../../printer.pm_.c:792
#, c-format
msgid " on LPD server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:546
+#: ../../printer.pm_.c:794
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ""
-#: ../../printer.pm_.c:550
+#: ../../printer.pm_.c:798
#, c-format
msgid " on SMB/Windows server \"%s\", share \"%s\""
msgstr ""
-#: ../../printer.pm_.c:554
+#: ../../printer.pm_.c:802
#, c-format
msgid " on Novell server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:556
+#: ../../printer.pm_.c:804
#, c-format
msgid ", using command %s"
msgstr ""
-#: ../../printer.pm_.c:675 ../../printerdrake.pm_.c:1540
+#: ../../printer.pm_.c:923 ../../printerdrake.pm_.c:1656
msgid "Raw printer (No driver)"
msgstr ""
-#: ../../printer.pm_.c:824
+#: ../../printer.pm_.c:1095
#, fuzzy, c-format
msgid "(on %s)"
msgstr "(ìîäóëü %s)"
-#: ../../printer.pm_.c:826
+#: ../../printer.pm_.c:1097
msgid "(on this machine)"
msgstr ""
-#: ../../printer.pm_.c:851
+#: ../../printer.pm_.c:1122
#, fuzzy, c-format
msgid "On CUPS server \"%s\""
msgstr "IP ńćđâćđà SMB"
-#: ../../printer.pm_.c:857 ../../printerdrake.pm_.c:2851
-#: ../../printerdrake.pm_.c:2862 ../../printerdrake.pm_.c:3078
-#: ../../printerdrake.pm_.c:3130 ../../printerdrake.pm_.c:3156
-#: ../../printerdrake.pm_.c:3326 ../../printerdrake.pm_.c:3328
+#: ../../printer.pm_.c:1128 ../../printerdrake.pm_.c:3071
+#: ../../printerdrake.pm_.c:3082 ../../printerdrake.pm_.c:3303
+#: ../../printerdrake.pm_.c:3355 ../../printerdrake.pm_.c:3381
+#: ../../printerdrake.pm_.c:3556 ../../printerdrake.pm_.c:3558
msgid " (Default)"
msgstr " (Ïà äàìàąëćííț)"
@@ -6982,12 +7150,12 @@ msgstr ""
msgid "Printer auto-detection (Local, TCP/Socket, and SMB printers)"
msgstr ""
-#: ../../printerdrake.pm_.c:84 ../../printerdrake.pm_.c:2914
+#: ../../printerdrake.pm_.c:84 ../../printerdrake.pm_.c:3135
#, fuzzy
msgid "CUPS configuration"
msgstr "Íàńòđîéêà"
-#: ../../printerdrake.pm_.c:85 ../../printerdrake.pm_.c:2915
+#: ../../printerdrake.pm_.c:85 ../../printerdrake.pm_.c:3136
#, fuzzy
msgid "Specify CUPS server"
msgstr "Àääàëćíû ńćđâćđ CUPS"
@@ -7018,7 +7186,7 @@ msgstr ""
msgid "The IP address should look like 192.168.1.20"
msgstr "IP àäđàń ïàâiíćí áûöü ó ôàđìàöć 1.2.3.4"
-#: ../../printerdrake.pm_.c:95 ../../printerdrake.pm_.c:987
+#: ../../printerdrake.pm_.c:95 ../../printerdrake.pm_.c:1094
msgid "The port number should be an integer!"
msgstr ""
@@ -7027,7 +7195,7 @@ msgstr ""
msgid "CUPS server IP"
msgstr "IP ńćđâćđà SMB"
-#: ../../printerdrake.pm_.c:103 ../../printerdrake.pm_.c:1007
+#: ../../printerdrake.pm_.c:103 ../../printerdrake.pm_.c:1114
msgid "Port"
msgstr "Ïîđò"
@@ -7036,13 +7204,130 @@ msgstr "Ïîđò"
msgid "Automatic CUPS configuration"
msgstr "Íàńòđîéêà ìàäęìó"
-#: ../../printerdrake.pm_.c:183 ../../printerdrake.pm_.c:192
-#: ../../printerdrake.pm_.c:2897 ../../printerdrake.pm_.c:3017
+#: ../../printerdrake.pm_.c:177 ../../printerdrake.pm_.c:247
+#: ../../printerdrake.pm_.c:1529 ../../printerdrake.pm_.c:1533
+#: ../../printerdrake.pm_.c:1651 ../../printerdrake.pm_.c:2203
+#: ../../printerdrake.pm_.c:2356 ../../printerdrake.pm_.c:2415
+#: ../../printerdrake.pm_.c:2488 ../../printerdrake.pm_.c:2509
+#: ../../printerdrake.pm_.c:2699 ../../printerdrake.pm_.c:2740
+#: ../../printerdrake.pm_.c:2745 ../../printerdrake.pm_.c:2779
+#: ../../printerdrake.pm_.c:2784 ../../printerdrake.pm_.c:2821
+#: ../../printerdrake.pm_.c:2874 ../../printerdrake.pm_.c:2894
+#: ../../printerdrake.pm_.c:2908 ../../printerdrake.pm_.c:2942
+#: ../../printerdrake.pm_.c:2988 ../../printerdrake.pm_.c:3006
+#: ../../printerdrake.pm_.c:3095 ../../printerdrake.pm_.c:3169
+#: ../../printerdrake.pm_.c:3471 ../../printerdrake.pm_.c:3526
+#: ../../printerdrake.pm_.c:3579 ../../standalone/printerdrake_.c:57
+#, fuzzy
+msgid "Printerdrake"
+msgstr "Ïđûíòęđ"
+
+#: ../../printerdrake.pm_.c:178
+#, fuzzy
+msgid "Checking your system..."
+msgstr "ßêóț ńińòęìó äđóêó Âû æàäàćöć âûêàđûńòîąâàöü?"
+
+#: ../../printerdrake.pm_.c:186
+msgid ""
+"There are no printers found which are directly connected to your machine"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:198
+#, fuzzy
+msgid ""
+"The following printers\n"
+"\n"
+msgstr "Íàńòóïíûÿ ïàêćòû áóäóöü âûäàëćíû"
+
+#: ../../printerdrake.pm_.c:199
+#, fuzzy
+msgid ""
+"The following printer\n"
+"\n"
+msgstr "Íàńòóïíûÿ ïàêćòû áóäóöü âûäàëćíû"
+
+#: ../../printerdrake.pm_.c:201
+msgid ""
+"\n"
+"and one unknown printer are "
+msgstr ""
+
+#: ../../printerdrake.pm_.c:203
+#, c-format
+msgid ""
+"\n"
+"and %d unknown printers are "
+msgstr ""
+
+#: ../../printerdrake.pm_.c:207
+msgid ""
+"\n"
+"are "
+msgstr ""
+
+#: ../../printerdrake.pm_.c:208
+msgid ""
+"\n"
+"is "
+msgstr ""
+
+#: ../../printerdrake.pm_.c:210
+#, fuzzy
+msgid "directly connected to your system"
+msgstr "Ó âàűàé ńłńòęìć íÿìà íiâîäíàăà ńćòêàâàăà àäàïòàđà!"
+
+#: ../../printerdrake.pm_.c:213
+msgid ""
+"\n"
+"There is one unknown printer directly connected to your system"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:215
+#, c-format
+msgid ""
+"\n"
+"There are %d unknown printers directly connected to your system"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:221
+#, fuzzy
+msgid " (Make sure that all your printers are connected and turned on).\n"
+msgstr "Äà ÿêîăà ïàńëÿäîąíàăà ïîđòó äàëóśàíû ìàäęì?"
+
+#: ../../printerdrake.pm_.c:235
+msgid ""
+"Do you want to enable printing on the printers mentioned above or on "
+"printers in the local network?\n"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:236
+#, fuzzy
+msgid "Do you want to enable printing on printers in the local network?\n"
+msgstr "Æàäàćöć ïđàòęńöiđàâàöü äđóê?"
+
+#: ../../printerdrake.pm_.c:238
+#, fuzzy
+msgid "Do you want to enable printing on the printers mentioned above?\n"
+msgstr "Âû æàäàćöć, êàá ăęòàć çëóśęííć ńòàđòàâàëà ïđû çàăđóçöû?"
+
+#: ../../printerdrake.pm_.c:239
+msgid "Are you sure that you want to set up printing on this machine?\n"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:240
+#, c-format
+msgid ""
+"NOTE: Depending on the printer model and the printing system up to %d MB of "
+"additional software will be installed."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:269 ../../printerdrake.pm_.c:278
+#: ../../printerdrake.pm_.c:3117 ../../printerdrake.pm_.c:3242
#, fuzzy
msgid "Add a new printer"
msgstr "Iìÿ äđóêàđêi"
-#: ../../printerdrake.pm_.c:184
+#: ../../printerdrake.pm_.c:270
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7055,7 +7340,7 @@ msgid ""
"connection types."
msgstr ""
-#: ../../printerdrake.pm_.c:193
+#: ../../printerdrake.pm_.c:280
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7064,7 +7349,7 @@ msgid ""
"computer, connected directly to the network or to a remote Windows machine.\n"
"\n"
"If you have printer(s) connected to this machine, Please plug it/them in on "
-"this computer and turn it/them on so that they can be auto-detected. Also "
+"this computer and turn it/them on so that it/they can be auto-detected. Also "
"your network printer(s) and you Windows machines must be connected and "
"turned on.\n"
"\n"
@@ -7077,7 +7362,22 @@ msgid ""
"want to set up your printer(s) now."
msgstr ""
-#: ../../printerdrake.pm_.c:202
+#: ../../printerdrake.pm_.c:289 ../../printerdrake.pm_.c:306
+msgid ""
+"\n"
+"Welcome to the Printer Setup Wizard\n"
+"\n"
+"This wizard will help you to install your printer(s) connected to this "
+"computer.\n"
+"\n"
+"If you have printer(s) connected to this machine, Please plug it/them in on "
+"this computer and turn it/them on so that it/they can be auto-detected.\n"
+"\n"
+" Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
+"want to set up your printer(s) now."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:297
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7086,7 +7386,7 @@ msgid ""
"computer or connected directly to the network.\n"
"\n"
"If you have printer(s) connected to this machine, Please plug it/them in on "
-"this computer and turn it/them on so that they can be auto-detected. Also "
+"this computer and turn it/them on so that it/they can be auto-detected. Also "
"your network printer(s) must be connected and turned on.\n"
"\n"
"Note that auto-detecting printers on the network takes longer than the auto-"
@@ -7097,26 +7397,26 @@ msgid ""
"want to set up your printer(s) now."
msgstr ""
-#: ../../printerdrake.pm_.c:213
+#: ../../printerdrake.pm_.c:315
#, fuzzy
msgid "Auto-detect printers connected to this machine"
msgstr "Àääàëćíû ïđûíòęđ"
-#: ../../printerdrake.pm_.c:215
+#: ../../printerdrake.pm_.c:318
msgid "Auto-detect printers connected directly to the local network"
msgstr ""
-#: ../../printerdrake.pm_.c:218
+#: ../../printerdrake.pm_.c:321
msgid "Auto-detect printers connected to machines running Microsoft Windows"
msgstr ""
-#: ../../printerdrake.pm_.c:245 ../../printerdrake.pm_.c:459
-#: ../../printerdrake.pm_.c:484
+#: ../../printerdrake.pm_.c:348 ../../printerdrake.pm_.c:562
+#: ../../printerdrake.pm_.c:587
#, fuzzy
msgid "Local Printer"
msgstr "Ëàêàëüíû ïđûíòęđ"
-#: ../../printerdrake.pm_.c:246
+#: ../../printerdrake.pm_.c:349
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -7130,50 +7430,50 @@ msgid ""
"Center."
msgstr ""
-#: ../../printerdrake.pm_.c:283 ../../printerdrake.pm_.c:474
-#: ../../printerdrake.pm_.c:683 ../../printerdrake.pm_.c:923
+#: ../../printerdrake.pm_.c:386 ../../printerdrake.pm_.c:577
+#: ../../printerdrake.pm_.c:790 ../../printerdrake.pm_.c:1030
#, fuzzy
msgid "Printer auto-detection"
msgstr "Àääàëćíû ïđûíòęđ"
-#: ../../printerdrake.pm_.c:305
+#: ../../printerdrake.pm_.c:408
#, c-format
msgid ", network printer \"%s\", port %s"
msgstr ""
-#: ../../printerdrake.pm_.c:307
+#: ../../printerdrake.pm_.c:410
#, fuzzy, c-format
msgid ", printer \"%s\" on SMB/Windows server \"%s\""
msgstr "SMB/Windows 95/98/NT"
-#: ../../printerdrake.pm_.c:313
+#: ../../printerdrake.pm_.c:416
#, fuzzy, c-format
msgid "Detected %s"
msgstr "Äóáëÿâàííć ïóíêòó ìàíöiđàâàííÿ %s"
-#: ../../printerdrake.pm_.c:317 ../../printerdrake.pm_.c:348
-#: ../../printerdrake.pm_.c:367
+#: ../../printerdrake.pm_.c:420 ../../printerdrake.pm_.c:451
+#: ../../printerdrake.pm_.c:470
#, c-format
msgid "Printer on parallel port \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:319 ../../printerdrake.pm_.c:350
-#: ../../printerdrake.pm_.c:372
+#: ../../printerdrake.pm_.c:422 ../../printerdrake.pm_.c:453
+#: ../../printerdrake.pm_.c:475
#, c-format
msgid "USB printer \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:321
+#: ../../printerdrake.pm_.c:424
#, fuzzy, c-format
msgid "Network printer \"%s\", port %s"
msgstr "Ńćòêàâû ïđûíòęđ (TCP/Socket)"
-#: ../../printerdrake.pm_.c:323
+#: ../../printerdrake.pm_.c:426
#, fuzzy, c-format
msgid "Printer \"%s\" on SMB/Windows server \"%s\""
msgstr "SMB/Windows 95/98/NT"
-#: ../../printerdrake.pm_.c:460
+#: ../../printerdrake.pm_.c:563
msgid ""
"No local printer found! To manually install a printer enter a device name/"
"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
@@ -7181,34 +7481,34 @@ msgid ""
"printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:464
+#: ../../printerdrake.pm_.c:567
#, fuzzy
msgid "You must enter a device or file name!"
msgstr "URI ïđûíòęđó"
-#: ../../printerdrake.pm_.c:475
+#: ../../printerdrake.pm_.c:578
#, fuzzy
msgid "No printer found!"
msgstr "Ëàêàëüíû ïđûíòęđ"
-#: ../../printerdrake.pm_.c:485
+#: ../../printerdrake.pm_.c:588
#, fuzzy
msgid "Available printers"
msgstr "Äàńòóïíûÿ ïàêćòû"
-#: ../../printerdrake.pm_.c:489
+#: ../../printerdrake.pm_.c:592
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:490
+#: ../../printerdrake.pm_.c:593
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up or enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:492
+#: ../../printerdrake.pm_.c:595
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
@@ -7216,7 +7516,7 @@ msgid ""
"configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:493
+#: ../../printerdrake.pm_.c:596
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
@@ -7224,38 +7524,38 @@ msgid ""
"customized printer configuration, turn on \"Manual configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:495
+#: ../../printerdrake.pm_.c:598
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:496
+#: ../../printerdrake.pm_.c:599
#, fuzzy
msgid "Please choose the port where your printer is connected to."
msgstr "Äà ÿêîăà ïàńëÿäîąíàăà ïîđòó äàëóśàíû ìàäęì?"
-#: ../../printerdrake.pm_.c:498
+#: ../../printerdrake.pm_.c:601
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:503
+#: ../../printerdrake.pm_.c:606
#, fuzzy
msgid "You must choose/enter a printer/device!"
msgstr "URI ïđûíòęđó"
-#: ../../printerdrake.pm_.c:523
+#: ../../printerdrake.pm_.c:626
#, fuzzy
msgid "Manual configuration"
msgstr "Íàńòđîéêà"
-#: ../../printerdrake.pm_.c:577
+#: ../../printerdrake.pm_.c:680
msgid "Remote lpd Printer Options"
msgstr "Îïöûi àääàëćíàăà ïđûíòęđó lpd"
-#: ../../printerdrake.pm_.c:578
+#: ../../printerdrake.pm_.c:681
#, fuzzy
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
@@ -7265,51 +7565,51 @@ msgstr ""
"ïàçíàśûöü iìÿ àääàëćíàăà ńćđâćđà i iìÿ śàđăi äđóêó,\n"
"ó ÿêóț àääàëćíû ńćđâćđ áóäçć àäïđàąëÿöü çàäàííi."
-#: ../../printerdrake.pm_.c:579
+#: ../../printerdrake.pm_.c:682
#, fuzzy
msgid "Remote host name"
msgstr "Àääàëćíû âóçćë"
-#: ../../printerdrake.pm_.c:580
+#: ../../printerdrake.pm_.c:683
#, fuzzy
msgid "Remote printer name"
msgstr "Àääàëćíû ïđûíòęđ"
-#: ../../printerdrake.pm_.c:583
+#: ../../printerdrake.pm_.c:686
#, fuzzy
msgid "Remote host name missing!"
msgstr "Àääàëćíû âóçćë"
-#: ../../printerdrake.pm_.c:587
+#: ../../printerdrake.pm_.c:690
#, fuzzy
msgid "Remote printer name missing!"
msgstr "Àääàëćíû âóçćë"
-#: ../../printerdrake.pm_.c:609 ../../printerdrake.pm_.c:1119
+#: ../../printerdrake.pm_.c:712 ../../printerdrake.pm_.c:1225
#, fuzzy, c-format
msgid "Detected model: %s %s"
msgstr "Äóáëÿâàííć ïóíêòó ìàíöiđàâàííÿ %s"
-#: ../../printerdrake.pm_.c:683 ../../printerdrake.pm_.c:923
+#: ../../printerdrake.pm_.c:790 ../../printerdrake.pm_.c:1030
#, fuzzy
msgid "Scanning network..."
msgstr "ßêi òûï âàűàăà ISDN çëóśęííÿ?"
-#: ../../printerdrake.pm_.c:692 ../../printerdrake.pm_.c:713
+#: ../../printerdrake.pm_.c:799 ../../printerdrake.pm_.c:820
#, c-format
msgid ", printer \"%s\" on server \"%s\""
msgstr ""
-#: ../../printerdrake.pm_.c:695 ../../printerdrake.pm_.c:716
+#: ../../printerdrake.pm_.c:802 ../../printerdrake.pm_.c:823
#, fuzzy, c-format
msgid "Printer \"%s\" on server \"%s\""
msgstr "Àäëóśęííć àä ńćòêi"
-#: ../../printerdrake.pm_.c:736
+#: ../../printerdrake.pm_.c:843
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "Îïöûi ïđûíòęđó SMB (Windows 9x/NT)"
-#: ../../printerdrake.pm_.c:737
+#: ../../printerdrake.pm_.c:844
#, fuzzy
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
@@ -7322,46 +7622,46 @@ msgstr ""
"đęńóđńó, ÿêi ńïàëóśàíû ç âûáđàíûì ïđûíòęđàì, iìÿ êàđûńòàëüíiêó, ïàđîëü i "
"iíôàđìàöûț àá ïđàöîąíàé ăđóïć."
-#: ../../printerdrake.pm_.c:738
+#: ../../printerdrake.pm_.c:845
msgid ""
" If the desired printer was auto-detected, simply choose it from the list "
"and then add user name, password, and/or workgroup if needed."
msgstr ""
-#: ../../printerdrake.pm_.c:739
+#: ../../printerdrake.pm_.c:846
msgid "SMB server host"
msgstr "Iìÿ ńćđâćđó SMB"
-#: ../../printerdrake.pm_.c:740
+#: ../../printerdrake.pm_.c:847
msgid "SMB server IP"
msgstr "IP ńćđâćđà SMB"
-#: ../../printerdrake.pm_.c:741
+#: ../../printerdrake.pm_.c:848
msgid "Share name"
msgstr "Iìÿ äëÿ đàçìćđêàâàíàăà đęńóđńó"
-#: ../../printerdrake.pm_.c:744
+#: ../../printerdrake.pm_.c:851
msgid "Workgroup"
msgstr "Ïđàöîąíàÿ ăđóïà"
-#: ../../printerdrake.pm_.c:746
+#: ../../printerdrake.pm_.c:853
#, fuzzy
msgid "Auto-detected"
msgstr "Àääàëćíû ïđûíòęđ"
-#: ../../printerdrake.pm_.c:757
+#: ../../printerdrake.pm_.c:864
msgid "Either the server name or the server's IP must be given!"
msgstr ""
-#: ../../printerdrake.pm_.c:761
+#: ../../printerdrake.pm_.c:868
msgid "Samba share name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:767
+#: ../../printerdrake.pm_.c:874
msgid "SECURITY WARNING!"
msgstr ""
-#: ../../printerdrake.pm_.c:768
+#: ../../printerdrake.pm_.c:875
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -7385,7 +7685,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:778
+#: ../../printerdrake.pm_.c:885
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -7394,7 +7694,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:781
+#: ../../printerdrake.pm_.c:888
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
@@ -7402,11 +7702,11 @@ msgid ""
"Do you really want to continue setting up this printer as you are doing now?"
msgstr ""
-#: ../../printerdrake.pm_.c:853
+#: ../../printerdrake.pm_.c:960
msgid "NetWare Printer Options"
msgstr "Îïöûi ïđûíòęđó NetWare"
-#: ../../printerdrake.pm_.c:854
+#: ../../printerdrake.pm_.c:961
#, fuzzy
msgid ""
"To print on a NetWare printer, you need to provide the NetWare print server "
@@ -7418,44 +7718,44 @@ msgstr ""
"(íć çàąńžäû ńóïàäàć ç iìćíćì ó ńćòöû TCP/IP) i iìÿ śàđăi äđóêó, ÿêàÿ "
"àäïàâÿäàć àáđàíàìó ïđûíòęđó, à òàêńàìà iìÿ êàđûńòàëüíiêó i ïàđîëü."
-#: ../../printerdrake.pm_.c:855
+#: ../../printerdrake.pm_.c:962
msgid "Printer Server"
msgstr "Ńćđâćđ äđóêó"
-#: ../../printerdrake.pm_.c:856
+#: ../../printerdrake.pm_.c:963
msgid "Print Queue Name"
msgstr "Iìÿ śàđăi äđóêó"
-#: ../../printerdrake.pm_.c:861
+#: ../../printerdrake.pm_.c:968
msgid "NCP server name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:865
+#: ../../printerdrake.pm_.c:972
msgid "NCP queue name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:932 ../../printerdrake.pm_.c:952
+#: ../../printerdrake.pm_.c:1039 ../../printerdrake.pm_.c:1059
#, c-format
msgid ", host \"%s\", port %s"
msgstr ""
-#: ../../printerdrake.pm_.c:935 ../../printerdrake.pm_.c:955
+#: ../../printerdrake.pm_.c:1042 ../../printerdrake.pm_.c:1062
#, c-format
msgid "Host \"%s\", port %s"
msgstr ""
-#: ../../printerdrake.pm_.c:975
+#: ../../printerdrake.pm_.c:1082
#, fuzzy
msgid "TCP/Socket Printer Options"
msgstr "Îïöûi ńîêćòó ïđûíòęđó"
-#: ../../printerdrake.pm_.c:977
+#: ../../printerdrake.pm_.c:1084
msgid ""
"Choose one of the auto-detected printers from the list or enter the hostname "
"or IP and the optional port number (default is 9100) into the input fields."
msgstr ""
-#: ../../printerdrake.pm_.c:978
+#: ../../printerdrake.pm_.c:1085
#, fuzzy
msgid ""
"To print to a TCP or socket printer, you need to provide the host name or IP "
@@ -7466,61 +7766,61 @@ msgstr ""
"Êàá äđóêàâàöü ïđàç ńîêćò äđóêàđêi, âàì íćàáőîäíà çàáÿńïćśûöü\n"
"iìÿ ïđûíòęđó i ìàăśûìà ÿăî íóìàđ ïîđòó."
-#: ../../printerdrake.pm_.c:983
+#: ../../printerdrake.pm_.c:1090
#, fuzzy
msgid "Printer host name or IP missing!"
msgstr "Iìÿ ïđûíòęđó"
-#: ../../printerdrake.pm_.c:1005
+#: ../../printerdrake.pm_.c:1112
#, fuzzy
msgid "Printer host name or IP"
msgstr "Iìÿ ïđûíòęđó"
-#: ../../printerdrake.pm_.c:1054 ../../printerdrake.pm_.c:1056
+#: ../../printerdrake.pm_.c:1160 ../../printerdrake.pm_.c:1162
msgid "Printer Device URI"
msgstr "URI ïđûíòęđó"
-#: ../../printerdrake.pm_.c:1055
+#: ../../printerdrake.pm_.c:1161
msgid ""
"You can specify directly the URI to access the printer. The URI must fulfill "
"either the CUPS or the Foomatic specifications. Note that not all URI types "
"are supported by all the spoolers."
msgstr ""
-#: ../../printerdrake.pm_.c:1070
+#: ../../printerdrake.pm_.c:1176
msgid "A valid URI must be entered!"
msgstr ""
-#: ../../printerdrake.pm_.c:1402
+#: ../../printerdrake.pm_.c:1515
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
"Location fields do not need to be filled in. They are comments for the users."
msgstr ""
-#: ../../printerdrake.pm_.c:1403
+#: ../../printerdrake.pm_.c:1516
msgid "Name of printer"
msgstr "Iìÿ äđóêàđêi"
-#: ../../printerdrake.pm_.c:1405
+#: ../../printerdrake.pm_.c:1518
msgid "Location"
msgstr "Đàçìćđêàâàííć"
-#: ../../printerdrake.pm_.c:1416 ../../printerdrake.pm_.c:1536
+#: ../../printerdrake.pm_.c:1530 ../../printerdrake.pm_.c:1652
#, fuzzy
msgid "Reading printer database..."
msgstr "Śûòàț áàçó äàäçćíûő äđàéâćđîą CUPS"
-#: ../../printerdrake.pm_.c:1419
+#: ../../printerdrake.pm_.c:1534
#, fuzzy
msgid "Preparing printer database..."
msgstr "Śûòàț áàçó äàäçćíûő äđàéâćđîą CUPS"
-#: ../../printerdrake.pm_.c:1516
+#: ../../printerdrake.pm_.c:1631
#, fuzzy
msgid "Your printer model"
msgstr "Àääàëćíû ïđûíòęđ"
-#: ../../printerdrake.pm_.c:1517
+#: ../../printerdrake.pm_.c:1632
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -7535,28 +7835,28 @@ msgid ""
"%s"
msgstr ""
-#: ../../printerdrake.pm_.c:1522 ../../printerdrake.pm_.c:1525
+#: ../../printerdrake.pm_.c:1637 ../../printerdrake.pm_.c:1640
#, fuzzy
msgid "The model is correct"
msgstr "Ăęòà äàêëàäíà?"
-#: ../../printerdrake.pm_.c:1523 ../../printerdrake.pm_.c:1524
-#: ../../printerdrake.pm_.c:1527
+#: ../../printerdrake.pm_.c:1638 ../../printerdrake.pm_.c:1639
+#: ../../printerdrake.pm_.c:1642
#, fuzzy
msgid "Select model manually"
msgstr "Àääàëćíû ïđûíòęđ"
-#: ../../printerdrake.pm_.c:1543
+#: ../../printerdrake.pm_.c:1659
#, fuzzy
msgid "Printer model selection"
msgstr "Çëóśęííć ïđûíòęđó"
-#: ../../printerdrake.pm_.c:1544
+#: ../../printerdrake.pm_.c:1660
#, fuzzy
msgid "Which printer model do you have?"
msgstr "ßêi òûï äđóêàđêi âû ìàćöć?"
-#: ../../printerdrake.pm_.c:1545
+#: ../../printerdrake.pm_.c:1661
msgid ""
"\n"
"\n"
@@ -7565,18 +7865,18 @@ msgid ""
"standing on a wrong model or on \"Raw printer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1548
+#: ../../printerdrake.pm_.c:1664
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
msgstr ""
-#: ../../printerdrake.pm_.c:1624
+#: ../../printerdrake.pm_.c:1741
#, fuzzy
msgid "OKI winprinter configuration"
msgstr "Íàńòđîéêà çëóśęííÿ ç Iíòęđíęòàì"
-#: ../../printerdrake.pm_.c:1625
+#: ../../printerdrake.pm_.c:1742
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -7586,12 +7886,12 @@ msgid ""
"not work. Your connection type setting will be ignored by the driver."
msgstr ""
-#: ../../printerdrake.pm_.c:1668 ../../printerdrake.pm_.c:1695
+#: ../../printerdrake.pm_.c:1785 ../../printerdrake.pm_.c:1812
#, fuzzy
msgid "Lexmark inkjet configuration"
msgstr "Íàńòđîéêà çëóśęííÿ ç Iíòęđíęòàì"
-#: ../../printerdrake.pm_.c:1669
+#: ../../printerdrake.pm_.c:1786
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
"no printers on remote machines or print server boxes. Please connect your "
@@ -7599,20 +7899,46 @@ msgid ""
"to."
msgstr ""
-#: ../../printerdrake.pm_.c:1696
+#: ../../printerdrake.pm_.c:1813
msgid ""
"To be able to print with your Lexmark inkjet and this configuration, you "
"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
-"com/). Go to the US site and click on the \"Drivers\" button. Then choose "
-"your model and afterwards \"Linux\" as operating system. The drivers come as "
-"RPM packages or shell scripts with interactive graphical installation. You "
-"do not need to do this configuration by the graphical frontends. Cancel "
-"directly after the license agreement. Then print printhead alignment pages "
-"with \"lexmarkmaintain\" and adjust the head alignment settings with this "
-"program."
+"com/). Click on the \"Drivers\" link. Then choose your model and afterwards "
+"\"Linux\" as operating system. The drivers come as RPM packages or shell "
+"scripts with interactive graphical installation. You do not need to do this "
+"configuration by the graphical frontends. Cancel directly after the license "
+"agreement. Then print printhead alignment pages with \"lexmarkmaintain\" and "
+"adjust the head alignment settings with this program."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:1816
+msgid "GDI Laser Printer using the Zenographics ZJ-Stream Format"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:1817
+msgid ""
+"Your printer belongs to the group of GDI laser printers (winprinters) sold "
+"by different manufacturers which uses the Zenographics ZJ-stream raster "
+"format for the data sent to the printer. The driver for these printers is "
+"still in a very early development stage and so it will perhaps not always "
+"work properly. Especially it is possible that the printer only works when "
+"you choose the A4 paper size.\n"
+"\n"
+"Some of these printers, as the HP LaserJet 1000, for which this driver was "
+"originally created, need their firmware to be uploaded to them after they "
+"are turned on. In the case of the HP LaserJet 1000 you have to search the "
+"printer's Windows driver CD or your Windows partition for the file "
+"\"sihp1000.img\" and upload the file to the printer with one of the "
+"following commands:\n"
+"\n"
+" lpr -o raw sihp1000.img\n"
+" cat sihp1000.img > /dev/usb/lp0\n"
+"\n"
+"The first command can be given by any normal user, the second must be given "
+"as root. After having done so you can print normally.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1912
+#: ../../printerdrake.pm_.c:2040
msgid ""
"Printer default settings\n"
"\n"
@@ -7622,34 +7948,34 @@ msgid ""
"printout quality/resolution printing can get substantially slower."
msgstr ""
-#: ../../printerdrake.pm_.c:1921
+#: ../../printerdrake.pm_.c:2049
#, c-format
msgid "Option %s must be an integer number!"
msgstr ""
-#: ../../printerdrake.pm_.c:1925
+#: ../../printerdrake.pm_.c:2053
#, c-format
msgid "Option %s must be a number!"
msgstr ""
-#: ../../printerdrake.pm_.c:1930
+#: ../../printerdrake.pm_.c:2058
#, c-format
msgid "Option %s out of range!"
msgstr ""
-#: ../../printerdrake.pm_.c:1969
+#: ../../printerdrake.pm_.c:2097
#, fuzzy, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
"as the default printer?"
msgstr "Æàäàćöć ïđàòęńöiđàâàöü äđóê?"
-#: ../../printerdrake.pm_.c:1986
+#: ../../printerdrake.pm_.c:2120
#, fuzzy
msgid "Test pages"
msgstr "Ïđàâćđêà ïàđòîą"
-#: ../../printerdrake.pm_.c:1987
+#: ../../printerdrake.pm_.c:2121
msgid ""
"Please select the test pages you want to print.\n"
"Note: the photo test page can take a rather long time to get printed and on "
@@ -7657,45 +7983,45 @@ msgid ""
"it is enough to print the standard test page."
msgstr ""
-#: ../../printerdrake.pm_.c:1991
+#: ../../printerdrake.pm_.c:2125
#, fuzzy
msgid "No test pages"
msgstr "Òàê, íàäđóêàâàöü àáćäçâć ńòàđîíêi òęêńòó"
-#: ../../printerdrake.pm_.c:1992
+#: ../../printerdrake.pm_.c:2126
#, fuzzy
msgid "Print"
msgstr "Ïđûíòęđ"
-#: ../../printerdrake.pm_.c:1994
+#: ../../printerdrake.pm_.c:2183
#, fuzzy
msgid "Standard test page"
msgstr "Ńòàíäàđòíû"
-#: ../../printerdrake.pm_.c:1997
+#: ../../printerdrake.pm_.c:2186
msgid "Alternative test page (Letter)"
msgstr ""
-#: ../../printerdrake.pm_.c:2000
+#: ../../printerdrake.pm_.c:2189
#, fuzzy
msgid "Alternative test page (A4)"
msgstr "Äđóê òęńòàâûő ńòàđîíàê"
-#: ../../printerdrake.pm_.c:2002
+#: ../../printerdrake.pm_.c:2191
#, fuzzy
msgid "Photo test page"
msgstr "Äđóê òęńòàâûő ńòàđîíàê"
-#: ../../printerdrake.pm_.c:2006
+#: ../../printerdrake.pm_.c:2195
#, fuzzy
msgid "Do not print any test page"
msgstr "Äđóê òęńòàâûő ńòàđîíàê"
-#: ../../printerdrake.pm_.c:2014 ../../printerdrake.pm_.c:2166
+#: ../../printerdrake.pm_.c:2204 ../../printerdrake.pm_.c:2357
msgid "Printing test page(s)..."
msgstr "Äđóê òęńòàâûő ńòàđîíàê"
-#: ../../printerdrake.pm_.c:2039
+#: ../../printerdrake.pm_.c:2229
#, fuzzy, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -7711,7 +8037,7 @@ msgstr ""
"\n"
"ší ïđàöóć íàđìàëüíà?"
-#: ../../printerdrake.pm_.c:2043
+#: ../../printerdrake.pm_.c:2233
#, fuzzy
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -7721,16 +8047,16 @@ msgstr ""
"Ïćđàä òûì, ÿê ïđûíòęđ çàïđàöóć, ìîæà ïđàéńöi ïęąíû śàń.\n"
"ší ïđàöóć íàđìàëüíà?"
-#: ../../printerdrake.pm_.c:2050
+#: ../../printerdrake.pm_.c:2240
msgid "Did it work properly?"
msgstr ""
-#: ../../printerdrake.pm_.c:2072 ../../printerdrake.pm_.c:3191
+#: ../../printerdrake.pm_.c:2262 ../../printerdrake.pm_.c:3416
#, fuzzy
msgid "Raw printer"
msgstr "Iìÿ äđóêàđêi"
-#: ../../printerdrake.pm_.c:2098
+#: ../../printerdrake.pm_.c:2288
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -7739,15 +8065,15 @@ msgid ""
"to modify the option settings easily.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2100
+#: ../../printerdrake.pm_.c:2290
msgid ""
"These commands you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications, but here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2103 ../../printerdrake.pm_.c:2120
-#: ../../printerdrake.pm_.c:2130
+#: ../../printerdrake.pm_.c:2293 ../../printerdrake.pm_.c:2310
+#: ../../printerdrake.pm_.c:2320
#, c-format
msgid ""
"\n"
@@ -7756,7 +8082,7 @@ msgid ""
"line, e. g. \"%s <file>\". "
msgstr ""
-#: ../../printerdrake.pm_.c:2106 ../../printerdrake.pm_.c:2146
+#: ../../printerdrake.pm_.c:2296 ../../printerdrake.pm_.c:2336
#, c-format
msgid ""
"To know about the options available for the current printer read either the "
@@ -7764,41 +8090,41 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2110
+#: ../../printerdrake.pm_.c:2300
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2115 ../../printerdrake.pm_.c:2125
+#: ../../printerdrake.pm_.c:2305 ../../printerdrake.pm_.c:2315
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2117 ../../printerdrake.pm_.c:2127
-#: ../../printerdrake.pm_.c:2137
+#: ../../printerdrake.pm_.c:2307 ../../printerdrake.pm_.c:2317
+#: ../../printerdrake.pm_.c:2327
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2122 ../../printerdrake.pm_.c:2132
+#: ../../printerdrake.pm_.c:2312 ../../printerdrake.pm_.c:2322
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
msgstr ""
-#: ../../printerdrake.pm_.c:2135
+#: ../../printerdrake.pm_.c:2325
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\" or \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2139
+#: ../../printerdrake.pm_.c:2329
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -7808,7 +8134,7 @@ msgid ""
"jams.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2143
+#: ../../printerdrake.pm_.c:2333
#, c-format
msgid ""
"\n"
@@ -7817,42 +8143,42 @@ msgid ""
"line, e. g. \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2153
+#: ../../printerdrake.pm_.c:2343
#, fuzzy, c-format
msgid "Printing/Scanning/Photo Cards on \"%s\""
msgstr "Àäëóśęííć àä ńćòêi"
-#: ../../printerdrake.pm_.c:2154
+#: ../../printerdrake.pm_.c:2344
#, fuzzy, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "Àäëóśęííć àä ńćòêi"
-#: ../../printerdrake.pm_.c:2156
+#: ../../printerdrake.pm_.c:2346
#, fuzzy, c-format
msgid "Printing/Photo Card Access on \"%s\""
msgstr "Àäëóśęííć àä ńćòêi"
-#: ../../printerdrake.pm_.c:2157
+#: ../../printerdrake.pm_.c:2347
#, fuzzy, c-format
msgid "Printing on the printer \"%s\""
msgstr "Àäëóśęííć àä ńćòêi"
-#: ../../printerdrake.pm_.c:2160 ../../printerdrake.pm_.c:2163
-#: ../../printerdrake.pm_.c:2164 ../../printerdrake.pm_.c:2165
-#: ../../printerdrake.pm_.c:3175 ../../standalone/drakTermServ_.c:248
-#: ../../standalone/drakbackup_.c:1485 ../../standalone/drakbackup_.c:3530
-#: ../../standalone/drakbug_.c:129 ../../standalone/drakfont_.c:705
+#: ../../printerdrake.pm_.c:2350 ../../printerdrake.pm_.c:2353
+#: ../../printerdrake.pm_.c:2354 ../../printerdrake.pm_.c:2355
+#: ../../printerdrake.pm_.c:3400 ../../standalone/drakTermServ_.c:248
+#: ../../standalone/drakbackup_.c:1560 ../../standalone/drakbackup_.c:4208
+#: ../../standalone/drakbug_.c:130 ../../standalone/drakfont_.c:705
#: ../../standalone/drakfont_.c:1014
#, fuzzy
msgid "Close"
msgstr "Ïîđò ìûűû"
-#: ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2353
#, fuzzy
msgid "Print option list"
msgstr "Îïöûi ïđûíòęđó"
-#: ../../printerdrake.pm_.c:2182
+#: ../../printerdrake.pm_.c:2373
#, c-format
msgid ""
"Your multi-function device was configured automatically to be able to scan. "
@@ -7866,7 +8192,7 @@ msgid ""
"Do not use \"scannerdrake\" for this device!"
msgstr ""
-#: ../../printerdrake.pm_.c:2202
+#: ../../printerdrake.pm_.c:2394
msgid ""
"Your printer was configured automatically to give you access to the photo "
"card drives from your PC. Now you can access your photo cards using the "
@@ -7879,19 +8205,19 @@ msgid ""
"of the file lists."
msgstr ""
-#: ../../printerdrake.pm_.c:2223 ../../printerdrake.pm_.c:2673
-#: ../../printerdrake.pm_.c:2945
+#: ../../printerdrake.pm_.c:2416 ../../printerdrake.pm_.c:2875
+#: ../../printerdrake.pm_.c:3170
#, fuzzy
msgid "Reading printer data..."
msgstr "Śûòàț áàçó äàäçćíûő äđàéâćđîą CUPS"
-#: ../../printerdrake.pm_.c:2243 ../../printerdrake.pm_.c:2271
-#: ../../printerdrake.pm_.c:2306
+#: ../../printerdrake.pm_.c:2436 ../../printerdrake.pm_.c:2464
+#: ../../printerdrake.pm_.c:2499
#, fuzzy
msgid "Transfer printer configuration"
msgstr "Íàńòđîéêà çëóśęííÿ ç Iíòęđíęòàì"
-#: ../../printerdrake.pm_.c:2244
+#: ../../printerdrake.pm_.c:2437
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -7901,51 +8227,51 @@ msgid ""
"Not all queues can be transferred due to the following reasons:\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2247
+#: ../../printerdrake.pm_.c:2440
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2249
+#: ../../printerdrake.pm_.c:2442
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2251
+#: ../../printerdrake.pm_.c:2444
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2253
+#: ../../printerdrake.pm_.c:2446
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:2254
+#: ../../printerdrake.pm_.c:2447
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
"or with native CUPS drivers cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:2255
+#: ../../printerdrake.pm_.c:2448
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
"\"Transfer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:2258
+#: ../../printerdrake.pm_.c:2451
msgid "Do not transfer printers"
msgstr ""
-#: ../../printerdrake.pm_.c:2259 ../../printerdrake.pm_.c:2276
+#: ../../printerdrake.pm_.c:2452 ../../printerdrake.pm_.c:2469
msgid "Transfer"
msgstr ""
-#: ../../printerdrake.pm_.c:2272
+#: ../../printerdrake.pm_.c:2465
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -7953,62 +8279,62 @@ msgid ""
"You can also type a new name or skip this printer."
msgstr ""
-#: ../../printerdrake.pm_.c:2280
+#: ../../printerdrake.pm_.c:2473
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr ""
-#: ../../printerdrake.pm_.c:2285
+#: ../../printerdrake.pm_.c:2478
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
"do you really want to overwrite its configuration?"
msgstr ""
-#: ../../printerdrake.pm_.c:2293
+#: ../../printerdrake.pm_.c:2486
#, fuzzy
msgid "New printer name"
msgstr "Iìÿ äđóêàđêi"
-#: ../../printerdrake.pm_.c:2296
+#: ../../printerdrake.pm_.c:2489
#, c-format
msgid "Transferring %s..."
msgstr ""
-#: ../../printerdrake.pm_.c:2307
+#: ../../printerdrake.pm_.c:2500
#, c-format
msgid ""
"You have transferred your former default printer (\"%s\"), Should it be also "
"the default printer under the new printing system %s?"
msgstr ""
-#: ../../printerdrake.pm_.c:2316
+#: ../../printerdrake.pm_.c:2510
#, fuzzy
msgid "Refreshing printer data..."
msgstr "Śûòàț áàçó äàäçćíûő äđàéâćđîą CUPS"
-#: ../../printerdrake.pm_.c:2324 ../../printerdrake.pm_.c:2395
-#: ../../printerdrake.pm_.c:2407
+#: ../../printerdrake.pm_.c:2518 ../../printerdrake.pm_.c:2590
+#: ../../printerdrake.pm_.c:2602
#, fuzzy
msgid "Configuration of a remote printer"
msgstr "Íàńòđîéêà ïđûíòęđó"
-#: ../../printerdrake.pm_.c:2325
+#: ../../printerdrake.pm_.c:2519
#, fuzzy
msgid "Starting network..."
msgstr "ßêi òûï âàűàăà ISDN çëóśęííÿ?"
-#: ../../printerdrake.pm_.c:2359 ../../printerdrake.pm_.c:2363
-#: ../../printerdrake.pm_.c:2365
+#: ../../printerdrake.pm_.c:2554 ../../printerdrake.pm_.c:2558
+#: ../../printerdrake.pm_.c:2560
#, fuzzy
msgid "Configure the network now"
msgstr "Íàńòđîéêà ńćòêi"
-#: ../../printerdrake.pm_.c:2360
+#: ../../printerdrake.pm_.c:2555
#, fuzzy
msgid "Network functionality not configured"
msgstr "Ìàíiòîđ ïàêóëü íć íàńòđîćíû"
-#: ../../printerdrake.pm_.c:2361
+#: ../../printerdrake.pm_.c:2556
msgid ""
"You are going to configure a remote printer. This needs working network "
"access, but your network is not configured yet. If you go on without network "
@@ -8016,12 +8342,12 @@ msgid ""
"configuring now. How do you want to proceed?"
msgstr ""
-#: ../../printerdrake.pm_.c:2364
+#: ../../printerdrake.pm_.c:2559
#, fuzzy
msgid "Go on without configuring the network"
msgstr "Íàńòđîéêà ńćòêi"
-#: ../../printerdrake.pm_.c:2397
+#: ../../printerdrake.pm_.c:2592
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -8031,34 +8357,34 @@ msgid ""
"\"Printer\""
msgstr ""
-#: ../../printerdrake.pm_.c:2398
+#: ../../printerdrake.pm_.c:2593
msgid ""
"The network access was not running and could not be started. Please check "
"your configuration and your hardware. Then try to configure your remote "
"printer again."
msgstr ""
-#: ../../printerdrake.pm_.c:2408
+#: ../../printerdrake.pm_.c:2603
#, fuzzy
msgid "Restarting printing system..."
msgstr "ßêóț ńińòęìó äđóêó Âû æàäàćöć âûêàđûńòîąâàöü?"
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2641
#, fuzzy
msgid "high"
msgstr "Âûńîêi"
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2641
#, fuzzy
msgid "paranoid"
msgstr "Ïàđàíàiäàëüíû"
-#: ../../printerdrake.pm_.c:2447
+#: ../../printerdrake.pm_.c:2642
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr ""
-#: ../../printerdrake.pm_.c:2448
+#: ../../printerdrake.pm_.c:2643
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -8073,12 +8399,12 @@ msgid ""
"Do you really want to configure printing on this machine?"
msgstr ""
-#: ../../printerdrake.pm_.c:2480
+#: ../../printerdrake.pm_.c:2675
#, fuzzy
msgid "Starting the printing system at boot time"
msgstr "ßêóț ńińòęìó äđóêó Âû æàäàćöć âûêàđûńòîąâàöü?"
-#: ../../printerdrake.pm_.c:2481
+#: ../../printerdrake.pm_.c:2676
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -8092,81 +8418,76 @@ msgid ""
"again?"
msgstr ""
-#: ../../printerdrake.pm_.c:2504 ../../printerdrake.pm_.c:2544
-#: ../../printerdrake.pm_.c:2581 ../../printerdrake.pm_.c:2621
-#: ../../printerdrake.pm_.c:2733
+#: ../../printerdrake.pm_.c:2700 ../../printerdrake.pm_.c:2741
+#: ../../printerdrake.pm_.c:2780 ../../printerdrake.pm_.c:2822
+#: ../../printerdrake.pm_.c:2943
msgid "Checking installed software..."
msgstr ""
-#: ../../printerdrake.pm_.c:2548
+#: ../../printerdrake.pm_.c:2746
msgid "Removing LPRng..."
msgstr ""
-#: ../../printerdrake.pm_.c:2585
+#: ../../printerdrake.pm_.c:2785
msgid "Removing LPD..."
msgstr ""
-#: ../../printerdrake.pm_.c:2657
+#: ../../printerdrake.pm_.c:2858
#, fuzzy
msgid "Select Printer Spooler"
msgstr "Âûáàđ òûïó çëóśęííÿ ïđûíòęđó"
-#: ../../printerdrake.pm_.c:2658
+#: ../../printerdrake.pm_.c:2859
#, fuzzy
msgid "Which printing system (spooler) do you want to use?"
msgstr "ßêóț ńińòęìó äđóêó Âû æàäàćöć âûêàđûńòîąâàöü?"
-#: ../../printerdrake.pm_.c:2691
+#: ../../printerdrake.pm_.c:2895
#, fuzzy, c-format
msgid "Configuring printer \"%s\"..."
msgstr "Íàńòđîéêà ïđûíòęđó"
-#: ../../printerdrake.pm_.c:2704
+#: ../../printerdrake.pm_.c:2909
#, fuzzy
msgid "Installing Foomatic..."
msgstr "Óńòàëÿâàííć ïàêćòó %s"
-#: ../../printerdrake.pm_.c:2769 ../../printerdrake.pm_.c:2808
-#: ../../printerdrake.pm_.c:3192 ../../printerdrake.pm_.c:3262
+#: ../../printerdrake.pm_.c:2979 ../../printerdrake.pm_.c:3020
+#: ../../printerdrake.pm_.c:3417 ../../printerdrake.pm_.c:3490
msgid "Printer options"
msgstr "Îïöûi ïđûíòęđó"
-#: ../../printerdrake.pm_.c:2778
+#: ../../printerdrake.pm_.c:2989
#, fuzzy
-msgid "Preparing PrinterDrake..."
+msgid "Preparing Printerdrake..."
msgstr "Śûòàț áàçó äàäçćíûő äđàéâćđîą CUPS"
-#: ../../printerdrake.pm_.c:2795 ../../printerdrake.pm_.c:3349
+#: ../../printerdrake.pm_.c:3007 ../../printerdrake.pm_.c:3580
#, fuzzy
msgid "Configuring applications..."
msgstr "Íàńòđîéêà ïđûíòęđó"
-#: ../../printerdrake.pm_.c:2815
+#: ../../printerdrake.pm_.c:3027
#, fuzzy
msgid "Would you like to configure printing?"
msgstr "Æàäàćöć íàńòđîiöü ïđûíòęđ?"
-#: ../../printerdrake.pm_.c:2827
+#: ../../printerdrake.pm_.c:3039
msgid "Printing system: "
msgstr ""
-#: ../../printerdrake.pm_.c:2875
-#, fuzzy
-msgid "Printerdrake"
-msgstr "Ïđûíòęđ"
-
-#: ../../printerdrake.pm_.c:2879
+#: ../../printerdrake.pm_.c:3099
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; to view information about it; "
"or to make a printer on a remote CUPS server available for Star Office/"
-"OpenOffice.org."
+"OpenOffice.org/GIMP."
msgstr ""
"Òóò çìÿűśàțööà śęđăi äđóêó.\n"
"Âû ìîæàöć äàäàöü ÿűśę, àëüáî çìÿíiöü ińíóțśûÿ."
-#: ../../printerdrake.pm_.c:2880
+#: ../../printerdrake.pm_.c:3100
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
@@ -8176,138 +8497,140 @@ msgstr ""
"Òóò çìÿűśàțööà śęđăi äđóêó.\n"
"Âû ìîæàöć äàäàöü ÿűśę, àëüáî çìÿíiöü ińíóțśûÿ."
-#: ../../printerdrake.pm_.c:2906
+#: ../../printerdrake.pm_.c:3127
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr ""
-#: ../../printerdrake.pm_.c:2924
+#: ../../printerdrake.pm_.c:3145
#, fuzzy
msgid "Change the printing system"
msgstr "Íàńòđîéêà ńćòêi"
-#: ../../printerdrake.pm_.c:2929 ../../standalone/drakconnect_.c:277
+#: ../../printerdrake.pm_.c:3150 ../../standalone/drakconnect_.c:277
#, fuzzy
msgid "Normal Mode"
msgstr "Çâûśàéíû"
-#: ../../printerdrake.pm_.c:3085 ../../printerdrake.pm_.c:3135
-#: ../../printerdrake.pm_.c:3343
+#: ../../printerdrake.pm_.c:3310 ../../printerdrake.pm_.c:3360
+#: ../../printerdrake.pm_.c:3573
#, fuzzy
msgid "Do you want to configure another printer?"
msgstr "Öi æàäàćöć ïđàòęńöiđàâàöü íàńòđîéêi?"
-#: ../../printerdrake.pm_.c:3170
+#: ../../printerdrake.pm_.c:3395
#, fuzzy
msgid "Modify printer configuration"
msgstr "Íàńòđîéêà çëóśęííÿ ç Iíòęđíęòàì"
-#: ../../printerdrake.pm_.c:3172
+#: ../../printerdrake.pm_.c:3397
#, fuzzy, c-format
msgid ""
"Printer %s\n"
"What do you want to modify on this printer?"
msgstr "Öi æàäàćöć ïđàòęńöiđàâàöü íàńòđîéêi?"
-#: ../../printerdrake.pm_.c:3176
+#: ../../printerdrake.pm_.c:3401
msgid "Do it!"
msgstr ""
-#: ../../printerdrake.pm_.c:3181 ../../printerdrake.pm_.c:3236
+#: ../../printerdrake.pm_.c:3406 ../../printerdrake.pm_.c:3461
#, fuzzy
msgid "Printer connection type"
msgstr "Ńóìćńíàć Iíòęđíęò-çëóśęííć"
-#: ../../printerdrake.pm_.c:3182 ../../printerdrake.pm_.c:3240
+#: ../../printerdrake.pm_.c:3407 ../../printerdrake.pm_.c:3465
#, fuzzy
msgid "Printer name, description, location"
msgstr "Çëóśęííć ïđûíòęđó"
-#: ../../printerdrake.pm_.c:3184 ../../printerdrake.pm_.c:3255
+#: ../../printerdrake.pm_.c:3409 ../../printerdrake.pm_.c:3483
msgid "Printer manufacturer, model, driver"
msgstr ""
-#: ../../printerdrake.pm_.c:3185 ../../printerdrake.pm_.c:3256
+#: ../../printerdrake.pm_.c:3410 ../../printerdrake.pm_.c:3484
msgid "Printer manufacturer, model"
msgstr ""
-#: ../../printerdrake.pm_.c:3194 ../../printerdrake.pm_.c:3266
+#: ../../printerdrake.pm_.c:3419 ../../printerdrake.pm_.c:3494
msgid "Set this printer as the default"
msgstr ""
-#: ../../printerdrake.pm_.c:3196 ../../printerdrake.pm_.c:3271
-msgid "Add this printer to Star Office/OpenOffice.org"
+#: ../../printerdrake.pm_.c:3421 ../../printerdrake.pm_.c:3499
+msgid "Add this printer to Star Office/OpenOffice.org/GIMP"
msgstr ""
-#: ../../printerdrake.pm_.c:3197 ../../printerdrake.pm_.c:3280
-msgid "Remove this printer from Star Office/OpenOffice.org"
+#: ../../printerdrake.pm_.c:3422 ../../printerdrake.pm_.c:3508
+msgid "Remove this printer from Star Office/OpenOffice.org/GIMP"
msgstr ""
-#: ../../printerdrake.pm_.c:3198 ../../printerdrake.pm_.c:3289
+#: ../../printerdrake.pm_.c:3423 ../../printerdrake.pm_.c:3517
#, fuzzy
msgid "Print test pages"
msgstr "Äđóê òęńòàâûő ńòàđîíàê"
-#: ../../printerdrake.pm_.c:3199 ../../printerdrake.pm_.c:3291
+#: ../../printerdrake.pm_.c:3424 ../../printerdrake.pm_.c:3519
#, fuzzy
msgid "Know how to use this printer"
msgstr "Öi æàäàćöć ïđàòęńöiđàâàöü íàńòđîéêi?"
-#: ../../printerdrake.pm_.c:3201 ../../printerdrake.pm_.c:3293
+#: ../../printerdrake.pm_.c:3426 ../../printerdrake.pm_.c:3521
#, fuzzy
msgid "Remove printer"
msgstr "Àääàëćíû ïđûíòęđ"
-#: ../../printerdrake.pm_.c:3245
+#: ../../printerdrake.pm_.c:3472
#, fuzzy, c-format
msgid "Removing old printer \"%s\"..."
msgstr "Śûòàț áàçó äàäçćíûő äđàéâćđîą CUPS"
-#: ../../printerdrake.pm_.c:3269
+#: ../../printerdrake.pm_.c:3497
#, fuzzy
msgid "Default printer"
msgstr "Ëàêàëüíû ïđûíòęđ"
-#: ../../printerdrake.pm_.c:3270
+#: ../../printerdrake.pm_.c:3498
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr ""
-#: ../../printerdrake.pm_.c:3274 ../../printerdrake.pm_.c:3277
-msgid "Adding printer to Star Office/OpenOffice.org"
+#: ../../printerdrake.pm_.c:3502 ../../printerdrake.pm_.c:3505
+msgid "Adding printer to Star Office/OpenOffice.org/GIMP"
msgstr ""
-#: ../../printerdrake.pm_.c:3275
+#: ../../printerdrake.pm_.c:3503
#, c-format
msgid ""
-"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
+"The printer \"%s\" was successfully added to Star Office/OpenOffice.org/GIMP."
msgstr ""
-#: ../../printerdrake.pm_.c:3278
+#: ../../printerdrake.pm_.c:3506
#, c-format
-msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
+msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org/GIMP."
msgstr ""
-#: ../../printerdrake.pm_.c:3283 ../../printerdrake.pm_.c:3286
-msgid "Removing printer from Star Office/OpenOffice.org"
+#: ../../printerdrake.pm_.c:3511 ../../printerdrake.pm_.c:3514
+msgid "Removing printer from Star Office/OpenOffice.org/GIMP"
msgstr ""
-#: ../../printerdrake.pm_.c:3284
+#: ../../printerdrake.pm_.c:3512
#, c-format
msgid ""
-"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
+"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org/"
+"GIMP."
msgstr ""
-#: ../../printerdrake.pm_.c:3287
+#: ../../printerdrake.pm_.c:3515
#, c-format
-msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
+msgid ""
+"Failed to remove the printer \"%s\" from Star Office/OpenOffice.org/GIMP."
msgstr ""
-#: ../../printerdrake.pm_.c:3295
+#: ../../printerdrake.pm_.c:3523
#, fuzzy, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr "Öi æàäàćöć ïđàòęńöiđàâàöü íàńòđîéêi?"
-#: ../../printerdrake.pm_.c:3297
+#: ../../printerdrake.pm_.c:3527
#, fuzzy, c-format
msgid "Removing printer \"%s\"..."
msgstr "Śûòàț áàçó äàäçćíûő äđàéâćđîą CUPS"
@@ -8708,7 +9031,7 @@ msgstr "öiêàâà"
msgid "File sharing"
msgstr ""
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1669
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1744
#, fuzzy
msgid "System"
msgstr "Mouse Systems"
@@ -8768,193 +9091,228 @@ msgstr "Ńòàđòàâàć ìćíț"
msgid "Stop"
msgstr "Ńćêòàđ"
-#: ../../share/advertising/00-thanks.pl_.c:9
-msgid "Thank you for choosing Mandrake Linux 8.2"
+#: ../../share/advertising/01-thanks.pl_.c:9
+msgid "Thank you for choosing Mandrake Linux 9.0"
msgstr ""
-#: ../../share/advertising/00-thanks.pl_.c:10
+#: ../../share/advertising/01-thanks.pl_.c:10
msgid "Welcome to the Open Source world"
msgstr ""
-#: ../../share/advertising/00-thanks.pl_.c:11
+#: ../../share/advertising/01-thanks.pl_.c:11
msgid ""
"The success of MandrakeSoft is based upon the principle of Free Software. "
"Your new operating system is the result of collaborative work on the part of "
"the worldwide Linux Community"
msgstr ""
-#: ../../share/advertising/01-gnu.pl_.c:9
+#: ../../share/advertising/02-community.pl_.c:9
#, fuzzy
-msgid "Join the Free Software world"
+msgid "Get involved in the Free Software world"
msgstr "Ïàäêëțśęííć"
-#: ../../share/advertising/01-gnu.pl_.c:10
+#: ../../share/advertising/02-community.pl_.c:10
+msgid "Want to know more about the Open Source community?"
+msgstr ""
+
+#: ../../share/advertising/02-community.pl_.c:11
msgid ""
-"Get to know the Open Source community and become a member. Learn, teach, and "
-"help others by joining the many discussion forums that you will find in our "
-"\"Community\" webpages"
+"To share your own knowledge and help build Linux tools, join the discussions "
+"forum you'll find on our \"Community\" webpages"
msgstr ""
-#: ../../share/advertising/02-internet.pl_.c:9
+#: ../../share/advertising/03-internet.pl_.c:9
#, fuzzy
-msgid "Internet and Messaging"
-msgstr "Íàńòđîéêà çëóśęííÿ ç Iíòęđíęòàì"
+msgid "Get the most from the Internet"
+msgstr "Äàëóśęííć äà Iíòęđíęòó"
-#: ../../share/advertising/02-internet.pl_.c:10
+#: ../../share/advertising/03-internet.pl_.c:10
msgid ""
-"Mandrake Linux 8.2 provides the best software to access everything the "
-"Internet has to offer: Surf the web & view animations with Mozilla and "
-"Konqueror, exchange email & organize your personal information with "
-"Evolution and Kmail, and much more"
+"Mandrake Linux 9.0 has selected the best software for you. Surf the Web and "
+"view animations with Mozilla and Konqueror, or read your mail and handle "
+"your personal information with Evolution and Kmail"
msgstr ""
-#: ../../share/advertising/03-graphic.pl_.c:9
-#, fuzzy
-msgid "Multimedia and Graphics"
-msgstr "Ìóëüòûìćäûÿ - Ăđàôłêà"
+#: ../../share/advertising/04-multimedia.pl_.c:9
+msgid "Discover the most up-to-date graphics and multimedia tools!"
+msgstr ""
+
+#: ../../share/advertising/04-multimedia.pl_.c:10
+msgid "Push multimedia to its limits!"
+msgstr ""
-#: ../../share/advertising/03-graphic.pl_.c:10
+#: ../../share/advertising/04-multimedia.pl_.c:11
msgid ""
-"Mandrake Linux 8.2 lets you push your multimedia computer to its limits! Use "
-"the latest software to play music and audio files, edit and organize your "
-"images and photos, watch TV and videos, and much more"
+"Mandrake Linux 9.0 enables you to use the very latest software to play audio "
+"files, edit and handle your images or photos, and play videos"
msgstr ""
-#: ../../share/advertising/04-develop.pl_.c:9
-#, fuzzy
-msgid "Development"
-msgstr "đàńïđàöîąűśûê"
+#: ../../share/advertising/05-games.pl_.c:9
+msgid "Games"
+msgstr "Çàáàâû"
-#: ../../share/advertising/04-develop.pl_.c:10
+#: ../../share/advertising/05-games.pl_.c:10
msgid ""
-"Mandrake Linux 8.2 is the ultimate development platform. Discover the power "
-"of the GNU gcc compiler as well as the best Open Source development "
-"environments"
+"Mandrake Linux 9.0 provides the best Open Source games - arcade, action, "
+"cards, sports, strategy..."
msgstr ""
-#: ../../share/advertising/05-contcenter.pl_.c:9
-#: ../../standalone/drakbug_.c:69
+#: ../../share/advertising/06-mcc.pl_.c:9 ../../standalone/drakbug_.c:69
#, fuzzy
msgid "Mandrake Control Center"
msgstr "Äàëóśęííć äà Iíòęđíęòó"
-#: ../../share/advertising/05-contcenter.pl_.c:10
+#: ../../share/advertising/06-mcc.pl_.c:10
msgid ""
-"The Mandrake Linux 8.2 Control Center is a one-stop location for fully "
-"customizing and configuring your Mandrake system"
+"Mandrake Linux 9.0 provides a powerful tool to fully customize and configure "
+"your machine"
msgstr ""
-#: ../../share/advertising/06-user.pl_.c:9
+#: ../../share/advertising/07-desktop.pl_.c:9
#, fuzzy
msgid "User interfaces"
msgstr "Ńćòêàâû iíòęđôćéń"
-#: ../../share/advertising/06-user.pl_.c:10
+#: ../../share/advertising/07-desktop.pl_.c:10
msgid ""
-"Mandrake Linux 8.2 provides 11 different graphical desktop environments and "
-"window managers to choose from including GNOME 1.4, KDE 2.2.2, Window Maker "
-"0.8, and the rest"
+"Mandrake Linux 9.0 provides 11 user interfaces which can be fully modified: "
+"KDE 3, Gnome 2, WindowMaker..."
msgstr ""
-#: ../../share/advertising/07-server.pl_.c:9
+#: ../../share/advertising/08-development.pl_.c:9
#, fuzzy
-msgid "Server Software"
-msgstr "Iìÿ ńćđâćđó SMB"
+msgid "Development simplified"
+msgstr "đàńïđàöîąűśûê"
+
+#: ../../share/advertising/08-development.pl_.c:10
+msgid "Mandrake Linux 9.0 is the ultimate development platform"
+msgstr ""
-#: ../../share/advertising/07-server.pl_.c:10
+#: ../../share/advertising/08-development.pl_.c:11
msgid ""
-"Transform your machine into a powerful server with just a few clicks of the "
-"mouse: Web server, email, firewall, router, file and print server, ..."
+"Use the full power of the GNU gcc 3 compiler as well as the best Open Source "
+"development environments"
msgstr ""
-#: ../../share/advertising/08-games.pl_.c:9
-msgid "Games"
-msgstr "Çàáàâû"
+#: ../../share/advertising/09-server.pl_.c:9
+msgid "Turn your machine into a reliable server"
+msgstr ""
-#: ../../share/advertising/08-games.pl_.c:10
+#: ../../share/advertising/09-server.pl_.c:10
msgid ""
-"Mandrake Linux 8.2 provides the best Open Source games - arcade, action, "
-"cards, sports, strategy, ..."
+"Transform your machine into a powerful server in a few clicks of your mouse: "
+"Web server, mail, firewall, router, file and print server..."
msgstr ""
-#: ../../share/advertising/09-MDKcampus.pl_.c:9
-msgid "MandrakeCampus"
+#: ../../share/advertising/10-mnf.pl_.c:9
+msgid "Optimize your security"
msgstr ""
-#: ../../share/advertising/09-MDKcampus.pl_.c:10
+#: ../../share/advertising/10-mnf.pl_.c:10
msgid ""
-"Would you like to learn Linux simply, quickly, and for free? MandrakeSoft "
-"provides free Linux training, as well as a way to test your progress, at "
-"MandrakeCampus -- our online training center"
+"The MandrakeSecurity range includes the Multi Network Firewall product (M.N."
+"F.)"
msgstr ""
-#: ../../share/advertising/10-MDKexpert.pl_.c:9
-#, fuzzy
-msgid "MandrakeExpert"
-msgstr "ęêńïćđò"
+#: ../../share/advertising/10-mnf.pl_.c:11
+msgid ""
+"This firewall product includes network features which allow you to fulfill "
+"all your security needs"
+msgstr ""
+
+#: ../../share/advertising/10-mnf.pl_.c:12
+msgid "This product is available on MandrakeStore website"
+msgstr ""
+
+#: ../../share/advertising/11-mdkstore.pl_.c:9
+msgid "The official MandrakeSoft store"
+msgstr ""
+
+#: ../../share/advertising/11-mdkstore.pl_.c:10
+msgid ""
+"Our full range of Linux solutions, as well as special offers on products and "
+"'goodies', are available online at our e-store"
+msgstr ""
+
+#: ../../share/advertising/12-mdkstore.pl_.c:9
+msgid "Strategic partners"
+msgstr ""
+
+#: ../../share/advertising/12-mdkstore.pl_.c:10
+msgid ""
+"MandrakeSoft works alongside a selection of companies offering professional "
+"solutions compatible with Mandrake Linux; a list of these partners is "
+"available on the MandrakeStore"
+msgstr ""
-#: ../../share/advertising/10-MDKexpert.pl_.c:10
+#: ../../share/advertising/13-mdkcampus.pl_.c:9
+msgid "Discover MandrakeSoft's training catalogue Linux-Campus"
+msgstr ""
+
+#: ../../share/advertising/13-mdkcampus.pl_.c:10
msgid ""
-"Quality support from the Linux Community, and from MandrakeSoft, is just "
-"around the corner. And if you're already a Linux veteran, become an \"Expert"
-"\" and share your knowledge at our support website"
+"The training program has been create to respond to the needs of both users "
+"and experts (Network and System administrations)"
msgstr ""
-#: ../../share/advertising/11-consul.pl_.c:9
-msgid "MandrakeConsulting"
+#: ../../share/advertising/13-mdkcampus.pl_.c:11
+msgid "Certify yourself on Linux"
msgstr ""
-#: ../../share/advertising/11-consul.pl_.c:10
+#: ../../share/advertising/13-mdkcampus.pl_.c:12
msgid ""
-"For all of your IT projects, our consultants are ready to analyze your "
-"requirements and offer a customized solution. Benefit from MandrakeSoft's "
-"vast experience as a Linux producer to provide a true IT alternative for "
-"your business organization"
+"Whether you choose to teach yourself online or via our network of training "
+"partners, the Linux-Campus catalogue prepares you for the acknowledged LPI "
+"certification program (worldwide professional technical certification)"
msgstr ""
-#: ../../share/advertising/12-MDKstore.pl_.c:9
+#: ../../share/advertising/14-mdkexpert.pl_.c:9
#, fuzzy
-msgid "MandrakeStore"
-msgstr "àáàâÿçêîâà"
+msgid "Become a MandrakeExpert"
+msgstr "ęêńïćđò"
-#: ../../share/advertising/12-MDKstore.pl_.c:10
+#: ../../share/advertising/14-mdkexpert.pl_.c:10
msgid ""
-"A full range of Linux solutions, as well as special offers on products and "
-"'goodies', are available online at our e-store"
+"Find the solutions to your problems via MandrakeSoft's online support "
+"platform"
msgstr ""
-#: ../../share/advertising/13-Nvert.pl_.c:9
+#: ../../share/advertising/14-mdkexpert.pl_.c:11
msgid ""
-"For more information on MandrakeSoft's Professional Services and commercial "
-"offerings, please see the following web page:"
+"Join the MandrakeSoft support teams and the Linux Community online to share "
+"your knowledge and help others by becoming a recognized Expert on the online "
+"technical support website:"
+msgstr ""
+
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:9
+#, fuzzy
+msgid "MandrakeExpert Corporate"
+msgstr "ęêńïćđò"
+
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:10
+msgid "An online platform to respond to company's specific support needs"
msgstr ""
-#: ../../share/advertising/13-Nvert.pl_.c:11
-msgid "http://www.mandrakesoft.com/sales/contact"
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:11
+msgid ""
+"All incidents will be followed up by a single qualified MandrakeSoft "
+"technical expert."
msgstr ""
-#: ../../standalone.pm_.c:40
+#: ../../standalone.pm_.c:41
#, fuzzy
msgid "Installing packages..."
msgstr "Óńòàëÿâàííć ïàêćòó %s"
-#: ../../standalone/XFdrake_.c:143
+#: ../../standalone/XFdrake_.c:145
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "Êàëi ëàńêà, âûéäçiöć, à ïîòûì ńêàđûńòàéöć Ctrl-Alt-BackSpace"
-#: ../../standalone/XFdrake_.c:147
+#: ../../standalone/XFdrake_.c:149
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "Êàëi ëàńêà, ïćđàéäçiöć ą %s äëÿ àêòûâàöûi çìÿíćííÿą"
-#: ../../standalone/diskdrake_.c:81
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I'll try to go on blanking bad partitions"
-msgstr ""
-"Òàáëiöà đàçäçćëàą íć śûòàćööà, ÿíà çàíàäòà ńàïńàâàíà äëÿ ìćíÿ :(\n"
-"Ïàńïđàáóț ińöi äàëćé i áóäó ïđàïóńêàöü äđęííûÿ đàçäçćëû"
-
#: ../../standalone/drakTermServ_.c:188
#, fuzzy
msgid "Mandrake Terminal Server Configuration"
@@ -8998,12 +9356,13 @@ msgstr "Äàäàöü êàđûńòàëüíiêà"
msgid "Add/Del Clients"
msgstr ""
-#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3282
-#: ../../standalone/drakbackup_.c:3315 ../../standalone/drakbackup_.c:3341
-#: ../../standalone/drakbackup_.c:3368 ../../standalone/drakbackup_.c:3395
-#: ../../standalone/drakbackup_.c:3434 ../../standalone/drakbackup_.c:3455
-#: ../../standalone/drakbackup_.c:3482 ../../standalone/drakbackup_.c:3508
-#: ../../standalone/drakbackup_.c:3533 ../../standalone/drakfont_.c:700
+#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3930
+#: ../../standalone/drakbackup_.c:3963 ../../standalone/drakbackup_.c:3989
+#: ../../standalone/drakbackup_.c:4016 ../../standalone/drakbackup_.c:4043
+#: ../../standalone/drakbackup_.c:4082 ../../standalone/drakbackup_.c:4103
+#: ../../standalone/drakbackup_.c:4130 ../../standalone/drakbackup_.c:4160
+#: ../../standalone/drakbackup_.c:4186 ../../standalone/drakbackup_.c:4211
+#: ../../standalone/drakfont_.c:700
msgid "Help"
msgstr ""
@@ -9162,8 +9521,8 @@ msgid ""
"The parameters of the auto-install are available in the sections on the left"
msgstr ""
-#: ../../standalone/drakautoinst_.c:239 ../../standalone/drakgw_.c:548
-#: ../../standalone/scannerdrake_.c:105
+#: ../../standalone/drakautoinst_.c:239 ../../standalone/drakgw_.c:484
+#: ../../standalone/scannerdrake_.c:119
msgid "Congratulations!"
msgstr "Ïđûìłöć âiíűàâàííi!"
@@ -9188,27 +9547,31 @@ msgstr "Äàäàöü êàđûńòàëüíiêà"
msgid "Remove the last item"
msgstr "Ôàđìàòàâàííć âiđòóàëüíàăà đàçäçćëó %s"
-#: ../../standalone/drakbackup_.c:625
+#: ../../standalone/drakbackup_.c:619
msgid "Cron not available yet as non-root"
msgstr ""
-#: ../../standalone/drakbackup_.c:731
+#: ../../standalone/drakbackup_.c:725
msgid "WARNING"
msgstr ""
-#: ../../standalone/drakbackup_.c:732
+#: ../../standalone/drakbackup_.c:726
#, fuzzy
msgid "FATAL"
msgstr "FAT"
-#: ../../standalone/drakbackup_.c:744
+#: ../../standalone/drakbackup_.c:727
+msgid "INFO"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:739
msgid ""
"\n"
" DrakBackup Report \n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:745
+#: ../../standalone/drakbackup_.c:740
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -9216,7 +9579,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:749
+#: ../../standalone/drakbackup_.c:744
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -9224,13 +9587,20 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:770 ../../standalone/drakbackup_.c:840
-#: ../../standalone/drakbackup_.c:894
+#: ../../standalone/drakbackup_.c:765 ../../standalone/drakbackup_.c:835
+#: ../../standalone/drakbackup_.c:889
#, fuzzy
msgid "Total progess"
msgstr "Ïđàâćđêà ïàđòîą"
-#: ../../standalone/drakbackup_.c:822
+#: ../../standalone/drakbackup_.c:788
+msgid ""
+"Sorry, perl-Expect is not installed/enabled. To use\n"
+"this feature, install perl-Expect and comment lines 772-774,\n"
+" as well as 788,789. Then uncomment line 787."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:817
#, c-format
msgid ""
"%s exists, delete?\n"
@@ -9239,16 +9609,41 @@ msgid ""
" need to purge the entry from authorized_keys on the server."
msgstr ""
-#: ../../standalone/drakbackup_.c:831
+#: ../../standalone/drakbackup_.c:826
msgid "This may take a moment to generate the keys."
msgstr ""
-#: ../../standalone/drakbackup_.c:838
+#: ../../standalone/drakbackup_.c:833
#, c-format
msgid "ERROR: Cannot spawn %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:865
+#: ../../standalone/drakbackup_.c:850
+#, c-format
+msgid "No password prompt on %s at port %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:851
+#, fuzzy, c-format
+msgid "Bad password on %s"
+msgstr "Íÿìà ïàđîëț"
+
+#: ../../standalone/drakbackup_.c:852
+#, c-format
+msgid "Permission denied transferring %s to %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:853
+#, fuzzy, c-format
+msgid "Can't find %s on %s"
+msgstr "Ïàìûëêà àäêđûööÿ %s äëÿ çàïińó: %s"
+
+#: ../../standalone/drakbackup_.c:856
+#, c-format
+msgid "%s not responding"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:860
#, c-format
msgid ""
"Transfer successful\n"
@@ -9259,63 +9654,68 @@ msgid ""
"without being prompted for a password."
msgstr ""
-#: ../../standalone/drakbackup_.c:908
+#: ../../standalone/drakbackup_.c:903
msgid "WebDAV remote site already in sync!"
msgstr ""
-#: ../../standalone/drakbackup_.c:912
+#: ../../standalone/drakbackup_.c:907
msgid "WebDAV transfer failed!"
msgstr ""
-#: ../../standalone/drakbackup_.c:934
+#: ../../standalone/drakbackup_.c:928
msgid "No CDR/DVDR in drive!"
msgstr ""
-#: ../../standalone/drakbackup_.c:938
+#: ../../standalone/drakbackup_.c:932
msgid "Does not appear to be recordable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:942
+#: ../../standalone/drakbackup_.c:936
msgid "Not erasable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:981
+#: ../../standalone/drakbackup_.c:975
msgid "This may take a moment to erase the media."
msgstr ""
-#: ../../standalone/drakbackup_.c:1045
+#: ../../standalone/drakbackup_.c:1060
msgid "Permission problem accessing CD."
msgstr ""
-#: ../../standalone/drakbackup_.c:1144 ../../standalone/drakbackup_.c:1193
+#: ../../standalone/drakbackup_.c:1087
+#, c-format
+msgid "No tape in %s!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1199 ../../standalone/drakbackup_.c:1248
msgid "Backup system files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:1194 ../../standalone/drakbackup_.c:1261
+#: ../../standalone/drakbackup_.c:1249 ../../standalone/drakbackup_.c:1316
#, fuzzy
msgid "Hard Disk Backup files..."
msgstr "Äđęííû ôàéë đęçćđâîâàé êîïii"
-#: ../../standalone/drakbackup_.c:1206
+#: ../../standalone/drakbackup_.c:1261
#, fuzzy
msgid "Backup User files..."
msgstr "Äđęííû ôàéë đęçćđâîâàé êîïii"
-#: ../../standalone/drakbackup_.c:1207
+#: ../../standalone/drakbackup_.c:1262
msgid "Hard Disk Backup Progress..."
msgstr ""
-#: ../../standalone/drakbackup_.c:1260
+#: ../../standalone/drakbackup_.c:1315
#, fuzzy
msgid "Backup Other files..."
msgstr "Äđęííû ôàéë đęçćđâîâàé êîïii"
-#: ../../standalone/drakbackup_.c:1266
+#: ../../standalone/drakbackup_.c:1321
#, fuzzy
msgid "No changes to backup!"
msgstr "Äđęííû ôàéë đęçćđâîâàé êîïii"
-#: ../../standalone/drakbackup_.c:1282 ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1337 ../../standalone/drakbackup_.c:1360
#, c-format
msgid ""
"\n"
@@ -9323,803 +9723,926 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1289
+#: ../../standalone/drakbackup_.c:1344
#, c-format
msgid ""
-"file list sent by FTP : %s\n"
+"file list sent by FTP: %s\n"
" "
msgstr ""
-#: ../../standalone/drakbackup_.c:1292
+#: ../../standalone/drakbackup_.c:1347
msgid ""
"\n"
" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1310
+#: ../../standalone/drakbackup_.c:1365
msgid ""
"\n"
"Drakbackup activities via CD:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1315
+#: ../../standalone/drakbackup_.c:1370
msgid ""
"\n"
"Drakbackup activities via tape:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1324
+#: ../../standalone/drakbackup_.c:1379
#, fuzzy
msgid " Error during mail sending. \n"
msgstr "Ïàìûëêà śûòàííÿ ôàéëó %s"
-#: ../../standalone/drakbackup_.c:1346
+#: ../../standalone/drakbackup_.c:1404
msgid "Can't create catalog!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1459 ../../standalone/drakbackup_.c:1470
-#: ../../standalone/drakbackup_.c:1481 ../../standalone/drakfont_.c:1004
+#: ../../standalone/drakbackup_.c:1517 ../../standalone/drakbackup_.c:1528
+#: ../../standalone/drakfont_.c:1004
#, fuzzy
msgid "File Selection"
msgstr "Âûáàđ ăđóïû ïàêćòàą"
-#: ../../standalone/drakbackup_.c:1486
+#: ../../standalone/drakbackup_.c:1556
msgid "Select the files or directories and click on 'Add'"
msgstr ""
-#: ../../standalone/drakbackup_.c:1525
+#: ../../standalone/drakbackup_.c:1600
msgid ""
"\n"
"Please check all options that you need.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1526
+#: ../../standalone/drakbackup_.c:1601
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1527
+#: ../../standalone/drakbackup_.c:1602
#, fuzzy
msgid "Backup your System files. (/etc directory)"
msgstr "Äđęííû ôàéë đęçćđâîâàé êîïii"
-#: ../../standalone/drakbackup_.c:1528
+#: ../../standalone/drakbackup_.c:1603
msgid "Use incremental backup (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1529
+#: ../../standalone/drakbackup_.c:1604
msgid "Do not include critical files (passwd, group, fstab)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1530
+#: ../../standalone/drakbackup_.c:1605
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr ""
-#: ../../standalone/drakbackup_.c:1547
+#: ../../standalone/drakbackup_.c:1622
#, fuzzy
msgid "Please check all users that you want to include in your backup."
msgstr "Âûáàđ ïàêćòàą äëÿ ąńòàëÿâàííÿ"
-#: ../../standalone/drakbackup_.c:1574
+#: ../../standalone/drakbackup_.c:1649
msgid "Do not include the browser cache"
msgstr ""
-#: ../../standalone/drakbackup_.c:1575 ../../standalone/drakbackup_.c:1599
+#: ../../standalone/drakbackup_.c:1650 ../../standalone/drakbackup_.c:1674
msgid "Use Incremental Backups (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1597 ../../standalone/drakfont_.c:1058
+#: ../../standalone/drakbackup_.c:1672 ../../standalone/drakfont_.c:1058
#, fuzzy
msgid "Remove Selected"
msgstr "Âûäàëiöü śàđăó äđóêó"
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:1710
#, fuzzy
msgid "Windows (FAT32)"
msgstr "Âûäàëiöü Windows(TM)"
-#: ../../standalone/drakbackup_.c:1674
+#: ../../standalone/drakbackup_.c:1749
#, fuzzy
msgid "Users"
msgstr "Iìÿ êàđûńòàëüíiêó:"
-#: ../../standalone/drakbackup_.c:1700
+#: ../../standalone/drakbackup_.c:1775
#, fuzzy
msgid "Use network connection to backup"
msgstr "Äđęííû ôàéë đęçćđâîâàé êîïii"
-#: ../../standalone/drakbackup_.c:1706
+#: ../../standalone/drakbackup_.c:1777
+msgid "Net Method:"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1781
msgid "Use Expect for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1707
+#: ../../standalone/drakbackup_.c:1782
msgid ""
"Create/Transfer\n"
"backup keys for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1708
+#: ../../standalone/drakbackup_.c:1783
msgid ""
" Transfer \n"
"Now"
msgstr ""
-#: ../../standalone/drakbackup_.c:1709
+#: ../../standalone/drakbackup_.c:1784
msgid "Keys in place already"
msgstr ""
-#: ../../standalone/drakbackup_.c:1713
+#: ../../standalone/drakbackup_.c:1788
#, fuzzy
msgid "Please enter the host name or IP."
msgstr "Êàëł ëàńêà, çđàáłöć íćêàëüêł đóőàą ìûűűó."
-#: ../../standalone/drakbackup_.c:1718
+#: ../../standalone/drakbackup_.c:1793
msgid ""
"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
-#: ../../standalone/drakbackup_.c:1723
+#: ../../standalone/drakbackup_.c:1798
#, fuzzy
msgid "Please enter your login"
msgstr "Ïàńïđàáóéöć ÿűśę đàç"
-#: ../../standalone/drakbackup_.c:1728
+#: ../../standalone/drakbackup_.c:1803
#, fuzzy
msgid "Please enter your password"
msgstr "Ïàńïđàáóéöć ÿűśę đàç"
-#: ../../standalone/drakbackup_.c:1734
+#: ../../standalone/drakbackup_.c:1809
#, fuzzy
msgid "Remember this password"
msgstr "Íÿìà ïàđîëț"
-#: ../../standalone/drakbackup_.c:1745
+#: ../../standalone/drakbackup_.c:1820
msgid "Need hostname, username and password!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1841
+#: ../../standalone/drakbackup_.c:1915
msgid "Use CD/DVDROM to backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1844
+#: ../../standalone/drakbackup_.c:1918
msgid ""
"Please choose your CD/DVD device\n"
"(Press Enter to propogate settings to other fields.\n"
"This field isn't necessary, only a tool to fill in the form.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1849
+#: ../../standalone/drakbackup_.c:1923
#, fuzzy
msgid "Please choose your CD/DVD media size"
msgstr "Êàëi ëàńêà, àáÿđûöć òûï êëàâiÿòóđû."
-#: ../../standalone/drakbackup_.c:1855
+#: ../../standalone/drakbackup_.c:1929
#, fuzzy
msgid "Please check for multisession CD"
msgstr "Íàöłńíłöć íà đàçäçćë"
-#: ../../standalone/drakbackup_.c:1861
+#: ../../standalone/drakbackup_.c:1935
#, fuzzy
msgid "Please check if you are using CDRW media"
msgstr "Íàöłńíłöć íà đàçäçćë"
-#: ../../standalone/drakbackup_.c:1867
+#: ../../standalone/drakbackup_.c:1941
#, fuzzy
msgid "Please check if you want to erase your RW media (1st Session)"
msgstr "Íàöłńíłöć íà đàçäçćë"
-#: ../../standalone/drakbackup_.c:1868
+#: ../../standalone/drakbackup_.c:1942
msgid " Erase Now "
msgstr ""
-#: ../../standalone/drakbackup_.c:1874
+#: ../../standalone/drakbackup_.c:1948
#, fuzzy
msgid "Please check if you are using a DVDR device"
msgstr "Íàöłńíłöć íà đàçäçćë"
-#: ../../standalone/drakbackup_.c:1880
+#: ../../standalone/drakbackup_.c:1954
#, fuzzy
msgid "Please check if you are using a DVDRAM device"
msgstr "Íàöłńíłöć íà đàçäçćë"
-#: ../../standalone/drakbackup_.c:1893
+#: ../../standalone/drakbackup_.c:1967
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
msgstr ""
-#: ../../standalone/drakbackup_.c:1926
+#: ../../standalone/drakbackup_.c:2000
#, fuzzy
msgid "No CD device defined!"
msgstr "Àáÿđûöć ôàéë"
-#: ../../standalone/drakbackup_.c:1974
+#: ../../standalone/drakbackup_.c:2048
#, fuzzy
msgid "Use tape to backup"
msgstr "Äđęííû ôàéë đęçćđâîâàé êîïii"
-#: ../../standalone/drakbackup_.c:1977
+#: ../../standalone/drakbackup_.c:2051
msgid "Please enter the device name to use for backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1983
+#: ../../standalone/drakbackup_.c:2057
#, fuzzy
msgid "Please check if you want to use the non-rewinding device."
msgstr "Âûáàđ ïàêćòàą äëÿ ąńòàëÿâàííÿ"
-#: ../../standalone/drakbackup_.c:1989
+#: ../../standalone/drakbackup_.c:2063
#, fuzzy
msgid "Please check if you want to erase your tape before the backup."
msgstr "Âûáàđ ïàêćòàą äëÿ ąńòàëÿâàííÿ"
-#: ../../standalone/drakbackup_.c:1995
+#: ../../standalone/drakbackup_.c:2069
#, fuzzy
msgid "Please check if you want to eject your tape after the backup."
msgstr "Âûáàđ ïàêćòàą äëÿ ąńòàëÿâàííÿ"
-#: ../../standalone/drakbackup_.c:2001 ../../standalone/drakbackup_.c:2074
-#: ../../standalone/drakbackup_.c:3025
+#: ../../standalone/drakbackup_.c:2075 ../../standalone/drakbackup_.c:2149
+#: ../../standalone/drakbackup_.c:3116
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:2066
+#: ../../standalone/drakbackup_.c:2140
#, fuzzy
msgid "Please enter the directory to save to:"
msgstr "Êàëł ëàńêà, çđàáłöć íćêàëüêł đóőàą ìûűűó."
-#: ../../standalone/drakbackup_.c:2080 ../../standalone/drakbackup_.c:3031
+#: ../../standalone/drakbackup_.c:2155 ../../standalone/drakbackup_.c:3122
#, fuzzy
msgid "Use quota for backup files."
msgstr "Äđęííû ôàéë đęçćđâîâàé êîïii"
-#: ../../standalone/drakbackup_.c:2146
+#: ../../standalone/drakbackup_.c:2221
#, fuzzy
msgid "Network"
msgstr "Ńćòêà:"
-#: ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:2226
msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2156
+#: ../../standalone/drakbackup_.c:2231
msgid "HardDrive / NFS"
msgstr ""
-#: ../../standalone/drakbackup_.c:2161
+#: ../../standalone/drakbackup_.c:2236
#, fuzzy
msgid "Tape"
msgstr "Òûï: "
-#: ../../standalone/drakbackup_.c:2175 ../../standalone/drakbackup_.c:2179
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2250 ../../standalone/drakbackup_.c:2254
+#: ../../standalone/drakbackup_.c:2258
msgid "hourly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2176 ../../standalone/drakbackup_.c:2180
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2251 ../../standalone/drakbackup_.c:2255
+#: ../../standalone/drakbackup_.c:2258
msgid "daily"
msgstr ""
-#: ../../standalone/drakbackup_.c:2177 ../../standalone/drakbackup_.c:2181
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2252 ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2258
msgid "weekly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2178 ../../standalone/drakbackup_.c:2182
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2253 ../../standalone/drakbackup_.c:2257
+#: ../../standalone/drakbackup_.c:2258
msgid "monthly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2196
+#: ../../standalone/drakbackup_.c:2271
#, fuzzy
msgid "Use daemon"
msgstr "Iìÿ êàđûńòàëüíiêó:"
-#: ../../standalone/drakbackup_.c:2201
+#: ../../standalone/drakbackup_.c:2276
#, fuzzy
msgid ""
"Please choose the time \n"
"interval between each backup"
msgstr "Âûáàđ ïàêćòàą äëÿ ąńòàëÿâàííÿ"
-#: ../../standalone/drakbackup_.c:2207
+#: ../../standalone/drakbackup_.c:2282
#, fuzzy
msgid ""
"Please choose the\n"
"media for backup."
msgstr "Êàëi ëàńêà, àáÿđûöć ìîâó äëÿ êàđûńòàííÿ."
-#: ../../standalone/drakbackup_.c:2214
+#: ../../standalone/drakbackup_.c:2289
msgid ""
"Please be sure that the cron daemon is included in your services. \n"
"\n"
"Note that currently all 'net' medias also use the hard drive."
msgstr ""
-#: ../../standalone/drakbackup_.c:2251
-msgid "Send mail report after each backup to :"
+#: ../../standalone/drakbackup_.c:2326
+msgid "Send mail report after each backup to:"
msgstr ""
-#: ../../standalone/drakbackup_.c:2257
+#: ../../standalone/drakbackup_.c:2332
msgid "Delete Hard Drive tar files after backup to other media."
msgstr ""
-#: ../../standalone/drakbackup_.c:2296
+#: ../../standalone/drakbackup_.c:2371
#, fuzzy
msgid "What"
msgstr "Śàêàéöć"
-#: ../../standalone/drakbackup_.c:2301
+#: ../../standalone/drakbackup_.c:2376
#, fuzzy
msgid "Where"
msgstr "Ç êîëàì"
-#: ../../standalone/drakbackup_.c:2306
+#: ../../standalone/drakbackup_.c:2381
#, fuzzy
msgid "When"
msgstr "Ç êîëàì"
-#: ../../standalone/drakbackup_.c:2311
+#: ../../standalone/drakbackup_.c:2386
#, fuzzy
msgid "More Options"
msgstr "Îïöûi ìîäóëț:"
-#: ../../standalone/drakbackup_.c:2330 ../../standalone/drakbackup_.c:3873
+#: ../../standalone/drakbackup_.c:2405 ../../standalone/drakbackup_.c:4530
#, fuzzy
msgid "Drakbackup Configuration"
msgstr "Êàíôiăóđàöûÿ ńćòêi"
-#: ../../standalone/drakbackup_.c:2348
+#: ../../standalone/drakbackup_.c:2423
#, fuzzy
msgid "Please choose where you want to backup"
msgstr "Âûáàđ ïàêćòàą äëÿ ąńòàëÿâàííÿ"
-#: ../../standalone/drakbackup_.c:2350
+#: ../../standalone/drakbackup_.c:2425
msgid "on Hard Drive"
msgstr ""
-#: ../../standalone/drakbackup_.c:2360
+#: ../../standalone/drakbackup_.c:2435
#, fuzzy
msgid "across Network"
msgstr "Ńćòêà:"
-#: ../../standalone/drakbackup_.c:2370
+#: ../../standalone/drakbackup_.c:2445
msgid "on CDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2378
+#: ../../standalone/drakbackup_.c:2453
#, fuzzy
msgid "on Tape Device"
msgstr "Ïîđò ïđûíòęđó"
-#: ../../standalone/drakbackup_.c:2421
+#: ../../standalone/drakbackup_.c:2496
#, fuzzy
msgid "Please choose what you want to backup"
msgstr "Âûáàđ ïàêćòàą äëÿ ąńòàëÿâàííÿ"
-#: ../../standalone/drakbackup_.c:2422
+#: ../../standalone/drakbackup_.c:2497
#, fuzzy
msgid "Backup system"
msgstr "Íàńòđ. ôàéëàâûő ńińòęìàą"
-#: ../../standalone/drakbackup_.c:2423
+#: ../../standalone/drakbackup_.c:2498
msgid "Backup Users"
msgstr ""
-#: ../../standalone/drakbackup_.c:2426
+#: ../../standalone/drakbackup_.c:2501
msgid "Select user manually"
msgstr ""
-#: ../../standalone/drakbackup_.c:2508
+#: ../../standalone/drakbackup_.c:2584
msgid ""
"\n"
"Backup Sources: \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2509
+#: ../../standalone/drakbackup_.c:2585
msgid ""
"\n"
"- System Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2511
+#: ../../standalone/drakbackup_.c:2587
msgid ""
"\n"
"- User Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2513
+#: ../../standalone/drakbackup_.c:2589
msgid ""
"\n"
"- Other Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2515
+#: ../../standalone/drakbackup_.c:2591
#, c-format
msgid ""
"\n"
-"- Save on Hard drive on path : %s\n"
+"- Save on Hard drive on path: %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2518
+#: ../../standalone/drakbackup_.c:2594
msgid ""
"\n"
"- Delete hard drive tar files after backup.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2524
+#: ../../standalone/drakbackup_.c:2600
msgid ""
"\n"
"- Burn to CD"
msgstr ""
-#: ../../standalone/drakbackup_.c:2525
+#: ../../standalone/drakbackup_.c:2601
msgid "RW"
msgstr ""
-#: ../../standalone/drakbackup_.c:2526
+#: ../../standalone/drakbackup_.c:2602
#, fuzzy, c-format
-msgid " on device : %s"
+msgid " on device: %s"
msgstr "Ìûű: %s\n"
-#: ../../standalone/drakbackup_.c:2527
+#: ../../standalone/drakbackup_.c:2603
msgid " (multi-session)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2528
+#: ../../standalone/drakbackup_.c:2604
#, c-format
msgid ""
"\n"
-"- Save to Tape on device : %s"
+"- Save to Tape on device: %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2529
+#: ../../standalone/drakbackup_.c:2605
#, c-format
msgid "\t\tErase=%s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2532
+#: ../../standalone/drakbackup_.c:2608
#, c-format
msgid ""
"\n"
-"- Save via %s on host : %s\n"
+"- Save via %s on host: %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2533
+#: ../../standalone/drakbackup_.c:2609
#, c-format
msgid ""
"\t\t user name: %s\n"
"\t\t on path: %s \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2534
+#: ../../standalone/drakbackup_.c:2610
#, fuzzy
msgid ""
"\n"
"- Options:\n"
msgstr "Îïöûi"
-#: ../../standalone/drakbackup_.c:2535
+#: ../../standalone/drakbackup_.c:2611
msgid "\tDo not include System Files\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2538
+#: ../../standalone/drakbackup_.c:2614
msgid "\tBackups use tar and bzip2\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2540
+#: ../../standalone/drakbackup_.c:2616
msgid "\tBackups use tar and gzip\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2543
+#: ../../standalone/drakbackup_.c:2619
#, c-format
msgid ""
"\n"
-"- Daemon (%s) include :\n"
+"- Daemon (%s) include:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2544
+#: ../../standalone/drakbackup_.c:2620
msgid "\t-Hard drive.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2545
+#: ../../standalone/drakbackup_.c:2621
msgid "\t-CDROM.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2546
+#: ../../standalone/drakbackup_.c:2622
#, fuzzy
msgid "\t-Tape \n"
msgstr "Òûï: "
-#: ../../standalone/drakbackup_.c:2547
+#: ../../standalone/drakbackup_.c:2623
msgid "\t-Network by FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2548
+#: ../../standalone/drakbackup_.c:2624
msgid "\t-Network by SSH.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2549
+#: ../../standalone/drakbackup_.c:2625
msgid "\t-Network by rsync.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2550
+#: ../../standalone/drakbackup_.c:2626
msgid "\t-Network by webdav.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2552
+#: ../../standalone/drakbackup_.c:2628
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2558
+#: ../../standalone/drakbackup_.c:2634
msgid ""
"List of data to restore:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2725
+#: ../../standalone/drakbackup_.c:2801
msgid ""
"List of data corrupted:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2727
+#: ../../standalone/drakbackup_.c:2803
#, fuzzy
msgid "Please uncheck or remove it on next time."
msgstr "Äà ÿêîăà ïàńëÿäîąíàăà ïîđòó äàëóśàíû ìàäęì?"
-#: ../../standalone/drakbackup_.c:2737
+#: ../../standalone/drakbackup_.c:2813
msgid "Backup files are corrupted"
msgstr ""
-#: ../../standalone/drakbackup_.c:2758
+#: ../../standalone/drakbackup_.c:2834
msgid " All of your selected data have been "
msgstr ""
-#: ../../standalone/drakbackup_.c:2759
+#: ../../standalone/drakbackup_.c:2835
#, c-format
msgid " Successfuly Restored on %s "
msgstr ""
-#: ../../standalone/drakbackup_.c:2877
+#: ../../standalone/drakbackup_.c:2953
#, fuzzy
msgid " Restore Configuration "
msgstr "Êàíôiăóđàöûÿ ńćòêi"
-#: ../../standalone/drakbackup_.c:2895
+#: ../../standalone/drakbackup_.c:2971
msgid "OK to restore the other files."
msgstr ""
-#: ../../standalone/drakbackup_.c:2912
+#: ../../standalone/drakbackup_.c:2988
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2975
+#: ../../standalone/drakbackup_.c:3066
#, fuzzy
msgid "Backup the system files before:"
msgstr "Äđęííû ôàéë đęçćđâîâàé êîïii"
-#: ../../standalone/drakbackup_.c:2977
+#: ../../standalone/drakbackup_.c:3068
#, fuzzy
msgid "please choose the date to restore"
msgstr "êàëi ëàńêà, ïàçíàśöć òûï âàűàé ìûűû."
-#: ../../standalone/drakbackup_.c:3014
+#: ../../standalone/drakbackup_.c:3105
#, fuzzy
msgid "Use Hard Disk to backup"
msgstr "Äđęííû ôàéë đęçćđâîâàé êîïii"
-#: ../../standalone/drakbackup_.c:3017
+#: ../../standalone/drakbackup_.c:3108
#, fuzzy
msgid "Please enter the directory to save:"
msgstr "Êàëł ëàńêà, çđàáłöć íćêàëüêł đóőàą ìûűűó."
-#: ../../standalone/drakbackup_.c:3060
+#: ../../standalone/drakbackup_.c:3151
#, fuzzy
msgid "FTP Connection"
msgstr "Đàçìćđêàâàííć"
-#: ../../standalone/drakbackup_.c:3067
+#: ../../standalone/drakbackup_.c:3158
#, fuzzy
msgid "Secure Connection"
msgstr "Âûáàđ òûïó çëóśęííÿ ïđûíòęđó"
-#: ../../standalone/drakbackup_.c:3093
+#: ../../standalone/drakbackup_.c:3184
#, fuzzy
msgid "Restore from Hard Disk."
msgstr "Àäíàąëćííć ç äûńêćòû"
-#: ../../standalone/drakbackup_.c:3095
+#: ../../standalone/drakbackup_.c:3186
msgid "Please enter the directory where backups are stored"
msgstr ""
-#: ../../standalone/drakbackup_.c:3157
+#: ../../standalone/drakbackup_.c:3254
#, fuzzy
msgid "Select another media to restore from"
msgstr "êàëi ëàńêà, ïàçíàśöć òûï âàűàé ìûűû."
-#: ../../standalone/drakbackup_.c:3159
+#: ../../standalone/drakbackup_.c:3256
#, fuzzy
msgid "Other Media"
msgstr "Číűûÿ"
-#: ../../standalone/drakbackup_.c:3164
+#: ../../standalone/drakbackup_.c:3261
#, fuzzy
msgid "Restore system"
msgstr "Óńòàëÿâàííć ńińòęìû"
-#: ../../standalone/drakbackup_.c:3165
+#: ../../standalone/drakbackup_.c:3262
#, fuzzy
msgid "Restore Users"
msgstr "Àäíàąëćííć ç ôàéëó"
-#: ../../standalone/drakbackup_.c:3166
+#: ../../standalone/drakbackup_.c:3263
#, fuzzy
msgid "Restore Other"
msgstr "Àäíàąëćííć ç ôàéëó"
-#: ../../standalone/drakbackup_.c:3168
+#: ../../standalone/drakbackup_.c:3265
#, fuzzy
msgid "select path to restore (instead of /)"
msgstr "êàëi ëàńêà, ïàçíàśöć òûï âàűàé ìûűû."
-#: ../../standalone/drakbackup_.c:3172
+#: ../../standalone/drakbackup_.c:3269
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:3174
+#: ../../standalone/drakbackup_.c:3271
msgid "Remove user directories before restore."
msgstr ""
-#: ../../standalone/drakbackup_.c:3232
+#: ../../standalone/drakbackup_.c:3384
+msgid ""
+"Restore Selected\n"
+"Catalog Entry"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3394
+#, fuzzy
+msgid ""
+"Restore Selected\n"
+"Files"
+msgstr "Âûäàëiöü śàđăó äđóêó"
+
+#: ../../standalone/drakbackup_.c:3411
+#, fuzzy
+msgid ""
+"Change\n"
+"Restore Path"
+msgstr "Àäíàąëćííć ç ôàéëó"
+
+#: ../../standalone/drakbackup_.c:3477
+#, c-format
+msgid "Backup files not found at %s."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3490
+#, c-format
+msgid ""
+"Insert the CD with volume label %s\n"
+" in the CD drive under mount point /mnt/cdrom"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3490
+#, fuzzy
+msgid "Restore From CD"
+msgstr "Àäíàąëćííć ç äûńêćòû"
+
+#: ../../standalone/drakbackup_.c:3492
+#, c-format
+msgid "Not the correct CD label. Disk is labelled %s."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3502
+#, c-format
+msgid ""
+"Insert the tape with volume label %s\n"
+" in the tape drive device %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3502
+#, fuzzy
+msgid "Restore From Tape"
+msgstr "Äàäàòêîâàÿ òàáëiöà đàçäçćëàą"
+
+#: ../../standalone/drakbackup_.c:3504
+#, c-format
+msgid "Not the correct tape label. Tape is labelled %s."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3524
+#, fuzzy
+msgid "Restore Via Network"
+msgstr "Ïćđàêàíôiăóđàâàöü ëàêàëüíóț ńćòêó"
+
+#: ../../standalone/drakbackup_.c:3524
+#, c-format
+msgid "Restore Via Network Protocol: %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3525
+#, fuzzy
+msgid "Host Name"
+msgstr "Iìÿ ìàűûíû"
+
+#: ../../standalone/drakbackup_.c:3526
+msgid "Host Path or Module"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3533
+#, fuzzy
+msgid "Password required"
+msgstr "Ïàđîëü"
+
+#: ../../standalone/drakbackup_.c:3539
+#, fuzzy
+msgid "Username required"
+msgstr "Iìÿ êàđûńòàëüíiêó:"
+
+#: ../../standalone/drakbackup_.c:3542
+#, fuzzy
+msgid "Hostname required"
+msgstr "Iìÿ ìàűûíû"
+
+#: ../../standalone/drakbackup_.c:3547
+msgid "Path or Module required"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3560
+msgid "Files Restored..."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3563
+#, fuzzy
+msgid "Restore Failed..."
+msgstr "Àäíàąëćííć ç ôàéëó"
+
+#: ../../standalone/drakbackup_.c:3801
msgid "Restore all backups"
msgstr ""
-#: ../../standalone/drakbackup_.c:3241
+#: ../../standalone/drakbackup_.c:3810
#, fuzzy
msgid "Custom Restore"
msgstr "Ïà âûáàđó"
-#: ../../standalone/drakbackup_.c:3287 ../../standalone/drakbackup_.c:3320
-#: ../../standalone/drakbackup_.c:3346 ../../standalone/drakbackup_.c:3373
-#: ../../standalone/drakbackup_.c:3400 ../../standalone/drakbackup_.c:3460
-#: ../../standalone/drakbackup_.c:3487 ../../standalone/drakbackup_.c:3513
+#: ../../standalone/drakbackup_.c:3856
+msgid "CD in place - continue."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3862
+msgid "Browse to new restore repository."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3865
+#, fuzzy
+msgid "Restore From Catalog"
+msgstr "Äàäàòêîâàÿ òàáëiöà đàçäçćëàą"
+
+#: ../../standalone/drakbackup_.c:3893
+#, fuzzy
+msgid "Restore Progress"
+msgstr "Àäíàąëćííć ç ôàéëó"
+
+#: ../../standalone/drakbackup_.c:3935 ../../standalone/drakbackup_.c:3968
+#: ../../standalone/drakbackup_.c:3994 ../../standalone/drakbackup_.c:4021
+#: ../../standalone/drakbackup_.c:4048 ../../standalone/drakbackup_.c:4108
+#: ../../standalone/drakbackup_.c:4135 ../../standalone/drakbackup_.c:4165
+#: ../../standalone/drakbackup_.c:4191
msgid "Previous"
msgstr ""
-#: ../../standalone/drakbackup_.c:3291 ../../standalone/drakbackup_.c:3377
+#: ../../standalone/drakbackup_.c:3939 ../../standalone/drakbackup_.c:4025
#: ../../standalone/logdrake_.c:223
#, fuzzy
msgid "Save"
msgstr "Ńòàđòàâàć ìćíț"
-#: ../../standalone/drakbackup_.c:3350
+#: ../../standalone/drakbackup_.c:3998
#, fuzzy
msgid "Build Backup"
msgstr "Äđęííû ôàéë đęçćđâîâàé êîïii"
-#: ../../standalone/drakbackup_.c:3404 ../../standalone/drakbackup_.c:3974
+#: ../../standalone/drakbackup_.c:4052 ../../standalone/drakbackup_.c:4632
#, fuzzy
msgid "Restore"
msgstr "Àäíàąëćííć ç ôàéëó"
-#: ../../standalone/drakbackup_.c:3553
-msgid ""
-"Please Build backup before to restore it...\n"
-" or verify that your path to save is correct."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3574
+#: ../../standalone/drakbackup_.c:4231
msgid ""
-"Error during sendmail\n"
-" your report mail was not sent\n"
+"Error during sendmail.\n"
+" Your report mail was not sent.\n"
" Please configure sendmail"
msgstr ""
-#: ../../standalone/drakbackup_.c:3598
+#: ../../standalone/drakbackup_.c:4255
#, fuzzy
msgid ""
"The following packages need to be installed:\n"
" @list_of_rpm_to_install"
msgstr "Íàńòóïíûÿ ïàêćòû áóäóöü äàäàíû äà ńińòęìû"
-#: ../../standalone/drakbackup_.c:3621
+#: ../../standalone/drakbackup_.c:4278
msgid ""
"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
-#: ../../standalone/drakbackup_.c:3644
+#: ../../standalone/drakbackup_.c:4301
#, fuzzy
msgid "Please select data to restore..."
msgstr "Êàëi ëàńêà, àáÿđûöć ìîâó äëÿ êàđûńòàííÿ."
-#: ../../standalone/drakbackup_.c:3665
+#: ../../standalone/drakbackup_.c:4322
#, fuzzy
msgid "Please select media for backup..."
msgstr "Êàëi ëàńêà, àáÿđûöć ìîâó äëÿ êàđûńòàííÿ."
-#: ../../standalone/drakbackup_.c:3687
+#: ../../standalone/drakbackup_.c:4344
#, fuzzy
msgid "Please select data to backup..."
msgstr "Êàëi ëàńêà, àáÿđûöć ìîâó äëÿ êàđûńòàííÿ."
-#: ../../standalone/drakbackup_.c:3709
+#: ../../standalone/drakbackup_.c:4366
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
msgstr ""
-#: ../../standalone/drakbackup_.c:3730
+#: ../../standalone/drakbackup_.c:4387
msgid "Under Devel ... please wait."
msgstr ""
-#: ../../standalone/drakbackup_.c:3811
+#: ../../standalone/drakbackup_.c:4468
#, fuzzy
msgid "Backup system files"
msgstr "Äđęííû ôàéë đęçćđâîâàé êîïii"
-#: ../../standalone/drakbackup_.c:3813
+#: ../../standalone/drakbackup_.c:4470
#, fuzzy
msgid "Backup user files"
msgstr "Äđęííû ôàéë đęçćđâîâàé êîïii"
-#: ../../standalone/drakbackup_.c:3815
+#: ../../standalone/drakbackup_.c:4472
#, fuzzy
msgid "Backup other files"
msgstr "Äđęííû ôàéë đęçćđâîâàé êîïii"
-#: ../../standalone/drakbackup_.c:3817 ../../standalone/drakbackup_.c:3850
+#: ../../standalone/drakbackup_.c:4474 ../../standalone/drakbackup_.c:4507
msgid "Total Progress"
msgstr ""
-#: ../../standalone/drakbackup_.c:3841
+#: ../../standalone/drakbackup_.c:4498
msgid "files sending by FTP"
msgstr ""
-#: ../../standalone/drakbackup_.c:3845
+#: ../../standalone/drakbackup_.c:4502
#, fuzzy
msgid "Sending files..."
msgstr "Çàőàâàííć ą ôàéë"
-#: ../../standalone/drakbackup_.c:3931
+#: ../../standalone/drakbackup_.c:4588
#, fuzzy
msgid "Backup Now from configuration file"
msgstr "Êàíôiăóđàöûÿ ńćòêi"
-#: ../../standalone/drakbackup_.c:3936
+#: ../../standalone/drakbackup_.c:4593
#, fuzzy
msgid "View Backup Configuration."
msgstr "Êàíôiăóđàöûÿ ńćòêi"
-#: ../../standalone/drakbackup_.c:3956
+#: ../../standalone/drakbackup_.c:4614
#, fuzzy
msgid "Wizard Configuration"
msgstr "Íàńòđîéêà"
-#: ../../standalone/drakbackup_.c:3961
+#: ../../standalone/drakbackup_.c:4619
#, fuzzy
msgid "Advanced Configuration"
msgstr "Çàêàíśęííć íàńòđîéêi"
-#: ../../standalone/drakbackup_.c:3966
+#: ../../standalone/drakbackup_.c:4624
#, fuzzy
msgid "Backup Now"
msgstr "Íàńòđ. ôàéëàâûő ńińòęìàą"
-#: ../../standalone/drakbackup_.c:3996
+#: ../../standalone/drakbackup_.c:4658
msgid "Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:4045
+#: ../../standalone/drakbackup_.c:4707
msgid ""
"options description:\n"
"\n"
@@ -10151,7 +10674,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4075
+#: ../../standalone/drakbackup_.c:4737
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -10160,7 +10683,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4083
+#: ../../standalone/drakbackup_.c:4745
msgid ""
"options description:\n"
"\n"
@@ -10201,45 +10724,45 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4122
+#: ../../standalone/drakbackup_.c:4784
msgid ""
"restore description:\n"
" \n"
-"Only the most recent date will be used ,because with incremental \n"
-"backups it is necesarry to restore one by one each older backups.\n"
+"Only the most recent date will be used, because with incremental \n"
+"backups it is necessary to restore one by one each older backup.\n"
"\n"
-"So if you don't like to restore a user please unselect all his\n"
-"check box.\n"
+"So if you don't want to restore a user please unselect all their\n"
+"check boxes.\n"
"\n"
-"Otherwise, you are able to select only one of this\n"
+"Otherwise, you are able to select only one of these.\n"
"\n"
" - Incremental Backups:\n"
"\n"
"\tThe incremental backup is the most powerful \n"
-"\toption to use backup, this option allow you \n"
-"\tto backup all your data the first time, and \n"
-"\tonly the changed after.\n"
-"\tSo you will be able during the restore\n"
+"\toption to use. This option allows you to \n"
+"\tbackup all of your data the first time, and \n"
+"\tonly the changed data after.\n"
+"\tSo you will be able, during the restore\n"
"\tstep, to restore your data from a specified\n"
"\tdate.\n"
-"\tIf you have not selected this options all\n"
+"\tIf you have not selected this option all\n"
"\told backups are deleted before each backup. \n"
"\n"
"\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4148 ../../standalone/drakbackup_.c:4225
+#: ../../standalone/drakbackup_.c:4810 ../../standalone/drakbackup_.c:4887
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
-#: ../../standalone/drakbackup_.c:4150 ../../standalone/drakbackup_.c:4227
+#: ../../standalone/drakbackup_.c:4812 ../../standalone/drakbackup_.c:4889
msgid ""
" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
-#: ../../standalone/drakbackup_.c:4152 ../../standalone/drakbackup_.c:4229
+#: ../../standalone/drakbackup_.c:4814 ../../standalone/drakbackup_.c:4891
msgid ""
" This program is free software; you can redistribute it and/or modify\n"
" it under the terms of the GNU General Public License as published by\n"
@@ -10256,7 +10779,7 @@ msgid ""
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
msgstr ""
-#: ../../standalone/drakbackup_.c:4166
+#: ../../standalone/drakbackup_.c:4828
msgid ""
"Description:\n"
"\n"
@@ -10296,7 +10819,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4204
+#: ../../standalone/drakbackup_.c:4866
msgid ""
"options description:\n"
"\n"
@@ -10307,7 +10830,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4213
+#: ../../standalone/drakbackup_.c:4875
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -10320,7 +10843,7 @@ msgid ""
"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4243
+#: ../../standalone/drakbackup_.c:4905
msgid ""
"Description:\n"
"\n"
@@ -10401,9 +10924,9 @@ msgstr ""
msgid "Synchronization tool"
msgstr ""
-#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:85
-#: ../../standalone/drakbug_.c:150 ../../standalone/drakbug_.c:152
-#: ../../standalone/drakbug_.c:156
+#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:86
+#: ../../standalone/drakbug_.c:151 ../../standalone/drakbug_.c:153
+#: ../../standalone/drakbug_.c:157
#, fuzzy
msgid "Standalone Tools"
msgstr "Êàíńîëüíûÿ łíńòđóìćíòàëüíûÿ ńđîäêł"
@@ -10456,26 +10979,26 @@ msgstr "Âûêàđûńòîąâàöü DiskDrake"
msgid "Configuration Wizards"
msgstr "Êàíôiăóđàöûÿ ńćòêi"
-#: ../../standalone/drakbug_.c:96
+#: ../../standalone/drakbug_.c:97
#, fuzzy
msgid "Application:"
msgstr "Đàçìćđêàâàííć"
-#: ../../standalone/drakbug_.c:97
+#: ../../standalone/drakbug_.c:98
#, fuzzy
msgid "Package: "
msgstr "Ïàêćò"
-#: ../../standalone/drakbug_.c:98
+#: ../../standalone/drakbug_.c:99
msgid "Kernel:"
msgstr ""
-#: ../../standalone/drakbug_.c:99
+#: ../../standalone/drakbug_.c:100
#, fuzzy
msgid "Release: "
msgstr "Êàëi ëàńêà, ïàśàêàéöć"
-#: ../../standalone/drakbug_.c:114
+#: ../../standalone/drakbug_.c:115
msgid ""
"\n"
"\n"
@@ -10487,21 +11010,21 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbug_.c:135
+#: ../../standalone/drakbug_.c:136
#, fuzzy
msgid "Report"
msgstr "Ïîđò"
-#: ../../standalone/drakbug_.c:165
+#: ../../standalone/drakbug_.c:166
#, fuzzy
msgid "Not installed"
msgstr "Çàêàíśęííć ąńòàëÿâàííÿ"
-#: ../../standalone/drakbug_.c:182
+#: ../../standalone/drakbug_.c:183
msgid "connecting to Bugzilla wizard ..."
msgstr ""
-#: ../../standalone/drakbug_.c:189
+#: ../../standalone/drakbug_.c:190
#, fuzzy
msgid "No browser available! Please install one"
msgstr "Âû ìîæàöć àáđàöü łíűûÿ ìîâû, ÿêiÿ áóäóöü äàńòóïíû ïàńëÿ ąńòàëÿâàííÿ"
@@ -10970,7 +11493,7 @@ msgstr "Êđîïêà ìàíöiđàâàííÿ"
#: ../../standalone/drakfont_.c:909
#, fuzzy
-msgid "Choose the applications that will support the fonts :"
+msgid "Choose the applications that will support the fonts:"
msgstr "Âûáàđ đàçäçćëàą äëÿ ôàđìàòàâàííÿ"
#: ../../standalone/drakfont_.c:918
@@ -11051,19 +11574,19 @@ msgstr "Ó âàűàé ńłńòęìć íÿìà íiâîäíàăà ńćòêàâàăà àäàïòàđà!"
msgid "Post Uninstall"
msgstr "Çàêàíśęííć ąńòàëÿâàííÿ"
-#: ../../standalone/drakgw_.c:42 ../../standalone/drakgw_.c:195
+#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:188
msgid "Internet Connection Sharing"
msgstr "Ńóìćńíàć Iíòęđíęò-çëóśęííć"
-#: ../../standalone/drakgw_.c:121
+#: ../../standalone/drakgw_.c:119
msgid "Sorry, we support only 2.4 kernels."
msgstr ""
-#: ../../standalone/drakgw_.c:133
+#: ../../standalone/drakgw_.c:130
msgid "Internet Connection Sharing currently enabled"
msgstr "Ńóìćńíàć Iíòęđíęò-çëóśęííć çàđàç ìàăśûìà"
-#: ../../standalone/drakgw_.c:134
+#: ../../standalone/drakgw_.c:131
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -11071,35 +11594,35 @@ msgid ""
"What would you like to do?"
msgstr ""
-#: ../../standalone/drakgw_.c:138
+#: ../../standalone/drakgw_.c:135
#, fuzzy
msgid "disable"
msgstr "Òàáëiöà"
-#: ../../standalone/drakgw_.c:138 ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:135 ../../standalone/drakgw_.c:160
msgid "dismiss"
msgstr ""
-#: ../../standalone/drakgw_.c:138 ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:135 ../../standalone/drakgw_.c:160
#, fuzzy
msgid "reconfigure"
msgstr "Íàńòđîéêà X Window"
-#: ../../standalone/drakgw_.c:141
+#: ../../standalone/drakgw_.c:138
#, fuzzy
msgid "Disabling servers..."
msgstr "Âûçíàśęííć ïđûëàäàą..."
-#: ../../standalone/drakgw_.c:149
+#: ../../standalone/drakgw_.c:146
#, fuzzy
msgid "Internet connection sharing is now disabled."
msgstr "Ńóìćńíàć Iíòęđíęò-çëóśęííć çàđàç çàáàđîíćíà"
-#: ../../standalone/drakgw_.c:158
+#: ../../standalone/drakgw_.c:155
msgid "Internet Connection Sharing currently disabled"
msgstr "Ńóìćńíàć Iíòęđíęò-çëóśęííć çàđàç çàáàđîíćíà"
-#: ../../standalone/drakgw_.c:159
+#: ../../standalone/drakgw_.c:156
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
@@ -11107,21 +11630,21 @@ msgid ""
"What would you like to do?"
msgstr ""
-#: ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:160
#, fuzzy
msgid "enable"
msgstr "Òàáëiöà"
-#: ../../standalone/drakgw_.c:170
+#: ../../standalone/drakgw_.c:167
msgid "Enabling servers..."
msgstr ""
-#: ../../standalone/drakgw_.c:175
+#: ../../standalone/drakgw_.c:172
#, fuzzy
msgid "Internet connection sharing is now enabled."
msgstr "Ńóìćńíàć Iíòęđíęò-çëóśęííć çàđàç ìàăśûìà"
-#: ../../standalone/drakgw_.c:196
+#: ../../standalone/drakgw_.c:189
#, fuzzy
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
@@ -11138,21 +11661,21 @@ msgstr ""
"\n"
"Âû æàäàćöć óńòàëÿâàöü ńóìćńíû äîńòóï äà Internet?"
-#: ../../standalone/drakgw_.c:222
+#: ../../standalone/drakgw_.c:215
#, c-format
msgid "Interface %s (using module %s)"
msgstr ""
-#: ../../standalone/drakgw_.c:223
+#: ../../standalone/drakgw_.c:216
#, fuzzy, c-format
msgid "Interface %s"
msgstr "Ńćòêàâû iíòęđôćéń"
-#: ../../standalone/drakgw_.c:231
+#: ../../standalone/drakgw_.c:224
msgid "No network adapter on your system!"
msgstr "Ó âàűàé ńłńòęìć íÿìà íiâîäíàăà ńćòêàâàăà àäàïòàđà!"
-#: ../../standalone/drakgw_.c:232
+#: ../../standalone/drakgw_.c:225
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
@@ -11160,11 +11683,11 @@ msgstr ""
"Íi âîäíû ethernet ńćòêàâû àäàïòàđ ó âàűàé ńińòęìć íć âûçíàśàíû. Êàëi ëàńêà, "
"ńêàđûńòàéöć êàíôiăóđàöûéíû iíńòđóìęíò."
-#: ../../standalone/drakgw_.c:238
+#: ../../standalone/drakgw_.c:231
msgid "Network interface"
msgstr "Ńćòêàâû iíòęđôćéń"
-#: ../../standalone/drakgw_.c:239
+#: ../../standalone/drakgw_.c:232
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -11174,7 +11697,7 @@ msgid ""
"I am about to setup your Local Area Network with that adapter."
msgstr ""
-#: ../../standalone/drakgw_.c:248
+#: ../../standalone/drakgw_.c:241
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
@@ -11182,12 +11705,12 @@ msgstr ""
"Êàëi ëàńêà, àáÿđûöć ńćòêàâû àäàïòàđ, ÿêł áóäçć âûêàđûńòàíû äëÿ äàëóśęííÿ äà "
"âàűàé ëàêàëüíàé ńćòêi."
-#: ../../standalone/drakgw_.c:266
+#: ../../standalone/drakgw_.c:259
#, fuzzy
msgid "Network interface already configured"
msgstr "Ìàíiòîđ ïàêóëü íć íàńòđîćíû"
-#: ../../standalone/drakgw_.c:267
+#: ../../standalone/drakgw_.c:260
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -11197,17 +11720,17 @@ msgid ""
"You can do it manually but you need to know what you're doing."
msgstr ""
-#: ../../standalone/drakgw_.c:272
+#: ../../standalone/drakgw_.c:265
#, fuzzy
msgid "Automatic reconfiguration"
msgstr "Íàńòđîéêà ìàäęìó"
-#: ../../standalone/drakgw_.c:273
+#: ../../standalone/drakgw_.c:266
#, fuzzy
msgid "Show current interface configuration"
msgstr "Íàńòđîéêà çëóśęííÿ ç Iíòęđíęòàì"
-#: ../../standalone/drakgw_.c:275
+#: ../../standalone/drakgw_.c:268
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -11218,7 +11741,7 @@ msgid ""
"Driver: %s"
msgstr ""
-#: ../../standalone/drakgw_.c:287
+#: ../../standalone/drakgw_.c:280
msgid ""
"I can keep your current configuration and assume you already set up a DHCP "
"server; in that case please verify I correctly read the C-Class Network that "
@@ -11230,55 +11753,43 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakgw_.c:292
+#: ../../standalone/drakgw_.c:285
msgid "C-Class Local Network"
msgstr ""
-#: ../../standalone/drakgw_.c:293
+#: ../../standalone/drakgw_.c:286
#, fuzzy
msgid "(This) DHCP Server IP"
msgstr "IP ńćđâćđà SMB"
-#: ../../standalone/drakgw_.c:294
+#: ../../standalone/drakgw_.c:287
msgid "Re-configure interface and DHCP server"
msgstr ""
-#: ../../standalone/drakgw_.c:301
+#: ../../standalone/drakgw_.c:294
msgid "The Local Network did not finish with `.0', bailing out."
msgstr ""
-#: ../../standalone/drakgw_.c:312
+#: ../../standalone/drakgw_.c:305
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr "Ïàòęíöûéíû àäđàń ËÂŃ êàíôëiêòóć ç áÿăóśàé êàíôiăóđàöûÿé %s!\n"
-#: ../../standalone/drakgw_.c:320
-msgid "Firewalling configuration detected!"
-msgstr "Çíîéäçćíà ńłńòęìà ńćòêàâàé áÿńïćêł (firewall)!"
-
-#: ../../standalone/drakgw_.c:321
-msgid ""
-"Warning! An existing firewalling configuration has been detected. You may "
-"need some manual fix after installation."
-msgstr ""
-"Óâàăà! Çíîéäçćíà łńíóțśàÿ ńińòęìà ńćòêàâàé áÿńïćêi (firewall). Âàì ìàăśûìà "
-"ńïàòđęáłööà ńêàđęêòàâàöü ÿć ïàńëÿ ąńòàëÿâàííÿ."
-
-#: ../../standalone/drakgw_.c:328
+#: ../../standalone/drakgw_.c:315
#, fuzzy
msgid "Configuring..."
msgstr "Íàńòđîéêà IDE"
-#: ../../standalone/drakgw_.c:329
+#: ../../standalone/drakgw_.c:316
msgid "Configuring scripts, installing software, starting servers..."
msgstr "Êàíôłăóđàöûÿ ńöęíàđàą, óńòàëÿâàííć ÏÇ, çàïóńê ńëóæáàą..."
-#: ../../standalone/drakgw_.c:365
+#: ../../standalone/drakgw_.c:352
#, c-format
msgid "Problems installing package %s"
msgstr "Ïđàáëćìû ç óńòàëÿâàííćì ïàêćòó %s"
-#: ../../standalone/drakgw_.c:549
+#: ../../standalone/drakgw_.c:485
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
@@ -11289,25 +11800,25 @@ msgstr ""
"ç łíűûìł êàìï'țòęđàìł ą âàűàé ËÂŃ, êàđûńòàțśûńÿ àąòàìàòûśíûì\n"
"êàíôłăóđàâàííćì (DHCP)."
-#: ../../standalone/drakgw_.c:566
+#: ../../standalone/drakgw_.c:504
msgid "The setup has already been done, but it's currently disabled."
msgstr ""
-#: ../../standalone/drakgw_.c:567
+#: ../../standalone/drakgw_.c:505
msgid "The setup has already been done, and it's currently enabled."
msgstr ""
-#: ../../standalone/drakgw_.c:568
+#: ../../standalone/drakgw_.c:506
#, fuzzy
msgid "No Internet Connection Sharing has ever been configured."
msgstr "Ńóìćńíàć Iíòęđíęò-çëóśęííć çàđàç ìàăśûìà"
-#: ../../standalone/drakgw_.c:573
+#: ../../standalone/drakgw_.c:511
#, fuzzy
msgid "Internet connection sharing configuration"
msgstr "Iíòęđíęò çëóśęííć i êàíôiăóđàöûÿ"
-#: ../../standalone/drakgw_.c:580
+#: ../../standalone/drakgw_.c:518
#, fuzzy, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -11317,6 +11828,158 @@ msgid ""
"Click on Configure to launch the setup wizard."
msgstr "Ńóìćńíàć Iíòęđíęò-çëóśęííć"
+#: ../../standalone/draksound_.c:46
+#, fuzzy
+msgid "No Sound Card detected!"
+msgstr "Đàçìćđêàâàííć"
+
+#: ../../standalone/draksound_.c:47
+msgid ""
+"No Sound Card has been detected on your machine. Please verify that a Linux-"
+"supported Sound Card is correctly plugged in.\n"
+"\n"
+"\n"
+"You can visit our hardware database at:\n"
+"\n"
+"\n"
+"http://www.linux-mandrake.com/en/hardware.php3"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:32
+msgid "package ImageMagick is required for correct working"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:76
+#, fuzzy
+msgid "first step creation"
+msgstr "Íàńòđîéêà ïàńëÿ ąńòàëÿâàííÿ"
+
+#: ../../standalone/draksplash_.c:77
+#, fuzzy
+msgid "final resolution"
+msgstr "Ïàìćđû ęêđàíó"
+
+#: ../../standalone/draksplash_.c:78 ../../standalone/draksplash_.c:170
+#, fuzzy
+msgid "choose image file"
+msgstr "Àáÿđûöć äçćÿííć"
+
+#: ../../standalone/draksplash_.c:79
+#, fuzzy
+msgid "Theme name"
+msgstr "Iìÿ äëÿ đàçìćđêàâàíàăà đęńóđńó"
+
+#: ../../standalone/draksplash_.c:81
+msgid "make bootsplash step 2"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:82
+#, fuzzy
+msgid "go to lilosplash configuration"
+msgstr "Íàńòđîéêà ïàńëÿ ąńòàëÿâàííÿ"
+
+#: ../../standalone/draksplash_.c:83
+#, fuzzy
+msgid "quit"
+msgstr "Âûőàä"
+
+#: ../../standalone/draksplash_.c:84
+#, fuzzy
+msgid "save theme"
+msgstr "Óńòàëÿâàííć ńińòęìû"
+
+#: ../../standalone/draksplash_.c:85
+msgid "browse"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:98 ../../standalone/draksplash_.c:159
+#, fuzzy
+msgid "Configure bootsplash picture"
+msgstr "Íàńòđîéêà ńëóæáàą"
+
+#: ../../standalone/draksplash_.c:99
+msgid "x coordinate of text box in number of character"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:100
+msgid "y coordinate of text box in number of character"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:101
+msgid "text width"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:102
+msgid "text box height"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:103
+msgid "the progress bar x coordinate of its upper left corner"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:104
+msgid "the progress bar y coordinate of its upper left corner"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:105
+msgid "the width of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:106
+msgid "the heigth of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:107
+msgid "the color of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:119
+#, fuzzy
+msgid "go back"
+msgstr "Âiđòóàëüíàÿ ôàéëàâàÿ ńińòęìà (loopback)"
+
+#: ../../standalone/draksplash_.c:120
+#, fuzzy
+msgid "preview"
+msgstr "ïđûëàäà"
+
+#: ../../standalone/draksplash_.c:121
+#, fuzzy
+msgid "choose color"
+msgstr "Àáÿđûöć ìàíiòîđ"
+
+#: ../../standalone/draksplash_.c:124
+msgid "Display logo on Console"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:125
+msgid "Make kernel message quiet by default"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:161 ../../standalone/draksplash_.c:330
+#, c-format
+msgid "This theme haven't yet any bootsplash in %s !"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:213
+msgid "saving Bootsplash theme..."
+msgstr ""
+
+#: ../../standalone/draksplash_.c:436
+#, fuzzy
+msgid "ProgressBar color selection"
+msgstr "Çëóśęííć ïđûíòęđó"
+
+#: ../../standalone/draksplash_.c:454
+#, fuzzy
+msgid "You must choose an image file first!"
+msgstr "URI ïđûíòęđó"
+
+#: ../../standalone/draksplash_.c:463
+#, fuzzy
+msgid "Generating preview ..."
+msgstr "Âûçíàśęííć ïđûëàäàą..."
+
#: ../../standalone/drakxtv_.c:49
msgid ""
"XawTV isn't installed!\n"
@@ -11409,11 +12072,11 @@ msgid ""
msgstr ""
#: ../../standalone/drakxtv_.c:109
-msgid "TV norm :"
+msgid "TV norm:"
msgstr ""
#: ../../standalone/drakxtv_.c:110
-msgid "Area :"
+msgid "Area:"
msgstr ""
#: ../../standalone/drakxtv_.c:114
@@ -11495,7 +12158,7 @@ msgstr "Íćìàăśûìà çàïóńöłöü live upgrade !!!\n"
msgid "The change is done, but to be effective you must logout"
msgstr ""
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:517
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:515
msgid "logdrake"
msgstr ""
@@ -11672,7 +12335,7 @@ msgstr "ïđûëàäà"
#: ../../standalone/logdrake_.c:431
msgid ""
-"You will receive an alert if one of the selected service is no more running"
+"You will receive an alert if one of the selected services is no more running"
msgstr ""
#: ../../standalone/logdrake_.c:443
@@ -11694,19 +12357,19 @@ msgstr "Íàńòđîéêà"
msgid "Please enter your email address below "
msgstr "Ïàńïđàáóéöć ÿűśę đàç"
-#: ../../standalone/logdrake_.c:499
+#: ../../standalone/logdrake_.c:497
msgid "Save as.."
msgstr ""
-#: ../../standalone/mousedrake_.c:43
+#: ../../standalone/mousedrake_.c:45
msgid "Please, choose the type of your mouse."
msgstr "êàëi ëàńêà, ïàçíàśöć òûï âàűàé ìûűû."
-#: ../../standalone/mousedrake_.c:57
+#: ../../standalone/mousedrake_.c:58
msgid "Emulate third button?"
msgstr "Ęìóëÿâàöü òđęöțț êíîïêó?"
-#: ../../standalone/printerdrake_.c:48
+#: ../../standalone/printerdrake_.c:57
#, fuzzy
msgid "Reading printer data ..."
msgstr "Śûòàț áàçó äàäçćíûő äđàéâćđîą CUPS"
@@ -11720,34 +12383,45 @@ msgstr "Âûçíàśęííć ïđûëàäàą..."
msgid "Test ports"
msgstr "Ïđàâćđêà ïàđòîą"
-#: ../../standalone/scannerdrake_.c:52
+#: ../../standalone/scannerdrake_.c:53 ../../standalone/scannerdrake_.c:68
+#: ../../standalone/scannerdrake_.c:81
#, c-format
-msgid "%s found on %s, configure it ?"
+msgid "The %s is not supported by this version of Mandrake Linux."
msgstr ""
+#: ../../standalone/scannerdrake_.c:56
+#, fuzzy, c-format
+msgid "%s found on %s, configure it?"
+msgstr "Æàäàćöć íàńòđîiöü ïđûíòęđ?"
+
#: ../../standalone/scannerdrake_.c:59
+#, c-format
+msgid "%s is not in the scanner database, configure it manually?"
+msgstr ""
+
+#: ../../standalone/scannerdrake_.c:65
#, fuzzy
msgid "Select a scanner"
msgstr "Àáÿđûöć âiäęàêàđòó"
-#: ../../standalone/scannerdrake_.c:79
+#: ../../standalone/scannerdrake_.c:93
#, c-format
msgid "This %s scanner is unsupported"
msgstr ""
-#: ../../standalone/scannerdrake_.c:93
+#: ../../standalone/scannerdrake_.c:107
#, c-format
msgid ""
"Scannerdrake was not able to detect your %s scanner.\n"
"Please select the device where your scanner is plugged"
msgstr ""
-#: ../../standalone/scannerdrake_.c:95
+#: ../../standalone/scannerdrake_.c:109
#, fuzzy
msgid "choose device"
msgstr "Çàăđóçàśíàÿ ïđûëàäà"
-#: ../../standalone/scannerdrake_.c:101
+#: ../../standalone/scannerdrake_.c:115
#, c-format
msgid ""
"This %s scanner must be configured by printerdrake.\n"
@@ -11755,7 +12429,7 @@ msgid ""
"section."
msgstr ""
-#: ../../standalone/scannerdrake_.c:106
+#: ../../standalone/scannerdrake_.c:120
#, c-format
msgid ""
"Your %s scanner has been configured.\n"
@@ -11763,43 +12437,18 @@ msgid ""
"applications menu."
msgstr ""
-#: ../../standalone/service_harddrake_.c:57
+#: ../../standalone/service_harddrake_.c:39
#, c-format
msgid "Some devices in the \"%s\" hardware class were removed:\n"
msgstr ""
-#: ../../standalone/service_harddrake_.c:61
+#: ../../standalone/service_harddrake_.c:43
#, c-format
msgid ""
"\n"
"Some devices in the %s class were added:\n"
msgstr ""
-#: ../../standalone/tinyfirewall_.c:30
-#, fuzzy
-msgid "Firewalling Configuration"
-msgstr "Çíîéäçćíà ńłńòęìà ńćòêàâàé áÿńïćêł (firewall)!"
-
-#: ../../standalone/tinyfirewall_.c:43
-#, fuzzy
-msgid "Firewalling configuration"
-msgstr "Çíîéäçćíà ńłńòęìà ńćòêàâàé áÿńïćêł (firewall)!"
-
-#: ../../standalone/tinyfirewall_.c:78
-msgid ""
-"Firewalling\n"
-"\n"
-"You already have set up a firewall.\n"
-"Click on Configure to change or remove the firewall"
-msgstr ""
-
-#: ../../standalone/tinyfirewall_.c:82
-msgid ""
-"Firewalling\n"
-"\n"
-"Click on Configure to set up a standard firewall"
-msgstr ""
-
#: ../../steps.pm_.c:14
msgid "Choose your language"
msgstr "Âûáàđ ìîâû"
@@ -11874,169 +12523,7 @@ msgstr "Óńòàëÿâàííć ńińòęìû"
msgid "Exit install"
msgstr "Çàêàíśęííć ąńòàëÿâàííÿ"
-#: ../../tinyfirewall.pm_.c:9
-msgid ""
-"tinyfirewall configurator\n"
-"\n"
-"This configures a personal firewall for this Mandrake Linux machine.\n"
-"For a powerful dedicated firewall solution, please look to the\n"
-"specialized MandrakeSecurity Firewall distribution."
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:14
-msgid ""
-"We'll now ask you questions about which services you'd like to allow\n"
-"the Internet to connect to. Please think carefully about these\n"
-"questions, as your computer's security is important.\n"
-"\n"
-"Please, if you're not currently using one of these services, firewall\n"
-"it off. You can change this configuration anytime you like by\n"
-"re-running this application!"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:21
-msgid ""
-"Are you running a web server on this machine that you need the whole\n"
-"Internet to see? If you are running a webserver that only needs to be\n"
-"accessed by this machine, you can safely answer NO here.\n"
-"\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:26
-msgid ""
-"Are you running a name server on this machine? If you didn't set one\n"
-"up to give away IP and zone information to the whole Internet, please\n"
-"answer no.\n"
-"\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:31
-msgid ""
-"Do you want to allow incoming Secure Shell (ssh) connections? This\n"
-"is a telnet-replacement that you might use to login. If you're using\n"
-"telnet now, you should definitely switch to ssh. telnet is not\n"
-"encrypted -- so some attackers can steal your password if you use\n"
-"it. ssh is encrypted and doesn't allow for this eavesdropping."
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:36
-msgid ""
-"Do you want to allow incoming telnet connections?\n"
-"This is horribly unsafe, as we explained in the previous screen. We\n"
-"strongly recommend answering No here and using ssh in place of\n"
-"telnet.\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:41
-msgid ""
-"Are you running an FTP server here that you need accessible to the\n"
-"Internet? If you are, we strongly recommend that you only use it for\n"
-"Anonymous transfers. Any passwords sent by FTP can be stolen by some\n"
-"attackers, since FTP also uses no encryption for transferring passwords.\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:46
-msgid ""
-"Are you running a mail server here? If you're sending you \n"
-"messages through pine, mutt or any other text-based mail client,\n"
-"you probably are. Otherwise, you should firewall this off.\n"
-"\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:51
-msgid ""
-"Are you running a POP or IMAP server here? This would\n"
-"be used to host non-web-based mail accounts for people via \n"
-"this machine.\n"
-"\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:56
-msgid ""
-"You appear to be running a 2.2 kernel. If your network IP\n"
-"is automatically set by a computer in your home or office \n"
-"(dynamically assigned), we need to allow for this. Is\n"
-"this the case?\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:61
-msgid ""
-"Is your computer getting time syncronized to another computer?\n"
-"Mostly, this is used by medium-large Unix/Linux organizations\n"
-"to synchronize time for logging and such. If you're not part\n"
-"of a larger office and haven't heard of this, you probably \n"
-"aren't."
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:66
-msgid ""
-"Configuration complete. May we write these changes to disk?\n"
-"\n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:82
-#, c-format
-msgid "Can't open %s: %s\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:84
-#, fuzzy, c-format
-msgid "Can't open %s for writing: %s\n"
-msgstr "Ïàìûëêà àäêđûööÿ %s äëÿ çàïińó: %s"
-
-#: ../../tinyfirewall.pm_.c:178
-msgid "No I don't need DHCP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:178
-msgid "Yes I need DHCP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:179
-msgid "No I don't need NTP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:179
-msgid "Yes I need NTP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:180 ../../tinyfirewall.pm_.c:184
-msgid "Don't Save"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:180 ../../tinyfirewall.pm_.c:184
-#: ../../tinyfirewall.pm_.c:204
-msgid "Save & Quit"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:195 ../../tinyfirewall.pm_.c:199
-#, fuzzy
-msgid "Firewall Configuration Wizard"
-msgstr "Êàíôiăóđàöûÿ ńćòêi"
-
-#: ../../tinyfirewall.pm_.c:197
-msgid "No (firewall this off from the internet)"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:198
-msgid "Yes (allow this through the firewall)"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:230
-#, fuzzy
-msgid "Please Wait... Verifying installed packages"
-msgstr "Ïàäđûőòîąêà ąńòàëÿâàíüíÿ"
-
-#: ../../tinyfirewall.pm_.c:236
-#, c-format
-msgid ""
-"Failure installing the needed packages : %s and Bastille.\n"
-" Try to install them manually."
-msgstr ""
-
-#: ../../ugtk.pm_.c:619
+#: ../../ugtk.pm_.c:594
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr ""
@@ -12179,6 +12666,11 @@ msgid "Graphical Environment"
msgstr ""
#: ../../share/compssUsers:999
+#, fuzzy
+msgid "Development"
+msgstr "đàńïđàöîąűśûê"
+
+#: ../../share/compssUsers:999
msgid "Apache, Pro-ftpd"
msgstr ""
@@ -12295,102 +12787,25 @@ msgstr "Ìóëüòûìćäûÿ - Ńòâàđęííć CD"
msgid "Scientific Workstation"
msgstr "Íàâóêîâûÿ ïđûêëàäàííł"
-#~ msgid "$mode: $warning"
-#~ msgstr "$mode: $warning"
+#~ msgid "LBA (doesn't work on old BIOSes)"
+#~ msgstr "LBA (íć ïđàöóć ïđû ńòàđûő âćđńiÿő BIOS)"
-#, fuzzy
-#~ msgid ""
-#~ "This level is to be used with care. It makes your system more easy to "
-#~ "use,\n"
-#~ " but very sensitive: it must not be used for a machine "
-#~ "connected to others\n"
-#~ " or to the Internet. There is no password access."
-#~ msgstr ""
-#~ "Ăęòû óçđîâćíü íćàáőîäíà âûêàđûńòîąâàöü ç àńöÿđîăàé. Ńińòęìà áóäçć "
-#~ "ïđàńöćé\n"
-#~ "ó êàđûńòàííi, àëć i áîëüű śóòíàé: ăęòû óçđîâćíü áÿńïćêi íćëüăà "
-#~ "âûêàđûńòîąâàöü\n"
-#~ "íà ìàűûíàő, ÿêiÿ äàëóśàíû äà ńćòêi öi äà Internet. Óâàőîä íć àáàđîíćíû "
-#~ "ïàđîëćì."
+#~ msgid "You don't have any partitions!"
+#~ msgstr "Âû íć ńòâàđûëi àíiÿêiő đàçäçćëàą!"
-#, fuzzy
#~ msgid ""
-#~ "With this security level, the use of this system as a server becomes "
-#~ "possible.\n"
-#~ " The security is now high enough to use the system as a "
-#~ "server which can accept\n"
-#~ " connections from many clients. Note: if your machine is "
-#~ "only a client on the Internet, you should choose a lower level."
+#~ "DiskDrake failed to read correctly the partition table.\n"
+#~ "Continue at your own risk!"
#~ msgstr ""
-#~ "Íà ăęòàì óçđîąíć áÿńïćêi ìàăśûìà âûêàđûńòàííć ńińòęìû ą ÿêàńöi\n"
-#~ "ńćđâćđó. Óçđîâćíü áÿńïćêi äàńòàòêîâà âûńîêi äëÿ đàáîòû\n"
-#~ "ńćđâćđó, ÿêi äàïóńêàć çëóśęííi ńà űìàòëiêiìi êëićíòàìi."
-
-#, fuzzy
-#~ msgid "Basic Options"
-#~ msgstr "Îïöûi"
-
-#, fuzzy
-#~ msgid "Security Checks"
-#~ msgstr "êóśàđàâû"
-
-#, fuzzy
-#~ msgid "Please choose your CD space"
-#~ msgstr "Êàëi ëàńêà, àáÿđûöć òûï êëàâiÿòóđû."
+#~ "DiskDrake íć çìîă ïđàâiëüíà ïđàśûòàöü òàáëiöó đàäçćëàą.\n"
+#~ "Ïđàöÿăâàéöć òîëüêi íà ńâàț đûçûêó!"
-#, fuzzy
-#~ msgid "Please enter the cd writer speed"
-#~ msgstr "Êàëł ëàńêà, çđàáłöć íćêàëüêł đóőàą ìûűűó."
-
-#, fuzzy
-#~ msgid "Please check if you want to include install boot on your CD."
-#~ msgstr "Âûáàđ ïàêćòàą äëÿ ąńòàëÿâàííÿ"
-
-#, fuzzy
-#~ msgid "Url should begin with 'ftp:'"
-#~ msgstr "Proxy ïàâiíćí áûöü ftp://..."
-
-#, fuzzy
#~ msgid ""
-#~ "Please check if you want to include\n"
-#~ " install boot on your CD."
-#~ msgstr "Âûáàđ ïàêćòàą äëÿ ąńòàëÿâàííÿ"
-
-#, fuzzy
-#~ msgid "Windows PDC"
-#~ msgstr "Âûäàëiöü Windows(TM)"
-
-#, fuzzy
-#~ msgid "Tamil"
-#~ msgstr "Òàáëiöà"
-
-#, fuzzy
-#~ msgid "PDC Server Name"
-#~ msgstr "NIS ńćđâćđ:"
-
-#, fuzzy
-#~ msgid "Set up printer manually"
-#~ msgstr "Àääàëćíû ïđûíòęđ"
-
-#, fuzzy
-#~ msgid "Installing HPOJ package..."
-#~ msgstr "Óńòàëÿâàííć ïàêćòó %s"
-
-#, fuzzy
-#~ msgid "Installing SANE packages..."
-#~ msgstr "Óńòàëÿâàííć ïàêćòó %s"
-
-#, fuzzy
-#~ msgid "Installing mtools packages..."
-#~ msgstr "Óńòàëÿâàííć ïàêćòó %s"
-
-#, fuzzy
-#~ msgid "Making printer port available for CUPS..."
-#~ msgstr "Śûòàț áàçó äàäçćíûő äđàéâćđîą CUPS"
-
-#, fuzzy
-#~ msgid "Control Center"
-#~ msgstr "Äàëóśęííć äà Iíòęđíęòó"
+#~ "I can't read your partition table, it's too corrupted for me :(\n"
+#~ "I'll try to go on blanking bad partitions"
+#~ msgstr ""
+#~ "Òàáëiöà đàçäçćëàą íć śûòàćööà, ÿíà çàíàäòà ńàïńàâàíà äëÿ ìćíÿ :(\n"
+#~ "Ïàńïđàáóț ińöi äàëćé i áóäó ïđàïóńêàöü äđęííûÿ đàçäçćëû"
#~ msgid "Choose the tool you want to use"
#~ msgstr "Àáÿđûöć iíńòđóìćíò, ÿêi æàäàćöć ńêàđûńòàöü"
@@ -12465,9 +12880,6 @@ msgstr "Íàâóêîâûÿ ïđûêëàäàííł"
#~ msgid "Select a graphics card"
#~ msgstr "Àáÿđûöć âiäęàêàđòó"
-#~ msgid "Warning: testing this graphics card may freeze your computer"
-#~ msgstr "Ïàïÿđęäæàííć: òęńöiđàâàííć íà ăęòàé âiäęàêàđöć íćáÿńïćśíà"
-
#~ msgid "Standard VGA, 640x480 at 60 Hz"
#~ msgstr "Ńòàíäàđòíû VGA, 640x480 ïđû 60 Hz"
@@ -13892,9 +14304,6 @@ msgstr "Íàâóêîâûÿ ïđûêëàäàííł"
#~ "Óńòàąöć äûńêćòó äëÿ çàïińó çàăđóçśûêó ç HTP\n"
#~ "(óńć äàäçćíûÿ íà ăęòàé äûńêćöć áóäóöü çíiűśàíû)"
-#~ msgid "Everything configured!"
-#~ msgstr "Ąńž ńêàíôiăóđàâàíà!"
-
#~ msgid "Everything has been configured.\n"
#~ msgstr "Óńž ńêàíôiăóđàâàíà.\n"
@@ -14180,9 +14589,6 @@ msgstr "Íàâóêîâûÿ ïđûêëàäàííł"
#~ "Ïàäûőîäçÿśûÿ đęæûìû íć çíîéäçćíû.\n"
#~ "Ïàńïđàáóéöć âûáđàöü iíűóț âiäęàêàđòó öi ìàíiòîđ"
-#~ msgid "Other countries"
-#~ msgstr "Iíűûÿ êđàiíû"
-
#~ msgid "Password:"
#~ msgstr "Ïàđîëü:"
@@ -14201,9 +14607,6 @@ msgstr "Íàâóêîâûÿ ïđûêëàäàííł"
#~ msgid "Please submit the following information"
#~ msgstr "Ïđàäńòàąöć íàńòóïíóț iíôàđìàöûț"
-#~ msgid "Reconfigure local network"
-#~ msgstr "Ïćđàêàíôiăóđàâàöü ëàêàëüíóț ńćòêó"
-
#~ msgid "Regexp"
#~ msgstr "Regexp"
@@ -14558,9 +14961,6 @@ msgstr "Íàâóêîâûÿ ïđûêëàäàííł"
#~ msgid "linear"
#~ msgstr "Ëiíćéíà"
-#~ msgid "loopback"
-#~ msgstr "Âiđòóàëüíàÿ ôàéëàâàÿ ńińòęìà (loopback)"
-
#~ msgid "nfs mount failed"
#~ msgstr "ïàìûëêà ìàíöiđàâàííÿ nfs"
diff --git a/perl-install/share/po/bg.po b/perl-install/share/po/bg.po
index 65fb2b273..2fb864424 100644
--- a/perl-install/share/po/bg.po
+++ b/perl-install/share/po/bg.po
@@ -6,8 +6,8 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: drakfloppy 0.43\n"
-"POT-Creation-Date: 2002-08-21 15:44+0200\n"
+"Project-Id-Version: DrakX\n"
+"POT-Creation-Date: 2002-09-02 20:14+0200\n"
"PO-Revision-Date: 2000-02-28 20:56+0200\n"
"Last-Translator: Bozhan Boiadzhiev <bozhan@plov.omega.bg>\n"
"Language-Team: Bulgarian\n"
@@ -51,45 +51,45 @@ msgstr "32 ÌÁ"
msgid "64 MB or more"
msgstr "64 ÌÁ èëè ïîâćść"
-#: ../../Xconfig/card.pm_.c:201
+#: ../../Xconfig/card.pm_.c:203
msgid "Choose a X server"
msgstr "Èçáćđćòć X ńúđâúđ"
-#: ../../Xconfig/card.pm_.c:201
+#: ../../Xconfig/card.pm_.c:203
msgid "X server"
msgstr "X ńúđâúđ"
-#: ../../Xconfig/card.pm_.c:228
+#: ../../Xconfig/card.pm_.c:230
msgid "Multi-head configuration"
msgstr ""
-#: ../../Xconfig/card.pm_.c:229
+#: ../../Xconfig/card.pm_.c:231
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
msgstr ""
-#: ../../Xconfig/card.pm_.c:284
+#: ../../Xconfig/card.pm_.c:286
msgid "Select the memory size of your graphics card"
msgstr "Èçáćđćòć êàïàöèòćò íà ïàìćòòà íà ăđàôèśíàòà ńè êàđòà"
-#: ../../Xconfig/card.pm_.c:345
+#: ../../Xconfig/card.pm_.c:347
msgid "XFree configuration"
msgstr "Íàńòđîéêà íà XFree"
-#: ../../Xconfig/card.pm_.c:347
+#: ../../Xconfig/card.pm_.c:349
msgid "Which configuration of XFree do you want to have?"
msgstr "Êîÿ íàńòđîéêà íà XFree èńêàòć äà èìàòć ?"
-#: ../../Xconfig/card.pm_.c:379
+#: ../../Xconfig/card.pm_.c:381
msgid "Configure all heads independently"
msgstr ""
-#: ../../Xconfig/card.pm_.c:380
+#: ../../Xconfig/card.pm_.c:382
msgid "Use Xinerama extension"
msgstr "Èçïîëçâàé đàçűèđćíèćòî Xinerama"
-#: ../../Xconfig/card.pm_.c:384
+#: ../../Xconfig/card.pm_.c:386
#, fuzzy, c-format
msgid "Configure only card \"%s\"%s"
msgstr "Íàńòđîéêà ńàìî íà êàđòà \"%s\" (%s)"
@@ -100,13 +100,13 @@ msgstr "Íàńòđîéêà ńàìî íà êàđòà \"%s\" (%s)"
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:435
+#: ../../Xconfig/card.pm_.c:410 ../../Xconfig/card.pm_.c:436
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s with 3D hardware acceleration"
msgstr "XFree %s ń őàđäóćđíî 3D óńêîđćíèć"
-#: ../../Xconfig/card.pm_.c:412
+#: ../../Xconfig/card.pm_.c:413
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -117,17 +117,17 @@ msgstr ""
"Êàđòàòà âè ńć ïîääúđæà îò XFree %s, êîéòî ìîæć äà èìà ïî-äîáđà ïîääđúæêà íà "
"2D."
-#: ../../Xconfig/card.pm_.c:414 ../../Xconfig/card.pm_.c:437
+#: ../../Xconfig/card.pm_.c:415 ../../Xconfig/card.pm_.c:438
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr "Êàđòàòà âè ìîæć äà èìà ïîääđúæêà íà őàđäóćđíî 3D óńêîđćíèć â XFree %s."
-#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:443
+#: ../../Xconfig/card.pm_.c:423 ../../Xconfig/card.pm_.c:444
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s ń ĆÊŃÏĆĐÈÌĆÍÒÀËÍO őàđäóćđíî 3D óńêîđćíèć"
-#: ../../Xconfig/card.pm_.c:425
+#: ../../Xconfig/card.pm_.c:426
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -141,7 +141,7 @@ msgstr ""
"Êàđòàòà âè ńć ïîääúđæà îò XFree %s, êîéòî ìîæć äà èìà ïî-äîáđà ïîääđúæêà íà "
"2D."
-#: ../../Xconfig/card.pm_.c:428 ../../Xconfig/card.pm_.c:445
+#: ../../Xconfig/card.pm_.c:429 ../../Xconfig/card.pm_.c:446
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
@@ -151,53 +151,54 @@ msgstr ""
"ÎÒÁĆËĆÆĆÒĆ, ŚĆ ÒÎÂÀ Ć ĆÊŃÏĆĐÈÌĆÍÒÀËÍÀ ÏÎÄÄĐÚÆÊÀ È ÊÎÌÏȚÒÚĐÚÒ ÂÈ ÌÎÆĆ ÄÀ "
"ÇÀÁÈĆ."
-#: ../../Xconfig/card.pm_.c:451
+#: ../../Xconfig/card.pm_.c:452
msgid "Xpmac (installation display driver)"
msgstr "Xpmac (èíńòàëàöèÿ ăđàôèśćí äđàéâćđ)"
-#: ../../Xconfig/main.pm_.c:78 ../../Xconfig/main.pm_.c:79
-#: ../../Xconfig/monitor.pm_.c:94 ../../any.pm_.c:974
+#: ../../Xconfig/main.pm_.c:76 ../../Xconfig/main.pm_.c:77
+#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:977
msgid "Custom"
msgstr "Êëèćíòńêà"
-#: ../../Xconfig/main.pm_.c:104
+#: ../../Xconfig/main.pm_.c:102
#, fuzzy
msgid "Graphic Card"
msgstr "Ăđàôèśíà êàđòà"
-#: ../../Xconfig/main.pm_.c:107 ../../Xconfig/monitor.pm_.c:91
+#: ../../Xconfig/main.pm_.c:105 ../../Xconfig/monitor.pm_.c:93
msgid "Monitor"
msgstr "Ìîíèòîđ"
-#: ../../Xconfig/main.pm_.c:110 ../../Xconfig/resolution_and_depth.pm_.c:209
+#: ../../Xconfig/main.pm_.c:108 ../../Xconfig/resolution_and_depth.pm_.c:209
msgid "Resolution"
msgstr "Đàçäćëèòćëíà ńïîńîáíîńò"
-#: ../../Xconfig/main.pm_.c:114
+#: ../../Xconfig/main.pm_.c:113
msgid "Test"
msgstr ""
-#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:59
-#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/removable.pm_.c:25
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:63
+#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/removable.pm_.c:25
#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "Îïöèè"
#: ../../Xconfig/main.pm_.c:121 ../../Xconfig/resolution_and_depth.pm_.c:268
-#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:281
+#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:275
#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
-#: ../../interactive.pm_.c:351 ../../interactive/http.pm_.c:104
+#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:104
#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
-#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:156
-#: ../../my_gtk.pm_.c:284 ../../my_gtk.pm_.c:307
-#: ../../standalone/drakbackup_.c:3324 ../../standalone/drakbackup_.c:3419
-#: ../../standalone/drakbackup_.c:3438
+#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:159
+#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310
+#: ../../standalone/drakbackup_.c:3972 ../../standalone/drakbackup_.c:4067
+#: ../../standalone/drakbackup_.c:4086
msgid "Ok"
msgstr "Ok"
#: ../../Xconfig/main.pm_.c:121 ../../diskdrake/dav.pm_.c:24
-#: ../../printerdrake.pm_.c:2933 ../../standalone/logdrake_.c:224
+#: ../../harddrake/ui.pm_.c:98 ../../printerdrake.pm_.c:3155
+#: ../../standalone/logdrake_.c:224
msgid "Quit"
msgstr "Èçőîä"
@@ -214,28 +215,28 @@ msgstr ""
"\n"
"%s"
-#: ../../Xconfig/monitor.pm_.c:91
+#: ../../Xconfig/monitor.pm_.c:93
msgid "Choose a monitor"
msgstr "Èçáćđćòć ìîíèòîđ"
-#: ../../Xconfig/monitor.pm_.c:95
+#: ../../Xconfig/monitor.pm_.c:97
msgid "Plug'n Play"
msgstr ""
-#: ../../Xconfig/monitor.pm_.c:96 ../../mouse.pm_.c:45
+#: ../../Xconfig/monitor.pm_.c:98 ../../mouse.pm_.c:46
msgid "Generic"
msgstr "Îáù"
-#: ../../Xconfig/monitor.pm_.c:97 ../../harddrake/ui.pm_.c:36
+#: ../../Xconfig/monitor.pm_.c:99 ../../harddrake/ui.pm_.c:37
#, fuzzy
msgid "Vendor"
msgstr "Âúđíè"
-#: ../../Xconfig/monitor.pm_.c:107
+#: ../../Xconfig/monitor.pm_.c:109
msgid "Plug'n Play probing failed. Please choose a precise monitor"
msgstr ""
-#: ../../Xconfig/monitor.pm_.c:112
+#: ../../Xconfig/monitor.pm_.c:114
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -259,11 +260,11 @@ msgstr ""
"ïîâđćäèòć ìîíèòîđà ńè.\n"
" Àêî èìàòć íÿêàêâè ńúìíćíèÿ, èçáćđćòć êîíńćđâàòèâíà íàńòđîéêà."
-#: ../../Xconfig/monitor.pm_.c:119
+#: ../../Xconfig/monitor.pm_.c:121
msgid "Horizontal refresh rate"
msgstr "Őîđèçîíòàëíà ńêîđîńò íà âúçńòàíîâÿâàíć"
-#: ../../Xconfig/monitor.pm_.c:120
+#: ../../Xconfig/monitor.pm_.c:122
msgid "Vertical refresh rate"
msgstr "Âćđòèêàëíà ńêîđîńò íà âúçńòàíîâÿâàíć"
@@ -300,36 +301,42 @@ msgstr "Èçáćđćòć đàçäćëèòćëíà ńïîńîáíîńò è äúëáîśèíà íà öâćòîâćòć"
msgid "Graphics card: %s"
msgstr "Ăđàôèśíà êàđòà: %s"
-#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1015
-#: ../../bootlook.pm_.c:334 ../../diskdrake/smbnfs_gtk.pm_.c:87
-#: ../../install_steps_gtk.pm_.c:412 ../../install_steps_gtk.pm_.c:470
-#: ../../install_steps_interactive.pm_.c:576 ../../interactive.pm_.c:142
-#: ../../interactive.pm_.c:351 ../../interactive/http.pm_.c:105
+#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1018
+#: ../../bootlook.pm_.c:338 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:406 ../../install_steps_gtk.pm_.c:464
+#: ../../install_steps_interactive.pm_.c:560 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:105
#: ../../interactive/newt.pm_.c:174 ../../interactive/stdio.pm_.c:39
-#: ../../interactive/stdio.pm_.c:143 ../../my_gtk.pm_.c:155
-#: ../../my_gtk.pm_.c:159 ../../my_gtk.pm_.c:284
-#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1990
-#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3278
-#: ../../standalone/drakbackup_.c:3311 ../../standalone/drakbackup_.c:3337
-#: ../../standalone/drakbackup_.c:3364 ../../standalone/drakbackup_.c:3391
-#: ../../standalone/drakbackup_.c:3451 ../../standalone/drakbackup_.c:3478
-#: ../../standalone/drakbackup_.c:3504 ../../standalone/drakconnect_.c:115
-#: ../../standalone/drakconnect_.c:147 ../../standalone/drakconnect_.c:289
-#: ../../standalone/drakconnect_.c:537 ../../standalone/drakconnect_.c:679
-#: ../../standalone/drakfloppy_.c:234 ../../standalone/drakfloppy_.c:383
-#: ../../standalone/drakfont_.c:970 ../../standalone/drakgw_.c:598
-#: ../../standalone/logdrake_.c:224 ../../standalone/logdrake_.c:528
-#: ../../standalone/tinyfirewall_.c:64
+#: ../../interactive/stdio.pm_.c:143 ../../my_gtk.pm_.c:158
+#: ../../my_gtk.pm_.c:162 ../../my_gtk.pm_.c:287
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:2124
+#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3926
+#: ../../standalone/drakbackup_.c:3959 ../../standalone/drakbackup_.c:3985
+#: ../../standalone/drakbackup_.c:4012 ../../standalone/drakbackup_.c:4039
+#: ../../standalone/drakbackup_.c:4099 ../../standalone/drakbackup_.c:4126
+#: ../../standalone/drakbackup_.c:4156 ../../standalone/drakbackup_.c:4182
+#: ../../standalone/drakconnect_.c:115 ../../standalone/drakconnect_.c:147
+#: ../../standalone/drakconnect_.c:289 ../../standalone/drakconnect_.c:537
+#: ../../standalone/drakconnect_.c:679 ../../standalone/drakfloppy_.c:234
+#: ../../standalone/drakfloppy_.c:383 ../../standalone/drakfont_.c:970
+#: ../../standalone/drakgw_.c:536 ../../standalone/logdrake_.c:224
+#: ../../standalone/logdrake_.c:526
msgid "Cancel"
msgstr "Îòêàç"
-#: ../../Xconfig/test.pm_.c:26
+#: ../../Xconfig/test.pm_.c:30
+msgid "Test of the configuration"
+msgstr "Ïđîâćđêà íà íàńòđîéêàòà"
+
+#: ../../Xconfig/test.pm_.c:31
msgid "Do you want to test the configuration?"
msgstr "Èńêàòć ëè äà òćńòâàòć íàńòđîéêèòć?"
-#: ../../Xconfig/test.pm_.c:26
-msgid "Test of the configuration"
-msgstr "Ïđîâćđêà íà íàńòđîéêàòà"
+#: ../../Xconfig/test.pm_.c:31
+#, fuzzy
+msgid "Warning: testing this graphic card may freeze your computer"
+msgstr ""
+"Âíèìàíèć: òćńòâàíćòî íà òàçè ăđàôèśíà êàđòà ìîæć äà \"çàìđàçè\" êîìïțòúđà âè"
#: ../../Xconfig/various.pm_.c:29
#, c-format
@@ -465,26 +472,22 @@ msgstr "Ńòàđòèđàíć îò DOS/Windows (loadlin)"
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:158 ../../any.pm_.c:190
+#: ../../any.pm_.c:159 ../../any.pm_.c:190
msgid "Bootloader main options"
msgstr "Îïöèè íà çàđćæäàùàòà ïđîăđàìà"
-#: ../../any.pm_.c:159 ../../any.pm_.c:191
+#: ../../any.pm_.c:160 ../../any.pm_.c:191
msgid "Bootloader to use"
msgstr "Èçïîëçâàíà çàđćæäàùàòà ïđîăđàìà"
-#: ../../any.pm_.c:161
+#: ../../any.pm_.c:162
msgid "Bootloader installation"
msgstr "Bootloader èíńòàëàöèÿ"
-#: ../../any.pm_.c:163 ../../any.pm_.c:193
+#: ../../any.pm_.c:164 ../../any.pm_.c:193
msgid "Boot device"
msgstr "Ńòàđòèđàùî óńòđîéńòâî"
-#: ../../any.pm_.c:164
-msgid "LBA (doesn't work on old BIOSes)"
-msgstr "LBA (íć đàáîòè íà ńòàđè BIOS-è)"
-
#: ../../any.pm_.c:165
msgid "Compact"
msgstr "Êîìïàêòćí"
@@ -501,16 +504,17 @@ msgstr "Âèäćî đćæèì"
msgid "Delay before booting default image"
msgstr "Çàáàâÿíć ïđćäè ńòàđòèđàíćòî íà default äÿëà"
-#: ../../any.pm_.c:170 ../../any.pm_.c:786
+#: ../../any.pm_.c:170 ../../any.pm_.c:788
#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1111 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:743 ../../printerdrake.pm_.c:858
-#: ../../standalone/drakconnect_.c:624 ../../standalone/drakconnect_.c:649
+#: ../../install_steps_interactive.pm_.c:1096 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:850 ../../printerdrake.pm_.c:965
+#: ../../standalone/drakbackup_.c:3528 ../../standalone/drakconnect_.c:624
+#: ../../standalone/drakconnect_.c:649
msgid "Password"
msgstr "Ïàđîëà"
-#: ../../any.pm_.c:171 ../../any.pm_.c:787
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../any.pm_.c:171 ../../any.pm_.c:789
+#: ../../install_steps_interactive.pm_.c:1097
msgid "Password (again)"
msgstr "Ïàđîëà (îòíîâî)"
@@ -544,14 +548,14 @@ msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr "Îïöèÿòà ``Îăđàíèśè îïöèèòć îò êîìàíäíèÿ đćä'' ć áćçïîëćçíà áćç ïàđîëà"
-#: ../../any.pm_.c:184 ../../any.pm_.c:762
-#: ../../diskdrake/interactive.pm_.c:1180
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../any.pm_.c:184 ../../any.pm_.c:764
+#: ../../diskdrake/interactive.pm_.c:1191
+#: ../../install_steps_interactive.pm_.c:1091
msgid "Please try again"
msgstr "Ìîëÿ, îïèòàéòć îòíîâî"
-#: ../../any.pm_.c:184 ../../any.pm_.c:762
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../any.pm_.c:184 ../../any.pm_.c:764
+#: ../../install_steps_interactive.pm_.c:1091
msgid "The passwords do not match"
msgstr "Ïàđîëèòć íà ńúâïàäàò"
@@ -596,16 +600,16 @@ msgstr ""
"Òîâà ńà đàçëèśíèòć çàïèńè.\n"
"Ìîæćòć äà äîáàâèòć îùć èëè äà ïđîìćíèòć ńúùćńòâóâàùèòć."
-#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1483
-#: ../../standalone/drakbackup_.c:1596 ../../standalone/drakfont_.c:1011
+#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1558
+#: ../../standalone/drakbackup_.c:1671 ../../standalone/drakfont_.c:1011
#: ../../standalone/drakfont_.c:1054
msgid "Add"
msgstr "Äîáàâè"
-#: ../../any.pm_.c:257 ../../any.pm_.c:774 ../../diskdrake/dav.pm_.c:60
+#: ../../any.pm_.c:257 ../../any.pm_.c:776 ../../diskdrake/dav.pm_.c:64
#: ../../diskdrake/hd_gtk.pm_.c:153 ../../diskdrake/removable.pm_.c:27
#: ../../diskdrake/smbnfs_gtk.pm_.c:88 ../../interactive/http.pm_.c:153
-#: ../../standalone/drakbackup_.c:2696
+#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2772
msgid "Done"
msgstr "Ăîòîâî"
@@ -617,7 +621,7 @@ msgstr "Ìîäèôèöèđàé"
msgid "Which type of entry do you want to add?"
msgstr "Êàêúâ òèï èíôîđìàöèÿ èńêàòć äà ïđèáàâèòć"
-#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1630
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1705
msgid "Linux"
msgstr "Linux"
@@ -712,13 +716,13 @@ msgstr "Èìàòć ëè äđóă(è) ?"
msgid "Do you have any %s interfaces?"
msgstr "Èìàòć ëè íÿêàêúâ %s èíòćđôćéń?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:821 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:283
+#: ../../any.pm_.c:660 ../../any.pm_.c:823 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:286
msgid "No"
msgstr "Íć"
-#: ../../any.pm_.c:660 ../../any.pm_.c:820 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:283
+#: ../../any.pm_.c:660 ../../any.pm_.c:822 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:286
msgid "Yes"
msgstr "Äà"
@@ -818,39 +822,47 @@ msgstr ""
msgid "access to administrative files"
msgstr ""
-#: ../../any.pm_.c:758
+#: ../../any.pm_.c:754
+msgid "access to network tools"
+msgstr ""
+
+#: ../../any.pm_.c:755
+msgid "access to compilation tools"
+msgstr ""
+
+#: ../../any.pm_.c:760
#, c-format
msgid "(already added %s)"
msgstr "(âćść ïđèáàâèő %s)"
-#: ../../any.pm_.c:763
+#: ../../any.pm_.c:765
msgid "This password is too simple"
msgstr "Òàçè ïàđîëà ć ïđćêàëćíî ïđîńòà"
-#: ../../any.pm_.c:764
+#: ../../any.pm_.c:766
msgid "Please give a user name"
msgstr "Ìîëÿ, çàäàéòć ïîòđćáèòćëńêî èìć"
-#: ../../any.pm_.c:765
+#: ../../any.pm_.c:767
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
"Ïîòđćáèòćëńêîòî èìć ìîæć äà âêëțśâà ńàìî ìàëêè áóêâè, íîìćđà, `-' è `_'"
-#: ../../any.pm_.c:766
+#: ../../any.pm_.c:768
#, fuzzy
msgid "The user name is too long"
msgstr "Òîâà ïîòđćáèòćëńêî èìć ć âćść äîáàâćíî"
-#: ../../any.pm_.c:767
+#: ../../any.pm_.c:769
msgid "This user name is already added"
msgstr "Òîâà ïîòđćáèòćëńêî èìć ć âćść äîáàâćíî"
-#: ../../any.pm_.c:771
+#: ../../any.pm_.c:773
msgid "Add user"
msgstr "Äîáàâè ïîòđćáèòćë"
-#: ../../any.pm_.c:772
+#: ../../any.pm_.c:774
#, c-format
msgid ""
"Enter a user\n"
@@ -859,32 +871,32 @@ msgstr ""
"Âúâćäćòć ïîòđćáèòćë\n"
"%s"
-#: ../../any.pm_.c:773
+#: ../../any.pm_.c:775
msgid "Accept user"
msgstr "Ïđèćìè ïîòđćáèòćë"
-#: ../../any.pm_.c:784
+#: ../../any.pm_.c:786
msgid "Real name"
msgstr "Èńòèíńêî èìć"
-#: ../../any.pm_.c:785 ../../printerdrake.pm_.c:742
-#: ../../printerdrake.pm_.c:857
+#: ../../any.pm_.c:787 ../../printerdrake.pm_.c:849
+#: ../../printerdrake.pm_.c:964
msgid "User name"
msgstr "Ïîòđćáèòćëńêî èìć"
-#: ../../any.pm_.c:788
+#: ../../any.pm_.c:790
msgid "Shell"
msgstr "Űćë"
-#: ../../any.pm_.c:790
+#: ../../any.pm_.c:792
msgid "Icon"
msgstr "Èêîíà"
-#: ../../any.pm_.c:817
+#: ../../any.pm_.c:819
msgid "Autologin"
msgstr "Autologin"
-#: ../../any.pm_.c:818
+#: ../../any.pm_.c:820
msgid ""
"I can set up your computer to automatically log on one user.\n"
"Do you want to use this feature?"
@@ -893,59 +905,59 @@ msgstr ""
"ïîòđćáèòćë.\n"
"Èńêàòć ëè òàçè âúçìîæíîńò ?"
-#: ../../any.pm_.c:822
+#: ../../any.pm_.c:824
msgid "Choose the default user:"
msgstr "Èçáćđćòć ïîäđàçáèđàù ńć ïîòđćáèòćë :"
-#: ../../any.pm_.c:823
+#: ../../any.pm_.c:825
msgid "Choose the window manager to run:"
msgstr "Èçáćđćòć Windows Manager çà ńòàđòèđàíć:"
-#: ../../any.pm_.c:838
+#: ../../any.pm_.c:840
#, fuzzy
msgid "Please choose a language to use."
msgstr "Ìîëÿ, èçáćđćòć èçïîëçâàí ćçèê."
-#: ../../any.pm_.c:840
+#: ../../any.pm_.c:842
msgid ""
"Mandrake Linux can support multiple languages. Select\n"
"the languages you would like to install. They will be available\n"
"when your installation is complete and you restart your system."
msgstr "Ìîæćòć äà èçáćđćòć äđóăè ćçèöè, êîèòî ùć áúäàò íàëèöć ńëćäèíńòàëàöèÿòà"
-#: ../../any.pm_.c:854 ../../install_steps_interactive.pm_.c:708
+#: ../../any.pm_.c:856 ../../install_steps_interactive.pm_.c:692
#: ../../standalone/drakxtv_.c:73
msgid "All"
msgstr "Âńèśêè"
-#: ../../any.pm_.c:974
+#: ../../any.pm_.c:977
#, fuzzy
msgid "Allow all users"
msgstr "Äîáàâÿíć íà ïîòđćáèòćë"
-#: ../../any.pm_.c:974
+#: ../../any.pm_.c:977
#, fuzzy
msgid "No sharing"
msgstr "Ïîäćëÿíć íà ôàéëîâć"
-#: ../../any.pm_.c:984 ../../standalone.pm_.c:57
+#: ../../any.pm_.c:987 ../../install_any.pm_.c:1183 ../../standalone.pm_.c:58
#, fuzzy, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr ""
"Òîçè ïàêćò òđÿáâà äà áúäć îáíîâćí\n"
"Ńèăóđíè ëè ńòć, ść èńêàòć äà ăî èçêëțśèòć ?"
-#: ../../any.pm_.c:987
+#: ../../any.pm_.c:990
msgid ""
"You can export using NFS or Samba. Please select which you'd like to use."
msgstr ""
-#: ../../any.pm_.c:995 ../../standalone.pm_.c:61
+#: ../../any.pm_.c:998 ../../install_any.pm_.c:1188 ../../standalone.pm_.c:63
#, c-format
msgid "Mandatory package %s is missing"
msgstr ""
-#: ../../any.pm_.c:1001
+#: ../../any.pm_.c:1004
msgid ""
"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
@@ -954,42 +966,42 @@ msgid ""
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:1015
+#: ../../any.pm_.c:1018
msgid "Launch userdrake"
msgstr ""
-#: ../../any.pm_.c:1017
+#: ../../any.pm_.c:1020
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
msgstr ""
-#: ../../any.pm_.c:1068
+#: ../../any.pm_.c:1071
msgid "Welcome To Crackers"
msgstr "Äîáđć äîűëè ïđè Cracker-èòć"
-#: ../../any.pm_.c:1069
+#: ../../any.pm_.c:1072
msgid "Poor"
msgstr "Ëîűî"
-#: ../../any.pm_.c:1070 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1073 ../../mouse.pm_.c:31
msgid "Standard"
msgstr "Ńòàíäàđòíà"
-#: ../../any.pm_.c:1071
+#: ../../any.pm_.c:1074
msgid "High"
msgstr "Âèńîêî"
-#: ../../any.pm_.c:1072
+#: ../../any.pm_.c:1075
#, fuzzy
msgid "Higher"
msgstr "Âèńîêî"
-#: ../../any.pm_.c:1073
+#: ../../any.pm_.c:1076
msgid "Paranoid"
msgstr "Ïàđàíîèśíî"
-#: ../../any.pm_.c:1076
+#: ../../any.pm_.c:1079
msgid ""
"This level is to be used with care. It makes your system more easy to use,\n"
"but very sensitive: it must not be used for a machine connected to others\n"
@@ -999,7 +1011,7 @@ msgstr ""
"óïîòđćáà, íî ć ïî-śóâńòâèòćëíî: íć òđÿáâà äà áúäć èçïîëçâàíà íà ìàűèíè\n"
"ńâúđçàíè ń äđóăè èëè ïî Èíòćđíćò. Íÿìà äîńòúï ń ïàđîëè."
-#: ../../any.pm_.c:1079
+#: ../../any.pm_.c:1082
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -1007,7 +1019,7 @@ msgstr ""
"Ïàđîëàòà ńćăà ć âêëțśćíà, íî èçïîëçâàíćòî êàòî ìđćæîâ êîìïțòúđ íć ć "
"ïđćïîđúśèòćëíî."
-#: ../../any.pm_.c:1080
+#: ../../any.pm_.c:1083
#, fuzzy
msgid ""
"This is the standard security recommended for a computer that will be used "
@@ -1017,13 +1029,13 @@ msgstr ""
"èçïîëçâàí äà ńć ńâúđçâà êúì Èíòćđíćò êàòî êëèćíò. Èìà ïđîâćđêè íà "
"ńèăóđíîńòòà. "
-#: ../../any.pm_.c:1081
+#: ../../any.pm_.c:1084
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr ""
-#: ../../any.pm_.c:1082
+#: ../../any.pm_.c:1085
#, fuzzy
msgid ""
"With this security level, the use of this system as a server becomes "
@@ -1038,7 +1050,7 @@ msgstr ""
"Ńèăóđíîńòòà ńćăà ć äîńòàòúśíî ăîëÿìà äà ńć èçïîëçâà ńèńòćìàòà êàòî\n"
"ńúđâúđ ïđèćìàù âđúçêè îò ìíîăî êëèćíòè. "
-#: ../../any.pm_.c:1085
+#: ../../any.pm_.c:1088
#, fuzzy
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
@@ -1047,32 +1059,32 @@ msgstr ""
"Èçáèđàìć 4-òî íèâî, íî ńèńòćìàòà ć íàïúëíî çàòâîđćíà.\n"
"Íèâîòî íà ńèăóđíîńò ć íà ìàêńèìóìà ńè."
-#: ../../any.pm_.c:1091
+#: ../../any.pm_.c:1094
#, fuzzy
msgid "DrakSec Basic Options"
msgstr "Îïöèè"
-#: ../../any.pm_.c:1092
+#: ../../any.pm_.c:1095
#, fuzzy
msgid "Please choose the desired security level"
msgstr "Èçáćđćòć íèâî íà ńèăóđíîńò"
-#: ../../any.pm_.c:1095
+#: ../../any.pm_.c:1098
msgid "Security level"
msgstr "Íèâî íà ńèăóđíîńò"
-#: ../../any.pm_.c:1097
+#: ../../any.pm_.c:1100
msgid "Use libsafe for servers"
msgstr "Èçïîëçâàéòć libsafe çà ńúđâúđè"
-#: ../../any.pm_.c:1098
+#: ../../any.pm_.c:1101
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
"Áèáëèîòćêà, êîÿòî îńèăóđÿâà çàùèòà îò aòàêè ń ïđćïúëâàíć íà áóôćđ è ôîđìàòíè "
"ńòđèíăîâć."
-#: ../../any.pm_.c:1099
+#: ../../any.pm_.c:1102
msgid "Security Administrator (login or email)"
msgstr ""
@@ -1114,7 +1126,7 @@ msgstr ""
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:935
+#: ../../bootloader.pm_.c:932
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Welcome to GRUB the operating system chooser!"
@@ -1128,7 +1140,7 @@ msgstr "Welcome to GRUB the operating system chooser!"
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:938
+#: ../../bootloader.pm_.c:935
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "Use the %c and %c keys for selecting which entry is highlighted."
@@ -1143,7 +1155,7 @@ msgstr "Use the %c and %c keys for selecting which entry is highlighted."
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:941
+#: ../../bootloader.pm_.c:938
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Press enter to boot the selected OS, 'e' to edit the"
@@ -1157,7 +1169,7 @@ msgstr "Press enter to boot the selected OS, 'e' to edit the"
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:941
msgid "commands before booting, or 'c' for a command-line."
msgstr "commands before booting, or 'c' for a command-line."
@@ -1171,32 +1183,32 @@ msgstr "commands before booting, or 'c' for a command-line."
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:947
+#: ../../bootloader.pm_.c:944
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "The highlighted entry will be booted automatically in %d seconds."
-#: ../../bootloader.pm_.c:951
+#: ../../bootloader.pm_.c:948
msgid "not enough room in /boot"
msgstr "íÿìà äîńòàòúśíî ìÿńòî çà /boot"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1051
+#: ../../bootloader.pm_.c:1048
msgid "Desktop"
msgstr "Äćńêòîï"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1053
+#: ../../bootloader.pm_.c:1050
msgid "Start Menu"
msgstr "Ńòàđòîâî Ìćíț"
-#: ../../bootloader.pm_.c:1072
+#: ../../bootloader.pm_.c:1069
#, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "Íć ìîæćòć äà èíńòàëèđàòć bootloader íà äÿëà %s\n"
-#: ../../bootlook.pm_.c:45
+#: ../../bootlook.pm_.c:45 ../../standalone/draksplash_.c:25
msgid "no help implemented yet.\n"
msgstr "íÿìà âúâćäćíà ïîìîù îùć.\n"
@@ -1204,8 +1216,8 @@ msgstr "íÿìà âúâćäćíà ïîìîù îùć.\n"
msgid "Boot Style Configuration"
msgstr "Íàńòđîéêà íà íàśèíà íà ńòàđòèđàíć"
-#: ../../bootlook.pm_.c:78 ../../harddrake/ui.pm_.c:59
-#: ../../harddrake/ui.pm_.c:60 ../../standalone/drakfloppy_.c:81
+#: ../../bootlook.pm_.c:78 ../../harddrake/ui.pm_.c:62
+#: ../../harddrake/ui.pm_.c:63 ../../standalone/drakfloppy_.c:81
#: ../../standalone/logdrake_.c:101
msgid "/_File"
msgstr "/_Ôàéë"
@@ -1215,7 +1227,7 @@ msgstr "/_Ôàéë"
msgid "/File/_Quit"
msgstr "/Ôàéë/_Èçőîä"
-#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:60
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:63
#: ../../standalone/drakfloppy_.c:82 ../../standalone/logdrake_.c:107
msgid "<control>Q"
msgstr "<control>Q"
@@ -1257,94 +1269,101 @@ msgstr "Èíńòàëèđàíć íà ńèńòćìàòà"
msgid "Display theme under console"
msgstr ""
-#: ../../bootlook.pm_.c:166
+#: ../../bootlook.pm_.c:145
+#, fuzzy
+msgid "Create new theme"
+msgstr "Ńúçäàé íîâ äÿë"
+
+#: ../../bootlook.pm_.c:169
msgid "Can't create Bootsplash preview"
msgstr ""
-#: ../../bootlook.pm_.c:166 ../../bootlook.pm_.c:184 ../../bootlook.pm_.c:187
-#: ../../bootlook.pm_.c:190 ../../bootlook.pm_.c:220 ../../bootlook.pm_.c:222
-#: ../../bootlook.pm_.c:232 ../../bootlook.pm_.c:241 ../../bootlook.pm_.c:248
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:336
-#: ../../diskdrake/interactive.pm_.c:351 ../../diskdrake/interactive.pm_.c:464
-#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../bootlook.pm_.c:169 ../../bootlook.pm_.c:187 ../../bootlook.pm_.c:190
+#: ../../bootlook.pm_.c:193 ../../bootlook.pm_.c:223 ../../bootlook.pm_.c:225
+#: ../../bootlook.pm_.c:235 ../../bootlook.pm_.c:244 ../../bootlook.pm_.c:251
+#: ../../diskdrake/dav.pm_.c:73 ../../diskdrake/hd_gtk.pm_.c:116
+#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/interactive.pm_.c:355
+#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/interactive.pm_.c:474
+#: ../../diskdrake/smbnfs_gtk.pm_.c:45 ../../fsedit.pm_.c:239
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:365 ../../interactive/http.pm_.c:119
-#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:80
+#: ../../interactive/http.pm_.c:119 ../../interactive/http.pm_.c:120
+#: ../../standalone/draksplash_.c:32
msgid "Error"
msgstr "Ăđćűêà"
-#: ../../bootlook.pm_.c:183
+#: ../../bootlook.pm_.c:186
#, c-format
msgid "Backup %s to %s.old"
msgstr ""
-#: ../../bootlook.pm_.c:184
+#: ../../bootlook.pm_.c:187
msgid "unable to backup lilo message"
msgstr ""
-#: ../../bootlook.pm_.c:186
+#: ../../bootlook.pm_.c:189
#, fuzzy, c-format
msgid "Copy %s to %s"
msgstr "Êîïèđàíć íà %s"
-#: ../../bootlook.pm_.c:187
+#: ../../bootlook.pm_.c:190
msgid "can't change lilo message"
msgstr ""
-#: ../../bootlook.pm_.c:190
+#: ../../bootlook.pm_.c:193
msgid "Lilo message not found"
msgstr ""
-#: ../../bootlook.pm_.c:220
+#: ../../bootlook.pm_.c:223
msgid "Can't write /etc/sysconfig/bootsplash."
msgstr ""
-#: ../../bootlook.pm_.c:220
+#: ../../bootlook.pm_.c:223
#, fuzzy, c-format
msgid "Write %s"
msgstr "XFree %s"
-#: ../../bootlook.pm_.c:222
+#: ../../bootlook.pm_.c:225
msgid ""
"Can't write /etc/sysconfig/bootsplash\n"
"File not found."
msgstr ""
-#: ../../bootlook.pm_.c:233
+#: ../../bootlook.pm_.c:236
#, c-format
msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
msgstr ""
-#: ../../bootlook.pm_.c:236
+#: ../../bootlook.pm_.c:239
#, c-format
-msgid "Make initrd 'mkinird -f /boot/initrd-%s.img %s'."
+msgid "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
msgstr ""
-#: ../../bootlook.pm_.c:242
+#: ../../bootlook.pm_.c:245
msgid ""
"Can't relaunch LiLo!\n"
"Launch \"lilo\" as root in command line to complete LiLo theme installation."
msgstr ""
-#: ../../bootlook.pm_.c:246
+#: ../../bootlook.pm_.c:249
msgid "Relaunch 'lilo'"
msgstr ""
-#: ../../bootlook.pm_.c:248
+#: ../../bootlook.pm_.c:251 ../../standalone/draksplash_.c:161
+#: ../../standalone/draksplash_.c:330 ../../standalone/draksplash_.c:454
#, fuzzy
msgid "Notice"
msgstr "Áćç ăđàôèêà"
-#: ../../bootlook.pm_.c:249
+#: ../../bootlook.pm_.c:252
msgid "LiLo and Bootsplash themes installation successfull"
msgstr ""
-#: ../../bootlook.pm_.c:249
+#: ../../bootlook.pm_.c:252
#, fuzzy
msgid "Theme installation failed!"
msgstr "Èçáîđ íà êëàń èíńòàëàöèÿ"
-#: ../../bootlook.pm_.c:258
+#: ../../bootlook.pm_.c:261
#, c-format
msgid ""
"You are currently using %s as your boot manager.\n"
@@ -1353,23 +1372,22 @@ msgstr ""
"Â ìîìćíòà èçïîëçâàòć %s êàòî ïđîăđàìà çà ńòàđòèđàíć.\n"
"Öúêíćòć íà Íàńòđîé, çà äà ńòàđòèđàòć óńòàíîâÿâàùèÿ ìàăüîńíèê."
-#: ../../bootlook.pm_.c:260 ../../standalone/drakbackup_.c:2352
-#: ../../standalone/drakbackup_.c:2362 ../../standalone/drakbackup_.c:2372
-#: ../../standalone/drakbackup_.c:2380 ../../standalone/drakgw_.c:592
-#: ../../standalone/tinyfirewall_.c:58
+#: ../../bootlook.pm_.c:263 ../../standalone/drakbackup_.c:2427
+#: ../../standalone/drakbackup_.c:2437 ../../standalone/drakbackup_.c:2447
+#: ../../standalone/drakbackup_.c:2455 ../../standalone/drakgw_.c:530
msgid "Configure"
msgstr "Íàńòđîé"
-#: ../../bootlook.pm_.c:267
+#: ../../bootlook.pm_.c:270
#, fuzzy
msgid "Splash selection"
msgstr "Çàïàçè èçáîđ íà ïàêćòè"
-#: ../../bootlook.pm_.c:270
+#: ../../bootlook.pm_.c:273
msgid "Themes"
msgstr ""
-#: ../../bootlook.pm_.c:272
+#: ../../bootlook.pm_.c:275
msgid ""
"\n"
"Select a theme for\n"
@@ -1378,44 +1396,44 @@ msgid ""
"them separatly"
msgstr ""
-#: ../../bootlook.pm_.c:275
+#: ../../bootlook.pm_.c:278
msgid "Lilo screen"
msgstr ""
-#: ../../bootlook.pm_.c:279
+#: ../../bootlook.pm_.c:283
msgid "Bootsplash"
msgstr ""
-#: ../../bootlook.pm_.c:314
+#: ../../bootlook.pm_.c:318
msgid "System mode"
msgstr "Ńèńòćìćí đćæèì"
-#: ../../bootlook.pm_.c:316
+#: ../../bootlook.pm_.c:320
msgid "Launch the graphical environment when your system starts"
msgstr "Ïóńíè X-Window ńèńòćìàòà ïđè ńòàđòèđàíć"
-#: ../../bootlook.pm_.c:321
+#: ../../bootlook.pm_.c:325
msgid "No, I don't want autologin"
msgstr "Íć, íć èńêàì autologin"
-#: ../../bootlook.pm_.c:323
+#: ../../bootlook.pm_.c:327
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "Äà, èńêàì autologin ń òîâà (ïîòđćáèòćë, äćńêòîï)"
-#: ../../bootlook.pm_.c:333 ../../network/netconnect.pm_.c:101
+#: ../../bootlook.pm_.c:337 ../../network/netconnect.pm_.c:101
#: ../../standalone/drakTermServ_.c:173 ../../standalone/drakTermServ_.c:300
-#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:3513
-#: ../../standalone/drakbackup_.c:4290 ../../standalone/drakconnect_.c:108
+#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4191
+#: ../../standalone/drakbackup_.c:4952 ../../standalone/drakconnect_.c:108
#: ../../standalone/drakconnect_.c:140 ../../standalone/drakconnect_.c:296
#: ../../standalone/drakconnect_.c:435 ../../standalone/drakconnect_.c:521
#: ../../standalone/drakconnect_.c:564 ../../standalone/drakconnect_.c:667
#: ../../standalone/drakfloppy_.c:376 ../../standalone/drakfont_.c:612
#: ../../standalone/drakfont_.c:799 ../../standalone/drakfont_.c:876
-#: ../../standalone/drakfont_.c:963 ../../standalone/logdrake_.c:521
+#: ../../standalone/drakfont_.c:963 ../../standalone/logdrake_.c:519
msgid "OK"
msgstr "OK"
-#: ../../bootlook.pm_.c:403
+#: ../../bootlook.pm_.c:407
#, c-format
msgid "can not open /etc/inittab for reading: %s"
msgstr "íć ìîăà äà îòâîđÿ /etc/inittab çà śćòćíć: %s"
@@ -1520,49 +1538,53 @@ msgstr "ńćđèéíà"
msgid "United States"
msgstr ""
-#: ../../detect_devices.pm_.c:599 ../../detect_devices.pm_.c:641
-#: ../../detect_devices.pm_.c:803
-#, fuzzy
-msgid "Unknown Model"
-msgstr "Íćèçâćńòćí ìîäćë"
-
#: ../../diskdrake/dav.pm_.c:23
#, fuzzy
msgid "New"
msgstr "íîâ"
-#: ../../diskdrake/dav.pm_.c:57
+#: ../../diskdrake/dav.pm_.c:59 ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/smbnfs_gtk.pm_.c:81
+msgid "Unmount"
+msgstr "Äćìîíòèđàé"
+
+#: ../../diskdrake/dav.pm_.c:60 ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/smbnfs_gtk.pm_.c:82
+msgid "Mount"
+msgstr "Ìîíòèđàé"
+
+#: ../../diskdrake/dav.pm_.c:61
msgid "Server"
msgstr "Ńúđâúđ"
-#: ../../diskdrake/dav.pm_.c:58 ../../diskdrake/interactive.pm_.c:375
-#: ../../diskdrake/interactive.pm_.c:558 ../../diskdrake/interactive.pm_.c:585
+#: ../../diskdrake/dav.pm_.c:62 ../../diskdrake/interactive.pm_.c:379
+#: ../../diskdrake/interactive.pm_.c:568 ../../diskdrake/interactive.pm_.c:595
#: ../../diskdrake/removable.pm_.c:24 ../../diskdrake/removable_gtk.pm_.c:15
#: ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr "Ìÿńòî íà ìîíòèđàíć"
-#: ../../diskdrake/dav.pm_.c:68
+#: ../../diskdrake/dav.pm_.c:81
#, fuzzy
msgid "Please enter the WebDAV server URL"
msgstr "Ìîëÿ, ïđîáâàéòć ìèűêàòà ńè"
-#: ../../diskdrake/dav.pm_.c:71
+#: ../../diskdrake/dav.pm_.c:84
msgid "The URL must begin with http:// or https://"
msgstr ""
-#: ../../diskdrake/dav.pm_.c:92
+#: ../../diskdrake/dav.pm_.c:105
#, fuzzy
msgid "Server: "
msgstr "Ńúđâúđ"
-#: ../../diskdrake/dav.pm_.c:93 ../../diskdrake/interactive.pm_.c:435
-#: ../../diskdrake/interactive.pm_.c:1079
-#: ../../diskdrake/interactive.pm_.c:1153
+#: ../../diskdrake/dav.pm_.c:106 ../../diskdrake/interactive.pm_.c:440
+#: ../../diskdrake/interactive.pm_.c:1089
+#: ../../diskdrake/interactive.pm_.c:1164
msgid "Mount point: "
msgstr "Ìÿńòî íà ìîíòèđàíć: "
-#: ../../diskdrake/dav.pm_.c:94 ../../diskdrake/interactive.pm_.c:1159
+#: ../../diskdrake/dav.pm_.c:107 ../../diskdrake/interactive.pm_.c:1170
#, c-format
msgid "Options: %s"
msgstr "Îïöèè: %s"
@@ -1571,8 +1593,9 @@ msgstr "Îïöèè: %s"
msgid "Please make a backup of your data first"
msgstr "Ïúđâî ńúçäàéòć backup íà ńâîèòć äàííè"
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:924
-#: ../../diskdrake/interactive.pm_.c:933 ../../diskdrake/interactive.pm_.c:999
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:934
+#: ../../diskdrake/interactive.pm_.c:943
+#: ../../diskdrake/interactive.pm_.c:1009
msgid "Read carefully!"
msgstr "Ïđîśćòćòć âíèìàòćëíî !"
@@ -1611,10 +1634,15 @@ msgid "Please click on a partition"
msgstr "Ìîëÿ, öúêíćòć íà äÿëà"
#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
-#: ../../install_steps_gtk.pm_.c:471
+#: ../../install_steps_gtk.pm_.c:465
msgid "Details"
msgstr "Ïîäđîáíîńòè"
+#: ../../diskdrake/hd_gtk.pm_.c:252
+#, fuzzy
+msgid "No hard drives found"
+msgstr "Ëîêàëćí ïđèíòćđ"
+
#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Ext2"
msgstr "Ext2"
@@ -1639,13 +1667,13 @@ msgstr "SunOS"
msgid "Swap"
msgstr "Swap"
-#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1105
msgid "Empty"
msgstr "Ïđàçćí"
-#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:331
-#: ../../install_steps_gtk.pm_.c:389 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1679
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:325
+#: ../../install_steps_gtk.pm_.c:383 ../../mouse.pm_.c:165
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1754
msgid "Other"
msgstr "Äđóăà"
@@ -1653,12 +1681,12 @@ msgstr "Äđóăà"
msgid "Filesystem types:"
msgstr "Âèäîâć ôàéëîâà ńèńòćìà:"
-#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:397
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:402
msgid "Create"
msgstr "Ńúçäàé"
-#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:376
-#: ../../diskdrake/interactive.pm_.c:521 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:380
+#: ../../diskdrake/interactive.pm_.c:531 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "Âèä"
@@ -1668,7 +1696,7 @@ msgstr "Âèä"
msgid "Use ``%s'' instead"
msgstr "Âìćńòî òîâà èçïîëçâàéòć ``%s''"
-#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:389
msgid "Delete"
msgstr "Èçòđèé"
@@ -1676,79 +1704,79 @@ msgstr "Èçòđèé"
msgid "Use ``Unmount'' first"
msgstr "Ïúđâî èçïîëçâàéòć 'Äćìîíòèđàíć'"
-#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:513
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:518
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
msgstr ""
"Ńëćä ïđîìÿíà íà òèïà íà äÿëà %s, âńèśêè äàííè âúđőó íćăî ùć áúäàò çàăóáćíè"
-#: ../../diskdrake/interactive.pm_.c:173
+#: ../../diskdrake/interactive.pm_.c:174
msgid "Choose a partition"
msgstr "Èçáćđćòć äÿë"
-#: ../../diskdrake/interactive.pm_.c:173
+#: ../../diskdrake/interactive.pm_.c:174
msgid "Choose another partition"
msgstr "Èçáćđćòć äđóă äÿë"
-#: ../../diskdrake/interactive.pm_.c:198
+#: ../../diskdrake/interactive.pm_.c:199
msgid "Exit"
msgstr "Èçëćç"
-#: ../../diskdrake/interactive.pm_.c:220
+#: ../../diskdrake/interactive.pm_.c:221
msgid "Toggle to expert mode"
msgstr "Ïđćìèíè â Ćêńïćđòćí đćæèì"
-#: ../../diskdrake/interactive.pm_.c:220
+#: ../../diskdrake/interactive.pm_.c:221
msgid "Toggle to normal mode"
msgstr "Ïđćìèíè â Íîđìàëćí đćæèì"
-#: ../../diskdrake/interactive.pm_.c:220
+#: ../../diskdrake/interactive.pm_.c:221
msgid "Undo"
msgstr "Âúđíè"
-#: ../../diskdrake/interactive.pm_.c:239
+#: ../../diskdrake/interactive.pm_.c:240
msgid "Continue anyway?"
msgstr "Ïđîäúëæćíèć âúïđćêè âńèśêî ?"
-#: ../../diskdrake/interactive.pm_.c:244
+#: ../../diskdrake/interactive.pm_.c:245
msgid "Quit without saving"
msgstr "Èçőîä áćç çàïèń"
-#: ../../diskdrake/interactive.pm_.c:244
+#: ../../diskdrake/interactive.pm_.c:245
msgid "Quit without writing the partition table?"
msgstr "Èçőîä, áćç äà çàïèń íà òàáëèöàòà íà äÿëîâćòć ?"
-#: ../../diskdrake/interactive.pm_.c:249
+#: ../../diskdrake/interactive.pm_.c:250
msgid "Do you want to save /etc/fstab modifications"
msgstr "Èńêàòć ëè äà çàïàçèòć ïđîìćíèòć â /etc/fstab"
-#: ../../diskdrake/interactive.pm_.c:261
+#: ../../diskdrake/interactive.pm_.c:263
msgid "Auto allocate"
msgstr "Àâòîìàòèśíî ńúçäàâàíć"
-#: ../../diskdrake/interactive.pm_.c:261
+#: ../../diskdrake/interactive.pm_.c:263
msgid "Clear all"
msgstr "Èçśèńòè âńèśêî"
-#: ../../diskdrake/interactive.pm_.c:261
+#: ../../diskdrake/interactive.pm_.c:263
#: ../../install_steps_interactive.pm_.c:214
msgid "More"
msgstr "Îùć"
-#: ../../diskdrake/interactive.pm_.c:264
+#: ../../diskdrake/interactive.pm_.c:267
msgid "Hard drive information"
msgstr "Èíôîđìàöèÿòà çà òâúđäèÿ äèńê"
-#: ../../diskdrake/interactive.pm_.c:294
+#: ../../diskdrake/interactive.pm_.c:298
msgid "All primary partitions are used"
msgstr "Âńèśêè ïúđâèśíè äÿëîâć ńć èçïîëçâàò"
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:299
msgid "I can't add any more partition"
msgstr "Íć ìîăà äà äîáàâÿ ïîâćść äÿëîâć"
-#: ../../diskdrake/interactive.pm_.c:296
+#: ../../diskdrake/interactive.pm_.c:300
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -1756,31 +1784,31 @@ msgstr ""
"Àêî èńêàòć îùć äÿëîâć, ìîëÿ èçòđèéòć ćäèí, çà äà ìîæćòć äà ńúçäàäćòć ćäèí "
"đàçűèđćí äÿë"
-#: ../../diskdrake/interactive.pm_.c:306
+#: ../../diskdrake/interactive.pm_.c:310
msgid "Save partition table"
msgstr "Çàïàçè òàáëèöàòà ń äÿëîâćòć"
-#: ../../diskdrake/interactive.pm_.c:307
+#: ../../diskdrake/interactive.pm_.c:311
msgid "Restore partition table"
msgstr "Âúçńòàíîâè òàáëèöàòà ń äÿëîâćòć"
-#: ../../diskdrake/interactive.pm_.c:308
+#: ../../diskdrake/interactive.pm_.c:312
msgid "Rescue partition table"
msgstr "Ńïàńÿâàíć òàáëèöàòà ń äÿëîâćòć"
-#: ../../diskdrake/interactive.pm_.c:310
+#: ../../diskdrake/interactive.pm_.c:314
msgid "Reload partition table"
msgstr "Ïđćçàđćäè òàáëèöàòà ń äÿëîâćòć"
-#: ../../diskdrake/interactive.pm_.c:315
+#: ../../diskdrake/interactive.pm_.c:319
msgid "Removable media automounting"
msgstr "Àâòîìàòèśíî ìîíòèđàíć íà ńìćíÿćì íîńèòćë"
-#: ../../diskdrake/interactive.pm_.c:324 ../../diskdrake/interactive.pm_.c:344
+#: ../../diskdrake/interactive.pm_.c:328 ../../diskdrake/interactive.pm_.c:348
msgid "Select file"
msgstr "Èçáćđćòć ôàéë"
-#: ../../diskdrake/interactive.pm_.c:331
+#: ../../diskdrake/interactive.pm_.c:335
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1788,11 +1816,11 @@ msgstr ""
"Đćçćđâíàòà òàáëèöà íà äÿëîâćòć íć ć ńúń ńúùàòà ăîëćìèíà\n"
"Äà ïđîäúëæà ëè âńć ïàê ?"
-#: ../../diskdrake/interactive.pm_.c:345
+#: ../../diskdrake/interactive.pm_.c:349
msgid "Warning"
msgstr "Ïđćäóïđćæäćíèć"
-#: ../../diskdrake/interactive.pm_.c:346
+#: ../../diskdrake/interactive.pm_.c:350
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1800,112 +1828,104 @@ msgstr ""
"Ńëîæćòć äèńêćòà âúâ ôëîïèòî\n"
"Âńèśêè äàííè, íàìèđàùè ńć âúđőó äèńêćòàòà, ùć áúäàò çàăóáćíè"
-#: ../../diskdrake/interactive.pm_.c:357
+#: ../../diskdrake/interactive.pm_.c:361
msgid "Trying to rescue partition table"
msgstr "Îïèòâàì ńć äà ńïàńÿ òàáëèöàòà íà äÿëîâćòć"
-#: ../../diskdrake/interactive.pm_.c:363
+#: ../../diskdrake/interactive.pm_.c:367
msgid "Detailed information"
msgstr "Ïîäđîáíà èíôîđìàöèÿ"
-#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:652
+#: ../../diskdrake/interactive.pm_.c:382 ../../diskdrake/interactive.pm_.c:662
msgid "Resize"
msgstr "Ïđîìćíè ăîëćìèíàòà"
-#: ../../diskdrake/interactive.pm_.c:379 ../../diskdrake/interactive.pm_.c:705
+#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/interactive.pm_.c:715
msgid "Move"
msgstr "Ïđćìćńòè"
-#: ../../diskdrake/interactive.pm_.c:380
+#: ../../diskdrake/interactive.pm_.c:384
msgid "Format"
msgstr "Ôîđìàòèđàé"
-#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/smbnfs_gtk.pm_.c:82
-msgid "Mount"
-msgstr "Ìîíòèđàé"
-
-#: ../../diskdrake/interactive.pm_.c:382
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Add to RAID"
msgstr "Ïđèáàâè êúì RAID"
-#: ../../diskdrake/interactive.pm_.c:383
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Add to LVM"
msgstr "Ïđèáàâè êúì LVM"
-#: ../../diskdrake/interactive.pm_.c:384 ../../diskdrake/smbnfs_gtk.pm_.c:81
-msgid "Unmount"
-msgstr "Äćìîíòèđàé"
-
-#: ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/interactive.pm_.c:390
msgid "Remove from RAID"
msgstr "Ïđćìàőíè îò RAID"
-#: ../../diskdrake/interactive.pm_.c:387
+#: ../../diskdrake/interactive.pm_.c:391
msgid "Remove from LVM"
msgstr "Ïđćìàőíè îò LVM"
-#: ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/interactive.pm_.c:392
msgid "Modify RAID"
msgstr "Ìîäèôèöèđàé RAID"
-#: ../../diskdrake/interactive.pm_.c:389
+#: ../../diskdrake/interactive.pm_.c:393
msgid "Use for loopback"
msgstr "Èçïîëçâàé çà loopback"
-#: ../../diskdrake/interactive.pm_.c:428
+#: ../../diskdrake/interactive.pm_.c:433
msgid "Create a new partition"
msgstr "Ńúçäàé íîâ äÿë"
-#: ../../diskdrake/interactive.pm_.c:431
+#: ../../diskdrake/interactive.pm_.c:436
msgid "Start sector: "
msgstr "Íàśàëćí ńćêòîđ: "
-#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:805
+#: ../../diskdrake/interactive.pm_.c:438 ../../diskdrake/interactive.pm_.c:815
msgid "Size in MB: "
msgstr "Ăîëćìèíà â MB: "
-#: ../../diskdrake/interactive.pm_.c:434 ../../diskdrake/interactive.pm_.c:806
+#: ../../diskdrake/interactive.pm_.c:439 ../../diskdrake/interactive.pm_.c:816
msgid "Filesystem type: "
msgstr "Âèä ôàéëîâà ńèńòćìà: "
-#: ../../diskdrake/interactive.pm_.c:439
+#: ../../diskdrake/interactive.pm_.c:444
msgid "Preference: "
msgstr "Ïđćäïîśèòàíèć: "
-#: ../../diskdrake/interactive.pm_.c:464
+#: ../../diskdrake/interactive.pm_.c:469
msgid ""
"You can't create a new partition\n"
"(since you reached the maximal number of primary partitions).\n"
"First remove a primary partition and create an extended partition."
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:494
+#: ../../diskdrake/interactive.pm_.c:499
msgid "Remove the loopback file?"
msgstr "Äà ïđćìàőíà ëè loopback ôàéëà ?"
-#: ../../diskdrake/interactive.pm_.c:519
+#: ../../diskdrake/interactive.pm_.c:529
msgid "Change partition type"
msgstr "Ïđîìÿíà òèïà íà äÿëà"
-#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:530 ../../diskdrake/removable.pm_.c:48
msgid "Which filesystem do you want?"
msgstr "Êîÿ ôàéëîâà ńèńòćìà èńêàòć ?"
-#: ../../diskdrake/interactive.pm_.c:526
+#: ../../diskdrake/interactive.pm_.c:536
msgid "Switching from ext2 to ext3"
msgstr "Ïđćőîä îò ext2 êúì ext3"
-#: ../../diskdrake/interactive.pm_.c:556
+#: ../../diskdrake/interactive.pm_.c:566
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "Êúäć èńêàòć äà ìîíòèđàòć loopback-ôàéëà %s ?"
-#: ../../diskdrake/interactive.pm_.c:557
+#: ../../diskdrake/interactive.pm_.c:567
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Êúäć èńêàòć äà ìîíòèđàòć óńòđîéńòâî %s ?"
-#: ../../diskdrake/interactive.pm_.c:563
+#: ../../diskdrake/interactive.pm_.c:573
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1914,138 +1934,138 @@ msgstr ""
"loopback.\n"
"Ïúđâî ìàőíćòć loopback"
-#: ../../diskdrake/interactive.pm_.c:584
+#: ../../diskdrake/interactive.pm_.c:594
#, fuzzy, c-format
msgid "Where do you want to mount %s?"
msgstr "Êúäć èńêàòć äà ìîíòèđàòć óńòđîéńòâî %s ?"
-#: ../../diskdrake/interactive.pm_.c:608
+#: ../../diskdrake/interactive.pm_.c:618
msgid "Computing FAT filesystem bounds"
msgstr "Èçśèńëÿâàì ăđàíèöèòć íà fat ôàéëîâàòà ńèńòćìà"
-#: ../../diskdrake/interactive.pm_.c:608 ../../diskdrake/interactive.pm_.c:667
-#: ../../install_interactive.pm_.c:131
+#: ../../diskdrake/interactive.pm_.c:618 ../../diskdrake/interactive.pm_.c:677
+#: ../../install_interactive.pm_.c:133
msgid "Resizing"
msgstr "Ïđîìÿíà íà ăîëćìèíàòà"
-#: ../../diskdrake/interactive.pm_.c:640
+#: ../../diskdrake/interactive.pm_.c:650
msgid "This partition is not resizeable"
msgstr "Ăîëćìèíàòà íà äÿëà íć ìîæć äà áúäć ïđîìćíćíà"
-#: ../../diskdrake/interactive.pm_.c:645
+#: ../../diskdrake/interactive.pm_.c:655
msgid "All data on this partition should be backed-up"
msgstr "Âńèśêè äàííè íà òîçè äÿë òđÿáâà äà áúäàò àđőèâèđàíè"
-#: ../../diskdrake/interactive.pm_.c:647
+#: ../../diskdrake/interactive.pm_.c:657
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr ""
"Ńëćä ïđîìÿíà ăîëćìèíàòà íà äÿëà %s, äàííète âúđőó íćăî ùć áúäàò çàăóáćíè"
-#: ../../diskdrake/interactive.pm_.c:652
+#: ../../diskdrake/interactive.pm_.c:662
msgid "Choose the new size"
msgstr "Èçáćđćòć íîâà ăîëćìèíà"
-#: ../../diskdrake/interactive.pm_.c:653
+#: ../../diskdrake/interactive.pm_.c:663
msgid "New size in MB: "
msgstr "Íîâà ăîëćìèíà â MB: "
-#: ../../diskdrake/interactive.pm_.c:706
+#: ../../diskdrake/interactive.pm_.c:716
msgid "Which disk do you want to move it to?"
msgstr "Íà êîé äèńê èńêàòć äà ăî ïđćìćńòèòć ?"
-#: ../../diskdrake/interactive.pm_.c:707
+#: ../../diskdrake/interactive.pm_.c:717
msgid "Sector"
msgstr "Ńćêòîđ"
-#: ../../diskdrake/interactive.pm_.c:708
+#: ../../diskdrake/interactive.pm_.c:718
msgid "Which sector do you want to move it to?"
msgstr "Íà êîé ńćêòîđ èńêàòć äà ăî ïđćìćńòèòć?"
-#: ../../diskdrake/interactive.pm_.c:711
+#: ../../diskdrake/interactive.pm_.c:721
msgid "Moving"
msgstr "Ìćńòćíć"
-#: ../../diskdrake/interactive.pm_.c:711
+#: ../../diskdrake/interactive.pm_.c:721
msgid "Moving partition..."
msgstr "Ìćńòâÿ äÿëà ... "
-#: ../../diskdrake/interactive.pm_.c:728
+#: ../../diskdrake/interactive.pm_.c:738
msgid "Choose an existing RAID to add to"
msgstr "Èçáćđćòć ńúùćńòâóâàù RAID çà ïđèáàâÿíć"
-#: ../../diskdrake/interactive.pm_.c:729 ../../diskdrake/interactive.pm_.c:746
+#: ../../diskdrake/interactive.pm_.c:739 ../../diskdrake/interactive.pm_.c:756
msgid "new"
msgstr "íîâ"
-#: ../../diskdrake/interactive.pm_.c:744
+#: ../../diskdrake/interactive.pm_.c:754
msgid "Choose an existing LVM to add to"
msgstr "Èçáćđćòć ńúùćńòâóâàù LVM çà ïđèáàâÿíć"
-#: ../../diskdrake/interactive.pm_.c:749
+#: ../../diskdrake/interactive.pm_.c:759
msgid "LVM name?"
msgstr "LVM èìć ?"
-#: ../../diskdrake/interactive.pm_.c:790
+#: ../../diskdrake/interactive.pm_.c:800
msgid "This partition can't be used for loopback"
msgstr "Òîçè äÿë íć ìîæć äà áúäć èçïîëçâàí çà loopback"
-#: ../../diskdrake/interactive.pm_.c:803
+#: ../../diskdrake/interactive.pm_.c:813
msgid "Loopback"
msgstr "Loopback"
-#: ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:814
msgid "Loopback file name: "
msgstr "Èìć íà loopback ôàéëà: "
-#: ../../diskdrake/interactive.pm_.c:809
+#: ../../diskdrake/interactive.pm_.c:819
msgid "Give a file name"
msgstr "Äàéòć èìć íà ôàéë"
-#: ../../diskdrake/interactive.pm_.c:812
+#: ../../diskdrake/interactive.pm_.c:822
msgid "File already used by another loopback, choose another one"
msgstr "Ôàéëúò âćść ńć èçïîëçâà òî äđóă loopback, èçáćđćòć äđóă ôàéë."
-#: ../../diskdrake/interactive.pm_.c:813
+#: ../../diskdrake/interactive.pm_.c:823
msgid "File already exists. Use it?"
msgstr "Ôàéëúò âćść ńúűćńòâóâà. Äà ăî èçïîëçâàì ëè ?"
-#: ../../diskdrake/interactive.pm_.c:836
+#: ../../diskdrake/interactive.pm_.c:846
msgid "Mount options"
msgstr "Îïöèè çà mount:"
-#: ../../diskdrake/interactive.pm_.c:843
+#: ../../diskdrake/interactive.pm_.c:853
msgid "Various"
msgstr "Đàçëèśíè"
-#: ../../diskdrake/interactive.pm_.c:907 ../../standalone/drakfloppy_.c:103
+#: ../../diskdrake/interactive.pm_.c:917 ../../standalone/drakfloppy_.c:103
msgid "device"
msgstr "óńòđîéńòâî"
-#: ../../diskdrake/interactive.pm_.c:908
+#: ../../diskdrake/interactive.pm_.c:918
msgid "level"
msgstr "íèâî"
-#: ../../diskdrake/interactive.pm_.c:909
+#: ../../diskdrake/interactive.pm_.c:919
msgid "chunk size"
msgstr "ăîëćìèíà íà ïàđśćòî"
-#: ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:934
msgid "Be careful: this operation is dangerous."
msgstr "Âíèìàíèć: òàçè îïćđàöèÿ ć îïàńíà"
-#: ../../diskdrake/interactive.pm_.c:939
+#: ../../diskdrake/interactive.pm_.c:949
msgid "What type of partitioning?"
msgstr "Êàêúâ òèï đàçäćëÿíć íà äÿëîâć ?"
-#: ../../diskdrake/interactive.pm_.c:955
+#: ../../diskdrake/interactive.pm_.c:965
#, fuzzy, c-format
msgid "The package %s is needed. Install it?"
msgstr ""
"Òîçè ïàêćò òđÿáâà äà áúäć îáíîâćí\n"
"Ńèăóđíè ëè ńòć, ść èńêàòć äà ăî èçêëțśèòć ?"
-#: ../../diskdrake/interactive.pm_.c:969
+#: ../../diskdrake/interactive.pm_.c:979
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -2057,7 +2077,7 @@ msgstr ""
"Èëè èçïîëçâàòć LILO è òî íć đàáîòè, èëè íć èçïîëçâàòć LILO è íÿìàòć íóæäà "
"îò /boot"
-#: ../../diskdrake/interactive.pm_.c:973
+#: ../../diskdrake/interactive.pm_.c:983
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -2069,7 +2089,7 @@ msgstr ""
"Àêî ńìÿòàòć äà èçïîëçâàòć boot ìćíèäæúđà LILO, áúäćòć âíèìàòćëíè ïđè\n"
"ïđèáàâÿíćòî íà /boot äÿë"
-#: ../../diskdrake/interactive.pm_.c:979
+#: ../../diskdrake/interactive.pm_.c:989
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
@@ -2079,44 +2099,44 @@ msgstr ""
"Íÿìà çàđćæäàùà ïđîăđàìà, êîÿòî äà ìîæć äà ńć ńïđàâè ń íćăî áćç /boot äÿë.\n"
"Òàêà ść äîáàâćòć /boot äÿë"
-#: ../../diskdrake/interactive.pm_.c:999
+#: ../../diskdrake/interactive.pm_.c:1009
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "Òàáëèöàòà íà äÿëîâćòć íà óńòđîéńòâî %s ùć áúäć çàïèńàíà âúđőó äèńêà !"
-#: ../../diskdrake/interactive.pm_.c:1003
+#: ../../diskdrake/interactive.pm_.c:1013
msgid "You'll need to reboot before the modification can take place"
msgstr "Òđÿáâà äà đćńòàđòèđàòć, ïđćäè ïđîìćíèòć äà âëÿçàò â ńèëà"
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1024
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr "Ńëćä ôîđìàòèđàíć íà äÿëà %s, âńèśêè äàííè âúđőó íćăî ùć áúäàò çàăóáćíè"
-#: ../../diskdrake/interactive.pm_.c:1016
+#: ../../diskdrake/interactive.pm_.c:1026
msgid "Formatting"
msgstr "Ôîđìàòèđàíć"
-#: ../../diskdrake/interactive.pm_.c:1017
+#: ../../diskdrake/interactive.pm_.c:1027
#, c-format
msgid "Formatting loopback file %s"
msgstr "Ôîđìàòèđàíć íà loopback ôàéëà %s"
-#: ../../diskdrake/interactive.pm_.c:1018
-#: ../../install_steps_interactive.pm_.c:476
+#: ../../diskdrake/interactive.pm_.c:1028
+#: ../../install_steps_interactive.pm_.c:459
#, c-format
msgid "Formatting partition %s"
msgstr "Ôîđìàòèđàíć íà äÿëà %s"
-#: ../../diskdrake/interactive.pm_.c:1029
+#: ../../diskdrake/interactive.pm_.c:1039
msgid "Hide files"
msgstr "Ńêđèé ôàéëîâćòć"
-#: ../../diskdrake/interactive.pm_.c:1029
+#: ../../diskdrake/interactive.pm_.c:1039
msgid "Move files to the new partition"
msgstr "Ïđćìćńòè ôàéëîâćòć íà íîâ äÿë"
-#: ../../diskdrake/interactive.pm_.c:1030
+#: ../../diskdrake/interactive.pm_.c:1040
#, c-format
msgid ""
"Directory %s already contains data\n"
@@ -2125,83 +2145,83 @@ msgstr ""
"Äèđćêòîđèÿòà %s âćść ńúäúđæà íÿêàêâè äàííè\n"
"(%s)"
-#: ../../diskdrake/interactive.pm_.c:1041
+#: ../../diskdrake/interactive.pm_.c:1051
msgid "Moving files to the new partition"
msgstr "Ïđćìćńòè ôàéëîâćòć íà íîâ äÿë"
-#: ../../diskdrake/interactive.pm_.c:1045
+#: ../../diskdrake/interactive.pm_.c:1055
#, c-format
msgid "Copying %s"
msgstr "Êîïèđàíć íà %s"
-#: ../../diskdrake/interactive.pm_.c:1049
+#: ../../diskdrake/interactive.pm_.c:1059
#, c-format
msgid "Removing %s"
msgstr "Èçòđèâàíć íà %s"
-#: ../../diskdrake/interactive.pm_.c:1059
+#: ../../diskdrake/interactive.pm_.c:1069
#, c-format
msgid "partition %s is now known as %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1080
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1090
+#: ../../diskdrake/interactive.pm_.c:1149
msgid "Device: "
msgstr "Óńòđîéńòâî: "
-#: ../../diskdrake/interactive.pm_.c:1081
+#: ../../diskdrake/interactive.pm_.c:1091
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "Áóêâà íà óńòđîéńòâîòî ïîä DOS: %s (ïđîńòî ïđćäïîëîæćíèć)\n"
-#: ../../diskdrake/interactive.pm_.c:1085
-#: ../../diskdrake/interactive.pm_.c:1093
-#: ../../diskdrake/interactive.pm_.c:1157
+#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1103
+#: ../../diskdrake/interactive.pm_.c:1168
msgid "Type: "
msgstr "Âèä: "
-#: ../../diskdrake/interactive.pm_.c:1089
+#: ../../diskdrake/interactive.pm_.c:1099
msgid "Name: "
msgstr "Èìć: "
-#: ../../diskdrake/interactive.pm_.c:1097
+#: ../../diskdrake/interactive.pm_.c:1107
#, c-format
msgid "Start: sector %s\n"
msgstr "Íàśàëî: ńćêòîđ %s\n"
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1108
#, c-format
msgid "Size: %s"
msgstr "Đàçìćđ: %s"
-#: ../../diskdrake/interactive.pm_.c:1100
+#: ../../diskdrake/interactive.pm_.c:1110
#, c-format
msgid ", %s sectors"
msgstr ", %s ńćêòîđà"
-#: ../../diskdrake/interactive.pm_.c:1102
+#: ../../diskdrake/interactive.pm_.c:1112
#, fuzzy, c-format
msgid "Cylinder %d to %d\n"
msgstr "Îò öèëèíäúđ %d äî öèëèíäúđ %d\n"
-#: ../../diskdrake/interactive.pm_.c:1103
+#: ../../diskdrake/interactive.pm_.c:1113
msgid "Formatted\n"
msgstr "Ôîđìàòèđàí\n"
-#: ../../diskdrake/interactive.pm_.c:1104
+#: ../../diskdrake/interactive.pm_.c:1114
msgid "Not formatted\n"
msgstr "Íćôîđìàòèđàí\n"
-#: ../../diskdrake/interactive.pm_.c:1105
+#: ../../diskdrake/interactive.pm_.c:1115
msgid "Mounted\n"
msgstr "Ìîíòèđàí\n"
-#: ../../diskdrake/interactive.pm_.c:1106
+#: ../../diskdrake/interactive.pm_.c:1116
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1108
+#: ../../diskdrake/interactive.pm_.c:1118
#, c-format
msgid ""
"Loopback file(s):\n"
@@ -2210,7 +2230,7 @@ msgstr ""
"Loopback ôàéë(îâć):\n"
" %s\n"
-#: ../../diskdrake/interactive.pm_.c:1109
+#: ../../diskdrake/interactive.pm_.c:1119
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -2218,27 +2238,27 @@ msgstr ""
"Äÿë, êîéòî ńć ńòàđòèđà ïî ïîäđàçáèđàíć\n"
" (çà MS-DOS boot, íć çà lilo)\n"
-#: ../../diskdrake/interactive.pm_.c:1111
+#: ../../diskdrake/interactive.pm_.c:1121
#, c-format
msgid "Level %s\n"
msgstr "Íèâî %s\n"
-#: ../../diskdrake/interactive.pm_.c:1112
+#: ../../diskdrake/interactive.pm_.c:1122
#, c-format
msgid "Chunk size %s\n"
msgstr "Đàçìćđ íà ïàđśćòî %s\n"
-#: ../../diskdrake/interactive.pm_.c:1113
+#: ../../diskdrake/interactive.pm_.c:1123
#, c-format
msgid "RAID-disks %s\n"
msgstr "RAID-äèńêîâć %s\n"
-#: ../../diskdrake/interactive.pm_.c:1115
+#: ../../diskdrake/interactive.pm_.c:1125
#, c-format
msgid "Loopback file name: %s"
msgstr "Èìć íà loopback ôàéëà: %s"
-#: ../../diskdrake/interactive.pm_.c:1118
+#: ../../diskdrake/interactive.pm_.c:1128
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -2250,7 +2270,7 @@ msgstr ""
"Äđàéâćđ-äÿë, ìîæć áè òđÿáâà\n"
"òđÿáâà äà ăî îńòàâèòć.\n"
-#: ../../diskdrake/interactive.pm_.c:1121
+#: ../../diskdrake/interactive.pm_.c:1131
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2262,59 +2282,63 @@ msgstr ""
"èâèöà íà äÿëà ć çà äâîéíî\n"
"ńòàđòèđàíć íà ńèńòćìàòà âè.\n"
-#: ../../diskdrake/interactive.pm_.c:1140
+#: ../../diskdrake/interactive.pm_.c:1150
+msgid "Read-only"
+msgstr ""
+
+#: ../../diskdrake/interactive.pm_.c:1151
#, c-format
msgid "Size: %s\n"
msgstr "Đàçìćđ: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1141
+#: ../../diskdrake/interactive.pm_.c:1152
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Ăćîìćòđèÿ: %s öèëèíäđè, %s ăëàâè, %s ńćêòîđè\n"
-#: ../../diskdrake/interactive.pm_.c:1142
+#: ../../diskdrake/interactive.pm_.c:1153
msgid "Info: "
msgstr "Èíôîđìàöèÿ: "
-#: ../../diskdrake/interactive.pm_.c:1143
+#: ../../diskdrake/interactive.pm_.c:1154
#, c-format
msgid "LVM-disks %s\n"
msgstr "LVM-äèńêîâć %s\n"
-#: ../../diskdrake/interactive.pm_.c:1144
+#: ../../diskdrake/interactive.pm_.c:1155
#, c-format
msgid "Partition table type: %s\n"
msgstr "Òèï íà òàáëèöàòà ń äÿëîâć: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1145
+#: ../../diskdrake/interactive.pm_.c:1156
#, fuzzy, c-format
msgid "on channel %d id %d\n"
msgstr "íà űèíà %d àäđćń %d\n"
-#: ../../diskdrake/interactive.pm_.c:1175
+#: ../../diskdrake/interactive.pm_.c:1186
#, fuzzy
msgid "Filesystem encryption key"
msgstr "Âèä ôàéëîâà ńèńòćìà: "
-#: ../../diskdrake/interactive.pm_.c:1176
+#: ../../diskdrake/interactive.pm_.c:1187
msgid "Choose your filesystem encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1179
+#: ../../diskdrake/interactive.pm_.c:1190
#, fuzzy, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr "Ïàđîëàòà ć ïđćêàëćíî ïđîńòà (òđÿáâà äà áúäć äúëăà ïîíć %d ńèìâîëà)"
-#: ../../diskdrake/interactive.pm_.c:1180
+#: ../../diskdrake/interactive.pm_.c:1191
#, fuzzy
msgid "The encryption keys do not match"
msgstr "Ïàđîëèòć íà ńúâïàäàò"
-#: ../../diskdrake/interactive.pm_.c:1183
+#: ../../diskdrake/interactive.pm_.c:1194
msgid "Encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1184
+#: ../../diskdrake/interactive.pm_.c:1195
msgid "Encryption key (again)"
msgstr ""
@@ -2351,7 +2375,7 @@ msgid ""
"Please enter your username, password and domain name to access this host."
msgstr ""
-#: ../../diskdrake/smbnfs_gtk.pm_.c:178
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3527
#, fuzzy
msgid "Username"
msgstr "Ïîòđćáèòćëńêî èìć"
@@ -2366,23 +2390,23 @@ msgstr "NIS äîìćéí"
msgid "Search servers"
msgstr "DNS ńúđâúđ"
-#: ../../fs.pm_.c:552 ../../fs.pm_.c:562 ../../fs.pm_.c:566 ../../fs.pm_.c:570
-#: ../../fs.pm_.c:574 ../../fs.pm_.c:578
+#: ../../fs.pm_.c:544 ../../fs.pm_.c:554 ../../fs.pm_.c:558 ../../fs.pm_.c:562
+#: ../../fs.pm_.c:566 ../../fs.pm_.c:570
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s ôîđìàòèđàíć îò %s ïđîâàëćíî"
-#: ../../fs.pm_.c:615
+#: ../../fs.pm_.c:607
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "íć çíàì êàê äà ôîđìàòèđàì %s â òèï %s"
-#: ../../fs.pm_.c:687 ../../fs.pm_.c:731
+#: ../../fs.pm_.c:681 ../../fs.pm_.c:724
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../fs.pm_.c:746 ../../partition_table.pm_.c:602
+#: ../../fs.pm_.c:739 ../../partition_table.pm_.c:598
#, c-format
msgid "error unmounting %s: %s"
msgstr "ăđćűêà ïđè äćìîíòèđàíćòî íà %s: %s"
@@ -2399,33 +2423,49 @@ msgstr ""
msgid "server"
msgstr "ńúđâúđ"
-#: ../../fsedit.pm_.c:472
+#: ../../fsedit.pm_.c:240
+#, fuzzy, c-format
+msgid ""
+"I can't read the partition table of device %s, it's too corrupted for me :(\n"
+"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
+"The other solution is to not allow DrakX to modify the partition table.\n"
+"(the error is %s)\n"
+"\n"
+"Do you agree to loose all the partitions?\n"
+msgstr ""
+"Íć ìîăà äà đàçśćòà òàáëèöàòà íà äÿëîâćòć, ïđćêàëćíî ć ïîâđćäćíà çà ìćí :(\n"
+"Ìîăà äà ńć îïèòàì äà èçśèńòÿ ëîűèòć äÿëîâć (ÂŃÈŚÊÈ ÄÀÍÍÈ ùć áúäàò "
+"çàăóáćíè!).\n"
+"Äđóăî đćűćíèć ć äà çàáđàíèòć íà DrakX ïîïđàâÿ òàáëèöàòà ń äÿëîâć.\n"
+"(ăđćűêàòà ć %s)\n"
+
+#: ../../fsedit.pm_.c:501
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr "Íć ìîæćòć äà èçïîëçâàòć JFS çà äÿë ïî-ìàëúê îò 16 ÌÁ"
-#: ../../fsedit.pm_.c:473
+#: ../../fsedit.pm_.c:502
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr "Íć ìîæćòć äà èíńòàëèđàíć ReiserFS íà äÿë ïî-ìàëúê îò 32 ÌÁ"
-#: ../../fsedit.pm_.c:492
+#: ../../fsedit.pm_.c:521
msgid "Mount points must begin with a leading /"
msgstr "Òîśêèòć íà ìîíòèđàíć òđÿáâà äà çàïîśâàò ń /"
-#: ../../fsedit.pm_.c:493
+#: ../../fsedit.pm_.c:522
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Âćść èìà äÿë ń òàçè ìÿńòî íà ìîíòèđàíć %s\n"
-#: ../../fsedit.pm_.c:497
+#: ../../fsedit.pm_.c:526
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr "Íć ìîæćòć äà èçïîëçâàòć LVM ëîăèśćńêè òèï çà ìÿńòî íà ìîíòèđàíć %s"
-#: ../../fsedit.pm_.c:499
+#: ../../fsedit.pm_.c:528
msgid "This directory should remain within the root filesystem"
msgstr "Òàçè äèđćêòîđèÿ òđÿáâà äà îńòàíć â đàìêèòć íà root ôàéëîâàòà ńèńòćìà."
-#: ../../fsedit.pm_.c:501
+#: ../../fsedit.pm_.c:530
#, fuzzy
msgid ""
"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
@@ -2434,231 +2474,277 @@ msgstr ""
"Íóæäàćòć ńć îò èńòèíńêà ôàéëîâà ńèńòćìà (ext2, reiserfs) çà òàçè òîśêà íà "
"ìîíòèđàíć\n"
-#: ../../fsedit.pm_.c:503
+#: ../../fsedit.pm_.c:532
#, fuzzy, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr "Íć ìîæćòć äà èçïîëçâàòć LVM ëîăèśćńêè òèï çà ìÿńòî íà ìîíòèđàíć %s"
-#: ../../fsedit.pm_.c:570
+#: ../../fsedit.pm_.c:599
#, fuzzy
msgid "Not enough free space for auto-allocating"
msgstr "Íÿìà äîńòàòúśíî ìÿńòî çà àâòîìàòèśíî çàćìàíć"
-#: ../../fsedit.pm_.c:572
+#: ../../fsedit.pm_.c:601
msgid "Nothing to do"
msgstr ""
-#: ../../fsedit.pm_.c:665
+#: ../../fsedit.pm_.c:694
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Ăđćűêà ïđè îòâàđÿíć íà %s çà çàïèń: %s"
-#: ../../fsedit.pm_.c:750
+#: ../../harddrake/sound.pm_.c:155
+msgid "No alternative driver"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:156
+#, c-format
+msgid "There's no known OSS/ALSA alternative driver for your sound card (%s)"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:158
+#, fuzzy
+msgid "Sound configuration"
+msgstr "Íàńòđîéêà"
+
+#: ../../harddrake/sound.pm_.c:159
+#, c-format
msgid ""
-"An error occurred - no valid devices were found on which to create new "
-"filesystems. Please check your hardware for the cause of this problem"
+"Here you can select an alternative driver (either OSS or ALSA) for your "
+"sound card (%s)"
msgstr ""
-"Ïîÿâè ńć ăđćűêà - íć ńà îòêđèòè âàëèäíè óńòđîéńòâà, âúđőó êîèòî äà áúäàò "
-"ńúçäàäćíè íîâè ôàéëîâè ńèńòćìè. Ìîëÿ ïđîâćđćòć òâúđäèÿ ńè äèńê ńè çà "
-"ïđèśèíàòà çà òîçè ïđîáëćì"
-#: ../../fsedit.pm_.c:773
-msgid "You don't have any partitions!"
-msgstr "Íÿìàòć íèêàêâè äÿëîâć!"
+#: ../../harddrake/sound.pm_.c:162
+#, fuzzy
+msgid "Driver:"
+msgstr "Äđàéâćđ"
+
+#: ../../harddrake/sound.pm_.c:173
+msgid "No known driver"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:174
+#, c-format
+msgid "There's no known driver for your sound card (%s)"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:177
+#, fuzzy
+msgid "Unkown driver"
+msgstr "Íćèçâćńòćí ìîäćë"
+
+#: ../../harddrake/sound.pm_.c:178
+#, c-format
+msgid ""
+"The \"%s\" driver for your sound card is unlisted\n"
+"\n"
+"Please send the output of the \"lspcidrake -v\" command to\n"
+"<install at mandrakesoft dot com>\n"
+"with subject: unlisted sound driver \"%s\""
+msgstr ""
-#: ../../harddrake/ui.pm_.c:15
+#: ../../harddrake/ui.pm_.c:16
#, fuzzy
msgid "Model"
msgstr "Ìîäóë"
-#: ../../harddrake/ui.pm_.c:15
+#: ../../harddrake/ui.pm_.c:16
#, fuzzy
msgid "hard disk model"
msgstr "Ïàìćò (DMA) íà êàđòàòà"
-#: ../../harddrake/ui.pm_.c:16
+#: ../../harddrake/ui.pm_.c:17
#, fuzzy
msgid "Channel"
msgstr "Îòêàç"
-#: ../../harddrake/ui.pm_.c:16
+#: ../../harddrake/ui.pm_.c:17
msgid "EIDE/SCSI channel"
msgstr ""
-#: ../../harddrake/ui.pm_.c:18
+#: ../../harddrake/ui.pm_.c:19
msgid "Bus"
msgstr ""
-#: ../../harddrake/ui.pm_.c:19
+#: ../../harddrake/ui.pm_.c:20
msgid ""
"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
msgstr ""
-#: ../../harddrake/ui.pm_.c:20
+#: ../../harddrake/ui.pm_.c:21
msgid "Module"
msgstr "Ìîäóë"
-#: ../../harddrake/ui.pm_.c:20
+#: ../../harddrake/ui.pm_.c:21
msgid "the module of the GNU/Linux kernel that handle that device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:21
+#: ../../harddrake/ui.pm_.c:22
msgid "Media class"
msgstr ""
-#: ../../harddrake/ui.pm_.c:21
+#: ../../harddrake/ui.pm_.c:22
msgid "class of hardware device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:22 ../../printerdrake.pm_.c:1404
+#: ../../harddrake/ui.pm_.c:23 ../../printerdrake.pm_.c:1517
msgid "Description"
msgstr "Îïèńàíèć"
-#: ../../harddrake/ui.pm_.c:22
+#: ../../harddrake/ui.pm_.c:23
msgid "this field describe the device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:24
+#: ../../harddrake/ui.pm_.c:25
#, fuzzy
msgid "Bus identification"
msgstr "Èäćíòèôèêàöèÿ"
-#: ../../harddrake/ui.pm_.c:25
+#: ../../harddrake/ui.pm_.c:26
msgid ""
-"- PCI and USB devices : this list the vendor, device, subvendor and "
-"subdevice PCI/USB ids"
+"- PCI and USB devices: this list the vendor, device, subvendor and subdevice "
+"PCI/USB ids"
msgstr ""
-#: ../../harddrake/ui.pm_.c:27
+#: ../../harddrake/ui.pm_.c:28
msgid "Location on the bus"
msgstr ""
-#: ../../harddrake/ui.pm_.c:28
+#: ../../harddrake/ui.pm_.c:29
msgid ""
"- pci devices: this gives the PCI slot, device and function of this card\n"
"- eide devices: the device is either a slave or a master device\n"
"- scsi devices: the scsi bus and the scsi device ids"
msgstr ""
-#: ../../harddrake/ui.pm_.c:31
+#: ../../harddrake/ui.pm_.c:32
#, fuzzy
msgid "Old device file"
msgstr "Èçáćđćòć ôàéë"
-#: ../../harddrake/ui.pm_.c:32
+#: ../../harddrake/ui.pm_.c:33
msgid "old static device name used in dev package"
msgstr ""
-#: ../../harddrake/ui.pm_.c:33
+#: ../../harddrake/ui.pm_.c:34
#, fuzzy
msgid "New devfs device"
msgstr "Gateway óńòđîéńòâî"
-#: ../../harddrake/ui.pm_.c:34
+#: ../../harddrake/ui.pm_.c:35
msgid "new dinamic device name generated by incore kernel devfs"
msgstr ""
-#: ../../harddrake/ui.pm_.c:35
+#: ../../harddrake/ui.pm_.c:36
#, fuzzy
msgid "Number of buttons"
msgstr "2 áóòîíà"
-#: ../../harddrake/ui.pm_.c:36
+#: ../../harddrake/ui.pm_.c:37
msgid "the vendor name of the device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:60
+#: ../../harddrake/ui.pm_.c:38
+#, fuzzy
+msgid "Alternative drivers"
+msgstr "Àëòćđíàòèâíà òćńòîâà ńòđàíèöà (À4)"
+
+#: ../../harddrake/ui.pm_.c:39
+msgid "the list of alternative drivers for this sound card"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:63
#, fuzzy
msgid "/_Quit"
msgstr "Èçőîä"
-#: ../../harddrake/ui.pm_.c:61 ../../harddrake/ui.pm_.c:62
-#: ../../harddrake/ui.pm_.c:68 ../../standalone/logdrake_.c:110
+#: ../../harddrake/ui.pm_.c:64 ../../harddrake/ui.pm_.c:65
+#: ../../harddrake/ui.pm_.c:71 ../../standalone/logdrake_.c:110
msgid "/_Help"
msgstr "/_Ïîìîù"
-#: ../../harddrake/ui.pm_.c:62
+#: ../../harddrake/ui.pm_.c:65
#, fuzzy
msgid "/_Help..."
msgstr "/_Ïîìîù"
-#: ../../harddrake/ui.pm_.c:63
+#: ../../harddrake/ui.pm_.c:66
msgid "Harddrake help"
msgstr ""
-#: ../../harddrake/ui.pm_.c:64
+#: ../../harddrake/ui.pm_.c:67
msgid ""
"Description of the fields:\n"
"\n"
msgstr ""
-#: ../../harddrake/ui.pm_.c:68
+#: ../../harddrake/ui.pm_.c:71
#, fuzzy
msgid "/_About..."
msgstr "/Ïîìîù/_Îòíîńíî..."
-#: ../../harddrake/ui.pm_.c:69
+#: ../../harddrake/ui.pm_.c:72
msgid "About Harddrake"
msgstr ""
-#: ../../harddrake/ui.pm_.c:70
+#: ../../harddrake/ui.pm_.c:73
msgid ""
"This is HardDrake, a Mandrake hardware configuration tool.\n"
"Version:"
msgstr ""
-#: ../../harddrake/ui.pm_.c:71
+#: ../../harddrake/ui.pm_.c:74
#, fuzzy
msgid "Author:"
msgstr "Àâòîìàòèśíî çàńèśàíć"
-#: ../../harddrake/ui.pm_.c:83
+#: ../../harddrake/ui.pm_.c:86
#, fuzzy
msgid "Harddrake2 version "
msgstr "Çàńèśàíć íà äèńêîâćòć"
-#: ../../harddrake/ui.pm_.c:91
+#: ../../harddrake/ui.pm_.c:103
#, fuzzy
msgid "Detected hardware"
msgstr "Âèæ őàđäóćđíàòà èíôîđìàöèÿ"
-#: ../../harddrake/ui.pm_.c:92
+#: ../../harddrake/ui.pm_.c:105
#, fuzzy
-msgid "Configure module"
-msgstr "Íàńòđîéêà íà ìèűêà"
+msgid "Information"
+msgstr "Ïîêàæè èíôîđìàöèÿòà"
-#: ../../harddrake/ui.pm_.c:92
+#: ../../harddrake/ui.pm_.c:108
#, fuzzy
-msgid "Informations"
-msgstr "Ïîêàæè èíôîđìàöèÿòà"
+msgid "Configure module"
+msgstr "Íàńòđîéêà íà ìèűêà"
-#: ../../harddrake/ui.pm_.c:92
+#: ../../harddrake/ui.pm_.c:109
msgid "Run config tool"
msgstr ""
-#: ../../harddrake/ui.pm_.c:96
+#: ../../harddrake/ui.pm_.c:113
#, fuzzy
msgid "Detection in progress"
msgstr "çàńćśćí íà ïîđò %s"
-#: ../../harddrake/ui.pm_.c:96 ../../interactive.pm_.c:388
+#: ../../harddrake/ui.pm_.c:113 ../../interactive.pm_.c:391
msgid "Please wait"
msgstr "Ìîëÿ èçśàêàéòć"
-#: ../../harddrake/ui.pm_.c:139
+#: ../../harddrake/ui.pm_.c:156
msgid "primary"
msgstr ""
-#: ../../harddrake/ui.pm_.c:139
+#: ../../harddrake/ui.pm_.c:156
#, fuzzy
msgid "secondary"
msgstr "%d ńćêóíäè"
-#: ../../harddrake/ui.pm_.c:176
+#: ../../harddrake/ui.pm_.c:197
msgid "You can configure each parameter of the module here."
msgstr ""
-#: ../../harddrake/ui.pm_.c:192
+#: ../../harddrake/ui.pm_.c:213
#, fuzzy, c-format
msgid "Running \"%s\" ..."
msgstr "Èçòđèâàíć íà ïđèíòćđà \"%s\" ..."
@@ -2691,16 +2777,16 @@ msgstr ""
#: ../../harddrake/v4l.pm_.c:213
#, fuzzy
-msgid "Card model :"
+msgid "Card model:"
msgstr "Ïàìćò (DMA) íà êàđòàòà"
#: ../../harddrake/v4l.pm_.c:214
#, fuzzy
-msgid "Tuner type :"
+msgid "Tuner type:"
msgstr "Ïđîìÿíè òèïà"
#: ../../harddrake/v4l.pm_.c:215
-msgid "Number of capture buffers :"
+msgid "Number of capture buffers:"
msgstr ""
#: ../../harddrake/v4l.pm_.c:215
@@ -2709,11 +2795,11 @@ msgstr ""
#: ../../harddrake/v4l.pm_.c:217
#, fuzzy
-msgid "PLL setting :"
+msgid "PLL setting:"
msgstr "Ôîđìàòèđàíć"
#: ../../harddrake/v4l.pm_.c:218
-msgid "Radio support :"
+msgid "Radio support:"
msgstr ""
#: ../../harddrake/v4l.pm_.c:218
@@ -2725,22 +2811,22 @@ msgid ""
"GNU/Linux is a multiuser system, and this means that each user can have his\n"
"own preferences, his own files and so on. You can read the ``User Guide''\n"
"to learn more. But unlike \"root\", which is the administrator, the users\n"
-"you will add here will not be entitled to change anything except their own\n"
-"files and their own configuration. You will have to create at least one\n"
-"regular user for yourself. That account is where you should log in for\n"
-"routine use. Although it is very practical to log in as \"root\" everyday,\n"
-"it may also be very dangerous! The slightest mistake could mean that your\n"
-"system would not work any more. If you make a serious mistake as a regular\n"
-"user, you may only lose some information, but not the entire system.\n"
+"you add here will not be entitled to change anything except their own files\n"
+"and their own configuration. You will have to create at least one regular\n"
+"user for yourself. That account is where you should log in for routine use.\n"
+"Although it is very practical to log in as \"root\" everyday, it may also\n"
+"be very dangerous! The slightest mistake could mean that your system would\n"
+"not work any more. If you make a serious mistake as a regular user, you may\n"
+"only lose some information, but not the entire system.\n"
"\n"
"First, you have to enter your real name. This is not mandatory, of course -\n"
"as you can actually enter whatever you want. DrakX will then take the first\n"
"word you have entered in the box and will bring it over to the \"User\n"
"name\". This is the name this particular user will use to log onto the\n"
"system. You can change it. You then have to enter a password here. A\n"
-"non-privileged (regular) user's password is not as crucial as \"root\"' one\n"
-"from a security point of view, but that is no reason to neglect it: after\n"
-"all, your files are at risk.\n"
+"non-privileged (regular) user's password is not as crucial as the \"root\"'\n"
+"one from a security point of view, but that is no reason to neglect it:\n"
+"after all, your files are at risk.\n"
"\n"
"If you click on \"Accept user\", you can then add as many as you want. Add\n"
"a user for each one of your friends: your father or your sister, for\n"
@@ -2900,7 +2986,7 @@ msgid ""
"to have a graphical workstation!\n"
"\n"
"Moving the mouse cursor over a group name will display a short explanatory\n"
-"text about that group. If you deselect all groups when performing a regular\n"
+"text about that group. If you unselect all groups when performing a regular\n"
"installation (by opposition to an upgrade), a dialog will pop up proposing\n"
"different options for a minimal installation:\n"
"\n"
@@ -2967,10 +3053,10 @@ msgstr ""
#: ../../help.pm_.c:128
msgid ""
-"Finally, depending on whether or not you selected individual packages, you\n"
-"will be presented a tree containing all packages classified by groups and\n"
-"subgroups. While browsing the tree, you can select entire groups,\n"
-"subgroups, or individual packages.\n"
+"Finally, depending on whether or not you chose to be able to select\n"
+"individual packages, you will be presented a tree containing all packages\n"
+"classified by groups and subgroups. While browsing the tree, you can select\n"
+"entire groups, subgroups, or individual packages.\n"
"\n"
"Whenever you select a package on the tree, a description appears on the\n"
"right. When your selection is finished, click the \"Install\" button which\n"
@@ -3042,11 +3128,11 @@ msgstr ""
#: ../../help.pm_.c:164
#, fuzzy
msgid ""
-"You are now proposed to set up your Internet/network connection. If you\n"
-"wish to connect your computer to the Internet or to a local network, click\n"
-"\"OK\". The autodetection of network devices and modem will be launched. If\n"
-"this detection fails, uncheck the \"Use auto detection\" box next time. You\n"
-"may also choose not to configure the network, or do it later; in that case,\n"
+"You are now able to set up your Internet/network connection. If you wish to\n"
+"connect your computer to the Internet or to a local network, click \"OK\".\n"
+"The autodetection of network devices and modem will be launched. If this\n"
+"detection fails, uncheck the \"Use auto detection\" box next time. You may\n"
+"also choose not to configure the network, or do it later; in that case,\n"
"simply click the \"Cancel\" button.\n"
"\n"
"Available connections are: traditional modem, ISDN modem, ADSL connection,\n"
@@ -3126,7 +3212,7 @@ msgstr ""
msgid ""
"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
"local time according to the time zone you selected. It is however possible\n"
-"to deactivate this by deselecting \"Hardware clock set to GMT\" so that the\n"
+"to deactivate this by unselecting \"Hardware clock set to GMT\" so that the\n"
"hardware clock is the same as the system clock. This is useful when the\n"
"machine is hosting another operating system like Windows.\n"
"\n"
@@ -3158,7 +3244,9 @@ msgid ""
"If you can see the message during the test, and answer \"Yes\", then DrakX\n"
"will proceed to the next step. If you cannot see the message, it simply\n"
"means that the configuration was wrong and the test will automatically end\n"
-"after 10 seconds, restoring the screen."
+"after 10 seconds, restoring the screen. Refer then to the Video\n"
+"configuration section of the user guide for more information on how to\n"
+"configure your display."
msgstr ""
"X (îđ X Window System) ć ńúđöćòî íà GNU/Linux ăđàôèśíèÿ èíòćđôćéń, íà êîéòî\n"
"ńć îńëàíÿò ăđàôèśíèòć ńđćäè (KDE, Gnome, AfterStep, WindowMaker...) "
@@ -3180,33 +3268,7 @@ msgstr ""
"ć ńăđćűćíà è òćńòúò àâòîìàòèśíî ùć áúäć ïđèêëțśćí ńëćä 10 ńćêóíäè,\n"
"âúçńòàíîâÿâàéêè ćêđàíà."
-#: ../../help.pm_.c:237
-msgid ""
-"The first time you try the X configuration, you may not be very satisfied\n"
-"with its display (screen is too small, shifted left or right...). Hence,\n"
-"even if X starts up correctly, DrakX then asks you if the configuration\n"
-"suits you. It will also propose to change it by displaying a list of valid\n"
-"modes it could find, asking you to select one.\n"
-"\n"
-"As a last resort, if you still cannot get X to work, choose \"Change\n"
-"graphics card\", select \"Unlisted card\", and when prompted on which\n"
-"server, choose \"FBDev\". This is a failsafe option which works with any\n"
-"modern graphics card. Then choose \"Test again\" to be sure."
-msgstr ""
-"Ïúđâèÿ ïúò, êîăàòî îïèòàòć íàńòđîéêàòà íà X, ìîæć áè íÿìà äà ńòć äîâîëíè îò\n"
-"îò âèäà (ćêđàíúò ć ïđćêàëćíî ìàëúê, îòìćńòćí íàëÿâî èëè íàäÿńíî...). "
-"Âúïđćêè\n"
-"òîâà, äàæć àêî X òđúăíć êàòî őîđàòà, DrakX ùć âè ïîïèòà äàëè íàńòđîéêàòà âè\n"
-"äîïàäà. Ńúùî òàêà, ść âè ïđćäëîæè ïđîìÿíà, êàòî ïîêàæć ńïèńúê íà âàëèäíè\n"
-"đćæèìè, êîèòî ć óńïÿë äà íàìćđè, ń ìîëáà äà ïîńîśèòć ćäèí.\n"
-"\n"
-"Êàòî ïîńëćäíà âúçìîæíîńò, àêî âńć îùć íć ìîæćòć äà ïîäêàđàòć X, èçáćđćòć\n"
-"\"Ïđîìÿíà íà ăđàôèśíàòà êàđòà\", ïîńîśèòć \"Íćèçáđîćíà êàđòà\", è, êîăàòî\n"
-"áúäćòć ïîïèòàíè êîé ńúđâúđ äà áúäć èçïîëçâàí, èçáćđćòć \"FBDev\". Òîâà ć\n"
-"áćçăđćűíà îïöèÿ, êîÿòî đàáîòè íà âńÿêà ïî-íîâà êàđòà. Òîăàâà èçáćđćòć "
-"\"Îïèòàé ïàê\", çà äà ńòć ńèăóđíè."
-
-#: ../../help.pm_.c:249
+#: ../../help.pm_.c:239
msgid ""
"Finally, you will be asked whether you want to see the graphical interface\n"
"at boot. Note this question will be asked even if you chose not to test the\n"
@@ -3220,7 +3282,7 @@ msgstr ""
"ìàűèíàòà\n"
"ùć đàáîòè êàòî ńúđâúđ èëè àêî íÿìà óńïćűíî íàńòđîćí äèńïëćé."
-#: ../../help.pm_.c:256
+#: ../../help.pm_.c:246
#, fuzzy
msgid ""
"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
@@ -3241,10 +3303,10 @@ msgid ""
"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
"password, or any other reason.\n"
"\n"
-"When you click on this step, you will be asked to enter a disk inside the\n"
-"drive. The floppy disk you will insert must be empty or contain data which\n"
-"you do not need. You will not have to format it since DrakX will rewrite\n"
-"the whole disk."
+"If you say \"Yes\", you will be asked to enter a disk inside the drive. The\n"
+"floppy disk you will insert must be empty or contain data which you do not\n"
+"need. You will not have to format it since DrakX will rewrite the whole\n"
+"disk."
msgstr ""
"Mandrake Linux CDROM-úò èìà âăđàäćí ńïàńèòćëćí đćæèì. Ìîæćòć äà ăî\n"
"äîńòèăíćòć, êàòî ńòàđòèđàòć îò CDROM-à, íàòèńíćòć êëàâèűà >>F1<< è íàïèűćòć\n"
@@ -3272,7 +3334,7 @@ msgstr ""
"äàííè, îò êîèòî íć ńć íóæäàćòć. Íÿìà íóæäà äà ÿ ôîđìàòèđàòć, òúé êàòî DrakX\n"
"ùć ïđćçàïèűć öÿëàòà äèńêćòà."
-#: ../../help.pm_.c:280
+#: ../../help.pm_.c:270
#, fuzzy
msgid ""
"At this point, you need to choose where you want to install the Mandrake\n"
@@ -3306,7 +3368,9 @@ msgid ""
"\n"
" * \"Use existing partition\": the wizard has detected one or more existing\n"
"Linux partitions on your hard drive. If you want to use them, choose this\n"
-"option;\n"
+"option. You will then be asked to choose the mount points associated to\n"
+"each of the partitions. The legacy mount points are selected by default,\n"
+"and you should generally keep them.\n"
"\n"
" * \"Use the free space on the Windows; partition\": if Microsoft Windows\n"
"is installed on your hard drive and takes all the space available on it,\n"
@@ -3339,7 +3403,9 @@ msgid ""
" * \"Expert mode\": choose this option if you want to manually partition\n"
"your hard drive. Be careful - it is a powerful but dangerous choice. You\n"
"can very easily lose all your data. Hence, do not choose this unless you\n"
-"know what you are doing."
+"know what you are doing. To know how do use the DiskDrake utility used\n"
+"here, refer to the section ``Managing Your Partitions'' of the ````User\n"
+"Guide''''"
msgstr ""
"Â òîçè ìîìćíò òđÿáâà èçáćđćòć êúäć íà òâúđäèÿ ńè äèńêà äà èíńòàëèđàòć "
"âàűàòà\n"
@@ -3417,7 +3483,7 @@ msgstr ""
"ìíîăî ëćńíî äà çàăóáèòć âńèśêè äàííè. Òàêà ść íć èçáèđàéòć òîâà, àêî íć\n"
"çíàćòć êàêâî ïđàâèòć."
-#: ../../help.pm_.c:347
+#: ../../help.pm_.c:341
msgid ""
"There you are. Installation is now complete and your GNU/Linux system is\n"
"ready to use. Just click \"OK\" to reboot the system. You can start\n"
@@ -3483,7 +3549,7 @@ msgstr ""
"(*) Òđÿáâà âè FAT-ôîđìàòèđàíà äèńêćòà (çà äà ńúçäàäćòć òàêâà ïîä GNU/Linux,\n"
"íàïèűćòć \"mformat a:\")"
-#: ../../help.pm_.c:378
+#: ../../help.pm_.c:372
msgid ""
"Any partitions that have been newly defined must be formatted for use\n"
"(formatting means creating a filesystem).\n"
@@ -3540,7 +3606,7 @@ msgstr ""
"Öúêíćòć \"Íàïđćäíèśàâ\", àêî èńêàòć äà èçáćđćòć äÿëîâć, êîèòî äà áúäàò\n"
"ïđîâćđćíè çà ëîűè áëîêîâć îò äèńêà."
-#: ../../help.pm_.c:404
+#: ../../help.pm_.c:398
msgid ""
"Your new Mandrake Linux operating system is currently being installed.\n"
"Depending on the number of packages you will be installing and the speed of\n"
@@ -3556,12 +3622,12 @@ msgstr ""
"\n"
"Ìîëÿ, áúäćòć òúđïćëèâè."
-#: ../../help.pm_.c:412
+#: ../../help.pm_.c:406
msgid ""
"At the time you are installing Mandrake Linux, it is likely that some\n"
"packages have been updated since the initial release. Some bugs may have\n"
"been fixed, and security issues solved. To allow you to benefit from these\n"
-"updates, you are now proposed to download them from the Internet. Choose\n"
+"updates, you are now able to download them from the Internet. Choose\n"
"\"Yes\" if you have a working Internet connection, or \"No\" if you prefer\n"
"to install updated packages later.\n"
"\n"
@@ -3571,7 +3637,7 @@ msgid ""
"install the selected package(s), or \"Cancel\" to abort."
msgstr ""
-#: ../../help.pm_.c:425
+#: ../../help.pm_.c:419
msgid ""
"Before continuing, you should read carefully the terms of the license. It\n"
"covers the whole Mandrake Linux distribution, and if you do not agree with\n"
@@ -3587,14 +3653,14 @@ msgstr ""
"äà\n"
"ïđîäúëæèòć ń èíńòàëàöèÿòà, öúêíćòć íà áóòîíà Ïđèćìè."
-#: ../../help.pm_.c:432
+#: ../../help.pm_.c:426
msgid ""
"At this point, it is time to choose the security level desired for the\n"
"machine. As a rule of thumb, the more exposed the machine is, and the more\n"
"the data stored in it is crucial, the higher the security level should be.\n"
"However, a higher security level is generally obtained at the expense of\n"
-"easiness of use. Refer to the \"msec\" chapter of the ``Reference Manual''\n"
-"to get more information about the meaning of these levels.\n"
+"ease of use. Refer to the \"msec\" chapter of the ``Reference Manual'' to\n"
+"get more information about the meaning of these levels.\n"
"\n"
"If you do not know what to choose, keep the default option."
msgstr ""
@@ -3610,7 +3676,7 @@ msgstr ""
"\n"
"Àêî íć çíàćòć êàêòî äà èçáćđćòć, èçáćđćòć îïöèÿòà ïî ïîäđàçáèđàíć."
-#: ../../help.pm_.c:442
+#: ../../help.pm_.c:436
#, fuzzy
msgid ""
"At this point, you need to choose which partition(s) will be used for the\n"
@@ -3628,26 +3694,26 @@ msgid ""
" * \"Clear all\": this option deletes all partitions on the selected hard\n"
"drive;\n"
"\n"
-" * \"Auto allocate\": this option enables to automatically create \"Ext2\"\n"
-"and swap partitions in free space of your hard drive;\n"
+" * \"Auto allocate\": this option enables to automatically create ext3 and\n"
+"swap partitions in free space of your hard drive;\n"
"\n"
-" * \"More\": gives access to additional features:\n"
+"\"More\": gives access to additional features:\n"
"\n"
-" * \"Save partition table\": saves the partition table to a floppy.\n"
-"Useful for later partition-table recovery if necessary. It is strongly\n"
-"recommended to perform this step;\n"
+" * \"Save partition table\": saves the partition table to a floppy. Useful\n"
+"for later partition-table recovery if necessary. It is strongly recommended\n"
+"to perform this step;\n"
"\n"
-" * \"Restore partition table\": allows to restore a previously saved\n"
+" * \"Restore partition table\": allows to restore a previously saved\n"
"partition table from floppy disk;\n"
"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you\n"
-"can try to recover it using this option. Please be careful and remember\n"
-"that it can fail;\n"
+" * \"Rescue partition table\": if your partition table is damaged, you can\n"
+"try to recover it using this option. Please be careful and remember that it\n"
+"can fail;\n"
"\n"
-" * \"Reload partition table\": discards all changes and loads your\n"
-"initial partition table;\n"
+" * \"Reload partition table\": discards all changes and loads your initial\n"
+"partition table;\n"
"\n"
-" * \"Removable media automounting\": unchecking this option will force\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
"users to manually mount and unmount removable medias such as floppies and\n"
"CD-ROMs.\n"
"\n"
@@ -3675,7 +3741,7 @@ msgid ""
" * Ctrl-m to set the mount point.\n"
"\n"
"To get information about the different filesystem types available, please\n"
-"read the ext2fs chapter from the ``Reference Manual''.\n"
+"read the ext2FS chapter from the ``Reference Manual''.\n"
"\n"
"If you are installing on a PPC machine, you will want to create a small HFS\n"
"``bootstrap'' partition of at least 1MB, which will be used by the yaboot\n"
@@ -3750,7 +3816,7 @@ msgstr ""
"íàìćđèòć çà ïîëćçíî ìÿńòî, êúäćòî äà ńúőđàíÿâàòć íÿêîć ÿäđî èëè image íà\n"
"ramdisk â ńëóśàé íà èçâúíđćäíè ńèòóàöèè."
-#: ../../help.pm_.c:513
+#: ../../help.pm_.c:507
msgid ""
"More than one Microsoft partition has been detected on your hard drive.\n"
"Please choose the one you want to resize in order to install your new\n"
@@ -3817,11 +3883,11 @@ msgstr ""
"èëè\n"
"äÿë ńć íàđèśà \"C:\")."
-#: ../../help.pm_.c:544
+#: ../../help.pm_.c:538
msgid "Please be patient. This operation can take several minutes."
msgstr "Ìîëÿ, áúäćòć òúđïćëèâè. Òàçè îïćđàöèÿ ìîæć äà îòíćìć íÿêîëêî ìèíóòè."
-#: ../../help.pm_.c:547
+#: ../../help.pm_.c:541
#, fuzzy
msgid ""
"DrakX now needs to know if you want to perform a default (\"Recommended\")\n"
@@ -3829,23 +3895,23 @@ msgid ""
"also choose to do a new install or an upgrade of an existing Mandrake Linux\n"
"system:\n"
"\n"
-" * \"Install\": completely wipes out the old system. In fact, depending on\n"
-"what currently holds your machine, you will be able to keep some old (Linux\n"
-"or other) partitions unchanged;\n"
+" * \"Install\": completely wipes out the old system, however, depending on\n"
+"what is currently installed on your machine, you may be able to keep some\n"
+"old partitions (Linux or otherwise) unchanged;\n"
"\n"
" * \"Upgrade\": this installation class allows to simply update the\n"
"packages currently installed on your Mandrake Linux system. It keeps the\n"
"current partitions of your hard drives as well as user configurations. All\n"
-"other configuration steps remain available with respect to plain\n"
+"other configuration steps remain available, similar to a normal\n"
"installation;\n"
"\n"
-" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
-"existing Mandrake Linux system while keeping all system configurations\n"
-"unchanged. Adding new packages to the current installation is also\n"
-"possible.\n"
+" * \"Upgrade Packages Only\": this new installation class allows you to\n"
+"upgrade an existing Mandrake Linux system while keeping all system\n"
+"configurations unchanged. Adding new packages to the current installation\n"
+"is also possible.\n"
"\n"
-"Upgrades should work fine for Mandrake Linux systems starting from \"8.1\"\n"
-"release.\n"
+"Upgrades should work fine on Mandrake Linux systems containing version\n"
+"\"8.1\" or later.\n"
"\n"
"Depending on your knowledge of GNU/Linux, select one of the following\n"
"choices:\n"
@@ -3854,11 +3920,11 @@ msgid ""
"operating system. The installation will be very easy and you will only be\n"
"asked a few questions;\n"
"\n"
-" * Expert: if you have a good knowledge of GNU/Linux, you can choose this\n"
-"installation class. The expert installation will allow you to perform a\n"
-"highly-customized installation. Answering some of the questions can be\n"
-"difficult if you do not have a good knowledge of GNU/Linux, so do not\n"
-"choose this unless you know what you are doing."
+" * Expert: if you have a good understanding of GNU/Linux, you may wish to\n"
+"perform a highly customized installation. Some of the decisions you will\n"
+"have to make may be difficult if you do not have good knowledge of\n"
+"GNU/Linux, so it is not recommended that those without a fair amount of\n"
+"experience select this installation class."
msgstr ""
"DrakX ńćăà òđÿáâà äà ïđîâćäć èíńòàëàöèÿ ïî ïîäđàçáèđàíć (\"Ïđćïîđúśèòćëíà"
"\")\n"
@@ -3887,19 +3953,22 @@ msgstr ""
"íć ïîçíàâàòć äîáđć GNU/Linux, òàêà ść èçáćđćòć òîâà, îńâćí àêî íć çíàćòć\n"
"êàêâî ïđàâèòć."
-#: ../../help.pm_.c:584
+#: ../../help.pm_.c:578
msgid ""
"Normally, DrakX selects the right keyboard for you (depending on the\n"
-"language you have chosen) and you won't even see this step. However, you\n"
-"might not have a keyboard that corresponds exactly to your language: for\n"
-"example, if you are an English speaking Swiss person, you may still want\n"
-"your keyboard to be a Swiss keyboard. Or if you speak English but are\n"
-"located in Quebec, you may find yourself in the same situation. In both\n"
-"cases, you will have to go back to this installation step and select an\n"
-"appropriate keyboard from the list.\n"
+"language you have chosen). However, you might not have a keyboard that\n"
+"corresponds exactly to your language: for example, if you are an English\n"
+"speaking Swiss person, you may still want your keyboard to be a Swiss\n"
+"keyboard. Or if you speak English but are located in Quebec, you may find\n"
+"yourself in the same situation. In both cases, you will have to go back to\n"
+"this installation step and select an appropriate keyboard from the list.\n"
"\n"
"Click on the \"More\" button to be presented with the complete list of\n"
-"supported keyboards."
+"supported keyboards.\n"
+"\n"
+"If you choose a keyboard layout based on a non-latin alphabet, you will be\n"
+"asked on next dialog to choose the key binding that will switch the\n"
+"keyboard layout between the latin and non latin layouts."
msgstr ""
"Îáèêíîâćíî, DrakX áè òđÿáâàëî äà èçáćđć ïđàâèëíàòà çà âàń êëàâèàòóđà (â "
"çàâèńèìîńò\n"
@@ -3923,8 +3992,10 @@ msgstr ""
"íà áóòîíà \"Íàïđćäíèśàâ\". Ùć âè áúäć ïđćäîńòàâćí ïúëćí ńïèńúê ń "
"ïîääúđæàíèòć êëàâèàòóđè."
-#: ../../help.pm_.c:597
+#: ../../help.pm_.c:594
msgid ""
+"The first step is to choose your preferred language.\n"
+"\n"
"Please choose your preferred language for installation and system usage.\n"
"\n"
"Clicking on the \"Advanced\" button will allow you to select other\n"
@@ -3949,7 +4020,7 @@ msgstr ""
"Îòáćëćæćòć, ść ìîăàò äà áúäàò èíńòàëèđàíè íÿêîëêî ćçèêà. Âćäíúæ èçáđàí\n"
"íÿêàêúâ ëîêàë, öúêíćòć áóòîíà \"OK\", çà äà ïđîäúëæèòć."
-#: ../../help.pm_.c:610
+#: ../../help.pm_.c:609
msgid ""
"DrakX generally detects the number of buttons your mouse has. If not, it\n"
"assumes you have a two-button mouse and will set it up for third-button\n"
@@ -3962,7 +4033,14 @@ msgid ""
"If you choose a mouse other than the default, a test screen will be\n"
"displayed. Use the buttons and wheel to verify that the settings are\n"
"correct. If the mouse is not working well, press the space bar or [Return]\n"
-"to \"Cancel\" and choose again."
+"to \"Cancel\" and choose again.\n"
+"\n"
+"Wheel mouses are sometimes not automatically detected. You will need to\n"
+"manually select it in the list. Be sure to select the one corresponding to\n"
+"the correct port it is attached to. After you have pressed the \"OK\"\n"
+"button, a mouse image is displayed. You then need to move the wheel of your\n"
+"mouse to activate it correctly. Then test all buttons and movements are\n"
+"correct."
msgstr ""
"Ïî ïîäđàçáèđàíć, DrakX ïđćäïîëàăà ść èìàòć äâóáóòîííà ìèűêà è ùć âêëțśè\n"
"ńèìóëèđàíć íà òđè áóòîíà. DrakX àâòîìàòèśíî đàçáèđà äàëè ć PS/2, ńćđèéíà "
@@ -3977,7 +4055,7 @@ msgstr ""
"íàńòđîéêàòà ć äîđà. Àêî ìèűêàòà íć đàáîòè, êàêòî òđÿáâà, íàòèńíćòć èíòćđâàë\n"
"èëè ŃĆ ÂÚĐÍĆÒĆ êúì \"Îòêàç\" è èçáćđćòć ïàê."
-#: ../../help.pm_.c:624
+#: ../../help.pm_.c:630
msgid ""
"Please select the correct port. For example, the \"COM1\" port under\n"
"Windows is named \"ttyS0\" under GNU/Linux."
@@ -3985,7 +4063,7 @@ msgstr ""
"Ìîëÿ, èçáćđćòć âćđíèÿ ïîđò. Íàïđèìćđ, ïîđòúò COM1 ïîä Windows ïîä GNU/Linux\n"
"ńć íàđèśà ttyS0."
-#: ../../help.pm_.c:628
+#: ../../help.pm_.c:634
msgid ""
"This is the most crucial decision point for the security of your GNU/Linux\n"
"system: you have to enter the \"root\" password. \"root\" is the system\n"
@@ -4015,15 +4093,15 @@ msgid ""
"In Expert mode, you will be asked if you will be connecting to an\n"
"authentication server, like NIS or LDAP.\n"
"\n"
-"If your network uses the LDAP (or NIS) protocol for authentication, select\n"
-"\"LDAP\" (or \"NIS\") as authentication. If you do not know, ask your\n"
-"network administrator.\n"
+"If your network uses either of the LDAP, NIS, or PDC Windows Domain\n"
+"authentication services, select the appropriate one as \"authentication\".\n"
+"If you do not know, ask your network administrator.\n"
"\n"
"If your computer is not connected to any administrated network, you will\n"
"want to choose \"Local files\" for authentication."
msgstr ""
-#: ../../help.pm_.c:664
+#: ../../help.pm_.c:670
msgid ""
"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
@@ -4062,8 +4140,11 @@ msgid ""
"options. !!\n"
"\n"
"Clicking the \"Advanced\" button in this dialog will offer many advanced\n"
-"options, which are reserved to the expert user.\n"
-"\n"
+"options, which are reserved for the expert user."
+msgstr ""
+
+#: ../../help.pm_.c:710
+msgid ""
"After you have configured the general bootloader parameters, the list of\n"
"boot options which will be available at boot time will be displayed.\n"
"\n"
@@ -4071,16 +4152,7 @@ msgid ""
"automatically be added to the boot menu. Here, you can choose to fine-tune\n"
"the existing options. Select an entry and click \"Modify\" to modify or\n"
"remove it; \"Add\" creates a new entry; and \"Done\" goes on to the next\n"
-"installation step."
-msgstr ""
-
-#: ../../help.pm_.c:713
-msgid ""
-"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
-"either GNU/Linux or any other operating system present on your computer.\n"
-"Normally, these other operating systems are correctly detected and\n"
-"installed. If this is not the case, you can add an entry by hand in this\n"
-"screen. Be careful to choose the correct parameters.\n"
+"installation step.\n"
"\n"
"You may also not want to give access to these other operating systems to\n"
"anyone. In which case, you can delete the corresponding entries. But then,\n"
@@ -4144,18 +4216,18 @@ msgstr ""
#: ../../help.pm_.c:759
msgid ""
-"DrakX now detects any IDE device present in your computer. It will also\n"
-"scan for one or more PCI SCSI card(s) on your system. If a SCSI card is\n"
+"DrakX now detects any IDE devices present in your computer. It will also\n"
+"scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
"found, DrakX will automatically install the appropriate driver.\n"
"\n"
"Because hardware detection does not always detect a piece of hardware,\n"
"DrakX will ask you to confirm if a PCI SCSI card is present. Click \"Yes\"\n"
"if you know that there is a SCSI card installed in your machine. You will\n"
-"be presented a list of SCSI cards to choose from. Click \"No\" if you have\n"
-"no SCSI hardware. If you are unsure, you can check the list of hardware\n"
-"detected in your machine by selecting \"See hardware info\" and clicking\n"
-"\"OK\". Examine the list of hardware and then click on the \"OK\" button to\n"
-"return to the SCSI interface question.\n"
+"be presented with a list of SCSI cards to choose from. Click \"No\" if you\n"
+"have no SCSI hardware. If you are unsure, you can check the list of\n"
+"hardware detected in your machine by selecting \"See hardware info\" and\n"
+"clicking \"OK\". Examine the list of hardware and then click on the \"OK\"\n"
+"button to return to the SCSI interface question.\n"
"\n"
"If you have to manually specify your adapter, DrakX will ask if you want to\n"
"specify options for it. You should allow DrakX to probe the hardware for\n"
@@ -4272,7 +4344,9 @@ msgid ""
"order to configure the clock according to the time zone you are in;\n"
"\n"
" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
-"configuration wizard;\n"
+"configuration wizard. Consult the corresponding chapter of the ``User\n"
+"Guide'' for more information on how to setup a new printer. The interface\n"
+"presented there is similar to the one used during installation;\n"
"\n"
" * \"Sound card\": if a sound card is detected on your system, it is\n"
"displayed here. No modification possible at installation time;\n"
@@ -4285,7 +4359,7 @@ msgid ""
"associated with it."
msgstr ""
-#: ../../help.pm_.c:894
+#: ../../help.pm_.c:896
msgid ""
"Choose the hard drive you want to erase in order to install your new\n"
"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
@@ -4296,7 +4370,7 @@ msgstr ""
"áúäàò çàăóáćíè\n"
"è íÿìà äà ìîăàò äà ńć âúçńòàíîâÿò."
-#: ../../help.pm_.c:899
+#: ../../help.pm_.c:901
msgid ""
"Click on \"OK\" if you want to delete all data and partitions present on\n"
"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
@@ -4328,7 +4402,7 @@ msgstr ""
msgid "You must also format %s"
msgstr ""
-#: ../../install_any.pm_.c:418
+#: ../../install_any.pm_.c:423
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -4352,20 +4426,29 @@ msgstr ""
"\n"
"Íàèńòèíà ëè èńêàòć äà èíńòàëèđàòć òćçè ńúđâúđè ?\n"
-#: ../../install_any.pm_.c:453
+#: ../../install_any.pm_.c:441
+#, c-format
+msgid ""
+"The following packages will be removed to allow upgrading your system: %s\n"
+"\n"
+"\n"
+"Do you really want to remove these packages?\n"
+msgstr ""
+
+#: ../../install_any.pm_.c:471
msgid "Can't use broadcast with no NIS domain"
msgstr "Íć ìîæćòć äà èçïîëçâàòć broadcast áćç NIS äîìćéí"
-#: ../../install_any.pm_.c:841
+#: ../../install_any.pm_.c:862
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Ńëîæćòć FAT ôîđìàòèđàíà äèńêćòà â óńòđîéńòâî %s"
-#: ../../install_any.pm_.c:845
+#: ../../install_any.pm_.c:866
msgid "This floppy is not FAT formatted"
msgstr "Òàçè äèńêćòà íć ć ôîđìàòèđàíà íà FAT"
-#: ../../install_any.pm_.c:857
+#: ../../install_any.pm_.c:878
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -4373,11 +4456,20 @@ msgstr ""
"Çà äà èçïîëçâàòć çàïàçćí èçáîđ íà ïàêćòè, ńòàđòèđàéòć èíńòàëàöèÿòà ń ``linux "
"defcfg=floppy''"
-#: ../../install_any.pm_.c:880 ../../partition_table.pm_.c:771
+#: ../../install_any.pm_.c:901 ../../partition_table.pm_.c:767
#, c-format
msgid "Error reading file %s"
msgstr "Ăđćűêà ïđè śćòćíćòî íà ôàéëà %s"
+#: ../../install_any.pm_.c:1023
+msgid ""
+"An error occurred - no valid devices were found on which to create new "
+"filesystems. Please check your hardware for the cause of this problem"
+msgstr ""
+"Ïîÿâè ńć ăđćűêà - íć ńà îòêđèòè âàëèäíè óńòđîéńòâà, âúđőó êîèòî äà áúäàò "
+"ńúçäàäćíè íîâè ôàéëîâè ńèńòćìè. Ìîëÿ ïđîâćđćòć òâúđäèÿ ńè äèńê ńè çà "
+"ïđèśèíàòà çà òîçè ïđîáëćì"
+
#: ../../install_interactive.pm_.c:23
#, c-format
msgid ""
@@ -4412,59 +4504,59 @@ msgstr ""
"\n"
"Äà ïđîäúëæà ëè âńć ïàê ?"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:168
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:169
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "Òđÿáâà äà èìàòć FAT äÿë ìîíòèđàí â /boot/efi"
-#: ../../install_interactive.pm_.c:91
+#: ../../install_interactive.pm_.c:92
msgid "Use free space"
msgstr "Èçïîëçâàé ńâîáîäíîòî ìÿńòî"
-#: ../../install_interactive.pm_.c:93
+#: ../../install_interactive.pm_.c:94
msgid "Not enough free space to allocate new partitions"
msgstr "Íÿìà äîńòàòúśíî ìÿńòî çà ńúçäàâàíć íà íîâ äÿë"
-#: ../../install_interactive.pm_.c:101
+#: ../../install_interactive.pm_.c:102
msgid "Use existing partitions"
msgstr "Èçïîçâàíć íà ńúùćńòâóâàù äÿë"
-#: ../../install_interactive.pm_.c:103
+#: ../../install_interactive.pm_.c:104
msgid "There is no existing partition to use"
msgstr "Íÿìà äÿë, êîéòî ìîăà äà èçïîëçâàì"
-#: ../../install_interactive.pm_.c:110
+#: ../../install_interactive.pm_.c:111
msgid "Use the Windows partition for loopback"
msgstr "Èçïîëçâàé çà Windows äÿëúò çà loopback"
-#: ../../install_interactive.pm_.c:113
+#: ../../install_interactive.pm_.c:114
msgid "Which partition do you want to use for Linux4Win?"
msgstr "Êîé äÿë èńêàòć äà èçïîëçâàòć çà Linux4Win ?"
-#: ../../install_interactive.pm_.c:115
+#: ../../install_interactive.pm_.c:116
msgid "Choose the sizes"
msgstr "Èçáćđćòć ăîëćìèíèòć"
-#: ../../install_interactive.pm_.c:116
+#: ../../install_interactive.pm_.c:117
msgid "Root partition size in MB: "
msgstr "Ăîëćìèíà íà root-äÿëà â MB: "
-#: ../../install_interactive.pm_.c:117
+#: ../../install_interactive.pm_.c:118
msgid "Swap partition size in MB: "
msgstr "Ăîëćìèíà íà swap-äÿëà â MB: "
-#: ../../install_interactive.pm_.c:126
+#: ../../install_interactive.pm_.c:128
msgid "Use the free space on the Windows partition"
msgstr "Èçïîëçâàé ńâîáîäíîòî ìÿńòî íà Windows äÿëà"
-#: ../../install_interactive.pm_.c:129
+#: ../../install_interactive.pm_.c:131
msgid "Which partition do you want to resize?"
msgstr "Êîé äÿë æćëàćòć äà ïđîìćíèòć?"
-#: ../../install_interactive.pm_.c:131
+#: ../../install_interactive.pm_.c:133
msgid "Resizing Windows partition"
msgstr "Èçśèńëÿâàì ăđàíèöèòć íà Windows ôàéëîâàòà ńèńòćìà"
-#: ../../install_interactive.pm_.c:134
+#: ../../install_interactive.pm_.c:136
#, c-format
msgid ""
"The FAT resizer is unable to handle your partition, \n"
@@ -4473,7 +4565,7 @@ msgstr ""
"Íć âúçìîæíîńò çà đàáîòà ń âàűèÿ FAT äÿë, \n"
"ïîđàäè ïîëóśćíàòà ăđćűêà: %s"
-#: ../../install_interactive.pm_.c:137
+#: ../../install_interactive.pm_.c:139
msgid ""
"Your Windows partition is too fragmented. Please reboot your computer under "
"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
@@ -4481,7 +4573,7 @@ msgid ""
msgstr ""
"Âàűèÿò Windows äÿë ć ìíîăî ôđàăìćíòèđàí, ìîëÿ ïúđâî ńòàđòèđàéòć ''defrag''"
-#: ../../install_interactive.pm_.c:138
+#: ../../install_interactive.pm_.c:140
#, fuzzy
msgid ""
"WARNING!\n"
@@ -4502,21 +4594,21 @@ msgstr ""
"ïîâòîđćòć èíńòàëàöèàÿòà. Áè áèëî äîáđć äà íàïđàâèòć àđőèâ íà äàííèòć ńè.\n"
"Êîăàòî ńòć ńèăóđíè, íàòèńíćòć ÎÊ."
-#: ../../install_interactive.pm_.c:148
+#: ../../install_interactive.pm_.c:150
msgid "Which size do you want to keep for Windows on"
msgstr "Êîëêî èńêàòć äà îńòàâèòć çà windows?"
-#: ../../install_interactive.pm_.c:149
+#: ../../install_interactive.pm_.c:151
#, c-format
msgid "partition %s"
msgstr "äÿë %s"
-#: ../../install_interactive.pm_.c:156
+#: ../../install_interactive.pm_.c:158
#, c-format
msgid "FAT resizing failed: %s"
msgstr "Íćóńïćűíî ïđćđàçäćëÿíć íà FAT: %s"
-#: ../../install_interactive.pm_.c:171
+#: ../../install_interactive.pm_.c:173
msgid ""
"There is no FAT partition to resize or to use as loopback (or not enough "
"space left)"
@@ -4524,32 +4616,32 @@ msgstr ""
"Íÿìà FAT äÿëîâć çà ńìÿíà íà ăîëćìèíàòà èëè çà èçïîëçâàíć êàòî loopback (èëè "
"íÿìà äîńòàòúśíî ìÿńòî íà äèńêà)"
-#: ../../install_interactive.pm_.c:177
+#: ../../install_interactive.pm_.c:179
msgid "Erase entire disk"
msgstr "Èçòđèé öćëèÿ äèńê"
-#: ../../install_interactive.pm_.c:177
+#: ../../install_interactive.pm_.c:179
msgid "Remove Windows(TM)"
msgstr "Ïđćìàőíè Windows(TM)"
-#: ../../install_interactive.pm_.c:180
+#: ../../install_interactive.pm_.c:182
msgid "You have more than one hard drive, which one do you install linux on?"
msgstr "èìàòć ïîâćść îò ćäèí òâúđäè äèńêîâć, êîé äà èçïîëçâàì çà èíńòàëàöèÿòà?"
-#: ../../install_interactive.pm_.c:183
+#: ../../install_interactive.pm_.c:185
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr "ÂŃÈŚÊÈ ńúùćńòâóâàùè äÿëîâć è äàííèòe âúđőó òÿő íà %s ùć áúäàò çàăóáćíè"
-#: ../../install_interactive.pm_.c:191
+#: ../../install_interactive.pm_.c:193
msgid "Custom disk partitioning"
msgstr "Êëèćíòńêî đàçäćëÿíć íà äèńêà"
-#: ../../install_interactive.pm_.c:195
+#: ../../install_interactive.pm_.c:197
msgid "Use fdisk"
msgstr "Èçïîëçâàé fdisk"
-#: ../../install_interactive.pm_.c:198
+#: ../../install_interactive.pm_.c:200
#, c-format
msgid ""
"You can now partition %s.\n"
@@ -4558,28 +4650,28 @@ msgstr ""
"Ńćăà ìîæćòć äà đàçäćëèòć %s.\n"
"Êîăàòî ńòć ăîòîâè, íć çàáđàâÿéòć äà çàïèűćòć èçïîëçâàéêè `w'"
-#: ../../install_interactive.pm_.c:227
+#: ../../install_interactive.pm_.c:229
msgid "You don't have enough free space on your Windows partition"
msgstr "Íÿìà äîńòàòúśíî ńâîáîäíî ìÿńòî íà äÿëà"
-#: ../../install_interactive.pm_.c:243
+#: ../../install_interactive.pm_.c:245
msgid "I can't find any room for installing"
msgstr "Íć ìîăà äà íàìćđÿ íèêàêâî ìÿńòî çà èíńòàëàöèÿ"
-#: ../../install_interactive.pm_.c:246
+#: ../../install_interactive.pm_.c:248
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr "Ïîìîùíèêúò çà đàçäćëèíć íà äÿëîâć íà DrakX íàìćđè ńëćäíèòć đćűćíèÿ:"
-#: ../../install_interactive.pm_.c:250
+#: ../../install_interactive.pm_.c:252
#, c-format
msgid "Partitioning failed: %s"
msgstr "Íćóńïćűíî đàçäćëÿíć íà: %s"
-#: ../../install_interactive.pm_.c:260
+#: ../../install_interactive.pm_.c:262
msgid "Bringing up the network"
msgstr "Âêëțśâàì ìđćæàòà"
-#: ../../install_interactive.pm_.c:265
+#: ../../install_interactive.pm_.c:267
msgid "Bringing down the network"
msgstr "Èçêëțśâàíć íà ìđćæàòà"
@@ -4591,12 +4683,12 @@ msgstr ""
"Ïîÿâè ńć ăđćűêà, íî íć çíàì êàê äà ńć ńïđàâÿ ń íćÿ äćëèêàòíî.\n"
"Ìîæćòć äà ïđîäúëæèòć íà ńâîé đèńê."
-#: ../../install_steps.pm_.c:210
+#: ../../install_steps.pm_.c:211
#, c-format
msgid "Duplicate mount point %s"
msgstr "Äóáëèđàé òîśêàòà íà ìîíòèđàíć %s"
-#: ../../install_steps.pm_.c:379
+#: ../../install_steps.pm_.c:380
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -4608,12 +4700,12 @@ msgstr ""
"Ïđîâćđćòć êîìïàêò äèńêà íà èíńòàëèđàíèÿ êîìïțòúđ èçïîëçâàéêè \"rpm -qpl "
"Mandrake/RPMS/*.rpm\"\n"
-#: ../../install_steps.pm_.c:451
+#: ../../install_steps.pm_.c:452
#, c-format
msgid "Welcome to %s"
msgstr "Äîáđć äîűëè â %s"
-#: ../../install_steps.pm_.c:530 ../../install_steps.pm_.c:770
+#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:772
msgid "No floppy drive available"
msgstr "Íÿìà ôëîïè óńòđîéńòâî"
@@ -4644,71 +4736,71 @@ msgstr "Êëàń èíńòàëàöèÿ"
msgid "Please choose one of the following classes of installation:"
msgstr "Ìîëÿ, èçáćđćòć ćäèí îò ńëćäíèòć êëàńîâć íà èíńòàëàöèÿ:"
-#: ../../install_steps_gtk.pm_.c:243 ../../install_steps_interactive.pm_.c:694
+#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:678
msgid "Package Group Selection"
msgstr "Èçáîđ íà ăđóïà ïàêćòè"
-#: ../../install_steps_gtk.pm_.c:276 ../../install_steps_interactive.pm_.c:709
+#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:693
msgid "Individual package selection"
msgstr "Èçáèđàíć íà ïàêćòè ćäèí ïî ćäèí"
-#: ../../install_steps_gtk.pm_.c:299 ../../install_steps_interactive.pm_.c:633
+#: ../../install_steps_gtk.pm_.c:293 ../../install_steps_interactive.pm_.c:617
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Îáùà ăîëćìèíà: %d / %d MB"
-#: ../../install_steps_gtk.pm_.c:341
+#: ../../install_steps_gtk.pm_.c:335
msgid "Bad package"
msgstr "Ëîű ïàêćò"
-#: ../../install_steps_gtk.pm_.c:342
+#: ../../install_steps_gtk.pm_.c:336
#, c-format
msgid "Name: %s\n"
msgstr "Èìć: %s\n"
-#: ../../install_steps_gtk.pm_.c:343
+#: ../../install_steps_gtk.pm_.c:337
#, c-format
msgid "Version: %s\n"
msgstr "Âćđńèÿ: %s\n"
-#: ../../install_steps_gtk.pm_.c:344
+#: ../../install_steps_gtk.pm_.c:338
#, c-format
msgid "Size: %d KB\n"
msgstr "Ăîëćìèíà: %d KB\n"
-#: ../../install_steps_gtk.pm_.c:345
+#: ../../install_steps_gtk.pm_.c:339
#, c-format
msgid "Importance: %s\n"
msgstr "Âàæíîńò: %s\n"
-#: ../../install_steps_gtk.pm_.c:367
+#: ../../install_steps_gtk.pm_.c:361
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr ""
"Íć ìîæćòć äà îńòàâèòć ïàêćòà íćìàđêèđàí, çàùîòî íÿìàòć ìÿńòî äà ăî "
"èíńòàëèđàòć"
-#: ../../install_steps_gtk.pm_.c:372
+#: ../../install_steps_gtk.pm_.c:366
msgid "The following packages are going to be installed"
msgstr "Ńëćäíèòć ïàêćòè ùć áúäàò èíńòàëèđàíè"
-#: ../../install_steps_gtk.pm_.c:373
+#: ../../install_steps_gtk.pm_.c:367
msgid "The following packages are going to be removed"
msgstr "Ńëćäíèòć ïàêćòè ùć áúäàò ïđćìàőíàòè"
-#: ../../install_steps_gtk.pm_.c:385
+#: ../../install_steps_gtk.pm_.c:379
msgid "You can't select/unselect this package"
msgstr "Íć ìîæćòć äà îòáćëćæćòć/äćîòáćëćæćòć òîçè ïàêćò"
-#: ../../install_steps_gtk.pm_.c:397
+#: ../../install_steps_gtk.pm_.c:391
msgid "This is a mandatory package, it can't be unselected"
msgstr "Òîâà ć íóæćí ïàêćò, íć ìîæć äà áúäć íćìàđêèđàí"
-#: ../../install_steps_gtk.pm_.c:399
+#: ../../install_steps_gtk.pm_.c:393
msgid "You can't unselect this package. It is already installed"
msgstr "Íć ìîæćòć äà îńòàâèòć òîçè ïàêćò íćìàđêèđàí. Òîé âćść ć èíńòàëèđàí"
-#: ../../install_steps_gtk.pm_.c:402
+#: ../../install_steps_gtk.pm_.c:396
msgid ""
"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
@@ -4716,74 +4808,74 @@ msgstr ""
"Òîçè ïàêćò òđÿáâà äà áúäć îáíîâćí\n"
"Ńèăóđíè ëè ńòć, ść èńêàòć äà ăî èçêëțśèòć ?"
-#: ../../install_steps_gtk.pm_.c:405
+#: ../../install_steps_gtk.pm_.c:399
msgid "You can't unselect this package. It must be upgraded"
msgstr "Íć ìîæćòć äà èçêëțśèòć òîçè ïàêćò. Òîé òđÿáâà äà áúäć îáíîâćí"
-#: ../../install_steps_gtk.pm_.c:410
+#: ../../install_steps_gtk.pm_.c:404
msgid "Show automatically selected packages"
msgstr "Ïîêàæè àâòîìàòèśíî îòáćëÿçàíèòć ïàêćòè"
-#: ../../install_steps_gtk.pm_.c:411 ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_gtk.pm_.c:405 ../../install_steps_interactive.pm_.c:255
#: ../../install_steps_interactive.pm_.c:259
-#: ../../standalone/drakbackup_.c:3600
+#: ../../standalone/drakbackup_.c:4257
msgid "Install"
msgstr "Èíńòàëèđàé"
-#: ../../install_steps_gtk.pm_.c:414
+#: ../../install_steps_gtk.pm_.c:408
msgid "Load/Save on floppy"
msgstr "Çàđćäè/Çàïàçè íà äèńêćòà"
-#: ../../install_steps_gtk.pm_.c:415
+#: ../../install_steps_gtk.pm_.c:409
msgid "Updating package selection"
msgstr "Îáíîâÿâàíć íà èçáîđà íà ïàêćòè"
-#: ../../install_steps_gtk.pm_.c:420
+#: ../../install_steps_gtk.pm_.c:414
msgid "Minimal install"
msgstr "Ìèìèíàëíà èíńòàëàöèÿ"
-#: ../../install_steps_gtk.pm_.c:435 ../../install_steps_interactive.pm_.c:538
+#: ../../install_steps_gtk.pm_.c:429 ../../install_steps_interactive.pm_.c:522
msgid "Choose the packages you want to install"
msgstr "Èçáćđćòć ïàêćòèòć, êîèòî èńêàòć äà èíńòàëèđàòć"
-#: ../../install_steps_gtk.pm_.c:451 ../../install_steps_interactive.pm_.c:778
+#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:762
msgid "Installing"
msgstr "Èíńòàëèđàì"
-#: ../../install_steps_gtk.pm_.c:457
+#: ../../install_steps_gtk.pm_.c:451
msgid "Estimating"
msgstr "Ïđćńìÿòàíć"
-#: ../../install_steps_gtk.pm_.c:464
+#: ../../install_steps_gtk.pm_.c:458
msgid "Time remaining "
msgstr "Îńòàâàùî âđćìć "
-#: ../../install_steps_gtk.pm_.c:476
+#: ../../install_steps_gtk.pm_.c:470
msgid "Please wait, preparing installation..."
msgstr "Ìîëÿ, èçśàêàéòć, ïîäăîòâÿíć íà èíńòàëàöèÿòà"
-#: ../../install_steps_gtk.pm_.c:560
+#: ../../install_steps_gtk.pm_.c:554
#, c-format
msgid "%d packages"
msgstr "%d ïàêćòà"
-#: ../../install_steps_gtk.pm_.c:565
+#: ../../install_steps_gtk.pm_.c:559
#, c-format
msgid "Installing package %s"
msgstr "Èíńòàëèđàíć íà ïàêćòà %s"
-#: ../../install_steps_gtk.pm_.c:602 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:802
+#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:786
#: ../../standalone/drakautoinst_.c:202
msgid "Accept"
msgstr "Ïđèćìè"
-#: ../../install_steps_gtk.pm_.c:602 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:802
+#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:786
msgid "Refuse"
msgstr "Îòêàæè"
-#: ../../install_steps_gtk.pm_.c:603 ../../install_steps_interactive.pm_.c:803
+#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:787
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4799,17 +4891,17 @@ msgstr ""
"Àêî ăî íÿìàòć, íàòèńíćòć Îòìÿíà, çà äà èçáćăíćòć èíńòàëèđàíćòî îò òîçè CD-"
"ROM."
-#: ../../install_steps_gtk.pm_.c:617 ../../install_steps_gtk.pm_.c:621
-#: ../../install_steps_interactive.pm_.c:815
-#: ../../install_steps_interactive.pm_.c:819
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_gtk.pm_.c:615
+#: ../../install_steps_interactive.pm_.c:799
+#: ../../install_steps_interactive.pm_.c:803
msgid "Go on anyway?"
msgstr "Äà ïđîäúëæà ëè âńć ïàê ?"
-#: ../../install_steps_gtk.pm_.c:617 ../../install_steps_interactive.pm_.c:815
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:799
msgid "There was an error ordering packages:"
msgstr "Ïîÿâè ńć ăđćűêà ïđè ïîđúśâàíćòî íà ïàêćòèòć:"
-#: ../../install_steps_gtk.pm_.c:621 ../../install_steps_interactive.pm_.c:819
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:803
msgid "There was an error installing packages:"
msgstr "Ïîÿâè ńć ăđćűêà ïđè èíńòàëèđàíć íà ïàêćòèòć:"
@@ -5131,7 +5223,7 @@ msgid "Are you sure you refuse the licence?"
msgstr ""
#: ../../install_steps_interactive.pm_.c:211
-#: ../../install_steps_interactive.pm_.c:1038
+#: ../../install_steps_interactive.pm_.c:1023
#: ../../standalone/keyboarddrake_.c:31
msgid "Keyboard"
msgstr "Êëàâèàòóđà"
@@ -5183,11 +5275,11 @@ msgstr "Îáíîâÿâàíć íà èçáîđà íà ïàêćòè"
msgid "Please choose the type of your mouse."
msgstr "Ìîëÿ, èçáćđćòć òèï íà ìèűêàòà."
-#: ../../install_steps_interactive.pm_.c:281 ../../standalone/mousedrake_.c:59
+#: ../../install_steps_interactive.pm_.c:281 ../../standalone/mousedrake_.c:60
msgid "Mouse Port"
msgstr "Ïîđò íà ìèűêàòà"
-#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:61
msgid "Please choose on which serial port your mouse is connected to."
msgstr "Ìîëÿ, èçáćđćòć êúì êîé ńćđèćí ïîđò ć ńâúđçàíà ìèűêàòà âè."
@@ -5219,44 +5311,20 @@ msgstr "Íàńòđîéêà íà IDE"
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:336
+#: ../../install_steps_interactive.pm_.c:338
msgid "No partition available"
msgstr "íÿìà äÿëîâć íà đàçïîëîæćíèć"
-#: ../../install_steps_interactive.pm_.c:339
+#: ../../install_steps_interactive.pm_.c:341
msgid "Scanning partitions to find mount points"
msgstr "Ïđćòúđńâàíć íà äÿëîâćòć çà íàìèđàíć íà òîśêè íà ìîíòèđàíć"
-#: ../../install_steps_interactive.pm_.c:347
+#: ../../install_steps_interactive.pm_.c:349
msgid "Choose the mount points"
msgstr "Èçáćđćòć ìćńòà çà ìîíòèđàíć"
-#: ../../install_steps_interactive.pm_.c:366
-#, c-format
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to not allow DrakX to modify the partition table.\n"
-"(the error is %s)\n"
-"\n"
-"Do you agree to loose all the partitions?\n"
-msgstr ""
-"Íć ìîăà äà đàçśćòà òàáëèöàòà íà äÿëîâćòć, ïđćêàëćíî ć ïîâđćäćíà çà ìćí :(\n"
-"Ìîăà äà ńć îïèòàì äà èçśèńòÿ ëîűèòć äÿëîâć (ÂŃÈŚÊÈ ÄÀÍÍÈ ùć áúäàò "
-"çàăóáćíè!).\n"
-"Äđóăî đćűćíèć ć äà çàáđàíèòć íà DrakX ïîïđàâÿ òàáëèöàòà ń äÿëîâć.\n"
-"(ăđćűêàòà ć %s)\n"
-
#: ../../install_steps_interactive.pm_.c:379
msgid ""
-"DiskDrake failed to read correctly the partition table.\n"
-"Continue at your own risk!"
-msgstr ""
-"DiskDrake íć óńïÿ äà đàçśćòć ïđàâèëíî òàáëèöàòà íà äÿëîâćòć.\n"
-"Ïđîäúëæèòć íà ńîáńòâćí đèńê !"
-
-#: ../../install_steps_interactive.pm_.c:396
-msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
msgstr ""
@@ -5264,70 +5332,70 @@ msgstr ""
"çà äà ńòàđòèđàòć ńèńòćìàòà ńè, ùć òđÿáâà äà ńúçäàäćòć ńòàđòèđàùî ïîëć â "
"DiskDrake"
-#: ../../install_steps_interactive.pm_.c:405
+#: ../../install_steps_interactive.pm_.c:388
msgid "No root partition found to perform an upgrade"
msgstr "Íć ć íàìćđćí ăëàâćí äÿë çà íàäăđàæäàíć"
-#: ../../install_steps_interactive.pm_.c:406
+#: ../../install_steps_interactive.pm_.c:389
msgid "Root Partition"
msgstr "Root äÿë"
-#: ../../install_steps_interactive.pm_.c:407
+#: ../../install_steps_interactive.pm_.c:390
msgid "What is the root partition (/) of your system?"
msgstr "Êîé ć root-äÿëúò (/) íà ńèńòćìàòà âè ?"
-#: ../../install_steps_interactive.pm_.c:421
+#: ../../install_steps_interactive.pm_.c:404
msgid "You need to reboot for the partition table modifications to take place"
msgstr "Íàëàăà ńć đà đćńòàđòèđàòć, ïđćäè ìîäèôèêàöèèòć äà ïđćäèçâèêàò ćôćêò"
-#: ../../install_steps_interactive.pm_.c:445
+#: ../../install_steps_interactive.pm_.c:428
msgid "Choose the partitions you want to format"
msgstr "Èçáćđćòć äÿëîâćòć, êîèòî èńêàòć äà ôîđìàòèđàòć"
-#: ../../install_steps_interactive.pm_.c:446
+#: ../../install_steps_interactive.pm_.c:429
msgid "Check bad blocks?"
msgstr "Ïđîâćđêà çà ëîűè ńćêòîđè ?"
-#: ../../install_steps_interactive.pm_.c:473
+#: ../../install_steps_interactive.pm_.c:456
msgid "Formatting partitions"
msgstr "Ôîđìàòèđàíć íà äÿëowe"
-#: ../../install_steps_interactive.pm_.c:475
+#: ../../install_steps_interactive.pm_.c:458
#, c-format
msgid "Creating and formatting file %s"
msgstr "Ńúçäàâàíć è ôîđìàòèđàíć íà ôàéëà %s"
-#: ../../install_steps_interactive.pm_.c:480
+#: ../../install_steps_interactive.pm_.c:463
#, c-format
msgid ""
"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
"you can loose data)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:482
+#: ../../install_steps_interactive.pm_.c:465
msgid "Not enough swap space to fulfill installation, please add some"
msgstr ""
"Íÿìà äîńòàòúśíî swap çà ïđèêëțśâàíć íà èíńòàëàöèÿòà, ìîëÿ äîáàâćòć ìàëêî"
-#: ../../install_steps_interactive.pm_.c:489
+#: ../../install_steps_interactive.pm_.c:472
#, fuzzy
msgid "Looking for available packages and rebuilding rpm database..."
msgstr "Òúđńÿ íàëèśíè ïàêćòè"
-#: ../../install_steps_interactive.pm_.c:490
+#: ../../install_steps_interactive.pm_.c:473
msgid "Looking for available packages..."
msgstr "Òúđńÿ íàëèśíè ïàêćòè"
-#: ../../install_steps_interactive.pm_.c:493
+#: ../../install_steps_interactive.pm_.c:476
#, fuzzy
msgid "Looking at packages already installed..."
msgstr "Íć ìîæćòć äà îńòàâèòć òîçè ïàêćò íćìàđêèđàí. Òîé âćść ć èíńòàëèđàí"
-#: ../../install_steps_interactive.pm_.c:497
+#: ../../install_steps_interactive.pm_.c:480
msgid "Finding packages to upgrade..."
msgstr "Òúđńÿ ïàêćòè çà îáíîâÿâàíć"
-#: ../../install_steps_interactive.pm_.c:515
+#: ../../install_steps_interactive.pm_.c:498
#, c-format
msgid ""
"Your system does not have enough space left for installation or upgrade (%d "
@@ -5335,7 +5403,7 @@ msgid ""
msgstr ""
"Ńèńòćìàòà âè íÿìà äîńòàòúśíî ìÿńòî çà èíńòàëàöèÿ èëè îáíîâÿâàíć (%d > %d)"
-#: ../../install_steps_interactive.pm_.c:550
+#: ../../install_steps_interactive.pm_.c:534
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
@@ -5343,55 +5411,55 @@ msgstr ""
"Ìîæć èçáćđćòć çàđćæäàíć èëè çàïèń íà èçáîđà íà ïàêćòè íà ôëîïè.\n"
"Ôîđìàòúò ć ńúùèÿò êàòî auto_install ăćíćđèđàíèòć äèńêćòè."
-#: ../../install_steps_interactive.pm_.c:553
+#: ../../install_steps_interactive.pm_.c:537
msgid "Load from floppy"
msgstr "Çàđćäè îò äèńêćòà"
-#: ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_interactive.pm_.c:539
msgid "Loading from floppy"
msgstr "Çàđćæäàíć îò äèńêćòà"
-#: ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_interactive.pm_.c:539
msgid "Package selection"
msgstr "Èçáîđ íà ïàêćòè"
-#: ../../install_steps_interactive.pm_.c:560
+#: ../../install_steps_interactive.pm_.c:544
msgid "Insert a floppy containing package selection"
msgstr "Ńëîæćòć äèńêćòà ńúäúđæàùà èçáîđ íà ïàêćòè"
-#: ../../install_steps_interactive.pm_.c:572
+#: ../../install_steps_interactive.pm_.c:556
msgid "Save on floppy"
msgstr "Çàïàçè íà äèńêćòà"
-#: ../../install_steps_interactive.pm_.c:646
+#: ../../install_steps_interactive.pm_.c:630
msgid "Selected size is larger than available space"
msgstr "Èçáđàíàòà ăîëćìèíà ć ïî-ăîëÿìà îò äîńòúïíîòî ïđîńòđàíńòâî"
-#: ../../install_steps_interactive.pm_.c:660
+#: ../../install_steps_interactive.pm_.c:644
#, fuzzy
msgid "Type of install"
msgstr "Èçáćđćòć ïàêćòè çà èíńòàëèđàíć"
-#: ../../install_steps_interactive.pm_.c:661
+#: ../../install_steps_interactive.pm_.c:645
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:664
+#: ../../install_steps_interactive.pm_.c:648
#, fuzzy
msgid "With X"
msgstr "Ćäèí ìîìćíò"
-#: ../../install_steps_interactive.pm_.c:666
+#: ../../install_steps_interactive.pm_.c:650
msgid "With basic documentation (recommended!)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:667
+#: ../../install_steps_interactive.pm_.c:651
msgid "Truly minimal install (especially no urpmi)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:752
+#: ../../install_steps_interactive.pm_.c:736
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -5401,16 +5469,16 @@ msgstr ""
"Àêî íÿìàòć íèòî ćäíî îò òćçè CD-òà, íàòèńíćòć Îòìÿíà.\n"
"Àêî âè ëèïńâàò íÿêîè CD-òà, ìàőíćòć ăè, è íàòèńíćòć Ok. "
-#: ../../install_steps_interactive.pm_.c:757
+#: ../../install_steps_interactive.pm_.c:741
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "CD-ROM îçàăëàâćí \"%s\""
-#: ../../install_steps_interactive.pm_.c:778
+#: ../../install_steps_interactive.pm_.c:762
msgid "Preparing installation"
msgstr "Ïîäăîòâÿì èíńòàëàöèÿòà"
-#: ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:771
#, c-format
msgid ""
"Installing package %s\n"
@@ -5419,21 +5487,21 @@ msgstr ""
"Èíńòàëèđàì ïàêćò %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:833
+#: ../../install_steps_interactive.pm_.c:817
msgid "Post-install configuration"
msgstr "Ńëćä èíńòàëàöèîííà íàńòđîéêà"
-#: ../../install_steps_interactive.pm_.c:839
+#: ../../install_steps_interactive.pm_.c:823
#, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Ńëîæćòć ńòàđòèđàùàòà äèńêćòà â óńòđîéńòâî %s"
-#: ../../install_steps_interactive.pm_.c:845
+#: ../../install_steps_interactive.pm_.c:829
#, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Ńëîæćòć äèńêćòà çà îáíîâÿâàíć íà ìîäóëè â óńòđîéńòâî %s"
-#: ../../install_steps_interactive.pm_.c:865
+#: ../../install_steps_interactive.pm_.c:849
msgid ""
"You now have the opportunity to download encryption software.\n"
"\n"
@@ -5499,7 +5567,7 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:904
+#: ../../install_steps_interactive.pm_.c:888
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
"have been released after the distribution was released. They may\n"
@@ -5511,157 +5579,157 @@ msgid ""
"Do you want to install the updates ?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:919
+#: ../../install_steps_interactive.pm_.c:903
#, fuzzy
msgid ""
"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr "Ńâúđçâàíć ń îăëćäàëíèÿ ńúđâúđ çà ïîëóśàâàíć íà ńïèńúêà ń ïàêćòèòć"
-#: ../../install_steps_interactive.pm_.c:924
+#: ../../install_steps_interactive.pm_.c:908
msgid "Choose a mirror from which to get the packages"
msgstr "Èçáćđćòć îăëćäàëćí ńúđâúđ,îò êîéòî äà ïîëóśèòć ïàêćòèòć"
-#: ../../install_steps_interactive.pm_.c:933
+#: ../../install_steps_interactive.pm_.c:917
msgid "Contacting the mirror to get the list of available packages..."
msgstr "Ńâúđçâàíć ń îăëćäàëíèÿ ńúđâúđ çà ïîëóśàâàíć íà ńïèńúêà ń ïàêćòèòć"
-#: ../../install_steps_interactive.pm_.c:960
+#: ../../install_steps_interactive.pm_.c:945
msgid "Which is your timezone?"
msgstr "Êîÿ ć âđćìćâàòà âè çîíà ?"
-#: ../../install_steps_interactive.pm_.c:965
+#: ../../install_steps_interactive.pm_.c:950
msgid "Hardware clock set to GMT"
msgstr "Őàäđóćđíèÿò âè śàńîâíèê ć íàńòđîćí ïî GMT"
-#: ../../install_steps_interactive.pm_.c:966
+#: ../../install_steps_interactive.pm_.c:951
msgid "Automatic time synchronization (using NTP)"
msgstr "Àâòîìàòèśíà ńèíőđîíèçàöèÿ íà âđćìćòî (èçïîëçâà NTP)"
-#: ../../install_steps_interactive.pm_.c:973
+#: ../../install_steps_interactive.pm_.c:958
msgid "NTP Server"
msgstr "NTP ńúđâúđ"
-#: ../../install_steps_interactive.pm_.c:1007
-#: ../../install_steps_interactive.pm_.c:1015
+#: ../../install_steps_interactive.pm_.c:992
+#: ../../install_steps_interactive.pm_.c:1000
msgid "Remote CUPS server"
msgstr "Îòäàëćśćí CUPS ńúđâúđ"
-#: ../../install_steps_interactive.pm_.c:1008
+#: ../../install_steps_interactive.pm_.c:993
msgid "No printer"
msgstr "Íÿìà ïđèíòćđ"
-#: ../../install_steps_interactive.pm_.c:1025
+#: ../../install_steps_interactive.pm_.c:1010
#, fuzzy
msgid "Do you have an ISA sound card?"
msgstr "Èìàòć ëè äđóă(è) ?"
-#: ../../install_steps_interactive.pm_.c:1027
+#: ../../install_steps_interactive.pm_.c:1012
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1029
+#: ../../install_steps_interactive.pm_.c:1014
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1034 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1019 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Îáîáùćíèć"
-#: ../../install_steps_interactive.pm_.c:1037
+#: ../../install_steps_interactive.pm_.c:1022
msgid "Mouse"
msgstr "Ìèűêà"
-#: ../../install_steps_interactive.pm_.c:1039
+#: ../../install_steps_interactive.pm_.c:1024
msgid "Timezone"
msgstr "Śàńîâà çîíà"
-#: ../../install_steps_interactive.pm_.c:1040 ../../printerdrake.pm_.c:2728
-#: ../../printerdrake.pm_.c:2814
+#: ../../install_steps_interactive.pm_.c:1025 ../../printerdrake.pm_.c:2937
+#: ../../printerdrake.pm_.c:3026
msgid "Printer"
msgstr "Ïđèíòćđ"
-#: ../../install_steps_interactive.pm_.c:1042
+#: ../../install_steps_interactive.pm_.c:1027
msgid "ISDN card"
msgstr "ISDN êàđòà"
-#: ../../install_steps_interactive.pm_.c:1045
-#: ../../install_steps_interactive.pm_.c:1047
+#: ../../install_steps_interactive.pm_.c:1030
+#: ../../install_steps_interactive.pm_.c:1032
msgid "Sound card"
msgstr "Çâóêîâà êàđòà"
-#: ../../install_steps_interactive.pm_.c:1049
+#: ../../install_steps_interactive.pm_.c:1034
msgid "TV card"
msgstr "TV êàđòà"
-#: ../../install_steps_interactive.pm_.c:1089
-#: ../../install_steps_interactive.pm_.c:1114
-#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1074
+#: ../../install_steps_interactive.pm_.c:1099
+#: ../../install_steps_interactive.pm_.c:1103
msgid "LDAP"
msgstr "LDAP"
-#: ../../install_steps_interactive.pm_.c:1090
-#: ../../install_steps_interactive.pm_.c:1114
-#: ../../install_steps_interactive.pm_.c:1127
+#: ../../install_steps_interactive.pm_.c:1075
+#: ../../install_steps_interactive.pm_.c:1099
+#: ../../install_steps_interactive.pm_.c:1112
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1091
-#: ../../install_steps_interactive.pm_.c:1114
-#: ../../install_steps_interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1141
+#: ../../install_steps_interactive.pm_.c:1076
+#: ../../install_steps_interactive.pm_.c:1099
+#: ../../install_steps_interactive.pm_.c:1120
+#: ../../install_steps_interactive.pm_.c:1126
#, fuzzy
msgid "Windows Domain"
msgstr "NIS äîìćéí"
-#: ../../install_steps_interactive.pm_.c:1092
-#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1077
+#: ../../install_steps_interactive.pm_.c:1099
msgid "Local files"
msgstr "Ëîêàëíè ôàéëîâć"
-#: ../../install_steps_interactive.pm_.c:1101
-#: ../../install_steps_interactive.pm_.c:1102 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1086
+#: ../../install_steps_interactive.pm_.c:1087 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Âúâćäćòć ïàđîëà çà root"
-#: ../../install_steps_interactive.pm_.c:1103
+#: ../../install_steps_interactive.pm_.c:1088
msgid "No password"
msgstr "Áćç ïàđîëà"
-#: ../../install_steps_interactive.pm_.c:1108
+#: ../../install_steps_interactive.pm_.c:1093
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr "Ïàđîëàòà ć ïđćêàëćíî ïđîńòà (òđÿáâà äà áúäć äúëăà ïîíć %d ńèìâîëà)"
-#: ../../install_steps_interactive.pm_.c:1114 ../../network/modem.pm_.c:49
+#: ../../install_steps_interactive.pm_.c:1099 ../../network/modem.pm_.c:49
#: ../../standalone/drakconnect_.c:625 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Èäćíòèôèêàöèÿ"
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1107
msgid "Authentication LDAP"
msgstr "LDAP àóòîđèçàöèÿ"
-#: ../../install_steps_interactive.pm_.c:1123
+#: ../../install_steps_interactive.pm_.c:1108
msgid "LDAP Base dn"
msgstr "LDAP Áàçîâ dn"
-#: ../../install_steps_interactive.pm_.c:1124
+#: ../../install_steps_interactive.pm_.c:1109
msgid "LDAP Server"
msgstr "LDAP ńúđâúđ"
-#: ../../install_steps_interactive.pm_.c:1130
+#: ../../install_steps_interactive.pm_.c:1115
msgid "Authentication NIS"
msgstr "NIS àóòîđèçàöèÿ"
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1116
msgid "NIS Domain"
msgstr "NIS äîìćéí"
-#: ../../install_steps_interactive.pm_.c:1132
+#: ../../install_steps_interactive.pm_.c:1117
msgid "NIS Server"
msgstr "NIS ńúđâúđ"
-#: ../../install_steps_interactive.pm_.c:1138
+#: ../../install_steps_interactive.pm_.c:1123
msgid ""
"For this to work for a W2K PDC, you will probably need to have the admin "
"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
@@ -5677,21 +5745,21 @@ msgid ""
"good."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1140
+#: ../../install_steps_interactive.pm_.c:1125
#, fuzzy
msgid "Authentication Windows Domain"
msgstr "LDAP àóòîđèçàöèÿ"
-#: ../../install_steps_interactive.pm_.c:1142
+#: ../../install_steps_interactive.pm_.c:1127
#, fuzzy
msgid "Domain Admin User Name"
msgstr "Èìć íà äîìćéíà"
-#: ../../install_steps_interactive.pm_.c:1143
+#: ../../install_steps_interactive.pm_.c:1128
msgid "Domain Admin Password"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1178
+#: ../../install_steps_interactive.pm_.c:1163
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
"depending on the normal bootloader. This is useful if you don't want to "
@@ -5720,19 +5788,19 @@ msgstr ""
"Àêî èńêàòć äà ńúçäàäćòć bootdisk çà âàűàòà ńèńòćìà, ïîńòàâćòć äèńêćòà â\n"
"ïúđâîòî óńòđîéńòâî è íàòèńíćòć \"Ok\"."
-#: ../../install_steps_interactive.pm_.c:1194
+#: ../../install_steps_interactive.pm_.c:1179
msgid "First floppy drive"
msgstr "Ïúđâî ôëîïè óńòđîéńòâî"
-#: ../../install_steps_interactive.pm_.c:1195
+#: ../../install_steps_interactive.pm_.c:1180
msgid "Second floppy drive"
msgstr "Âòîđî ôëîïè óńòđîéńòâî"
-#: ../../install_steps_interactive.pm_.c:1196 ../../printerdrake.pm_.c:2277
+#: ../../install_steps_interactive.pm_.c:1181 ../../printerdrake.pm_.c:2470
msgid "Skip"
msgstr "Ïđćńêîśè"
-#: ../../install_steps_interactive.pm_.c:1201
+#: ../../install_steps_interactive.pm_.c:1186
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5758,7 +5826,7 @@ msgstr ""
"ńëóśàè íà ńđèâ. Èńêàòć ëè äà ńúçäàì bootdisk çà ńèńòćìàòà âè ?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1207
+#: ../../install_steps_interactive.pm_.c:1192
msgid ""
"\n"
"\n"
@@ -5767,28 +5835,28 @@ msgid ""
"because XFS needs a very large driver)."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1215
+#: ../../install_steps_interactive.pm_.c:1200
msgid "Sorry, no floppy drive available"
msgstr "Ńúæàëÿâàì íÿìà ôëîïè"
-#: ../../install_steps_interactive.pm_.c:1219
+#: ../../install_steps_interactive.pm_.c:1204
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "Èçáćđćòć ôëîïè äđàéâ,êúäćòî äà íàïđàâèòć ńòàđòèđàùà äèńêćòà"
-#: ../../install_steps_interactive.pm_.c:1223
+#: ../../install_steps_interactive.pm_.c:1208
#, fuzzy, c-format
msgid "Insert a floppy in %s"
msgstr "Ńëîæćòć äèńêćòà â óńòđîéńòâî %s"
-#: ../../install_steps_interactive.pm_.c:1226
+#: ../../install_steps_interactive.pm_.c:1211
msgid "Creating bootdisk..."
msgstr "Ńúçäàâàíć íà ńòàđòèđàùà äèńêćòà"
-#: ../../install_steps_interactive.pm_.c:1233
+#: ../../install_steps_interactive.pm_.c:1218
msgid "Preparing bootloader..."
msgstr "Ïîäăîòîâêà íà bootloader"
-#: ../../install_steps_interactive.pm_.c:1244
+#: ../../install_steps_interactive.pm_.c:1229
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5800,11 +5868,11 @@ msgstr ""
"Èíńòàëàöèÿòà ùć ïđîäúëæè, íî ùć òđÿáâà\n"
"äà èïîëçâàòć BootX, çà äà ńòàđòèđàòć ìàűèíàòà ńè"
-#: ../../install_steps_interactive.pm_.c:1250
+#: ../../install_steps_interactive.pm_.c:1235
msgid "Do you want to use aboot?"
msgstr "Èńêàòć ëè äà èçïîëçâàòć aboot ?"
-#: ../../install_steps_interactive.pm_.c:1253
+#: ../../install_steps_interactive.pm_.c:1238
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -5812,15 +5880,15 @@ msgstr ""
"Ăđćűêà ïđè èíńòàëèđàíć íà aboot, \n"
"äà ńć îïèòàì ëè äà ïđîäúëæà èíńòàëàöèÿòà äîđè, àêî òîâà óíèæòîæè ïúđâèÿ äÿë ?"
-#: ../../install_steps_interactive.pm_.c:1260
+#: ../../install_steps_interactive.pm_.c:1245
msgid "Installing bootloader"
msgstr "Èíńòàëèđàíć íà bootloader"
-#: ../../install_steps_interactive.pm_.c:1266
+#: ../../install_steps_interactive.pm_.c:1251
msgid "Installation of bootloader failed. The following error occured:"
msgstr "Èíńòàëàöèÿòà íà bootloader ïđîâàëćíà. Ïîÿâè ńć ńëćäíàòà ăđćűêà:"
-#: ../../install_steps_interactive.pm_.c:1274
+#: ../../install_steps_interactive.pm_.c:1259
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -5837,17 +5905,17 @@ msgstr ""
" Ńëćä êîćòî íàïèűćòć: shut-down\n"
"Ïđè ńëćäâàùîòî đćńòàđòèđàíć áè òđÿáâàëî äà âèäćòć ïîäńêàçêàòà."
-#: ../../install_steps_interactive.pm_.c:1308
+#: ../../install_steps_interactive.pm_.c:1293
#: ../../standalone/drakautoinst_.c:79
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Ńëîæćòć ïđàçíà äèńêćòà â óńòđîéńòâî %s"
-#: ../../install_steps_interactive.pm_.c:1312
+#: ../../install_steps_interactive.pm_.c:1297
msgid "Creating auto install floppy..."
msgstr "Ïîäăîòâÿì äèńêćòà ń àâòîìàòèśíà èíńòàëàöèÿ"
-#: ../../install_steps_interactive.pm_.c:1323
+#: ../../install_steps_interactive.pm_.c:1308
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -5857,7 +5925,7 @@ msgstr ""
"\n"
"Íàèńòèíà ëè èńêàòć äà èçëćçćòć ńćăà ?"
-#: ../../install_steps_interactive.pm_.c:1334
+#: ../../install_steps_interactive.pm_.c:1319
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
@@ -5889,15 +5957,15 @@ msgstr ""
"Èíôîđìàöèÿ çà íàńòđîéâàíć íà ńèńòćìàòà âè ìîæćòć äà íàìćđèòć â\n"
"ńëćäèíńòàëàöèîííàòà ăëàâà îò Official Mandrake Linux User's Guide."
-#: ../../install_steps_interactive.pm_.c:1347
+#: ../../install_steps_interactive.pm_.c:1332
msgid "http://www.mandrakelinux.com/en/90errata.php3"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1352
+#: ../../install_steps_interactive.pm_.c:1337
msgid "Generate auto install floppy"
msgstr "Ïîäăîòâè äèńêćòà çà àâòîìàòèśíà èíńòàëàöèÿ"
-#: ../../install_steps_interactive.pm_.c:1354
+#: ../../install_steps_interactive.pm_.c:1339
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -5911,15 +5979,15 @@ msgstr ""
"\n"
"Ìîæć áè èńêàòć äà ïîâòîđèòć èíńòàëàöèÿòà.\n"
-#: ../../install_steps_interactive.pm_.c:1359
+#: ../../install_steps_interactive.pm_.c:1344
msgid "Automated"
msgstr "Àâòîìàòèçèđàí"
-#: ../../install_steps_interactive.pm_.c:1359
+#: ../../install_steps_interactive.pm_.c:1344
msgid "Replay"
msgstr "Ïîâòîđè"
-#: ../../install_steps_interactive.pm_.c:1362
+#: ../../install_steps_interactive.pm_.c:1347
msgid "Save packages selection"
msgstr "Çàïàçè èçáîđ íà ïàêćòè"
@@ -5928,7 +5996,8 @@ msgstr "Çàïàçè èçáîđ íà ïàêćòè"
msgid "Mandrake Linux Installation %s"
msgstr "Èíńòàëàöèÿ íà Mandrake Linux %s"
-#: ../../install_steps_newt.pm_.c:34
+#. -PO This string must fit in a 80-char wide text screen
+#: ../../install_steps_newt.pm_.c:35
msgid ""
" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
msgstr ""
@@ -5946,22 +6015,22 @@ msgstr ""
msgid "Choose a file"
msgstr "Èçáćđćòć ôàéë"
-#: ../../interactive.pm_.c:317
+#: ../../interactive.pm_.c:320
msgid "Advanced"
msgstr "Íàïđćäíèśàâ"
-#: ../../interactive.pm_.c:318
+#: ../../interactive.pm_.c:321
msgid "Basic"
msgstr ""
-#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:155
-#: ../../printerdrake.pm_.c:1990
+#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:158
+#: ../../printerdrake.pm_.c:2124
msgid "<- Previous"
msgstr "<- Ïđćäèűćí"
#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
-#: ../../standalone/drakbackup_.c:3464 ../../standalone/drakbackup_.c:3491
-#: ../../standalone/drakbackup_.c:3517
+#: ../../standalone/drakbackup_.c:4112 ../../standalone/drakbackup_.c:4139
+#: ../../standalone/drakbackup_.c:4169 ../../standalone/drakbackup_.c:4195
#, fuzzy
msgid "Next"
msgstr "Òćêńò"
@@ -6029,378 +6098,378 @@ msgstr ""
msgid "Re-submit"
msgstr ""
-#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:152 ../../keyboard.pm_.c:187
msgid "Czech (QWERTZ)"
msgstr "Śćűêà (QWERTZ)"
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:153 ../../keyboard.pm_.c:189
msgid "German"
msgstr "Íćìńêà"
-#: ../../keyboard.pm_.c:175
+#: ../../keyboard.pm_.c:154
msgid "Dvorak"
msgstr "Äâîđàê"
-#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:218
+#: ../../keyboard.pm_.c:155 ../../keyboard.pm_.c:197
msgid "Spanish"
msgstr "Èńïàíńêà"
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:156 ../../keyboard.pm_.c:198
msgid "Finnish"
msgstr "Ôèíëàíäńêà"
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:220
+#: ../../keyboard.pm_.c:157 ../../keyboard.pm_.c:199
msgid "French"
msgstr "Ôđćíńêà"
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:158 ../../keyboard.pm_.c:231
msgid "Norwegian"
msgstr "Íîđâćæêà"
-#: ../../keyboard.pm_.c:180
+#: ../../keyboard.pm_.c:159
msgid "Polish"
msgstr "Ïîëńêà"
-#: ../../keyboard.pm_.c:181 ../../keyboard.pm_.c:260
+#: ../../keyboard.pm_.c:160 ../../keyboard.pm_.c:239
msgid "Russian"
msgstr "Đóńêà"
-#: ../../keyboard.pm_.c:183 ../../keyboard.pm_.c:262
+#: ../../keyboard.pm_.c:162 ../../keyboard.pm_.c:241
msgid "Swedish"
msgstr "Űâćäńêà"
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:278
+#: ../../keyboard.pm_.c:163 ../../keyboard.pm_.c:257
msgid "UK keyboard"
msgstr "UÊ êëàâèàòóđà"
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:279
+#: ../../keyboard.pm_.c:164 ../../keyboard.pm_.c:258
msgid "US keyboard"
msgstr "US êëàâèàòóđà"
-#: ../../keyboard.pm_.c:187
+#: ../../keyboard.pm_.c:166
msgid "Albanian"
msgstr "Àëáàíńêà"
-#: ../../keyboard.pm_.c:188
+#: ../../keyboard.pm_.c:167
msgid "Armenian (old)"
msgstr "Àđìćíńêà (ńòàđà)"
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:168
msgid "Armenian (typewriter)"
msgstr "Àđìćíńêà (ïèűćùà ìàűèíà)"
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:169
msgid "Armenian (phonetic)"
msgstr "Àđìćíńêà (ôîíćòèśćí)"
-#: ../../keyboard.pm_.c:195
+#: ../../keyboard.pm_.c:174
msgid "Azerbaidjani (latin)"
msgstr "Àçćđáàéäæàíńêà (ëàòèíèöà)"
-#: ../../keyboard.pm_.c:197
+#: ../../keyboard.pm_.c:176
msgid "Belgian"
msgstr "Áćëăèéńêà"
-#: ../../keyboard.pm_.c:198
+#: ../../keyboard.pm_.c:177
#, fuzzy
msgid "Bengali"
msgstr "âêëțśè"
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:178
#, fuzzy
msgid "Bulgarian (phonetic)"
msgstr "Àđìćíńêà (ôîíćòèśćí)"
-#: ../../keyboard.pm_.c:200
+#: ../../keyboard.pm_.c:179
#, fuzzy
msgid "Bulgarian (BDS)"
msgstr "Áúëăàđńêà"
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:180
msgid "Brazilian (ABNT-2)"
msgstr "Áđàçèëńêà (ABNT-2)"
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:183
#, fuzzy
msgid "Bosnian"
msgstr "Ćńòîíńêà"
-#: ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:184
msgid "Belarusian"
msgstr "Áćëàđóńêà"
-#: ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:185
msgid "Swiss (German layout)"
msgstr "Űâćéöàđńêà (íćìńêà íàđćäáà)"
-#: ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:186
msgid "Swiss (French layout)"
msgstr "Űâćéöàđńêà (ôđćíńêè íàđćäáà)"
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:188
msgid "Czech (QWERTY)"
msgstr "Śćűêà (QWERTY)"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:190
msgid "German (no dead keys)"
msgstr "Íćìńêà (áćç íćđàáîòćùè êëàâèűè)"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:191
msgid "Devanagari"
msgstr ""
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:192
msgid "Danish"
msgstr "Äàòńêà"
-#: ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:193
msgid "Dvorak (US)"
msgstr "Äâîđàê (US)"
-#: ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:194
msgid "Dvorak (Norwegian)"
msgstr "Äâîđàê (Íîđâćæêà)"
-#: ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:195
#, fuzzy
msgid "Dvorak (Swedish)"
msgstr "Äâîđàê (US)"
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:196
msgid "Estonian"
msgstr "Ćńòîíńêà"
-#: ../../keyboard.pm_.c:221
+#: ../../keyboard.pm_.c:200
msgid "Georgian (\"Russian\" layout)"
msgstr "Ăđóçèíńêà (\"Đóńêà\" íàđćäáà)"
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:201
msgid "Georgian (\"Latin\" layout)"
msgstr "Ăđóçèíńêà (\"Ëàòèíńêà\" íàđćäáà)"
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:202
msgid "Greek"
msgstr "Ăđúöêà"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:203
msgid "Gujarati"
msgstr ""
-#: ../../keyboard.pm_.c:225
+#: ../../keyboard.pm_.c:204
msgid "Gurmukhi"
msgstr ""
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:205
msgid "Hungarian"
msgstr "Óíăàđńêà"
-#: ../../keyboard.pm_.c:227
+#: ../../keyboard.pm_.c:206
msgid "Croatian"
msgstr "Őúđâàòńêà"
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:207
msgid "Israeli"
msgstr "Èçđàćëńêà"
-#: ../../keyboard.pm_.c:229
+#: ../../keyboard.pm_.c:208
msgid "Israeli (Phonetic)"
msgstr "Èçđàćëńêà (ôîíćòèśíà)"
-#: ../../keyboard.pm_.c:230
+#: ../../keyboard.pm_.c:209
msgid "Iranian"
msgstr "Èđàíńêà"
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:210
msgid "Icelandic"
msgstr "Èńëàíäńêà"
-#: ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:211
msgid "Italian"
msgstr "Èòàëèàíńêà"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:212
msgid "Inuktitut"
msgstr ""
-#: ../../keyboard.pm_.c:234
+#: ../../keyboard.pm_.c:213
msgid "Japanese 106 keys"
msgstr "ßïîíńêà 106 êëàâèűà"
-#: ../../keyboard.pm_.c:237
+#: ../../keyboard.pm_.c:216
msgid "Korean keyboard"
msgstr "Êîđćéńêà êëàâèàòóđà"
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:217
msgid "Latin American"
msgstr "Ëàòèíîàìćđèêàíńêà"
-#: ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:218
#, fuzzy
msgid "Laotian"
msgstr "Ëàòâèéńêà"
-#: ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:219
msgid "Lithuanian AZERTY (old)"
msgstr "Ëèòâèéńêà AZERTY (ńòàđà)"
-#: ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:221
msgid "Lithuanian AZERTY (new)"
msgstr "Ëèòâèéńêà AZERTY (íîâà)"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:222
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Ëèòâèéńêà \"śèńëîâà đćäèöà\" QWERTY"
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:223
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "Ëèòâèéńêà \"ôîíćòèśćí\" QWERTY"
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:224
msgid "Latvian"
msgstr "Ëàòâèéńêà"
-#: ../../keyboard.pm_.c:246
+#: ../../keyboard.pm_.c:225
msgid "Macedonian"
msgstr "Ìàêćäîíńêà"
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:226
msgid "Myanmar (Burmese)"
msgstr ""
-#: ../../keyboard.pm_.c:248
+#: ../../keyboard.pm_.c:227
#, fuzzy
msgid "Mongolian (cyrillic)"
msgstr "Ńđúáńêà (êèđèëèöà)"
-#: ../../keyboard.pm_.c:249
+#: ../../keyboard.pm_.c:228
msgid "Maltese (UK)"
msgstr ""
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:229
msgid "Maltese (US)"
msgstr ""
-#: ../../keyboard.pm_.c:251
+#: ../../keyboard.pm_.c:230
msgid "Dutch"
msgstr "Őîëàíäńêà"
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:232
msgid "Polish (qwerty layout)"
msgstr "Ïîëńêà (QWERTY íàđćäáà)"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:233
msgid "Polish (qwertz layout)"
msgstr "Ïîëńêà (QWERTZ íàđćäáà)"
-#: ../../keyboard.pm_.c:255
+#: ../../keyboard.pm_.c:234
msgid "Portuguese"
msgstr "Ïîđòóăàëńêà"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:235
msgid "Canadian (Quebec)"
msgstr "Êàíàäńêà (Êâćáćê)"
-#: ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:237
msgid "Romanian (qwertz)"
msgstr "Đóìúíńêà (qwertz)"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:238
msgid "Romanian (qwerty)"
msgstr "Đóìúíńêà (qwerty)"
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:240
msgid "Russian (Yawerty)"
msgstr "Đóńêà (Yawerty)"
-#: ../../keyboard.pm_.c:263
+#: ../../keyboard.pm_.c:242
msgid "Slovenian"
msgstr "Ńëîâćíńêà"
-#: ../../keyboard.pm_.c:264
+#: ../../keyboard.pm_.c:243
msgid "Slovakian (QWERTZ)"
msgstr "Ńëîâàűêà (QWERTZ)"
-#: ../../keyboard.pm_.c:265
+#: ../../keyboard.pm_.c:244
msgid "Slovakian (QWERTY)"
msgstr "Ńëîâàűêà (QWERTY)"
-#: ../../keyboard.pm_.c:267
+#: ../../keyboard.pm_.c:246
msgid "Serbian (cyrillic)"
msgstr "Ńđúáńêà (êèđèëèöà)"
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:248
msgid "Tamil (Unicode)"
msgstr ""
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:249
msgid "Tamil (TSCII)"
msgstr ""
-#: ../../keyboard.pm_.c:271
+#: ../../keyboard.pm_.c:250
msgid "Thai keyboard"
msgstr "Òàéâàíńêà êëàâèàòóđà"
-#: ../../keyboard.pm_.c:273
+#: ../../keyboard.pm_.c:252
msgid "Tajik keyboard"
msgstr "Òàäæèêèńòàíńêà êëàâèàòóđà"
-#: ../../keyboard.pm_.c:274
+#: ../../keyboard.pm_.c:253
msgid "Turkish (traditional \"F\" model)"
msgstr "Òóđńêà (òđàäèöèîíćí \"F\" ìîäćë)"
-#: ../../keyboard.pm_.c:275
+#: ../../keyboard.pm_.c:254
msgid "Turkish (modern \"Q\" model)"
msgstr "Òóđńêà (ìîäćđćí \"Q\" ìîäćë)"
-#: ../../keyboard.pm_.c:277
+#: ../../keyboard.pm_.c:256
msgid "Ukrainian"
msgstr "Óêđàèíńêà"
-#: ../../keyboard.pm_.c:280
+#: ../../keyboard.pm_.c:259
msgid "US keyboard (international)"
msgstr "US êëàâèàòóđà (ìćæäóíàđîäíà)"
-#: ../../keyboard.pm_.c:281
+#: ../../keyboard.pm_.c:260
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "Âèćòíàìńêà \"śèńëîâà đćäèöà\" QWERTY"
-#: ../../keyboard.pm_.c:282
+#: ../../keyboard.pm_.c:261
msgid "Yugoslavian (latin)"
msgstr "Țăîńëàâńêà (ëàòèíèöà)"
-#: ../../keyboard.pm_.c:289
+#: ../../keyboard.pm_.c:268
msgid "Right Alt key"
msgstr ""
-#: ../../keyboard.pm_.c:290
+#: ../../keyboard.pm_.c:269
msgid "Both Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:291
+#: ../../keyboard.pm_.c:270
msgid "Control and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:292
+#: ../../keyboard.pm_.c:271
msgid "CapsLock key"
msgstr ""
-#: ../../keyboard.pm_.c:293
+#: ../../keyboard.pm_.c:272
msgid "Ctrl and Alt keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:294
+#: ../../keyboard.pm_.c:273
msgid "Alt and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:295
+#: ../../keyboard.pm_.c:274
msgid "\"Menu\" key"
msgstr ""
-#: ../../keyboard.pm_.c:296
+#: ../../keyboard.pm_.c:275
msgid "Left \"Windows\" key"
msgstr ""
-#: ../../keyboard.pm_.c:297
+#: ../../keyboard.pm_.c:276
msgid "Right \"Windows\" key"
msgstr ""
@@ -6458,11 +6527,11 @@ msgstr "Îáèêíîâćííà PS2 ìèűêà"
msgid "GlidePoint"
msgstr "GlidePoint"
-#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:63
+#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:65
msgid "Kensington Thinking Mouse"
msgstr "Kensington THinking Mouse"
-#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:59
+#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:61
msgid "Genius NetMouse"
msgstr "Genuis NetMouse"
@@ -6470,115 +6539,125 @@ msgstr "Genuis NetMouse"
msgid "Genius NetScroll"
msgstr "Genius NetScroll"
-#: ../../mouse.pm_.c:43 ../../mouse.pm_.c:68
+#: ../../mouse.pm_.c:39 ../../mouse.pm_.c:48
+#, fuzzy
+msgid "Microsoft Explorer"
+msgstr "Microsoft IntelliMouse"
+
+#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:70
msgid "1 button"
msgstr "1 áóòîí"
-#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:51
+#: ../../mouse.pm_.c:45 ../../mouse.pm_.c:53
msgid "Generic 2 Button Mouse"
msgstr "Îáèêíîâćííà 2-áóòîííà ìèűêà"
-#: ../../mouse.pm_.c:46
+#: ../../mouse.pm_.c:47
msgid "Wheel"
msgstr "Wheel"
-#: ../../mouse.pm_.c:49
+#: ../../mouse.pm_.c:51
msgid "serial"
msgstr "ńćđèéíà"
-#: ../../mouse.pm_.c:52
+#: ../../mouse.pm_.c:54
msgid "Generic 3 Button Mouse"
msgstr "Îáèêíîâćííà 3-áóòîííà ìèűêà"
-#: ../../mouse.pm_.c:53
+#: ../../mouse.pm_.c:55
msgid "Microsoft IntelliMouse"
msgstr "Microsoft IntelliMouse"
-#: ../../mouse.pm_.c:54
+#: ../../mouse.pm_.c:56
msgid "Logitech MouseMan"
msgstr "Logitech MouseMan"
-#: ../../mouse.pm_.c:55
+#: ../../mouse.pm_.c:57
msgid "Mouse Systems"
msgstr "Mouse Systems"
-#: ../../mouse.pm_.c:57
+#: ../../mouse.pm_.c:59
msgid "Logitech CC Series"
msgstr "Logitech CC Series"
-#: ../../mouse.pm_.c:58
+#: ../../mouse.pm_.c:60
msgid "Logitech MouseMan+/FirstMouse+"
msgstr "Logitech MouseMan+/FirstMouse+"
-#: ../../mouse.pm_.c:60
+#: ../../mouse.pm_.c:62
msgid "MM Series"
msgstr "MM Series"
-#: ../../mouse.pm_.c:61
+#: ../../mouse.pm_.c:63
msgid "MM HitTablet"
msgstr "MM HitTablet"
-#: ../../mouse.pm_.c:62
+#: ../../mouse.pm_.c:64
msgid "Logitech Mouse (serial, old C7 type)"
msgstr "Logitech Mouse (ńćđèéíà, îò ńòàđèÿ òèï C7)"
-#: ../../mouse.pm_.c:66
+#: ../../mouse.pm_.c:68
msgid "busmouse"
msgstr "BUS ìèűêà"
-#: ../../mouse.pm_.c:69
+#: ../../mouse.pm_.c:71
msgid "2 buttons"
msgstr "2 áóòîíà"
-#: ../../mouse.pm_.c:70
+#: ../../mouse.pm_.c:72
msgid "3 buttons"
msgstr "3 áóòîíà"
-#: ../../mouse.pm_.c:73
+#: ../../mouse.pm_.c:75
msgid "none"
msgstr "íÿìà"
-#: ../../mouse.pm_.c:75
+#: ../../mouse.pm_.c:77
msgid "No mouse"
msgstr "Áćç ìèűêà"
-#: ../../mouse.pm_.c:445
+#: ../../mouse.pm_.c:482
msgid "Please test the mouse"
msgstr "Ìîëÿ, ïđîáâàéòć ìèűêàòà ńè"
-#: ../../mouse.pm_.c:446
+#: ../../mouse.pm_.c:483
msgid "To activate the mouse,"
msgstr "Çà äà àêòèâèđàòć ìèűêàòà ńè,"
-#: ../../mouse.pm_.c:447
+#: ../../mouse.pm_.c:484
msgid "MOVE YOUR WHEEL!"
msgstr "ÁÓÒÍĆÒĆ ÒÎÏŚĆÒÎ !"
-#: ../../my_gtk.pm_.c:156
+#: ../../my_gtk.pm_.c:64
+#, fuzzy
+msgid "-adobe-utopia-regular-r-*-*-25-*-*-*-p-*-iso8859-*,*-r-*"
+msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
+
+#: ../../my_gtk.pm_.c:159
msgid "Finish"
msgstr "Çàâúđűè"
-#: ../../my_gtk.pm_.c:156 ../../printerdrake.pm_.c:1992
+#: ../../my_gtk.pm_.c:159 ../../printerdrake.pm_.c:2126
msgid "Next ->"
msgstr "Ńëćäâàù ->"
-#: ../../my_gtk.pm_.c:284
+#: ../../my_gtk.pm_.c:287
msgid "Is this correct?"
msgstr "Âńèśêî ïđàâèëíî ëè ć ?"
-#: ../../my_gtk.pm_.c:356 ../../services.pm_.c:222
+#: ../../my_gtk.pm_.c:359 ../../services.pm_.c:222
msgid "Info"
msgstr "Èíôîđìàöèÿ"
-#: ../../my_gtk.pm_.c:377
+#: ../../my_gtk.pm_.c:380
msgid "Expand Tree"
msgstr "Đàçűèđè äúđâîòî"
-#: ../../my_gtk.pm_.c:378
+#: ../../my_gtk.pm_.c:381
msgid "Collapse Tree"
msgstr "Èçśèńòè äúđâîòî"
-#: ../../my_gtk.pm_.c:379
+#: ../../my_gtk.pm_.c:382
msgid "Toggle between flat and group sorted"
msgstr "Ïđćâêëțśâàíć ìćæäó íîđìàëíî è ńîđòèđàíć ïî ăđóïè"
@@ -6616,6 +6695,74 @@ msgstr "èçïîëçâàé PPPOE"
msgid "use pptp"
msgstr "èçïîëçâàé PPPTP"
+#: ../../network/drakfirewall.pm_.c:12
+#, fuzzy
+msgid "Web Server"
+msgstr "Ńúđâúđ"
+
+#: ../../network/drakfirewall.pm_.c:17
+#, fuzzy
+msgid "Domain Name Server"
+msgstr "Èìć íà äîìćéíà"
+
+#: ../../network/drakfirewall.pm_.c:32
+#, fuzzy
+msgid "Mail Server"
+msgstr "Ńúđâúđ Áàçè-äàííè"
+
+#: ../../network/drakfirewall.pm_.c:37
+#, fuzzy
+msgid "POP and IMAP Server"
+msgstr "LDAP ńúđâúđ"
+
+#: ../../network/drakfirewall.pm_.c:111
+#, fuzzy
+msgid "No network card"
+msgstr "íć ć îòêđèòà ìđćæîâà êàđòà"
+
+#: ../../network/drakfirewall.pm_.c:129
+#, fuzzy
+msgid ""
+"drakfirewall configurator\n"
+"\n"
+"This configures a personal firewall for this Mandrake Linux machine.\n"
+"For a powerful dedicated firewall solution, please look to the\n"
+"specialized MandrakeSecurity Firewall distribution."
+msgstr ""
+"Íàńòđîéśèê çà ìàëêà çàùèòíà ńòćíà\n"
+"\n"
+"Òîâà íàńòđîéâà ïćđńîíàëíà çàùèòíà ńòćíà çà òàçè Mandrake Linux ìàűèíà.\n"
+"Çà ìîùíî ïîńòâćòćíî íà çàùèòàòà đćűćíèć, ìîëć, ïîăëćäíćòć ńïćöèàëèçèđàíàòà\n"
+"MandrakeSecurity Firewall äèńòđèáóöèÿ."
+
+#: ../../network/drakfirewall.pm_.c:147
+msgid "Which services would you like to allow the Internet to connect to?"
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:148
+msgid ""
+"You can enter miscellaneous ports. \n"
+"Valid examples are: 139/tcp 139/udp.\n"
+"Have a look at /etc/services for information."
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:154
+#, c-format
+msgid ""
+"Invalid port given: %s.\n"
+"The proper format is \"port/tcp\" or \"port/udp\", \n"
+"where port is between 1 and 65535."
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:162
+msgid "Everything (no firewall)"
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:164
+#, fuzzy
+msgid "Other ports"
+msgstr "Òćńòâàíć ïîđòîâćòć"
+
#: ../../network/ethernet.pm_.c:37
msgid ""
"Which dhcp client do you want to use?\n"
@@ -6632,7 +6779,7 @@ msgstr ""
"Íć áćűć íàìćđćí ìđćæîâ àäàïòćđ â ńèńòćìàòà âè.\n"
"Íć ìîæćòć äà íàńòđîèòć òàêúâ âèä âđúçêà."
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:247
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:240
msgid "Choose the network interface"
msgstr "Èçáćđćòć ìđćæîâ èíòćđôćéń"
@@ -6645,7 +6792,7 @@ msgstr "Ìîëÿ, èçáćđćòć êîé ìđćæîâ àäàïòćđ äà èçïîëçâàì çà âđúçêà êúì Èíòćđíćò"
msgid "no network card found"
msgstr "íć ć îòêđèòà ìđćæîâà êàđòà"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:366
msgid "Configuring network"
msgstr "Íàńòîéêà íà ìđćæàòà"
@@ -6661,7 +6808,7 @@ msgstr ""
"Host èìćòî òđÿáâà äà áóäć íàïúëíî êâàëèôèöèđàíî èìć,\n"
"êàòî ``mybox.mylab.myco.com''."
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:370
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:371
msgid "Host name"
msgstr "Èìć íà őîńò:"
@@ -6962,13 +7109,13 @@ msgstr "Èçáćđćòć ïđîôèë çà íàńòđîéêà"
msgid "Use auto detection"
msgstr "Èçïîëçâàé àâòîìàòèśíî çàńèśàíć"
-#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2930
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:3151
#: ../../standalone/drakconnect_.c:274 ../../standalone/drakconnect_.c:277
#: ../../standalone/drakfloppy_.c:145
msgid "Expert Mode"
msgstr "Đàçűèđćíè ôóíêèöèè"
-#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:283
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:386
msgid "Detecting devices..."
msgstr "Îòêđèâàíć íà óńòđîéńòâà ..."
@@ -7134,11 +7281,11 @@ msgstr "Àâòîìàòèśćí IP àäđćń"
msgid "Start at boot"
msgstr "Ïóńíàò ïđè ńòàđòèđàíć"
-#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:753
+#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:860
msgid "IP address should be in format 1.2.3.4"
msgstr "IP àäđćńúò òđÿáâà äà áúäć âúâ ôîđìàò 1.2.3.4"
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:367
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -7150,43 +7297,55 @@ msgstr ""
"êàòî ``mybox.mylab.myco.com''.\n"
"Ìîæćòć ńúùî äà âúâćäćòć IP àäđćńà íà Âàűèÿ gateway, àêî èìàòć òàêúâ"
-#: ../../network/network.pm_.c:371
+#: ../../network/network.pm_.c:372
msgid "DNS server"
msgstr "DNS ńúđâúđ"
-#: ../../network/network.pm_.c:372
+#: ../../network/network.pm_.c:373
#, c-format
msgid "Gateway (e.g. %s)"
msgstr ""
-#: ../../network/network.pm_.c:374
+#: ../../network/network.pm_.c:375
msgid "Gateway device"
msgstr "Gateway óńòđîéńòâî"
-#: ../../network/network.pm_.c:386
+#: ../../network/network.pm_.c:387
msgid "Proxies configuration"
msgstr "Íàńòđîéêà íà proxy"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:388
msgid "HTTP proxy"
msgstr "HTTP proxy"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:389
msgid "FTP proxy"
msgstr "FTP proxy"
-#: ../../network/network.pm_.c:389
+#: ../../network/network.pm_.c:390
msgid "Track network card id (useful for laptops)"
msgstr "Ïđîńëćäÿâàíć íà ID íà ìđćæîâàòà êàđòà (ïîëćçíî ïđè ëàïòîïè)"
-#: ../../network/network.pm_.c:392
+#: ../../network/network.pm_.c:393
msgid "Proxy should be http://..."
msgstr "Proxy-ńúđâúđà òđÿáâà äà ć http://..."
-#: ../../network/network.pm_.c:393
+#: ../../network/network.pm_.c:394
msgid "Proxy should be ftp://..."
msgstr "Proxy-ńúđâúđà òđÿáâà äà ć ftp://..."
+#: ../../network/shorewall.pm_.c:24
+msgid "Firewalling configuration detected!"
+msgstr "Îòêđèòà ć íàńòđîéêà íà Çàùèòíà Ńòćíà !"
+
+#: ../../network/shorewall.pm_.c:25
+msgid ""
+"Warning! An existing firewalling configuration has been detected. You may "
+"need some manual fix after installation."
+msgstr ""
+"Âíèìàíèć ! Îòêđèòà ć íàńòđîéêà íà Çàùèòíà Ńòćíà. Ìîæć äà ńć íàëîæè íÿêàêâà "
+"đúśíà ïîïđàâêà ńëćä èíńòàëàöèÿòà."
+
#: ../../network/tools.pm_.c:41
msgid "Internet configuration"
msgstr "Íàńòđîéêà íà Èíòćđíćò"
@@ -7292,15 +7451,15 @@ msgstr "Ïàđîëà íà àêàóíòà"
msgid "United Kingdom"
msgstr ""
-#: ../../partition_table.pm_.c:606
+#: ../../partition_table.pm_.c:602
msgid "mount failed: "
msgstr "ìîíòèđàíćòî íć óńïÿ: "
-#: ../../partition_table.pm_.c:670
+#: ../../partition_table.pm_.c:666
msgid "Extended partition not supported on this platform"
msgstr "Đàçűèđćíè äÿëîâć íć ńć ïîääúđæàò íà òàçè ïëàòôîđìà"
-#: ../../partition_table.pm_.c:688
+#: ../../partition_table.pm_.c:684
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
@@ -7310,21 +7469,21 @@ msgstr ""
"Ćäèíńòâćíèÿò íàśèí ć äà ïđćìćńòèòć ăëàâíèòć ńè äÿëîâć, çà äà èìàòć ïđàçíî "
"ìÿńòî ńëćä extended-äÿëîâćòć"
-#: ../../partition_table.pm_.c:778
+#: ../../partition_table.pm_.c:774
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "Âúçńòàíîâÿâàíćòî îò ôàéëà %s íć óńïÿ: %s"
-#: ../../partition_table.pm_.c:780
+#: ../../partition_table.pm_.c:776
msgid "Bad backup file"
msgstr "Ëîű backup-ôàéë"
-#: ../../partition_table.pm_.c:802
+#: ../../partition_table.pm_.c:798
#, c-format
msgid "Error writing to file %s"
msgstr "Ăđćűêà ïđè çàïèń âúâ ôàéëà %s"
-#: ../../partition_table/raw.pm_.c:187
+#: ../../partition_table/raw.pm_.c:189
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
@@ -7371,152 +7530,157 @@ msgstr "LPD - Ëèíććí Ïđèíòćđćí Äćìîí"
msgid "PDQ - Print, Don't Queue"
msgstr "PDQ - Ïćśàòàé, Áćç Îïàűêà"
-#: ../../printer.pm_.c:35 ../../printer.pm_.c:854
+#: ../../printer.pm_.c:34 ../../printer.pm_.c:1125
msgid "CUPS"
msgstr "CUPS"
-#: ../../printer.pm_.c:36
+#: ../../printer.pm_.c:35
msgid "LPRng"
msgstr "LPRng"
-#: ../../printer.pm_.c:37
+#: ../../printer.pm_.c:36
msgid "LPD"
msgstr "LPD"
-#: ../../printer.pm_.c:38
+#: ../../printer.pm_.c:37
msgid "PDQ"
msgstr "PDQ"
-#: ../../printer.pm_.c:50
+#: ../../printer.pm_.c:49
msgid "Local printer"
msgstr "Ëîêàëćí ïđèíòćđ"
-#: ../../printer.pm_.c:51
+#: ../../printer.pm_.c:50
msgid "Remote printer"
msgstr "Îòäàëćśćí ïđèíòćđ"
-#: ../../printer.pm_.c:52
+#: ../../printer.pm_.c:51
msgid "Printer on remote CUPS server"
msgstr "Ïđèíòćđ íà îòäàëćśćí CUPS ńúđâúđ"
-#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:776
+#: ../../printer.pm_.c:52 ../../printerdrake.pm_.c:883
msgid "Printer on remote lpd server"
msgstr "Ïđèíòćđ íà îòäàëćśćí LPD ńúđâúđ"
-#: ../../printer.pm_.c:54
+#: ../../printer.pm_.c:53
msgid "Network printer (TCP/Socket)"
msgstr "Ìđćæîâ ïđèíòćđ (TCP/Socket)"
-#: ../../printer.pm_.c:55
+#: ../../printer.pm_.c:54
msgid "Printer on SMB/Windows 95/98/NT server"
msgstr "Ïđèíòćđ íà SMB/Windows 95/98/NT ńúđâúđ"
-#: ../../printer.pm_.c:56
+#: ../../printer.pm_.c:55
msgid "Printer on NetWare server"
msgstr "Ïđèíòćđ íà NetWare ńúđâúđ"
-#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:780
+#: ../../printer.pm_.c:56 ../../printerdrake.pm_.c:887
msgid "Enter a printer device URI"
msgstr "Âúâćäćòć URI íà ïćśàòàùî óńòđîéńòâî"
-#: ../../printer.pm_.c:58
+#: ../../printer.pm_.c:57
msgid "Pipe job into a command"
msgstr "Ïđćêàđàé đàáîòàòà ïđćç êîìàíäà"
-#: ../../printer.pm_.c:487 ../../printer.pm_.c:678 ../../printer.pm_.c:1000
-#: ../../printerdrake.pm_.c:2070 ../../printerdrake.pm_.c:3189
+#: ../../printer.pm_.c:324 ../../printer.pm_.c:366 ../../printer.pm_.c:533
+#, fuzzy
+msgid "Unknown Model"
+msgstr "Íćèçâćńòćí ìîäćë"
+
+#: ../../printer.pm_.c:735 ../../printer.pm_.c:926 ../../printer.pm_.c:1318
+#: ../../printerdrake.pm_.c:2260 ../../printerdrake.pm_.c:3414
msgid "Unknown model"
msgstr "Íćèçâćńòćí ìîäćë"
-#: ../../printer.pm_.c:515
+#: ../../printer.pm_.c:763
#, fuzzy
msgid "Local Printers"
msgstr "Ëîêàëćí ïđèíòćđ"
-#: ../../printer.pm_.c:517 ../../printer.pm_.c:855
+#: ../../printer.pm_.c:765 ../../printer.pm_.c:1126
#, fuzzy
msgid "Remote Printers"
msgstr "Îòäàëćśćí ïđèíòćđ"
-#: ../../printer.pm_.c:524 ../../printerdrake.pm_.c:301
+#: ../../printer.pm_.c:772 ../../printerdrake.pm_.c:404
#, c-format
msgid " on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:527 ../../printerdrake.pm_.c:303
+#: ../../printer.pm_.c:775 ../../printerdrake.pm_.c:406
#, c-format
msgid ", USB printer \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:532
+#: ../../printer.pm_.c:780
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:535
+#: ../../printer.pm_.c:783
msgid ", multi-function device on USB"
msgstr ""
-#: ../../printer.pm_.c:537
+#: ../../printer.pm_.c:785
msgid ", multi-function device on HP JetDirect"
msgstr ""
-#: ../../printer.pm_.c:539
+#: ../../printer.pm_.c:787
msgid ", multi-function device"
msgstr ""
-#: ../../printer.pm_.c:542
+#: ../../printer.pm_.c:790
#, fuzzy, c-format
msgid ", printing to %s"
msgstr "Ăđćűêà ïđè çàïèń âúâ ôàéëà %s"
-#: ../../printer.pm_.c:544
+#: ../../printer.pm_.c:792
#, c-format
msgid " on LPD server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:546
+#: ../../printer.pm_.c:794
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ""
-#: ../../printer.pm_.c:550
+#: ../../printer.pm_.c:798
#, c-format
msgid " on SMB/Windows server \"%s\", share \"%s\""
msgstr ""
-#: ../../printer.pm_.c:554
+#: ../../printer.pm_.c:802
#, c-format
msgid " on Novell server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:556
+#: ../../printer.pm_.c:804
#, c-format
msgid ", using command %s"
msgstr ""
-#: ../../printer.pm_.c:675 ../../printerdrake.pm_.c:1540
+#: ../../printer.pm_.c:923 ../../printerdrake.pm_.c:1656
msgid "Raw printer (No driver)"
msgstr ""
-#: ../../printer.pm_.c:824
+#: ../../printer.pm_.c:1095
#, c-format
msgid "(on %s)"
msgstr "(íà %s)"
-#: ../../printer.pm_.c:826
+#: ../../printer.pm_.c:1097
msgid "(on this machine)"
msgstr "(íà òàçè ìàűèíà)"
-#: ../../printer.pm_.c:851
+#: ../../printer.pm_.c:1122
#, fuzzy, c-format
msgid "On CUPS server \"%s\""
msgstr "IP íà CUPS ńúđâúđà"
-#: ../../printer.pm_.c:857 ../../printerdrake.pm_.c:2851
-#: ../../printerdrake.pm_.c:2862 ../../printerdrake.pm_.c:3078
-#: ../../printerdrake.pm_.c:3130 ../../printerdrake.pm_.c:3156
-#: ../../printerdrake.pm_.c:3326 ../../printerdrake.pm_.c:3328
+#: ../../printer.pm_.c:1128 ../../printerdrake.pm_.c:3071
+#: ../../printerdrake.pm_.c:3082 ../../printerdrake.pm_.c:3303
+#: ../../printerdrake.pm_.c:3355 ../../printerdrake.pm_.c:3381
+#: ../../printerdrake.pm_.c:3556 ../../printerdrake.pm_.c:3558
msgid " (Default)"
msgstr " (Ïî ïîäđàçáèđàíć)"
@@ -7544,12 +7708,12 @@ msgstr ""
msgid "Printer auto-detection (Local, TCP/Socket, and SMB printers)"
msgstr ""
-#: ../../printerdrake.pm_.c:84 ../../printerdrake.pm_.c:2914
+#: ../../printerdrake.pm_.c:84 ../../printerdrake.pm_.c:3135
#, fuzzy
msgid "CUPS configuration"
msgstr "Íàńòđîéêà"
-#: ../../printerdrake.pm_.c:85 ../../printerdrake.pm_.c:2915
+#: ../../printerdrake.pm_.c:85 ../../printerdrake.pm_.c:3136
#, fuzzy
msgid "Specify CUPS server"
msgstr "Îòäàëćśćí CUPS ńúđâúđ"
@@ -7599,7 +7763,7 @@ msgstr ""
msgid "The IP address should look like 192.168.1.20"
msgstr "IP àäđćńúò òđÿáâà äà áúäć âúâ ôîđìàò 192.168.1.20"
-#: ../../printerdrake.pm_.c:95 ../../printerdrake.pm_.c:987
+#: ../../printerdrake.pm_.c:95 ../../printerdrake.pm_.c:1094
msgid "The port number should be an integer!"
msgstr "Íîìćđúò íà ïîđòà òđÿáâà äà ć öÿëî śèńëî !"
@@ -7607,7 +7771,7 @@ msgstr "Íîìćđúò íà ïîđòà òđÿáâà äà ć öÿëî śèńëî !"
msgid "CUPS server IP"
msgstr "IP íà CUPS ńúđâúđà"
-#: ../../printerdrake.pm_.c:103 ../../printerdrake.pm_.c:1007
+#: ../../printerdrake.pm_.c:103 ../../printerdrake.pm_.c:1114
msgid "Port"
msgstr "Ïîđò"
@@ -7615,13 +7779,132 @@ msgstr "Ïîđò"
msgid "Automatic CUPS configuration"
msgstr "Àâòîìàòèśíà íàńòđîéêà íà CUPS"
-#: ../../printerdrake.pm_.c:183 ../../printerdrake.pm_.c:192
-#: ../../printerdrake.pm_.c:2897 ../../printerdrake.pm_.c:3017
+#: ../../printerdrake.pm_.c:177 ../../printerdrake.pm_.c:247
+#: ../../printerdrake.pm_.c:1529 ../../printerdrake.pm_.c:1533
+#: ../../printerdrake.pm_.c:1651 ../../printerdrake.pm_.c:2203
+#: ../../printerdrake.pm_.c:2356 ../../printerdrake.pm_.c:2415
+#: ../../printerdrake.pm_.c:2488 ../../printerdrake.pm_.c:2509
+#: ../../printerdrake.pm_.c:2699 ../../printerdrake.pm_.c:2740
+#: ../../printerdrake.pm_.c:2745 ../../printerdrake.pm_.c:2779
+#: ../../printerdrake.pm_.c:2784 ../../printerdrake.pm_.c:2821
+#: ../../printerdrake.pm_.c:2874 ../../printerdrake.pm_.c:2894
+#: ../../printerdrake.pm_.c:2908 ../../printerdrake.pm_.c:2942
+#: ../../printerdrake.pm_.c:2988 ../../printerdrake.pm_.c:3006
+#: ../../printerdrake.pm_.c:3095 ../../printerdrake.pm_.c:3169
+#: ../../printerdrake.pm_.c:3471 ../../printerdrake.pm_.c:3526
+#: ../../printerdrake.pm_.c:3579 ../../standalone/printerdrake_.c:57
+#, fuzzy
+msgid "Printerdrake"
+msgstr "Ïđèíòćđ"
+
+#: ../../printerdrake.pm_.c:178
+#, fuzzy
+msgid "Checking your system..."
+msgstr "Đćńòàđòèđàíć íà ïđèíòćđíàòà ńèńòćìà"
+
+#: ../../printerdrake.pm_.c:186
+msgid ""
+"There are no printers found which are directly connected to your machine"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:198
+#, fuzzy
+msgid ""
+"The following printers\n"
+"\n"
+msgstr "Ńëćäíèòć ïàêćòè ùć áúäàò ïđćìàőíàòè"
+
+#: ../../printerdrake.pm_.c:199
+#, fuzzy
+msgid ""
+"The following printer\n"
+"\n"
+msgstr "Ńëćäíèòć ïàêćòè ùć áúäàò ïđćìàőíàòè"
+
+#: ../../printerdrake.pm_.c:201
+msgid ""
+"\n"
+"and one unknown printer are "
+msgstr ""
+
+#: ../../printerdrake.pm_.c:203
+#, c-format
+msgid ""
+"\n"
+"and %d unknown printers are "
+msgstr ""
+
+#: ../../printerdrake.pm_.c:207
+msgid ""
+"\n"
+"are "
+msgstr ""
+
+#: ../../printerdrake.pm_.c:208
+msgid ""
+"\n"
+"is "
+msgstr ""
+
+#: ../../printerdrake.pm_.c:210
+#, fuzzy
+msgid "directly connected to your system"
+msgstr "Íÿìàòć ìđćæîâ àäàïòćđ!"
+
+#: ../../printerdrake.pm_.c:213
+msgid ""
+"\n"
+"There is one unknown printer directly connected to your system"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:215
+#, c-format
+msgid ""
+"\n"
+"There are %d unknown printers directly connected to your system"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:221
+#, fuzzy
+msgid " (Make sure that all your printers are connected and turned on).\n"
+msgstr "Ìîëÿ, èçáćđćòć ńćđèćí ïîđò êúì êîéòî ńâúđçàí ìîäćìúò âè."
+
+#: ../../printerdrake.pm_.c:235
+msgid ""
+"Do you want to enable printing on the printers mentioned above or on "
+"printers in the local network?\n"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:236
+#, fuzzy
+msgid "Do you want to enable printing on printers in the local network?\n"
+msgstr ""
+"Èńêàòć ëè äà íàńòđîèòć òîçè ïđèíòćđ (\"%s\")\n"
+"êàòî ïđèíòćđ ïî ïîäđàçáèđàíć ?"
+
+#: ../../printerdrake.pm_.c:238
+#, fuzzy
+msgid "Do you want to enable printing on the printers mentioned above?\n"
+msgstr "Èńêàòć ëè äà ńòàđòèđàòć âđúçêàòà ńè ïđè çàđćæäàíć ?"
+
+#: ../../printerdrake.pm_.c:239
+msgid "Are you sure that you want to set up printing on this machine?\n"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:240
+#, c-format
+msgid ""
+"NOTE: Depending on the printer model and the printing system up to %d MB of "
+"additional software will be installed."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:269 ../../printerdrake.pm_.c:278
+#: ../../printerdrake.pm_.c:3117 ../../printerdrake.pm_.c:3242
#, fuzzy
msgid "Add a new printer"
msgstr "Äîáàâè ïđèíòćđ"
-#: ../../printerdrake.pm_.c:184
+#: ../../printerdrake.pm_.c:270
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7634,7 +7917,7 @@ msgid ""
"connection types."
msgstr ""
-#: ../../printerdrake.pm_.c:193
+#: ../../printerdrake.pm_.c:280
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7643,7 +7926,7 @@ msgid ""
"computer, connected directly to the network or to a remote Windows machine.\n"
"\n"
"If you have printer(s) connected to this machine, Please plug it/them in on "
-"this computer and turn it/them on so that they can be auto-detected. Also "
+"this computer and turn it/them on so that it/they can be auto-detected. Also "
"your network printer(s) and you Windows machines must be connected and "
"turned on.\n"
"\n"
@@ -7656,7 +7939,22 @@ msgid ""
"want to set up your printer(s) now."
msgstr ""
-#: ../../printerdrake.pm_.c:202
+#: ../../printerdrake.pm_.c:289 ../../printerdrake.pm_.c:306
+msgid ""
+"\n"
+"Welcome to the Printer Setup Wizard\n"
+"\n"
+"This wizard will help you to install your printer(s) connected to this "
+"computer.\n"
+"\n"
+"If you have printer(s) connected to this machine, Please plug it/them in on "
+"this computer and turn it/them on so that it/they can be auto-detected.\n"
+"\n"
+" Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
+"want to set up your printer(s) now."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:297
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7665,7 +7963,7 @@ msgid ""
"computer or connected directly to the network.\n"
"\n"
"If you have printer(s) connected to this machine, Please plug it/them in on "
-"this computer and turn it/them on so that they can be auto-detected. Also "
+"this computer and turn it/them on so that it/they can be auto-detected. Also "
"your network printer(s) must be connected and turned on.\n"
"\n"
"Note that auto-detecting printers on the network takes longer than the auto-"
@@ -7676,26 +7974,26 @@ msgid ""
"want to set up your printer(s) now."
msgstr ""
-#: ../../printerdrake.pm_.c:213
+#: ../../printerdrake.pm_.c:315
#, fuzzy
msgid "Auto-detect printers connected to this machine"
msgstr "Îòäàëćśćí ïđèíòćđ"
-#: ../../printerdrake.pm_.c:215
+#: ../../printerdrake.pm_.c:318
msgid "Auto-detect printers connected directly to the local network"
msgstr ""
-#: ../../printerdrake.pm_.c:218
+#: ../../printerdrake.pm_.c:321
msgid "Auto-detect printers connected to machines running Microsoft Windows"
msgstr ""
-#: ../../printerdrake.pm_.c:245 ../../printerdrake.pm_.c:459
-#: ../../printerdrake.pm_.c:484
+#: ../../printerdrake.pm_.c:348 ../../printerdrake.pm_.c:562
+#: ../../printerdrake.pm_.c:587
#, fuzzy
msgid "Local Printer"
msgstr "Ëîêàëćí ïđèíòćđ"
-#: ../../printerdrake.pm_.c:246
+#: ../../printerdrake.pm_.c:349
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -7709,50 +8007,50 @@ msgid ""
"Center."
msgstr ""
-#: ../../printerdrake.pm_.c:283 ../../printerdrake.pm_.c:474
-#: ../../printerdrake.pm_.c:683 ../../printerdrake.pm_.c:923
+#: ../../printerdrake.pm_.c:386 ../../printerdrake.pm_.c:577
+#: ../../printerdrake.pm_.c:790 ../../printerdrake.pm_.c:1030
#, fuzzy
msgid "Printer auto-detection"
msgstr "Èçïîëçâàé àâòîìàòèśíî çàńèśàíć"
-#: ../../printerdrake.pm_.c:305
+#: ../../printerdrake.pm_.c:408
#, c-format
msgid ", network printer \"%s\", port %s"
msgstr ""
-#: ../../printerdrake.pm_.c:307
+#: ../../printerdrake.pm_.c:410
#, fuzzy, c-format
msgid ", printer \"%s\" on SMB/Windows server \"%s\""
msgstr "Ïđèíòćđ íà SMB/Windows 95/98/NT ńúđâúđ"
-#: ../../printerdrake.pm_.c:313
+#: ../../printerdrake.pm_.c:416
#, fuzzy, c-format
msgid "Detected %s"
msgstr "çàńćśćíà %s"
-#: ../../printerdrake.pm_.c:317 ../../printerdrake.pm_.c:348
-#: ../../printerdrake.pm_.c:367
+#: ../../printerdrake.pm_.c:420 ../../printerdrake.pm_.c:451
+#: ../../printerdrake.pm_.c:470
#, c-format
msgid "Printer on parallel port \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:319 ../../printerdrake.pm_.c:350
-#: ../../printerdrake.pm_.c:372
+#: ../../printerdrake.pm_.c:422 ../../printerdrake.pm_.c:453
+#: ../../printerdrake.pm_.c:475
#, c-format
msgid "USB printer \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:321
+#: ../../printerdrake.pm_.c:424
#, fuzzy, c-format
msgid "Network printer \"%s\", port %s"
msgstr "Ìđćæîâ ïđèíòćđ (TCP/Socket)"
-#: ../../printerdrake.pm_.c:323
+#: ../../printerdrake.pm_.c:426
#, fuzzy, c-format
msgid "Printer \"%s\" on SMB/Windows server \"%s\""
msgstr "Ïđèíòćđ íà SMB/Windows 95/98/NT ńúđâúđ"
-#: ../../printerdrake.pm_.c:460
+#: ../../printerdrake.pm_.c:563
msgid ""
"No local printer found! To manually install a printer enter a device name/"
"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
@@ -7760,34 +8058,34 @@ msgid ""
"printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:464
+#: ../../printerdrake.pm_.c:567
#, fuzzy
msgid "You must enter a device or file name!"
msgstr "Âúâćäćòć URI íà ïćśàòàùî óńòđîéńòâî"
-#: ../../printerdrake.pm_.c:475
+#: ../../printerdrake.pm_.c:578
#, fuzzy
msgid "No printer found!"
msgstr "Ëîêàëćí ïđèíòćđ"
-#: ../../printerdrake.pm_.c:485
+#: ../../printerdrake.pm_.c:588
#, fuzzy
msgid "Available printers"
msgstr "Ëîêàëćí ïđèíòćđ"
-#: ../../printerdrake.pm_.c:489
+#: ../../printerdrake.pm_.c:592
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:490
+#: ../../printerdrake.pm_.c:593
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up or enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:492
+#: ../../printerdrake.pm_.c:595
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
@@ -7795,7 +8093,7 @@ msgid ""
"configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:493
+#: ../../printerdrake.pm_.c:596
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
@@ -7803,38 +8101,38 @@ msgid ""
"customized printer configuration, turn on \"Manual configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:495
+#: ../../printerdrake.pm_.c:598
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:496
+#: ../../printerdrake.pm_.c:599
#, fuzzy
msgid "Please choose the port where your printer is connected to."
msgstr "Ìîëÿ, èçáćđćòć ńćđèćí ïîđò êúì êîéòî ńâúđçàí ìîäćìúò âè."
-#: ../../printerdrake.pm_.c:498
+#: ../../printerdrake.pm_.c:601
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:503
+#: ../../printerdrake.pm_.c:606
#, fuzzy
msgid "You must choose/enter a printer/device!"
msgstr "Âúâćäćòć URI íà ïćśàòàùî óńòđîéńòâî"
-#: ../../printerdrake.pm_.c:523
+#: ../../printerdrake.pm_.c:626
#, fuzzy
msgid "Manual configuration"
msgstr "Íàńòđîéêà íà öâćòîâć"
-#: ../../printerdrake.pm_.c:577
+#: ../../printerdrake.pm_.c:680
msgid "Remote lpd Printer Options"
msgstr "Îïöèè íà îòäàëćśćí lpd-ïđèíòćđ"
-#: ../../printerdrake.pm_.c:578
+#: ../../printerdrake.pm_.c:681
#, fuzzy
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
@@ -7844,47 +8142,47 @@ msgstr ""
"äà ïđćäîńòàâèòć èìćíàòà íà őîńòà íà ïđèíòćđíèÿ ńúđâúđ è\n"
"èìćòî íà ïđèíòćđà íà òîçè ńúđâúđ."
-#: ../../printerdrake.pm_.c:579
+#: ../../printerdrake.pm_.c:682
msgid "Remote host name"
msgstr "Èìć íà îòäàëćśćí őîńò"
-#: ../../printerdrake.pm_.c:580
+#: ../../printerdrake.pm_.c:683
msgid "Remote printer name"
msgstr "Èìć íà îòäàëćśćí ïđèíòćđ"
-#: ../../printerdrake.pm_.c:583
+#: ../../printerdrake.pm_.c:686
msgid "Remote host name missing!"
msgstr "Ëèïńâà èìć íà èìć íà őîńò !"
-#: ../../printerdrake.pm_.c:587
+#: ../../printerdrake.pm_.c:690
msgid "Remote printer name missing!"
msgstr "Ëèïńâà èìć íà îòäàëćśćí ïđèíòćđ !"
-#: ../../printerdrake.pm_.c:609 ../../printerdrake.pm_.c:1119
+#: ../../printerdrake.pm_.c:712 ../../printerdrake.pm_.c:1225
#, fuzzy, c-format
msgid "Detected model: %s %s"
msgstr "çàńćśćíà %s"
-#: ../../printerdrake.pm_.c:683 ../../printerdrake.pm_.c:923
+#: ../../printerdrake.pm_.c:790 ../../printerdrake.pm_.c:1030
#, fuzzy
msgid "Scanning network..."
msgstr "Ńòàđòèđàíć ìđćæàòà ...."
-#: ../../printerdrake.pm_.c:692 ../../printerdrake.pm_.c:713
+#: ../../printerdrake.pm_.c:799 ../../printerdrake.pm_.c:820
#, c-format
msgid ", printer \"%s\" on server \"%s\""
msgstr ""
-#: ../../printerdrake.pm_.c:695 ../../printerdrake.pm_.c:716
+#: ../../printerdrake.pm_.c:802 ../../printerdrake.pm_.c:823
#, fuzzy, c-format
msgid "Printer \"%s\" on server \"%s\""
msgstr "Ïćśàòàíć íà ïđèíòćđ \"%s\""
-#: ../../printerdrake.pm_.c:736
+#: ../../printerdrake.pm_.c:843
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "Íàńòđîéêè íà SMB (Windows 9x/NT) ïđèíòćđ"
-#: ../../printerdrake.pm_.c:737
+#: ../../printerdrake.pm_.c:844
#, fuzzy
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
@@ -7898,46 +8196,46 @@ msgstr ""
"ïđèíòćđà, äî êîéòî èńêàòć äîńòúï è ïîäőîäÿùî èìćí, ïàđîëà è èíôîđìàöèÿ\n"
"çà đàáîòíàòà ăđóïà."
-#: ../../printerdrake.pm_.c:738
+#: ../../printerdrake.pm_.c:845
msgid ""
" If the desired printer was auto-detected, simply choose it from the list "
"and then add user name, password, and/or workgroup if needed."
msgstr ""
-#: ../../printerdrake.pm_.c:739
+#: ../../printerdrake.pm_.c:846
msgid "SMB server host"
msgstr "Őîńò íà SMB ńúđâúđ"
-#: ../../printerdrake.pm_.c:740
+#: ../../printerdrake.pm_.c:847
msgid "SMB server IP"
msgstr "IP íà SMB ńúđâúđ:"
-#: ../../printerdrake.pm_.c:741
+#: ../../printerdrake.pm_.c:848
msgid "Share name"
msgstr "Îáùî èìć"
-#: ../../printerdrake.pm_.c:744
+#: ../../printerdrake.pm_.c:851
msgid "Workgroup"
msgstr "Đàáîòíà ăđóïà"
-#: ../../printerdrake.pm_.c:746
+#: ../../printerdrake.pm_.c:853
#, fuzzy
msgid "Auto-detected"
msgstr "Èçïîëçâàé àâòîìàòèśíî çàńèśàíć"
-#: ../../printerdrake.pm_.c:757
+#: ../../printerdrake.pm_.c:864
msgid "Either the server name or the server's IP must be given!"
msgstr "Òđÿáâà äà áúäàò çàäàäćíè è èìćòî è IP àäđćńà íà ńúđâúđà !"
-#: ../../printerdrake.pm_.c:761
+#: ../../printerdrake.pm_.c:868
msgid "Samba share name missing!"
msgstr "Ëèïńâà èìć íà SAMBA share !"
-#: ../../printerdrake.pm_.c:767
+#: ../../printerdrake.pm_.c:874
msgid "SECURITY WARNING!"
msgstr ""
-#: ../../printerdrake.pm_.c:768
+#: ../../printerdrake.pm_.c:875
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -7961,7 +8259,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:778
+#: ../../printerdrake.pm_.c:885
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -7970,7 +8268,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:781
+#: ../../printerdrake.pm_.c:888
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
@@ -7978,11 +8276,11 @@ msgid ""
"Do you really want to continue setting up this printer as you are doing now?"
msgstr ""
-#: ../../printerdrake.pm_.c:853
+#: ../../printerdrake.pm_.c:960
msgid "NetWare Printer Options"
msgstr "Îïöèè çà NetWare ïđèíòćđ"
-#: ../../printerdrake.pm_.c:854
+#: ../../printerdrake.pm_.c:961
#, fuzzy
msgid ""
"To print on a NetWare printer, you need to provide the NetWare print server "
@@ -7993,44 +8291,44 @@ msgstr ""
"Çà äà ïćśàòèòć íà NetWare ïđèíòćđ ,òđÿáâà äà çíàćòć èìćî ìó è âúçìîæíî\n"
"àäđćńà íà ńúđâúđà, êàêòî è èìćòî íà îïàűêàòà,ïîòđćáèòćëńêîòî èìć,ïàđîëà."
-#: ../../printerdrake.pm_.c:855
+#: ../../printerdrake.pm_.c:962
msgid "Printer Server"
msgstr "Ńúđâúđ íà ïđèíòćđà"
-#: ../../printerdrake.pm_.c:856
+#: ../../printerdrake.pm_.c:963
msgid "Print Queue Name"
msgstr "Èìć íà ïćśàòíàòà îïàűêàòà"
-#: ../../printerdrake.pm_.c:861
+#: ../../printerdrake.pm_.c:968
msgid "NCP server name missing!"
msgstr "Ëèïńâà èìć íà NCP ńúđâúđ !"
-#: ../../printerdrake.pm_.c:865
+#: ../../printerdrake.pm_.c:972
msgid "NCP queue name missing!"
msgstr "Ëèïńâà èìć íà NCP îïàűêà !"
-#: ../../printerdrake.pm_.c:932 ../../printerdrake.pm_.c:952
+#: ../../printerdrake.pm_.c:1039 ../../printerdrake.pm_.c:1059
#, c-format
msgid ", host \"%s\", port %s"
msgstr ""
-#: ../../printerdrake.pm_.c:935 ../../printerdrake.pm_.c:955
+#: ../../printerdrake.pm_.c:1042 ../../printerdrake.pm_.c:1062
#, c-format
msgid "Host \"%s\", port %s"
msgstr ""
-#: ../../printerdrake.pm_.c:975
+#: ../../printerdrake.pm_.c:1082
#, fuzzy
msgid "TCP/Socket Printer Options"
msgstr "Îïöèè íà Socket ïđèíòćđ"
-#: ../../printerdrake.pm_.c:977
+#: ../../printerdrake.pm_.c:1084
msgid ""
"Choose one of the auto-detected printers from the list or enter the hostname "
"or IP and the optional port number (default is 9100) into the input fields."
msgstr ""
-#: ../../printerdrake.pm_.c:978
+#: ../../printerdrake.pm_.c:1085
#, fuzzy
msgid ""
"To print to a TCP or socket printer, you need to provide the host name or IP "
@@ -8044,21 +8342,21 @@ msgstr ""
"íà äđóăè ńúđâúđè ìîæć äà âàđèđà. Âèæòć đúêîâîńòâîòî íà\n"
"őàđäóćđà ńè."
-#: ../../printerdrake.pm_.c:983
+#: ../../printerdrake.pm_.c:1090
#, fuzzy
msgid "Printer host name or IP missing!"
msgstr "Ëèïńâà èìć íà őîńò íà ïđèíòćđa !"
-#: ../../printerdrake.pm_.c:1005
+#: ../../printerdrake.pm_.c:1112
#, fuzzy
msgid "Printer host name or IP"
msgstr "Èìć íà őîńò íà ïđèíòćđà"
-#: ../../printerdrake.pm_.c:1054 ../../printerdrake.pm_.c:1056
+#: ../../printerdrake.pm_.c:1160 ../../printerdrake.pm_.c:1162
msgid "Printer Device URI"
msgstr "Ïćśàòàùî óńòđîéńòâî URI"
-#: ../../printerdrake.pm_.c:1055
+#: ../../printerdrake.pm_.c:1161
msgid ""
"You can specify directly the URI to access the printer. The URI must fulfill "
"either the CUPS or the Foomatic specifications. Note that not all URI types "
@@ -8068,11 +8366,11 @@ msgstr ""
"èçïúëíè èëè CUPS èëè Foomatic ńïćöèôèêàöèèòć. Îòáćëćæćòć, ść íć âńèśêè "
"òèïîâć URI ńć ïîääđúđæàò îò spooler-èòć."
-#: ../../printerdrake.pm_.c:1070
+#: ../../printerdrake.pm_.c:1176
msgid "A valid URI must be entered!"
msgstr "Òđÿáâà äà áúäć âúâćäćí âàëèäćí URI !"
-#: ../../printerdrake.pm_.c:1402
+#: ../../printerdrake.pm_.c:1515
#, fuzzy
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
@@ -8082,28 +8380,28 @@ msgstr ""
"Ïîëćòàòà Îïèńàíèć è Ìćńòîïîëîæć íć òđÿáâà äà áúäàò\n"
"ïîïúëâàíè. Èìà êîìćíòàđè çà ïîòđćáèòćëèòć."
-#: ../../printerdrake.pm_.c:1403
+#: ../../printerdrake.pm_.c:1516
msgid "Name of printer"
msgstr "Èìć íà ïđèíòćđ"
-#: ../../printerdrake.pm_.c:1405
+#: ../../printerdrake.pm_.c:1518
msgid "Location"
msgstr "Ìćńòîïîëîæćíèć"
-#: ../../printerdrake.pm_.c:1416 ../../printerdrake.pm_.c:1536
+#: ../../printerdrake.pm_.c:1530 ../../printerdrake.pm_.c:1652
msgid "Reading printer database..."
msgstr "Śćòćíć íà áàçàòà äàííè îò ïđèíòćđè ..."
-#: ../../printerdrake.pm_.c:1419
+#: ../../printerdrake.pm_.c:1534
msgid "Preparing printer database..."
msgstr "Ïîäăîòâÿíć íà áàçàòà äàííè îò ïđèíòćđè ..."
-#: ../../printerdrake.pm_.c:1516
+#: ../../printerdrake.pm_.c:1631
#, fuzzy
msgid "Your printer model"
msgstr "Èìć íà îòäàëćśćí ïđèíòćđ"
-#: ../../printerdrake.pm_.c:1517
+#: ../../printerdrake.pm_.c:1632
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -8118,26 +8416,26 @@ msgid ""
"%s"
msgstr ""
-#: ../../printerdrake.pm_.c:1522 ../../printerdrake.pm_.c:1525
+#: ../../printerdrake.pm_.c:1637 ../../printerdrake.pm_.c:1640
#, fuzzy
msgid "The model is correct"
msgstr "Âńèśêî ïđàâèëíî ëè ć ?"
-#: ../../printerdrake.pm_.c:1523 ../../printerdrake.pm_.c:1524
-#: ../../printerdrake.pm_.c:1527
+#: ../../printerdrake.pm_.c:1638 ../../printerdrake.pm_.c:1639
+#: ../../printerdrake.pm_.c:1642
#, fuzzy
msgid "Select model manually"
msgstr "Èìć íà îòäàëćśćí ïđèíòćđ"
-#: ../../printerdrake.pm_.c:1543
+#: ../../printerdrake.pm_.c:1659
msgid "Printer model selection"
msgstr "Èçáîđ ìîäćë íà ïđèíòćđà"
-#: ../../printerdrake.pm_.c:1544
+#: ../../printerdrake.pm_.c:1660
msgid "Which printer model do you have?"
msgstr "Êàêúâ ìîäćë ïđèíòćđ èìàòć ?"
-#: ../../printerdrake.pm_.c:1545
+#: ../../printerdrake.pm_.c:1661
msgid ""
"\n"
"\n"
@@ -8146,17 +8444,17 @@ msgid ""
"standing on a wrong model or on \"Raw printer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1548
+#: ../../printerdrake.pm_.c:1664
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
msgstr ""
-#: ../../printerdrake.pm_.c:1624
+#: ../../printerdrake.pm_.c:1741
msgid "OKI winprinter configuration"
msgstr "Íàńòđîéêè íà OKI Winprinter"
-#: ../../printerdrake.pm_.c:1625
+#: ../../printerdrake.pm_.c:1742
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -8166,11 +8464,11 @@ msgid ""
"not work. Your connection type setting will be ignored by the driver."
msgstr ""
-#: ../../printerdrake.pm_.c:1668 ../../printerdrake.pm_.c:1695
+#: ../../printerdrake.pm_.c:1785 ../../printerdrake.pm_.c:1812
msgid "Lexmark inkjet configuration"
msgstr "Íàńòđîéêà íà Lexmark inkjet"
-#: ../../printerdrake.pm_.c:1669
+#: ../../printerdrake.pm_.c:1786
#, fuzzy
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
@@ -8183,20 +8481,46 @@ msgstr ""
"ïđèíòćđíè ìàűèíè. Ìîëÿ, ńâúđæćòć ïđèíòćđà ńè íà ëîêàëćí ïîđò\n"
"èëè ăî íàńòđîéòć íà ìàűèíàòà, êúì êîÿòî ć ńâúđçàí."
-#: ../../printerdrake.pm_.c:1696
+#: ../../printerdrake.pm_.c:1813
msgid ""
"To be able to print with your Lexmark inkjet and this configuration, you "
"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
-"com/). Go to the US site and click on the \"Drivers\" button. Then choose "
-"your model and afterwards \"Linux\" as operating system. The drivers come as "
-"RPM packages or shell scripts with interactive graphical installation. You "
-"do not need to do this configuration by the graphical frontends. Cancel "
-"directly after the license agreement. Then print printhead alignment pages "
-"with \"lexmarkmaintain\" and adjust the head alignment settings with this "
-"program."
+"com/). Click on the \"Drivers\" link. Then choose your model and afterwards "
+"\"Linux\" as operating system. The drivers come as RPM packages or shell "
+"scripts with interactive graphical installation. You do not need to do this "
+"configuration by the graphical frontends. Cancel directly after the license "
+"agreement. Then print printhead alignment pages with \"lexmarkmaintain\" and "
+"adjust the head alignment settings with this program."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:1816
+msgid "GDI Laser Printer using the Zenographics ZJ-Stream Format"
msgstr ""
-#: ../../printerdrake.pm_.c:1912
+#: ../../printerdrake.pm_.c:1817
+msgid ""
+"Your printer belongs to the group of GDI laser printers (winprinters) sold "
+"by different manufacturers which uses the Zenographics ZJ-stream raster "
+"format for the data sent to the printer. The driver for these printers is "
+"still in a very early development stage and so it will perhaps not always "
+"work properly. Especially it is possible that the printer only works when "
+"you choose the A4 paper size.\n"
+"\n"
+"Some of these printers, as the HP LaserJet 1000, for which this driver was "
+"originally created, need their firmware to be uploaded to them after they "
+"are turned on. In the case of the HP LaserJet 1000 you have to search the "
+"printer's Windows driver CD or your Windows partition for the file "
+"\"sihp1000.img\" and upload the file to the printer with one of the "
+"following commands:\n"
+"\n"
+" lpr -o raw sihp1000.img\n"
+" cat sihp1000.img > /dev/usb/lp0\n"
+"\n"
+"The first command can be given by any normal user, the second must be given "
+"as root. After having done so you can print normally.\n"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:2040
#, fuzzy
msgid ""
"Printer default settings\n"
@@ -8212,22 +8536,22 @@ msgstr ""
"Îòáćëćæćòć, ść ïđè ìíîăî âèńîêî êàśćńòî íà èçőîäà íà\n"
"ïđèíòćđà, òîé ìîæć çíàśèòćëíî äà ńć çàáàâè."
-#: ../../printerdrake.pm_.c:1921
+#: ../../printerdrake.pm_.c:2049
#, c-format
msgid "Option %s must be an integer number!"
msgstr "Íàńòđîéêàòà %s òđÿáâà äà ć öÿëî śèńëî !"
-#: ../../printerdrake.pm_.c:1925
+#: ../../printerdrake.pm_.c:2053
#, c-format
msgid "Option %s must be a number!"
msgstr "Íàńòđîéêàòà %s òđÿáâà äà ć śèńëî !"
-#: ../../printerdrake.pm_.c:1930
+#: ../../printerdrake.pm_.c:2058
#, c-format
msgid "Option %s out of range!"
msgstr "Îïöèÿòà %s ć èçâúí ăđàíèöèòć !"
-#: ../../printerdrake.pm_.c:1969
+#: ../../printerdrake.pm_.c:2097
#, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
@@ -8236,11 +8560,11 @@ msgstr ""
"Èńêàòć ëè äà íàńòđîèòć òîçè ïđèíòćđ (\"%s\")\n"
"êàòî ïđèíòćđ ïî ïîäđàçáèđàíć ?"
-#: ../../printerdrake.pm_.c:1986
+#: ../../printerdrake.pm_.c:2120
msgid "Test pages"
msgstr "Òćńòîâè ńòđàíèöè"
-#: ../../printerdrake.pm_.c:1987
+#: ../../printerdrake.pm_.c:2121
#, fuzzy
msgid ""
"Please select the test pages you want to print.\n"
@@ -8253,40 +8577,40 @@ msgstr ""
"âđćìć äà ńć èçïćśàòà è íà ëàçćđíè ïđèíòćđè ń ìàëêî ïàìćò ìîæć âúîáùć\n"
"äà íć èçëćçć. Â ïîâćśćòî ńëóśàè ć äîńòàòúśíà ńòàíäàđòíà òćńòîâà ńòđàíèöà."
-#: ../../printerdrake.pm_.c:1991
+#: ../../printerdrake.pm_.c:2125
msgid "No test pages"
msgstr "Áćç òćńòîâè ńòđàíèöè"
-#: ../../printerdrake.pm_.c:1992
+#: ../../printerdrake.pm_.c:2126
msgid "Print"
msgstr "Ïćśàò"
-#: ../../printerdrake.pm_.c:1994
+#: ../../printerdrake.pm_.c:2183
msgid "Standard test page"
msgstr "Ńòàíäàđòíà òćńòîâà ńòđàíèöà"
-#: ../../printerdrake.pm_.c:1997
+#: ../../printerdrake.pm_.c:2186
msgid "Alternative test page (Letter)"
msgstr "Àëòćđíàòèâíà òćńòîâà ńòđàíèöà (Ïèńìî)"
-#: ../../printerdrake.pm_.c:2000
+#: ../../printerdrake.pm_.c:2189
msgid "Alternative test page (A4)"
msgstr "Àëòćđíàòèâíà òćńòîâà ńòđàíèöà (À4)"
-#: ../../printerdrake.pm_.c:2002
+#: ../../printerdrake.pm_.c:2191
msgid "Photo test page"
msgstr "Òćńòîâà ńòđàíèöà ńúń ńíèìêà"
-#: ../../printerdrake.pm_.c:2006
+#: ../../printerdrake.pm_.c:2195
#, fuzzy
msgid "Do not print any test page"
msgstr "Îòïćśàòâàíć íà òćńòîâè ńòđàíèöè"
-#: ../../printerdrake.pm_.c:2014 ../../printerdrake.pm_.c:2166
+#: ../../printerdrake.pm_.c:2204 ../../printerdrake.pm_.c:2357
msgid "Printing test page(s)..."
msgstr "Îòïćśàòâàíć íà òćńòîâ(àòà/èòć) ńòđàíèö(à/è) ..."
-#: ../../printerdrake.pm_.c:2039
+#: ../../printerdrake.pm_.c:2229
#, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -8301,7 +8625,7 @@ msgstr ""
"%s\n"
"\n"
-#: ../../printerdrake.pm_.c:2043
+#: ../../printerdrake.pm_.c:2233
msgid ""
"Test page(s) have been sent to the printer.\n"
"It may take some time before the printer starts.\n"
@@ -8309,15 +8633,15 @@ msgstr ""
"Òćńòîâèòć ńòđàíèöè ńà èçïđàòćíè êúì ïđèíòćđíà.\n"
"Ìîæć äà îòíćìć ìàëêî âđćìć ïđćäè ïđèíòćđà äà çàïîśíć.\n"
-#: ../../printerdrake.pm_.c:2050
+#: ../../printerdrake.pm_.c:2240
msgid "Did it work properly?"
msgstr "Ïđîđàáîòè ëè êàêòî òđÿáâà ?"
-#: ../../printerdrake.pm_.c:2072 ../../printerdrake.pm_.c:3191
+#: ../../printerdrake.pm_.c:2262 ../../printerdrake.pm_.c:3416
msgid "Raw printer"
msgstr ""
-#: ../../printerdrake.pm_.c:2098
+#: ../../printerdrake.pm_.c:2288
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -8330,7 +8654,7 @@ msgstr ""
"<file>\" èëè \"kprinter <file>\". Ăđàôèśíèòć èíńòđóìćíòè âè ïîçâîëÿâàò äà "
"èçáèđàòć ïđèíòćđà è äà ïîïđàâÿòć ëćńíî íàńòđîéêèòć íà îïöèèòć.\n"
-#: ../../printerdrake.pm_.c:2100
+#: ../../printerdrake.pm_.c:2290
msgid ""
"These commands you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications, but here do not supply the file name "
@@ -8340,8 +8664,8 @@ msgstr ""
"ïćśàòíèòć äèàëîçè â ìíîƒî ïđèëîæćíèÿ. Íî òąê íć ïîńòàâÿéòć èìćòî íà ôàéëà, "
"çàùîòî òî ńć ïîäàâà îò ïđèëîæćíèćòî.\n"
-#: ../../printerdrake.pm_.c:2103 ../../printerdrake.pm_.c:2120
-#: ../../printerdrake.pm_.c:2130
+#: ../../printerdrake.pm_.c:2293 ../../printerdrake.pm_.c:2310
+#: ../../printerdrake.pm_.c:2320
#, c-format
msgid ""
"\n"
@@ -8354,7 +8678,7 @@ msgstr ""
"çà îïđćäćëćíà đàáîòà íà ïđèíòćđà. Ïđîńòî äîáàâćòć öćëàíèòć íàńòđîéêè êúì "
"êîìàíäíèÿ đćä, íàïđ. \"%s <file>\". "
-#: ../../printerdrake.pm_.c:2106 ../../printerdrake.pm_.c:2146
+#: ../../printerdrake.pm_.c:2296 ../../printerdrake.pm_.c:2336
#, fuzzy, c-format
msgid ""
"To know about the options available for the current printer read either the "
@@ -8364,13 +8688,13 @@ msgstr ""
"Çà äà âèäèòć ńïèńúê íà äîńòúïíèòć îïöèè çà òćêóùèÿ ïđèíòćđ, èëè ïđîśćòćòć "
"ńïèńúêà ïîêàçàí ïî-äîëó èëè öúêíćòć íà áóòîíà \"Ńïèńúê ń îïöèè çà ïćśàò\".\n"
-#: ../../printerdrake.pm_.c:2110
+#: ../../printerdrake.pm_.c:2300
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2115 ../../printerdrake.pm_.c:2125
+#: ../../printerdrake.pm_.c:2305 ../../printerdrake.pm_.c:2315
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
@@ -8379,8 +8703,8 @@ msgstr ""
"Çà äà èçïćśàòàòć ôàéë îò êîìàíäíèÿ đćä (òćđìèíàëćí ïđîçîđćö) èçïîëçâàéòć "
"êîìàíäàòà \"%s <file>\".\n"
-#: ../../printerdrake.pm_.c:2117 ../../printerdrake.pm_.c:2127
-#: ../../printerdrake.pm_.c:2137
+#: ../../printerdrake.pm_.c:2307 ../../printerdrake.pm_.c:2317
+#: ../../printerdrake.pm_.c:2327
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
@@ -8390,7 +8714,7 @@ msgstr ""
"ïćśàòíèòć äèàëîçè â ìíîăî ïđèëîæćíèÿ. Íî òóê íć ïîńòàâÿéòć èìćòî íà ôàéëà, "
"çàùîòî òî ńć ïîäàâà îò ïđèëîæćíèćòî.\n"
-#: ../../printerdrake.pm_.c:2122 ../../printerdrake.pm_.c:2132
+#: ../../printerdrake.pm_.c:2312 ../../printerdrake.pm_.c:2322
#, fuzzy
msgid ""
"To get a list of the options available for the current printer click on the "
@@ -8400,7 +8724,7 @@ msgstr ""
"\"Ńïèńúê ń îïöèè çà ïćśàò\".\n"
"\n"
-#: ../../printerdrake.pm_.c:2135
+#: ../../printerdrake.pm_.c:2325
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
@@ -8409,7 +8733,7 @@ msgstr ""
"Çà äà îòïćśàòàòć ôàéë îò êîìàíäíèÿ đćä (òćđìèíàëćí ïđîçîđćö), èçïîëçâàéòć "
"êîìàíäàòà \"%s <file>\" èëè \"%s <file>\".\n"
-#: ../../printerdrake.pm_.c:2139
+#: ../../printerdrake.pm_.c:2329
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -8419,7 +8743,7 @@ msgid ""
"jams.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2143
+#: ../../printerdrake.pm_.c:2333
#, c-format
msgid ""
"\n"
@@ -8432,40 +8756,40 @@ msgstr ""
"íàńòđîéêè çà îïđćäćëćíà đàáîòà íà ïđèíòćđà. Ïđîńòî äîáàâćòć èńêàíèòć "
"íàńòđîéêè êúì êîìàíäíèÿ đćä, íàïđ. \"%s <file>\".\n"
-#: ../../printerdrake.pm_.c:2153
+#: ../../printerdrake.pm_.c:2343
#, fuzzy, c-format
msgid "Printing/Scanning/Photo Cards on \"%s\""
msgstr "Ïćśàòàíć íà ïđèíòćđ \"%s\""
-#: ../../printerdrake.pm_.c:2154
+#: ../../printerdrake.pm_.c:2344
#, fuzzy, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "Ïćśàòàíć íà ïđèíòćđ \"%s\""
-#: ../../printerdrake.pm_.c:2156
+#: ../../printerdrake.pm_.c:2346
#, fuzzy, c-format
msgid "Printing/Photo Card Access on \"%s\""
msgstr "Ïćśàòàíć íà ïđèíòćđ \"%s\""
-#: ../../printerdrake.pm_.c:2157
+#: ../../printerdrake.pm_.c:2347
#, c-format
msgid "Printing on the printer \"%s\""
msgstr "Ïćśàòàíć íà ïđèíòćđ \"%s\""
-#: ../../printerdrake.pm_.c:2160 ../../printerdrake.pm_.c:2163
-#: ../../printerdrake.pm_.c:2164 ../../printerdrake.pm_.c:2165
-#: ../../printerdrake.pm_.c:3175 ../../standalone/drakTermServ_.c:248
-#: ../../standalone/drakbackup_.c:1485 ../../standalone/drakbackup_.c:3530
-#: ../../standalone/drakbug_.c:129 ../../standalone/drakfont_.c:705
+#: ../../printerdrake.pm_.c:2350 ../../printerdrake.pm_.c:2353
+#: ../../printerdrake.pm_.c:2354 ../../printerdrake.pm_.c:2355
+#: ../../printerdrake.pm_.c:3400 ../../standalone/drakTermServ_.c:248
+#: ../../standalone/drakbackup_.c:1560 ../../standalone/drakbackup_.c:4208
+#: ../../standalone/drakbug_.c:130 ../../standalone/drakfont_.c:705
#: ../../standalone/drakfont_.c:1014
msgid "Close"
msgstr "Çàòâîđè"
-#: ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2353
msgid "Print option list"
msgstr "Ńïèńúê ń ïđèíòćđíè îïöèè"
-#: ../../printerdrake.pm_.c:2182
+#: ../../printerdrake.pm_.c:2373
#, c-format
msgid ""
"Your multi-function device was configured automatically to be able to scan. "
@@ -8479,7 +8803,7 @@ msgid ""
"Do not use \"scannerdrake\" for this device!"
msgstr ""
-#: ../../printerdrake.pm_.c:2202
+#: ../../printerdrake.pm_.c:2394
msgid ""
"Your printer was configured automatically to give you access to the photo "
"card drives from your PC. Now you can access your photo cards using the "
@@ -8492,17 +8816,17 @@ msgid ""
"of the file lists."
msgstr ""
-#: ../../printerdrake.pm_.c:2223 ../../printerdrake.pm_.c:2673
-#: ../../printerdrake.pm_.c:2945
+#: ../../printerdrake.pm_.c:2416 ../../printerdrake.pm_.c:2875
+#: ../../printerdrake.pm_.c:3170
msgid "Reading printer data..."
msgstr "Śćòćíć íà äàííè îò ïđèíòćđà ..."
-#: ../../printerdrake.pm_.c:2243 ../../printerdrake.pm_.c:2271
-#: ../../printerdrake.pm_.c:2306
+#: ../../printerdrake.pm_.c:2436 ../../printerdrake.pm_.c:2464
+#: ../../printerdrake.pm_.c:2499
msgid "Transfer printer configuration"
msgstr "Ïđćíîń íà íàńòđîéêà íà ïđèíòćđ"
-#: ../../printerdrake.pm_.c:2244
+#: ../../printerdrake.pm_.c:2437
#, fuzzy, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -8518,7 +8842,7 @@ msgstr ""
"ïđćőâúđëÿò.\n"
"Íć âńèśêè îïàűêè ìîăàò äà áúäàò ïđćőâúđëćíè ïî ńëćäíèòć ïđèśèíè:\n"
-#: ../../printerdrake.pm_.c:2247
+#: ../../printerdrake.pm_.c:2440
#, fuzzy
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
@@ -8527,7 +8851,7 @@ msgstr ""
"CUPS íć ïîääúđæà ïđèíòćđè íà Novell ńúđâúđè èëè ïđèíòćđè\n"
"èçïđàùàùè äàííè âúâ ńâîáîäíî-èçăđàäćíà êîìàíäà.\n"
-#: ../../printerdrake.pm_.c:2249
+#: ../../printerdrake.pm_.c:2442
#, fuzzy
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
@@ -8536,11 +8860,11 @@ msgstr ""
"PDQ ïîääúđæà ńàìî ëîêàëíè ïđèíòćđè, îòäàëćśćíè LPD ïđèíòćđè\n"
"è Socket/TCP ïđèíòćđè.\n"
-#: ../../printerdrake.pm_.c:2251
+#: ../../printerdrake.pm_.c:2444
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr "LPD è LPRng íć ïîääúđæà IPP ïđèíòćđè.\n"
-#: ../../printerdrake.pm_.c:2253
+#: ../../printerdrake.pm_.c:2446
#, fuzzy
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
@@ -8549,7 +8873,7 @@ msgstr ""
"Êàòî äîïúëíćíèć, îïàűêèòć íć ńúçäàäćíè ń òàçè ïđîăđàìà\n"
"èëè \"foomatic-configure\" íć ìîăàò äà áúäàò ïđćőâúđëÿíè."
-#: ../../printerdrake.pm_.c:2254
+#: ../../printerdrake.pm_.c:2447
#, fuzzy
msgid ""
"\n"
@@ -8561,7 +8885,7 @@ msgstr ""
"îò ïđîèçâîäèòćëèòć èì èëè ń îđèăèíàëíè CUPS äđàéâćđè íć\n"
"ìîăàò äà áúäàò ïđćőâúđëÿíè."
-#: ../../printerdrake.pm_.c:2255
+#: ../../printerdrake.pm_.c:2448
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
@@ -8571,15 +8895,15 @@ msgstr ""
"Îòáćëćæćòć ïđèíòćđèòć, êîèòî èńêàòć äà ïđćőâúđëèòć è öúêíćòć\n"
"\"Ïđćőâúđëè\"."
-#: ../../printerdrake.pm_.c:2258
+#: ../../printerdrake.pm_.c:2451
msgid "Do not transfer printers"
msgstr "Íć ïđćőâúđëÿé ïđèíòćđè"
-#: ../../printerdrake.pm_.c:2259 ../../printerdrake.pm_.c:2276
+#: ../../printerdrake.pm_.c:2452 ../../printerdrake.pm_.c:2469
msgid "Transfer"
msgstr "Ïđćőâúđëè"
-#: ../../printerdrake.pm_.c:2272
+#: ../../printerdrake.pm_.c:2465
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -8590,11 +8914,11 @@ msgstr ""
"Öúêíćòć \"Ïđćőâúđëè\", çà äà ăî ïđćçàïèűćòć.\n"
"Ìîæćòć ńúùî òàêà äà íàïèűćòć íîâî èìć èëè äà ïđîïóńíòć ïđèíòćđà."
-#: ../../printerdrake.pm_.c:2280
+#: ../../printerdrake.pm_.c:2473
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr "Èìćòî íà ïđèíòćđà òđÿáâà äà ńúäúđæà ńàìî áóêâè, śèńëà è ïîäśćđòàâêà"
-#: ../../printerdrake.pm_.c:2285
+#: ../../printerdrake.pm_.c:2478
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
@@ -8603,16 +8927,16 @@ msgstr ""
"Ïđèíòćđúò \"%s\" âćść ńúùćńòâóâà,\n"
"íàèńòèíà ëè èńêàòć äà ïđćçàïèűćòć íàńòđîéêàòà ?"
-#: ../../printerdrake.pm_.c:2293
+#: ../../printerdrake.pm_.c:2486
msgid "New printer name"
msgstr "Íîâî èìć íà ïđèíòćđ"
-#: ../../printerdrake.pm_.c:2296
+#: ../../printerdrake.pm_.c:2489
#, c-format
msgid "Transferring %s..."
msgstr "Ïđćőâúđëÿíć íà %s ..."
-#: ../../printerdrake.pm_.c:2307
+#: ../../printerdrake.pm_.c:2500
#, fuzzy, c-format
msgid ""
"You have transferred your former default printer (\"%s\"), Should it be also "
@@ -8622,29 +8946,29 @@ msgstr ""
"Èńêàòć ëè äà ăî îńòàâèòć ïî ïîäđàçáèđàíć â íîâàòà\n"
"ïđèíòćđíà ńèńòćìà %s ?"
-#: ../../printerdrake.pm_.c:2316
+#: ../../printerdrake.pm_.c:2510
msgid "Refreshing printer data..."
msgstr "Îïđćńíÿâàíć íà äàííèòć îò ïđèíòćđà ..."
-#: ../../printerdrake.pm_.c:2324 ../../printerdrake.pm_.c:2395
-#: ../../printerdrake.pm_.c:2407
+#: ../../printerdrake.pm_.c:2518 ../../printerdrake.pm_.c:2590
+#: ../../printerdrake.pm_.c:2602
msgid "Configuration of a remote printer"
msgstr "Íàńòđîéêà íà îòäàëćśćí ïđèíòćđ"
-#: ../../printerdrake.pm_.c:2325
+#: ../../printerdrake.pm_.c:2519
msgid "Starting network..."
msgstr "Ńòàđòèđàíć ìđćæàòà ...."
-#: ../../printerdrake.pm_.c:2359 ../../printerdrake.pm_.c:2363
-#: ../../printerdrake.pm_.c:2365
+#: ../../printerdrake.pm_.c:2554 ../../printerdrake.pm_.c:2558
+#: ../../printerdrake.pm_.c:2560
msgid "Configure the network now"
msgstr "Â ìîìćíòà íàńòđîéâàì ìđćæàòà"
-#: ../../printerdrake.pm_.c:2360
+#: ../../printerdrake.pm_.c:2555
msgid "Network functionality not configured"
msgstr "Ôóíêöèîíàëíîńòòà íà ìđćæàòà íć ć íàńòđîćíà"
-#: ../../printerdrake.pm_.c:2361
+#: ../../printerdrake.pm_.c:2556
msgid ""
"You are going to configure a remote printer. This needs working network "
"access, but your network is not configured yet. If you go on without network "
@@ -8652,11 +8976,11 @@ msgid ""
"configuring now. How do you want to proceed?"
msgstr ""
-#: ../../printerdrake.pm_.c:2364
+#: ../../printerdrake.pm_.c:2559
msgid "Go on without configuring the network"
msgstr "Ïđîäúëæè áćç íàńòîéêà íà ìđćæàòà"
-#: ../../printerdrake.pm_.c:2397
+#: ../../printerdrake.pm_.c:2592
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -8666,7 +8990,7 @@ msgid ""
"\"Printer\""
msgstr ""
-#: ../../printerdrake.pm_.c:2398
+#: ../../printerdrake.pm_.c:2593
#, fuzzy
msgid ""
"The network access was not running and could not be started. Please check "
@@ -8678,24 +9002,24 @@ msgstr ""
"ńè. Òîăàâà îïèòàéòć äà íàńòđîèòć îòäàëćśćíèÿ ïđèíòćđ\n"
"îòíîâî."
-#: ../../printerdrake.pm_.c:2408
+#: ../../printerdrake.pm_.c:2603
msgid "Restarting printing system..."
msgstr "Đćńòàđòèđàíć íà ïđèíòćđíàòà ńèńòćìà"
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2641
msgid "high"
msgstr "âèńîêî"
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2641
msgid "paranoid"
msgstr "ïàđàíîèśíî"
-#: ../../printerdrake.pm_.c:2447
+#: ../../printerdrake.pm_.c:2642
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr "Èíńòàëèđàíć íà ïđèíòćđíàòà ńèńòćìà â %s íèâî íà ńèăóđíîńò"
-#: ../../printerdrake.pm_.c:2448
+#: ../../printerdrake.pm_.c:2643
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -8710,11 +9034,11 @@ msgid ""
"Do you really want to configure printing on this machine?"
msgstr ""
-#: ../../printerdrake.pm_.c:2480
+#: ../../printerdrake.pm_.c:2675
msgid "Starting the printing system at boot time"
msgstr "Ńòàđòèđàíć íà ïđèíòćđíàòà ńèńòćìà ïđè ńòàđòèđàíć"
-#: ../../printerdrake.pm_.c:2481
+#: ../../printerdrake.pm_.c:2676
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -8728,79 +9052,75 @@ msgid ""
"again?"
msgstr ""
-#: ../../printerdrake.pm_.c:2504 ../../printerdrake.pm_.c:2544
-#: ../../printerdrake.pm_.c:2581 ../../printerdrake.pm_.c:2621
-#: ../../printerdrake.pm_.c:2733
+#: ../../printerdrake.pm_.c:2700 ../../printerdrake.pm_.c:2741
+#: ../../printerdrake.pm_.c:2780 ../../printerdrake.pm_.c:2822
+#: ../../printerdrake.pm_.c:2943
msgid "Checking installed software..."
msgstr "Ïđîâćđêà íà èíńòàëèđàíèÿ ńîôòóćđ..."
-#: ../../printerdrake.pm_.c:2548
+#: ../../printerdrake.pm_.c:2746
msgid "Removing LPRng..."
msgstr "Èçòđèâàíć íà LPRng..."
-#: ../../printerdrake.pm_.c:2585
+#: ../../printerdrake.pm_.c:2785
msgid "Removing LPD..."
msgstr "Èçòđèâàíć íà LPD..."
-#: ../../printerdrake.pm_.c:2657
+#: ../../printerdrake.pm_.c:2858
msgid "Select Printer Spooler"
msgstr "Èçáćđćòć ïđèíòćđćí spooler"
-#: ../../printerdrake.pm_.c:2658
+#: ../../printerdrake.pm_.c:2859
msgid "Which printing system (spooler) do you want to use?"
msgstr "Êîÿ ïđèíòćđíà ńèńòćìà (spooler) èçêàòć äà èçïîëçâàòć ?"
-#: ../../printerdrake.pm_.c:2691
+#: ../../printerdrake.pm_.c:2895
#, fuzzy, c-format
msgid "Configuring printer \"%s\"..."
msgstr "Íàńòđîéêà íà ïđèíòćđà \"%s\" ..."
-#: ../../printerdrake.pm_.c:2704
+#: ../../printerdrake.pm_.c:2909
#, fuzzy
msgid "Installing Foomatic..."
msgstr "Èíńòàëèđàíć íà ïàêćòè ..."
-#: ../../printerdrake.pm_.c:2769 ../../printerdrake.pm_.c:2808
-#: ../../printerdrake.pm_.c:3192 ../../printerdrake.pm_.c:3262
+#: ../../printerdrake.pm_.c:2979 ../../printerdrake.pm_.c:3020
+#: ../../printerdrake.pm_.c:3417 ../../printerdrake.pm_.c:3490
msgid "Printer options"
msgstr "Îïöèè íà ïđèíòćđà"
-#: ../../printerdrake.pm_.c:2778
-msgid "Preparing PrinterDrake..."
+#: ../../printerdrake.pm_.c:2989
+#, fuzzy
+msgid "Preparing Printerdrake..."
msgstr "Ïîäăîòâÿíć íà PinterDrake ..."
-#: ../../printerdrake.pm_.c:2795 ../../printerdrake.pm_.c:3349
+#: ../../printerdrake.pm_.c:3007 ../../printerdrake.pm_.c:3580
#, fuzzy
msgid "Configuring applications..."
msgstr "Íàńòđîéêà íà ïđèíòćđà \"%s\" ..."
-#: ../../printerdrake.pm_.c:2815
+#: ../../printerdrake.pm_.c:3027
msgid "Would you like to configure printing?"
msgstr "Èńêàòć ëè äà íàńòđîèòć ïćśàòà ?"
-#: ../../printerdrake.pm_.c:2827
+#: ../../printerdrake.pm_.c:3039
msgid "Printing system: "
msgstr "Ïćśàòíà ńèńòćìà: "
-#: ../../printerdrake.pm_.c:2875
-#, fuzzy
-msgid "Printerdrake"
-msgstr "Ïđèíòćđ"
-
-#: ../../printerdrake.pm_.c:2879
+#: ../../printerdrake.pm_.c:3099
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; to view information about it; "
"or to make a printer on a remote CUPS server available for Star Office/"
-"OpenOffice.org."
+"OpenOffice.org/GIMP."
msgstr ""
"Ńëćäíèòć ïđèíòćđè ńà íàńòđîćíè.\n"
"Öúêíćòć íà ćäèí îò òÿő, çà äà ăî đćäàêòèđàòć\n"
"èëè çà äà ïîëóśèòć èíôîđìàöèÿ çà íćăî, èëè\n"
"âúđőó \"Äîáàâè Ïđèíòćđ\", çà äà äîáàâèòć íîâ ïđèíòćđ."
-#: ../../printerdrake.pm_.c:2880
+#: ../../printerdrake.pm_.c:3100
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
@@ -8812,29 +9132,29 @@ msgstr ""
"èëè çà äà ïîëóśèòć èíôîđìàöèÿ çà íćăî, èëè\n"
"âúđőó \"Äîáàâè Ïđèíòćđ\", çà äà äîáàâèòć íîâ ïđèíòćđ."
-#: ../../printerdrake.pm_.c:2906
+#: ../../printerdrake.pm_.c:3127
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr ""
-#: ../../printerdrake.pm_.c:2924
+#: ../../printerdrake.pm_.c:3145
#, fuzzy
msgid "Change the printing system"
msgstr "Íàńòîéêà íà ìđćæàòà"
-#: ../../printerdrake.pm_.c:2929 ../../standalone/drakconnect_.c:277
+#: ../../printerdrake.pm_.c:3150 ../../standalone/drakconnect_.c:277
msgid "Normal Mode"
msgstr "Íîđìàëćí đćæèì"
-#: ../../printerdrake.pm_.c:3085 ../../printerdrake.pm_.c:3135
-#: ../../printerdrake.pm_.c:3343
+#: ../../printerdrake.pm_.c:3310 ../../printerdrake.pm_.c:3360
+#: ../../printerdrake.pm_.c:3573
msgid "Do you want to configure another printer?"
msgstr "Èńêàòć ëè äà íàńòđîèòć äđóă ïđèíòćđ ?"
-#: ../../printerdrake.pm_.c:3170
+#: ../../printerdrake.pm_.c:3395
msgid "Modify printer configuration"
msgstr "Ïîïđàâè íàńòđîéêèòć íà ïđèíòćđ"
-#: ../../printerdrake.pm_.c:3172
+#: ../../printerdrake.pm_.c:3397
#, fuzzy, c-format
msgid ""
"Printer %s\n"
@@ -8843,101 +9163,103 @@ msgstr ""
"Ïđèíòćđ %s: %s %s\n"
"Êàêâî èńêàòć äà ïîïđàâèòć ïî òîçè ïđèíòćđ ?"
-#: ../../printerdrake.pm_.c:3176
+#: ../../printerdrake.pm_.c:3401
msgid "Do it!"
msgstr "Äàâàé !"
-#: ../../printerdrake.pm_.c:3181 ../../printerdrake.pm_.c:3236
+#: ../../printerdrake.pm_.c:3406 ../../printerdrake.pm_.c:3461
msgid "Printer connection type"
msgstr "Òèï íà âđúçêàòà êúì ïđèíòćđà"
-#: ../../printerdrake.pm_.c:3182 ../../printerdrake.pm_.c:3240
+#: ../../printerdrake.pm_.c:3407 ../../printerdrake.pm_.c:3465
msgid "Printer name, description, location"
msgstr "Èìć íà ïđèíòćđà, îïèńàíèć, ìćńòîïîëîæćíèć"
-#: ../../printerdrake.pm_.c:3184 ../../printerdrake.pm_.c:3255
+#: ../../printerdrake.pm_.c:3409 ../../printerdrake.pm_.c:3483
msgid "Printer manufacturer, model, driver"
msgstr "Ïđîèçâîäèòćë íà ïđèíòćđà, ìîäćë, äđàéâćđ"
-#: ../../printerdrake.pm_.c:3185 ../../printerdrake.pm_.c:3256
+#: ../../printerdrake.pm_.c:3410 ../../printerdrake.pm_.c:3484
msgid "Printer manufacturer, model"
msgstr "Ïđîèçâîäèòćë íà ïđèíòćđà, ìîäćë"
-#: ../../printerdrake.pm_.c:3194 ../../printerdrake.pm_.c:3266
+#: ../../printerdrake.pm_.c:3419 ../../printerdrake.pm_.c:3494
msgid "Set this printer as the default"
msgstr "Îïđćäćëè òîçè ïđèíòćđ çà ïîëçâàíć ïî ïîäđàçáèđàíć"
-#: ../../printerdrake.pm_.c:3196 ../../printerdrake.pm_.c:3271
-msgid "Add this printer to Star Office/OpenOffice.org"
+#: ../../printerdrake.pm_.c:3421 ../../printerdrake.pm_.c:3499
+msgid "Add this printer to Star Office/OpenOffice.org/GIMP"
msgstr ""
-#: ../../printerdrake.pm_.c:3197 ../../printerdrake.pm_.c:3280
-msgid "Remove this printer from Star Office/OpenOffice.org"
+#: ../../printerdrake.pm_.c:3422 ../../printerdrake.pm_.c:3508
+msgid "Remove this printer from Star Office/OpenOffice.org/GIMP"
msgstr ""
-#: ../../printerdrake.pm_.c:3198 ../../printerdrake.pm_.c:3289
+#: ../../printerdrake.pm_.c:3423 ../../printerdrake.pm_.c:3517
msgid "Print test pages"
msgstr "Îòïćśàòâàíć íà òćńòîâè ńòđàíèöè"
-#: ../../printerdrake.pm_.c:3199 ../../printerdrake.pm_.c:3291
+#: ../../printerdrake.pm_.c:3424 ../../printerdrake.pm_.c:3519
#, fuzzy
msgid "Know how to use this printer"
msgstr "Èńêàòć ëè äà íàńòđîèòć äđóă ïđèíòćđ ?"
-#: ../../printerdrake.pm_.c:3201 ../../printerdrake.pm_.c:3293
+#: ../../printerdrake.pm_.c:3426 ../../printerdrake.pm_.c:3521
msgid "Remove printer"
msgstr "Ïđćìàőâàíć íà ïđèíòćđà"
-#: ../../printerdrake.pm_.c:3245
+#: ../../printerdrake.pm_.c:3472
#, fuzzy, c-format
msgid "Removing old printer \"%s\"..."
msgstr "Èçòđèâàíć íà ńòàđ ïđèíòćđ \"%s\" ..."
-#: ../../printerdrake.pm_.c:3269
+#: ../../printerdrake.pm_.c:3497
msgid "Default printer"
msgstr "Ïđèíòćđ ïî ïîäđàçáèđàíć"
-#: ../../printerdrake.pm_.c:3270
+#: ../../printerdrake.pm_.c:3498
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr "Ïđèíòćđúò \"%s\" âćść ć îïđćäćëćí çà ïîëçâàíć ïî ïîäđàçáèđàíć."
-#: ../../printerdrake.pm_.c:3274 ../../printerdrake.pm_.c:3277
-msgid "Adding printer to Star Office/OpenOffice.org"
+#: ../../printerdrake.pm_.c:3502 ../../printerdrake.pm_.c:3505
+msgid "Adding printer to Star Office/OpenOffice.org/GIMP"
msgstr ""
-#: ../../printerdrake.pm_.c:3275
+#: ../../printerdrake.pm_.c:3503
#, c-format
msgid ""
-"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
+"The printer \"%s\" was successfully added to Star Office/OpenOffice.org/GIMP."
msgstr ""
-#: ../../printerdrake.pm_.c:3278
+#: ../../printerdrake.pm_.c:3506
#, c-format
-msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
+msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org/GIMP."
msgstr ""
-#: ../../printerdrake.pm_.c:3283 ../../printerdrake.pm_.c:3286
-msgid "Removing printer from Star Office/OpenOffice.org"
+#: ../../printerdrake.pm_.c:3511 ../../printerdrake.pm_.c:3514
+msgid "Removing printer from Star Office/OpenOffice.org/GIMP"
msgstr ""
-#: ../../printerdrake.pm_.c:3284
+#: ../../printerdrake.pm_.c:3512
#, c-format
msgid ""
-"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
+"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org/"
+"GIMP."
msgstr ""
-#: ../../printerdrake.pm_.c:3287
+#: ../../printerdrake.pm_.c:3515
#, c-format
-msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
+msgid ""
+"Failed to remove the printer \"%s\" from Star Office/OpenOffice.org/GIMP."
msgstr ""
-#: ../../printerdrake.pm_.c:3295
+#: ../../printerdrake.pm_.c:3523
#, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr "Íàèńòèíà ëè èńêàòć äà ïđćìàőíćòć ïđèíòćđà \"%s\" ?"
-#: ../../printerdrake.pm_.c:3297
+#: ../../printerdrake.pm_.c:3527
#, fuzzy, c-format
msgid "Removing printer \"%s\"..."
msgstr "Èçòđèâàíć íà ïđèíòćđà \"%s\" ..."
@@ -9349,7 +9671,7 @@ msgstr "Èíòćđíćò"
msgid "File sharing"
msgstr "Ïîäćëÿíć íà ôàéëîâć"
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1669
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1744
msgid "System"
msgstr "Ńèńòćìà"
@@ -9404,191 +9726,227 @@ msgstr "Ńúńòîÿíèć"
msgid "Stop"
msgstr "Ńćêòîđ"
-#: ../../share/advertising/00-thanks.pl_.c:9
-msgid "Thank you for choosing Mandrake Linux 8.2"
+#: ../../share/advertising/01-thanks.pl_.c:9
+msgid "Thank you for choosing Mandrake Linux 9.0"
msgstr ""
-#: ../../share/advertising/00-thanks.pl_.c:10
+#: ../../share/advertising/01-thanks.pl_.c:10
msgid "Welcome to the Open Source world"
msgstr ""
-#: ../../share/advertising/00-thanks.pl_.c:11
+#: ../../share/advertising/01-thanks.pl_.c:11
msgid ""
"The success of MandrakeSoft is based upon the principle of Free Software. "
"Your new operating system is the result of collaborative work on the part of "
"the worldwide Linux Community"
msgstr ""
-#: ../../share/advertising/01-gnu.pl_.c:9
+#: ../../share/advertising/02-community.pl_.c:9
#, fuzzy
-msgid "Join the Free Software world"
+msgid "Get involved in the Free Software world"
msgstr "Ïđîòîêîë çà îńòàíàëèÿ ńâÿò"
-#: ../../share/advertising/01-gnu.pl_.c:10
+#: ../../share/advertising/02-community.pl_.c:10
+msgid "Want to know more about the Open Source community?"
+msgstr ""
+
+#: ../../share/advertising/02-community.pl_.c:11
msgid ""
-"Get to know the Open Source community and become a member. Learn, teach, and "
-"help others by joining the many discussion forums that you will find in our "
-"\"Community\" webpages"
+"To share your own knowledge and help build Linux tools, join the discussions "
+"forum you'll find on our \"Community\" webpages"
msgstr ""
-#: ../../share/advertising/02-internet.pl_.c:9
+#: ../../share/advertising/03-internet.pl_.c:9
#, fuzzy
-msgid "Internet and Messaging"
-msgstr "Èíòćđíćò äîńòúï"
+msgid "Get the most from the Internet"
+msgstr "Ńâúđæè ńć êúì Èíòćđíćò"
-#: ../../share/advertising/02-internet.pl_.c:10
+#: ../../share/advertising/03-internet.pl_.c:10
msgid ""
-"Mandrake Linux 8.2 provides the best software to access everything the "
-"Internet has to offer: Surf the web & view animations with Mozilla and "
-"Konqueror, exchange email & organize your personal information with "
-"Evolution and Kmail, and much more"
+"Mandrake Linux 9.0 has selected the best software for you. Surf the Web and "
+"view animations with Mozilla and Konqueror, or read your mail and handle "
+"your personal information with Evolution and Kmail"
msgstr ""
-#: ../../share/advertising/03-graphic.pl_.c:9
-#, fuzzy
-msgid "Multimedia and Graphics"
-msgstr "Ìóëòèìćäèÿ - Ăđàôèêà"
+#: ../../share/advertising/04-multimedia.pl_.c:9
+msgid "Discover the most up-to-date graphics and multimedia tools!"
+msgstr ""
+
+#: ../../share/advertising/04-multimedia.pl_.c:10
+msgid "Push multimedia to its limits!"
+msgstr ""
-#: ../../share/advertising/03-graphic.pl_.c:10
+#: ../../share/advertising/04-multimedia.pl_.c:11
msgid ""
-"Mandrake Linux 8.2 lets you push your multimedia computer to its limits! Use "
-"the latest software to play music and audio files, edit and organize your "
-"images and photos, watch TV and videos, and much more"
+"Mandrake Linux 9.0 enables you to use the very latest software to play audio "
+"files, edit and handle your images or photos, and play videos"
msgstr ""
-#: ../../share/advertising/04-develop.pl_.c:9
-msgid "Development"
-msgstr "Đàçđàáîòêà"
+#: ../../share/advertising/05-games.pl_.c:9
+msgid "Games"
+msgstr "Èăđè"
-#: ../../share/advertising/04-develop.pl_.c:10
+#: ../../share/advertising/05-games.pl_.c:10
msgid ""
-"Mandrake Linux 8.2 is the ultimate development platform. Discover the power "
-"of the GNU gcc compiler as well as the best Open Source development "
-"environments"
+"Mandrake Linux 9.0 provides the best Open Source games - arcade, action, "
+"cards, sports, strategy..."
msgstr ""
-#: ../../share/advertising/05-contcenter.pl_.c:9
-#: ../../standalone/drakbug_.c:69
+#: ../../share/advertising/06-mcc.pl_.c:9 ../../standalone/drakbug_.c:69
#, fuzzy
msgid "Mandrake Control Center"
msgstr "Êîíòđîëćí öćíòúđ"
-#: ../../share/advertising/05-contcenter.pl_.c:10
+#: ../../share/advertising/06-mcc.pl_.c:10
msgid ""
-"The Mandrake Linux 8.2 Control Center is a one-stop location for fully "
-"customizing and configuring your Mandrake system"
+"Mandrake Linux 9.0 provides a powerful tool to fully customize and configure "
+"your machine"
msgstr ""
-#: ../../share/advertising/06-user.pl_.c:9
+#: ../../share/advertising/07-desktop.pl_.c:9
#, fuzzy
msgid "User interfaces"
msgstr "Ìđćæîâ èíòćđôćéń"
-#: ../../share/advertising/06-user.pl_.c:10
+#: ../../share/advertising/07-desktop.pl_.c:10
msgid ""
-"Mandrake Linux 8.2 provides 11 different graphical desktop environments and "
-"window managers to choose from including GNOME 1.4, KDE 2.2.2, Window Maker "
-"0.8, and the rest"
+"Mandrake Linux 9.0 provides 11 user interfaces which can be fully modified: "
+"KDE 3, Gnome 2, WindowMaker..."
msgstr ""
-#: ../../share/advertising/07-server.pl_.c:9
+#: ../../share/advertising/08-development.pl_.c:9
#, fuzzy
-msgid "Server Software"
-msgstr "Őîńò íà SMB ńúđâúđ"
+msgid "Development simplified"
+msgstr "Đàçđàáîòêà"
-#: ../../share/advertising/07-server.pl_.c:10
+#: ../../share/advertising/08-development.pl_.c:10
+msgid "Mandrake Linux 9.0 is the ultimate development platform"
+msgstr ""
+
+#: ../../share/advertising/08-development.pl_.c:11
msgid ""
-"Transform your machine into a powerful server with just a few clicks of the "
-"mouse: Web server, email, firewall, router, file and print server, ..."
+"Use the full power of the GNU gcc 3 compiler as well as the best Open Source "
+"development environments"
msgstr ""
-#: ../../share/advertising/08-games.pl_.c:9
-msgid "Games"
-msgstr "Èăđè"
+#: ../../share/advertising/09-server.pl_.c:9
+msgid "Turn your machine into a reliable server"
+msgstr ""
-#: ../../share/advertising/08-games.pl_.c:10
+#: ../../share/advertising/09-server.pl_.c:10
msgid ""
-"Mandrake Linux 8.2 provides the best Open Source games - arcade, action, "
-"cards, sports, strategy, ..."
+"Transform your machine into a powerful server in a few clicks of your mouse: "
+"Web server, mail, firewall, router, file and print server..."
msgstr ""
-#: ../../share/advertising/09-MDKcampus.pl_.c:9
-msgid "MandrakeCampus"
+#: ../../share/advertising/10-mnf.pl_.c:9
+msgid "Optimize your security"
msgstr ""
-#: ../../share/advertising/09-MDKcampus.pl_.c:10
+#: ../../share/advertising/10-mnf.pl_.c:10
msgid ""
-"Would you like to learn Linux simply, quickly, and for free? MandrakeSoft "
-"provides free Linux training, as well as a way to test your progress, at "
-"MandrakeCampus -- our online training center"
+"The MandrakeSecurity range includes the Multi Network Firewall product (M.N."
+"F.)"
msgstr ""
-#: ../../share/advertising/10-MDKexpert.pl_.c:9
-#, fuzzy
-msgid "MandrakeExpert"
-msgstr "Ćêńïćđòíà"
+#: ../../share/advertising/10-mnf.pl_.c:11
+msgid ""
+"This firewall product includes network features which allow you to fulfill "
+"all your security needs"
+msgstr ""
+
+#: ../../share/advertising/10-mnf.pl_.c:12
+msgid "This product is available on MandrakeStore website"
+msgstr ""
-#: ../../share/advertising/10-MDKexpert.pl_.c:10
+#: ../../share/advertising/11-mdkstore.pl_.c:9
+msgid "The official MandrakeSoft store"
+msgstr ""
+
+#: ../../share/advertising/11-mdkstore.pl_.c:10
msgid ""
-"Quality support from the Linux Community, and from MandrakeSoft, is just "
-"around the corner. And if you're already a Linux veteran, become an \"Expert"
-"\" and share your knowledge at our support website"
+"Our full range of Linux solutions, as well as special offers on products and "
+"'goodies', are available online at our e-store"
msgstr ""
-#: ../../share/advertising/11-consul.pl_.c:9
-msgid "MandrakeConsulting"
+#: ../../share/advertising/12-mdkstore.pl_.c:9
+msgid "Strategic partners"
msgstr ""
-#: ../../share/advertising/11-consul.pl_.c:10
+#: ../../share/advertising/12-mdkstore.pl_.c:10
msgid ""
-"For all of your IT projects, our consultants are ready to analyze your "
-"requirements and offer a customized solution. Benefit from MandrakeSoft's "
-"vast experience as a Linux producer to provide a true IT alternative for "
-"your business organization"
+"MandrakeSoft works alongside a selection of companies offering professional "
+"solutions compatible with Mandrake Linux; a list of these partners is "
+"available on the MandrakeStore"
+msgstr ""
+
+#: ../../share/advertising/13-mdkcampus.pl_.c:9
+msgid "Discover MandrakeSoft's training catalogue Linux-Campus"
+msgstr ""
+
+#: ../../share/advertising/13-mdkcampus.pl_.c:10
+msgid ""
+"The training program has been create to respond to the needs of both users "
+"and experts (Network and System administrations)"
+msgstr ""
+
+#: ../../share/advertising/13-mdkcampus.pl_.c:11
+msgid "Certify yourself on Linux"
msgstr ""
-#: ../../share/advertising/12-MDKstore.pl_.c:9
+#: ../../share/advertising/13-mdkcampus.pl_.c:12
+msgid ""
+"Whether you choose to teach yourself online or via our network of training "
+"partners, the Linux-Campus catalogue prepares you for the acknowledged LPI "
+"certification program (worldwide professional technical certification)"
+msgstr ""
+
+#: ../../share/advertising/14-mdkexpert.pl_.c:9
#, fuzzy
-msgid "MandrakeStore"
-msgstr "çàäúëæèòćëćí"
+msgid "Become a MandrakeExpert"
+msgstr "Ćêńïćđòíà"
-#: ../../share/advertising/12-MDKstore.pl_.c:10
+#: ../../share/advertising/14-mdkexpert.pl_.c:10
msgid ""
-"A full range of Linux solutions, as well as special offers on products and "
-"'goodies', are available online at our e-store"
+"Find the solutions to your problems via MandrakeSoft's online support "
+"platform"
msgstr ""
-#: ../../share/advertising/13-Nvert.pl_.c:9
+#: ../../share/advertising/14-mdkexpert.pl_.c:11
msgid ""
-"For more information on MandrakeSoft's Professional Services and commercial "
-"offerings, please see the following web page:"
+"Join the MandrakeSoft support teams and the Linux Community online to share "
+"your knowledge and help others by becoming a recognized Expert on the online "
+"technical support website:"
msgstr ""
-#: ../../share/advertising/13-Nvert.pl_.c:11
-msgid "http://www.mandrakesoft.com/sales/contact"
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:9
+#, fuzzy
+msgid "MandrakeExpert Corporate"
+msgstr "Ćêńïćđòíà"
+
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:10
+msgid "An online platform to respond to company's specific support needs"
+msgstr ""
+
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:11
+msgid ""
+"All incidents will be followed up by a single qualified MandrakeSoft "
+"technical expert."
msgstr ""
-#: ../../standalone.pm_.c:40
+#: ../../standalone.pm_.c:41
msgid "Installing packages..."
msgstr "Èíńòàëèđàíć íà ïàêćòè ..."
-#: ../../standalone/XFdrake_.c:143
+#: ../../standalone/XFdrake_.c:145
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "Ìîëÿ èçëćçòć îò ńćńèÿòà è èçïîëçâàéòć Ctrl-Alt-BackSpace"
-#: ../../standalone/XFdrake_.c:147
+#: ../../standalone/XFdrake_.c:149
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "Ìîëÿ âëćçòć îòíîâî â %s, çà äà àêòèâèđàòć ïđîìćíèòć"
-#: ../../standalone/diskdrake_.c:81
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I'll try to go on blanking bad partitions"
-msgstr ""
-"Íć ìîăà äà đàçśćòà òàáëèöàòà íà äÿëîâćòć, ïđćêàëćíî ć ïîâđćäćíà :(\n"
-"Ùć ńć îïèòàì äà ïđîäúëæà äà đàçśèńòâàì ëîűèòć äÿëîâć"
-
#: ../../standalone/drakTermServ_.c:188
#, fuzzy
msgid "Mandrake Terminal Server Configuration"
@@ -9632,12 +9990,13 @@ msgstr "Äîáàâè ïîòđćáèòćë"
msgid "Add/Del Clients"
msgstr "DHCP êëèćíò"
-#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3282
-#: ../../standalone/drakbackup_.c:3315 ../../standalone/drakbackup_.c:3341
-#: ../../standalone/drakbackup_.c:3368 ../../standalone/drakbackup_.c:3395
-#: ../../standalone/drakbackup_.c:3434 ../../standalone/drakbackup_.c:3455
-#: ../../standalone/drakbackup_.c:3482 ../../standalone/drakbackup_.c:3508
-#: ../../standalone/drakbackup_.c:3533 ../../standalone/drakfont_.c:700
+#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3930
+#: ../../standalone/drakbackup_.c:3963 ../../standalone/drakbackup_.c:3989
+#: ../../standalone/drakbackup_.c:4016 ../../standalone/drakbackup_.c:4043
+#: ../../standalone/drakbackup_.c:4082 ../../standalone/drakbackup_.c:4103
+#: ../../standalone/drakbackup_.c:4130 ../../standalone/drakbackup_.c:4160
+#: ../../standalone/drakbackup_.c:4186 ../../standalone/drakbackup_.c:4211
+#: ../../standalone/drakfont_.c:700
#, fuzzy
msgid "Help"
msgstr "/_Ïîìîù"
@@ -9797,8 +10156,8 @@ msgid ""
"The parameters of the auto-install are available in the sections on the left"
msgstr ""
-#: ../../standalone/drakautoinst_.c:239 ../../standalone/drakgw_.c:548
-#: ../../standalone/scannerdrake_.c:105
+#: ../../standalone/drakautoinst_.c:239 ../../standalone/drakgw_.c:484
+#: ../../standalone/scannerdrake_.c:119
msgid "Congratulations!"
msgstr "Ïîçäđàâëćíèÿ !"
@@ -9825,27 +10184,31 @@ msgstr "Äîáàâÿíć íà ïîòđćáèòćë"
msgid "Remove the last item"
msgstr "Äà ïđćìàőíà ëè loopback ôàéëà ?"
-#: ../../standalone/drakbackup_.c:625
+#: ../../standalone/drakbackup_.c:619
msgid "Cron not available yet as non-root"
msgstr ""
-#: ../../standalone/drakbackup_.c:731
+#: ../../standalone/drakbackup_.c:725
msgid "WARNING"
msgstr ""
-#: ../../standalone/drakbackup_.c:732
+#: ../../standalone/drakbackup_.c:726
#, fuzzy
msgid "FATAL"
msgstr "FAT"
-#: ../../standalone/drakbackup_.c:744
+#: ../../standalone/drakbackup_.c:727
+msgid "INFO"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:739
msgid ""
"\n"
" DrakBackup Report \n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:745
+#: ../../standalone/drakbackup_.c:740
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -9853,7 +10216,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:749
+#: ../../standalone/drakbackup_.c:744
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -9861,13 +10224,20 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:770 ../../standalone/drakbackup_.c:840
-#: ../../standalone/drakbackup_.c:894
+#: ../../standalone/drakbackup_.c:765 ../../standalone/drakbackup_.c:835
+#: ../../standalone/drakbackup_.c:889
#, fuzzy
msgid "Total progess"
msgstr "Òćńòîâè ńòđàíèöè"
-#: ../../standalone/drakbackup_.c:822
+#: ../../standalone/drakbackup_.c:788
+msgid ""
+"Sorry, perl-Expect is not installed/enabled. To use\n"
+"this feature, install perl-Expect and comment lines 772-774,\n"
+" as well as 788,789. Then uncomment line 787."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:817
#, c-format
msgid ""
"%s exists, delete?\n"
@@ -9876,16 +10246,41 @@ msgid ""
" need to purge the entry from authorized_keys on the server."
msgstr ""
-#: ../../standalone/drakbackup_.c:831
+#: ../../standalone/drakbackup_.c:826
msgid "This may take a moment to generate the keys."
msgstr ""
-#: ../../standalone/drakbackup_.c:838
+#: ../../standalone/drakbackup_.c:833
#, c-format
msgid "ERROR: Cannot spawn %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:865
+#: ../../standalone/drakbackup_.c:850
+#, c-format
+msgid "No password prompt on %s at port %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:851
+#, fuzzy, c-format
+msgid "Bad password on %s"
+msgstr "Áćç ïàđîëà"
+
+#: ../../standalone/drakbackup_.c:852
+#, c-format
+msgid "Permission denied transferring %s to %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:853
+#, fuzzy, c-format
+msgid "Can't find %s on %s"
+msgstr "Íć ìîăà äà îòâîđÿ %s: %s\n"
+
+#: ../../standalone/drakbackup_.c:856
+#, c-format
+msgid "%s not responding"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:860
#, c-format
msgid ""
"Transfer successful\n"
@@ -9896,63 +10291,68 @@ msgid ""
"without being prompted for a password."
msgstr ""
-#: ../../standalone/drakbackup_.c:908
+#: ../../standalone/drakbackup_.c:903
msgid "WebDAV remote site already in sync!"
msgstr ""
-#: ../../standalone/drakbackup_.c:912
+#: ../../standalone/drakbackup_.c:907
msgid "WebDAV transfer failed!"
msgstr ""
-#: ../../standalone/drakbackup_.c:934
+#: ../../standalone/drakbackup_.c:928
msgid "No CDR/DVDR in drive!"
msgstr ""
-#: ../../standalone/drakbackup_.c:938
+#: ../../standalone/drakbackup_.c:932
msgid "Does not appear to be recordable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:942
+#: ../../standalone/drakbackup_.c:936
msgid "Not erasable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:981
+#: ../../standalone/drakbackup_.c:975
msgid "This may take a moment to erase the media."
msgstr ""
-#: ../../standalone/drakbackup_.c:1045
+#: ../../standalone/drakbackup_.c:1060
msgid "Permission problem accessing CD."
msgstr ""
-#: ../../standalone/drakbackup_.c:1144 ../../standalone/drakbackup_.c:1193
+#: ../../standalone/drakbackup_.c:1087
+#, c-format
+msgid "No tape in %s!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1199 ../../standalone/drakbackup_.c:1248
msgid "Backup system files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:1194 ../../standalone/drakbackup_.c:1261
+#: ../../standalone/drakbackup_.c:1249 ../../standalone/drakbackup_.c:1316
#, fuzzy
msgid "Hard Disk Backup files..."
msgstr "Ëîű backup-ôàéë"
-#: ../../standalone/drakbackup_.c:1206
+#: ../../standalone/drakbackup_.c:1261
#, fuzzy
msgid "Backup User files..."
msgstr "Ëîű backup-ôàéë"
-#: ../../standalone/drakbackup_.c:1207
+#: ../../standalone/drakbackup_.c:1262
msgid "Hard Disk Backup Progress..."
msgstr ""
-#: ../../standalone/drakbackup_.c:1260
+#: ../../standalone/drakbackup_.c:1315
#, fuzzy
msgid "Backup Other files..."
msgstr "Ëîű backup-ôàéë"
-#: ../../standalone/drakbackup_.c:1266
+#: ../../standalone/drakbackup_.c:1321
#, fuzzy
msgid "No changes to backup!"
msgstr "Ëîű backup-ôàéë"
-#: ../../standalone/drakbackup_.c:1282 ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1337 ../../standalone/drakbackup_.c:1360
#, c-format
msgid ""
"\n"
@@ -9960,803 +10360,926 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1289
+#: ../../standalone/drakbackup_.c:1344
#, c-format
msgid ""
-"file list sent by FTP : %s\n"
+"file list sent by FTP: %s\n"
" "
msgstr ""
-#: ../../standalone/drakbackup_.c:1292
+#: ../../standalone/drakbackup_.c:1347
msgid ""
"\n"
" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1310
+#: ../../standalone/drakbackup_.c:1365
msgid ""
"\n"
"Drakbackup activities via CD:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1315
+#: ../../standalone/drakbackup_.c:1370
msgid ""
"\n"
"Drakbackup activities via tape:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1324
+#: ../../standalone/drakbackup_.c:1379
#, fuzzy
msgid " Error during mail sending. \n"
msgstr "Ăđćűêà ïđè śćòćíćòî íà ôàéëà %s"
-#: ../../standalone/drakbackup_.c:1346
+#: ../../standalone/drakbackup_.c:1404
msgid "Can't create catalog!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1459 ../../standalone/drakbackup_.c:1470
-#: ../../standalone/drakbackup_.c:1481 ../../standalone/drakfont_.c:1004
+#: ../../standalone/drakbackup_.c:1517 ../../standalone/drakbackup_.c:1528
+#: ../../standalone/drakfont_.c:1004
#, fuzzy
msgid "File Selection"
msgstr "Èçáîđ íà ïàêćòè"
-#: ../../standalone/drakbackup_.c:1486
+#: ../../standalone/drakbackup_.c:1556
msgid "Select the files or directories and click on 'Add'"
msgstr ""
-#: ../../standalone/drakbackup_.c:1525
+#: ../../standalone/drakbackup_.c:1600
msgid ""
"\n"
"Please check all options that you need.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1526
+#: ../../standalone/drakbackup_.c:1601
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1527
+#: ../../standalone/drakbackup_.c:1602
#, fuzzy
msgid "Backup your System files. (/etc directory)"
msgstr "Ëîű backup-ôàéë"
-#: ../../standalone/drakbackup_.c:1528
+#: ../../standalone/drakbackup_.c:1603
msgid "Use incremental backup (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1529
+#: ../../standalone/drakbackup_.c:1604
msgid "Do not include critical files (passwd, group, fstab)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1530
+#: ../../standalone/drakbackup_.c:1605
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr ""
-#: ../../standalone/drakbackup_.c:1547
+#: ../../standalone/drakbackup_.c:1622
#, fuzzy
msgid "Please check all users that you want to include in your backup."
msgstr "Ìîëÿ, èçáćđćòć ïàêćòèòć, êîèòî èńêàòć äà èíńòàëèđàòć."
-#: ../../standalone/drakbackup_.c:1574
+#: ../../standalone/drakbackup_.c:1649
msgid "Do not include the browser cache"
msgstr ""
-#: ../../standalone/drakbackup_.c:1575 ../../standalone/drakbackup_.c:1599
+#: ../../standalone/drakbackup_.c:1650 ../../standalone/drakbackup_.c:1674
msgid "Use Incremental Backups (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1597 ../../standalone/drakfont_.c:1058
+#: ../../standalone/drakbackup_.c:1672 ../../standalone/drakfont_.c:1058
#, fuzzy
msgid "Remove Selected"
msgstr "Èçòđèâàíć íà îïàűêàòà"
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:1710
#, fuzzy
msgid "Windows (FAT32)"
msgstr "Ïđćìàőíè Windows(TM)"
-#: ../../standalone/drakbackup_.c:1674
+#: ../../standalone/drakbackup_.c:1749
#, fuzzy
msgid "Users"
msgstr "Ïîòđćáèòćëńêî èìć"
-#: ../../standalone/drakbackup_.c:1700
+#: ../../standalone/drakbackup_.c:1775
#, fuzzy
msgid "Use network connection to backup"
msgstr "Ëîű backup-ôàéë"
-#: ../../standalone/drakbackup_.c:1706
+#: ../../standalone/drakbackup_.c:1777
+msgid "Net Method:"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1781
msgid "Use Expect for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1707
+#: ../../standalone/drakbackup_.c:1782
msgid ""
"Create/Transfer\n"
"backup keys for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1708
+#: ../../standalone/drakbackup_.c:1783
#, fuzzy
msgid ""
" Transfer \n"
"Now"
msgstr "Ïđćőâúđëè"
-#: ../../standalone/drakbackup_.c:1709
+#: ../../standalone/drakbackup_.c:1784
msgid "Keys in place already"
msgstr ""
-#: ../../standalone/drakbackup_.c:1713
+#: ../../standalone/drakbackup_.c:1788
#, fuzzy
msgid "Please enter the host name or IP."
msgstr "Ìîëÿ, ïđîáâàéòć ìèűêàòà ńè"
-#: ../../standalone/drakbackup_.c:1718
+#: ../../standalone/drakbackup_.c:1793
msgid ""
"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
-#: ../../standalone/drakbackup_.c:1723
+#: ../../standalone/drakbackup_.c:1798
#, fuzzy
msgid "Please enter your login"
msgstr "Ìîëÿ, îïèòàéòć îòíîâî"
-#: ../../standalone/drakbackup_.c:1728
+#: ../../standalone/drakbackup_.c:1803
#, fuzzy
msgid "Please enter your password"
msgstr "Ìîëÿ, îïèòàéòć îòíîâî"
-#: ../../standalone/drakbackup_.c:1734
+#: ../../standalone/drakbackup_.c:1809
#, fuzzy
msgid "Remember this password"
msgstr "îùć âćäíúæ ïàđîëà"
-#: ../../standalone/drakbackup_.c:1745
+#: ../../standalone/drakbackup_.c:1820
msgid "Need hostname, username and password!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1841
+#: ../../standalone/drakbackup_.c:1915
msgid "Use CD/DVDROM to backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1844
+#: ../../standalone/drakbackup_.c:1918
msgid ""
"Please choose your CD/DVD device\n"
"(Press Enter to propogate settings to other fields.\n"
"This field isn't necessary, only a tool to fill in the form.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1849
+#: ../../standalone/drakbackup_.c:1923
#, fuzzy
msgid "Please choose your CD/DVD media size"
msgstr "Ìîëÿ, èçáćđćòć ïîäđćæäàíć íà êëàâèàòóđàòà."
-#: ../../standalone/drakbackup_.c:1855
+#: ../../standalone/drakbackup_.c:1929
#, fuzzy
msgid "Please check for multisession CD"
msgstr "Ìîëÿ, öúêíćòć íà íîńèòćëÿ"
-#: ../../standalone/drakbackup_.c:1861
+#: ../../standalone/drakbackup_.c:1935
#, fuzzy
msgid "Please check if you are using CDRW media"
msgstr "Ìîëÿ, öúêíćòć íà íîńèòćëÿ"
-#: ../../standalone/drakbackup_.c:1867
+#: ../../standalone/drakbackup_.c:1941
#, fuzzy
msgid "Please check if you want to erase your RW media (1st Session)"
msgstr "Ìîëÿ, öúêíćòć íà íîńèòćëÿ"
-#: ../../standalone/drakbackup_.c:1868
+#: ../../standalone/drakbackup_.c:1942
#, fuzzy
msgid " Erase Now "
msgstr "Ïđćőâúđëè"
-#: ../../standalone/drakbackup_.c:1874
+#: ../../standalone/drakbackup_.c:1948
#, fuzzy
msgid "Please check if you are using a DVDR device"
msgstr "Ìîëÿ, öúêíćòć íà íîńèòćëÿ"
-#: ../../standalone/drakbackup_.c:1880
+#: ../../standalone/drakbackup_.c:1954
#, fuzzy
msgid "Please check if you are using a DVDRAM device"
msgstr "Ìîëÿ, öúêíćòć íà íîńèòćëÿ"
-#: ../../standalone/drakbackup_.c:1893
+#: ../../standalone/drakbackup_.c:1967
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
msgstr ""
-#: ../../standalone/drakbackup_.c:1926
+#: ../../standalone/drakbackup_.c:2000
#, fuzzy
msgid "No CD device defined!"
msgstr "Èçáćđćòć ôàéë"
-#: ../../standalone/drakbackup_.c:1974
+#: ../../standalone/drakbackup_.c:2048
#, fuzzy
msgid "Use tape to backup"
msgstr "Ëîű backup-ôàéë"
-#: ../../standalone/drakbackup_.c:1977
+#: ../../standalone/drakbackup_.c:2051
msgid "Please enter the device name to use for backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1983
+#: ../../standalone/drakbackup_.c:2057
#, fuzzy
msgid "Please check if you want to use the non-rewinding device."
msgstr "Ìîëÿ, èçáćđćòć ïàêćòèòć, êîèòî èńêàòć äà èíńòàëèđàòć."
-#: ../../standalone/drakbackup_.c:1989
+#: ../../standalone/drakbackup_.c:2063
#, fuzzy
msgid "Please check if you want to erase your tape before the backup."
msgstr "Ìîëÿ, èçáćđćòć ïàêćòèòć, êîèòî èńêàòć äà èíńòàëèđàòć."
-#: ../../standalone/drakbackup_.c:1995
+#: ../../standalone/drakbackup_.c:2069
#, fuzzy
msgid "Please check if you want to eject your tape after the backup."
msgstr "Ìîëÿ, èçáćđćòć ïàêćòèòć, êîèòî èńêàòć äà èíńòàëèđàòć."
-#: ../../standalone/drakbackup_.c:2001 ../../standalone/drakbackup_.c:2074
-#: ../../standalone/drakbackup_.c:3025
+#: ../../standalone/drakbackup_.c:2075 ../../standalone/drakbackup_.c:2149
+#: ../../standalone/drakbackup_.c:3116
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:2066
+#: ../../standalone/drakbackup_.c:2140
#, fuzzy
msgid "Please enter the directory to save to:"
msgstr "Ìîëÿ, ïđîáâàéòć ìèűêàòà ńè"
-#: ../../standalone/drakbackup_.c:2080 ../../standalone/drakbackup_.c:3031
+#: ../../standalone/drakbackup_.c:2155 ../../standalone/drakbackup_.c:3122
#, fuzzy
msgid "Use quota for backup files."
msgstr "Ëîű backup-ôàéë"
-#: ../../standalone/drakbackup_.c:2146
+#: ../../standalone/drakbackup_.c:2221
#, fuzzy
msgid "Network"
msgstr "Ìđćæîâ èíòćđôćéń"
-#: ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:2226
msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2156
+#: ../../standalone/drakbackup_.c:2231
msgid "HardDrive / NFS"
msgstr ""
-#: ../../standalone/drakbackup_.c:2161
+#: ../../standalone/drakbackup_.c:2236
#, fuzzy
msgid "Tape"
msgstr "Âèä"
-#: ../../standalone/drakbackup_.c:2175 ../../standalone/drakbackup_.c:2179
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2250 ../../standalone/drakbackup_.c:2254
+#: ../../standalone/drakbackup_.c:2258
msgid "hourly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2176 ../../standalone/drakbackup_.c:2180
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2251 ../../standalone/drakbackup_.c:2255
+#: ../../standalone/drakbackup_.c:2258
msgid "daily"
msgstr ""
-#: ../../standalone/drakbackup_.c:2177 ../../standalone/drakbackup_.c:2181
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2252 ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2258
msgid "weekly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2178 ../../standalone/drakbackup_.c:2182
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2253 ../../standalone/drakbackup_.c:2257
+#: ../../standalone/drakbackup_.c:2258
msgid "monthly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2196
+#: ../../standalone/drakbackup_.c:2271
#, fuzzy
msgid "Use daemon"
msgstr "Ïîòđćáèòćëńêî èìć"
-#: ../../standalone/drakbackup_.c:2201
+#: ../../standalone/drakbackup_.c:2276
#, fuzzy
msgid ""
"Please choose the time \n"
"interval between each backup"
msgstr "Ìîëÿ, èçáćđćòć ïàêćòèòć, êîèòî èńêàòć äà èíńòàëèđàòć."
-#: ../../standalone/drakbackup_.c:2207
+#: ../../standalone/drakbackup_.c:2282
#, fuzzy
msgid ""
"Please choose the\n"
"media for backup."
msgstr "Ìîëÿ, èçáćđćòć èçïîëçâàí ćçèê."
-#: ../../standalone/drakbackup_.c:2214
+#: ../../standalone/drakbackup_.c:2289
msgid ""
"Please be sure that the cron daemon is included in your services. \n"
"\n"
"Note that currently all 'net' medias also use the hard drive."
msgstr ""
-#: ../../standalone/drakbackup_.c:2251
-msgid "Send mail report after each backup to :"
+#: ../../standalone/drakbackup_.c:2326
+msgid "Send mail report after each backup to:"
msgstr ""
-#: ../../standalone/drakbackup_.c:2257
+#: ../../standalone/drakbackup_.c:2332
msgid "Delete Hard Drive tar files after backup to other media."
msgstr ""
-#: ../../standalone/drakbackup_.c:2296
+#: ../../standalone/drakbackup_.c:2371
#, fuzzy
msgid "What"
msgstr "Ćäèí ìîìćíò"
-#: ../../standalone/drakbackup_.c:2301
+#: ../../standalone/drakbackup_.c:2376
#, fuzzy
msgid "Where"
msgstr "Wheel"
-#: ../../standalone/drakbackup_.c:2306
+#: ../../standalone/drakbackup_.c:2381
#, fuzzy
msgid "When"
msgstr "Wheel"
-#: ../../standalone/drakbackup_.c:2311
+#: ../../standalone/drakbackup_.c:2386
#, fuzzy
msgid "More Options"
msgstr "Îïöèè íà ìîäóëà:"
-#: ../../standalone/drakbackup_.c:2330 ../../standalone/drakbackup_.c:3873
+#: ../../standalone/drakbackup_.c:2405 ../../standalone/drakbackup_.c:4530
#, fuzzy
msgid "Drakbackup Configuration"
msgstr "Íàńòđîéêà íà ìđćæàòà"
-#: ../../standalone/drakbackup_.c:2348
+#: ../../standalone/drakbackup_.c:2423
#, fuzzy
msgid "Please choose where you want to backup"
msgstr "Ìîëÿ, èçáćđćòć ïàêćòèòć, êîèòî èńêàòć äà èíńòàëèđàòć."
-#: ../../standalone/drakbackup_.c:2350
+#: ../../standalone/drakbackup_.c:2425
msgid "on Hard Drive"
msgstr ""
-#: ../../standalone/drakbackup_.c:2360
+#: ../../standalone/drakbackup_.c:2435
msgid "across Network"
msgstr ""
-#: ../../standalone/drakbackup_.c:2370
+#: ../../standalone/drakbackup_.c:2445
msgid "on CDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2378
+#: ../../standalone/drakbackup_.c:2453
msgid "on Tape Device"
msgstr ""
-#: ../../standalone/drakbackup_.c:2421
+#: ../../standalone/drakbackup_.c:2496
#, fuzzy
msgid "Please choose what you want to backup"
msgstr "Ìîëÿ, èçáćđćòć ïàêćòèòć, êîèòî èńêàòć äà èíńòàëèđàòć."
-#: ../../standalone/drakbackup_.c:2422
+#: ../../standalone/drakbackup_.c:2497
#, fuzzy
msgid "Backup system"
msgstr "Ôàéëîâè ńèńòćìè"
-#: ../../standalone/drakbackup_.c:2423
+#: ../../standalone/drakbackup_.c:2498
msgid "Backup Users"
msgstr ""
-#: ../../standalone/drakbackup_.c:2426
+#: ../../standalone/drakbackup_.c:2501
msgid "Select user manually"
msgstr ""
-#: ../../standalone/drakbackup_.c:2508
+#: ../../standalone/drakbackup_.c:2584
msgid ""
"\n"
"Backup Sources: \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2509
+#: ../../standalone/drakbackup_.c:2585
msgid ""
"\n"
"- System Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2511
+#: ../../standalone/drakbackup_.c:2587
msgid ""
"\n"
"- User Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2513
+#: ../../standalone/drakbackup_.c:2589
msgid ""
"\n"
"- Other Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2515
+#: ../../standalone/drakbackup_.c:2591
#, c-format
msgid ""
"\n"
-"- Save on Hard drive on path : %s\n"
+"- Save on Hard drive on path: %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2518
+#: ../../standalone/drakbackup_.c:2594
msgid ""
"\n"
"- Delete hard drive tar files after backup.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2524
+#: ../../standalone/drakbackup_.c:2600
msgid ""
"\n"
"- Burn to CD"
msgstr ""
-#: ../../standalone/drakbackup_.c:2525
+#: ../../standalone/drakbackup_.c:2601
msgid "RW"
msgstr ""
-#: ../../standalone/drakbackup_.c:2526
+#: ../../standalone/drakbackup_.c:2602
#, fuzzy, c-format
-msgid " on device : %s"
+msgid " on device: %s"
msgstr "Óńòđîéńòâî íà ìèűêàòà: %s\n"
-#: ../../standalone/drakbackup_.c:2527
+#: ../../standalone/drakbackup_.c:2603
msgid " (multi-session)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2528
+#: ../../standalone/drakbackup_.c:2604
#, c-format
msgid ""
"\n"
-"- Save to Tape on device : %s"
+"- Save to Tape on device: %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2529
+#: ../../standalone/drakbackup_.c:2605
#, c-format
msgid "\t\tErase=%s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2532
+#: ../../standalone/drakbackup_.c:2608
#, c-format
msgid ""
"\n"
-"- Save via %s on host : %s\n"
+"- Save via %s on host: %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2533
+#: ../../standalone/drakbackup_.c:2609
#, c-format
msgid ""
"\t\t user name: %s\n"
"\t\t on path: %s \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2534
+#: ../../standalone/drakbackup_.c:2610
#, fuzzy
msgid ""
"\n"
"- Options:\n"
msgstr "Îïöèè"
-#: ../../standalone/drakbackup_.c:2535
+#: ../../standalone/drakbackup_.c:2611
msgid "\tDo not include System Files\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2538
+#: ../../standalone/drakbackup_.c:2614
msgid "\tBackups use tar and bzip2\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2540
+#: ../../standalone/drakbackup_.c:2616
msgid "\tBackups use tar and gzip\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2543
+#: ../../standalone/drakbackup_.c:2619
#, c-format
msgid ""
"\n"
-"- Daemon (%s) include :\n"
+"- Daemon (%s) include:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2544
+#: ../../standalone/drakbackup_.c:2620
msgid "\t-Hard drive.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2545
+#: ../../standalone/drakbackup_.c:2621
msgid "\t-CDROM.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2546
+#: ../../standalone/drakbackup_.c:2622
msgid "\t-Tape \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2547
+#: ../../standalone/drakbackup_.c:2623
msgid "\t-Network by FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2548
+#: ../../standalone/drakbackup_.c:2624
msgid "\t-Network by SSH.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2549
+#: ../../standalone/drakbackup_.c:2625
msgid "\t-Network by rsync.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2550
+#: ../../standalone/drakbackup_.c:2626
msgid "\t-Network by webdav.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2552
+#: ../../standalone/drakbackup_.c:2628
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2558
+#: ../../standalone/drakbackup_.c:2634
msgid ""
"List of data to restore:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2725
+#: ../../standalone/drakbackup_.c:2801
msgid ""
"List of data corrupted:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2727
+#: ../../standalone/drakbackup_.c:2803
#, fuzzy
msgid "Please uncheck or remove it on next time."
msgstr "Ìîëÿ, èçáćđćòć ńćđèćí ïîđò êúì êîéòî ńâúđçàí ìîäćìúò âè."
-#: ../../standalone/drakbackup_.c:2737
+#: ../../standalone/drakbackup_.c:2813
msgid "Backup files are corrupted"
msgstr ""
-#: ../../standalone/drakbackup_.c:2758
+#: ../../standalone/drakbackup_.c:2834
msgid " All of your selected data have been "
msgstr ""
-#: ../../standalone/drakbackup_.c:2759
+#: ../../standalone/drakbackup_.c:2835
#, c-format
msgid " Successfuly Restored on %s "
msgstr ""
-#: ../../standalone/drakbackup_.c:2877
+#: ../../standalone/drakbackup_.c:2953
#, fuzzy
msgid " Restore Configuration "
msgstr "Íàńòđîéêà íà ìđćæàòà"
-#: ../../standalone/drakbackup_.c:2895
+#: ../../standalone/drakbackup_.c:2971
msgid "OK to restore the other files."
msgstr ""
-#: ../../standalone/drakbackup_.c:2912
+#: ../../standalone/drakbackup_.c:2988
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2975
+#: ../../standalone/drakbackup_.c:3066
#, fuzzy
msgid "Backup the system files before:"
msgstr "Ëîű backup-ôàéë"
-#: ../../standalone/drakbackup_.c:2977
+#: ../../standalone/drakbackup_.c:3068
#, fuzzy
msgid "please choose the date to restore"
msgstr "Ìîëÿ, èçáćđćòć òèï íà ìèűêàòà."
-#: ../../standalone/drakbackup_.c:3014
+#: ../../standalone/drakbackup_.c:3105
#, fuzzy
msgid "Use Hard Disk to backup"
msgstr "Ëîű backup-ôàéë"
-#: ../../standalone/drakbackup_.c:3017
+#: ../../standalone/drakbackup_.c:3108
#, fuzzy
msgid "Please enter the directory to save:"
msgstr "Ìîëÿ, ïđîáâàéòć ìèűêàòà ńè"
-#: ../../standalone/drakbackup_.c:3060
+#: ../../standalone/drakbackup_.c:3151
#, fuzzy
msgid "FTP Connection"
msgstr "LAN âđúçêà"
-#: ../../standalone/drakbackup_.c:3067
+#: ../../standalone/drakbackup_.c:3158
#, fuzzy
msgid "Secure Connection"
msgstr "Èçáćđćòć âđúçêà êúì ïđèíòćđà"
-#: ../../standalone/drakbackup_.c:3093
+#: ../../standalone/drakbackup_.c:3184
#, fuzzy
msgid "Restore from Hard Disk."
msgstr "Âúçńòàíîâè îò äèńêćòà"
-#: ../../standalone/drakbackup_.c:3095
+#: ../../standalone/drakbackup_.c:3186
msgid "Please enter the directory where backups are stored"
msgstr ""
-#: ../../standalone/drakbackup_.c:3157
+#: ../../standalone/drakbackup_.c:3254
#, fuzzy
msgid "Select another media to restore from"
msgstr "Ìîëÿ, èçáćđćòć òèï íà ìèűêàòà."
-#: ../../standalone/drakbackup_.c:3159
+#: ../../standalone/drakbackup_.c:3256
#, fuzzy
msgid "Other Media"
msgstr "Äđóăà"
-#: ../../standalone/drakbackup_.c:3164
+#: ../../standalone/drakbackup_.c:3261
#, fuzzy
msgid "Restore system"
msgstr "Èíńòàëèđàíć íà ńèńòćìàòà"
-#: ../../standalone/drakbackup_.c:3165
+#: ../../standalone/drakbackup_.c:3262
#, fuzzy
msgid "Restore Users"
msgstr "Âúçńòàíîâè îò ôàéë"
-#: ../../standalone/drakbackup_.c:3166
+#: ../../standalone/drakbackup_.c:3263
#, fuzzy
msgid "Restore Other"
msgstr "Âúçńòàíîâè îò ôàéë"
-#: ../../standalone/drakbackup_.c:3168
+#: ../../standalone/drakbackup_.c:3265
#, fuzzy
msgid "select path to restore (instead of /)"
msgstr "Ìîëÿ, èçáćđćòć òèï íà ìèűêàòà."
-#: ../../standalone/drakbackup_.c:3172
+#: ../../standalone/drakbackup_.c:3269
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:3174
+#: ../../standalone/drakbackup_.c:3271
msgid "Remove user directories before restore."
msgstr ""
-#: ../../standalone/drakbackup_.c:3232
+#: ../../standalone/drakbackup_.c:3384
+msgid ""
+"Restore Selected\n"
+"Catalog Entry"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3394
+#, fuzzy
+msgid ""
+"Restore Selected\n"
+"Files"
+msgstr "Èçòđèâàíć íà îïàűêàòà"
+
+#: ../../standalone/drakbackup_.c:3411
+#, fuzzy
+msgid ""
+"Change\n"
+"Restore Path"
+msgstr "Âúçńòàíîâè îò ôàéë"
+
+#: ../../standalone/drakbackup_.c:3477
+#, c-format
+msgid "Backup files not found at %s."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3490
+#, c-format
+msgid ""
+"Insert the CD with volume label %s\n"
+" in the CD drive under mount point /mnt/cdrom"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3490
+#, fuzzy
+msgid "Restore From CD"
+msgstr "Âúçńòàíîâè îò äèńêćòà"
+
+#: ../../standalone/drakbackup_.c:3492
+#, c-format
+msgid "Not the correct CD label. Disk is labelled %s."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3502
+#, c-format
+msgid ""
+"Insert the tape with volume label %s\n"
+" in the tape drive device %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3502
+#, fuzzy
+msgid "Restore From Tape"
+msgstr "Âúçńòàíîâè òàáëèöàòà ń äÿëîâćòć"
+
+#: ../../standalone/drakbackup_.c:3504
+#, c-format
+msgid "Not the correct tape label. Tape is labelled %s."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3524
+#, fuzzy
+msgid "Restore Via Network"
+msgstr "Âúçńòàíîâè îò ôàéë"
+
+#: ../../standalone/drakbackup_.c:3524
+#, c-format
+msgid "Restore Via Network Protocol: %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3525
+#, fuzzy
+msgid "Host Name"
+msgstr "Èìć íà őîńò:"
+
+#: ../../standalone/drakbackup_.c:3526
+msgid "Host Path or Module"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3533
+#, fuzzy
+msgid "Password required"
+msgstr "Ïàđîëà"
+
+#: ../../standalone/drakbackup_.c:3539
+#, fuzzy
+msgid "Username required"
+msgstr "Ïîòđćáèòćëńêî èìć"
+
+#: ../../standalone/drakbackup_.c:3542
+#, fuzzy
+msgid "Hostname required"
+msgstr "Èìć íà őîńò:"
+
+#: ../../standalone/drakbackup_.c:3547
+msgid "Path or Module required"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3560
+msgid "Files Restored..."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3563
+#, fuzzy
+msgid "Restore Failed..."
+msgstr "Âúçńòàíîâè îò ôàéë"
+
+#: ../../standalone/drakbackup_.c:3801
msgid "Restore all backups"
msgstr ""
-#: ../../standalone/drakbackup_.c:3241
+#: ../../standalone/drakbackup_.c:3810
#, fuzzy
msgid "Custom Restore"
msgstr "Êëèćíòńêà"
-#: ../../standalone/drakbackup_.c:3287 ../../standalone/drakbackup_.c:3320
-#: ../../standalone/drakbackup_.c:3346 ../../standalone/drakbackup_.c:3373
-#: ../../standalone/drakbackup_.c:3400 ../../standalone/drakbackup_.c:3460
-#: ../../standalone/drakbackup_.c:3487 ../../standalone/drakbackup_.c:3513
+#: ../../standalone/drakbackup_.c:3856
+msgid "CD in place - continue."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3862
+msgid "Browse to new restore repository."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3865
+#, fuzzy
+msgid "Restore From Catalog"
+msgstr "Âúçńòàíîâè òàáëèöàòà ń äÿëîâćòć"
+
+#: ../../standalone/drakbackup_.c:3893
+#, fuzzy
+msgid "Restore Progress"
+msgstr "Âúçńòàíîâè îò ôàéë"
+
+#: ../../standalone/drakbackup_.c:3935 ../../standalone/drakbackup_.c:3968
+#: ../../standalone/drakbackup_.c:3994 ../../standalone/drakbackup_.c:4021
+#: ../../standalone/drakbackup_.c:4048 ../../standalone/drakbackup_.c:4108
+#: ../../standalone/drakbackup_.c:4135 ../../standalone/drakbackup_.c:4165
+#: ../../standalone/drakbackup_.c:4191
#, fuzzy
msgid "Previous"
msgstr "<- Ïđćäèűćí"
-#: ../../standalone/drakbackup_.c:3291 ../../standalone/drakbackup_.c:3377
+#: ../../standalone/drakbackup_.c:3939 ../../standalone/drakbackup_.c:4025
#: ../../standalone/logdrake_.c:223
#, fuzzy
msgid "Save"
msgstr "Ńúńòîÿíèć"
-#: ../../standalone/drakbackup_.c:3350
+#: ../../standalone/drakbackup_.c:3998
#, fuzzy
msgid "Build Backup"
msgstr "Ëîű backup-ôàéë"
-#: ../../standalone/drakbackup_.c:3404 ../../standalone/drakbackup_.c:3974
+#: ../../standalone/drakbackup_.c:4052 ../../standalone/drakbackup_.c:4632
#, fuzzy
msgid "Restore"
msgstr "Âúçńòàíîâè îò ôàéë"
-#: ../../standalone/drakbackup_.c:3553
+#: ../../standalone/drakbackup_.c:4231
msgid ""
-"Please Build backup before to restore it...\n"
-" or verify that your path to save is correct."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3574
-msgid ""
-"Error during sendmail\n"
-" your report mail was not sent\n"
+"Error during sendmail.\n"
+" Your report mail was not sent.\n"
" Please configure sendmail"
msgstr ""
-#: ../../standalone/drakbackup_.c:3598
+#: ../../standalone/drakbackup_.c:4255
#, fuzzy
msgid ""
"The following packages need to be installed:\n"
" @list_of_rpm_to_install"
msgstr "Ńëćäíèòć ïàêćòè ùć áúäàò èíńòàëèđàíè"
-#: ../../standalone/drakbackup_.c:3621
+#: ../../standalone/drakbackup_.c:4278
msgid ""
"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
-#: ../../standalone/drakbackup_.c:3644
+#: ../../standalone/drakbackup_.c:4301
#, fuzzy
msgid "Please select data to restore..."
msgstr "Ìîëÿ, èçáćđćòć èçïîëçâàí ćçèê."
-#: ../../standalone/drakbackup_.c:3665
+#: ../../standalone/drakbackup_.c:4322
#, fuzzy
msgid "Please select media for backup..."
msgstr "Ìîëÿ, èçáćđćòć èçïîëçâàí ćçèê."
-#: ../../standalone/drakbackup_.c:3687
+#: ../../standalone/drakbackup_.c:4344
#, fuzzy
msgid "Please select data to backup..."
msgstr "Ìîëÿ, èçáćđćòć èçïîëçâàí ćçèê."
-#: ../../standalone/drakbackup_.c:3709
+#: ../../standalone/drakbackup_.c:4366
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
msgstr ""
-#: ../../standalone/drakbackup_.c:3730
+#: ../../standalone/drakbackup_.c:4387
msgid "Under Devel ... please wait."
msgstr ""
-#: ../../standalone/drakbackup_.c:3811
+#: ../../standalone/drakbackup_.c:4468
#, fuzzy
msgid "Backup system files"
msgstr "Ëîű backup-ôàéë"
-#: ../../standalone/drakbackup_.c:3813
+#: ../../standalone/drakbackup_.c:4470
#, fuzzy
msgid "Backup user files"
msgstr "Ëîű backup-ôàéë"
-#: ../../standalone/drakbackup_.c:3815
+#: ../../standalone/drakbackup_.c:4472
#, fuzzy
msgid "Backup other files"
msgstr "Ëîű backup-ôàéë"
-#: ../../standalone/drakbackup_.c:3817 ../../standalone/drakbackup_.c:3850
+#: ../../standalone/drakbackup_.c:4474 ../../standalone/drakbackup_.c:4507
msgid "Total Progress"
msgstr ""
-#: ../../standalone/drakbackup_.c:3841
+#: ../../standalone/drakbackup_.c:4498
msgid "files sending by FTP"
msgstr ""
-#: ../../standalone/drakbackup_.c:3845
+#: ../../standalone/drakbackup_.c:4502
#, fuzzy
msgid "Sending files..."
msgstr "Çàïàçè âúâ ôàéë"
-#: ../../standalone/drakbackup_.c:3931
+#: ../../standalone/drakbackup_.c:4588
#, fuzzy
msgid "Backup Now from configuration file"
msgstr "Íàńòđîéêà íà ìđćæàòà"
-#: ../../standalone/drakbackup_.c:3936
+#: ../../standalone/drakbackup_.c:4593
#, fuzzy
msgid "View Backup Configuration."
msgstr "Íàńòđîéêà íà ìđćæàòà"
-#: ../../standalone/drakbackup_.c:3956
+#: ../../standalone/drakbackup_.c:4614
#, fuzzy
msgid "Wizard Configuration"
msgstr "Íàńòđîéêà"
-#: ../../standalone/drakbackup_.c:3961
+#: ../../standalone/drakbackup_.c:4619
#, fuzzy
msgid "Advanced Configuration"
msgstr "Íàńòđîéêà íà ëîêàëíà ìđćæà"
-#: ../../standalone/drakbackup_.c:3966
+#: ../../standalone/drakbackup_.c:4624
#, fuzzy
msgid "Backup Now"
msgstr "Ôàéëîâè ńèńòćìè"
-#: ../../standalone/drakbackup_.c:3996
+#: ../../standalone/drakbackup_.c:4658
msgid "Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:4045
+#: ../../standalone/drakbackup_.c:4707
msgid ""
"options description:\n"
"\n"
@@ -10788,7 +11311,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4075
+#: ../../standalone/drakbackup_.c:4737
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -10797,7 +11320,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4083
+#: ../../standalone/drakbackup_.c:4745
msgid ""
"options description:\n"
"\n"
@@ -10838,45 +11361,45 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4122
+#: ../../standalone/drakbackup_.c:4784
msgid ""
"restore description:\n"
" \n"
-"Only the most recent date will be used ,because with incremental \n"
-"backups it is necesarry to restore one by one each older backups.\n"
+"Only the most recent date will be used, because with incremental \n"
+"backups it is necessary to restore one by one each older backup.\n"
"\n"
-"So if you don't like to restore a user please unselect all his\n"
-"check box.\n"
+"So if you don't want to restore a user please unselect all their\n"
+"check boxes.\n"
"\n"
-"Otherwise, you are able to select only one of this\n"
+"Otherwise, you are able to select only one of these.\n"
"\n"
" - Incremental Backups:\n"
"\n"
"\tThe incremental backup is the most powerful \n"
-"\toption to use backup, this option allow you \n"
-"\tto backup all your data the first time, and \n"
-"\tonly the changed after.\n"
-"\tSo you will be able during the restore\n"
+"\toption to use. This option allows you to \n"
+"\tbackup all of your data the first time, and \n"
+"\tonly the changed data after.\n"
+"\tSo you will be able, during the restore\n"
"\tstep, to restore your data from a specified\n"
"\tdate.\n"
-"\tIf you have not selected this options all\n"
+"\tIf you have not selected this option all\n"
"\told backups are deleted before each backup. \n"
"\n"
"\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4148 ../../standalone/drakbackup_.c:4225
+#: ../../standalone/drakbackup_.c:4810 ../../standalone/drakbackup_.c:4887
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
-#: ../../standalone/drakbackup_.c:4150 ../../standalone/drakbackup_.c:4227
+#: ../../standalone/drakbackup_.c:4812 ../../standalone/drakbackup_.c:4889
msgid ""
" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
-#: ../../standalone/drakbackup_.c:4152 ../../standalone/drakbackup_.c:4229
+#: ../../standalone/drakbackup_.c:4814 ../../standalone/drakbackup_.c:4891
msgid ""
" This program is free software; you can redistribute it and/or modify\n"
" it under the terms of the GNU General Public License as published by\n"
@@ -10893,7 +11416,7 @@ msgid ""
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
msgstr ""
-#: ../../standalone/drakbackup_.c:4166
+#: ../../standalone/drakbackup_.c:4828
msgid ""
"Description:\n"
"\n"
@@ -10933,7 +11456,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4204
+#: ../../standalone/drakbackup_.c:4866
msgid ""
"options description:\n"
"\n"
@@ -10944,7 +11467,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4213
+#: ../../standalone/drakbackup_.c:4875
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -10957,7 +11480,7 @@ msgid ""
"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4243
+#: ../../standalone/drakbackup_.c:4905
msgid ""
"Description:\n"
"\n"
@@ -11038,9 +11561,9 @@ msgstr ""
msgid "Synchronization tool"
msgstr ""
-#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:85
-#: ../../standalone/drakbug_.c:150 ../../standalone/drakbug_.c:152
-#: ../../standalone/drakbug_.c:156
+#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:86
+#: ../../standalone/drakbug_.c:151 ../../standalone/drakbug_.c:153
+#: ../../standalone/drakbug_.c:157
#, fuzzy
msgid "Standalone Tools"
msgstr "Êîíçîëíè èíńòđóìćíòè"
@@ -11092,26 +11615,26 @@ msgstr "Ïđèíòćđ"
msgid "Configuration Wizards"
msgstr "Ìàăüîńíèê çà íàńòđîéêà íà ìđćæàòà"
-#: ../../standalone/drakbug_.c:96
+#: ../../standalone/drakbug_.c:97
#, fuzzy
msgid "Application:"
msgstr "Èäćíòèôèêàöèÿ"
-#: ../../standalone/drakbug_.c:97
+#: ../../standalone/drakbug_.c:98
#, fuzzy
msgid "Package: "
msgstr "Èçáîđ íà ïàêćòè"
-#: ../../standalone/drakbug_.c:98
+#: ../../standalone/drakbug_.c:99
msgid "Kernel:"
msgstr ""
-#: ../../standalone/drakbug_.c:99
+#: ../../standalone/drakbug_.c:100
#, fuzzy
msgid "Release: "
msgstr "Ìîëÿ èçśàêàéòć"
-#: ../../standalone/drakbug_.c:114
+#: ../../standalone/drakbug_.c:115
msgid ""
"\n"
"\n"
@@ -11123,21 +11646,21 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbug_.c:135
+#: ../../standalone/drakbug_.c:136
#, fuzzy
msgid "Report"
msgstr "ïîđò"
-#: ../../standalone/drakbug_.c:165
+#: ../../standalone/drakbug_.c:166
#, fuzzy
msgid "Not installed"
msgstr "Èçőîä îò èíńòàëàöèîííàòà ïđîăđàìà"
-#: ../../standalone/drakbug_.c:182
+#: ../../standalone/drakbug_.c:183
msgid "connecting to Bugzilla wizard ..."
msgstr ""
-#: ../../standalone/drakbug_.c:189
+#: ../../standalone/drakbug_.c:190
#, fuzzy
msgid "No browser available! Please install one"
msgstr "Ìîæćòć äà èçáćđćòć äđóăè ćçèöè, êîèòî ùć áúäàò íàëèöć ńëćäèíńòàëàöèÿòà"
@@ -11587,7 +12110,7 @@ msgstr "Ìÿńòî íà ìîíòèđàíć"
#: ../../standalone/drakfont_.c:909
#, fuzzy
-msgid "Choose the applications that will support the fonts :"
+msgid "Choose the applications that will support the fonts:"
msgstr "Èçáćđćòć äÿëîâćòć, êîèòî èńêàòć äà ôîđìàòèđàòć"
#: ../../standalone/drakfont_.c:918
@@ -11669,19 +12192,19 @@ msgstr "Íÿìàòć ìđćæîâ àäàïòćđ!"
msgid "Post Uninstall"
msgstr "Èçőîä îò èíńòàëàöèîííàòà ïđîăđàìà"
-#: ../../standalone/drakgw_.c:42 ../../standalone/drakgw_.c:195
+#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:188
msgid "Internet Connection Sharing"
msgstr "Ńïîäćëÿíć íà âđúçêàòà ń Èíòćđíćò"
-#: ../../standalone/drakgw_.c:121
+#: ../../standalone/drakgw_.c:119
msgid "Sorry, we support only 2.4 kernels."
msgstr ""
-#: ../../standalone/drakgw_.c:133
+#: ../../standalone/drakgw_.c:130
msgid "Internet Connection Sharing currently enabled"
msgstr "Ńïîäćëÿíćòî íà âđúçêàòà êúì Èíòćđíćò ć âćść àêòèâèđàíî"
-#: ../../standalone/drakgw_.c:134
+#: ../../standalone/drakgw_.c:131
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -11693,31 +12216,31 @@ msgstr ""
"\n"
"Êàêâî èńêàòć äà íàïđàâèòć ?"
-#: ../../standalone/drakgw_.c:138
+#: ../../standalone/drakgw_.c:135
msgid "disable"
msgstr "èçêëțśè"
-#: ../../standalone/drakgw_.c:138 ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:135 ../../standalone/drakgw_.c:160
msgid "dismiss"
msgstr "îńòàâè"
-#: ../../standalone/drakgw_.c:138 ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:135 ../../standalone/drakgw_.c:160
msgid "reconfigure"
msgstr "ïđćíàńòđîéêà"
-#: ../../standalone/drakgw_.c:141
+#: ../../standalone/drakgw_.c:138
msgid "Disabling servers..."
msgstr "Èçêëțśâàíć íà ńúđâúđè ..."
-#: ../../standalone/drakgw_.c:149
+#: ../../standalone/drakgw_.c:146
msgid "Internet connection sharing is now disabled."
msgstr "Ńïîäćëÿíćòî íà Èíòćđíćò âđúçêàòà â ìîìćíòà ć èçêëțśćíî."
-#: ../../standalone/drakgw_.c:158
+#: ../../standalone/drakgw_.c:155
msgid "Internet Connection Sharing currently disabled"
msgstr "Ńïîäćëÿíćòî íà Èíòćđíćò âđúçêàòà ć èçêëțśćíî."
-#: ../../standalone/drakgw_.c:159
+#: ../../standalone/drakgw_.c:156
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
@@ -11729,19 +12252,19 @@ msgstr ""
"\n"
"Êàêâî èńêàòć äà íàïđàâèòć ?"
-#: ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:160
msgid "enable"
msgstr "âêëțśè"
-#: ../../standalone/drakgw_.c:170
+#: ../../standalone/drakgw_.c:167
msgid "Enabling servers..."
msgstr "Âêëțśâàíć íà ńúđâúđè ..."
-#: ../../standalone/drakgw_.c:175
+#: ../../standalone/drakgw_.c:172
msgid "Internet connection sharing is now enabled."
msgstr "Ńïîäćëÿíćòî íà Èíòćđíćò â ìîìćíòà ć âêëțśćíî."
-#: ../../standalone/drakgw_.c:196
+#: ../../standalone/drakgw_.c:189
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
"With that feature, other computers on your local network will be able to use "
@@ -11757,21 +12280,21 @@ msgstr ""
"Îòáćëćæćòć: òđÿáâà âè îòäćëćí çà òîâà ìđćæîâ àäàïòćđ, çà äà óńòàíîâèòć "
"âúòđćűíàòà ńè ìđćæà (LAN)."
-#: ../../standalone/drakgw_.c:222
+#: ../../standalone/drakgw_.c:215
#, c-format
msgid "Interface %s (using module %s)"
msgstr "Èíòćđôćéń %s (èçïîëçâàù ìîäóë %s)"
-#: ../../standalone/drakgw_.c:223
+#: ../../standalone/drakgw_.c:216
#, c-format
msgid "Interface %s"
msgstr "Èíòćđôćéń %s"
-#: ../../standalone/drakgw_.c:231
+#: ../../standalone/drakgw_.c:224
msgid "No network adapter on your system!"
msgstr "Íÿìàòć ìđćæîâ àäàïòćđ!"
-#: ../../standalone/drakgw_.c:232
+#: ../../standalone/drakgw_.c:225
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
@@ -11779,11 +12302,11 @@ msgstr ""
"Â ńèńòćìàòà íć ć îòêđèò ethernet ìđćæîâ àäàïòćđ. Ìîëÿ, ńòàđòèđàéòć "
"èíńòđóìćíòà çà íàńòđîéêà íà őàđäóćđ."
-#: ../../standalone/drakgw_.c:238
+#: ../../standalone/drakgw_.c:231
msgid "Network interface"
msgstr "Ìđćæîâ èíòćđôćéń"
-#: ../../standalone/drakgw_.c:239
+#: ../../standalone/drakgw_.c:232
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -11798,19 +12321,19 @@ msgstr ""
"\n"
"Ńìÿòàì äà óńòàíîâÿ ëîêàëíàòà âè ìđćæà íà òîçè àäàïòćđ."
-#: ../../standalone/drakgw_.c:248
+#: ../../standalone/drakgw_.c:241
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
msgstr ""
"Ìîëÿ èçáćđćòć êîé ìđćæîâ àäàïòćđ äà áúäć âêëțśćí êúì ëîêàëíàòà âè ìđćæà."
-#: ../../standalone/drakgw_.c:266
+#: ../../standalone/drakgw_.c:259
#, fuzzy
msgid "Network interface already configured"
msgstr "Ôóíêöèîíàëíîńòòà íà ìđćæàòà íć ć íàńòđîćíà"
-#: ../../standalone/drakgw_.c:267
+#: ../../standalone/drakgw_.c:260
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -11820,17 +12343,17 @@ msgid ""
"You can do it manually but you need to know what you're doing."
msgstr ""
-#: ../../standalone/drakgw_.c:272
+#: ../../standalone/drakgw_.c:265
#, fuzzy
msgid "Automatic reconfiguration"
msgstr "Àâòîìàòèśíà íàńòđîéêà íà CUPS"
-#: ../../standalone/drakgw_.c:273
+#: ../../standalone/drakgw_.c:266
#, fuzzy
msgid "Show current interface configuration"
msgstr "Ïîïđàâè íàńòđîéêèòć íà ïđèíòćđ"
-#: ../../standalone/drakgw_.c:275
+#: ../../standalone/drakgw_.c:268
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -11841,7 +12364,7 @@ msgid ""
"Driver: %s"
msgstr ""
-#: ../../standalone/drakgw_.c:287
+#: ../../standalone/drakgw_.c:280
msgid ""
"I can keep your current configuration and assume you already set up a DHCP "
"server; in that case please verify I correctly read the C-Class Network that "
@@ -11853,55 +12376,43 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakgw_.c:292
+#: ../../standalone/drakgw_.c:285
msgid "C-Class Local Network"
msgstr ""
-#: ../../standalone/drakgw_.c:293
+#: ../../standalone/drakgw_.c:286
#, fuzzy
msgid "(This) DHCP Server IP"
msgstr "IP íà CUPS ńúđâúđà"
-#: ../../standalone/drakgw_.c:294
+#: ../../standalone/drakgw_.c:287
msgid "Re-configure interface and DHCP server"
msgstr ""
-#: ../../standalone/drakgw_.c:301
+#: ../../standalone/drakgw_.c:294
msgid "The Local Network did not finish with `.0', bailing out."
msgstr ""
-#: ../../standalone/drakgw_.c:312
+#: ../../standalone/drakgw_.c:305
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr "Âúçìîæćí êîíôèêò ń àäđćńèòć â LAN ń íàńòđîéêàòà íà %s!\n"
-#: ../../standalone/drakgw_.c:320
-msgid "Firewalling configuration detected!"
-msgstr "Îòêđèòà ć íàńòđîéêà íà Çàùèòíà Ńòćíà !"
-
-#: ../../standalone/drakgw_.c:321
-msgid ""
-"Warning! An existing firewalling configuration has been detected. You may "
-"need some manual fix after installation."
-msgstr ""
-"Âíèìàíèć ! Îòêđèòà ć íàńòđîéêà íà Çàùèòíà Ńòćíà. Ìîæć äà ńć íàëîæè íÿêàêâà "
-"đúśíà ïîïđàâêà ńëćä èíńòàëàöèÿòà."
-
-#: ../../standalone/drakgw_.c:328
+#: ../../standalone/drakgw_.c:315
msgid "Configuring..."
msgstr "Íàńòđîéêà ..."
-#: ../../standalone/drakgw_.c:329
+#: ../../standalone/drakgw_.c:316
msgid "Configuring scripts, installing software, starting servers..."
msgstr ""
"Íàńòđîéâàùè ńêđèïòîâć, èíńòàëèđàíć íà ńîôòóćđ, ńòàđòèđàíć íà ńúđâúđè..."
-#: ../../standalone/drakgw_.c:365
+#: ../../standalone/drakgw_.c:352
#, c-format
msgid "Problems installing package %s"
msgstr "Ïđîáëćìè ń èíńòàëèđàíćòî íà ïàêćòà %s"
-#: ../../standalone/drakgw_.c:549
+#: ../../standalone/drakgw_.c:485
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
@@ -11911,23 +12422,23 @@ msgstr ""
"Ńćăà ìîæćòć äà ńïîäćëèòć Èíòćđíćò âđúçêàòà ńè ń äđóăè êîìïțòđè â ëîêàëíàòà "
"âè ìđćæà èçïîëçâàéêè àâòîìàòèśíà ìđćæîâà íàńòđîéêà (DHCP)."
-#: ../../standalone/drakgw_.c:566
+#: ../../standalone/drakgw_.c:504
msgid "The setup has already been done, but it's currently disabled."
msgstr "Óńòàíîâêàòà âćść ć íàïđàâćíà, íî â ìîìćíòà ć èçêëțśćíà."
-#: ../../standalone/drakgw_.c:567
+#: ../../standalone/drakgw_.c:505
msgid "The setup has already been done, and it's currently enabled."
msgstr "Óńòàíîâêàòà âćść ć íàïđàâćíà è â ìîìćíòà ć âêëțśćíà."
-#: ../../standalone/drakgw_.c:568
+#: ../../standalone/drakgw_.c:506
msgid "No Internet Connection Sharing has ever been configured."
msgstr "Íÿìà íàńòđîéâàíî ńïîäćëÿíć íà Èíòćđíćò âđúçêàòà."
-#: ../../standalone/drakgw_.c:573
+#: ../../standalone/drakgw_.c:511
msgid "Internet connection sharing configuration"
msgstr "Íàńòđîéêà íà ńïîäćëÿíćòî íà Èíòćđíćò âđúçêàòà"
-#: ../../standalone/drakgw_.c:580
+#: ../../standalone/drakgw_.c:518
#, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -11942,6 +12453,158 @@ msgstr ""
"\n"
"Öúêíćòć ``Íàńòđîé'', àêî èńêàòć äà ńòàđòèđàíć óńòàíîâÿâàùèÿ ìàăüîńíèê."
+#: ../../standalone/draksound_.c:46
+#, fuzzy
+msgid "No Sound Card detected!"
+msgstr "Íć ńâúđçàí"
+
+#: ../../standalone/draksound_.c:47
+msgid ""
+"No Sound Card has been detected on your machine. Please verify that a Linux-"
+"supported Sound Card is correctly plugged in.\n"
+"\n"
+"\n"
+"You can visit our hardware database at:\n"
+"\n"
+"\n"
+"http://www.linux-mandrake.com/en/hardware.php3"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:32
+msgid "package ImageMagick is required for correct working"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:76
+#, fuzzy
+msgid "first step creation"
+msgstr "ńúäàâàíć íà ńòàđòèđàùà äèńêćòà"
+
+#: ../../standalone/draksplash_.c:77
+#, fuzzy
+msgid "final resolution"
+msgstr "Đàçäćëèòćëíà ńïîńîáíîńò"
+
+#: ../../standalone/draksplash_.c:78 ../../standalone/draksplash_.c:170
+#, fuzzy
+msgid "choose image file"
+msgstr "Èçáćđćòć ôàéë"
+
+#: ../../standalone/draksplash_.c:79
+#, fuzzy
+msgid "Theme name"
+msgstr "Îáùî èìć"
+
+#: ../../standalone/draksplash_.c:81
+msgid "make bootsplash step 2"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:82
+#, fuzzy
+msgid "go to lilosplash configuration"
+msgstr "Ńëćä èíńòàëàöèîííà íàńòđîéêà"
+
+#: ../../standalone/draksplash_.c:83
+#, fuzzy
+msgid "quit"
+msgstr "Èçőîä"
+
+#: ../../standalone/draksplash_.c:84
+#, fuzzy
+msgid "save theme"
+msgstr "Èíńòàëèđàíć íà ńèńòćìàòà"
+
+#: ../../standalone/draksplash_.c:85
+msgid "browse"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:98 ../../standalone/draksplash_.c:159
+#, fuzzy
+msgid "Configure bootsplash picture"
+msgstr "Íàńòđîéêà íà óńëóăèòć"
+
+#: ../../standalone/draksplash_.c:99
+msgid "x coordinate of text box in number of character"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:100
+msgid "y coordinate of text box in number of character"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:101
+msgid "text width"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:102
+msgid "text box height"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:103
+msgid "the progress bar x coordinate of its upper left corner"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:104
+msgid "the progress bar y coordinate of its upper left corner"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:105
+msgid "the width of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:106
+msgid "the heigth of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:107
+msgid "the color of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:119
+#, fuzzy
+msgid "go back"
+msgstr "Loopback"
+
+#: ../../standalone/draksplash_.c:120
+#, fuzzy
+msgid "preview"
+msgstr "óńòđîéńòâî"
+
+#: ../../standalone/draksplash_.c:121
+#, fuzzy
+msgid "choose color"
+msgstr "Èçáćđćòć ìîíèòîđ"
+
+#: ../../standalone/draksplash_.c:124
+msgid "Display logo on Console"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:125
+msgid "Make kernel message quiet by default"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:161 ../../standalone/draksplash_.c:330
+#, c-format
+msgid "This theme haven't yet any bootsplash in %s !"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:213
+msgid "saving Bootsplash theme..."
+msgstr ""
+
+#: ../../standalone/draksplash_.c:436
+#, fuzzy
+msgid "ProgressBar color selection"
+msgstr "Èçáîđ ìîäćë íà ïđèíòćđà"
+
+#: ../../standalone/draksplash_.c:454
+#, fuzzy
+msgid "You must choose an image file first!"
+msgstr "Âúâćäćòć URI íà ïćśàòàùî óńòđîéńòâî"
+
+#: ../../standalone/draksplash_.c:463
+#, fuzzy
+msgid "Generating preview ..."
+msgstr "Çàńèśàíć íà óńòđîéńòâà ..."
+
#: ../../standalone/drakxtv_.c:49
msgid ""
"XawTV isn't installed!\n"
@@ -12034,11 +12697,11 @@ msgid ""
msgstr ""
#: ../../standalone/drakxtv_.c:109
-msgid "TV norm :"
+msgid "TV norm:"
msgstr ""
#: ../../standalone/drakxtv_.c:110
-msgid "Area :"
+msgid "Area:"
msgstr ""
#: ../../standalone/drakxtv_.c:114
@@ -12116,7 +12779,7 @@ msgstr "Íć ìîăà äà ïóńíà îáíîâÿâàíćòî !!!\n"
msgid "The change is done, but to be effective you must logout"
msgstr ""
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:517
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:515
msgid "logdrake"
msgstr "ëîăäđćéê"
@@ -12299,7 +12962,7 @@ msgstr "èíòćđćńćí"
#: ../../standalone/logdrake_.c:431
msgid ""
-"You will receive an alert if one of the selected service is no more running"
+"You will receive an alert if one of the selected services is no more running"
msgstr ""
#: ../../standalone/logdrake_.c:443
@@ -12321,19 +12984,19 @@ msgstr "Íàńòđîéêà íà öâćòîâć"
msgid "Please enter your email address below "
msgstr "Ìîëÿ, îïèòàéòć îòíîâî"
-#: ../../standalone/logdrake_.c:499
+#: ../../standalone/logdrake_.c:497
msgid "Save as.."
msgstr "Çàïàçè êàòî..."
-#: ../../standalone/mousedrake_.c:43
+#: ../../standalone/mousedrake_.c:45
msgid "Please, choose the type of your mouse."
msgstr "Ìîëÿ, èçáćđćòć òèï íà ìèűêàòà."
-#: ../../standalone/mousedrake_.c:57
+#: ../../standalone/mousedrake_.c:58
msgid "Emulate third button?"
msgstr "Äà ńèìóëèđàì ëè òđćòè áóòîí ?"
-#: ../../standalone/printerdrake_.c:48
+#: ../../standalone/printerdrake_.c:57
#, fuzzy
msgid "Reading printer data ..."
msgstr "Śćòćíć íà äàííè îò ïđèíòćđà ..."
@@ -12346,34 +13009,45 @@ msgstr "Çàńèśàíć íà óńòđîéńòâà ..."
msgid "Test ports"
msgstr "Òćńòâàíć ïîđòîâćòć"
-#: ../../standalone/scannerdrake_.c:52
+#: ../../standalone/scannerdrake_.c:53 ../../standalone/scannerdrake_.c:68
+#: ../../standalone/scannerdrake_.c:81
#, c-format
-msgid "%s found on %s, configure it ?"
+msgid "The %s is not supported by this version of Mandrake Linux."
msgstr ""
+#: ../../standalone/scannerdrake_.c:56
+#, fuzzy, c-format
+msgid "%s found on %s, configure it?"
+msgstr "Èńêàòć ëè äà íàńòđîèòć ïćśàòà ?"
+
#: ../../standalone/scannerdrake_.c:59
+#, c-format
+msgid "%s is not in the scanner database, configure it manually?"
+msgstr ""
+
+#: ../../standalone/scannerdrake_.c:65
#, fuzzy
msgid "Select a scanner"
msgstr "Èçáćđćòć ăđàôèśíà êàđòà"
-#: ../../standalone/scannerdrake_.c:79
+#: ../../standalone/scannerdrake_.c:93
#, c-format
msgid "This %s scanner is unsupported"
msgstr ""
-#: ../../standalone/scannerdrake_.c:93
+#: ../../standalone/scannerdrake_.c:107
#, c-format
msgid ""
"Scannerdrake was not able to detect your %s scanner.\n"
"Please select the device where your scanner is plugged"
msgstr ""
-#: ../../standalone/scannerdrake_.c:95
+#: ../../standalone/scannerdrake_.c:109
#, fuzzy
msgid "choose device"
msgstr "Ńòàđòèđàùî óńòđîéńòâî"
-#: ../../standalone/scannerdrake_.c:101
+#: ../../standalone/scannerdrake_.c:115
#, c-format
msgid ""
"This %s scanner must be configured by printerdrake.\n"
@@ -12381,7 +13055,7 @@ msgid ""
"section."
msgstr ""
-#: ../../standalone/scannerdrake_.c:106
+#: ../../standalone/scannerdrake_.c:120
#, c-format
msgid ""
"Your %s scanner has been configured.\n"
@@ -12389,48 +13063,18 @@ msgid ""
"applications menu."
msgstr ""
-#: ../../standalone/service_harddrake_.c:57
+#: ../../standalone/service_harddrake_.c:39
#, c-format
msgid "Some devices in the \"%s\" hardware class were removed:\n"
msgstr ""
-#: ../../standalone/service_harddrake_.c:61
+#: ../../standalone/service_harddrake_.c:43
#, c-format
msgid ""
"\n"
"Some devices in the %s class were added:\n"
msgstr ""
-#: ../../standalone/tinyfirewall_.c:30
-msgid "Firewalling Configuration"
-msgstr "Íàńòđîéêà íà Çàùèòíà Ńòćíà"
-
-#: ../../standalone/tinyfirewall_.c:43
-msgid "Firewalling configuration"
-msgstr "Íàńòđîéêà íà Çàùèòíà Ńòćíà"
-
-#: ../../standalone/tinyfirewall_.c:78
-msgid ""
-"Firewalling\n"
-"\n"
-"You already have set up a firewall.\n"
-"Click on Configure to change or remove the firewall"
-msgstr ""
-"Çàùèòíà ńòćíà\n"
-"\n"
-"Âćść ńòć íàńòđîèëè çàùèòíà ńòćíà.\n"
-"Öúêíćòć Íàńòđîé, çà äà óńòàíîâèòć ńòàíäàđòíà çàùèòíà ńòćíà"
-
-#: ../../standalone/tinyfirewall_.c:82
-msgid ""
-"Firewalling\n"
-"\n"
-"Click on Configure to set up a standard firewall"
-msgstr ""
-"Çàùèòíà ńòćíà\n"
-"\n"
-"Öúêíćòć Íàńòđîé, çà äà óńòàíîâèòć ńòàíäàđòíà çàùèòíà ńòćíà"
-
#: ../../steps.pm_.c:14
msgid "Choose your language"
msgstr "Èçáîđ íà ćçèê"
@@ -12504,222 +13148,7 @@ msgstr "Èíńòàëèđàíć íà ńèńòćìàòà"
msgid "Exit install"
msgstr "Èçőîä îò èíńòàëàöèîííàòà ïđîăđàìà"
-#: ../../tinyfirewall.pm_.c:9
-msgid ""
-"tinyfirewall configurator\n"
-"\n"
-"This configures a personal firewall for this Mandrake Linux machine.\n"
-"For a powerful dedicated firewall solution, please look to the\n"
-"specialized MandrakeSecurity Firewall distribution."
-msgstr ""
-"Íàńòđîéśèê çà ìàëêà çàùèòíà ńòćíà\n"
-"\n"
-"Òîâà íàńòđîéâà ïćđńîíàëíà çàùèòíà ńòćíà çà òàçè Mandrake Linux ìàűèíà.\n"
-"Çà ìîùíî ïîńòâćòćíî íà çàùèòàòà đćűćíèć, ìîëć, ïîăëćäíćòć ńïćöèàëèçèđàíàòà\n"
-"MandrakeSecurity Firewall äèńòđèáóöèÿ."
-
-#: ../../tinyfirewall.pm_.c:14
-msgid ""
-"We'll now ask you questions about which services you'd like to allow\n"
-"the Internet to connect to. Please think carefully about these\n"
-"questions, as your computer's security is important.\n"
-"\n"
-"Please, if you're not currently using one of these services, firewall\n"
-"it off. You can change this configuration anytime you like by\n"
-"re-running this application!"
-msgstr ""
-"Ńćăà ùć âè çàäàäćì âúïđîńè çà òîâà, êúì êîè óńëóăè áèőòć èńêàëè äà\n"
-"ïîçâîëèòć íà Èíòćđíćò äà ńâúđçâà. Ìîëÿ, ïîìèńëćòć âíèìàòćëíî ïî\n"
-"òćçè âúïđîńè, òúé êàòî ńèăóđíîńòòà íà êîìïțòúđà âè ć âàæíà.\n"
-"\n"
-"Ìîëÿ, àêî â ìîìćíòà íć èçïîëçâàòć íÿêîÿ îò óńëóăèòć, çàùèòćòć ÿ.\n"
-"Ìîæćòć äà ïđîìćíèòć íàńòđîéêàòà ïî âńÿêî âđćìć, àêî èńêàòć, êàòî\n"
-"ńòàđòèđàòć îòíîâî òîâà ïđèëîæćíèć !"
-
-#: ../../tinyfirewall.pm_.c:21
-msgid ""
-"Are you running a web server on this machine that you need the whole\n"
-"Internet to see? If you are running a webserver that only needs to be\n"
-"accessed by this machine, you can safely answer NO here.\n"
-"\n"
-msgstr ""
-"Èçïîëçâàòć ëè Web ńúđâúđ íà òàçè ìàűèíà, êîéòî èńêàòć öćëèÿò Èíòćđíćò\n"
-"çà âèæäà ? Àêî èçïîëçâàòć, êîéòî òđÿáâà äà áúäć äîńòúïćí îò òàçè ìàűèíà,\n"
-"ìîæćòć ńïîêîéíî äà îòăîâîđèòć ń Íć òóê.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:26
-msgid ""
-"Are you running a name server on this machine? If you didn't set one\n"
-"up to give away IP and zone information to the whole Internet, please\n"
-"answer no.\n"
-"\n"
-msgstr ""
-"Èçïîëçâàòć ëè Name ńúđâúđ íà òàçè ìàűèíà ? Àêî íć èńêàòć äà ïđćäîńòàâÿòć\n"
-"èíôîđìàöèÿ çà IP-òà è çîíè íà öćëèÿ Èíòćđíćò, ìîëÿ, îòăîâîđćòć Íć.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:31
-msgid ""
-"Do you want to allow incoming Secure Shell (ssh) connections? This\n"
-"is a telnet-replacement that you might use to login. If you're using\n"
-"telnet now, you should definitely switch to ssh. telnet is not\n"
-"encrypted -- so some attackers can steal your password if you use\n"
-"it. ssh is encrypted and doesn't allow for this eavesdropping."
-msgstr ""
-"Èńêàòć ëè äà đàçđćűèòć âőîäÿùè Secure SHell (SSH) âđúçêè ? Òîâà ć\n"
-"çàìćńòèòćë íà telnet, êîéòî ìîæćòć äà èçïîëçâàòć çà âëèçàíć. Àêî â\n"
-"ìîìćíòà èçïîëçâàòć telnet, îïđćäćëćíî òđÿáâà äà ïđćìèíćòć êúì SSH.\n"
-"Telnet íć ć êđèïòèđàí -- òàêà ść íÿêîè àòàêóâàùè ìîăàò äà îòêđàäíàò\n"
-"ïàđîëàòà âè, àêî ăî èçïîëçâàòć. SSH ć êđèïòèđàí è èçêëțśâà òàêàâà\n"
-"èçäúíêà."
-
-#: ../../tinyfirewall.pm_.c:36
-msgid ""
-"Do you want to allow incoming telnet connections?\n"
-"This is horribly unsafe, as we explained in the previous screen. We\n"
-"strongly recommend answering No here and using ssh in place of\n"
-"telnet.\n"
-msgstr ""
-"Èńêàòć ëè äà ïîçâîëèòć âőîäÿùè telnet âđúçêè ?\n"
-"Òîâà ć óæàńíî íćńèăóđíî, êàêòî îáÿńíèőìć â ïđćäèűíèÿ ćêđàí. Ńèëíî\n"
-"âè ïđćïîđúśâàìć äà îòăîâîđèòć Íć òóê è äà èçïîëçâàòć SSH âìćńòî\n"
-"telnet.\n"
-
-#: ../../tinyfirewall.pm_.c:41
-msgid ""
-"Are you running an FTP server here that you need accessible to the\n"
-"Internet? If you are, we strongly recommend that you only use it for\n"
-"Anonymous transfers. Any passwords sent by FTP can be stolen by some\n"
-"attackers, since FTP also uses no encryption for transferring passwords.\n"
-msgstr ""
-"Èìàòć ëè FTP ńúđâúđ òóê, êîéòî òđÿáâà äà ć äîńòúïćí çà Èíòćđíćò ?\n"
-"Àêî èìàòć, ńèëíî âè ïđćïîđúśâàìć äà ăî èçïîëçâàòć çà àíîíèìíè òđàíńôćđè.\n"
-"Âńèśêè ïàđîëè èçïđàùàíè ïî FTP ìîăàò äà áúäàò îòêđàäíàòè îò àòàêóâàùà\n"
-"ëèśíîńò, òúé êàòî FTP íć èçïîëçâà êđèïòîăđàôèÿ çà ïđćőâúđëÿíćòî èì.\n"
-
-#: ../../tinyfirewall.pm_.c:46
-msgid ""
-"Are you running a mail server here? If you're sending you \n"
-"messages through pine, mutt or any other text-based mail client,\n"
-"you probably are. Otherwise, you should firewall this off.\n"
-"\n"
-msgstr ""
-"Èìàòć ëè ïîùćíńêè ńúđâúđ òóê ? Àêî èçïđàùàòć ńúîáùćíèÿòà ńè\n"
-"śđćç pine, mutt èëè êàêúâòî è äà ć äđóă òćêńòîâ ïîùćíńêè êëèćíò,\n"
-"ìîæć áè èìàòć. Â ïđîòèâćí ńëóśàé, òđÿáâà äà çàùèòèòć òîâà.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:51
-msgid ""
-"Are you running a POP or IMAP server here? This would\n"
-"be used to host non-web-based mail accounts for people via \n"
-"this machine.\n"
-"\n"
-msgstr ""
-"Èìàòć ëè POP èëè IMAP ńúđâúđ òóê ? Òîâà ìîæć äà áúäć\n"
-"èçïîëçâàíî äà ïđèțòÿâàíć íà íć-web-áàçèđàíè ïîùćíńêè àêàóíòè\n"
-"ïđćç òàçè ìàűèíà.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:56
-msgid ""
-"You appear to be running a 2.2 kernel. If your network IP\n"
-"is automatically set by a computer in your home or office \n"
-"(dynamically assigned), we need to allow for this. Is\n"
-"this the case?\n"
-msgstr ""
-"Ńÿêàű èçïîëçâàòć 2.2 ÿäđî. Àêî ìđćæîâîòî IP àâòîìàòèśíî ńć\n"
-"îïđćäćëÿ îò êîìïțòúđ ó âàń èëè â îôèńà (äèíàìèśíî ïîńòàâÿíî),\n"
-"òđÿáâà äà ïîçâîëèì òîâà. Òàêúâ ëè ć ńëóśàÿ ?\n"
-
-#: ../../tinyfirewall.pm_.c:61
-msgid ""
-"Is your computer getting time syncronized to another computer?\n"
-"Mostly, this is used by medium-large Unix/Linux organizations\n"
-"to synchronize time for logging and such. If you're not part\n"
-"of a larger office and haven't heard of this, you probably \n"
-"aren't."
-msgstr ""
-"Âđćìćòî íà êîìïțòúđà âè ńèíőđîíèçèđà ëè ńć ń äđóă êîìïțòúđ ?\n"
-"Òîâà ăëàâíî ńć èçïîëçâà â ńđćäíî-ăîëćìè Unix/Linux îđăàíèçàöèè,\n"
-"çà äà ńè ńèíőđîíèçèđà âđćìćòî çà çàïèńâàíć íà ńòàòóńà è òàêèâà đàáîòè.\n"
-"Àêî íć ńòć śàńò îò ïî-ăîëÿì îôèń è íć ńòć śóâàëè çà òàêîâà íćùî,\n"
-"ìîæć áè íć âè òđÿáâà."
-
-#: ../../tinyfirewall.pm_.c:66
-msgid ""
-"Configuration complete. May we write these changes to disk?\n"
-"\n"
-"\n"
-"\n"
-msgstr ""
-"Íàńòđîéêàòà çàâúđűćíà. Äà çàïèűćì ëè ïđîìćíèòć íà äèńêà ?\n"
-"\n"
-"\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:82
-#, c-format
-msgid "Can't open %s: %s\n"
-msgstr "Íć ìîăà äà îòâîđÿ %s: %s\n"
-
-#: ../../tinyfirewall.pm_.c:84
-#, c-format
-msgid "Can't open %s for writing: %s\n"
-msgstr "Íć ìîăà äà îòâîđÿ %s çà çàïèń: %s\n"
-
-#: ../../tinyfirewall.pm_.c:178
-msgid "No I don't need DHCP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:178
-msgid "Yes I need DHCP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:179
-msgid "No I don't need NTP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:179
-msgid "Yes I need NTP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:180 ../../tinyfirewall.pm_.c:184
-msgid "Don't Save"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:180 ../../tinyfirewall.pm_.c:184
-#: ../../tinyfirewall.pm_.c:204
-msgid "Save & Quit"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:195 ../../tinyfirewall.pm_.c:199
-#, fuzzy
-msgid "Firewall Configuration Wizard"
-msgstr "Íàńòđîéêà íà Çàùèòíà Ńòćíà"
-
-#: ../../tinyfirewall.pm_.c:197
-msgid "No (firewall this off from the internet)"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:198
-msgid "Yes (allow this through the firewall)"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:230
-#, fuzzy
-msgid "Please Wait... Verifying installed packages"
-msgstr "Ìîëÿ, èçśàêàéòć, ïîäăîòâÿíć íà èíńòàëàöèÿòà"
-
-#: ../../tinyfirewall.pm_.c:236
-#, c-format
-msgid ""
-"Failure installing the needed packages : %s and Bastille.\n"
-" Try to install them manually."
-msgstr ""
-
-#: ../../ugtk.pm_.c:619
+#: ../../ugtk.pm_.c:594
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
@@ -12852,6 +13281,10 @@ msgid "Graphical Environment"
msgstr "Ăđàôèśíà ńđćäà"
#: ../../share/compssUsers:999
+msgid "Development"
+msgstr "Đàçđàáîòêà"
+
+#: ../../share/compssUsers:999
msgid "Apache, Pro-ftpd"
msgstr "Apache è Pro-ftpd"
@@ -12962,95 +13395,217 @@ msgstr "Ìóëòèìćäèÿ - îïèśàíć íà CD"
msgid "Scientific Workstation"
msgstr "Íàóśíà đàáîòíà ńòàíöèÿ"
-#~ msgid "$mode: $warning"
-#~ msgstr "$mode: $warning"
+#~ msgid ""
+#~ "The first time you try the X configuration, you may not be very "
+#~ "satisfied\n"
+#~ "with its display (screen is too small, shifted left or right...). Hence,\n"
+#~ "even if X starts up correctly, DrakX then asks you if the configuration\n"
+#~ "suits you. It will also propose to change it by displaying a list of "
+#~ "valid\n"
+#~ "modes it could find, asking you to select one.\n"
+#~ "\n"
+#~ "As a last resort, if you still cannot get X to work, choose \"Change\n"
+#~ "graphics card\", select \"Unlisted card\", and when prompted on which\n"
+#~ "server, choose \"FBDev\". This is a failsafe option which works with any\n"
+#~ "modern graphics card. Then choose \"Test again\" to be sure."
+#~ msgstr ""
+#~ "Ïúđâèÿ ïúò, êîăàòî îïèòàòć íàńòđîéêàòà íà X, ìîæć áè íÿìà äà ńòć äîâîëíè "
+#~ "îò\n"
+#~ "îò âèäà (ćêđàíúò ć ïđćêàëćíî ìàëúê, îòìćńòćí íàëÿâî èëè íàäÿńíî...). "
+#~ "Âúïđćêè\n"
+#~ "òîâà, äàæć àêî X òđúăíć êàòî őîđàòà, DrakX ùć âè ïîïèòà äàëè íàńòđîéêàòà "
+#~ "âè\n"
+#~ "äîïàäà. Ńúùî òàêà, ść âè ïđćäëîæè ïđîìÿíà, êàòî ïîêàæć ńïèńúê íà âàëèäíè\n"
+#~ "đćæèìè, êîèòî ć óńïÿë äà íàìćđè, ń ìîëáà äà ïîńîśèòć ćäèí.\n"
+#~ "\n"
+#~ "Êàòî ïîńëćäíà âúçìîæíîńò, àêî âńć îùć íć ìîæćòć äà ïîäêàđàòć X, èçáćđćòć\n"
+#~ "\"Ïđîìÿíà íà ăđàôèśíàòà êàđòà\", ïîńîśèòć \"Íćèçáđîćíà êàđòà\", è, "
+#~ "êîăàòî\n"
+#~ "áúäćòć ïîïèòàíè êîé ńúđâúđ äà áúäć èçïîëçâàí, èçáćđćòć \"FBDev\". Òîâà ć\n"
+#~ "áćçăđćűíà îïöèÿ, êîÿòî đàáîòè íà âńÿêà ïî-íîâà êàđòà. Òîăàâà èçáćđćòć "
+#~ "\"Îïèòàé ïàê\", çà äà ńòć ńèăóđíè."
+
+#~ msgid "LBA (doesn't work on old BIOSes)"
+#~ msgstr "LBA (íć đàáîòè íà ńòàđè BIOS-è)"
+
+#~ msgid "You don't have any partitions!"
+#~ msgstr "Íÿìàòć íèêàêâè äÿëîâć!"
-#, fuzzy
#~ msgid ""
-#~ "This level is to be used with care. It makes your system more easy to "
-#~ "use,\n"
-#~ " but very sensitive: it must not be used for a machine "
-#~ "connected to others\n"
-#~ " or to the Internet. There is no password access."
+#~ "DiskDrake failed to read correctly the partition table.\n"
+#~ "Continue at your own risk!"
#~ msgstr ""
-#~ "Òîâà íèâî ńć èçïîëçâà ń âíèìàíèć. Òîâà êàđà ńèńòćìàòà âè ïî-ëćńíà çà\n"
-#~ "óïîòđćáà, íî ć ïî-śóâńòâèòćëíî: íć òđÿáâà äà áúäć èçïîëçâàíà íà ìàűèíè\n"
-#~ "ńâúđçàíè ń äđóăè èëè ïî Èíòćđíćò. Íÿìà äîńòúï ń ïàđîëè."
+#~ "DiskDrake íć óńïÿ äà đàçśćòć ïđàâèëíî òàáëèöàòà íà äÿëîâćòć.\n"
+#~ "Ïđîäúëæèòć íà ńîáńòâćí đèńê !"
-#, fuzzy
#~ msgid ""
-#~ "With this security level, the use of this system as a server becomes "
-#~ "possible.\n"
-#~ " The security is now high enough to use the system as a "
-#~ "server which can accept\n"
-#~ " connections from many clients. Note: if your machine is "
-#~ "only a client on the Internet, you should choose a lower level."
+#~ "I can't read your partition table, it's too corrupted for me :(\n"
+#~ "I'll try to go on blanking bad partitions"
#~ msgstr ""
-#~ "Ń òîâà íèâî íà ńèăóđíîńò, ïîëçâàíćòî íà ńèńòćìàòà êàòî ńúđâúđ ńòàâà "
-#~ "âúçìîæíî.\n"
-#~ "Ńèăóđíîńòòà ńćăà ć äîńòàòúśíî ăîëÿìà äà ńć èçïîëçâà ńèńòćìàòà êàòî\n"
-#~ "ńúđâúđ ïđèćìàù âđúçêè îò ìíîăî êëèćíòè. "
+#~ "Íć ìîăà äà đàçśćòà òàáëèöàòà íà äÿëîâćòć, ïđćêàëćíî ć ïîâđćäćíà :(\n"
+#~ "Ùć ńć îïèòàì äà ïđîäúëæà äà đàçśèńòâàì ëîűèòć äÿëîâć"
-#, fuzzy
-#~ msgid "Basic Options"
-#~ msgstr "Îïöèè"
+#~ msgid "Firewalling Configuration"
+#~ msgstr "Íàńòđîéêà íà Çàùèòíà Ńòćíà"
-#, fuzzy
-#~ msgid "Security Checks"
-#~ msgstr "Ńèăóđíîńò"
+#~ msgid "Firewalling configuration"
+#~ msgstr "Íàńòđîéêà íà Çàùèòíà Ńòćíà"
-#, fuzzy
-#~ msgid "Please choose your CD space"
-#~ msgstr "Ìîëÿ, èçáćđćòć ïîäđćæäàíć íà êëàâèàòóđàòà."
+#~ msgid ""
+#~ "Firewalling\n"
+#~ "\n"
+#~ "You already have set up a firewall.\n"
+#~ "Click on Configure to change or remove the firewall"
+#~ msgstr ""
+#~ "Çàùèòíà ńòćíà\n"
+#~ "\n"
+#~ "Âćść ńòć íàńòđîèëè çàùèòíà ńòćíà.\n"
+#~ "Öúêíćòć Íàńòđîé, çà äà óńòàíîâèòć ńòàíäàđòíà çàùèòíà ńòćíà"
-#, fuzzy
-#~ msgid "Please enter the cd writer speed"
-#~ msgstr "Ìîëÿ, ïđîáâàéòć ìèűêàòà ńè"
+#~ msgid ""
+#~ "Firewalling\n"
+#~ "\n"
+#~ "Click on Configure to set up a standard firewall"
+#~ msgstr ""
+#~ "Çàùèòíà ńòćíà\n"
+#~ "\n"
+#~ "Öúêíćòć Íàńòđîé, çà äà óńòàíîâèòć ńòàíäàđòíà çàùèòíà ńòćíà"
-#, fuzzy
-#~ msgid "Please check if you want to include install boot on your CD."
-#~ msgstr "Ìîëÿ, èçáćđćòć ïàêćòèòć, êîèòî èńêàòć äà èíńòàëèđàòć."
+#~ msgid ""
+#~ "We'll now ask you questions about which services you'd like to allow\n"
+#~ "the Internet to connect to. Please think carefully about these\n"
+#~ "questions, as your computer's security is important.\n"
+#~ "\n"
+#~ "Please, if you're not currently using one of these services, firewall\n"
+#~ "it off. You can change this configuration anytime you like by\n"
+#~ "re-running this application!"
+#~ msgstr ""
+#~ "Ńćăà ùć âè çàäàäćì âúïđîńè çà òîâà, êúì êîè óńëóăè áèőòć èńêàëè äà\n"
+#~ "ïîçâîëèòć íà Èíòćđíćò äà ńâúđçâà. Ìîëÿ, ïîìèńëćòć âíèìàòćëíî ïî\n"
+#~ "òćçè âúïđîńè, òúé êàòî ńèăóđíîńòòà íà êîìïțòúđà âè ć âàæíà.\n"
+#~ "\n"
+#~ "Ìîëÿ, àêî â ìîìćíòà íć èçïîëçâàòć íÿêîÿ îò óńëóăèòć, çàùèòćòć ÿ.\n"
+#~ "Ìîæćòć äà ïđîìćíèòć íàńòđîéêàòà ïî âńÿêî âđćìć, àêî èńêàòć, êàòî\n"
+#~ "ńòàđòèđàòć îòíîâî òîâà ïđèëîæćíèć !"
-#~ msgid "Url should begin with 'ftp:'"
-#~ msgstr "URL òđÿáâà äà çàïîśâà ń 'ftp:'"
+#~ msgid ""
+#~ "Are you running a web server on this machine that you need the whole\n"
+#~ "Internet to see? If you are running a webserver that only needs to be\n"
+#~ "accessed by this machine, you can safely answer NO here.\n"
+#~ "\n"
+#~ msgstr ""
+#~ "Èçïîëçâàòć ëè Web ńúđâúđ íà òàçè ìàűèíà, êîéòî èńêàòć öćëèÿò Èíòćđíćò\n"
+#~ "çà âèæäà ? Àêî èçïîëçâàòć, êîéòî òđÿáâà äà áúäć äîńòúïćí îò òàçè ìàűèíà,\n"
+#~ "ìîæćòć ńïîêîéíî äà îòăîâîđèòć ń Íć òóê.\n"
+#~ "\n"
-#, fuzzy
#~ msgid ""
-#~ "Please check if you want to include\n"
-#~ " install boot on your CD."
-#~ msgstr "Ìîëÿ, èçáćđćòć ïàêćòèòć, êîèòî èńêàòć äà èíńòàëèđàòć."
+#~ "Are you running a name server on this machine? If you didn't set one\n"
+#~ "up to give away IP and zone information to the whole Internet, please\n"
+#~ "answer no.\n"
+#~ "\n"
+#~ msgstr ""
+#~ "Èçïîëçâàòć ëè Name ńúđâúđ íà òàçè ìàűèíà ? Àêî íć èńêàòć äà ïđćäîńòàâÿòć\n"
+#~ "èíôîđìàöèÿ çà IP-òà è çîíè íà öćëèÿ Èíòćđíćò, ìîëÿ, îòăîâîđćòć Íć.\n"
+#~ "\n"
-#, fuzzy
-#~ msgid "Windows PDC"
-#~ msgstr "Ïđćìàőíè Windows(TM)"
+#~ msgid ""
+#~ "Do you want to allow incoming Secure Shell (ssh) connections? This\n"
+#~ "is a telnet-replacement that you might use to login. If you're using\n"
+#~ "telnet now, you should definitely switch to ssh. telnet is not\n"
+#~ "encrypted -- so some attackers can steal your password if you use\n"
+#~ "it. ssh is encrypted and doesn't allow for this eavesdropping."
+#~ msgstr ""
+#~ "Èńêàòć ëè äà đàçđćűèòć âőîäÿùè Secure SHell (SSH) âđúçêè ? Òîâà ć\n"
+#~ "çàìćńòèòćë íà telnet, êîéòî ìîæćòć äà èçïîëçâàòć çà âëèçàíć. Àêî â\n"
+#~ "ìîìćíòà èçïîëçâàòć telnet, îïđćäćëćíî òđÿáâà äà ïđćìèíćòć êúì SSH.\n"
+#~ "Telnet íć ć êđèïòèđàí -- òàêà ść íÿêîè àòàêóâàùè ìîăàò äà îòêđàäíàò\n"
+#~ "ïàđîëàòà âè, àêî ăî èçïîëçâàòć. SSH ć êđèïòèđàí è èçêëțśâà òàêàâà\n"
+#~ "èçäúíêà."
-#, fuzzy
-#~ msgid "Tamil"
-#~ msgstr "Òàáëèöà"
+#~ msgid ""
+#~ "Do you want to allow incoming telnet connections?\n"
+#~ "This is horribly unsafe, as we explained in the previous screen. We\n"
+#~ "strongly recommend answering No here and using ssh in place of\n"
+#~ "telnet.\n"
+#~ msgstr ""
+#~ "Èńêàòć ëè äà ïîçâîëèòć âőîäÿùè telnet âđúçêè ?\n"
+#~ "Òîâà ć óæàńíî íćńèăóđíî, êàêòî îáÿńíèőìć â ïđćäèűíèÿ ćêđàí. Ńèëíî\n"
+#~ "âè ïđćïîđúśâàìć äà îòăîâîđèòć Íć òóê è äà èçïîëçâàòć SSH âìćńòî\n"
+#~ "telnet.\n"
-#, fuzzy
-#~ msgid "PDC Server Name"
-#~ msgstr "NTP ńúđâúđ"
+#~ msgid ""
+#~ "Are you running an FTP server here that you need accessible to the\n"
+#~ "Internet? If you are, we strongly recommend that you only use it for\n"
+#~ "Anonymous transfers. Any passwords sent by FTP can be stolen by some\n"
+#~ "attackers, since FTP also uses no encryption for transferring passwords.\n"
+#~ msgstr ""
+#~ "Èìàòć ëè FTP ńúđâúđ òóê, êîéòî òđÿáâà äà ć äîńòúïćí çà Èíòćđíćò ?\n"
+#~ "Àêî èìàòć, ńèëíî âè ïđćïîđúśâàìć äà ăî èçïîëçâàòć çà àíîíèìíè òđàíńôćđè.\n"
+#~ "Âńèśêè ïàđîëè èçïđàùàíè ïî FTP ìîăàò äà áúäàò îòêđàäíàòè îò àòàêóâàùà\n"
+#~ "ëèśíîńò, òúé êàòî FTP íć èçïîëçâà êđèïòîăđàôèÿ çà ïđćőâúđëÿíćòî èì.\n"
-#, fuzzy
-#~ msgid "Set up printer manually"
-#~ msgstr "Èìć íà îòäàëćśćí ïđèíòćđ"
+#~ msgid ""
+#~ "Are you running a mail server here? If you're sending you \n"
+#~ "messages through pine, mutt or any other text-based mail client,\n"
+#~ "you probably are. Otherwise, you should firewall this off.\n"
+#~ "\n"
+#~ msgstr ""
+#~ "Èìàòć ëè ïîùćíńêè ńúđâúđ òóê ? Àêî èçïđàùàòć ńúîáùćíèÿòà ńè\n"
+#~ "śđćç pine, mutt èëè êàêúâòî è äà ć äđóă òćêńòîâ ïîùćíńêè êëèćíò,\n"
+#~ "ìîæć áè èìàòć. Â ïđîòèâćí ńëóśàé, òđÿáâà äà çàùèòèòć òîâà.\n"
+#~ "\n"
-#, fuzzy
-#~ msgid "Installing HPOJ package..."
-#~ msgstr "Èíńòàëèđàíć íà ïàêćòè ..."
+#~ msgid ""
+#~ "Are you running a POP or IMAP server here? This would\n"
+#~ "be used to host non-web-based mail accounts for people via \n"
+#~ "this machine.\n"
+#~ "\n"
+#~ msgstr ""
+#~ "Èìàòć ëè POP èëè IMAP ńúđâúđ òóê ? Òîâà ìîæć äà áúäć\n"
+#~ "èçïîëçâàíî äà ïđèțòÿâàíć íà íć-web-áàçèđàíè ïîùćíńêè àêàóíòè\n"
+#~ "ïđćç òàçè ìàűèíà.\n"
+#~ "\n"
-#, fuzzy
-#~ msgid "Installing SANE packages..."
-#~ msgstr "Èíńòàëèđàíć íà ïàêćòè ..."
+#~ msgid ""
+#~ "You appear to be running a 2.2 kernel. If your network IP\n"
+#~ "is automatically set by a computer in your home or office \n"
+#~ "(dynamically assigned), we need to allow for this. Is\n"
+#~ "this the case?\n"
+#~ msgstr ""
+#~ "Ńÿêàű èçïîëçâàòć 2.2 ÿäđî. Àêî ìđćæîâîòî IP àâòîìàòèśíî ńć\n"
+#~ "îïđćäćëÿ îò êîìïțòúđ ó âàń èëè â îôèńà (äèíàìèśíî ïîńòàâÿíî),\n"
+#~ "òđÿáâà äà ïîçâîëèì òîâà. Òàêúâ ëè ć ńëóśàÿ ?\n"
-#, fuzzy
-#~ msgid "Installing mtools packages..."
-#~ msgstr "Èíńòàëèđàíć íà ïàêćòè ..."
+#~ msgid ""
+#~ "Is your computer getting time syncronized to another computer?\n"
+#~ "Mostly, this is used by medium-large Unix/Linux organizations\n"
+#~ "to synchronize time for logging and such. If you're not part\n"
+#~ "of a larger office and haven't heard of this, you probably \n"
+#~ "aren't."
+#~ msgstr ""
+#~ "Âđćìćòî íà êîìïțòúđà âè ńèíőđîíèçèđà ëè ńć ń äđóă êîìïțòúđ ?\n"
+#~ "Òîâà ăëàâíî ńć èçïîëçâà â ńđćäíî-ăîëćìè Unix/Linux îđăàíèçàöèè,\n"
+#~ "çà äà ńè ńèíőđîíèçèđà âđćìćòî çà çàïèńâàíć íà ńòàòóńà è òàêèâà đàáîòè.\n"
+#~ "Àêî íć ńòć śàńò îò ïî-ăîëÿì îôèń è íć ńòć śóâàëè çà òàêîâà íćùî,\n"
+#~ "ìîæć áè íć âè òđÿáâà."
-#, fuzzy
-#~ msgid "Making printer port available for CUPS..."
-#~ msgstr "Śćòćíć íà áàçàòà äàííè îò ïđèíòćđè ..."
+#~ msgid ""
+#~ "Configuration complete. May we write these changes to disk?\n"
+#~ "\n"
+#~ "\n"
+#~ "\n"
+#~ msgstr ""
+#~ "Íàńòđîéêàòà çàâúđűćíà. Äà çàïèűćì ëè ïđîìćíèòć íà äèńêà ?\n"
+#~ "\n"
+#~ "\n"
+#~ "\n"
+
+#~ msgid "Can't open %s for writing: %s\n"
+#~ msgstr "Íć ìîăà äà îòâîđÿ %s çà çàïèń: %s\n"
+
+#~ msgid "Url should begin with 'ftp:'"
+#~ msgstr "URL òđÿáâà äà çàïîśâà ń 'ftp:'"
#~ msgid "Control Center"
#~ msgstr "Êîíòđîëćí öćíòúđ"
@@ -13134,11 +13689,6 @@ msgstr "Íàóśíà đàáîòíà ńòàíöèÿ"
#~ msgid "Select a graphics card"
#~ msgstr "Èçáćđćòć ăđàôèśíà êàđòà"
-#~ msgid "Warning: testing this graphics card may freeze your computer"
-#~ msgstr ""
-#~ "Âíèìàíèć: òćńòâàíćòî íà òàçè ăđàôèśíà êàđòà ìîæć äà \"çàìđàçè\" êîìïțòúđà "
-#~ "âè"
-
#~ msgid "Standard VGA, 640x480 at 60 Hz"
#~ msgstr "Standard VGA, 640x480 íà 60 Hz"
diff --git a/perl-install/share/po/br.po b/perl-install/share/po/br.po
index 9afc9ef0b..ebcf7806e 100644
--- a/perl-install/share/po/br.po
+++ b/perl-install/share/po/br.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX 8.2\n"
-"POT-Creation-Date: 2002-08-29 09:57+0200\n"
+"POT-Creation-Date: 2002-09-02 20:14+0200\n"
"PO-Revision-Date: 2002-01-28 22:41GMT\n"
"Last-Translator: Thierry Vignaud <tvignaud@mandrakesoft.com>\n"
"Language-Team: Brezhoneg <ofisk@wanadoo.fr>\n"
@@ -180,13 +180,13 @@ msgstr "Parzhadur"
#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:159
#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310
-#: ../../standalone/drakbackup_.c:3918 ../../standalone/drakbackup_.c:4013
-#: ../../standalone/drakbackup_.c:4032
+#: ../../standalone/drakbackup_.c:3972 ../../standalone/drakbackup_.c:4067
+#: ../../standalone/drakbackup_.c:4086
msgid "Ok"
msgstr "Mat eo"
#: ../../Xconfig/main.pm_.c:121 ../../diskdrake/dav.pm_.c:24
-#: ../../harddrake/ui.pm_.c:95 ../../printerdrake.pm_.c:3135
+#: ../../harddrake/ui.pm_.c:98 ../../printerdrake.pm_.c:3155
#: ../../standalone/logdrake_.c:224
msgid "Quit"
msgstr "Kuitaat"
@@ -212,7 +212,7 @@ msgstr ""
msgid "Generic"
msgstr "Rummel"
-#: ../../Xconfig/monitor.pm_.c:99 ../../harddrake/ui.pm_.c:36
+#: ../../Xconfig/monitor.pm_.c:99 ../../harddrake/ui.pm_.c:37
#, fuzzy
msgid "Vendor"
msgstr "Dizober"
@@ -293,12 +293,12 @@ msgstr "Kartenn c'hrafek : %s"
#: ../../interactive/newt.pm_.c:174 ../../interactive/stdio.pm_.c:39
#: ../../interactive/stdio.pm_.c:143 ../../my_gtk.pm_.c:158
#: ../../my_gtk.pm_.c:162 ../../my_gtk.pm_.c:287
-#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:2113
-#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3872
-#: ../../standalone/drakbackup_.c:3905 ../../standalone/drakbackup_.c:3931
-#: ../../standalone/drakbackup_.c:3958 ../../standalone/drakbackup_.c:3985
-#: ../../standalone/drakbackup_.c:4045 ../../standalone/drakbackup_.c:4072
-#: ../../standalone/drakbackup_.c:4102 ../../standalone/drakbackup_.c:4128
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:2124
+#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3926
+#: ../../standalone/drakbackup_.c:3959 ../../standalone/drakbackup_.c:3985
+#: ../../standalone/drakbackup_.c:4012 ../../standalone/drakbackup_.c:4039
+#: ../../standalone/drakbackup_.c:4099 ../../standalone/drakbackup_.c:4126
+#: ../../standalone/drakbackup_.c:4156 ../../standalone/drakbackup_.c:4182
#: ../../standalone/drakconnect_.c:115 ../../standalone/drakconnect_.c:147
#: ../../standalone/drakconnect_.c:289 ../../standalone/drakconnect_.c:537
#: ../../standalone/drakconnect_.c:679 ../../standalone/drakfloppy_.c:234
@@ -488,15 +488,15 @@ msgstr "Gedvezh kent loc'hañ ar skeudenn dre ziouer"
#: ../../any.pm_.c:170 ../../any.pm_.c:788
#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1095 ../../network/modem.pm_.c:48
+#: ../../install_steps_interactive.pm_.c:1096 ../../network/modem.pm_.c:48
#: ../../printerdrake.pm_.c:850 ../../printerdrake.pm_.c:965
-#: ../../standalone/drakbackup_.c:3526 ../../standalone/drakconnect_.c:624
+#: ../../standalone/drakbackup_.c:3528 ../../standalone/drakconnect_.c:624
#: ../../standalone/drakconnect_.c:649
msgid "Password"
msgstr "Tremenger"
#: ../../any.pm_.c:171 ../../any.pm_.c:789
-#: ../../install_steps_interactive.pm_.c:1096
+#: ../../install_steps_interactive.pm_.c:1097
msgid "Password (again)"
msgstr "Tremenger (adarre)"
@@ -532,12 +532,12 @@ msgstr "Didalvout eo ``Strishaat dibarzhoĂč al linenn urzhiañ'' hep tremenger"
#: ../../any.pm_.c:184 ../../any.pm_.c:764
#: ../../diskdrake/interactive.pm_.c:1191
-#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1091
msgid "Please try again"
msgstr "Klaskit adarre mar plij"
#: ../../any.pm_.c:184 ../../any.pm_.c:764
-#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1091
msgid "The passwords do not match"
msgstr "An tremegerioĂč ne glot ket"
@@ -591,7 +591,7 @@ msgstr "Ouzhpennañ"
#: ../../any.pm_.c:257 ../../any.pm_.c:776 ../../diskdrake/dav.pm_.c:64
#: ../../diskdrake/hd_gtk.pm_.c:153 ../../diskdrake/removable.pm_.c:27
#: ../../diskdrake/smbnfs_gtk.pm_.c:88 ../../interactive/http.pm_.c:153
-#: ../../printerdrake.pm_.c:3135 ../../standalone/drakbackup_.c:2772
+#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2772
msgid "Done"
msgstr "Graet"
@@ -921,7 +921,7 @@ msgstr "Aotreiñ an holl dud"
msgid "No sharing"
msgstr "N'ev ket lodañ"
-#: ../../any.pm_.c:987 ../../install_any.pm_.c:1180 ../../standalone.pm_.c:58
+#: ../../any.pm_.c:987 ../../install_any.pm_.c:1183 ../../standalone.pm_.c:58
#, fuzzy, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr ""
@@ -933,7 +933,7 @@ msgid ""
"You can export using NFS or Samba. Please select which you'd like to use."
msgstr ""
-#: ../../any.pm_.c:998 ../../install_any.pm_.c:1185 ../../standalone.pm_.c:63
+#: ../../any.pm_.c:998 ../../install_any.pm_.c:1188 ../../standalone.pm_.c:63
#, c-format
msgid "Mandatory package %s is missing"
msgstr ""
@@ -1069,7 +1069,7 @@ msgstr ""
msgid "Security Administrator (login or email)"
msgstr ""
-#: ../../any.pm_.c:1190
+#: ../../any.pm_.c:1189
msgid ""
"Here you can choose the key or key combination that will \n"
"allow switching between the different keyboard layouts\n"
@@ -1166,8 +1166,8 @@ msgstr "N'ev ket skoazell.\n"
msgid "Boot Style Configuration"
msgstr "Kefluniadur goude staliañ"
-#: ../../bootlook.pm_.c:78 ../../harddrake/ui.pm_.c:59
-#: ../../harddrake/ui.pm_.c:60 ../../standalone/drakfloppy_.c:81
+#: ../../bootlook.pm_.c:78 ../../harddrake/ui.pm_.c:62
+#: ../../harddrake/ui.pm_.c:63 ../../standalone/drakfloppy_.c:81
#: ../../standalone/logdrake_.c:101
msgid "/_File"
msgstr "/_Restr"
@@ -1177,7 +1177,7 @@ msgstr "/_Restr"
msgid "/File/_Quit"
msgstr "/Restr/_Kuitaat"
-#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:60
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:63
#: ../../standalone/drakfloppy_.c:82 ../../standalone/logdrake_.c:107
msgid "<control>Q"
msgstr ""
@@ -1375,8 +1375,8 @@ msgstr ""
#: ../../bootlook.pm_.c:337 ../../network/netconnect.pm_.c:101
#: ../../standalone/drakTermServ_.c:173 ../../standalone/drakTermServ_.c:300
-#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4137
-#: ../../standalone/drakbackup_.c:4898 ../../standalone/drakconnect_.c:108
+#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4191
+#: ../../standalone/drakbackup_.c:4952 ../../standalone/drakconnect_.c:108
#: ../../standalone/drakconnect_.c:140 ../../standalone/drakconnect_.c:296
#: ../../standalone/drakconnect_.c:435 ../../standalone/drakconnect_.c:521
#: ../../standalone/drakconnect_.c:564 ../../standalone/drakconnect_.c:667
@@ -2328,7 +2328,7 @@ msgid ""
"Please enter your username, password and domain name to access this host."
msgstr ""
-#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3525
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3527
#, fuzzy
msgid "Username"
msgstr "Anv arveriad"
@@ -2465,226 +2465,235 @@ msgstr ""
msgid "Driver:"
msgstr "Servijer"
-#: ../../harddrake/sound.pm_.c:172
+#: ../../harddrake/sound.pm_.c:173
#, fuzzy
msgid "No known driver"
msgstr "Sturier X"
-#: ../../harddrake/sound.pm_.c:173
+#: ../../harddrake/sound.pm_.c:174
#, c-format
msgid "There's no known driver for your sound card (%s)"
msgstr ""
-#: ../../harddrake/sound.pm_.c:176
+#: ../../harddrake/sound.pm_.c:177
#, fuzzy
msgid "Unkown driver"
msgstr "Sturier X"
-#: ../../harddrake/sound.pm_.c:177
+#: ../../harddrake/sound.pm_.c:178
#, c-format
msgid ""
"The \"%s\" driver for your sound card is unlisted\n"
"\n"
"Please send the output of the \"lspcidrake -v\" command to\n"
-"Thierry Vignaud <tvignaud at mandrakesoft dot com>\n"
-"with subject: unlisted sound driver"
+"<install at mandrakesoft dot com>\n"
+"with subject: unlisted sound driver \"%s\""
msgstr ""
-#: ../../harddrake/ui.pm_.c:15
+#: ../../harddrake/ui.pm_.c:16
#, fuzzy
msgid "Model"
msgstr "Logodenn"
-#: ../../harddrake/ui.pm_.c:15
+#: ../../harddrake/ui.pm_.c:16
#, fuzzy
msgid "hard disk model"
msgstr "Memor kartenn (DMA)"
-#: ../../harddrake/ui.pm_.c:16
+#: ../../harddrake/ui.pm_.c:17
#, fuzzy
msgid "Channel"
msgstr "Nullañ"
-#: ../../harddrake/ui.pm_.c:16
+#: ../../harddrake/ui.pm_.c:17
msgid "EIDE/SCSI channel"
msgstr ""
-#: ../../harddrake/ui.pm_.c:18
+#: ../../harddrake/ui.pm_.c:19
msgid "Bus"
msgstr ""
-#: ../../harddrake/ui.pm_.c:19
+#: ../../harddrake/ui.pm_.c:20
msgid ""
"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
msgstr ""
-#: ../../harddrake/ui.pm_.c:20
+#: ../../harddrake/ui.pm_.c:21
#, fuzzy
msgid "Module"
msgstr "Logodenn"
-#: ../../harddrake/ui.pm_.c:20
+#: ../../harddrake/ui.pm_.c:21
msgid "the module of the GNU/Linux kernel that handle that device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:21
+#: ../../harddrake/ui.pm_.c:22
msgid "Media class"
msgstr ""
-#: ../../harddrake/ui.pm_.c:21
+#: ../../harddrake/ui.pm_.c:22
msgid "class of hardware device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:22 ../../printerdrake.pm_.c:1517
+#: ../../harddrake/ui.pm_.c:23 ../../printerdrake.pm_.c:1517
#, fuzzy
msgid "Description"
msgstr "Spisait dibarzhoĂč"
-#: ../../harddrake/ui.pm_.c:22
+#: ../../harddrake/ui.pm_.c:23
msgid "this field describe the device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:24
+#: ../../harddrake/ui.pm_.c:25
#, fuzzy
msgid "Bus identification"
msgstr "Dilesadur"
-#: ../../harddrake/ui.pm_.c:25
+#: ../../harddrake/ui.pm_.c:26
msgid ""
"- PCI and USB devices: this list the vendor, device, subvendor and subdevice "
"PCI/USB ids"
msgstr ""
-#: ../../harddrake/ui.pm_.c:27
+#: ../../harddrake/ui.pm_.c:28
msgid "Location on the bus"
msgstr ""
-#: ../../harddrake/ui.pm_.c:28
+#: ../../harddrake/ui.pm_.c:29
msgid ""
"- pci devices: this gives the PCI slot, device and function of this card\n"
"- eide devices: the device is either a slave or a master device\n"
"- scsi devices: the scsi bus and the scsi device ids"
msgstr ""
-#: ../../harddrake/ui.pm_.c:31
+#: ../../harddrake/ui.pm_.c:32
#, fuzzy
msgid "Old device file"
msgstr "Diuzit ar restr"
-#: ../../harddrake/ui.pm_.c:32
+#: ../../harddrake/ui.pm_.c:33
msgid "old static device name used in dev package"
msgstr ""
-#: ../../harddrake/ui.pm_.c:33
+#: ../../harddrake/ui.pm_.c:34
#, fuzzy
msgid "New devfs device"
msgstr "Trobarzhell an dreuzell"
-#: ../../harddrake/ui.pm_.c:34
+#: ../../harddrake/ui.pm_.c:35
msgid "new dinamic device name generated by incore kernel devfs"
msgstr ""
-#: ../../harddrake/ui.pm_.c:35
+#: ../../harddrake/ui.pm_.c:36
#, fuzzy
msgid "Number of buttons"
msgstr "2 nozelenn"
-#: ../../harddrake/ui.pm_.c:36
+#: ../../harddrake/ui.pm_.c:37
msgid "the vendor name of the device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:60
+#: ../../harddrake/ui.pm_.c:38
+#, fuzzy
+msgid "Alternative drivers"
+msgstr "O voullañ pajenn(oĂč) skrid..."
+
+#: ../../harddrake/ui.pm_.c:39
+msgid "the list of alternative drivers for this sound card"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:63
#, fuzzy
msgid "/_Quit"
msgstr "Kuitaat"
-#: ../../harddrake/ui.pm_.c:61 ../../harddrake/ui.pm_.c:62
-#: ../../harddrake/ui.pm_.c:68 ../../standalone/logdrake_.c:110
+#: ../../harddrake/ui.pm_.c:64 ../../harddrake/ui.pm_.c:65
+#: ../../harddrake/ui.pm_.c:71 ../../standalone/logdrake_.c:110
msgid "/_Help"
msgstr ""
-#: ../../harddrake/ui.pm_.c:62
+#: ../../harddrake/ui.pm_.c:65
#, fuzzy
msgid "/_Help..."
msgstr "Skoazell"
-#: ../../harddrake/ui.pm_.c:63
+#: ../../harddrake/ui.pm_.c:66
msgid "Harddrake help"
msgstr ""
-#: ../../harddrake/ui.pm_.c:64
+#: ../../harddrake/ui.pm_.c:67
msgid ""
"Description of the fields:\n"
"\n"
msgstr ""
-#: ../../harddrake/ui.pm_.c:68
+#: ../../harddrake/ui.pm_.c:71
#, fuzzy
msgid "/_About..."
msgstr "Marc'hañ"
-#: ../../harddrake/ui.pm_.c:69
+#: ../../harddrake/ui.pm_.c:72
msgid "About Harddrake"
msgstr ""
-#: ../../harddrake/ui.pm_.c:70
+#: ../../harddrake/ui.pm_.c:73
msgid ""
"This is HardDrake, a Mandrake hardware configuration tool.\n"
"Version:"
msgstr ""
-#: ../../harddrake/ui.pm_.c:71
+#: ../../harddrake/ui.pm_.c:74
#, fuzzy
msgid "Author:"
msgstr "Embrouiñ"
-#: ../../harddrake/ui.pm_.c:83
+#: ../../harddrake/ui.pm_.c:86
#, fuzzy
msgid "Harddrake2 version "
msgstr "Dinoiñ ar bladenn galet"
-#: ../../harddrake/ui.pm_.c:99
+#: ../../harddrake/ui.pm_.c:103
#, fuzzy
msgid "Detected hardware"
msgstr "Gwelet titouroĂč periantel"
-#: ../../harddrake/ui.pm_.c:101
+#: ../../harddrake/ui.pm_.c:105
#, fuzzy
msgid "Information"
msgstr "Diskouez titouroĂč"
-#: ../../harddrake/ui.pm_.c:104
+#: ../../harddrake/ui.pm_.c:108
#, fuzzy
msgid "Configure module"
msgstr "Kefluniañ al logodenn"
-#: ../../harddrake/ui.pm_.c:105
+#: ../../harddrake/ui.pm_.c:109
msgid "Run config tool"
msgstr ""
-#: ../../harddrake/ui.pm_.c:109
+#: ../../harddrake/ui.pm_.c:113
#, fuzzy
msgid "Detection in progress"
msgstr "Poent marc'hañ doubl %s"
-#: ../../harddrake/ui.pm_.c:109 ../../interactive.pm_.c:391
+#: ../../harddrake/ui.pm_.c:113 ../../interactive.pm_.c:391
msgid "Please wait"
msgstr "Gortozit mar plij"
-#: ../../harddrake/ui.pm_.c:152
+#: ../../harddrake/ui.pm_.c:156
msgid "primary"
msgstr ""
-#: ../../harddrake/ui.pm_.c:152
+#: ../../harddrake/ui.pm_.c:156
#, fuzzy
msgid "secondary"
msgstr "%d eilenn"
-#: ../../harddrake/ui.pm_.c:189
+#: ../../harddrake/ui.pm_.c:197
msgid "You can configure each parameter of the module here."
msgstr ""
-#: ../../harddrake/ui.pm_.c:205
+#: ../../harddrake/ui.pm_.c:213
#, fuzzy, c-format
msgid "Running \"%s\" ..."
msgstr "DibarzhoĂč ar voullerez lpd a-bell"
@@ -2751,22 +2760,22 @@ msgid ""
"GNU/Linux is a multiuser system, and this means that each user can have his\n"
"own preferences, his own files and so on. You can read the ``User Guide''\n"
"to learn more. But unlike \"root\", which is the administrator, the users\n"
-"you will add here will not be entitled to change anything except their own\n"
-"files and their own configuration. You will have to create at least one\n"
-"regular user for yourself. That account is where you should log in for\n"
-"routine use. Although it is very practical to log in as \"root\" everyday,\n"
-"it may also be very dangerous! The slightest mistake could mean that your\n"
-"system would not work any more. If you make a serious mistake as a regular\n"
-"user, you may only lose some information, but not the entire system.\n"
+"you add here will not be entitled to change anything except their own files\n"
+"and their own configuration. You will have to create at least one regular\n"
+"user for yourself. That account is where you should log in for routine use.\n"
+"Although it is very practical to log in as \"root\" everyday, it may also\n"
+"be very dangerous! The slightest mistake could mean that your system would\n"
+"not work any more. If you make a serious mistake as a regular user, you may\n"
+"only lose some information, but not the entire system.\n"
"\n"
"First, you have to enter your real name. This is not mandatory, of course -\n"
"as you can actually enter whatever you want. DrakX will then take the first\n"
"word you have entered in the box and will bring it over to the \"User\n"
"name\". This is the name this particular user will use to log onto the\n"
"system. You can change it. You then have to enter a password here. A\n"
-"non-privileged (regular) user's password is not as crucial as \"root\"' one\n"
-"from a security point of view, but that is no reason to neglect it: after\n"
-"all, your files are at risk.\n"
+"non-privileged (regular) user's password is not as crucial as the \"root\"'\n"
+"one from a security point of view, but that is no reason to neglect it:\n"
+"after all, your files are at risk.\n"
"\n"
"If you click on \"Accept user\", you can then add as many as you want. Add\n"
"a user for each one of your friends: your father or your sister, for\n"
@@ -2845,7 +2854,7 @@ msgid ""
"to have a graphical workstation!\n"
"\n"
"Moving the mouse cursor over a group name will display a short explanatory\n"
-"text about that group. If you deselect all groups when performing a regular\n"
+"text about that group. If you unselect all groups when performing a regular\n"
"installation (by opposition to an upgrade), a dialog will pop up proposing\n"
"different options for a minimal installation:\n"
"\n"
@@ -2871,10 +2880,10 @@ msgstr ""
#: ../../help.pm_.c:128
msgid ""
-"Finally, depending on whether or not you selected individual packages, you\n"
-"will be presented a tree containing all packages classified by groups and\n"
-"subgroups. While browsing the tree, you can select entire groups,\n"
-"subgroups, or individual packages.\n"
+"Finally, depending on whether or not you chose to be able to select\n"
+"individual packages, you will be presented a tree containing all packages\n"
+"classified by groups and subgroups. While browsing the tree, you can select\n"
+"entire groups, subgroups, or individual packages.\n"
"\n"
"Whenever you select a package on the tree, a description appears on the\n"
"right. When your selection is finished, click the \"Install\" button which\n"
@@ -2909,11 +2918,11 @@ msgstr ""
#: ../../help.pm_.c:164
msgid ""
-"You are now proposed to set up your Internet/network connection. If you\n"
-"wish to connect your computer to the Internet or to a local network, click\n"
-"\"OK\". The autodetection of network devices and modem will be launched. If\n"
-"this detection fails, uncheck the \"Use auto detection\" box next time. You\n"
-"may also choose not to configure the network, or do it later; in that case,\n"
+"You are now able to set up your Internet/network connection. If you wish to\n"
+"connect your computer to the Internet or to a local network, click \"OK\".\n"
+"The autodetection of network devices and modem will be launched. If this\n"
+"detection fails, uncheck the \"Use auto detection\" box next time. You may\n"
+"also choose not to configure the network, or do it later; in that case,\n"
"simply click the \"Cancel\" button.\n"
"\n"
"Available connections are: traditional modem, ISDN modem, ADSL connection,\n"
@@ -2963,7 +2972,7 @@ msgstr ""
msgid ""
"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
"local time according to the time zone you selected. It is however possible\n"
-"to deactivate this by deselecting \"Hardware clock set to GMT\" so that the\n"
+"to deactivate this by unselecting \"Hardware clock set to GMT\" so that the\n"
"hardware clock is the same as the system clock. This is useful when the\n"
"machine is hosting another operating system like Windows.\n"
"\n"
@@ -2994,24 +3003,12 @@ msgid ""
"If you can see the message during the test, and answer \"Yes\", then DrakX\n"
"will proceed to the next step. If you cannot see the message, it simply\n"
"means that the configuration was wrong and the test will automatically end\n"
-"after 10 seconds, restoring the screen."
+"after 10 seconds, restoring the screen. Refer then to the Video\n"
+"configuration section of the user guide for more information on how to\n"
+"configure your display."
msgstr ""
-#: ../../help.pm_.c:237
-msgid ""
-"The first time you try the X configuration, you may not be very satisfied\n"
-"with its display (screen is too small, shifted left or right...). Hence,\n"
-"even if X starts up correctly, DrakX then asks you if the configuration\n"
-"suits you. It will also propose to change it by displaying a list of valid\n"
-"modes it could find, asking you to select one.\n"
-"\n"
-"As a last resort, if you still cannot get X to work, choose \"Change\n"
-"graphics card\", select \"Unlisted card\", and when prompted on which\n"
-"server, choose \"FBDev\". This is a failsafe option which works with any\n"
-"modern graphics card. Then choose \"Test again\" to be sure."
-msgstr ""
-
-#: ../../help.pm_.c:249
+#: ../../help.pm_.c:239
msgid ""
"Finally, you will be asked whether you want to see the graphical interface\n"
"at boot. Note this question will be asked even if you chose not to test the\n"
@@ -3020,7 +3017,7 @@ msgid ""
"configured."
msgstr ""
-#: ../../help.pm_.c:256
+#: ../../help.pm_.c:246
msgid ""
"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
@@ -3040,13 +3037,13 @@ msgid ""
"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
"password, or any other reason.\n"
"\n"
-"When you click on this step, you will be asked to insert a disk inside the\n"
-"drive. The floppy disk you will insert must be empty or contain data which\n"
-"you do not need. You will not have to format it since DrakX will rewrite\n"
-"the whole disk."
+"If you say \"Yes\", you will be asked to enter a disk inside the drive. The\n"
+"floppy disk you will insert must be empty or contain data which you do not\n"
+"need. You will not have to format it since DrakX will rewrite the whole\n"
+"disk."
msgstr ""
-#: ../../help.pm_.c:280
+#: ../../help.pm_.c:270
msgid ""
"At this point, you need to choose where you want to install the Mandrake\n"
"Linux operating system on your hard drive. If your hard drive is empty or\n"
@@ -3079,7 +3076,9 @@ msgid ""
"\n"
" * \"Use existing partition\": the wizard has detected one or more existing\n"
"Linux partitions on your hard drive. If you want to use them, choose this\n"
-"option;\n"
+"option. You will then be asked to choose the mount points associated to\n"
+"each of the partitions. The legacy mount points are selected by default,\n"
+"and you should generally keep them.\n"
"\n"
" * \"Use the free space on the Windows; partition\": if Microsoft Windows\n"
"is installed on your hard drive and takes all the space available on it,\n"
@@ -3112,10 +3111,12 @@ msgid ""
" * \"Expert mode\": choose this option if you want to manually partition\n"
"your hard drive. Be careful - it is a powerful but dangerous choice. You\n"
"can very easily lose all your data. Hence, do not choose this unless you\n"
-"know what you are doing."
+"know what you are doing. To know how do use the DiskDrake utility used\n"
+"here, refer to the section ``Managing Your Partitions'' of the ````User\n"
+"Guide''''"
msgstr ""
-#: ../../help.pm_.c:347
+#: ../../help.pm_.c:341
msgid ""
"There you are. Installation is now complete and your GNU/Linux system is\n"
"ready to use. Just click \"OK\" to reboot the system. You can start\n"
@@ -3148,7 +3149,7 @@ msgid ""
"\"mformat a:\")"
msgstr ""
-#: ../../help.pm_.c:378
+#: ../../help.pm_.c:372
msgid ""
"Any partitions that have been newly defined must be formatted for use\n"
"(formatting means creating a filesystem).\n"
@@ -3176,7 +3177,7 @@ msgid ""
"for bad blocks on the disk."
msgstr ""
-#: ../../help.pm_.c:404
+#: ../../help.pm_.c:398
#, fuzzy
msgid ""
"Your new Mandrake Linux operating system is currently being installed.\n"
@@ -3187,12 +3188,12 @@ msgid ""
"Please be patient."
msgstr "Gortozit mar plij"
-#: ../../help.pm_.c:412
+#: ../../help.pm_.c:406
msgid ""
"At the time you are installing Mandrake Linux, it is likely that some\n"
"packages have been updated since the initial release. Some bugs may have\n"
"been fixed, and security issues solved. To allow you to benefit from these\n"
-"updates, you are now proposed to download them from the Internet. Choose\n"
+"updates, you are now able to download them from the Internet. Choose\n"
"\"Yes\" if you have a working Internet connection, or \"No\" if you prefer\n"
"to install updated packages later.\n"
"\n"
@@ -3202,7 +3203,7 @@ msgid ""
"install the selected package(s), or \"Cancel\" to abort."
msgstr ""
-#: ../../help.pm_.c:425
+#: ../../help.pm_.c:419
msgid ""
"Before continuing, you should read carefully the terms of the license. It\n"
"covers the whole Mandrake Linux distribution, and if you do not agree with\n"
@@ -3211,19 +3212,19 @@ msgid ""
"\"Accept\" button."
msgstr ""
-#: ../../help.pm_.c:432
+#: ../../help.pm_.c:426
msgid ""
"At this point, it is time to choose the security level desired for the\n"
"machine. As a rule of thumb, the more exposed the machine is, and the more\n"
"the data stored in it is crucial, the higher the security level should be.\n"
"However, a higher security level is generally obtained at the expense of\n"
-"easiness of use. Refer to the \"msec\" chapter of the ``Reference Manual''\n"
-"to get more information about the meaning of these levels.\n"
+"ease of use. Refer to the \"msec\" chapter of the ``Reference Manual'' to\n"
+"get more information about the meaning of these levels.\n"
"\n"
"If you do not know what to choose, keep the default option."
msgstr ""
-#: ../../help.pm_.c:442
+#: ../../help.pm_.c:436
msgid ""
"At this point, you need to choose which partition(s) will be used for the\n"
"installation of your Mandrake Linux system. If partitions have already been\n"
@@ -3240,26 +3241,26 @@ msgid ""
" * \"Clear all\": this option deletes all partitions on the selected hard\n"
"drive;\n"
"\n"
-" * \"Auto allocate\": this option enables to automatically create \"Ext2\"\n"
-"and swap partitions in free space of your hard drive;\n"
+" * \"Auto allocate\": this option enables to automatically create ext3 and\n"
+"swap partitions in free space of your hard drive;\n"
"\n"
-" * \"More\": gives access to additional features:\n"
+"\"More\": gives access to additional features:\n"
"\n"
-" * \"Save partition table\": saves the partition table to a floppy.\n"
-"Useful for later partition-table recovery if necessary. It is strongly\n"
-"recommended to perform this step;\n"
+" * \"Save partition table\": saves the partition table to a floppy. Useful\n"
+"for later partition-table recovery if necessary. It is strongly recommended\n"
+"to perform this step;\n"
"\n"
-" * \"Restore partition table\": allows to restore a previously saved\n"
+" * \"Restore partition table\": allows to restore a previously saved\n"
"partition table from floppy disk;\n"
"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you\n"
-"can try to recover it using this option. Please be careful and remember\n"
-"that it can fail;\n"
+" * \"Rescue partition table\": if your partition table is damaged, you can\n"
+"try to recover it using this option. Please be careful and remember that it\n"
+"can fail;\n"
"\n"
-" * \"Reload partition table\": discards all changes and loads your\n"
-"initial partition table;\n"
+" * \"Reload partition table\": discards all changes and loads your initial\n"
+"partition table;\n"
"\n"
-" * \"Removable media automounting\": unchecking this option will force\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
"users to manually mount and unmount removable medias such as floppies and\n"
"CD-ROMs.\n"
"\n"
@@ -3287,7 +3288,7 @@ msgid ""
" * Ctrl-m to set the mount point.\n"
"\n"
"To get information about the different filesystem types available, please\n"
-"read the ext2fs chapter from the ``Reference Manual''.\n"
+"read the ext2FS chapter from the ``Reference Manual''.\n"
"\n"
"If you are installing on a PPC machine, you will want to create a small HFS\n"
"``bootstrap'' partition of at least 1MB, which will be used by the yaboot\n"
@@ -3296,7 +3297,7 @@ msgid ""
"emergency boot situations."
msgstr ""
-#: ../../help.pm_.c:513
+#: ../../help.pm_.c:507
msgid ""
"More than one Microsoft partition has been detected on your hard drive.\n"
"Please choose the one you want to resize in order to install your new\n"
@@ -3329,35 +3330,35 @@ msgid ""
"disk or partition is called \"C:\")."
msgstr ""
-#: ../../help.pm_.c:544
+#: ../../help.pm_.c:538
#, fuzzy
msgid "Please be patient. This operation can take several minutes."
msgstr "Gortozit mar plij."
-#: ../../help.pm_.c:547
+#: ../../help.pm_.c:541
msgid ""
"DrakX now needs to know if you want to perform a default (\"Recommended\")\n"
"installation or if you want to have greater control (\"Expert\"). You can\n"
"also choose to do a new install or an upgrade of an existing Mandrake Linux\n"
"system:\n"
"\n"
-" * \"Install\": completely wipes out the old system. In fact, depending on\n"
-"what currently holds your machine, you will be able to keep some old (Linux\n"
-"or other) partitions unchanged;\n"
+" * \"Install\": completely wipes out the old system, however, depending on\n"
+"what is currently installed on your machine, you may be able to keep some\n"
+"old partitions (Linux or otherwise) unchanged;\n"
"\n"
" * \"Upgrade\": this installation class allows to simply update the\n"
"packages currently installed on your Mandrake Linux system. It keeps the\n"
"current partitions of your hard drives as well as user configurations. All\n"
-"other configuration steps remain available with respect to plain\n"
+"other configuration steps remain available, similar to a normal\n"
"installation;\n"
"\n"
-" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
-"existing Mandrake Linux system while keeping all system configurations\n"
-"unchanged. Adding new packages to the current installation is also\n"
-"possible.\n"
+" * \"Upgrade Packages Only\": this new installation class allows you to\n"
+"upgrade an existing Mandrake Linux system while keeping all system\n"
+"configurations unchanged. Adding new packages to the current installation\n"
+"is also possible.\n"
"\n"
-"Upgrades should work fine for Mandrake Linux systems starting from \"8.1\"\n"
-"release.\n"
+"Upgrades should work fine on Mandrake Linux systems containing version\n"
+"\"8.1\" or later.\n"
"\n"
"Depending on your knowledge of GNU/Linux, select one of the following\n"
"choices:\n"
@@ -3366,30 +3367,35 @@ msgid ""
"operating system. The installation will be very easy and you will only be\n"
"asked a few questions;\n"
"\n"
-" * Expert: if you have a good knowledge of GNU/Linux, you can choose this\n"
-"installation class. The expert installation will allow you to perform a\n"
-"highly-customized installation. Answering some of the questions can be\n"
-"difficult if you do not have a good knowledge of GNU/Linux, so do not\n"
-"choose this unless you know what you are doing."
+" * Expert: if you have a good understanding of GNU/Linux, you may wish to\n"
+"perform a highly customized installation. Some of the decisions you will\n"
+"have to make may be difficult if you do not have good knowledge of\n"
+"GNU/Linux, so it is not recommended that those without a fair amount of\n"
+"experience select this installation class."
msgstr ""
-#: ../../help.pm_.c:584
+#: ../../help.pm_.c:578
msgid ""
"Normally, DrakX selects the right keyboard for you (depending on the\n"
-"language you have chosen) and you won't even see this step. However, you\n"
-"might not have a keyboard that corresponds exactly to your language: for\n"
-"example, if you are an English speaking Swiss person, you may still want\n"
-"your keyboard to be a Swiss keyboard. Or if you speak English but are\n"
-"located in Quebec, you may find yourself in the same situation. In both\n"
-"cases, you will have to go back to this installation step and select an\n"
-"appropriate keyboard from the list.\n"
+"language you have chosen). However, you might not have a keyboard that\n"
+"corresponds exactly to your language: for example, if you are an English\n"
+"speaking Swiss person, you may still want your keyboard to be a Swiss\n"
+"keyboard. Or if you speak English but are located in Quebec, you may find\n"
+"yourself in the same situation. In both cases, you will have to go back to\n"
+"this installation step and select an appropriate keyboard from the list.\n"
"\n"
"Click on the \"More\" button to be presented with the complete list of\n"
-"supported keyboards."
+"supported keyboards.\n"
+"\n"
+"If you choose a keyboard layout based on a non-latin alphabet, you will be\n"
+"asked on next dialog to choose the key binding that will switch the\n"
+"keyboard layout between the latin and non latin layouts."
msgstr ""
-#: ../../help.pm_.c:597
+#: ../../help.pm_.c:594
msgid ""
+"The first step is to choose your preferred language.\n"
+"\n"
"Please choose your preferred language for installation and system usage.\n"
"\n"
"Clicking on the \"Advanced\" button will allow you to select other\n"
@@ -3403,7 +3409,7 @@ msgid ""
"additional locales, click the \"OK\" button to continue."
msgstr ""
-#: ../../help.pm_.c:610
+#: ../../help.pm_.c:609
msgid ""
"DrakX generally detects the number of buttons your mouse has. If not, it\n"
"assumes you have a two-button mouse and will set it up for third-button\n"
@@ -3416,10 +3422,17 @@ msgid ""
"If you choose a mouse other than the default, a test screen will be\n"
"displayed. Use the buttons and wheel to verify that the settings are\n"
"correct. If the mouse is not working well, press the space bar or [Return]\n"
-"to \"Cancel\" and choose again."
+"to \"Cancel\" and choose again.\n"
+"\n"
+"Wheel mouses are sometimes not automatically detected. You will need to\n"
+"manually select it in the list. Be sure to select the one corresponding to\n"
+"the correct port it is attached to. After you have pressed the \"OK\"\n"
+"button, a mouse image is displayed. You then need to move the wheel of your\n"
+"mouse to activate it correctly. Then test all buttons and movements are\n"
+"correct."
msgstr ""
-#: ../../help.pm_.c:624
+#: ../../help.pm_.c:630
#, fuzzy
msgid ""
"Please select the correct port. For example, the \"COM1\" port under\n"
@@ -3428,7 +3441,7 @@ msgstr ""
"Diuzit ar porzh a zere mar plij. Da skouer, porzh COM1 dindan MS Windows\n"
"a vez anvet ttyS0 gant Linux."
-#: ../../help.pm_.c:628
+#: ../../help.pm_.c:634
msgid ""
"This is the most crucial decision point for the security of your GNU/Linux\n"
"system: you have to enter the \"root\" password. \"root\" is the system\n"
@@ -3458,15 +3471,15 @@ msgid ""
"In Expert mode, you will be asked if you will be connecting to an\n"
"authentication server, like NIS or LDAP.\n"
"\n"
-"If your network uses the LDAP (or NIS) protocol for authentication, select\n"
-"\"LDAP\" (or \"NIS\") as authentication. If you do not know, ask your\n"
-"network administrator.\n"
+"If your network uses either of the LDAP, NIS, or PDC Windows Domain\n"
+"authentication services, select the appropriate one as \"authentication\".\n"
+"If you do not know, ask your network administrator.\n"
"\n"
"If your computer is not connected to any administrated network, you will\n"
"want to choose \"Local files\" for authentication."
msgstr ""
-#: ../../help.pm_.c:664
+#: ../../help.pm_.c:670
msgid ""
"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
@@ -3505,8 +3518,12 @@ msgid ""
"options. !!\n"
"\n"
"Clicking the \"Advanced\" button in this dialog will offer many advanced\n"
-"options, which are reserved to the expert user.\n"
-"\n"
+"options, which are reserved for the expert user."
+msgstr ""
+
+#: ../../help.pm_.c:710
+#, fuzzy
+msgid ""
"After you have configured the general bootloader parameters, the list of\n"
"boot options which will be available at boot time will be displayed.\n"
"\n"
@@ -3514,17 +3531,7 @@ msgid ""
"automatically be added to the boot menu. Here, you can choose to fine-tune\n"
"the existing options. Select an entry and click \"Modify\" to modify or\n"
"remove it; \"Add\" creates a new entry; and \"Done\" goes on to the next\n"
-"installation step."
-msgstr ""
-
-#: ../../help.pm_.c:713
-#, fuzzy
-msgid ""
-"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
-"either GNU/Linux or any other operating system present on your computer.\n"
-"Normally, these other operating systems are correctly detected and\n"
-"installed. If this is not the case, you can add an entry by hand in this\n"
-"screen. Be careful to choose the correct parameters.\n"
+"installation step.\n"
"\n"
"You may also not want to give access to these other operating systems to\n"
"anyone. In which case, you can delete the corresponding entries. But then,\n"
@@ -3591,18 +3598,18 @@ msgstr ""
#: ../../help.pm_.c:759
msgid ""
-"DrakX now detects any IDE device present in your computer. It will also\n"
-"scan for one or more PCI SCSI card(s) on your system. If a SCSI card is\n"
+"DrakX now detects any IDE devices present in your computer. It will also\n"
+"scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
"found, DrakX will automatically install the appropriate driver.\n"
"\n"
"Because hardware detection does not always detect a piece of hardware,\n"
"DrakX will ask you to confirm if a PCI SCSI card is present. Click \"Yes\"\n"
"if you know that there is a SCSI card installed in your machine. You will\n"
-"be presented a list of SCSI cards to choose from. Click \"No\" if you have\n"
-"no SCSI hardware. If you are unsure, you can check the list of hardware\n"
-"detected in your machine by selecting \"See hardware info\" and clicking\n"
-"\"OK\". Examine the list of hardware and then click on the \"OK\" button to\n"
-"return to the SCSI interface question.\n"
+"be presented with a list of SCSI cards to choose from. Click \"No\" if you\n"
+"have no SCSI hardware. If you are unsure, you can check the list of\n"
+"hardware detected in your machine by selecting \"See hardware info\" and\n"
+"clicking \"OK\". Examine the list of hardware and then click on the \"OK\"\n"
+"button to return to the SCSI interface question.\n"
"\n"
"If you have to manually specify your adapter, DrakX will ask if you want to\n"
"specify options for it. You should allow DrakX to probe the hardware for\n"
@@ -3719,7 +3726,9 @@ msgid ""
"order to configure the clock according to the time zone you are in;\n"
"\n"
" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
-"configuration wizard;\n"
+"configuration wizard. Consult the corresponding chapter of the ``User\n"
+"Guide'' for more information on how to setup a new printer. The interface\n"
+"presented there is similar to the one used during installation;\n"
"\n"
" * \"Sound card\": if a sound card is detected on your system, it is\n"
"displayed here. No modification possible at installation time;\n"
@@ -3732,14 +3741,14 @@ msgid ""
"associated with it."
msgstr ""
-#: ../../help.pm_.c:894
+#: ../../help.pm_.c:896
msgid ""
"Choose the hard drive you want to erase in order to install your new\n"
"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
"and will not be recoverable!"
msgstr ""
-#: ../../help.pm_.c:899
+#: ../../help.pm_.c:901
msgid ""
"Click on \"OK\" if you want to delete all data and partitions present on\n"
"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
@@ -3791,27 +3800,27 @@ msgstr ""
msgid "Can't use broadcast with no NIS domain"
msgstr "N'hellañ ket implijout ar skignañ hep domani NIS"
-#: ../../install_any.pm_.c:859
+#: ../../install_any.pm_.c:862
#, fuzzy, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Lakait ur bladennig el lenner %s"
-#: ../../install_any.pm_.c:863
+#: ../../install_any.pm_.c:866
msgid "This floppy is not FAT formatted"
msgstr ""
-#: ../../install_any.pm_.c:875
+#: ../../install_any.pm_.c:878
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
msgstr ""
-#: ../../install_any.pm_.c:898 ../../partition_table.pm_.c:767
+#: ../../install_any.pm_.c:901 ../../partition_table.pm_.c:767
#, c-format
msgid "Error reading file %s"
msgstr "Fazi en ur lenn ar restr %s"
-#: ../../install_any.pm_.c:1020
+#: ../../install_any.pm_.c:1023
msgid ""
"An error occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
@@ -4055,7 +4064,7 @@ msgstr ""
msgid "Welcome to %s"
msgstr "Degemer e %s"
-#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:771
+#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:772
msgid "No floppy drive available"
msgstr "Lenner pladennig hegerz ebet"
@@ -4165,7 +4174,7 @@ msgstr ""
#: ../../install_steps_gtk.pm_.c:405 ../../install_steps_interactive.pm_.c:255
#: ../../install_steps_interactive.pm_.c:259
-#: ../../standalone/drakbackup_.c:4203
+#: ../../standalone/drakbackup_.c:4257
msgid "Install"
msgstr "Staliañ"
@@ -4426,7 +4435,7 @@ msgid "Are you sure you refuse the licence?"
msgstr ""
#: ../../install_steps_interactive.pm_.c:211
-#: ../../install_steps_interactive.pm_.c:1022
+#: ../../install_steps_interactive.pm_.c:1023
#: ../../standalone/keyboarddrake_.c:31
msgid "Keyboard"
msgstr "Stokellaoueg"
@@ -4794,147 +4803,147 @@ msgstr "Dibabit ur melezour da dapout ar pakadoĂč diwarnañ"
msgid "Contacting the mirror to get the list of available packages..."
msgstr "O taremprediñ ar melezour evit kaout roll ar pakadoĂč hegerz"
-#: ../../install_steps_interactive.pm_.c:944
+#: ../../install_steps_interactive.pm_.c:945
msgid "Which is your timezone?"
msgstr "Pe seurt a vo ho takad-eur ?"
-#: ../../install_steps_interactive.pm_.c:949
+#: ../../install_steps_interactive.pm_.c:950
#, fuzzy
msgid "Hardware clock set to GMT"
msgstr "Ha war GMT eo lakaet ho eurier periantel ?"
-#: ../../install_steps_interactive.pm_.c:950
+#: ../../install_steps_interactive.pm_.c:951
msgid "Automatic time synchronization (using NTP)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:957
+#: ../../install_steps_interactive.pm_.c:958
msgid "NTP Server"
msgstr "Servijer NTP"
-#: ../../install_steps_interactive.pm_.c:991
-#: ../../install_steps_interactive.pm_.c:999
+#: ../../install_steps_interactive.pm_.c:992
+#: ../../install_steps_interactive.pm_.c:1000
#, fuzzy
msgid "Remote CUPS server"
msgstr "Steud a-bell"
-#: ../../install_steps_interactive.pm_.c:992
+#: ../../install_steps_interactive.pm_.c:993
#, fuzzy
msgid "No printer"
msgstr "Moullerez lec'hel"
-#: ../../install_steps_interactive.pm_.c:1009
+#: ../../install_steps_interactive.pm_.c:1010
#, fuzzy
msgid "Do you have an ISA sound card?"
msgstr "Hag un all hoc'h eus ?"
-#: ../../install_steps_interactive.pm_.c:1011
+#: ../../install_steps_interactive.pm_.c:1012
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1013
+#: ../../install_steps_interactive.pm_.c:1014
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1018 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1019 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Evit diverriñ"
-#: ../../install_steps_interactive.pm_.c:1021
+#: ../../install_steps_interactive.pm_.c:1022
msgid "Mouse"
msgstr "Logodenn"
-#: ../../install_steps_interactive.pm_.c:1023
+#: ../../install_steps_interactive.pm_.c:1024
msgid "Timezone"
msgstr "Takad-eur"
-#: ../../install_steps_interactive.pm_.c:1024 ../../printerdrake.pm_.c:2926
-#: ../../printerdrake.pm_.c:3015
+#: ../../install_steps_interactive.pm_.c:1025 ../../printerdrake.pm_.c:2937
+#: ../../printerdrake.pm_.c:3026
msgid "Printer"
msgstr "Moullerez"
-#: ../../install_steps_interactive.pm_.c:1026
+#: ../../install_steps_interactive.pm_.c:1027
msgid "ISDN card"
msgstr "Kartenn ISDN"
-#: ../../install_steps_interactive.pm_.c:1029
-#: ../../install_steps_interactive.pm_.c:1031
+#: ../../install_steps_interactive.pm_.c:1030
+#: ../../install_steps_interactive.pm_.c:1032
msgid "Sound card"
msgstr "Kartenn son"
-#: ../../install_steps_interactive.pm_.c:1033
+#: ../../install_steps_interactive.pm_.c:1034
msgid "TV card"
msgstr "Kartenn pellwel"
-#: ../../install_steps_interactive.pm_.c:1073
-#: ../../install_steps_interactive.pm_.c:1098
-#: ../../install_steps_interactive.pm_.c:1102
+#: ../../install_steps_interactive.pm_.c:1074
+#: ../../install_steps_interactive.pm_.c:1099
+#: ../../install_steps_interactive.pm_.c:1103
msgid "LDAP"
msgstr "LDAP"
-#: ../../install_steps_interactive.pm_.c:1074
-#: ../../install_steps_interactive.pm_.c:1098
-#: ../../install_steps_interactive.pm_.c:1111
+#: ../../install_steps_interactive.pm_.c:1075
+#: ../../install_steps_interactive.pm_.c:1099
+#: ../../install_steps_interactive.pm_.c:1112
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1075
-#: ../../install_steps_interactive.pm_.c:1098
-#: ../../install_steps_interactive.pm_.c:1119
-#: ../../install_steps_interactive.pm_.c:1125
+#: ../../install_steps_interactive.pm_.c:1076
+#: ../../install_steps_interactive.pm_.c:1099
+#: ../../install_steps_interactive.pm_.c:1120
+#: ../../install_steps_interactive.pm_.c:1126
#, fuzzy
msgid "Windows Domain"
msgstr "TitouroĂč"
-#: ../../install_steps_interactive.pm_.c:1076
-#: ../../install_steps_interactive.pm_.c:1098
+#: ../../install_steps_interactive.pm_.c:1077
+#: ../../install_steps_interactive.pm_.c:1099
msgid "Local files"
msgstr "RestroĂč lec'hel"
-#: ../../install_steps_interactive.pm_.c:1085
-#: ../../install_steps_interactive.pm_.c:1086 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1086
+#: ../../install_steps_interactive.pm_.c:1087 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Termeniñ tremenger root"
-#: ../../install_steps_interactive.pm_.c:1087
+#: ../../install_steps_interactive.pm_.c:1088
msgid "No password"
msgstr "Tremenger ebet"
-#: ../../install_steps_interactive.pm_.c:1092
+#: ../../install_steps_interactive.pm_.c:1093
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr "Re eeun eo an tremenger-se (%d arouezenn a zo ret d'an nebeutañ)"
-#: ../../install_steps_interactive.pm_.c:1098 ../../network/modem.pm_.c:49
+#: ../../install_steps_interactive.pm_.c:1099 ../../network/modem.pm_.c:49
#: ../../standalone/drakconnect_.c:625 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Dilesadur"
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../install_steps_interactive.pm_.c:1107
#, fuzzy
msgid "Authentication LDAP"
msgstr "Dilesadur"
-#: ../../install_steps_interactive.pm_.c:1107
+#: ../../install_steps_interactive.pm_.c:1108
msgid "LDAP Base dn"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1108
+#: ../../install_steps_interactive.pm_.c:1109
msgid "LDAP Server"
msgstr "Servijer LDAP"
-#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1115
msgid "Authentication NIS"
msgstr "Dilesadur NIS"
-#: ../../install_steps_interactive.pm_.c:1115
+#: ../../install_steps_interactive.pm_.c:1116
msgid "NIS Domain"
msgstr "Domani NIS"
-#: ../../install_steps_interactive.pm_.c:1116
+#: ../../install_steps_interactive.pm_.c:1117
msgid "NIS Server"
msgstr "Servijer NIS"
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1123
msgid ""
"For this to work for a W2K PDC, you will probably need to have the admin "
"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
@@ -4950,21 +4959,21 @@ msgid ""
"good."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1124
+#: ../../install_steps_interactive.pm_.c:1125
#, fuzzy
msgid "Authentication Windows Domain"
msgstr "Dilesadur"
-#: ../../install_steps_interactive.pm_.c:1126
+#: ../../install_steps_interactive.pm_.c:1127
#, fuzzy
msgid "Domain Admin User Name"
msgstr "Anv ar domani"
-#: ../../install_steps_interactive.pm_.c:1127
+#: ../../install_steps_interactive.pm_.c:1128
msgid "Domain Admin Password"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1162
+#: ../../install_steps_interactive.pm_.c:1163
#, fuzzy
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -4994,19 +5003,19 @@ msgstr ""
"evit\n"
"ho reizhiad ?"
-#: ../../install_steps_interactive.pm_.c:1178
+#: ../../install_steps_interactive.pm_.c:1179
msgid "First floppy drive"
msgstr "Lenner pladennig kentañ"
-#: ../../install_steps_interactive.pm_.c:1179
+#: ../../install_steps_interactive.pm_.c:1180
msgid "Second floppy drive"
msgstr "Eil lenner pladennig"
-#: ../../install_steps_interactive.pm_.c:1180 ../../printerdrake.pm_.c:2459
+#: ../../install_steps_interactive.pm_.c:1181 ../../printerdrake.pm_.c:2470
msgid "Skip"
msgstr "Tremen e-biou"
-#: ../../install_steps_interactive.pm_.c:1185
+#: ../../install_steps_interactive.pm_.c:1186
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5034,7 +5043,7 @@ msgstr ""
"ho reizhiad ?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1191
+#: ../../install_steps_interactive.pm_.c:1192
msgid ""
"\n"
"\n"
@@ -5043,29 +5052,29 @@ msgid ""
"because XFS needs a very large driver)."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1199
+#: ../../install_steps_interactive.pm_.c:1200
msgid "Sorry, no floppy drive available"
msgstr "Ho tigarez, lenner pladennig hegerz ebet"
-#: ../../install_steps_interactive.pm_.c:1203
+#: ../../install_steps_interactive.pm_.c:1204
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr ""
"Dibabit al lenner pladennig a vennit implijout evit ober ar bladenn loc'hañ"
-#: ../../install_steps_interactive.pm_.c:1207
+#: ../../install_steps_interactive.pm_.c:1208
#, fuzzy, c-format
msgid "Insert a floppy in %s"
msgstr "Lakait ur bladennig el lenner %s"
-#: ../../install_steps_interactive.pm_.c:1210
+#: ../../install_steps_interactive.pm_.c:1211
msgid "Creating bootdisk..."
msgstr "O krouiñ ar bladenn loc'hañ"
-#: ../../install_steps_interactive.pm_.c:1217
+#: ../../install_steps_interactive.pm_.c:1218
msgid "Preparing bootloader..."
msgstr "O prientiñ ar c'harger loc'hañ"
-#: ../../install_steps_interactive.pm_.c:1228
+#: ../../install_steps_interactive.pm_.c:1229
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5073,11 +5082,11 @@ msgid ""
" need to use BootX to boot your machine"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1234
+#: ../../install_steps_interactive.pm_.c:1235
msgid "Do you want to use aboot?"
msgstr "Mennout a rit implijout aboot?"
-#: ../../install_steps_interactive.pm_.c:1237
+#: ../../install_steps_interactive.pm_.c:1238
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -5085,16 +5094,16 @@ msgstr ""
"Fazi en ur staliañ aboot,\n"
"klask rediañ ar staliadur zoken ma tistruj ar parzhadur kentañ ?"
-#: ../../install_steps_interactive.pm_.c:1244
+#: ../../install_steps_interactive.pm_.c:1245
msgid "Installing bootloader"
msgstr "Staliañ ar c'harger loc'hañ"
-#: ../../install_steps_interactive.pm_.c:1250
+#: ../../install_steps_interactive.pm_.c:1251
#, fuzzy
msgid "Installation of bootloader failed. The following error occured:"
msgstr "Staliadur LILO a zo sac'het. Degouezhet eo ar fazi a heul :"
-#: ../../install_steps_interactive.pm_.c:1258
+#: ../../install_steps_interactive.pm_.c:1259
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -5105,17 +5114,17 @@ msgid ""
"At your next boot you should see the bootloader prompt."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1292
+#: ../../install_steps_interactive.pm_.c:1293
#: ../../standalone/drakautoinst_.c:79
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Lakait ur bladennig gwerc'h el lenner %s"
-#: ../../install_steps_interactive.pm_.c:1296
+#: ../../install_steps_interactive.pm_.c:1297
msgid "Creating auto install floppy..."
msgstr "O krouiñ ur bladennig staliañ emgefreek"
-#: ../../install_steps_interactive.pm_.c:1307
+#: ../../install_steps_interactive.pm_.c:1308
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -5125,7 +5134,7 @@ msgstr ""
"\n"
"Mennout a rit kuitaat da vat bremañ ?"
-#: ../../install_steps_interactive.pm_.c:1318
+#: ../../install_steps_interactive.pm_.c:1319
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
@@ -5157,16 +5166,16 @@ msgstr ""
"TitouroĂč war gefluniañ ho reizhiad a zo hegerz e rannbennad Goude\n"
"Staliañ Sturier ofisiel an Arveriad Mandrake Linux."
-#: ../../install_steps_interactive.pm_.c:1331
+#: ../../install_steps_interactive.pm_.c:1332
msgid "http://www.mandrakelinux.com/en/90errata.php3"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1336
+#: ../../install_steps_interactive.pm_.c:1337
#, fuzzy
msgid "Generate auto install floppy"
msgstr "O krouiñ ur bladennig staliañ emgefreek"
-#: ../../install_steps_interactive.pm_.c:1338
+#: ../../install_steps_interactive.pm_.c:1339
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -5175,16 +5184,16 @@ msgid ""
"You may prefer to replay the installation.\n"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1343
+#: ../../install_steps_interactive.pm_.c:1344
msgid "Automated"
msgstr "Emgefreek"
-#: ../../install_steps_interactive.pm_.c:1343
+#: ../../install_steps_interactive.pm_.c:1344
#, fuzzy
msgid "Replay"
msgstr "Adkargañ"
-#: ../../install_steps_interactive.pm_.c:1346
+#: ../../install_steps_interactive.pm_.c:1347
#, fuzzy
msgid "Save packages selection"
msgstr "Diuz pakadoĂč unan hag unan"
@@ -5194,7 +5203,8 @@ msgstr "Diuz pakadoĂč unan hag unan"
msgid "Mandrake Linux Installation %s"
msgstr "Staliadur Mandrake Linux %s"
-#: ../../install_steps_newt.pm_.c:34
+#. -PO This string must fit in a 80-char wide text screen
+#: ../../install_steps_newt.pm_.c:35
msgid ""
" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
msgstr ""
@@ -5222,13 +5232,13 @@ msgid "Basic"
msgstr "Diazez"
#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:158
-#: ../../printerdrake.pm_.c:2113
+#: ../../printerdrake.pm_.c:2124
msgid "<- Previous"
msgstr "<- Diaraog"
#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
-#: ../../standalone/drakbackup_.c:4058 ../../standalone/drakbackup_.c:4085
-#: ../../standalone/drakbackup_.c:4115 ../../standalone/drakbackup_.c:4141
+#: ../../standalone/drakbackup_.c:4112 ../../standalone/drakbackup_.c:4139
+#: ../../standalone/drakbackup_.c:4169 ../../standalone/drakbackup_.c:4195
msgid "Next"
msgstr "A heul"
@@ -5845,7 +5855,7 @@ msgstr "-adobe-utopia-medium-r-normal-*-12-*-*-*-p-*-iso8859-*,*-r-*"
msgid "Finish"
msgstr "Disoc'h"
-#: ../../my_gtk.pm_.c:159 ../../printerdrake.pm_.c:2115
+#: ../../my_gtk.pm_.c:159 ../../printerdrake.pm_.c:2126
msgid "Next ->"
msgstr "A heul ->"
@@ -5901,6 +5911,68 @@ msgstr "implijit pppoe"
msgid "use pptp"
msgstr "implijit pptp"
+#: ../../network/drakfirewall.pm_.c:12
+#, fuzzy
+msgid "Web Server"
+msgstr "Servijer"
+
+#: ../../network/drakfirewall.pm_.c:17
+#, fuzzy
+msgid "Domain Name Server"
+msgstr "Anv ar domani"
+
+#: ../../network/drakfirewall.pm_.c:32
+#, fuzzy
+msgid "Mail Server"
+msgstr "StlennvonioĂč"
+
+#: ../../network/drakfirewall.pm_.c:37
+#, fuzzy
+msgid "POP and IMAP Server"
+msgstr "Servijer LDAP"
+
+#: ../../network/drakfirewall.pm_.c:111
+#, fuzzy
+msgid "No network card"
+msgstr "kartenn rouedad kavet ebet"
+
+#: ../../network/drakfirewall.pm_.c:129
+msgid ""
+"drakfirewall configurator\n"
+"\n"
+"This configures a personal firewall for this Mandrake Linux machine.\n"
+"For a powerful dedicated firewall solution, please look to the\n"
+"specialized MandrakeSecurity Firewall distribution."
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:147
+msgid "Which services would you like to allow the Internet to connect to?"
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:148
+msgid ""
+"You can enter miscellaneous ports. \n"
+"Valid examples are: 139/tcp 139/udp.\n"
+"Have a look at /etc/services for information."
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:154
+#, c-format
+msgid ""
+"Invalid port given: %s.\n"
+"The proper format is \"port/tcp\" or \"port/udp\", \n"
+"where port is between 1 and 65535."
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:162
+msgid "Everything (no firewall)"
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:164
+#, fuzzy
+msgid "Other ports"
+msgstr "Amprouiñ ar porzhioĂč"
+
#: ../../network/ethernet.pm_.c:37
#, fuzzy
msgid ""
@@ -6228,7 +6300,7 @@ msgstr "Dibabit ar ment nevez"
msgid "Use auto detection"
msgstr ""
-#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:3131
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:3151
#: ../../standalone/drakconnect_.c:274 ../../standalone/drakconnect_.c:277
#: ../../standalone/drakfloppy_.c:145
msgid "Expert Mode"
@@ -6461,68 +6533,6 @@ msgid ""
"need some manual fix after installation."
msgstr ""
-#: ../../network/tinyfirewall.pm_.c:12
-#, fuzzy
-msgid "Web Server"
-msgstr "Servijer"
-
-#: ../../network/tinyfirewall.pm_.c:17
-#, fuzzy
-msgid "Domain Name Server"
-msgstr "Anv ar domani"
-
-#: ../../network/tinyfirewall.pm_.c:32
-#, fuzzy
-msgid "Mail Server"
-msgstr "StlennvonioĂč"
-
-#: ../../network/tinyfirewall.pm_.c:37
-#, fuzzy
-msgid "POP and IMAP Server"
-msgstr "Servijer LDAP"
-
-#: ../../network/tinyfirewall.pm_.c:111
-#, fuzzy
-msgid "No network card"
-msgstr "kartenn rouedad kavet ebet"
-
-#: ../../network/tinyfirewall.pm_.c:129
-msgid ""
-"tinyfirewall configurator\n"
-"\n"
-"This configures a personal firewall for this Mandrake Linux machine.\n"
-"For a powerful dedicated firewall solution, please look to the\n"
-"specialized MandrakeSecurity Firewall distribution."
-msgstr ""
-
-#: ../../network/tinyfirewall.pm_.c:147
-msgid "Which services would you like to allow the Internet to connect to?"
-msgstr ""
-
-#: ../../network/tinyfirewall.pm_.c:148
-msgid ""
-"You can enter miscellaneous ports. \n"
-"Valid examples are: 139/tcp 139/udp.\n"
-"Have a look at /etc/services for information."
-msgstr ""
-
-#: ../../network/tinyfirewall.pm_.c:154
-#, c-format
-msgid ""
-"Invalid port given: %s.\n"
-"The proper format is \"port/tcp\" or \"port/udp\", \n"
-"where port is between 1 and 65535."
-msgstr ""
-
-#: ../../network/tinyfirewall.pm_.c:162
-msgid "Everything (no firewall)"
-msgstr ""
-
-#: ../../network/tinyfirewall.pm_.c:164
-#, fuzzy
-msgid "Other ports"
-msgstr "Amprouiñ ar porzhioĂč"
-
#: ../../network/tools.pm_.c:41
#, fuzzy
msgid "Internet configuration"
@@ -6778,7 +6788,7 @@ msgid "Unknown Model"
msgstr ""
#: ../../printer.pm_.c:735 ../../printer.pm_.c:926 ../../printer.pm_.c:1318
-#: ../../printerdrake.pm_.c:2249 ../../printerdrake.pm_.c:3394
+#: ../../printerdrake.pm_.c:2260 ../../printerdrake.pm_.c:3414
msgid "Unknown model"
msgstr ""
@@ -6865,10 +6875,10 @@ msgstr ""
msgid "On CUPS server \"%s\""
msgstr "IP ar servijer SMB"
-#: ../../printer.pm_.c:1128 ../../printerdrake.pm_.c:3052
-#: ../../printerdrake.pm_.c:3063 ../../printerdrake.pm_.c:3283
-#: ../../printerdrake.pm_.c:3335 ../../printerdrake.pm_.c:3361
-#: ../../printerdrake.pm_.c:3536 ../../printerdrake.pm_.c:3538
+#: ../../printer.pm_.c:1128 ../../printerdrake.pm_.c:3071
+#: ../../printerdrake.pm_.c:3082 ../../printerdrake.pm_.c:3303
+#: ../../printerdrake.pm_.c:3355 ../../printerdrake.pm_.c:3381
+#: ../../printerdrake.pm_.c:3556 ../../printerdrake.pm_.c:3558
msgid " (Default)"
msgstr " (Dre ziouer)"
@@ -6891,12 +6901,12 @@ msgstr ""
msgid "Printer auto-detection (Local, TCP/Socket, and SMB printers)"
msgstr ""
-#: ../../printerdrake.pm_.c:84 ../../printerdrake.pm_.c:3115
+#: ../../printerdrake.pm_.c:84 ../../printerdrake.pm_.c:3135
#, fuzzy
msgid "CUPS configuration"
msgstr "Kefluniadur"
-#: ../../printerdrake.pm_.c:85 ../../printerdrake.pm_.c:3116
+#: ../../printerdrake.pm_.c:85 ../../printerdrake.pm_.c:3136
#, fuzzy
msgid "Specify CUPS server"
msgstr "Steud a-bell"
@@ -6948,18 +6958,18 @@ msgstr "Kefluniadur goude staliañ"
#: ../../printerdrake.pm_.c:177 ../../printerdrake.pm_.c:247
#: ../../printerdrake.pm_.c:1529 ../../printerdrake.pm_.c:1533
-#: ../../printerdrake.pm_.c:1651 ../../printerdrake.pm_.c:2192
-#: ../../printerdrake.pm_.c:2345 ../../printerdrake.pm_.c:2404
-#: ../../printerdrake.pm_.c:2477 ../../printerdrake.pm_.c:2498
-#: ../../printerdrake.pm_.c:2688 ../../printerdrake.pm_.c:2729
-#: ../../printerdrake.pm_.c:2734 ../../printerdrake.pm_.c:2768
-#: ../../printerdrake.pm_.c:2773 ../../printerdrake.pm_.c:2810
-#: ../../printerdrake.pm_.c:2863 ../../printerdrake.pm_.c:2883
-#: ../../printerdrake.pm_.c:2897 ../../printerdrake.pm_.c:2931
-#: ../../printerdrake.pm_.c:2977 ../../printerdrake.pm_.c:2995
-#: ../../printerdrake.pm_.c:3076 ../../printerdrake.pm_.c:3149
-#: ../../printerdrake.pm_.c:3451 ../../printerdrake.pm_.c:3506
-#: ../../printerdrake.pm_.c:3559 ../../standalone/printerdrake_.c:57
+#: ../../printerdrake.pm_.c:1651 ../../printerdrake.pm_.c:2203
+#: ../../printerdrake.pm_.c:2356 ../../printerdrake.pm_.c:2415
+#: ../../printerdrake.pm_.c:2488 ../../printerdrake.pm_.c:2509
+#: ../../printerdrake.pm_.c:2699 ../../printerdrake.pm_.c:2740
+#: ../../printerdrake.pm_.c:2745 ../../printerdrake.pm_.c:2779
+#: ../../printerdrake.pm_.c:2784 ../../printerdrake.pm_.c:2821
+#: ../../printerdrake.pm_.c:2874 ../../printerdrake.pm_.c:2894
+#: ../../printerdrake.pm_.c:2908 ../../printerdrake.pm_.c:2942
+#: ../../printerdrake.pm_.c:2988 ../../printerdrake.pm_.c:3006
+#: ../../printerdrake.pm_.c:3095 ../../printerdrake.pm_.c:3169
+#: ../../printerdrake.pm_.c:3471 ../../printerdrake.pm_.c:3526
+#: ../../printerdrake.pm_.c:3579 ../../standalone/printerdrake_.c:57
#, fuzzy
msgid "Printerdrake"
msgstr "Moullerez"
@@ -7064,7 +7074,7 @@ msgid ""
msgstr ""
#: ../../printerdrake.pm_.c:269 ../../printerdrake.pm_.c:278
-#: ../../printerdrake.pm_.c:3098 ../../printerdrake.pm_.c:3222
+#: ../../printerdrake.pm_.c:3117 ../../printerdrake.pm_.c:3242
#, fuzzy
msgid "Add a new printer"
msgstr "Moullerez lec'hel"
@@ -7643,16 +7653,42 @@ msgstr ""
msgid ""
"To be able to print with your Lexmark inkjet and this configuration, you "
"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
-"com/). Go to the US site and click on the \"Drivers\" button. Then choose "
-"your model and afterwards \"Linux\" as operating system. The drivers come as "
-"RPM packages or shell scripts with interactive graphical installation. You "
-"do not need to do this configuration by the graphical frontends. Cancel "
-"directly after the license agreement. Then print printhead alignment pages "
-"with \"lexmarkmaintain\" and adjust the head alignment settings with this "
-"program."
+"com/). Click on the \"Drivers\" link. Then choose your model and afterwards "
+"\"Linux\" as operating system. The drivers come as RPM packages or shell "
+"scripts with interactive graphical installation. You do not need to do this "
+"configuration by the graphical frontends. Cancel directly after the license "
+"agreement. Then print printhead alignment pages with \"lexmarkmaintain\" and "
+"adjust the head alignment settings with this program."
msgstr ""
-#: ../../printerdrake.pm_.c:2029
+#: ../../printerdrake.pm_.c:1816
+msgid "GDI Laser Printer using the Zenographics ZJ-Stream Format"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:1817
+msgid ""
+"Your printer belongs to the group of GDI laser printers (winprinters) sold "
+"by different manufacturers which uses the Zenographics ZJ-stream raster "
+"format for the data sent to the printer. The driver for these printers is "
+"still in a very early development stage and so it will perhaps not always "
+"work properly. Especially it is possible that the printer only works when "
+"you choose the A4 paper size.\n"
+"\n"
+"Some of these printers, as the HP LaserJet 1000, for which this driver was "
+"originally created, need their firmware to be uploaded to them after they "
+"are turned on. In the case of the HP LaserJet 1000 you have to search the "
+"printer's Windows driver CD or your Windows partition for the file "
+"\"sihp1000.img\" and upload the file to the printer with one of the "
+"following commands:\n"
+"\n"
+" lpr -o raw sihp1000.img\n"
+" cat sihp1000.img > /dev/usb/lp0\n"
+"\n"
+"The first command can be given by any normal user, the second must be given "
+"as root. After having done so you can print normally.\n"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:2040
msgid ""
"Printer default settings\n"
"\n"
@@ -7662,34 +7698,34 @@ msgid ""
"printout quality/resolution printing can get substantially slower."
msgstr ""
-#: ../../printerdrake.pm_.c:2038
+#: ../../printerdrake.pm_.c:2049
#, c-format
msgid "Option %s must be an integer number!"
msgstr ""
-#: ../../printerdrake.pm_.c:2042
+#: ../../printerdrake.pm_.c:2053
#, c-format
msgid "Option %s must be a number!"
msgstr ""
-#: ../../printerdrake.pm_.c:2047
+#: ../../printerdrake.pm_.c:2058
#, c-format
msgid "Option %s out of range!"
msgstr ""
-#: ../../printerdrake.pm_.c:2086
+#: ../../printerdrake.pm_.c:2097
#, fuzzy, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
"as the default printer?"
msgstr "Ha mennout a rit amprouiñ moullañ skrid ?"
-#: ../../printerdrake.pm_.c:2109
+#: ../../printerdrake.pm_.c:2120
#, fuzzy
msgid "Test pages"
msgstr "Amprouiñ ar porzhioĂč"
-#: ../../printerdrake.pm_.c:2110
+#: ../../printerdrake.pm_.c:2121
msgid ""
"Please select the test pages you want to print.\n"
"Note: the photo test page can take a rather long time to get printed and on "
@@ -7697,45 +7733,45 @@ msgid ""
"it is enough to print the standard test page."
msgstr ""
-#: ../../printerdrake.pm_.c:2114
+#: ../../printerdrake.pm_.c:2125
#, fuzzy
msgid "No test pages"
msgstr "Ya, moullit an div bajenn arnod"
-#: ../../printerdrake.pm_.c:2115
+#: ../../printerdrake.pm_.c:2126
#, fuzzy
msgid "Print"
msgstr "Moullerez"
-#: ../../printerdrake.pm_.c:2172
+#: ../../printerdrake.pm_.c:2183
#, fuzzy
msgid "Standard test page"
msgstr "Diorren"
-#: ../../printerdrake.pm_.c:2175
+#: ../../printerdrake.pm_.c:2186
msgid "Alternative test page (Letter)"
msgstr ""
-#: ../../printerdrake.pm_.c:2178
+#: ../../printerdrake.pm_.c:2189
#, fuzzy
msgid "Alternative test page (A4)"
msgstr "O voullañ pajenn(oĂč) skrid..."
-#: ../../printerdrake.pm_.c:2180
+#: ../../printerdrake.pm_.c:2191
#, fuzzy
msgid "Photo test page"
msgstr "O voullañ pajenn(oĂč) skrid..."
-#: ../../printerdrake.pm_.c:2184
+#: ../../printerdrake.pm_.c:2195
#, fuzzy
msgid "Do not print any test page"
msgstr "O voullañ pajenn(oĂč) skrid..."
-#: ../../printerdrake.pm_.c:2193 ../../printerdrake.pm_.c:2346
+#: ../../printerdrake.pm_.c:2204 ../../printerdrake.pm_.c:2357
msgid "Printing test page(s)..."
msgstr "O voullañ pajenn(oĂč) skrid..."
-#: ../../printerdrake.pm_.c:2218
+#: ../../printerdrake.pm_.c:2229
#, fuzzy, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -7751,7 +7787,7 @@ msgstr ""
"\n"
"Ha mont a ra en-dro reizh ?"
-#: ../../printerdrake.pm_.c:2222
+#: ../../printerdrake.pm_.c:2233
#, fuzzy
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -7761,16 +7797,16 @@ msgstr ""
"Ur pennadig e c'hell padout a-raok ma loc'hfe a voullerez.\n"
"Ha mont a ra en-dro reizh ?"
-#: ../../printerdrake.pm_.c:2229
+#: ../../printerdrake.pm_.c:2240
msgid "Did it work properly?"
msgstr ""
-#: ../../printerdrake.pm_.c:2251 ../../printerdrake.pm_.c:3396
+#: ../../printerdrake.pm_.c:2262 ../../printerdrake.pm_.c:3416
#, fuzzy
msgid "Raw printer"
msgstr "Moullerez lec'hel"
-#: ../../printerdrake.pm_.c:2277
+#: ../../printerdrake.pm_.c:2288
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -7779,15 +7815,15 @@ msgid ""
"to modify the option settings easily.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2279
+#: ../../printerdrake.pm_.c:2290
msgid ""
"These commands you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications, but here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2282 ../../printerdrake.pm_.c:2299
-#: ../../printerdrake.pm_.c:2309
+#: ../../printerdrake.pm_.c:2293 ../../printerdrake.pm_.c:2310
+#: ../../printerdrake.pm_.c:2320
#, c-format
msgid ""
"\n"
@@ -7796,7 +7832,7 @@ msgid ""
"line, e. g. \"%s <file>\". "
msgstr ""
-#: ../../printerdrake.pm_.c:2285 ../../printerdrake.pm_.c:2325
+#: ../../printerdrake.pm_.c:2296 ../../printerdrake.pm_.c:2336
#, c-format
msgid ""
"To know about the options available for the current printer read either the "
@@ -7804,41 +7840,41 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2289
+#: ../../printerdrake.pm_.c:2300
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2294 ../../printerdrake.pm_.c:2304
+#: ../../printerdrake.pm_.c:2305 ../../printerdrake.pm_.c:2315
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2296 ../../printerdrake.pm_.c:2306
-#: ../../printerdrake.pm_.c:2316
+#: ../../printerdrake.pm_.c:2307 ../../printerdrake.pm_.c:2317
+#: ../../printerdrake.pm_.c:2327
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2301 ../../printerdrake.pm_.c:2311
+#: ../../printerdrake.pm_.c:2312 ../../printerdrake.pm_.c:2322
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
msgstr ""
-#: ../../printerdrake.pm_.c:2314
+#: ../../printerdrake.pm_.c:2325
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\" or \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2318
+#: ../../printerdrake.pm_.c:2329
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -7848,7 +7884,7 @@ msgid ""
"jams.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2322
+#: ../../printerdrake.pm_.c:2333
#, c-format
msgid ""
"\n"
@@ -7857,42 +7893,42 @@ msgid ""
"line, e. g. \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2332
+#: ../../printerdrake.pm_.c:2343
#, fuzzy, c-format
msgid "Printing/Scanning/Photo Cards on \"%s\""
msgstr "O tizenaouiñ ar rouedad"
-#: ../../printerdrake.pm_.c:2333
+#: ../../printerdrake.pm_.c:2344
#, fuzzy, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "O tizenaouiñ ar rouedad"
-#: ../../printerdrake.pm_.c:2335
+#: ../../printerdrake.pm_.c:2346
#, fuzzy, c-format
msgid "Printing/Photo Card Access on \"%s\""
msgstr "O tizenaouiñ ar rouedad"
-#: ../../printerdrake.pm_.c:2336
+#: ../../printerdrake.pm_.c:2347
#, fuzzy, c-format
msgid "Printing on the printer \"%s\""
msgstr "O tizenaouiñ ar rouedad"
-#: ../../printerdrake.pm_.c:2339 ../../printerdrake.pm_.c:2342
-#: ../../printerdrake.pm_.c:2343 ../../printerdrake.pm_.c:2344
-#: ../../printerdrake.pm_.c:3380 ../../standalone/drakTermServ_.c:248
-#: ../../standalone/drakbackup_.c:1560 ../../standalone/drakbackup_.c:4154
-#: ../../standalone/drakbug_.c:129 ../../standalone/drakfont_.c:705
+#: ../../printerdrake.pm_.c:2350 ../../printerdrake.pm_.c:2353
+#: ../../printerdrake.pm_.c:2354 ../../printerdrake.pm_.c:2355
+#: ../../printerdrake.pm_.c:3400 ../../standalone/drakTermServ_.c:248
+#: ../../standalone/drakbackup_.c:1560 ../../standalone/drakbackup_.c:4208
+#: ../../standalone/drakbug_.c:130 ../../standalone/drakfont_.c:705
#: ../../standalone/drakfont_.c:1014
#, fuzzy
msgid "Close"
msgstr "Logodenn USB"
-#: ../../printerdrake.pm_.c:2342
+#: ../../printerdrake.pm_.c:2353
#, fuzzy
msgid "Print option list"
msgstr "DibarzhoĂč ar voullerez"
-#: ../../printerdrake.pm_.c:2362
+#: ../../printerdrake.pm_.c:2373
#, c-format
msgid ""
"Your multi-function device was configured automatically to be able to scan. "
@@ -7906,7 +7942,7 @@ msgid ""
"Do not use \"scannerdrake\" for this device!"
msgstr ""
-#: ../../printerdrake.pm_.c:2383
+#: ../../printerdrake.pm_.c:2394
msgid ""
"Your printer was configured automatically to give you access to the photo "
"card drives from your PC. Now you can access your photo cards using the "
@@ -7919,18 +7955,18 @@ msgid ""
"of the file lists."
msgstr ""
-#: ../../printerdrake.pm_.c:2405 ../../printerdrake.pm_.c:2864
-#: ../../printerdrake.pm_.c:3150
+#: ../../printerdrake.pm_.c:2416 ../../printerdrake.pm_.c:2875
+#: ../../printerdrake.pm_.c:3170
msgid "Reading printer data..."
msgstr ""
-#: ../../printerdrake.pm_.c:2425 ../../printerdrake.pm_.c:2453
-#: ../../printerdrake.pm_.c:2488
+#: ../../printerdrake.pm_.c:2436 ../../printerdrake.pm_.c:2464
+#: ../../printerdrake.pm_.c:2499
#, fuzzy
msgid "Transfer printer configuration"
msgstr "Kefluniañ ar proksioĂč"
-#: ../../printerdrake.pm_.c:2426
+#: ../../printerdrake.pm_.c:2437
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -7940,51 +7976,51 @@ msgid ""
"Not all queues can be transferred due to the following reasons:\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2429
+#: ../../printerdrake.pm_.c:2440
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2431
+#: ../../printerdrake.pm_.c:2442
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2433
+#: ../../printerdrake.pm_.c:2444
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2435
+#: ../../printerdrake.pm_.c:2446
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:2436
+#: ../../printerdrake.pm_.c:2447
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
"or with native CUPS drivers cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:2437
+#: ../../printerdrake.pm_.c:2448
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
"\"Transfer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:2440
+#: ../../printerdrake.pm_.c:2451
msgid "Do not transfer printers"
msgstr ""
-#: ../../printerdrake.pm_.c:2441 ../../printerdrake.pm_.c:2458
+#: ../../printerdrake.pm_.c:2452 ../../printerdrake.pm_.c:2469
msgid "Transfer"
msgstr ""
-#: ../../printerdrake.pm_.c:2454
+#: ../../printerdrake.pm_.c:2465
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -7992,61 +8028,61 @@ msgid ""
"You can also type a new name or skip this printer."
msgstr ""
-#: ../../printerdrake.pm_.c:2462
+#: ../../printerdrake.pm_.c:2473
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr ""
-#: ../../printerdrake.pm_.c:2467
+#: ../../printerdrake.pm_.c:2478
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
"do you really want to overwrite its configuration?"
msgstr ""
-#: ../../printerdrake.pm_.c:2475
+#: ../../printerdrake.pm_.c:2486
#, fuzzy
msgid "New printer name"
msgstr "Moullerez lec'hel"
-#: ../../printerdrake.pm_.c:2478
+#: ../../printerdrake.pm_.c:2489
#, c-format
msgid "Transferring %s..."
msgstr ""
-#: ../../printerdrake.pm_.c:2489
+#: ../../printerdrake.pm_.c:2500
#, c-format
msgid ""
"You have transferred your former default printer (\"%s\"), Should it be also "
"the default printer under the new printing system %s?"
msgstr ""
-#: ../../printerdrake.pm_.c:2499
+#: ../../printerdrake.pm_.c:2510
msgid "Refreshing printer data..."
msgstr ""
-#: ../../printerdrake.pm_.c:2507 ../../printerdrake.pm_.c:2579
-#: ../../printerdrake.pm_.c:2591
+#: ../../printerdrake.pm_.c:2518 ../../printerdrake.pm_.c:2590
+#: ../../printerdrake.pm_.c:2602
#, fuzzy
msgid "Configuration of a remote printer"
msgstr "Kefluniañ ar voullerez"
-#: ../../printerdrake.pm_.c:2508
+#: ../../printerdrake.pm_.c:2519
#, fuzzy
msgid "Starting network..."
msgstr "Kefluniañ ur rouedad"
-#: ../../printerdrake.pm_.c:2543 ../../printerdrake.pm_.c:2547
-#: ../../printerdrake.pm_.c:2549
+#: ../../printerdrake.pm_.c:2554 ../../printerdrake.pm_.c:2558
+#: ../../printerdrake.pm_.c:2560
#, fuzzy
msgid "Configure the network now"
msgstr "Kefluniañ ur rouedad"
-#: ../../printerdrake.pm_.c:2544
+#: ../../printerdrake.pm_.c:2555
#, fuzzy
msgid "Network functionality not configured"
msgstr "Skramm ket kefluniet"
-#: ../../printerdrake.pm_.c:2545
+#: ../../printerdrake.pm_.c:2556
msgid ""
"You are going to configure a remote printer. This needs working network "
"access, but your network is not configured yet. If you go on without network "
@@ -8054,12 +8090,12 @@ msgid ""
"configuring now. How do you want to proceed?"
msgstr ""
-#: ../../printerdrake.pm_.c:2548
+#: ../../printerdrake.pm_.c:2559
#, fuzzy
msgid "Go on without configuring the network"
msgstr "Kefluniañ ar rouedad"
-#: ../../printerdrake.pm_.c:2581
+#: ../../printerdrake.pm_.c:2592
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -8069,34 +8105,34 @@ msgid ""
"\"Printer\""
msgstr ""
-#: ../../printerdrake.pm_.c:2582
+#: ../../printerdrake.pm_.c:2593
msgid ""
"The network access was not running and could not be started. Please check "
"your configuration and your hardware. Then try to configure your remote "
"printer again."
msgstr ""
-#: ../../printerdrake.pm_.c:2592
+#: ../../printerdrake.pm_.c:2603
#, fuzzy
msgid "Restarting printing system..."
msgstr "DibarzhoĂč ar voullerez lpd a-bell"
-#: ../../printerdrake.pm_.c:2630
+#: ../../printerdrake.pm_.c:2641
#, fuzzy
msgid "high"
msgstr "Uhel"
-#: ../../printerdrake.pm_.c:2630
+#: ../../printerdrake.pm_.c:2641
#, fuzzy
msgid "paranoid"
msgstr "Ankeniet"
-#: ../../printerdrake.pm_.c:2631
+#: ../../printerdrake.pm_.c:2642
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr ""
-#: ../../printerdrake.pm_.c:2632
+#: ../../printerdrake.pm_.c:2643
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -8111,11 +8147,11 @@ msgid ""
"Do you really want to configure printing on this machine?"
msgstr ""
-#: ../../printerdrake.pm_.c:2664
+#: ../../printerdrake.pm_.c:2675
msgid "Starting the printing system at boot time"
msgstr ""
-#: ../../printerdrake.pm_.c:2665
+#: ../../printerdrake.pm_.c:2676
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -8129,65 +8165,65 @@ msgid ""
"again?"
msgstr ""
-#: ../../printerdrake.pm_.c:2689 ../../printerdrake.pm_.c:2730
-#: ../../printerdrake.pm_.c:2769 ../../printerdrake.pm_.c:2811
-#: ../../printerdrake.pm_.c:2932
+#: ../../printerdrake.pm_.c:2700 ../../printerdrake.pm_.c:2741
+#: ../../printerdrake.pm_.c:2780 ../../printerdrake.pm_.c:2822
+#: ../../printerdrake.pm_.c:2943
msgid "Checking installed software..."
msgstr ""
-#: ../../printerdrake.pm_.c:2735
+#: ../../printerdrake.pm_.c:2746
msgid "Removing LPRng..."
msgstr ""
-#: ../../printerdrake.pm_.c:2774
+#: ../../printerdrake.pm_.c:2785
msgid "Removing LPD..."
msgstr ""
-#: ../../printerdrake.pm_.c:2847
+#: ../../printerdrake.pm_.c:2858
#, fuzzy
msgid "Select Printer Spooler"
msgstr "Diuzit lugerezh ar voullerez"
-#: ../../printerdrake.pm_.c:2848
+#: ../../printerdrake.pm_.c:2859
#, fuzzy
msgid "Which printing system (spooler) do you want to use?"
msgstr "Pe seurt parzhadur a vennit ?"
-#: ../../printerdrake.pm_.c:2884
+#: ../../printerdrake.pm_.c:2895
#, fuzzy, c-format
msgid "Configuring printer \"%s\"..."
msgstr "Kefluniañ ar voullerez"
-#: ../../printerdrake.pm_.c:2898
+#: ../../printerdrake.pm_.c:2909
#, fuzzy
msgid "Installing Foomatic..."
msgstr "O staliañ ar pakad %s"
-#: ../../printerdrake.pm_.c:2968 ../../printerdrake.pm_.c:3009
-#: ../../printerdrake.pm_.c:3397 ../../printerdrake.pm_.c:3470
+#: ../../printerdrake.pm_.c:2979 ../../printerdrake.pm_.c:3020
+#: ../../printerdrake.pm_.c:3417 ../../printerdrake.pm_.c:3490
msgid "Printer options"
msgstr "DibarzhoĂč ar voullerez"
-#: ../../printerdrake.pm_.c:2978
+#: ../../printerdrake.pm_.c:2989
#, fuzzy
msgid "Preparing Printerdrake..."
msgstr "DibarzhoĂč ar voullerez lpd a-bell"
-#: ../../printerdrake.pm_.c:2996 ../../printerdrake.pm_.c:3560
+#: ../../printerdrake.pm_.c:3007 ../../printerdrake.pm_.c:3580
#, fuzzy
msgid "Configuring applications..."
msgstr "Kefluniañ ar voullerez"
-#: ../../printerdrake.pm_.c:3016
+#: ../../printerdrake.pm_.c:3027
#, fuzzy
msgid "Would you like to configure printing?"
msgstr "Mennout a rit kefluniañ ur voullerez ?"
-#: ../../printerdrake.pm_.c:3028
+#: ../../printerdrake.pm_.c:3039
msgid "Printing system: "
msgstr ""
-#: ../../printerdrake.pm_.c:3080
+#: ../../printerdrake.pm_.c:3099
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
@@ -8198,7 +8234,7 @@ msgstr ""
"Setu da heul ar steudadoĂč moullañ.\n"
"Gallout a rit ouzhpennañ lod pe gemmañ a re a zo."
-#: ../../printerdrake.pm_.c:3081
+#: ../../printerdrake.pm_.c:3100
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
@@ -8208,140 +8244,140 @@ msgstr ""
"Setu da heul ar steudadoĂč moullañ.\n"
"Gallout a rit ouzhpennañ lod pe gemmañ a re a zo."
-#: ../../printerdrake.pm_.c:3107
+#: ../../printerdrake.pm_.c:3127
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr ""
-#: ../../printerdrake.pm_.c:3125
+#: ../../printerdrake.pm_.c:3145
#, fuzzy
msgid "Change the printing system"
msgstr "Kefluniañ ur rouedad"
-#: ../../printerdrake.pm_.c:3130 ../../standalone/drakconnect_.c:277
+#: ../../printerdrake.pm_.c:3150 ../../standalone/drakconnect_.c:277
#, fuzzy
msgid "Normal Mode"
msgstr "Boas"
-#: ../../printerdrake.pm_.c:3290 ../../printerdrake.pm_.c:3340
-#: ../../printerdrake.pm_.c:3553
+#: ../../printerdrake.pm_.c:3310 ../../printerdrake.pm_.c:3360
+#: ../../printerdrake.pm_.c:3573
#, fuzzy
msgid "Do you want to configure another printer?"
msgstr "Mennout a rit amprouiñ ar c'hefluniadur ?"
-#: ../../printerdrake.pm_.c:3375
+#: ../../printerdrake.pm_.c:3395
#, fuzzy
msgid "Modify printer configuration"
msgstr "Kefluniañ ar modem"
-#: ../../printerdrake.pm_.c:3377
+#: ../../printerdrake.pm_.c:3397
#, fuzzy, c-format
msgid ""
"Printer %s\n"
"What do you want to modify on this printer?"
msgstr "Mennout a rit amprouiñ ar c'hefluniadur ?"
-#: ../../printerdrake.pm_.c:3381
+#: ../../printerdrake.pm_.c:3401
msgid "Do it!"
msgstr ""
-#: ../../printerdrake.pm_.c:3386 ../../printerdrake.pm_.c:3441
+#: ../../printerdrake.pm_.c:3406 ../../printerdrake.pm_.c:3461
#, fuzzy
msgid "Printer connection type"
msgstr "Lugerezh ar voullerez"
-#: ../../printerdrake.pm_.c:3387 ../../printerdrake.pm_.c:3445
+#: ../../printerdrake.pm_.c:3407 ../../printerdrake.pm_.c:3465
#, fuzzy
msgid "Printer name, description, location"
msgstr "Lugerezh ar voullerez"
-#: ../../printerdrake.pm_.c:3389 ../../printerdrake.pm_.c:3463
+#: ../../printerdrake.pm_.c:3409 ../../printerdrake.pm_.c:3483
msgid "Printer manufacturer, model, driver"
msgstr ""
-#: ../../printerdrake.pm_.c:3390 ../../printerdrake.pm_.c:3464
+#: ../../printerdrake.pm_.c:3410 ../../printerdrake.pm_.c:3484
msgid "Printer manufacturer, model"
msgstr ""
-#: ../../printerdrake.pm_.c:3399 ../../printerdrake.pm_.c:3474
+#: ../../printerdrake.pm_.c:3419 ../../printerdrake.pm_.c:3494
msgid "Set this printer as the default"
msgstr ""
-#: ../../printerdrake.pm_.c:3401 ../../printerdrake.pm_.c:3479
+#: ../../printerdrake.pm_.c:3421 ../../printerdrake.pm_.c:3499
msgid "Add this printer to Star Office/OpenOffice.org/GIMP"
msgstr ""
-#: ../../printerdrake.pm_.c:3402 ../../printerdrake.pm_.c:3488
+#: ../../printerdrake.pm_.c:3422 ../../printerdrake.pm_.c:3508
msgid "Remove this printer from Star Office/OpenOffice.org/GIMP"
msgstr ""
-#: ../../printerdrake.pm_.c:3403 ../../printerdrake.pm_.c:3497
+#: ../../printerdrake.pm_.c:3423 ../../printerdrake.pm_.c:3517
#, fuzzy
msgid "Print test pages"
msgstr "O voullañ pajenn(oĂč) skrid..."
-#: ../../printerdrake.pm_.c:3404 ../../printerdrake.pm_.c:3499
+#: ../../printerdrake.pm_.c:3424 ../../printerdrake.pm_.c:3519
#, fuzzy
msgid "Know how to use this printer"
msgstr "Mennout a rit amprouiñ ar c'hefluniadur ?"
-#: ../../printerdrake.pm_.c:3406 ../../printerdrake.pm_.c:3501
+#: ../../printerdrake.pm_.c:3426 ../../printerdrake.pm_.c:3521
#, fuzzy
msgid "Remove printer"
msgstr "DibarzhoĂč ar voullerez lpd a-bell"
-#: ../../printerdrake.pm_.c:3452
+#: ../../printerdrake.pm_.c:3472
#, fuzzy, c-format
msgid "Removing old printer \"%s\"..."
msgstr "DibarzhoĂč ar voullerez lpd a-bell"
-#: ../../printerdrake.pm_.c:3477
+#: ../../printerdrake.pm_.c:3497
#, fuzzy
msgid "Default printer"
msgstr "Moullerez lec'hel"
-#: ../../printerdrake.pm_.c:3478
+#: ../../printerdrake.pm_.c:3498
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr ""
-#: ../../printerdrake.pm_.c:3482 ../../printerdrake.pm_.c:3485
+#: ../../printerdrake.pm_.c:3502 ../../printerdrake.pm_.c:3505
msgid "Adding printer to Star Office/OpenOffice.org/GIMP"
msgstr ""
-#: ../../printerdrake.pm_.c:3483
+#: ../../printerdrake.pm_.c:3503
#, c-format
msgid ""
"The printer \"%s\" was successfully added to Star Office/OpenOffice.org/GIMP."
msgstr ""
-#: ../../printerdrake.pm_.c:3486
+#: ../../printerdrake.pm_.c:3506
#, c-format
msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org/GIMP."
msgstr ""
-#: ../../printerdrake.pm_.c:3491 ../../printerdrake.pm_.c:3494
+#: ../../printerdrake.pm_.c:3511 ../../printerdrake.pm_.c:3514
msgid "Removing printer from Star Office/OpenOffice.org/GIMP"
msgstr ""
-#: ../../printerdrake.pm_.c:3492
+#: ../../printerdrake.pm_.c:3512
#, c-format
msgid ""
"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org/"
"GIMP."
msgstr ""
-#: ../../printerdrake.pm_.c:3495
+#: ../../printerdrake.pm_.c:3515
#, c-format
msgid ""
"Failed to remove the printer \"%s\" from Star Office/OpenOffice.org/GIMP."
msgstr ""
-#: ../../printerdrake.pm_.c:3503
+#: ../../printerdrake.pm_.c:3523
#, fuzzy, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr "Mennout a rit amprouiñ ar c'hefluniadur ?"
-#: ../../printerdrake.pm_.c:3507
+#: ../../printerdrake.pm_.c:3527
#, fuzzy, c-format
msgid "Removing printer \"%s\"..."
msgstr "DibarzhoĂč ar voullerez lpd a-bell"
@@ -8804,166 +8840,212 @@ msgstr "Meuziad Lañsañ"
msgid "Stop"
msgstr "Rann"
-#: ../../share/advertising/00-thanks.pl_.c:9
-msgid "Thank you for choosing Mandrake Linux 8.2"
+#: ../../share/advertising/01-thanks.pl_.c:9
+msgid "Thank you for choosing Mandrake Linux 9.0"
msgstr ""
-#: ../../share/advertising/00-thanks.pl_.c:10
+#: ../../share/advertising/01-thanks.pl_.c:10
msgid "Welcome to the Open Source world"
msgstr ""
-#: ../../share/advertising/00-thanks.pl_.c:11
+#: ../../share/advertising/01-thanks.pl_.c:11
msgid ""
"The success of MandrakeSoft is based upon the principle of Free Software. "
"Your new operating system is the result of collaborative work on the part of "
"the worldwide Linux Community"
msgstr ""
-#: ../../share/advertising/01-gnu.pl_.c:9
+#: ../../share/advertising/02-community.pl_.c:9
#, fuzzy
-msgid "Join the Free Software world"
+msgid "Get involved in the Free Software world"
msgstr "Amprouiñ ar c'hefluniadur"
-#: ../../share/advertising/01-gnu.pl_.c:10
+#: ../../share/advertising/02-community.pl_.c:10
+msgid "Want to know more about the Open Source community?"
+msgstr ""
+
+#: ../../share/advertising/02-community.pl_.c:11
msgid ""
-"Get to know the Open Source community and become a member. Learn, teach, and "
-"help others by joining the many discussion forums that you will find in our "
-"\"Community\" webpages"
+"To share your own knowledge and help build Linux tools, join the discussions "
+"forum you'll find on our \"Community\" webpages"
msgstr ""
-#: ../../share/advertising/02-internet.pl_.c:9
+#: ../../share/advertising/03-internet.pl_.c:9
#, fuzzy
-msgid "Internet and Messaging"
-msgstr "dedennus"
+msgid "Get the most from the Internet"
+msgstr "Anv ar gevreadenn"
-#: ../../share/advertising/02-internet.pl_.c:10
+#: ../../share/advertising/03-internet.pl_.c:10
msgid ""
-"Mandrake Linux 8.2 provides the best software to access everything the "
-"Internet has to offer: Surf the web & view animations with Mozilla and "
-"Konqueror, exchange email & organize your personal information with "
-"Evolution and Kmail, and much more"
+"Mandrake Linux 9.0 has selected the best software for you. Surf the Web and "
+"view animations with Mozilla and Konqueror, or read your mail and handle "
+"your personal information with Evolution and Kmail"
msgstr ""
-#: ../../share/advertising/03-graphic.pl_.c:9
-#, fuzzy
-msgid "Multimedia and Graphics"
-msgstr "Liesvedia"
+#: ../../share/advertising/04-multimedia.pl_.c:9
+msgid "Discover the most up-to-date graphics and multimedia tools!"
+msgstr ""
+
+#: ../../share/advertising/04-multimedia.pl_.c:10
+msgid "Push multimedia to its limits!"
+msgstr ""
-#: ../../share/advertising/03-graphic.pl_.c:10
+#: ../../share/advertising/04-multimedia.pl_.c:11
msgid ""
-"Mandrake Linux 8.2 lets you push your multimedia computer to its limits! Use "
-"the latest software to play music and audio files, edit and organize your "
-"images and photos, watch TV and videos, and much more"
+"Mandrake Linux 9.0 enables you to use the very latest software to play audio "
+"files, edit and handle your images or photos, and play videos"
msgstr ""
-#: ../../share/advertising/04-develop.pl_.c:9
-msgid "Development"
-msgstr "Diorren"
+#: ../../share/advertising/05-games.pl_.c:9
+msgid "Games"
+msgstr "C'hoarioĂč"
-#: ../../share/advertising/04-develop.pl_.c:10
+#: ../../share/advertising/05-games.pl_.c:10
msgid ""
-"Mandrake Linux 8.2 is the ultimate development platform. Discover the power "
-"of the GNU gcc compiler as well as the best Open Source development "
-"environments"
+"Mandrake Linux 9.0 provides the best Open Source games - arcade, action, "
+"cards, sports, strategy..."
msgstr ""
-#: ../../share/advertising/05-contcenter.pl_.c:9
-#: ../../standalone/drakbug_.c:69
+#: ../../share/advertising/06-mcc.pl_.c:9 ../../standalone/drakbug_.c:69
#, fuzzy
msgid "Mandrake Control Center"
msgstr "Anv ar gevreadenn"
-#: ../../share/advertising/05-contcenter.pl_.c:10
+#: ../../share/advertising/06-mcc.pl_.c:10
msgid ""
-"The Mandrake Linux 8.2 Control Center is a one-stop location for fully "
-"customizing and configuring your Mandrake system"
+"Mandrake Linux 9.0 provides a powerful tool to fully customize and configure "
+"your machine"
msgstr ""
-#: ../../share/advertising/06-user.pl_.c:9
+#: ../../share/advertising/07-desktop.pl_.c:9
#, fuzzy
msgid "User interfaces"
msgstr "Etrefas arveriad/X"
-#: ../../share/advertising/06-user.pl_.c:10
+#: ../../share/advertising/07-desktop.pl_.c:10
msgid ""
-"Mandrake Linux 8.2 provides 11 different graphical desktop environments and "
-"window managers to choose from including GNOME 1.4, KDE 2.2.2, Window Maker "
-"0.8, and the rest"
+"Mandrake Linux 9.0 provides 11 user interfaces which can be fully modified: "
+"KDE 3, Gnome 2, WindowMaker..."
msgstr ""
-#: ../../share/advertising/07-server.pl_.c:9
+#: ../../share/advertising/08-development.pl_.c:9
#, fuzzy
-msgid "Server Software"
-msgstr "Anv ar servijer SMB"
+msgid "Development simplified"
+msgstr "Diorren"
+
+#: ../../share/advertising/08-development.pl_.c:10
+msgid "Mandrake Linux 9.0 is the ultimate development platform"
+msgstr ""
-#: ../../share/advertising/07-server.pl_.c:10
+#: ../../share/advertising/08-development.pl_.c:11
msgid ""
-"Transform your machine into a powerful server with just a few clicks of the "
-"mouse: Web server, email, firewall, router, file and print server, ..."
+"Use the full power of the GNU gcc 3 compiler as well as the best Open Source "
+"development environments"
msgstr ""
-#: ../../share/advertising/08-games.pl_.c:9
-msgid "Games"
-msgstr "C'hoarioĂč"
+#: ../../share/advertising/09-server.pl_.c:9
+msgid "Turn your machine into a reliable server"
+msgstr ""
-#: ../../share/advertising/08-games.pl_.c:10
+#: ../../share/advertising/09-server.pl_.c:10
msgid ""
-"Mandrake Linux 8.2 provides the best Open Source games - arcade, action, "
-"cards, sports, strategy, ..."
+"Transform your machine into a powerful server in a few clicks of your mouse: "
+"Web server, mail, firewall, router, file and print server..."
msgstr ""
-#: ../../share/advertising/09-MDKcampus.pl_.c:9
-msgid "MandrakeCampus"
-msgstr "MandrakeCampus"
+#: ../../share/advertising/10-mnf.pl_.c:9
+msgid "Optimize your security"
+msgstr ""
-#: ../../share/advertising/09-MDKcampus.pl_.c:10
+#: ../../share/advertising/10-mnf.pl_.c:10
msgid ""
-"Would you like to learn Linux simply, quickly, and for free? MandrakeSoft "
-"provides free Linux training, as well as a way to test your progress, at "
-"MandrakeCampus -- our online training center"
+"The MandrakeSecurity range includes the Multi Network Firewall product (M.N."
+"F.)"
msgstr ""
-#: ../../share/advertising/10-MDKexpert.pl_.c:9
-msgid "MandrakeExpert"
-msgstr "MandrakeExpert"
+#: ../../share/advertising/10-mnf.pl_.c:11
+msgid ""
+"This firewall product includes network features which allow you to fulfill "
+"all your security needs"
+msgstr ""
+
+#: ../../share/advertising/10-mnf.pl_.c:12
+msgid "This product is available on MandrakeStore website"
+msgstr ""
-#: ../../share/advertising/10-MDKexpert.pl_.c:10
+#: ../../share/advertising/11-mdkstore.pl_.c:9
+msgid "The official MandrakeSoft store"
+msgstr ""
+
+#: ../../share/advertising/11-mdkstore.pl_.c:10
msgid ""
-"Quality support from the Linux Community, and from MandrakeSoft, is just "
-"around the corner. And if you're already a Linux veteran, become an \"Expert"
-"\" and share your knowledge at our support website"
+"Our full range of Linux solutions, as well as special offers on products and "
+"'goodies', are available online at our e-store"
msgstr ""
-#: ../../share/advertising/11-consul.pl_.c:9
-msgid "MandrakeConsulting"
-msgstr "MandrakeConsulting"
+#: ../../share/advertising/12-mdkstore.pl_.c:9
+msgid "Strategic partners"
+msgstr ""
-#: ../../share/advertising/11-consul.pl_.c:10
+#: ../../share/advertising/12-mdkstore.pl_.c:10
msgid ""
-"For all of your IT projects, our consultants are ready to analyze your "
-"requirements and offer a customized solution. Benefit from MandrakeSoft's "
-"vast experience as a Linux producer to provide a true IT alternative for "
-"your business organization"
+"MandrakeSoft works alongside a selection of companies offering professional "
+"solutions compatible with Mandrake Linux; a list of these partners is "
+"available on the MandrakeStore"
msgstr ""
-#: ../../share/advertising/12-MDKstore.pl_.c:9
-msgid "MandrakeStore"
-msgstr "MandrakeStore"
+#: ../../share/advertising/13-mdkcampus.pl_.c:9
+msgid "Discover MandrakeSoft's training catalogue Linux-Campus"
+msgstr ""
-#: ../../share/advertising/12-MDKstore.pl_.c:10
+#: ../../share/advertising/13-mdkcampus.pl_.c:10
msgid ""
-"A full range of Linux solutions, as well as special offers on products and "
-"'goodies', are available online at our e-store"
+"The training program has been create to respond to the needs of both users "
+"and experts (Network and System administrations)"
msgstr ""
-#: ../../share/advertising/13-Nvert.pl_.c:9
+#: ../../share/advertising/13-mdkcampus.pl_.c:11
+msgid "Certify yourself on Linux"
+msgstr ""
+
+#: ../../share/advertising/13-mdkcampus.pl_.c:12
+msgid ""
+"Whether you choose to teach yourself online or via our network of training "
+"partners, the Linux-Campus catalogue prepares you for the acknowledged LPI "
+"certification program (worldwide professional technical certification)"
+msgstr ""
+
+#: ../../share/advertising/14-mdkexpert.pl_.c:9
+#, fuzzy
+msgid "Become a MandrakeExpert"
+msgstr "MandrakeExpert"
+
+#: ../../share/advertising/14-mdkexpert.pl_.c:10
msgid ""
-"For more information on MandrakeSoft's Professional Services and commercial "
-"offerings, please see the following web page:"
+"Find the solutions to your problems via MandrakeSoft's online support "
+"platform"
msgstr ""
-#: ../../share/advertising/13-Nvert.pl_.c:11
-msgid "http://www.mandrakesoft.com/sales/contact"
+#: ../../share/advertising/14-mdkexpert.pl_.c:11
+msgid ""
+"Join the MandrakeSoft support teams and the Linux Community online to share "
+"your knowledge and help others by becoming a recognized Expert on the online "
+"technical support website:"
+msgstr ""
+
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:9
+#, fuzzy
+msgid "MandrakeExpert Corporate"
+msgstr "MandrakeExpert"
+
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:10
+msgid "An online platform to respond to company's specific support needs"
+msgstr ""
+
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:11
+msgid ""
+"All incidents will be followed up by a single qualified MandrakeSoft "
+"technical expert."
msgstr ""
#: ../../standalone.pm_.c:41
@@ -9022,12 +9104,12 @@ msgstr "Ouzhpennañ un arveriad"
msgid "Add/Del Clients"
msgstr ""
-#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3876
-#: ../../standalone/drakbackup_.c:3909 ../../standalone/drakbackup_.c:3935
-#: ../../standalone/drakbackup_.c:3962 ../../standalone/drakbackup_.c:3989
-#: ../../standalone/drakbackup_.c:4028 ../../standalone/drakbackup_.c:4049
-#: ../../standalone/drakbackup_.c:4076 ../../standalone/drakbackup_.c:4106
-#: ../../standalone/drakbackup_.c:4132 ../../standalone/drakbackup_.c:4157
+#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3930
+#: ../../standalone/drakbackup_.c:3963 ../../standalone/drakbackup_.c:3989
+#: ../../standalone/drakbackup_.c:4016 ../../standalone/drakbackup_.c:4043
+#: ../../standalone/drakbackup_.c:4082 ../../standalone/drakbackup_.c:4103
+#: ../../standalone/drakbackup_.c:4130 ../../standalone/drakbackup_.c:4160
+#: ../../standalone/drakbackup_.c:4186 ../../standalone/drakbackup_.c:4211
#: ../../standalone/drakfont_.c:700
msgid "Help"
msgstr "Skoazell"
@@ -9261,8 +9343,8 @@ msgstr "Amprouiñ ar porzhioĂč"
#: ../../standalone/drakbackup_.c:788
msgid ""
"Sorry, perl-Expect is not installed/enabled. To use\n"
-"this feature, install perl-Expect and comment lines 702-704,\n"
-" as well as 718,719. Then uncomment line 717."
+"this feature, install perl-Expect and comment lines 772-774,\n"
+" as well as 788,789. Then uncomment line 787."
msgstr ""
#: ../../standalone/drakbackup_.c:817
@@ -9283,6 +9365,31 @@ msgstr ""
msgid "ERROR: Cannot spawn %s."
msgstr ""
+#: ../../standalone/drakbackup_.c:850
+#, c-format
+msgid "No password prompt on %s at port %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:851
+#, fuzzy, c-format
+msgid "Bad password on %s"
+msgstr "Tremenger ebet"
+
+#: ../../standalone/drakbackup_.c:852
+#, c-format
+msgid "Permission denied transferring %s to %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:853
+#, fuzzy, c-format
+msgid "Can't find %s on %s"
+msgstr "Fazi en ur zigeriñ %s evit skrivañ : %s"
+
+#: ../../standalone/drakbackup_.c:856
+#, c-format
+msgid "%s not responding"
+msgstr ""
+
#: ../../standalone/drakbackup_.c:860
#, c-format
msgid ""
@@ -9322,6 +9429,11 @@ msgstr ""
msgid "Permission problem accessing CD."
msgstr ""
+#: ../../standalone/drakbackup_.c:1087
+#, c-format
+msgid "No tape in %s!"
+msgstr ""
+
#: ../../standalone/drakbackup_.c:1199 ../../standalone/drakbackup_.c:1248
msgid "Backup system files..."
msgstr ""
@@ -9396,17 +9508,12 @@ msgid "Can't create catalog!"
msgstr ""
#: ../../standalone/drakbackup_.c:1517 ../../standalone/drakbackup_.c:1528
-#: ../../standalone/drakbackup_.c:1556 ../../standalone/drakfont_.c:1004
+#: ../../standalone/drakfont_.c:1004
#, fuzzy
msgid "File Selection"
msgstr "Diuzadenn strollad pakadoĂč"
-#: ../../standalone/drakbackup_.c:1542
-#, c-format
-msgid "%s"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1561
+#: ../../standalone/drakbackup_.c:1556
msgid "Select the files or directories and click on 'Add'"
msgstr ""
@@ -9472,6 +9579,10 @@ msgstr "Anv arveriad"
msgid "Use network connection to backup"
msgstr "Restr gwareziñ siek"
+#: ../../standalone/drakbackup_.c:1777
+msgid "Net Method:"
+msgstr ""
+
#: ../../standalone/drakbackup_.c:1781
msgid "Use Expect for SSH"
msgstr ""
@@ -9713,7 +9824,7 @@ msgstr "Pa"
msgid "More Options"
msgstr "DibarzhoĂč ar mollad :"
-#: ../../standalone/drakbackup_.c:2405 ../../standalone/drakbackup_.c:4476
+#: ../../standalone/drakbackup_.c:2405 ../../standalone/drakbackup_.c:4530
#, fuzzy
msgid "Drakbackup Configuration"
msgstr "Kefluniadur ar rouedad"
@@ -10038,240 +10149,245 @@ msgid ""
"Restore Path"
msgstr "Adaozañ adalek ar restr"
-#: ../../standalone/drakbackup_.c:3475
+#: ../../standalone/drakbackup_.c:3477
#, c-format
msgid "Backup files not found at %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3488
+#: ../../standalone/drakbackup_.c:3490
#, c-format
msgid ""
"Insert the CD with volume label %s\n"
" in the CD drive under mount point /mnt/cdrom"
msgstr ""
-#: ../../standalone/drakbackup_.c:3488
+#: ../../standalone/drakbackup_.c:3490
#, fuzzy
msgid "Restore From CD"
msgstr "Assevel adalek ar pladennig"
-#: ../../standalone/drakbackup_.c:3490
+#: ../../standalone/drakbackup_.c:3492
#, c-format
msgid "Not the correct CD label. Disk is labelled %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3500
+#: ../../standalone/drakbackup_.c:3502
#, c-format
msgid ""
"Insert the tape with volume label %s\n"
" in the tape drive device %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:3500
+#: ../../standalone/drakbackup_.c:3502
#, fuzzy
msgid "Restore From Tape"
msgstr "Taolenn barzhañ saveteerezh"
-#: ../../standalone/drakbackup_.c:3502
+#: ../../standalone/drakbackup_.c:3504
#, c-format
msgid "Not the correct tape label. Tape is labelled %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3522
+#: ../../standalone/drakbackup_.c:3524
#, fuzzy
msgid "Restore Via Network"
msgstr "Adaozañ adalek ar restr"
-#: ../../standalone/drakbackup_.c:3522
+#: ../../standalone/drakbackup_.c:3524
#, c-format
msgid "Restore Via Network Protocol: %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:3523
+#: ../../standalone/drakbackup_.c:3525
#, fuzzy
msgid "Host Name"
msgstr "Anv an ostiz"
-#: ../../standalone/drakbackup_.c:3524
+#: ../../standalone/drakbackup_.c:3526
msgid "Host Path or Module"
msgstr ""
-#: ../../standalone/drakbackup_.c:3531
+#: ../../standalone/drakbackup_.c:3533
#, fuzzy
msgid "Password required"
msgstr "Tremenger"
-#: ../../standalone/drakbackup_.c:3537
+#: ../../standalone/drakbackup_.c:3539
#, fuzzy
msgid "Username required"
msgstr "Anv arveriad"
-#: ../../standalone/drakbackup_.c:3540
+#: ../../standalone/drakbackup_.c:3542
#, fuzzy
msgid "Hostname required"
msgstr "Anv an ostiz : "
-#: ../../standalone/drakbackup_.c:3545
+#: ../../standalone/drakbackup_.c:3547
msgid "Path or Module required"
msgstr ""
-#: ../../standalone/drakbackup_.c:3558
+#: ../../standalone/drakbackup_.c:3560
msgid "Files Restored..."
msgstr ""
-#: ../../standalone/drakbackup_.c:3561
+#: ../../standalone/drakbackup_.c:3563
#, fuzzy
msgid "Restore Failed..."
msgstr "Adaozañ adalek ar restr"
-#: ../../standalone/drakbackup_.c:3777
+#: ../../standalone/drakbackup_.c:3801
msgid "Restore all backups"
msgstr ""
-#: ../../standalone/drakbackup_.c:3786
+#: ../../standalone/drakbackup_.c:3810
#, fuzzy
msgid "Custom Restore"
msgstr "Neuziet"
-#: ../../standalone/drakbackup_.c:3832
+#: ../../standalone/drakbackup_.c:3856
msgid "CD in place - continue."
msgstr ""
-#: ../../standalone/drakbackup_.c:3838
+#: ../../standalone/drakbackup_.c:3862
msgid "Browse to new restore repository."
msgstr ""
-#: ../../standalone/drakbackup_.c:3841
+#: ../../standalone/drakbackup_.c:3865
#, fuzzy
msgid "Restore From Catalog"
msgstr "Taolenn barzhañ saveteerezh"
-#: ../../standalone/drakbackup_.c:3881 ../../standalone/drakbackup_.c:3914
-#: ../../standalone/drakbackup_.c:3940 ../../standalone/drakbackup_.c:3967
-#: ../../standalone/drakbackup_.c:3994 ../../standalone/drakbackup_.c:4054
-#: ../../standalone/drakbackup_.c:4081 ../../standalone/drakbackup_.c:4111
-#: ../../standalone/drakbackup_.c:4137
+#: ../../standalone/drakbackup_.c:3893
+#, fuzzy
+msgid "Restore Progress"
+msgstr "Adaozañ adalek ar restr"
+
+#: ../../standalone/drakbackup_.c:3935 ../../standalone/drakbackup_.c:3968
+#: ../../standalone/drakbackup_.c:3994 ../../standalone/drakbackup_.c:4021
+#: ../../standalone/drakbackup_.c:4048 ../../standalone/drakbackup_.c:4108
+#: ../../standalone/drakbackup_.c:4135 ../../standalone/drakbackup_.c:4165
+#: ../../standalone/drakbackup_.c:4191
msgid "Previous"
msgstr "Diaraog"
-#: ../../standalone/drakbackup_.c:3885 ../../standalone/drakbackup_.c:3971
+#: ../../standalone/drakbackup_.c:3939 ../../standalone/drakbackup_.c:4025
#: ../../standalone/logdrake_.c:223
msgid "Save"
msgstr "Enrollañ"
-#: ../../standalone/drakbackup_.c:3944
+#: ../../standalone/drakbackup_.c:3998
#, fuzzy
msgid "Build Backup"
msgstr "Restr gwareziñ siek"
-#: ../../standalone/drakbackup_.c:3998 ../../standalone/drakbackup_.c:4578
+#: ../../standalone/drakbackup_.c:4052 ../../standalone/drakbackup_.c:4632
#, fuzzy
msgid "Restore"
msgstr "Adaozañ adalek ar restr"
-#: ../../standalone/drakbackup_.c:4177
+#: ../../standalone/drakbackup_.c:4231
msgid ""
"Error during sendmail.\n"
" Your report mail was not sent.\n"
" Please configure sendmail"
msgstr ""
-#: ../../standalone/drakbackup_.c:4201
+#: ../../standalone/drakbackup_.c:4255
#, fuzzy
msgid ""
"The following packages need to be installed:\n"
" @list_of_rpm_to_install"
msgstr "Ar pakadoĂč a-heul a zo war-nes bezañ distaliet"
-#: ../../standalone/drakbackup_.c:4224
+#: ../../standalone/drakbackup_.c:4278
msgid ""
"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
-#: ../../standalone/drakbackup_.c:4247
+#: ../../standalone/drakbackup_.c:4301
#, fuzzy
msgid "Please select data to restore..."
msgstr "Diuzit ar yezh da implijout, mar plij."
-#: ../../standalone/drakbackup_.c:4268
+#: ../../standalone/drakbackup_.c:4322
#, fuzzy
msgid "Please select media for backup..."
msgstr "Diuzit ar yezh da implijout, mar plij."
-#: ../../standalone/drakbackup_.c:4290
+#: ../../standalone/drakbackup_.c:4344
#, fuzzy
msgid "Please select data to backup..."
msgstr "Diuzit ar yezh da implijout, mar plij."
-#: ../../standalone/drakbackup_.c:4312
+#: ../../standalone/drakbackup_.c:4366
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
msgstr ""
-#: ../../standalone/drakbackup_.c:4333
+#: ../../standalone/drakbackup_.c:4387
msgid "Under Devel ... please wait."
msgstr ""
-#: ../../standalone/drakbackup_.c:4414
+#: ../../standalone/drakbackup_.c:4468
#, fuzzy
msgid "Backup system files"
msgstr "Restr gwareziñ siek"
-#: ../../standalone/drakbackup_.c:4416
+#: ../../standalone/drakbackup_.c:4470
#, fuzzy
msgid "Backup user files"
msgstr "Restr gwareziñ siek"
-#: ../../standalone/drakbackup_.c:4418
+#: ../../standalone/drakbackup_.c:4472
#, fuzzy
msgid "Backup other files"
msgstr "Restr gwareziñ siek"
-#: ../../standalone/drakbackup_.c:4420 ../../standalone/drakbackup_.c:4453
+#: ../../standalone/drakbackup_.c:4474 ../../standalone/drakbackup_.c:4507
msgid "Total Progress"
msgstr ""
-#: ../../standalone/drakbackup_.c:4444
+#: ../../standalone/drakbackup_.c:4498
msgid "files sending by FTP"
msgstr ""
-#: ../../standalone/drakbackup_.c:4448
+#: ../../standalone/drakbackup_.c:4502
#, fuzzy
msgid "Sending files..."
msgstr "Enrollañ er restr"
-#: ../../standalone/drakbackup_.c:4534
+#: ../../standalone/drakbackup_.c:4588
#, fuzzy
msgid "Backup Now from configuration file"
msgstr "Kefluniadur ar rouedad"
-#: ../../standalone/drakbackup_.c:4539
+#: ../../standalone/drakbackup_.c:4593
#, fuzzy
msgid "View Backup Configuration."
msgstr "Kefluniadur ar rouedad"
-#: ../../standalone/drakbackup_.c:4560
+#: ../../standalone/drakbackup_.c:4614
#, fuzzy
msgid "Wizard Configuration"
msgstr "Kefluniadur"
-#: ../../standalone/drakbackup_.c:4565
+#: ../../standalone/drakbackup_.c:4619
#, fuzzy
msgid "Advanced Configuration"
msgstr "Kefluniadur"
-#: ../../standalone/drakbackup_.c:4570
+#: ../../standalone/drakbackup_.c:4624
#, fuzzy
msgid "Backup Now"
msgstr "Kefluniañ reizhiadoĂč restroĂč"
-#: ../../standalone/drakbackup_.c:4604
+#: ../../standalone/drakbackup_.c:4658
msgid "Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:4653
+#: ../../standalone/drakbackup_.c:4707
msgid ""
"options description:\n"
"\n"
@@ -10303,7 +10419,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4683
+#: ../../standalone/drakbackup_.c:4737
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -10312,7 +10428,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4691
+#: ../../standalone/drakbackup_.c:4745
msgid ""
"options description:\n"
"\n"
@@ -10353,7 +10469,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4730
+#: ../../standalone/drakbackup_.c:4784
msgid ""
"restore description:\n"
" \n"
@@ -10381,18 +10497,18 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4756 ../../standalone/drakbackup_.c:4833
+#: ../../standalone/drakbackup_.c:4810 ../../standalone/drakbackup_.c:4887
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
"Copyright (C) 2001 MandrakeSoft gant DUPONT Sebastien <dupont_s\\@epita.fr>"
-#: ../../standalone/drakbackup_.c:4758 ../../standalone/drakbackup_.c:4835
+#: ../../standalone/drakbackup_.c:4812 ../../standalone/drakbackup_.c:4889
msgid ""
" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
-#: ../../standalone/drakbackup_.c:4760 ../../standalone/drakbackup_.c:4837
+#: ../../standalone/drakbackup_.c:4814 ../../standalone/drakbackup_.c:4891
msgid ""
" This program is free software; you can redistribute it and/or modify\n"
" it under the terms of the GNU General Public License as published by\n"
@@ -10409,7 +10525,7 @@ msgid ""
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
msgstr ""
-#: ../../standalone/drakbackup_.c:4774
+#: ../../standalone/drakbackup_.c:4828
msgid ""
"Description:\n"
"\n"
@@ -10449,7 +10565,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4812
+#: ../../standalone/drakbackup_.c:4866
msgid ""
"options description:\n"
"\n"
@@ -10460,7 +10576,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4821
+#: ../../standalone/drakbackup_.c:4875
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -10473,7 +10589,7 @@ msgid ""
"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4851
+#: ../../standalone/drakbackup_.c:4905
msgid ""
"Description:\n"
"\n"
@@ -10554,9 +10670,9 @@ msgstr ""
msgid "Synchronization tool"
msgstr ""
-#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:85
-#: ../../standalone/drakbug_.c:150 ../../standalone/drakbug_.c:152
-#: ../../standalone/drakbug_.c:156
+#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:86
+#: ../../standalone/drakbug_.c:151 ../../standalone/drakbug_.c:153
+#: ../../standalone/drakbug_.c:157
msgid "Standalone Tools"
msgstr ""
@@ -10608,26 +10724,26 @@ msgstr "Moullerez"
msgid "Configuration Wizards"
msgstr "Kefluniadur ar rouedad"
-#: ../../standalone/drakbug_.c:96
+#: ../../standalone/drakbug_.c:97
#, fuzzy
msgid "Application:"
msgstr "X11/ArloadoĂč"
-#: ../../standalone/drakbug_.c:97
+#: ../../standalone/drakbug_.c:98
#, fuzzy
msgid "Package: "
msgstr "Pakad"
-#: ../../standalone/drakbug_.c:98
+#: ../../standalone/drakbug_.c:99
msgid "Kernel:"
msgstr ""
-#: ../../standalone/drakbug_.c:99
+#: ../../standalone/drakbug_.c:100
#, fuzzy
msgid "Release: "
msgstr "Gortozit mar plij"
-#: ../../standalone/drakbug_.c:114
+#: ../../standalone/drakbug_.c:115
msgid ""
"\n"
"\n"
@@ -10639,21 +10755,21 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbug_.c:135
+#: ../../standalone/drakbug_.c:136
#, fuzzy
msgid "Report"
msgstr "Paour"
-#: ../../standalone/drakbug_.c:165
+#: ../../standalone/drakbug_.c:166
#, fuzzy
msgid "Not installed"
msgstr "Dilezel ar staliadur"
-#: ../../standalone/drakbug_.c:182
+#: ../../standalone/drakbug_.c:183
msgid "connecting to Bugzilla wizard ..."
msgstr ""
-#: ../../standalone/drakbug_.c:189
+#: ../../standalone/drakbug_.c:190
#, fuzzy
msgid "No browser available! Please install one"
msgstr "Gallout a rit dibab yezhoĂč all hag a vo hegerz goude staliañ"
@@ -12141,7 +12257,7 @@ msgstr "Staliañ ar reizhiad"
msgid "Exit install"
msgstr "Dilezel ar staliadur"
-#: ../../ugtk.pm_.c:605
+#: ../../ugtk.pm_.c:594
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
@@ -12280,6 +12396,10 @@ msgid "Graphical Environment"
msgstr ""
#: ../../share/compssUsers:999
+msgid "Development"
+msgstr "Diorren"
+
+#: ../../share/compssUsers:999
msgid "Apache, Pro-ftpd"
msgstr ""
@@ -12394,6 +12514,15 @@ msgstr "Liesvedia"
msgid "Scientific Workstation"
msgstr "TitouroĂč"
+#~ msgid "MandrakeCampus"
+#~ msgstr "MandrakeCampus"
+
+#~ msgid "MandrakeConsulting"
+#~ msgstr "MandrakeConsulting"
+
+#~ msgid "MandrakeStore"
+#~ msgstr "MandrakeStore"
+
#~ msgid "LBA (doesn't work on old BIOSes)"
#~ msgstr "LBA (ne da ket en-dro gant BIOSoĂč kozh)"
@@ -12414,120 +12543,6 @@ msgstr "TitouroĂč"
#~ "N'hellañ ket lenn ho taolenn barzhañ, re vrein eo evidon :(\n"
#~ "Klask a rin kenderc'hel en ur ziverkañ ar parzhadurioĂč siek"
-#, fuzzy
-#~ msgid "Firewalling Configuration"
-#~ msgstr "o lenn ar c'hefluniadur"
-
-#, fuzzy
-#~ msgid "Firewalling configuration"
-#~ msgstr "o lenn ar c'hefluniadur"
-
-#, fuzzy
-#~ msgid "Can't open %s for writing: %s\n"
-#~ msgstr "Fazi en ur zigeriñ %s evit skrivañ : %s"
-
-#, fuzzy
-#~ msgid "Firewall Configuration Wizard"
-#~ msgstr "o lenn ar c'hefluniadur"
-
-#, fuzzy
-#~ msgid "Please Wait... Verifying installed packages"
-#~ msgstr "Gortozit mar plij, o prientiñ ar staliadur"
-
-#~ msgid "$mode: $warning"
-#~ msgstr "$mode: $warning"
-
-#, fuzzy
-#~ msgid ""
-#~ "This level is to be used with care. It makes your system more easy to "
-#~ "use,\n"
-#~ " but very sensitive: it must not be used for a machine "
-#~ "connected to others\n"
-#~ " or to the Internet. There is no password access."
-#~ msgstr ""
-#~ "Ret eo implijout al live-mañ gant evezh. Ober a ra d'ho reizhiad bezañ\n"
-#~ "aesoc'h da implijout, hogen kizidig-tre : arabat e implj evit un "
-#~ "ardivink\n"
-#~ "kevreet ouzh lod all pe ouzh ar genrouedad. N'eus ket a haeziñ dre "
-#~ "dremenger."
-
-#, fuzzy
-#~ msgid ""
-#~ "With this security level, the use of this system as a server becomes "
-#~ "possible.\n"
-#~ " The security is now high enough to use the system as a "
-#~ "server which can accept\n"
-#~ " connections from many clients. Note: if your machine is "
-#~ "only a client on the Internet, you should choose a lower level."
-#~ msgstr ""
-#~ "Gant al live surentez-mañ e teu posupl implijout ar reizhiad-mañ evel ur "
-#~ "servijer.\n"
-#~ "Uhel a-walc'h eo bremañ ar surentez evit implijout ar reizhiad evel ur "
-#~ "servijer\n"
-#~ "o tigemer kevreadennoĂč a-berzh arvaloĂč niverus."
-
-#, fuzzy
-#~ msgid "Basic Options"
-#~ msgstr "Parzhadur"
-
-#, fuzzy
-#~ msgid "Security Checks"
-#~ msgstr "rodellek"
-
-#, fuzzy
-#~ msgid "Please choose your CD space"
-#~ msgstr "Dibabit reizhadur ho stokellaoueg, mar plij."
-
-#, fuzzy
-#~ msgid "Please enter the cd writer speed"
-#~ msgstr "Dibabit seurt ho logodenn, mar plij."
-
-#, fuzzy
-#~ msgid "Please check if you want to include install boot on your CD."
-#~ msgstr "Dibabit ar pakadoĂč a vennit staliañ, mar plij."
-
-#, fuzzy
-#~ msgid "Url should begin with 'ftp:'"
-#~ msgstr "ftp://... a zlefe bezañ ar proksi"
-
-#, fuzzy
-#~ msgid ""
-#~ "Please check if you want to include\n"
-#~ " install boot on your CD."
-#~ msgstr "Dibabit ar pakadoĂč a vennit staliañ, mar plij."
-
-#, fuzzy
-#~ msgid "Windows PDC"
-#~ msgstr "Windows (FAT32)"
-
-#, fuzzy
-#~ msgid "Tamil"
-#~ msgstr "Taolenn"
-
-#, fuzzy
-#~ msgid "PDC Server Name"
-#~ msgstr "Servijer NTP"
-
-#, fuzzy
-#~ msgid "Set up printer manually"
-#~ msgstr "DibarzhoĂč ar voullerez lpd a-bell"
-
-#, fuzzy
-#~ msgid "Installing HPOJ package..."
-#~ msgstr "O staliañ ar pakad %s"
-
-#, fuzzy
-#~ msgid "Installing SANE packages..."
-#~ msgstr "O staliañ ar pakad %s"
-
-#, fuzzy
-#~ msgid "Installing mtools packages..."
-#~ msgstr "O staliañ pakadoĂč..."
-
-#, fuzzy
-#~ msgid "Control Center"
-#~ msgstr "Anv ar gevreadenn"
-
#~ msgid "Choose the tool you want to use"
#~ msgstr "Dibabit ar benveg a vennit staliañ"
diff --git a/perl-install/share/po/bs.po b/perl-install/share/po/bs.po
index 0816c3643..b859c04e6 100644
--- a/perl-install/share/po/bs.po
+++ b/perl-install/share/po/bs.po
@@ -3,8 +3,8 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: drakfloppy 0.43\n"
-"POT-Creation-Date: 2002-08-21 15:44+0200\n"
+"Project-Id-Version: DrakX\n"
+"POT-Creation-Date: 2002-09-02 20:14+0200\n"
"PO-Revision-Date: 2001-08-21 17:14GMT\n"
"Last-Translator: Amila Akagić <bono@lugbih.org>\n"
"Language-Team: Bosnian <lokal-subscribe@lugbih.org>\n"
@@ -49,19 +49,19 @@ msgstr "32 MB"
msgid "64 MB or more"
msgstr "64 MB ili viĆĄe"
-#: ../../Xconfig/card.pm_.c:201
+#: ../../Xconfig/card.pm_.c:203
msgid "Choose a X server"
msgstr "Izaberite X server"
-#: ../../Xconfig/card.pm_.c:201
+#: ../../Xconfig/card.pm_.c:203
msgid "X server"
msgstr "X server"
-#: ../../Xconfig/card.pm_.c:228
+#: ../../Xconfig/card.pm_.c:230
msgid "Multi-head configuration"
msgstr "Multi-head konfiguracija"
-#: ../../Xconfig/card.pm_.c:229
+#: ../../Xconfig/card.pm_.c:231
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
@@ -69,27 +69,27 @@ msgstr ""
"VaĆĄ sistem podrĆŸava konfiguraciju viĆĄe glava.\n"
"Ć ta ĆŸelite učiniti?"
-#: ../../Xconfig/card.pm_.c:284
+#: ../../Xconfig/card.pm_.c:286
msgid "Select the memory size of your graphics card"
msgstr "Izaberite veličinu memorije vaơe grafičke karte"
-#: ../../Xconfig/card.pm_.c:345
+#: ../../Xconfig/card.pm_.c:347
msgid "XFree configuration"
msgstr "XFree konfiguracija"
-#: ../../Xconfig/card.pm_.c:347
+#: ../../Xconfig/card.pm_.c:349
msgid "Which configuration of XFree do you want to have?"
msgstr "Koju konfiguraciju XFree ĆŸelite imati?"
-#: ../../Xconfig/card.pm_.c:379
+#: ../../Xconfig/card.pm_.c:381
msgid "Configure all heads independently"
msgstr "KonfiguriĆĄi sve glave odvojeno"
-#: ../../Xconfig/card.pm_.c:380
+#: ../../Xconfig/card.pm_.c:382
msgid "Use Xinerama extension"
msgstr "Koristi Xinerama ekstenziju"
-#: ../../Xconfig/card.pm_.c:384
+#: ../../Xconfig/card.pm_.c:386
#, fuzzy, c-format
msgid "Configure only card \"%s\"%s"
msgstr "KonfiguriĆĄi samo karticu \"%s\" (%s)"
@@ -100,13 +100,13 @@ msgstr "KonfiguriĆĄi samo karticu \"%s\" (%s)"
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:435
+#: ../../Xconfig/card.pm_.c:410 ../../Xconfig/card.pm_.c:436
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s with 3D hardware acceleration"
msgstr "XFree %s sa 3D hardverskim ubrzanjem"
-#: ../../Xconfig/card.pm_.c:412
+#: ../../Xconfig/card.pm_.c:413
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -115,17 +115,17 @@ msgstr ""
"VaĆĄa kartica moĆŸe imati podrĆĄku za 3D hardversko ubrzanje ali samo sa\n"
"XFree %s. VaĆĄu karticu podrĆŸava XFree %s koji moĆŸe imati bolju podrĆĄku za 2D."
-#: ../../Xconfig/card.pm_.c:414 ../../Xconfig/card.pm_.c:437
+#: ../../Xconfig/card.pm_.c:415 ../../Xconfig/card.pm_.c:438
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr "VaĆĄa kartica moĆŸe imati podrĆĄku za 3D hardversko ubrzanje sa XFree %s."
-#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:443
+#: ../../Xconfig/card.pm_.c:423 ../../Xconfig/card.pm_.c:444
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s sa EKSPERIMENTALNIM 3D hardverskim ubrzanjem"
-#: ../../Xconfig/card.pm_.c:425
+#: ../../Xconfig/card.pm_.c:426
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -136,7 +136,7 @@ msgstr ""
"PAĆœNJA OVO JE EKSPERIMENTALNA PODRĆ KA I MOĆœE ZALEDITI VAĆ  RAČUNAR.\n"
"VaĆĄu karticu podrĆŸava XFree %s koji moĆŸe imati bolju podrĆĄku za 2D."
-#: ../../Xconfig/card.pm_.c:428 ../../Xconfig/card.pm_.c:445
+#: ../../Xconfig/card.pm_.c:429 ../../Xconfig/card.pm_.c:446
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
@@ -145,53 +145,54 @@ msgstr ""
"VaĆĄa kartica moĆŸe imati podrĆĄku za 3D hardversko ubrzanje sa XFree %s,\n"
"PAĆœNJA OVO JE EKSPERIMENTALNA PODRĆ KA I MOĆœE ZALEDITI VAĆ  RAČUNAR."
-#: ../../Xconfig/card.pm_.c:451
+#: ../../Xconfig/card.pm_.c:452
msgid "Xpmac (installation display driver)"
msgstr "Xpmac (installation display driver)"
-#: ../../Xconfig/main.pm_.c:78 ../../Xconfig/main.pm_.c:79
-#: ../../Xconfig/monitor.pm_.c:94 ../../any.pm_.c:974
+#: ../../Xconfig/main.pm_.c:76 ../../Xconfig/main.pm_.c:77
+#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:977
msgid "Custom"
msgstr "Ručno izaberi"
-#: ../../Xconfig/main.pm_.c:104
+#: ../../Xconfig/main.pm_.c:102
#, fuzzy
msgid "Graphic Card"
msgstr "Grafička karta"
-#: ../../Xconfig/main.pm_.c:107 ../../Xconfig/monitor.pm_.c:91
+#: ../../Xconfig/main.pm_.c:105 ../../Xconfig/monitor.pm_.c:93
msgid "Monitor"
msgstr "Monitor"
-#: ../../Xconfig/main.pm_.c:110 ../../Xconfig/resolution_and_depth.pm_.c:209
+#: ../../Xconfig/main.pm_.c:108 ../../Xconfig/resolution_and_depth.pm_.c:209
msgid "Resolution"
msgstr "Rezolucija"
-#: ../../Xconfig/main.pm_.c:114
+#: ../../Xconfig/main.pm_.c:113
msgid "Test"
msgstr ""
-#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:59
-#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/removable.pm_.c:25
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:63
+#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/removable.pm_.c:25
#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "Opcije"
#: ../../Xconfig/main.pm_.c:121 ../../Xconfig/resolution_and_depth.pm_.c:268
-#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:281
+#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:275
#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
-#: ../../interactive.pm_.c:351 ../../interactive/http.pm_.c:104
+#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:104
#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
-#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:156
-#: ../../my_gtk.pm_.c:284 ../../my_gtk.pm_.c:307
-#: ../../standalone/drakbackup_.c:3324 ../../standalone/drakbackup_.c:3419
-#: ../../standalone/drakbackup_.c:3438
+#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:159
+#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310
+#: ../../standalone/drakbackup_.c:3972 ../../standalone/drakbackup_.c:4067
+#: ../../standalone/drakbackup_.c:4086
msgid "Ok"
msgstr "Ok"
#: ../../Xconfig/main.pm_.c:121 ../../diskdrake/dav.pm_.c:24
-#: ../../printerdrake.pm_.c:2933 ../../standalone/logdrake_.c:224
+#: ../../harddrake/ui.pm_.c:98 ../../printerdrake.pm_.c:3155
+#: ../../standalone/logdrake_.c:224
msgid "Quit"
msgstr "Izlaz"
@@ -208,28 +209,28 @@ msgstr ""
"\n"
"%s"
-#: ../../Xconfig/monitor.pm_.c:91
+#: ../../Xconfig/monitor.pm_.c:93
msgid "Choose a monitor"
msgstr "Izaberite monitor"
-#: ../../Xconfig/monitor.pm_.c:95
+#: ../../Xconfig/monitor.pm_.c:97
msgid "Plug'n Play"
msgstr ""
-#: ../../Xconfig/monitor.pm_.c:96 ../../mouse.pm_.c:45
+#: ../../Xconfig/monitor.pm_.c:98 ../../mouse.pm_.c:46
msgid "Generic"
msgstr "OpĆĄti"
-#: ../../Xconfig/monitor.pm_.c:97 ../../harddrake/ui.pm_.c:36
+#: ../../Xconfig/monitor.pm_.c:99 ../../harddrake/ui.pm_.c:37
#, fuzzy
msgid "Vendor"
msgstr "PoniĆĄti"
-#: ../../Xconfig/monitor.pm_.c:107
+#: ../../Xconfig/monitor.pm_.c:109
msgid "Plug'n Play probing failed. Please choose a precise monitor"
msgstr ""
-#: ../../Xconfig/monitor.pm_.c:112
+#: ../../Xconfig/monitor.pm_.c:114
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -250,11 +251,11 @@ msgstr ""
"raspon izvan mogućnosti vaĆĄeg monitora: time moĆŸete oĆĄtetiti monitor.\n"
" Ako niste sigurni, izaberite najmanju opciju."
-#: ../../Xconfig/monitor.pm_.c:119
+#: ../../Xconfig/monitor.pm_.c:121
msgid "Horizontal refresh rate"
msgstr "Brzina horizontalnog osvjeĆŸavanja"
-#: ../../Xconfig/monitor.pm_.c:120
+#: ../../Xconfig/monitor.pm_.c:122
msgid "Vertical refresh rate"
msgstr "Brzina vertiaklnog osvjeĆŸavanja"
@@ -291,36 +292,41 @@ msgstr "Izaberite rezoluciju i dubinu boja"
msgid "Graphics card: %s"
msgstr "Grafička karta: %s"
-#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1015
-#: ../../bootlook.pm_.c:334 ../../diskdrake/smbnfs_gtk.pm_.c:87
-#: ../../install_steps_gtk.pm_.c:412 ../../install_steps_gtk.pm_.c:470
-#: ../../install_steps_interactive.pm_.c:576 ../../interactive.pm_.c:142
-#: ../../interactive.pm_.c:351 ../../interactive/http.pm_.c:105
+#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1018
+#: ../../bootlook.pm_.c:338 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:406 ../../install_steps_gtk.pm_.c:464
+#: ../../install_steps_interactive.pm_.c:560 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:105
#: ../../interactive/newt.pm_.c:174 ../../interactive/stdio.pm_.c:39
-#: ../../interactive/stdio.pm_.c:143 ../../my_gtk.pm_.c:155
-#: ../../my_gtk.pm_.c:159 ../../my_gtk.pm_.c:284
-#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1990
-#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3278
-#: ../../standalone/drakbackup_.c:3311 ../../standalone/drakbackup_.c:3337
-#: ../../standalone/drakbackup_.c:3364 ../../standalone/drakbackup_.c:3391
-#: ../../standalone/drakbackup_.c:3451 ../../standalone/drakbackup_.c:3478
-#: ../../standalone/drakbackup_.c:3504 ../../standalone/drakconnect_.c:115
-#: ../../standalone/drakconnect_.c:147 ../../standalone/drakconnect_.c:289
-#: ../../standalone/drakconnect_.c:537 ../../standalone/drakconnect_.c:679
-#: ../../standalone/drakfloppy_.c:234 ../../standalone/drakfloppy_.c:383
-#: ../../standalone/drakfont_.c:970 ../../standalone/drakgw_.c:598
-#: ../../standalone/logdrake_.c:224 ../../standalone/logdrake_.c:528
-#: ../../standalone/tinyfirewall_.c:64
+#: ../../interactive/stdio.pm_.c:143 ../../my_gtk.pm_.c:158
+#: ../../my_gtk.pm_.c:162 ../../my_gtk.pm_.c:287
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:2124
+#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3926
+#: ../../standalone/drakbackup_.c:3959 ../../standalone/drakbackup_.c:3985
+#: ../../standalone/drakbackup_.c:4012 ../../standalone/drakbackup_.c:4039
+#: ../../standalone/drakbackup_.c:4099 ../../standalone/drakbackup_.c:4126
+#: ../../standalone/drakbackup_.c:4156 ../../standalone/drakbackup_.c:4182
+#: ../../standalone/drakconnect_.c:115 ../../standalone/drakconnect_.c:147
+#: ../../standalone/drakconnect_.c:289 ../../standalone/drakconnect_.c:537
+#: ../../standalone/drakconnect_.c:679 ../../standalone/drakfloppy_.c:234
+#: ../../standalone/drakfloppy_.c:383 ../../standalone/drakfont_.c:970
+#: ../../standalone/drakgw_.c:536 ../../standalone/logdrake_.c:224
+#: ../../standalone/logdrake_.c:526
msgid "Cancel"
msgstr "Odustani"
-#: ../../Xconfig/test.pm_.c:26
+#: ../../Xconfig/test.pm_.c:30
+msgid "Test of the configuration"
+msgstr "Testiranje konfiguracije"
+
+#: ../../Xconfig/test.pm_.c:31
msgid "Do you want to test the configuration?"
msgstr "Ćœelite li testirati konfiguraciju?"
-#: ../../Xconfig/test.pm_.c:26
-msgid "Test of the configuration"
-msgstr "Testiranje konfiguracije"
+#: ../../Xconfig/test.pm_.c:31
+#, fuzzy
+msgid "Warning: testing this graphic card may freeze your computer"
+msgstr "Upozorenje: testiranje ove grafičke karte moĆŸe zalediti računar"
#: ../../Xconfig/various.pm_.c:29
#, c-format
@@ -456,26 +462,22 @@ msgstr "Bootanje iz DOS/Windowsa (loadlin)"
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:158 ../../any.pm_.c:190
+#: ../../any.pm_.c:159 ../../any.pm_.c:190
msgid "Bootloader main options"
msgstr "Glavne opcije bootloadera"
-#: ../../any.pm_.c:159 ../../any.pm_.c:191
+#: ../../any.pm_.c:160 ../../any.pm_.c:191
msgid "Bootloader to use"
msgstr "Bootloader koji ćete koristiti"
-#: ../../any.pm_.c:161
+#: ../../any.pm_.c:162
msgid "Bootloader installation"
msgstr "Bootloader instalacija"
-#: ../../any.pm_.c:163 ../../any.pm_.c:193
+#: ../../any.pm_.c:164 ../../any.pm_.c:193
msgid "Boot device"
msgstr "Boot uređaj"
-#: ../../any.pm_.c:164
-msgid "LBA (doesn't work on old BIOSes)"
-msgstr "LBA (ne radi na starim BIOSima)"
-
#: ../../any.pm_.c:165
msgid "Compact"
msgstr "Kompaktno"
@@ -492,16 +494,17 @@ msgstr "Video mod"
msgid "Delay before booting default image"
msgstr "Čekanje prije bootanja default preslike"
-#: ../../any.pm_.c:170 ../../any.pm_.c:786
+#: ../../any.pm_.c:170 ../../any.pm_.c:788
#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1111 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:743 ../../printerdrake.pm_.c:858
-#: ../../standalone/drakconnect_.c:624 ../../standalone/drakconnect_.c:649
+#: ../../install_steps_interactive.pm_.c:1096 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:850 ../../printerdrake.pm_.c:965
+#: ../../standalone/drakbackup_.c:3528 ../../standalone/drakconnect_.c:624
+#: ../../standalone/drakconnect_.c:649
msgid "Password"
msgstr "Ć ifra"
-#: ../../any.pm_.c:171 ../../any.pm_.c:787
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../any.pm_.c:171 ../../any.pm_.c:789
+#: ../../install_steps_interactive.pm_.c:1097
msgid "Password (again)"
msgstr "Ć ifra (ponovo)"
@@ -535,14 +538,14 @@ msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr "Opcija ``Ograniči opcije komandne linije'' je beskorisna bez ơifre"
-#: ../../any.pm_.c:184 ../../any.pm_.c:762
-#: ../../diskdrake/interactive.pm_.c:1180
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../any.pm_.c:184 ../../any.pm_.c:764
+#: ../../diskdrake/interactive.pm_.c:1191
+#: ../../install_steps_interactive.pm_.c:1091
msgid "Please try again"
msgstr "Molimo pokuĆĄajte ponovo"
-#: ../../any.pm_.c:184 ../../any.pm_.c:762
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../any.pm_.c:184 ../../any.pm_.c:764
+#: ../../install_steps_interactive.pm_.c:1091
msgid "The passwords do not match"
msgstr "Ć ifre se ne poklapaju"
@@ -587,16 +590,16 @@ msgstr ""
"Navedene su razne stavke.\n"
"MoĆŸete dodati nove ili promjeniti postojeće."
-#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1483
-#: ../../standalone/drakbackup_.c:1596 ../../standalone/drakfont_.c:1011
+#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1558
+#: ../../standalone/drakbackup_.c:1671 ../../standalone/drakfont_.c:1011
#: ../../standalone/drakfont_.c:1054
msgid "Add"
msgstr "Dodaj"
-#: ../../any.pm_.c:257 ../../any.pm_.c:774 ../../diskdrake/dav.pm_.c:60
+#: ../../any.pm_.c:257 ../../any.pm_.c:776 ../../diskdrake/dav.pm_.c:64
#: ../../diskdrake/hd_gtk.pm_.c:153 ../../diskdrake/removable.pm_.c:27
#: ../../diskdrake/smbnfs_gtk.pm_.c:88 ../../interactive/http.pm_.c:153
-#: ../../standalone/drakbackup_.c:2696
+#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2772
msgid "Done"
msgstr "Gotovo"
@@ -608,7 +611,7 @@ msgstr "Izmjeni"
msgid "Which type of entry do you want to add?"
msgstr "Koju vrstu stavke ĆŸelite dodati?"
-#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1630
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1705
msgid "Linux"
msgstr "Linux"
@@ -702,13 +705,13 @@ msgstr "Imate li neki drugi?"
msgid "Do you have any %s interfaces?"
msgstr "Imate li ijedan %s interfejs?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:821 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:283
+#: ../../any.pm_.c:660 ../../any.pm_.c:823 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:286
msgid "No"
msgstr "Ne"
-#: ../../any.pm_.c:660 ../../any.pm_.c:820 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:283
+#: ../../any.pm_.c:660 ../../any.pm_.c:822 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:286
msgid "Yes"
msgstr "Da"
@@ -808,38 +811,48 @@ msgstr "dozvoli \"su\""
msgid "access to administrative files"
msgstr "pristup administrativnim datotekama"
-#: ../../any.pm_.c:758
+#: ../../any.pm_.c:754
+#, fuzzy
+msgid "access to network tools"
+msgstr "pristup rpm alatima"
+
+#: ../../any.pm_.c:755
+#, fuzzy
+msgid "access to compilation tools"
+msgstr "pristup rpm alatima"
+
+#: ../../any.pm_.c:760
#, c-format
msgid "(already added %s)"
msgstr "(već dodan %s)"
-#: ../../any.pm_.c:763
+#: ../../any.pm_.c:765
msgid "This password is too simple"
msgstr "Ova ĆĄifra je previĆĄe jednostavna"
-#: ../../any.pm_.c:764
+#: ../../any.pm_.c:766
msgid "Please give a user name"
msgstr "Molimo navedite korisničko ime"
-#: ../../any.pm_.c:765
+#: ../../any.pm_.c:767
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr "Korisničko ime smije sadrĆŸati samo mala slova, brojeve, `-' i `_'"
-#: ../../any.pm_.c:766
+#: ../../any.pm_.c:768
#, fuzzy
msgid "The user name is too long"
msgstr "Ovo korisničko ime je već dodano"
-#: ../../any.pm_.c:767
+#: ../../any.pm_.c:769
msgid "This user name is already added"
msgstr "Ovo korisničko ime je već dodano"
-#: ../../any.pm_.c:771
+#: ../../any.pm_.c:773
msgid "Add user"
msgstr "Dodaj korisnika"
-#: ../../any.pm_.c:772
+#: ../../any.pm_.c:774
#, c-format
msgid ""
"Enter a user\n"
@@ -848,32 +861,32 @@ msgstr ""
"Unesite korisnika\n"
"%s"
-#: ../../any.pm_.c:773
+#: ../../any.pm_.c:775
msgid "Accept user"
msgstr "Prihvati korisnika"
-#: ../../any.pm_.c:784
+#: ../../any.pm_.c:786
msgid "Real name"
msgstr "Pravo ime"
-#: ../../any.pm_.c:785 ../../printerdrake.pm_.c:742
-#: ../../printerdrake.pm_.c:857
+#: ../../any.pm_.c:787 ../../printerdrake.pm_.c:849
+#: ../../printerdrake.pm_.c:964
msgid "User name"
msgstr "Korisničko ime"
-#: ../../any.pm_.c:788
+#: ../../any.pm_.c:790
msgid "Shell"
msgstr "Shell"
-#: ../../any.pm_.c:790
+#: ../../any.pm_.c:792
msgid "Icon"
msgstr "Ikona"
-#: ../../any.pm_.c:817
+#: ../../any.pm_.c:819
msgid "Autologin"
msgstr "Autologin"
-#: ../../any.pm_.c:818
+#: ../../any.pm_.c:820
msgid ""
"I can set up your computer to automatically log on one user.\n"
"Do you want to use this feature?"
@@ -881,54 +894,54 @@ msgstr ""
"Mogu podesiti vaơ računar da automatski prijavi jednog korisnika.\n"
"Ćœelite li koristiti ovu mogućnost?"
-#: ../../any.pm_.c:822
+#: ../../any.pm_.c:824
msgid "Choose the default user:"
msgstr "Izaberite default korisnika:"
-#: ../../any.pm_.c:823
+#: ../../any.pm_.c:825
msgid "Choose the window manager to run:"
msgstr "Izaberite window manager koji će se pokretati:"
-#: ../../any.pm_.c:838
+#: ../../any.pm_.c:840
msgid "Please choose a language to use."
msgstr "Molimo izaberite jezik koji ćete koristiti."
-#: ../../any.pm_.c:840
+#: ../../any.pm_.c:842
msgid ""
"Mandrake Linux can support multiple languages. Select\n"
"the languages you would like to install. They will be available\n"
"when your installation is complete and you restart your system."
msgstr "MoĆŸete izabrati i druge jezike koji će biti dostupni nakon instalacije"
-#: ../../any.pm_.c:854 ../../install_steps_interactive.pm_.c:708
+#: ../../any.pm_.c:856 ../../install_steps_interactive.pm_.c:692
#: ../../standalone/drakxtv_.c:73
msgid "All"
msgstr "Svi"
-#: ../../any.pm_.c:974
+#: ../../any.pm_.c:977
msgid "Allow all users"
msgstr "Dozvoli svim korisnicima"
-#: ../../any.pm_.c:974
+#: ../../any.pm_.c:977
msgid "No sharing"
msgstr "Bez dijeljenja"
-#: ../../any.pm_.c:984 ../../standalone.pm_.c:57
+#: ../../any.pm_.c:987 ../../install_any.pm_.c:1183 ../../standalone.pm_.c:58
#, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "Paket %s treba biti instaliran. Da li ga ĆŸelite instalirati?"
-#: ../../any.pm_.c:987
+#: ../../any.pm_.c:990
msgid ""
"You can export using NFS or Samba. Please select which you'd like to use."
msgstr "MoĆŸete eksportovati koristeći NFS ili Sambu. Koji ĆŸelite"
-#: ../../any.pm_.c:995 ../../standalone.pm_.c:61
+#: ../../any.pm_.c:998 ../../install_any.pm_.c:1188 ../../standalone.pm_.c:63
#, c-format
msgid "Mandatory package %s is missing"
msgstr "Nedostaje obavezan paket %s"
-#: ../../any.pm_.c:1001
+#: ../../any.pm_.c:1004
msgid ""
"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
@@ -937,11 +950,11 @@ msgid ""
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:1015
+#: ../../any.pm_.c:1018
msgid "Launch userdrake"
msgstr "Pokreni userdrake"
-#: ../../any.pm_.c:1017
+#: ../../any.pm_.c:1020
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
@@ -949,31 +962,31 @@ msgstr ""
"Dijeljenje po-korisniku koristi grupu \"fileshare\". \n"
"MoĆŸete dodavati korisnike u ovu grupu pomoću userdrake-a."
-#: ../../any.pm_.c:1068
+#: ../../any.pm_.c:1071
msgid "Welcome To Crackers"
msgstr "DobrodoĆĄli u Crackers"
-#: ../../any.pm_.c:1069
+#: ../../any.pm_.c:1072
msgid "Poor"
msgstr "LoĆĄ"
-#: ../../any.pm_.c:1070 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1073 ../../mouse.pm_.c:31
msgid "Standard"
msgstr "Standard"
-#: ../../any.pm_.c:1071
+#: ../../any.pm_.c:1074
msgid "High"
msgstr "Visok"
-#: ../../any.pm_.c:1072
+#: ../../any.pm_.c:1075
msgid "Higher"
msgstr "ViĆĄi"
-#: ../../any.pm_.c:1073
+#: ../../any.pm_.c:1076
msgid "Paranoid"
msgstr "Paranoičan"
-#: ../../any.pm_.c:1076
+#: ../../any.pm_.c:1079
msgid ""
"This level is to be used with care. It makes your system more easy to use,\n"
"but very sensitive: it must not be used for a machine connected to others\n"
@@ -983,7 +996,7 @@ msgstr ""
"ali vrlo osjetljivim: ne smije biti koriơten za računar koji je spojen na\n"
"druge ili na Internet. Nema pristupa ĆĄifrom."
-#: ../../any.pm_.c:1079
+#: ../../any.pm_.c:1082
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -991,7 +1004,7 @@ msgstr ""
"Ć ifra je sada aktivirana, ali koriĆĄtenje za mreĆŸni računar joĆĄ nije "
"preporučeno."
-#: ../../any.pm_.c:1080
+#: ../../any.pm_.c:1083
msgid ""
"This is the standard security recommended for a computer that will be used "
"to connect to the Internet as a client."
@@ -999,7 +1012,7 @@ msgstr ""
"Ovo je standardna sigurnost koja je preporučena za računar koji će biti "
"koriĆĄten za spajanje na Internet kao klijent."
-#: ../../any.pm_.c:1081
+#: ../../any.pm_.c:1084
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
@@ -1007,7 +1020,7 @@ msgstr ""
"Već postoje određena ograničenja, a viơe automatskih provjera se pokreće "
"svaku noć."
-#: ../../any.pm_.c:1082
+#: ../../any.pm_.c:1085
msgid ""
"With this security level, the use of this system as a server becomes "
"possible.\n"
@@ -1023,7 +1036,7 @@ msgstr ""
"konekcije sa mnogo klijenata. Napomena: ako je vaơ računar samo klijent na "
"Internetu, moĆŸda je bolje da izaberete niĆŸi nivo."
-#: ../../any.pm_.c:1085
+#: ../../any.pm_.c:1088
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
"security features are at their maximum."
@@ -1031,31 +1044,31 @@ msgstr ""
"Baziran na prethodnom nivou, ali sada je sistem potpuno zatvoren.\n"
"Sigurnosne osobine na maksimumu."
-#: ../../any.pm_.c:1091
+#: ../../any.pm_.c:1094
#, fuzzy
msgid "DrakSec Basic Options"
msgstr "Opcije"
-#: ../../any.pm_.c:1092
+#: ../../any.pm_.c:1095
#, fuzzy
msgid "Please choose the desired security level"
msgstr "Izaberite nivo sigurnosti"
-#: ../../any.pm_.c:1095
+#: ../../any.pm_.c:1098
msgid "Security level"
msgstr "Nivo sigurnosti"
-#: ../../any.pm_.c:1097
+#: ../../any.pm_.c:1100
msgid "Use libsafe for servers"
msgstr "Koristi libsafe za servere"
-#: ../../any.pm_.c:1098
+#: ../../any.pm_.c:1101
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
"Biblioteka koja brani od napada \"buffer overflow\" i \"format string\"."
-#: ../../any.pm_.c:1099
+#: ../../any.pm_.c:1102
msgid "Security Administrator (login or email)"
msgstr ""
@@ -1084,57 +1097,57 @@ msgstr ""
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:935
+#: ../../bootloader.pm_.c:932
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Dobro doĆĄli u GRUB izbornik operativnog sistema!"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:938
+#: ../../bootloader.pm_.c:935
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "Koristite tipke %c i %c za izbor jedne od stavki."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:941
+#: ../../bootloader.pm_.c:938
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Pritisnite enter za bootanje izabranog OSa, 'e' za editovanje"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:941
msgid "commands before booting, or 'c' for a command-line."
msgstr "komandi prije bootanja, ili 'c' za komandnu liniju."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:947
+#: ../../bootloader.pm_.c:944
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "Osvjetljene stavke će biti bootane automatski za %d sekundi."
-#: ../../bootloader.pm_.c:951
+#: ../../bootloader.pm_.c:948
msgid "not enough room in /boot"
msgstr "nema dovoljno prostora u /boot"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1051
+#: ../../bootloader.pm_.c:1048
msgid "Desktop"
msgstr "Desktop"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1053
+#: ../../bootloader.pm_.c:1050
msgid "Start Menu"
msgstr "Start Menu"
-#: ../../bootloader.pm_.c:1072
+#: ../../bootloader.pm_.c:1069
#, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "Ne moĆŸete instalirati bootloader na %s particiju\n"
-#: ../../bootlook.pm_.c:45
+#: ../../bootlook.pm_.c:45 ../../standalone/draksplash_.c:25
msgid "no help implemented yet.\n"
msgstr "pomoć joơ nije implementirana.\n"
@@ -1142,8 +1155,8 @@ msgstr "pomoć joơ nije implementirana.\n"
msgid "Boot Style Configuration"
msgstr "Konfiguracija stila boota"
-#: ../../bootlook.pm_.c:78 ../../harddrake/ui.pm_.c:59
-#: ../../harddrake/ui.pm_.c:60 ../../standalone/drakfloppy_.c:81
+#: ../../bootlook.pm_.c:78 ../../harddrake/ui.pm_.c:62
+#: ../../harddrake/ui.pm_.c:63 ../../standalone/drakfloppy_.c:81
#: ../../standalone/logdrake_.c:101
msgid "/_File"
msgstr "/_Datoteka"
@@ -1153,7 +1166,7 @@ msgstr "/_Datoteka"
msgid "/File/_Quit"
msgstr "/Datoteka/_Izlaz"
-#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:60
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:63
#: ../../standalone/drakfloppy_.c:82 ../../standalone/logdrake_.c:107
msgid "<control>Q"
msgstr "<control>Q"
@@ -1195,94 +1208,101 @@ msgstr "Sistem instalacije"
msgid "Display theme under console"
msgstr ""
-#: ../../bootlook.pm_.c:166
+#: ../../bootlook.pm_.c:145
+#, fuzzy
+msgid "Create new theme"
+msgstr "Napravi novu particiju"
+
+#: ../../bootlook.pm_.c:169
msgid "Can't create Bootsplash preview"
msgstr ""
-#: ../../bootlook.pm_.c:166 ../../bootlook.pm_.c:184 ../../bootlook.pm_.c:187
-#: ../../bootlook.pm_.c:190 ../../bootlook.pm_.c:220 ../../bootlook.pm_.c:222
-#: ../../bootlook.pm_.c:232 ../../bootlook.pm_.c:241 ../../bootlook.pm_.c:248
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:336
-#: ../../diskdrake/interactive.pm_.c:351 ../../diskdrake/interactive.pm_.c:464
-#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../bootlook.pm_.c:169 ../../bootlook.pm_.c:187 ../../bootlook.pm_.c:190
+#: ../../bootlook.pm_.c:193 ../../bootlook.pm_.c:223 ../../bootlook.pm_.c:225
+#: ../../bootlook.pm_.c:235 ../../bootlook.pm_.c:244 ../../bootlook.pm_.c:251
+#: ../../diskdrake/dav.pm_.c:73 ../../diskdrake/hd_gtk.pm_.c:116
+#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/interactive.pm_.c:355
+#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/interactive.pm_.c:474
+#: ../../diskdrake/smbnfs_gtk.pm_.c:45 ../../fsedit.pm_.c:239
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:365 ../../interactive/http.pm_.c:119
-#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:80
+#: ../../interactive/http.pm_.c:119 ../../interactive/http.pm_.c:120
+#: ../../standalone/draksplash_.c:32
msgid "Error"
msgstr "GreĆĄka"
-#: ../../bootlook.pm_.c:183
+#: ../../bootlook.pm_.c:186
#, c-format
msgid "Backup %s to %s.old"
msgstr ""
-#: ../../bootlook.pm_.c:184
+#: ../../bootlook.pm_.c:187
msgid "unable to backup lilo message"
msgstr ""
-#: ../../bootlook.pm_.c:186
+#: ../../bootlook.pm_.c:189
#, fuzzy, c-format
msgid "Copy %s to %s"
msgstr "Kopiram %s"
-#: ../../bootlook.pm_.c:187
+#: ../../bootlook.pm_.c:190
msgid "can't change lilo message"
msgstr ""
-#: ../../bootlook.pm_.c:190
+#: ../../bootlook.pm_.c:193
msgid "Lilo message not found"
msgstr ""
-#: ../../bootlook.pm_.c:220
+#: ../../bootlook.pm_.c:223
msgid "Can't write /etc/sysconfig/bootsplash."
msgstr ""
-#: ../../bootlook.pm_.c:220
+#: ../../bootlook.pm_.c:223
#, fuzzy, c-format
msgid "Write %s"
msgstr "XFree %s"
-#: ../../bootlook.pm_.c:222
+#: ../../bootlook.pm_.c:225
msgid ""
"Can't write /etc/sysconfig/bootsplash\n"
"File not found."
msgstr ""
-#: ../../bootlook.pm_.c:233
+#: ../../bootlook.pm_.c:236
#, c-format
msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
msgstr ""
-#: ../../bootlook.pm_.c:236
+#: ../../bootlook.pm_.c:239
#, c-format
-msgid "Make initrd 'mkinird -f /boot/initrd-%s.img %s'."
+msgid "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
msgstr ""
-#: ../../bootlook.pm_.c:242
+#: ../../bootlook.pm_.c:245
msgid ""
"Can't relaunch LiLo!\n"
"Launch \"lilo\" as root in command line to complete LiLo theme installation."
msgstr ""
-#: ../../bootlook.pm_.c:246
+#: ../../bootlook.pm_.c:249
msgid "Relaunch 'lilo'"
msgstr ""
-#: ../../bootlook.pm_.c:248
+#: ../../bootlook.pm_.c:251 ../../standalone/draksplash_.c:161
+#: ../../standalone/draksplash_.c:330 ../../standalone/draksplash_.c:454
#, fuzzy
msgid "Notice"
msgstr "NoVideo"
-#: ../../bootlook.pm_.c:249
+#: ../../bootlook.pm_.c:252
msgid "LiLo and Bootsplash themes installation successfull"
msgstr ""
-#: ../../bootlook.pm_.c:249
+#: ../../bootlook.pm_.c:252
#, fuzzy
msgid "Theme installation failed!"
msgstr "Izaberite klasu instalacije"
-#: ../../bootlook.pm_.c:258
+#: ../../bootlook.pm_.c:261
#, c-format
msgid ""
"You are currently using %s as your boot manager.\n"
@@ -1291,23 +1311,22 @@ msgstr ""
"Trenutno koristite %s kao boot manager.\n"
"Kliknite na Konfiguriơi kako bi se pokrenuo čarobnjak za podeơavanje."
-#: ../../bootlook.pm_.c:260 ../../standalone/drakbackup_.c:2352
-#: ../../standalone/drakbackup_.c:2362 ../../standalone/drakbackup_.c:2372
-#: ../../standalone/drakbackup_.c:2380 ../../standalone/drakgw_.c:592
-#: ../../standalone/tinyfirewall_.c:58
+#: ../../bootlook.pm_.c:263 ../../standalone/drakbackup_.c:2427
+#: ../../standalone/drakbackup_.c:2437 ../../standalone/drakbackup_.c:2447
+#: ../../standalone/drakbackup_.c:2455 ../../standalone/drakgw_.c:530
msgid "Configure"
msgstr "KonfiguriĆĄi"
-#: ../../bootlook.pm_.c:267
+#: ../../bootlook.pm_.c:270
#, fuzzy
msgid "Splash selection"
msgstr "Spasi izbor paketa"
-#: ../../bootlook.pm_.c:270
+#: ../../bootlook.pm_.c:273
msgid "Themes"
msgstr ""
-#: ../../bootlook.pm_.c:272
+#: ../../bootlook.pm_.c:275
msgid ""
"\n"
"Select a theme for\n"
@@ -1316,44 +1335,44 @@ msgid ""
"them separatly"
msgstr ""
-#: ../../bootlook.pm_.c:275
+#: ../../bootlook.pm_.c:278
msgid "Lilo screen"
msgstr ""
-#: ../../bootlook.pm_.c:279
+#: ../../bootlook.pm_.c:283
msgid "Bootsplash"
msgstr ""
-#: ../../bootlook.pm_.c:314
+#: ../../bootlook.pm_.c:318
msgid "System mode"
msgstr "Sistem mod"
-#: ../../bootlook.pm_.c:316
+#: ../../bootlook.pm_.c:320
msgid "Launch the graphical environment when your system starts"
msgstr "Pokreni X-Window sistem na startu"
-#: ../../bootlook.pm_.c:321
+#: ../../bootlook.pm_.c:325
msgid "No, I don't want autologin"
msgstr "Ne, ne ĆŸelim da se autologiram"
-#: ../../bootlook.pm_.c:323
+#: ../../bootlook.pm_.c:327
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "Da, ĆŸelim da se autologiram sa ovim (korisnik, desktop)"
-#: ../../bootlook.pm_.c:333 ../../network/netconnect.pm_.c:101
+#: ../../bootlook.pm_.c:337 ../../network/netconnect.pm_.c:101
#: ../../standalone/drakTermServ_.c:173 ../../standalone/drakTermServ_.c:300
-#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:3513
-#: ../../standalone/drakbackup_.c:4290 ../../standalone/drakconnect_.c:108
+#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4191
+#: ../../standalone/drakbackup_.c:4952 ../../standalone/drakconnect_.c:108
#: ../../standalone/drakconnect_.c:140 ../../standalone/drakconnect_.c:296
#: ../../standalone/drakconnect_.c:435 ../../standalone/drakconnect_.c:521
#: ../../standalone/drakconnect_.c:564 ../../standalone/drakconnect_.c:667
#: ../../standalone/drakfloppy_.c:376 ../../standalone/drakfont_.c:612
#: ../../standalone/drakfont_.c:799 ../../standalone/drakfont_.c:876
-#: ../../standalone/drakfont_.c:963 ../../standalone/logdrake_.c:521
+#: ../../standalone/drakfont_.c:963 ../../standalone/logdrake_.c:519
msgid "OK"
msgstr "U redu"
-#: ../../bootlook.pm_.c:403
+#: ../../bootlook.pm_.c:407
#, c-format
msgid "can not open /etc/inittab for reading: %s"
msgstr "ne mogu otvoriti /etc/inittab za čitanje: %s"
@@ -1450,49 +1469,53 @@ msgstr "Austrija"
msgid "United States"
msgstr "SAD"
-#: ../../detect_devices.pm_.c:599 ../../detect_devices.pm_.c:641
-#: ../../detect_devices.pm_.c:803
-#, fuzzy
-msgid "Unknown Model"
-msgstr "Nepoznat model"
-
#: ../../diskdrake/dav.pm_.c:23
#, fuzzy
msgid "New"
msgstr "novi"
-#: ../../diskdrake/dav.pm_.c:57
+#: ../../diskdrake/dav.pm_.c:59 ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/smbnfs_gtk.pm_.c:81
+msgid "Unmount"
+msgstr "Demontiraj"
+
+#: ../../diskdrake/dav.pm_.c:60 ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/smbnfs_gtk.pm_.c:82
+msgid "Mount"
+msgstr "Montiraj"
+
+#: ../../diskdrake/dav.pm_.c:61
msgid "Server"
msgstr "Server"
-#: ../../diskdrake/dav.pm_.c:58 ../../diskdrake/interactive.pm_.c:375
-#: ../../diskdrake/interactive.pm_.c:558 ../../diskdrake/interactive.pm_.c:585
+#: ../../diskdrake/dav.pm_.c:62 ../../diskdrake/interactive.pm_.c:379
+#: ../../diskdrake/interactive.pm_.c:568 ../../diskdrake/interactive.pm_.c:595
#: ../../diskdrake/removable.pm_.c:24 ../../diskdrake/removable_gtk.pm_.c:15
#: ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr "Tačka montiranja"
-#: ../../diskdrake/dav.pm_.c:68
+#: ../../diskdrake/dav.pm_.c:81
#, fuzzy
msgid "Please enter the WebDAV server URL"
msgstr "Molim unesite brzinu cd pisača"
-#: ../../diskdrake/dav.pm_.c:71
+#: ../../diskdrake/dav.pm_.c:84
msgid "The URL must begin with http:// or https://"
msgstr ""
-#: ../../diskdrake/dav.pm_.c:92
+#: ../../diskdrake/dav.pm_.c:105
#, fuzzy
msgid "Server: "
msgstr "Server"
-#: ../../diskdrake/dav.pm_.c:93 ../../diskdrake/interactive.pm_.c:435
-#: ../../diskdrake/interactive.pm_.c:1079
-#: ../../diskdrake/interactive.pm_.c:1153
+#: ../../diskdrake/dav.pm_.c:106 ../../diskdrake/interactive.pm_.c:440
+#: ../../diskdrake/interactive.pm_.c:1089
+#: ../../diskdrake/interactive.pm_.c:1164
msgid "Mount point: "
msgstr "Tačka montiranja: "
-#: ../../diskdrake/dav.pm_.c:94 ../../diskdrake/interactive.pm_.c:1159
+#: ../../diskdrake/dav.pm_.c:107 ../../diskdrake/interactive.pm_.c:1170
#, c-format
msgid "Options: %s"
msgstr "Opcije: %s"
@@ -1501,8 +1524,9 @@ msgstr "Opcije: %s"
msgid "Please make a backup of your data first"
msgstr "Molimo najprije napravite backup vaĆĄih podataka"
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:924
-#: ../../diskdrake/interactive.pm_.c:933 ../../diskdrake/interactive.pm_.c:999
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:934
+#: ../../diskdrake/interactive.pm_.c:943
+#: ../../diskdrake/interactive.pm_.c:1009
msgid "Read carefully!"
msgstr "Pročitajte paĆŸljivo!"
@@ -1541,10 +1565,17 @@ msgid "Please click on a partition"
msgstr "Molimo kliknite na particiju"
#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
-#: ../../install_steps_gtk.pm_.c:471
+#: ../../install_steps_gtk.pm_.c:465
msgid "Details"
msgstr "Detalji"
+#: ../../diskdrake/hd_gtk.pm_.c:252
+#, fuzzy
+msgid "No hard drives found"
+msgstr ""
+"Nije pronađen nijedan lokalni ơtampač!\n"
+"\n"
+
#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Ext2"
msgstr "Ext2"
@@ -1569,13 +1600,13 @@ msgstr "SunOS"
msgid "Swap"
msgstr "Swap"
-#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1105
msgid "Empty"
msgstr "Prazno"
-#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:331
-#: ../../install_steps_gtk.pm_.c:389 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1679
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:325
+#: ../../install_steps_gtk.pm_.c:383 ../../mouse.pm_.c:165
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1754
msgid "Other"
msgstr "Ostalo"
@@ -1583,12 +1614,12 @@ msgstr "Ostalo"
msgid "Filesystem types:"
msgstr "Tipovi file sistema:"
-#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:397
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:402
msgid "Create"
msgstr "Kreiraj"
-#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:376
-#: ../../diskdrake/interactive.pm_.c:521 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:380
+#: ../../diskdrake/interactive.pm_.c:531 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "Tip"
@@ -1598,7 +1629,7 @@ msgstr "Tip"
msgid "Use ``%s'' instead"
msgstr "Koristite ``%s'' umjesto toga"
-#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:389
msgid "Delete"
msgstr "ObriĆĄi"
@@ -1606,7 +1637,7 @@ msgstr "ObriĆĄi"
msgid "Use ``Unmount'' first"
msgstr "Najprije koristite ``Demontiraj''"
-#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:513
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:518
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
@@ -1614,72 +1645,72 @@ msgstr ""
"Nakon promjene tipa particije %s, svi podaci na ovoj particiji će biti "
"izgubljeni"
-#: ../../diskdrake/interactive.pm_.c:173
+#: ../../diskdrake/interactive.pm_.c:174
msgid "Choose a partition"
msgstr "Izaberi particiju"
-#: ../../diskdrake/interactive.pm_.c:173
+#: ../../diskdrake/interactive.pm_.c:174
msgid "Choose another partition"
msgstr "Izaberi drugu particiju"
-#: ../../diskdrake/interactive.pm_.c:198
+#: ../../diskdrake/interactive.pm_.c:199
msgid "Exit"
msgstr "Izlaz"
-#: ../../diskdrake/interactive.pm_.c:220
+#: ../../diskdrake/interactive.pm_.c:221
msgid "Toggle to expert mode"
msgstr "Prebaci u ekspertni mod"
-#: ../../diskdrake/interactive.pm_.c:220
+#: ../../diskdrake/interactive.pm_.c:221
msgid "Toggle to normal mode"
msgstr "Prebaci u normalni mod"
-#: ../../diskdrake/interactive.pm_.c:220
+#: ../../diskdrake/interactive.pm_.c:221
msgid "Undo"
msgstr "PoniĆĄti"
-#: ../../diskdrake/interactive.pm_.c:239
+#: ../../diskdrake/interactive.pm_.c:240
msgid "Continue anyway?"
msgstr "Svejedno nastavljate?"
-#: ../../diskdrake/interactive.pm_.c:244
+#: ../../diskdrake/interactive.pm_.c:245
msgid "Quit without saving"
msgstr "Izlaz bez spaĆĄavanja"
-#: ../../diskdrake/interactive.pm_.c:244
+#: ../../diskdrake/interactive.pm_.c:245
msgid "Quit without writing the partition table?"
msgstr "Izlazite bez pisanja tabele particija?"
-#: ../../diskdrake/interactive.pm_.c:249
+#: ../../diskdrake/interactive.pm_.c:250
msgid "Do you want to save /etc/fstab modifications"
msgstr "Ćœelite li spasiti izmjene /etc/fstab"
-#: ../../diskdrake/interactive.pm_.c:261
+#: ../../diskdrake/interactive.pm_.c:263
msgid "Auto allocate"
msgstr "Auto alokacija"
-#: ../../diskdrake/interactive.pm_.c:261
+#: ../../diskdrake/interactive.pm_.c:263
msgid "Clear all"
msgstr "ObriĆĄi sve"
-#: ../../diskdrake/interactive.pm_.c:261
+#: ../../diskdrake/interactive.pm_.c:263
#: ../../install_steps_interactive.pm_.c:214
msgid "More"
msgstr "JoĆĄ"
-#: ../../diskdrake/interactive.pm_.c:264
+#: ../../diskdrake/interactive.pm_.c:267
msgid "Hard drive information"
msgstr "Informacije o hard disku"
-#: ../../diskdrake/interactive.pm_.c:294
+#: ../../diskdrake/interactive.pm_.c:298
msgid "All primary partitions are used"
msgstr "Sve primarne particije su u upotrebi"
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:299
msgid "I can't add any more partition"
msgstr "Ne mogu dodati viĆĄe particija"
-#: ../../diskdrake/interactive.pm_.c:296
+#: ../../diskdrake/interactive.pm_.c:300
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -1687,31 +1718,31 @@ msgstr ""
"Da biste imali joĆĄ particija, molimo pobriĆĄite jednu kako bi se mogla "
"kreirati extended particija"
-#: ../../diskdrake/interactive.pm_.c:306
+#: ../../diskdrake/interactive.pm_.c:310
msgid "Save partition table"
msgstr "Snimi tabelu particija"
-#: ../../diskdrake/interactive.pm_.c:307
+#: ../../diskdrake/interactive.pm_.c:311
msgid "Restore partition table"
msgstr "Vrati tabelu particija"
-#: ../../diskdrake/interactive.pm_.c:308
+#: ../../diskdrake/interactive.pm_.c:312
msgid "Rescue partition table"
msgstr "Spasi tabelu particija"
-#: ../../diskdrake/interactive.pm_.c:310
+#: ../../diskdrake/interactive.pm_.c:314
msgid "Reload partition table"
msgstr "Ponovo učitaj tabelu particija"
-#: ../../diskdrake/interactive.pm_.c:315
+#: ../../diskdrake/interactive.pm_.c:319
msgid "Removable media automounting"
msgstr "Automatsko montiranje izmjenjivog medija"
-#: ../../diskdrake/interactive.pm_.c:324 ../../diskdrake/interactive.pm_.c:344
+#: ../../diskdrake/interactive.pm_.c:328 ../../diskdrake/interactive.pm_.c:348
msgid "Select file"
msgstr "Izaberite datoteku"
-#: ../../diskdrake/interactive.pm_.c:331
+#: ../../diskdrake/interactive.pm_.c:335
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1719,11 +1750,11 @@ msgstr ""
"Backup tabela particija nema istu veličinu\n"
"Ipak nastavljate?"
-#: ../../diskdrake/interactive.pm_.c:345
+#: ../../diskdrake/interactive.pm_.c:349
msgid "Warning"
msgstr "Upozorenje"
-#: ../../diskdrake/interactive.pm_.c:346
+#: ../../diskdrake/interactive.pm_.c:350
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1731,112 +1762,104 @@ msgstr ""
"Ubacite disketu u jedinicu\n"
"Svi podaci na toj disketi će biti izgubljeni"
-#: ../../diskdrake/interactive.pm_.c:357
+#: ../../diskdrake/interactive.pm_.c:361
msgid "Trying to rescue partition table"
msgstr "PokuĆĄavam da spasim tabelu particija"
-#: ../../diskdrake/interactive.pm_.c:363
+#: ../../diskdrake/interactive.pm_.c:367
msgid "Detailed information"
msgstr "Detaljne informacije"
-#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:652
+#: ../../diskdrake/interactive.pm_.c:382 ../../diskdrake/interactive.pm_.c:662
msgid "Resize"
msgstr "Promjeni veličinu"
-#: ../../diskdrake/interactive.pm_.c:379 ../../diskdrake/interactive.pm_.c:705
+#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/interactive.pm_.c:715
msgid "Move"
msgstr "PremjeĆĄtanje"
-#: ../../diskdrake/interactive.pm_.c:380
+#: ../../diskdrake/interactive.pm_.c:384
msgid "Format"
msgstr "Formatiraj"
-#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/smbnfs_gtk.pm_.c:82
-msgid "Mount"
-msgstr "Montiraj"
-
-#: ../../diskdrake/interactive.pm_.c:382
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Add to RAID"
msgstr "Dodaj na RAID"
-#: ../../diskdrake/interactive.pm_.c:383
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Add to LVM"
msgstr "Dodaj na LVM"
-#: ../../diskdrake/interactive.pm_.c:384 ../../diskdrake/smbnfs_gtk.pm_.c:81
-msgid "Unmount"
-msgstr "Demontiraj"
-
-#: ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/interactive.pm_.c:390
msgid "Remove from RAID"
msgstr "Ukloni sa RAIDa"
-#: ../../diskdrake/interactive.pm_.c:387
+#: ../../diskdrake/interactive.pm_.c:391
msgid "Remove from LVM"
msgstr "Ukloni sa LVMa"
-#: ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/interactive.pm_.c:392
msgid "Modify RAID"
msgstr "Modificiraj RAID"
-#: ../../diskdrake/interactive.pm_.c:389
+#: ../../diskdrake/interactive.pm_.c:393
msgid "Use for loopback"
msgstr "Koristi za loopback"
-#: ../../diskdrake/interactive.pm_.c:428
+#: ../../diskdrake/interactive.pm_.c:433
msgid "Create a new partition"
msgstr "Napravi novu particiju"
-#: ../../diskdrake/interactive.pm_.c:431
+#: ../../diskdrake/interactive.pm_.c:436
msgid "Start sector: "
msgstr "Početni sektor: "
-#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:805
+#: ../../diskdrake/interactive.pm_.c:438 ../../diskdrake/interactive.pm_.c:815
msgid "Size in MB: "
msgstr "Veličina u MB: "
-#: ../../diskdrake/interactive.pm_.c:434 ../../diskdrake/interactive.pm_.c:806
+#: ../../diskdrake/interactive.pm_.c:439 ../../diskdrake/interactive.pm_.c:816
msgid "Filesystem type: "
msgstr "Tip datotečnog sistema: "
-#: ../../diskdrake/interactive.pm_.c:439
+#: ../../diskdrake/interactive.pm_.c:444
msgid "Preference: "
msgstr "Preference: "
-#: ../../diskdrake/interactive.pm_.c:464
+#: ../../diskdrake/interactive.pm_.c:469
msgid ""
"You can't create a new partition\n"
"(since you reached the maximal number of primary partitions).\n"
"First remove a primary partition and create an extended partition."
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:494
+#: ../../diskdrake/interactive.pm_.c:499
msgid "Remove the loopback file?"
msgstr "Ukloniti loopback datoteku?"
-#: ../../diskdrake/interactive.pm_.c:519
+#: ../../diskdrake/interactive.pm_.c:529
msgid "Change partition type"
msgstr "Izmjena tipa particije"
-#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:530 ../../diskdrake/removable.pm_.c:48
msgid "Which filesystem do you want?"
msgstr "Koji datotečni sistem ĆŸelite?"
-#: ../../diskdrake/interactive.pm_.c:526
+#: ../../diskdrake/interactive.pm_.c:536
msgid "Switching from ext2 to ext3"
msgstr "Prebacujem sa ext2 na ext3"
-#: ../../diskdrake/interactive.pm_.c:556
+#: ../../diskdrake/interactive.pm_.c:566
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "Gdje ĆŸelite montirati loopback datoteku %s?"
-#: ../../diskdrake/interactive.pm_.c:557
+#: ../../diskdrake/interactive.pm_.c:567
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Gdje ĆŸelite montirati uređaj %s?"
-#: ../../diskdrake/interactive.pm_.c:563
+#: ../../diskdrake/interactive.pm_.c:573
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1845,136 +1868,136 @@ msgstr ""
"loopback.\n"
"Najprije uklonite loopback"
-#: ../../diskdrake/interactive.pm_.c:584
+#: ../../diskdrake/interactive.pm_.c:594
#, fuzzy, c-format
msgid "Where do you want to mount %s?"
msgstr "Gdje ĆŸelite montirati uređaj %s?"
-#: ../../diskdrake/interactive.pm_.c:608
+#: ../../diskdrake/interactive.pm_.c:618
msgid "Computing FAT filesystem bounds"
msgstr "Izračunavam granice FAT filesistema"
-#: ../../diskdrake/interactive.pm_.c:608 ../../diskdrake/interactive.pm_.c:667
-#: ../../install_interactive.pm_.c:131
+#: ../../diskdrake/interactive.pm_.c:618 ../../diskdrake/interactive.pm_.c:677
+#: ../../install_interactive.pm_.c:133
msgid "Resizing"
msgstr "Mijenjam veličinu"
-#: ../../diskdrake/interactive.pm_.c:640
+#: ../../diskdrake/interactive.pm_.c:650
msgid "This partition is not resizeable"
msgstr "Ovoj particiji ne moĆŸete mijenjati veličinu"
-#: ../../diskdrake/interactive.pm_.c:645
+#: ../../diskdrake/interactive.pm_.c:655
msgid "All data on this partition should be backed-up"
msgstr "Svi podaci na toj particiji bi trebali biti backupovani"
-#: ../../diskdrake/interactive.pm_.c:647
+#: ../../diskdrake/interactive.pm_.c:657
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr ""
"Nakon promjene veličine particije %s, svi podaci na njoj će biti izgubljeni"
-#: ../../diskdrake/interactive.pm_.c:652
+#: ../../diskdrake/interactive.pm_.c:662
msgid "Choose the new size"
msgstr "Izaberite novu veličinu"
-#: ../../diskdrake/interactive.pm_.c:653
+#: ../../diskdrake/interactive.pm_.c:663
msgid "New size in MB: "
msgstr "Nova veličina u MB: "
-#: ../../diskdrake/interactive.pm_.c:706
+#: ../../diskdrake/interactive.pm_.c:716
msgid "Which disk do you want to move it to?"
msgstr "Na koji disk je ĆŸelite premjestiti?"
-#: ../../diskdrake/interactive.pm_.c:707
+#: ../../diskdrake/interactive.pm_.c:717
msgid "Sector"
msgstr "Sektor"
-#: ../../diskdrake/interactive.pm_.c:708
+#: ../../diskdrake/interactive.pm_.c:718
msgid "Which sector do you want to move it to?"
msgstr "Na koji sektor je ĆŸelite premjestiti?"
-#: ../../diskdrake/interactive.pm_.c:711
+#: ../../diskdrake/interactive.pm_.c:721
msgid "Moving"
msgstr "PremjeĆĄtam"
-#: ../../diskdrake/interactive.pm_.c:711
+#: ../../diskdrake/interactive.pm_.c:721
msgid "Moving partition..."
msgstr "PremjeĆĄtam particiju..."
-#: ../../diskdrake/interactive.pm_.c:728
+#: ../../diskdrake/interactive.pm_.c:738
msgid "Choose an existing RAID to add to"
msgstr "Izaberite postojeći RAID na koji ćete dodati"
-#: ../../diskdrake/interactive.pm_.c:729 ../../diskdrake/interactive.pm_.c:746
+#: ../../diskdrake/interactive.pm_.c:739 ../../diskdrake/interactive.pm_.c:756
msgid "new"
msgstr "novi"
-#: ../../diskdrake/interactive.pm_.c:744
+#: ../../diskdrake/interactive.pm_.c:754
msgid "Choose an existing LVM to add to"
msgstr "Izaberite postojeći LVM na koji ćete dodati"
-#: ../../diskdrake/interactive.pm_.c:749
+#: ../../diskdrake/interactive.pm_.c:759
msgid "LVM name?"
msgstr "Naziv LVMa?"
-#: ../../diskdrake/interactive.pm_.c:790
+#: ../../diskdrake/interactive.pm_.c:800
msgid "This partition can't be used for loopback"
msgstr "Ova particija se ne moĆŸe koristiti za loopback"
-#: ../../diskdrake/interactive.pm_.c:803
+#: ../../diskdrake/interactive.pm_.c:813
msgid "Loopback"
msgstr "Loopback"
-#: ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:814
msgid "Loopback file name: "
msgstr "Naziv loopback datoteke: "
-#: ../../diskdrake/interactive.pm_.c:809
+#: ../../diskdrake/interactive.pm_.c:819
msgid "Give a file name"
msgstr "Dajte naziv datoteke"
-#: ../../diskdrake/interactive.pm_.c:812
+#: ../../diskdrake/interactive.pm_.c:822
msgid "File already used by another loopback, choose another one"
msgstr "Datoteku već koristi drugi loopback, izaberite drugo ime"
-#: ../../diskdrake/interactive.pm_.c:813
+#: ../../diskdrake/interactive.pm_.c:823
msgid "File already exists. Use it?"
msgstr "Datoteka već postoji. Ćœelite li je koristiti?"
-#: ../../diskdrake/interactive.pm_.c:836
+#: ../../diskdrake/interactive.pm_.c:846
msgid "Mount options"
msgstr "Opcije montiranja"
-#: ../../diskdrake/interactive.pm_.c:843
+#: ../../diskdrake/interactive.pm_.c:853
msgid "Various"
msgstr "Razni"
-#: ../../diskdrake/interactive.pm_.c:907 ../../standalone/drakfloppy_.c:103
+#: ../../diskdrake/interactive.pm_.c:917 ../../standalone/drakfloppy_.c:103
msgid "device"
msgstr "Uređaj"
-#: ../../diskdrake/interactive.pm_.c:908
+#: ../../diskdrake/interactive.pm_.c:918
msgid "level"
msgstr "nivo"
-#: ../../diskdrake/interactive.pm_.c:909
+#: ../../diskdrake/interactive.pm_.c:919
msgid "chunk size"
msgstr "veličina chunka"
-#: ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:934
msgid "Be careful: this operation is dangerous."
msgstr "Budite oprezni: ova operacija je opasna"
-#: ../../diskdrake/interactive.pm_.c:939
+#: ../../diskdrake/interactive.pm_.c:949
msgid "What type of partitioning?"
msgstr "Koju vrstu particioniranja?"
-#: ../../diskdrake/interactive.pm_.c:955
+#: ../../diskdrake/interactive.pm_.c:965
#, fuzzy, c-format
msgid "The package %s is needed. Install it?"
msgstr "Paket %s treba biti instaliran. Da li ga ĆŸelite instalirati?"
-#: ../../diskdrake/interactive.pm_.c:969
+#: ../../diskdrake/interactive.pm_.c:979
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -1986,7 +2009,7 @@ msgstr ""
"Ili ćete koristiti LILO i stvar neće raditi, ili nećete koristiti LILO pa "
"vam ne treba ni /boot"
-#: ../../diskdrake/interactive.pm_.c:973
+#: ../../diskdrake/interactive.pm_.c:983
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -1998,7 +2021,7 @@ msgstr ""
"1024og cilindra hard diska, tako da nemate /boot particiju.\n"
"Ako planirate koristiti LILO boot manager, pazite da dodate /boot particiju"
-#: ../../diskdrake/interactive.pm_.c:979
+#: ../../diskdrake/interactive.pm_.c:989
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
@@ -2008,47 +2031,47 @@ msgstr ""
"Nijedan bootloader nije u mogućnosti da rukuje sa ovim bez /boot particije.\n"
"Pazite da dodate /boot particiju"
-#: ../../diskdrake/interactive.pm_.c:999
+#: ../../diskdrake/interactive.pm_.c:1009
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "Tabela particija za uređaj %s će biti zapisana na disk!"
-#: ../../diskdrake/interactive.pm_.c:1003
+#: ../../diskdrake/interactive.pm_.c:1013
msgid "You'll need to reboot before the modification can take place"
msgstr ""
"Biće potrebno da rebootate prije nego ơto izmjene mogu stupiti na snagu"
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1024
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr ""
"Nakon formatiranja particije %s, svi podaci na toj particiji će biti "
"izgubljeni"
-#: ../../diskdrake/interactive.pm_.c:1016
+#: ../../diskdrake/interactive.pm_.c:1026
msgid "Formatting"
msgstr "Formatiram"
-#: ../../diskdrake/interactive.pm_.c:1017
+#: ../../diskdrake/interactive.pm_.c:1027
#, c-format
msgid "Formatting loopback file %s"
msgstr "Formatiram loopback datoteku %s"
-#: ../../diskdrake/interactive.pm_.c:1018
-#: ../../install_steps_interactive.pm_.c:476
+#: ../../diskdrake/interactive.pm_.c:1028
+#: ../../install_steps_interactive.pm_.c:459
#, c-format
msgid "Formatting partition %s"
msgstr "Formatiram particiju %s"
-#: ../../diskdrake/interactive.pm_.c:1029
+#: ../../diskdrake/interactive.pm_.c:1039
msgid "Hide files"
msgstr "Sakrij datoteke"
-#: ../../diskdrake/interactive.pm_.c:1029
+#: ../../diskdrake/interactive.pm_.c:1039
msgid "Move files to the new partition"
msgstr "Prebaci datoteke na novu particiju"
-#: ../../diskdrake/interactive.pm_.c:1030
+#: ../../diskdrake/interactive.pm_.c:1040
#, c-format
msgid ""
"Directory %s already contains data\n"
@@ -2057,83 +2080,83 @@ msgstr ""
"Direktorij %s već sadrĆŸi neke podatke\n"
"(%s)"
-#: ../../diskdrake/interactive.pm_.c:1041
+#: ../../diskdrake/interactive.pm_.c:1051
msgid "Moving files to the new partition"
msgstr "PremjeĆĄtam datoteke na novu particiju"
-#: ../../diskdrake/interactive.pm_.c:1045
+#: ../../diskdrake/interactive.pm_.c:1055
#, c-format
msgid "Copying %s"
msgstr "Kopiram %s"
-#: ../../diskdrake/interactive.pm_.c:1049
+#: ../../diskdrake/interactive.pm_.c:1059
#, c-format
msgid "Removing %s"
msgstr "Uklanjam %s"
-#: ../../diskdrake/interactive.pm_.c:1059
+#: ../../diskdrake/interactive.pm_.c:1069
#, c-format
msgid "partition %s is now known as %s"
msgstr "particija %s je od sada poznata kao %s"
-#: ../../diskdrake/interactive.pm_.c:1080
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1090
+#: ../../diskdrake/interactive.pm_.c:1149
msgid "Device: "
msgstr "Uređaj: "
-#: ../../diskdrake/interactive.pm_.c:1081
+#: ../../diskdrake/interactive.pm_.c:1091
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "DOS slovo uređaja: %s (pretpostavka)\n"
-#: ../../diskdrake/interactive.pm_.c:1085
-#: ../../diskdrake/interactive.pm_.c:1093
-#: ../../diskdrake/interactive.pm_.c:1157
+#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1103
+#: ../../diskdrake/interactive.pm_.c:1168
msgid "Type: "
msgstr "Tip: "
-#: ../../diskdrake/interactive.pm_.c:1089
+#: ../../diskdrake/interactive.pm_.c:1099
msgid "Name: "
msgstr "Ime: "
-#: ../../diskdrake/interactive.pm_.c:1097
+#: ../../diskdrake/interactive.pm_.c:1107
#, c-format
msgid "Start: sector %s\n"
msgstr "Početak: sector %s\n"
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1108
#, c-format
msgid "Size: %s"
msgstr "Veličina: %s"
-#: ../../diskdrake/interactive.pm_.c:1100
+#: ../../diskdrake/interactive.pm_.c:1110
#, c-format
msgid ", %s sectors"
msgstr ", %s sektora"
-#: ../../diskdrake/interactive.pm_.c:1102
+#: ../../diskdrake/interactive.pm_.c:1112
#, c-format
msgid "Cylinder %d to %d\n"
msgstr "Cilindar %d do %d\n"
-#: ../../diskdrake/interactive.pm_.c:1103
+#: ../../diskdrake/interactive.pm_.c:1113
msgid "Formatted\n"
msgstr "Formatirana\n"
-#: ../../diskdrake/interactive.pm_.c:1104
+#: ../../diskdrake/interactive.pm_.c:1114
msgid "Not formatted\n"
msgstr "Nije formatirana\n"
-#: ../../diskdrake/interactive.pm_.c:1105
+#: ../../diskdrake/interactive.pm_.c:1115
msgid "Mounted\n"
msgstr "Montirana\n"
-#: ../../diskdrake/interactive.pm_.c:1106
+#: ../../diskdrake/interactive.pm_.c:1116
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1108
+#: ../../diskdrake/interactive.pm_.c:1118
#, c-format
msgid ""
"Loopback file(s):\n"
@@ -2142,7 +2165,7 @@ msgstr ""
"Loopback datoteka(e):\n"
" %s\n"
-#: ../../diskdrake/interactive.pm_.c:1109
+#: ../../diskdrake/interactive.pm_.c:1119
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -2150,27 +2173,27 @@ msgstr ""
"Particija koja se boota po defaultu\n"
" (za MS-DOS boot, ne za lilo)\n"
-#: ../../diskdrake/interactive.pm_.c:1111
+#: ../../diskdrake/interactive.pm_.c:1121
#, c-format
msgid "Level %s\n"
msgstr "Nivo %s\n"
-#: ../../diskdrake/interactive.pm_.c:1112
+#: ../../diskdrake/interactive.pm_.c:1122
#, c-format
msgid "Chunk size %s\n"
msgstr "Veličina chunka %s\n"
-#: ../../diskdrake/interactive.pm_.c:1113
+#: ../../diskdrake/interactive.pm_.c:1123
#, c-format
msgid "RAID-disks %s\n"
msgstr "RAID-diskovi %s\n"
-#: ../../diskdrake/interactive.pm_.c:1115
+#: ../../diskdrake/interactive.pm_.c:1125
#, c-format
msgid "Loopback file name: %s"
msgstr "Naziv loopback datoteke: %s"
-#: ../../diskdrake/interactive.pm_.c:1118
+#: ../../diskdrake/interactive.pm_.c:1128
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -2182,7 +2205,7 @@ msgstr ""
"particija Driver particija, vjerovatno\n"
"biste je trebali ostaviti na miru.\n"
-#: ../../diskdrake/interactive.pm_.c:1121
+#: ../../diskdrake/interactive.pm_.c:1131
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2194,58 +2217,62 @@ msgstr ""
"particija je za\n"
"dvojni boot vaĆĄeg sistema.\n"
-#: ../../diskdrake/interactive.pm_.c:1140
+#: ../../diskdrake/interactive.pm_.c:1150
+msgid "Read-only"
+msgstr ""
+
+#: ../../diskdrake/interactive.pm_.c:1151
#, c-format
msgid "Size: %s\n"
msgstr "Veličina: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1141
+#: ../../diskdrake/interactive.pm_.c:1152
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Geometrija: %s cilindara, %s glava, %s sektora\n"
-#: ../../diskdrake/interactive.pm_.c:1142
+#: ../../diskdrake/interactive.pm_.c:1153
msgid "Info: "
msgstr "Info: "
-#: ../../diskdrake/interactive.pm_.c:1143
+#: ../../diskdrake/interactive.pm_.c:1154
#, c-format
msgid "LVM-disks %s\n"
msgstr "LVM-diskovi %s\n"
-#: ../../diskdrake/interactive.pm_.c:1144
+#: ../../diskdrake/interactive.pm_.c:1155
#, c-format
msgid "Partition table type: %s\n"
msgstr "Tip tabele particija: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1145
+#: ../../diskdrake/interactive.pm_.c:1156
#, fuzzy, c-format
msgid "on channel %d id %d\n"
msgstr "na busu %d id %d\n"
-#: ../../diskdrake/interactive.pm_.c:1175
+#: ../../diskdrake/interactive.pm_.c:1186
msgid "Filesystem encryption key"
msgstr "Ključ za kodiranje datotečnog sistema"
-#: ../../diskdrake/interactive.pm_.c:1176
+#: ../../diskdrake/interactive.pm_.c:1187
msgid "Choose your filesystem encryption key"
msgstr "Izaberite vaơ ključ za kodiranje datotečnog sistema"
-#: ../../diskdrake/interactive.pm_.c:1179
+#: ../../diskdrake/interactive.pm_.c:1190
#, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr ""
"Ova ĆĄifra je previĆĄe jednostavna (mora biti duga najmanje %d karaktera)"
-#: ../../diskdrake/interactive.pm_.c:1180
+#: ../../diskdrake/interactive.pm_.c:1191
msgid "The encryption keys do not match"
msgstr "Ć ifre se ne poklapaju"
-#: ../../diskdrake/interactive.pm_.c:1183
+#: ../../diskdrake/interactive.pm_.c:1194
msgid "Encryption key"
msgstr "Ć ifra"
-#: ../../diskdrake/interactive.pm_.c:1184
+#: ../../diskdrake/interactive.pm_.c:1195
msgid "Encryption key (again)"
msgstr "Ć ifra (joĆĄ jednom)"
@@ -2282,7 +2309,7 @@ msgid ""
"Please enter your username, password and domain name to access this host."
msgstr ""
-#: ../../diskdrake/smbnfs_gtk.pm_.c:178
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3527
#, fuzzy
msgid "Username"
msgstr "Korisničko ime"
@@ -2296,23 +2323,23 @@ msgstr "NIS domen"
msgid "Search servers"
msgstr "TraĆŸi servere"
-#: ../../fs.pm_.c:552 ../../fs.pm_.c:562 ../../fs.pm_.c:566 ../../fs.pm_.c:570
-#: ../../fs.pm_.c:574 ../../fs.pm_.c:578
+#: ../../fs.pm_.c:544 ../../fs.pm_.c:554 ../../fs.pm_.c:558 ../../fs.pm_.c:562
+#: ../../fs.pm_.c:566 ../../fs.pm_.c:570
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s formatiranje %s nije uspjelo"
-#: ../../fs.pm_.c:615
+#: ../../fs.pm_.c:607
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "Ne znam kako formatirati %s tipa %s"
-#: ../../fs.pm_.c:687 ../../fs.pm_.c:731
+#: ../../fs.pm_.c:681 ../../fs.pm_.c:724
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr "montiranje particije %s u direktoriju %s nije uspjelo"
-#: ../../fs.pm_.c:746 ../../partition_table.pm_.c:602
+#: ../../fs.pm_.c:739 ../../partition_table.pm_.c:598
#, c-format
msgid "error unmounting %s: %s"
msgstr "greĆĄka u demontiranju %s: %s"
@@ -2329,33 +2356,50 @@ msgstr "sa /usr"
msgid "server"
msgstr "server"
-#: ../../fsedit.pm_.c:472
+#: ../../fsedit.pm_.c:240
+#, fuzzy, c-format
+msgid ""
+"I can't read the partition table of device %s, it's too corrupted for me :(\n"
+"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
+"The other solution is to not allow DrakX to modify the partition table.\n"
+"(the error is %s)\n"
+"\n"
+"Do you agree to loose all the partitions?\n"
+msgstr ""
+"Ne mogu pročitati vaơu tabelu particija, previơe je oơtećena za mene :(\n"
+"Mogu pokuơati da pobriơem loơe particije (SVI PODACI će biti izgubljeni!).\n"
+"Drugo rjeơenje je da onemogućim DrakX da mijenja tabelu particija.\n"
+"(greĆĄka je %s)\n"
+"\n"
+"SlaĆŸete li se sa gubitkom svih particija?\n"
+
+#: ../../fsedit.pm_.c:501
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr "Ne moĆŸete koristiti JFS za particije manje od 16MB"
-#: ../../fsedit.pm_.c:473
+#: ../../fsedit.pm_.c:502
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr "Ne moĆŸete koristiti ReiserFS za particije manje od 32MB"
-#: ../../fsedit.pm_.c:492
+#: ../../fsedit.pm_.c:521
msgid "Mount points must begin with a leading /"
msgstr "Tačke montiranja moraju počinjati sa /"
-#: ../../fsedit.pm_.c:493
+#: ../../fsedit.pm_.c:522
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Već postoji particija sa tačkom montiranja %s\n"
-#: ../../fsedit.pm_.c:497
+#: ../../fsedit.pm_.c:526
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr "Ne moĆŸete koristiti LVM logički volumen za tačku montiranja %s"
-#: ../../fsedit.pm_.c:499
+#: ../../fsedit.pm_.c:528
msgid "This directory should remain within the root filesystem"
msgstr "Ovaj direktorij treba ostati unutar korijenskog file sistema"
-#: ../../fsedit.pm_.c:501
+#: ../../fsedit.pm_.c:530
#, fuzzy
msgid ""
"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
@@ -2363,231 +2407,278 @@ msgid ""
msgstr ""
"Potreban vam je pravi file sistem (ext2, reiserfs) za ovu tačku montiranja\n"
-#: ../../fsedit.pm_.c:503
+#: ../../fsedit.pm_.c:532
#, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr "Ne moĆŸete koristiti kriptovani datotečni sistem za tačku montiranja %s"
-#: ../../fsedit.pm_.c:570
+#: ../../fsedit.pm_.c:599
msgid "Not enough free space for auto-allocating"
msgstr "Nema dovoljno prostora za auto-alokaciju"
-#: ../../fsedit.pm_.c:572
+#: ../../fsedit.pm_.c:601
msgid "Nothing to do"
msgstr "Nemam ĆĄta da radim"
-#: ../../fsedit.pm_.c:665
+#: ../../fsedit.pm_.c:694
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "GreĆĄka u otvaranju %s za pisanje: %s"
-#: ../../fsedit.pm_.c:750
+#: ../../harddrake/sound.pm_.c:155
+msgid "No alternative driver"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:156
+#, c-format
+msgid "There's no known OSS/ALSA alternative driver for your sound card (%s)"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:158
+#, fuzzy
+msgid "Sound configuration"
+msgstr "PodeĆĄavanje CUPSa"
+
+#: ../../harddrake/sound.pm_.c:159
+#, c-format
msgid ""
-"An error occurred - no valid devices were found on which to create new "
-"filesystems. Please check your hardware for the cause of this problem"
+"Here you can select an alternative driver (either OSS or ALSA) for your "
+"sound card (%s)"
msgstr ""
-"Doơlo je do greơke - nije pronađen nijedan ispravan uređaj na kojem se mogu "
-"kreirati novi file sistemi. Molimo provjerite vaơ hardware i pronađite uzrok "
-"greĆĄke"
-#: ../../fsedit.pm_.c:773
-msgid "You don't have any partitions!"
-msgstr "Nemate nijednu particiju!"
+#: ../../harddrake/sound.pm_.c:162
+#, fuzzy
+msgid "Driver:"
+msgstr "Drajver"
+
+#: ../../harddrake/sound.pm_.c:173
+#, fuzzy
+msgid "No known driver"
+msgstr "X drajver"
+
+#: ../../harddrake/sound.pm_.c:174
+#, c-format
+msgid "There's no known driver for your sound card (%s)"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:177
+#, fuzzy
+msgid "Unkown driver"
+msgstr "Nepoznat model"
+
+#: ../../harddrake/sound.pm_.c:178
+#, c-format
+msgid ""
+"The \"%s\" driver for your sound card is unlisted\n"
+"\n"
+"Please send the output of the \"lspcidrake -v\" command to\n"
+"<install at mandrakesoft dot com>\n"
+"with subject: unlisted sound driver \"%s\""
+msgstr ""
-#: ../../harddrake/ui.pm_.c:15
+#: ../../harddrake/ui.pm_.c:16
#, fuzzy
msgid "Model"
msgstr "MiĆĄ"
-#: ../../harddrake/ui.pm_.c:15
+#: ../../harddrake/ui.pm_.c:16
#, fuzzy
msgid "hard disk model"
msgstr "Memorija kartice (DMA)"
-#: ../../harddrake/ui.pm_.c:16
+#: ../../harddrake/ui.pm_.c:17
#, fuzzy
msgid "Channel"
msgstr "Odustani"
-#: ../../harddrake/ui.pm_.c:16
+#: ../../harddrake/ui.pm_.c:17
msgid "EIDE/SCSI channel"
msgstr ""
-#: ../../harddrake/ui.pm_.c:18
+#: ../../harddrake/ui.pm_.c:19
msgid "Bus"
msgstr ""
-#: ../../harddrake/ui.pm_.c:19
+#: ../../harddrake/ui.pm_.c:20
msgid ""
"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
msgstr ""
-#: ../../harddrake/ui.pm_.c:20
+#: ../../harddrake/ui.pm_.c:21
#, fuzzy
msgid "Module"
msgstr "MiĆĄ"
-#: ../../harddrake/ui.pm_.c:20
+#: ../../harddrake/ui.pm_.c:21
msgid "the module of the GNU/Linux kernel that handle that device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:21
+#: ../../harddrake/ui.pm_.c:22
msgid "Media class"
msgstr ""
-#: ../../harddrake/ui.pm_.c:21
+#: ../../harddrake/ui.pm_.c:22
msgid "class of hardware device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:22 ../../printerdrake.pm_.c:1404
+#: ../../harddrake/ui.pm_.c:23 ../../printerdrake.pm_.c:1517
msgid "Description"
msgstr "Opis"
-#: ../../harddrake/ui.pm_.c:22
+#: ../../harddrake/ui.pm_.c:23
msgid "this field describe the device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:24
+#: ../../harddrake/ui.pm_.c:25
#, fuzzy
msgid "Bus identification"
msgstr "Autentikacija"
-#: ../../harddrake/ui.pm_.c:25
+#: ../../harddrake/ui.pm_.c:26
msgid ""
-"- PCI and USB devices : this list the vendor, device, subvendor and "
-"subdevice PCI/USB ids"
+"- PCI and USB devices: this list the vendor, device, subvendor and subdevice "
+"PCI/USB ids"
msgstr ""
-#: ../../harddrake/ui.pm_.c:27
+#: ../../harddrake/ui.pm_.c:28
msgid "Location on the bus"
msgstr ""
-#: ../../harddrake/ui.pm_.c:28
+#: ../../harddrake/ui.pm_.c:29
msgid ""
"- pci devices: this gives the PCI slot, device and function of this card\n"
"- eide devices: the device is either a slave or a master device\n"
"- scsi devices: the scsi bus and the scsi device ids"
msgstr ""
-#: ../../harddrake/ui.pm_.c:31
+#: ../../harddrake/ui.pm_.c:32
#, fuzzy
msgid "Old device file"
msgstr "Izaberite datoteku"
-#: ../../harddrake/ui.pm_.c:32
+#: ../../harddrake/ui.pm_.c:33
msgid "old static device name used in dev package"
msgstr ""
-#: ../../harddrake/ui.pm_.c:33
+#: ../../harddrake/ui.pm_.c:34
#, fuzzy
msgid "New devfs device"
msgstr "Gateway uređaj"
-#: ../../harddrake/ui.pm_.c:34
+#: ../../harddrake/ui.pm_.c:35
msgid "new dinamic device name generated by incore kernel devfs"
msgstr ""
-#: ../../harddrake/ui.pm_.c:35
+#: ../../harddrake/ui.pm_.c:36
#, fuzzy
msgid "Number of buttons"
msgstr "2 dugmeta"
-#: ../../harddrake/ui.pm_.c:36
+#: ../../harddrake/ui.pm_.c:37
msgid "the vendor name of the device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:60
+#: ../../harddrake/ui.pm_.c:38
+#, fuzzy
+msgid "Alternative drivers"
+msgstr "Alternativna testna strana (A4)"
+
+#: ../../harddrake/ui.pm_.c:39
+msgid "the list of alternative drivers for this sound card"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:63
#, fuzzy
msgid "/_Quit"
msgstr "Izlaz"
-#: ../../harddrake/ui.pm_.c:61 ../../harddrake/ui.pm_.c:62
-#: ../../harddrake/ui.pm_.c:68 ../../standalone/logdrake_.c:110
+#: ../../harddrake/ui.pm_.c:64 ../../harddrake/ui.pm_.c:65
+#: ../../harddrake/ui.pm_.c:71 ../../standalone/logdrake_.c:110
msgid "/_Help"
msgstr "/_Pomoć"
-#: ../../harddrake/ui.pm_.c:62
+#: ../../harddrake/ui.pm_.c:65
#, fuzzy
msgid "/_Help..."
msgstr "/_Pomoć"
-#: ../../harddrake/ui.pm_.c:63
+#: ../../harddrake/ui.pm_.c:66
msgid "Harddrake help"
msgstr ""
-#: ../../harddrake/ui.pm_.c:64
+#: ../../harddrake/ui.pm_.c:67
msgid ""
"Description of the fields:\n"
"\n"
msgstr ""
-#: ../../harddrake/ui.pm_.c:68
+#: ../../harddrake/ui.pm_.c:71
#, fuzzy
msgid "/_About..."
msgstr "/Pomoć/_O programu..."
-#: ../../harddrake/ui.pm_.c:69
+#: ../../harddrake/ui.pm_.c:72
msgid "About Harddrake"
msgstr ""
-#: ../../harddrake/ui.pm_.c:70
+#: ../../harddrake/ui.pm_.c:73
msgid ""
"This is HardDrake, a Mandrake hardware configuration tool.\n"
"Version:"
msgstr ""
-#: ../../harddrake/ui.pm_.c:71
+#: ../../harddrake/ui.pm_.c:74
#, fuzzy
msgid "Author:"
msgstr "Ispitivanje"
-#: ../../harddrake/ui.pm_.c:83
+#: ../../harddrake/ui.pm_.c:86
#, fuzzy
msgid "Harddrake2 version "
msgstr "Prepoznavanje hard diska"
-#: ../../harddrake/ui.pm_.c:91
+#: ../../harddrake/ui.pm_.c:103
#, fuzzy
msgid "Detected hardware"
msgstr "Pogledaj hardware info"
-#: ../../harddrake/ui.pm_.c:92
+#: ../../harddrake/ui.pm_.c:105
#, fuzzy
-msgid "Configure module"
-msgstr "PodeĆĄavanje miĆĄa"
+msgid "Information"
+msgstr "PrikaĆŸi informacije"
-#: ../../harddrake/ui.pm_.c:92
+#: ../../harddrake/ui.pm_.c:108
#, fuzzy
-msgid "Informations"
-msgstr "PrikaĆŸi informacije"
+msgid "Configure module"
+msgstr "PodeĆĄavanje miĆĄa"
-#: ../../harddrake/ui.pm_.c:92
+#: ../../harddrake/ui.pm_.c:109
msgid "Run config tool"
msgstr ""
-#: ../../harddrake/ui.pm_.c:96
+#: ../../harddrake/ui.pm_.c:113
#, fuzzy
msgid "Detection in progress"
msgstr "detektovan na portu %s"
-#: ../../harddrake/ui.pm_.c:96 ../../interactive.pm_.c:388
+#: ../../harddrake/ui.pm_.c:113 ../../interactive.pm_.c:391
msgid "Please wait"
msgstr "Molimo sačekajte"
-#: ../../harddrake/ui.pm_.c:139
+#: ../../harddrake/ui.pm_.c:156
msgid "primary"
msgstr ""
-#: ../../harddrake/ui.pm_.c:139
+#: ../../harddrake/ui.pm_.c:156
#, fuzzy
msgid "secondary"
msgstr "%d sekundi"
-#: ../../harddrake/ui.pm_.c:176
+#: ../../harddrake/ui.pm_.c:197
msgid "You can configure each parameter of the module here."
msgstr ""
-#: ../../harddrake/ui.pm_.c:192
+#: ../../harddrake/ui.pm_.c:213
#, fuzzy, c-format
msgid "Running \"%s\" ..."
msgstr "Uklanjam ơtampač \"%s\" ..."
@@ -2620,16 +2711,16 @@ msgstr ""
#: ../../harddrake/v4l.pm_.c:213
#, fuzzy
-msgid "Card model :"
+msgid "Card model:"
msgstr "Memorija kartice (DMA)"
#: ../../harddrake/v4l.pm_.c:214
#, fuzzy
-msgid "Tuner type :"
+msgid "Tuner type:"
msgstr "Promjeni tip"
#: ../../harddrake/v4l.pm_.c:215
-msgid "Number of capture buffers :"
+msgid "Number of capture buffers:"
msgstr ""
#: ../../harddrake/v4l.pm_.c:215
@@ -2638,11 +2729,11 @@ msgstr ""
#: ../../harddrake/v4l.pm_.c:217
#, fuzzy
-msgid "PLL setting :"
+msgid "PLL setting:"
msgstr "postavka opterećenja"
#: ../../harddrake/v4l.pm_.c:218
-msgid "Radio support :"
+msgid "Radio support:"
msgstr ""
#: ../../harddrake/v4l.pm_.c:218
@@ -2654,22 +2745,22 @@ msgid ""
"GNU/Linux is a multiuser system, and this means that each user can have his\n"
"own preferences, his own files and so on. You can read the ``User Guide''\n"
"to learn more. But unlike \"root\", which is the administrator, the users\n"
-"you will add here will not be entitled to change anything except their own\n"
-"files and their own configuration. You will have to create at least one\n"
-"regular user for yourself. That account is where you should log in for\n"
-"routine use. Although it is very practical to log in as \"root\" everyday,\n"
-"it may also be very dangerous! The slightest mistake could mean that your\n"
-"system would not work any more. If you make a serious mistake as a regular\n"
-"user, you may only lose some information, but not the entire system.\n"
+"you add here will not be entitled to change anything except their own files\n"
+"and their own configuration. You will have to create at least one regular\n"
+"user for yourself. That account is where you should log in for routine use.\n"
+"Although it is very practical to log in as \"root\" everyday, it may also\n"
+"be very dangerous! The slightest mistake could mean that your system would\n"
+"not work any more. If you make a serious mistake as a regular user, you may\n"
+"only lose some information, but not the entire system.\n"
"\n"
"First, you have to enter your real name. This is not mandatory, of course -\n"
"as you can actually enter whatever you want. DrakX will then take the first\n"
"word you have entered in the box and will bring it over to the \"User\n"
"name\". This is the name this particular user will use to log onto the\n"
"system. You can change it. You then have to enter a password here. A\n"
-"non-privileged (regular) user's password is not as crucial as \"root\"' one\n"
-"from a security point of view, but that is no reason to neglect it: after\n"
-"all, your files are at risk.\n"
+"non-privileged (regular) user's password is not as crucial as the \"root\"'\n"
+"one from a security point of view, but that is no reason to neglect it:\n"
+"after all, your files are at risk.\n"
"\n"
"If you click on \"Accept user\", you can then add as many as you want. Add\n"
"a user for each one of your friends: your father or your sister, for\n"
@@ -2808,7 +2899,7 @@ msgid ""
"to have a graphical workstation!\n"
"\n"
"Moving the mouse cursor over a group name will display a short explanatory\n"
-"text about that group. If you deselect all groups when performing a regular\n"
+"text about that group. If you unselect all groups when performing a regular\n"
"installation (by opposition to an upgrade), a dialog will pop up proposing\n"
"different options for a minimal installation:\n"
"\n"
@@ -2884,10 +2975,10 @@ msgstr ""
#: ../../help.pm_.c:128
msgid ""
-"Finally, depending on whether or not you selected individual packages, you\n"
-"will be presented a tree containing all packages classified by groups and\n"
-"subgroups. While browsing the tree, you can select entire groups,\n"
-"subgroups, or individual packages.\n"
+"Finally, depending on whether or not you chose to be able to select\n"
+"individual packages, you will be presented a tree containing all packages\n"
+"classified by groups and subgroups. While browsing the tree, you can select\n"
+"entire groups, subgroups, or individual packages.\n"
"\n"
"Whenever you select a package on the tree, a description appears on the\n"
"right. When your selection is finished, click the \"Install\" button which\n"
@@ -2956,11 +3047,11 @@ msgstr ""
#: ../../help.pm_.c:164
msgid ""
-"You are now proposed to set up your Internet/network connection. If you\n"
-"wish to connect your computer to the Internet or to a local network, click\n"
-"\"OK\". The autodetection of network devices and modem will be launched. If\n"
-"this detection fails, uncheck the \"Use auto detection\" box next time. You\n"
-"may also choose not to configure the network, or do it later; in that case,\n"
+"You are now able to set up your Internet/network connection. If you wish to\n"
+"connect your computer to the Internet or to a local network, click \"OK\".\n"
+"The autodetection of network devices and modem will be launched. If this\n"
+"detection fails, uncheck the \"Use auto detection\" box next time. You may\n"
+"also choose not to configure the network, or do it later; in that case,\n"
"simply click the \"Cancel\" button.\n"
"\n"
"Available connections are: traditional modem, ISDN modem, ADSL connection,\n"
@@ -3038,7 +3129,7 @@ msgstr ""
msgid ""
"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
"local time according to the time zone you selected. It is however possible\n"
-"to deactivate this by deselecting \"Hardware clock set to GMT\" so that the\n"
+"to deactivate this by unselecting \"Hardware clock set to GMT\" so that the\n"
"hardware clock is the same as the system clock. This is useful when the\n"
"machine is hosting another operating system like Windows.\n"
"\n"
@@ -3081,7 +3172,9 @@ msgid ""
"If you can see the message during the test, and answer \"Yes\", then DrakX\n"
"will proceed to the next step. If you cannot see the message, it simply\n"
"means that the configuration was wrong and the test will automatically end\n"
-"after 10 seconds, restoring the screen."
+"after 10 seconds, restoring the screen. Refer then to the Video\n"
+"configuration section of the user guide for more information on how to\n"
+"configure your display."
msgstr ""
"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
@@ -3102,31 +3195,7 @@ msgstr ""
"means that the configuration was wrong and the test will automatically end\n"
"after 10 seconds, restoring the screen."
-#: ../../help.pm_.c:237
-msgid ""
-"The first time you try the X configuration, you may not be very satisfied\n"
-"with its display (screen is too small, shifted left or right...). Hence,\n"
-"even if X starts up correctly, DrakX then asks you if the configuration\n"
-"suits you. It will also propose to change it by displaying a list of valid\n"
-"modes it could find, asking you to select one.\n"
-"\n"
-"As a last resort, if you still cannot get X to work, choose \"Change\n"
-"graphics card\", select \"Unlisted card\", and when prompted on which\n"
-"server, choose \"FBDev\". This is a failsafe option which works with any\n"
-"modern graphics card. Then choose \"Test again\" to be sure."
-msgstr ""
-"The first time you try the X configuration, you may not be very satisfied\n"
-"with its display (screen is too small, shifted left or right...). Hence,\n"
-"even if X starts up correctly, DrakX then asks you if the configuration\n"
-"suits you. It will also propose to change it by displaying a list of valid\n"
-"modes it could find, asking you to select one.\n"
-"\n"
-"As a last resort, if you still cannot get X to work, choose \"Change\n"
-"graphics card\", select \"Unlisted card\", and when prompted on which\n"
-"server, choose \"FBDev\". This is a failsafe option which works with any\n"
-"modern graphics card. Then choose \"Test again\" to be sure."
-
-#: ../../help.pm_.c:249
+#: ../../help.pm_.c:239
msgid ""
"Finally, you will be asked whether you want to see the graphical interface\n"
"at boot. Note this question will be asked even if you chose not to test the\n"
@@ -3140,7 +3209,8 @@ msgstr ""
"act as a server, or if you were not successful in getting the display\n"
"configured."
-#: ../../help.pm_.c:256
+#: ../../help.pm_.c:246
+#, fuzzy
msgid ""
"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
@@ -3160,10 +3230,10 @@ msgid ""
"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
"password, or any other reason.\n"
"\n"
-"When you click on this step, you will be asked to enter a disk inside the\n"
-"drive. The floppy disk you will insert must be empty or contain data which\n"
-"you do not need. You will not have to format it since DrakX will rewrite\n"
-"the whole disk."
+"If you say \"Yes\", you will be asked to enter a disk inside the drive. The\n"
+"floppy disk you will insert must be empty or contain data which you do not\n"
+"need. You will not have to format it since DrakX will rewrite the whole\n"
+"disk."
msgstr ""
"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
@@ -3189,7 +3259,7 @@ msgstr ""
"you do not need. You will not have to format it since DrakX will rewrite\n"
"the whole disk."
-#: ../../help.pm_.c:280
+#: ../../help.pm_.c:270
msgid ""
"At this point, you need to choose where you want to install the Mandrake\n"
"Linux operating system on your hard drive. If your hard drive is empty or\n"
@@ -3222,7 +3292,9 @@ msgid ""
"\n"
" * \"Use existing partition\": the wizard has detected one or more existing\n"
"Linux partitions on your hard drive. If you want to use them, choose this\n"
-"option;\n"
+"option. You will then be asked to choose the mount points associated to\n"
+"each of the partitions. The legacy mount points are selected by default,\n"
+"and you should generally keep them.\n"
"\n"
" * \"Use the free space on the Windows; partition\": if Microsoft Windows\n"
"is installed on your hard drive and takes all the space available on it,\n"
@@ -3255,7 +3327,9 @@ msgid ""
" * \"Expert mode\": choose this option if you want to manually partition\n"
"your hard drive. Be careful - it is a powerful but dangerous choice. You\n"
"can very easily lose all your data. Hence, do not choose this unless you\n"
-"know what you are doing."
+"know what you are doing. To know how do use the DiskDrake utility used\n"
+"here, refer to the section ``Managing Your Partitions'' of the ````User\n"
+"Guide''''"
msgstr ""
"Na ovom mjestu trebate izabrati gdje ĆŸelite instalirati Linux Mandrake\n"
"operativni sistem na vaơem hard disku. Ako je disk prazan ili ako postojeći\n"
@@ -3333,7 +3407,7 @@ msgstr ""
"sigurni\n"
"ĆĄta radite."
-#: ../../help.pm_.c:347
+#: ../../help.pm_.c:341
msgid ""
"There you are. Installation is now complete and your GNU/Linux system is\n"
"ready to use. Just click \"OK\" to reboot the system. You can start\n"
@@ -3395,7 +3469,7 @@ msgstr ""
"(*) You need a FAT-formatted floppy (to create one under GNU/Linux, type\n"
"\"mformat a:\")"
-#: ../../help.pm_.c:378
+#: ../../help.pm_.c:372
msgid ""
"Any partitions that have been newly defined must be formatted for use\n"
"(formatting means creating a filesystem).\n"
@@ -3449,7 +3523,7 @@ msgstr ""
"Kliknite na Napredno da izaberete particije koje ĆŸelite provjeriti radi\n"
"loĆĄih blokova."
-#: ../../help.pm_.c:404
+#: ../../help.pm_.c:398
msgid ""
"Your new Mandrake Linux operating system is currently being installed.\n"
"Depending on the number of packages you will be installing and the speed of\n"
@@ -3464,12 +3538,12 @@ msgstr ""
"\n"
"Molim da imate strpljenja."
-#: ../../help.pm_.c:412
+#: ../../help.pm_.c:406
msgid ""
"At the time you are installing Mandrake Linux, it is likely that some\n"
"packages have been updated since the initial release. Some bugs may have\n"
"been fixed, and security issues solved. To allow you to benefit from these\n"
-"updates, you are now proposed to download them from the Internet. Choose\n"
+"updates, you are now able to download them from the Internet. Choose\n"
"\"Yes\" if you have a working Internet connection, or \"No\" if you prefer\n"
"to install updated packages later.\n"
"\n"
@@ -3490,7 +3564,7 @@ msgstr ""
"appears: review the selection, and press \"Install\" to retrieve and\n"
"install the selected package or \"Cancel\" to abort."
-#: ../../help.pm_.c:425
+#: ../../help.pm_.c:419
msgid ""
"Before continuing, you should read carefully the terms of the license. It\n"
"covers the whole Mandrake Linux distribution, and if you do not agree with\n"
@@ -3504,14 +3578,14 @@ msgstr ""
"instalaciju.\n"
"Da biste nastavili sa instalacijom, kliknite na dugme Prihvati."
-#: ../../help.pm_.c:432
+#: ../../help.pm_.c:426
msgid ""
"At this point, it is time to choose the security level desired for the\n"
"machine. As a rule of thumb, the more exposed the machine is, and the more\n"
"the data stored in it is crucial, the higher the security level should be.\n"
"However, a higher security level is generally obtained at the expense of\n"
-"easiness of use. Refer to the \"msec\" chapter of the ``Reference Manual''\n"
-"to get more information about the meaning of these levels.\n"
+"ease of use. Refer to the \"msec\" chapter of the ``Reference Manual'' to\n"
+"get more information about the meaning of these levels.\n"
"\n"
"If you do not know what to choose, keep the default option."
msgstr ""
@@ -3524,7 +3598,7 @@ msgstr ""
"\n"
"If you do not know what to choose, keep the default option."
-#: ../../help.pm_.c:442
+#: ../../help.pm_.c:436
msgid ""
"At this point, you need to choose which partition(s) will be used for the\n"
"installation of your Mandrake Linux system. If partitions have already been\n"
@@ -3541,26 +3615,26 @@ msgid ""
" * \"Clear all\": this option deletes all partitions on the selected hard\n"
"drive;\n"
"\n"
-" * \"Auto allocate\": this option enables to automatically create \"Ext2\"\n"
-"and swap partitions in free space of your hard drive;\n"
+" * \"Auto allocate\": this option enables to automatically create ext3 and\n"
+"swap partitions in free space of your hard drive;\n"
"\n"
-" * \"More\": gives access to additional features:\n"
+"\"More\": gives access to additional features:\n"
"\n"
-" * \"Save partition table\": saves the partition table to a floppy.\n"
-"Useful for later partition-table recovery if necessary. It is strongly\n"
-"recommended to perform this step;\n"
+" * \"Save partition table\": saves the partition table to a floppy. Useful\n"
+"for later partition-table recovery if necessary. It is strongly recommended\n"
+"to perform this step;\n"
"\n"
-" * \"Restore partition table\": allows to restore a previously saved\n"
+" * \"Restore partition table\": allows to restore a previously saved\n"
"partition table from floppy disk;\n"
"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you\n"
-"can try to recover it using this option. Please be careful and remember\n"
-"that it can fail;\n"
+" * \"Rescue partition table\": if your partition table is damaged, you can\n"
+"try to recover it using this option. Please be careful and remember that it\n"
+"can fail;\n"
"\n"
-" * \"Reload partition table\": discards all changes and loads your\n"
-"initial partition table;\n"
+" * \"Reload partition table\": discards all changes and loads your initial\n"
+"partition table;\n"
"\n"
-" * \"Removable media automounting\": unchecking this option will force\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
"users to manually mount and unmount removable medias such as floppies and\n"
"CD-ROMs.\n"
"\n"
@@ -3588,7 +3662,7 @@ msgid ""
" * Ctrl-m to set the mount point.\n"
"\n"
"To get information about the different filesystem types available, please\n"
-"read the ext2fs chapter from the ``Reference Manual''.\n"
+"read the ext2FS chapter from the ``Reference Manual''.\n"
"\n"
"If you are installing on a PPC machine, you will want to create a small HFS\n"
"``bootstrap'' partition of at least 1MB, which will be used by the yaboot\n"
@@ -3671,7 +3745,7 @@ msgstr ""
"may find it a useful place to store a spare kernel and ramdisk images for\n"
"emergency boot situations."
-#: ../../help.pm_.c:513
+#: ../../help.pm_.c:507
msgid ""
"More than one Microsoft partition has been detected on your hard drive.\n"
"Please choose the one you want to resize in order to install your new\n"
@@ -3733,35 +3807,35 @@ msgstr ""
"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
"disk or partition is called \"C:\")."
-#: ../../help.pm_.c:544
+#: ../../help.pm_.c:538
msgid "Please be patient. This operation can take several minutes."
msgstr ""
"Molimo da imate strpljenja. Ova operacija moĆŸe potrajati nekoliko minuta."
-#: ../../help.pm_.c:547
+#: ../../help.pm_.c:541
msgid ""
"DrakX now needs to know if you want to perform a default (\"Recommended\")\n"
"installation or if you want to have greater control (\"Expert\"). You can\n"
"also choose to do a new install or an upgrade of an existing Mandrake Linux\n"
"system:\n"
"\n"
-" * \"Install\": completely wipes out the old system. In fact, depending on\n"
-"what currently holds your machine, you will be able to keep some old (Linux\n"
-"or other) partitions unchanged;\n"
+" * \"Install\": completely wipes out the old system, however, depending on\n"
+"what is currently installed on your machine, you may be able to keep some\n"
+"old partitions (Linux or otherwise) unchanged;\n"
"\n"
" * \"Upgrade\": this installation class allows to simply update the\n"
"packages currently installed on your Mandrake Linux system. It keeps the\n"
"current partitions of your hard drives as well as user configurations. All\n"
-"other configuration steps remain available with respect to plain\n"
+"other configuration steps remain available, similar to a normal\n"
"installation;\n"
"\n"
-" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
-"existing Mandrake Linux system while keeping all system configurations\n"
-"unchanged. Adding new packages to the current installation is also\n"
-"possible.\n"
+" * \"Upgrade Packages Only\": this new installation class allows you to\n"
+"upgrade an existing Mandrake Linux system while keeping all system\n"
+"configurations unchanged. Adding new packages to the current installation\n"
+"is also possible.\n"
"\n"
-"Upgrades should work fine for Mandrake Linux systems starting from \"8.1\"\n"
-"release.\n"
+"Upgrades should work fine on Mandrake Linux systems containing version\n"
+"\"8.1\" or later.\n"
"\n"
"Depending on your knowledge of GNU/Linux, select one of the following\n"
"choices:\n"
@@ -3770,11 +3844,11 @@ msgid ""
"operating system. The installation will be very easy and you will only be\n"
"asked a few questions;\n"
"\n"
-" * Expert: if you have a good knowledge of GNU/Linux, you can choose this\n"
-"installation class. The expert installation will allow you to perform a\n"
-"highly-customized installation. Answering some of the questions can be\n"
-"difficult if you do not have a good knowledge of GNU/Linux, so do not\n"
-"choose this unless you know what you are doing."
+" * Expert: if you have a good understanding of GNU/Linux, you may wish to\n"
+"perform a highly customized installation. Some of the decisions you will\n"
+"have to make may be difficult if you do not have good knowledge of\n"
+"GNU/Linux, so it is not recommended that those without a fair amount of\n"
+"experience select this installation class."
msgstr ""
"DrakX sada mora znati da li ĆŸelite obaviti podrazumjevanu instalaciju\n"
"(\"Preporučeno\") ili ĆŸelite da imate veću kontrolu (\"Ekspert\"). Takođe\n"
@@ -3812,19 +3886,22 @@ msgstr ""
"instalaciju. Odgovor na neka pitanja moĆŸe biti vrlo teĆŸak ako nemate dobro\n"
"poznavanje GNU/Linuxa, zato nemojte birati ovo sem ako znate ĆĄta radite."
-#: ../../help.pm_.c:584
+#: ../../help.pm_.c:578
msgid ""
"Normally, DrakX selects the right keyboard for you (depending on the\n"
-"language you have chosen) and you won't even see this step. However, you\n"
-"might not have a keyboard that corresponds exactly to your language: for\n"
-"example, if you are an English speaking Swiss person, you may still want\n"
-"your keyboard to be a Swiss keyboard. Or if you speak English but are\n"
-"located in Quebec, you may find yourself in the same situation. In both\n"
-"cases, you will have to go back to this installation step and select an\n"
-"appropriate keyboard from the list.\n"
+"language you have chosen). However, you might not have a keyboard that\n"
+"corresponds exactly to your language: for example, if you are an English\n"
+"speaking Swiss person, you may still want your keyboard to be a Swiss\n"
+"keyboard. Or if you speak English but are located in Quebec, you may find\n"
+"yourself in the same situation. In both cases, you will have to go back to\n"
+"this installation step and select an appropriate keyboard from the list.\n"
"\n"
"Click on the \"More\" button to be presented with the complete list of\n"
-"supported keyboards."
+"supported keyboards.\n"
+"\n"
+"If you choose a keyboard layout based on a non-latin alphabet, you will be\n"
+"asked on next dialog to choose the key binding that will switch the\n"
+"keyboard layout between the latin and non latin layouts."
msgstr ""
"Normally, DrakX selects the right keyboard for you (depending on the\n"
"language you have chosen) and you will not even see this step. However, you\n"
@@ -3838,8 +3915,10 @@ msgstr ""
"Click on the \"More\" button to be presented with the complete list of\n"
"supported keyboards."
-#: ../../help.pm_.c:597
+#: ../../help.pm_.c:594
msgid ""
+"The first step is to choose your preferred language.\n"
+"\n"
"Please choose your preferred language for installation and system usage.\n"
"\n"
"Clicking on the \"Advanced\" button will allow you to select other\n"
@@ -3864,7 +3943,7 @@ msgstr ""
"Note that multiple languages may be installed. Once you have selected any\n"
"additional locales click the \"OK\" button to continue."
-#: ../../help.pm_.c:610
+#: ../../help.pm_.c:609
msgid ""
"DrakX generally detects the number of buttons your mouse has. If not, it\n"
"assumes you have a two-button mouse and will set it up for third-button\n"
@@ -3877,7 +3956,14 @@ msgid ""
"If you choose a mouse other than the default, a test screen will be\n"
"displayed. Use the buttons and wheel to verify that the settings are\n"
"correct. If the mouse is not working well, press the space bar or [Return]\n"
-"to \"Cancel\" and choose again."
+"to \"Cancel\" and choose again.\n"
+"\n"
+"Wheel mouses are sometimes not automatically detected. You will need to\n"
+"manually select it in the list. Be sure to select the one corresponding to\n"
+"the correct port it is attached to. After you have pressed the \"OK\"\n"
+"button, a mouse image is displayed. You then need to move the wheel of your\n"
+"mouse to activate it correctly. Then test all buttons and movements are\n"
+"correct."
msgstr ""
"By default, DrakX assumes you have a two-button mouse and will set it up\n"
"for third-button emulation. DrakX will automatically know whether it is a\n"
@@ -3891,7 +3977,7 @@ msgstr ""
"are good. If the mouse is not working correctly press the space bar or\n"
"[Return] to \"Cancel\" and choose again."
-#: ../../help.pm_.c:624
+#: ../../help.pm_.c:630
msgid ""
"Please select the correct port. For example, the \"COM1\" port under\n"
"Windows is named \"ttyS0\" under GNU/Linux."
@@ -3899,7 +3985,7 @@ msgstr ""
"Molimo izaberite ispravan port. Na primjer, \"COM1\" port pod MS\n"
"Windowsom se zove \"ttyS0\" pod GNU/Linuxom."
-#: ../../help.pm_.c:628
+#: ../../help.pm_.c:634
msgid ""
"This is the most crucial decision point for the security of your GNU/Linux\n"
"system: you have to enter the \"root\" password. \"root\" is the system\n"
@@ -3929,9 +4015,9 @@ msgid ""
"In Expert mode, you will be asked if you will be connecting to an\n"
"authentication server, like NIS or LDAP.\n"
"\n"
-"If your network uses the LDAP (or NIS) protocol for authentication, select\n"
-"\"LDAP\" (or \"NIS\") as authentication. If you do not know, ask your\n"
-"network administrator.\n"
+"If your network uses either of the LDAP, NIS, or PDC Windows Domain\n"
+"authentication services, select the appropriate one as \"authentication\".\n"
+"If you do not know, ask your network administrator.\n"
"\n"
"If your computer is not connected to any administrated network, you will\n"
"want to choose \"Local files\" for authentication."
@@ -3971,7 +4057,7 @@ msgstr ""
"If your computer is not connected to any administrated network, you will\n"
"want to choose \"Local files\" for authentication."
-#: ../../help.pm_.c:664
+#: ../../help.pm_.c:670
msgid ""
"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
@@ -4010,16 +4096,7 @@ msgid ""
"options. !!\n"
"\n"
"Clicking the \"Advanced\" button in this dialog will offer many advanced\n"
-"options, which are reserved to the expert user.\n"
-"\n"
-"After you have configured the general bootloader parameters, the list of\n"
-"boot options which will be available at boot time will be displayed.\n"
-"\n"
-"If there is another operating system installed on your machine, it will\n"
-"automatically be added to the boot menu. Here, you can choose to fine-tune\n"
-"the existing options. Select an entry and click \"Modify\" to modify or\n"
-"remove it; \"Add\" creates a new entry; and \"Done\" goes on to the next\n"
-"installation step."
+"options, which are reserved for the expert user."
msgstr ""
"LILO and grub are boot loaders for GNU/Linux. This stage, normally, is\n"
"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
@@ -4069,13 +4146,16 @@ msgstr ""
"it; \"Add\" creates a new entry; and \"Done\" goes on to the next\n"
"installation step."
-#: ../../help.pm_.c:713
+#: ../../help.pm_.c:710
msgid ""
-"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
-"either GNU/Linux or any other operating system present on your computer.\n"
-"Normally, these other operating systems are correctly detected and\n"
-"installed. If this is not the case, you can add an entry by hand in this\n"
-"screen. Be careful to choose the correct parameters.\n"
+"After you have configured the general bootloader parameters, the list of\n"
+"boot options which will be available at boot time will be displayed.\n"
+"\n"
+"If there is another operating system installed on your machine, it will\n"
+"automatically be added to the boot menu. Here, you can choose to fine-tune\n"
+"the existing options. Select an entry and click \"Modify\" to modify or\n"
+"remove it; \"Add\" creates a new entry; and \"Done\" goes on to the next\n"
+"installation step.\n"
"\n"
"You may also not want to give access to these other operating systems to\n"
"anyone. In which case, you can delete the corresponding entries. But then,\n"
@@ -4163,18 +4243,18 @@ msgstr ""
#: ../../help.pm_.c:759
msgid ""
-"DrakX now detects any IDE device present in your computer. It will also\n"
-"scan for one or more PCI SCSI card(s) on your system. If a SCSI card is\n"
+"DrakX now detects any IDE devices present in your computer. It will also\n"
+"scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
"found, DrakX will automatically install the appropriate driver.\n"
"\n"
"Because hardware detection does not always detect a piece of hardware,\n"
"DrakX will ask you to confirm if a PCI SCSI card is present. Click \"Yes\"\n"
"if you know that there is a SCSI card installed in your machine. You will\n"
-"be presented a list of SCSI cards to choose from. Click \"No\" if you have\n"
-"no SCSI hardware. If you are unsure, you can check the list of hardware\n"
-"detected in your machine by selecting \"See hardware info\" and clicking\n"
-"\"OK\". Examine the list of hardware and then click on the \"OK\" button to\n"
-"return to the SCSI interface question.\n"
+"be presented with a list of SCSI cards to choose from. Click \"No\" if you\n"
+"have no SCSI hardware. If you are unsure, you can check the list of\n"
+"hardware detected in your machine by selecting \"See hardware info\" and\n"
+"clicking \"OK\". Examine the list of hardware and then click on the \"OK\"\n"
+"button to return to the SCSI interface question.\n"
"\n"
"If you have to manually specify your adapter, DrakX will ask if you want to\n"
"specify options for it. You should allow DrakX to probe the hardware for\n"
@@ -4397,7 +4477,9 @@ msgid ""
"order to configure the clock according to the time zone you are in;\n"
"\n"
" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
-"configuration wizard;\n"
+"configuration wizard. Consult the corresponding chapter of the ``User\n"
+"Guide'' for more information on how to setup a new printer. The interface\n"
+"presented there is similar to the one used during installation;\n"
"\n"
" * \"Sound card\": if a sound card is detected on your system, it is\n"
"displayed here. No modification possible at installation time;\n"
@@ -4438,7 +4520,7 @@ msgstr ""
"displayed here. You can click on the button to change the parameters\n"
"associated to it."
-#: ../../help.pm_.c:894
+#: ../../help.pm_.c:896
msgid ""
"Choose the hard drive you want to erase in order to install your new\n"
"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
@@ -4450,7 +4532,7 @@ msgstr ""
"biti\n"
"izgubljeni i neće se moći vratiti!"
-#: ../../help.pm_.c:899
+#: ../../help.pm_.c:901
msgid ""
"Click on \"OK\" if you want to delete all data and partitions present on\n"
"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
@@ -4481,7 +4563,7 @@ msgstr ""
msgid "You must also format %s"
msgstr "Morate također formatirati i %s"
-#: ../../install_any.pm_.c:418
+#: ../../install_any.pm_.c:423
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -4506,20 +4588,29 @@ msgstr ""
"\n"
"Da li zaista ĆŸelite instalirati ove servere?\n"
-#: ../../install_any.pm_.c:453
+#: ../../install_any.pm_.c:441
+#, c-format
+msgid ""
+"The following packages will be removed to allow upgrading your system: %s\n"
+"\n"
+"\n"
+"Do you really want to remove these packages?\n"
+msgstr ""
+
+#: ../../install_any.pm_.c:471
msgid "Can't use broadcast with no NIS domain"
msgstr "Ne mogu koristiti broadcast bez NIS domene"
-#: ../../install_any.pm_.c:841
+#: ../../install_any.pm_.c:862
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Ubacite FAT formatiranu disketu u jedinicu %s"
-#: ../../install_any.pm_.c:845
+#: ../../install_any.pm_.c:866
msgid "This floppy is not FAT formatted"
msgstr "Ova disketa nije FAT (DOS/Windows) formatirana"
-#: ../../install_any.pm_.c:857
+#: ../../install_any.pm_.c:878
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -4527,11 +4618,20 @@ msgstr ""
"Da koristite ovaj izbor spaĆĄenih paketa, bootajte instalaciju sa ``linux "
"defcfg=floppy''"
-#: ../../install_any.pm_.c:880 ../../partition_table.pm_.c:771
+#: ../../install_any.pm_.c:901 ../../partition_table.pm_.c:767
#, c-format
msgid "Error reading file %s"
msgstr "Greơka u čitanju datoteke %s"
+#: ../../install_any.pm_.c:1023
+msgid ""
+"An error occurred - no valid devices were found on which to create new "
+"filesystems. Please check your hardware for the cause of this problem"
+msgstr ""
+"Doơlo je do greơke - nije pronađen nijedan ispravan uređaj na kojem se mogu "
+"kreirati novi file sistemi. Molimo provjerite vaơ hardware i pronađite uzrok "
+"greĆĄke"
+
#: ../../install_interactive.pm_.c:23
#, c-format
msgid ""
@@ -4566,59 +4666,59 @@ msgstr ""
"\n"
"Svejedno nastavi?"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:168
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:169
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "Morate imati FAT particiju montiranu na /boot/efi"
-#: ../../install_interactive.pm_.c:91
+#: ../../install_interactive.pm_.c:92
msgid "Use free space"
msgstr "Koristi slobodan prostor"
-#: ../../install_interactive.pm_.c:93
+#: ../../install_interactive.pm_.c:94
msgid "Not enough free space to allocate new partitions"
msgstr "Nema dovoljno slobodnog prostora za pravljenje novih particija"
-#: ../../install_interactive.pm_.c:101
+#: ../../install_interactive.pm_.c:102
msgid "Use existing partitions"
msgstr "Koristi postojeću particiju"
-#: ../../install_interactive.pm_.c:103
+#: ../../install_interactive.pm_.c:104
msgid "There is no existing partition to use"
msgstr "Nema nijedne postojeće particije za upotrebu"
-#: ../../install_interactive.pm_.c:110
+#: ../../install_interactive.pm_.c:111
msgid "Use the Windows partition for loopback"
msgstr "Koristi Windows particiju za loopback"
-#: ../../install_interactive.pm_.c:113
+#: ../../install_interactive.pm_.c:114
msgid "Which partition do you want to use for Linux4Win?"
msgstr "Koju particiju ĆŸelite koristiti za Linux4Win?"
-#: ../../install_interactive.pm_.c:115
+#: ../../install_interactive.pm_.c:116
msgid "Choose the sizes"
msgstr "Izaberite veličine"
-#: ../../install_interactive.pm_.c:116
+#: ../../install_interactive.pm_.c:117
msgid "Root partition size in MB: "
msgstr "Veličina root particije u MB:"
-#: ../../install_interactive.pm_.c:117
+#: ../../install_interactive.pm_.c:118
msgid "Swap partition size in MB: "
msgstr "Veličina swap particije u MB:"
-#: ../../install_interactive.pm_.c:126
+#: ../../install_interactive.pm_.c:128
msgid "Use the free space on the Windows partition"
msgstr "Koristi slobodan prostor na Windows particiji"
-#: ../../install_interactive.pm_.c:129
+#: ../../install_interactive.pm_.c:131
msgid "Which partition do you want to resize?"
msgstr "Kojoj particiji ĆŸelite promjeniti veličinu?"
-#: ../../install_interactive.pm_.c:131
+#: ../../install_interactive.pm_.c:133
msgid "Resizing Windows partition"
msgstr "Izračunavam granice Windows datotečnog sistema"
-#: ../../install_interactive.pm_.c:134
+#: ../../install_interactive.pm_.c:136
#, c-format
msgid ""
"The FAT resizer is unable to handle your partition, \n"
@@ -4627,7 +4727,7 @@ msgstr ""
"FAT resizer ne moĆŸe izmjeniti vaĆĄu particiju, \n"
"doơlo je do sljedeće greơke: %s"
-#: ../../install_interactive.pm_.c:137
+#: ../../install_interactive.pm_.c:139
msgid ""
"Your Windows partition is too fragmented. Please reboot your computer under "
"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
@@ -4636,7 +4736,7 @@ msgstr ""
"VaĆĄa Windows particija je previĆĄe fragmentirana, molimo prvo pokrenite "
"``defrag'' "
-#: ../../install_interactive.pm_.c:138
+#: ../../install_interactive.pm_.c:140
msgid ""
"WARNING!\n"
"\n"
@@ -4657,21 +4757,21 @@ msgstr ""
"ponovo pokrenite instalaciju. Također biste trebali spasiti sve podatke.\n"
"Kada ste sigurni, kliknite na Ok."
-#: ../../install_interactive.pm_.c:148
+#: ../../install_interactive.pm_.c:150
msgid "Which size do you want to keep for Windows on"
msgstr "Koju veličinu ĆŸelite da sačuvate za windows na"
-#: ../../install_interactive.pm_.c:149
+#: ../../install_interactive.pm_.c:151
#, c-format
msgid "partition %s"
msgstr "particiji %s"
-#: ../../install_interactive.pm_.c:156
+#: ../../install_interactive.pm_.c:158
#, c-format
msgid "FAT resizing failed: %s"
msgstr "FAT promjena veličine nije uspjela: %s"
-#: ../../install_interactive.pm_.c:171
+#: ../../install_interactive.pm_.c:173
msgid ""
"There is no FAT partition to resize or to use as loopback (or not enough "
"space left)"
@@ -4679,33 +4779,33 @@ msgstr ""
"Ne postoji nijedna FAT particija za promjenu veličine ili upotrebu za "
"loopback (ili nije ostalo dovoljno prostora)"
-#: ../../install_interactive.pm_.c:177
+#: ../../install_interactive.pm_.c:179
msgid "Erase entire disk"
msgstr "Pobriơi čitav disk"
-#: ../../install_interactive.pm_.c:177
+#: ../../install_interactive.pm_.c:179
msgid "Remove Windows(TM)"
msgstr "Ukloni Windows(TM)"
-#: ../../install_interactive.pm_.c:180
+#: ../../install_interactive.pm_.c:182
msgid "You have more than one hard drive, which one do you install linux on?"
msgstr "Imate viĆĄe od jednog hard diska, na koji ĆŸelite instalirati linux?"
-#: ../../install_interactive.pm_.c:183
+#: ../../install_interactive.pm_.c:185
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr ""
"SVE postojeće particije i podaci na njima će biti izgubljeni na disku %s"
-#: ../../install_interactive.pm_.c:191
+#: ../../install_interactive.pm_.c:193
msgid "Custom disk partitioning"
msgstr "Ručno particioniranje diska"
-#: ../../install_interactive.pm_.c:195
+#: ../../install_interactive.pm_.c:197
msgid "Use fdisk"
msgstr "Koristi fdisk"
-#: ../../install_interactive.pm_.c:198
+#: ../../install_interactive.pm_.c:200
#, c-format
msgid ""
"You can now partition %s.\n"
@@ -4714,28 +4814,28 @@ msgstr ""
"Sada moĆŸete particionirati %s.\n"
"Kada zavrĆĄite, ne zaboravite spasiti sa `w'"
-#: ../../install_interactive.pm_.c:227
+#: ../../install_interactive.pm_.c:229
msgid "You don't have enough free space on your Windows partition"
msgstr "Nemate dovoljno slobodnog prostora na vaĆĄoj Windows particiji"
-#: ../../install_interactive.pm_.c:243
+#: ../../install_interactive.pm_.c:245
msgid "I can't find any room for installing"
msgstr "Ne mogu naći dovoljno prostora za instalaciju"
-#: ../../install_interactive.pm_.c:246
+#: ../../install_interactive.pm_.c:248
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr "DrakX Particioni čarobnjak je naơao sljedeća rjeơenja:"
-#: ../../install_interactive.pm_.c:250
+#: ../../install_interactive.pm_.c:252
#, c-format
msgid "Partitioning failed: %s"
msgstr "Particioniranje nije uspjelo: %s"
-#: ../../install_interactive.pm_.c:260
+#: ../../install_interactive.pm_.c:262
msgid "Bringing up the network"
msgstr "Pokrećem mreĆŸu"
-#: ../../install_interactive.pm_.c:265
+#: ../../install_interactive.pm_.c:267
msgid "Bringing down the network"
msgstr "Zaustavljam mreĆŸu"
@@ -4747,12 +4847,12 @@ msgstr ""
"DoĆĄlo je do greĆĄke, ali ne znam kako da je rijeĆĄim fino.\n"
"Nastavite na vlastiti rizik."
-#: ../../install_steps.pm_.c:210
+#: ../../install_steps.pm_.c:211
#, c-format
msgid "Duplicate mount point %s"
msgstr "Dvostruka tačka montiranja %s"
-#: ../../install_steps.pm_.c:379
+#: ../../install_steps.pm_.c:380
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -4764,12 +4864,12 @@ msgstr ""
"Provjerite cdrom na instaliranom računaru koristeći \"rpm -qpl Mandrake/RPMS/"
"*.rpm\"\n"
-#: ../../install_steps.pm_.c:451
+#: ../../install_steps.pm_.c:452
#, c-format
msgid "Welcome to %s"
msgstr "Dobro doĆĄli u %s"
-#: ../../install_steps.pm_.c:530 ../../install_steps.pm_.c:770
+#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:772
msgid "No floppy drive available"
msgstr "Nema pogodne disketne jedinice"
@@ -4799,69 +4899,69 @@ msgstr "Klasa instalacije"
msgid "Please choose one of the following classes of installation:"
msgstr "Molimo izaberite jednu od sljedećih klasa instalacije:"
-#: ../../install_steps_gtk.pm_.c:243 ../../install_steps_interactive.pm_.c:694
+#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:678
msgid "Package Group Selection"
msgstr "Izbor grupe paketa"
-#: ../../install_steps_gtk.pm_.c:276 ../../install_steps_interactive.pm_.c:709
+#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:693
msgid "Individual package selection"
msgstr "Izbor pojedinačnih paketa"
-#: ../../install_steps_gtk.pm_.c:299 ../../install_steps_interactive.pm_.c:633
+#: ../../install_steps_gtk.pm_.c:293 ../../install_steps_interactive.pm_.c:617
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Ukupna veličina: %d / %d MB"
-#: ../../install_steps_gtk.pm_.c:341
+#: ../../install_steps_gtk.pm_.c:335
msgid "Bad package"
msgstr "Neispravan paket"
-#: ../../install_steps_gtk.pm_.c:342
+#: ../../install_steps_gtk.pm_.c:336
#, c-format
msgid "Name: %s\n"
msgstr "Ime: %s\n"
-#: ../../install_steps_gtk.pm_.c:343
+#: ../../install_steps_gtk.pm_.c:337
#, c-format
msgid "Version: %s\n"
msgstr "Verzija: %s\n"
-#: ../../install_steps_gtk.pm_.c:344
+#: ../../install_steps_gtk.pm_.c:338
#, c-format
msgid "Size: %d KB\n"
msgstr "Veličina: %d KB\n"
-#: ../../install_steps_gtk.pm_.c:345
+#: ../../install_steps_gtk.pm_.c:339
#, c-format
msgid "Importance: %s\n"
msgstr "Značaj: %s\n"
-#: ../../install_steps_gtk.pm_.c:367
+#: ../../install_steps_gtk.pm_.c:361
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr "Ne moĆŸete izabrati ovaj paket jer nema dovoljno prostora za njega"
-#: ../../install_steps_gtk.pm_.c:372
+#: ../../install_steps_gtk.pm_.c:366
msgid "The following packages are going to be installed"
msgstr "Sljedeći paketi će biti instalirani"
-#: ../../install_steps_gtk.pm_.c:373
+#: ../../install_steps_gtk.pm_.c:367
msgid "The following packages are going to be removed"
msgstr "Sljedeći paketi će biti uklonjeni"
-#: ../../install_steps_gtk.pm_.c:385
+#: ../../install_steps_gtk.pm_.c:379
msgid "You can't select/unselect this package"
msgstr "Ne moĆŸete izabrati/isključiti ovaj paket"
-#: ../../install_steps_gtk.pm_.c:397
+#: ../../install_steps_gtk.pm_.c:391
msgid "This is a mandatory package, it can't be unselected"
msgstr "Ovo je obavezan paket, ne moĆŸe biti isključen"
-#: ../../install_steps_gtk.pm_.c:399
+#: ../../install_steps_gtk.pm_.c:393
msgid "You can't unselect this package. It is already installed"
msgstr "Ne moĆŸete isključiti ovaj paket. On je već instaliran"
-#: ../../install_steps_gtk.pm_.c:402
+#: ../../install_steps_gtk.pm_.c:396
msgid ""
"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
@@ -4869,74 +4969,74 @@ msgstr ""
"Ovaj paket mora biti unaprijeđen\n"
"Jeste li sigurni da ga ĆŸelite isključiti?"
-#: ../../install_steps_gtk.pm_.c:405
+#: ../../install_steps_gtk.pm_.c:399
msgid "You can't unselect this package. It must be upgraded"
msgstr "Ne moĆŸete isključiti ovaj paket. On mora biti unaprijeđen"
-#: ../../install_steps_gtk.pm_.c:410
+#: ../../install_steps_gtk.pm_.c:404
msgid "Show automatically selected packages"
msgstr "Automatski prikaĆŸi izabrane pakete"
-#: ../../install_steps_gtk.pm_.c:411 ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_gtk.pm_.c:405 ../../install_steps_interactive.pm_.c:255
#: ../../install_steps_interactive.pm_.c:259
-#: ../../standalone/drakbackup_.c:3600
+#: ../../standalone/drakbackup_.c:4257
msgid "Install"
msgstr "Instalacija"
-#: ../../install_steps_gtk.pm_.c:414
+#: ../../install_steps_gtk.pm_.c:408
msgid "Load/Save on floppy"
msgstr "Učitaj/Spasi na disketu"
-#: ../../install_steps_gtk.pm_.c:415
+#: ../../install_steps_gtk.pm_.c:409
msgid "Updating package selection"
msgstr "OsvjeĆŸavam izbor paketa"
-#: ../../install_steps_gtk.pm_.c:420
+#: ../../install_steps_gtk.pm_.c:414
msgid "Minimal install"
msgstr "Minimalna instalacija"
-#: ../../install_steps_gtk.pm_.c:435 ../../install_steps_interactive.pm_.c:538
+#: ../../install_steps_gtk.pm_.c:429 ../../install_steps_interactive.pm_.c:522
msgid "Choose the packages you want to install"
msgstr "Izaberite pakete koje ĆŸelite instalirati"
-#: ../../install_steps_gtk.pm_.c:451 ../../install_steps_interactive.pm_.c:778
+#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:762
msgid "Installing"
msgstr "Instaliram"
-#: ../../install_steps_gtk.pm_.c:457
+#: ../../install_steps_gtk.pm_.c:451
msgid "Estimating"
msgstr "Procjenjujem"
-#: ../../install_steps_gtk.pm_.c:464
+#: ../../install_steps_gtk.pm_.c:458
msgid "Time remaining "
msgstr "Preostalo vremena "
-#: ../../install_steps_gtk.pm_.c:476
+#: ../../install_steps_gtk.pm_.c:470
msgid "Please wait, preparing installation..."
msgstr "Molimo sačekajte, pripremam instalaciju"
-#: ../../install_steps_gtk.pm_.c:560
+#: ../../install_steps_gtk.pm_.c:554
#, c-format
msgid "%d packages"
msgstr "%d paketa"
-#: ../../install_steps_gtk.pm_.c:565
+#: ../../install_steps_gtk.pm_.c:559
#, c-format
msgid "Installing package %s"
msgstr "Instaliram paket %s"
-#: ../../install_steps_gtk.pm_.c:602 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:802
+#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:786
#: ../../standalone/drakautoinst_.c:202
msgid "Accept"
msgstr "Prihvati"
-#: ../../install_steps_gtk.pm_.c:602 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:802
+#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:786
msgid "Refuse"
msgstr "Odbij"
-#: ../../install_steps_gtk.pm_.c:603 ../../install_steps_interactive.pm_.c:803
+#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:787
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4952,17 +5052,17 @@ msgstr ""
"Ako ga nemate, pritisnite Odustani da biste izbjegli instaliranje sa ovog CD-"
"ROMa."
-#: ../../install_steps_gtk.pm_.c:617 ../../install_steps_gtk.pm_.c:621
-#: ../../install_steps_interactive.pm_.c:815
-#: ../../install_steps_interactive.pm_.c:819
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_gtk.pm_.c:615
+#: ../../install_steps_interactive.pm_.c:799
+#: ../../install_steps_interactive.pm_.c:803
msgid "Go on anyway?"
msgstr "Svejedno nastavi?"
-#: ../../install_steps_gtk.pm_.c:617 ../../install_steps_interactive.pm_.c:815
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:799
msgid "There was an error ordering packages:"
msgstr "Doơlo je do greơke pri naručivanju paketa:"
-#: ../../install_steps_gtk.pm_.c:621 ../../install_steps_interactive.pm_.c:819
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:803
msgid "There was an error installing packages:"
msgstr "DoĆĄlo je do greĆĄke kod instaliranja paketa:"
@@ -5281,7 +5381,7 @@ msgid "Are you sure you refuse the licence?"
msgstr ""
#: ../../install_steps_interactive.pm_.c:211
-#: ../../install_steps_interactive.pm_.c:1038
+#: ../../install_steps_interactive.pm_.c:1023
#: ../../standalone/keyboarddrake_.c:31
msgid "Keyboard"
msgstr "Tastatura"
@@ -5329,11 +5429,11 @@ msgstr "Unaprijedi samo pakete"
msgid "Please choose the type of your mouse."
msgstr "Molimo izaberite vrstu vaĆĄeg miĆĄa."
-#: ../../install_steps_interactive.pm_.c:281 ../../standalone/mousedrake_.c:59
+#: ../../install_steps_interactive.pm_.c:281 ../../standalone/mousedrake_.c:60
msgid "Mouse Port"
msgstr "Port miĆĄa"
-#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:61
msgid "Please choose on which serial port your mouse is connected to."
msgstr "Molimo izaberite na kojem serijskom portu je spojen vaĆĄ miĆĄ."
@@ -5365,45 +5465,20 @@ msgstr "PodeĆĄavam IDE"
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:336
+#: ../../install_steps_interactive.pm_.c:338
msgid "No partition available"
msgstr "nema dostupnih particija"
-#: ../../install_steps_interactive.pm_.c:339
+#: ../../install_steps_interactive.pm_.c:341
msgid "Scanning partitions to find mount points"
msgstr "PretraĆŸujem particije da nađem tačke montiranja"
-#: ../../install_steps_interactive.pm_.c:347
+#: ../../install_steps_interactive.pm_.c:349
msgid "Choose the mount points"
msgstr "Izaberite tačke montiranja"
-#: ../../install_steps_interactive.pm_.c:366
-#, c-format
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to not allow DrakX to modify the partition table.\n"
-"(the error is %s)\n"
-"\n"
-"Do you agree to loose all the partitions?\n"
-msgstr ""
-"Ne mogu pročitati vaơu tabelu particija, previơe je oơtećena za mene :(\n"
-"Mogu pokuơati da pobriơem loơe particije (SVI PODACI će biti izgubljeni!).\n"
-"Drugo rjeơenje je da onemogućim DrakX da mijenja tabelu particija.\n"
-"(greĆĄka je %s)\n"
-"\n"
-"SlaĆŸete li se sa gubitkom svih particija?\n"
-
#: ../../install_steps_interactive.pm_.c:379
msgid ""
-"DiskDrake failed to read correctly the partition table.\n"
-"Continue at your own risk!"
-msgstr ""
-"DiskDrake nije uspio ispravno pročitati tabelu particija.\n"
-"Nastavljate na vlastiti rizik!"
-
-#: ../../install_steps_interactive.pm_.c:396
-msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
msgstr ""
@@ -5411,70 +5486,70 @@ msgstr ""
"nastaviti, ali da biste bootali vaĆĄ sistem, morate kreirati bootstrap "
"particiju u DiskDrake-u"
-#: ../../install_steps_interactive.pm_.c:405
+#: ../../install_steps_interactive.pm_.c:388
msgid "No root partition found to perform an upgrade"
msgstr "Nije pronađena nijedna root particija radi unaprjeđivanja"
-#: ../../install_steps_interactive.pm_.c:406
+#: ../../install_steps_interactive.pm_.c:389
msgid "Root Partition"
msgstr "Root particija"
-#: ../../install_steps_interactive.pm_.c:407
+#: ../../install_steps_interactive.pm_.c:390
msgid "What is the root partition (/) of your system?"
msgstr "Ć ta je root particija (/) vaĆĄeg sistema?"
-#: ../../install_steps_interactive.pm_.c:421
+#: ../../install_steps_interactive.pm_.c:404
msgid "You need to reboot for the partition table modifications to take place"
msgstr "Moraćete rebootati da bi izmjene tabele particija stupile na snagu"
-#: ../../install_steps_interactive.pm_.c:445
+#: ../../install_steps_interactive.pm_.c:428
msgid "Choose the partitions you want to format"
msgstr "Izaberite particije koje ĆŸelite formatirati"
-#: ../../install_steps_interactive.pm_.c:446
+#: ../../install_steps_interactive.pm_.c:429
msgid "Check bad blocks?"
msgstr "Provjeri loĆĄe blokove?"
-#: ../../install_steps_interactive.pm_.c:473
+#: ../../install_steps_interactive.pm_.c:456
msgid "Formatting partitions"
msgstr "Formatiram particije"
-#: ../../install_steps_interactive.pm_.c:475
+#: ../../install_steps_interactive.pm_.c:458
#, c-format
msgid "Creating and formatting file %s"
msgstr "Kreiram i formatiram datoteku %s"
-#: ../../install_steps_interactive.pm_.c:480
+#: ../../install_steps_interactive.pm_.c:463
#, c-format
msgid ""
"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
"you can loose data)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:482
+#: ../../install_steps_interactive.pm_.c:465
msgid "Not enough swap space to fulfill installation, please add some"
msgstr ""
"Nemam dovoljno swap prostora da dovrĆĄim instalaciju, molimo dodajte joĆĄ"
-#: ../../install_steps_interactive.pm_.c:489
+#: ../../install_steps_interactive.pm_.c:472
#, fuzzy
msgid "Looking for available packages and rebuilding rpm database..."
msgstr "TraĆŸim dostupne pakete"
-#: ../../install_steps_interactive.pm_.c:490
+#: ../../install_steps_interactive.pm_.c:473
msgid "Looking for available packages..."
msgstr "TraĆŸim dostupne pakete"
-#: ../../install_steps_interactive.pm_.c:493
+#: ../../install_steps_interactive.pm_.c:476
#, fuzzy
msgid "Looking at packages already installed..."
msgstr "Ne moĆŸete isključiti ovaj paket. On je već instaliran"
-#: ../../install_steps_interactive.pm_.c:497
+#: ../../install_steps_interactive.pm_.c:480
msgid "Finding packages to upgrade..."
msgstr "Pronalazim pakete za unaprjeđenje"
-#: ../../install_steps_interactive.pm_.c:515
+#: ../../install_steps_interactive.pm_.c:498
#, c-format
msgid ""
"Your system does not have enough space left for installation or upgrade (%d "
@@ -5483,7 +5558,7 @@ msgstr ""
"Vaơ sistem nema dovoljno preostalog prostora za instalaciju ili unaprjeđenje "
"(%d > %d)"
-#: ../../install_steps_interactive.pm_.c:550
+#: ../../install_steps_interactive.pm_.c:534
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
@@ -5491,35 +5566,35 @@ msgstr ""
"Molimo izaberite učitaj ili spasi izbor paketa na disketu.\n"
"Format je isti kao i diskete koje generiĆĄe auto_install"
-#: ../../install_steps_interactive.pm_.c:553
+#: ../../install_steps_interactive.pm_.c:537
msgid "Load from floppy"
msgstr "Vrati sa diskete"
-#: ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_interactive.pm_.c:539
msgid "Loading from floppy"
msgstr "Vraćam sa diskete"
-#: ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_interactive.pm_.c:539
msgid "Package selection"
msgstr "Izbor paketa"
-#: ../../install_steps_interactive.pm_.c:560
+#: ../../install_steps_interactive.pm_.c:544
msgid "Insert a floppy containing package selection"
msgstr "Ubacite disketu koja sadrĆŸi izbor paketa"
-#: ../../install_steps_interactive.pm_.c:572
+#: ../../install_steps_interactive.pm_.c:556
msgid "Save on floppy"
msgstr "Spasi na disketu"
-#: ../../install_steps_interactive.pm_.c:646
+#: ../../install_steps_interactive.pm_.c:630
msgid "Selected size is larger than available space"
msgstr "Izabrana veličina je veća od slobodnog prostora"
-#: ../../install_steps_interactive.pm_.c:660
+#: ../../install_steps_interactive.pm_.c:644
msgid "Type of install"
msgstr "Vrsta instalacije"
-#: ../../install_steps_interactive.pm_.c:661
+#: ../../install_steps_interactive.pm_.c:645
#, fuzzy
msgid ""
"You haven't selected any group of packages.\n"
@@ -5528,19 +5603,19 @@ msgstr ""
"Niste izabrali nijednu grupu paketa\n"
"Molimo izaberite minimalnu instalaciju koju ĆŸelite"
-#: ../../install_steps_interactive.pm_.c:664
+#: ../../install_steps_interactive.pm_.c:648
msgid "With X"
msgstr "Sa X-om"
-#: ../../install_steps_interactive.pm_.c:666
+#: ../../install_steps_interactive.pm_.c:650
msgid "With basic documentation (recommended!)"
msgstr "Sa osnovnom dokumentacijom (preporučeno)"
-#: ../../install_steps_interactive.pm_.c:667
+#: ../../install_steps_interactive.pm_.c:651
msgid "Truly minimal install (especially no urpmi)"
msgstr "Stvarno minimalna instalacija (posebno bez urpmi)"
-#: ../../install_steps_interactive.pm_.c:752
+#: ../../install_steps_interactive.pm_.c:736
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -5550,16 +5625,16 @@ msgstr ""
"Ako nemate nijedan od ovih CDova, kliknite na Odustani.\n"
"Ako nedostaju samo neki CDovi, isključite ih, zatim kliknite na Ok."
-#: ../../install_steps_interactive.pm_.c:757
+#: ../../install_steps_interactive.pm_.c:741
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "CD-ROM pod oznakom \"%s\""
-#: ../../install_steps_interactive.pm_.c:778
+#: ../../install_steps_interactive.pm_.c:762
msgid "Preparing installation"
msgstr "Pripremam instalaciju"
-#: ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:771
#, c-format
msgid ""
"Installing package %s\n"
@@ -5568,21 +5643,21 @@ msgstr ""
"Instaliram paket %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:833
+#: ../../install_steps_interactive.pm_.c:817
msgid "Post-install configuration"
msgstr "Post-instalacijsko podeĆĄavanje"
-#: ../../install_steps_interactive.pm_.c:839
+#: ../../install_steps_interactive.pm_.c:823
#, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Molimo ubacite boot disketu koja je upotrebljena u jedinicu %s"
-#: ../../install_steps_interactive.pm_.c:845
+#: ../../install_steps_interactive.pm_.c:829
#, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Molimo ubacite disketu Update Modula u jedinicu %s"
-#: ../../install_steps_interactive.pm_.c:865
+#: ../../install_steps_interactive.pm_.c:849
msgid ""
"You now have the opportunity to download encryption software.\n"
"\n"
@@ -5656,7 +5731,7 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:904
+#: ../../install_steps_interactive.pm_.c:888
#, fuzzy
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
@@ -5676,160 +5751,160 @@ msgstr ""
"\n"
"Da li ĆŸelite instalirati unaprjeđenja ?"
-#: ../../install_steps_interactive.pm_.c:919
+#: ../../install_steps_interactive.pm_.c:903
msgid ""
"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr ""
"Kontaktiram Mandrake Linux web stranicu da bih saznao listu dostupnih mirrora"
-#: ../../install_steps_interactive.pm_.c:924
+#: ../../install_steps_interactive.pm_.c:908
msgid "Choose a mirror from which to get the packages"
msgstr "Izaberite mirror sa kojeg će biti dobavljeni paketi"
-#: ../../install_steps_interactive.pm_.c:933
+#: ../../install_steps_interactive.pm_.c:917
msgid "Contacting the mirror to get the list of available packages..."
msgstr "Kontaktiram mirror da bih saznao listu dostupnih paketa"
-#: ../../install_steps_interactive.pm_.c:960
+#: ../../install_steps_interactive.pm_.c:945
msgid "Which is your timezone?"
msgstr "Koja je vaĆĄa vremenska zona?"
-#: ../../install_steps_interactive.pm_.c:965
+#: ../../install_steps_interactive.pm_.c:950
msgid "Hardware clock set to GMT"
msgstr "Hardverski sat podeĆĄen na GMT"
-#: ../../install_steps_interactive.pm_.c:966
+#: ../../install_steps_interactive.pm_.c:951
msgid "Automatic time synchronization (using NTP)"
msgstr "Automatska sinhronizacija vremena (koristeći NTP)"
-#: ../../install_steps_interactive.pm_.c:973
+#: ../../install_steps_interactive.pm_.c:958
msgid "NTP Server"
msgstr "NTP server"
-#: ../../install_steps_interactive.pm_.c:1007
-#: ../../install_steps_interactive.pm_.c:1015
+#: ../../install_steps_interactive.pm_.c:992
+#: ../../install_steps_interactive.pm_.c:1000
msgid "Remote CUPS server"
msgstr "Udaljeni CUPS server"
-#: ../../install_steps_interactive.pm_.c:1008
+#: ../../install_steps_interactive.pm_.c:993
msgid "No printer"
msgstr "Nema ơtampača"
-#: ../../install_steps_interactive.pm_.c:1025
+#: ../../install_steps_interactive.pm_.c:1010
msgid "Do you have an ISA sound card?"
msgstr "Imate li ISA zvučnu karticu?"
-#: ../../install_steps_interactive.pm_.c:1027
+#: ../../install_steps_interactive.pm_.c:1012
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
"Pokrenite \"sndconfig\" poslije instalacije kako biste podesili vaơu zvučnu "
"karticu"
-#: ../../install_steps_interactive.pm_.c:1029
+#: ../../install_steps_interactive.pm_.c:1014
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
"Nije otkrivena zvučna kartica. Probajte \"harddrake\" poslije instalacije"
-#: ../../install_steps_interactive.pm_.c:1034 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1019 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Ukratko"
-#: ../../install_steps_interactive.pm_.c:1037
+#: ../../install_steps_interactive.pm_.c:1022
msgid "Mouse"
msgstr "MiĆĄ"
-#: ../../install_steps_interactive.pm_.c:1039
+#: ../../install_steps_interactive.pm_.c:1024
msgid "Timezone"
msgstr "Vremenska zona"
-#: ../../install_steps_interactive.pm_.c:1040 ../../printerdrake.pm_.c:2728
-#: ../../printerdrake.pm_.c:2814
+#: ../../install_steps_interactive.pm_.c:1025 ../../printerdrake.pm_.c:2937
+#: ../../printerdrake.pm_.c:3026
msgid "Printer"
msgstr "Ơtampač"
-#: ../../install_steps_interactive.pm_.c:1042
+#: ../../install_steps_interactive.pm_.c:1027
msgid "ISDN card"
msgstr "ISDN kartica"
-#: ../../install_steps_interactive.pm_.c:1045
-#: ../../install_steps_interactive.pm_.c:1047
+#: ../../install_steps_interactive.pm_.c:1030
+#: ../../install_steps_interactive.pm_.c:1032
msgid "Sound card"
msgstr "Zvučna kartica"
-#: ../../install_steps_interactive.pm_.c:1049
+#: ../../install_steps_interactive.pm_.c:1034
msgid "TV card"
msgstr "TV kartica"
-#: ../../install_steps_interactive.pm_.c:1089
-#: ../../install_steps_interactive.pm_.c:1114
-#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1074
+#: ../../install_steps_interactive.pm_.c:1099
+#: ../../install_steps_interactive.pm_.c:1103
msgid "LDAP"
msgstr "LDAP"
-#: ../../install_steps_interactive.pm_.c:1090
-#: ../../install_steps_interactive.pm_.c:1114
-#: ../../install_steps_interactive.pm_.c:1127
+#: ../../install_steps_interactive.pm_.c:1075
+#: ../../install_steps_interactive.pm_.c:1099
+#: ../../install_steps_interactive.pm_.c:1112
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1091
-#: ../../install_steps_interactive.pm_.c:1114
-#: ../../install_steps_interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1141
+#: ../../install_steps_interactive.pm_.c:1076
+#: ../../install_steps_interactive.pm_.c:1099
+#: ../../install_steps_interactive.pm_.c:1120
+#: ../../install_steps_interactive.pm_.c:1126
#, fuzzy
msgid "Windows Domain"
msgstr "Preuzmi fontove iz Windowsa"
-#: ../../install_steps_interactive.pm_.c:1092
-#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1077
+#: ../../install_steps_interactive.pm_.c:1099
msgid "Local files"
msgstr "Lokalne datoteke"
-#: ../../install_steps_interactive.pm_.c:1101
-#: ../../install_steps_interactive.pm_.c:1102 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1086
+#: ../../install_steps_interactive.pm_.c:1087 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Podesite root ĆĄifru"
-#: ../../install_steps_interactive.pm_.c:1103
+#: ../../install_steps_interactive.pm_.c:1088
msgid "No password"
msgstr "Bez ĆĄifre"
-#: ../../install_steps_interactive.pm_.c:1108
+#: ../../install_steps_interactive.pm_.c:1093
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr ""
"Ova ĆĄifra je previĆĄe jednostavna (mora biti duga najmanje %d karaktera)"
-#: ../../install_steps_interactive.pm_.c:1114 ../../network/modem.pm_.c:49
+#: ../../install_steps_interactive.pm_.c:1099 ../../network/modem.pm_.c:49
#: ../../standalone/drakconnect_.c:625 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Autentikacija"
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1107
msgid "Authentication LDAP"
msgstr "Autentikacijski LDAP"
-#: ../../install_steps_interactive.pm_.c:1123
+#: ../../install_steps_interactive.pm_.c:1108
msgid "LDAP Base dn"
msgstr "LDAP Base dn"
-#: ../../install_steps_interactive.pm_.c:1124
+#: ../../install_steps_interactive.pm_.c:1109
msgid "LDAP Server"
msgstr "LDAP Server"
-#: ../../install_steps_interactive.pm_.c:1130
+#: ../../install_steps_interactive.pm_.c:1115
msgid "Authentication NIS"
msgstr "Autentifikacija NIS"
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1116
msgid "NIS Domain"
msgstr "NIS domen"
-#: ../../install_steps_interactive.pm_.c:1132
+#: ../../install_steps_interactive.pm_.c:1117
msgid "NIS Server"
msgstr "NIS server"
-#: ../../install_steps_interactive.pm_.c:1138
+#: ../../install_steps_interactive.pm_.c:1123
msgid ""
"For this to work for a W2K PDC, you will probably need to have the admin "
"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
@@ -5845,21 +5920,21 @@ msgid ""
"good."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1140
+#: ../../install_steps_interactive.pm_.c:1125
#, fuzzy
msgid "Authentication Windows Domain"
msgstr "Autentikacijski LDAP"
-#: ../../install_steps_interactive.pm_.c:1142
+#: ../../install_steps_interactive.pm_.c:1127
#, fuzzy
msgid "Domain Admin User Name"
msgstr "Ime domena"
-#: ../../install_steps_interactive.pm_.c:1143
+#: ../../install_steps_interactive.pm_.c:1128
msgid "Domain Admin Password"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1178
+#: ../../install_steps_interactive.pm_.c:1163
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
"depending on the normal bootloader. This is useful if you don't want to "
@@ -5891,19 +5966,19 @@ msgstr ""
"first\n"
"drive and press \"Ok\"."
-#: ../../install_steps_interactive.pm_.c:1194
+#: ../../install_steps_interactive.pm_.c:1179
msgid "First floppy drive"
msgstr "Prva disketna jedinica"
-#: ../../install_steps_interactive.pm_.c:1195
+#: ../../install_steps_interactive.pm_.c:1180
msgid "Second floppy drive"
msgstr "Druga disketna jedinica"
-#: ../../install_steps_interactive.pm_.c:1196 ../../printerdrake.pm_.c:2277
+#: ../../install_steps_interactive.pm_.c:1181 ../../printerdrake.pm_.c:2470
msgid "Skip"
msgstr "Preskoči"
-#: ../../install_steps_interactive.pm_.c:1201
+#: ../../install_steps_interactive.pm_.c:1186
#, fuzzy, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5929,7 +6004,7 @@ msgstr ""
"system\n"
"failures. Would you like to create a bootdisk for your system?"
-#: ../../install_steps_interactive.pm_.c:1207
+#: ../../install_steps_interactive.pm_.c:1192
msgid ""
"\n"
"\n"
@@ -5943,29 +6018,29 @@ msgstr ""
"pravljenje boot diskete na 1.44 Mb disketi vjerovatno neće\n"
"raditi, poĆĄto XFS traĆŸi veoma velik drajver)."
-#: ../../install_steps_interactive.pm_.c:1215
+#: ../../install_steps_interactive.pm_.c:1200
msgid "Sorry, no floppy drive available"
msgstr "Ćœao mi je, nema dostupne disketne jedinice"
-#: ../../install_steps_interactive.pm_.c:1219
+#: ../../install_steps_interactive.pm_.c:1204
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr ""
"Izaberite disketnu jedinicu koju ĆŸelite koristiti da napravite boot disketu"
-#: ../../install_steps_interactive.pm_.c:1223
+#: ../../install_steps_interactive.pm_.c:1208
#, c-format
msgid "Insert a floppy in %s"
msgstr "Ubacite disketu u %s"
-#: ../../install_steps_interactive.pm_.c:1226
+#: ../../install_steps_interactive.pm_.c:1211
msgid "Creating bootdisk..."
msgstr "Pravim boot disketu"
-#: ../../install_steps_interactive.pm_.c:1233
+#: ../../install_steps_interactive.pm_.c:1218
msgid "Preparing bootloader..."
msgstr "Pripremam bootloader"
-#: ../../install_steps_interactive.pm_.c:1244
+#: ../../install_steps_interactive.pm_.c:1229
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5977,11 +6052,11 @@ msgstr ""
"Instalacija će se nastaviti, ali ćete\n"
" morati koristiti BootX za bootanje vaơeg računara"
-#: ../../install_steps_interactive.pm_.c:1250
+#: ../../install_steps_interactive.pm_.c:1235
msgid "Do you want to use aboot?"
msgstr "Da li ĆŸelite koristiti aboot?"
-#: ../../install_steps_interactive.pm_.c:1253
+#: ../../install_steps_interactive.pm_.c:1238
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -5989,15 +6064,15 @@ msgstr ""
"GreĆĄka u instaliranju aboota, \n"
"da li da pokuơam nasilnu instalaciju čak i ako to uniơti prvu particiju?"
-#: ../../install_steps_interactive.pm_.c:1260
+#: ../../install_steps_interactive.pm_.c:1245
msgid "Installing bootloader"
msgstr "Instaliram bootloadera"
-#: ../../install_steps_interactive.pm_.c:1266
+#: ../../install_steps_interactive.pm_.c:1251
msgid "Installation of bootloader failed. The following error occured:"
msgstr "Instalacija bootloadera nije uspjela. Doơlo je do sljedeće greơke:"
-#: ../../install_steps_interactive.pm_.c:1274
+#: ../../install_steps_interactive.pm_.c:1259
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -6015,17 +6090,17 @@ msgstr ""
" Zatim kucajte: shut-down\n"
"Prilikom idućeg boota biste trebali vidjeti upit bootloadera."
-#: ../../install_steps_interactive.pm_.c:1308
+#: ../../install_steps_interactive.pm_.c:1293
#: ../../standalone/drakautoinst_.c:79
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Ubacite praznu disketu u jedinicu %s"
-#: ../../install_steps_interactive.pm_.c:1312
+#: ../../install_steps_interactive.pm_.c:1297
msgid "Creating auto install floppy..."
msgstr "Pravim auto instalacijsku disketu"
-#: ../../install_steps_interactive.pm_.c:1323
+#: ../../install_steps_interactive.pm_.c:1308
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -6035,7 +6110,7 @@ msgstr ""
"\n"
"Da li zaista ĆŸelite izaći sada?"
-#: ../../install_steps_interactive.pm_.c:1334
+#: ../../install_steps_interactive.pm_.c:1319
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
@@ -6068,16 +6143,16 @@ msgstr ""
"Informacije o podeĆĄavanju vaĆĄeg sistema su dostupne u poglavlju\n"
"\"nakon instalacije\" vaơeg Zvaničnog Mandrake Linux priručnika za upotrebu."
-#: ../../install_steps_interactive.pm_.c:1347
+#: ../../install_steps_interactive.pm_.c:1332
#, fuzzy
msgid "http://www.mandrakelinux.com/en/90errata.php3"
msgstr "http://www.mandrakesoft.com/sales/contact"
-#: ../../install_steps_interactive.pm_.c:1352
+#: ../../install_steps_interactive.pm_.c:1337
msgid "Generate auto install floppy"
msgstr "Napravi auto instalacijsku disketu"
-#: ../../install_steps_interactive.pm_.c:1354
+#: ../../install_steps_interactive.pm_.c:1339
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -6091,15 +6166,15 @@ msgstr ""
"\n"
"MoĆŸda ćete ĆŸeljeti radije ponoviti instalaciju.\n"
-#: ../../install_steps_interactive.pm_.c:1359
+#: ../../install_steps_interactive.pm_.c:1344
msgid "Automated"
msgstr "Automatizovano"
-#: ../../install_steps_interactive.pm_.c:1359
+#: ../../install_steps_interactive.pm_.c:1344
msgid "Replay"
msgstr "Ponovi"
-#: ../../install_steps_interactive.pm_.c:1362
+#: ../../install_steps_interactive.pm_.c:1347
msgid "Save packages selection"
msgstr "Spasi izbor paketa"
@@ -6108,7 +6183,8 @@ msgstr "Spasi izbor paketa"
msgid "Mandrake Linux Installation %s"
msgstr "Mandrake Linux instalacija %s"
-#: ../../install_steps_newt.pm_.c:34
+#. -PO This string must fit in a 80-char wide text screen
+#: ../../install_steps_newt.pm_.c:35
msgid ""
" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
msgstr ""
@@ -6126,22 +6202,22 @@ msgstr "nedostaje consolehelper"
msgid "Choose a file"
msgstr "Izaberi datoteku"
-#: ../../interactive.pm_.c:317
+#: ../../interactive.pm_.c:320
msgid "Advanced"
msgstr "Napredno"
-#: ../../interactive.pm_.c:318
+#: ../../interactive.pm_.c:321
msgid "Basic"
msgstr "Osnovno"
-#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:155
-#: ../../printerdrake.pm_.c:1990
+#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:158
+#: ../../printerdrake.pm_.c:2124
msgid "<- Previous"
msgstr "<- Prethodni"
#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
-#: ../../standalone/drakbackup_.c:3464 ../../standalone/drakbackup_.c:3491
-#: ../../standalone/drakbackup_.c:3517
+#: ../../standalone/drakbackup_.c:4112 ../../standalone/drakbackup_.c:4139
+#: ../../standalone/drakbackup_.c:4169 ../../standalone/drakbackup_.c:4195
msgid "Next"
msgstr "Sljedeći"
@@ -6214,375 +6290,375 @@ msgstr ""
msgid "Re-submit"
msgstr "Ponovo poĆĄalji"
-#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:152 ../../keyboard.pm_.c:187
msgid "Czech (QWERTZ)"
msgstr "Čeơka (QWERTZ)"
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:153 ../../keyboard.pm_.c:189
msgid "German"
msgstr "Njemačka"
-#: ../../keyboard.pm_.c:175
+#: ../../keyboard.pm_.c:154
msgid "Dvorak"
msgstr "Dvorak"
-#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:218
+#: ../../keyboard.pm_.c:155 ../../keyboard.pm_.c:197
msgid "Spanish"
msgstr "Ć panska"
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:156 ../../keyboard.pm_.c:198
msgid "Finnish"
msgstr "Finska"
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:220
+#: ../../keyboard.pm_.c:157 ../../keyboard.pm_.c:199
msgid "French"
msgstr "Francuska"
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:158 ../../keyboard.pm_.c:231
msgid "Norwegian"
msgstr "NorveĆĄka"
-#: ../../keyboard.pm_.c:180
+#: ../../keyboard.pm_.c:159
msgid "Polish"
msgstr "Poljska"
-#: ../../keyboard.pm_.c:181 ../../keyboard.pm_.c:260
+#: ../../keyboard.pm_.c:160 ../../keyboard.pm_.c:239
msgid "Russian"
msgstr "Ruska"
-#: ../../keyboard.pm_.c:183 ../../keyboard.pm_.c:262
+#: ../../keyboard.pm_.c:162 ../../keyboard.pm_.c:241
msgid "Swedish"
msgstr "Ć vedska"
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:278
+#: ../../keyboard.pm_.c:163 ../../keyboard.pm_.c:257
msgid "UK keyboard"
msgstr "UK tastatura"
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:279
+#: ../../keyboard.pm_.c:164 ../../keyboard.pm_.c:258
msgid "US keyboard"
msgstr "US tastatura"
-#: ../../keyboard.pm_.c:187
+#: ../../keyboard.pm_.c:166
msgid "Albanian"
msgstr "Albanska"
-#: ../../keyboard.pm_.c:188
+#: ../../keyboard.pm_.c:167
msgid "Armenian (old)"
msgstr "Armenska (stara)"
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:168
msgid "Armenian (typewriter)"
msgstr "Armenska (pisaća maơina)"
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:169
msgid "Armenian (phonetic)"
msgstr "Armenska (fonetska)"
-#: ../../keyboard.pm_.c:195
+#: ../../keyboard.pm_.c:174
msgid "Azerbaidjani (latin)"
msgstr "AzerbejdĆŸanska (latinica)"
-#: ../../keyboard.pm_.c:197
+#: ../../keyboard.pm_.c:176
msgid "Belgian"
msgstr "Belgijska"
-#: ../../keyboard.pm_.c:198
+#: ../../keyboard.pm_.c:177
#, fuzzy
msgid "Bengali"
msgstr "uključi"
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:178
msgid "Bulgarian (phonetic)"
msgstr "Bugarska (fonetska)"
-#: ../../keyboard.pm_.c:200
+#: ../../keyboard.pm_.c:179
msgid "Bulgarian (BDS)"
msgstr "Bugarska (BDS)"
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:180
msgid "Brazilian (ABNT-2)"
msgstr "Brazilska (ABNT-2)"
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:183
#, fuzzy
msgid "Bosnian"
msgstr "Estonska"
-#: ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:184
msgid "Belarusian"
msgstr "Bjeloruska"
-#: ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:185
msgid "Swiss (German layout)"
msgstr "Ơvicarska (Njemački izgled)"
-#: ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:186
msgid "Swiss (French layout)"
msgstr "Ć vicarska (Francuski izgled)"
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:188
msgid "Czech (QWERTY)"
msgstr "Čeơka (QWERTY)"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:190
msgid "German (no dead keys)"
msgstr "Njemačka (bez mrtvih tipki)"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:191
msgid "Devanagari"
msgstr ""
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:192
msgid "Danish"
msgstr "Danska"
-#: ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:193
msgid "Dvorak (US)"
msgstr "Dvorak (US)"
-#: ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:194
msgid "Dvorak (Norwegian)"
msgstr "Dvorak (NorveĆĄka)"
-#: ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:195
msgid "Dvorak (Swedish)"
msgstr "Dvorak (Ć vedska)"
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:196
msgid "Estonian"
msgstr "Estonska"
-#: ../../keyboard.pm_.c:221
+#: ../../keyboard.pm_.c:200
msgid "Georgian (\"Russian\" layout)"
msgstr "Gruzijska (\"Ruski\" izgled)"
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:201
msgid "Georgian (\"Latin\" layout)"
msgstr "Gruzijska (\"Latinični\" izgled)"
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:202
msgid "Greek"
msgstr "Grčka"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:203
msgid "Gujarati"
msgstr ""
-#: ../../keyboard.pm_.c:225
+#: ../../keyboard.pm_.c:204
msgid "Gurmukhi"
msgstr ""
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:205
msgid "Hungarian"
msgstr "Mađarska"
-#: ../../keyboard.pm_.c:227
+#: ../../keyboard.pm_.c:206
msgid "Croatian"
msgstr "Hrvatska"
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:207
msgid "Israeli"
msgstr "Izraelska"
-#: ../../keyboard.pm_.c:229
+#: ../../keyboard.pm_.c:208
msgid "Israeli (Phonetic)"
msgstr "Izraelska (Fonetska)"
-#: ../../keyboard.pm_.c:230
+#: ../../keyboard.pm_.c:209
msgid "Iranian"
msgstr "Iranska"
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:210
msgid "Icelandic"
msgstr "Islandska"
-#: ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:211
msgid "Italian"
msgstr "Italijanska"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:212
msgid "Inuktitut"
msgstr ""
-#: ../../keyboard.pm_.c:234
+#: ../../keyboard.pm_.c:213
msgid "Japanese 106 keys"
msgstr "Japanska 106 tipki"
-#: ../../keyboard.pm_.c:237
+#: ../../keyboard.pm_.c:216
msgid "Korean keyboard"
msgstr "Korejanska tastatura"
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:217
msgid "Latin American"
msgstr "Latino-Američka"
-#: ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:218
#, fuzzy
msgid "Laotian"
msgstr "Latvijska"
-#: ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:219
msgid "Lithuanian AZERTY (old)"
msgstr "Litvanska AZERTY (stara)"
-#: ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:221
msgid "Lithuanian AZERTY (new)"
msgstr "Litvanska AYERTY (nova)"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:222
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Litvanska \"red brojeva\" QWERTY"
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:223
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "Litvanska \"fonetska\" QWERTY"
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:224
msgid "Latvian"
msgstr "Latvijska"
-#: ../../keyboard.pm_.c:246
+#: ../../keyboard.pm_.c:225
msgid "Macedonian"
msgstr "Makedonska"
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:226
msgid "Myanmar (Burmese)"
msgstr ""
-#: ../../keyboard.pm_.c:248
+#: ../../keyboard.pm_.c:227
#, fuzzy
msgid "Mongolian (cyrillic)"
msgstr "Srpska (ćirilica)"
-#: ../../keyboard.pm_.c:249
+#: ../../keyboard.pm_.c:228
msgid "Maltese (UK)"
msgstr ""
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:229
msgid "Maltese (US)"
msgstr ""
-#: ../../keyboard.pm_.c:251
+#: ../../keyboard.pm_.c:230
msgid "Dutch"
msgstr "Holandska"
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:232
msgid "Polish (qwerty layout)"
msgstr "Poljska (qwerty)"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:233
msgid "Polish (qwertz layout)"
msgstr "Poljska (qwertz)"
-#: ../../keyboard.pm_.c:255
+#: ../../keyboard.pm_.c:234
msgid "Portuguese"
msgstr "Portugalska"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:235
msgid "Canadian (Quebec)"
msgstr "Kanadska (Kvebek)"
-#: ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:237
msgid "Romanian (qwertz)"
msgstr "Rumunska (qwertz)"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:238
msgid "Romanian (qwerty)"
msgstr "Rumunska (qwerty)"
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:240
msgid "Russian (Yawerty)"
msgstr "Ruska (Yawerty)"
-#: ../../keyboard.pm_.c:263
+#: ../../keyboard.pm_.c:242
msgid "Slovenian"
msgstr "Slovenačka"
-#: ../../keyboard.pm_.c:264
+#: ../../keyboard.pm_.c:243
msgid "Slovakian (QWERTZ)"
msgstr "Slovačka (QWERTZ)"
-#: ../../keyboard.pm_.c:265
+#: ../../keyboard.pm_.c:244
msgid "Slovakian (QWERTY)"
msgstr "Slovačka (QWERTY)"
-#: ../../keyboard.pm_.c:267
+#: ../../keyboard.pm_.c:246
msgid "Serbian (cyrillic)"
msgstr "Srpska (ćirilica)"
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:248
msgid "Tamil (Unicode)"
msgstr "Tamilska (Unicode)"
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:249
msgid "Tamil (TSCII)"
msgstr "Tamilska (TSCII)"
-#: ../../keyboard.pm_.c:271
+#: ../../keyboard.pm_.c:250
msgid "Thai keyboard"
msgstr "Tajlandska tastatura"
-#: ../../keyboard.pm_.c:273
+#: ../../keyboard.pm_.c:252
msgid "Tajik keyboard"
msgstr "TadĆŸička tastatura"
-#: ../../keyboard.pm_.c:274
+#: ../../keyboard.pm_.c:253
msgid "Turkish (traditional \"F\" model)"
msgstr "Turska (tradicionalni \"F\" model)"
-#: ../../keyboard.pm_.c:275
+#: ../../keyboard.pm_.c:254
msgid "Turkish (modern \"Q\" model)"
msgstr "Turska (moderni \"Q\" model)"
-#: ../../keyboard.pm_.c:277
+#: ../../keyboard.pm_.c:256
msgid "Ukrainian"
msgstr "Ukrajinska"
-#: ../../keyboard.pm_.c:280
+#: ../../keyboard.pm_.c:259
msgid "US keyboard (international)"
msgstr "US tastatura (međunarodna)"
-#: ../../keyboard.pm_.c:281
+#: ../../keyboard.pm_.c:260
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "Vjetnamska \"red brojeva\" QWERTY"
-#: ../../keyboard.pm_.c:282
+#: ../../keyboard.pm_.c:261
msgid "Yugoslavian (latin)"
msgstr "Jugoslavenska (latinično)"
-#: ../../keyboard.pm_.c:289
+#: ../../keyboard.pm_.c:268
msgid "Right Alt key"
msgstr "Desna Alt tipka"
-#: ../../keyboard.pm_.c:290
+#: ../../keyboard.pm_.c:269
msgid "Both Shift keys simultaneously"
msgstr "Obje Shift tipke istovremeno"
-#: ../../keyboard.pm_.c:291
+#: ../../keyboard.pm_.c:270
msgid "Control and Shift keys simultaneously"
msgstr "Control i Shift tipka istovremeno"
-#: ../../keyboard.pm_.c:292
+#: ../../keyboard.pm_.c:271
msgid "CapsLock key"
msgstr "CapsLock tipka"
-#: ../../keyboard.pm_.c:293
+#: ../../keyboard.pm_.c:272
msgid "Ctrl and Alt keys simultaneously"
msgstr "Ctrl i Alt tipke istovremeno"
-#: ../../keyboard.pm_.c:294
+#: ../../keyboard.pm_.c:273
msgid "Alt and Shift keys simultaneously"
msgstr "Alt i Shift tipke istovremeno"
-#: ../../keyboard.pm_.c:295
+#: ../../keyboard.pm_.c:274
msgid "\"Menu\" key"
msgstr "\"Meni\" tipka"
-#: ../../keyboard.pm_.c:296
+#: ../../keyboard.pm_.c:275
msgid "Left \"Windows\" key"
msgstr "Lijeva \"Windows\" tipka"
-#: ../../keyboard.pm_.c:297
+#: ../../keyboard.pm_.c:276
msgid "Right \"Windows\" key"
msgstr "Desna \"Windows\" tipka"
@@ -6641,11 +6717,11 @@ msgstr "Opơti PS2 Miơ sa kotačem"
msgid "GlidePoint"
msgstr "GlidePoint"
-#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:63
+#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:65
msgid "Kensington Thinking Mouse"
msgstr "Kensington Thinking Mouse"
-#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:59
+#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:61
msgid "Genius NetMouse"
msgstr "Genius NetMouse"
@@ -6653,115 +6729,125 @@ msgstr "Genius NetMouse"
msgid "Genius NetScroll"
msgstr "Genius NetScroll"
-#: ../../mouse.pm_.c:43 ../../mouse.pm_.c:68
+#: ../../mouse.pm_.c:39 ../../mouse.pm_.c:48
+#, fuzzy
+msgid "Microsoft Explorer"
+msgstr "Microsoft IntelliMouse"
+
+#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:70
msgid "1 button"
msgstr "1 dugme"
-#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:51
+#: ../../mouse.pm_.c:45 ../../mouse.pm_.c:53
msgid "Generic 2 Button Mouse"
msgstr "OpĆĄti miĆĄ sa 2 dugmeta"
-#: ../../mouse.pm_.c:46
+#: ../../mouse.pm_.c:47
msgid "Wheel"
msgstr "Kotač"
-#: ../../mouse.pm_.c:49
+#: ../../mouse.pm_.c:51
msgid "serial"
msgstr "serijski"
-#: ../../mouse.pm_.c:52
+#: ../../mouse.pm_.c:54
msgid "Generic 3 Button Mouse"
msgstr "OpĆĄti miĆĄ sa 3 dugmeta"
-#: ../../mouse.pm_.c:53
+#: ../../mouse.pm_.c:55
msgid "Microsoft IntelliMouse"
msgstr "Microsoft IntelliMouse"
-#: ../../mouse.pm_.c:54
+#: ../../mouse.pm_.c:56
msgid "Logitech MouseMan"
msgstr "Logitech MouseMan"
-#: ../../mouse.pm_.c:55
+#: ../../mouse.pm_.c:57
msgid "Mouse Systems"
msgstr "Mouse Systems"
-#: ../../mouse.pm_.c:57
+#: ../../mouse.pm_.c:59
msgid "Logitech CC Series"
msgstr "Logitech CC Series"
-#: ../../mouse.pm_.c:58
+#: ../../mouse.pm_.c:60
msgid "Logitech MouseMan+/FirstMouse+"
msgstr "Logitech MouseMan+/FirstMouse+"
-#: ../../mouse.pm_.c:60
+#: ../../mouse.pm_.c:62
msgid "MM Series"
msgstr "MM Series"
-#: ../../mouse.pm_.c:61
+#: ../../mouse.pm_.c:63
msgid "MM HitTablet"
msgstr "MM HitTablet"
-#: ../../mouse.pm_.c:62
+#: ../../mouse.pm_.c:64
msgid "Logitech Mouse (serial, old C7 type)"
msgstr "Logitech Mouse (serijski, stari C7 tip)"
-#: ../../mouse.pm_.c:66
+#: ../../mouse.pm_.c:68
msgid "busmouse"
msgstr "busmouse"
-#: ../../mouse.pm_.c:69
+#: ../../mouse.pm_.c:71
msgid "2 buttons"
msgstr "2 dugmeta"
-#: ../../mouse.pm_.c:70
+#: ../../mouse.pm_.c:72
msgid "3 buttons"
msgstr "3 dugmeta"
-#: ../../mouse.pm_.c:73
+#: ../../mouse.pm_.c:75
msgid "none"
msgstr "nijedan"
-#: ../../mouse.pm_.c:75
+#: ../../mouse.pm_.c:77
msgid "No mouse"
msgstr "Bez miĆĄa"
-#: ../../mouse.pm_.c:445
+#: ../../mouse.pm_.c:482
msgid "Please test the mouse"
msgstr "Molimo testirajte miĆĄ"
-#: ../../mouse.pm_.c:446
+#: ../../mouse.pm_.c:483
msgid "To activate the mouse,"
msgstr "Da biste aktivirali miĆĄa,"
-#: ../../mouse.pm_.c:447
+#: ../../mouse.pm_.c:484
msgid "MOVE YOUR WHEEL!"
msgstr "POMJERITE VAƠ KOTAČ!"
-#: ../../my_gtk.pm_.c:156
+#: ../../my_gtk.pm_.c:64
+#, fuzzy
+msgid "-adobe-utopia-regular-r-*-*-25-*-*-*-p-*-iso8859-*,*-r-*"
+msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-2,*-r-*"
+
+#: ../../my_gtk.pm_.c:159
msgid "Finish"
msgstr "Kraj"
-#: ../../my_gtk.pm_.c:156 ../../printerdrake.pm_.c:1992
+#: ../../my_gtk.pm_.c:159 ../../printerdrake.pm_.c:2126
msgid "Next ->"
msgstr "Sljedeći ->"
-#: ../../my_gtk.pm_.c:284
+#: ../../my_gtk.pm_.c:287
msgid "Is this correct?"
msgstr "Da li je ovo ispravno?"
-#: ../../my_gtk.pm_.c:356 ../../services.pm_.c:222
+#: ../../my_gtk.pm_.c:359 ../../services.pm_.c:222
msgid "Info"
msgstr "Info"
-#: ../../my_gtk.pm_.c:377
+#: ../../my_gtk.pm_.c:380
msgid "Expand Tree"
msgstr "ProĆĄiri stablo"
-#: ../../my_gtk.pm_.c:378
+#: ../../my_gtk.pm_.c:381
msgid "Collapse Tree"
msgstr "Smanji stablo"
-#: ../../my_gtk.pm_.c:379
+#: ../../my_gtk.pm_.c:382
msgid "Toggle between flat and group sorted"
msgstr "Prekidač između ravnog i grupnog sortiranja"
@@ -6799,6 +6885,74 @@ msgstr "koristi pppoe"
msgid "use pptp"
msgstr "koristi pptp"
+#: ../../network/drakfirewall.pm_.c:12
+#, fuzzy
+msgid "Web Server"
+msgstr "Server"
+
+#: ../../network/drakfirewall.pm_.c:17
+#, fuzzy
+msgid "Domain Name Server"
+msgstr "Ime domena"
+
+#: ../../network/drakfirewall.pm_.c:32
+#, fuzzy
+msgid "Mail Server"
+msgstr "Server baze podataka"
+
+#: ../../network/drakfirewall.pm_.c:37
+#, fuzzy
+msgid "POP and IMAP Server"
+msgstr "LDAP Server"
+
+#: ../../network/drakfirewall.pm_.c:111
+#, fuzzy
+msgid "No network card"
+msgstr "nije pronađena mreĆŸna kartica"
+
+#: ../../network/drakfirewall.pm_.c:129
+#, fuzzy
+msgid ""
+"drakfirewall configurator\n"
+"\n"
+"This configures a personal firewall for this Mandrake Linux machine.\n"
+"For a powerful dedicated firewall solution, please look to the\n"
+"specialized MandrakeSecurity Firewall distribution."
+msgstr ""
+"tinyfirewall podeơavač\n"
+"\n"
+"On podeơava lični firewall za ovaj Mandrake Linux računar.\n"
+"Za moćnu soluciju posebnog firewalla, molimo pogledajte\n"
+"specijaliziranu MandrakeSecurity Firewall distribuciju."
+
+#: ../../network/drakfirewall.pm_.c:147
+msgid "Which services would you like to allow the Internet to connect to?"
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:148
+msgid ""
+"You can enter miscellaneous ports. \n"
+"Valid examples are: 139/tcp 139/udp.\n"
+"Have a look at /etc/services for information."
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:154
+#, c-format
+msgid ""
+"Invalid port given: %s.\n"
+"The proper format is \"port/tcp\" or \"port/udp\", \n"
+"where port is between 1 and 65535."
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:162
+msgid "Everything (no firewall)"
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:164
+#, fuzzy
+msgid "Other ports"
+msgstr "Testiraj portove"
+
#: ../../network/ethernet.pm_.c:37
msgid ""
"Which dhcp client do you want to use?\n"
@@ -6815,7 +6969,7 @@ msgstr ""
"Nije pronađen ethernet mreĆŸni adapter na vaĆĄem sistemu.\n"
"Ne mogu podesiti ovu vrstu konekcije."
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:247
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:240
msgid "Choose the network interface"
msgstr "Izaberite mreĆŸni interface"
@@ -6829,7 +6983,7 @@ msgstr ""
msgid "no network card found"
msgstr "nije pronađena mreĆŸna kartica"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:366
msgid "Configuring network"
msgstr "PodeĆĄavam mreĆŸu"
@@ -6845,7 +6999,7 @@ msgstr ""
"Naziv vaơeg računara bi trebao biti puno-kvalifikovani naziv,\n"
"kao ĆĄto je ``mojcomp.mojlab.mojafirma.com''."
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:370
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:371
msgid "Host name"
msgstr "Host name"
@@ -7149,13 +7303,13 @@ msgstr "Izaberite profil za podeĆĄavanje"
msgid "Use auto detection"
msgstr "Koristi auto prepoznavanje"
-#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2930
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:3151
#: ../../standalone/drakconnect_.c:274 ../../standalone/drakconnect_.c:277
#: ../../standalone/drakfloppy_.c:145
msgid "Expert Mode"
msgstr "Ekspertni mod"
-#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:283
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:386
msgid "Detecting devices..."
msgstr "Prepoznajem uređaje..."
@@ -7324,11 +7478,11 @@ msgstr "Automatska IP"
msgid "Start at boot"
msgstr "Pokrenut na bootu"
-#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:753
+#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:860
msgid "IP address should be in format 1.2.3.4"
msgstr "IP adresa treba biti u formatu 1.2.3.4"
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:367
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -7340,43 +7494,55 @@ msgstr ""
"kao ĆĄto je ``mojcomp.mojlab.mojafirma.com''.\n"
"MoĆŸete također unijeti IP adresu gateway-a ako ga imate"
-#: ../../network/network.pm_.c:371
+#: ../../network/network.pm_.c:372
msgid "DNS server"
msgstr "DNS server"
-#: ../../network/network.pm_.c:372
+#: ../../network/network.pm_.c:373
#, c-format
msgid "Gateway (e.g. %s)"
msgstr "Gateway (tj. %s)"
-#: ../../network/network.pm_.c:374
+#: ../../network/network.pm_.c:375
msgid "Gateway device"
msgstr "Gateway uređaj"
-#: ../../network/network.pm_.c:386
+#: ../../network/network.pm_.c:387
msgid "Proxies configuration"
msgstr "Konfiguracija proxija"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:388
msgid "HTTP proxy"
msgstr "HTTP proxy"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:389
msgid "FTP proxy"
msgstr "FTP proxy"
-#: ../../network/network.pm_.c:389
+#: ../../network/network.pm_.c:390
msgid "Track network card id (useful for laptops)"
msgstr "Otkrij id mreĆŸne karte (korisno za laptope)"
-#: ../../network/network.pm_.c:392
+#: ../../network/network.pm_.c:393
msgid "Proxy should be http://..."
msgstr "Proxy treba biti http://..."
-#: ../../network/network.pm_.c:393
+#: ../../network/network.pm_.c:394
msgid "Proxy should be ftp://..."
msgstr "Proxy treba biti ftp://..."
+#: ../../network/shorewall.pm_.c:24
+msgid "Firewalling configuration detected!"
+msgstr "Otkrivena konfiguracija firewalla!"
+
+#: ../../network/shorewall.pm_.c:25
+msgid ""
+"Warning! An existing firewalling configuration has been detected. You may "
+"need some manual fix after installation."
+msgstr ""
+"Upozorenje! Pronađena je postojeća konfiguracija firewalla. MoĆŸda će biti "
+"potrebno neko ručno podeơavanje nakon instalacije."
+
#: ../../network/tools.pm_.c:41
msgid "Internet configuration"
msgstr "Internet konfiguracija"
@@ -7482,15 +7648,15 @@ msgstr "Ć ifra naloga"
msgid "United Kingdom"
msgstr ""
-#: ../../partition_table.pm_.c:606
+#: ../../partition_table.pm_.c:602
msgid "mount failed: "
msgstr "montiranje nije uspjelo: "
-#: ../../partition_table.pm_.c:670
+#: ../../partition_table.pm_.c:666
msgid "Extended partition not supported on this platform"
msgstr "Extended particije nisu podrĆŸane na ovoj platformi"
-#: ../../partition_table.pm_.c:688
+#: ../../partition_table.pm_.c:684
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
@@ -7500,21 +7666,21 @@ msgstr ""
"Jedino rjeĆĄenje je da pomjerite vaĆĄe primarne particija kako bi rupa bila "
"pored extended particija"
-#: ../../partition_table.pm_.c:778
+#: ../../partition_table.pm_.c:774
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "Povratak iz datoteke %s nije uspio: %s"
-#: ../../partition_table.pm_.c:780
+#: ../../partition_table.pm_.c:776
msgid "Bad backup file"
msgstr "LoĆĄa backup datoteka"
-#: ../../partition_table.pm_.c:802
+#: ../../partition_table.pm_.c:798
#, c-format
msgid "Error writing to file %s"
msgstr "GreĆĄka u pisanju datoteke: %s"
-#: ../../partition_table/raw.pm_.c:187
+#: ../../partition_table/raw.pm_.c:189
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
@@ -7560,150 +7726,155 @@ msgstr "LPD - Line Printer Daemon"
msgid "PDQ - Print, Don't Queue"
msgstr "PDQ - Print, Don't Queue"
-#: ../../printer.pm_.c:35 ../../printer.pm_.c:854
+#: ../../printer.pm_.c:34 ../../printer.pm_.c:1125
msgid "CUPS"
msgstr "CUPS"
-#: ../../printer.pm_.c:36
+#: ../../printer.pm_.c:35
msgid "LPRng"
msgstr "LPRng"
-#: ../../printer.pm_.c:37
+#: ../../printer.pm_.c:36
msgid "LPD"
msgstr "LPD"
-#: ../../printer.pm_.c:38
+#: ../../printer.pm_.c:37
msgid "PDQ"
msgstr "PDQ"
-#: ../../printer.pm_.c:50
+#: ../../printer.pm_.c:49
msgid "Local printer"
msgstr "Lokalni ơtampač"
-#: ../../printer.pm_.c:51
+#: ../../printer.pm_.c:50
msgid "Remote printer"
msgstr "Udaljeni ơtampač"
-#: ../../printer.pm_.c:52
+#: ../../printer.pm_.c:51
msgid "Printer on remote CUPS server"
msgstr "Ơtampač na udaljenom CUPS serveru"
-#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:776
+#: ../../printer.pm_.c:52 ../../printerdrake.pm_.c:883
msgid "Printer on remote lpd server"
msgstr "Ơtampač na udaljenom lpd serveru"
-#: ../../printer.pm_.c:54
+#: ../../printer.pm_.c:53
msgid "Network printer (TCP/Socket)"
msgstr "MreĆŸni ĆĄtampač (TCP/Socket)"
-#: ../../printer.pm_.c:55
+#: ../../printer.pm_.c:54
msgid "Printer on SMB/Windows 95/98/NT server"
msgstr "Ơtampač na SMB/Windows 95/98/NT serveru"
-#: ../../printer.pm_.c:56
+#: ../../printer.pm_.c:55
msgid "Printer on NetWare server"
msgstr "Ơtampač na NetWare serveru"
-#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:780
+#: ../../printer.pm_.c:56 ../../printerdrake.pm_.c:887
msgid "Enter a printer device URI"
msgstr "Unesite URI uređaja ơtampača"
-#: ../../printer.pm_.c:58
+#: ../../printer.pm_.c:57
msgid "Pipe job into a command"
msgstr "Spoji zadatak na komandu"
-#: ../../printer.pm_.c:487 ../../printer.pm_.c:678 ../../printer.pm_.c:1000
-#: ../../printerdrake.pm_.c:2070 ../../printerdrake.pm_.c:3189
+#: ../../printer.pm_.c:324 ../../printer.pm_.c:366 ../../printer.pm_.c:533
+#, fuzzy
+msgid "Unknown Model"
+msgstr "Nepoznat model"
+
+#: ../../printer.pm_.c:735 ../../printer.pm_.c:926 ../../printer.pm_.c:1318
+#: ../../printerdrake.pm_.c:2260 ../../printerdrake.pm_.c:3414
msgid "Unknown model"
msgstr "Nepoznat model"
-#: ../../printer.pm_.c:515
+#: ../../printer.pm_.c:763
msgid "Local Printers"
msgstr "Lokalni ơtampači"
-#: ../../printer.pm_.c:517 ../../printer.pm_.c:855
+#: ../../printer.pm_.c:765 ../../printer.pm_.c:1126
msgid "Remote Printers"
msgstr "Udaljeni ơtampači"
-#: ../../printer.pm_.c:524 ../../printerdrake.pm_.c:301
+#: ../../printer.pm_.c:772 ../../printerdrake.pm_.c:404
#, c-format
msgid " on parallel port \\/*%s"
msgstr " na paralelnom portu \\/*%s"
-#: ../../printer.pm_.c:527 ../../printerdrake.pm_.c:303
+#: ../../printer.pm_.c:775 ../../printerdrake.pm_.c:406
#, c-format
msgid ", USB printer \\/*%s"
msgstr ", USB ơtampač \\/*%s"
-#: ../../printer.pm_.c:532
+#: ../../printer.pm_.c:780
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ", viơenamjenski uređaj na paralelnom portu \\/*%s"
-#: ../../printer.pm_.c:535
+#: ../../printer.pm_.c:783
msgid ", multi-function device on USB"
msgstr ", viơenamjenski uređaj na USBu"
-#: ../../printer.pm_.c:537
+#: ../../printer.pm_.c:785
msgid ", multi-function device on HP JetDirect"
msgstr ", viơenamjenski uređaj na HP JetDirect"
-#: ../../printer.pm_.c:539
+#: ../../printer.pm_.c:787
msgid ", multi-function device"
msgstr ", viơenamjenski uređaj"
-#: ../../printer.pm_.c:542
+#: ../../printer.pm_.c:790
#, c-format
msgid ", printing to %s"
msgstr ", ĆĄtampa u %s"
-#: ../../printer.pm_.c:544
+#: ../../printer.pm_.c:792
#, fuzzy, c-format
msgid " on LPD server \"%s\", printer \"%s\""
msgstr "na LPD serveru \"%s\", ơtampač \"%s\""
-#: ../../printer.pm_.c:546
+#: ../../printer.pm_.c:794
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ", TCP/IP host \"%s\", port %s"
-#: ../../printer.pm_.c:550
+#: ../../printer.pm_.c:798
#, fuzzy, c-format
msgid " on SMB/Windows server \"%s\", share \"%s\""
msgstr "na Windows serveru \"%s\", share \"%s\""
-#: ../../printer.pm_.c:554
+#: ../../printer.pm_.c:802
#, fuzzy, c-format
msgid " on Novell server \"%s\", printer \"%s\""
msgstr "na Novell serveru \"%s\", ơtampač \"%s\""
-#: ../../printer.pm_.c:556
+#: ../../printer.pm_.c:804
#, c-format
msgid ", using command %s"
msgstr ", koristeći komandu %s"
-#: ../../printer.pm_.c:675 ../../printerdrake.pm_.c:1540
+#: ../../printer.pm_.c:923 ../../printerdrake.pm_.c:1656
msgid "Raw printer (No driver)"
msgstr "Sirovo ĆĄtampanje (Bez drajvera)"
-#: ../../printer.pm_.c:824
+#: ../../printer.pm_.c:1095
#, c-format
msgid "(on %s)"
msgstr "(na %s)"
-#: ../../printer.pm_.c:826
+#: ../../printer.pm_.c:1097
msgid "(on this machine)"
msgstr "(na ovom računaru)"
-#: ../../printer.pm_.c:851
+#: ../../printer.pm_.c:1122
#, c-format
msgid "On CUPS server \"%s\""
msgstr "Na CUPS serveru \"%s\""
-#: ../../printer.pm_.c:857 ../../printerdrake.pm_.c:2851
-#: ../../printerdrake.pm_.c:2862 ../../printerdrake.pm_.c:3078
-#: ../../printerdrake.pm_.c:3130 ../../printerdrake.pm_.c:3156
-#: ../../printerdrake.pm_.c:3326 ../../printerdrake.pm_.c:3328
+#: ../../printer.pm_.c:1128 ../../printerdrake.pm_.c:3071
+#: ../../printerdrake.pm_.c:3082 ../../printerdrake.pm_.c:3303
+#: ../../printerdrake.pm_.c:3355 ../../printerdrake.pm_.c:3381
+#: ../../printerdrake.pm_.c:3556 ../../printerdrake.pm_.c:3558
msgid " (Default)"
msgstr " (Default)"
@@ -7729,11 +7900,11 @@ msgstr ""
msgid "Printer auto-detection (Local, TCP/Socket, and SMB printers)"
msgstr ""
-#: ../../printerdrake.pm_.c:84 ../../printerdrake.pm_.c:2914
+#: ../../printerdrake.pm_.c:84 ../../printerdrake.pm_.c:3135
msgid "CUPS configuration"
msgstr "PodeĆĄavanje CUPSa"
-#: ../../printerdrake.pm_.c:85 ../../printerdrake.pm_.c:2915
+#: ../../printerdrake.pm_.c:85 ../../printerdrake.pm_.c:3136
msgid "Specify CUPS server"
msgstr "Navedite CUPS server"
@@ -7775,7 +7946,7 @@ msgstr ""
msgid "The IP address should look like 192.168.1.20"
msgstr "IP adresa treba biti u formatu 192.168.1.20"
-#: ../../printerdrake.pm_.c:95 ../../printerdrake.pm_.c:987
+#: ../../printerdrake.pm_.c:95 ../../printerdrake.pm_.c:1094
msgid "The port number should be an integer!"
msgstr "Broj porta treba biti cijeli broj!"
@@ -7783,7 +7954,7 @@ msgstr "Broj porta treba biti cijeli broj!"
msgid "CUPS server IP"
msgstr "IP CUPS servera"
-#: ../../printerdrake.pm_.c:103 ../../printerdrake.pm_.c:1007
+#: ../../printerdrake.pm_.c:103 ../../printerdrake.pm_.c:1114
msgid "Port"
msgstr "Port"
@@ -7791,12 +7962,130 @@ msgstr "Port"
msgid "Automatic CUPS configuration"
msgstr "Automatska konfiguracija CUPSa"
-#: ../../printerdrake.pm_.c:183 ../../printerdrake.pm_.c:192
-#: ../../printerdrake.pm_.c:2897 ../../printerdrake.pm_.c:3017
+#: ../../printerdrake.pm_.c:177 ../../printerdrake.pm_.c:247
+#: ../../printerdrake.pm_.c:1529 ../../printerdrake.pm_.c:1533
+#: ../../printerdrake.pm_.c:1651 ../../printerdrake.pm_.c:2203
+#: ../../printerdrake.pm_.c:2356 ../../printerdrake.pm_.c:2415
+#: ../../printerdrake.pm_.c:2488 ../../printerdrake.pm_.c:2509
+#: ../../printerdrake.pm_.c:2699 ../../printerdrake.pm_.c:2740
+#: ../../printerdrake.pm_.c:2745 ../../printerdrake.pm_.c:2779
+#: ../../printerdrake.pm_.c:2784 ../../printerdrake.pm_.c:2821
+#: ../../printerdrake.pm_.c:2874 ../../printerdrake.pm_.c:2894
+#: ../../printerdrake.pm_.c:2908 ../../printerdrake.pm_.c:2942
+#: ../../printerdrake.pm_.c:2988 ../../printerdrake.pm_.c:3006
+#: ../../printerdrake.pm_.c:3095 ../../printerdrake.pm_.c:3169
+#: ../../printerdrake.pm_.c:3471 ../../printerdrake.pm_.c:3526
+#: ../../printerdrake.pm_.c:3579 ../../standalone/printerdrake_.c:57
+msgid "Printerdrake"
+msgstr "Printerdrake"
+
+#: ../../printerdrake.pm_.c:178
+#, fuzzy
+msgid "Checking your system..."
+msgstr "Restartujem sistem za ĆĄtampu ..."
+
+#: ../../printerdrake.pm_.c:186
+msgid ""
+"There are no printers found which are directly connected to your machine"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:198
+#, fuzzy
+msgid ""
+"The following printers\n"
+"\n"
+msgstr "Sljedeći paketi će biti uklonjeni"
+
+#: ../../printerdrake.pm_.c:199
+#, fuzzy
+msgid ""
+"The following printer\n"
+"\n"
+msgstr "Sljedeći paketi će biti uklonjeni"
+
+#: ../../printerdrake.pm_.c:201
+msgid ""
+"\n"
+"and one unknown printer are "
+msgstr ""
+
+#: ../../printerdrake.pm_.c:203
+#, c-format
+msgid ""
+"\n"
+"and %d unknown printers are "
+msgstr ""
+
+#: ../../printerdrake.pm_.c:207
+msgid ""
+"\n"
+"are "
+msgstr ""
+
+#: ../../printerdrake.pm_.c:208
+msgid ""
+"\n"
+"is "
+msgstr ""
+
+#: ../../printerdrake.pm_.c:210
+#, fuzzy
+msgid "directly connected to your system"
+msgstr "Kopiraj fontove na sistem"
+
+#: ../../printerdrake.pm_.c:213
+msgid ""
+"\n"
+"There is one unknown printer directly connected to your system"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:215
+#, c-format
+msgid ""
+"\n"
+"There are %d unknown printers directly connected to your system"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:221
+#, fuzzy
+msgid " (Make sure that all your printers are connected and turned on).\n"
+msgstr "Molimo izaberite na koji port je priključen vaơ ơtampač."
+
+#: ../../printerdrake.pm_.c:235
+msgid ""
+"Do you want to enable printing on the printers mentioned above or on "
+"printers in the local network?\n"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:236
+#, fuzzy
+msgid "Do you want to enable printing on printers in the local network?\n"
+msgstr ""
+"Da li ĆŸelite da podesite ovaj ĆĄtampač (\"%s\")\n"
+"kao podrazumjevani ơtampač?"
+
+#: ../../printerdrake.pm_.c:238
+#, fuzzy
+msgid "Do you want to enable printing on the printers mentioned above?\n"
+msgstr "Da li ĆŸelite pokrenuti konekciju prilikom boota?"
+
+#: ../../printerdrake.pm_.c:239
+msgid "Are you sure that you want to set up printing on this machine?\n"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:240
+#, c-format
+msgid ""
+"NOTE: Depending on the printer model and the printing system up to %d MB of "
+"additional software will be installed."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:269 ../../printerdrake.pm_.c:278
+#: ../../printerdrake.pm_.c:3117 ../../printerdrake.pm_.c:3242
msgid "Add a new printer"
msgstr "Dodaj novi ơtampač"
-#: ../../printerdrake.pm_.c:184
+#: ../../printerdrake.pm_.c:270
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7819,7 +8108,7 @@ msgstr ""
"vama omogućen pristup svim dostupnim drajverima, opcijama drajvera i vrstama "
"konekcije ơtampača."
-#: ../../printerdrake.pm_.c:193
+#: ../../printerdrake.pm_.c:280
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7828,7 +8117,7 @@ msgid ""
"computer, connected directly to the network or to a remote Windows machine.\n"
"\n"
"If you have printer(s) connected to this machine, Please plug it/them in on "
-"this computer and turn it/them on so that they can be auto-detected. Also "
+"this computer and turn it/them on so that it/they can be auto-detected. Also "
"your network printer(s) and you Windows machines must be connected and "
"turned on.\n"
"\n"
@@ -7841,7 +8130,22 @@ msgid ""
"want to set up your printer(s) now."
msgstr ""
-#: ../../printerdrake.pm_.c:202
+#: ../../printerdrake.pm_.c:289 ../../printerdrake.pm_.c:306
+msgid ""
+"\n"
+"Welcome to the Printer Setup Wizard\n"
+"\n"
+"This wizard will help you to install your printer(s) connected to this "
+"computer.\n"
+"\n"
+"If you have printer(s) connected to this machine, Please plug it/them in on "
+"this computer and turn it/them on so that it/they can be auto-detected.\n"
+"\n"
+" Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
+"want to set up your printer(s) now."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:297
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7850,7 +8154,7 @@ msgid ""
"computer or connected directly to the network.\n"
"\n"
"If you have printer(s) connected to this machine, Please plug it/them in on "
-"this computer and turn it/them on so that they can be auto-detected. Also "
+"this computer and turn it/them on so that it/they can be auto-detected. Also "
"your network printer(s) must be connected and turned on.\n"
"\n"
"Note that auto-detecting printers on the network takes longer than the auto-"
@@ -7861,25 +8165,25 @@ msgid ""
"want to set up your printer(s) now."
msgstr ""
-#: ../../printerdrake.pm_.c:213
+#: ../../printerdrake.pm_.c:315
#, fuzzy
msgid "Auto-detect printers connected to this machine"
msgstr "Automatski prepoznaj ơtampače"
-#: ../../printerdrake.pm_.c:215
+#: ../../printerdrake.pm_.c:318
msgid "Auto-detect printers connected directly to the local network"
msgstr ""
-#: ../../printerdrake.pm_.c:218
+#: ../../printerdrake.pm_.c:321
msgid "Auto-detect printers connected to machines running Microsoft Windows"
msgstr ""
-#: ../../printerdrake.pm_.c:245 ../../printerdrake.pm_.c:459
-#: ../../printerdrake.pm_.c:484
+#: ../../printerdrake.pm_.c:348 ../../printerdrake.pm_.c:562
+#: ../../printerdrake.pm_.c:587
msgid "Local Printer"
msgstr "Lokalni ơtampač"
-#: ../../printerdrake.pm_.c:246
+#: ../../printerdrake.pm_.c:349
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -7903,50 +8207,50 @@ msgstr ""
"ơtampe...), izaberite opciju \"Ơtampač\" u \"Hardware\" sekciji Mandrake "
"Kontrolnog centra."
-#: ../../printerdrake.pm_.c:283 ../../printerdrake.pm_.c:474
-#: ../../printerdrake.pm_.c:683 ../../printerdrake.pm_.c:923
+#: ../../printerdrake.pm_.c:386 ../../printerdrake.pm_.c:577
+#: ../../printerdrake.pm_.c:790 ../../printerdrake.pm_.c:1030
#, fuzzy
msgid "Printer auto-detection"
msgstr "Koristi auto prepoznavanje"
-#: ../../printerdrake.pm_.c:305
+#: ../../printerdrake.pm_.c:408
#, fuzzy, c-format
msgid ", network printer \"%s\", port %s"
msgstr ", TCP/IP host \"%s\", port %s"
-#: ../../printerdrake.pm_.c:307
+#: ../../printerdrake.pm_.c:410
#, fuzzy, c-format
msgid ", printer \"%s\" on SMB/Windows server \"%s\""
msgstr "Ơtampač na SMB/Windows 95/98/NT serveru"
-#: ../../printerdrake.pm_.c:313
+#: ../../printerdrake.pm_.c:416
#, c-format
msgid "Detected %s"
msgstr "Detektovan %s"
-#: ../../printerdrake.pm_.c:317 ../../printerdrake.pm_.c:348
-#: ../../printerdrake.pm_.c:367
+#: ../../printerdrake.pm_.c:420 ../../printerdrake.pm_.c:451
+#: ../../printerdrake.pm_.c:470
#, c-format
msgid "Printer on parallel port \\/*%s"
msgstr "Ơtampač na paralelnom portu \\/*%s"
-#: ../../printerdrake.pm_.c:319 ../../printerdrake.pm_.c:350
-#: ../../printerdrake.pm_.c:372
+#: ../../printerdrake.pm_.c:422 ../../printerdrake.pm_.c:453
+#: ../../printerdrake.pm_.c:475
#, c-format
msgid "USB printer \\/*%s"
msgstr "USB ơtampač \\/*%s"
-#: ../../printerdrake.pm_.c:321
+#: ../../printerdrake.pm_.c:424
#, fuzzy, c-format
msgid "Network printer \"%s\", port %s"
msgstr "MreĆŸni ĆĄtampač (TCP/Socket)"
-#: ../../printerdrake.pm_.c:323
+#: ../../printerdrake.pm_.c:426
#, fuzzy, c-format
msgid "Printer \"%s\" on SMB/Windows server \"%s\""
msgstr "Ơtampač na SMB/Windows 95/98/NT serveru"
-#: ../../printerdrake.pm_.c:460
+#: ../../printerdrake.pm_.c:563
msgid ""
"No local printer found! To manually install a printer enter a device name/"
"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
@@ -7958,23 +8262,23 @@ msgstr ""
"lp0, /dev/lp1, ..., ekvivalentno LPT1:, LPT2:, ..., prvi USB ơtampač: /dev/"
"usb/lp0, drugi USB ơtampač: /dev/usb/lp1, ...)."
-#: ../../printerdrake.pm_.c:464
+#: ../../printerdrake.pm_.c:567
msgid "You must enter a device or file name!"
msgstr "Morate unijeti naziv uređaja ili datoteke!"
-#: ../../printerdrake.pm_.c:475
+#: ../../printerdrake.pm_.c:578
#, fuzzy
msgid "No printer found!"
msgstr ""
"Nije pronađen nijedan lokalni ơtampač!\n"
"\n"
-#: ../../printerdrake.pm_.c:485
+#: ../../printerdrake.pm_.c:588
#, fuzzy
msgid "Available printers"
msgstr "Lokalni ơtampač"
-#: ../../printerdrake.pm_.c:489
+#: ../../printerdrake.pm_.c:592
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
@@ -7982,7 +8286,7 @@ msgstr ""
"Sljedeći ĆĄtampač je prepoznat automatski: ako to nije onaj koji ĆŸelite "
"podesiti, uneiste naziv uređaja / naziv datoteke u ulaznu liniju"
-#: ../../printerdrake.pm_.c:490
+#: ../../printerdrake.pm_.c:593
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up or enter a device name/file name in the input line"
@@ -7991,7 +8295,7 @@ msgstr ""
"koji ĆŸelite podesiti ili unesite naziv uređaja / naziv datoteke na ulaznu "
"liniju"
-#: ../../printerdrake.pm_.c:492
+#: ../../printerdrake.pm_.c:595
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
@@ -8002,7 +8306,7 @@ msgstr ""
"potpuno automatski. Ako vaĆĄ ĆĄtampač nije ispravno prepoznat ili ako ĆŸelite "
"sami podesiti ơtampač, uključite \"Ručno podeơavanje\"."
-#: ../../printerdrake.pm_.c:493
+#: ../../printerdrake.pm_.c:596
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
@@ -8014,7 +8318,7 @@ msgstr ""
"vaĆĄ ĆĄtampač nije ispravno prepoznat ili ako ĆŸelite sami podesiti ĆĄtampač, "
"uključite \"Ručno podeơavanje\"."
-#: ../../printerdrake.pm_.c:495
+#: ../../printerdrake.pm_.c:598
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
@@ -8022,11 +8326,11 @@ msgstr ""
"Molimo izaberite port na koji je vaơ ơtampač povezan ili unesite naziv "
"uređaja / naziv datoteke na ulaznoj liniji"
-#: ../../printerdrake.pm_.c:496
+#: ../../printerdrake.pm_.c:599
msgid "Please choose the port where your printer is connected to."
msgstr "Molimo izaberite na koji port je priključen vaơ ơtampač."
-#: ../../printerdrake.pm_.c:498
+#: ../../printerdrake.pm_.c:601
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
@@ -8035,19 +8339,19 @@ msgstr ""
"LPT2:, ..., prvi USB ơtampač: /dev/usb/lp0, drugi USB ơtampač: /dev/usb/"
"lp1, ...)."
-#: ../../printerdrake.pm_.c:503
+#: ../../printerdrake.pm_.c:606
msgid "You must choose/enter a printer/device!"
msgstr "Morate izabrati ili unijeti ơtampač / uređaj!"
-#: ../../printerdrake.pm_.c:523
+#: ../../printerdrake.pm_.c:626
msgid "Manual configuration"
msgstr "Ručno podeơavanje"
-#: ../../printerdrake.pm_.c:577
+#: ../../printerdrake.pm_.c:680
msgid "Remote lpd Printer Options"
msgstr "Opcije udaljenog lpd ơtampača"
-#: ../../printerdrake.pm_.c:578
+#: ../../printerdrake.pm_.c:681
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
"server and the printer name on that server."
@@ -8055,47 +8359,47 @@ msgstr ""
"Da biste koristili udaljeni lpd ơtampač, morate dati ime računara za printer "
"server i ime ơtampača na tom serveru."
-#: ../../printerdrake.pm_.c:579
+#: ../../printerdrake.pm_.c:682
msgid "Remote host name"
msgstr "Ime udaljenog računara"
-#: ../../printerdrake.pm_.c:580
+#: ../../printerdrake.pm_.c:683
msgid "Remote printer name"
msgstr "Ime udaljenog ơtampača"
-#: ../../printerdrake.pm_.c:583
+#: ../../printerdrake.pm_.c:686
msgid "Remote host name missing!"
msgstr "Ime udaljenog računara nedostaje!"
-#: ../../printerdrake.pm_.c:587
+#: ../../printerdrake.pm_.c:690
msgid "Remote printer name missing!"
msgstr "Ime udaljenog ơtampača nedostaje!"
-#: ../../printerdrake.pm_.c:609 ../../printerdrake.pm_.c:1119
+#: ../../printerdrake.pm_.c:712 ../../printerdrake.pm_.c:1225
#, fuzzy, c-format
msgid "Detected model: %s %s"
msgstr "Detektovan %s"
-#: ../../printerdrake.pm_.c:683 ../../printerdrake.pm_.c:923
+#: ../../printerdrake.pm_.c:790 ../../printerdrake.pm_.c:1030
#, fuzzy
msgid "Scanning network..."
msgstr "Pokrećem mreĆŸu..."
-#: ../../printerdrake.pm_.c:692 ../../printerdrake.pm_.c:713
+#: ../../printerdrake.pm_.c:799 ../../printerdrake.pm_.c:820
#, fuzzy, c-format
msgid ", printer \"%s\" on server \"%s\""
msgstr "na Windows serveru \"%s\", share \"%s\""
-#: ../../printerdrake.pm_.c:695 ../../printerdrake.pm_.c:716
+#: ../../printerdrake.pm_.c:802 ../../printerdrake.pm_.c:823
#, fuzzy, c-format
msgid "Printer \"%s\" on server \"%s\""
msgstr "Ơtampam na ơtampač \"%s\""
-#: ../../printerdrake.pm_.c:736
+#: ../../printerdrake.pm_.c:843
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "Opcije SMB (Windows 9x/NT) ơtampača"
-#: ../../printerdrake.pm_.c:737
+#: ../../printerdrake.pm_.c:844
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
"may be different from its TCP/IP hostname!) and possibly the IP address of "
@@ -8107,46 +8411,46 @@ msgstr ""
"kao i share naziv ĆĄtampača kojem ĆŸelite pristupiti i korisničko ime, ĆĄifru i "
"informacije o radnoj grupi."
-#: ../../printerdrake.pm_.c:738
+#: ../../printerdrake.pm_.c:845
msgid ""
" If the desired printer was auto-detected, simply choose it from the list "
"and then add user name, password, and/or workgroup if needed."
msgstr ""
-#: ../../printerdrake.pm_.c:739
+#: ../../printerdrake.pm_.c:846
msgid "SMB server host"
msgstr "SMB server ime"
-#: ../../printerdrake.pm_.c:740
+#: ../../printerdrake.pm_.c:847
msgid "SMB server IP"
msgstr "SMB server IP"
-#: ../../printerdrake.pm_.c:741
+#: ../../printerdrake.pm_.c:848
msgid "Share name"
msgstr "Share naziv"
-#: ../../printerdrake.pm_.c:744
+#: ../../printerdrake.pm_.c:851
msgid "Workgroup"
msgstr "Radna grupa"
-#: ../../printerdrake.pm_.c:746
+#: ../../printerdrake.pm_.c:853
#, fuzzy
msgid "Auto-detected"
msgstr "Koristi auto prepoznavanje"
-#: ../../printerdrake.pm_.c:757
+#: ../../printerdrake.pm_.c:864
msgid "Either the server name or the server's IP must be given!"
msgstr "Treba biti dato ili ime servera ili IP adresa servera!"
-#: ../../printerdrake.pm_.c:761
+#: ../../printerdrake.pm_.c:868
msgid "Samba share name missing!"
msgstr "Naziv samba share-a nedostaje!"
-#: ../../printerdrake.pm_.c:767
+#: ../../printerdrake.pm_.c:874
msgid "SECURITY WARNING!"
msgstr ""
-#: ../../printerdrake.pm_.c:768
+#: ../../printerdrake.pm_.c:875
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -8170,7 +8474,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:778
+#: ../../printerdrake.pm_.c:885
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -8179,7 +8483,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:781
+#: ../../printerdrake.pm_.c:888
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
@@ -8187,11 +8491,11 @@ msgid ""
"Do you really want to continue setting up this printer as you are doing now?"
msgstr ""
-#: ../../printerdrake.pm_.c:853
+#: ../../printerdrake.pm_.c:960
msgid "NetWare Printer Options"
msgstr "Opcije NetWare ơtampača"
-#: ../../printerdrake.pm_.c:854
+#: ../../printerdrake.pm_.c:961
msgid ""
"To print on a NetWare printer, you need to provide the NetWare print server "
"name (Note! it may be different from its TCP/IP hostname!) as well as the "
@@ -8203,43 +8507,43 @@ msgstr ""
"naziv reda za ĆĄtampu na ĆĄtampaču kojem ĆŸelite pristupiti i eventualno "
"korisničko ime i ơifru."
-#: ../../printerdrake.pm_.c:855
+#: ../../printerdrake.pm_.c:962
msgid "Printer Server"
msgstr "Printer Server"
-#: ../../printerdrake.pm_.c:856
+#: ../../printerdrake.pm_.c:963
msgid "Print Queue Name"
msgstr "Naziv reda za ĆĄtampu"
-#: ../../printerdrake.pm_.c:861
+#: ../../printerdrake.pm_.c:968
msgid "NCP server name missing!"
msgstr "NCP naziv servera nedostaje!"
-#: ../../printerdrake.pm_.c:865
+#: ../../printerdrake.pm_.c:972
msgid "NCP queue name missing!"
msgstr "NCP naziv reda nedostaje!"
-#: ../../printerdrake.pm_.c:932 ../../printerdrake.pm_.c:952
+#: ../../printerdrake.pm_.c:1039 ../../printerdrake.pm_.c:1059
#, fuzzy, c-format
msgid ", host \"%s\", port %s"
msgstr ", TCP/IP host \"%s\", port %s"
-#: ../../printerdrake.pm_.c:935 ../../printerdrake.pm_.c:955
+#: ../../printerdrake.pm_.c:1042 ../../printerdrake.pm_.c:1062
#, fuzzy, c-format
msgid "Host \"%s\", port %s"
msgstr ", TCP/IP host \"%s\", port %s"
-#: ../../printerdrake.pm_.c:975
+#: ../../printerdrake.pm_.c:1082
msgid "TCP/Socket Printer Options"
msgstr "TCP/socket opcije ơtampača"
-#: ../../printerdrake.pm_.c:977
+#: ../../printerdrake.pm_.c:1084
msgid ""
"Choose one of the auto-detected printers from the list or enter the hostname "
"or IP and the optional port number (default is 9100) into the input fields."
msgstr ""
-#: ../../printerdrake.pm_.c:978
+#: ../../printerdrake.pm_.c:1085
#, fuzzy
msgid ""
"To print to a TCP or socket printer, you need to provide the host name or IP "
@@ -8251,21 +8555,21 @@ msgstr ""
"opcionalno broj porta. Na HP JetDirect serverima broj porta je obično 9100, "
"na ostalim serverima on moĆŸe varirati. Pogledajte priručnik vaĆĄeg hardware-a."
-#: ../../printerdrake.pm_.c:983
+#: ../../printerdrake.pm_.c:1090
#, fuzzy
msgid "Printer host name or IP missing!"
msgstr "Hostname ơtampača nedostaje!"
-#: ../../printerdrake.pm_.c:1005
+#: ../../printerdrake.pm_.c:1112
#, fuzzy
msgid "Printer host name or IP"
msgstr "Hostname ơtampača"
-#: ../../printerdrake.pm_.c:1054 ../../printerdrake.pm_.c:1056
+#: ../../printerdrake.pm_.c:1160 ../../printerdrake.pm_.c:1162
msgid "Printer Device URI"
msgstr "URI uređaja ơtampača"
-#: ../../printerdrake.pm_.c:1055
+#: ../../printerdrake.pm_.c:1161
msgid ""
"You can specify directly the URI to access the printer. The URI must fulfill "
"either the CUPS or the Foomatic specifications. Note that not all URI types "
@@ -8275,11 +8579,11 @@ msgstr ""
"CUPS ili Foomatic specifikacije. Obratite paĆŸnju da nisu svi tipovi URIja "
"podrĆŸani od svih spoolera."
-#: ../../printerdrake.pm_.c:1070
+#: ../../printerdrake.pm_.c:1176
msgid "A valid URI must be entered!"
msgstr "Trebate unijeti ispravan URI!"
-#: ../../printerdrake.pm_.c:1402
+#: ../../printerdrake.pm_.c:1515
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
"Location fields do not need to be filled in. They are comments for the users."
@@ -8287,27 +8591,27 @@ msgstr ""
"Svakom ơtampaču treba dati ime (npr. \"stampac\"). Polja Opis i Lokacija "
"nije potrebno popuniti. Oni su komentari za korisnike."
-#: ../../printerdrake.pm_.c:1403
+#: ../../printerdrake.pm_.c:1516
msgid "Name of printer"
msgstr "Naziv ơtampača"
-#: ../../printerdrake.pm_.c:1405
+#: ../../printerdrake.pm_.c:1518
msgid "Location"
msgstr "Lokacija"
-#: ../../printerdrake.pm_.c:1416 ../../printerdrake.pm_.c:1536
+#: ../../printerdrake.pm_.c:1530 ../../printerdrake.pm_.c:1652
msgid "Reading printer database..."
msgstr "Čitam bazu podataka o ơtampačima ..."
-#: ../../printerdrake.pm_.c:1419
+#: ../../printerdrake.pm_.c:1534
msgid "Preparing printer database..."
msgstr "Pripremam bazu podataka o ơtampačima..."
-#: ../../printerdrake.pm_.c:1516
+#: ../../printerdrake.pm_.c:1631
msgid "Your printer model"
msgstr "Model vaơeg ơtampača"
-#: ../../printerdrake.pm_.c:1517
+#: ../../printerdrake.pm_.c:1632
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -8333,24 +8637,24 @@ msgstr ""
"\n"
"%s"
-#: ../../printerdrake.pm_.c:1522 ../../printerdrake.pm_.c:1525
+#: ../../printerdrake.pm_.c:1637 ../../printerdrake.pm_.c:1640
msgid "The model is correct"
msgstr "Model je ispravan"
-#: ../../printerdrake.pm_.c:1523 ../../printerdrake.pm_.c:1524
-#: ../../printerdrake.pm_.c:1527
+#: ../../printerdrake.pm_.c:1638 ../../printerdrake.pm_.c:1639
+#: ../../printerdrake.pm_.c:1642
msgid "Select model manually"
msgstr "Izaberite model ručno"
-#: ../../printerdrake.pm_.c:1543
+#: ../../printerdrake.pm_.c:1659
msgid "Printer model selection"
msgstr "Izbor modela ơtampača"
-#: ../../printerdrake.pm_.c:1544
+#: ../../printerdrake.pm_.c:1660
msgid "Which printer model do you have?"
msgstr "Koji model ơtampača imate?"
-#: ../../printerdrake.pm_.c:1545
+#: ../../printerdrake.pm_.c:1661
msgid ""
"\n"
"\n"
@@ -8364,7 +8668,7 @@ msgstr ""
"prepoznavanje modela vaĆĄeg ĆĄtampača. PotraĆŸite ispravan model na listi ako "
"kursor stoji na pogreơnom modelu ili na \"Raw ơtampač\"."
-#: ../../printerdrake.pm_.c:1548
+#: ../../printerdrake.pm_.c:1664
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
@@ -8372,11 +8676,11 @@ msgstr ""
"Ako ơtampač nije naveden, izaberite kompatibilan (pogledajte uputstva za "
"ơtampač) ili sličan."
-#: ../../printerdrake.pm_.c:1624
+#: ../../printerdrake.pm_.c:1741
msgid "OKI winprinter configuration"
msgstr "PodeĆĄavanje OKI winprinter-a"
-#: ../../printerdrake.pm_.c:1625
+#: ../../printerdrake.pm_.c:1742
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -8392,11 +8696,11 @@ msgstr ""
"nego ơto odơtampate testnu stranicu. Inače ơtampač neće raditi. Drajver će "
"ignorisati vaĆĄe podeĆĄenje tipa konekcije."
-#: ../../printerdrake.pm_.c:1668 ../../printerdrake.pm_.c:1695
+#: ../../printerdrake.pm_.c:1785 ../../printerdrake.pm_.c:1812
msgid "Lexmark inkjet configuration"
msgstr "PodeĆĄavanje Lexmark inkjet-a"
-#: ../../printerdrake.pm_.c:1669
+#: ../../printerdrake.pm_.c:1786
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
"no printers on remote machines or print server boxes. Please connect your "
@@ -8408,17 +8712,17 @@ msgstr ""
"Molimo spojite vaơ ơtampač na lokalni port ili ga podesite na računaru na "
"koji je spojen."
-#: ../../printerdrake.pm_.c:1696
+#: ../../printerdrake.pm_.c:1813
+#, fuzzy
msgid ""
"To be able to print with your Lexmark inkjet and this configuration, you "
"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
-"com/). Go to the US site and click on the \"Drivers\" button. Then choose "
-"your model and afterwards \"Linux\" as operating system. The drivers come as "
-"RPM packages or shell scripts with interactive graphical installation. You "
-"do not need to do this configuration by the graphical frontends. Cancel "
-"directly after the license agreement. Then print printhead alignment pages "
-"with \"lexmarkmaintain\" and adjust the head alignment settings with this "
-"program."
+"com/). Click on the \"Drivers\" link. Then choose your model and afterwards "
+"\"Linux\" as operating system. The drivers come as RPM packages or shell "
+"scripts with interactive graphical installation. You do not need to do this "
+"configuration by the graphical frontends. Cancel directly after the license "
+"agreement. Then print printhead alignment pages with \"lexmarkmaintain\" and "
+"adjust the head alignment settings with this program."
msgstr ""
"Da biste mogli ĆĄtampati sa vaĆĄim Lexmark inkjetom na ovoj konfiguraciji, "
"potrebni su vam inkjet drajveri za ơtampu koje obezbjeđuje Lexmark (http://"
@@ -8430,7 +8734,34 @@ msgstr ""
"poravnavanje glava sa \"lexmarkmaintain\" i podesite opcije poravnanja glave "
"pomoću ovog programa."
-#: ../../printerdrake.pm_.c:1912
+#: ../../printerdrake.pm_.c:1816
+msgid "GDI Laser Printer using the Zenographics ZJ-Stream Format"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:1817
+msgid ""
+"Your printer belongs to the group of GDI laser printers (winprinters) sold "
+"by different manufacturers which uses the Zenographics ZJ-stream raster "
+"format for the data sent to the printer. The driver for these printers is "
+"still in a very early development stage and so it will perhaps not always "
+"work properly. Especially it is possible that the printer only works when "
+"you choose the A4 paper size.\n"
+"\n"
+"Some of these printers, as the HP LaserJet 1000, for which this driver was "
+"originally created, need their firmware to be uploaded to them after they "
+"are turned on. In the case of the HP LaserJet 1000 you have to search the "
+"printer's Windows driver CD or your Windows partition for the file "
+"\"sihp1000.img\" and upload the file to the printer with one of the "
+"following commands:\n"
+"\n"
+" lpr -o raw sihp1000.img\n"
+" cat sihp1000.img > /dev/usb/lp0\n"
+"\n"
+"The first command can be given by any normal user, the second must be given "
+"as root. After having done so you can print normally.\n"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:2040
msgid ""
"Printer default settings\n"
"\n"
@@ -8445,22 +8776,22 @@ msgstr ""
"ispravno podeĆĄeni. Obratite paĆŸnju da za voma veliku kvalitetu / rezoluciju "
"ĆĄtampa moĆŸe postati znatno sporija."
-#: ../../printerdrake.pm_.c:1921
+#: ../../printerdrake.pm_.c:2049
#, c-format
msgid "Option %s must be an integer number!"
msgstr "Opcija %s mora biti cijeli broj!"
-#: ../../printerdrake.pm_.c:1925
+#: ../../printerdrake.pm_.c:2053
#, c-format
msgid "Option %s must be a number!"
msgstr "Opcija %s mora biti broj!"
-#: ../../printerdrake.pm_.c:1930
+#: ../../printerdrake.pm_.c:2058
#, c-format
msgid "Option %s out of range!"
msgstr "Opcija %s izvan raspona!"
-#: ../../printerdrake.pm_.c:1969
+#: ../../printerdrake.pm_.c:2097
#, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
@@ -8469,11 +8800,11 @@ msgstr ""
"Da li ĆŸelite da podesite ovaj ĆĄtampač (\"%s\")\n"
"kao podrazumjevani ơtampač?"
-#: ../../printerdrake.pm_.c:1986
+#: ../../printerdrake.pm_.c:2120
msgid "Test pages"
msgstr "Testna stranica"
-#: ../../printerdrake.pm_.c:1987
+#: ../../printerdrake.pm_.c:2121
msgid ""
"Please select the test pages you want to print.\n"
"Note: the photo test page can take a rather long time to get printed and on "
@@ -8485,39 +8816,39 @@ msgstr ""
"laserskim ĆĄtampačima sa malo memorije moĆŸda neće nikad ni izaći. U većini "
"slučajeva dovoljno je odơtampati standardnu testnu stranicu."
-#: ../../printerdrake.pm_.c:1991
+#: ../../printerdrake.pm_.c:2125
msgid "No test pages"
msgstr "Nijedna testna strana"
-#: ../../printerdrake.pm_.c:1992
+#: ../../printerdrake.pm_.c:2126
msgid "Print"
msgstr "Ć tampaj"
-#: ../../printerdrake.pm_.c:1994
+#: ../../printerdrake.pm_.c:2183
msgid "Standard test page"
msgstr "Standardna testna strana"
-#: ../../printerdrake.pm_.c:1997
+#: ../../printerdrake.pm_.c:2186
msgid "Alternative test page (Letter)"
msgstr "Alternativna testna strana (Letter)"
-#: ../../printerdrake.pm_.c:2000
+#: ../../printerdrake.pm_.c:2189
msgid "Alternative test page (A4)"
msgstr "Alternativna testna strana (A4)"
-#: ../../printerdrake.pm_.c:2002
+#: ../../printerdrake.pm_.c:2191
msgid "Photo test page"
msgstr "Foto testna strana"
-#: ../../printerdrake.pm_.c:2006
+#: ../../printerdrake.pm_.c:2195
msgid "Do not print any test page"
msgstr "Nemoj ĆĄtampati testnu stranicu"
-#: ../../printerdrake.pm_.c:2014 ../../printerdrake.pm_.c:2166
+#: ../../printerdrake.pm_.c:2204 ../../printerdrake.pm_.c:2357
msgid "Printing test page(s)..."
msgstr "Ć tampam testnu stranicu..."
-#: ../../printerdrake.pm_.c:2039
+#: ../../printerdrake.pm_.c:2229
#, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -8532,7 +8863,7 @@ msgstr ""
"%s\n"
"\n"
-#: ../../printerdrake.pm_.c:2043
+#: ../../printerdrake.pm_.c:2233
msgid ""
"Test page(s) have been sent to the printer.\n"
"It may take some time before the printer starts.\n"
@@ -8540,15 +8871,15 @@ msgstr ""
"Testna stranica je poslana ơtampaču.\n"
"MoĆŸe potrajati određeno vrijeme dok ĆĄtampač krene.\n"
-#: ../../printerdrake.pm_.c:2050
+#: ../../printerdrake.pm_.c:2240
msgid "Did it work properly?"
msgstr "Da li je radilo ispravno?"
-#: ../../printerdrake.pm_.c:2072 ../../printerdrake.pm_.c:3191
+#: ../../printerdrake.pm_.c:2262 ../../printerdrake.pm_.c:3416
msgid "Raw printer"
msgstr "Sirovi ơtampač"
-#: ../../printerdrake.pm_.c:2098
+#: ../../printerdrake.pm_.c:2288
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -8561,7 +8892,7 @@ msgstr ""
"<datoteka>\" ili \"kprinter <datoteka>\". Grafički alati vam omogućuju da "
"jednostavno odaberete ơtampač i izmjenite podeơenja opcija.\n"
-#: ../../printerdrake.pm_.c:2100
+#: ../../printerdrake.pm_.c:2290
msgid ""
"These commands you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications, but here do not supply the file name "
@@ -8571,8 +8902,8 @@ msgstr ""
"dijalozima za ĆĄtampu mnogih aplikacija, ali ovdje ne morate navesti ime "
"datoteke jer tu datoteku obezbjeđuje sama aplikacija.\n"
-#: ../../printerdrake.pm_.c:2103 ../../printerdrake.pm_.c:2120
-#: ../../printerdrake.pm_.c:2130
+#: ../../printerdrake.pm_.c:2293 ../../printerdrake.pm_.c:2310
+#: ../../printerdrake.pm_.c:2320
#, c-format
msgid ""
"\n"
@@ -8585,7 +8916,7 @@ msgstr ""
"ĆĄtampe. Jednostavno dodajte ĆŸeljena podeĆĄenja na komandnu liniju, npr. \"%s "
"<datoteka>\". "
-#: ../../printerdrake.pm_.c:2106 ../../printerdrake.pm_.c:2146
+#: ../../printerdrake.pm_.c:2296 ../../printerdrake.pm_.c:2336
#, fuzzy, c-format
msgid ""
"To know about the options available for the current printer read either the "
@@ -8596,7 +8927,7 @@ msgstr ""
"koja je data ispod ili kliknite na dugme \"Lista opcija za ĆĄtampu\".%s\n"
"\n"
-#: ../../printerdrake.pm_.c:2110
+#: ../../printerdrake.pm_.c:2300
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
@@ -8604,7 +8935,7 @@ msgstr ""
"Ovo je lista mogućih opcija za ơtampu za trenutni ơtampač:\n"
"\n"
-#: ../../printerdrake.pm_.c:2115 ../../printerdrake.pm_.c:2125
+#: ../../printerdrake.pm_.c:2305 ../../printerdrake.pm_.c:2315
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
@@ -8613,8 +8944,8 @@ msgstr ""
"Za ĆĄtampanje datoteke sa komandne linije (terminalski prozor) koristite "
"komandu \"%s <datoteka>\".\n"
-#: ../../printerdrake.pm_.c:2117 ../../printerdrake.pm_.c:2127
-#: ../../printerdrake.pm_.c:2137
+#: ../../printerdrake.pm_.c:2307 ../../printerdrake.pm_.c:2317
+#: ../../printerdrake.pm_.c:2327
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
@@ -8624,7 +8955,7 @@ msgstr ""
"dijalozima za ĆĄtampu mnogih aplikacija. Ovdje nije potrebno navesti naziv "
"datoteke jer tudatoteku obezbjeđuje sama aplikacija.\n"
-#: ../../printerdrake.pm_.c:2122 ../../printerdrake.pm_.c:2132
+#: ../../printerdrake.pm_.c:2312 ../../printerdrake.pm_.c:2322
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
@@ -8632,7 +8963,7 @@ msgstr ""
"Za listu opcija koje su dostupne za trenutni ơtampač kliknite na dugme "
"\"Lista opcija za ĆĄtampu\"."
-#: ../../printerdrake.pm_.c:2135
+#: ../../printerdrake.pm_.c:2325
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
@@ -8641,7 +8972,7 @@ msgstr ""
"Za ĆĄtampanje datoteke sa komandne linije (terminalski prozor) koristite "
"komandu \"%s <datoteka>\" ili \"%s <datoteka>\".\n"
-#: ../../printerdrake.pm_.c:2139
+#: ../../printerdrake.pm_.c:2329
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -8657,7 +8988,7 @@ msgstr ""
"zaustavlja sve zadatke ĆĄtampe odmah kada kliknete na nju. Ovo je korisno "
"npr. u slučaju zaglavljivanja papira.\n"
-#: ../../printerdrake.pm_.c:2143
+#: ../../printerdrake.pm_.c:2333
#, c-format
msgid ""
"\n"
@@ -8670,40 +9001,40 @@ msgstr ""
"zadatak ĆĄtampe. Jednostavno dodajte ĆŸeljena podeĆĄenja na komandnu liniju, "
"npr. \"%s <datoteka>\".\n"
-#: ../../printerdrake.pm_.c:2153
+#: ../../printerdrake.pm_.c:2343
#, fuzzy, c-format
msgid "Printing/Scanning/Photo Cards on \"%s\""
msgstr "Ć tampam/skeniram na \"%s\""
-#: ../../printerdrake.pm_.c:2154
+#: ../../printerdrake.pm_.c:2344
#, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "Ć tampam/skeniram na \"%s\""
-#: ../../printerdrake.pm_.c:2156
+#: ../../printerdrake.pm_.c:2346
#, fuzzy, c-format
msgid "Printing/Photo Card Access on \"%s\""
msgstr "Ć tampam/skeniram na \"%s\""
-#: ../../printerdrake.pm_.c:2157
+#: ../../printerdrake.pm_.c:2347
#, c-format
msgid "Printing on the printer \"%s\""
msgstr "Ơtampam na ơtampač \"%s\""
-#: ../../printerdrake.pm_.c:2160 ../../printerdrake.pm_.c:2163
-#: ../../printerdrake.pm_.c:2164 ../../printerdrake.pm_.c:2165
-#: ../../printerdrake.pm_.c:3175 ../../standalone/drakTermServ_.c:248
-#: ../../standalone/drakbackup_.c:1485 ../../standalone/drakbackup_.c:3530
-#: ../../standalone/drakbug_.c:129 ../../standalone/drakfont_.c:705
+#: ../../printerdrake.pm_.c:2350 ../../printerdrake.pm_.c:2353
+#: ../../printerdrake.pm_.c:2354 ../../printerdrake.pm_.c:2355
+#: ../../printerdrake.pm_.c:3400 ../../standalone/drakTermServ_.c:248
+#: ../../standalone/drakbackup_.c:1560 ../../standalone/drakbackup_.c:4208
+#: ../../standalone/drakbug_.c:130 ../../standalone/drakfont_.c:705
#: ../../standalone/drakfont_.c:1014
msgid "Close"
msgstr "Zatvori"
-#: ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2353
msgid "Print option list"
msgstr "Lista opcija za ĆĄtampu"
-#: ../../printerdrake.pm_.c:2182
+#: ../../printerdrake.pm_.c:2373
#, fuzzy, c-format
msgid ""
"Your multi-function device was configured automatically to be able to scan. "
@@ -8726,7 +9057,7 @@ msgstr ""
"\n"
"Nemojte koristiti \"scannerdrake\" za ovaj uređaj!"
-#: ../../printerdrake.pm_.c:2202
+#: ../../printerdrake.pm_.c:2394
msgid ""
"Your printer was configured automatically to give you access to the photo "
"card drives from your PC. Now you can access your photo cards using the "
@@ -8739,17 +9070,17 @@ msgid ""
"of the file lists."
msgstr ""
-#: ../../printerdrake.pm_.c:2223 ../../printerdrake.pm_.c:2673
-#: ../../printerdrake.pm_.c:2945
+#: ../../printerdrake.pm_.c:2416 ../../printerdrake.pm_.c:2875
+#: ../../printerdrake.pm_.c:3170
msgid "Reading printer data..."
msgstr "Čitam podatke o ơtampaču..."
-#: ../../printerdrake.pm_.c:2243 ../../printerdrake.pm_.c:2271
-#: ../../printerdrake.pm_.c:2306
+#: ../../printerdrake.pm_.c:2436 ../../printerdrake.pm_.c:2464
+#: ../../printerdrake.pm_.c:2499
msgid "Transfer printer configuration"
msgstr "Premjeơtanje konfiguracije ơtamapča"
-#: ../../printerdrake.pm_.c:2244
+#: ../../printerdrake.pm_.c:2437
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -8764,7 +9095,7 @@ msgstr ""
"zadaci ơtampe neće biti prebačeni.\n"
"Svi redovi ne mogu biti prebačeni zbog sljedećih razloga:\n"
-#: ../../printerdrake.pm_.c:2247
+#: ../../printerdrake.pm_.c:2440
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
@@ -8772,7 +9103,7 @@ msgstr ""
"CUPS ne podrĆŸava ĆĄtampače na Novell serverima ili ĆĄtampačekoji ĆĄalju podatke "
"u komandama slobodnog oblika.\n"
-#: ../../printerdrake.pm_.c:2249
+#: ../../printerdrake.pm_.c:2442
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
@@ -8780,11 +9111,11 @@ msgstr ""
"PDQ podrĆŸava samo lokalne ĆĄtampače, udaljene LPD ĆĄtampačei Socket/TCP "
"ơtampače.\n"
-#: ../../printerdrake.pm_.c:2251
+#: ../../printerdrake.pm_.c:2444
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr "LPD i LPRng ne podrĆŸavaju IPP ĆĄtampače.\n"
-#: ../../printerdrake.pm_.c:2253
+#: ../../printerdrake.pm_.c:2446
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
@@ -8792,7 +9123,7 @@ msgstr ""
"Pored toga, redovi koji nisu kreirani ovim programom ili sa \"foomatic-"
"configure\" ne mogu biti premjeĆĄteni."
-#: ../../printerdrake.pm_.c:2254
+#: ../../printerdrake.pm_.c:2447
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
@@ -8802,7 +9133,7 @@ msgstr ""
"Također ơtampači konfigurisani sa PPD datotekama koje su osigurali njihovi "
"proizvođači ili sa vlastitim CUPS drajverima ne mogu biti prebačeni."
-#: ../../printerdrake.pm_.c:2255
+#: ../../printerdrake.pm_.c:2448
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
@@ -8812,15 +9143,15 @@ msgstr ""
"Označite ơtampače koje ćete prebacivati i kliknite na \n"
"\"Prebaci\"."
-#: ../../printerdrake.pm_.c:2258
+#: ../../printerdrake.pm_.c:2451
msgid "Do not transfer printers"
msgstr "Nemoj prebacivati ơtampače"
-#: ../../printerdrake.pm_.c:2259 ../../printerdrake.pm_.c:2276
+#: ../../printerdrake.pm_.c:2452 ../../printerdrake.pm_.c:2469
msgid "Transfer"
msgstr "Prebaci"
-#: ../../printerdrake.pm_.c:2272
+#: ../../printerdrake.pm_.c:2465
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -8831,11 +9162,11 @@ msgstr ""
"Kliknite na \"Prebaci\" da to prepiĆĄete.\n"
"MoĆŸete također unijeti novo ime ili preskočiti ovaj ĆĄtampač."
-#: ../../printerdrake.pm_.c:2280
+#: ../../printerdrake.pm_.c:2473
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr "Naziv ơtampača bi se trebao sastojati od slova, brojeva i donje linije"
-#: ../../printerdrake.pm_.c:2285
+#: ../../printerdrake.pm_.c:2478
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
@@ -8844,16 +9175,16 @@ msgstr ""
"Ơtampač \"%s\" već postoji,\n"
"da li sigurno ĆŸelite prepisati ovu konfiguraciju?"
-#: ../../printerdrake.pm_.c:2293
+#: ../../printerdrake.pm_.c:2486
msgid "New printer name"
msgstr "Novo ime ơtampača"
-#: ../../printerdrake.pm_.c:2296
+#: ../../printerdrake.pm_.c:2489
#, c-format
msgid "Transferring %s..."
msgstr "Prebacujem %s ..."
-#: ../../printerdrake.pm_.c:2307
+#: ../../printerdrake.pm_.c:2500
#, c-format
msgid ""
"You have transferred your former default printer (\"%s\"), Should it be also "
@@ -8862,29 +9193,29 @@ msgstr ""
"Prebacili ste vaơ bivơi podrazumjevani ơtampač (\"%s\"),Da li će to također "
"biti podrazumjevani ơtampač podnovim sistemom ơtampe %s?"
-#: ../../printerdrake.pm_.c:2316
+#: ../../printerdrake.pm_.c:2510
msgid "Refreshing printer data..."
msgstr "OsvjeĆŸavam podatke o ĆĄtampaču..."
-#: ../../printerdrake.pm_.c:2324 ../../printerdrake.pm_.c:2395
-#: ../../printerdrake.pm_.c:2407
+#: ../../printerdrake.pm_.c:2518 ../../printerdrake.pm_.c:2590
+#: ../../printerdrake.pm_.c:2602
msgid "Configuration of a remote printer"
msgstr "Podeơavanje udaljenog ơtampača"
-#: ../../printerdrake.pm_.c:2325
+#: ../../printerdrake.pm_.c:2519
msgid "Starting network..."
msgstr "Pokrećem mreĆŸu..."
-#: ../../printerdrake.pm_.c:2359 ../../printerdrake.pm_.c:2363
-#: ../../printerdrake.pm_.c:2365
+#: ../../printerdrake.pm_.c:2554 ../../printerdrake.pm_.c:2558
+#: ../../printerdrake.pm_.c:2560
msgid "Configure the network now"
msgstr "Sada podesite mreĆŸu"
-#: ../../printerdrake.pm_.c:2360
+#: ../../printerdrake.pm_.c:2555
msgid "Network functionality not configured"
msgstr "MreĆŸna funkcionalnost nije podeĆĄena"
-#: ../../printerdrake.pm_.c:2361
+#: ../../printerdrake.pm_.c:2556
msgid ""
"You are going to configure a remote printer. This needs working network "
"access, but your network is not configured yet. If you go on without network "
@@ -8896,11 +9227,11 @@ msgstr ""
"mreĆŸe, nećete moći koristiti ĆĄtampač koji sada podeĆĄavate. Kako ĆŸelite da "
"nastavimo?"
-#: ../../printerdrake.pm_.c:2364
+#: ../../printerdrake.pm_.c:2559
msgid "Go on without configuring the network"
msgstr "Nastavi bez podeĆĄavanja mreĆŸe"
-#: ../../printerdrake.pm_.c:2397
+#: ../../printerdrake.pm_.c:2592
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -8915,7 +9246,7 @@ msgstr ""
"\"MreĆŸa i Internet\"/\"Konekcija\", a zatim podesite ĆĄtampač, ponovo "
"koristeći Mandrake Kontrolni centar, sekcija \"Hardver\"/\"Ơtampač\""
-#: ../../printerdrake.pm_.c:2398
+#: ../../printerdrake.pm_.c:2593
msgid ""
"The network access was not running and could not be started. Please check "
"your configuration and your hardware. Then try to configure your remote "
@@ -8925,24 +9256,24 @@ msgstr ""
"vaĆĄu konfiguraciju i vaĆĄ hardware. Onda ponovo pokuĆĄajte podesiti udaljeni "
"ơtampač."
-#: ../../printerdrake.pm_.c:2408
+#: ../../printerdrake.pm_.c:2603
msgid "Restarting printing system..."
msgstr "Restartujem sistem za ĆĄtampu ..."
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2641
msgid "high"
msgstr "visok"
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2641
msgid "paranoid"
msgstr "paranoičan"
-#: ../../printerdrake.pm_.c:2447
+#: ../../printerdrake.pm_.c:2642
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr "Instaliram sistem za ĆĄtampu na sigurnosnom nivou: %s"
-#: ../../printerdrake.pm_.c:2448
+#: ../../printerdrake.pm_.c:2643
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -8966,11 +9297,11 @@ msgstr ""
"\n"
"Da li zaista ĆŸelite podesiti ĆĄtampanje na ovom računaru?"
-#: ../../printerdrake.pm_.c:2480
+#: ../../printerdrake.pm_.c:2675
msgid "Starting the printing system at boot time"
msgstr "Pokrećem sistem za ơtampu tokom boota"
-#: ../../printerdrake.pm_.c:2481
+#: ../../printerdrake.pm_.c:2676
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -8990,75 +9321,72 @@ msgstr ""
"\n"
"Da li ĆŸelite da ponovo uključite automatsko pokretanje sistema za ĆĄtampu?"
-#: ../../printerdrake.pm_.c:2504 ../../printerdrake.pm_.c:2544
-#: ../../printerdrake.pm_.c:2581 ../../printerdrake.pm_.c:2621
-#: ../../printerdrake.pm_.c:2733
+#: ../../printerdrake.pm_.c:2700 ../../printerdrake.pm_.c:2741
+#: ../../printerdrake.pm_.c:2780 ../../printerdrake.pm_.c:2822
+#: ../../printerdrake.pm_.c:2943
msgid "Checking installed software..."
msgstr "Provjeravam instalirani software..."
-#: ../../printerdrake.pm_.c:2548
+#: ../../printerdrake.pm_.c:2746
msgid "Removing LPRng..."
msgstr "Uklanjam LPRng..."
-#: ../../printerdrake.pm_.c:2585
+#: ../../printerdrake.pm_.c:2785
msgid "Removing LPD..."
msgstr "Uklanjam LPD..."
-#: ../../printerdrake.pm_.c:2657
+#: ../../printerdrake.pm_.c:2858
msgid "Select Printer Spooler"
msgstr "Izaberite spooler ơtampača"
-#: ../../printerdrake.pm_.c:2658
+#: ../../printerdrake.pm_.c:2859
msgid "Which printing system (spooler) do you want to use?"
msgstr "Koji sistem ĆĄtampanja (spooler) ĆŸelite koristiti?"
-#: ../../printerdrake.pm_.c:2691
+#: ../../printerdrake.pm_.c:2895
#, fuzzy, c-format
msgid "Configuring printer \"%s\"..."
msgstr "Podeơavam ơtampač \"%s\"..."
-#: ../../printerdrake.pm_.c:2704
+#: ../../printerdrake.pm_.c:2909
msgid "Installing Foomatic..."
msgstr "Instaliram Foomatic..."
-#: ../../printerdrake.pm_.c:2769 ../../printerdrake.pm_.c:2808
-#: ../../printerdrake.pm_.c:3192 ../../printerdrake.pm_.c:3262
+#: ../../printerdrake.pm_.c:2979 ../../printerdrake.pm_.c:3020
+#: ../../printerdrake.pm_.c:3417 ../../printerdrake.pm_.c:3490
msgid "Printer options"
msgstr "Opcije ơtampača"
-#: ../../printerdrake.pm_.c:2778
-msgid "Preparing PrinterDrake..."
+#: ../../printerdrake.pm_.c:2989
+#, fuzzy
+msgid "Preparing Printerdrake..."
msgstr "Pripremam PrinterDrake..."
-#: ../../printerdrake.pm_.c:2795 ../../printerdrake.pm_.c:3349
+#: ../../printerdrake.pm_.c:3007 ../../printerdrake.pm_.c:3580
msgid "Configuring applications..."
msgstr "PodeĆĄavam aplikacije..."
-#: ../../printerdrake.pm_.c:2815
+#: ../../printerdrake.pm_.c:3027
msgid "Would you like to configure printing?"
msgstr "Da li ĆŸelite podesiti ĆĄtampanje?"
-#: ../../printerdrake.pm_.c:2827
+#: ../../printerdrake.pm_.c:3039
msgid "Printing system: "
msgstr "Sistem ĆĄtampe: "
-#: ../../printerdrake.pm_.c:2875
-msgid "Printerdrake"
-msgstr "Printerdrake"
-
-#: ../../printerdrake.pm_.c:2879
+#: ../../printerdrake.pm_.c:3099
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; to view information about it; "
"or to make a printer on a remote CUPS server available for Star Office/"
-"OpenOffice.org."
+"OpenOffice.org/GIMP."
msgstr ""
"Sljedeći ơtampači su podeơeni. Dvokliknite na ơtampač da promjenite njegove "
"postavke; da ga učinite podrazumjevanim ơtampačem; da vidite informacije o "
"njemu; ili da učinite ơtampač na udaljenom CUPS serveru upotrebljivim iz "
-"Star Office/OpenOffice.org-a."
+"Star Office/OpenOffice.org/GIMP-a."
-#: ../../printerdrake.pm_.c:2880
+#: ../../printerdrake.pm_.c:3100
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; or to view information about "
@@ -9068,29 +9396,29 @@ msgstr ""
"postavki; ako ga ĆŸelite učiniti podrazumjevanim ĆĄtampačem; ili da biste "
"vidjeli informacije o njemu."
-#: ../../printerdrake.pm_.c:2906
+#: ../../printerdrake.pm_.c:3127
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr ""
"OsvjeĆŸi listu ĆĄtampača (kako bi bili prikazani svi dostupni CUPS ĆĄtampači)"
-#: ../../printerdrake.pm_.c:2924
+#: ../../printerdrake.pm_.c:3145
msgid "Change the printing system"
msgstr "Promjenite sistem ĆĄtampe"
-#: ../../printerdrake.pm_.c:2929 ../../standalone/drakconnect_.c:277
+#: ../../printerdrake.pm_.c:3150 ../../standalone/drakconnect_.c:277
msgid "Normal Mode"
msgstr "Normalni mod"
-#: ../../printerdrake.pm_.c:3085 ../../printerdrake.pm_.c:3135
-#: ../../printerdrake.pm_.c:3343
+#: ../../printerdrake.pm_.c:3310 ../../printerdrake.pm_.c:3360
+#: ../../printerdrake.pm_.c:3573
msgid "Do you want to configure another printer?"
msgstr "Ćœelite li podesiti joĆĄ jedan ĆĄtampač?"
-#: ../../printerdrake.pm_.c:3170
+#: ../../printerdrake.pm_.c:3395
msgid "Modify printer configuration"
msgstr "Izmjeni konfiguraciju ơtampača"
-#: ../../printerdrake.pm_.c:3172
+#: ../../printerdrake.pm_.c:3397
#, c-format
msgid ""
"Printer %s\n"
@@ -9099,100 +9427,102 @@ msgstr ""
"Ơtampač %s\n"
"Ć ta ĆŸelite da izmjenite na ovom ĆĄtampaču?"
-#: ../../printerdrake.pm_.c:3176
+#: ../../printerdrake.pm_.c:3401
msgid "Do it!"
msgstr "Uradi!"
-#: ../../printerdrake.pm_.c:3181 ../../printerdrake.pm_.c:3236
+#: ../../printerdrake.pm_.c:3406 ../../printerdrake.pm_.c:3461
msgid "Printer connection type"
msgstr "Tip konekcije ơtampača"
-#: ../../printerdrake.pm_.c:3182 ../../printerdrake.pm_.c:3240
+#: ../../printerdrake.pm_.c:3407 ../../printerdrake.pm_.c:3465
msgid "Printer name, description, location"
msgstr "Naziv ơtampača, opis, lokacija"
-#: ../../printerdrake.pm_.c:3184 ../../printerdrake.pm_.c:3255
+#: ../../printerdrake.pm_.c:3409 ../../printerdrake.pm_.c:3483
msgid "Printer manufacturer, model, driver"
msgstr "Proizvođač ơtampača, model, drajver"
-#: ../../printerdrake.pm_.c:3185 ../../printerdrake.pm_.c:3256
+#: ../../printerdrake.pm_.c:3410 ../../printerdrake.pm_.c:3484
msgid "Printer manufacturer, model"
msgstr "Proizvođač ơtampača, model"
-#: ../../printerdrake.pm_.c:3194 ../../printerdrake.pm_.c:3266
+#: ../../printerdrake.pm_.c:3419 ../../printerdrake.pm_.c:3494
msgid "Set this printer as the default"
msgstr "Podesi ơtampač kao podrazumjevani"
-#: ../../printerdrake.pm_.c:3196 ../../printerdrake.pm_.c:3271
-msgid "Add this printer to Star Office/OpenOffice.org"
-msgstr "Dodaj ovaj ơtampač u Star Office/OpenOffice.org"
+#: ../../printerdrake.pm_.c:3421 ../../printerdrake.pm_.c:3499
+msgid "Add this printer to Star Office/OpenOffice.org/GIMP"
+msgstr "Dodaj ovaj ơtampač u Star Office/OpenOffice.org/GIMP"
-#: ../../printerdrake.pm_.c:3197 ../../printerdrake.pm_.c:3280
-msgid "Remove this printer from Star Office/OpenOffice.org"
+#: ../../printerdrake.pm_.c:3422 ../../printerdrake.pm_.c:3508
+msgid "Remove this printer from Star Office/OpenOffice.org/GIMP"
msgstr "Ukloni ovaj ơtampač iz Star/Open Offica"
-#: ../../printerdrake.pm_.c:3198 ../../printerdrake.pm_.c:3289
+#: ../../printerdrake.pm_.c:3423 ../../printerdrake.pm_.c:3517
msgid "Print test pages"
msgstr "Ć tampaj testnu stranicu"
-#: ../../printerdrake.pm_.c:3199 ../../printerdrake.pm_.c:3291
+#: ../../printerdrake.pm_.c:3424 ../../printerdrake.pm_.c:3519
msgid "Know how to use this printer"
msgstr "Saznaj kako koristiti ovaj ơtampač"
-#: ../../printerdrake.pm_.c:3201 ../../printerdrake.pm_.c:3293
+#: ../../printerdrake.pm_.c:3426 ../../printerdrake.pm_.c:3521
msgid "Remove printer"
msgstr "Ukloni ơtampač"
-#: ../../printerdrake.pm_.c:3245
+#: ../../printerdrake.pm_.c:3472
#, fuzzy, c-format
msgid "Removing old printer \"%s\"..."
msgstr "Uklanjam stari ơtampač \"%s\" ..."
-#: ../../printerdrake.pm_.c:3269
+#: ../../printerdrake.pm_.c:3497
msgid "Default printer"
msgstr "Podrazumjevani ơtampač"
-#: ../../printerdrake.pm_.c:3270
+#: ../../printerdrake.pm_.c:3498
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr "Ơtampač \"%s\" je sada podeơen kao podrazumjevani ơtampač."
-#: ../../printerdrake.pm_.c:3274 ../../printerdrake.pm_.c:3277
-msgid "Adding printer to Star Office/OpenOffice.org"
-msgstr "Dodajem ơtampač u Star Office/OpenOffice.org"
+#: ../../printerdrake.pm_.c:3502 ../../printerdrake.pm_.c:3505
+msgid "Adding printer to Star Office/OpenOffice.org/GIMP"
+msgstr "Dodajem ơtampač u Star Office/OpenOffice.org/GIMP"
-#: ../../printerdrake.pm_.c:3275
+#: ../../printerdrake.pm_.c:3503
#, c-format
msgid ""
-"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
-msgstr "Ơtampač \"%s\" je uspjeơno dodan u Star Office/OpenOffice.org."
+"The printer \"%s\" was successfully added to Star Office/OpenOffice.org/GIMP."
+msgstr "Ơtampač \"%s\" je uspjeơno dodan u Star Office/OpenOffice.org/GIMP."
-#: ../../printerdrake.pm_.c:3278
+#: ../../printerdrake.pm_.c:3506
#, c-format
-msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
-msgstr "Nisam uspio dodati ơtampač \"%s\" u Star Office/OpenOffice.org."
+msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org/GIMP."
+msgstr "Nisam uspio dodati ơtampač \"%s\" u Star Office/OpenOffice.org/GIMP."
-#: ../../printerdrake.pm_.c:3283 ../../printerdrake.pm_.c:3286
-msgid "Removing printer from Star Office/OpenOffice.org"
+#: ../../printerdrake.pm_.c:3511 ../../printerdrake.pm_.c:3514
+msgid "Removing printer from Star Office/OpenOffice.org/GIMP"
msgstr "Uklanjam ơtampač iz Star/Open Offica"
-#: ../../printerdrake.pm_.c:3284
+#: ../../printerdrake.pm_.c:3512
#, c-format
msgid ""
-"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
+"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org/"
+"GIMP."
msgstr "Ơtampač \"%s\" je uspjeơno uklonjen iz Star/Open Offica."
-#: ../../printerdrake.pm_.c:3287
+#: ../../printerdrake.pm_.c:3515
#, c-format
-msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
+msgid ""
+"Failed to remove the printer \"%s\" from Star Office/OpenOffice.org/GIMP."
msgstr "Nisam uspio ukloniti ơtampač \"%s\" iz Star/Open Offica."
-#: ../../printerdrake.pm_.c:3295
+#: ../../printerdrake.pm_.c:3523
#, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr "Da li ĆŸelite da uklonite ĆĄtampač \"%s\"?"
-#: ../../printerdrake.pm_.c:3297
+#: ../../printerdrake.pm_.c:3527
#, fuzzy, c-format
msgid "Removing printer \"%s\"..."
msgstr "Uklanjam ơtampač \"%s\" ..."
@@ -9600,7 +9930,7 @@ msgstr "Internet"
msgid "File sharing"
msgstr "Dijeljenje datoteka"
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1669
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1744
msgid "System"
msgstr "Sistem"
@@ -9653,15 +9983,17 @@ msgstr "Start"
msgid "Stop"
msgstr "Stop"
-#: ../../share/advertising/00-thanks.pl_.c:9
-msgid "Thank you for choosing Mandrake Linux 8.2"
-msgstr "Hvala vam ĆĄto ste odabrali Mandrake Linux 8.2"
+#: ../../share/advertising/01-thanks.pl_.c:9
+msgid "Thank you for choosing Mandrake Linux 9.0"
+msgstr "Hvala vam ĆĄto ste odabrali Mandrake Linux 9.0"
-#: ../../share/advertising/00-thanks.pl_.c:10
+#: ../../share/advertising/01-thanks.pl_.c:10
+#, fuzzy
msgid "Welcome to the Open Source world"
msgstr "Dobro doĆĄli u svijet otvorenog izvornog koda"
-#: ../../share/advertising/00-thanks.pl_.c:11
+#: ../../share/advertising/01-thanks.pl_.c:11
+#, fuzzy
msgid ""
"The success of MandrakeSoft is based upon the principle of Free Software. "
"Your new operating system is the result of collaborative work on the part of "
@@ -9671,203 +10003,239 @@ msgstr ""
"operativni sistem je rezultat zajedničkog rada dijela Linux zajednice ơirom "
"svijeta"
-#: ../../share/advertising/01-gnu.pl_.c:9
-msgid "Join the Free Software world"
+#: ../../share/advertising/02-community.pl_.c:9
+#, fuzzy
+msgid "Get involved in the Free Software world"
msgstr "PridruĆŸite se svijetu Slobodnog softvera"
-#: ../../share/advertising/01-gnu.pl_.c:10
+#: ../../share/advertising/02-community.pl_.c:10
+msgid "Want to know more about the Open Source community?"
+msgstr ""
+
+#: ../../share/advertising/02-community.pl_.c:11
+#, fuzzy
msgid ""
-"Get to know the Open Source community and become a member. Learn, teach, and "
-"help others by joining the many discussion forums that you will find in our "
-"\"Community\" webpages"
+"To share your own knowledge and help build Linux tools, join the discussions "
+"forum you'll find on our \"Community\" webpages"
msgstr ""
"Upoznajte Open Source zajednicu i postanite njen član. Učite, podučavajte i "
"pomozite drugima tako ơto ćete pristupiti mnogim forumima za diskusiju koje "
"ćete naći na naơim \"Community\" stranicama"
-#: ../../share/advertising/02-internet.pl_.c:9
-msgid "Internet and Messaging"
-msgstr "Internet i razmjena poruka"
+#: ../../share/advertising/03-internet.pl_.c:9
+#, fuzzy
+msgid "Get the most from the Internet"
+msgstr "Spoji se na Internet"
-#: ../../share/advertising/02-internet.pl_.c:10
+#: ../../share/advertising/03-internet.pl_.c:10
+#, fuzzy
msgid ""
-"Mandrake Linux 8.2 provides the best software to access everything the "
-"Internet has to offer: Surf the web & view animations with Mozilla and "
-"Konqueror, exchange email & organize your personal information with "
-"Evolution and Kmail, and much more"
+"Mandrake Linux 9.0 has selected the best software for you. Surf the Web and "
+"view animations with Mozilla and Konqueror, or read your mail and handle "
+"your personal information with Evolution and Kmail"
msgstr ""
"Mandrake Linux 8.2 pruĆŸa najbolji softver za pristup svemu ĆĄto Internet "
"pruĆŸa: PretraĆŸujte web i pregledajte animacije pomoću Mozilla-e i "
"Konquerora, razmjenjujte email i organizirajte vaơe lične podatke pomoću "
"Evolution i KMail-a, i mnogo drugog"
-#: ../../share/advertising/03-graphic.pl_.c:9
-msgid "Multimedia and Graphics"
-msgstr "Multimedija i grafika"
+#: ../../share/advertising/04-multimedia.pl_.c:9
+msgid "Discover the most up-to-date graphics and multimedia tools!"
+msgstr ""
-#: ../../share/advertising/03-graphic.pl_.c:10
+#: ../../share/advertising/04-multimedia.pl_.c:10
+msgid "Push multimedia to its limits!"
+msgstr ""
+
+#: ../../share/advertising/04-multimedia.pl_.c:11
+#, fuzzy
msgid ""
-"Mandrake Linux 8.2 lets you push your multimedia computer to its limits! Use "
-"the latest software to play music and audio files, edit and organize your "
-"images and photos, watch TV and videos, and much more"
+"Mandrake Linux 9.0 enables you to use the very latest software to play audio "
+"files, edit and handle your images or photos, and play videos"
msgstr ""
"Mandrake Linux 8.2 vam omogućuje da potjerate vaơ multimedijalni računar do "
"krajnjih granica! Koristite najnoviji softver za sluĆĄanje muzike i audio "
"datoteka, mijenjajte i organizujte vaĆĄe slike i fotografije, gledajte TV i "
"video-snimke i mnogo drugog"
-#: ../../share/advertising/04-develop.pl_.c:9
-msgid "Development"
-msgstr "Programiranje"
+#: ../../share/advertising/05-games.pl_.c:9
+msgid "Games"
+msgstr "Igre"
-#: ../../share/advertising/04-develop.pl_.c:10
+#: ../../share/advertising/05-games.pl_.c:10
+#, fuzzy
msgid ""
-"Mandrake Linux 8.2 is the ultimate development platform. Discover the power "
-"of the GNU gcc compiler as well as the best Open Source development "
-"environments"
+"Mandrake Linux 9.0 provides the best Open Source games - arcade, action, "
+"cards, sports, strategy..."
msgstr ""
-"Mandrake Linux 8.2 je najbolja platforma za razvoj aplikacija. Otkrijte moć "
-"GNU gcc kompajlera kao i najboljih razvojnih okolina koje su Open Source"
+"Mandrake Linux 8.2 pruĆŸa najbolje Open Source igre - arkadne, akcione, "
+"karte, sportovi, strategije, ..."
-#: ../../share/advertising/05-contcenter.pl_.c:9
-#: ../../standalone/drakbug_.c:69
+#: ../../share/advertising/06-mcc.pl_.c:9 ../../standalone/drakbug_.c:69
msgid "Mandrake Control Center"
msgstr "Mandrake Kontrolni centar"
-#: ../../share/advertising/05-contcenter.pl_.c:10
+#: ../../share/advertising/06-mcc.pl_.c:10
+#, fuzzy
msgid ""
-"The Mandrake Linux 8.2 Control Center is a one-stop location for fully "
-"customizing and configuring your Mandrake system"
+"Mandrake Linux 9.0 provides a powerful tool to fully customize and configure "
+"your machine"
msgstr ""
"Mandrake Linux 8.2 Kontrolni centar je jedinstvena lokacija za puno "
"prilagođavanje i podeơavanje vaơeg Mandrake sistema"
-#: ../../share/advertising/06-user.pl_.c:9
+#: ../../share/advertising/07-desktop.pl_.c:9
msgid "User interfaces"
msgstr "Korisnički okoliơ"
-#: ../../share/advertising/06-user.pl_.c:10
+#: ../../share/advertising/07-desktop.pl_.c:10
+msgid ""
+"Mandrake Linux 9.0 provides 11 user interfaces which can be fully modified: "
+"KDE 3, Gnome 2, WindowMaker..."
+msgstr ""
+
+#: ../../share/advertising/08-development.pl_.c:9
+#, fuzzy
+msgid "Development simplified"
+msgstr "Programiranje"
+
+#: ../../share/advertising/08-development.pl_.c:10
+msgid "Mandrake Linux 9.0 is the ultimate development platform"
+msgstr ""
+
+#: ../../share/advertising/08-development.pl_.c:11
+#, fuzzy
msgid ""
-"Mandrake Linux 8.2 provides 11 different graphical desktop environments and "
-"window managers to choose from including GNOME 1.4, KDE 2.2.2, Window Maker "
-"0.8, and the rest"
+"Use the full power of the GNU gcc 3 compiler as well as the best Open Source "
+"development environments"
msgstr ""
-"Mandrake Linux 8.2 nudi vam na izbor 11 različitih grafičkih desktop okolina "
-"i window managera uključujući GNOME 1.4, KDE 2.2.2, Window Maker 0.8 i druge"
+"Mandrake Linux 8.2 je najbolja platforma za razvoj aplikacija. Otkrijte moć "
+"GNU gcc kompajlera kao i najboljih razvojnih okolina koje su Open Source"
-#: ../../share/advertising/07-server.pl_.c:9
-msgid "Server Software"
-msgstr "Serverski softver"
+#: ../../share/advertising/09-server.pl_.c:9
+msgid "Turn your machine into a reliable server"
+msgstr ""
-#: ../../share/advertising/07-server.pl_.c:10
+#: ../../share/advertising/09-server.pl_.c:10
+#, fuzzy
msgid ""
-"Transform your machine into a powerful server with just a few clicks of the "
-"mouse: Web server, email, firewall, router, file and print server, ..."
+"Transform your machine into a powerful server in a few clicks of your mouse: "
+"Web server, mail, firewall, router, file and print server..."
msgstr ""
"Pretvorite vaơ računar u moćan server sa svega nekoliko klikova miơem: Web "
"server, email, firewall, file i print server, ..."
-#: ../../share/advertising/08-games.pl_.c:9
-msgid "Games"
-msgstr "Igre"
+#: ../../share/advertising/10-mnf.pl_.c:9
+msgid "Optimize your security"
+msgstr ""
-#: ../../share/advertising/08-games.pl_.c:10
+#: ../../share/advertising/10-mnf.pl_.c:10
msgid ""
-"Mandrake Linux 8.2 provides the best Open Source games - arcade, action, "
-"cards, sports, strategy, ..."
+"The MandrakeSecurity range includes the Multi Network Firewall product (M.N."
+"F.)"
+msgstr ""
+
+#: ../../share/advertising/10-mnf.pl_.c:11
+msgid ""
+"This firewall product includes network features which allow you to fulfill "
+"all your security needs"
+msgstr ""
+
+#: ../../share/advertising/10-mnf.pl_.c:12
+msgid "This product is available on MandrakeStore website"
msgstr ""
-"Mandrake Linux 8.2 pruĆŸa najbolje Open Source igre - arkadne, akcione, "
-"karte, sportovi, strategije, ..."
-#: ../../share/advertising/09-MDKcampus.pl_.c:9
-msgid "MandrakeCampus"
-msgstr "MandrakeCampus"
+#: ../../share/advertising/11-mdkstore.pl_.c:9
+msgid "The official MandrakeSoft store"
+msgstr ""
-#: ../../share/advertising/09-MDKcampus.pl_.c:10
+#: ../../share/advertising/11-mdkstore.pl_.c:10
+#, fuzzy
msgid ""
-"Would you like to learn Linux simply, quickly, and for free? MandrakeSoft "
-"provides free Linux training, as well as a way to test your progress, at "
-"MandrakeCampus -- our online training center"
+"Our full range of Linux solutions, as well as special offers on products and "
+"'goodies', are available online at our e-store"
msgstr ""
-"Ćœelite li naučiti Linux jednostavno, brzo i besplatno? MandrakeSoft vam nudi "
-"besplatno učenje Linuxa kao i način za testiranje vaơeg napretka na "
-"MandrakeCampus-u -- naĆĄem online centru za obuku"
+"Čitav raspon Linux rjeơenja, kao i posebne ponude za proizvode i "
+"'potrepĆĄtine', dostupni su u naĆĄoj online radnji"
-#: ../../share/advertising/10-MDKexpert.pl_.c:9
-msgid "MandrakeExpert"
-msgstr "MandrakeExpert"
+#: ../../share/advertising/12-mdkstore.pl_.c:9
+msgid "Strategic partners"
+msgstr ""
-#: ../../share/advertising/10-MDKexpert.pl_.c:10
+#: ../../share/advertising/12-mdkstore.pl_.c:10
msgid ""
-"Quality support from the Linux Community, and from MandrakeSoft, is just "
-"around the corner. And if you're already a Linux veteran, become an \"Expert"
-"\" and share your knowledge at our support website"
+"MandrakeSoft works alongside a selection of companies offering professional "
+"solutions compatible with Mandrake Linux; a list of these partners is "
+"available on the MandrakeStore"
msgstr ""
-"Kvalitetna podrĆĄka od strane Linux zajednice i MandrakeSofta nalazi se odmah "
-"iza ugla. A ako ste već Linux veteran, postanite \"Expert\" i dijelite vaơe "
-"znanje na naĆĄem web sajtu za podrĆĄku"
-#: ../../share/advertising/11-consul.pl_.c:9
-msgid "MandrakeConsulting"
-msgstr "MandrakeConsulting"
+#: ../../share/advertising/13-mdkcampus.pl_.c:9
+msgid "Discover MandrakeSoft's training catalogue Linux-Campus"
+msgstr ""
-#: ../../share/advertising/11-consul.pl_.c:10
+#: ../../share/advertising/13-mdkcampus.pl_.c:10
msgid ""
-"For all of your IT projects, our consultants are ready to analyze your "
-"requirements and offer a customized solution. Benefit from MandrakeSoft's "
-"vast experience as a Linux producer to provide a true IT alternative for "
-"your business organization"
+"The training program has been create to respond to the needs of both users "
+"and experts (Network and System administrations)"
msgstr ""
-"Za sve vaĆĄe IT projekte, naĆĄi konsultanti su spremni da analiziraju vaĆĄe "
-"potrebe i ponude prilagođeno rjeơenje. Iskoristite veliko iskustvo "
-"MandrakeSofta kao proizvođača Linux rjeơenja kako biste ponudili pravu IT "
-"alternativu za vaĆĄ biznis"
-#: ../../share/advertising/12-MDKstore.pl_.c:9
-msgid "MandrakeStore"
-msgstr "MandrakeStore"
+#: ../../share/advertising/13-mdkcampus.pl_.c:11
+msgid "Certify yourself on Linux"
+msgstr ""
-#: ../../share/advertising/12-MDKstore.pl_.c:10
+#: ../../share/advertising/13-mdkcampus.pl_.c:12
msgid ""
-"A full range of Linux solutions, as well as special offers on products and "
-"'goodies', are available online at our e-store"
+"Whether you choose to teach yourself online or via our network of training "
+"partners, the Linux-Campus catalogue prepares you for the acknowledged LPI "
+"certification program (worldwide professional technical certification)"
msgstr ""
-"Čitav raspon Linux rjeơenja, kao i posebne ponude za proizvode i "
-"'potrepĆĄtine', dostupni su u naĆĄoj online radnji"
-#: ../../share/advertising/13-Nvert.pl_.c:9
+#: ../../share/advertising/14-mdkexpert.pl_.c:9
+#, fuzzy
+msgid "Become a MandrakeExpert"
+msgstr "MandrakeExpert"
+
+#: ../../share/advertising/14-mdkexpert.pl_.c:10
msgid ""
-"For more information on MandrakeSoft's Professional Services and commercial "
-"offerings, please see the following web page:"
+"Find the solutions to your problems via MandrakeSoft's online support "
+"platform"
msgstr ""
-"Za viĆĄe informacija o MandrakeSoftovim profesionalnim uslugama i "
-"komercijalnoj ponudi, molimo posjetite sljedeću web stranicu:"
-#: ../../share/advertising/13-Nvert.pl_.c:11
-msgid "http://www.mandrakesoft.com/sales/contact"
-msgstr "http://www.mandrakesoft.com/sales/contact"
+#: ../../share/advertising/14-mdkexpert.pl_.c:11
+msgid ""
+"Join the MandrakeSoft support teams and the Linux Community online to share "
+"your knowledge and help others by becoming a recognized Expert on the online "
+"technical support website:"
+msgstr ""
+
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:9
+#, fuzzy
+msgid "MandrakeExpert Corporate"
+msgstr "MandrakeExpert"
+
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:10
+msgid "An online platform to respond to company's specific support needs"
+msgstr ""
-#: ../../standalone.pm_.c:40
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:11
+msgid ""
+"All incidents will be followed up by a single qualified MandrakeSoft "
+"technical expert."
+msgstr ""
+
+#: ../../standalone.pm_.c:41
msgid "Installing packages..."
msgstr "Instaliram pakete..."
-#: ../../standalone/XFdrake_.c:143
+#: ../../standalone/XFdrake_.c:145
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "Molimo izvrĆĄite logout i zatim koristitite Ctrl-Alt-BackSpace"
-#: ../../standalone/XFdrake_.c:147
+#: ../../standalone/XFdrake_.c:149
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "Molimo ponovo se prijavite na %s radi aktiviranja izmjena"
-#: ../../standalone/diskdrake_.c:81
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I'll try to go on blanking bad partitions"
-msgstr ""
-"Ne mogu čitati vaơu tabelu particija, previơe je oơtećena za mene :(\n"
-"Pokuơaću izbrisati loơe particije"
-
#: ../../standalone/drakTermServ_.c:188
#, fuzzy
msgid "Mandrake Terminal Server Configuration"
@@ -9911,12 +10279,13 @@ msgstr "Dodaj korisnika"
msgid "Add/Del Clients"
msgstr "DHCP klijent"
-#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3282
-#: ../../standalone/drakbackup_.c:3315 ../../standalone/drakbackup_.c:3341
-#: ../../standalone/drakbackup_.c:3368 ../../standalone/drakbackup_.c:3395
-#: ../../standalone/drakbackup_.c:3434 ../../standalone/drakbackup_.c:3455
-#: ../../standalone/drakbackup_.c:3482 ../../standalone/drakbackup_.c:3508
-#: ../../standalone/drakbackup_.c:3533 ../../standalone/drakfont_.c:700
+#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3930
+#: ../../standalone/drakbackup_.c:3963 ../../standalone/drakbackup_.c:3989
+#: ../../standalone/drakbackup_.c:4016 ../../standalone/drakbackup_.c:4043
+#: ../../standalone/drakbackup_.c:4082 ../../standalone/drakbackup_.c:4103
+#: ../../standalone/drakbackup_.c:4130 ../../standalone/drakbackup_.c:4160
+#: ../../standalone/drakbackup_.c:4186 ../../standalone/drakbackup_.c:4211
+#: ../../standalone/drakfont_.c:700
msgid "Help"
msgstr "Pomoć"
@@ -10091,8 +10460,8 @@ msgstr ""
"\n"
"Parametri automatske instalacije su dostupni u odjeljcima lijevo"
-#: ../../standalone/drakautoinst_.c:239 ../../standalone/drakgw_.c:548
-#: ../../standalone/scannerdrake_.c:105
+#: ../../standalone/drakautoinst_.c:239 ../../standalone/drakgw_.c:484
+#: ../../standalone/scannerdrake_.c:119
msgid "Congratulations!"
msgstr "Čestitamo!"
@@ -10116,20 +10485,24 @@ msgstr "Dodaj stavku"
msgid "Remove the last item"
msgstr "Ukloniti zadnju stavku"
-#: ../../standalone/drakbackup_.c:625
+#: ../../standalone/drakbackup_.c:619
msgid "Cron not available yet as non-root"
msgstr ""
-#: ../../standalone/drakbackup_.c:731
+#: ../../standalone/drakbackup_.c:725
msgid "WARNING"
msgstr ""
-#: ../../standalone/drakbackup_.c:732
+#: ../../standalone/drakbackup_.c:726
#, fuzzy
msgid "FATAL"
msgstr "FAT"
-#: ../../standalone/drakbackup_.c:744
+#: ../../standalone/drakbackup_.c:727
+msgid "INFO"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:739
msgid ""
"\n"
" DrakBackup Report \n"
@@ -10139,7 +10512,7 @@ msgstr ""
" DrakBackup IzvjeĆĄtaj \n"
"\n"
-#: ../../standalone/drakbackup_.c:745
+#: ../../standalone/drakbackup_.c:740
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -10151,7 +10524,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:749
+#: ../../standalone/drakbackup_.c:744
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -10163,13 +10536,20 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:770 ../../standalone/drakbackup_.c:840
-#: ../../standalone/drakbackup_.c:894
+#: ../../standalone/drakbackup_.c:765 ../../standalone/drakbackup_.c:835
+#: ../../standalone/drakbackup_.c:889
#, fuzzy
msgid "Total progess"
msgstr "ukupno napredak"
-#: ../../standalone/drakbackup_.c:822
+#: ../../standalone/drakbackup_.c:788
+msgid ""
+"Sorry, perl-Expect is not installed/enabled. To use\n"
+"this feature, install perl-Expect and comment lines 772-774,\n"
+" as well as 788,789. Then uncomment line 787."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:817
#, c-format
msgid ""
"%s exists, delete?\n"
@@ -10178,16 +10558,41 @@ msgid ""
" need to purge the entry from authorized_keys on the server."
msgstr ""
-#: ../../standalone/drakbackup_.c:831
+#: ../../standalone/drakbackup_.c:826
msgid "This may take a moment to generate the keys."
msgstr ""
-#: ../../standalone/drakbackup_.c:838
+#: ../../standalone/drakbackup_.c:833
#, c-format
msgid "ERROR: Cannot spawn %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:865
+#: ../../standalone/drakbackup_.c:850
+#, c-format
+msgid "No password prompt on %s at port %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:851
+#, fuzzy, c-format
+msgid "Bad password on %s"
+msgstr "Bez ĆĄifre"
+
+#: ../../standalone/drakbackup_.c:852
+#, c-format
+msgid "Permission denied transferring %s to %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:853
+#, fuzzy, c-format
+msgid "Can't find %s on %s"
+msgstr "Ne mogu otvoriti %s: %s\n"
+
+#: ../../standalone/drakbackup_.c:856
+#, c-format
+msgid "%s not responding"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:860
#, c-format
msgid ""
"Transfer successful\n"
@@ -10198,60 +10603,65 @@ msgid ""
"without being prompted for a password."
msgstr ""
-#: ../../standalone/drakbackup_.c:908
+#: ../../standalone/drakbackup_.c:903
msgid "WebDAV remote site already in sync!"
msgstr ""
-#: ../../standalone/drakbackup_.c:912
+#: ../../standalone/drakbackup_.c:907
msgid "WebDAV transfer failed!"
msgstr ""
-#: ../../standalone/drakbackup_.c:934
+#: ../../standalone/drakbackup_.c:928
msgid "No CDR/DVDR in drive!"
msgstr ""
-#: ../../standalone/drakbackup_.c:938
+#: ../../standalone/drakbackup_.c:932
msgid "Does not appear to be recordable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:942
+#: ../../standalone/drakbackup_.c:936
msgid "Not erasable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:981
+#: ../../standalone/drakbackup_.c:975
msgid "This may take a moment to erase the media."
msgstr ""
-#: ../../standalone/drakbackup_.c:1045
+#: ../../standalone/drakbackup_.c:1060
msgid "Permission problem accessing CD."
msgstr ""
-#: ../../standalone/drakbackup_.c:1144 ../../standalone/drakbackup_.c:1193
+#: ../../standalone/drakbackup_.c:1087
+#, c-format
+msgid "No tape in %s!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1199 ../../standalone/drakbackup_.c:1248
msgid "Backup system files..."
msgstr "Backup-uj sistemske datoteke..."
-#: ../../standalone/drakbackup_.c:1194 ../../standalone/drakbackup_.c:1261
+#: ../../standalone/drakbackup_.c:1249 ../../standalone/drakbackup_.c:1316
msgid "Hard Disk Backup files..."
msgstr "Datoteke backup-a hard diska..."
-#: ../../standalone/drakbackup_.c:1206
+#: ../../standalone/drakbackup_.c:1261
msgid "Backup User files..."
msgstr "Backup-uj korisničke datoteke..."
-#: ../../standalone/drakbackup_.c:1207
+#: ../../standalone/drakbackup_.c:1262
msgid "Hard Disk Backup Progress..."
msgstr "Napredak backup-a hard diska..."
-#: ../../standalone/drakbackup_.c:1260
+#: ../../standalone/drakbackup_.c:1315
msgid "Backup Other files..."
msgstr "Backup-uj ostale datoteke..."
-#: ../../standalone/drakbackup_.c:1266
+#: ../../standalone/drakbackup_.c:1321
#, fuzzy
msgid "No changes to backup!"
msgstr "Koristi traku za backup"
-#: ../../standalone/drakbackup_.c:1282 ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1337 ../../standalone/drakbackup_.c:1360
#, c-format
msgid ""
"\n"
@@ -10259,16 +10669,16 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1289
+#: ../../standalone/drakbackup_.c:1344
#, fuzzy, c-format
msgid ""
-"file list sent by FTP : %s\n"
+"file list sent by FTP: %s\n"
" "
msgstr ""
-"lista datoteka poslana putem FTPa : %s\n"
+"lista datoteka poslana putem FTPa: %s\n"
" "
-#: ../../standalone/drakbackup_.c:1292
+#: ../../standalone/drakbackup_.c:1347
#, fuzzy
msgid ""
"\n"
@@ -10279,39 +10689,39 @@ msgstr ""
"(!) problem sa FTP konekcijom: Nije bilo moguće poslati vaơe backup datoteke "
"putem FTPa.\n"
-#: ../../standalone/drakbackup_.c:1310
+#: ../../standalone/drakbackup_.c:1365
msgid ""
"\n"
"Drakbackup activities via CD:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1315
+#: ../../standalone/drakbackup_.c:1370
msgid ""
"\n"
"Drakbackup activities via tape:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1324
+#: ../../standalone/drakbackup_.c:1379
#, fuzzy
msgid " Error during mail sending. \n"
msgstr "(!) GreĆĄka tokom slanja poĆĄte. \n"
-#: ../../standalone/drakbackup_.c:1346
+#: ../../standalone/drakbackup_.c:1404
msgid "Can't create catalog!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1459 ../../standalone/drakbackup_.c:1470
-#: ../../standalone/drakbackup_.c:1481 ../../standalone/drakfont_.c:1004
+#: ../../standalone/drakbackup_.c:1517 ../../standalone/drakbackup_.c:1528
+#: ../../standalone/drakfont_.c:1004
msgid "File Selection"
msgstr "Izbor datoteka"
-#: ../../standalone/drakbackup_.c:1486
+#: ../../standalone/drakbackup_.c:1556
msgid "Select the files or directories and click on 'Add'"
msgstr "Izaberite datoteke ili direktorije i kliknite na 'Dodaj'"
-#: ../../standalone/drakbackup_.c:1525
+#: ../../standalone/drakbackup_.c:1600
msgid ""
"\n"
"Please check all options that you need.\n"
@@ -10319,26 +10729,26 @@ msgstr ""
"\n"
"Molimo uključite sve potrebne opcije.\n"
-#: ../../standalone/drakbackup_.c:1526
+#: ../../standalone/drakbackup_.c:1601
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
"Ove opcije mogu spasiti ili vratiti sve datoteke u vaĆĄem /etc direktoriju.\n"
-#: ../../standalone/drakbackup_.c:1527
+#: ../../standalone/drakbackup_.c:1602
#, fuzzy
msgid "Backup your System files. (/etc directory)"
msgstr "Backup sistemskih datoteka. ( /etc direktorij )"
-#: ../../standalone/drakbackup_.c:1528
+#: ../../standalone/drakbackup_.c:1603
msgid "Use incremental backup (do not replace old backups)"
msgstr "Koristi inkrementalni backup (nemoj prebrisati stare backupe)"
-#: ../../standalone/drakbackup_.c:1529
+#: ../../standalone/drakbackup_.c:1604
msgid "Do not include critical files (passwd, group, fstab)"
msgstr "Zaobiđi kritične datoteke (passwd, group, fstab)"
-#: ../../standalone/drakbackup_.c:1530
+#: ../../standalone/drakbackup_.c:1605
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
@@ -10346,61 +10756,65 @@ msgstr ""
"Sa ovom opcijom bićete u mogućnosti da vratite bilo koju\n"
" verziju vaĆĄeg /etc direktorija."
-#: ../../standalone/drakbackup_.c:1547
+#: ../../standalone/drakbackup_.c:1622
msgid "Please check all users that you want to include in your backup."
msgstr "Molimo izaberite sve korisnike koje ĆŸelite uključiti u vaĆĄ backup."
-#: ../../standalone/drakbackup_.c:1574
+#: ../../standalone/drakbackup_.c:1649
msgid "Do not include the browser cache"
msgstr "Ne uključuj spremnik web preglednika"
-#: ../../standalone/drakbackup_.c:1575 ../../standalone/drakbackup_.c:1599
+#: ../../standalone/drakbackup_.c:1650 ../../standalone/drakbackup_.c:1674
msgid "Use Incremental Backups (do not replace old backups)"
msgstr "Koristi inkrementalni backup (nemoj prebrisati stare backupe)"
-#: ../../standalone/drakbackup_.c:1597 ../../standalone/drakfont_.c:1058
+#: ../../standalone/drakbackup_.c:1672 ../../standalone/drakfont_.c:1058
msgid "Remove Selected"
msgstr "Ukloni izabrano"
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:1710
msgid "Windows (FAT32)"
msgstr "Windows (FAT32)"
-#: ../../standalone/drakbackup_.c:1674
+#: ../../standalone/drakbackup_.c:1749
msgid "Users"
msgstr "Korisnici"
-#: ../../standalone/drakbackup_.c:1700
+#: ../../standalone/drakbackup_.c:1775
#, fuzzy
msgid "Use network connection to backup"
msgstr "Koristi FTP vezu za backup"
-#: ../../standalone/drakbackup_.c:1706
+#: ../../standalone/drakbackup_.c:1777
+msgid "Net Method:"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1781
msgid "Use Expect for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1707
+#: ../../standalone/drakbackup_.c:1782
msgid ""
"Create/Transfer\n"
"backup keys for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1708
+#: ../../standalone/drakbackup_.c:1783
#, fuzzy
msgid ""
" Transfer \n"
"Now"
msgstr "Prebaci"
-#: ../../standalone/drakbackup_.c:1709
+#: ../../standalone/drakbackup_.c:1784
msgid "Keys in place already"
msgstr ""
-#: ../../standalone/drakbackup_.c:1713
+#: ../../standalone/drakbackup_.c:1788
msgid "Please enter the host name or IP."
msgstr "Molimo unesite ime računara ili IP."
-#: ../../standalone/drakbackup_.c:1718
+#: ../../standalone/drakbackup_.c:1793
#, fuzzy
msgid ""
"Please enter the directory (or module) to\n"
@@ -10409,68 +10823,68 @@ msgstr ""
"Molimo unesite direktorij za\n"
" smjeơtaj backupa na ovom računaru."
-#: ../../standalone/drakbackup_.c:1723
+#: ../../standalone/drakbackup_.c:1798
msgid "Please enter your login"
msgstr "Molimo unesite vaĆĄ login"
-#: ../../standalone/drakbackup_.c:1728
+#: ../../standalone/drakbackup_.c:1803
msgid "Please enter your password"
msgstr "Molimo unesite vaĆĄu ĆĄifru"
-#: ../../standalone/drakbackup_.c:1734
+#: ../../standalone/drakbackup_.c:1809
msgid "Remember this password"
msgstr "Zapamti ovu ĆĄifru"
-#: ../../standalone/drakbackup_.c:1745
+#: ../../standalone/drakbackup_.c:1820
msgid "Need hostname, username and password!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1841
+#: ../../standalone/drakbackup_.c:1915
msgid "Use CD/DVDROM to backup"
msgstr "Koristi CD/DVDROM za backup"
-#: ../../standalone/drakbackup_.c:1844
+#: ../../standalone/drakbackup_.c:1918
msgid ""
"Please choose your CD/DVD device\n"
"(Press Enter to propogate settings to other fields.\n"
"This field isn't necessary, only a tool to fill in the form.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1849
+#: ../../standalone/drakbackup_.c:1923
#, fuzzy
msgid "Please choose your CD/DVD media size"
msgstr "Molimo izaberite vaĆĄ CD prostor"
-#: ../../standalone/drakbackup_.c:1855
+#: ../../standalone/drakbackup_.c:1929
#, fuzzy
msgid "Please check for multisession CD"
msgstr "Molim uključite ako koristite CDRW medij"
-#: ../../standalone/drakbackup_.c:1861
+#: ../../standalone/drakbackup_.c:1935
msgid "Please check if you are using CDRW media"
msgstr "Molim uključite ako koristite CDRW medij"
-#: ../../standalone/drakbackup_.c:1867
+#: ../../standalone/drakbackup_.c:1941
#, fuzzy
msgid "Please check if you want to erase your RW media (1st Session)"
msgstr "Molim uključite ako ĆŸelite obrisati vaĆĄ CDRW prije"
-#: ../../standalone/drakbackup_.c:1868
+#: ../../standalone/drakbackup_.c:1942
#, fuzzy
msgid " Erase Now "
msgstr "Prebaci"
-#: ../../standalone/drakbackup_.c:1874
+#: ../../standalone/drakbackup_.c:1948
#, fuzzy
msgid "Please check if you are using a DVDR device"
msgstr "Molim uključite ako koristite CDRW medij"
-#: ../../standalone/drakbackup_.c:1880
+#: ../../standalone/drakbackup_.c:1954
#, fuzzy
msgid "Please check if you are using a DVDRAM device"
msgstr "Molim uključite ako koristite CDRW medij"
-#: ../../standalone/drakbackup_.c:1893
+#: ../../standalone/drakbackup_.c:1967
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
@@ -10478,36 +10892,36 @@ msgstr ""
"Molim unesite naziv uređaja vaơeg CD Writera\n"
" npr: 0,1,0"
-#: ../../standalone/drakbackup_.c:1926
+#: ../../standalone/drakbackup_.c:2000
#, fuzzy
msgid "No CD device defined!"
msgstr "Izaberite datoteku"
-#: ../../standalone/drakbackup_.c:1974
+#: ../../standalone/drakbackup_.c:2048
msgid "Use tape to backup"
msgstr "Koristi traku za backup"
-#: ../../standalone/drakbackup_.c:1977
+#: ../../standalone/drakbackup_.c:2051
msgid "Please enter the device name to use for backup"
msgstr "Molim unesite ime uređaja kojeg ćete koristiti za backup"
-#: ../../standalone/drakbackup_.c:1983
+#: ../../standalone/drakbackup_.c:2057
#, fuzzy
msgid "Please check if you want to use the non-rewinding device."
msgstr "Molim uključite ako ĆŸelite obrisati vaĆĄ CDRW prije"
-#: ../../standalone/drakbackup_.c:1989
+#: ../../standalone/drakbackup_.c:2063
#, fuzzy
msgid "Please check if you want to erase your tape before the backup."
msgstr "Molim uključite ako ĆŸelite obrisati vaĆĄ CDRW prije"
-#: ../../standalone/drakbackup_.c:1995
+#: ../../standalone/drakbackup_.c:2069
#, fuzzy
msgid "Please check if you want to eject your tape after the backup."
msgstr "Molim uključite ako ĆŸelite obrisati vaĆĄ CDRW prije"
-#: ../../standalone/drakbackup_.c:2001 ../../standalone/drakbackup_.c:2074
-#: ../../standalone/drakbackup_.c:3025
+#: ../../standalone/drakbackup_.c:2075 ../../standalone/drakbackup_.c:2149
+#: ../../standalone/drakbackup_.c:3116
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
@@ -10515,57 +10929,57 @@ msgstr ""
"Molim unesite maksimalnu veličinu\n"
" dozvoljenu za Draxbackup"
-#: ../../standalone/drakbackup_.c:2066
+#: ../../standalone/drakbackup_.c:2140
#, fuzzy
msgid "Please enter the directory to save to:"
msgstr "Molimo unesite direktorij za spasiti:"
-#: ../../standalone/drakbackup_.c:2080 ../../standalone/drakbackup_.c:3031
+#: ../../standalone/drakbackup_.c:2155 ../../standalone/drakbackup_.c:3122
msgid "Use quota for backup files."
msgstr "Koristi quotu za backup datoteke."
-#: ../../standalone/drakbackup_.c:2146
+#: ../../standalone/drakbackup_.c:2221
msgid "Network"
msgstr "MreĆŸa"
-#: ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:2226
msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2156
+#: ../../standalone/drakbackup_.c:2231
msgid "HardDrive / NFS"
msgstr "HardDrive / NFS"
-#: ../../standalone/drakbackup_.c:2161
+#: ../../standalone/drakbackup_.c:2236
#, fuzzy
msgid "Tape"
msgstr "Tip"
-#: ../../standalone/drakbackup_.c:2175 ../../standalone/drakbackup_.c:2179
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2250 ../../standalone/drakbackup_.c:2254
+#: ../../standalone/drakbackup_.c:2258
msgid "hourly"
msgstr "svakog sata"
-#: ../../standalone/drakbackup_.c:2176 ../../standalone/drakbackup_.c:2180
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2251 ../../standalone/drakbackup_.c:2255
+#: ../../standalone/drakbackup_.c:2258
msgid "daily"
msgstr "dnevno"
-#: ../../standalone/drakbackup_.c:2177 ../../standalone/drakbackup_.c:2181
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2252 ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2258
msgid "weekly"
msgstr "sedmično"
-#: ../../standalone/drakbackup_.c:2178 ../../standalone/drakbackup_.c:2182
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2253 ../../standalone/drakbackup_.c:2257
+#: ../../standalone/drakbackup_.c:2258
msgid "monthly"
msgstr "mjesečno"
-#: ../../standalone/drakbackup_.c:2196
+#: ../../standalone/drakbackup_.c:2271
msgid "Use daemon"
msgstr "Koristi demon"
-#: ../../standalone/drakbackup_.c:2201
+#: ../../standalone/drakbackup_.c:2276
msgid ""
"Please choose the time \n"
"interval between each backup"
@@ -10573,7 +10987,7 @@ msgstr ""
"Izaberite vremenski interval\n"
"između svakog backupa"
-#: ../../standalone/drakbackup_.c:2207
+#: ../../standalone/drakbackup_.c:2282
msgid ""
"Please choose the\n"
"media for backup."
@@ -10581,7 +10995,7 @@ msgstr ""
"Molim izaberite medij\n"
"za backup."
-#: ../../standalone/drakbackup_.c:2214
+#: ../../standalone/drakbackup_.c:2289
#, fuzzy
msgid ""
"Please be sure that the cron daemon is included in your services. \n"
@@ -10589,71 +11003,71 @@ msgid ""
"Note that currently all 'net' medias also use the hard drive."
msgstr "Molim budite sigurni da je cron demon aktiviran u vaĆĄim servisima."
-#: ../../standalone/drakbackup_.c:2251
-msgid "Send mail report after each backup to :"
+#: ../../standalone/drakbackup_.c:2326
+msgid "Send mail report after each backup to:"
msgstr "PoĆĄalji mail izvjeĆĄtaj nakon svakog backupa na :"
-#: ../../standalone/drakbackup_.c:2257
+#: ../../standalone/drakbackup_.c:2332
msgid "Delete Hard Drive tar files after backup to other media."
msgstr ""
-#: ../../standalone/drakbackup_.c:2296
+#: ../../standalone/drakbackup_.c:2371
msgid "What"
msgstr "Ć ta"
-#: ../../standalone/drakbackup_.c:2301
+#: ../../standalone/drakbackup_.c:2376
msgid "Where"
msgstr "Gdje"
-#: ../../standalone/drakbackup_.c:2306
+#: ../../standalone/drakbackup_.c:2381
msgid "When"
msgstr "Kada"
-#: ../../standalone/drakbackup_.c:2311
+#: ../../standalone/drakbackup_.c:2386
msgid "More Options"
msgstr "ViĆĄe opcija"
-#: ../../standalone/drakbackup_.c:2330 ../../standalone/drakbackup_.c:3873
+#: ../../standalone/drakbackup_.c:2405 ../../standalone/drakbackup_.c:4530
msgid "Drakbackup Configuration"
msgstr "PodeĆĄavanje Drakbackup-a"
-#: ../../standalone/drakbackup_.c:2348
+#: ../../standalone/drakbackup_.c:2423
msgid "Please choose where you want to backup"
msgstr "Molimo izaberite gdje ĆŸelite backupovati"
-#: ../../standalone/drakbackup_.c:2350
+#: ../../standalone/drakbackup_.c:2425
msgid "on Hard Drive"
msgstr "na hard disk"
-#: ../../standalone/drakbackup_.c:2360
+#: ../../standalone/drakbackup_.c:2435
msgid "across Network"
msgstr "preko mreĆŸe"
-#: ../../standalone/drakbackup_.c:2370
+#: ../../standalone/drakbackup_.c:2445
msgid "on CDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2378
+#: ../../standalone/drakbackup_.c:2453
msgid "on Tape Device"
msgstr ""
-#: ../../standalone/drakbackup_.c:2421
+#: ../../standalone/drakbackup_.c:2496
msgid "Please choose what you want to backup"
msgstr "Molim izaberite ĆĄta ĆŸelite backupovati"
-#: ../../standalone/drakbackup_.c:2422
+#: ../../standalone/drakbackup_.c:2497
msgid "Backup system"
msgstr "Backup sistema"
-#: ../../standalone/drakbackup_.c:2423
+#: ../../standalone/drakbackup_.c:2498
msgid "Backup Users"
msgstr "Backup korisnika"
-#: ../../standalone/drakbackup_.c:2426
+#: ../../standalone/drakbackup_.c:2501
msgid "Select user manually"
msgstr "Ručno izaberite korisnika"
-#: ../../standalone/drakbackup_.c:2508
+#: ../../standalone/drakbackup_.c:2584
msgid ""
"\n"
"Backup Sources: \n"
@@ -10661,7 +11075,7 @@ msgstr ""
"\n"
"Izvori backup-a: \n"
-#: ../../standalone/drakbackup_.c:2509
+#: ../../standalone/drakbackup_.c:2585
msgid ""
"\n"
"- System Files:\n"
@@ -10669,7 +11083,7 @@ msgstr ""
"\n"
"- sistemske datoteke:\n"
-#: ../../standalone/drakbackup_.c:2511
+#: ../../standalone/drakbackup_.c:2587
msgid ""
"\n"
"- User Files:\n"
@@ -10677,7 +11091,7 @@ msgstr ""
"\n"
"- korisničke datoteke:\n"
-#: ../../standalone/drakbackup_.c:2513
+#: ../../standalone/drakbackup_.c:2589
msgid ""
"\n"
"- Other Files:\n"
@@ -10685,64 +11099,64 @@ msgstr ""
"\n"
"- ostale datoteke:\n"
-#: ../../standalone/drakbackup_.c:2515
+#: ../../standalone/drakbackup_.c:2591
#, c-format
msgid ""
"\n"
-"- Save on Hard drive on path : %s\n"
+"- Save on Hard drive on path: %s\n"
msgstr ""
"\n"
-"- spasi na hard disku u direktoriju : %s\n"
+"- spasi na hard disku u direktoriju: %s\n"
-#: ../../standalone/drakbackup_.c:2518
+#: ../../standalone/drakbackup_.c:2594
msgid ""
"\n"
"- Delete hard drive tar files after backup.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2524
+#: ../../standalone/drakbackup_.c:2600
msgid ""
"\n"
"- Burn to CD"
msgstr ""
-#: ../../standalone/drakbackup_.c:2525
+#: ../../standalone/drakbackup_.c:2601
msgid "RW"
msgstr ""
-#: ../../standalone/drakbackup_.c:2526
+#: ../../standalone/drakbackup_.c:2602
#, fuzzy, c-format
-msgid " on device : %s"
+msgid " on device: %s"
msgstr "Uređaj miơa: %s\n"
-#: ../../standalone/drakbackup_.c:2527
+#: ../../standalone/drakbackup_.c:2603
msgid " (multi-session)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2528
+#: ../../standalone/drakbackup_.c:2604
#, fuzzy, c-format
msgid ""
"\n"
-"- Save to Tape on device : %s"
+"- Save to Tape on device: %s"
msgstr ""
"\n"
-"- spasi na FTPu na računaru : %s\n"
+"- spasi na FTPu na računaru: %s\n"
-#: ../../standalone/drakbackup_.c:2529
+#: ../../standalone/drakbackup_.c:2605
#, c-format
msgid "\t\tErase=%s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2532
+#: ../../standalone/drakbackup_.c:2608
#, fuzzy, c-format
msgid ""
"\n"
-"- Save via %s on host : %s\n"
+"- Save via %s on host: %s\n"
msgstr ""
"\n"
-"- spasi na FTPu na računaru : %s\n"
+"- spasi na FTPu na računaru: %s\n"
-#: ../../standalone/drakbackup_.c:2533
+#: ../../standalone/drakbackup_.c:2609
#, c-format
msgid ""
"\t\t user name: %s\n"
@@ -10751,7 +11165,7 @@ msgstr ""
"\t\t korisničko ime: %s\n"
"\t\t u direktoriju: %s \n"
-#: ../../standalone/drakbackup_.c:2534
+#: ../../standalone/drakbackup_.c:2610
msgid ""
"\n"
"- Options:\n"
@@ -10759,62 +11173,62 @@ msgstr ""
"\n"
"- Opcije:\n"
-#: ../../standalone/drakbackup_.c:2535
+#: ../../standalone/drakbackup_.c:2611
msgid "\tDo not include System Files\n"
msgstr "\tNe uključuj sistemske datoteke\n"
-#: ../../standalone/drakbackup_.c:2538
+#: ../../standalone/drakbackup_.c:2614
msgid "\tBackups use tar and bzip2\n"
msgstr "\tBackupi koriste tar i bzip2\n"
-#: ../../standalone/drakbackup_.c:2540
+#: ../../standalone/drakbackup_.c:2616
msgid "\tBackups use tar and gzip\n"
msgstr "\tBackupi koriste tar i gzip\n"
-#: ../../standalone/drakbackup_.c:2543
+#: ../../standalone/drakbackup_.c:2619
#, c-format
msgid ""
"\n"
-"- Daemon (%s) include :\n"
+"- Daemon (%s) include:\n"
msgstr ""
"\n"
"- Demon (%s) uključuje :\n"
-#: ../../standalone/drakbackup_.c:2544
+#: ../../standalone/drakbackup_.c:2620
msgid "\t-Hard drive.\n"
msgstr "\t-Hard disk.\n"
-#: ../../standalone/drakbackup_.c:2545
+#: ../../standalone/drakbackup_.c:2621
msgid "\t-CDROM.\n"
msgstr "\t-CDROM.\n"
-#: ../../standalone/drakbackup_.c:2546
+#: ../../standalone/drakbackup_.c:2622
msgid "\t-Tape \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2547
+#: ../../standalone/drakbackup_.c:2623
msgid "\t-Network by FTP.\n"
msgstr "\t-MreĆŸu preko FTPa.\n"
-#: ../../standalone/drakbackup_.c:2548
+#: ../../standalone/drakbackup_.c:2624
msgid "\t-Network by SSH.\n"
msgstr "\t-MreĆŸu preko SSH.\n"
-#: ../../standalone/drakbackup_.c:2549
+#: ../../standalone/drakbackup_.c:2625
#, fuzzy
msgid "\t-Network by rsync.\n"
msgstr "\t-MreĆŸu preko FTPa.\n"
-#: ../../standalone/drakbackup_.c:2550
+#: ../../standalone/drakbackup_.c:2626
#, fuzzy
msgid "\t-Network by webdav.\n"
msgstr "\t-MreĆŸu preko FTPa.\n"
-#: ../../standalone/drakbackup_.c:2552
+#: ../../standalone/drakbackup_.c:2628
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr "Bez podeơavanja, molim kliknite na Čarobnjak ili Napredno.\n"
-#: ../../standalone/drakbackup_.c:2558
+#: ../../standalone/drakbackup_.c:2634
msgid ""
"List of data to restore:\n"
"\n"
@@ -10822,7 +11236,7 @@ msgstr ""
"Lista podataka za vraćanje:\n"
"\n"
-#: ../../standalone/drakbackup_.c:2725
+#: ../../standalone/drakbackup_.c:2801
msgid ""
"List of data corrupted:\n"
"\n"
@@ -10830,156 +11244,274 @@ msgstr ""
"Lista oơtećenih podataka:\n"
"\n"
-#: ../../standalone/drakbackup_.c:2727
+#: ../../standalone/drakbackup_.c:2803
msgid "Please uncheck or remove it on next time."
msgstr "Molimo isključite ili pobriơite ga idući put."
-#: ../../standalone/drakbackup_.c:2737
+#: ../../standalone/drakbackup_.c:2813
msgid "Backup files are corrupted"
msgstr "Backup datoteke su oơtećene"
-#: ../../standalone/drakbackup_.c:2758
+#: ../../standalone/drakbackup_.c:2834
#, fuzzy
msgid " All of your selected data have been "
msgstr " Svi vaĆĄi izabrani podaci su "
-#: ../../standalone/drakbackup_.c:2759
+#: ../../standalone/drakbackup_.c:2835
#, c-format
msgid " Successfuly Restored on %s "
msgstr " uspjeĆĄno spaĆĄeni na %s "
-#: ../../standalone/drakbackup_.c:2877
+#: ../../standalone/drakbackup_.c:2953
msgid " Restore Configuration "
msgstr " Vrati konfiguraciju "
-#: ../../standalone/drakbackup_.c:2895
+#: ../../standalone/drakbackup_.c:2971
msgid "OK to restore the other files."
msgstr "OK za vraćanje ostalih datoteka."
-#: ../../standalone/drakbackup_.c:2912
+#: ../../standalone/drakbackup_.c:2988
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
"Lista korisnika za vraćanje (samo najsvjeĆŸiji datum po korisniku je značajan)"
-#: ../../standalone/drakbackup_.c:2975
+#: ../../standalone/drakbackup_.c:3066
msgid "Backup the system files before:"
msgstr "Vrati sistemske datoteke prije:"
-#: ../../standalone/drakbackup_.c:2977
+#: ../../standalone/drakbackup_.c:3068
msgid "please choose the date to restore"
msgstr "molim izaberite datum za vraćanje"
-#: ../../standalone/drakbackup_.c:3014
+#: ../../standalone/drakbackup_.c:3105
msgid "Use Hard Disk to backup"
msgstr "Koristi hard disk za backup"
-#: ../../standalone/drakbackup_.c:3017
+#: ../../standalone/drakbackup_.c:3108
msgid "Please enter the directory to save:"
msgstr "Molimo unesite direktorij za spasiti:"
-#: ../../standalone/drakbackup_.c:3060
+#: ../../standalone/drakbackup_.c:3151
msgid "FTP Connection"
msgstr "FTP konekcija"
-#: ../../standalone/drakbackup_.c:3067
+#: ../../standalone/drakbackup_.c:3158
msgid "Secure Connection"
msgstr "Sigurna konekcija"
-#: ../../standalone/drakbackup_.c:3093
+#: ../../standalone/drakbackup_.c:3184
msgid "Restore from Hard Disk."
msgstr "Vrati sa hard diska"
-#: ../../standalone/drakbackup_.c:3095
+#: ../../standalone/drakbackup_.c:3186
msgid "Please enter the directory where backups are stored"
msgstr "Molim unesite direktorij gdje su smjeĆĄteni backupi"
-#: ../../standalone/drakbackup_.c:3157
+#: ../../standalone/drakbackup_.c:3254
msgid "Select another media to restore from"
msgstr "Izaberite drugi medij za vraćanje"
-#: ../../standalone/drakbackup_.c:3159
+#: ../../standalone/drakbackup_.c:3256
msgid "Other Media"
msgstr "Drugi medij"
-#: ../../standalone/drakbackup_.c:3164
+#: ../../standalone/drakbackup_.c:3261
msgid "Restore system"
msgstr "Vrati sistem"
-#: ../../standalone/drakbackup_.c:3165
+#: ../../standalone/drakbackup_.c:3262
msgid "Restore Users"
msgstr "Vrati korisnike"
-#: ../../standalone/drakbackup_.c:3166
+#: ../../standalone/drakbackup_.c:3263
msgid "Restore Other"
msgstr "Vrati ostalo"
-#: ../../standalone/drakbackup_.c:3168
+#: ../../standalone/drakbackup_.c:3265
#, fuzzy
msgid "select path to restore (instead of /)"
msgstr "izaberite stazu za vraćanje (umjesto / )"
-#: ../../standalone/drakbackup_.c:3172
+#: ../../standalone/drakbackup_.c:3269
msgid "Do new backup before restore (only for incremental backups.)"
msgstr "Izvrơi novi backup prije vraćanja (samo za inkrementalni backup.)"
-#: ../../standalone/drakbackup_.c:3174
+#: ../../standalone/drakbackup_.c:3271
msgid "Remove user directories before restore."
msgstr "Pobriơi korisničke direktorije prije vraćanja."
-#: ../../standalone/drakbackup_.c:3232
+#: ../../standalone/drakbackup_.c:3384
+msgid ""
+"Restore Selected\n"
+"Catalog Entry"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3394
+#, fuzzy
+msgid ""
+"Restore Selected\n"
+"Files"
+msgstr "Ukloni izabrano"
+
+#: ../../standalone/drakbackup_.c:3411
+#, fuzzy
+msgid ""
+"Change\n"
+"Restore Path"
+msgstr "Vrati ostalo"
+
+#: ../../standalone/drakbackup_.c:3477
+#, fuzzy, c-format
+msgid "Backup files not found at %s."
+msgstr "Backup datoteke su oơtećene"
+
+#: ../../standalone/drakbackup_.c:3490
+#, c-format
+msgid ""
+"Insert the CD with volume label %s\n"
+" in the CD drive under mount point /mnt/cdrom"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3490
+#, fuzzy
+msgid "Restore From CD"
+msgstr "Vrati sa hard diska"
+
+#: ../../standalone/drakbackup_.c:3492
+#, c-format
+msgid "Not the correct CD label. Disk is labelled %s."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3502
+#, c-format
+msgid ""
+"Insert the tape with volume label %s\n"
+" in the tape drive device %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3502
+#, fuzzy
+msgid "Restore From Tape"
+msgstr "Vrati tabelu particija"
+
+#: ../../standalone/drakbackup_.c:3504
+#, c-format
+msgid "Not the correct tape label. Tape is labelled %s."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3524
+#, fuzzy
+msgid "Restore Via Network"
+msgstr "Vrati korisnike"
+
+#: ../../standalone/drakbackup_.c:3524
+#, c-format
+msgid "Restore Via Network Protocol: %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3525
+#, fuzzy
+msgid "Host Name"
+msgstr "Host name"
+
+#: ../../standalone/drakbackup_.c:3526
+msgid "Host Path or Module"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3533
+#, fuzzy
+msgid "Password required"
+msgstr "Ć ifra"
+
+#: ../../standalone/drakbackup_.c:3539
+#, fuzzy
+msgid "Username required"
+msgstr "Korisničko ime"
+
+#: ../../standalone/drakbackup_.c:3542
+#, fuzzy
+msgid "Hostname required"
+msgstr "Hostname: "
+
+#: ../../standalone/drakbackup_.c:3547
+msgid "Path or Module required"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3560
+msgid "Files Restored..."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3563
+#, fuzzy
+msgid "Restore Failed..."
+msgstr "Vrati ostalo"
+
+#: ../../standalone/drakbackup_.c:3801
msgid "Restore all backups"
msgstr "Vrati sve backupe"
-#: ../../standalone/drakbackup_.c:3241
+#: ../../standalone/drakbackup_.c:3810
msgid "Custom Restore"
msgstr "Ručno vraćanje"
-#: ../../standalone/drakbackup_.c:3287 ../../standalone/drakbackup_.c:3320
-#: ../../standalone/drakbackup_.c:3346 ../../standalone/drakbackup_.c:3373
-#: ../../standalone/drakbackup_.c:3400 ../../standalone/drakbackup_.c:3460
-#: ../../standalone/drakbackup_.c:3487 ../../standalone/drakbackup_.c:3513
+#: ../../standalone/drakbackup_.c:3856
+msgid "CD in place - continue."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3862
+msgid "Browse to new restore repository."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3865
+#, fuzzy
+msgid "Restore From Catalog"
+msgstr "Vrati tabelu particija"
+
+#: ../../standalone/drakbackup_.c:3893
+#, fuzzy
+msgid "Restore Progress"
+msgstr "Vrati korisnike"
+
+#: ../../standalone/drakbackup_.c:3935 ../../standalone/drakbackup_.c:3968
+#: ../../standalone/drakbackup_.c:3994 ../../standalone/drakbackup_.c:4021
+#: ../../standalone/drakbackup_.c:4048 ../../standalone/drakbackup_.c:4108
+#: ../../standalone/drakbackup_.c:4135 ../../standalone/drakbackup_.c:4165
+#: ../../standalone/drakbackup_.c:4191
msgid "Previous"
msgstr "Prethodni"
-#: ../../standalone/drakbackup_.c:3291 ../../standalone/drakbackup_.c:3377
+#: ../../standalone/drakbackup_.c:3939 ../../standalone/drakbackup_.c:4025
#: ../../standalone/logdrake_.c:223
msgid "Save"
msgstr "Spasi"
-#: ../../standalone/drakbackup_.c:3350
+#: ../../standalone/drakbackup_.c:3998
msgid "Build Backup"
msgstr "Izgradi backup"
-#: ../../standalone/drakbackup_.c:3404 ../../standalone/drakbackup_.c:3974
+#: ../../standalone/drakbackup_.c:4052 ../../standalone/drakbackup_.c:4632
msgid "Restore"
msgstr "Vrati"
-#: ../../standalone/drakbackup_.c:3553
-msgid ""
-"Please Build backup before to restore it...\n"
-" or verify that your path to save is correct."
-msgstr ""
-"Molimo pokrenite Izgradi backup prije vraćanja...\n"
-" ili provjerite da li je put za spaĆĄavanje ispravan."
-
-#: ../../standalone/drakbackup_.c:3574
+#: ../../standalone/drakbackup_.c:4231
+#, fuzzy
msgid ""
-"Error during sendmail\n"
-" your report mail was not sent\n"
+"Error during sendmail.\n"
+" Your report mail was not sent.\n"
" Please configure sendmail"
msgstr ""
"GreĆĄka tokom sendmaila\n"
" vaĆĄ mail izvjeĆĄtaj nije poslan\n"
" Molim podesite sendmail"
-#: ../../standalone/drakbackup_.c:3598
+#: ../../standalone/drakbackup_.c:4255
#, fuzzy
msgid ""
"The following packages need to be installed:\n"
" @list_of_rpm_to_install"
msgstr "Sljedeći paketi će biti instalirani"
-#: ../../standalone/drakbackup_.c:3621
+#: ../../standalone/drakbackup_.c:4278
#, fuzzy
msgid ""
"Error during sending file via FTP.\n"
@@ -10988,19 +11520,19 @@ msgstr ""
"GreĆĄka tokom slanja datoteke preko FTPa.\n"
" Molimo ispravite vaĆĄu FTP konfiguraciju."
-#: ../../standalone/drakbackup_.c:3644
+#: ../../standalone/drakbackup_.c:4301
msgid "Please select data to restore..."
msgstr "Molim izaberite podatke za vraćanje..."
-#: ../../standalone/drakbackup_.c:3665
+#: ../../standalone/drakbackup_.c:4322
msgid "Please select media for backup..."
msgstr "Molim izaberite medij za backup..."
-#: ../../standalone/drakbackup_.c:3687
+#: ../../standalone/drakbackup_.c:4344
msgid "Please select data to backup..."
msgstr "Molim izaberite podatke za backup..."
-#: ../../standalone/drakbackup_.c:3709
+#: ../../standalone/drakbackup_.c:4366
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
@@ -11008,59 +11540,59 @@ msgstr ""
"Nije pronađena konfiguraciona datoteka \n"
"molim kliknite na Čarobnjak ili Napredno."
-#: ../../standalone/drakbackup_.c:3730
+#: ../../standalone/drakbackup_.c:4387
msgid "Under Devel ... please wait."
msgstr "U izradi ... molim sačekajte."
-#: ../../standalone/drakbackup_.c:3811
+#: ../../standalone/drakbackup_.c:4468
msgid "Backup system files"
msgstr "Backup sistemskih datoteka"
-#: ../../standalone/drakbackup_.c:3813
+#: ../../standalone/drakbackup_.c:4470
msgid "Backup user files"
msgstr "Backup korisničkih datoteka"
-#: ../../standalone/drakbackup_.c:3815
+#: ../../standalone/drakbackup_.c:4472
msgid "Backup other files"
msgstr "Backup ostalih datoteka"
-#: ../../standalone/drakbackup_.c:3817 ../../standalone/drakbackup_.c:3850
+#: ../../standalone/drakbackup_.c:4474 ../../standalone/drakbackup_.c:4507
msgid "Total Progress"
msgstr "Ukupan napredak"
-#: ../../standalone/drakbackup_.c:3841
+#: ../../standalone/drakbackup_.c:4498
msgid "files sending by FTP"
msgstr "slanje datoteka putem FTPa"
-#: ../../standalone/drakbackup_.c:3845
+#: ../../standalone/drakbackup_.c:4502
msgid "Sending files..."
msgstr "Ć aljem datoteke..."
-#: ../../standalone/drakbackup_.c:3931
+#: ../../standalone/drakbackup_.c:4588
msgid "Backup Now from configuration file"
msgstr "Backup-uj sada iz konfiguracijske datoteke"
-#: ../../standalone/drakbackup_.c:3936
+#: ../../standalone/drakbackup_.c:4593
msgid "View Backup Configuration."
msgstr "Pogledaj postavke backupa."
-#: ../../standalone/drakbackup_.c:3956
+#: ../../standalone/drakbackup_.c:4614
msgid "Wizard Configuration"
msgstr "Čarobnjak za podeơavanje"
-#: ../../standalone/drakbackup_.c:3961
+#: ../../standalone/drakbackup_.c:4619
msgid "Advanced Configuration"
msgstr "Napredno podeĆĄavanje"
-#: ../../standalone/drakbackup_.c:3966
+#: ../../standalone/drakbackup_.c:4624
msgid "Backup Now"
msgstr "Backup-uj sada"
-#: ../../standalone/drakbackup_.c:3996
+#: ../../standalone/drakbackup_.c:4658
msgid "Drakbackup"
msgstr "Drakbackup"
-#: ../../standalone/drakbackup_.c:4045
+#: ../../standalone/drakbackup_.c:4707
#, fuzzy
msgid ""
"options description:\n"
@@ -11121,7 +11653,7 @@ msgstr ""
" \n"
"\n"
-#: ../../standalone/drakbackup_.c:4075
+#: ../../standalone/drakbackup_.c:4737
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -11135,7 +11667,7 @@ msgstr ""
" podesiti myhostname ili mydomain u /etc/postfix/main.cf\n"
"\n"
-#: ../../standalone/drakbackup_.c:4083
+#: ../../standalone/drakbackup_.c:4745
msgid ""
"options description:\n"
"\n"
@@ -11213,28 +11745,29 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:4122
+#: ../../standalone/drakbackup_.c:4784
+#, fuzzy
msgid ""
"restore description:\n"
" \n"
-"Only the most recent date will be used ,because with incremental \n"
-"backups it is necesarry to restore one by one each older backups.\n"
+"Only the most recent date will be used, because with incremental \n"
+"backups it is necessary to restore one by one each older backup.\n"
"\n"
-"So if you don't like to restore a user please unselect all his\n"
-"check box.\n"
+"So if you don't want to restore a user please unselect all their\n"
+"check boxes.\n"
"\n"
-"Otherwise, you are able to select only one of this\n"
+"Otherwise, you are able to select only one of these.\n"
"\n"
" - Incremental Backups:\n"
"\n"
"\tThe incremental backup is the most powerful \n"
-"\toption to use backup, this option allow you \n"
-"\tto backup all your data the first time, and \n"
-"\tonly the changed after.\n"
-"\tSo you will be able during the restore\n"
+"\toption to use. This option allows you to \n"
+"\tbackup all of your data the first time, and \n"
+"\tonly the changed data after.\n"
+"\tSo you will be able, during the restore\n"
"\tstep, to restore your data from a specified\n"
"\tdate.\n"
-"\tIf you have not selected this options all\n"
+"\tIf you have not selected this option all\n"
"\told backups are deleted before each backup. \n"
"\n"
"\n"
@@ -11265,18 +11798,18 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:4148 ../../standalone/drakbackup_.c:4225
+#: ../../standalone/drakbackup_.c:4810 ../../standalone/drakbackup_.c:4887
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
-#: ../../standalone/drakbackup_.c:4150 ../../standalone/drakbackup_.c:4227
+#: ../../standalone/drakbackup_.c:4812 ../../standalone/drakbackup_.c:4889
msgid ""
" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
-#: ../../standalone/drakbackup_.c:4152 ../../standalone/drakbackup_.c:4229
+#: ../../standalone/drakbackup_.c:4814 ../../standalone/drakbackup_.c:4891
msgid ""
" This program is free software; you can redistribute it and/or modify\n"
" it under the terms of the GNU General Public License as published by\n"
@@ -11306,7 +11839,7 @@ msgstr ""
" along with this program; if not, write to the Free Software\n"
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
-#: ../../standalone/drakbackup_.c:4166
+#: ../../standalone/drakbackup_.c:4828
msgid ""
"Description:\n"
"\n"
@@ -11382,7 +11915,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:4204
+#: ../../standalone/drakbackup_.c:4866
msgid ""
"options description:\n"
"\n"
@@ -11400,7 +11933,7 @@ msgstr ""
"drive before sending it to the server.\n"
"\n"
-#: ../../standalone/drakbackup_.c:4213
+#: ../../standalone/drakbackup_.c:4875
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -11422,7 +11955,7 @@ msgstr ""
"data. It is important to be careful and not modify the \n"
"backup data files by hand.\n"
-#: ../../standalone/drakbackup_.c:4243
+#: ../../standalone/drakbackup_.c:4905
msgid ""
"Description:\n"
"\n"
@@ -11538,9 +12071,9 @@ msgstr ""
msgid "Synchronization tool"
msgstr ""
-#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:85
-#: ../../standalone/drakbug_.c:150 ../../standalone/drakbug_.c:152
-#: ../../standalone/drakbug_.c:156
+#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:86
+#: ../../standalone/drakbug_.c:151 ../../standalone/drakbug_.c:153
+#: ../../standalone/drakbug_.c:157
#, fuzzy
msgid "Standalone Tools"
msgstr "Alati za konzolu"
@@ -11593,26 +12126,26 @@ msgstr "Printerdrake"
msgid "Configuration Wizards"
msgstr "Čarobnjak za podeĆĄavanje mreĆŸe"
-#: ../../standalone/drakbug_.c:96
+#: ../../standalone/drakbug_.c:97
#, fuzzy
msgid "Application:"
msgstr "Autentikacija"
-#: ../../standalone/drakbug_.c:97
+#: ../../standalone/drakbug_.c:98
#, fuzzy
msgid "Package: "
msgstr "Izbor paketa"
-#: ../../standalone/drakbug_.c:98
+#: ../../standalone/drakbug_.c:99
msgid "Kernel:"
msgstr ""
-#: ../../standalone/drakbug_.c:99
+#: ../../standalone/drakbug_.c:100
#, fuzzy
msgid "Release: "
msgstr "Molimo sačekajte"
-#: ../../standalone/drakbug_.c:114
+#: ../../standalone/drakbug_.c:115
msgid ""
"\n"
"\n"
@@ -11624,21 +12157,21 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbug_.c:135
+#: ../../standalone/drakbug_.c:136
#, fuzzy
msgid "Report"
msgstr "port"
-#: ../../standalone/drakbug_.c:165
+#: ../../standalone/drakbug_.c:166
#, fuzzy
msgid "Not installed"
msgstr "Post Uninstall"
-#: ../../standalone/drakbug_.c:182
+#: ../../standalone/drakbug_.c:183
msgid "connecting to Bugzilla wizard ..."
msgstr ""
-#: ../../standalone/drakbug_.c:189
+#: ../../standalone/drakbug_.c:190
#, fuzzy
msgid "No browser available! Please install one"
msgstr "Screenshotovi će biti dostupni nakon ơto instalirate u %s"
@@ -12086,7 +12619,7 @@ msgid "Font List"
msgstr "Lista fontova"
#: ../../standalone/drakfont_.c:909
-msgid "Choose the applications that will support the fonts :"
+msgid "Choose the applications that will support the fonts:"
msgstr "Izaberite aplikacije koje će podrĆŸavati fontove :"
#: ../../standalone/drakfont_.c:918
@@ -12157,19 +12690,19 @@ msgstr "PobriĆĄi fontove sa mog sistema"
msgid "Post Uninstall"
msgstr "Post Uninstall"
-#: ../../standalone/drakgw_.c:42 ../../standalone/drakgw_.c:195
+#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:188
msgid "Internet Connection Sharing"
msgstr "Dijeljenje Internet konekcije"
-#: ../../standalone/drakgw_.c:121
+#: ../../standalone/drakgw_.c:119
msgid "Sorry, we support only 2.4 kernels."
msgstr ""
-#: ../../standalone/drakgw_.c:133
+#: ../../standalone/drakgw_.c:130
msgid "Internet Connection Sharing currently enabled"
msgstr "Dijeljenje Internet konekcije je trenutno aktivno"
-#: ../../standalone/drakgw_.c:134
+#: ../../standalone/drakgw_.c:131
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -12181,31 +12714,31 @@ msgstr ""
"\n"
"Ć ta ĆŸelite uraditi?"
-#: ../../standalone/drakgw_.c:138
+#: ../../standalone/drakgw_.c:135
msgid "disable"
msgstr "isključi"
-#: ../../standalone/drakgw_.c:138 ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:135 ../../standalone/drakgw_.c:160
msgid "dismiss"
msgstr "otkaĆŸi"
-#: ../../standalone/drakgw_.c:138 ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:135 ../../standalone/drakgw_.c:160
msgid "reconfigure"
msgstr "rekonfiguriĆĄi"
-#: ../../standalone/drakgw_.c:141
+#: ../../standalone/drakgw_.c:138
msgid "Disabling servers..."
msgstr "Isključujem servere..."
-#: ../../standalone/drakgw_.c:149
+#: ../../standalone/drakgw_.c:146
msgid "Internet connection sharing is now disabled."
msgstr "Dijeljenje Internet konekcije je sada isključeno."
-#: ../../standalone/drakgw_.c:158
+#: ../../standalone/drakgw_.c:155
msgid "Internet Connection Sharing currently disabled"
msgstr "Dijeljenje Internet konekcije je trenutno neaktivno"
-#: ../../standalone/drakgw_.c:159
+#: ../../standalone/drakgw_.c:156
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
@@ -12217,19 +12750,19 @@ msgstr ""
"\n"
"Ć ta ĆŸelite uraditi?"
-#: ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:160
msgid "enable"
msgstr "uključi"
-#: ../../standalone/drakgw_.c:170
+#: ../../standalone/drakgw_.c:167
msgid "Enabling servers..."
msgstr "Uključujem servere..."
-#: ../../standalone/drakgw_.c:175
+#: ../../standalone/drakgw_.c:172
msgid "Internet connection sharing is now enabled."
msgstr "Dijeljenje Internet konekcije je sada uključeno."
-#: ../../standalone/drakgw_.c:196
+#: ../../standalone/drakgw_.c:189
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
"With that feature, other computers on your local network will be able to use "
@@ -12245,21 +12778,21 @@ msgstr ""
"Napomena: potreban vam je poseban MreĆŸni adapter da biste podesili Lokalnu "
"mreĆŸu (LAN)."
-#: ../../standalone/drakgw_.c:222
+#: ../../standalone/drakgw_.c:215
#, c-format
msgid "Interface %s (using module %s)"
msgstr "Interfejs %s (koristeći modul %s)"
-#: ../../standalone/drakgw_.c:223
+#: ../../standalone/drakgw_.c:216
#, c-format
msgid "Interface %s"
msgstr "Interfejs %s"
-#: ../../standalone/drakgw_.c:231
+#: ../../standalone/drakgw_.c:224
msgid "No network adapter on your system!"
msgstr "Nema mreĆŸnog adaptera na vaĆĄem sistemu!"
-#: ../../standalone/drakgw_.c:232
+#: ../../standalone/drakgw_.c:225
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
@@ -12267,11 +12800,11 @@ msgstr ""
"Na vaĆĄem sistemu nije pronađen nijedan ethernet mreĆŸni adapter. Molimo "
"pokrenite alat za podeĆĄavanje hardware-a."
-#: ../../standalone/drakgw_.c:238
+#: ../../standalone/drakgw_.c:231
msgid "Network interface"
msgstr "MreĆŸni interface"
-#: ../../standalone/drakgw_.c:239
+#: ../../standalone/drakgw_.c:232
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -12286,18 +12819,18 @@ msgstr ""
"\n"
"Sada ću podesiti vaĆĄu Lokalnu mreĆŸu sa ovim adapterom."
-#: ../../standalone/drakgw_.c:248
+#: ../../standalone/drakgw_.c:241
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
msgstr ""
"Molimo izaberite koji mreĆŸni adapter će biti spojen na vaĆĄu Lokalnu mreĆŸu."
-#: ../../standalone/drakgw_.c:266
+#: ../../standalone/drakgw_.c:259
msgid "Network interface already configured"
msgstr "MreĆŸni interfejs je već podeĆĄen"
-#: ../../standalone/drakgw_.c:267
+#: ../../standalone/drakgw_.c:260
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -12312,15 +12845,15 @@ msgstr ""
"\n"
"To moĆŸete obaviti ručno, ali morate znati ĆĄta radite."
-#: ../../standalone/drakgw_.c:272
+#: ../../standalone/drakgw_.c:265
msgid "Automatic reconfiguration"
msgstr "Automatsko ponovno podeĆĄavanje"
-#: ../../standalone/drakgw_.c:273
+#: ../../standalone/drakgw_.c:266
msgid "Show current interface configuration"
msgstr "PrikaĆŸi postavke trenutnog interfejsa"
-#: ../../standalone/drakgw_.c:275
+#: ../../standalone/drakgw_.c:268
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -12337,7 +12870,7 @@ msgstr ""
"IP atributi: %s\n"
"Drajver: %s"
-#: ../../standalone/drakgw_.c:287
+#: ../../standalone/drakgw_.c:280
msgid ""
"I can keep your current configuration and assume you already set up a DHCP "
"server; in that case please verify I correctly read the C-Class Network that "
@@ -12356,54 +12889,42 @@ msgstr ""
"Ako ne, mogu ponovo podesiti vaĆĄ interfejs i podesiti DHCP server za vas.\n"
"\n"
-#: ../../standalone/drakgw_.c:292
+#: ../../standalone/drakgw_.c:285
msgid "C-Class Local Network"
msgstr "Lokalna mreĆŸa C klase"
-#: ../../standalone/drakgw_.c:293
+#: ../../standalone/drakgw_.c:286
msgid "(This) DHCP Server IP"
msgstr "IP adresa (ovog) DHCP servera"
-#: ../../standalone/drakgw_.c:294
+#: ../../standalone/drakgw_.c:287
msgid "Re-configure interface and DHCP server"
msgstr "Ponovo podesi interfejs i DHCP server"
-#: ../../standalone/drakgw_.c:301
+#: ../../standalone/drakgw_.c:294
msgid "The Local Network did not finish with `.0', bailing out."
msgstr "Lokalna mreĆŸa se ne zavrĆĄava sa `.0', izlazim."
-#: ../../standalone/drakgw_.c:312
+#: ../../standalone/drakgw_.c:305
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr ""
"Potencijalan konflikt LAN adresa pronađen u trenutnoj konfiguraciji %s!\n"
-#: ../../standalone/drakgw_.c:320
-msgid "Firewalling configuration detected!"
-msgstr "Otkrivena konfiguracija firewalla!"
-
-#: ../../standalone/drakgw_.c:321
-msgid ""
-"Warning! An existing firewalling configuration has been detected. You may "
-"need some manual fix after installation."
-msgstr ""
-"Upozorenje! Pronađena je postojeća konfiguracija firewalla. MoĆŸda će biti "
-"potrebno neko ručno podeơavanje nakon instalacije."
-
-#: ../../standalone/drakgw_.c:328
+#: ../../standalone/drakgw_.c:315
msgid "Configuring..."
msgstr "PodeĆĄavam..."
-#: ../../standalone/drakgw_.c:329
+#: ../../standalone/drakgw_.c:316
msgid "Configuring scripts, installing software, starting servers..."
msgstr "Podeơavam skripte, instaliram software, pokrećem servere..."
-#: ../../standalone/drakgw_.c:365
+#: ../../standalone/drakgw_.c:352
#, c-format
msgid "Problems installing package %s"
msgstr "Problemi tokom instaliranja paketa %s"
-#: ../../standalone/drakgw_.c:549
+#: ../../standalone/drakgw_.c:485
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
@@ -12413,23 +12934,23 @@ msgstr ""
"Sada moĆŸete dijeliti Internet konekciju sa ostalim računarima na vaĆĄoj "
"lokalnoj mreĆŸi, koristeći automatsku mreĆŸnu konfiguraciju (DHCP)."
-#: ../../standalone/drakgw_.c:566
+#: ../../standalone/drakgw_.c:504
msgid "The setup has already been done, but it's currently disabled."
msgstr "Podeơavanje je već zavrơeno, ali je trenutno isključeno."
-#: ../../standalone/drakgw_.c:567
+#: ../../standalone/drakgw_.c:505
msgid "The setup has already been done, and it's currently enabled."
msgstr "Podeơavanje je već zavrơeno i trenutno je uključeno."
-#: ../../standalone/drakgw_.c:568
+#: ../../standalone/drakgw_.c:506
msgid "No Internet Connection Sharing has ever been configured."
msgstr "Dijeljenje Internet konekcije nije nikad podeĆĄeno."
-#: ../../standalone/drakgw_.c:573
+#: ../../standalone/drakgw_.c:511
msgid "Internet connection sharing configuration"
msgstr "PodeĆĄavanje dijeljenja Internet konekcije"
-#: ../../standalone/drakgw_.c:580
+#: ../../standalone/drakgw_.c:518
#, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -12444,6 +12965,158 @@ msgstr ""
"\n"
"Kliknite na Podesi da pokrenete čarobnjak."
+#: ../../standalone/draksound_.c:46
+#, fuzzy
+msgid "No Sound Card detected!"
+msgstr "Nije konektovan"
+
+#: ../../standalone/draksound_.c:47
+msgid ""
+"No Sound Card has been detected on your machine. Please verify that a Linux-"
+"supported Sound Card is correctly plugged in.\n"
+"\n"
+"\n"
+"You can visit our hardware database at:\n"
+"\n"
+"\n"
+"http://www.linux-mandrake.com/en/hardware.php3"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:32
+msgid "package ImageMagick is required for correct working"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:76
+#, fuzzy
+msgid "first step creation"
+msgstr "Kreiranje boot diskete"
+
+#: ../../standalone/draksplash_.c:77
+#, fuzzy
+msgid "final resolution"
+msgstr "Rezolucija"
+
+#: ../../standalone/draksplash_.c:78 ../../standalone/draksplash_.c:170
+#, fuzzy
+msgid "choose image file"
+msgstr "Izaberi datoteku"
+
+#: ../../standalone/draksplash_.c:79
+#, fuzzy
+msgid "Theme name"
+msgstr "Share naziv"
+
+#: ../../standalone/draksplash_.c:81
+msgid "make bootsplash step 2"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:82
+#, fuzzy
+msgid "go to lilosplash configuration"
+msgstr "Post-instalacijsko podeĆĄavanje"
+
+#: ../../standalone/draksplash_.c:83
+#, fuzzy
+msgid "quit"
+msgstr "Izlaz"
+
+#: ../../standalone/draksplash_.c:84
+#, fuzzy
+msgid "save theme"
+msgstr "Sistem instalacije"
+
+#: ../../standalone/draksplash_.c:85
+msgid "browse"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:98 ../../standalone/draksplash_.c:159
+#, fuzzy
+msgid "Configure bootsplash picture"
+msgstr "PodeĆĄavanje servisa"
+
+#: ../../standalone/draksplash_.c:99
+msgid "x coordinate of text box in number of character"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:100
+msgid "y coordinate of text box in number of character"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:101
+msgid "text width"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:102
+msgid "text box height"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:103
+msgid "the progress bar x coordinate of its upper left corner"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:104
+msgid "the progress bar y coordinate of its upper left corner"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:105
+msgid "the width of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:106
+msgid "the heigth of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:107
+msgid "the color of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:119
+#, fuzzy
+msgid "go back"
+msgstr "Loopback"
+
+#: ../../standalone/draksplash_.c:120
+#, fuzzy
+msgid "preview"
+msgstr "Uređaj"
+
+#: ../../standalone/draksplash_.c:121
+#, fuzzy
+msgid "choose color"
+msgstr "Izaberite monitor"
+
+#: ../../standalone/draksplash_.c:124
+msgid "Display logo on Console"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:125
+msgid "Make kernel message quiet by default"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:161 ../../standalone/draksplash_.c:330
+#, c-format
+msgid "This theme haven't yet any bootsplash in %s !"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:213
+msgid "saving Bootsplash theme..."
+msgstr ""
+
+#: ../../standalone/draksplash_.c:436
+#, fuzzy
+msgid "ProgressBar color selection"
+msgstr "Izbor modela ơtampača"
+
+#: ../../standalone/draksplash_.c:454
+#, fuzzy
+msgid "You must choose an image file first!"
+msgstr "Morate izabrati ili unijeti ơtampač / uređaj!"
+
+#: ../../standalone/draksplash_.c:463
+#, fuzzy
+msgid "Generating preview ..."
+msgstr "Prepoznajem uređaje ..."
+
#: ../../standalone/drakxtv_.c:49
msgid ""
"XawTV isn't installed!\n"
@@ -12536,11 +13209,11 @@ msgstr ""
"unesite vaĆĄ tv standard i drĆŸavu"
#: ../../standalone/drakxtv_.c:109
-msgid "TV norm :"
+msgid "TV norm:"
msgstr "TV standard :"
#: ../../standalone/drakxtv_.c:110
-msgid "Area :"
+msgid "Area:"
msgstr "Oblast :"
#: ../../standalone/drakxtv_.c:114
@@ -12617,7 +13290,7 @@ msgstr "Ne mogu da pokrenem live upgrade !!!\n"
msgid "The change is done, but to be effective you must logout"
msgstr "Izmjena je napravljena, ali da bi stupila na snagu morate se odjaviti"
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:517
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:515
msgid "logdrake"
msgstr "logdrake"
@@ -12795,8 +13468,9 @@ msgid "service setting"
msgstr "postavke servisa"
#: ../../standalone/logdrake_.c:431
+#, fuzzy
msgid ""
-"You will receive an alert if one of the selected service is no more running"
+"You will receive an alert if one of the selected services is no more running"
msgstr ""
"MoĆŸete primiti obavjeĆĄtenje ako neki od izabranih servisa prestane raditi"
@@ -12818,19 +13492,19 @@ msgstr "postavka upozorenja"
msgid "Please enter your email address below "
msgstr "Molimo unesite vaĆĄu ĆĄifru"
-#: ../../standalone/logdrake_.c:499
+#: ../../standalone/logdrake_.c:497
msgid "Save as.."
msgstr "Sačuvaj kao..."
-#: ../../standalone/mousedrake_.c:43
+#: ../../standalone/mousedrake_.c:45
msgid "Please, choose the type of your mouse."
msgstr "Molimo izaberite vrstu vaĆĄeg miĆĄa."
-#: ../../standalone/mousedrake_.c:57
+#: ../../standalone/mousedrake_.c:58
msgid "Emulate third button?"
msgstr "Emuliraj treće dugme?"
-#: ../../standalone/printerdrake_.c:48
+#: ../../standalone/printerdrake_.c:57
#, fuzzy
msgid "Reading printer data ..."
msgstr "Čitam podatke o ơtampaču..."
@@ -12843,33 +13517,44 @@ msgstr "Prepoznajem uređaje ..."
msgid "Test ports"
msgstr "Testiraj portove"
-#: ../../standalone/scannerdrake_.c:52
+#: ../../standalone/scannerdrake_.c:53 ../../standalone/scannerdrake_.c:68
+#: ../../standalone/scannerdrake_.c:81
#, c-format
-msgid "%s found on %s, configure it ?"
+msgid "The %s is not supported by this version of Mandrake Linux."
+msgstr ""
+
+#: ../../standalone/scannerdrake_.c:56
+#, fuzzy, c-format
+msgid "%s found on %s, configure it?"
msgstr "%s je pronađen na %s, podesi ga ?"
#: ../../standalone/scannerdrake_.c:59
+#, c-format
+msgid "%s is not in the scanner database, configure it manually?"
+msgstr ""
+
+#: ../../standalone/scannerdrake_.c:65
msgid "Select a scanner"
msgstr "Izaberite skener"
-#: ../../standalone/scannerdrake_.c:79
+#: ../../standalone/scannerdrake_.c:93
#, c-format
msgid "This %s scanner is unsupported"
msgstr "Ovaj %s skener nije podrĆŸan"
-#: ../../standalone/scannerdrake_.c:93
+#: ../../standalone/scannerdrake_.c:107
#, c-format
msgid ""
"Scannerdrake was not able to detect your %s scanner.\n"
"Please select the device where your scanner is plugged"
msgstr ""
-#: ../../standalone/scannerdrake_.c:95
+#: ../../standalone/scannerdrake_.c:109
#, fuzzy
msgid "choose device"
msgstr "Boot uređaj"
-#: ../../standalone/scannerdrake_.c:101
+#: ../../standalone/scannerdrake_.c:115
#, c-format
msgid ""
"This %s scanner must be configured by printerdrake.\n"
@@ -12880,7 +13565,7 @@ msgstr ""
"MoĆŸete pokrenuti printerdrake iz Mandrake Kontrolnog centra u odjeljku "
"Hardware."
-#: ../../standalone/scannerdrake_.c:106
+#: ../../standalone/scannerdrake_.c:120
#, c-format
msgid ""
"Your %s scanner has been configured.\n"
@@ -12888,48 +13573,18 @@ msgid ""
"applications menu."
msgstr ""
-#: ../../standalone/service_harddrake_.c:57
+#: ../../standalone/service_harddrake_.c:39
#, c-format
msgid "Some devices in the \"%s\" hardware class were removed:\n"
msgstr ""
-#: ../../standalone/service_harddrake_.c:61
+#: ../../standalone/service_harddrake_.c:43
#, c-format
msgid ""
"\n"
"Some devices in the %s class were added:\n"
msgstr ""
-#: ../../standalone/tinyfirewall_.c:30
-msgid "Firewalling Configuration"
-msgstr "PodeĆĄavanje firewalla"
-
-#: ../../standalone/tinyfirewall_.c:43
-msgid "Firewalling configuration"
-msgstr "PodeĆĄavanje firewalla"
-
-#: ../../standalone/tinyfirewall_.c:78
-msgid ""
-"Firewalling\n"
-"\n"
-"You already have set up a firewall.\n"
-"Click on Configure to change or remove the firewall"
-msgstr ""
-"Firewall\n"
-"\n"
-"Već ste podesili firewall.\n"
-"Kliknite na Podesi kako bi se izmjenio ili uklonio firewall"
-
-#: ../../standalone/tinyfirewall_.c:82
-msgid ""
-"Firewalling\n"
-"\n"
-"Click on Configure to set up a standard firewall"
-msgstr ""
-"Firewall\n"
-"\n"
-"Kliknite na Podesi za podeĆĄavanje standardnog firewalla"
-
#: ../../steps.pm_.c:14
msgid "Choose your language"
msgstr "Izaberite svoj jezik"
@@ -13002,224 +13657,7 @@ msgstr "Instaliraj sistemske update"
msgid "Exit install"
msgstr "Napusti instalaciju"
-#: ../../tinyfirewall.pm_.c:9
-msgid ""
-"tinyfirewall configurator\n"
-"\n"
-"This configures a personal firewall for this Mandrake Linux machine.\n"
-"For a powerful dedicated firewall solution, please look to the\n"
-"specialized MandrakeSecurity Firewall distribution."
-msgstr ""
-"tinyfirewall podeơavač\n"
-"\n"
-"On podeơava lični firewall za ovaj Mandrake Linux računar.\n"
-"Za moćnu soluciju posebnog firewalla, molimo pogledajte\n"
-"specijaliziranu MandrakeSecurity Firewall distribuciju."
-
-#: ../../tinyfirewall.pm_.c:14
-msgid ""
-"We'll now ask you questions about which services you'd like to allow\n"
-"the Internet to connect to. Please think carefully about these\n"
-"questions, as your computer's security is important.\n"
-"\n"
-"Please, if you're not currently using one of these services, firewall\n"
-"it off. You can change this configuration anytime you like by\n"
-"re-running this application!"
-msgstr ""
-"Sada ćemo vam postaviti pitanja o servisima kojima ĆŸelite dozvoliti\n"
-"pristup sa Interneta. Molimo razmislite paĆŸljivo o ovim pitanjima,\n"
-"jer je sigurnost vaơeg računara bitna.\n"
-"\n"
-"Molimo vas, ako trenutno ne koristite neki od ovih servisa, isključite\n"
-"ga firewallom. MoĆŸete izmjeniti ove postavke kad god ĆŸelite ponovnim\n"
-"pokretanjem ove aplikacije!"
-
-#: ../../tinyfirewall.pm_.c:21
-msgid ""
-"Are you running a web server on this machine that you need the whole\n"
-"Internet to see? If you are running a webserver that only needs to be\n"
-"accessed by this machine, you can safely answer NO here.\n"
-"\n"
-msgstr ""
-"Da li imate pokrenut web server na ovom računaru za koji ĆŸelite da ga\n"
-"cijeli Internet vidi? Ako imate pokrenut webserver kojem ćete pristupati\n"
-"samo sa ovog računara, moĆŸete slobodno ovdje odgovoriti NE.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:26
-msgid ""
-"Are you running a name server on this machine? If you didn't set one\n"
-"up to give away IP and zone information to the whole Internet, please\n"
-"answer no.\n"
-"\n"
-msgstr ""
-"Da li imate pokrenut name server (DNS) na ovom računaru? Ako niste\n"
-"podesili DNS radi davanja informacija o IP i zoni cijelom Internetu, \n"
-"molimo vas odgovorite ne.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:31
-msgid ""
-"Do you want to allow incoming Secure Shell (ssh) connections? This\n"
-"is a telnet-replacement that you might use to login. If you're using\n"
-"telnet now, you should definitely switch to ssh. telnet is not\n"
-"encrypted -- so some attackers can steal your password if you use\n"
-"it. ssh is encrypted and doesn't allow for this eavesdropping."
-msgstr ""
-"Da li ĆŸelite da dozvolite ulazne Secure Shell (ssh) konekcije? Ovo\n"
-"je zamjena za telnet koju moĆŸete koristiti za prijavu. Ako sada koristite\n"
-"telnet, definitivno trebate preći na ssh. Telnet nije kriptovan, tako\n"
-"da neki napadači mogu ukrasti vaơu ơifru ako ga koristite. ssh je\n"
-"kriptovan i ne dozvoljava ovo prisluĆĄkivanje."
-
-#: ../../tinyfirewall.pm_.c:36
-msgid ""
-"Do you want to allow incoming telnet connections?\n"
-"This is horribly unsafe, as we explained in the previous screen. We\n"
-"strongly recommend answering No here and using ssh in place of\n"
-"telnet.\n"
-msgstr ""
-"Da li ĆŸelite dozvoliti ulazne telnet konekcije?\n"
-"Ovo je uĆŸasno nesigurno, kao ĆĄto je objaĆĄnjeno na prethodnom\n"
-"ekranu. Strogo preporučujemo da odgovorite Ne ovdje i koristite\n"
-"ssh umjesto telneta.\n"
-
-#: ../../tinyfirewall.pm_.c:41
-msgid ""
-"Are you running an FTP server here that you need accessible to the\n"
-"Internet? If you are, we strongly recommend that you only use it for\n"
-"Anonymous transfers. Any passwords sent by FTP can be stolen by some\n"
-"attackers, since FTP also uses no encryption for transferring passwords.\n"
-msgstr ""
-"Da li imate pokrenut FTP server za koji ĆŸelite da je pristupačan sa\n"
-"Interneta? Ako da, onda strogo preporučujemo da ga koristite samo\n"
-"za anonimne transfere. Bilo koju ĆĄifru koja je poslana putem FTPa\n"
-"mogu ukrasti napadači, poơto FTP također ne koristi kriptovanje.\n"
-
-#: ../../tinyfirewall.pm_.c:46
-msgid ""
-"Are you running a mail server here? If you're sending you \n"
-"messages through pine, mutt or any other text-based mail client,\n"
-"you probably are. Otherwise, you should firewall this off.\n"
-"\n"
-msgstr ""
-"Da li imate pokrenut mail server ovdje? Ako ĆĄaljete poruke\n"
-"kroz pine, mutt ili neki drugi tekst-bazirani mail klijent, onda\n"
-"vjerovatno imate. U suprotnom, trebali biste isključiti ovo \n"
-"firewallom.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:51
-msgid ""
-"Are you running a POP or IMAP server here? This would\n"
-"be used to host non-web-based mail accounts for people via \n"
-"this machine.\n"
-"\n"
-msgstr ""
-"Da li imate pokrenut POP ili IMAP server ovdje? Ovo bi\n"
-"bilo koriĆĄteno za smjeĆĄtaj ne-web-baziranih mail naloga\n"
-"za ljude na ovom računaru.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:56
-msgid ""
-"You appear to be running a 2.2 kernel. If your network IP\n"
-"is automatically set by a computer in your home or office \n"
-"(dynamically assigned), we need to allow for this. Is\n"
-"this the case?\n"
-msgstr ""
-"Čini se da koristite 2.2 kernel. Ako je vaĆĄa mreĆŸna IP\n"
-"automatski podeơena putem računara u vaơoj kući ili\n"
-"uredu (dinamički dodjeljena), moramo ovo dozvoliti. Da\n"
-"li je ovo slučaj?\n"
-
-#: ../../tinyfirewall.pm_.c:61
-msgid ""
-"Is your computer getting time syncronized to another computer?\n"
-"Mostly, this is used by medium-large Unix/Linux organizations\n"
-"to synchronize time for logging and such. If you're not part\n"
-"of a larger office and haven't heard of this, you probably \n"
-"aren't."
-msgstr ""
-"Da li vaơ računar sinhronizuje vrijeme sa drugim računarom?\n"
-"Najčeơće, ovo se koristi u srednje velikim Unix/Linux organizacijama\n"
-"za sinhronizaciju vremena za pravljenje dnevnika i slično. Ako\n"
-"niste dio većeg ureda i niste čuli za ovo, onda vjerovatno\n"
-"ovo nije slučaj."
-
-#: ../../tinyfirewall.pm_.c:66
-msgid ""
-"Configuration complete. May we write these changes to disk?\n"
-"\n"
-"\n"
-"\n"
-msgstr ""
-"PodeĆĄavanje zavrĆĄeno. MoĆŸemo li zapisati ove izmjene na disk?\n"
-"\n"
-"\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:82
-#, c-format
-msgid "Can't open %s: %s\n"
-msgstr "Ne mogu otvoriti %s: %s\n"
-
-#: ../../tinyfirewall.pm_.c:84
-#, c-format
-msgid "Can't open %s for writing: %s\n"
-msgstr "Ne mogu otvoriti %s za pisanje: %s\n"
-
-#: ../../tinyfirewall.pm_.c:178
-msgid "No I don't need DHCP"
-msgstr "Ne, ne treba mi DHCP"
-
-#: ../../tinyfirewall.pm_.c:178
-msgid "Yes I need DHCP"
-msgstr "Da, treba mi DHCP"
-
-#: ../../tinyfirewall.pm_.c:179
-msgid "No I don't need NTP"
-msgstr "Ne, ne treba mi NTP"
-
-#: ../../tinyfirewall.pm_.c:179
-msgid "Yes I need NTP"
-msgstr "Da, treba mi NTP"
-
-#: ../../tinyfirewall.pm_.c:180 ../../tinyfirewall.pm_.c:184
-msgid "Don't Save"
-msgstr "Nemoj snimiti"
-
-#: ../../tinyfirewall.pm_.c:180 ../../tinyfirewall.pm_.c:184
-#: ../../tinyfirewall.pm_.c:204
-msgid "Save & Quit"
-msgstr "Snimi i izađi"
-
-#: ../../tinyfirewall.pm_.c:195 ../../tinyfirewall.pm_.c:199
-msgid "Firewall Configuration Wizard"
-msgstr "Čarobnjak za podeơavanje firewalla"
-
-#: ../../tinyfirewall.pm_.c:197
-msgid "No (firewall this off from the internet)"
-msgstr "Ne (isključi pristup sa interneta)"
-
-#: ../../tinyfirewall.pm_.c:198
-msgid "Yes (allow this through the firewall)"
-msgstr "Da (dozovoli pristup sa interneta)"
-
-#: ../../tinyfirewall.pm_.c:230
-msgid "Please Wait... Verifying installed packages"
-msgstr "Molim sačekajte... Provjeravam instalirane pakete"
-
-#: ../../tinyfirewall.pm_.c:236
-#, c-format
-msgid ""
-"Failure installing the needed packages : %s and Bastille.\n"
-" Try to install them manually."
-msgstr ""
-"GreĆĄka prilikom instaliranja paketa : %s i Bastille.\n"
-" Pokuơajte ih instalirati ručno."
-
-#: ../../ugtk.pm_.c:619
+#: ../../ugtk.pm_.c:594
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-2,*-r-*"
@@ -13351,6 +13789,10 @@ msgid "Graphical Environment"
msgstr "Grafičko okruĆŸenje"
#: ../../share/compssUsers:999
+msgid "Development"
+msgstr "Programiranje"
+
+#: ../../share/compssUsers:999
msgid "Apache, Pro-ftpd"
msgstr "Apache, Pro-ftpd"
@@ -13462,46 +13904,321 @@ msgstr "Multimedija - PrĆŸenje CDa"
msgid "Scientific Workstation"
msgstr "Znanstvena radna stanica"
-#~ msgid "$mode: $warning"
-#~ msgstr "$mode: $warning"
+#~ msgid ""
+#~ "The first time you try the X configuration, you may not be very "
+#~ "satisfied\n"
+#~ "with its display (screen is too small, shifted left or right...). Hence,\n"
+#~ "even if X starts up correctly, DrakX then asks you if the configuration\n"
+#~ "suits you. It will also propose to change it by displaying a list of "
+#~ "valid\n"
+#~ "modes it could find, asking you to select one.\n"
+#~ "\n"
+#~ "As a last resort, if you still cannot get X to work, choose \"Change\n"
+#~ "graphics card\", select \"Unlisted card\", and when prompted on which\n"
+#~ "server, choose \"FBDev\". This is a failsafe option which works with any\n"
+#~ "modern graphics card. Then choose \"Test again\" to be sure."
+#~ msgstr ""
+#~ "The first time you try the X configuration, you may not be very "
+#~ "satisfied\n"
+#~ "with its display (screen is too small, shifted left or right...). Hence,\n"
+#~ "even if X starts up correctly, DrakX then asks you if the configuration\n"
+#~ "suits you. It will also propose to change it by displaying a list of "
+#~ "valid\n"
+#~ "modes it could find, asking you to select one.\n"
+#~ "\n"
+#~ "As a last resort, if you still cannot get X to work, choose \"Change\n"
+#~ "graphics card\", select \"Unlisted card\", and when prompted on which\n"
+#~ "server, choose \"FBDev\". This is a failsafe option which works with any\n"
+#~ "modern graphics card. Then choose \"Test again\" to be sure."
+
+#~ msgid "Internet and Messaging"
+#~ msgstr "Internet i razmjena poruka"
+
+#~ msgid "Multimedia and Graphics"
+#~ msgstr "Multimedija i grafika"
-#, fuzzy
#~ msgid ""
-#~ "This level is to be used with care. It makes your system more easy to "
-#~ "use,\n"
-#~ " but very sensitive: it must not be used for a machine "
-#~ "connected to others\n"
-#~ " or to the Internet. There is no password access."
+#~ "Mandrake Linux 8.2 provides 11 different graphical desktop environments "
+#~ "and window managers to choose from including GNOME 1.4, KDE 2.2.2, Window "
+#~ "Maker 0.8, and the rest"
#~ msgstr ""
-#~ "Ovaj nivo treba koristiti paĆŸljivo. On čini vaĆĄ sistem lakĆĄim za "
-#~ "upotrebu,\n"
-#~ "ali vrlo osjetljivim: ne smije biti koriơten za računar koji je spojen "
-#~ "na\n"
-#~ "druge ili na Internet. Nema pristupa ĆĄifrom."
+#~ "Mandrake Linux 8.2 nudi vam na izbor 11 različitih grafičkih desktop "
+#~ "okolina i window managera uključujući GNOME 1.4, KDE 2.2.2, Window Maker "
+#~ "0.8 i druge"
+
+#~ msgid "Server Software"
+#~ msgstr "Serverski softver"
+
+#~ msgid "MandrakeCampus"
+#~ msgstr "MandrakeCampus"
-#, fuzzy
#~ msgid ""
-#~ "With this security level, the use of this system as a server becomes "
-#~ "possible.\n"
-#~ " The security is now high enough to use the system as a "
-#~ "server which can accept\n"
-#~ " connections from many clients. Note: if your machine is "
-#~ "only a client on the Internet, you should choose a lower level."
+#~ "Would you like to learn Linux simply, quickly, and for free? MandrakeSoft "
+#~ "provides free Linux training, as well as a way to test your progress, at "
+#~ "MandrakeCampus -- our online training center"
#~ msgstr ""
-#~ "Sa ovim sigurnosnim nivoom, postaje moguće koristiti ovaj sistem kao "
-#~ "server.\n"
-#~ "Sigurnost je sada dovoljno visoka za upotrebu sistema kao servera koji "
-#~ "prima\n"
-#~ "konekcije sa mnogo klijenata. Napomena: ako je vaơ računar samo klijent "
-#~ "na Internetu, moĆŸda je bolje da izaberete niĆŸi nivo."
+#~ "Ćœelite li naučiti Linux jednostavno, brzo i besplatno? MandrakeSoft vam "
+#~ "nudi besplatno učenje Linuxa kao i način za testiranje vaơeg napretka na "
+#~ "MandrakeCampus-u -- naĆĄem online centru za obuku"
-#, fuzzy
-#~ msgid "Basic Options"
-#~ msgstr "Opcije"
+#~ msgid ""
+#~ "Quality support from the Linux Community, and from MandrakeSoft, is just "
+#~ "around the corner. And if you're already a Linux veteran, become an "
+#~ "\"Expert\" and share your knowledge at our support website"
+#~ msgstr ""
+#~ "Kvalitetna podrĆĄka od strane Linux zajednice i MandrakeSofta nalazi se "
+#~ "odmah iza ugla. A ako ste već Linux veteran, postanite \"Expert\" i "
+#~ "dijelite vaĆĄe znanje na naĆĄem web sajtu za podrĆĄku"
-#, fuzzy
-#~ msgid "Security Checks"
-#~ msgstr "Sigurnost"
+#~ msgid "MandrakeConsulting"
+#~ msgstr "MandrakeConsulting"
+
+#~ msgid ""
+#~ "For all of your IT projects, our consultants are ready to analyze your "
+#~ "requirements and offer a customized solution. Benefit from MandrakeSoft's "
+#~ "vast experience as a Linux producer to provide a true IT alternative for "
+#~ "your business organization"
+#~ msgstr ""
+#~ "Za sve vaĆĄe IT projekte, naĆĄi konsultanti su spremni da analiziraju vaĆĄe "
+#~ "potrebe i ponude prilagođeno rjeơenje. Iskoristite veliko iskustvo "
+#~ "MandrakeSofta kao proizvođača Linux rjeơenja kako biste ponudili pravu IT "
+#~ "alternativu za vaĆĄ biznis"
+
+#~ msgid "MandrakeStore"
+#~ msgstr "MandrakeStore"
+
+#~ msgid ""
+#~ "For more information on MandrakeSoft's Professional Services and "
+#~ "commercial offerings, please see the following web page:"
+#~ msgstr ""
+#~ "Za viĆĄe informacija o MandrakeSoftovim profesionalnim uslugama i "
+#~ "komercijalnoj ponudi, molimo posjetite sljedeću web stranicu:"
+
+#~ msgid "LBA (doesn't work on old BIOSes)"
+#~ msgstr "LBA (ne radi na starim BIOSima)"
+
+#~ msgid "You don't have any partitions!"
+#~ msgstr "Nemate nijednu particiju!"
+
+#~ msgid ""
+#~ "DiskDrake failed to read correctly the partition table.\n"
+#~ "Continue at your own risk!"
+#~ msgstr ""
+#~ "DiskDrake nije uspio ispravno pročitati tabelu particija.\n"
+#~ "Nastavljate na vlastiti rizik!"
+
+#~ msgid ""
+#~ "I can't read your partition table, it's too corrupted for me :(\n"
+#~ "I'll try to go on blanking bad partitions"
+#~ msgstr ""
+#~ "Ne mogu čitati vaơu tabelu particija, previơe je oơtećena za mene :(\n"
+#~ "Pokuơaću izbrisati loơe particije"
+
+#~ msgid ""
+#~ "Please Build backup before to restore it...\n"
+#~ " or verify that your path to save is correct."
+#~ msgstr ""
+#~ "Molimo pokrenite Izgradi backup prije vraćanja...\n"
+#~ " ili provjerite da li je put za spaĆĄavanje ispravan."
+
+#~ msgid "Firewalling Configuration"
+#~ msgstr "PodeĆĄavanje firewalla"
+
+#~ msgid "Firewalling configuration"
+#~ msgstr "PodeĆĄavanje firewalla"
+
+#~ msgid ""
+#~ "Firewalling\n"
+#~ "\n"
+#~ "You already have set up a firewall.\n"
+#~ "Click on Configure to change or remove the firewall"
+#~ msgstr ""
+#~ "Firewall\n"
+#~ "\n"
+#~ "Već ste podesili firewall.\n"
+#~ "Kliknite na Podesi kako bi se izmjenio ili uklonio firewall"
+
+#~ msgid ""
+#~ "Firewalling\n"
+#~ "\n"
+#~ "Click on Configure to set up a standard firewall"
+#~ msgstr ""
+#~ "Firewall\n"
+#~ "\n"
+#~ "Kliknite na Podesi za podeĆĄavanje standardnog firewalla"
+
+#~ msgid ""
+#~ "We'll now ask you questions about which services you'd like to allow\n"
+#~ "the Internet to connect to. Please think carefully about these\n"
+#~ "questions, as your computer's security is important.\n"
+#~ "\n"
+#~ "Please, if you're not currently using one of these services, firewall\n"
+#~ "it off. You can change this configuration anytime you like by\n"
+#~ "re-running this application!"
+#~ msgstr ""
+#~ "Sada ćemo vam postaviti pitanja o servisima kojima ĆŸelite dozvoliti\n"
+#~ "pristup sa Interneta. Molimo razmislite paĆŸljivo o ovim pitanjima,\n"
+#~ "jer je sigurnost vaơeg računara bitna.\n"
+#~ "\n"
+#~ "Molimo vas, ako trenutno ne koristite neki od ovih servisa, isključite\n"
+#~ "ga firewallom. MoĆŸete izmjeniti ove postavke kad god ĆŸelite ponovnim\n"
+#~ "pokretanjem ove aplikacije!"
+
+#~ msgid ""
+#~ "Are you running a web server on this machine that you need the whole\n"
+#~ "Internet to see? If you are running a webserver that only needs to be\n"
+#~ "accessed by this machine, you can safely answer NO here.\n"
+#~ "\n"
+#~ msgstr ""
+#~ "Da li imate pokrenut web server na ovom računaru za koji ĆŸelite da ga\n"
+#~ "cijeli Internet vidi? Ako imate pokrenut webserver kojem ćete pristupati\n"
+#~ "samo sa ovog računara, moĆŸete slobodno ovdje odgovoriti NE.\n"
+#~ "\n"
+
+#~ msgid ""
+#~ "Are you running a name server on this machine? If you didn't set one\n"
+#~ "up to give away IP and zone information to the whole Internet, please\n"
+#~ "answer no.\n"
+#~ "\n"
+#~ msgstr ""
+#~ "Da li imate pokrenut name server (DNS) na ovom računaru? Ako niste\n"
+#~ "podesili DNS radi davanja informacija o IP i zoni cijelom Internetu, \n"
+#~ "molimo vas odgovorite ne.\n"
+#~ "\n"
+
+#~ msgid ""
+#~ "Do you want to allow incoming Secure Shell (ssh) connections? This\n"
+#~ "is a telnet-replacement that you might use to login. If you're using\n"
+#~ "telnet now, you should definitely switch to ssh. telnet is not\n"
+#~ "encrypted -- so some attackers can steal your password if you use\n"
+#~ "it. ssh is encrypted and doesn't allow for this eavesdropping."
+#~ msgstr ""
+#~ "Da li ĆŸelite da dozvolite ulazne Secure Shell (ssh) konekcije? Ovo\n"
+#~ "je zamjena za telnet koju moĆŸete koristiti za prijavu. Ako sada "
+#~ "koristite\n"
+#~ "telnet, definitivno trebate preći na ssh. Telnet nije kriptovan, tako\n"
+#~ "da neki napadači mogu ukrasti vaơu ơifru ako ga koristite. ssh je\n"
+#~ "kriptovan i ne dozvoljava ovo prisluĆĄkivanje."
+
+#~ msgid ""
+#~ "Do you want to allow incoming telnet connections?\n"
+#~ "This is horribly unsafe, as we explained in the previous screen. We\n"
+#~ "strongly recommend answering No here and using ssh in place of\n"
+#~ "telnet.\n"
+#~ msgstr ""
+#~ "Da li ĆŸelite dozvoliti ulazne telnet konekcije?\n"
+#~ "Ovo je uĆŸasno nesigurno, kao ĆĄto je objaĆĄnjeno na prethodnom\n"
+#~ "ekranu. Strogo preporučujemo da odgovorite Ne ovdje i koristite\n"
+#~ "ssh umjesto telneta.\n"
+
+#~ msgid ""
+#~ "Are you running an FTP server here that you need accessible to the\n"
+#~ "Internet? If you are, we strongly recommend that you only use it for\n"
+#~ "Anonymous transfers. Any passwords sent by FTP can be stolen by some\n"
+#~ "attackers, since FTP also uses no encryption for transferring passwords.\n"
+#~ msgstr ""
+#~ "Da li imate pokrenut FTP server za koji ĆŸelite da je pristupačan sa\n"
+#~ "Interneta? Ako da, onda strogo preporučujemo da ga koristite samo\n"
+#~ "za anonimne transfere. Bilo koju ĆĄifru koja je poslana putem FTPa\n"
+#~ "mogu ukrasti napadači, poơto FTP također ne koristi kriptovanje.\n"
+
+#~ msgid ""
+#~ "Are you running a mail server here? If you're sending you \n"
+#~ "messages through pine, mutt or any other text-based mail client,\n"
+#~ "you probably are. Otherwise, you should firewall this off.\n"
+#~ "\n"
+#~ msgstr ""
+#~ "Da li imate pokrenut mail server ovdje? Ako ĆĄaljete poruke\n"
+#~ "kroz pine, mutt ili neki drugi tekst-bazirani mail klijent, onda\n"
+#~ "vjerovatno imate. U suprotnom, trebali biste isključiti ovo \n"
+#~ "firewallom.\n"
+#~ "\n"
+
+#~ msgid ""
+#~ "Are you running a POP or IMAP server here? This would\n"
+#~ "be used to host non-web-based mail accounts for people via \n"
+#~ "this machine.\n"
+#~ "\n"
+#~ msgstr ""
+#~ "Da li imate pokrenut POP ili IMAP server ovdje? Ovo bi\n"
+#~ "bilo koriĆĄteno za smjeĆĄtaj ne-web-baziranih mail naloga\n"
+#~ "za ljude na ovom računaru.\n"
+#~ "\n"
+
+#~ msgid ""
+#~ "You appear to be running a 2.2 kernel. If your network IP\n"
+#~ "is automatically set by a computer in your home or office \n"
+#~ "(dynamically assigned), we need to allow for this. Is\n"
+#~ "this the case?\n"
+#~ msgstr ""
+#~ "Čini se da koristite 2.2 kernel. Ako je vaĆĄa mreĆŸna IP\n"
+#~ "automatski podeơena putem računara u vaơoj kući ili\n"
+#~ "uredu (dinamički dodjeljena), moramo ovo dozvoliti. Da\n"
+#~ "li je ovo slučaj?\n"
+
+#~ msgid ""
+#~ "Is your computer getting time syncronized to another computer?\n"
+#~ "Mostly, this is used by medium-large Unix/Linux organizations\n"
+#~ "to synchronize time for logging and such. If you're not part\n"
+#~ "of a larger office and haven't heard of this, you probably \n"
+#~ "aren't."
+#~ msgstr ""
+#~ "Da li vaơ računar sinhronizuje vrijeme sa drugim računarom?\n"
+#~ "Najčeơće, ovo se koristi u srednje velikim Unix/Linux organizacijama\n"
+#~ "za sinhronizaciju vremena za pravljenje dnevnika i slično. Ako\n"
+#~ "niste dio većeg ureda i niste čuli za ovo, onda vjerovatno\n"
+#~ "ovo nije slučaj."
+
+#~ msgid ""
+#~ "Configuration complete. May we write these changes to disk?\n"
+#~ "\n"
+#~ "\n"
+#~ "\n"
+#~ msgstr ""
+#~ "PodeĆĄavanje zavrĆĄeno. MoĆŸemo li zapisati ove izmjene na disk?\n"
+#~ "\n"
+#~ "\n"
+#~ "\n"
+
+#~ msgid "Can't open %s for writing: %s\n"
+#~ msgstr "Ne mogu otvoriti %s za pisanje: %s\n"
+
+#~ msgid "No I don't need DHCP"
+#~ msgstr "Ne, ne treba mi DHCP"
+
+#~ msgid "Yes I need DHCP"
+#~ msgstr "Da, treba mi DHCP"
+
+#~ msgid "No I don't need NTP"
+#~ msgstr "Ne, ne treba mi NTP"
+
+#~ msgid "Yes I need NTP"
+#~ msgstr "Da, treba mi NTP"
+
+#~ msgid "Don't Save"
+#~ msgstr "Nemoj snimiti"
+
+#~ msgid "Save & Quit"
+#~ msgstr "Snimi i izađi"
+
+#~ msgid "Firewall Configuration Wizard"
+#~ msgstr "Čarobnjak za podeơavanje firewalla"
+
+#~ msgid "No (firewall this off from the internet)"
+#~ msgstr "Ne (isključi pristup sa interneta)"
+
+#~ msgid "Yes (allow this through the firewall)"
+#~ msgstr "Da (dozovoli pristup sa interneta)"
+
+#~ msgid "Please Wait... Verifying installed packages"
+#~ msgstr "Molim sačekajte... Provjeravam instalirane pakete"
+
+#~ msgid ""
+#~ "Failure installing the needed packages: %s and Bastille.\n"
+#~ " Try to install them manually."
+#~ msgstr ""
+#~ "GreĆĄka prilikom instaliranja paketa: %s i Bastille.\n"
+#~ " Pokuơajte ih instalirati ručno."
#~ msgid "Data list to include on CDROM."
#~ msgstr "Lista podataka koji će biti smjeơteni na CDROM."
@@ -13531,14 +14248,6 @@ msgstr "Znanstvena radna stanica"
#~ "Molim izaberite ako ĆŸelite uključiti\n"
#~ " instalacijski boot na CDu."
-#, fuzzy
-#~ msgid "Windows PDC"
-#~ msgstr "Windows (FAT32)"
-
-#, fuzzy
-#~ msgid "PDC Server Name"
-#~ msgstr "NTP server"
-
#~ msgid ""
#~ "\n"
#~ "Welcome to the Printer Setup Wizard\n"
@@ -13607,36 +14316,15 @@ msgstr "Znanstvena radna stanica"
#~ "Da instalirate mreĆŸne ĆĄtampače, kliknite na \"Odustani\", prebacite na "
#~ "\"Ekspert mod\" i kliknite ponovo na \"Dodaj novi ơtampač\"."
-#, fuzzy
-#~ msgid ""
-#~ "Is your printer a multi-function device from HP (OfficeJet, PSC, LaserJet "
-#~ "1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart or an HP "
-#~ "LaserJet 2200?"
-#~ msgstr ""
-#~ "Da li je vaơ ơtampač viơenamjenski uređaj od HPa (OfficeJet, PSC, "
-#~ "PhotoSmart, LaserJet 1100/1200/1220/3200/3300 sa skenerom)?"
-
#~ msgid "Installing HPOJ package..."
#~ msgstr "Instaliram HPOJ paket..."
#~ msgid "Checking device and configuring HPOJ..."
#~ msgstr "Provjeravam uređaj i podeơavam HPOJ ..."
-#, fuzzy
-#~ msgid "Installing SANE packages..."
-#~ msgstr "Instaliram SANE paket..."
-
-#, fuzzy
-#~ msgid "Installing mtools packages..."
-#~ msgstr "Instaliram pakete..."
-
#~ msgid "Scanning on your HP multi-function device"
#~ msgstr "Skeniram na vaơem HP viơenamjenskom uređaju"
-#, fuzzy
-#~ msgid "Photo memory card access on your HP multi-function device"
-#~ msgstr "Skeniram na vaơem HP viơenamjenskom uređaju"
-
#~ msgid "Making printer port available for CUPS..."
#~ msgstr "Omogućujem CUPSu port ơtampača ..."
@@ -13770,12 +14458,6 @@ msgstr "Znanstvena radna stanica"
#~ msgid "Choose a X driver"
#~ msgstr "Izaberite X drajver"
-#~ msgid "X driver"
-#~ msgstr "X drajver"
-
-#~ msgid "Warning: testing this graphics card may freeze your computer"
-#~ msgstr "Upozorenje: testiranje ove grafičke karte moĆŸe zalediti računar"
-
#~ msgid "Standard VGA, 640x480 at 60 Hz"
#~ msgstr "Standardna VGA, 640x480 na 60 Hz"
diff --git a/perl-install/share/po/ca.po b/perl-install/share/po/ca.po
index 470e4f1a1..59dd891b2 100644
--- a/perl-install/share/po/ca.po
+++ b/perl-install/share/po/ca.po
@@ -5,8 +5,8 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: drakfloppy 0.43\n"
-"POT-Creation-Date: 2002-08-21 15:44+0200\n"
+"Project-Id-Version: DrakX\n"
+"POT-Creation-Date: 2002-09-02 20:14+0200\n"
"PO-Revision-Date: 2001-10-28 01:14+0200\n"
"Last-Translator: Softcatalà <traddrake@softcatala.org>\n"
"Language-Team: Catalan <traddrake@softcatala.org>\n"
@@ -53,19 +53,19 @@ msgstr "32 MB"
msgid "64 MB or more"
msgstr "64 MB o més"
-#: ../../Xconfig/card.pm_.c:201
+#: ../../Xconfig/card.pm_.c:203
msgid "Choose a X server"
msgstr "Escolliu un servidor X"
-#: ../../Xconfig/card.pm_.c:201
+#: ../../Xconfig/card.pm_.c:203
msgid "X server"
msgstr "Servidor X"
-#: ../../Xconfig/card.pm_.c:228
+#: ../../Xconfig/card.pm_.c:230
msgid "Multi-head configuration"
msgstr "Configuració Multi-head"
-#: ../../Xconfig/card.pm_.c:229
+#: ../../Xconfig/card.pm_.c:231
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
@@ -73,27 +73,27 @@ msgstr ""
"El vostre sistema permet l'ús d'una configuració de múltiples capçals.\n"
"Què voleu fer?"
-#: ../../Xconfig/card.pm_.c:284
+#: ../../Xconfig/card.pm_.c:286
msgid "Select the memory size of your graphics card"
msgstr "Seleccioneu la mida de la memòria de la vostra targeta gràfica"
-#: ../../Xconfig/card.pm_.c:345
+#: ../../Xconfig/card.pm_.c:347
msgid "XFree configuration"
msgstr "Configuració de l'XFree"
-#: ../../Xconfig/card.pm_.c:347
+#: ../../Xconfig/card.pm_.c:349
msgid "Which configuration of XFree do you want to have?"
msgstr "Quina configuració de l'XFree voleu tenir?"
-#: ../../Xconfig/card.pm_.c:379
+#: ../../Xconfig/card.pm_.c:381
msgid "Configure all heads independently"
msgstr "Configura tots els capçals independentment"
-#: ../../Xconfig/card.pm_.c:380
+#: ../../Xconfig/card.pm_.c:382
msgid "Use Xinerama extension"
msgstr "Utilitza l'extensió Xinerama"
-#: ../../Xconfig/card.pm_.c:384
+#: ../../Xconfig/card.pm_.c:386
#, c-format
msgid "Configure only card \"%s\"%s"
msgstr "Configura només la targeta \"%s\"%s"
@@ -104,13 +104,13 @@ msgstr "Configura només la targeta \"%s\"%s"
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:435
+#: ../../Xconfig/card.pm_.c:410 ../../Xconfig/card.pm_.c:436
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s with 3D hardware acceleration"
msgstr "Xfree %s amb acceleració 3D de maquinari"
-#: ../../Xconfig/card.pm_.c:412
+#: ../../Xconfig/card.pm_.c:413
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -120,18 +120,18 @@ msgstr ""
"l'Xfree %s.\n"
"L'XFree %s, que pot tenir un suport millor en 2D, suporta la vostra targeta."
-#: ../../Xconfig/card.pm_.c:414 ../../Xconfig/card.pm_.c:437
+#: ../../Xconfig/card.pm_.c:415 ../../Xconfig/card.pm_.c:438
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr ""
"La vostra targeta pot tenir acceleració 3D de maquinari amb l'Xfree %s."
-#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:443
+#: ../../Xconfig/card.pm_.c:423 ../../Xconfig/card.pm_.c:444
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s amb acceleració 3D de maquinari EXPERIMENTAL"
-#: ../../Xconfig/card.pm_.c:425
+#: ../../Xconfig/card.pm_.c:426
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -144,7 +144,7 @@ msgstr ""
"PENJAR.\n"
"L'XFree %s, que pot tenir un suport millor en 2D, suporta la vostra targeta."
-#: ../../Xconfig/card.pm_.c:428 ../../Xconfig/card.pm_.c:445
+#: ../../Xconfig/card.pm_.c:429 ../../Xconfig/card.pm_.c:446
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
@@ -154,52 +154,53 @@ msgstr ""
"TINGUEU EN COMPTE QUE ES TRACTA D'UN SUPORT EXPERIMENTAL; L'ORDINADOR ES POT "
"PENJAR."
-#: ../../Xconfig/card.pm_.c:451
+#: ../../Xconfig/card.pm_.c:452
msgid "Xpmac (installation display driver)"
msgstr "Xpmac (instal·lació del controlador de pantalla"
-#: ../../Xconfig/main.pm_.c:78 ../../Xconfig/main.pm_.c:79
-#: ../../Xconfig/monitor.pm_.c:94 ../../any.pm_.c:974
+#: ../../Xconfig/main.pm_.c:76 ../../Xconfig/main.pm_.c:77
+#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:977
msgid "Custom"
msgstr "Personalitzada"
-#: ../../Xconfig/main.pm_.c:104
+#: ../../Xconfig/main.pm_.c:102
msgid "Graphic Card"
msgstr "Targeta gràfica"
-#: ../../Xconfig/main.pm_.c:107 ../../Xconfig/monitor.pm_.c:91
+#: ../../Xconfig/main.pm_.c:105 ../../Xconfig/monitor.pm_.c:93
msgid "Monitor"
msgstr "Monitor"
-#: ../../Xconfig/main.pm_.c:110 ../../Xconfig/resolution_and_depth.pm_.c:209
+#: ../../Xconfig/main.pm_.c:108 ../../Xconfig/resolution_and_depth.pm_.c:209
msgid "Resolution"
msgstr "Resolució"
-#: ../../Xconfig/main.pm_.c:114
+#: ../../Xconfig/main.pm_.c:113
msgid "Test"
msgstr ""
-#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:59
-#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/removable.pm_.c:25
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:63
+#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/removable.pm_.c:25
#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "Opcions"
#: ../../Xconfig/main.pm_.c:121 ../../Xconfig/resolution_and_depth.pm_.c:268
-#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:281
+#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:275
#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
-#: ../../interactive.pm_.c:351 ../../interactive/http.pm_.c:104
+#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:104
#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
-#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:156
-#: ../../my_gtk.pm_.c:284 ../../my_gtk.pm_.c:307
-#: ../../standalone/drakbackup_.c:3324 ../../standalone/drakbackup_.c:3419
-#: ../../standalone/drakbackup_.c:3438
+#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:159
+#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310
+#: ../../standalone/drakbackup_.c:3972 ../../standalone/drakbackup_.c:4067
+#: ../../standalone/drakbackup_.c:4086
msgid "Ok"
msgstr "D'acord"
#: ../../Xconfig/main.pm_.c:121 ../../diskdrake/dav.pm_.c:24
-#: ../../printerdrake.pm_.c:2933 ../../standalone/logdrake_.c:224
+#: ../../harddrake/ui.pm_.c:98 ../../printerdrake.pm_.c:3155
+#: ../../standalone/logdrake_.c:224
msgid "Quit"
msgstr "Surt"
@@ -216,28 +217,28 @@ msgstr ""
"\n"
"%s"
-#: ../../Xconfig/monitor.pm_.c:91
+#: ../../Xconfig/monitor.pm_.c:93
msgid "Choose a monitor"
msgstr "Escolliu un monitor"
-#: ../../Xconfig/monitor.pm_.c:95
+#: ../../Xconfig/monitor.pm_.c:97
msgid "Plug'n Play"
msgstr ""
-#: ../../Xconfig/monitor.pm_.c:96 ../../mouse.pm_.c:45
+#: ../../Xconfig/monitor.pm_.c:98 ../../mouse.pm_.c:46
msgid "Generic"
msgstr "General"
-#: ../../Xconfig/monitor.pm_.c:97 ../../harddrake/ui.pm_.c:36
+#: ../../Xconfig/monitor.pm_.c:99 ../../harddrake/ui.pm_.c:37
#, fuzzy
msgid "Vendor"
msgstr "Desfés"
-#: ../../Xconfig/monitor.pm_.c:107
+#: ../../Xconfig/monitor.pm_.c:109
msgid "Plug'n Play probing failed. Please choose a precise monitor"
msgstr ""
-#: ../../Xconfig/monitor.pm_.c:112
+#: ../../Xconfig/monitor.pm_.c:114
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -260,11 +261,11 @@ msgstr ""
"el podríeu fer malbé.\n"
"En cas de dubte, sigueu conservador amb aquest paràmetre."
-#: ../../Xconfig/monitor.pm_.c:119
+#: ../../Xconfig/monitor.pm_.c:121
msgid "Horizontal refresh rate"
msgstr "Velocitat de refresc horitzontal"
-#: ../../Xconfig/monitor.pm_.c:120
+#: ../../Xconfig/monitor.pm_.c:122
msgid "Vertical refresh rate"
msgstr "Velocitat de refresc vertical"
@@ -301,36 +302,42 @@ msgstr "Escolliu la resolució i la profunditat de color"
msgid "Graphics card: %s"
msgstr "Targeta gràfica: %s"
-#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1015
-#: ../../bootlook.pm_.c:334 ../../diskdrake/smbnfs_gtk.pm_.c:87
-#: ../../install_steps_gtk.pm_.c:412 ../../install_steps_gtk.pm_.c:470
-#: ../../install_steps_interactive.pm_.c:576 ../../interactive.pm_.c:142
-#: ../../interactive.pm_.c:351 ../../interactive/http.pm_.c:105
+#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1018
+#: ../../bootlook.pm_.c:338 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:406 ../../install_steps_gtk.pm_.c:464
+#: ../../install_steps_interactive.pm_.c:560 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:105
#: ../../interactive/newt.pm_.c:174 ../../interactive/stdio.pm_.c:39
-#: ../../interactive/stdio.pm_.c:143 ../../my_gtk.pm_.c:155
-#: ../../my_gtk.pm_.c:159 ../../my_gtk.pm_.c:284
-#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1990
-#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3278
-#: ../../standalone/drakbackup_.c:3311 ../../standalone/drakbackup_.c:3337
-#: ../../standalone/drakbackup_.c:3364 ../../standalone/drakbackup_.c:3391
-#: ../../standalone/drakbackup_.c:3451 ../../standalone/drakbackup_.c:3478
-#: ../../standalone/drakbackup_.c:3504 ../../standalone/drakconnect_.c:115
-#: ../../standalone/drakconnect_.c:147 ../../standalone/drakconnect_.c:289
-#: ../../standalone/drakconnect_.c:537 ../../standalone/drakconnect_.c:679
-#: ../../standalone/drakfloppy_.c:234 ../../standalone/drakfloppy_.c:383
-#: ../../standalone/drakfont_.c:970 ../../standalone/drakgw_.c:598
-#: ../../standalone/logdrake_.c:224 ../../standalone/logdrake_.c:528
-#: ../../standalone/tinyfirewall_.c:64
+#: ../../interactive/stdio.pm_.c:143 ../../my_gtk.pm_.c:158
+#: ../../my_gtk.pm_.c:162 ../../my_gtk.pm_.c:287
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:2124
+#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3926
+#: ../../standalone/drakbackup_.c:3959 ../../standalone/drakbackup_.c:3985
+#: ../../standalone/drakbackup_.c:4012 ../../standalone/drakbackup_.c:4039
+#: ../../standalone/drakbackup_.c:4099 ../../standalone/drakbackup_.c:4126
+#: ../../standalone/drakbackup_.c:4156 ../../standalone/drakbackup_.c:4182
+#: ../../standalone/drakconnect_.c:115 ../../standalone/drakconnect_.c:147
+#: ../../standalone/drakconnect_.c:289 ../../standalone/drakconnect_.c:537
+#: ../../standalone/drakconnect_.c:679 ../../standalone/drakfloppy_.c:234
+#: ../../standalone/drakfloppy_.c:383 ../../standalone/drakfont_.c:970
+#: ../../standalone/drakgw_.c:536 ../../standalone/logdrake_.c:224
+#: ../../standalone/logdrake_.c:526
msgid "Cancel"
msgstr "Cancel·la"
-#: ../../Xconfig/test.pm_.c:26
+#: ../../Xconfig/test.pm_.c:30
+msgid "Test of the configuration"
+msgstr "Comprova la configuració"
+
+#: ../../Xconfig/test.pm_.c:31
msgid "Do you want to test the configuration?"
msgstr "Voleu comprovar la configuració?"
-#: ../../Xconfig/test.pm_.c:26
-msgid "Test of the configuration"
-msgstr "Comprova la configuració"
+#: ../../Xconfig/test.pm_.c:31
+#, fuzzy
+msgid "Warning: testing this graphic card may freeze your computer"
+msgstr ""
+"Avís: la comprovació d'aquesta targeta gràfica pot penjar-vos l'ordinador"
#: ../../Xconfig/various.pm_.c:29
#, c-format
@@ -467,26 +474,22 @@ msgstr "Arrencada des de DOS/Windows (loadlin)"
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:158 ../../any.pm_.c:190
+#: ../../any.pm_.c:159 ../../any.pm_.c:190
msgid "Bootloader main options"
msgstr "Opcions principals del carregador d'arrencada"
-#: ../../any.pm_.c:159 ../../any.pm_.c:191
+#: ../../any.pm_.c:160 ../../any.pm_.c:191
msgid "Bootloader to use"
msgstr "Carregador d'arrencada a utilitzar"
-#: ../../any.pm_.c:161
+#: ../../any.pm_.c:162
msgid "Bootloader installation"
msgstr "Instal·lació del carregador d'arrencada"
-#: ../../any.pm_.c:163 ../../any.pm_.c:193
+#: ../../any.pm_.c:164 ../../any.pm_.c:193
msgid "Boot device"
msgstr "Dispositiu d'arrencada"
-#: ../../any.pm_.c:164
-msgid "LBA (doesn't work on old BIOSes)"
-msgstr "LBA (no funciona en BIOS antics)"
-
#: ../../any.pm_.c:165
msgid "Compact"
msgstr "Compacte"
@@ -503,16 +506,17 @@ msgstr "Mode de vídeo"
msgid "Delay before booting default image"
msgstr "Demora abans d'arrencar la imatge predeterminada"
-#: ../../any.pm_.c:170 ../../any.pm_.c:786
+#: ../../any.pm_.c:170 ../../any.pm_.c:788
#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1111 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:743 ../../printerdrake.pm_.c:858
-#: ../../standalone/drakconnect_.c:624 ../../standalone/drakconnect_.c:649
+#: ../../install_steps_interactive.pm_.c:1096 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:850 ../../printerdrake.pm_.c:965
+#: ../../standalone/drakbackup_.c:3528 ../../standalone/drakconnect_.c:624
+#: ../../standalone/drakconnect_.c:649
msgid "Password"
msgstr "Contrasenya"
-#: ../../any.pm_.c:171 ../../any.pm_.c:787
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../any.pm_.c:171 ../../any.pm_.c:789
+#: ../../install_steps_interactive.pm_.c:1097
msgid "Password (again)"
msgstr "Contrasenya (un altre cop)"
@@ -548,14 +552,14 @@ msgstr ""
"L'opció ``Limita les opcions de la línia d'ordres'' no té cap ús sense una "
"contrasenya"
-#: ../../any.pm_.c:184 ../../any.pm_.c:762
-#: ../../diskdrake/interactive.pm_.c:1180
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../any.pm_.c:184 ../../any.pm_.c:764
+#: ../../diskdrake/interactive.pm_.c:1191
+#: ../../install_steps_interactive.pm_.c:1091
msgid "Please try again"
msgstr "Si us plau, torneu-ho a intentar"
-#: ../../any.pm_.c:184 ../../any.pm_.c:762
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../any.pm_.c:184 ../../any.pm_.c:764
+#: ../../install_steps_interactive.pm_.c:1091
msgid "The passwords do not match"
msgstr "Les contrasenyes no coincideixen"
@@ -605,16 +609,16 @@ msgstr ""
"Aquestes són les diferents entrades en el menú d'arrencada.\n"
"Podeu afegir-ne algunes més o canviar-ne les existents."
-#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1483
-#: ../../standalone/drakbackup_.c:1596 ../../standalone/drakfont_.c:1011
+#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1558
+#: ../../standalone/drakbackup_.c:1671 ../../standalone/drakfont_.c:1011
#: ../../standalone/drakfont_.c:1054
msgid "Add"
msgstr "Afegeix"
-#: ../../any.pm_.c:257 ../../any.pm_.c:774 ../../diskdrake/dav.pm_.c:60
+#: ../../any.pm_.c:257 ../../any.pm_.c:776 ../../diskdrake/dav.pm_.c:64
#: ../../diskdrake/hd_gtk.pm_.c:153 ../../diskdrake/removable.pm_.c:27
#: ../../diskdrake/smbnfs_gtk.pm_.c:88 ../../interactive/http.pm_.c:153
-#: ../../standalone/drakbackup_.c:2696
+#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2772
msgid "Done"
msgstr "Fet"
@@ -627,7 +631,7 @@ msgstr "Modifica"
msgid "Which type of entry do you want to add?"
msgstr "Quin tipus d'entrada voleu afegir?"
-#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1630
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1705
msgid "Linux"
msgstr "Linux"
@@ -713,7 +717,7 @@ msgstr "Aquesta etiqueta ja està en ús"
#: ../../any.pm_.c:656
#, c-format
msgid "Found %s %s interfaces"
-msgstr "S'han trobat interfícies %2$s %1$s"
+msgstr "S'han trobat interfícies %s %s"
#: ../../any.pm_.c:657
msgid "Do you have another one?"
@@ -724,13 +728,13 @@ msgstr "En teniu una altra?"
msgid "Do you have any %s interfaces?"
msgstr "Teniu alguna interfície %s?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:821 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:283
+#: ../../any.pm_.c:660 ../../any.pm_.c:823 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:286
msgid "No"
msgstr "No"
-#: ../../any.pm_.c:660 ../../any.pm_.c:820 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:283
+#: ../../any.pm_.c:660 ../../any.pm_.c:822 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:286
msgid "Yes"
msgstr "Sí"
@@ -831,39 +835,49 @@ msgstr "permet \"su\""
msgid "access to administrative files"
msgstr "accés a fitxers administratius"
-#: ../../any.pm_.c:758
+#: ../../any.pm_.c:754
+#, fuzzy
+msgid "access to network tools"
+msgstr "accés a les eines rpm"
+
+#: ../../any.pm_.c:755
+#, fuzzy
+msgid "access to compilation tools"
+msgstr "accés a les eines rpm"
+
+#: ../../any.pm_.c:760
#, c-format
msgid "(already added %s)"
msgstr "(ja s'ha afegit %s)"
-#: ../../any.pm_.c:763
+#: ../../any.pm_.c:765
msgid "This password is too simple"
msgstr "Aquesta contrasenya és massa senzilla"
-#: ../../any.pm_.c:764
+#: ../../any.pm_.c:766
msgid "Please give a user name"
msgstr "Si us plau, introduïu un nom d'usuari"
-#: ../../any.pm_.c:765
+#: ../../any.pm_.c:767
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
"El nom d'usuari només pot contenir lletres en minúscula, números, `-' i `_'"
-#: ../../any.pm_.c:766
+#: ../../any.pm_.c:768
#, fuzzy
msgid "The user name is too long"
msgstr "Aquest nom d'usuari ja s'ha afegit"
-#: ../../any.pm_.c:767
+#: ../../any.pm_.c:769
msgid "This user name is already added"
msgstr "Aquest nom d'usuari ja s'ha afegit"
-#: ../../any.pm_.c:771
+#: ../../any.pm_.c:773
msgid "Add user"
msgstr "Afegeix un usuari"
-#: ../../any.pm_.c:772
+#: ../../any.pm_.c:774
#, c-format
msgid ""
"Enter a user\n"
@@ -872,33 +886,33 @@ msgstr ""
"Introduïu un usuari\n"
"%s"
-#: ../../any.pm_.c:773
+#: ../../any.pm_.c:775
msgid "Accept user"
msgstr "Accepta l'usuari"
-#: ../../any.pm_.c:784
+#: ../../any.pm_.c:786
msgid "Real name"
msgstr "Nom real"
-#: ../../any.pm_.c:785 ../../printerdrake.pm_.c:742
-#: ../../printerdrake.pm_.c:857
+#: ../../any.pm_.c:787 ../../printerdrake.pm_.c:849
+#: ../../printerdrake.pm_.c:964
msgid "User name"
msgstr "Nom d'usuari"
-#: ../../any.pm_.c:788
+#: ../../any.pm_.c:790
msgid "Shell"
msgstr "Shell"
-#: ../../any.pm_.c:790
+#: ../../any.pm_.c:792
msgid "Icon"
msgstr "Icona"
-#: ../../any.pm_.c:817
+#: ../../any.pm_.c:819
msgid "Autologin"
msgstr "Entrada automàtica"
#
-#: ../../any.pm_.c:818
+#: ../../any.pm_.c:820
msgid ""
"I can set up your computer to automatically log on one user.\n"
"Do you want to use this feature?"
@@ -907,20 +921,20 @@ msgstr ""
"nom d'usuari.\n"
"Voleu activar aquesta característica?"
-#: ../../any.pm_.c:822
+#: ../../any.pm_.c:824
msgid "Choose the default user:"
msgstr "Escolliu l'usuari per defecte:"
-#: ../../any.pm_.c:823
+#: ../../any.pm_.c:825
msgid "Choose the window manager to run:"
msgstr "Escolliu el gestor de finestres per executar:"
#
-#: ../../any.pm_.c:838
+#: ../../any.pm_.c:840
msgid "Please choose a language to use."
msgstr "Si us plau, trieu un idioma per utilitzar."
-#: ../../any.pm_.c:840
+#: ../../any.pm_.c:842
msgid ""
"Mandrake Linux can support multiple languages. Select\n"
"the languages you would like to install. They will be available\n"
@@ -930,38 +944,38 @@ msgstr ""
"els llenguatges que volgueu instal·lar. Estaran disponibles\n"
"quan reinicieu el sistema després de que la instal·lació s'hagi completat."
-#: ../../any.pm_.c:854 ../../install_steps_interactive.pm_.c:708
+#: ../../any.pm_.c:856 ../../install_steps_interactive.pm_.c:692
#: ../../standalone/drakxtv_.c:73
msgid "All"
msgstr "Tots"
#
-#: ../../any.pm_.c:974
+#: ../../any.pm_.c:977
msgid "Allow all users"
msgstr "Permet tots els usuaris"
#
-#: ../../any.pm_.c:974
+#: ../../any.pm_.c:977
msgid "No sharing"
msgstr "No es comparteix"
-#: ../../any.pm_.c:984 ../../standalone.pm_.c:57
+#: ../../any.pm_.c:987 ../../install_any.pm_.c:1183 ../../standalone.pm_.c:58
#, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "El paquet %s s'ha d'instal·lar. El voleu instal·lar?"
-#: ../../any.pm_.c:987
+#: ../../any.pm_.c:990
msgid ""
"You can export using NFS or Samba. Please select which you'd like to use."
msgstr ""
"Podeu exportar utilitzant NFS o Samba. Seleccioneu quin voleu utilitzar."
-#: ../../any.pm_.c:995 ../../standalone.pm_.c:61
+#: ../../any.pm_.c:998 ../../install_any.pm_.c:1188 ../../standalone.pm_.c:63
#, c-format
msgid "Mandatory package %s is missing"
msgstr "El paquet %s necessari falta"
-#: ../../any.pm_.c:1001
+#: ../../any.pm_.c:1004
msgid ""
"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
@@ -975,11 +989,11 @@ msgstr ""
"\n"
"\"Defecte\" permetre granularitat per usuari.\n"
-#: ../../any.pm_.c:1015
+#: ../../any.pm_.c:1018
msgid "Launch userdrake"
msgstr "Executa userdrake"
-#: ../../any.pm_.c:1017
+#: ../../any.pm_.c:1020
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
@@ -987,32 +1001,32 @@ msgstr ""
"La compartició per usuari utilitza el grup \"ComparticióFitxers\".\n"
"Podeu utilitzar userdrake per a afegir un usuari a aquest grup."
-#: ../../any.pm_.c:1068
+#: ../../any.pm_.c:1071
msgid "Welcome To Crackers"
msgstr "Benvinguts, crackers"
-#: ../../any.pm_.c:1069
+#: ../../any.pm_.c:1072
msgid "Poor"
msgstr "Pobre"
-#: ../../any.pm_.c:1070 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1073 ../../mouse.pm_.c:31
msgid "Standard"
msgstr "Estàndard"
-#: ../../any.pm_.c:1071
+#: ../../any.pm_.c:1074
msgid "High"
msgstr "Alt"
#
-#: ../../any.pm_.c:1072
+#: ../../any.pm_.c:1075
msgid "Higher"
msgstr "Més Alt"
-#: ../../any.pm_.c:1073
+#: ../../any.pm_.c:1076
msgid "Paranoid"
msgstr "Paranoic"
-#: ../../any.pm_.c:1076
+#: ../../any.pm_.c:1079
msgid ""
"This level is to be used with care. It makes your system more easy to use,\n"
"but very sensitive: it must not be used for a machine connected to others\n"
@@ -1023,7 +1037,7 @@ msgstr ""
"d'utilitzar, però també molt sensible: no s'ha d'utilitzar en un ordinador\n"
"connectat a d'altres o a Internet. No s'hi accedeix mitjançant contrasenya."
-#: ../../any.pm_.c:1079
+#: ../../any.pm_.c:1082
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -1032,7 +1046,7 @@ msgstr ""
"segueix sense ser recomanable."
#
-#: ../../any.pm_.c:1080
+#: ../../any.pm_.c:1083
msgid ""
"This is the standard security recommended for a computer that will be used "
"to connect to the Internet as a client."
@@ -1041,7 +1055,7 @@ msgstr ""
"s'utilitzarà per connectar-se a Internet com a client. Ara hi ha "
"comprovacions de seguretat."
-#: ../../any.pm_.c:1081
+#: ../../any.pm_.c:1084
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
@@ -1050,7 +1064,7 @@ msgstr ""
"automàtiques"
#
-#: ../../any.pm_.c:1082
+#: ../../any.pm_.c:1085
msgid ""
"With this security level, the use of this system as a server becomes "
"possible.\n"
@@ -1066,7 +1080,7 @@ msgstr ""
"un client d'internet, seria millor escollir un nivell menor"
#
-#: ../../any.pm_.c:1085
+#: ../../any.pm_.c:1088
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
"security features are at their maximum."
@@ -1074,33 +1088,33 @@ msgstr ""
"Això és similar al nivell anterior, però el sistema està completament tancat "
"i les característiques de seguretat estan al màxim."
-#: ../../any.pm_.c:1091
+#: ../../any.pm_.c:1094
#, fuzzy
msgid "DrakSec Basic Options"
msgstr "Especifica les opcions"
-#: ../../any.pm_.c:1092
+#: ../../any.pm_.c:1095
msgid "Please choose the desired security level"
msgstr "Escolliu el nivell de seguretat"
#
-#: ../../any.pm_.c:1095
+#: ../../any.pm_.c:1098
msgid "Security level"
msgstr "El nivell de seguretat"
#
-#: ../../any.pm_.c:1097
+#: ../../any.pm_.c:1100
msgid "Use libsafe for servers"
msgstr "Utilitzeu libsafe per als servidors"
-#: ../../any.pm_.c:1098
+#: ../../any.pm_.c:1101
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
"Una llibreria que el defensa contra els 'buffer overflow' i el atacs de "
"'format string'."
-#: ../../any.pm_.c:1099
+#: ../../any.pm_.c:1102
#, fuzzy
msgid "Security Administrator (login or email)"
msgstr "Seguretat d'usuari (login o email)"
@@ -1143,13 +1157,13 @@ msgstr ""
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:935
+#: ../../bootloader.pm_.c:932
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Benvingut al GRUB, el selector de sistema operatiu!"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:938
+#: ../../bootloader.pm_.c:935
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr ""
@@ -1157,44 +1171,44 @@ msgstr ""
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:941
+#: ../../bootloader.pm_.c:938
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Premeu Intro per arrencar el SO seleccionat, 'e' per editar-les"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:941
msgid "commands before booting, or 'c' for a command-line."
msgstr "ordres prèvies a l'arrencada, o 'c' per obtenir una línia d'ordres."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:947
+#: ../../bootloader.pm_.c:944
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "La posició ressaltada arrencarà automàticament dintre de %d segons."
-#: ../../bootloader.pm_.c:951
+#: ../../bootloader.pm_.c:948
msgid "not enough room in /boot"
msgstr "no hi ha prou espai a /boot"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1051
+#: ../../bootloader.pm_.c:1048
msgid "Desktop"
msgstr "Escriptori"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1053
+#: ../../bootloader.pm_.c:1050
msgid "Start Menu"
msgstr "Menú Inici"
-#: ../../bootloader.pm_.c:1072
+#: ../../bootloader.pm_.c:1069
#, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "No podeu instal·lar el carregador d'arrencada a la partició %s\n"
-#: ../../bootlook.pm_.c:45
+#: ../../bootlook.pm_.c:45 ../../standalone/draksplash_.c:25
msgid "no help implemented yet.\n"
msgstr "encara no s'ha implementat cap ajuda.\n"
@@ -1202,8 +1216,8 @@ msgstr "encara no s'ha implementat cap ajuda.\n"
msgid "Boot Style Configuration"
msgstr "Configuració del tipus d'arrencada"
-#: ../../bootlook.pm_.c:78 ../../harddrake/ui.pm_.c:59
-#: ../../harddrake/ui.pm_.c:60 ../../standalone/drakfloppy_.c:81
+#: ../../bootlook.pm_.c:78 ../../harddrake/ui.pm_.c:62
+#: ../../harddrake/ui.pm_.c:63 ../../standalone/drakfloppy_.c:81
#: ../../standalone/logdrake_.c:101
msgid "/_File"
msgstr "/_Fitxer"
@@ -1213,7 +1227,7 @@ msgstr "/_Fitxer"
msgid "/File/_Quit"
msgstr "/Fitxer/_Surt"
-#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:60
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:63
#: ../../standalone/drakfloppy_.c:82 ../../standalone/logdrake_.c:107
msgid "<control>Q"
msgstr "<control>Q"
@@ -1255,94 +1269,101 @@ msgstr "Instal·la el sistema"
msgid "Display theme under console"
msgstr ""
-#: ../../bootlook.pm_.c:166
+#: ../../bootlook.pm_.c:145
+#, fuzzy
+msgid "Create new theme"
+msgstr "Crea una nova partició"
+
+#: ../../bootlook.pm_.c:169
msgid "Can't create Bootsplash preview"
msgstr ""
-#: ../../bootlook.pm_.c:166 ../../bootlook.pm_.c:184 ../../bootlook.pm_.c:187
-#: ../../bootlook.pm_.c:190 ../../bootlook.pm_.c:220 ../../bootlook.pm_.c:222
-#: ../../bootlook.pm_.c:232 ../../bootlook.pm_.c:241 ../../bootlook.pm_.c:248
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:336
-#: ../../diskdrake/interactive.pm_.c:351 ../../diskdrake/interactive.pm_.c:464
-#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../bootlook.pm_.c:169 ../../bootlook.pm_.c:187 ../../bootlook.pm_.c:190
+#: ../../bootlook.pm_.c:193 ../../bootlook.pm_.c:223 ../../bootlook.pm_.c:225
+#: ../../bootlook.pm_.c:235 ../../bootlook.pm_.c:244 ../../bootlook.pm_.c:251
+#: ../../diskdrake/dav.pm_.c:73 ../../diskdrake/hd_gtk.pm_.c:116
+#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/interactive.pm_.c:355
+#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/interactive.pm_.c:474
+#: ../../diskdrake/smbnfs_gtk.pm_.c:45 ../../fsedit.pm_.c:239
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:365 ../../interactive/http.pm_.c:119
-#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:80
+#: ../../interactive/http.pm_.c:119 ../../interactive/http.pm_.c:120
+#: ../../standalone/draksplash_.c:32
msgid "Error"
msgstr "Error"
-#: ../../bootlook.pm_.c:183
+#: ../../bootlook.pm_.c:186
#, c-format
msgid "Backup %s to %s.old"
msgstr ""
-#: ../../bootlook.pm_.c:184
+#: ../../bootlook.pm_.c:187
msgid "unable to backup lilo message"
msgstr ""
-#: ../../bootlook.pm_.c:186
+#: ../../bootlook.pm_.c:189
#, fuzzy, c-format
msgid "Copy %s to %s"
msgstr "Copiant %s"
-#: ../../bootlook.pm_.c:187
+#: ../../bootlook.pm_.c:190
msgid "can't change lilo message"
msgstr ""
-#: ../../bootlook.pm_.c:190
+#: ../../bootlook.pm_.c:193
msgid "Lilo message not found"
msgstr ""
-#: ../../bootlook.pm_.c:220
+#: ../../bootlook.pm_.c:223
msgid "Can't write /etc/sysconfig/bootsplash."
msgstr ""
-#: ../../bootlook.pm_.c:220
+#: ../../bootlook.pm_.c:223
#, fuzzy, c-format
msgid "Write %s"
msgstr "XFree %s"
-#: ../../bootlook.pm_.c:222
+#: ../../bootlook.pm_.c:225
msgid ""
"Can't write /etc/sysconfig/bootsplash\n"
"File not found."
msgstr ""
-#: ../../bootlook.pm_.c:233
+#: ../../bootlook.pm_.c:236
#, c-format
msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
msgstr ""
-#: ../../bootlook.pm_.c:236
+#: ../../bootlook.pm_.c:239
#, c-format
-msgid "Make initrd 'mkinird -f /boot/initrd-%s.img %s'."
+msgid "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
msgstr ""
-#: ../../bootlook.pm_.c:242
+#: ../../bootlook.pm_.c:245
msgid ""
"Can't relaunch LiLo!\n"
"Launch \"lilo\" as root in command line to complete LiLo theme installation."
msgstr ""
-#: ../../bootlook.pm_.c:246
+#: ../../bootlook.pm_.c:249
msgid "Relaunch 'lilo'"
msgstr ""
-#: ../../bootlook.pm_.c:248
+#: ../../bootlook.pm_.c:251 ../../standalone/draksplash_.c:161
+#: ../../standalone/draksplash_.c:330 ../../standalone/draksplash_.c:454
#, fuzzy
msgid "Notice"
msgstr "NoVideo"
-#: ../../bootlook.pm_.c:249
+#: ../../bootlook.pm_.c:252
msgid "LiLo and Bootsplash themes installation successfull"
msgstr ""
-#: ../../bootlook.pm_.c:249
+#: ../../bootlook.pm_.c:252
#, fuzzy
msgid "Theme installation failed!"
msgstr "Tipus d'instal·lació"
-#: ../../bootlook.pm_.c:258
+#: ../../bootlook.pm_.c:261
#, c-format
msgid ""
"You are currently using %s as your boot manager.\n"
@@ -1351,23 +1372,22 @@ msgstr ""
"Actualment utilitzeu %s com a carregador d'arrencada\n"
"Feu click en Configura per a executar l'auxiliar de configuració."
-#: ../../bootlook.pm_.c:260 ../../standalone/drakbackup_.c:2352
-#: ../../standalone/drakbackup_.c:2362 ../../standalone/drakbackup_.c:2372
-#: ../../standalone/drakbackup_.c:2380 ../../standalone/drakgw_.c:592
-#: ../../standalone/tinyfirewall_.c:58
+#: ../../bootlook.pm_.c:263 ../../standalone/drakbackup_.c:2427
+#: ../../standalone/drakbackup_.c:2437 ../../standalone/drakbackup_.c:2447
+#: ../../standalone/drakbackup_.c:2455 ../../standalone/drakgw_.c:530
msgid "Configure"
msgstr "Configura"
-#: ../../bootlook.pm_.c:267
+#: ../../bootlook.pm_.c:270
#, fuzzy
msgid "Splash selection"
msgstr "Desa la selecció de paquets"
-#: ../../bootlook.pm_.c:270
+#: ../../bootlook.pm_.c:273
msgid "Themes"
msgstr ""
-#: ../../bootlook.pm_.c:272
+#: ../../bootlook.pm_.c:275
msgid ""
"\n"
"Select a theme for\n"
@@ -1376,44 +1396,44 @@ msgid ""
"them separatly"
msgstr ""
-#: ../../bootlook.pm_.c:275
+#: ../../bootlook.pm_.c:278
msgid "Lilo screen"
msgstr ""
-#: ../../bootlook.pm_.c:279
+#: ../../bootlook.pm_.c:283
msgid "Bootsplash"
msgstr ""
-#: ../../bootlook.pm_.c:314
+#: ../../bootlook.pm_.c:318
msgid "System mode"
msgstr "Mode de sistema"
-#: ../../bootlook.pm_.c:316
+#: ../../bootlook.pm_.c:320
msgid "Launch the graphical environment when your system starts"
msgstr "Executa el sistema X-Window en iniciar"
-#: ../../bootlook.pm_.c:321
+#: ../../bootlook.pm_.c:325
msgid "No, I don't want autologin"
msgstr "No, no vull l'entrada automàtica"
-#: ../../bootlook.pm_.c:323
+#: ../../bootlook.pm_.c:327
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "Sí, vull l'entrada automàtica amb aquest (usuari, escriptori)"
-#: ../../bootlook.pm_.c:333 ../../network/netconnect.pm_.c:101
+#: ../../bootlook.pm_.c:337 ../../network/netconnect.pm_.c:101
#: ../../standalone/drakTermServ_.c:173 ../../standalone/drakTermServ_.c:300
-#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:3513
-#: ../../standalone/drakbackup_.c:4290 ../../standalone/drakconnect_.c:108
+#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4191
+#: ../../standalone/drakbackup_.c:4952 ../../standalone/drakconnect_.c:108
#: ../../standalone/drakconnect_.c:140 ../../standalone/drakconnect_.c:296
#: ../../standalone/drakconnect_.c:435 ../../standalone/drakconnect_.c:521
#: ../../standalone/drakconnect_.c:564 ../../standalone/drakconnect_.c:667
#: ../../standalone/drakfloppy_.c:376 ../../standalone/drakfont_.c:612
#: ../../standalone/drakfont_.c:799 ../../standalone/drakfont_.c:876
-#: ../../standalone/drakfont_.c:963 ../../standalone/logdrake_.c:521
+#: ../../standalone/drakfont_.c:963 ../../standalone/logdrake_.c:519
msgid "OK"
msgstr "D'acord"
-#: ../../bootlook.pm_.c:403
+#: ../../bootlook.pm_.c:407
#, c-format
msgid "can not open /etc/inittab for reading: %s"
msgstr "no es pot obrir /etc/inittab per a lectura: %s"
@@ -1517,47 +1537,52 @@ msgstr "Àustria"
msgid "United States"
msgstr "Estats Units"
-#: ../../detect_devices.pm_.c:599 ../../detect_devices.pm_.c:641
-#: ../../detect_devices.pm_.c:803
-msgid "Unknown Model"
-msgstr "Model desconegut"
-
#: ../../diskdrake/dav.pm_.c:23
msgid "New"
msgstr "Nou"
-#: ../../diskdrake/dav.pm_.c:57
+#: ../../diskdrake/dav.pm_.c:59 ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/smbnfs_gtk.pm_.c:81
+msgid "Unmount"
+msgstr "Desmunta"
+
+#: ../../diskdrake/dav.pm_.c:60 ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/smbnfs_gtk.pm_.c:82
+msgid "Mount"
+msgstr "Munta"
+
+#: ../../diskdrake/dav.pm_.c:61
msgid "Server"
msgstr "Servidor"
-#: ../../diskdrake/dav.pm_.c:58 ../../diskdrake/interactive.pm_.c:375
-#: ../../diskdrake/interactive.pm_.c:558 ../../diskdrake/interactive.pm_.c:585
+#: ../../diskdrake/dav.pm_.c:62 ../../diskdrake/interactive.pm_.c:379
+#: ../../diskdrake/interactive.pm_.c:568 ../../diskdrake/interactive.pm_.c:595
#: ../../diskdrake/removable.pm_.c:24 ../../diskdrake/removable_gtk.pm_.c:15
#: ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr "Punt de muntatge"
#
-#: ../../diskdrake/dav.pm_.c:68
+#: ../../diskdrake/dav.pm_.c:81
#, fuzzy
msgid "Please enter the WebDAV server URL"
msgstr "Si us plau entreu la velocitat d'escriptura del cd"
-#: ../../diskdrake/dav.pm_.c:71
+#: ../../diskdrake/dav.pm_.c:84
msgid "The URL must begin with http:// or https://"
msgstr ""
-#: ../../diskdrake/dav.pm_.c:92
+#: ../../diskdrake/dav.pm_.c:105
msgid "Server: "
msgstr "Servidor: "
-#: ../../diskdrake/dav.pm_.c:93 ../../diskdrake/interactive.pm_.c:435
-#: ../../diskdrake/interactive.pm_.c:1079
-#: ../../diskdrake/interactive.pm_.c:1153
+#: ../../diskdrake/dav.pm_.c:106 ../../diskdrake/interactive.pm_.c:440
+#: ../../diskdrake/interactive.pm_.c:1089
+#: ../../diskdrake/interactive.pm_.c:1164
msgid "Mount point: "
msgstr "Punt de muntatge: "
-#: ../../diskdrake/dav.pm_.c:94 ../../diskdrake/interactive.pm_.c:1159
+#: ../../diskdrake/dav.pm_.c:107 ../../diskdrake/interactive.pm_.c:1170
#, c-format
msgid "Options: %s"
msgstr "Opcions: %s"
@@ -1566,8 +1591,9 @@ msgstr "Opcions: %s"
msgid "Please make a backup of your data first"
msgstr "Si us plau, feu primer una còpia de seguretat de les vostres dades"
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:924
-#: ../../diskdrake/interactive.pm_.c:933 ../../diskdrake/interactive.pm_.c:999
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:934
+#: ../../diskdrake/interactive.pm_.c:943
+#: ../../diskdrake/interactive.pm_.c:1009
msgid "Read carefully!"
msgstr "Llegiu-ho atentament!"
@@ -1605,10 +1631,16 @@ msgid "Please click on a partition"
msgstr "Si us plau, feu clic a una partició "
#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
-#: ../../install_steps_gtk.pm_.c:471
+#: ../../install_steps_gtk.pm_.c:465
msgid "Details"
msgstr "Detalls"
+#
+#: ../../diskdrake/hd_gtk.pm_.c:252
+#, fuzzy
+msgid "No hard drives found"
+msgstr "No s'ha trobat cap impressora!"
+
#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Ext2"
msgstr "Ext2"
@@ -1634,13 +1666,13 @@ msgstr "SunOS"
msgid "Swap"
msgstr "Intercanvi"
-#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1105
msgid "Empty"
msgstr "Buit"
-#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:331
-#: ../../install_steps_gtk.pm_.c:389 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1679
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:325
+#: ../../install_steps_gtk.pm_.c:383 ../../mouse.pm_.c:165
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1754
msgid "Other"
msgstr "Altres"
@@ -1648,12 +1680,12 @@ msgstr "Altres"
msgid "Filesystem types:"
msgstr "Tipus de sistema de fitxers"
-#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:397
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:402
msgid "Create"
msgstr "Crea"
-#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:376
-#: ../../diskdrake/interactive.pm_.c:521 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:380
+#: ../../diskdrake/interactive.pm_.c:531 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "Tipus"
@@ -1663,7 +1695,7 @@ msgstr "Tipus"
msgid "Use ``%s'' instead"
msgstr "Utilitzeu ``%s'' al seu lloc"
-#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:389
msgid "Delete"
msgstr "Suprimeix"
@@ -1671,7 +1703,7 @@ msgstr "Suprimeix"
msgid "Use ``Unmount'' first"
msgstr "Utilitzeu primer ``Unmount''"
-#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:513
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:518
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
@@ -1679,76 +1711,76 @@ msgstr ""
"Després de canviar el tipus de la partició %s, se'n perdran totes les dades"
#
-#: ../../diskdrake/interactive.pm_.c:173
+#: ../../diskdrake/interactive.pm_.c:174
msgid "Choose a partition"
msgstr "Trieu una partició"
#
-#: ../../diskdrake/interactive.pm_.c:173
+#: ../../diskdrake/interactive.pm_.c:174
msgid "Choose another partition"
msgstr "Escolliu una altra partició"
#
-#: ../../diskdrake/interactive.pm_.c:198
+#: ../../diskdrake/interactive.pm_.c:199
msgid "Exit"
msgstr "Sortir"
-#: ../../diskdrake/interactive.pm_.c:220
+#: ../../diskdrake/interactive.pm_.c:221
msgid "Toggle to expert mode"
msgstr "Normal > Expert"
-#: ../../diskdrake/interactive.pm_.c:220
+#: ../../diskdrake/interactive.pm_.c:221
msgid "Toggle to normal mode"
msgstr "Expert > Normal"
-#: ../../diskdrake/interactive.pm_.c:220
+#: ../../diskdrake/interactive.pm_.c:221
msgid "Undo"
msgstr "Desfés"
-#: ../../diskdrake/interactive.pm_.c:239
+#: ../../diskdrake/interactive.pm_.c:240
msgid "Continue anyway?"
msgstr "Voleu continuar igualment?"
-#: ../../diskdrake/interactive.pm_.c:244
+#: ../../diskdrake/interactive.pm_.c:245
msgid "Quit without saving"
msgstr "Surt sense desar"
-#: ../../diskdrake/interactive.pm_.c:244
+#: ../../diskdrake/interactive.pm_.c:245
msgid "Quit without writing the partition table?"
msgstr "Voleu sortir sense desar la taula de particions?"
#
-#: ../../diskdrake/interactive.pm_.c:249
+#: ../../diskdrake/interactive.pm_.c:250
msgid "Do you want to save /etc/fstab modifications"
msgstr "Voleu grabar els modificacions a /etc/fstab"
-#: ../../diskdrake/interactive.pm_.c:261
+#: ../../diskdrake/interactive.pm_.c:263
msgid "Auto allocate"
msgstr "Assigna automàticament"
-#: ../../diskdrake/interactive.pm_.c:261
+#: ../../diskdrake/interactive.pm_.c:263
msgid "Clear all"
msgstr "Buida-ho tot"
-#: ../../diskdrake/interactive.pm_.c:261
+#: ../../diskdrake/interactive.pm_.c:263
#: ../../install_steps_interactive.pm_.c:214
msgid "More"
msgstr "Més"
#
-#: ../../diskdrake/interactive.pm_.c:264
+#: ../../diskdrake/interactive.pm_.c:267
msgid "Hard drive information"
msgstr "Informació del disc dur"
-#: ../../diskdrake/interactive.pm_.c:294
+#: ../../diskdrake/interactive.pm_.c:298
msgid "All primary partitions are used"
msgstr "S'utilitzen totes les particions primàries"
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:299
msgid "I can't add any more partition"
msgstr "No puc afegir cap més partició"
-#: ../../diskdrake/interactive.pm_.c:296
+#: ../../diskdrake/interactive.pm_.c:300
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -1757,34 +1789,34 @@ msgstr ""
"ampliada"
#
-#: ../../diskdrake/interactive.pm_.c:306
+#: ../../diskdrake/interactive.pm_.c:310
msgid "Save partition table"
msgstr "Escriu la taula de particions"
#
-#: ../../diskdrake/interactive.pm_.c:307
+#: ../../diskdrake/interactive.pm_.c:311
msgid "Restore partition table"
msgstr "Restaura la taula de particions"
-#: ../../diskdrake/interactive.pm_.c:308
+#: ../../diskdrake/interactive.pm_.c:312
msgid "Rescue partition table"
msgstr "Rescata la taula de particions"
#
-#: ../../diskdrake/interactive.pm_.c:310
+#: ../../diskdrake/interactive.pm_.c:314
msgid "Reload partition table"
msgstr "Recarrega la taula de particions"
#
-#: ../../diskdrake/interactive.pm_.c:315
+#: ../../diskdrake/interactive.pm_.c:319
msgid "Removable media automounting"
msgstr "Desmuntant el medi del suport extraïble"
-#: ../../diskdrake/interactive.pm_.c:324 ../../diskdrake/interactive.pm_.c:344
+#: ../../diskdrake/interactive.pm_.c:328 ../../diskdrake/interactive.pm_.c:348
msgid "Select file"
msgstr "Seleccioneu el fitxer"
-#: ../../diskdrake/interactive.pm_.c:331
+#: ../../diskdrake/interactive.pm_.c:335
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1792,11 +1824,11 @@ msgstr ""
"La còpia de seguretat de la taula de particions no té la mateixa mida\n"
"Voleu continuar igualment?"
-#: ../../diskdrake/interactive.pm_.c:345
+#: ../../diskdrake/interactive.pm_.c:349
msgid "Warning"
msgstr "Advertència"
-#: ../../diskdrake/interactive.pm_.c:346
+#: ../../diskdrake/interactive.pm_.c:350
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1804,80 +1836,72 @@ msgstr ""
"Inseriu un disquet a la unitat\n"
"Se'n perdran totes les dades"
-#: ../../diskdrake/interactive.pm_.c:357
+#: ../../diskdrake/interactive.pm_.c:361
msgid "Trying to rescue partition table"
msgstr "S'està intentant rescatar la taula de particions"
#
-#: ../../diskdrake/interactive.pm_.c:363
+#: ../../diskdrake/interactive.pm_.c:367
msgid "Detailed information"
msgstr "Informació detallada"
-#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:652
+#: ../../diskdrake/interactive.pm_.c:382 ../../diskdrake/interactive.pm_.c:662
msgid "Resize"
msgstr "Canvia la mida"
-#: ../../diskdrake/interactive.pm_.c:379 ../../diskdrake/interactive.pm_.c:705
+#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/interactive.pm_.c:715
msgid "Move"
msgstr "Mou"
-#: ../../diskdrake/interactive.pm_.c:380
+#: ../../diskdrake/interactive.pm_.c:384
msgid "Format"
msgstr "Formata"
-#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/smbnfs_gtk.pm_.c:82
-msgid "Mount"
-msgstr "Munta"
-
-#: ../../diskdrake/interactive.pm_.c:382
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Add to RAID"
msgstr "Afegeix al RAID"
-#: ../../diskdrake/interactive.pm_.c:383
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Add to LVM"
msgstr "Afegeix al LVM"
-#: ../../diskdrake/interactive.pm_.c:384 ../../diskdrake/smbnfs_gtk.pm_.c:81
-msgid "Unmount"
-msgstr "Desmunta"
-
-#: ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/interactive.pm_.c:390
msgid "Remove from RAID"
msgstr "Elimina del RAID"
-#: ../../diskdrake/interactive.pm_.c:387
+#: ../../diskdrake/interactive.pm_.c:391
msgid "Remove from LVM"
msgstr "Elimina del LVM"
-#: ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/interactive.pm_.c:392
msgid "Modify RAID"
msgstr "Modifica el RAID"
-#: ../../diskdrake/interactive.pm_.c:389
+#: ../../diskdrake/interactive.pm_.c:393
msgid "Use for loopback"
msgstr "Utilitza per a loopback"
-#: ../../diskdrake/interactive.pm_.c:428
+#: ../../diskdrake/interactive.pm_.c:433
msgid "Create a new partition"
msgstr "Crea una nova partició"
-#: ../../diskdrake/interactive.pm_.c:431
+#: ../../diskdrake/interactive.pm_.c:436
msgid "Start sector: "
msgstr "sector d'inici: "
-#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:805
+#: ../../diskdrake/interactive.pm_.c:438 ../../diskdrake/interactive.pm_.c:815
msgid "Size in MB: "
msgstr "Mida en MB: "
-#: ../../diskdrake/interactive.pm_.c:434 ../../diskdrake/interactive.pm_.c:806
+#: ../../diskdrake/interactive.pm_.c:439 ../../diskdrake/interactive.pm_.c:816
msgid "Filesystem type: "
msgstr "Tipus de sistema de fitxers: "
-#: ../../diskdrake/interactive.pm_.c:439
+#: ../../diskdrake/interactive.pm_.c:444
msgid "Preference: "
msgstr "Preferència: "
-#: ../../diskdrake/interactive.pm_.c:464
+#: ../../diskdrake/interactive.pm_.c:469
msgid ""
"You can't create a new partition\n"
"(since you reached the maximal number of primary partitions).\n"
@@ -1885,33 +1909,33 @@ msgid ""
msgstr ""
#
-#: ../../diskdrake/interactive.pm_.c:494
+#: ../../diskdrake/interactive.pm_.c:499
msgid "Remove the loopback file?"
msgstr "Esborrar el fitxer de loopback?"
-#: ../../diskdrake/interactive.pm_.c:519
+#: ../../diskdrake/interactive.pm_.c:529
msgid "Change partition type"
msgstr "Canvia el tipus de partició"
-#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:530 ../../diskdrake/removable.pm_.c:48
msgid "Which filesystem do you want?"
msgstr "Quin sistema de fitxers voleu?"
-#: ../../diskdrake/interactive.pm_.c:526
+#: ../../diskdrake/interactive.pm_.c:536
msgid "Switching from ext2 to ext3"
msgstr "Canviant de ext2 a ext3"
-#: ../../diskdrake/interactive.pm_.c:556
+#: ../../diskdrake/interactive.pm_.c:566
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "On voleu muntar el fitxer de loopback %s?"
-#: ../../diskdrake/interactive.pm_.c:557
+#: ../../diskdrake/interactive.pm_.c:567
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "On voleu muntar el dispositiu %s?"
-#: ../../diskdrake/interactive.pm_.c:563
+#: ../../diskdrake/interactive.pm_.c:573
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1919,139 +1943,139 @@ msgstr ""
"No es pot anul·lar el punt de muntatge, perquè aquesta partició\n"
"s'utilitza per al loopback. Elimineu primer el loopback"
-#: ../../diskdrake/interactive.pm_.c:584
+#: ../../diskdrake/interactive.pm_.c:594
#, fuzzy, c-format
msgid "Where do you want to mount %s?"
msgstr "On voleu muntar el dispositiu %s?"
-#: ../../diskdrake/interactive.pm_.c:608
+#: ../../diskdrake/interactive.pm_.c:618
msgid "Computing FAT filesystem bounds"
msgstr "S'estan calculant els límits del sistema de fitxers de la FAT"
-#: ../../diskdrake/interactive.pm_.c:608 ../../diskdrake/interactive.pm_.c:667
-#: ../../install_interactive.pm_.c:131
+#: ../../diskdrake/interactive.pm_.c:618 ../../diskdrake/interactive.pm_.c:677
+#: ../../install_interactive.pm_.c:133
msgid "Resizing"
msgstr "S'està canviant la mida"
-#: ../../diskdrake/interactive.pm_.c:640
+#: ../../diskdrake/interactive.pm_.c:650
msgid "This partition is not resizeable"
msgstr "No es pot canviar la mida d'aquesta partició"
-#: ../../diskdrake/interactive.pm_.c:645
+#: ../../diskdrake/interactive.pm_.c:655
msgid "All data on this partition should be backed-up"
msgstr "Cal fer una còpia de seguretat de totes les dades d'aquesta partició"
-#: ../../diskdrake/interactive.pm_.c:647
+#: ../../diskdrake/interactive.pm_.c:657
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr ""
"Després de canviar la mida de la partició %s, se'n perdran totes les dades"
-#: ../../diskdrake/interactive.pm_.c:652
+#: ../../diskdrake/interactive.pm_.c:662
msgid "Choose the new size"
msgstr "Escolliu la nova mida"
#
-#: ../../diskdrake/interactive.pm_.c:653
+#: ../../diskdrake/interactive.pm_.c:663
msgid "New size in MB: "
msgstr "Nova Mida en MB: "
-#: ../../diskdrake/interactive.pm_.c:706
+#: ../../diskdrake/interactive.pm_.c:716
msgid "Which disk do you want to move it to?"
msgstr "A quin disc us voleu desplaçar?"
-#: ../../diskdrake/interactive.pm_.c:707
+#: ../../diskdrake/interactive.pm_.c:717
msgid "Sector"
msgstr "Sector"
-#: ../../diskdrake/interactive.pm_.c:708
+#: ../../diskdrake/interactive.pm_.c:718
msgid "Which sector do you want to move it to?"
msgstr "A quin sector ho voleu moure?"
-#: ../../diskdrake/interactive.pm_.c:711
+#: ../../diskdrake/interactive.pm_.c:721
msgid "Moving"
msgstr "S'està desplaçant"
-#: ../../diskdrake/interactive.pm_.c:711
+#: ../../diskdrake/interactive.pm_.c:721
msgid "Moving partition..."
msgstr "S'està desplaçant la partició..."
-#: ../../diskdrake/interactive.pm_.c:728
+#: ../../diskdrake/interactive.pm_.c:738
msgid "Choose an existing RAID to add to"
msgstr "Escolliu un RAID existent al qual afegir"
-#: ../../diskdrake/interactive.pm_.c:729 ../../diskdrake/interactive.pm_.c:746
+#: ../../diskdrake/interactive.pm_.c:739 ../../diskdrake/interactive.pm_.c:756
msgid "new"
msgstr "nou"
-#: ../../diskdrake/interactive.pm_.c:744
+#: ../../diskdrake/interactive.pm_.c:754
msgid "Choose an existing LVM to add to"
msgstr "Escolliu un LVM existent al qual afegir"
-#: ../../diskdrake/interactive.pm_.c:749
+#: ../../diskdrake/interactive.pm_.c:759
msgid "LVM name?"
msgstr "Nom LVM?"
-#: ../../diskdrake/interactive.pm_.c:790
+#: ../../diskdrake/interactive.pm_.c:800
msgid "This partition can't be used for loopback"
msgstr "Aquesta partició no es pot utilitzar per al loopback"
-#: ../../diskdrake/interactive.pm_.c:803
+#: ../../diskdrake/interactive.pm_.c:813
msgid "Loopback"
msgstr "Loopback"
-#: ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:814
msgid "Loopback file name: "
msgstr "Nom del fitxer de loopback: "
#
-#: ../../diskdrake/interactive.pm_.c:809
+#: ../../diskdrake/interactive.pm_.c:819
msgid "Give a file name"
msgstr "Proporcioneu un nom de fitxer"
-#: ../../diskdrake/interactive.pm_.c:812
+#: ../../diskdrake/interactive.pm_.c:822
msgid "File already used by another loopback, choose another one"
msgstr "Un altre loopback ja està utilitzant el fitxer, escolliu-ne un altre"
-#: ../../diskdrake/interactive.pm_.c:813
+#: ../../diskdrake/interactive.pm_.c:823
msgid "File already exists. Use it?"
msgstr "El fitxer ja existeix. El voleu utilitzar?"
#
-#: ../../diskdrake/interactive.pm_.c:836
+#: ../../diskdrake/interactive.pm_.c:846
msgid "Mount options"
msgstr "Opcions de montatge:"
-#: ../../diskdrake/interactive.pm_.c:843
+#: ../../diskdrake/interactive.pm_.c:853
msgid "Various"
msgstr "Diversos"
-#: ../../diskdrake/interactive.pm_.c:907 ../../standalone/drakfloppy_.c:103
+#: ../../diskdrake/interactive.pm_.c:917 ../../standalone/drakfloppy_.c:103
msgid "device"
msgstr "dispositiu"
-#: ../../diskdrake/interactive.pm_.c:908
+#: ../../diskdrake/interactive.pm_.c:918
msgid "level"
msgstr "nivell"
-#: ../../diskdrake/interactive.pm_.c:909
+#: ../../diskdrake/interactive.pm_.c:919
msgid "chunk size"
msgstr "mida del tros"
-#: ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:934
msgid "Be careful: this operation is dangerous."
msgstr "Aneu amb compte: aquesta operació és perillosa."
-#: ../../diskdrake/interactive.pm_.c:939
+#: ../../diskdrake/interactive.pm_.c:949
msgid "What type of partitioning?"
msgstr "Quin tipus de particionament?"
-#: ../../diskdrake/interactive.pm_.c:955
+#: ../../diskdrake/interactive.pm_.c:965
#, fuzzy, c-format
msgid "The package %s is needed. Install it?"
msgstr "El paquet %s s'ha d'instal·lar. El voleu instal·lar?"
-#: ../../diskdrake/interactive.pm_.c:969
+#: ../../diskdrake/interactive.pm_.c:979
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -2063,7 +2087,7 @@ msgstr ""
"O esteu utilitzant LILO, i no funcionarà, o no l'esteu utilitzant i no "
"necessiteu el /boot"
-#: ../../diskdrake/interactive.pm_.c:973
+#: ../../diskdrake/interactive.pm_.c:983
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -2076,7 +2100,7 @@ msgstr ""
"Si teniu previst utilitzar el gestor d'arrencada LILO, penseu d'afegir una "
"partició /boot"
-#: ../../diskdrake/interactive.pm_.c:979
+#: ../../diskdrake/interactive.pm_.c:989
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
@@ -2087,47 +2111,47 @@ msgstr ""
"boot.\n"
"Per tant, assegureu-vos d'afegir una partició /boot"
-#: ../../diskdrake/interactive.pm_.c:999
+#: ../../diskdrake/interactive.pm_.c:1009
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "La taula de particions de la unitat %s s'escriurà al disc!"
-#: ../../diskdrake/interactive.pm_.c:1003
+#: ../../diskdrake/interactive.pm_.c:1013
msgid "You'll need to reboot before the modification can take place"
msgstr ""
"Us caldrà tornar a arrencar per tal que les modificacions tinguin efecte"
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1024
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr "Després de formatar la partició %s, se'n perdran totes les dades"
-#: ../../diskdrake/interactive.pm_.c:1016
+#: ../../diskdrake/interactive.pm_.c:1026
msgid "Formatting"
msgstr "S'està formatant"
-#: ../../diskdrake/interactive.pm_.c:1017
+#: ../../diskdrake/interactive.pm_.c:1027
#, c-format
msgid "Formatting loopback file %s"
msgstr "S'està formatant el fitxer de loopback %s"
-#: ../../diskdrake/interactive.pm_.c:1018
-#: ../../install_steps_interactive.pm_.c:476
+#: ../../diskdrake/interactive.pm_.c:1028
+#: ../../install_steps_interactive.pm_.c:459
#, c-format
msgid "Formatting partition %s"
msgstr "S'està formatant la partició %s"
#
-#: ../../diskdrake/interactive.pm_.c:1029
+#: ../../diskdrake/interactive.pm_.c:1039
msgid "Hide files"
msgstr "Fitxers ocults"
#
-#: ../../diskdrake/interactive.pm_.c:1029
+#: ../../diskdrake/interactive.pm_.c:1039
msgid "Move files to the new partition"
msgstr "Moveu els fitxers a la nova partició"
-#: ../../diskdrake/interactive.pm_.c:1030
+#: ../../diskdrake/interactive.pm_.c:1040
#, c-format
msgid ""
"Directory %s already contains data\n"
@@ -2137,83 +2161,83 @@ msgstr ""
"(%s)"
#
-#: ../../diskdrake/interactive.pm_.c:1041
+#: ../../diskdrake/interactive.pm_.c:1051
msgid "Moving files to the new partition"
msgstr "Movent fitxers a la nova partició"
-#: ../../diskdrake/interactive.pm_.c:1045
+#: ../../diskdrake/interactive.pm_.c:1055
#, c-format
msgid "Copying %s"
msgstr "Copiant %s"
-#: ../../diskdrake/interactive.pm_.c:1049
+#: ../../diskdrake/interactive.pm_.c:1059
#, c-format
msgid "Removing %s"
msgstr "Esborrant %s"
-#: ../../diskdrake/interactive.pm_.c:1059
+#: ../../diskdrake/interactive.pm_.c:1069
#, c-format
msgid "partition %s is now known as %s"
msgstr "la partició %s ara és %s"
-#: ../../diskdrake/interactive.pm_.c:1080
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1090
+#: ../../diskdrake/interactive.pm_.c:1149
msgid "Device: "
msgstr "Dispositiu: "
-#: ../../diskdrake/interactive.pm_.c:1081
+#: ../../diskdrake/interactive.pm_.c:1091
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "Lletra d'unitat del DOS: %s (només és una suposició)\n"
-#: ../../diskdrake/interactive.pm_.c:1085
-#: ../../diskdrake/interactive.pm_.c:1093
-#: ../../diskdrake/interactive.pm_.c:1157
+#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1103
+#: ../../diskdrake/interactive.pm_.c:1168
msgid "Type: "
msgstr "Tipus: "
-#: ../../diskdrake/interactive.pm_.c:1089
+#: ../../diskdrake/interactive.pm_.c:1099
msgid "Name: "
msgstr "Nom: "
-#: ../../diskdrake/interactive.pm_.c:1097
+#: ../../diskdrake/interactive.pm_.c:1107
#, c-format
msgid "Start: sector %s\n"
msgstr "Inici: sector %s\n"
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1108
#, c-format
msgid "Size: %s"
msgstr "Mida: %s"
-#: ../../diskdrake/interactive.pm_.c:1100
+#: ../../diskdrake/interactive.pm_.c:1110
#, c-format
msgid ", %s sectors"
msgstr ", %s sectors"
-#: ../../diskdrake/interactive.pm_.c:1102
+#: ../../diskdrake/interactive.pm_.c:1112
#, c-format
msgid "Cylinder %d to %d\n"
msgstr "Cilindre %d a %d\n"
-#: ../../diskdrake/interactive.pm_.c:1103
+#: ../../diskdrake/interactive.pm_.c:1113
msgid "Formatted\n"
msgstr "Formatat\n"
-#: ../../diskdrake/interactive.pm_.c:1104
+#: ../../diskdrake/interactive.pm_.c:1114
msgid "Not formatted\n"
msgstr "Sense formatar\n"
-#: ../../diskdrake/interactive.pm_.c:1105
+#: ../../diskdrake/interactive.pm_.c:1115
msgid "Mounted\n"
msgstr "Muntat\n"
-#: ../../diskdrake/interactive.pm_.c:1106
+#: ../../diskdrake/interactive.pm_.c:1116
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1108
+#: ../../diskdrake/interactive.pm_.c:1118
#, c-format
msgid ""
"Loopback file(s):\n"
@@ -2222,7 +2246,7 @@ msgstr ""
"Fitxer(s) de loopback:\n"
" %s\n"
-#: ../../diskdrake/interactive.pm_.c:1109
+#: ../../diskdrake/interactive.pm_.c:1119
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -2230,27 +2254,27 @@ msgstr ""
"Partició arrencada per defecte\n"
" (per a l'arrencada de l'MS-DOS, no per a LILO)\n"
-#: ../../diskdrake/interactive.pm_.c:1111
+#: ../../diskdrake/interactive.pm_.c:1121
#, c-format
msgid "Level %s\n"
msgstr "Nivell %s\n"
-#: ../../diskdrake/interactive.pm_.c:1112
+#: ../../diskdrake/interactive.pm_.c:1122
#, c-format
msgid "Chunk size %s\n"
msgstr "Mida del tros %s\n"
-#: ../../diskdrake/interactive.pm_.c:1113
+#: ../../diskdrake/interactive.pm_.c:1123
#, c-format
msgid "RAID-disks %s\n"
msgstr "Discs RAID %s\n"
-#: ../../diskdrake/interactive.pm_.c:1115
+#: ../../diskdrake/interactive.pm_.c:1125
#, c-format
msgid "Loopback file name: %s"
msgstr "Nom del fitxer de loopback: %s"
-#: ../../diskdrake/interactive.pm_.c:1118
+#: ../../diskdrake/interactive.pm_.c:1128
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -2262,7 +2286,7 @@ msgstr ""
"una partició de Controladors;\n"
"és millor que no la toqueu.\n"
-#: ../../diskdrake/interactive.pm_.c:1121
+#: ../../diskdrake/interactive.pm_.c:1131
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2274,46 +2298,50 @@ msgstr ""
"especial és per arrencar\n"
"el vostre sistema en dual.\n"
-#: ../../diskdrake/interactive.pm_.c:1140
+#: ../../diskdrake/interactive.pm_.c:1150
+msgid "Read-only"
+msgstr ""
+
+#: ../../diskdrake/interactive.pm_.c:1151
#, c-format
msgid "Size: %s\n"
msgstr "Mida: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1141
+#: ../../diskdrake/interactive.pm_.c:1152
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Geometria: %s cilindres, %s capçals, %s sectors\n"
-#: ../../diskdrake/interactive.pm_.c:1142
+#: ../../diskdrake/interactive.pm_.c:1153
msgid "Info: "
msgstr "Informació: "
-#: ../../diskdrake/interactive.pm_.c:1143
+#: ../../diskdrake/interactive.pm_.c:1154
#, c-format
msgid "LVM-disks %s\n"
msgstr "Discs LVM %s\n"
-#: ../../diskdrake/interactive.pm_.c:1144
+#: ../../diskdrake/interactive.pm_.c:1155
#, c-format
msgid "Partition table type: %s\n"
msgstr "Tipus de taula de particions: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1145
+#: ../../diskdrake/interactive.pm_.c:1156
#, fuzzy, c-format
msgid "on channel %d id %d\n"
msgstr "al bus %d id %d\n"
#
-#: ../../diskdrake/interactive.pm_.c:1175
+#: ../../diskdrake/interactive.pm_.c:1186
msgid "Filesystem encryption key"
msgstr "Clau d'encriptació del sistema de fitxers: "
-#: ../../diskdrake/interactive.pm_.c:1176
+#: ../../diskdrake/interactive.pm_.c:1187
msgid "Choose your filesystem encryption key"
msgstr "Escolliu la clau d'encriptació del sistema de fitxers"
# c-format
-#: ../../diskdrake/interactive.pm_.c:1179
+#: ../../diskdrake/interactive.pm_.c:1190
#, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr ""
@@ -2321,15 +2349,15 @@ msgstr ""
"caràcters)"
#
-#: ../../diskdrake/interactive.pm_.c:1180
+#: ../../diskdrake/interactive.pm_.c:1191
msgid "The encryption keys do not match"
msgstr "Les claus d'encriptació no coincideixen"
-#: ../../diskdrake/interactive.pm_.c:1183
+#: ../../diskdrake/interactive.pm_.c:1194
msgid "Encryption key"
msgstr "Clau d'encriptació"
-#: ../../diskdrake/interactive.pm_.c:1184
+#: ../../diskdrake/interactive.pm_.c:1195
msgid "Encryption key (again)"
msgstr "Clau d'encriptació (altra cop)"
@@ -2368,7 +2396,7 @@ msgid ""
"Please enter your username, password and domain name to access this host."
msgstr ""
-#: ../../diskdrake/smbnfs_gtk.pm_.c:178
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3527
msgid "Username"
msgstr "Nom d'usuari"
@@ -2381,23 +2409,23 @@ msgstr "Domini"
msgid "Search servers"
msgstr "Cerca servidors"
-#: ../../fs.pm_.c:552 ../../fs.pm_.c:562 ../../fs.pm_.c:566 ../../fs.pm_.c:570
-#: ../../fs.pm_.c:574 ../../fs.pm_.c:578
+#: ../../fs.pm_.c:544 ../../fs.pm_.c:554 ../../fs.pm_.c:558 ../../fs.pm_.c:562
+#: ../../fs.pm_.c:566 ../../fs.pm_.c:570
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s formatatge de %s ha fallat"
-#: ../../fs.pm_.c:615
+#: ../../fs.pm_.c:607
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "No sé com formatar %s amb el tipus %s"
-#: ../../fs.pm_.c:687 ../../fs.pm_.c:731
+#: ../../fs.pm_.c:681 ../../fs.pm_.c:724
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr "La partició a muntar %s en el directori %s ha fallat"
-#: ../../fs.pm_.c:746 ../../partition_table.pm_.c:602
+#: ../../fs.pm_.c:739 ../../partition_table.pm_.c:598
#, c-format
msgid "error unmounting %s: %s"
msgstr "s'ha produït un error en desmuntar %s: %s"
@@ -2414,34 +2442,52 @@ msgstr "amb /usr"
msgid "server"
msgstr "servidor"
-#: ../../fsedit.pm_.c:472
+#: ../../fsedit.pm_.c:240
+#, fuzzy, c-format
+msgid ""
+"I can't read the partition table of device %s, it's too corrupted for me :(\n"
+"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
+"The other solution is to not allow DrakX to modify the partition table.\n"
+"(the error is %s)\n"
+"\n"
+"Do you agree to loose all the partitions?\n"
+msgstr ""
+"No puc llegir la vostra taula de particions, està massa malmesa per a mi :(\n"
+"Intentaré seguir, buidant les particions incorrectes (es perdran TOTES LES "
+"DADES!).\n"
+"L'altra solució és impedir al DrakX que modifiqui la taula de particions.\n"
+"(l'error és %s)\n"
+"\n"
+"Esteu d'acord en perdre totes les particions?\n"
+
+#: ../../fsedit.pm_.c:501
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr "No podeu utilitzar el JFS per a particions inferiors a 16 MB"
-#: ../../fsedit.pm_.c:473
+#: ../../fsedit.pm_.c:502
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr "No podeu utilitzar el ReiserFS per a particions inferiors a 32 MB"
-#: ../../fsedit.pm_.c:492
+#: ../../fsedit.pm_.c:521
msgid "Mount points must begin with a leading /"
msgstr "Els punts de muntatge han de començar amb una /"
-#: ../../fsedit.pm_.c:493
+#: ../../fsedit.pm_.c:522
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Ja hi ha una partició amb el punt de muntatge %s\n"
-#: ../../fsedit.pm_.c:497
+#: ../../fsedit.pm_.c:526
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr "No podeu utilitzar un volum lògic LVM per al punt de muntatge %s"
-#: ../../fsedit.pm_.c:499
+#: ../../fsedit.pm_.c:528
msgid "This directory should remain within the root filesystem"
msgstr "Aquest directori s'ha de mantenir dins del sistema de fitxers de root"
#
-#: ../../fsedit.pm_.c:501
+#: ../../fsedit.pm_.c:530
msgid ""
"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
"point\n"
@@ -2449,228 +2495,278 @@ msgstr ""
"Necessiteu un sistema de fitxers real (ext2/ext3, reiserfs, xfs o jfs) per a "
"aquest punt de muntatge\n"
-#: ../../fsedit.pm_.c:503
+#: ../../fsedit.pm_.c:532
#, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr ""
"No podeu utilitzar un sistema d'arxius encriptat per al punt de muntatge %s"
#
-#: ../../fsedit.pm_.c:570
+#: ../../fsedit.pm_.c:599
msgid "Not enough free space for auto-allocating"
msgstr "No hi ha prou espai per a l'assignació automàtica"
-#: ../../fsedit.pm_.c:572
+#: ../../fsedit.pm_.c:601
msgid "Nothing to do"
msgstr "Res a fer"
-#: ../../fsedit.pm_.c:665
+#: ../../fsedit.pm_.c:694
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "S'ha produït un error en obrir %s per escriure: %s"
-#: ../../fsedit.pm_.c:750
+#: ../../harddrake/sound.pm_.c:155
+msgid "No alternative driver"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:156
+#, c-format
+msgid "There's no known OSS/ALSA alternative driver for your sound card (%s)"
+msgstr ""
+
+#
+#: ../../harddrake/sound.pm_.c:158
+#, fuzzy
+msgid "Sound configuration"
+msgstr "Configuració de CUPS"
+
+#: ../../harddrake/sound.pm_.c:159
+#, c-format
msgid ""
-"An error occurred - no valid devices were found on which to create new "
-"filesystems. Please check your hardware for the cause of this problem"
+"Here you can select an alternative driver (either OSS or ALSA) for your "
+"sound card (%s)"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:162
+#, fuzzy
+msgid "Driver:"
+msgstr "Programa de control"
+
+#
+#: ../../harddrake/sound.pm_.c:173
+#, fuzzy
+msgid "No known driver"
+msgstr "Dispositiu X"
+
+#: ../../harddrake/sound.pm_.c:174
+#, c-format
+msgid "There's no known driver for your sound card (%s)"
msgstr ""
-"S'ha produït un error: no s'han trobat dispositius vàlids on crear nous "
-"sistemes de fitxers. Si us plau, comproveu el vostre maquinari per trobar el "
-"problema"
-#: ../../fsedit.pm_.c:773
-msgid "You don't have any partitions!"
-msgstr "No teniu cap partició!"
+#: ../../harddrake/sound.pm_.c:177
+#, fuzzy
+msgid "Unkown driver"
+msgstr "Model desconegut"
+
+#: ../../harddrake/sound.pm_.c:178
+#, c-format
+msgid ""
+"The \"%s\" driver for your sound card is unlisted\n"
+"\n"
+"Please send the output of the \"lspcidrake -v\" command to\n"
+"<install at mandrakesoft dot com>\n"
+"with subject: unlisted sound driver \"%s\""
+msgstr ""
-#: ../../harddrake/ui.pm_.c:15
+#: ../../harddrake/ui.pm_.c:16
#, fuzzy
msgid "Model"
msgstr "Mòdul"
-#: ../../harddrake/ui.pm_.c:15
+#: ../../harddrake/ui.pm_.c:16
msgid "hard disk model"
msgstr ""
-#: ../../harddrake/ui.pm_.c:16
+#: ../../harddrake/ui.pm_.c:17
#, fuzzy
msgid "Channel"
msgstr "Cancel·la"
-#: ../../harddrake/ui.pm_.c:16
+#: ../../harddrake/ui.pm_.c:17
msgid "EIDE/SCSI channel"
msgstr ""
-#: ../../harddrake/ui.pm_.c:18
+#: ../../harddrake/ui.pm_.c:19
msgid "Bus"
msgstr ""
-#: ../../harddrake/ui.pm_.c:19
+#: ../../harddrake/ui.pm_.c:20
msgid ""
"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
msgstr ""
-#: ../../harddrake/ui.pm_.c:20
+#: ../../harddrake/ui.pm_.c:21
msgid "Module"
msgstr "Mòdul"
-#: ../../harddrake/ui.pm_.c:20
+#: ../../harddrake/ui.pm_.c:21
msgid "the module of the GNU/Linux kernel that handle that device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:21
+#: ../../harddrake/ui.pm_.c:22
msgid "Media class"
msgstr ""
-#: ../../harddrake/ui.pm_.c:21
+#: ../../harddrake/ui.pm_.c:22
msgid "class of hardware device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:22 ../../printerdrake.pm_.c:1404
+#: ../../harddrake/ui.pm_.c:23 ../../printerdrake.pm_.c:1517
msgid "Description"
msgstr "Descripció"
-#: ../../harddrake/ui.pm_.c:22
+#: ../../harddrake/ui.pm_.c:23
msgid "this field describe the device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:24
+#: ../../harddrake/ui.pm_.c:25
#, fuzzy
msgid "Bus identification"
msgstr "Autenticació"
-#: ../../harddrake/ui.pm_.c:25
+#: ../../harddrake/ui.pm_.c:26
msgid ""
-"- PCI and USB devices : this list the vendor, device, subvendor and "
-"subdevice PCI/USB ids"
+"- PCI and USB devices: this list the vendor, device, subvendor and subdevice "
+"PCI/USB ids"
msgstr ""
-#: ../../harddrake/ui.pm_.c:27
+#: ../../harddrake/ui.pm_.c:28
msgid "Location on the bus"
msgstr ""
-#: ../../harddrake/ui.pm_.c:28
+#: ../../harddrake/ui.pm_.c:29
msgid ""
"- pci devices: this gives the PCI slot, device and function of this card\n"
"- eide devices: the device is either a slave or a master device\n"
"- scsi devices: the scsi bus and the scsi device ids"
msgstr ""
-#: ../../harddrake/ui.pm_.c:31
+#: ../../harddrake/ui.pm_.c:32
#, fuzzy
msgid "Old device file"
msgstr "Seleccioneu el fitxer"
-#: ../../harddrake/ui.pm_.c:32
+#: ../../harddrake/ui.pm_.c:33
msgid "old static device name used in dev package"
msgstr ""
-#: ../../harddrake/ui.pm_.c:33
+#: ../../harddrake/ui.pm_.c:34
#, fuzzy
msgid "New devfs device"
msgstr "Dispositiu de la passarel·la"
-#: ../../harddrake/ui.pm_.c:34
+#: ../../harddrake/ui.pm_.c:35
msgid "new dinamic device name generated by incore kernel devfs"
msgstr ""
-#: ../../harddrake/ui.pm_.c:35
+#: ../../harddrake/ui.pm_.c:36
#, fuzzy
msgid "Number of buttons"
msgstr "2 botons"
-#: ../../harddrake/ui.pm_.c:36
+#: ../../harddrake/ui.pm_.c:37
msgid "the vendor name of the device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:60
+#
+#: ../../harddrake/ui.pm_.c:38
+#, fuzzy
+msgid "Alternative drivers"
+msgstr "Pàgina alternativa de prova (A4)"
+
+#: ../../harddrake/ui.pm_.c:39
+msgid "the list of alternative drivers for this sound card"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:63
msgid "/_Quit"
msgstr "/_Surt"
-#: ../../harddrake/ui.pm_.c:61 ../../harddrake/ui.pm_.c:62
-#: ../../harddrake/ui.pm_.c:68 ../../standalone/logdrake_.c:110
+#: ../../harddrake/ui.pm_.c:64 ../../harddrake/ui.pm_.c:65
+#: ../../harddrake/ui.pm_.c:71 ../../standalone/logdrake_.c:110
msgid "/_Help"
msgstr "/_Ajuda"
-#: ../../harddrake/ui.pm_.c:62
+#: ../../harddrake/ui.pm_.c:65
msgid "/_Help..."
msgstr "/_Ajuda..."
-#: ../../harddrake/ui.pm_.c:63
+#: ../../harddrake/ui.pm_.c:66
msgid "Harddrake help"
msgstr ""
-#: ../../harddrake/ui.pm_.c:64
+#: ../../harddrake/ui.pm_.c:67
msgid ""
"Description of the fields:\n"
"\n"
msgstr ""
-#: ../../harddrake/ui.pm_.c:68
+#: ../../harddrake/ui.pm_.c:71
msgid "/_About..."
msgstr "_Quant a..."
-#: ../../harddrake/ui.pm_.c:69
+#: ../../harddrake/ui.pm_.c:72
msgid "About Harddrake"
msgstr ""
-#: ../../harddrake/ui.pm_.c:70
+#: ../../harddrake/ui.pm_.c:73
msgid ""
"This is HardDrake, a Mandrake hardware configuration tool.\n"
"Version:"
msgstr ""
-#: ../../harddrake/ui.pm_.c:71
+#: ../../harddrake/ui.pm_.c:74
#, fuzzy
msgid "Author:"
msgstr "Exploració automàtica"
-#: ../../harddrake/ui.pm_.c:83
+#: ../../harddrake/ui.pm_.c:86
#, fuzzy
msgid "Harddrake2 version "
msgstr "Detecció del disc dur"
-#: ../../harddrake/ui.pm_.c:91
+#: ../../harddrake/ui.pm_.c:103
#, fuzzy
msgid "Detected hardware"
msgstr "Mira la informació del maquinari"
-#: ../../harddrake/ui.pm_.c:92
+#: ../../harddrake/ui.pm_.c:105
#, fuzzy
-msgid "Configure module"
-msgstr "Configura el ratolí"
+msgid "Information"
+msgstr "Mostra la informació"
-#: ../../harddrake/ui.pm_.c:92
+#: ../../harddrake/ui.pm_.c:108
#, fuzzy
-msgid "Informations"
-msgstr "Mostra la informació"
+msgid "Configure module"
+msgstr "Configura el ratolí"
-#: ../../harddrake/ui.pm_.c:92
+#: ../../harddrake/ui.pm_.c:109
msgid "Run config tool"
msgstr ""
-#: ../../harddrake/ui.pm_.c:96
+#: ../../harddrake/ui.pm_.c:113
#, fuzzy
msgid "Detection in progress"
msgstr "detectat al port %s"
-#: ../../harddrake/ui.pm_.c:96 ../../interactive.pm_.c:388
+#: ../../harddrake/ui.pm_.c:113 ../../interactive.pm_.c:391
msgid "Please wait"
msgstr "Si us plau, espereu"
-#: ../../harddrake/ui.pm_.c:139
+#: ../../harddrake/ui.pm_.c:156
msgid "primary"
msgstr ""
-#: ../../harddrake/ui.pm_.c:139
+#: ../../harddrake/ui.pm_.c:156
#, fuzzy
msgid "secondary"
msgstr "%d segons"
-#: ../../harddrake/ui.pm_.c:176
+#: ../../harddrake/ui.pm_.c:197
msgid "You can configure each parameter of the module here."
msgstr ""
-#: ../../harddrake/ui.pm_.c:192
+#: ../../harddrake/ui.pm_.c:213
#, fuzzy, c-format
msgid "Running \"%s\" ..."
msgstr "S'està esborrant la impressora \"%s\"..."
@@ -2703,17 +2799,17 @@ msgstr ""
#: ../../harddrake/v4l.pm_.c:213
#, fuzzy
-msgid "Card model :"
+msgid "Card model:"
msgstr "Targeta de memòria (DMA)"
#
#: ../../harddrake/v4l.pm_.c:214
#, fuzzy
-msgid "Tuner type :"
+msgid "Tuner type:"
msgstr "Canvia el tipus"
#: ../../harddrake/v4l.pm_.c:215
-msgid "Number of capture buffers :"
+msgid "Number of capture buffers:"
msgstr ""
#: ../../harddrake/v4l.pm_.c:215
@@ -2723,11 +2819,11 @@ msgstr ""
#
#: ../../harddrake/v4l.pm_.c:217
#, fuzzy
-msgid "PLL setting :"
+msgid "PLL setting:"
msgstr "carrega paràmetres"
#: ../../harddrake/v4l.pm_.c:218
-msgid "Radio support :"
+msgid "Radio support:"
msgstr ""
#: ../../harddrake/v4l.pm_.c:218
@@ -2739,22 +2835,22 @@ msgid ""
"GNU/Linux is a multiuser system, and this means that each user can have his\n"
"own preferences, his own files and so on. You can read the ``User Guide''\n"
"to learn more. But unlike \"root\", which is the administrator, the users\n"
-"you will add here will not be entitled to change anything except their own\n"
-"files and their own configuration. You will have to create at least one\n"
-"regular user for yourself. That account is where you should log in for\n"
-"routine use. Although it is very practical to log in as \"root\" everyday,\n"
-"it may also be very dangerous! The slightest mistake could mean that your\n"
-"system would not work any more. If you make a serious mistake as a regular\n"
-"user, you may only lose some information, but not the entire system.\n"
+"you add here will not be entitled to change anything except their own files\n"
+"and their own configuration. You will have to create at least one regular\n"
+"user for yourself. That account is where you should log in for routine use.\n"
+"Although it is very practical to log in as \"root\" everyday, it may also\n"
+"be very dangerous! The slightest mistake could mean that your system would\n"
+"not work any more. If you make a serious mistake as a regular user, you may\n"
+"only lose some information, but not the entire system.\n"
"\n"
"First, you have to enter your real name. This is not mandatory, of course -\n"
"as you can actually enter whatever you want. DrakX will then take the first\n"
"word you have entered in the box and will bring it over to the \"User\n"
"name\". This is the name this particular user will use to log onto the\n"
"system. You can change it. You then have to enter a password here. A\n"
-"non-privileged (regular) user's password is not as crucial as \"root\"' one\n"
-"from a security point of view, but that is no reason to neglect it: after\n"
-"all, your files are at risk.\n"
+"non-privileged (regular) user's password is not as crucial as the \"root\"'\n"
+"one from a security point of view, but that is no reason to neglect it:\n"
+"after all, your files are at risk.\n"
"\n"
"If you click on \"Accept user\", you can then add as many as you want. Add\n"
"a user for each one of your friends: your father or your sister, for\n"
@@ -2920,7 +3016,7 @@ msgid ""
"to have a graphical workstation!\n"
"\n"
"Moving the mouse cursor over a group name will display a short explanatory\n"
-"text about that group. If you deselect all groups when performing a regular\n"
+"text about that group. If you unselect all groups when performing a regular\n"
"installation (by opposition to an upgrade), a dialog will pop up proposing\n"
"different options for a minimal installation:\n"
"\n"
@@ -3013,10 +3109,10 @@ msgstr ""
#: ../../help.pm_.c:128
msgid ""
-"Finally, depending on whether or not you selected individual packages, you\n"
-"will be presented a tree containing all packages classified by groups and\n"
-"subgroups. While browsing the tree, you can select entire groups,\n"
-"subgroups, or individual packages.\n"
+"Finally, depending on whether or not you chose to be able to select\n"
+"individual packages, you will be presented a tree containing all packages\n"
+"classified by groups and subgroups. While browsing the tree, you can select\n"
+"entire groups, subgroups, or individual packages.\n"
"\n"
"Whenever you select a package on the tree, a description appears on the\n"
"right. When your selection is finished, click the \"Install\" button which\n"
@@ -3100,11 +3196,11 @@ msgstr ""
#: ../../help.pm_.c:164
msgid ""
-"You are now proposed to set up your Internet/network connection. If you\n"
-"wish to connect your computer to the Internet or to a local network, click\n"
-"\"OK\". The autodetection of network devices and modem will be launched. If\n"
-"this detection fails, uncheck the \"Use auto detection\" box next time. You\n"
-"may also choose not to configure the network, or do it later; in that case,\n"
+"You are now able to set up your Internet/network connection. If you wish to\n"
+"connect your computer to the Internet or to a local network, click \"OK\".\n"
+"The autodetection of network devices and modem will be launched. If this\n"
+"detection fails, uncheck the \"Use auto detection\" box next time. You may\n"
+"also choose not to configure the network, or do it later; in that case,\n"
"simply click the \"Cancel\" button.\n"
"\n"
"Available connections are: traditional modem, ISDN modem, ADSL connection,\n"
@@ -3186,7 +3282,7 @@ msgstr ""
msgid ""
"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
"local time according to the time zone you selected. It is however possible\n"
-"to deactivate this by deselecting \"Hardware clock set to GMT\" so that the\n"
+"to deactivate this by unselecting \"Hardware clock set to GMT\" so that the\n"
"hardware clock is the same as the system clock. This is useful when the\n"
"machine is hosting another operating system like Windows.\n"
"\n"
@@ -3235,7 +3331,9 @@ msgid ""
"If you can see the message during the test, and answer \"Yes\", then DrakX\n"
"will proceed to the next step. If you cannot see the message, it simply\n"
"means that the configuration was wrong and the test will automatically end\n"
-"after 10 seconds, restoring the screen."
+"after 10 seconds, restoring the screen. Refer then to the Video\n"
+"configuration section of the user guide for more information on how to\n"
+"configure your display."
msgstr ""
"X (per X Window System) és el cor de la interfície gràfica del GNU/Linux\n"
"i és on tots els entorns gràfics (KDE, GNOME, AfterStep,\n"
@@ -3259,37 +3357,7 @@ msgstr ""
"que la configuració és errònia i que el test finalitzarà automàticament en\n"
"10 segons, restaurant la pantalla."
-#: ../../help.pm_.c:237
-msgid ""
-"The first time you try the X configuration, you may not be very satisfied\n"
-"with its display (screen is too small, shifted left or right...). Hence,\n"
-"even if X starts up correctly, DrakX then asks you if the configuration\n"
-"suits you. It will also propose to change it by displaying a list of valid\n"
-"modes it could find, asking you to select one.\n"
-"\n"
-"As a last resort, if you still cannot get X to work, choose \"Change\n"
-"graphics card\", select \"Unlisted card\", and when prompted on which\n"
-"server, choose \"FBDev\". This is a failsafe option which works with any\n"
-"modern graphics card. Then choose \"Test again\" to be sure."
-msgstr ""
-"la primera vegada que heu provat la configuració de X, podeu no estar gaire "
-"satisfet\n"
-"amb la presentació (pantalla massa petita, correguda amb a l'esquerra o "
-"dreta, ...). Per tant,\n"
-"tot i que X inicïi correctament, DrakX li preguntarà si la configuració li "
-"agrada.\n"
-"Li proposarà de canviar-la bó i proporcionant-li una llista de modes vàlids\n"
-"que ha trobat, perquè en seleccioni un.\n"
-"\n"
-"Com a última opció, si encara no pot fer funcionar les X , escolliu "
-"\"Canviar\n"
-"targeta gràfica\", seleccioneu \"Unlisted card\", i quan se us pregunti "
-"quin\n"
-"servidor, escolliu \"FBDev\". Aquesta és una opció de seguretat que funciona "
-"en qualsevol\n"
-"targeta gràfica moderna. Aleshores escolliu \"Test again\" per estar segur."
-
-#: ../../help.pm_.c:249
+#: ../../help.pm_.c:239
msgid ""
"Finally, you will be asked whether you want to see the graphical interface\n"
"at boot. Note this question will be asked even if you chose not to test the\n"
@@ -3305,7 +3373,8 @@ msgstr ""
"un servidor, o si no poguessiu completar la configuració de la\n"
"pantalla."
-#: ../../help.pm_.c:256
+#: ../../help.pm_.c:246
+#, fuzzy
msgid ""
"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
@@ -3325,10 +3394,10 @@ msgid ""
"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
"password, or any other reason.\n"
"\n"
-"When you click on this step, you will be asked to enter a disk inside the\n"
-"drive. The floppy disk you will insert must be empty or contain data which\n"
-"you do not need. You will not have to format it since DrakX will rewrite\n"
-"the whole disk."
+"If you say \"Yes\", you will be asked to enter a disk inside the drive. The\n"
+"floppy disk you will insert must be empty or contain data which you do not\n"
+"need. You will not have to format it since DrakX will rewrite the whole\n"
+"disk."
msgstr ""
"El CD-ROM del Mandrake Linux té un mode de rescat. Hi podeu accedir\n"
"arrencant des del CD-ROM, prement la tecla >>F1<< quan 'boota' i teclejant "
@@ -3361,7 +3430,7 @@ msgstr ""
"No fa falta que el formategeu perquè el DrakX reescriurà\n"
"tot el disc."
-#: ../../help.pm_.c:280
+#: ../../help.pm_.c:270
msgid ""
"At this point, you need to choose where you want to install the Mandrake\n"
"Linux operating system on your hard drive. If your hard drive is empty or\n"
@@ -3394,7 +3463,9 @@ msgid ""
"\n"
" * \"Use existing partition\": the wizard has detected one or more existing\n"
"Linux partitions on your hard drive. If you want to use them, choose this\n"
-"option;\n"
+"option. You will then be asked to choose the mount points associated to\n"
+"each of the partitions. The legacy mount points are selected by default,\n"
+"and you should generally keep them.\n"
"\n"
" * \"Use the free space on the Windows; partition\": if Microsoft Windows\n"
"is installed on your hard drive and takes all the space available on it,\n"
@@ -3427,7 +3498,9 @@ msgid ""
" * \"Expert mode\": choose this option if you want to manually partition\n"
"your hard drive. Be careful - it is a powerful but dangerous choice. You\n"
"can very easily lose all your data. Hence, do not choose this unless you\n"
-"know what you are doing."
+"know what you are doing. To know how do use the DiskDrake utility used\n"
+"here, refer to the section ``Managing Your Partitions'' of the ````User\n"
+"Guide''''"
msgstr ""
"Ara és quan heu de decidir en quin lloc del vostre disc dur voleu "
"instal·lar\n"
@@ -3498,7 +3571,7 @@ msgstr ""
"tret\n"
"que sapigueu exactament què esteu fent."
-#: ../../help.pm_.c:347
+#: ../../help.pm_.c:341
msgid ""
"There you are. Installation is now complete and your GNU/Linux system is\n"
"ready to use. Just click \"OK\" to reboot the system. You can start\n"
@@ -3569,7 +3642,7 @@ msgstr ""
"escriviu\n"
"\"mformat a:\")"
-#: ../../help.pm_.c:378
+#: ../../help.pm_.c:372
msgid ""
"Any partitions that have been newly defined must be formatted for use\n"
"(formatting means creating a filesystem).\n"
@@ -3623,7 +3696,7 @@ msgstr ""
"comprovades \n"
"cercant per a blocs erronis en el disc."
-#: ../../help.pm_.c:404
+#: ../../help.pm_.c:398
msgid ""
"Your new Mandrake Linux operating system is currently being installed.\n"
"Depending on the number of packages you will be installing and the speed of\n"
@@ -3638,12 +3711,12 @@ msgstr ""
"\n"
"Si us plau, tingueu paciència."
-#: ../../help.pm_.c:412
+#: ../../help.pm_.c:406
msgid ""
"At the time you are installing Mandrake Linux, it is likely that some\n"
"packages have been updated since the initial release. Some bugs may have\n"
"been fixed, and security issues solved. To allow you to benefit from these\n"
-"updates, you are now proposed to download them from the Internet. Choose\n"
+"updates, you are now able to download them from the Internet. Choose\n"
"\"Yes\" if you have a working Internet connection, or \"No\" if you prefer\n"
"to install updated packages later.\n"
"\n"
@@ -3670,7 +3743,7 @@ msgstr ""
"apareix: comproveu la selecció, i premeu \"Instal·lar\" per a baixar-los i\n"
"instal·lar els paquets seleccionats, o \"Cancel·la\" per a abortar."
-#: ../../help.pm_.c:425
+#: ../../help.pm_.c:419
msgid ""
"Before continuing, you should read carefully the terms of the license. It\n"
"covers the whole Mandrake Linux distribution, and if you do not agree with\n"
@@ -3687,14 +3760,14 @@ msgstr ""
"immediatament. Per a continuar amb la instal·lació, feu clic en el\n"
"butó \"Accept\"."
-#: ../../help.pm_.c:432
+#: ../../help.pm_.c:426
msgid ""
"At this point, it is time to choose the security level desired for the\n"
"machine. As a rule of thumb, the more exposed the machine is, and the more\n"
"the data stored in it is crucial, the higher the security level should be.\n"
"However, a higher security level is generally obtained at the expense of\n"
-"easiness of use. Refer to the \"msec\" chapter of the ``Reference Manual''\n"
-"to get more information about the meaning of these levels.\n"
+"ease of use. Refer to the \"msec\" chapter of the ``Reference Manual'' to\n"
+"get more information about the meaning of these levels.\n"
"\n"
"If you do not know what to choose, keep the default option."
msgstr ""
@@ -3710,7 +3783,7 @@ msgstr ""
"\n"
"Si no sabeu quin escollir, deixeu la opció per defecte."
-#: ../../help.pm_.c:442
+#: ../../help.pm_.c:436
msgid ""
"At this point, you need to choose which partition(s) will be used for the\n"
"installation of your Mandrake Linux system. If partitions have already been\n"
@@ -3727,26 +3800,26 @@ msgid ""
" * \"Clear all\": this option deletes all partitions on the selected hard\n"
"drive;\n"
"\n"
-" * \"Auto allocate\": this option enables to automatically create \"Ext2\"\n"
-"and swap partitions in free space of your hard drive;\n"
+" * \"Auto allocate\": this option enables to automatically create ext3 and\n"
+"swap partitions in free space of your hard drive;\n"
"\n"
-" * \"More\": gives access to additional features:\n"
+"\"More\": gives access to additional features:\n"
"\n"
-" * \"Save partition table\": saves the partition table to a floppy.\n"
-"Useful for later partition-table recovery if necessary. It is strongly\n"
-"recommended to perform this step;\n"
+" * \"Save partition table\": saves the partition table to a floppy. Useful\n"
+"for later partition-table recovery if necessary. It is strongly recommended\n"
+"to perform this step;\n"
"\n"
-" * \"Restore partition table\": allows to restore a previously saved\n"
+" * \"Restore partition table\": allows to restore a previously saved\n"
"partition table from floppy disk;\n"
"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you\n"
-"can try to recover it using this option. Please be careful and remember\n"
-"that it can fail;\n"
+" * \"Rescue partition table\": if your partition table is damaged, you can\n"
+"try to recover it using this option. Please be careful and remember that it\n"
+"can fail;\n"
"\n"
-" * \"Reload partition table\": discards all changes and loads your\n"
-"initial partition table;\n"
+" * \"Reload partition table\": discards all changes and loads your initial\n"
+"partition table;\n"
"\n"
-" * \"Removable media automounting\": unchecking this option will force\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
"users to manually mount and unmount removable medias such as floppies and\n"
"CD-ROMs.\n"
"\n"
@@ -3774,7 +3847,7 @@ msgid ""
" * Ctrl-m to set the mount point.\n"
"\n"
"To get information about the different filesystem types available, please\n"
-"read the ext2fs chapter from the ``Reference Manual''.\n"
+"read the ext2FS chapter from the ``Reference Manual''.\n"
"\n"
"If you are installing on a PPC machine, you will want to create a small HFS\n"
"``bootstrap'' partition of at least 1MB, which will be used by the yaboot\n"
@@ -3870,7 +3943,7 @@ msgstr ""
"50 MB, us serà d'utilitat per emmagatzemar un nucli de recanvi i una imatge\n"
"del disc RAM per a situacions d'emergència durant l'arrencada."
-#: ../../help.pm_.c:513
+#: ../../help.pm_.c:507
msgid ""
"More than one Microsoft partition has been detected on your hard drive.\n"
"Please choose the one you want to resize in order to install your new\n"
@@ -3939,35 +4012,35 @@ msgstr ""
"\"Nom Windows\" és la lletra de la vostra unitat de disc sota Windows (el "
"primer disc o partició s'anomena \"C:\")."
-#: ../../help.pm_.c:544
+#: ../../help.pm_.c:538
msgid "Please be patient. This operation can take several minutes."
msgstr ""
"Si us plau, tingueu paciència. Aquesta operació pot trigar diversos minuts."
-#: ../../help.pm_.c:547
+#: ../../help.pm_.c:541
msgid ""
"DrakX now needs to know if you want to perform a default (\"Recommended\")\n"
"installation or if you want to have greater control (\"Expert\"). You can\n"
"also choose to do a new install or an upgrade of an existing Mandrake Linux\n"
"system:\n"
"\n"
-" * \"Install\": completely wipes out the old system. In fact, depending on\n"
-"what currently holds your machine, you will be able to keep some old (Linux\n"
-"or other) partitions unchanged;\n"
+" * \"Install\": completely wipes out the old system, however, depending on\n"
+"what is currently installed on your machine, you may be able to keep some\n"
+"old partitions (Linux or otherwise) unchanged;\n"
"\n"
" * \"Upgrade\": this installation class allows to simply update the\n"
"packages currently installed on your Mandrake Linux system. It keeps the\n"
"current partitions of your hard drives as well as user configurations. All\n"
-"other configuration steps remain available with respect to plain\n"
+"other configuration steps remain available, similar to a normal\n"
"installation;\n"
"\n"
-" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
-"existing Mandrake Linux system while keeping all system configurations\n"
-"unchanged. Adding new packages to the current installation is also\n"
-"possible.\n"
+" * \"Upgrade Packages Only\": this new installation class allows you to\n"
+"upgrade an existing Mandrake Linux system while keeping all system\n"
+"configurations unchanged. Adding new packages to the current installation\n"
+"is also possible.\n"
"\n"
-"Upgrades should work fine for Mandrake Linux systems starting from \"8.1\"\n"
-"release.\n"
+"Upgrades should work fine on Mandrake Linux systems containing version\n"
+"\"8.1\" or later.\n"
"\n"
"Depending on your knowledge of GNU/Linux, select one of the following\n"
"choices:\n"
@@ -3976,11 +4049,11 @@ msgid ""
"operating system. The installation will be very easy and you will only be\n"
"asked a few questions;\n"
"\n"
-" * Expert: if you have a good knowledge of GNU/Linux, you can choose this\n"
-"installation class. The expert installation will allow you to perform a\n"
-"highly-customized installation. Answering some of the questions can be\n"
-"difficult if you do not have a good knowledge of GNU/Linux, so do not\n"
-"choose this unless you know what you are doing."
+" * Expert: if you have a good understanding of GNU/Linux, you may wish to\n"
+"perform a highly customized installation. Some of the decisions you will\n"
+"have to make may be difficult if you do not have good knowledge of\n"
+"GNU/Linux, so it is not recommended that those without a fair amount of\n"
+"experience select this installation class."
msgstr ""
"DrakX necessita saber si voleu un instal·lació per defecte (\"Recomanada\")\n"
"o si voleu tenir més control sobre la instal·lació (\"Expert\"). També "
@@ -4028,19 +4101,22 @@ msgstr ""
"tant,\n"
"no escolliu aquest tipus d'instal·lació tret que sapigueu què esteu fent."
-#: ../../help.pm_.c:584
+#: ../../help.pm_.c:578
msgid ""
"Normally, DrakX selects the right keyboard for you (depending on the\n"
-"language you have chosen) and you won't even see this step. However, you\n"
-"might not have a keyboard that corresponds exactly to your language: for\n"
-"example, if you are an English speaking Swiss person, you may still want\n"
-"your keyboard to be a Swiss keyboard. Or if you speak English but are\n"
-"located in Quebec, you may find yourself in the same situation. In both\n"
-"cases, you will have to go back to this installation step and select an\n"
-"appropriate keyboard from the list.\n"
+"language you have chosen). However, you might not have a keyboard that\n"
+"corresponds exactly to your language: for example, if you are an English\n"
+"speaking Swiss person, you may still want your keyboard to be a Swiss\n"
+"keyboard. Or if you speak English but are located in Quebec, you may find\n"
+"yourself in the same situation. In both cases, you will have to go back to\n"
+"this installation step and select an appropriate keyboard from the list.\n"
"\n"
"Click on the \"More\" button to be presented with the complete list of\n"
-"supported keyboards."
+"supported keyboards.\n"
+"\n"
+"If you choose a keyboard layout based on a non-latin alphabet, you will be\n"
+"asked on next dialog to choose the key binding that will switch the\n"
+"keyboard layout between the latin and non latin layouts."
msgstr ""
"Normalment, DrakX selecciona el teclat correctament automàticament (depenent "
"del\n"
@@ -4056,8 +4132,10 @@ msgstr ""
"Feu clic en el butó \"Més\" perquè se us presenti la llista completa de\n"
"teclats suportats."
-#: ../../help.pm_.c:597
+#: ../../help.pm_.c:594
msgid ""
+"The first step is to choose your preferred language.\n"
+"\n"
"Please choose your preferred language for installation and system usage.\n"
"\n"
"Clicking on the \"Advanced\" button will allow you to select other\n"
@@ -4090,7 +4168,7 @@ msgstr ""
"múltiples idiomes que volgueu , feu clic sobre el butó \"D'acord\" per a "
"continuar."
-#: ../../help.pm_.c:610
+#: ../../help.pm_.c:609
msgid ""
"DrakX generally detects the number of buttons your mouse has. If not, it\n"
"assumes you have a two-button mouse and will set it up for third-button\n"
@@ -4103,7 +4181,14 @@ msgid ""
"If you choose a mouse other than the default, a test screen will be\n"
"displayed. Use the buttons and wheel to verify that the settings are\n"
"correct. If the mouse is not working well, press the space bar or [Return]\n"
-"to \"Cancel\" and choose again."
+"to \"Cancel\" and choose again.\n"
+"\n"
+"Wheel mouses are sometimes not automatically detected. You will need to\n"
+"manually select it in the list. Be sure to select the one corresponding to\n"
+"the correct port it is attached to. After you have pressed the \"OK\"\n"
+"button, a mouse image is displayed. You then need to move the wheel of your\n"
+"mouse to activate it correctly. Then test all buttons and movements are\n"
+"correct."
msgstr ""
"DrakX generalment detecta el número de butons que té el vostre ratolí. Si "
"no,\n"
@@ -4123,7 +4208,7 @@ msgstr ""
"[Return]\n"
"per a \"Cancel·lar\" i escollir altre cap."
-#: ../../help.pm_.c:624
+#: ../../help.pm_.c:630
msgid ""
"Please select the correct port. For example, the \"COM1\" port under\n"
"Windows is named \"ttyS0\" under GNU/Linux."
@@ -4131,7 +4216,7 @@ msgstr ""
"Si us plau, seleccioneu el port correcte. Per exemple, el port \"COM1\" en\n"
"Windows s'anomena \"ttyS0\" en GNU/Linux."
-#: ../../help.pm_.c:628
+#: ../../help.pm_.c:634
msgid ""
"This is the most crucial decision point for the security of your GNU/Linux\n"
"system: you have to enter the \"root\" password. \"root\" is the system\n"
@@ -4161,9 +4246,9 @@ msgid ""
"In Expert mode, you will be asked if you will be connecting to an\n"
"authentication server, like NIS or LDAP.\n"
"\n"
-"If your network uses the LDAP (or NIS) protocol for authentication, select\n"
-"\"LDAP\" (or \"NIS\") as authentication. If you do not know, ask your\n"
-"network administrator.\n"
+"If your network uses either of the LDAP, NIS, or PDC Windows Domain\n"
+"authentication services, select the appropriate one as \"authentication\".\n"
+"If you do not know, ask your network administrator.\n"
"\n"
"If your computer is not connected to any administrated network, you will\n"
"want to choose \"Local files\" for authentication."
@@ -4215,7 +4300,7 @@ msgstr ""
"d'escollir\n"
"\"Fitxers Locals\" per a autentificació."
-#: ../../help.pm_.c:664
+#: ../../help.pm_.c:670
msgid ""
"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
@@ -4254,16 +4339,7 @@ msgid ""
"options. !!\n"
"\n"
"Clicking the \"Advanced\" button in this dialog will offer many advanced\n"
-"options, which are reserved to the expert user.\n"
-"\n"
-"After you have configured the general bootloader parameters, the list of\n"
-"boot options which will be available at boot time will be displayed.\n"
-"\n"
-"If there is another operating system installed on your machine, it will\n"
-"automatically be added to the boot menu. Here, you can choose to fine-tune\n"
-"the existing options. Select an entry and click \"Modify\" to modify or\n"
-"remove it; \"Add\" creates a new entry; and \"Done\" goes on to the next\n"
-"installation step."
+"options, which are reserved for the expert user."
msgstr ""
"LILO i grub són carregador d'arrencada de GNU/Linux. Aquesta etapa, "
"normalment,\n"
@@ -4329,13 +4405,16 @@ msgstr ""
"següent pas de\n"
"la instal·lació."
-#: ../../help.pm_.c:713
+#: ../../help.pm_.c:710
msgid ""
-"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
-"either GNU/Linux or any other operating system present on your computer.\n"
-"Normally, these other operating systems are correctly detected and\n"
-"installed. If this is not the case, you can add an entry by hand in this\n"
-"screen. Be careful to choose the correct parameters.\n"
+"After you have configured the general bootloader parameters, the list of\n"
+"boot options which will be available at boot time will be displayed.\n"
+"\n"
+"If there is another operating system installed on your machine, it will\n"
+"automatically be added to the boot menu. Here, you can choose to fine-tune\n"
+"the existing options. Select an entry and click \"Modify\" to modify or\n"
+"remove it; \"Add\" creates a new entry; and \"Done\" goes on to the next\n"
+"installation step.\n"
"\n"
"You may also not want to give access to these other operating systems to\n"
"anyone. In which case, you can delete the corresponding entries. But then,\n"
@@ -4439,18 +4518,18 @@ msgstr ""
#: ../../help.pm_.c:759
msgid ""
-"DrakX now detects any IDE device present in your computer. It will also\n"
-"scan for one or more PCI SCSI card(s) on your system. If a SCSI card is\n"
+"DrakX now detects any IDE devices present in your computer. It will also\n"
+"scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
"found, DrakX will automatically install the appropriate driver.\n"
"\n"
"Because hardware detection does not always detect a piece of hardware,\n"
"DrakX will ask you to confirm if a PCI SCSI card is present. Click \"Yes\"\n"
"if you know that there is a SCSI card installed in your machine. You will\n"
-"be presented a list of SCSI cards to choose from. Click \"No\" if you have\n"
-"no SCSI hardware. If you are unsure, you can check the list of hardware\n"
-"detected in your machine by selecting \"See hardware info\" and clicking\n"
-"\"OK\". Examine the list of hardware and then click on the \"OK\" button to\n"
-"return to the SCSI interface question.\n"
+"be presented with a list of SCSI cards to choose from. Click \"No\" if you\n"
+"have no SCSI hardware. If you are unsure, you can check the list of\n"
+"hardware detected in your machine by selecting \"See hardware info\" and\n"
+"clicking \"OK\". Examine the list of hardware and then click on the \"OK\"\n"
+"button to return to the SCSI interface question.\n"
"\n"
"If you have to manually specify your adapter, DrakX will ask if you want to\n"
"specify options for it. You should allow DrakX to probe the hardware for\n"
@@ -4685,7 +4764,9 @@ msgid ""
"order to configure the clock according to the time zone you are in;\n"
"\n"
" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
-"configuration wizard;\n"
+"configuration wizard. Consult the corresponding chapter of the ``User\n"
+"Guide'' for more information on how to setup a new printer. The interface\n"
+"presented there is similar to the one used during installation;\n"
"\n"
" * \"Sound card\": if a sound card is detected on your system, it is\n"
"displayed here. No modification possible at installation time;\n"
@@ -4734,7 +4815,7 @@ msgstr ""
"mostrada aquí. Podeu fer clic sonre el butó per a canviar els paràmetres\n"
"associats amb la targeta."
-#: ../../help.pm_.c:894
+#: ../../help.pm_.c:896
msgid ""
"Choose the hard drive you want to erase in order to install your new\n"
"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
@@ -4744,7 +4825,7 @@ msgstr ""
"Mandrake. Aneu amb compte, se'n perdran totes les dades i no es podran\n"
"recuperar!"
-#: ../../help.pm_.c:899
+#: ../../help.pm_.c:901
msgid ""
"Click on \"OK\" if you want to delete all data and partitions present on\n"
"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
@@ -4781,7 +4862,7 @@ msgstr ""
msgid "You must also format %s"
msgstr "També heu de formatar %s"
-#: ../../install_any.pm_.c:418
+#: ../../install_any.pm_.c:423
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -4807,20 +4888,29 @@ msgstr ""
"\n"
"Voleu realment instal·lar aquests servidors?\n"
-#: ../../install_any.pm_.c:453
+#: ../../install_any.pm_.c:441
+#, c-format
+msgid ""
+"The following packages will be removed to allow upgrading your system: %s\n"
+"\n"
+"\n"
+"Do you really want to remove these packages?\n"
+msgstr ""
+
+#: ../../install_any.pm_.c:471
msgid "Can't use broadcast with no NIS domain"
msgstr "No es pot utilitzar l'emissió sense un domini NIS"
-#: ../../install_any.pm_.c:841
+#: ../../install_any.pm_.c:862
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Inseriu un disquet formatat amb FAT a la unitat %s"
-#: ../../install_any.pm_.c:845
+#: ../../install_any.pm_.c:866
msgid "This floppy is not FAT formatted"
msgstr "Aquest disquet no està formatat en FAT"
-#: ../../install_any.pm_.c:857
+#: ../../install_any.pm_.c:878
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -4828,11 +4918,20 @@ msgstr ""
"Per utilitzar aquesta selecció de paquets desada, arrenqueu la instal·lació "
"amb ``linux defcfg=floppy''"
-#: ../../install_any.pm_.c:880 ../../partition_table.pm_.c:771
+#: ../../install_any.pm_.c:901 ../../partition_table.pm_.c:767
#, c-format
msgid "Error reading file %s"
msgstr "S'ha produït un error en llegir el fitxer %s"
+#: ../../install_any.pm_.c:1023
+msgid ""
+"An error occurred - no valid devices were found on which to create new "
+"filesystems. Please check your hardware for the cause of this problem"
+msgstr ""
+"S'ha produït un error: no s'han trobat dispositius vàlids on crear nous "
+"sistemes de fitxers. Si us plau, comproveu el vostre maquinari per trobar el "
+"problema"
+
#: ../../install_interactive.pm_.c:23
#, c-format
msgid ""
@@ -4867,59 +4966,59 @@ msgstr ""
"Voleu continuar igualment?"
#
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:168
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:169
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "Heu de tenir una partició FAT muntada en /boot/efi"
-#: ../../install_interactive.pm_.c:91
+#: ../../install_interactive.pm_.c:92
msgid "Use free space"
msgstr "Utilitza l'espai lliure"
-#: ../../install_interactive.pm_.c:93
+#: ../../install_interactive.pm_.c:94
msgid "Not enough free space to allocate new partitions"
msgstr "No hi ha prou espai lliure per assignar noves particions"
-#: ../../install_interactive.pm_.c:101
+#: ../../install_interactive.pm_.c:102
msgid "Use existing partitions"
msgstr "Utilitza la partició existent"
-#: ../../install_interactive.pm_.c:103
+#: ../../install_interactive.pm_.c:104
msgid "There is no existing partition to use"
msgstr "No existeix cap partició per utilitzar"
-#: ../../install_interactive.pm_.c:110
+#: ../../install_interactive.pm_.c:111
msgid "Use the Windows partition for loopback"
msgstr "Utilitza la particio Windows per al loopback"
-#: ../../install_interactive.pm_.c:113
+#: ../../install_interactive.pm_.c:114
msgid "Which partition do you want to use for Linux4Win?"
msgstr "Quina partició voleu utilitzar per al Linux4Win?"
-#: ../../install_interactive.pm_.c:115
+#: ../../install_interactive.pm_.c:116
msgid "Choose the sizes"
msgstr "Escolliu les mides"
-#: ../../install_interactive.pm_.c:116
+#: ../../install_interactive.pm_.c:117
msgid "Root partition size in MB: "
msgstr "Mida de la partició arrel en MB: "
-#: ../../install_interactive.pm_.c:117
+#: ../../install_interactive.pm_.c:118
msgid "Swap partition size in MB: "
msgstr "Mida de la partició d'intercanvi en MB: "
-#: ../../install_interactive.pm_.c:126
+#: ../../install_interactive.pm_.c:128
msgid "Use the free space on the Windows partition"
msgstr "Utilitza l'espai lliure de la partició de Windows"
-#: ../../install_interactive.pm_.c:129
+#: ../../install_interactive.pm_.c:131
msgid "Which partition do you want to resize?"
msgstr "A quina partició voleu canviar la mida?"
-#: ../../install_interactive.pm_.c:131
+#: ../../install_interactive.pm_.c:133
msgid "Resizing Windows partition"
msgstr "S'està redimensionant la partició de Windows"
-#: ../../install_interactive.pm_.c:134
+#: ../../install_interactive.pm_.c:136
#, c-format
msgid ""
"The FAT resizer is unable to handle your partition, \n"
@@ -4928,7 +5027,7 @@ msgstr ""
"El redimensionador de la FAT no pot gestionar la vostra partició, \n"
"s'ha produït l'error següent: %s"
-#: ../../install_interactive.pm_.c:137
+#: ../../install_interactive.pm_.c:139
msgid ""
"Your Windows partition is too fragmented. Please reboot your computer under "
"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
@@ -4938,7 +5037,7 @@ msgstr ""
"``defrag'' primer"
#
-#: ../../install_interactive.pm_.c:138
+#: ../../install_interactive.pm_.c:140
msgid ""
"WARNING!\n"
"\n"
@@ -4960,21 +5059,21 @@ msgstr ""
"vostres dades.\n"
"Quan estigueu segur, premeu D'acord."
-#: ../../install_interactive.pm_.c:148
+#: ../../install_interactive.pm_.c:150
msgid "Which size do you want to keep for Windows on"
msgstr "Quina mida voleu deixar per a la partició de Windows?"
-#: ../../install_interactive.pm_.c:149
+#: ../../install_interactive.pm_.c:151
#, c-format
msgid "partition %s"
msgstr "partició %s"
-#: ../../install_interactive.pm_.c:156
+#: ../../install_interactive.pm_.c:158
#, c-format
msgid "FAT resizing failed: %s"
msgstr "Ha fallat la redimensió de la FAT: %s"
-#: ../../install_interactive.pm_.c:171
+#: ../../install_interactive.pm_.c:173
msgid ""
"There is no FAT partition to resize or to use as loopback (or not enough "
"space left)"
@@ -4982,33 +5081,33 @@ msgstr ""
"No hi ha particions FAT a què canviar la mida o per utilitzar-les com a "
"loopback (o no queda prou espai)"
-#: ../../install_interactive.pm_.c:177
+#: ../../install_interactive.pm_.c:179
msgid "Erase entire disk"
msgstr "Esborra el disc complet"
-#: ../../install_interactive.pm_.c:177
+#: ../../install_interactive.pm_.c:179
msgid "Remove Windows(TM)"
msgstr "Elimina el Windows(TM)"
-#: ../../install_interactive.pm_.c:180
+#: ../../install_interactive.pm_.c:182
msgid "You have more than one hard drive, which one do you install linux on?"
msgstr "Teniu més d'un disc dur; en quin voleu instal·lar el Linux?"
-#: ../../install_interactive.pm_.c:183
+#: ../../install_interactive.pm_.c:185
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr ""
"Es perdran TOTES les particions, i les dades que contenen, de la unitat %s"
-#: ../../install_interactive.pm_.c:191
+#: ../../install_interactive.pm_.c:193
msgid "Custom disk partitioning"
msgstr "Particionament personalitzat de disc"
-#: ../../install_interactive.pm_.c:195
+#: ../../install_interactive.pm_.c:197
msgid "Use fdisk"
msgstr "Utilitza l'fdisk"
-#: ../../install_interactive.pm_.c:198
+#: ../../install_interactive.pm_.c:200
#, c-format
msgid ""
"You can now partition %s.\n"
@@ -5017,29 +5116,29 @@ msgstr ""
"Ara podeu fer les particions a %s.\n"
"Quan acabeu, no oblideu desar-les utiltzant `w'"
-#: ../../install_interactive.pm_.c:227
+#: ../../install_interactive.pm_.c:229
msgid "You don't have enough free space on your Windows partition"
msgstr "No teniu prou espai lliure a la partició de Windows"
-#: ../../install_interactive.pm_.c:243
+#: ../../install_interactive.pm_.c:245
msgid "I can't find any room for installing"
msgstr "No puc trobar espai per a la instal·lació"
-#: ../../install_interactive.pm_.c:246
+#: ../../install_interactive.pm_.c:248
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr ""
"L'auxiliar de particionament del DrakX ha trobat les solucions següents:"
-#: ../../install_interactive.pm_.c:250
+#: ../../install_interactive.pm_.c:252
#, c-format
msgid "Partitioning failed: %s"
msgstr "Ha fallat el particionament: %s"
-#: ../../install_interactive.pm_.c:260
+#: ../../install_interactive.pm_.c:262
msgid "Bringing up the network"
msgstr "S'està activant la xarxa"
-#: ../../install_interactive.pm_.c:265
+#: ../../install_interactive.pm_.c:267
msgid "Bringing down the network"
msgstr "S'està desactivant la xarxa"
@@ -5051,12 +5150,12 @@ msgstr ""
"S'ha produït un error, però no sé com gestionar-lo correctament.\n"
"Si continueu, és sota la vostra responsabilitat."
-#: ../../install_steps.pm_.c:210
+#: ../../install_steps.pm_.c:211
#, c-format
msgid "Duplicate mount point %s"
msgstr "Duplica el punt de muntatge %s"
-#: ../../install_steps.pm_.c:379
+#: ../../install_steps.pm_.c:380
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -5068,12 +5167,12 @@ msgstr ""
"Comproveu el CD-ROM en un ordinador instal·lat mitjançant \"rpm -qpl "
"Mandrake/RPMS/*.rpm\"\n"
-#: ../../install_steps.pm_.c:451
+#: ../../install_steps.pm_.c:452
#, c-format
msgid "Welcome to %s"
msgstr "Benvingut a %s"
-#: ../../install_steps.pm_.c:530 ../../install_steps.pm_.c:770
+#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:772
msgid "No floppy drive available"
msgstr "No hi ha cap unitat de disquet disponible"
@@ -5105,71 +5204,71 @@ msgstr "Tipus d'instal·lació"
msgid "Please choose one of the following classes of installation:"
msgstr "Si us plau, trieu un dels tipus d'instal·lació següents:"
-#: ../../install_steps_gtk.pm_.c:243 ../../install_steps_interactive.pm_.c:694
+#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:678
msgid "Package Group Selection"
msgstr "Selecció del grup de paquets"
-#: ../../install_steps_gtk.pm_.c:276 ../../install_steps_interactive.pm_.c:709
+#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:693
msgid "Individual package selection"
msgstr "Selecció individual de paquets"
-#: ../../install_steps_gtk.pm_.c:299 ../../install_steps_interactive.pm_.c:633
+#: ../../install_steps_gtk.pm_.c:293 ../../install_steps_interactive.pm_.c:617
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Mida total: %d / %d MB"
-#: ../../install_steps_gtk.pm_.c:341
+#: ../../install_steps_gtk.pm_.c:335
msgid "Bad package"
msgstr "Paquet incorrecte"
-#: ../../install_steps_gtk.pm_.c:342
+#: ../../install_steps_gtk.pm_.c:336
#, c-format
msgid "Name: %s\n"
msgstr "Nom: %s\n"
-#: ../../install_steps_gtk.pm_.c:343
+#: ../../install_steps_gtk.pm_.c:337
#, c-format
msgid "Version: %s\n"
msgstr "Versió: %s\n"
-#: ../../install_steps_gtk.pm_.c:344
+#: ../../install_steps_gtk.pm_.c:338
#, c-format
msgid "Size: %d KB\n"
msgstr "Mida: %d kB\n"
-#: ../../install_steps_gtk.pm_.c:345
+#: ../../install_steps_gtk.pm_.c:339
#, c-format
msgid "Importance: %s\n"
msgstr "Importància: %s\n"
-#: ../../install_steps_gtk.pm_.c:367
+#: ../../install_steps_gtk.pm_.c:361
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr ""
"No podeu seleccionar aquest paquet perquè no queda prou espai per instal·lar-"
"lo"
-#: ../../install_steps_gtk.pm_.c:372
+#: ../../install_steps_gtk.pm_.c:366
msgid "The following packages are going to be installed"
msgstr "Ara s'instal·laran els paquets següents"
-#: ../../install_steps_gtk.pm_.c:373
+#: ../../install_steps_gtk.pm_.c:367
msgid "The following packages are going to be removed"
msgstr "Ara s'eliminaran els paquets següents"
-#: ../../install_steps_gtk.pm_.c:385
+#: ../../install_steps_gtk.pm_.c:379
msgid "You can't select/unselect this package"
msgstr "No podeu seleccionar/desseleccionar aquest paquet"
-#: ../../install_steps_gtk.pm_.c:397
+#: ../../install_steps_gtk.pm_.c:391
msgid "This is a mandatory package, it can't be unselected"
msgstr "Aquest paquet és obligatori; no es pot deseleccionar"
-#: ../../install_steps_gtk.pm_.c:399
+#: ../../install_steps_gtk.pm_.c:393
msgid "You can't unselect this package. It is already installed"
msgstr "No podeu deseleccionar aquest paquet; ja està instal·lat"
-#: ../../install_steps_gtk.pm_.c:402
+#: ../../install_steps_gtk.pm_.c:396
msgid ""
"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
@@ -5177,77 +5276,77 @@ msgstr ""
"Aquest paquet s'ha d'actualitzar\n"
"Esteu segur que voleu desseleccionar-lo?"
-#: ../../install_steps_gtk.pm_.c:405
+#: ../../install_steps_gtk.pm_.c:399
msgid "You can't unselect this package. It must be upgraded"
msgstr "No podeu desseleccionar aquest paquet; s'ha d'actualitzar"
-#: ../../install_steps_gtk.pm_.c:410
+#: ../../install_steps_gtk.pm_.c:404
msgid "Show automatically selected packages"
msgstr "Mostra automàticament els paquets seleccionats"
-#: ../../install_steps_gtk.pm_.c:411 ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_gtk.pm_.c:405 ../../install_steps_interactive.pm_.c:255
#: ../../install_steps_interactive.pm_.c:259
-#: ../../standalone/drakbackup_.c:3600
+#: ../../standalone/drakbackup_.c:4257
msgid "Install"
msgstr "Instal·la"
#
-#: ../../install_steps_gtk.pm_.c:414
+#: ../../install_steps_gtk.pm_.c:408
msgid "Load/Save on floppy"
msgstr "Carrega/Desa al disquet"
#
-#: ../../install_steps_gtk.pm_.c:415
+#: ../../install_steps_gtk.pm_.c:409
msgid "Updating package selection"
msgstr "Actualitzant la selecció de paquets"
#
-#: ../../install_steps_gtk.pm_.c:420
+#: ../../install_steps_gtk.pm_.c:414
msgid "Minimal install"
msgstr "Instal·lació Mínima"
-#: ../../install_steps_gtk.pm_.c:435 ../../install_steps_interactive.pm_.c:538
+#: ../../install_steps_gtk.pm_.c:429 ../../install_steps_interactive.pm_.c:522
msgid "Choose the packages you want to install"
msgstr "Escolliu els paquets que voleu instal·lar"
-#: ../../install_steps_gtk.pm_.c:451 ../../install_steps_interactive.pm_.c:778
+#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:762
msgid "Installing"
msgstr "S'està instal·lant"
-#: ../../install_steps_gtk.pm_.c:457
+#: ../../install_steps_gtk.pm_.c:451
msgid "Estimating"
msgstr "S'està estimant"
-#: ../../install_steps_gtk.pm_.c:464
+#: ../../install_steps_gtk.pm_.c:458
msgid "Time remaining "
msgstr "Temps restant "
-#: ../../install_steps_gtk.pm_.c:476
+#: ../../install_steps_gtk.pm_.c:470
msgid "Please wait, preparing installation..."
msgstr "Si us plau, espereu, s'està preparant la instal·lació..."
-#: ../../install_steps_gtk.pm_.c:560
+#: ../../install_steps_gtk.pm_.c:554
#, c-format
msgid "%d packages"
msgstr "%d paquets"
-#: ../../install_steps_gtk.pm_.c:565
+#: ../../install_steps_gtk.pm_.c:559
#, c-format
msgid "Installing package %s"
msgstr "S'està instal·lant el paquet %s"
-#: ../../install_steps_gtk.pm_.c:602 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:802
+#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:786
#: ../../standalone/drakautoinst_.c:202
msgid "Accept"
msgstr "Accepta"
-#: ../../install_steps_gtk.pm_.c:602 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:802
+#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:786
msgid "Refuse"
msgstr "Rebutja"
-#: ../../install_steps_gtk.pm_.c:603 ../../install_steps_interactive.pm_.c:803
+#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:787
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -5263,17 +5362,17 @@ msgstr ""
"Si no el teniu, premeu Cancel·la per no fer la instal·lació des d'aquest CD-"
"ROM."
-#: ../../install_steps_gtk.pm_.c:617 ../../install_steps_gtk.pm_.c:621
-#: ../../install_steps_interactive.pm_.c:815
-#: ../../install_steps_interactive.pm_.c:819
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_gtk.pm_.c:615
+#: ../../install_steps_interactive.pm_.c:799
+#: ../../install_steps_interactive.pm_.c:803
msgid "Go on anyway?"
msgstr "Voleu seguir igualment?"
-#: ../../install_steps_gtk.pm_.c:617 ../../install_steps_interactive.pm_.c:815
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:799
msgid "There was an error ordering packages:"
msgstr "S'ha produït un error en ordenar els paquets:"
-#: ../../install_steps_gtk.pm_.c:621 ../../install_steps_interactive.pm_.c:819
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:803
msgid "There was an error installing packages:"
msgstr "S'ha produït un error en instal·lar els paquets:"
@@ -5583,7 +5682,7 @@ msgid "Are you sure you refuse the licence?"
msgstr ""
#: ../../install_steps_interactive.pm_.c:211
-#: ../../install_steps_interactive.pm_.c:1038
+#: ../../install_steps_interactive.pm_.c:1023
#: ../../standalone/keyboarddrake_.c:31
msgid "Keyboard"
msgstr "Teclat"
@@ -5635,11 +5734,11 @@ msgstr "Actualitza Només els Paquets"
msgid "Please choose the type of your mouse."
msgstr "Si us plau, seleccioneu el tipus del vostre ratolí."
-#: ../../install_steps_interactive.pm_.c:281 ../../standalone/mousedrake_.c:59
+#: ../../install_steps_interactive.pm_.c:281 ../../standalone/mousedrake_.c:60
msgid "Mouse Port"
msgstr "Port del ratolí"
-#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:61
msgid "Please choose on which serial port your mouse is connected to."
msgstr ""
"Si us plau, seleccioneu el port sèrie a què està connectat el vostre ratolí."
@@ -5672,46 +5771,20 @@ msgstr "S'està configurant l'IDE"
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:336
+#: ../../install_steps_interactive.pm_.c:338
msgid "No partition available"
msgstr "No hi ha particions disponibles"
-#: ../../install_steps_interactive.pm_.c:339
+#: ../../install_steps_interactive.pm_.c:341
msgid "Scanning partitions to find mount points"
msgstr "S'estan explorant les particions per trobar els punts de muntatge"
-#: ../../install_steps_interactive.pm_.c:347
+#: ../../install_steps_interactive.pm_.c:349
msgid "Choose the mount points"
msgstr "Escolliu els punts de muntatge"
-#: ../../install_steps_interactive.pm_.c:366
-#, c-format
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to not allow DrakX to modify the partition table.\n"
-"(the error is %s)\n"
-"\n"
-"Do you agree to loose all the partitions?\n"
-msgstr ""
-"No puc llegir la vostra taula de particions, està massa malmesa per a mi :(\n"
-"Intentaré seguir, buidant les particions incorrectes (es perdran TOTES LES "
-"DADES!).\n"
-"L'altra solució és impedir al DrakX que modifiqui la taula de particions.\n"
-"(l'error és %s)\n"
-"\n"
-"Esteu d'acord en perdre totes les particions?\n"
-
#: ../../install_steps_interactive.pm_.c:379
msgid ""
-"DiskDrake failed to read correctly the partition table.\n"
-"Continue at your own risk!"
-msgstr ""
-"El DiskDrake no ha pogut llegir correctament la taula de particions.\n"
-"Si continueu, és sota la vostra responsabilitat!"
-
-#: ../../install_steps_interactive.pm_.c:396
-msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
msgstr ""
@@ -5720,73 +5793,73 @@ msgstr ""
"bootstrap amb el DiskDrake"
#
-#: ../../install_steps_interactive.pm_.c:405
+#: ../../install_steps_interactive.pm_.c:388
msgid "No root partition found to perform an upgrade"
msgstr "No s'ha trobat cap partició arrel per a realitzar una actualització"
-#: ../../install_steps_interactive.pm_.c:406
+#: ../../install_steps_interactive.pm_.c:389
msgid "Root Partition"
msgstr "Partició arrel"
-#: ../../install_steps_interactive.pm_.c:407
+#: ../../install_steps_interactive.pm_.c:390
msgid "What is the root partition (/) of your system?"
msgstr "Quina és la partició arrel (/) del vostre sistema?"
-#: ../../install_steps_interactive.pm_.c:421
+#: ../../install_steps_interactive.pm_.c:404
msgid "You need to reboot for the partition table modifications to take place"
msgstr ""
"Us caldrà tornar a arrencar per tal que les modificacions de la taula de "
"particions tinguin efecte"
-#: ../../install_steps_interactive.pm_.c:445
+#: ../../install_steps_interactive.pm_.c:428
msgid "Choose the partitions you want to format"
msgstr "Escolliu les particions que voleu formatar"
-#: ../../install_steps_interactive.pm_.c:446
+#: ../../install_steps_interactive.pm_.c:429
msgid "Check bad blocks?"
msgstr "Voleu comprovar els blocs incorrectes?"
-#: ../../install_steps_interactive.pm_.c:473
+#: ../../install_steps_interactive.pm_.c:456
msgid "Formatting partitions"
msgstr "S'estan formatant les particions"
-#: ../../install_steps_interactive.pm_.c:475
+#: ../../install_steps_interactive.pm_.c:458
#, c-format
msgid "Creating and formatting file %s"
msgstr "S'està creant i formatant el fitxer %s"
-#: ../../install_steps_interactive.pm_.c:480
+#: ../../install_steps_interactive.pm_.c:463
#, c-format
msgid ""
"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
"you can loose data)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:482
+#: ../../install_steps_interactive.pm_.c:465
msgid "Not enough swap space to fulfill installation, please add some"
msgstr ""
"No hi ha prou space d'intercanvi per a completar la instal·lació; si us "
"plau, afegiu-ne"
-#: ../../install_steps_interactive.pm_.c:489
+#: ../../install_steps_interactive.pm_.c:472
#, fuzzy
msgid "Looking for available packages and rebuilding rpm database..."
msgstr "S'estan cercant els paquets disponibles"
-#: ../../install_steps_interactive.pm_.c:490
+#: ../../install_steps_interactive.pm_.c:473
msgid "Looking for available packages..."
msgstr "S'estan cercant els paquets disponibles"
-#: ../../install_steps_interactive.pm_.c:493
+#: ../../install_steps_interactive.pm_.c:476
#, fuzzy
msgid "Looking at packages already installed..."
msgstr "No podeu deseleccionar aquest paquet; ja està instal·lat"
-#: ../../install_steps_interactive.pm_.c:497
+#: ../../install_steps_interactive.pm_.c:480
msgid "Finding packages to upgrade..."
msgstr "S'estan cercant els paquets a actualitzar"
-#: ../../install_steps_interactive.pm_.c:515
+#: ../../install_steps_interactive.pm_.c:498
#, c-format
msgid ""
"Your system does not have enough space left for installation or upgrade (%d "
@@ -5795,7 +5868,7 @@ msgstr ""
"Al vostre sistema no li queda prou espai per a la instal·lació o "
"actualització (%d > %d)"
-#: ../../install_steps_interactive.pm_.c:550
+#: ../../install_steps_interactive.pm_.c:534
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
@@ -5804,39 +5877,39 @@ msgstr ""
"El format és el mateix que en els disquets generats d'auto instal·lació."
#
-#: ../../install_steps_interactive.pm_.c:553
+#: ../../install_steps_interactive.pm_.c:537
msgid "Load from floppy"
msgstr "Carrega des del disquet"
#
-#: ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_interactive.pm_.c:539
msgid "Loading from floppy"
msgstr "Carregant des del disquet"
#
-#: ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_interactive.pm_.c:539
msgid "Package selection"
msgstr "Selecció de paquets"
#
-#: ../../install_steps_interactive.pm_.c:560
+#: ../../install_steps_interactive.pm_.c:544
msgid "Insert a floppy containing package selection"
msgstr "Inseriu un disquet amb la selecció de paquets"
-#: ../../install_steps_interactive.pm_.c:572
+#: ../../install_steps_interactive.pm_.c:556
msgid "Save on floppy"
msgstr "Desa al disquet"
-#: ../../install_steps_interactive.pm_.c:646
+#: ../../install_steps_interactive.pm_.c:630
msgid "Selected size is larger than available space"
msgstr "La mida seleccionada és superior a la disponible"
#
-#: ../../install_steps_interactive.pm_.c:660
+#: ../../install_steps_interactive.pm_.c:644
msgid "Type of install"
msgstr "Tipus d'instal·lació"
-#: ../../install_steps_interactive.pm_.c:661
+#: ../../install_steps_interactive.pm_.c:645
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
@@ -5845,19 +5918,19 @@ msgstr ""
"Escolliu la instal·lació mínima que voleu:"
#
-#: ../../install_steps_interactive.pm_.c:664
+#: ../../install_steps_interactive.pm_.c:648
msgid "With X"
msgstr "Amb X"
-#: ../../install_steps_interactive.pm_.c:666
+#: ../../install_steps_interactive.pm_.c:650
msgid "With basic documentation (recommended!)"
msgstr "Amb documentació bàsica (recomenada!)"
-#: ../../install_steps_interactive.pm_.c:667
+#: ../../install_steps_interactive.pm_.c:651
msgid "Truly minimal install (especially no urpmi)"
msgstr "Instal·lació realment mínima (especialment no urpmi)"
-#: ../../install_steps_interactive.pm_.c:752
+#: ../../install_steps_interactive.pm_.c:736
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -5867,16 +5940,16 @@ msgstr ""
"Si no teniu cap d'aquests CD, feu clic a Cancel·la.\n"
"Si només falten alguns CD, desseleccioneu-los i feu clic a D'acord."
-#: ../../install_steps_interactive.pm_.c:757
+#: ../../install_steps_interactive.pm_.c:741
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "CD-ROM etiquetat com \"%s\""
-#: ../../install_steps_interactive.pm_.c:778
+#: ../../install_steps_interactive.pm_.c:762
msgid "Preparing installation"
msgstr "S'està preparant la instal·lació"
-#: ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:771
#, c-format
msgid ""
"Installing package %s\n"
@@ -5885,21 +5958,21 @@ msgstr ""
"S'està instal·lant el paquet %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:833
+#: ../../install_steps_interactive.pm_.c:817
msgid "Post-install configuration"
msgstr "Configuració després de la instal·lació"
-#: ../../install_steps_interactive.pm_.c:839
+#: ../../install_steps_interactive.pm_.c:823
#, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Inseriu el disquet d'arrencada utilitzat a la unitat %s"
-#: ../../install_steps_interactive.pm_.c:845
+#: ../../install_steps_interactive.pm_.c:829
#, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Inseriu el disquet d'Actualització de Mòduls a la unitat %s"
-#: ../../install_steps_interactive.pm_.c:865
+#: ../../install_steps_interactive.pm_.c:849
msgid ""
"You now have the opportunity to download encryption software.\n"
"\n"
@@ -5966,7 +6039,7 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:904
+#: ../../install_steps_interactive.pm_.c:888
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
"have been released after the distribution was released. They may\n"
@@ -5988,172 +6061,172 @@ msgstr ""
"Voleu instal·lar aquestes actualitzacions ?"
#
-#: ../../install_steps_interactive.pm_.c:919
+#: ../../install_steps_interactive.pm_.c:903
msgid ""
"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr ""
"S'està contactant amb el servidor Mandrake Linux per obtenir la llista de "
"rèpliques disponibles..."
-#: ../../install_steps_interactive.pm_.c:924
+#: ../../install_steps_interactive.pm_.c:908
msgid "Choose a mirror from which to get the packages"
msgstr "Escolliu una rèplica des de la qual aconseguir els paquets"
-#: ../../install_steps_interactive.pm_.c:933
+#: ../../install_steps_interactive.pm_.c:917
msgid "Contacting the mirror to get the list of available packages..."
msgstr ""
"S'està contactant amb la rèplica per a obtenir la llista dels paquets "
"disponibles..."
-#: ../../install_steps_interactive.pm_.c:960
+#: ../../install_steps_interactive.pm_.c:945
msgid "Which is your timezone?"
msgstr "En quina zona horària us trobeu?"
#
-#: ../../install_steps_interactive.pm_.c:965
+#: ../../install_steps_interactive.pm_.c:950
msgid "Hardware clock set to GMT"
msgstr "El rellotge del vostre ordinador està regulat per GMT"
-#: ../../install_steps_interactive.pm_.c:966
+#: ../../install_steps_interactive.pm_.c:951
msgid "Automatic time synchronization (using NTP)"
msgstr "Sincronització automàtica de la hora (usant NTP)"
#
-#: ../../install_steps_interactive.pm_.c:973
+#: ../../install_steps_interactive.pm_.c:958
msgid "NTP Server"
msgstr "Servidor NTP"
-#: ../../install_steps_interactive.pm_.c:1007
-#: ../../install_steps_interactive.pm_.c:1015
+#: ../../install_steps_interactive.pm_.c:992
+#: ../../install_steps_interactive.pm_.c:1000
msgid "Remote CUPS server"
msgstr "Servidor CUPS remot"
-#: ../../install_steps_interactive.pm_.c:1008
+#: ../../install_steps_interactive.pm_.c:993
msgid "No printer"
msgstr "Cap impressora"
#
-#: ../../install_steps_interactive.pm_.c:1025
+#: ../../install_steps_interactive.pm_.c:1010
msgid "Do you have an ISA sound card?"
msgstr "Teniu una targeta de so ISA?"
-#: ../../install_steps_interactive.pm_.c:1027
+#: ../../install_steps_interactive.pm_.c:1012
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
"Executeu \"sndconfig\" després de la instal·lació per a configurar la "
"targeta de so"
-#: ../../install_steps_interactive.pm_.c:1029
+#: ../../install_steps_interactive.pm_.c:1014
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
"No s'ha detectat cap targeta de so. Proveu amb \"harddrake\" després de la "
"instal·lació"
-#: ../../install_steps_interactive.pm_.c:1034 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1019 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Resum"
-#: ../../install_steps_interactive.pm_.c:1037
+#: ../../install_steps_interactive.pm_.c:1022
msgid "Mouse"
msgstr "Ratolí"
-#: ../../install_steps_interactive.pm_.c:1039
+#: ../../install_steps_interactive.pm_.c:1024
msgid "Timezone"
msgstr "Zona horària"
-#: ../../install_steps_interactive.pm_.c:1040 ../../printerdrake.pm_.c:2728
-#: ../../printerdrake.pm_.c:2814
+#: ../../install_steps_interactive.pm_.c:1025 ../../printerdrake.pm_.c:2937
+#: ../../printerdrake.pm_.c:3026
msgid "Printer"
msgstr "Impressora"
-#: ../../install_steps_interactive.pm_.c:1042
+#: ../../install_steps_interactive.pm_.c:1027
msgid "ISDN card"
msgstr "Targeta XDSI"
-#: ../../install_steps_interactive.pm_.c:1045
-#: ../../install_steps_interactive.pm_.c:1047
+#: ../../install_steps_interactive.pm_.c:1030
+#: ../../install_steps_interactive.pm_.c:1032
msgid "Sound card"
msgstr "Targeta de so"
-#: ../../install_steps_interactive.pm_.c:1049
+#: ../../install_steps_interactive.pm_.c:1034
msgid "TV card"
msgstr "Targeta de TV"
-#: ../../install_steps_interactive.pm_.c:1089
-#: ../../install_steps_interactive.pm_.c:1114
-#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1074
+#: ../../install_steps_interactive.pm_.c:1099
+#: ../../install_steps_interactive.pm_.c:1103
msgid "LDAP"
msgstr "LDAP"
#
-#: ../../install_steps_interactive.pm_.c:1090
-#: ../../install_steps_interactive.pm_.c:1114
-#: ../../install_steps_interactive.pm_.c:1127
+#: ../../install_steps_interactive.pm_.c:1075
+#: ../../install_steps_interactive.pm_.c:1099
+#: ../../install_steps_interactive.pm_.c:1112
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1091
-#: ../../install_steps_interactive.pm_.c:1114
-#: ../../install_steps_interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1141
+#: ../../install_steps_interactive.pm_.c:1076
+#: ../../install_steps_interactive.pm_.c:1099
+#: ../../install_steps_interactive.pm_.c:1120
+#: ../../install_steps_interactive.pm_.c:1126
#, fuzzy
msgid "Windows Domain"
msgstr "Aconsegueix les Fons de Windows"
#
-#: ../../install_steps_interactive.pm_.c:1092
-#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1077
+#: ../../install_steps_interactive.pm_.c:1099
msgid "Local files"
msgstr "Impressores local"
-#: ../../install_steps_interactive.pm_.c:1101
-#: ../../install_steps_interactive.pm_.c:1102 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1086
+#: ../../install_steps_interactive.pm_.c:1087 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Contrasenya de 'root'"
-#: ../../install_steps_interactive.pm_.c:1103
+#: ../../install_steps_interactive.pm_.c:1088
msgid "No password"
msgstr "Sense contrasenya"
-#: ../../install_steps_interactive.pm_.c:1108
+#: ../../install_steps_interactive.pm_.c:1093
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr ""
"Aquesta contrasenya és massa curta (ha de tenir com a mínim %d caràcters)"
-#: ../../install_steps_interactive.pm_.c:1114 ../../network/modem.pm_.c:49
+#: ../../install_steps_interactive.pm_.c:1099 ../../network/modem.pm_.c:49
#: ../../standalone/drakconnect_.c:625 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Autenticació"
#
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1107
msgid "Authentication LDAP"
msgstr "Autenticació LDAP"
-#: ../../install_steps_interactive.pm_.c:1123
+#: ../../install_steps_interactive.pm_.c:1108
msgid "LDAP Base dn"
msgstr "LDAP Base dn"
#
-#: ../../install_steps_interactive.pm_.c:1124
+#: ../../install_steps_interactive.pm_.c:1109
msgid "LDAP Server"
msgstr "Servidor LDAP"
#
-#: ../../install_steps_interactive.pm_.c:1130
+#: ../../install_steps_interactive.pm_.c:1115
msgid "Authentication NIS"
msgstr "Autenticació NIS"
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1116
msgid "NIS Domain"
msgstr "Domini del NIS"
-#: ../../install_steps_interactive.pm_.c:1132
+#: ../../install_steps_interactive.pm_.c:1117
msgid "NIS Server"
msgstr "Servidor NIS"
-#: ../../install_steps_interactive.pm_.c:1138
+#: ../../install_steps_interactive.pm_.c:1123
msgid ""
"For this to work for a W2K PDC, you will probably need to have the admin "
"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
@@ -6170,21 +6243,21 @@ msgid ""
msgstr ""
#
-#: ../../install_steps_interactive.pm_.c:1140
+#: ../../install_steps_interactive.pm_.c:1125
#, fuzzy
msgid "Authentication Windows Domain"
msgstr "Autenticació LDAP"
-#: ../../install_steps_interactive.pm_.c:1142
+#: ../../install_steps_interactive.pm_.c:1127
#, fuzzy
msgid "Domain Admin User Name"
msgstr "Nom de domini"
-#: ../../install_steps_interactive.pm_.c:1143
+#: ../../install_steps_interactive.pm_.c:1128
msgid "Domain Admin Password"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1178
+#: ../../install_steps_interactive.pm_.c:1163
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
"depending on the normal bootloader. This is useful if you don't want to "
@@ -6214,19 +6287,19 @@ msgstr ""
"Si voleu crear un disc d'arrencada per al vostre sistema, inseriu un disquet "
"a la primera unitat i premeu \"D'acord\"."
-#: ../../install_steps_interactive.pm_.c:1194
+#: ../../install_steps_interactive.pm_.c:1179
msgid "First floppy drive"
msgstr "Primera unitat de disquet"
-#: ../../install_steps_interactive.pm_.c:1195
+#: ../../install_steps_interactive.pm_.c:1180
msgid "Second floppy drive"
msgstr "Segona unitat de disquet"
-#: ../../install_steps_interactive.pm_.c:1196 ../../printerdrake.pm_.c:2277
+#: ../../install_steps_interactive.pm_.c:1181 ../../printerdrake.pm_.c:2470
msgid "Skip"
msgstr "Omet"
-#: ../../install_steps_interactive.pm_.c:1201
+#: ../../install_steps_interactive.pm_.c:1186
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -6254,7 +6327,7 @@ msgstr ""
"sistema?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1207
+#: ../../install_steps_interactive.pm_.c:1192
msgid ""
"\n"
"\n"
@@ -6268,30 +6341,30 @@ msgstr ""
"creant un disquet d'arrencada per un de 1.44 Mb molt probablement fallarà,\n"
"perquè XFS necessita una unitat molt gran)."
-#: ../../install_steps_interactive.pm_.c:1215
+#: ../../install_steps_interactive.pm_.c:1200
msgid "Sorry, no floppy drive available"
msgstr "No hi ha cap unitat de disquet disponible"
-#: ../../install_steps_interactive.pm_.c:1219
+#: ../../install_steps_interactive.pm_.c:1204
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr ""
"Escolliu la unitat de disquet que voleu utilitzar per crear el disc "
"d'arrencada"
-#: ../../install_steps_interactive.pm_.c:1223
+#: ../../install_steps_interactive.pm_.c:1208
#, c-format
msgid "Insert a floppy in %s"
msgstr "Inseriu un disquet a la unitat %s"
-#: ../../install_steps_interactive.pm_.c:1226
+#: ../../install_steps_interactive.pm_.c:1211
msgid "Creating bootdisk..."
msgstr "S'està creant el disc d'arrencada"
-#: ../../install_steps_interactive.pm_.c:1233
+#: ../../install_steps_interactive.pm_.c:1218
msgid "Preparing bootloader..."
msgstr "S'està preparant el carregador d'arrencada"
-#: ../../install_steps_interactive.pm_.c:1244
+#: ../../install_steps_interactive.pm_.c:1229
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -6303,11 +6376,11 @@ msgstr ""
"La instal·lació continuarà, però haureu\n"
"d'utilitzar el BootX per a arrencar el vostre ordinador"
-#: ../../install_steps_interactive.pm_.c:1250
+#: ../../install_steps_interactive.pm_.c:1235
msgid "Do you want to use aboot?"
msgstr "Voleu utilitzar l'aboot?"
-#: ../../install_steps_interactive.pm_.c:1253
+#: ../../install_steps_interactive.pm_.c:1238
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -6317,17 +6390,17 @@ msgstr ""
"primera partició?"
#
-#: ../../install_steps_interactive.pm_.c:1260
+#: ../../install_steps_interactive.pm_.c:1245
msgid "Installing bootloader"
msgstr "Instal·lant el carregador d'arrencada"
-#: ../../install_steps_interactive.pm_.c:1266
+#: ../../install_steps_interactive.pm_.c:1251
msgid "Installation of bootloader failed. The following error occured:"
msgstr ""
"Ha fallat la instal·lació del carregador d'arrencada. S'ha produït l'error "
"següent:"
-#: ../../install_steps_interactive.pm_.c:1274
+#: ../../install_steps_interactive.pm_.c:1259
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -6346,17 +6419,17 @@ msgstr ""
" Després, escriviu: shut-down\n"
"En l'arrencada següent heu de veure l'indicador del carregador d'arrencada."
-#: ../../install_steps_interactive.pm_.c:1308
+#: ../../install_steps_interactive.pm_.c:1293
#: ../../standalone/drakautoinst_.c:79
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Inseriu un disquet en blanc a la unitat %s"
-#: ../../install_steps_interactive.pm_.c:1312
+#: ../../install_steps_interactive.pm_.c:1297
msgid "Creating auto install floppy..."
msgstr "S'està creant el diquet d'instal·lació automàtica"
-#: ../../install_steps_interactive.pm_.c:1323
+#: ../../install_steps_interactive.pm_.c:1308
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -6366,7 +6439,7 @@ msgstr ""
"\n"
"Segur que voleu sortir ara?"
-#: ../../install_steps_interactive.pm_.c:1334
+#: ../../install_steps_interactive.pm_.c:1319
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
@@ -6399,15 +6472,15 @@ msgstr ""
"l'últim capítol d'instal·lació de la Guia Oficial de l'Usuari del\n"
"Mandrake Linux."
-#: ../../install_steps_interactive.pm_.c:1347
+#: ../../install_steps_interactive.pm_.c:1332
msgid "http://www.mandrakelinux.com/en/90errata.php3"
msgstr "http://www.mandrakelinux.com/en/90errata.php3"
-#: ../../install_steps_interactive.pm_.c:1352
+#: ../../install_steps_interactive.pm_.c:1337
msgid "Generate auto install floppy"
msgstr "Genera un disquet per a la instal·lació automàtica"
-#: ../../install_steps_interactive.pm_.c:1354
+#: ../../install_steps_interactive.pm_.c:1339
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -6422,15 +6495,15 @@ msgstr ""
"\n"
"Potser preferireu repetir la instal·lació.\n"
-#: ../../install_steps_interactive.pm_.c:1359
+#: ../../install_steps_interactive.pm_.c:1344
msgid "Automated"
msgstr "Automàtica"
-#: ../../install_steps_interactive.pm_.c:1359
+#: ../../install_steps_interactive.pm_.c:1344
msgid "Replay"
msgstr "Repeteix"
-#: ../../install_steps_interactive.pm_.c:1362
+#: ../../install_steps_interactive.pm_.c:1347
msgid "Save packages selection"
msgstr "Desa la selecció de paquets"
@@ -6439,7 +6512,8 @@ msgstr "Desa la selecció de paquets"
msgid "Mandrake Linux Installation %s"
msgstr "Instal·lació del Mandrake Linux %s"
-#: ../../install_steps_newt.pm_.c:34
+#. -PO This string must fit in a 80-char wide text screen
+#: ../../install_steps_newt.pm_.c:35
msgid ""
" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
msgstr ""
@@ -6458,23 +6532,23 @@ msgstr "El consolehelper no hi és"
msgid "Choose a file"
msgstr "Trieu un fitxer"
-#: ../../interactive.pm_.c:317
+#: ../../interactive.pm_.c:320
msgid "Advanced"
msgstr "Avançat"
-#: ../../interactive.pm_.c:318
+#: ../../interactive.pm_.c:321
msgid "Basic"
msgstr "Basic"
-#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:155
-#: ../../printerdrake.pm_.c:1990
+#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:158
+#: ../../printerdrake.pm_.c:2124
msgid "<- Previous"
msgstr "<- Anterior"
#
#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
-#: ../../standalone/drakbackup_.c:3464 ../../standalone/drakbackup_.c:3491
-#: ../../standalone/drakbackup_.c:3517
+#: ../../standalone/drakbackup_.c:4112 ../../standalone/drakbackup_.c:4139
+#: ../../standalone/drakbackup_.c:4169 ../../standalone/drakbackup_.c:4195
msgid "Next"
msgstr "Següent"
@@ -6548,387 +6622,387 @@ msgstr ""
msgid "Re-submit"
msgstr "Re-envieu"
-#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:152 ../../keyboard.pm_.c:187
msgid "Czech (QWERTZ)"
msgstr "Txec (QWERTZ)"
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:153 ../../keyboard.pm_.c:189
msgid "German"
msgstr "Alemany"
-#: ../../keyboard.pm_.c:175
+#: ../../keyboard.pm_.c:154
msgid "Dvorak"
msgstr "Dvorak"
-#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:218
+#: ../../keyboard.pm_.c:155 ../../keyboard.pm_.c:197
msgid "Spanish"
msgstr "Espanyol"
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:156 ../../keyboard.pm_.c:198
msgid "Finnish"
msgstr "Finès"
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:220
+#: ../../keyboard.pm_.c:157 ../../keyboard.pm_.c:199
msgid "French"
msgstr "Francès"
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:158 ../../keyboard.pm_.c:231
msgid "Norwegian"
msgstr "Noruec"
-#: ../../keyboard.pm_.c:180
+#: ../../keyboard.pm_.c:159
msgid "Polish"
msgstr "Polonès"
-#: ../../keyboard.pm_.c:181 ../../keyboard.pm_.c:260
+#: ../../keyboard.pm_.c:160 ../../keyboard.pm_.c:239
msgid "Russian"
msgstr "Rus"
-#: ../../keyboard.pm_.c:183 ../../keyboard.pm_.c:262
+#: ../../keyboard.pm_.c:162 ../../keyboard.pm_.c:241
msgid "Swedish"
msgstr "Suec"
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:278
+#: ../../keyboard.pm_.c:163 ../../keyboard.pm_.c:257
msgid "UK keyboard"
msgstr "Teclat RU"
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:279
+#: ../../keyboard.pm_.c:164 ../../keyboard.pm_.c:258
msgid "US keyboard"
msgstr "Teclat EU"
#
-#: ../../keyboard.pm_.c:187
+#: ../../keyboard.pm_.c:166
msgid "Albanian"
msgstr "Albanès"
-#: ../../keyboard.pm_.c:188
+#: ../../keyboard.pm_.c:167
msgid "Armenian (old)"
msgstr "Armeni (antic)"
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:168
msgid "Armenian (typewriter)"
msgstr "Armeni (màquina d'escriure)"
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:169
msgid "Armenian (phonetic)"
msgstr "Armeni (fonètic)"
-#: ../../keyboard.pm_.c:195
+#: ../../keyboard.pm_.c:174
msgid "Azerbaidjani (latin)"
msgstr "Azerbaidjanès (llatí)"
-#: ../../keyboard.pm_.c:197
+#: ../../keyboard.pm_.c:176
msgid "Belgian"
msgstr "Belga"
-#: ../../keyboard.pm_.c:198
+#: ../../keyboard.pm_.c:177
#, fuzzy
msgid "Bengali"
msgstr "habilita"
#
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:178
msgid "Bulgarian (phonetic)"
msgstr "Búlgar (fonètic)"
#
-#: ../../keyboard.pm_.c:200
+#: ../../keyboard.pm_.c:179
msgid "Bulgarian (BDS)"
msgstr "Búlgar (BDS)"
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:180
msgid "Brazilian (ABNT-2)"
msgstr "Brasiler (ABNT-2)"
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:183
#, fuzzy
msgid "Bosnian"
msgstr "Estonià"
-#: ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:184
msgid "Belarusian"
msgstr "Bielorús"
-#: ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:185
msgid "Swiss (German layout)"
msgstr "Suís (disposició alemanya)"
-#: ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:186
msgid "Swiss (French layout)"
msgstr "Suís (disposició francesa)"
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:188
msgid "Czech (QWERTY)"
msgstr "Txec (QWERTY)"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:190
msgid "German (no dead keys)"
msgstr "Alemany (sense tecles inoperatives)"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:191
msgid "Devanagari"
msgstr ""
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:192
msgid "Danish"
msgstr "Danès"
-#: ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:193
msgid "Dvorak (US)"
msgstr "Dvorak (EU)"
-#: ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:194
msgid "Dvorak (Norwegian)"
msgstr "Dvorak (Noruec)"
#
-#: ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:195
msgid "Dvorak (Swedish)"
msgstr "Dvorak (Suec)"
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:196
msgid "Estonian"
msgstr "Estonià"
-#: ../../keyboard.pm_.c:221
+#: ../../keyboard.pm_.c:200
msgid "Georgian (\"Russian\" layout)"
msgstr "Georgià (disposició \"russa\")"
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:201
msgid "Georgian (\"Latin\" layout)"
msgstr "Georgià (disposició \"llatina\")"
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:202
msgid "Greek"
msgstr "Grec"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:203
msgid "Gujarati"
msgstr ""
-#: ../../keyboard.pm_.c:225
+#: ../../keyboard.pm_.c:204
msgid "Gurmukhi"
msgstr ""
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:205
msgid "Hungarian"
msgstr "Hongarès"
-#: ../../keyboard.pm_.c:227
+#: ../../keyboard.pm_.c:206
msgid "Croatian"
msgstr "Croata"
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:207
msgid "Israeli"
msgstr "Israelià"
-#: ../../keyboard.pm_.c:229
+#: ../../keyboard.pm_.c:208
msgid "Israeli (Phonetic)"
msgstr "Israelià (fonètic)"
-#: ../../keyboard.pm_.c:230
+#: ../../keyboard.pm_.c:209
msgid "Iranian"
msgstr "Iranià"
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:210
msgid "Icelandic"
msgstr "Islandès"
-#: ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:211
msgid "Italian"
msgstr "Italià"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:212
msgid "Inuktitut"
msgstr ""
-#: ../../keyboard.pm_.c:234
+#: ../../keyboard.pm_.c:213
msgid "Japanese 106 keys"
msgstr "Japonès de 106 tecles"
-#: ../../keyboard.pm_.c:237
+#: ../../keyboard.pm_.c:216
msgid "Korean keyboard"
msgstr "Teclat coreà"
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:217
msgid "Latin American"
msgstr "Espanyol sud-americà"
#
-#: ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:218
#, fuzzy
msgid "Laotian"
msgstr "Letó"
-#: ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:219
msgid "Lithuanian AZERTY (old)"
msgstr "Lituà AZERTY (antic)"
-#: ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:221
msgid "Lithuanian AZERTY (new)"
msgstr "Lituà AZERTY (nou)"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:222
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Lituà \"fila de números\" QWERTY"
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:223
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "Lituà \"fonètic\" QWERTY"
#
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:224
msgid "Latvian"
msgstr "Letó"
-#: ../../keyboard.pm_.c:246
+#: ../../keyboard.pm_.c:225
msgid "Macedonian"
msgstr "Macedoni"
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:226
msgid "Myanmar (Burmese)"
msgstr ""
#
-#: ../../keyboard.pm_.c:248
+#: ../../keyboard.pm_.c:227
#, fuzzy
msgid "Mongolian (cyrillic)"
msgstr "Serbi (ciríl·lic)"
-#: ../../keyboard.pm_.c:249
+#: ../../keyboard.pm_.c:228
msgid "Maltese (UK)"
msgstr ""
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:229
msgid "Maltese (US)"
msgstr ""
-#: ../../keyboard.pm_.c:251
+#: ../../keyboard.pm_.c:230
msgid "Dutch"
msgstr "Holandès"
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:232
msgid "Polish (qwerty layout)"
msgstr "Polonès (disposició qwerty)"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:233
msgid "Polish (qwertz layout)"
msgstr "Polonès (disposició qwertz)"
-#: ../../keyboard.pm_.c:255
+#: ../../keyboard.pm_.c:234
msgid "Portuguese"
msgstr "Portuguès"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:235
msgid "Canadian (Quebec)"
msgstr "Canadenc (Quebec)"
#
-#: ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:237
msgid "Romanian (qwertz)"
msgstr "Romanès (qwertz)"
#
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:238
msgid "Romanian (qwerty)"
msgstr "Romanès (qwerty)"
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:240
msgid "Russian (Yawerty)"
msgstr "Rus (Yawerty)"
-#: ../../keyboard.pm_.c:263
+#: ../../keyboard.pm_.c:242
msgid "Slovenian"
msgstr "Eslovè"
-#: ../../keyboard.pm_.c:264
+#: ../../keyboard.pm_.c:243
msgid "Slovakian (QWERTZ)"
msgstr "Eslovac (QWERTZ)"
-#: ../../keyboard.pm_.c:265
+#: ../../keyboard.pm_.c:244
msgid "Slovakian (QWERTY)"
msgstr "Eslovac (QWERTY)"
#
-#: ../../keyboard.pm_.c:267
+#: ../../keyboard.pm_.c:246
msgid "Serbian (cyrillic)"
msgstr "Serbi (ciríl·lic)"
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:248
msgid "Tamil (Unicode)"
msgstr ""
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:249
msgid "Tamil (TSCII)"
msgstr ""
-#: ../../keyboard.pm_.c:271
+#: ../../keyboard.pm_.c:250
msgid "Thai keyboard"
msgstr "Teclat tai"
#
-#: ../../keyboard.pm_.c:273
+#: ../../keyboard.pm_.c:252
msgid "Tajik keyboard"
msgstr "Teclat tadjik"
-#: ../../keyboard.pm_.c:274
+#: ../../keyboard.pm_.c:253
msgid "Turkish (traditional \"F\" model)"
msgstr "Turc (tradicional, model \"F\")"
-#: ../../keyboard.pm_.c:275
+#: ../../keyboard.pm_.c:254
msgid "Turkish (modern \"Q\" model)"
msgstr "Turc (modern, model \"Q\")"
-#: ../../keyboard.pm_.c:277
+#: ../../keyboard.pm_.c:256
msgid "Ukrainian"
msgstr "Ucraïnès"
-#: ../../keyboard.pm_.c:280
+#: ../../keyboard.pm_.c:259
msgid "US keyboard (international)"
msgstr "Teclat EU (internacional)"
-#: ../../keyboard.pm_.c:281
+#: ../../keyboard.pm_.c:260
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "Vietnamita \"fila numèrica\" QWERTY"
#
-#: ../../keyboard.pm_.c:282
+#: ../../keyboard.pm_.c:261
msgid "Yugoslavian (latin)"
msgstr "Iugoslau (llatí)"
-#: ../../keyboard.pm_.c:289
+#: ../../keyboard.pm_.c:268
msgid "Right Alt key"
msgstr "Tecla d'alternativa dreta"
-#: ../../keyboard.pm_.c:290
+#: ../../keyboard.pm_.c:269
msgid "Both Shift keys simultaneously"
msgstr "Les dues tecles de majúscules simultàniament"
-#: ../../keyboard.pm_.c:291
+#: ../../keyboard.pm_.c:270
msgid "Control and Shift keys simultaneously"
msgstr "Tecles de Control i de majúscules simultàniament"
-#: ../../keyboard.pm_.c:292
+#: ../../keyboard.pm_.c:271
msgid "CapsLock key"
msgstr "Tecla de fixació de majúscules"
-#: ../../keyboard.pm_.c:293
+#: ../../keyboard.pm_.c:272
msgid "Ctrl and Alt keys simultaneously"
msgstr "Tecles de Control i alternativa simultàniament"
-#: ../../keyboard.pm_.c:294
+#: ../../keyboard.pm_.c:273
msgid "Alt and Shift keys simultaneously"
msgstr "Tecles alternativa i de majúscules simultàniament"
-#: ../../keyboard.pm_.c:295
+#: ../../keyboard.pm_.c:274
msgid "\"Menu\" key"
msgstr "\"Menú\" tecles"
-#: ../../keyboard.pm_.c:296
+#: ../../keyboard.pm_.c:275
msgid "Left \"Windows\" key"
msgstr "Tecla de \"Windows\" Esquerra"
-#: ../../keyboard.pm_.c:297
+#: ../../keyboard.pm_.c:276
msgid "Right \"Windows\" key"
msgstr "Tecla de \"Windows\" Dreta"
@@ -6988,11 +7062,11 @@ msgstr "Rató de bola PS2 genèric"
msgid "GlidePoint"
msgstr "GlidePoint"
-#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:63
+#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:65
msgid "Kensington Thinking Mouse"
msgstr "Kensington Thinking Mouse"
-#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:59
+#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:61
msgid "Genius NetMouse"
msgstr "Genius NetMouse"
@@ -7000,115 +7074,125 @@ msgstr "Genius NetMouse"
msgid "Genius NetScroll"
msgstr "Genius NetScroll"
-#: ../../mouse.pm_.c:43 ../../mouse.pm_.c:68
+#: ../../mouse.pm_.c:39 ../../mouse.pm_.c:48
+#, fuzzy
+msgid "Microsoft Explorer"
+msgstr "Microsoft IntelliMouse"
+
+#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:70
msgid "1 button"
msgstr "1 botó"
-#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:51
+#: ../../mouse.pm_.c:45 ../../mouse.pm_.c:53
msgid "Generic 2 Button Mouse"
msgstr "Generic 2 Button Mouse"
-#: ../../mouse.pm_.c:46
+#: ../../mouse.pm_.c:47
msgid "Wheel"
msgstr "De bola"
-#: ../../mouse.pm_.c:49
+#: ../../mouse.pm_.c:51
msgid "serial"
msgstr "sèrie"
-#: ../../mouse.pm_.c:52
+#: ../../mouse.pm_.c:54
msgid "Generic 3 Button Mouse"
msgstr "Generic 3 Button Mouse"
-#: ../../mouse.pm_.c:53
+#: ../../mouse.pm_.c:55
msgid "Microsoft IntelliMouse"
msgstr "Microsoft IntelliMouse"
-#: ../../mouse.pm_.c:54
+#: ../../mouse.pm_.c:56
msgid "Logitech MouseMan"
msgstr "Logitech MouseMan"
-#: ../../mouse.pm_.c:55
+#: ../../mouse.pm_.c:57
msgid "Mouse Systems"
msgstr "Mouse Systems"
-#: ../../mouse.pm_.c:57
+#: ../../mouse.pm_.c:59
msgid "Logitech CC Series"
msgstr "Logitech CC Series"
-#: ../../mouse.pm_.c:58
+#: ../../mouse.pm_.c:60
msgid "Logitech MouseMan+/FirstMouse+"
msgstr "Logitech MouseMan+/FirstMouse+"
-#: ../../mouse.pm_.c:60
+#: ../../mouse.pm_.c:62
msgid "MM Series"
msgstr "MM Series"
-#: ../../mouse.pm_.c:61
+#: ../../mouse.pm_.c:63
msgid "MM HitTablet"
msgstr "MM HitTablet"
-#: ../../mouse.pm_.c:62
+#: ../../mouse.pm_.c:64
msgid "Logitech Mouse (serial, old C7 type)"
msgstr "Logitech Mouse (sèrie, tipus C7 antic)"
-#: ../../mouse.pm_.c:66
+#: ../../mouse.pm_.c:68
msgid "busmouse"
msgstr "busmouse"
-#: ../../mouse.pm_.c:69
+#: ../../mouse.pm_.c:71
msgid "2 buttons"
msgstr "2 botons"
-#: ../../mouse.pm_.c:70
+#: ../../mouse.pm_.c:72
msgid "3 buttons"
msgstr "3 botons"
-#: ../../mouse.pm_.c:73
+#: ../../mouse.pm_.c:75
msgid "none"
msgstr "cap"
-#: ../../mouse.pm_.c:75
+#: ../../mouse.pm_.c:77
msgid "No mouse"
msgstr "Cap ratolí"
-#: ../../mouse.pm_.c:445
+#: ../../mouse.pm_.c:482
msgid "Please test the mouse"
msgstr "Si us plau, comproveu el ratolí."
-#: ../../mouse.pm_.c:446
+#: ../../mouse.pm_.c:483
msgid "To activate the mouse,"
msgstr "Per activar el ratolí,"
-#: ../../mouse.pm_.c:447
+#: ../../mouse.pm_.c:484
msgid "MOVE YOUR WHEEL!"
msgstr "MOVEU LA BOLA!"
-#: ../../my_gtk.pm_.c:156
+#: ../../my_gtk.pm_.c:64
+#, fuzzy
+msgid "-adobe-utopia-regular-r-*-*-25-*-*-*-p-*-iso8859-*,*-r-*"
+msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
+
+#: ../../my_gtk.pm_.c:159
msgid "Finish"
msgstr "Finès"
-#: ../../my_gtk.pm_.c:156 ../../printerdrake.pm_.c:1992
+#: ../../my_gtk.pm_.c:159 ../../printerdrake.pm_.c:2126
msgid "Next ->"
msgstr "Següent ->"
-#: ../../my_gtk.pm_.c:284
+#: ../../my_gtk.pm_.c:287
msgid "Is this correct?"
msgstr "Això és correcte?"
-#: ../../my_gtk.pm_.c:356 ../../services.pm_.c:222
+#: ../../my_gtk.pm_.c:359 ../../services.pm_.c:222
msgid "Info"
msgstr "Informació"
-#: ../../my_gtk.pm_.c:377
+#: ../../my_gtk.pm_.c:380
msgid "Expand Tree"
msgstr "Expandeix l'arbre"
-#: ../../my_gtk.pm_.c:378
+#: ../../my_gtk.pm_.c:381
msgid "Collapse Tree"
msgstr "Redueix l'arbre"
-#: ../../my_gtk.pm_.c:379
+#: ../../my_gtk.pm_.c:382
msgid "Toggle between flat and group sorted"
msgstr "Commuta entre pla i ordenat per grups"
@@ -7146,6 +7230,77 @@ msgstr "utilitza pppoe"
msgid "use pptp"
msgstr "utilitza pptp"
+#: ../../network/drakfirewall.pm_.c:12
+#, fuzzy
+msgid "Web Server"
+msgstr "Servidor"
+
+#: ../../network/drakfirewall.pm_.c:17
+#, fuzzy
+msgid "Domain Name Server"
+msgstr "Nom de domini"
+
+#
+#: ../../network/drakfirewall.pm_.c:32
+#, fuzzy
+msgid "Mail Server"
+msgstr "Servidor de base de dades"
+
+#
+#: ../../network/drakfirewall.pm_.c:37
+#, fuzzy
+msgid "POP and IMAP Server"
+msgstr "Servidor LDAP"
+
+#: ../../network/drakfirewall.pm_.c:111
+#, fuzzy
+msgid "No network card"
+msgstr "no s'ha trobat cap targeta de xarxa"
+
+#: ../../network/drakfirewall.pm_.c:129
+#, fuzzy
+msgid ""
+"drakfirewall configurator\n"
+"\n"
+"This configures a personal firewall for this Mandrake Linux machine.\n"
+"For a powerful dedicated firewall solution, please look to the\n"
+"specialized MandrakeSecurity Firewall distribution."
+msgstr ""
+"Configurador del tinyfirewall\n"
+"\n"
+"Amb això es configura un tallafocs personal per a aquest ordinador Linux "
+"Mandrake.\n"
+"Per a una potent solució de tallafocs dedicada, consulteu si us plau la "
+"distribució especialitzada MandrakeSecurity Firewall."
+
+#: ../../network/drakfirewall.pm_.c:147
+msgid "Which services would you like to allow the Internet to connect to?"
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:148
+msgid ""
+"You can enter miscellaneous ports. \n"
+"Valid examples are: 139/tcp 139/udp.\n"
+"Have a look at /etc/services for information."
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:154
+#, c-format
+msgid ""
+"Invalid port given: %s.\n"
+"The proper format is \"port/tcp\" or \"port/udp\", \n"
+"where port is between 1 and 65535."
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:162
+msgid "Everything (no firewall)"
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:164
+#, fuzzy
+msgid "Other ports"
+msgstr "Ports de comprovació"
+
#: ../../network/ethernet.pm_.c:37
msgid ""
"Which dhcp client do you want to use?\n"
@@ -7162,7 +7317,7 @@ msgstr ""
"No s'ha detectat cap adaptador de xarxa ethernet al sistema.\n"
"No puc configurar aquest tipus de connexió."
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:247
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:240
msgid "Choose the network interface"
msgstr "Escolliu la interfície de xarxa"
@@ -7177,7 +7332,7 @@ msgstr ""
msgid "no network card found"
msgstr "no s'ha trobat cap targeta de xarxa"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:366
msgid "Configuring network"
msgstr "S'està configurant la xarxa"
@@ -7194,7 +7349,7 @@ msgstr ""
"El nom ha de ser complet,\n"
"com ara ``mybox.mylab.myco.com''."
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:370
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:371
msgid "Host name"
msgstr "Nom de l'ordinador central"
@@ -7508,13 +7663,13 @@ msgstr "Escolliu el perfil per configurar"
msgid "Use auto detection"
msgstr "Utilitza la detecció automàtica"
-#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2930
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:3151
#: ../../standalone/drakconnect_.c:274 ../../standalone/drakconnect_.c:277
#: ../../standalone/drakfloppy_.c:145
msgid "Expert Mode"
msgstr "Mode expert"
-#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:283
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:386
msgid "Detecting devices..."
msgstr "S'estan detectant els dispositius..."
@@ -7687,11 +7842,11 @@ msgstr "IP automàtic"
msgid "Start at boot"
msgstr "Inicia en l'arrencada"
-#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:753
+#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:860
msgid "IP address should be in format 1.2.3.4"
msgstr "L'adreça IP ha d'estar amb el format 1.2.3.4"
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:367
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -7703,43 +7858,55 @@ msgstr ""
"``mybox.mylab.myco.com''.\n"
"També podeu introduir l'adreça IP de la passarel·la, si en teniu una"
-#: ../../network/network.pm_.c:371
+#: ../../network/network.pm_.c:372
msgid "DNS server"
msgstr "Servidor DNS"
-#: ../../network/network.pm_.c:372
+#: ../../network/network.pm_.c:373
#, c-format
msgid "Gateway (e.g. %s)"
msgstr "Passarel·la(Gateway) (e.g. %s)"
-#: ../../network/network.pm_.c:374
+#: ../../network/network.pm_.c:375
msgid "Gateway device"
msgstr "Dispositiu de la passarel·la"
-#: ../../network/network.pm_.c:386
+#: ../../network/network.pm_.c:387
msgid "Proxies configuration"
msgstr "Configuració dels proxys"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:388
msgid "HTTP proxy"
msgstr "Proxy HTTP"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:389
msgid "FTP proxy"
msgstr "Proxy FTP"
-#: ../../network/network.pm_.c:389
+#: ../../network/network.pm_.c:390
msgid "Track network card id (useful for laptops)"
msgstr "Vigila id de la targera de xarxa(d'utilitat per a laptops)"
-#: ../../network/network.pm_.c:392
+#: ../../network/network.pm_.c:393
msgid "Proxy should be http://..."
msgstr "El proxy ha de ser http://..."
-#: ../../network/network.pm_.c:393
+#: ../../network/network.pm_.c:394
msgid "Proxy should be ftp://..."
msgstr "El proxy ha de ser ftp://..."
+#: ../../network/shorewall.pm_.c:24
+msgid "Firewalling configuration detected!"
+msgstr "S'ha detectat la configuració del sistema de tallafocs!"
+
+#: ../../network/shorewall.pm_.c:25
+msgid ""
+"Warning! An existing firewalling configuration has been detected. You may "
+"need some manual fix after installation."
+msgstr ""
+"Atenció! S'ha detectat una configuració existent del sistema de tallafocs. "
+"Potser us caldrà fer algun ajustament manual després de la instal·lació."
+
#: ../../network/tools.pm_.c:41
msgid "Internet configuration"
msgstr "Configuració d'Internet"
@@ -7848,15 +8015,15 @@ msgstr "Contrasenya del compte"
msgid "United Kingdom"
msgstr "Regne Unit"
-#: ../../partition_table.pm_.c:606
+#: ../../partition_table.pm_.c:602
msgid "mount failed: "
msgstr "ha fallat el muntatge: "
-#: ../../partition_table.pm_.c:670
+#: ../../partition_table.pm_.c:666
msgid "Extended partition not supported on this platform"
msgstr "Aquesta plataforma no suporta particions esteses"
-#: ../../partition_table.pm_.c:688
+#: ../../partition_table.pm_.c:684
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
@@ -7866,21 +8033,21 @@ msgstr ""
"L'única solució és moure les particions primàries per fer que el forat quedi "
"contigu a les particions ampliades"
-#: ../../partition_table.pm_.c:778
+#: ../../partition_table.pm_.c:774
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "Ha fallat la restauració des del fitxer %s: %s"
-#: ../../partition_table.pm_.c:780
+#: ../../partition_table.pm_.c:776
msgid "Bad backup file"
msgstr "Fitxer de còpia de seguretat incorrecte"
-#: ../../partition_table.pm_.c:802
+#: ../../partition_table.pm_.c:798
#, c-format
msgid "Error writing to file %s"
msgstr "S'ha produït un error en escriure al fitxer %s"
-#: ../../partition_table/raw.pm_.c:187
+#: ../../partition_table/raw.pm_.c:189
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
@@ -7926,157 +8093,161 @@ msgstr "LPD - Line Printer Daemon"
msgid "PDQ - Print, Don't Queue"
msgstr "PDQ - Print, Don't Queue"
-#: ../../printer.pm_.c:35 ../../printer.pm_.c:854
+#: ../../printer.pm_.c:34 ../../printer.pm_.c:1125
msgid "CUPS"
msgstr "CUPS"
-#: ../../printer.pm_.c:36
+#: ../../printer.pm_.c:35
msgid "LPRng"
msgstr "LPRng"
-#: ../../printer.pm_.c:37
+#: ../../printer.pm_.c:36
msgid "LPD"
msgstr "LPD"
-#: ../../printer.pm_.c:38
+#: ../../printer.pm_.c:37
msgid "PDQ"
msgstr "PDQ"
-#: ../../printer.pm_.c:50
+#: ../../printer.pm_.c:49
msgid "Local printer"
msgstr "Impressora local"
-#: ../../printer.pm_.c:51
+#: ../../printer.pm_.c:50
msgid "Remote printer"
msgstr "Impressora remota"
#
-#: ../../printer.pm_.c:52
+#: ../../printer.pm_.c:51
msgid "Printer on remote CUPS server"
msgstr "Impressora en servidor remot CUPS"
#
-#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:776
+#: ../../printer.pm_.c:52 ../../printerdrake.pm_.c:883
msgid "Printer on remote lpd server"
msgstr "Impressora en servidor lpd remot"
-#: ../../printer.pm_.c:54
+#: ../../printer.pm_.c:53
msgid "Network printer (TCP/Socket)"
msgstr "Impressora de xarxa (TCP/Socket)"
#
-#: ../../printer.pm_.c:55
+#: ../../printer.pm_.c:54
msgid "Printer on SMB/Windows 95/98/NT server"
msgstr "Impressora de SMB/Windows 95/98/NT Server"
#
-#: ../../printer.pm_.c:56
+#: ../../printer.pm_.c:55
msgid "Printer on NetWare server"
msgstr "Impressora en Servidor NetWare"
#
-#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:780
+#: ../../printer.pm_.c:56 ../../printerdrake.pm_.c:887
msgid "Enter a printer device URI"
msgstr "Entreu un Dispositiu URI d'impressora"
-#: ../../printer.pm_.c:58
+#: ../../printer.pm_.c:57
msgid "Pipe job into a command"
msgstr "Conduir el treball cap a una ordre"
-#: ../../printer.pm_.c:487 ../../printer.pm_.c:678 ../../printer.pm_.c:1000
-#: ../../printerdrake.pm_.c:2070 ../../printerdrake.pm_.c:3189
+#: ../../printer.pm_.c:324 ../../printer.pm_.c:366 ../../printer.pm_.c:533
+msgid "Unknown Model"
+msgstr "Model desconegut"
+
+#: ../../printer.pm_.c:735 ../../printer.pm_.c:926 ../../printer.pm_.c:1318
+#: ../../printerdrake.pm_.c:2260 ../../printerdrake.pm_.c:3414
msgid "Unknown model"
msgstr "Model desconegut"
#
-#: ../../printer.pm_.c:515
+#: ../../printer.pm_.c:763
msgid "Local Printers"
msgstr "Impressores locals"
#
-#: ../../printer.pm_.c:517 ../../printer.pm_.c:855
+#: ../../printer.pm_.c:765 ../../printer.pm_.c:1126
msgid "Remote Printers"
msgstr "Impressores remotes"
-#: ../../printer.pm_.c:524 ../../printerdrake.pm_.c:301
+#: ../../printer.pm_.c:772 ../../printerdrake.pm_.c:404
#, c-format
msgid " on parallel port \\/*%s"
msgstr " en port paral·lel \\/*%s"
-#: ../../printer.pm_.c:527 ../../printerdrake.pm_.c:303
+#: ../../printer.pm_.c:775 ../../printerdrake.pm_.c:406
#, c-format
msgid ", USB printer \\/*%s"
msgstr ", impressora USB \\/*%s"
-#: ../../printer.pm_.c:532
+#: ../../printer.pm_.c:780
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ", dispositiu multi-function en port paral·lel \\/*%s"
-#: ../../printer.pm_.c:535
+#: ../../printer.pm_.c:783
msgid ", multi-function device on USB"
msgstr ", dispositiu multi-function en USB"
-#: ../../printer.pm_.c:537
+#: ../../printer.pm_.c:785
msgid ", multi-function device on HP JetDirect"
msgstr ", dispositiu multi-function en HP JetDirect"
-#: ../../printer.pm_.c:539
+#: ../../printer.pm_.c:787
msgid ", multi-function device"
msgstr ", dispositiu multi-function"
-#: ../../printer.pm_.c:542
+#: ../../printer.pm_.c:790
#, c-format
msgid ", printing to %s"
msgstr ", imprimint a %s"
-#: ../../printer.pm_.c:544
+#: ../../printer.pm_.c:792
#, c-format
msgid " on LPD server \"%s\", printer \"%s\""
msgstr " en servidor LPD \"%s\", impressora \"%s\""
-#: ../../printer.pm_.c:546
+#: ../../printer.pm_.c:794
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ", servidor TCP/IP \"%s\", port %s"
-#: ../../printer.pm_.c:550
+#: ../../printer.pm_.c:798
#, c-format
msgid " on SMB/Windows server \"%s\", share \"%s\""
msgstr " en Servidor Windows \"%s\", recurs compartit \"%s\""
-#: ../../printer.pm_.c:554
+#: ../../printer.pm_.c:802
#, c-format
msgid " on Novell server \"%s\", printer \"%s\""
msgstr " en Servidor Novell \"%s\", impressora \"%s\""
-#: ../../printer.pm_.c:556
+#: ../../printer.pm_.c:804
#, c-format
msgid ", using command %s"
msgstr ", utilitzant l'ordre %s"
-#: ../../printer.pm_.c:675 ../../printerdrake.pm_.c:1540
+#: ../../printer.pm_.c:923 ../../printerdrake.pm_.c:1656
msgid "Raw printer (No driver)"
msgstr "Impressora en cru ('Raw') (Cap controlador)"
-#: ../../printer.pm_.c:824
+#: ../../printer.pm_.c:1095
#, c-format
msgid "(on %s)"
msgstr "(en %s)"
-#: ../../printer.pm_.c:826
+#: ../../printer.pm_.c:1097
msgid "(on this machine)"
msgstr "(en aquest ordinador)"
-#: ../../printer.pm_.c:851
+#: ../../printer.pm_.c:1122
#, c-format
msgid "On CUPS server \"%s\""
msgstr "en servidor CUPS \"%s\""
-#: ../../printer.pm_.c:857 ../../printerdrake.pm_.c:2851
-#: ../../printerdrake.pm_.c:2862 ../../printerdrake.pm_.c:3078
-#: ../../printerdrake.pm_.c:3130 ../../printerdrake.pm_.c:3156
-#: ../../printerdrake.pm_.c:3326 ../../printerdrake.pm_.c:3328
+#: ../../printer.pm_.c:1128 ../../printerdrake.pm_.c:3071
+#: ../../printerdrake.pm_.c:3082 ../../printerdrake.pm_.c:3303
+#: ../../printerdrake.pm_.c:3355 ../../printerdrake.pm_.c:3381
+#: ../../printerdrake.pm_.c:3556 ../../printerdrake.pm_.c:3558
msgid " (Default)"
msgstr " (Predeterminat)"
@@ -8104,12 +8275,12 @@ msgid "Printer auto-detection (Local, TCP/Socket, and SMB printers)"
msgstr ""
#
-#: ../../printerdrake.pm_.c:84 ../../printerdrake.pm_.c:2914
+#: ../../printerdrake.pm_.c:84 ../../printerdrake.pm_.c:3135
msgid "CUPS configuration"
msgstr "Configuració de CUPS"
#
-#: ../../printerdrake.pm_.c:85 ../../printerdrake.pm_.c:2915
+#: ../../printerdrake.pm_.c:85 ../../printerdrake.pm_.c:3136
msgid "Specify CUPS server"
msgstr "Especifiqueu Servidor CUPS"
@@ -8155,7 +8326,7 @@ msgid "The IP address should look like 192.168.1.20"
msgstr "L'adreça IP ha d'estar amb el format 192.168.1.20"
#
-#: ../../printerdrake.pm_.c:95 ../../printerdrake.pm_.c:987
+#: ../../printerdrake.pm_.c:95 ../../printerdrake.pm_.c:1094
msgid "The port number should be an integer!"
msgstr "El número de port ha de ser enter!"
@@ -8163,7 +8334,7 @@ msgstr "El número de port ha de ser enter!"
msgid "CUPS server IP"
msgstr "IP del servidor CUPS"
-#: ../../printerdrake.pm_.c:103 ../../printerdrake.pm_.c:1007
+#: ../../printerdrake.pm_.c:103 ../../printerdrake.pm_.c:1114
msgid "Port"
msgstr "Port"
@@ -8172,13 +8343,135 @@ msgstr "Port"
msgid "Automatic CUPS configuration"
msgstr "Configuració Automàtica de CUPS"
+#: ../../printerdrake.pm_.c:177 ../../printerdrake.pm_.c:247
+#: ../../printerdrake.pm_.c:1529 ../../printerdrake.pm_.c:1533
+#: ../../printerdrake.pm_.c:1651 ../../printerdrake.pm_.c:2203
+#: ../../printerdrake.pm_.c:2356 ../../printerdrake.pm_.c:2415
+#: ../../printerdrake.pm_.c:2488 ../../printerdrake.pm_.c:2509
+#: ../../printerdrake.pm_.c:2699 ../../printerdrake.pm_.c:2740
+#: ../../printerdrake.pm_.c:2745 ../../printerdrake.pm_.c:2779
+#: ../../printerdrake.pm_.c:2784 ../../printerdrake.pm_.c:2821
+#: ../../printerdrake.pm_.c:2874 ../../printerdrake.pm_.c:2894
+#: ../../printerdrake.pm_.c:2908 ../../printerdrake.pm_.c:2942
+#: ../../printerdrake.pm_.c:2988 ../../printerdrake.pm_.c:3006
+#: ../../printerdrake.pm_.c:3095 ../../printerdrake.pm_.c:3169
+#: ../../printerdrake.pm_.c:3471 ../../printerdrake.pm_.c:3526
+#: ../../printerdrake.pm_.c:3579 ../../standalone/printerdrake_.c:57
+msgid "Printerdrake"
+msgstr "Printerdrake"
+
+#
+#: ../../printerdrake.pm_.c:178
+#, fuzzy
+msgid "Checking your system..."
+msgstr "Reiniciant el sistema d'impressió..."
+
+#: ../../printerdrake.pm_.c:186
+msgid ""
+"There are no printers found which are directly connected to your machine"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:198
+#, fuzzy
+msgid ""
+"The following printers\n"
+"\n"
+msgstr "Ara s'eliminaran els paquets següents"
+
+#: ../../printerdrake.pm_.c:199
+#, fuzzy
+msgid ""
+"The following printer\n"
+"\n"
+msgstr "Ara s'eliminaran els paquets següents"
+
+#: ../../printerdrake.pm_.c:201
+msgid ""
+"\n"
+"and one unknown printer are "
+msgstr ""
+
+#: ../../printerdrake.pm_.c:203
+#, c-format
+msgid ""
+"\n"
+"and %d unknown printers are "
+msgstr ""
+
+#: ../../printerdrake.pm_.c:207
+msgid ""
+"\n"
+"are "
+msgstr ""
+
+#: ../../printerdrake.pm_.c:208
+msgid ""
+"\n"
+"is "
+msgstr ""
+
+#
+#: ../../printerdrake.pm_.c:210
+#, fuzzy
+msgid "directly connected to your system"
+msgstr "Copiar les fonts en el vostre sistema"
+
+#: ../../printerdrake.pm_.c:213
+msgid ""
+"\n"
+"There is one unknown printer directly connected to your system"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:215
+#, c-format
+msgid ""
+"\n"
+"There are %d unknown printers directly connected to your system"
+msgstr ""
+
#
-#: ../../printerdrake.pm_.c:183 ../../printerdrake.pm_.c:192
-#: ../../printerdrake.pm_.c:2897 ../../printerdrake.pm_.c:3017
+#: ../../printerdrake.pm_.c:221
+#, fuzzy
+msgid " (Make sure that all your printers are connected and turned on).\n"
+msgstr ""
+"Si us plau, seleccioneu el port al qual teniu connectada la impressora."
+
+#: ../../printerdrake.pm_.c:235
+msgid ""
+"Do you want to enable printing on the printers mentioned above or on "
+"printers in the local network?\n"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:236
+#, fuzzy
+msgid "Do you want to enable printing on printers in the local network?\n"
+msgstr ""
+"Voleu definir la impressora (\"%s\")\n"
+"com a impressora per defecte?"
+
+#: ../../printerdrake.pm_.c:238
+#, fuzzy
+msgid "Do you want to enable printing on the printers mentioned above?\n"
+msgstr "Voleu iniciar la connexió en arrencar?"
+
+#: ../../printerdrake.pm_.c:239
+msgid "Are you sure that you want to set up printing on this machine?\n"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:240
+#, c-format
+msgid ""
+"NOTE: Depending on the printer model and the printing system up to %d MB of "
+"additional software will be installed."
+msgstr ""
+
+#
+#: ../../printerdrake.pm_.c:269 ../../printerdrake.pm_.c:278
+#: ../../printerdrake.pm_.c:3117 ../../printerdrake.pm_.c:3242
msgid "Add a new printer"
msgstr "Afegiu una impressora"
-#: ../../printerdrake.pm_.c:184
+#: ../../printerdrake.pm_.c:270
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -8200,7 +8493,7 @@ msgstr ""
"proporciona accés als controladors disponibles de les impressores, les seves "
"opcions, i tipus de connexió d'impressió."
-#: ../../printerdrake.pm_.c:193
+#: ../../printerdrake.pm_.c:280
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -8209,7 +8502,7 @@ msgid ""
"computer, connected directly to the network or to a remote Windows machine.\n"
"\n"
"If you have printer(s) connected to this machine, Please plug it/them in on "
-"this computer and turn it/them on so that they can be auto-detected. Also "
+"this computer and turn it/them on so that it/they can be auto-detected. Also "
"your network printer(s) and you Windows machines must be connected and "
"turned on.\n"
"\n"
@@ -8222,7 +8515,22 @@ msgid ""
"want to set up your printer(s) now."
msgstr ""
-#: ../../printerdrake.pm_.c:202
+#: ../../printerdrake.pm_.c:289 ../../printerdrake.pm_.c:306
+msgid ""
+"\n"
+"Welcome to the Printer Setup Wizard\n"
+"\n"
+"This wizard will help you to install your printer(s) connected to this "
+"computer.\n"
+"\n"
+"If you have printer(s) connected to this machine, Please plug it/them in on "
+"this computer and turn it/them on so that it/they can be auto-detected.\n"
+"\n"
+" Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
+"want to set up your printer(s) now."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:297
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -8231,7 +8539,7 @@ msgid ""
"computer or connected directly to the network.\n"
"\n"
"If you have printer(s) connected to this machine, Please plug it/them in on "
-"this computer and turn it/them on so that they can be auto-detected. Also "
+"this computer and turn it/them on so that it/they can be auto-detected. Also "
"your network printer(s) must be connected and turned on.\n"
"\n"
"Note that auto-detecting printers on the network takes longer than the auto-"
@@ -8243,26 +8551,26 @@ msgid ""
msgstr ""
#
-#: ../../printerdrake.pm_.c:213
+#: ../../printerdrake.pm_.c:315
#, fuzzy
msgid "Auto-detect printers connected to this machine"
msgstr "Auto-detecta impressores"
-#: ../../printerdrake.pm_.c:215
+#: ../../printerdrake.pm_.c:318
msgid "Auto-detect printers connected directly to the local network"
msgstr ""
-#: ../../printerdrake.pm_.c:218
+#: ../../printerdrake.pm_.c:321
msgid "Auto-detect printers connected to machines running Microsoft Windows"
msgstr ""
#
-#: ../../printerdrake.pm_.c:245 ../../printerdrake.pm_.c:459
-#: ../../printerdrake.pm_.c:484
+#: ../../printerdrake.pm_.c:348 ../../printerdrake.pm_.c:562
+#: ../../printerdrake.pm_.c:587
msgid "Local Printer"
msgstr "Impressora local"
-#: ../../printerdrake.pm_.c:246
+#: ../../printerdrake.pm_.c:349
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -8287,52 +8595,52 @@ msgstr ""
"Mandrake."
#
-#: ../../printerdrake.pm_.c:283 ../../printerdrake.pm_.c:474
-#: ../../printerdrake.pm_.c:683 ../../printerdrake.pm_.c:923
+#: ../../printerdrake.pm_.c:386 ../../printerdrake.pm_.c:577
+#: ../../printerdrake.pm_.c:790 ../../printerdrake.pm_.c:1030
#, fuzzy
msgid "Printer auto-detection"
msgstr "Fes la detecció automàtica"
-#: ../../printerdrake.pm_.c:305
+#: ../../printerdrake.pm_.c:408
#, fuzzy, c-format
msgid ", network printer \"%s\", port %s"
msgstr ", servidor TCP/IP \"%s\", port %s"
#
-#: ../../printerdrake.pm_.c:307
+#: ../../printerdrake.pm_.c:410
#, fuzzy, c-format
msgid ", printer \"%s\" on SMB/Windows server \"%s\""
msgstr "Impressora de SMB/Windows 95/98/NT Server"
-#: ../../printerdrake.pm_.c:313
+#: ../../printerdrake.pm_.c:416
#, c-format
msgid "Detected %s"
msgstr "s'ha detectat %s"
-#: ../../printerdrake.pm_.c:317 ../../printerdrake.pm_.c:348
-#: ../../printerdrake.pm_.c:367
+#: ../../printerdrake.pm_.c:420 ../../printerdrake.pm_.c:451
+#: ../../printerdrake.pm_.c:470
#, c-format
msgid "Printer on parallel port \\/*%s"
msgstr "Impressora en el port paral·lel \\/*%s"
-#: ../../printerdrake.pm_.c:319 ../../printerdrake.pm_.c:350
-#: ../../printerdrake.pm_.c:372
+#: ../../printerdrake.pm_.c:422 ../../printerdrake.pm_.c:453
+#: ../../printerdrake.pm_.c:475
#, c-format
msgid "USB printer \\/*%s"
msgstr "Impressora USB \\/*%s"
-#: ../../printerdrake.pm_.c:321
+#: ../../printerdrake.pm_.c:424
#, fuzzy, c-format
msgid "Network printer \"%s\", port %s"
msgstr "Impressora de xarxa (TCP/Socket)"
#
-#: ../../printerdrake.pm_.c:323
+#: ../../printerdrake.pm_.c:426
#, fuzzy, c-format
msgid "Printer \"%s\" on SMB/Windows server \"%s\""
msgstr "Impressora de SMB/Windows 95/98/NT Server"
-#: ../../printerdrake.pm_.c:460
+#: ../../printerdrake.pm_.c:563
msgid ""
"No local printer found! To manually install a printer enter a device name/"
"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
@@ -8345,21 +8653,21 @@ msgstr ""
"2a USB impressora: /dev/usb/lp1, ...)."
#
-#: ../../printerdrake.pm_.c:464
+#: ../../printerdrake.pm_.c:567
msgid "You must enter a device or file name!"
msgstr "Heu d'entrar un dispositiu o fitxer!"
#
-#: ../../printerdrake.pm_.c:475
+#: ../../printerdrake.pm_.c:578
msgid "No printer found!"
msgstr "No s'ha trobat cap impressora!"
-#: ../../printerdrake.pm_.c:485
+#: ../../printerdrake.pm_.c:588
#, fuzzy
msgid "Available printers"
msgstr "Impressora local"
-#: ../../printerdrake.pm_.c:489
+#: ../../printerdrake.pm_.c:592
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
@@ -8367,7 +8675,7 @@ msgstr ""
"La següent impressora ha estat detectada, si no és la que voleu configurar, "
"escriviu nom de dispositiu/nom de fitxer en la línia d'entrada"
-#: ../../printerdrake.pm_.c:490
+#: ../../printerdrake.pm_.c:593
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up or enter a device name/file name in the input line"
@@ -8376,7 +8684,7 @@ msgstr ""
"impressora que voleu definir o escriviu nom de dispositiu/nom de fitxer en "
"la línia d'entrada"
-#: ../../printerdrake.pm_.c:492
+#: ../../printerdrake.pm_.c:595
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
@@ -8388,7 +8696,7 @@ msgstr ""
"correctament detectada o si preferiu de personalitzar la seva configuració, "
"habiliteu \"Configuració manual\"."
-#: ../../printerdrake.pm_.c:493
+#: ../../printerdrake.pm_.c:596
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
@@ -8401,7 +8709,7 @@ msgstr ""
"si preferiu de personalitzar la seva configuració, habiliteu \"Configuració "
"manual\"."
-#: ../../printerdrake.pm_.c:495
+#: ../../printerdrake.pm_.c:598
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
@@ -8410,12 +8718,12 @@ msgstr ""
"dispositiu/nom de fitxer en la línia d'entrada"
#
-#: ../../printerdrake.pm_.c:496
+#: ../../printerdrake.pm_.c:599
msgid "Please choose the port where your printer is connected to."
msgstr ""
"Si us plau, seleccioneu el port al qual teniu connectada la impressora."
-#: ../../printerdrake.pm_.c:498
+#: ../../printerdrake.pm_.c:601
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
@@ -8425,21 +8733,21 @@ msgstr ""
"lp1, ...)."
#
-#: ../../printerdrake.pm_.c:503
+#: ../../printerdrake.pm_.c:606
msgid "You must choose/enter a printer/device!"
msgstr "Heu d'escollir/escriure una impressora/dispositiu!"
#
-#: ../../printerdrake.pm_.c:523
+#: ../../printerdrake.pm_.c:626
msgid "Manual configuration"
msgstr "Configuració manual"
-#: ../../printerdrake.pm_.c:577
+#: ../../printerdrake.pm_.c:680
msgid "Remote lpd Printer Options"
msgstr "Opcions de la impressora lpd remota"
#
-#: ../../printerdrake.pm_.c:578
+#: ../../printerdrake.pm_.c:681
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
"server and the printer name on that server."
@@ -8449,52 +8757,52 @@ msgstr ""
"servidor."
#
-#: ../../printerdrake.pm_.c:579
+#: ../../printerdrake.pm_.c:682
msgid "Remote host name"
msgstr "Nom de l'ordinador central remot"
#
-#: ../../printerdrake.pm_.c:580
+#: ../../printerdrake.pm_.c:683
msgid "Remote printer name"
msgstr "Nom de la impressora remota"
#
-#: ../../printerdrake.pm_.c:583
+#: ../../printerdrake.pm_.c:686
msgid "Remote host name missing!"
msgstr "Falta el nom de l'ordinador central remot!"
#
-#: ../../printerdrake.pm_.c:587
+#: ../../printerdrake.pm_.c:690
msgid "Remote printer name missing!"
msgstr "Falta el nom de la impressora remota!"
-#: ../../printerdrake.pm_.c:609 ../../printerdrake.pm_.c:1119
+#: ../../printerdrake.pm_.c:712 ../../printerdrake.pm_.c:1225
#, fuzzy, c-format
msgid "Detected model: %s %s"
msgstr "s'ha detectat %s"
#
-#: ../../printerdrake.pm_.c:683 ../../printerdrake.pm_.c:923
+#: ../../printerdrake.pm_.c:790 ../../printerdrake.pm_.c:1030
#, fuzzy
msgid "Scanning network..."
msgstr "S'està arrencant la xarxa..."
-#: ../../printerdrake.pm_.c:692 ../../printerdrake.pm_.c:713
+#: ../../printerdrake.pm_.c:799 ../../printerdrake.pm_.c:820
#, fuzzy, c-format
msgid ", printer \"%s\" on server \"%s\""
msgstr "en Servidor Windows \"%s\", recurs compartit \"%s\""
-#: ../../printerdrake.pm_.c:695 ../../printerdrake.pm_.c:716
+#: ../../printerdrake.pm_.c:802 ../../printerdrake.pm_.c:823
#, fuzzy, c-format
msgid "Printer \"%s\" on server \"%s\""
msgstr "S'està imprimint en la impressora \"%s\""
-#: ../../printerdrake.pm_.c:736
+#: ../../printerdrake.pm_.c:843
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "Opcions de la impressora SMB (Windows 9x/NT)"
#
-#: ../../printerdrake.pm_.c:737
+#: ../../printerdrake.pm_.c:844
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
"may be different from its TCP/IP hostname!) and possibly the IP address of "
@@ -8507,47 +8815,47 @@ msgstr ""
"de compartició de la impressora a què voleu accedir i el nom d'usuari,\n"
"contrasenya i informació de grup si són necessaris."
-#: ../../printerdrake.pm_.c:738
+#: ../../printerdrake.pm_.c:845
msgid ""
" If the desired printer was auto-detected, simply choose it from the list "
"and then add user name, password, and/or workgroup if needed."
msgstr ""
-#: ../../printerdrake.pm_.c:739
+#: ../../printerdrake.pm_.c:846
msgid "SMB server host"
msgstr "Ordinador central del servidor SMB"
-#: ../../printerdrake.pm_.c:740
+#: ../../printerdrake.pm_.c:847
msgid "SMB server IP"
msgstr "IP del servidor SMB"
-#: ../../printerdrake.pm_.c:741
+#: ../../printerdrake.pm_.c:848
msgid "Share name"
msgstr "Nom de compartició"
-#: ../../printerdrake.pm_.c:744
+#: ../../printerdrake.pm_.c:851
msgid "Workgroup"
msgstr "Grup de treball"
#
-#: ../../printerdrake.pm_.c:746
+#: ../../printerdrake.pm_.c:853
#, fuzzy
msgid "Auto-detected"
msgstr "Auto-detecta impressores"
-#: ../../printerdrake.pm_.c:757
+#: ../../printerdrake.pm_.c:864
msgid "Either the server name or the server's IP must be given!"
msgstr "S'ha de sumministrar o el nom del servidor o la ip del servidor!"
-#: ../../printerdrake.pm_.c:761
+#: ../../printerdrake.pm_.c:868
msgid "Samba share name missing!"
msgstr "Falta El nom de compartició de Samba!"
-#: ../../printerdrake.pm_.c:767
+#: ../../printerdrake.pm_.c:874
msgid "SECURITY WARNING!"
msgstr "AVÍS DE SEGURETAT!"
-#: ../../printerdrake.pm_.c:768
+#: ../../printerdrake.pm_.c:875
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -8593,7 +8901,7 @@ msgstr ""
"aquest ordinador amb el tipus de connexió \"%s\" en Printerdrake.\n"
"\n"
-#: ../../printerdrake.pm_.c:778
+#: ../../printerdrake.pm_.c:885
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -8606,7 +8914,7 @@ msgstr ""
"ordinador amb el tipus de connexió \"%s\" en Printerdrake.\n"
"\n"
-#: ../../printerdrake.pm_.c:781
+#: ../../printerdrake.pm_.c:888
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
@@ -8619,12 +8927,12 @@ msgstr ""
"Realment voleu continuar configurant aquesta impressora tal com s'està fent "
"ara?"
-#: ../../printerdrake.pm_.c:853
+#: ../../printerdrake.pm_.c:960
msgid "NetWare Printer Options"
msgstr "Opcions de la impressora NetWare"
#
-#: ../../printerdrake.pm_.c:854
+#: ../../printerdrake.pm_.c:961
msgid ""
"To print on a NetWare printer, you need to provide the NetWare print server "
"name (Note! it may be different from its TCP/IP hostname!) as well as the "
@@ -8638,45 +8946,45 @@ msgstr ""
"la impressora a què voleu accedir i el nom d'usuari i contrasenya si són\n"
"necessaris."
-#: ../../printerdrake.pm_.c:855
+#: ../../printerdrake.pm_.c:962
msgid "Printer Server"
msgstr "Servidor de la impressora"
-#: ../../printerdrake.pm_.c:856
+#: ../../printerdrake.pm_.c:963
msgid "Print Queue Name"
msgstr "Nom de la cua d'impressió"
-#: ../../printerdrake.pm_.c:861
+#: ../../printerdrake.pm_.c:968
msgid "NCP server name missing!"
msgstr "Falta el nom del Servidor NCP!"
-#: ../../printerdrake.pm_.c:865
+#: ../../printerdrake.pm_.c:972
msgid "NCP queue name missing!"
msgstr "Falta el nom de la cua NCP!"
-#: ../../printerdrake.pm_.c:932 ../../printerdrake.pm_.c:952
+#: ../../printerdrake.pm_.c:1039 ../../printerdrake.pm_.c:1059
#, fuzzy, c-format
msgid ", host \"%s\", port %s"
msgstr ", servidor TCP/IP \"%s\", port %s"
-#: ../../printerdrake.pm_.c:935 ../../printerdrake.pm_.c:955
+#: ../../printerdrake.pm_.c:1042 ../../printerdrake.pm_.c:1062
#, fuzzy, c-format
msgid "Host \"%s\", port %s"
msgstr ", servidor TCP/IP \"%s\", port %s"
#
-#: ../../printerdrake.pm_.c:975
+#: ../../printerdrake.pm_.c:1082
msgid "TCP/Socket Printer Options"
msgstr "Opcions de la impressora per a TCP/Socket"
-#: ../../printerdrake.pm_.c:977
+#: ../../printerdrake.pm_.c:1084
msgid ""
"Choose one of the auto-detected printers from the list or enter the hostname "
"or IP and the optional port number (default is 9100) into the input fields."
msgstr ""
#
-#: ../../printerdrake.pm_.c:978
+#: ../../printerdrake.pm_.c:1085
#, fuzzy
msgid ""
"To print to a TCP or socket printer, you need to provide the host name or IP "
@@ -8690,22 +8998,22 @@ msgstr ""
"altres pot variar. Mireu el manual del vostre maquinari."
#
-#: ../../printerdrake.pm_.c:983
+#: ../../printerdrake.pm_.c:1090
#, fuzzy
msgid "Printer host name or IP missing!"
msgstr "Falta el nom de l'ordinador central de la impressora!"
#
-#: ../../printerdrake.pm_.c:1005
+#: ../../printerdrake.pm_.c:1112
#, fuzzy
msgid "Printer host name or IP"
msgstr "Nom de l'ordinador central de la impressora"
-#: ../../printerdrake.pm_.c:1054 ../../printerdrake.pm_.c:1056
+#: ../../printerdrake.pm_.c:1160 ../../printerdrake.pm_.c:1162
msgid "Printer Device URI"
msgstr "Dispositiu URI d'impressora"
-#: ../../printerdrake.pm_.c:1055
+#: ../../printerdrake.pm_.c:1161
msgid ""
"You can specify directly the URI to access the printer. The URI must fulfill "
"either the CUPS or the Foomatic specifications. Note that not all URI types "
@@ -8715,11 +9023,11 @@ msgstr ""
"de complir l'especificació CUPS o Foomatic. Cal remarcar que not tots els "
"tipus de URI es suporten en tots els spoolers(cues d'impressió)."
-#: ../../printerdrake.pm_.c:1070
+#: ../../printerdrake.pm_.c:1176
msgid "A valid URI must be entered!"
msgstr "Heu d'entrar un URI vàlid!"
-#: ../../printerdrake.pm_.c:1402
+#: ../../printerdrake.pm_.c:1515
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
"Location fields do not need to be filled in. They are comments for the users."
@@ -8727,30 +9035,30 @@ msgstr ""
"Cada impressora necessita un nom (per exemple \"printer\"). Els camps de "
"Descripció i Ubicació no són necessaris. Són comentaris per als usuaris."
-#: ../../printerdrake.pm_.c:1403
+#: ../../printerdrake.pm_.c:1516
msgid "Name of printer"
msgstr "Nom de la impressora"
-#: ../../printerdrake.pm_.c:1405
+#: ../../printerdrake.pm_.c:1518
msgid "Location"
msgstr "Ubicació"
#
-#: ../../printerdrake.pm_.c:1416 ../../printerdrake.pm_.c:1536
+#: ../../printerdrake.pm_.c:1530 ../../printerdrake.pm_.c:1652
msgid "Reading printer database..."
msgstr "S'està llegint la base de dades d'impressores..."
#
-#: ../../printerdrake.pm_.c:1419
+#: ../../printerdrake.pm_.c:1534
msgid "Preparing printer database..."
msgstr "Preparant la base de dades de impressores..."
#
-#: ../../printerdrake.pm_.c:1516
+#: ../../printerdrake.pm_.c:1631
msgid "Your printer model"
msgstr "El vostre model d'impressora"
-#: ../../printerdrake.pm_.c:1517
+#: ../../printerdrake.pm_.c:1632
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -8777,27 +9085,27 @@ msgstr ""
"%s"
#
-#: ../../printerdrake.pm_.c:1522 ../../printerdrake.pm_.c:1525
+#: ../../printerdrake.pm_.c:1637 ../../printerdrake.pm_.c:1640
msgid "The model is correct"
msgstr "El model és correcte"
#
-#: ../../printerdrake.pm_.c:1523 ../../printerdrake.pm_.c:1524
-#: ../../printerdrake.pm_.c:1527
+#: ../../printerdrake.pm_.c:1638 ../../printerdrake.pm_.c:1639
+#: ../../printerdrake.pm_.c:1642
msgid "Select model manually"
msgstr "Selecciona model manualment"
#
-#: ../../printerdrake.pm_.c:1543
+#: ../../printerdrake.pm_.c:1659
msgid "Printer model selection"
msgstr "Selecció del model d'impressora"
#
-#: ../../printerdrake.pm_.c:1544
+#: ../../printerdrake.pm_.c:1660
msgid "Which printer model do you have?"
msgstr "Quin tipus de model d'impressora teniu?"
-#: ../../printerdrake.pm_.c:1545
+#: ../../printerdrake.pm_.c:1661
msgid ""
"\n"
"\n"
@@ -8811,7 +9119,7 @@ msgstr ""
"impressora correctament. Busqueu el model correcte en la llista quan el "
"cursor estigui en un model erroni o en \"Impressora en cru(Raw)\"."
-#: ../../printerdrake.pm_.c:1548
+#: ../../printerdrake.pm_.c:1664
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
@@ -8820,11 +9128,11 @@ msgstr ""
"manual de la impresora) o un de similar."
#
-#: ../../printerdrake.pm_.c:1624
+#: ../../printerdrake.pm_.c:1741
msgid "OKI winprinter configuration"
msgstr "Configuració de l 'winprinter' OKI"
-#: ../../printerdrake.pm_.c:1625
+#: ../../printerdrake.pm_.c:1742
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -8842,11 +9150,11 @@ msgstr ""
"pel controlador de la impressora."
#
-#: ../../printerdrake.pm_.c:1668 ../../printerdrake.pm_.c:1695
+#: ../../printerdrake.pm_.c:1785 ../../printerdrake.pm_.c:1812
msgid "Lexmark inkjet configuration"
msgstr "Configuració de la Lexmark inkjet"
-#: ../../printerdrake.pm_.c:1669
+#: ../../printerdrake.pm_.c:1786
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
"no printers on remote machines or print server boxes. Please connect your "
@@ -8858,17 +9166,17 @@ msgstr ""
"d'impressió. Per favor, connecteu la vostra impressora en un port local o "
"configureu-la en l'ordinador on està connectada."
-#: ../../printerdrake.pm_.c:1696
+#: ../../printerdrake.pm_.c:1813
+#, fuzzy
msgid ""
"To be able to print with your Lexmark inkjet and this configuration, you "
"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
-"com/). Go to the US site and click on the \"Drivers\" button. Then choose "
-"your model and afterwards \"Linux\" as operating system. The drivers come as "
-"RPM packages or shell scripts with interactive graphical installation. You "
-"do not need to do this configuration by the graphical frontends. Cancel "
-"directly after the license agreement. Then print printhead alignment pages "
-"with \"lexmarkmaintain\" and adjust the head alignment settings with this "
-"program."
+"com/). Click on the \"Drivers\" link. Then choose your model and afterwards "
+"\"Linux\" as operating system. The drivers come as RPM packages or shell "
+"scripts with interactive graphical installation. You do not need to do this "
+"configuration by the graphical frontends. Cancel directly after the license "
+"agreement. Then print printhead alignment pages with \"lexmarkmaintain\" and "
+"adjust the head alignment settings with this program."
msgstr ""
"Per a poder imprimir amb la Lexmark inkjet i aquesta configuració, "
"necessiteu els controladors de la impressora inkjet proporcionats per "
@@ -8881,7 +9189,34 @@ msgstr ""
"\"lexmarkmaintain\" i ajusteu l'aliniació de la capçalera amb aquest "
"programa."
-#: ../../printerdrake.pm_.c:1912
+#: ../../printerdrake.pm_.c:1816
+msgid "GDI Laser Printer using the Zenographics ZJ-Stream Format"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:1817
+msgid ""
+"Your printer belongs to the group of GDI laser printers (winprinters) sold "
+"by different manufacturers which uses the Zenographics ZJ-stream raster "
+"format for the data sent to the printer. The driver for these printers is "
+"still in a very early development stage and so it will perhaps not always "
+"work properly. Especially it is possible that the printer only works when "
+"you choose the A4 paper size.\n"
+"\n"
+"Some of these printers, as the HP LaserJet 1000, for which this driver was "
+"originally created, need their firmware to be uploaded to them after they "
+"are turned on. In the case of the HP LaserJet 1000 you have to search the "
+"printer's Windows driver CD or your Windows partition for the file "
+"\"sihp1000.img\" and upload the file to the printer with one of the "
+"following commands:\n"
+"\n"
+" lpr -o raw sihp1000.img\n"
+" cat sihp1000.img > /dev/usb/lp0\n"
+"\n"
+"The first command can be given by any normal user, the second must be given "
+"as root. After having done so you can print normally.\n"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:2040
msgid ""
"Printer default settings\n"
"\n"
@@ -8898,22 +9233,22 @@ msgstr ""
"Cal remarcar que amb una molt alta qualitat d'impresssió/resolució la "
"impressió pot ser molt lenta."
-#: ../../printerdrake.pm_.c:1921
+#: ../../printerdrake.pm_.c:2049
#, c-format
msgid "Option %s must be an integer number!"
msgstr "La opció %s ha de ser un número enter!"
-#: ../../printerdrake.pm_.c:1925
+#: ../../printerdrake.pm_.c:2053
#, c-format
msgid "Option %s must be a number!"
msgstr "La opció %s ha de ser un número!"
-#: ../../printerdrake.pm_.c:1930
+#: ../../printerdrake.pm_.c:2058
#, c-format
msgid "Option %s out of range!"
msgstr "La opció %s està fora de rang!"
-#: ../../printerdrake.pm_.c:1969
+#: ../../printerdrake.pm_.c:2097
#, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
@@ -8923,11 +9258,11 @@ msgstr ""
"com a impressora per defecte?"
#
-#: ../../printerdrake.pm_.c:1986
+#: ../../printerdrake.pm_.c:2120
msgid "Test pages"
msgstr "Pàgines de prova"
-#: ../../printerdrake.pm_.c:1987
+#: ../../printerdrake.pm_.c:2121
msgid ""
"Please select the test pages you want to print.\n"
"Note: the photo test page can take a rather long time to get printed and on "
@@ -8940,44 +9275,44 @@ msgstr ""
"Normalment n'hi ha prou en imprimir la pàgina de prova estàndar."
#
-#: ../../printerdrake.pm_.c:1991
+#: ../../printerdrake.pm_.c:2125
msgid "No test pages"
msgstr "Cap pàgina de prova"
#
-#: ../../printerdrake.pm_.c:1992
+#: ../../printerdrake.pm_.c:2126
msgid "Print"
msgstr "Imprimeix"
#
-#: ../../printerdrake.pm_.c:1994
+#: ../../printerdrake.pm_.c:2183
msgid "Standard test page"
msgstr "Pàgina estàndar de prova"
-#: ../../printerdrake.pm_.c:1997
+#: ../../printerdrake.pm_.c:2186
msgid "Alternative test page (Letter)"
msgstr "Pàgina alternativa de prova (Carta)"
#
-#: ../../printerdrake.pm_.c:2000
+#: ../../printerdrake.pm_.c:2189
msgid "Alternative test page (A4)"
msgstr "Pàgina alternativa de prova (A4)"
#
-#: ../../printerdrake.pm_.c:2002
+#: ../../printerdrake.pm_.c:2191
msgid "Photo test page"
msgstr "Pàgina de prova de fotografia"
#
-#: ../../printerdrake.pm_.c:2006
+#: ../../printerdrake.pm_.c:2195
msgid "Do not print any test page"
msgstr "No imprimir cap pàgina de prova"
-#: ../../printerdrake.pm_.c:2014 ../../printerdrake.pm_.c:2166
+#: ../../printerdrake.pm_.c:2204 ../../printerdrake.pm_.c:2357
msgid "Printing test page(s)..."
msgstr "S'esta(n) imprimint la(es) pàgina(es) de prova... "
-#: ../../printerdrake.pm_.c:2039
+#: ../../printerdrake.pm_.c:2229
#, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -8993,7 +9328,7 @@ msgstr ""
"\n"
#
-#: ../../printerdrake.pm_.c:2043
+#: ../../printerdrake.pm_.c:2233
msgid ""
"Test page(s) have been sent to the printer.\n"
"It may take some time before the printer starts.\n"
@@ -9001,16 +9336,16 @@ msgstr ""
"La(es) pàgina(es) de prova s'ha(n) enviat a la impressora.\n"
"Pot passar un cert temps abans no comenci la impressió.\n"
-#: ../../printerdrake.pm_.c:2050
+#: ../../printerdrake.pm_.c:2240
msgid "Did it work properly?"
msgstr "Ha funcionat correctament?"
#
-#: ../../printerdrake.pm_.c:2072 ../../printerdrake.pm_.c:3191
+#: ../../printerdrake.pm_.c:2262 ../../printerdrake.pm_.c:3416
msgid "Raw printer"
msgstr "Impressora en cru(Raw)"
-#: ../../printerdrake.pm_.c:2098
+#: ../../printerdrake.pm_.c:2288
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -9024,7 +9359,7 @@ msgstr ""
"permet d'escollir la impressora i de modificar els paràmetres opcions "
"fàcilment.\n"
-#: ../../printerdrake.pm_.c:2100
+#: ../../printerdrake.pm_.c:2290
msgid ""
"These commands you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications, but here do not supply the file name "
@@ -9034,8 +9369,8 @@ msgstr ""
"diàlegs d'impressió de moltes aplicacions, però ara no subministreu el "
"fitxer perquè el fitxer per a imprimir ja el proporciona l'aplicació.\n"
-#: ../../printerdrake.pm_.c:2103 ../../printerdrake.pm_.c:2120
-#: ../../printerdrake.pm_.c:2130
+#: ../../printerdrake.pm_.c:2293 ../../printerdrake.pm_.c:2310
+#: ../../printerdrake.pm_.c:2320
#, c-format
msgid ""
"\n"
@@ -9048,7 +9383,7 @@ msgstr ""
"treball d'impressió particular. Simplement afegiu els paràmetres desitjats "
"en la línia de comandes, e. g. \"%s <fitxer>\". "
-#: ../../printerdrake.pm_.c:2106 ../../printerdrake.pm_.c:2146
+#: ../../printerdrake.pm_.c:2296 ../../printerdrake.pm_.c:2336
#, c-format
msgid ""
"To know about the options available for the current printer read either the "
@@ -9060,7 +9395,7 @@ msgstr ""
"\".%s%s\n"
"\n"
-#: ../../printerdrake.pm_.c:2110
+#: ../../printerdrake.pm_.c:2300
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
@@ -9069,7 +9404,7 @@ msgstr ""
"impressora actual:\n"
"\n"
-#: ../../printerdrake.pm_.c:2115 ../../printerdrake.pm_.c:2125
+#: ../../printerdrake.pm_.c:2305 ../../printerdrake.pm_.c:2315
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
@@ -9078,8 +9413,8 @@ msgstr ""
"Per a imprimir un fitxer des de la línia de comandes (finestra de terminal) "
"useu la comanda \"%s <fitxer>\".\n"
-#: ../../printerdrake.pm_.c:2117 ../../printerdrake.pm_.c:2127
-#: ../../printerdrake.pm_.c:2137
+#: ../../printerdrake.pm_.c:2307 ../../printerdrake.pm_.c:2317
+#: ../../printerdrake.pm_.c:2327
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
@@ -9089,7 +9424,7 @@ msgstr ""
"diàlegs d'impressió de moltes aplicacions. Però ara no subministreu el "
"fitxer perquè el fitxer per a imprimir ja el proporciona l'aplicació.\n"
-#: ../../printerdrake.pm_.c:2122 ../../printerdrake.pm_.c:2132
+#: ../../printerdrake.pm_.c:2312 ../../printerdrake.pm_.c:2322
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
@@ -9097,7 +9432,7 @@ msgstr ""
"Per a veure una llista d'opcions disponibles per a la impressora actual feu "
"clic sobre el butó \"Llista d'opcions d'impressió\"."
-#: ../../printerdrake.pm_.c:2135
+#: ../../printerdrake.pm_.c:2325
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
@@ -9106,7 +9441,7 @@ msgstr ""
"Per a imprimir un fitxer des de la línia de comandes (finestra de terminal) "
"utilitzeu l'ordre \"%s <fitxer>\" o \"%s <fitxer>\".\n"
-#: ../../printerdrake.pm_.c:2139
+#: ../../printerdrake.pm_.c:2329
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -9122,7 +9457,7 @@ msgstr ""
"el treballs d'impressió inmediatament quan ho cliqueu. Això és útil, per "
"exemple, quan se us ha enganxat el paper en la impressora.\n"
-#: ../../printerdrake.pm_.c:2143
+#: ../../printerdrake.pm_.c:2333
#, c-format
msgid ""
"\n"
@@ -9135,41 +9470,41 @@ msgstr ""
"un treball d'impressió particular. Simplement afegiu els paràmetres que "
"voleu en la línia de comandes, p.e. \"%s <fitxer>\".\n"
-#: ../../printerdrake.pm_.c:2153
+#: ../../printerdrake.pm_.c:2343
#, fuzzy, c-format
msgid "Printing/Scanning/Photo Cards on \"%s\""
msgstr "Imprimint/Scannejant en \"%s\""
-#: ../../printerdrake.pm_.c:2154
+#: ../../printerdrake.pm_.c:2344
#, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "Imprimint/Scannejant en \"%s\""
-#: ../../printerdrake.pm_.c:2156
+#: ../../printerdrake.pm_.c:2346
#, fuzzy, c-format
msgid "Printing/Photo Card Access on \"%s\""
msgstr "Imprimint/Scannejant en \"%s\""
-#: ../../printerdrake.pm_.c:2157
+#: ../../printerdrake.pm_.c:2347
#, c-format
msgid "Printing on the printer \"%s\""
msgstr "S'està imprimint en la impressora \"%s\""
-#: ../../printerdrake.pm_.c:2160 ../../printerdrake.pm_.c:2163
-#: ../../printerdrake.pm_.c:2164 ../../printerdrake.pm_.c:2165
-#: ../../printerdrake.pm_.c:3175 ../../standalone/drakTermServ_.c:248
-#: ../../standalone/drakbackup_.c:1485 ../../standalone/drakbackup_.c:3530
-#: ../../standalone/drakbug_.c:129 ../../standalone/drakfont_.c:705
+#: ../../printerdrake.pm_.c:2350 ../../printerdrake.pm_.c:2353
+#: ../../printerdrake.pm_.c:2354 ../../printerdrake.pm_.c:2355
+#: ../../printerdrake.pm_.c:3400 ../../standalone/drakTermServ_.c:248
+#: ../../standalone/drakbackup_.c:1560 ../../standalone/drakbackup_.c:4208
+#: ../../standalone/drakbug_.c:130 ../../standalone/drakfont_.c:705
#: ../../standalone/drakfont_.c:1014
msgid "Close"
msgstr "Tanca"
#
-#: ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2353
msgid "Print option list"
msgstr "Llista d'opcions d'impressió"
-#: ../../printerdrake.pm_.c:2182
+#: ../../printerdrake.pm_.c:2373
#, fuzzy, c-format
msgid ""
"Your multi-function device was configured automatically to be able to scan. "
@@ -9192,7 +9527,7 @@ msgstr ""
"\n"
"No utilitzeu \"scannerdrake\" amb aquest dispositiu!"
-#: ../../printerdrake.pm_.c:2202
+#: ../../printerdrake.pm_.c:2394
msgid ""
"Your printer was configured automatically to give you access to the photo "
"card drives from your PC. Now you can access your photo cards using the "
@@ -9206,18 +9541,18 @@ msgid ""
msgstr ""
#
-#: ../../printerdrake.pm_.c:2223 ../../printerdrake.pm_.c:2673
-#: ../../printerdrake.pm_.c:2945
+#: ../../printerdrake.pm_.c:2416 ../../printerdrake.pm_.c:2875
+#: ../../printerdrake.pm_.c:3170
msgid "Reading printer data..."
msgstr "S'està llegint dades de la impressora..."
#
-#: ../../printerdrake.pm_.c:2243 ../../printerdrake.pm_.c:2271
-#: ../../printerdrake.pm_.c:2306
+#: ../../printerdrake.pm_.c:2436 ../../printerdrake.pm_.c:2464
+#: ../../printerdrake.pm_.c:2499
msgid "Transfer printer configuration"
msgstr "Configuració de transferència de la impressió"
-#: ../../printerdrake.pm_.c:2244
+#: ../../printerdrake.pm_.c:2437
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -9233,7 +9568,7 @@ msgstr ""
"No totes les cues d'impressió poden ser transferides degut a les següents "
"raons:\n"
-#: ../../printerdrake.pm_.c:2247
+#: ../../printerdrake.pm_.c:2440
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
@@ -9241,7 +9576,7 @@ msgstr ""
"CUPS no permet l'ús d'impressores en servidors Novell ni que les impressores "
"enviïn les dades cap a una ordre lliure de forma.\n"
-#: ../../printerdrake.pm_.c:2249
+#: ../../printerdrake.pm_.c:2442
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
@@ -9249,11 +9584,11 @@ msgstr ""
"PDQ només suporta impressores locals, impressores LPD remotes, i impressores "
"de Socket/TCP.\n"
-#: ../../printerdrake.pm_.c:2251
+#: ../../printerdrake.pm_.c:2444
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr "LPD i LPRng no suporten impressores IPP.\n"
-#: ../../printerdrake.pm_.c:2253
+#: ../../printerdrake.pm_.c:2446
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
@@ -9261,7 +9596,7 @@ msgstr ""
"A més a més, les cues que han estat creades amb altres programes que no són "
"aquest i \"foomatic-configure\" no poden ser transferides."
-#: ../../printerdrake.pm_.c:2254
+#: ../../printerdrake.pm_.c:2447
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
@@ -9272,7 +9607,7 @@ msgstr ""
"seus fabricants o amb controladors nadius per a CUPS no poden ser "
"transferides."
-#: ../../printerdrake.pm_.c:2255
+#: ../../printerdrake.pm_.c:2448
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
@@ -9282,15 +9617,15 @@ msgstr ""
"Marqueu les impressores que voleu transferir i feu clic en \n"
"\"Transferir\"."
-#: ../../printerdrake.pm_.c:2258
+#: ../../printerdrake.pm_.c:2451
msgid "Do not transfer printers"
msgstr "No transferir cap impressora"
-#: ../../printerdrake.pm_.c:2259 ../../printerdrake.pm_.c:2276
+#: ../../printerdrake.pm_.c:2452 ../../printerdrake.pm_.c:2469
msgid "Transfer"
msgstr "Transferir"
-#: ../../printerdrake.pm_.c:2272
+#: ../../printerdrake.pm_.c:2465
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -9301,13 +9636,13 @@ msgstr ""
"Feu clic en \"Transferir\" per a sobreescriure'l.\n"
"També podeu escriure un nou nom o saltar-se aquesta impressora."
-#: ../../printerdrake.pm_.c:2280
+#: ../../printerdrake.pm_.c:2473
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr ""
"El nom de la impressora només pot constar de lletres, números i el caràcter "
"de subratllat"
-#: ../../printerdrake.pm_.c:2285
+#: ../../printerdrake.pm_.c:2478
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
@@ -9317,16 +9652,16 @@ msgstr ""
"realment voleu sobreescriure la seva configuració?"
#
-#: ../../printerdrake.pm_.c:2293
+#: ../../printerdrake.pm_.c:2486
msgid "New printer name"
msgstr "Nou nom d'impressora"
-#: ../../printerdrake.pm_.c:2296
+#: ../../printerdrake.pm_.c:2489
#, c-format
msgid "Transferring %s..."
msgstr "Transferint %s..."
-#: ../../printerdrake.pm_.c:2307
+#: ../../printerdrake.pm_.c:2500
#, c-format
msgid ""
"You have transferred your former default printer (\"%s\"), Should it be also "
@@ -9336,33 +9671,33 @@ msgstr ""
"ser també la impressora per defecte en el nou sistema d'impressió %s?"
#
-#: ../../printerdrake.pm_.c:2316
+#: ../../printerdrake.pm_.c:2510
msgid "Refreshing printer data..."
msgstr "S'està refrescant les dades de les impressores..."
#
-#: ../../printerdrake.pm_.c:2324 ../../printerdrake.pm_.c:2395
-#: ../../printerdrake.pm_.c:2407
+#: ../../printerdrake.pm_.c:2518 ../../printerdrake.pm_.c:2590
+#: ../../printerdrake.pm_.c:2602
msgid "Configuration of a remote printer"
msgstr "Configuració d'una impressora remota"
#
-#: ../../printerdrake.pm_.c:2325
+#: ../../printerdrake.pm_.c:2519
msgid "Starting network..."
msgstr "S'està arrencant la xarxa..."
#
-#: ../../printerdrake.pm_.c:2359 ../../printerdrake.pm_.c:2363
-#: ../../printerdrake.pm_.c:2365
+#: ../../printerdrake.pm_.c:2554 ../../printerdrake.pm_.c:2558
+#: ../../printerdrake.pm_.c:2560
msgid "Configure the network now"
msgstr "Configureu la xarxa ara"
#
-#: ../../printerdrake.pm_.c:2360
+#: ../../printerdrake.pm_.c:2555
msgid "Network functionality not configured"
msgstr "La funcionalitat de xarxa no ha estat configurada"
-#: ../../printerdrake.pm_.c:2361
+#: ../../printerdrake.pm_.c:2556
msgid ""
"You are going to configure a remote printer. This needs working network "
"access, but your network is not configured yet. If you go on without network "
@@ -9375,11 +9710,11 @@ msgstr ""
"impressora que esteu ara configurant. Què voleu fer?"
#
-#: ../../printerdrake.pm_.c:2364
+#: ../../printerdrake.pm_.c:2559
msgid "Go on without configuring the network"
msgstr "Continuar sense configurar la xarxa"
-#: ../../printerdrake.pm_.c:2397
+#: ../../printerdrake.pm_.c:2592
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -9395,7 +9730,7 @@ msgstr ""
"impressora, també usant el Centre de Control Mandrake, secció \"Maquinari\"/"
"\"Impressores\""
-#: ../../printerdrake.pm_.c:2398
+#: ../../printerdrake.pm_.c:2593
msgid ""
"The network access was not running and could not be started. Please check "
"your configuration and your hardware. Then try to configure your remote "
@@ -9406,26 +9741,26 @@ msgstr ""
"remota una altra vegada."
#
-#: ../../printerdrake.pm_.c:2408
+#: ../../printerdrake.pm_.c:2603
msgid "Restarting printing system..."
msgstr "Reiniciant el sistema d'impressió..."
#
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2641
msgid "high"
msgstr "Alt"
#
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2641
msgid "paranoid"
msgstr "Paranoic"
-#: ../../printerdrake.pm_.c:2447
+#: ../../printerdrake.pm_.c:2642
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr "Instal·lant un sistema d'impressió amb el nivell de seguretat %s"
-#: ../../printerdrake.pm_.c:2448
+#: ../../printerdrake.pm_.c:2643
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -9451,11 +9786,11 @@ msgstr ""
"Realment voleu configurar l'impressió en aquest ordinador?"
#
-#: ../../printerdrake.pm_.c:2480
+#: ../../printerdrake.pm_.c:2675
msgid "Starting the printing system at boot time"
msgstr "Iniciant el sistema d'impressió en arrencar l'ordinador"
-#: ../../printerdrake.pm_.c:2481
+#: ../../printerdrake.pm_.c:2676
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -9478,83 +9813,80 @@ msgstr ""
"Voleu que l'arrencada automàtica del sistema d'impressió és torni a "
"habilitar una altra vegada?"
-#: ../../printerdrake.pm_.c:2504 ../../printerdrake.pm_.c:2544
-#: ../../printerdrake.pm_.c:2581 ../../printerdrake.pm_.c:2621
-#: ../../printerdrake.pm_.c:2733
+#: ../../printerdrake.pm_.c:2700 ../../printerdrake.pm_.c:2741
+#: ../../printerdrake.pm_.c:2780 ../../printerdrake.pm_.c:2822
+#: ../../printerdrake.pm_.c:2943
msgid "Checking installed software..."
msgstr "Comprovant el programari instal·at"
-#: ../../printerdrake.pm_.c:2548
+#: ../../printerdrake.pm_.c:2746
msgid "Removing LPRng..."
msgstr "Treient LPRng..."
-#: ../../printerdrake.pm_.c:2585
+#: ../../printerdrake.pm_.c:2785
msgid "Removing LPD..."
msgstr "Treient LPD..."
#
-#: ../../printerdrake.pm_.c:2657
+#: ../../printerdrake.pm_.c:2858
msgid "Select Printer Spooler"
msgstr "Seleccioneu la cua d'impressió"
#
-#: ../../printerdrake.pm_.c:2658
+#: ../../printerdrake.pm_.c:2859
msgid "Which printing system (spooler) do you want to use?"
msgstr "Quin sistema d'impressió(cua) voleu utilitzar?"
-#: ../../printerdrake.pm_.c:2691
+#: ../../printerdrake.pm_.c:2895
#, c-format
msgid "Configuring printer \"%s\"..."
msgstr "Configurant la impressora \"%s\"..."
#
-#: ../../printerdrake.pm_.c:2704
+#: ../../printerdrake.pm_.c:2909
msgid "Installing Foomatic..."
msgstr "S'està instal·lant Foomatic..."
-#: ../../printerdrake.pm_.c:2769 ../../printerdrake.pm_.c:2808
-#: ../../printerdrake.pm_.c:3192 ../../printerdrake.pm_.c:3262
+#: ../../printerdrake.pm_.c:2979 ../../printerdrake.pm_.c:3020
+#: ../../printerdrake.pm_.c:3417 ../../printerdrake.pm_.c:3490
msgid "Printer options"
msgstr "Opcions de la impressora"
#
-#: ../../printerdrake.pm_.c:2778
-msgid "Preparing PrinterDrake..."
+#: ../../printerdrake.pm_.c:2989
+#, fuzzy
+msgid "Preparing Printerdrake..."
msgstr "S'està preparant PrinterDrake..."
#
-#: ../../printerdrake.pm_.c:2795 ../../printerdrake.pm_.c:3349
+#: ../../printerdrake.pm_.c:3007 ../../printerdrake.pm_.c:3580
msgid "Configuring applications..."
msgstr "S'està configurant aplicacions..."
#
-#: ../../printerdrake.pm_.c:2815
+#: ../../printerdrake.pm_.c:3027
msgid "Would you like to configure printing?"
msgstr "Voleu configurar la impressió?"
-#: ../../printerdrake.pm_.c:2827
+#: ../../printerdrake.pm_.c:3039
msgid "Printing system: "
msgstr "Sistema d'impressió: "
-#: ../../printerdrake.pm_.c:2875
-msgid "Printerdrake"
-msgstr "Printerdrake"
-
#
-#: ../../printerdrake.pm_.c:2879
+#: ../../printerdrake.pm_.c:3099
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; to view information about it; "
"or to make a printer on a remote CUPS server available for Star Office/"
-"OpenOffice.org."
+"OpenOffice.org/GIMP."
msgstr ""
"Les impressores següents estan configurades. Feu doble-clic en una "
"impressora per a modificar els paràmetres; per a fer-la per defecte; per a "
"veure'n la informació; o per a fer que una impressora en un servidor remot "
-"CUPS sigui disponible per a Star Office/OpenOffice.org."
+"CUPS sigui disponible per a Star Office/OpenOffice.org/GIMP."
#
-#: ../../printerdrake.pm_.c:2880
+#: ../../printerdrake.pm_.c:3100
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; or to view information about "
@@ -9564,33 +9896,33 @@ msgstr ""
"impressora per a modificar els paràmetres; per a fer-la per defecte; per a "
"veure la informació de la impressora."
-#: ../../printerdrake.pm_.c:2906
+#: ../../printerdrake.pm_.c:3127
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr ""
"Refresqueu la llista d'impressores (per a veure totes les impressores CUPS "
"remotes disponibles)"
#
-#: ../../printerdrake.pm_.c:2924
+#: ../../printerdrake.pm_.c:3145
msgid "Change the printing system"
msgstr "Modificar el sistema d'impressió"
-#: ../../printerdrake.pm_.c:2929 ../../standalone/drakconnect_.c:277
+#: ../../printerdrake.pm_.c:3150 ../../standalone/drakconnect_.c:277
msgid "Normal Mode"
msgstr "Mode normal"
#
-#: ../../printerdrake.pm_.c:3085 ../../printerdrake.pm_.c:3135
-#: ../../printerdrake.pm_.c:3343
+#: ../../printerdrake.pm_.c:3310 ../../printerdrake.pm_.c:3360
+#: ../../printerdrake.pm_.c:3573
msgid "Do you want to configure another printer?"
msgstr "Voleu configurar una altra impressora?"
#
-#: ../../printerdrake.pm_.c:3170
+#: ../../printerdrake.pm_.c:3395
msgid "Modify printer configuration"
msgstr "Modificar la configuració de la impressora"
-#: ../../printerdrake.pm_.c:3172
+#: ../../printerdrake.pm_.c:3397
#, c-format
msgid ""
"Printer %s\n"
@@ -9599,112 +9931,115 @@ msgstr ""
"Impressora %s\n"
"Voleu modificar la impressora?"
-#: ../../printerdrake.pm_.c:3176
+#: ../../printerdrake.pm_.c:3401
msgid "Do it!"
msgstr "Fes-ho!"
#
-#: ../../printerdrake.pm_.c:3181 ../../printerdrake.pm_.c:3236
+#: ../../printerdrake.pm_.c:3406 ../../printerdrake.pm_.c:3461
msgid "Printer connection type"
msgstr "Tipus de connexió de la impressora"
#
-#: ../../printerdrake.pm_.c:3182 ../../printerdrake.pm_.c:3240
+#: ../../printerdrake.pm_.c:3407 ../../printerdrake.pm_.c:3465
msgid "Printer name, description, location"
msgstr "Nom de la impressora, descripció, ubicació"
-#: ../../printerdrake.pm_.c:3184 ../../printerdrake.pm_.c:3255
+#: ../../printerdrake.pm_.c:3409 ../../printerdrake.pm_.c:3483
msgid "Printer manufacturer, model, driver"
msgstr "Fabricant de la impressora, model, controlador"
-#: ../../printerdrake.pm_.c:3185 ../../printerdrake.pm_.c:3256
+#: ../../printerdrake.pm_.c:3410 ../../printerdrake.pm_.c:3484
msgid "Printer manufacturer, model"
msgstr "Fabricant de la impressora, model"
-#: ../../printerdrake.pm_.c:3194 ../../printerdrake.pm_.c:3266
+#: ../../printerdrake.pm_.c:3419 ../../printerdrake.pm_.c:3494
msgid "Set this printer as the default"
msgstr "Fes aquesta impressora la impr. per defecte"
-#: ../../printerdrake.pm_.c:3196 ../../printerdrake.pm_.c:3271
-msgid "Add this printer to Star Office/OpenOffice.org"
-msgstr "Afegeix aquesta impressora a Star Office/OpenOffice.org"
+#: ../../printerdrake.pm_.c:3421 ../../printerdrake.pm_.c:3499
+msgid "Add this printer to Star Office/OpenOffice.org/GIMP"
+msgstr "Afegeix aquesta impressora a Star Office/OpenOffice.org/GIMP"
-#: ../../printerdrake.pm_.c:3197 ../../printerdrake.pm_.c:3280
-msgid "Remove this printer from Star Office/OpenOffice.org"
-msgstr "Treu aquesta impressora de Star Office/OpenOffice.org"
+#: ../../printerdrake.pm_.c:3422 ../../printerdrake.pm_.c:3508
+msgid "Remove this printer from Star Office/OpenOffice.org/GIMP"
+msgstr "Treu aquesta impressora de Star Office/OpenOffice.org/GIMP"
#
-#: ../../printerdrake.pm_.c:3198 ../../printerdrake.pm_.c:3289
+#: ../../printerdrake.pm_.c:3423 ../../printerdrake.pm_.c:3517
msgid "Print test pages"
msgstr "Imprimeix la(es) pàgina(es) de prova"
#
-#: ../../printerdrake.pm_.c:3199 ../../printerdrake.pm_.c:3291
+#: ../../printerdrake.pm_.c:3424 ../../printerdrake.pm_.c:3519
msgid "Know how to use this printer"
msgstr "Aprengueu a utilitzar aquesta impressora"
#
-#: ../../printerdrake.pm_.c:3201 ../../printerdrake.pm_.c:3293
+#: ../../printerdrake.pm_.c:3426 ../../printerdrake.pm_.c:3521
msgid "Remove printer"
msgstr "Esborra impressora"
-#: ../../printerdrake.pm_.c:3245
+#: ../../printerdrake.pm_.c:3472
#, c-format
msgid "Removing old printer \"%s\"..."
msgstr "S'està esborrant la impressora antiga \"%s\"..."
#
-#: ../../printerdrake.pm_.c:3269
+#: ../../printerdrake.pm_.c:3497
msgid "Default printer"
msgstr "Impressora per defecte"
-#: ../../printerdrake.pm_.c:3270
+#: ../../printerdrake.pm_.c:3498
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr "La impressora \"%s\" és la impressora per defecte ara."
-#: ../../printerdrake.pm_.c:3274 ../../printerdrake.pm_.c:3277
-msgid "Adding printer to Star Office/OpenOffice.org"
-msgstr "Afegint impressora a Star Office/OpenOffice.org"
+#: ../../printerdrake.pm_.c:3502 ../../printerdrake.pm_.c:3505
+msgid "Adding printer to Star Office/OpenOffice.org/GIMP"
+msgstr "Afegint impressora a Star Office/OpenOffice.org/GIMP"
-#: ../../printerdrake.pm_.c:3275
+#: ../../printerdrake.pm_.c:3503
#, c-format
msgid ""
-"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
+"The printer \"%s\" was successfully added to Star Office/OpenOffice.org/GIMP."
msgstr ""
"La impressora \"%s\" ha estat afegida correctament a Star Office/OpenOffice."
"org."
-#: ../../printerdrake.pm_.c:3278
+#: ../../printerdrake.pm_.c:3506
#, c-format
-msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
+msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org/GIMP."
msgstr ""
-"S'ha fallat en afegir la impressora \"%s\" a Star Office/OpenOffice.org."
+"S'ha fallat en afegir la impressora \"%s\" a Star Office/OpenOffice.org/GIMP."
-#: ../../printerdrake.pm_.c:3283 ../../printerdrake.pm_.c:3286
-msgid "Removing printer from Star Office/OpenOffice.org"
-msgstr "S'està esborrant la impressora de Star Office/OpenOffice.org"
+#: ../../printerdrake.pm_.c:3511 ../../printerdrake.pm_.c:3514
+msgid "Removing printer from Star Office/OpenOffice.org/GIMP"
+msgstr "S'està esborrant la impressora de Star Office/OpenOffice.org/GIMP"
-#: ../../printerdrake.pm_.c:3284
+#: ../../printerdrake.pm_.c:3512
#, c-format
msgid ""
-"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
+"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org/"
+"GIMP."
msgstr ""
"La impressora \"%s\" ha estat esborrada correctament de Star Office/"
-"OpenOffice.org."
+"OpenOffice.org/GIMP."
-#: ../../printerdrake.pm_.c:3287
+#: ../../printerdrake.pm_.c:3515
#, c-format
-msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
+msgid ""
+"Failed to remove the printer \"%s\" from Star Office/OpenOffice.org/GIMP."
msgstr ""
-"S'ha fallat en esborrar la impressora \"%s\" de Star Office/OpenOffice.org."
+"S'ha fallat en esborrar la impressora \"%s\" de Star Office/OpenOffice.org/"
+"GIMP."
-#: ../../printerdrake.pm_.c:3295
+#: ../../printerdrake.pm_.c:3523
#, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr "Voleu relment esborrar la impressora \"%s\"?"
-#: ../../printerdrake.pm_.c:3297
+#: ../../printerdrake.pm_.c:3527
#, c-format
msgid "Removing printer \"%s\"..."
msgstr "S'està esborrant la impressora \"%s\"..."
@@ -10139,7 +10474,7 @@ msgid "File sharing"
msgstr "Compartició de fitxers"
#
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1669
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1744
msgid "System"
msgstr "Sistema"
@@ -10197,15 +10532,15 @@ msgstr "Iniciar"
msgid "Stop"
msgstr "Aturar"
-#: ../../share/advertising/00-thanks.pl_.c:9
-msgid "Thank you for choosing Mandrake Linux 8.2"
-msgstr "Gràcies per triar Mandrake Linux 8.2"
+#: ../../share/advertising/01-thanks.pl_.c:9
+msgid "Thank you for choosing Mandrake Linux 9.0"
+msgstr "Gràcies per triar Mandrake Linux 9.0"
-#: ../../share/advertising/00-thanks.pl_.c:10
+#: ../../share/advertising/01-thanks.pl_.c:10
msgid "Welcome to the Open Source world"
msgstr "Benvinguts al món del Codi Font Obert"
-#: ../../share/advertising/00-thanks.pl_.c:11
+#: ../../share/advertising/01-thanks.pl_.c:11
msgid ""
"The success of MandrakeSoft is based upon the principle of Free Software. "
"Your new operating system is the result of collaborative work on the part of "
@@ -10215,216 +10550,240 @@ msgstr ""
"vostre nou sistema operatiu és el resultat del treball en col·laboració de "
"tota la Comunitat Linux de tot el Món"
-#
-#: ../../share/advertising/01-gnu.pl_.c:9
-msgid "Join the Free Software world"
+#: ../../share/advertising/02-community.pl_.c:9
+msgid "Get involved in the Free Software world"
msgstr "Uneix-te al Codi Font Obert arreu del món"
-#: ../../share/advertising/01-gnu.pl_.c:10
+#: ../../share/advertising/02-community.pl_.c:10
+msgid "Want to know more about the Open Source community?"
+msgstr ""
+
+#: ../../share/advertising/02-community.pl_.c:11
msgid ""
-"Get to know the Open Source community and become a member. Learn, teach, and "
-"help others by joining the many discussion forums that you will find in our "
-"\"Community\" webpages"
+"To share your own knowledge and help build Linux tools, join the discussions "
+"forum you'll find on our \"Community\" webpages"
msgstr ""
"Investigueu en la comunitat de l'Open Source i feu-vos'en membre. Apreneu, "
"ensenyeu, i ajudeu als altres tot i participant en els múltiples forums de "
"discussió que trobareu en les pàgines de la \"Comunitat\"."
-#
-#: ../../share/advertising/02-internet.pl_.c:9
-msgid "Internet and Messaging"
-msgstr "Internet i Missatgeria"
+#: ../../share/advertising/03-internet.pl_.c:9
+#, fuzzy
+msgid "Get the most from the Internet"
+msgstr "Connecta't a internet"
-#: ../../share/advertising/02-internet.pl_.c:10
+#: ../../share/advertising/03-internet.pl_.c:10
msgid ""
-"Mandrake Linux 8.2 provides the best software to access everything the "
-"Internet has to offer: Surf the web & view animations with Mozilla and "
-"Konqueror, exchange email & organize your personal information with "
-"Evolution and Kmail, and much more"
+"Mandrake Linux 9.0 has selected the best software for you. Surf the Web and "
+"view animations with Mozilla and Konqueror, or read your mail and handle "
+"your personal information with Evolution and Kmail"
msgstr ""
-"Mandrake Linux 8.2 proporciona el millor programari per a accedir tot el que "
+"Mandrake Linux 9.0 proporciona el millor programari per a accedir tot el que "
"Internet us pot oferir: navegueu la web i veieu animacions amb Mozilla i "
"Konqueror, envieu missatges i organitzeu-vos la informació personal amb "
"Evolution i Kmail, i molt més"
-#
-#: ../../share/advertising/03-graphic.pl_.c:9
-msgid "Multimedia and Graphics"
-msgstr "Multimèdia i Gràfics"
+#: ../../share/advertising/04-multimedia.pl_.c:9
+msgid "Discover the most up-to-date graphics and multimedia tools!"
+msgstr ""
-#: ../../share/advertising/03-graphic.pl_.c:10
+#: ../../share/advertising/04-multimedia.pl_.c:10
+msgid "Push multimedia to its limits!"
+msgstr ""
+
+#: ../../share/advertising/04-multimedia.pl_.c:11
+#, fuzzy
msgid ""
-"Mandrake Linux 8.2 lets you push your multimedia computer to its limits! Use "
-"the latest software to play music and audio files, edit and organize your "
-"images and photos, watch TV and videos, and much more"
+"Mandrake Linux 9.0 enables you to use the very latest software to play audio "
+"files, edit and handle your images or photos, and play videos"
msgstr ""
"Mandrake Linux 8.2 us permet utilitzar el vostre ordinador multimèdia fins "
"al límit! Useu l'últim programari per a tocar música i fitxers de so, editar "
"i organitzar les vostres imatges i fotos, mirar la TV i videos, i molt més"
-#: ../../share/advertising/04-develop.pl_.c:9
-msgid "Development"
-msgstr "Desenvolupament"
+#: ../../share/advertising/05-games.pl_.c:9
+msgid "Games"
+msgstr "Jocs"
-#: ../../share/advertising/04-develop.pl_.c:10
+#: ../../share/advertising/05-games.pl_.c:10
msgid ""
-"Mandrake Linux 8.2 is the ultimate development platform. Discover the power "
-"of the GNU gcc compiler as well as the best Open Source development "
-"environments"
+"Mandrake Linux 9.0 provides the best Open Source games - arcade, action, "
+"cards, sports, strategy..."
msgstr ""
-"Mandrake Linux 8.2 és l'última plataforma de desenvolupament més "
-"actualitzada. Descubreix el poder del compilador GNU gcc hagi com el dels "
-"millors entorns de desenvolupament en Codi Font Obert"
+"Mandrake Linux 9.0 proporciona els millors jocs en Open Source - arcade, "
+"acció, cartes, esports, estratègia, ..."
-#
-#: ../../share/advertising/05-contcenter.pl_.c:9
-#: ../../standalone/drakbug_.c:69
+#: ../../share/advertising/06-mcc.pl_.c:9 ../../standalone/drakbug_.c:69
msgid "Mandrake Control Center"
msgstr "Centre de Control Mandrake"
-#: ../../share/advertising/05-contcenter.pl_.c:10
+#: ../../share/advertising/06-mcc.pl_.c:10
+#, fuzzy
msgid ""
-"The Mandrake Linux 8.2 Control Center is a one-stop location for fully "
-"customizing and configuring your Mandrake system"
+"Mandrake Linux 9.0 provides a powerful tool to fully customize and configure "
+"your machine"
msgstr ""
"El Centre de Control Mandrake Linux 8.2 és el lloc de parada per a "
"customitzar i configurar completament del vostre sistema Mandrake"
#
-#: ../../share/advertising/06-user.pl_.c:9
+#: ../../share/advertising/07-desktop.pl_.c:9
msgid "User interfaces"
msgstr "Interfícies d'usuari"
-#: ../../share/advertising/06-user.pl_.c:10
+#: ../../share/advertising/07-desktop.pl_.c:10
msgid ""
-"Mandrake Linux 8.2 provides 11 different graphical desktop environments and "
-"window managers to choose from including GNOME 1.4, KDE 2.2.2, Window Maker "
-"0.8, and the rest"
+"Mandrake Linux 9.0 provides 11 user interfaces which can be fully modified: "
+"KDE 3, Gnome 2, WindowMaker..."
msgstr ""
-"Mandrake Linux 8.2 proporciona 11 diferents entorns d'escritori gràfics i "
-"gestors de finestres per a triar incloent GNOME 1.4, KDE 2.2.2, Window Maker "
-"0.8, i la resta"
-#
-#: ../../share/advertising/07-server.pl_.c:9
-msgid "Server Software"
-msgstr "Programari del servidor"
+#: ../../share/advertising/08-development.pl_.c:9
+#, fuzzy
+msgid "Development simplified"
+msgstr "Desenvolupament"
+
+#: ../../share/advertising/08-development.pl_.c:10
+msgid "Mandrake Linux 9.0 is the ultimate development platform"
+msgstr ""
+
+#: ../../share/advertising/08-development.pl_.c:11
+#, fuzzy
+msgid ""
+"Use the full power of the GNU gcc 3 compiler as well as the best Open Source "
+"development environments"
+msgstr ""
+"Mandrake Linux 8.2 és l'última plataforma de desenvolupament més "
+"actualitzada. Descubreix el poder del compilador GNU gcc hagi com el dels "
+"millors entorns de desenvolupament en Codi Font Obert"
-#: ../../share/advertising/07-server.pl_.c:10
+#: ../../share/advertising/09-server.pl_.c:9
+msgid "Turn your machine into a reliable server"
+msgstr ""
+
+#: ../../share/advertising/09-server.pl_.c:10
+#, fuzzy
msgid ""
-"Transform your machine into a powerful server with just a few clicks of the "
-"mouse: Web server, email, firewall, router, file and print server, ..."
+"Transform your machine into a powerful server in a few clicks of your mouse: "
+"Web server, mail, firewall, router, file and print server..."
msgstr ""
"Transformeu el vostre ordinador en un poderós servidor amb només uns quants "
"clics del ratolí: Servidor web, email, tallafoc, encaminador, servidor de "
"fitxers i d'impressió, ..."
-#: ../../share/advertising/08-games.pl_.c:9
-msgid "Games"
-msgstr "Jocs"
+#: ../../share/advertising/10-mnf.pl_.c:9
+msgid "Optimize your security"
+msgstr ""
-#: ../../share/advertising/08-games.pl_.c:10
+#: ../../share/advertising/10-mnf.pl_.c:10
msgid ""
-"Mandrake Linux 8.2 provides the best Open Source games - arcade, action, "
-"cards, sports, strategy, ..."
+"The MandrakeSecurity range includes the Multi Network Firewall product (M.N."
+"F.)"
+msgstr ""
+
+#: ../../share/advertising/10-mnf.pl_.c:11
+msgid ""
+"This firewall product includes network features which allow you to fulfill "
+"all your security needs"
msgstr ""
-"Mandrake Linux 8.2 proporciona els millors jocs en Open Source - arcade, "
-"acció, cartes, esports, estratègia, ..."
-#: ../../share/advertising/09-MDKcampus.pl_.c:9
-msgid "MandrakeCampus"
-msgstr "MandrakeCampus"
+#: ../../share/advertising/10-mnf.pl_.c:12
+msgid "This product is available on MandrakeStore website"
+msgstr ""
+
+#: ../../share/advertising/11-mdkstore.pl_.c:9
+msgid "The official MandrakeSoft store"
+msgstr ""
-#: ../../share/advertising/09-MDKcampus.pl_.c:10
+#: ../../share/advertising/11-mdkstore.pl_.c:10
+#, fuzzy
msgid ""
-"Would you like to learn Linux simply, quickly, and for free? MandrakeSoft "
-"provides free Linux training, as well as a way to test your progress, at "
-"MandrakeCampus -- our online training center"
+"Our full range of Linux solutions, as well as special offers on products and "
+"'goodies', are available online at our e-store"
msgstr ""
-"Voleu aprendre Linux simplement, ràpidament, i gratuïtament? MandrakeSoft "
-"proporciona entrenament de Linux gratuït, així com una manera de comprovar "
-"els vostres progressos, a MandrakeCampus -- el nostre centre d'ensenyament a "
-"Internet"
+"Trobareu tota la gama de solucions Linux, així com ofertes especials en "
+"productes en la nostra botiga online"
-#
-#: ../../share/advertising/10-MDKexpert.pl_.c:9
-msgid "MandrakeExpert"
-msgstr "MandrakeExpert"
+#: ../../share/advertising/12-mdkstore.pl_.c:9
+msgid "Strategic partners"
+msgstr ""
-#: ../../share/advertising/10-MDKexpert.pl_.c:10
+#: ../../share/advertising/12-mdkstore.pl_.c:10
msgid ""
-"Quality support from the Linux Community, and from MandrakeSoft, is just "
-"around the corner. And if you're already a Linux veteran, become an \"Expert"
-"\" and share your knowledge at our support website"
+"MandrakeSoft works alongside a selection of companies offering professional "
+"solutions compatible with Mandrake Linux; a list of these partners is "
+"available on the MandrakeStore"
msgstr ""
-"Un suport de qualitat de la Comunitat Linux, i de MandrakeSoft, és a un clic "
-"del ratolí. I vós sou un veterà del Linux, convertiu-vos en \"Expert\" i "
-"compartiu els vostres coneixements en la nostra web de suport"
-#: ../../share/advertising/11-consul.pl_.c:9
-msgid "MandrakeConsulting"
-msgstr "MandrakeConsulting"
+#: ../../share/advertising/13-mdkcampus.pl_.c:9
+msgid "Discover MandrakeSoft's training catalogue Linux-Campus"
+msgstr ""
-#: ../../share/advertising/11-consul.pl_.c:10
+#: ../../share/advertising/13-mdkcampus.pl_.c:10
msgid ""
-"For all of your IT projects, our consultants are ready to analyze your "
-"requirements and offer a customized solution. Benefit from MandrakeSoft's "
-"vast experience as a Linux producer to provide a true IT alternative for "
-"your business organization"
+"The training program has been create to respond to the needs of both users "
+"and experts (Network and System administrations)"
+msgstr ""
+
+#: ../../share/advertising/13-mdkcampus.pl_.c:11
+msgid "Certify yourself on Linux"
+msgstr ""
+
+#: ../../share/advertising/13-mdkcampus.pl_.c:12
+msgid ""
+"Whether you choose to teach yourself online or via our network of training "
+"partners, the Linux-Campus catalogue prepares you for the acknowledged LPI "
+"certification program (worldwide professional technical certification)"
msgstr ""
-"Per a tots els vostres projectes en TI, els nostres consultors estan "
-"preparats per a analitzar els vostres requeriments i oferir una solució "
-"personalitzada. Beneficieu-vos de la gran experiència de MandrakeSoft com a "
-"productor de Linux per a proporcionar una certera alternativa en TI per a la "
-"vostra empresa"
#
-#: ../../share/advertising/12-MDKstore.pl_.c:9
-msgid "MandrakeStore"
-msgstr "MandrakeStore"
+#: ../../share/advertising/14-mdkexpert.pl_.c:9
+#, fuzzy
+msgid "Become a MandrakeExpert"
+msgstr "MandrakeExpert"
-#: ../../share/advertising/12-MDKstore.pl_.c:10
+#: ../../share/advertising/14-mdkexpert.pl_.c:10
msgid ""
-"A full range of Linux solutions, as well as special offers on products and "
-"'goodies', are available online at our e-store"
+"Find the solutions to your problems via MandrakeSoft's online support "
+"platform"
msgstr ""
-"Trobareu tota la gama de solucions Linux, així com ofertes especials en "
-"productes en la nostra botiga online"
-#: ../../share/advertising/13-Nvert.pl_.c:9
+#: ../../share/advertising/14-mdkexpert.pl_.c:11
msgid ""
-"For more information on MandrakeSoft's Professional Services and commercial "
-"offerings, please see the following web page:"
+"Join the MandrakeSoft support teams and the Linux Community online to share "
+"your knowledge and help others by becoming a recognized Expert on the online "
+"technical support website:"
+msgstr ""
+
+#
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:9
+#, fuzzy
+msgid "MandrakeExpert Corporate"
+msgstr "MandrakeExpert"
+
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:10
+msgid "An online platform to respond to company's specific support needs"
msgstr ""
-"Per més informació sobre els Serveis Professionals de MandrakeSoft i ofertes "
-"comercials, aneu a la següent pàgina web:"
-#: ../../share/advertising/13-Nvert.pl_.c:11
-msgid "http://www.mandrakesoft.com/sales/contact"
-msgstr "http://www.mandrakesoft.com/sales/contact"
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:11
+msgid ""
+"All incidents will be followed up by a single qualified MandrakeSoft "
+"technical expert."
+msgstr ""
#
-#: ../../standalone.pm_.c:40
+#: ../../standalone.pm_.c:41
msgid "Installing packages..."
msgstr "S'està instal·lant els paquets..."
-#: ../../standalone/XFdrake_.c:143
+#: ../../standalone/XFdrake_.c:145
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "Si us plau, sortiu i utilitzeu Ctrl-Alt-tecla de retrocés"
-#: ../../standalone/XFdrake_.c:147
+#: ../../standalone/XFdrake_.c:149
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "Si us plau, torneu a entrar a %s per activar els canvis"
-#: ../../standalone/diskdrake_.c:81
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I'll try to go on blanking bad partitions"
-msgstr ""
-"No puc llegir la vostra taula de particions, està massa malmesa per a mi :(\n"
-"Intentaré seguir buidant les particions incorrectes"
-
#
#: ../../standalone/drakTermServ_.c:188
#, fuzzy
@@ -10472,12 +10831,13 @@ msgid "Add/Del Clients"
msgstr "Client DHCP"
#
-#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3282
-#: ../../standalone/drakbackup_.c:3315 ../../standalone/drakbackup_.c:3341
-#: ../../standalone/drakbackup_.c:3368 ../../standalone/drakbackup_.c:3395
-#: ../../standalone/drakbackup_.c:3434 ../../standalone/drakbackup_.c:3455
-#: ../../standalone/drakbackup_.c:3482 ../../standalone/drakbackup_.c:3508
-#: ../../standalone/drakbackup_.c:3533 ../../standalone/drakfont_.c:700
+#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3930
+#: ../../standalone/drakbackup_.c:3963 ../../standalone/drakbackup_.c:3989
+#: ../../standalone/drakbackup_.c:4016 ../../standalone/drakbackup_.c:4043
+#: ../../standalone/drakbackup_.c:4082 ../../standalone/drakbackup_.c:4103
+#: ../../standalone/drakbackup_.c:4130 ../../standalone/drakbackup_.c:4160
+#: ../../standalone/drakbackup_.c:4186 ../../standalone/drakbackup_.c:4211
+#: ../../standalone/drakfont_.c:700
msgid "Help"
msgstr "Ajuda"
@@ -10658,8 +11018,8 @@ msgstr ""
"Els paràmetres de la auto-instal·lació estan disponibles en les seccions de "
"la esquerra"
-#: ../../standalone/drakautoinst_.c:239 ../../standalone/drakgw_.c:548
-#: ../../standalone/scannerdrake_.c:105
+#: ../../standalone/drakautoinst_.c:239 ../../standalone/drakgw_.c:484
+#: ../../standalone/scannerdrake_.c:119
msgid "Congratulations!"
msgstr "Felicitats!"
@@ -10686,20 +11046,24 @@ msgstr "Afegeix un element"
msgid "Remove the last item"
msgstr "Esborra l'últim element"
-#: ../../standalone/drakbackup_.c:625
+#: ../../standalone/drakbackup_.c:619
msgid "Cron not available yet as non-root"
msgstr ""
-#: ../../standalone/drakbackup_.c:731
+#: ../../standalone/drakbackup_.c:725
msgid "WARNING"
msgstr ""
-#: ../../standalone/drakbackup_.c:732
+#: ../../standalone/drakbackup_.c:726
#, fuzzy
msgid "FATAL"
msgstr "FAT"
-#: ../../standalone/drakbackup_.c:744
+#: ../../standalone/drakbackup_.c:727
+msgid "INFO"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:739
msgid ""
"\n"
" DrakBackup Report \n"
@@ -10709,7 +11073,7 @@ msgstr ""
" Informe DrakBackup \n"
"\n"
-#: ../../standalone/drakbackup_.c:745
+#: ../../standalone/drakbackup_.c:740
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -10721,7 +11085,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:749
+#: ../../standalone/drakbackup_.c:744
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -10733,12 +11097,19 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:770 ../../standalone/drakbackup_.c:840
-#: ../../standalone/drakbackup_.c:894
+#: ../../standalone/drakbackup_.c:765 ../../standalone/drakbackup_.c:835
+#: ../../standalone/drakbackup_.c:889
msgid "Total progess"
msgstr "Progrés total"
-#: ../../standalone/drakbackup_.c:822
+#: ../../standalone/drakbackup_.c:788
+msgid ""
+"Sorry, perl-Expect is not installed/enabled. To use\n"
+"this feature, install perl-Expect and comment lines 772-774,\n"
+" as well as 788,789. Then uncomment line 787."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:817
#, c-format
msgid ""
"%s exists, delete?\n"
@@ -10747,16 +11118,41 @@ msgid ""
" need to purge the entry from authorized_keys on the server."
msgstr ""
-#: ../../standalone/drakbackup_.c:831
+#: ../../standalone/drakbackup_.c:826
msgid "This may take a moment to generate the keys."
msgstr ""
-#: ../../standalone/drakbackup_.c:838
+#: ../../standalone/drakbackup_.c:833
#, c-format
msgid "ERROR: Cannot spawn %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:865
+#: ../../standalone/drakbackup_.c:850
+#, c-format
+msgid "No password prompt on %s at port %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:851
+#, fuzzy, c-format
+msgid "Bad password on %s"
+msgstr "Sense contrasenya"
+
+#: ../../standalone/drakbackup_.c:852
+#, c-format
+msgid "Permission denied transferring %s to %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:853
+#, fuzzy, c-format
+msgid "Can't find %s on %s"
+msgstr "No es pot obrir %s: %s\n"
+
+#: ../../standalone/drakbackup_.c:856
+#, c-format
+msgid "%s not responding"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:860
#, c-format
msgid ""
"Transfer successful\n"
@@ -10767,64 +11163,69 @@ msgid ""
"without being prompted for a password."
msgstr ""
-#: ../../standalone/drakbackup_.c:908
+#: ../../standalone/drakbackup_.c:903
msgid "WebDAV remote site already in sync!"
msgstr ""
-#: ../../standalone/drakbackup_.c:912
+#: ../../standalone/drakbackup_.c:907
msgid "WebDAV transfer failed!"
msgstr ""
-#: ../../standalone/drakbackup_.c:934
+#: ../../standalone/drakbackup_.c:928
msgid "No CDR/DVDR in drive!"
msgstr ""
-#: ../../standalone/drakbackup_.c:938
+#: ../../standalone/drakbackup_.c:932
msgid "Does not appear to be recordable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:942
+#: ../../standalone/drakbackup_.c:936
msgid "Not erasable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:981
+#: ../../standalone/drakbackup_.c:975
msgid "This may take a moment to erase the media."
msgstr ""
-#: ../../standalone/drakbackup_.c:1045
+#: ../../standalone/drakbackup_.c:1060
msgid "Permission problem accessing CD."
msgstr ""
-#: ../../standalone/drakbackup_.c:1144 ../../standalone/drakbackup_.c:1193
+#: ../../standalone/drakbackup_.c:1087
+#, c-format
+msgid "No tape in %s!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1199 ../../standalone/drakbackup_.c:1248
msgid "Backup system files..."
msgstr "Còpia de seguretat de fitxers del sistema..."
#
-#: ../../standalone/drakbackup_.c:1194 ../../standalone/drakbackup_.c:1261
+#: ../../standalone/drakbackup_.c:1249 ../../standalone/drakbackup_.c:1316
msgid "Hard Disk Backup files..."
msgstr "Els fitxers de la còpia de seguretat del disc dur..."
#
-#: ../../standalone/drakbackup_.c:1206
+#: ../../standalone/drakbackup_.c:1261
msgid "Backup User files..."
msgstr "Còpia de seguretat de fitxers d'usuari..."
-#: ../../standalone/drakbackup_.c:1207
+#: ../../standalone/drakbackup_.c:1262
msgid "Hard Disk Backup Progress..."
msgstr "Progrès de la còpia de seguretat en disc dur..."
#
-#: ../../standalone/drakbackup_.c:1260
+#: ../../standalone/drakbackup_.c:1315
msgid "Backup Other files..."
msgstr "Els fitxers de còpia de seguretat d'altres fitxers..."
#
-#: ../../standalone/drakbackup_.c:1266
+#: ../../standalone/drakbackup_.c:1321
#, fuzzy
msgid "No changes to backup!"
msgstr "Utilitzar la cinta per a fer la còpia de seguretat"
-#: ../../standalone/drakbackup_.c:1282 ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1337 ../../standalone/drakbackup_.c:1360
#, c-format
msgid ""
"\n"
@@ -10832,16 +11233,16 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1289
+#: ../../standalone/drakbackup_.c:1344
#, c-format
msgid ""
-"file list sent by FTP : %s\n"
+"file list sent by FTP: %s\n"
" "
msgstr ""
-"llista de fitxers enviada per FTP : %s\n"
+"llista de fitxers enviada per FTP: %s\n"
" "
-#: ../../standalone/drakbackup_.c:1292
+#: ../../standalone/drakbackup_.c:1347
msgid ""
"\n"
" FTP connection problem: It was not possible to send your backup files by "
@@ -10851,14 +11252,14 @@ msgstr ""
" problema en la connexió FTP: No ha estat possible enviar els fitxers de la "
"còpia de seguretat per FTP.\n"
-#: ../../standalone/drakbackup_.c:1310
+#: ../../standalone/drakbackup_.c:1365
msgid ""
"\n"
"Drakbackup activities via CD:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1315
+#: ../../standalone/drakbackup_.c:1370
msgid ""
"\n"
"Drakbackup activities via tape:\n"
@@ -10866,25 +11267,25 @@ msgid ""
msgstr ""
#
-#: ../../standalone/drakbackup_.c:1324
+#: ../../standalone/drakbackup_.c:1379
msgid " Error during mail sending. \n"
msgstr " S'ha produït un error en enviar el correu electrònic. \n"
-#: ../../standalone/drakbackup_.c:1346
+#: ../../standalone/drakbackup_.c:1404
msgid "Can't create catalog!"
msgstr ""
#
-#: ../../standalone/drakbackup_.c:1459 ../../standalone/drakbackup_.c:1470
-#: ../../standalone/drakbackup_.c:1481 ../../standalone/drakfont_.c:1004
+#: ../../standalone/drakbackup_.c:1517 ../../standalone/drakbackup_.c:1528
+#: ../../standalone/drakfont_.c:1004
msgid "File Selection"
msgstr "Selecció de fitxers"
-#: ../../standalone/drakbackup_.c:1486
+#: ../../standalone/drakbackup_.c:1556
msgid "Select the files or directories and click on 'Add'"
msgstr "Seleccioneu els fitxers i directoris i feu clic en 'Afegir'"
-#: ../../standalone/drakbackup_.c:1525
+#: ../../standalone/drakbackup_.c:1600
msgid ""
"\n"
"Please check all options that you need.\n"
@@ -10892,26 +11293,26 @@ msgstr ""
"\n"
"Per favor, comproveu totes les opcions que necessiteu.\n"
-#: ../../standalone/drakbackup_.c:1526
+#: ../../standalone/drakbackup_.c:1601
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
"Aquestes opcions poden fer còpia de seguretat i restaurar els fitxers en el "
"directory /etc.\n"
-#: ../../standalone/drakbackup_.c:1527
+#: ../../standalone/drakbackup_.c:1602
msgid "Backup your System files. (/etc directory)"
msgstr "Fer còpia de seguretat dels fitxers del Sistema. ( directori /etc ) "
-#: ../../standalone/drakbackup_.c:1528
+#: ../../standalone/drakbackup_.c:1603
msgid "Use incremental backup (do not replace old backups)"
msgstr "Utilitzar còpia incremental (no reemplaça còpies antigues)"
-#: ../../standalone/drakbackup_.c:1529
+#: ../../standalone/drakbackup_.c:1604
msgid "Do not include critical files (passwd, group, fstab)"
msgstr "No incloure fitxers crítics (passwd, group, fstab)"
-#: ../../standalone/drakbackup_.c:1530
+#: ../../standalone/drakbackup_.c:1605
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
@@ -10920,67 +11321,71 @@ msgstr ""
" del directori /etc."
#
-#: ../../standalone/drakbackup_.c:1547
+#: ../../standalone/drakbackup_.c:1622
msgid "Please check all users that you want to include in your backup."
msgstr ""
"Si us plau, escolliu tots els usuaris que voleu incloure en la còpia de "
"seguretat."
-#: ../../standalone/drakbackup_.c:1574
+#: ../../standalone/drakbackup_.c:1649
msgid "Do not include the browser cache"
msgstr "No incloure la memòria cau del navegador"
-#: ../../standalone/drakbackup_.c:1575 ../../standalone/drakbackup_.c:1599
+#: ../../standalone/drakbackup_.c:1650 ../../standalone/drakbackup_.c:1674
msgid "Use Incremental Backups (do not replace old backups)"
msgstr "Utilitza còpies incrementals (no reemplaça antigues còpies)"
#
-#: ../../standalone/drakbackup_.c:1597 ../../standalone/drakfont_.c:1058
+#: ../../standalone/drakbackup_.c:1672 ../../standalone/drakfont_.c:1058
msgid "Remove Selected"
msgstr "Elimina el seleccionat"
#
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:1710
msgid "Windows (FAT32)"
msgstr "Windows(FAT32)"
#
-#: ../../standalone/drakbackup_.c:1674
+#: ../../standalone/drakbackup_.c:1749
msgid "Users"
msgstr "Usuaris"
-#: ../../standalone/drakbackup_.c:1700
+#: ../../standalone/drakbackup_.c:1775
#, fuzzy
msgid "Use network connection to backup"
msgstr "Utilitza connexió FTP per fer la còpia de seguretat"
-#: ../../standalone/drakbackup_.c:1706
+#: ../../standalone/drakbackup_.c:1777
+msgid "Net Method:"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1781
msgid "Use Expect for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1707
+#: ../../standalone/drakbackup_.c:1782
msgid ""
"Create/Transfer\n"
"backup keys for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1708
+#: ../../standalone/drakbackup_.c:1783
#, fuzzy
msgid ""
" Transfer \n"
"Now"
msgstr "Transferir"
-#: ../../standalone/drakbackup_.c:1709
+#: ../../standalone/drakbackup_.c:1784
msgid "Keys in place already"
msgstr ""
#
-#: ../../standalone/drakbackup_.c:1713
+#: ../../standalone/drakbackup_.c:1788
msgid "Please enter the host name or IP."
msgstr "Si us plau, proporcioneu el nom de l'ordinador o la IP."
-#: ../../standalone/drakbackup_.c:1718
+#: ../../standalone/drakbackup_.c:1793
#, fuzzy
msgid ""
"Please enter the directory (or module) to\n"
@@ -10990,29 +11395,29 @@ msgstr ""
" posar la còpia de seguretat d'aquest ordinador central."
#
-#: ../../standalone/drakbackup_.c:1723
+#: ../../standalone/drakbackup_.c:1798
msgid "Please enter your login"
msgstr "Si us plau, entreu la entrada"
#
-#: ../../standalone/drakbackup_.c:1728
+#: ../../standalone/drakbackup_.c:1803
msgid "Please enter your password"
msgstr "Si us plau, entreu la contrasenya"
#
-#: ../../standalone/drakbackup_.c:1734
+#: ../../standalone/drakbackup_.c:1809
msgid "Remember this password"
msgstr "Recordar aquesta contrasenya"
-#: ../../standalone/drakbackup_.c:1745
+#: ../../standalone/drakbackup_.c:1820
msgid "Need hostname, username and password!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1841
+#: ../../standalone/drakbackup_.c:1915
msgid "Use CD/DVDROM to backup"
msgstr "Utilitzar CD/DVDROM per fer la còpia"
-#: ../../standalone/drakbackup_.c:1844
+#: ../../standalone/drakbackup_.c:1918
msgid ""
"Please choose your CD/DVD device\n"
"(Press Enter to propogate settings to other fields.\n"
@@ -11020,44 +11425,44 @@ msgid ""
msgstr ""
#
-#: ../../standalone/drakbackup_.c:1849
+#: ../../standalone/drakbackup_.c:1923
#, fuzzy
msgid "Please choose your CD/DVD media size"
msgstr "Si us plau, escolliu l'espai del CD"
#
-#: ../../standalone/drakbackup_.c:1855
+#: ../../standalone/drakbackup_.c:1929
#, fuzzy
msgid "Please check for multisession CD"
msgstr "Si us plau, comproveu si feu servir un medi CDRW"
#
-#: ../../standalone/drakbackup_.c:1861
+#: ../../standalone/drakbackup_.c:1935
msgid "Please check if you are using CDRW media"
msgstr "Si us plau, comproveu si feu servir un medi CDRW"
-#: ../../standalone/drakbackup_.c:1867
+#: ../../standalone/drakbackup_.c:1941
#, fuzzy
msgid "Please check if you want to erase your RW media (1st Session)"
msgstr "Si us plau, comproveu si voleu esborrar el CDRW abans"
-#: ../../standalone/drakbackup_.c:1868
+#: ../../standalone/drakbackup_.c:1942
msgid " Erase Now "
msgstr ""
#
-#: ../../standalone/drakbackup_.c:1874
+#: ../../standalone/drakbackup_.c:1948
#, fuzzy
msgid "Please check if you are using a DVDR device"
msgstr "Si us plau, comproveu si feu servir un medi CDRW"
#
-#: ../../standalone/drakbackup_.c:1880
+#: ../../standalone/drakbackup_.c:1954
#, fuzzy
msgid "Please check if you are using a DVDRAM device"
msgstr "Si us plau, comproveu si feu servir un medi CDRW"
-#: ../../standalone/drakbackup_.c:1893
+#: ../../standalone/drakbackup_.c:1967
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
@@ -11065,37 +11470,37 @@ msgstr ""
"Si us plau, entreu el nom del dispositiu del CD Writer\n"
" ex: 0,1,0"
-#: ../../standalone/drakbackup_.c:1926
+#: ../../standalone/drakbackup_.c:2000
msgid "No CD device defined!"
msgstr ""
#
-#: ../../standalone/drakbackup_.c:1974
+#: ../../standalone/drakbackup_.c:2048
msgid "Use tape to backup"
msgstr "Utilitzar la cinta per a fer la còpia de seguretat"
-#: ../../standalone/drakbackup_.c:1977
+#: ../../standalone/drakbackup_.c:2051
msgid "Please enter the device name to use for backup"
msgstr ""
"Si us plau, subministreu el nom del dispositiu a utilitzar per fer la còpia"
-#: ../../standalone/drakbackup_.c:1983
+#: ../../standalone/drakbackup_.c:2057
#, fuzzy
msgid "Please check if you want to use the non-rewinding device."
msgstr "Si us plau, comproveu si voleu esborrar el CDRW abans"
-#: ../../standalone/drakbackup_.c:1989
+#: ../../standalone/drakbackup_.c:2063
#, fuzzy
msgid "Please check if you want to erase your tape before the backup."
msgstr "Si us plau, comproveu si voleu esborrar el CDRW abans"
-#: ../../standalone/drakbackup_.c:1995
+#: ../../standalone/drakbackup_.c:2069
#, fuzzy
msgid "Please check if you want to eject your tape after the backup."
msgstr "Si us plau, comproveu si voleu esborrar el CDRW abans"
-#: ../../standalone/drakbackup_.c:2001 ../../standalone/drakbackup_.c:2074
-#: ../../standalone/drakbackup_.c:3025
+#: ../../standalone/drakbackup_.c:2075 ../../standalone/drakbackup_.c:2149
+#: ../../standalone/drakbackup_.c:3116
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
@@ -11104,61 +11509,61 @@ msgstr ""
" permesa per a Drakbackup"
#
-#: ../../standalone/drakbackup_.c:2066
+#: ../../standalone/drakbackup_.c:2140
#, fuzzy
msgid "Please enter the directory to save to:"
msgstr "Si us plau, subministreu el directori per a desar:"
#
-#: ../../standalone/drakbackup_.c:2080 ../../standalone/drakbackup_.c:3031
+#: ../../standalone/drakbackup_.c:2155 ../../standalone/drakbackup_.c:3122
msgid "Use quota for backup files."
msgstr "Utilitzar la cuota de disc per als fitxers de còpia de seguretat"
#
-#: ../../standalone/drakbackup_.c:2146
+#: ../../standalone/drakbackup_.c:2221
msgid "Network"
msgstr "Xarxa"
-#: ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:2226
msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2156
+#: ../../standalone/drakbackup_.c:2231
msgid "HardDrive / NFS"
msgstr "Disc Dur / NFS"
-#: ../../standalone/drakbackup_.c:2161
+#: ../../standalone/drakbackup_.c:2236
#, fuzzy
msgid "Tape"
msgstr "Tipus"
-#: ../../standalone/drakbackup_.c:2175 ../../standalone/drakbackup_.c:2179
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2250 ../../standalone/drakbackup_.c:2254
+#: ../../standalone/drakbackup_.c:2258
msgid "hourly"
msgstr "cada hora"
-#: ../../standalone/drakbackup_.c:2176 ../../standalone/drakbackup_.c:2180
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2251 ../../standalone/drakbackup_.c:2255
+#: ../../standalone/drakbackup_.c:2258
msgid "daily"
msgstr "diària"
-#: ../../standalone/drakbackup_.c:2177 ../../standalone/drakbackup_.c:2181
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2252 ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2258
msgid "weekly"
msgstr "setmanal"
-#: ../../standalone/drakbackup_.c:2178 ../../standalone/drakbackup_.c:2182
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2253 ../../standalone/drakbackup_.c:2257
+#: ../../standalone/drakbackup_.c:2258
msgid "monthly"
msgstr "mensual"
#
-#: ../../standalone/drakbackup_.c:2196
+#: ../../standalone/drakbackup_.c:2271
msgid "Use daemon"
msgstr "Utilitza dimoni"
#
-#: ../../standalone/drakbackup_.c:2201
+#: ../../standalone/drakbackup_.c:2276
msgid ""
"Please choose the time \n"
"interval between each backup"
@@ -11167,7 +11572,7 @@ msgstr ""
"de temps entre cada còpia de seguretat"
#
-#: ../../standalone/drakbackup_.c:2207
+#: ../../standalone/drakbackup_.c:2282
msgid ""
"Please choose the\n"
"media for backup."
@@ -11175,7 +11580,7 @@ msgstr ""
"Si us plau, trieu el\n"
"medi per a la còpia."
-#: ../../standalone/drakbackup_.c:2214
+#: ../../standalone/drakbackup_.c:2289
#, fuzzy
msgid ""
"Please be sure that the cron daemon is included in your services. \n"
@@ -11184,80 +11589,80 @@ msgid ""
msgstr ""
"Si us plau assegureu-vos que el dimoni cron està inclòs en els serveis."
-#: ../../standalone/drakbackup_.c:2251
-msgid "Send mail report after each backup to :"
+#: ../../standalone/drakbackup_.c:2326
+msgid "Send mail report after each backup to:"
msgstr "Envieu informe per correu electrònic després de cada còpia a :"
-#: ../../standalone/drakbackup_.c:2257
+#: ../../standalone/drakbackup_.c:2332
msgid "Delete Hard Drive tar files after backup to other media."
msgstr ""
#
-#: ../../standalone/drakbackup_.c:2296
+#: ../../standalone/drakbackup_.c:2371
msgid "What"
msgstr "Que"
#
-#: ../../standalone/drakbackup_.c:2301
+#: ../../standalone/drakbackup_.c:2376
msgid "Where"
msgstr "On"
#
-#: ../../standalone/drakbackup_.c:2306
+#: ../../standalone/drakbackup_.c:2381
msgid "When"
msgstr "Quant"
#
-#: ../../standalone/drakbackup_.c:2311
+#: ../../standalone/drakbackup_.c:2386
msgid "More Options"
msgstr "Més opcions"
#
-#: ../../standalone/drakbackup_.c:2330 ../../standalone/drakbackup_.c:3873
+#: ../../standalone/drakbackup_.c:2405 ../../standalone/drakbackup_.c:4530
msgid "Drakbackup Configuration"
msgstr "Configuració de Drakbackup"
#
-#: ../../standalone/drakbackup_.c:2348
+#: ../../standalone/drakbackup_.c:2423
msgid "Please choose where you want to backup"
msgstr "Si us plau, escolliu on voleu fer la còpia de seguretat"
-#: ../../standalone/drakbackup_.c:2350
+#: ../../standalone/drakbackup_.c:2425
msgid "on Hard Drive"
msgstr "en el Disc Dur"
#
-#: ../../standalone/drakbackup_.c:2360
+#: ../../standalone/drakbackup_.c:2435
msgid "across Network"
msgstr "per la Xarxa"
-#: ../../standalone/drakbackup_.c:2370
+#: ../../standalone/drakbackup_.c:2445
msgid "on CDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2378
+#: ../../standalone/drakbackup_.c:2453
msgid "on Tape Device"
msgstr ""
#
-#: ../../standalone/drakbackup_.c:2421
+#: ../../standalone/drakbackup_.c:2496
msgid "Please choose what you want to backup"
msgstr "Si us plau, escolliu de què voleu fer la còpia de seguretat"
#
-#: ../../standalone/drakbackup_.c:2422
+#: ../../standalone/drakbackup_.c:2497
msgid "Backup system"
msgstr "Còpia del seguretat del sistema"
-#: ../../standalone/drakbackup_.c:2423
+#: ../../standalone/drakbackup_.c:2498
msgid "Backup Users"
msgstr "Còpia de seguretat dels usuaris"
-#: ../../standalone/drakbackup_.c:2426
+#: ../../standalone/drakbackup_.c:2501
msgid "Select user manually"
msgstr "Seleccioneu l'usuari manualment"
-#: ../../standalone/drakbackup_.c:2508
+#: ../../standalone/drakbackup_.c:2584
msgid ""
"\n"
"Backup Sources: \n"
@@ -11265,7 +11670,7 @@ msgstr ""
"\n"
"Fonts de la còpia: \n"
-#: ../../standalone/drakbackup_.c:2509
+#: ../../standalone/drakbackup_.c:2585
msgid ""
"\n"
"- System Files:\n"
@@ -11273,7 +11678,7 @@ msgstr ""
"\n"
"- Fitxers del Sistema:\n"
-#: ../../standalone/drakbackup_.c:2511
+#: ../../standalone/drakbackup_.c:2587
msgid ""
"\n"
"- User Files:\n"
@@ -11281,7 +11686,7 @@ msgstr ""
"\n"
"- Fitxers d'Usuari:\n"
-#: ../../standalone/drakbackup_.c:2513
+#: ../../standalone/drakbackup_.c:2589
msgid ""
"\n"
"- Other Files:\n"
@@ -11289,64 +11694,64 @@ msgstr ""
"\n"
"- Altres Fitxers:\n"
-#: ../../standalone/drakbackup_.c:2515
+#: ../../standalone/drakbackup_.c:2591
#, c-format
msgid ""
"\n"
-"- Save on Hard drive on path : %s\n"
+"- Save on Hard drive on path: %s\n"
msgstr ""
"\n"
-"- Desar-ho en el Disc Dur en el camí : %s\n"
+"- Desar-ho en el Disc Dur en el camí: %s\n"
-#: ../../standalone/drakbackup_.c:2518
+#: ../../standalone/drakbackup_.c:2594
msgid ""
"\n"
"- Delete hard drive tar files after backup.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2524
+#: ../../standalone/drakbackup_.c:2600
msgid ""
"\n"
"- Burn to CD"
msgstr ""
-#: ../../standalone/drakbackup_.c:2525
+#: ../../standalone/drakbackup_.c:2601
msgid "RW"
msgstr ""
-#: ../../standalone/drakbackup_.c:2526
+#: ../../standalone/drakbackup_.c:2602
#, fuzzy, c-format
-msgid " on device : %s"
+msgid " on device: %s"
msgstr "Dispositiu del ratolí: %s\n"
-#: ../../standalone/drakbackup_.c:2527
+#: ../../standalone/drakbackup_.c:2603
msgid " (multi-session)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2528
+#: ../../standalone/drakbackup_.c:2604
#, fuzzy, c-format
msgid ""
"\n"
-"- Save to Tape on device : %s"
+"- Save to Tape on device: %s"
msgstr ""
"\n"
-"- Desar-ho en FTP en l'ordinador central : %s\n"
+"- Desar-ho en FTP en l'ordinador central: %s\n"
-#: ../../standalone/drakbackup_.c:2529
+#: ../../standalone/drakbackup_.c:2605
#, c-format
msgid "\t\tErase=%s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2532
+#: ../../standalone/drakbackup_.c:2608
#, fuzzy, c-format
msgid ""
"\n"
-"- Save via %s on host : %s\n"
+"- Save via %s on host: %s\n"
msgstr ""
"\n"
-"- Desar-ho en FTP en l'ordinador central : %s\n"
+"- Desar-ho en FTP en l'ordinador central: %s\n"
-#: ../../standalone/drakbackup_.c:2533
+#: ../../standalone/drakbackup_.c:2609
#, c-format
msgid ""
"\t\t user name: %s\n"
@@ -11356,7 +11761,7 @@ msgstr ""
"\t\t en el camí: %s \n"
#
-#: ../../standalone/drakbackup_.c:2534
+#: ../../standalone/drakbackup_.c:2610
msgid ""
"\n"
"- Options:\n"
@@ -11364,60 +11769,60 @@ msgstr ""
"\n"
"- Opcions:\n"
-#: ../../standalone/drakbackup_.c:2535
+#: ../../standalone/drakbackup_.c:2611
msgid "\tDo not include System Files\n"
msgstr "\tNo incloure Fitxers del Sistema\n"
-#: ../../standalone/drakbackup_.c:2538
+#: ../../standalone/drakbackup_.c:2614
msgid "\tBackups use tar and bzip2\n"
msgstr "\tLes còpies de seguretat utilitzen tar i bzip2\n"
-#: ../../standalone/drakbackup_.c:2540
+#: ../../standalone/drakbackup_.c:2616
msgid "\tBackups use tar and gzip\n"
msgstr "\tLes còpies de seguretat utilitzen tar i gzip\n"
-#: ../../standalone/drakbackup_.c:2543
+#: ../../standalone/drakbackup_.c:2619
#, c-format
msgid ""
"\n"
-"- Daemon (%s) include :\n"
+"- Daemon (%s) include:\n"
msgstr ""
"\n"
"- Dimoni (%s) inclòs :\n"
-#: ../../standalone/drakbackup_.c:2544
+#: ../../standalone/drakbackup_.c:2620
msgid "\t-Hard drive.\n"
msgstr "\t.Disc dur.\n"
-#: ../../standalone/drakbackup_.c:2545
+#: ../../standalone/drakbackup_.c:2621
msgid "\t-CDROM.\n"
msgstr "\t-CDROM.\n"
-#: ../../standalone/drakbackup_.c:2546
+#: ../../standalone/drakbackup_.c:2622
msgid "\t-Tape \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2547
+#: ../../standalone/drakbackup_.c:2623
msgid "\t-Network by FTP.\n"
msgstr "\t-Xarxa per FTP.\n"
-#: ../../standalone/drakbackup_.c:2548
+#: ../../standalone/drakbackup_.c:2624
msgid "\t-Network by SSH.\n"
msgstr "\t-Xarxa per SSH.\n"
-#: ../../standalone/drakbackup_.c:2549
+#: ../../standalone/drakbackup_.c:2625
msgid "\t-Network by rsync.\n"
msgstr "\t-Xarxa per rsync.\n"
-#: ../../standalone/drakbackup_.c:2550
+#: ../../standalone/drakbackup_.c:2626
msgid "\t-Network by webdav.\n"
msgstr "\t-Xarxa per webdav.\n"
-#: ../../standalone/drakbackup_.c:2552
+#: ../../standalone/drakbackup_.c:2628
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr "Cap configuració, si us plau cliqueu en Auxiliar o Avançat.\n"
-#: ../../standalone/drakbackup_.c:2558
+#: ../../standalone/drakbackup_.c:2634
msgid ""
"List of data to restore:\n"
"\n"
@@ -11425,7 +11830,7 @@ msgstr ""
"Llista de dades per a restaurar:\n"
"\n"
-#: ../../standalone/drakbackup_.c:2725
+#: ../../standalone/drakbackup_.c:2801
msgid ""
"List of data corrupted:\n"
"\n"
@@ -11434,174 +11839,298 @@ msgstr ""
"\n"
#
-#: ../../standalone/drakbackup_.c:2727
+#: ../../standalone/drakbackup_.c:2803
msgid "Please uncheck or remove it on next time."
msgstr "Si us plau, deseleccioneu o esborreu-ho la pròxima vegada."
-#: ../../standalone/drakbackup_.c:2737
+#: ../../standalone/drakbackup_.c:2813
msgid "Backup files are corrupted"
msgstr "Els fitxers de la còpia de seguretat estan corromputs"
-#: ../../standalone/drakbackup_.c:2758
+#: ../../standalone/drakbackup_.c:2834
msgid " All of your selected data have been "
msgstr " Totes les dades seleccionades han estat "
-#: ../../standalone/drakbackup_.c:2759
+#: ../../standalone/drakbackup_.c:2835
#, c-format
msgid " Successfuly Restored on %s "
msgstr " Restaurades Correctament en %s "
#
-#: ../../standalone/drakbackup_.c:2877
+#: ../../standalone/drakbackup_.c:2953
msgid " Restore Configuration "
msgstr " Configuració de Restauració "
-#: ../../standalone/drakbackup_.c:2895
+#: ../../standalone/drakbackup_.c:2971
msgid "OK to restore the other files."
msgstr "D'acord per a restaurar els altres fitxers."
-#: ../../standalone/drakbackup_.c:2912
+#: ../../standalone/drakbackup_.c:2988
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
"Llista d'usuaris per a restaurar (només és important la data més recent per "
"usuari)"
#
-#: ../../standalone/drakbackup_.c:2975
+#: ../../standalone/drakbackup_.c:3066
msgid "Backup the system files before:"
msgstr "Abans còpia de seguretat de fitxers del sistema:"
#
-#: ../../standalone/drakbackup_.c:2977
+#: ../../standalone/drakbackup_.c:3068
msgid "please choose the date to restore"
msgstr "Si us plau, seleccioneu la data a restaurar"
#
-#: ../../standalone/drakbackup_.c:3014
+#: ../../standalone/drakbackup_.c:3105
msgid "Use Hard Disk to backup"
msgstr "Utilitzar el Disc Dur per a fer la còpia de seguretat"
#
-#: ../../standalone/drakbackup_.c:3017
+#: ../../standalone/drakbackup_.c:3108
msgid "Please enter the directory to save:"
msgstr "Si us plau, subministreu el directori per a desar:"
#
-#: ../../standalone/drakbackup_.c:3060
+#: ../../standalone/drakbackup_.c:3151
msgid "FTP Connection"
msgstr "Connexió FTP"
#
-#: ../../standalone/drakbackup_.c:3067
+#: ../../standalone/drakbackup_.c:3158
msgid "Secure Connection"
msgstr "Connexió Segura"
#
-#: ../../standalone/drakbackup_.c:3093
+#: ../../standalone/drakbackup_.c:3184
msgid "Restore from Hard Disk."
msgstr "Restaura des del disc dur."
-#: ../../standalone/drakbackup_.c:3095
+#: ../../standalone/drakbackup_.c:3186
msgid "Please enter the directory where backups are stored"
msgstr "Si us plau, entreu el directori on les còpies es guarden"
#
-#: ../../standalone/drakbackup_.c:3157
+#: ../../standalone/drakbackup_.c:3254
msgid "Select another media to restore from"
msgstr "Si us plau, seleccioneu un altre medi des del qual restaurar"
#
-#: ../../standalone/drakbackup_.c:3159
+#: ../../standalone/drakbackup_.c:3256
msgid "Other Media"
msgstr "Altres Medis"
#
-#: ../../standalone/drakbackup_.c:3164
+#: ../../standalone/drakbackup_.c:3261
msgid "Restore system"
msgstr "Restaura el Sistema"
#
-#: ../../standalone/drakbackup_.c:3165
+#: ../../standalone/drakbackup_.c:3262
msgid "Restore Users"
msgstr "Restaura els Usuaris"
-#: ../../standalone/drakbackup_.c:3166
+#: ../../standalone/drakbackup_.c:3263
msgid "Restore Other"
msgstr "Restaura Altres"
-#: ../../standalone/drakbackup_.c:3168
+#: ../../standalone/drakbackup_.c:3265
msgid "select path to restore (instead of /)"
msgstr "seleccioneu camí al qual restaurar ( en comptes de / )"
-#: ../../standalone/drakbackup_.c:3172
+#: ../../standalone/drakbackup_.c:3269
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
"Fer nova còpia de seguretat abans de restaurar (només per les còpies "
"incrementals.)"
-#: ../../standalone/drakbackup_.c:3174
+#: ../../standalone/drakbackup_.c:3271
msgid "Remove user directories before restore."
msgstr "Esborrar directoris d'usuaris abans de restaurar."
-#: ../../standalone/drakbackup_.c:3232
+#: ../../standalone/drakbackup_.c:3384
+msgid ""
+"Restore Selected\n"
+"Catalog Entry"
+msgstr ""
+
+#
+#: ../../standalone/drakbackup_.c:3394
+#, fuzzy
+msgid ""
+"Restore Selected\n"
+"Files"
+msgstr "Elimina el seleccionat"
+
+#: ../../standalone/drakbackup_.c:3411
+#, fuzzy
+msgid ""
+"Change\n"
+"Restore Path"
+msgstr "Restaura Altres"
+
+#: ../../standalone/drakbackup_.c:3477
+#, fuzzy, c-format
+msgid "Backup files not found at %s."
+msgstr "Els fitxers de la còpia de seguretat estan corromputs"
+
+#: ../../standalone/drakbackup_.c:3490
+#, c-format
+msgid ""
+"Insert the CD with volume label %s\n"
+" in the CD drive under mount point /mnt/cdrom"
+msgstr ""
+
+#
+#: ../../standalone/drakbackup_.c:3490
+#, fuzzy
+msgid "Restore From CD"
+msgstr "Restaura des del disc dur."
+
+#: ../../standalone/drakbackup_.c:3492
+#, c-format
+msgid "Not the correct CD label. Disk is labelled %s."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3502
+#, c-format
+msgid ""
+"Insert the tape with volume label %s\n"
+" in the tape drive device %s"
+msgstr ""
+
+#
+#: ../../standalone/drakbackup_.c:3502
+#, fuzzy
+msgid "Restore From Tape"
+msgstr "Restaura la taula de particions"
+
+#: ../../standalone/drakbackup_.c:3504
+#, c-format
+msgid "Not the correct tape label. Tape is labelled %s."
+msgstr ""
+
+#
+#: ../../standalone/drakbackup_.c:3524
+#, fuzzy
+msgid "Restore Via Network"
+msgstr "Restaura els Usuaris"
+
+#: ../../standalone/drakbackup_.c:3524
+#, c-format
+msgid "Restore Via Network Protocol: %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3525
+#, fuzzy
+msgid "Host Name"
+msgstr "Nom de l'ordinador central"
+
+#: ../../standalone/drakbackup_.c:3526
+msgid "Host Path or Module"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3533
+#, fuzzy
+msgid "Password required"
+msgstr "Contrasenya"
+
+#: ../../standalone/drakbackup_.c:3539
+#, fuzzy
+msgid "Username required"
+msgstr "Nom d'usuari"
+
+#: ../../standalone/drakbackup_.c:3542
+#, fuzzy
+msgid "Hostname required"
+msgstr "Nom de l'ordinador central: "
+
+#: ../../standalone/drakbackup_.c:3547
+msgid "Path or Module required"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3560
+msgid "Files Restored..."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3563
+#, fuzzy
+msgid "Restore Failed..."
+msgstr "Restaura Altres"
+
+#: ../../standalone/drakbackup_.c:3801
msgid "Restore all backups"
msgstr "Restaurar totes les còpies"
#
-#: ../../standalone/drakbackup_.c:3241
+#: ../../standalone/drakbackup_.c:3810
msgid "Custom Restore"
msgstr "Restauració Personalitzada"
+#: ../../standalone/drakbackup_.c:3856
+msgid "CD in place - continue."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3862
+msgid "Browse to new restore repository."
+msgstr ""
+
+#
+#: ../../standalone/drakbackup_.c:3865
+#, fuzzy
+msgid "Restore From Catalog"
+msgstr "Restaura la taula de particions"
+
#
-#: ../../standalone/drakbackup_.c:3287 ../../standalone/drakbackup_.c:3320
-#: ../../standalone/drakbackup_.c:3346 ../../standalone/drakbackup_.c:3373
-#: ../../standalone/drakbackup_.c:3400 ../../standalone/drakbackup_.c:3460
-#: ../../standalone/drakbackup_.c:3487 ../../standalone/drakbackup_.c:3513
+#: ../../standalone/drakbackup_.c:3893
+#, fuzzy
+msgid "Restore Progress"
+msgstr "Restaura els Usuaris"
+
+#
+#: ../../standalone/drakbackup_.c:3935 ../../standalone/drakbackup_.c:3968
+#: ../../standalone/drakbackup_.c:3994 ../../standalone/drakbackup_.c:4021
+#: ../../standalone/drakbackup_.c:4048 ../../standalone/drakbackup_.c:4108
+#: ../../standalone/drakbackup_.c:4135 ../../standalone/drakbackup_.c:4165
+#: ../../standalone/drakbackup_.c:4191
msgid "Previous"
msgstr "Anterior"
#
-#: ../../standalone/drakbackup_.c:3291 ../../standalone/drakbackup_.c:3377
+#: ../../standalone/drakbackup_.c:3939 ../../standalone/drakbackup_.c:4025
#: ../../standalone/logdrake_.c:223
msgid "Save"
msgstr "Desa"
#
-#: ../../standalone/drakbackup_.c:3350
+#: ../../standalone/drakbackup_.c:3998
msgid "Build Backup"
msgstr "Construeix la còpia de seguretat"
#
-#: ../../standalone/drakbackup_.c:3404 ../../standalone/drakbackup_.c:3974
+#: ../../standalone/drakbackup_.c:4052 ../../standalone/drakbackup_.c:4632
msgid "Restore"
msgstr "Restaura"
-#: ../../standalone/drakbackup_.c:3553
-msgid ""
-"Please Build backup before to restore it...\n"
-" or verify that your path to save is correct."
-msgstr ""
-"Si us plau Construiu la còpia de seguretat abans de restaurar-la...\n"
-" o verifiqueu que el camí per a desar és correcte."
-
-#: ../../standalone/drakbackup_.c:3574
+#: ../../standalone/drakbackup_.c:4231
+#, fuzzy
msgid ""
-"Error during sendmail\n"
-" your report mail was not sent\n"
+"Error during sendmail.\n"
+" Your report mail was not sent.\n"
" Please configure sendmail"
msgstr ""
"Error durant sendmail\n"
" el vostre missatge d'informe no ha estat enviat\n"
" Si us plau configureu el sendmail"
-#: ../../standalone/drakbackup_.c:3598
+#: ../../standalone/drakbackup_.c:4255
#, fuzzy
msgid ""
"The following packages need to be installed:\n"
" @list_of_rpm_to_install"
msgstr "Ara s'instal·laran els paquets següents"
-#: ../../standalone/drakbackup_.c:3621
+#: ../../standalone/drakbackup_.c:4278
msgid ""
"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
@@ -11609,19 +12138,19 @@ msgstr ""
"Error durant l'enviament del fitxer via FTP.\n"
" Si us plau corregiu la configuració de FTP."
-#: ../../standalone/drakbackup_.c:3644
+#: ../../standalone/drakbackup_.c:4301
msgid "Please select data to restore..."
msgstr "Si us plau, seleccioneu les dades per a restaurar..."
-#: ../../standalone/drakbackup_.c:3665
+#: ../../standalone/drakbackup_.c:4322
msgid "Please select media for backup..."
msgstr "Si us plau seleccioneu el medi per a la còpia..."
-#: ../../standalone/drakbackup_.c:3687
+#: ../../standalone/drakbackup_.c:4344
msgid "Please select data to backup..."
msgstr "Si us plau seleccioneu les dades per fer la còpia..."
-#: ../../standalone/drakbackup_.c:3709
+#: ../../standalone/drakbackup_.c:4366
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
@@ -11629,68 +12158,68 @@ msgstr ""
"No s'ha trobat el fitxer de configuració \n"
"si us plau feu clic en Auxiliar o Avançat."
-#: ../../standalone/drakbackup_.c:3730
+#: ../../standalone/drakbackup_.c:4387
msgid "Under Devel ... please wait."
msgstr "Sota Desenvolupament ... si us plau espereu."
#
-#: ../../standalone/drakbackup_.c:3811
+#: ../../standalone/drakbackup_.c:4468
msgid "Backup system files"
msgstr "Còpia de seguretat dels fitxers del sistema"
#
-#: ../../standalone/drakbackup_.c:3813
+#: ../../standalone/drakbackup_.c:4470
msgid "Backup user files"
msgstr "Còpia de seguretat de fitxers d'usuari"
#
-#: ../../standalone/drakbackup_.c:3815
+#: ../../standalone/drakbackup_.c:4472
msgid "Backup other files"
msgstr "Còpia de seguretat d'altres fitxers"
-#: ../../standalone/drakbackup_.c:3817 ../../standalone/drakbackup_.c:3850
+#: ../../standalone/drakbackup_.c:4474 ../../standalone/drakbackup_.c:4507
msgid "Total Progress"
msgstr "Progrés Total"
-#: ../../standalone/drakbackup_.c:3841
+#: ../../standalone/drakbackup_.c:4498
msgid "files sending by FTP"
msgstr "fitxers que s'estan enviant per FTP"
#
-#: ../../standalone/drakbackup_.c:3845
+#: ../../standalone/drakbackup_.c:4502
msgid "Sending files..."
msgstr "Enviant els fitxers..."
#
-#: ../../standalone/drakbackup_.c:3931
+#: ../../standalone/drakbackup_.c:4588
msgid "Backup Now from configuration file"
msgstr "Fes la Còpia de Seguretat des del fitxer de configuració"
#
-#: ../../standalone/drakbackup_.c:3936
+#: ../../standalone/drakbackup_.c:4593
msgid "View Backup Configuration."
msgstr "Veure la Configuració de la Còpia de Seguretat"
#
-#: ../../standalone/drakbackup_.c:3956
+#: ../../standalone/drakbackup_.c:4614
msgid "Wizard Configuration"
msgstr "Auxiliar de Configuració"
#
-#: ../../standalone/drakbackup_.c:3961
+#: ../../standalone/drakbackup_.c:4619
msgid "Advanced Configuration"
msgstr "Configuració Avançada"
#
-#: ../../standalone/drakbackup_.c:3966
+#: ../../standalone/drakbackup_.c:4624
msgid "Backup Now"
msgstr "Fes Còpia de Seguretat"
-#: ../../standalone/drakbackup_.c:3996
+#: ../../standalone/drakbackup_.c:4658
msgid "Drakbackup"
msgstr "Drakbackup"
-#: ../../standalone/drakbackup_.c:4045
+#: ../../standalone/drakbackup_.c:4707
msgid ""
"options description:\n"
"\n"
@@ -11751,7 +12280,7 @@ msgstr ""
" \n"
"\n"
-#: ../../standalone/drakbackup_.c:4075
+#: ../../standalone/drakbackup_.c:4737
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -11765,7 +12294,7 @@ msgstr ""
" definir myhostname o mydomain en /etc/postfix/main.cf\n"
"\n"
-#: ../../standalone/drakbackup_.c:4083
+#: ../../standalone/drakbackup_.c:4745
msgid ""
"options description:\n"
"\n"
@@ -11843,28 +12372,29 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:4122
+#: ../../standalone/drakbackup_.c:4784
+#, fuzzy
msgid ""
"restore description:\n"
" \n"
-"Only the most recent date will be used ,because with incremental \n"
-"backups it is necesarry to restore one by one each older backups.\n"
+"Only the most recent date will be used, because with incremental \n"
+"backups it is necessary to restore one by one each older backup.\n"
"\n"
-"So if you don't like to restore a user please unselect all his\n"
-"check box.\n"
+"So if you don't want to restore a user please unselect all their\n"
+"check boxes.\n"
"\n"
-"Otherwise, you are able to select only one of this\n"
+"Otherwise, you are able to select only one of these.\n"
"\n"
" - Incremental Backups:\n"
"\n"
"\tThe incremental backup is the most powerful \n"
-"\toption to use backup, this option allow you \n"
-"\tto backup all your data the first time, and \n"
-"\tonly the changed after.\n"
-"\tSo you will be able during the restore\n"
+"\toption to use. This option allows you to \n"
+"\tbackup all of your data the first time, and \n"
+"\tonly the changed data after.\n"
+"\tSo you will be able, during the restore\n"
"\tstep, to restore your data from a specified\n"
"\tdate.\n"
-"\tIf you have not selected this options all\n"
+"\tIf you have not selected this option all\n"
"\told backups are deleted before each backup. \n"
"\n"
"\n"
@@ -11895,18 +12425,18 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:4148 ../../standalone/drakbackup_.c:4225
+#: ../../standalone/drakbackup_.c:4810 ../../standalone/drakbackup_.c:4887
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
" Copyright (C) 2001 MandrakeSoft per DUPONT Sebastien <dupont_s\\@epita.fr>"
-#: ../../standalone/drakbackup_.c:4150 ../../standalone/drakbackup_.c:4227
+#: ../../standalone/drakbackup_.c:4812 ../../standalone/drakbackup_.c:4889
msgid ""
" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
-#: ../../standalone/drakbackup_.c:4152 ../../standalone/drakbackup_.c:4229
+#: ../../standalone/drakbackup_.c:4814 ../../standalone/drakbackup_.c:4891
msgid ""
" This program is free software; you can redistribute it and/or modify\n"
" it under the terms of the GNU General Public License as published by\n"
@@ -11936,7 +12466,7 @@ msgstr ""
" amb el programa; si no és així, escriuviu a la Free Software\n"
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
-#: ../../standalone/drakbackup_.c:4166
+#: ../../standalone/drakbackup_.c:4828
msgid ""
"Description:\n"
"\n"
@@ -12012,7 +12542,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:4204
+#: ../../standalone/drakbackup_.c:4866
msgid ""
"options description:\n"
"\n"
@@ -12031,7 +12561,7 @@ msgstr ""
"dur abans d'enviar-la al servidor.\n"
"\n"
-#: ../../standalone/drakbackup_.c:4213
+#: ../../standalone/drakbackup_.c:4875
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -12053,7 +12583,7 @@ msgstr ""
"dades. És important de tenir cura i no modificar a mà els \n"
"fitxers de còpia de seguretat.\n"
-#: ../../standalone/drakbackup_.c:4243
+#: ../../standalone/drakbackup_.c:4905
msgid ""
"Description:\n"
"\n"
@@ -12169,9 +12699,9 @@ msgstr ""
msgid "Synchronization tool"
msgstr ""
-#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:85
-#: ../../standalone/drakbug_.c:150 ../../standalone/drakbug_.c:152
-#: ../../standalone/drakbug_.c:156
+#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:86
+#: ../../standalone/drakbug_.c:151 ../../standalone/drakbug_.c:153
+#: ../../standalone/drakbug_.c:157
#, fuzzy
msgid "Standalone Tools"
msgstr "Eines de consola"
@@ -12220,26 +12750,26 @@ msgstr "Printerdrake"
msgid "Configuration Wizards"
msgstr "Auxiliars de configuració"
-#: ../../standalone/drakbug_.c:96
+#: ../../standalone/drakbug_.c:97
#, fuzzy
msgid "Application:"
msgstr "Autenticació"
#
-#: ../../standalone/drakbug_.c:97
+#: ../../standalone/drakbug_.c:98
msgid "Package: "
msgstr "Paquet: "
-#: ../../standalone/drakbug_.c:98
+#: ../../standalone/drakbug_.c:99
msgid "Kernel:"
msgstr ""
-#: ../../standalone/drakbug_.c:99
+#: ../../standalone/drakbug_.c:100
#, fuzzy
msgid "Release: "
msgstr "Si us plau, espereu"
-#: ../../standalone/drakbug_.c:114
+#: ../../standalone/drakbug_.c:115
msgid ""
"\n"
"\n"
@@ -12252,22 +12782,22 @@ msgid ""
msgstr ""
#
-#: ../../standalone/drakbug_.c:135
+#: ../../standalone/drakbug_.c:136
#, fuzzy
msgid "Report"
msgstr "Port"
#
-#: ../../standalone/drakbug_.c:165
+#: ../../standalone/drakbug_.c:166
#, fuzzy
msgid "Not installed"
msgstr "Post Desinstal·lació"
-#: ../../standalone/drakbug_.c:182
+#: ../../standalone/drakbug_.c:183
msgid "connecting to Bugzilla wizard ..."
msgstr ""
-#: ../../standalone/drakbug_.c:189
+#: ../../standalone/drakbug_.c:190
#, fuzzy
msgid "No browser available! Please install one"
msgstr "Les instàncies estaran disponibles després d'instal·lar a %s"
@@ -12728,7 +13258,7 @@ msgstr "Llista de Fonts"
#
#: ../../standalone/drakfont_.c:909
-msgid "Choose the applications that will support the fonts :"
+msgid "Choose the applications that will support the fonts:"
msgstr "Escolliu l'aplicació que suportarà les fonts :"
#: ../../standalone/drakfont_.c:918
@@ -12810,19 +13340,19 @@ msgstr "Esborrar fonts del vostre sistema"
msgid "Post Uninstall"
msgstr "Post Desinstal·lació"
-#: ../../standalone/drakgw_.c:42 ../../standalone/drakgw_.c:195
+#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:188
msgid "Internet Connection Sharing"
msgstr "Connexió a Internet compartida"
-#: ../../standalone/drakgw_.c:121
+#: ../../standalone/drakgw_.c:119
msgid "Sorry, we support only 2.4 kernels."
msgstr "Ho sento, només suportem el nuclis(kernels) 2.4"
-#: ../../standalone/drakgw_.c:133
+#: ../../standalone/drakgw_.c:130
msgid "Internet Connection Sharing currently enabled"
msgstr "La connexió a Internet compartida està habilitada"
-#: ../../standalone/drakgw_.c:134
+#: ../../standalone/drakgw_.c:131
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -12834,31 +13364,31 @@ msgstr ""
"\n"
"Què voleu fer?"
-#: ../../standalone/drakgw_.c:138
+#: ../../standalone/drakgw_.c:135
msgid "disable"
msgstr "inhabilita"
-#: ../../standalone/drakgw_.c:138 ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:135 ../../standalone/drakgw_.c:160
msgid "dismiss"
msgstr "deixa-ho córrer"
-#: ../../standalone/drakgw_.c:138 ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:135 ../../standalone/drakgw_.c:160
msgid "reconfigure"
msgstr "torna a configurar"
-#: ../../standalone/drakgw_.c:141
+#: ../../standalone/drakgw_.c:138
msgid "Disabling servers..."
msgstr "S'estan inhabilitant els servidors..."
-#: ../../standalone/drakgw_.c:149
+#: ../../standalone/drakgw_.c:146
msgid "Internet connection sharing is now disabled."
msgstr "Ara, la compartició de la connexió a Internet està inhabilitada."
-#: ../../standalone/drakgw_.c:158
+#: ../../standalone/drakgw_.c:155
msgid "Internet Connection Sharing currently disabled"
msgstr "La connexió a Internet compartida està inhabilitada"
-#: ../../standalone/drakgw_.c:159
+#: ../../standalone/drakgw_.c:156
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
@@ -12870,19 +13400,19 @@ msgstr ""
"\n"
"Què voleu fer?"
-#: ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:160
msgid "enable"
msgstr "habilita"
-#: ../../standalone/drakgw_.c:170
+#: ../../standalone/drakgw_.c:167
msgid "Enabling servers..."
msgstr "S'estan habilitant els servidors..."
-#: ../../standalone/drakgw_.c:175
+#: ../../standalone/drakgw_.c:172
msgid "Internet connection sharing is now enabled."
msgstr "Ara, la connexió compartida a Internet està habilitada."
-#: ../../standalone/drakgw_.c:196
+#: ../../standalone/drakgw_.c:189
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
"With that feature, other computers on your local network will be able to use "
@@ -12899,21 +13429,21 @@ msgstr ""
"Nota: per configurar una xarxa d'àrea local (LAN), us cal un adaptador de "
"xarxa dedicat."
-#: ../../standalone/drakgw_.c:222
+#: ../../standalone/drakgw_.c:215
#, c-format
msgid "Interface %s (using module %s)"
msgstr "Interfície %s (utilitzant el mòdul %s)"
-#: ../../standalone/drakgw_.c:223
+#: ../../standalone/drakgw_.c:216
#, c-format
msgid "Interface %s"
msgstr "Interfície %s"
-#: ../../standalone/drakgw_.c:231
+#: ../../standalone/drakgw_.c:224
msgid "No network adapter on your system!"
msgstr "No teniu cap adaptador de xarxa al sistema!"
-#: ../../standalone/drakgw_.c:232
+#: ../../standalone/drakgw_.c:225
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
@@ -12921,11 +13451,11 @@ msgstr ""
"No s'ha detectat cap adaptador de xarxa ethernet al sistema. Si us plau, "
"executeu l'eina de configuració de maquinari."
-#: ../../standalone/drakgw_.c:238
+#: ../../standalone/drakgw_.c:231
msgid "Network interface"
msgstr "Interfície de la xarxa"
-#: ../../standalone/drakgw_.c:239
+#: ../../standalone/drakgw_.c:232
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -12940,7 +13470,7 @@ msgstr ""
"\n"
"Ara configuraré la vostra xarxa d'àrea local amb aquest adaptador."
-#: ../../standalone/drakgw_.c:248
+#: ../../standalone/drakgw_.c:241
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
@@ -12949,11 +13479,11 @@ msgstr ""
"a la vostra xarxa d'àrea local."
#
-#: ../../standalone/drakgw_.c:266
+#: ../../standalone/drakgw_.c:259
msgid "Network interface already configured"
msgstr "l'intefície de xarxa ja està configurada"
-#: ../../standalone/drakgw_.c:267
+#: ../../standalone/drakgw_.c:260
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -12969,16 +13499,16 @@ msgstr ""
"Ho podeu fer manualment però heu de saber què feu."
#
-#: ../../standalone/drakgw_.c:272
+#: ../../standalone/drakgw_.c:265
msgid "Automatic reconfiguration"
msgstr "Reconfiguració automàtica"
#
-#: ../../standalone/drakgw_.c:273
+#: ../../standalone/drakgw_.c:266
msgid "Show current interface configuration"
msgstr "Mostra la configuració actual de la interfície"
-#: ../../standalone/drakgw_.c:275
+#: ../../standalone/drakgw_.c:268
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -12995,7 +13525,7 @@ msgstr ""
"Atribució IP: %s\n"
"Controlador: %s"
-#: ../../standalone/drakgw_.c:287
+#: ../../standalone/drakgw_.c:280
msgid ""
"I can keep your current configuration and assume you already set up a DHCP "
"server; in that case please verify I correctly read the C-Class Network that "
@@ -13015,58 +13545,46 @@ msgstr ""
"servidor DHCP vós mateix.\n"
"\n"
-#: ../../standalone/drakgw_.c:292
+#: ../../standalone/drakgw_.c:285
msgid "C-Class Local Network"
msgstr "Xarxa Local de Classe C"
#
-#: ../../standalone/drakgw_.c:293
+#: ../../standalone/drakgw_.c:286
msgid "(This) DHCP Server IP"
msgstr "(Aquest) IP del Servidor DHCP"
-#: ../../standalone/drakgw_.c:294
+#: ../../standalone/drakgw_.c:287
msgid "Re-configure interface and DHCP server"
msgstr "Reconfigurar interfície i Servidor DHCP"
-#: ../../standalone/drakgw_.c:301
+#: ../../standalone/drakgw_.c:294
msgid "The Local Network did not finish with `.0', bailing out."
msgstr "La Xarxa Local no finalitza amb '.0', ho deixem córrer."
-#: ../../standalone/drakgw_.c:312
+#: ../../standalone/drakgw_.c:305
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr ""
"S'ha trobat un conflicte potencial d'adreça LAN en la configuració actual de "
"%s!\n"
-#: ../../standalone/drakgw_.c:320
-msgid "Firewalling configuration detected!"
-msgstr "S'ha detectat la configuració del sistema de tallafocs!"
-
-#: ../../standalone/drakgw_.c:321
-msgid ""
-"Warning! An existing firewalling configuration has been detected. You may "
-"need some manual fix after installation."
-msgstr ""
-"Atenció! S'ha detectat una configuració existent del sistema de tallafocs. "
-"Potser us caldrà fer algun ajustament manual després de la instal·lació."
-
-#: ../../standalone/drakgw_.c:328
+#: ../../standalone/drakgw_.c:315
msgid "Configuring..."
msgstr "S'està configurant..."
-#: ../../standalone/drakgw_.c:329
+#: ../../standalone/drakgw_.c:316
msgid "Configuring scripts, installing software, starting servers..."
msgstr ""
"S'estan configurant les seqüències, instal·lant el programari, iniciant els "
"servidors..."
-#: ../../standalone/drakgw_.c:365
+#: ../../standalone/drakgw_.c:352
#, c-format
msgid "Problems installing package %s"
msgstr "Hi ha hagut problemes en instal·lar el paquet %s"
-#: ../../standalone/drakgw_.c:549
+#: ../../standalone/drakgw_.c:485
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
@@ -13077,23 +13595,23 @@ msgstr ""
"vostra xarxa d'àrea local utilitzant la configuració automàtica de xarxa "
"(DHCP)."
-#: ../../standalone/drakgw_.c:566
+#: ../../standalone/drakgw_.c:504
msgid "The setup has already been done, but it's currently disabled."
msgstr "La configuració ja s'ha realitzat, però ara està inhabilitada."
-#: ../../standalone/drakgw_.c:567
+#: ../../standalone/drakgw_.c:505
msgid "The setup has already been done, and it's currently enabled."
msgstr "La configuració ja s'ha realitzat i ara està habilitada."
-#: ../../standalone/drakgw_.c:568
+#: ../../standalone/drakgw_.c:506
msgid "No Internet Connection Sharing has ever been configured."
msgstr "No s'ha configurat mai cap connexió compartida a Internet."
-#: ../../standalone/drakgw_.c:573
+#: ../../standalone/drakgw_.c:511
msgid "Internet connection sharing configuration"
msgstr "Configuració de la compartició de la connexió a Internet"
-#: ../../standalone/drakgw_.c:580
+#: ../../standalone/drakgw_.c:518
#, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -13108,6 +13626,172 @@ msgstr ""
"\n"
"Feu clic a Configura per executar l'auxiliar de configuració."
+#: ../../standalone/draksound_.c:46
+#, fuzzy
+msgid "No Sound Card detected!"
+msgstr "No s'ha detectat cap targeta de TV!"
+
+#: ../../standalone/draksound_.c:47
+#, fuzzy
+msgid ""
+"No Sound Card has been detected on your machine. Please verify that a Linux-"
+"supported Sound Card is correctly plugged in.\n"
+"\n"
+"\n"
+"You can visit our hardware database at:\n"
+"\n"
+"\n"
+"http://www.linux-mandrake.com/en/hardware.php3"
+msgstr ""
+"No s'ha detectat cap targeta de TV en el vostre ordinador. Si us plau "
+"verifiqueu que la targeta de Video/TV amb suport per a Linux estigui "
+"correctament insertada.\n"
+"\n"
+"\n"
+"Podeu visitar la nostra base de dades de maquinari a:\n"
+"\n"
+"\n"
+"http://www.linux-mandrake.com/en/hardware.php3"
+
+#: ../../standalone/draksplash_.c:32
+msgid "package ImageMagick is required for correct working"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:76
+#, fuzzy
+msgid "first step creation"
+msgstr "creació de discs d'arrencada"
+
+#: ../../standalone/draksplash_.c:77
+#, fuzzy
+msgid "final resolution"
+msgstr "Resolució"
+
+#
+#: ../../standalone/draksplash_.c:78 ../../standalone/draksplash_.c:170
+#, fuzzy
+msgid "choose image file"
+msgstr "Trieu un fitxer"
+
+#: ../../standalone/draksplash_.c:79
+#, fuzzy
+msgid "Theme name"
+msgstr "Nom de compartició"
+
+#: ../../standalone/draksplash_.c:81
+msgid "make bootsplash step 2"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:82
+#, fuzzy
+msgid "go to lilosplash configuration"
+msgstr "Configuració després de la instal·lació"
+
+#: ../../standalone/draksplash_.c:83
+#, fuzzy
+msgid "quit"
+msgstr "Surt"
+
+#: ../../standalone/draksplash_.c:84
+#, fuzzy
+msgid "save theme"
+msgstr "Instal·la el sistema"
+
+#: ../../standalone/draksplash_.c:85
+msgid "browse"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:98 ../../standalone/draksplash_.c:159
+#, fuzzy
+msgid "Configure bootsplash picture"
+msgstr "Configura els serveis"
+
+#: ../../standalone/draksplash_.c:99
+msgid "x coordinate of text box in number of character"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:100
+msgid "y coordinate of text box in number of character"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:101
+msgid "text width"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:102
+msgid "text box height"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:103
+msgid "the progress bar x coordinate of its upper left corner"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:104
+msgid "the progress bar y coordinate of its upper left corner"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:105
+msgid "the width of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:106
+msgid "the heigth of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:107
+msgid "the color of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:119
+#, fuzzy
+msgid "go back"
+msgstr "Loopback"
+
+#: ../../standalone/draksplash_.c:120
+#, fuzzy
+msgid "preview"
+msgstr "dispositiu"
+
+#: ../../standalone/draksplash_.c:121
+#, fuzzy
+msgid "choose color"
+msgstr "Escolliu un monitor"
+
+#: ../../standalone/draksplash_.c:124
+msgid "Display logo on Console"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:125
+msgid "Make kernel message quiet by default"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:161 ../../standalone/draksplash_.c:330
+#, c-format
+msgid "This theme haven't yet any bootsplash in %s !"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:213
+msgid "saving Bootsplash theme..."
+msgstr ""
+
+#
+#: ../../standalone/draksplash_.c:436
+#, fuzzy
+msgid "ProgressBar color selection"
+msgstr "Selecció del model d'impressora"
+
+#
+#: ../../standalone/draksplash_.c:454
+#, fuzzy
+msgid "You must choose an image file first!"
+msgstr "Heu d'escollir/escriure una impressora/dispositiu!"
+
+#
+#: ../../standalone/draksplash_.c:463
+#, fuzzy
+msgid "Generating preview ..."
+msgstr "S'estan detectant els dispositius..."
+
#: ../../standalone/drakxtv_.c:49
msgid ""
"XawTV isn't installed!\n"
@@ -13209,11 +13893,11 @@ msgstr ""
"entreu la vostra normativa de tv i el país"
#: ../../standalone/drakxtv_.c:109
-msgid "TV norm :"
+msgid "TV norm:"
msgstr "Normativa TV :"
#: ../../standalone/drakxtv_.c:110
-msgid "Area :"
+msgid "Area:"
msgstr "Àrea :"
#: ../../standalone/drakxtv_.c:114
@@ -13301,7 +13985,7 @@ msgstr ""
"El canvi està fet, però perquè sigui efectiu heu de sortir de la sessió "
"actual"
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:517
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:515
msgid "logdrake"
msgstr "logdrake"
@@ -13481,8 +14165,9 @@ msgid "service setting"
msgstr "parametritzant el servei"
#: ../../standalone/logdrake_.c:431
+#, fuzzy
msgid ""
-"You will receive an alert if one of the selected service is no more running"
+"You will receive an alert if one of the selected services is no more running"
msgstr ""
"Rebreu una alerta si algun dels serveis seleccionats deixa de funcionar"
@@ -13506,20 +14191,20 @@ msgstr "Configuració de l'alerta"
msgid "Please enter your email address below "
msgstr "Si us plau, entreu la contrasenya"
-#: ../../standalone/logdrake_.c:499
+#: ../../standalone/logdrake_.c:497
msgid "Save as.."
msgstr "Anomena i desa..."
-#: ../../standalone/mousedrake_.c:43
+#: ../../standalone/mousedrake_.c:45
msgid "Please, choose the type of your mouse."
msgstr "Si us plau, seleccioneu el vostre tipus de ratolí."
-#: ../../standalone/mousedrake_.c:57
+#: ../../standalone/mousedrake_.c:58
msgid "Emulate third button?"
msgstr "Voleu emular el tercer botó?"
#
-#: ../../standalone/printerdrake_.c:48
+#: ../../standalone/printerdrake_.c:57
msgid "Reading printer data ..."
msgstr "S'està llegint les dades de impressió..."
@@ -13532,22 +14217,33 @@ msgstr "S'estan detectant els dispositius..."
msgid "Test ports"
msgstr "Ports de comprovació"
-#: ../../standalone/scannerdrake_.c:52
+#: ../../standalone/scannerdrake_.c:53 ../../standalone/scannerdrake_.c:68
+#: ../../standalone/scannerdrake_.c:81
#, c-format
-msgid "%s found on %s, configure it ?"
+msgid "The %s is not supported by this version of Mandrake Linux."
+msgstr ""
+
+#: ../../standalone/scannerdrake_.c:56
+#, fuzzy, c-format
+msgid "%s found on %s, configure it?"
msgstr "%s trobat en %s, configurar-lo ?"
-#
#: ../../standalone/scannerdrake_.c:59
+#, c-format
+msgid "%s is not in the scanner database, configure it manually?"
+msgstr ""
+
+#
+#: ../../standalone/scannerdrake_.c:65
msgid "Select a scanner"
msgstr "Seleccioneu un scanner"
-#: ../../standalone/scannerdrake_.c:79
+#: ../../standalone/scannerdrake_.c:93
#, c-format
msgid "This %s scanner is unsupported"
msgstr "Aquest scanner %s no se suporta"
-#: ../../standalone/scannerdrake_.c:93
+#: ../../standalone/scannerdrake_.c:107
#, c-format
msgid ""
"Scannerdrake was not able to detect your %s scanner.\n"
@@ -13557,11 +14253,11 @@ msgstr ""
"Si us plau seleccioneu el dispositiu en el qual teniu l'scanner"
#
-#: ../../standalone/scannerdrake_.c:95
+#: ../../standalone/scannerdrake_.c:109
msgid "choose device"
msgstr "Escolliu dispositiu"
-#: ../../standalone/scannerdrake_.c:101
+#: ../../standalone/scannerdrake_.c:115
#, c-format
msgid ""
"This %s scanner must be configured by printerdrake.\n"
@@ -13572,7 +14268,7 @@ msgstr ""
"Podeu executar printerdrake des del Centre de Control Mandrake en la secció "
"de Maquinari."
-#: ../../standalone/scannerdrake_.c:106
+#: ../../standalone/scannerdrake_.c:120
#, c-format
msgid ""
"Your %s scanner has been configured.\n"
@@ -13583,48 +14279,18 @@ msgstr ""
"Ara podeu scannejar documents utilitzant ``XSane'' des de Multimedia/Gràfics "
"en el menú d'aplicacions."
-#: ../../standalone/service_harddrake_.c:57
+#: ../../standalone/service_harddrake_.c:39
#, c-format
msgid "Some devices in the \"%s\" hardware class were removed:\n"
msgstr ""
-#: ../../standalone/service_harddrake_.c:61
+#: ../../standalone/service_harddrake_.c:43
#, c-format
msgid ""
"\n"
"Some devices in the %s class were added:\n"
msgstr ""
-#: ../../standalone/tinyfirewall_.c:30
-msgid "Firewalling Configuration"
-msgstr "Configuració del sistema de tallafocs"
-
-#: ../../standalone/tinyfirewall_.c:43
-msgid "Firewalling configuration"
-msgstr "Configuració del sistema de tallafocs"
-
-#: ../../standalone/tinyfirewall_.c:78
-msgid ""
-"Firewalling\n"
-"\n"
-"You already have set up a firewall.\n"
-"Click on Configure to change or remove the firewall"
-msgstr ""
-"Sistema de tallafocs\n"
-"\n"
-"Ja heu configurat un tallafocs.\n"
-"Feu clic a Configura per canviar o eliminar el tallafoc"
-
-#: ../../standalone/tinyfirewall_.c:82
-msgid ""
-"Firewalling\n"
-"\n"
-"Click on Configure to set up a standard firewall"
-msgstr ""
-"Sistema de tallafocs\n"
-"\n"
-"Feu clic a Configura per configurar un tallafocs estàndard"
-
#: ../../steps.pm_.c:14
msgid "Choose your language"
msgstr "Escolliu el vostre idioma"
@@ -13698,227 +14364,7 @@ msgstr "Instal·la actualitzacions del sistema"
msgid "Exit install"
msgstr "Surt de la instal·lació"
-#: ../../tinyfirewall.pm_.c:9
-msgid ""
-"tinyfirewall configurator\n"
-"\n"
-"This configures a personal firewall for this Mandrake Linux machine.\n"
-"For a powerful dedicated firewall solution, please look to the\n"
-"specialized MandrakeSecurity Firewall distribution."
-msgstr ""
-"Configurador del tinyfirewall\n"
-"\n"
-"Amb això es configura un tallafocs personal per a aquest ordinador Linux "
-"Mandrake.\n"
-"Per a una potent solució de tallafocs dedicada, consulteu si us plau la "
-"distribució especialitzada MandrakeSecurity Firewall."
-
-#: ../../tinyfirewall.pm_.c:14
-msgid ""
-"We'll now ask you questions about which services you'd like to allow\n"
-"the Internet to connect to. Please think carefully about these\n"
-"questions, as your computer's security is important.\n"
-"\n"
-"Please, if you're not currently using one of these services, firewall\n"
-"it off. You can change this configuration anytime you like by\n"
-"re-running this application!"
-msgstr ""
-"Ara us farem preguntes sobre els serveis a què voleu autoritzar que\n"
-"Internet us connecti. Si us plau, penseu-hi a fons perquè la seguretat\n"
-"del vostre ordinador és important.\n"
-"\n"
-"Si us plau, si un moment donat no esteu utilitzant algun d'aquests serveis,\n"
-"desactiveu-ne el tallafocs. Podeu canviar aquesta configuració sempre que\n"
-"vulgueu tornant a executar aquesta aplicació!"
-
-#: ../../tinyfirewall.pm_.c:21
-msgid ""
-"Are you running a web server on this machine that you need the whole\n"
-"Internet to see? If you are running a webserver that only needs to be\n"
-"accessed by this machine, you can safely answer NO here.\n"
-"\n"
-msgstr ""
-"Esteu executant un servidor de web en aquest ordinador que necessiteu que\n"
-"pugui veure tothom a Internet? Si esteu executant un servidor de web a què\n"
-"només ha d'accedir aquest ordinador, aquí podeu respondre tranquil·lament "
-"NO.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:26
-msgid ""
-"Are you running a name server on this machine? If you didn't set one\n"
-"up to give away IP and zone information to the whole Internet, please\n"
-"answer no.\n"
-"\n"
-msgstr ""
-"Esteu executant un servidor de noms en aquest ordinador? Si no n'heu\n"
-"configurat cap per proporcionar la IP i la informació de zona a tothom a\n"
-"Internet, si us plau responeu NO.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:31
-msgid ""
-"Do you want to allow incoming Secure Shell (ssh) connections? This\n"
-"is a telnet-replacement that you might use to login. If you're using\n"
-"telnet now, you should definitely switch to ssh. telnet is not\n"
-"encrypted -- so some attackers can steal your password if you use\n"
-"it. ssh is encrypted and doesn't allow for this eavesdropping."
-msgstr ""
-"Voleu autoritzar les connexions Secure Shell (ssh) d'entrada? Es tracta\n"
-"d'una substitució del Telnet que podeu utilitzar per entrar. Si ara esteu\n"
-"utilitzant el Telnet, passeu-vos a l'ssh sense cap mena de dubte; el\n"
-"Telnet no està xifrat, de manera que us poden robar la contrasenya si\n"
-"l'utilitzeu, mentre que l'ssh està xifrat i no permet cap mena d'intercepció."
-
-#: ../../tinyfirewall.pm_.c:36
-msgid ""
-"Do you want to allow incoming telnet connections?\n"
-"This is horribly unsafe, as we explained in the previous screen. We\n"
-"strongly recommend answering No here and using ssh in place of\n"
-"telnet.\n"
-msgstr ""
-"Voleu autoritzar les connexions Telnet d'entrada?\n"
-"Això és tremendament insegur, com hem dit a la pantalla anterior. Us\n"
-"recomanem vivament que respongueu No aquí i que utilitzeu l'ssh en comptes\n"
-"del Telnet.\n"
-
-#: ../../tinyfirewall.pm_.c:41
-msgid ""
-"Are you running an FTP server here that you need accessible to the\n"
-"Internet? If you are, we strongly recommend that you only use it for\n"
-"Anonymous transfers. Any passwords sent by FTP can be stolen by some\n"
-"attackers, since FTP also uses no encryption for transferring passwords.\n"
-msgstr ""
-"Esteu executant un servidor d'FTP que necessiteu que sigui accessible a\n"
-"Internet? Si és així, us recomanen vivament que només l'utilitzeu per a\n"
-"transferències anònimes, ja que qualsevol contrasenya que s'envia per FTP\n"
-"pot ser robada, atès que l'FTP no utilitza xifratge per a la transferència\n"
-"de contrasenyes.\n"
-
-#: ../../tinyfirewall.pm_.c:46
-msgid ""
-"Are you running a mail server here? If you're sending you \n"
-"messages through pine, mutt or any other text-based mail client,\n"
-"you probably are. Otherwise, you should firewall this off.\n"
-"\n"
-msgstr ""
-"Esteu executant un servidor de correu? Si esteu enviant els missatges\n"
-"a través del pine, el mutt o qualsevol altre client de correu basat en\n"
-"text, probablement és així. En cas contrari, desactiveu-ne el tallafocs.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:51
-msgid ""
-"Are you running a POP or IMAP server here? This would\n"
-"be used to host non-web-based mail accounts for people via \n"
-"this machine.\n"
-"\n"
-msgstr ""
-"Esteu executant un servidor POP o IMAP? Això s'utilitzaria\n"
-"per allotjar comptes de correu dels usuaris, no basats en web,\n"
-"mitjançant aquest ordinador.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:56
-msgid ""
-"You appear to be running a 2.2 kernel. If your network IP\n"
-"is automatically set by a computer in your home or office \n"
-"(dynamically assigned), we need to allow for this. Is\n"
-"this the case?\n"
-msgstr ""
-"Sembla que esteu utilitzant un nucli 2.2. Si l'ordinador de\n"
-"casa o de l'oficina estableix automàticament la IP de la vostra\n"
-"xarxa (assignació dinàmica), us cal autoritzar això. És aquest el cas?\n"
-
-#: ../../tinyfirewall.pm_.c:61
-msgid ""
-"Is your computer getting time syncronized to another computer?\n"
-"Mostly, this is used by medium-large Unix/Linux organizations\n"
-"to synchronize time for logging and such. If you're not part\n"
-"of a larger office and haven't heard of this, you probably \n"
-"aren't."
-msgstr ""
-"El vostre ordinador està sincronitzat pel que fa al temps amb un altre?\n"
-"Normalment, això ho utilitzen organitzacions Unix/Linux mitjanes-grans\n"
-"per sincronitzar el temps de les entrades i coses així. Si no sou una part\n"
-"d'una oficina gran i no heu sentit parlar d'això, probablement no us trobeu\n"
-"en aquest cas."
-
-#: ../../tinyfirewall.pm_.c:66
-msgid ""
-"Configuration complete. May we write these changes to disk?\n"
-"\n"
-"\n"
-"\n"
-msgstr ""
-"La configuració està completa. Podem desar aquests canvis al disc?\n"
-"\n"
-"\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:82
-#, c-format
-msgid "Can't open %s: %s\n"
-msgstr "No es pot obrir %s: %s\n"
-
-#: ../../tinyfirewall.pm_.c:84
-#, c-format
-msgid "Can't open %s for writing: %s\n"
-msgstr "No s'ha pogut obrir %s per escriure-hi: %s\n"
-
-#: ../../tinyfirewall.pm_.c:178
-msgid "No I don't need DHCP"
-msgstr "No, no necessito DHCP"
-
-#: ../../tinyfirewall.pm_.c:178
-msgid "Yes I need DHCP"
-msgstr "Si, necessito DHCP"
-
-#: ../../tinyfirewall.pm_.c:179
-msgid "No I don't need NTP"
-msgstr "No, no necessito NTP"
-
-#: ../../tinyfirewall.pm_.c:179
-msgid "Yes I need NTP"
-msgstr "Si, necessito NTP"
-
-#: ../../tinyfirewall.pm_.c:180 ../../tinyfirewall.pm_.c:184
-msgid "Don't Save"
-msgstr "No Desis"
-
-#: ../../tinyfirewall.pm_.c:180 ../../tinyfirewall.pm_.c:184
-#: ../../tinyfirewall.pm_.c:204
-msgid "Save & Quit"
-msgstr "Desa i Surt"
-
-#
-#: ../../tinyfirewall.pm_.c:195 ../../tinyfirewall.pm_.c:199
-msgid "Firewall Configuration Wizard"
-msgstr "Auxiliar de configuració del sistema de tallafocs"
-
-#: ../../tinyfirewall.pm_.c:197
-msgid "No (firewall this off from the internet)"
-msgstr "No (aïlla-la d'internet amb el tallafocs)"
-
-#: ../../tinyfirewall.pm_.c:198
-msgid "Yes (allow this through the firewall)"
-msgstr "Si (permet que passi el tallafocs)"
-
-#
-#: ../../tinyfirewall.pm_.c:230
-msgid "Please Wait... Verifying installed packages"
-msgstr "Si us plau, espereu... S'està verificant els pquets instal·lats"
-
-#: ../../tinyfirewall.pm_.c:236
-#, c-format
-msgid ""
-"Failure installing the needed packages : %s and Bastille.\n"
-" Try to install them manually."
-msgstr ""
-"Hi ha hagut errros instal·lant els paquets necessitats : %s i Bastille.\n"
-" Provi d'instal·lar-los manualment."
-
-#: ../../ugtk.pm_.c:619
+#: ../../ugtk.pm_.c:594
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
@@ -14052,6 +14498,10 @@ msgid "Graphical Environment"
msgstr "Entorn gràfic"
#: ../../share/compssUsers:999
+msgid "Development"
+msgstr "Desenvolupament"
+
+#: ../../share/compssUsers:999
msgid "Apache, Pro-ftpd"
msgstr "Apache i Pro-ftpd"
@@ -14164,8 +14614,346 @@ msgstr "Multimèdia - Gravació de CD"
msgid "Scientific Workstation"
msgstr "Estació científica de treball"
-#~ msgid "$mode: $warning"
-#~ msgstr "$mode: $warning"
+#~ msgid ""
+#~ "The first time you try the X configuration, you may not be very "
+#~ "satisfied\n"
+#~ "with its display (screen is too small, shifted left or right...). Hence,\n"
+#~ "even if X starts up correctly, DrakX then asks you if the configuration\n"
+#~ "suits you. It will also propose to change it by displaying a list of "
+#~ "valid\n"
+#~ "modes it could find, asking you to select one.\n"
+#~ "\n"
+#~ "As a last resort, if you still cannot get X to work, choose \"Change\n"
+#~ "graphics card\", select \"Unlisted card\", and when prompted on which\n"
+#~ "server, choose \"FBDev\". This is a failsafe option which works with any\n"
+#~ "modern graphics card. Then choose \"Test again\" to be sure."
+#~ msgstr ""
+#~ "la primera vegada que heu provat la configuració de X, podeu no estar "
+#~ "gaire satisfet\n"
+#~ "amb la presentació (pantalla massa petita, correguda amb a l'esquerra o "
+#~ "dreta, ...). Per tant,\n"
+#~ "tot i que X inicïi correctament, DrakX li preguntarà si la configuració "
+#~ "li agrada.\n"
+#~ "Li proposarà de canviar-la bó i proporcionant-li una llista de modes "
+#~ "vàlids\n"
+#~ "que ha trobat, perquè en seleccioni un.\n"
+#~ "\n"
+#~ "Com a última opció, si encara no pot fer funcionar les X , escolliu "
+#~ "\"Canviar\n"
+#~ "targeta gràfica\", seleccioneu \"Unlisted card\", i quan se us pregunti "
+#~ "quin\n"
+#~ "servidor, escolliu \"FBDev\". Aquesta és una opció de seguretat que "
+#~ "funciona en qualsevol\n"
+#~ "targeta gràfica moderna. Aleshores escolliu \"Test again\" per estar "
+#~ "segur."
+
+#
+#~ msgid "Internet and Messaging"
+#~ msgstr "Internet i Missatgeria"
+
+#
+#~ msgid "Multimedia and Graphics"
+#~ msgstr "Multimèdia i Gràfics"
+
+#~ msgid ""
+#~ "Mandrake Linux 8.2 provides 11 different graphical desktop environments "
+#~ "and window managers to choose from including GNOME 1.4, KDE 2.2.2, Window "
+#~ "Maker 0.8, and the rest"
+#~ msgstr ""
+#~ "Mandrake Linux 8.2 proporciona 11 diferents entorns d'escritori gràfics i "
+#~ "gestors de finestres per a triar incloent GNOME 1.4, KDE 2.2.2, Window "
+#~ "Maker 0.8, i la resta"
+
+#
+#~ msgid "Server Software"
+#~ msgstr "Programari del servidor"
+
+#~ msgid "MandrakeCampus"
+#~ msgstr "MandrakeCampus"
+
+#~ msgid ""
+#~ "Would you like to learn Linux simply, quickly, and for free? MandrakeSoft "
+#~ "provides free Linux training, as well as a way to test your progress, at "
+#~ "MandrakeCampus -- our online training center"
+#~ msgstr ""
+#~ "Voleu aprendre Linux simplement, ràpidament, i gratuïtament? MandrakeSoft "
+#~ "proporciona entrenament de Linux gratuït, així com una manera de "
+#~ "comprovar els vostres progressos, a MandrakeCampus -- el nostre centre "
+#~ "d'ensenyament a Internet"
+
+#~ msgid ""
+#~ "Quality support from the Linux Community, and from MandrakeSoft, is just "
+#~ "around the corner. And if you're already a Linux veteran, become an "
+#~ "\"Expert\" and share your knowledge at our support website"
+#~ msgstr ""
+#~ "Un suport de qualitat de la Comunitat Linux, i de MandrakeSoft, és a un "
+#~ "clic del ratolí. I vós sou un veterà del Linux, convertiu-vos en \"Expert"
+#~ "\" i compartiu els vostres coneixements en la nostra web de suport"
+
+#~ msgid "MandrakeConsulting"
+#~ msgstr "MandrakeConsulting"
+
+#~ msgid ""
+#~ "For all of your IT projects, our consultants are ready to analyze your "
+#~ "requirements and offer a customized solution. Benefit from MandrakeSoft's "
+#~ "vast experience as a Linux producer to provide a true IT alternative for "
+#~ "your business organization"
+#~ msgstr ""
+#~ "Per a tots els vostres projectes en TI, els nostres consultors estan "
+#~ "preparats per a analitzar els vostres requeriments i oferir una solució "
+#~ "personalitzada. Beneficieu-vos de la gran experiència de MandrakeSoft com "
+#~ "a productor de Linux per a proporcionar una certera alternativa en TI per "
+#~ "a la vostra empresa"
+
+#
+#~ msgid "MandrakeStore"
+#~ msgstr "MandrakeStore"
+
+#~ msgid ""
+#~ "For more information on MandrakeSoft's Professional Services and "
+#~ "commercial offerings, please see the following web page:"
+#~ msgstr ""
+#~ "Per més informació sobre els Serveis Professionals de MandrakeSoft i "
+#~ "ofertes comercials, aneu a la següent pàgina web:"
+
+#~ msgid "LBA (doesn't work on old BIOSes)"
+#~ msgstr "LBA (no funciona en BIOS antics)"
+
+#~ msgid "You don't have any partitions!"
+#~ msgstr "No teniu cap partició!"
+
+#~ msgid ""
+#~ "DiskDrake failed to read correctly the partition table.\n"
+#~ "Continue at your own risk!"
+#~ msgstr ""
+#~ "El DiskDrake no ha pogut llegir correctament la taula de particions.\n"
+#~ "Si continueu, és sota la vostra responsabilitat!"
+
+#~ msgid ""
+#~ "I can't read your partition table, it's too corrupted for me :(\n"
+#~ "I'll try to go on blanking bad partitions"
+#~ msgstr ""
+#~ "No puc llegir la vostra taula de particions, està massa malmesa per a mi :"
+#~ "(\n"
+#~ "Intentaré seguir buidant les particions incorrectes"
+
+#~ msgid ""
+#~ "Please Build backup before to restore it...\n"
+#~ " or verify that your path to save is correct."
+#~ msgstr ""
+#~ "Si us plau Construiu la còpia de seguretat abans de restaurar-la...\n"
+#~ " o verifiqueu que el camí per a desar és correcte."
+
+#~ msgid "Firewalling Configuration"
+#~ msgstr "Configuració del sistema de tallafocs"
+
+#~ msgid "Firewalling configuration"
+#~ msgstr "Configuració del sistema de tallafocs"
+
+#~ msgid ""
+#~ "Firewalling\n"
+#~ "\n"
+#~ "You already have set up a firewall.\n"
+#~ "Click on Configure to change or remove the firewall"
+#~ msgstr ""
+#~ "Sistema de tallafocs\n"
+#~ "\n"
+#~ "Ja heu configurat un tallafocs.\n"
+#~ "Feu clic a Configura per canviar o eliminar el tallafoc"
+
+#~ msgid ""
+#~ "Firewalling\n"
+#~ "\n"
+#~ "Click on Configure to set up a standard firewall"
+#~ msgstr ""
+#~ "Sistema de tallafocs\n"
+#~ "\n"
+#~ "Feu clic a Configura per configurar un tallafocs estàndard"
+
+#~ msgid ""
+#~ "We'll now ask you questions about which services you'd like to allow\n"
+#~ "the Internet to connect to. Please think carefully about these\n"
+#~ "questions, as your computer's security is important.\n"
+#~ "\n"
+#~ "Please, if you're not currently using one of these services, firewall\n"
+#~ "it off. You can change this configuration anytime you like by\n"
+#~ "re-running this application!"
+#~ msgstr ""
+#~ "Ara us farem preguntes sobre els serveis a què voleu autoritzar que\n"
+#~ "Internet us connecti. Si us plau, penseu-hi a fons perquè la seguretat\n"
+#~ "del vostre ordinador és important.\n"
+#~ "\n"
+#~ "Si us plau, si un moment donat no esteu utilitzant algun d'aquests "
+#~ "serveis,\n"
+#~ "desactiveu-ne el tallafocs. Podeu canviar aquesta configuració sempre "
+#~ "que\n"
+#~ "vulgueu tornant a executar aquesta aplicació!"
+
+#~ msgid ""
+#~ "Are you running a web server on this machine that you need the whole\n"
+#~ "Internet to see? If you are running a webserver that only needs to be\n"
+#~ "accessed by this machine, you can safely answer NO here.\n"
+#~ "\n"
+#~ msgstr ""
+#~ "Esteu executant un servidor de web en aquest ordinador que necessiteu "
+#~ "que\n"
+#~ "pugui veure tothom a Internet? Si esteu executant un servidor de web a "
+#~ "què\n"
+#~ "només ha d'accedir aquest ordinador, aquí podeu respondre tranquil·lament "
+#~ "NO.\n"
+#~ "\n"
+
+#~ msgid ""
+#~ "Are you running a name server on this machine? If you didn't set one\n"
+#~ "up to give away IP and zone information to the whole Internet, please\n"
+#~ "answer no.\n"
+#~ "\n"
+#~ msgstr ""
+#~ "Esteu executant un servidor de noms en aquest ordinador? Si no n'heu\n"
+#~ "configurat cap per proporcionar la IP i la informació de zona a tothom a\n"
+#~ "Internet, si us plau responeu NO.\n"
+#~ "\n"
+
+#~ msgid ""
+#~ "Do you want to allow incoming Secure Shell (ssh) connections? This\n"
+#~ "is a telnet-replacement that you might use to login. If you're using\n"
+#~ "telnet now, you should definitely switch to ssh. telnet is not\n"
+#~ "encrypted -- so some attackers can steal your password if you use\n"
+#~ "it. ssh is encrypted and doesn't allow for this eavesdropping."
+#~ msgstr ""
+#~ "Voleu autoritzar les connexions Secure Shell (ssh) d'entrada? Es tracta\n"
+#~ "d'una substitució del Telnet que podeu utilitzar per entrar. Si ara "
+#~ "esteu\n"
+#~ "utilitzant el Telnet, passeu-vos a l'ssh sense cap mena de dubte; el\n"
+#~ "Telnet no està xifrat, de manera que us poden robar la contrasenya si\n"
+#~ "l'utilitzeu, mentre que l'ssh està xifrat i no permet cap mena "
+#~ "d'intercepció."
+
+#~ msgid ""
+#~ "Do you want to allow incoming telnet connections?\n"
+#~ "This is horribly unsafe, as we explained in the previous screen. We\n"
+#~ "strongly recommend answering No here and using ssh in place of\n"
+#~ "telnet.\n"
+#~ msgstr ""
+#~ "Voleu autoritzar les connexions Telnet d'entrada?\n"
+#~ "Això és tremendament insegur, com hem dit a la pantalla anterior. Us\n"
+#~ "recomanem vivament que respongueu No aquí i que utilitzeu l'ssh en "
+#~ "comptes\n"
+#~ "del Telnet.\n"
+
+#~ msgid ""
+#~ "Are you running an FTP server here that you need accessible to the\n"
+#~ "Internet? If you are, we strongly recommend that you only use it for\n"
+#~ "Anonymous transfers. Any passwords sent by FTP can be stolen by some\n"
+#~ "attackers, since FTP also uses no encryption for transferring passwords.\n"
+#~ msgstr ""
+#~ "Esteu executant un servidor d'FTP que necessiteu que sigui accessible a\n"
+#~ "Internet? Si és així, us recomanen vivament que només l'utilitzeu per a\n"
+#~ "transferències anònimes, ja que qualsevol contrasenya que s'envia per "
+#~ "FTP\n"
+#~ "pot ser robada, atès que l'FTP no utilitza xifratge per a la "
+#~ "transferència\n"
+#~ "de contrasenyes.\n"
+
+#~ msgid ""
+#~ "Are you running a mail server here? If you're sending you \n"
+#~ "messages through pine, mutt or any other text-based mail client,\n"
+#~ "you probably are. Otherwise, you should firewall this off.\n"
+#~ "\n"
+#~ msgstr ""
+#~ "Esteu executant un servidor de correu? Si esteu enviant els missatges\n"
+#~ "a través del pine, el mutt o qualsevol altre client de correu basat en\n"
+#~ "text, probablement és així. En cas contrari, desactiveu-ne el tallafocs.\n"
+#~ "\n"
+
+#~ msgid ""
+#~ "Are you running a POP or IMAP server here? This would\n"
+#~ "be used to host non-web-based mail accounts for people via \n"
+#~ "this machine.\n"
+#~ "\n"
+#~ msgstr ""
+#~ "Esteu executant un servidor POP o IMAP? Això s'utilitzaria\n"
+#~ "per allotjar comptes de correu dels usuaris, no basats en web,\n"
+#~ "mitjançant aquest ordinador.\n"
+#~ "\n"
+
+#~ msgid ""
+#~ "You appear to be running a 2.2 kernel. If your network IP\n"
+#~ "is automatically set by a computer in your home or office \n"
+#~ "(dynamically assigned), we need to allow for this. Is\n"
+#~ "this the case?\n"
+#~ msgstr ""
+#~ "Sembla que esteu utilitzant un nucli 2.2. Si l'ordinador de\n"
+#~ "casa o de l'oficina estableix automàticament la IP de la vostra\n"
+#~ "xarxa (assignació dinàmica), us cal autoritzar això. És aquest el cas?\n"
+
+#~ msgid ""
+#~ "Is your computer getting time syncronized to another computer?\n"
+#~ "Mostly, this is used by medium-large Unix/Linux organizations\n"
+#~ "to synchronize time for logging and such. If you're not part\n"
+#~ "of a larger office and haven't heard of this, you probably \n"
+#~ "aren't."
+#~ msgstr ""
+#~ "El vostre ordinador està sincronitzat pel que fa al temps amb un altre?\n"
+#~ "Normalment, això ho utilitzen organitzacions Unix/Linux mitjanes-grans\n"
+#~ "per sincronitzar el temps de les entrades i coses així. Si no sou una "
+#~ "part\n"
+#~ "d'una oficina gran i no heu sentit parlar d'això, probablement no us "
+#~ "trobeu\n"
+#~ "en aquest cas."
+
+#~ msgid ""
+#~ "Configuration complete. May we write these changes to disk?\n"
+#~ "\n"
+#~ "\n"
+#~ "\n"
+#~ msgstr ""
+#~ "La configuració està completa. Podem desar aquests canvis al disc?\n"
+#~ "\n"
+#~ "\n"
+#~ "\n"
+
+#~ msgid "Can't open %s for writing: %s\n"
+#~ msgstr "No s'ha pogut obrir %s per escriure-hi: %s\n"
+
+#~ msgid "No I don't need DHCP"
+#~ msgstr "No, no necessito DHCP"
+
+#~ msgid "Yes I need DHCP"
+#~ msgstr "Si, necessito DHCP"
+
+#~ msgid "No I don't need NTP"
+#~ msgstr "No, no necessito NTP"
+
+#~ msgid "Yes I need NTP"
+#~ msgstr "Si, necessito NTP"
+
+#~ msgid "Don't Save"
+#~ msgstr "No Desis"
+
+#~ msgid "Save & Quit"
+#~ msgstr "Desa i Surt"
+
+#
+#~ msgid "Firewall Configuration Wizard"
+#~ msgstr "Auxiliar de configuració del sistema de tallafocs"
+
+#~ msgid "No (firewall this off from the internet)"
+#~ msgstr "No (aïlla-la d'internet amb el tallafocs)"
+
+#~ msgid "Yes (allow this through the firewall)"
+#~ msgstr "Si (permet que passi el tallafocs)"
+
+#
+#~ msgid "Please Wait... Verifying installed packages"
+#~ msgstr "Si us plau, espereu... S'està verificant els pquets instal·lats"
+
+#~ msgid ""
+#~ "Failure installing the needed packages: %s and Bastille.\n"
+#~ " Try to install them manually."
+#~ msgstr ""
+#~ "Hi ha hagut errros instal·lant els paquets necessitats: %s i Bastille.\n"
+#~ " Provi d'instal·lar-los manualment."
#~ msgid ""
#~ "This level is to be used with care. It makes your system more easy to "
@@ -14196,22 +14984,12 @@ msgstr "Estació científica de treball"
#~ "que accepti connexions de molts clients. Nota: si la seva màquina és "
#~ "només un client d'internet, seria millor escollir un nivell menor"
-#, fuzzy
-#~ msgid "Basic Options"
-#~ msgstr "Opcions"
-
-#, fuzzy
-#~ msgid "Security Checks"
-#~ msgstr "Seguretat"
-
#~ msgid "Data list to include on CDROM."
#~ msgstr "Llista de dades per a incloure en un CDROM."
-#
#~ msgid "Please choose your CD space"
#~ msgstr "Si us plau, escolliu l'espai del CD"
-#
#~ msgid "Please enter the cd writer speed"
#~ msgstr "Si us plau entreu la velocitat d'escriptura del cd"
@@ -14234,10 +15012,6 @@ msgstr "Estació científica de treball"
#~ msgid "Choose a X driver"
#~ msgstr "Escolliu un dispositiu X"
-#
-#~ msgid "X driver"
-#~ msgstr "Dispositiu X"
-
#~ msgid "Choose options for server"
#~ msgstr "Escolliu les opcions per al servidor"
@@ -14250,10 +15024,6 @@ msgstr "Estació científica de treball"
#~ msgid "Resolutions not chosen yet"
#~ msgstr "Encara no s'han escollit les resolucions"
-#~ msgid "Warning: testing this graphics card may freeze your computer"
-#~ msgstr ""
-#~ "Avís: la comprovació d'aquesta targeta gràfica pot penjar-vos l'ordinador"
-
#~ msgid ""
#~ "\n"
#~ "try to change some parameters"
diff --git a/perl-install/share/po/cy.po b/perl-install/share/po/cy.po
index 5c26163d0..258e14e79 100644
--- a/perl-install/share/po/cy.po
+++ b/perl-install/share/po/cy.po
@@ -4,9 +4,9 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: drakfloppy 0.43\n"
-"POT-Creation-Date: 2002-08-21 15:44+0200\n"
-"PO-Revision-Date: 2002-02-23 10:00-0000\n"
+"Project-Id-Version: DrakX\n"
+"POT-Creation-Date: 2002-09-02 20:14+0200\n"
+"PO-Revision-Date: 2002-08-29 22:29-0000\n"
"Last-Translator: Rhoslyn Prys <rhoslyn.prys@ntlworld.com>\n"
"Language-Team: Cymraeg <cy@li.org>\n"
"MIME-Version: 1.0\n"
@@ -49,19 +49,19 @@ msgstr "32 MB"
msgid "64 MB or more"
msgstr "16 MB neu fwy"
-#: ../../Xconfig/card.pm_.c:201
+#: ../../Xconfig/card.pm_.c:203
msgid "Choose a X server"
msgstr "Dewiswch wasanaethwr X"
-#: ../../Xconfig/card.pm_.c:201
+#: ../../Xconfig/card.pm_.c:203
msgid "X server"
msgstr "Gwasanaethwr X"
-#: ../../Xconfig/card.pm_.c:228
+#: ../../Xconfig/card.pm_.c:230
msgid "Multi-head configuration"
msgstr "Ffurfweddiad amlben"
-#: ../../Xconfig/card.pm_.c:229
+#: ../../Xconfig/card.pm_.c:231
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
@@ -69,30 +69,30 @@ msgstr ""
"Mae eich system yn cynnal ffurfweddiad amlben.\n"
"Beth hoffech ei wneud?"
-#: ../../Xconfig/card.pm_.c:284
+#: ../../Xconfig/card.pm_.c:286
msgid "Select the memory size of your graphics card"
msgstr "Dewiswch faint y cof eich cerdyn graffeg"
-#: ../../Xconfig/card.pm_.c:345
+#: ../../Xconfig/card.pm_.c:347
msgid "XFree configuration"
msgstr "Ffurfweddiad XFree"
-#: ../../Xconfig/card.pm_.c:347
+#: ../../Xconfig/card.pm_.c:349
msgid "Which configuration of XFree do you want to have?"
msgstr "Pa ffurfweddiad oXFree hoffech ei gael?"
-#: ../../Xconfig/card.pm_.c:379
+#: ../../Xconfig/card.pm_.c:381
msgid "Configure all heads independently"
msgstr "Ffurfweddu pob pen yn annibynnol"
-#: ../../Xconfig/card.pm_.c:380
+#: ../../Xconfig/card.pm_.c:382
msgid "Use Xinerama extension"
msgstr "Defnyddiwch estyniad Xinerama"
-#: ../../Xconfig/card.pm_.c:384
-#, fuzzy, c-format
+#: ../../Xconfig/card.pm_.c:386
+#, c-format
msgid "Configure only card \"%s\"%s"
-msgstr "Ffurfweddu cerdyn \"%s\" (%s) yn unig"
+msgstr "Ffurfweddu cerdyn \"%s\" %s yn unig"
#: ../../Xconfig/card.pm_.c:398 ../../Xconfig/card.pm_.c:399
#: ../../Xconfig/various.pm_.c:23
@@ -100,13 +100,13 @@ msgstr "Ffurfweddu cerdyn \"%s\" (%s) yn unig"
msgid "XFree %s"
msgstr "XFree86: %s"
-#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:435
+#: ../../Xconfig/card.pm_.c:410 ../../Xconfig/card.pm_.c:436
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s with 3D hardware acceleration"
msgstr "XFree %s gyda cyflymu caledwedd 3D"
-#: ../../Xconfig/card.pm_.c:412
+#: ../../Xconfig/card.pm_.c:413
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -117,18 +117,18 @@ msgstr ""
"Mae eich cerdyn yn cael ei gynnal gan XFree %s efallai bod gwell cefnogaeth "
"yn 2D."
-#: ../../Xconfig/card.pm_.c:414 ../../Xconfig/card.pm_.c:437
+#: ../../Xconfig/card.pm_.c:415 ../../Xconfig/card.pm_.c:438
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr ""
"Mae modd i'ch cerdyn gael cefnogaeth cyflymu caledwedd 3D gyda XFree %s"
-#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:443
+#: ../../Xconfig/card.pm_.c:423 ../../Xconfig/card.pm_.c:444
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s gyda cyflymu caledwedd 3D ARBROFOL"
-#: ../../Xconfig/card.pm_.c:425
+#: ../../Xconfig/card.pm_.c:426
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -141,7 +141,7 @@ msgstr ""
"Mae eich cerdyn yn cael ei gynnal gan XFree %s efallai bod gwell cefnogaeth "
"yn 2D."
-#: ../../Xconfig/card.pm_.c:428 ../../Xconfig/card.pm_.c:445
+#: ../../Xconfig/card.pm_.c:429 ../../Xconfig/card.pm_.c:446
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
@@ -150,53 +150,53 @@ msgstr ""
"Mae modd i'ch cerdyn gael cefnogaeth cyflymu caledwedd 3D gyda XFree %s \n"
"SYLWER CEFNOGAETH ARBROFOL YW HWN AC FE ALL RHEWI EICH CYFRIFIADUR."
-#: ../../Xconfig/card.pm_.c:451
+#: ../../Xconfig/card.pm_.c:452
msgid "Xpmac (installation display driver)"
msgstr "Xpmac (gyrrwr gosod dangoswr)"
-#: ../../Xconfig/main.pm_.c:78 ../../Xconfig/main.pm_.c:79
-#: ../../Xconfig/monitor.pm_.c:94 ../../any.pm_.c:974
+#: ../../Xconfig/main.pm_.c:76 ../../Xconfig/main.pm_.c:77
+#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:977
msgid "Custom"
msgstr "Arddull"
-#: ../../Xconfig/main.pm_.c:104
-#, fuzzy
+#: ../../Xconfig/main.pm_.c:102
msgid "Graphic Card"
-msgstr "Cerdyn graffig"
+msgstr "Cerdyn Graffig"
-#: ../../Xconfig/main.pm_.c:107 ../../Xconfig/monitor.pm_.c:91
+#: ../../Xconfig/main.pm_.c:105 ../../Xconfig/monitor.pm_.c:93
msgid "Monitor"
msgstr "Monitor"
-#: ../../Xconfig/main.pm_.c:110 ../../Xconfig/resolution_and_depth.pm_.c:209
+#: ../../Xconfig/main.pm_.c:108 ../../Xconfig/resolution_and_depth.pm_.c:209
msgid "Resolution"
msgstr "Cydraniad"
-#: ../../Xconfig/main.pm_.c:114
+#: ../../Xconfig/main.pm_.c:113
msgid "Test"
-msgstr ""
+msgstr "Prawf"
-#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:59
-#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/removable.pm_.c:25
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:63
+#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/removable.pm_.c:25
#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "Dewisiadau"
#: ../../Xconfig/main.pm_.c:121 ../../Xconfig/resolution_and_depth.pm_.c:268
-#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:281
+#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:275
#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
-#: ../../interactive.pm_.c:351 ../../interactive/http.pm_.c:104
+#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:104
#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
-#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:156
-#: ../../my_gtk.pm_.c:284 ../../my_gtk.pm_.c:307
-#: ../../standalone/drakbackup_.c:3324 ../../standalone/drakbackup_.c:3419
-#: ../../standalone/drakbackup_.c:3438
+#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:159
+#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310
+#: ../../standalone/drakbackup_.c:3972 ../../standalone/drakbackup_.c:4067
+#: ../../standalone/drakbackup_.c:4086
msgid "Ok"
msgstr "Iawn"
#: ../../Xconfig/main.pm_.c:121 ../../diskdrake/dav.pm_.c:24
-#: ../../printerdrake.pm_.c:2933 ../../standalone/logdrake_.c:224
+#: ../../harddrake/ui.pm_.c:98 ../../printerdrake.pm_.c:3155
+#: ../../standalone/logdrake_.c:224
msgid "Quit"
msgstr "Gadael"
@@ -213,28 +213,27 @@ msgstr ""
"\n"
"%s"
-#: ../../Xconfig/monitor.pm_.c:91
+#: ../../Xconfig/monitor.pm_.c:93
msgid "Choose a monitor"
msgstr "Dewiswch fonitor"
-#: ../../Xconfig/monitor.pm_.c:95
+#: ../../Xconfig/monitor.pm_.c:97
msgid "Plug'n Play"
-msgstr ""
+msgstr "Plug'n Play"
-#: ../../Xconfig/monitor.pm_.c:96 ../../mouse.pm_.c:45
+#: ../../Xconfig/monitor.pm_.c:98 ../../mouse.pm_.c:46
msgid "Generic"
msgstr "Generig"
-#: ../../Xconfig/monitor.pm_.c:97 ../../harddrake/ui.pm_.c:36
-#, fuzzy
+#: ../../Xconfig/monitor.pm_.c:99 ../../harddrake/ui.pm_.c:37
msgid "Vendor"
-msgstr "Dadwneud"
+msgstr "Gwerthwr"
-#: ../../Xconfig/monitor.pm_.c:107
+#: ../../Xconfig/monitor.pm_.c:109
msgid "Plug'n Play probing failed. Please choose a precise monitor"
-msgstr ""
+msgstr "Methodd ymholiad Plug'nPlay. Dewiswch ddangosydd penodol"
-#: ../../Xconfig/monitor.pm_.c:112
+#: ../../Xconfig/monitor.pm_.c:114
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -256,11 +255,11 @@ msgstr ""
"hynny.\n"
"Os oes gennych amheuaeth, dewiswch raddfa is."
-#: ../../Xconfig/monitor.pm_.c:119
+#: ../../Xconfig/monitor.pm_.c:121
msgid "Horizontal refresh rate"
msgstr "Graddfa adfywio llorweddol"
-#: ../../Xconfig/monitor.pm_.c:120
+#: ../../Xconfig/monitor.pm_.c:122
msgid "Vertical refresh rate"
msgstr "Graddfa adfywio fertigol"
@@ -297,36 +296,40 @@ msgstr "Dewiswch y cydraniad a'r dyfnder lliw"
msgid "Graphics card: %s"
msgstr "Cerdyn graffeg: %s"
-#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1015
-#: ../../bootlook.pm_.c:334 ../../diskdrake/smbnfs_gtk.pm_.c:87
-#: ../../install_steps_gtk.pm_.c:412 ../../install_steps_gtk.pm_.c:470
-#: ../../install_steps_interactive.pm_.c:576 ../../interactive.pm_.c:142
-#: ../../interactive.pm_.c:351 ../../interactive/http.pm_.c:105
+#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1018
+#: ../../bootlook.pm_.c:338 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:406 ../../install_steps_gtk.pm_.c:464
+#: ../../install_steps_interactive.pm_.c:560 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:105
#: ../../interactive/newt.pm_.c:174 ../../interactive/stdio.pm_.c:39
-#: ../../interactive/stdio.pm_.c:143 ../../my_gtk.pm_.c:155
-#: ../../my_gtk.pm_.c:159 ../../my_gtk.pm_.c:284
-#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1990
-#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3278
-#: ../../standalone/drakbackup_.c:3311 ../../standalone/drakbackup_.c:3337
-#: ../../standalone/drakbackup_.c:3364 ../../standalone/drakbackup_.c:3391
-#: ../../standalone/drakbackup_.c:3451 ../../standalone/drakbackup_.c:3478
-#: ../../standalone/drakbackup_.c:3504 ../../standalone/drakconnect_.c:115
-#: ../../standalone/drakconnect_.c:147 ../../standalone/drakconnect_.c:289
-#: ../../standalone/drakconnect_.c:537 ../../standalone/drakconnect_.c:679
-#: ../../standalone/drakfloppy_.c:234 ../../standalone/drakfloppy_.c:383
-#: ../../standalone/drakfont_.c:970 ../../standalone/drakgw_.c:598
-#: ../../standalone/logdrake_.c:224 ../../standalone/logdrake_.c:528
-#: ../../standalone/tinyfirewall_.c:64
+#: ../../interactive/stdio.pm_.c:143 ../../my_gtk.pm_.c:158
+#: ../../my_gtk.pm_.c:162 ../../my_gtk.pm_.c:287
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:2124
+#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3926
+#: ../../standalone/drakbackup_.c:3959 ../../standalone/drakbackup_.c:3985
+#: ../../standalone/drakbackup_.c:4012 ../../standalone/drakbackup_.c:4039
+#: ../../standalone/drakbackup_.c:4099 ../../standalone/drakbackup_.c:4126
+#: ../../standalone/drakbackup_.c:4156 ../../standalone/drakbackup_.c:4182
+#: ../../standalone/drakconnect_.c:115 ../../standalone/drakconnect_.c:147
+#: ../../standalone/drakconnect_.c:289 ../../standalone/drakconnect_.c:537
+#: ../../standalone/drakconnect_.c:679 ../../standalone/drakfloppy_.c:234
+#: ../../standalone/drakfloppy_.c:383 ../../standalone/drakfont_.c:970
+#: ../../standalone/drakgw_.c:536 ../../standalone/logdrake_.c:224
+#: ../../standalone/logdrake_.c:526
msgid "Cancel"
msgstr "Diddymu"
-#: ../../Xconfig/test.pm_.c:26
+#: ../../Xconfig/test.pm_.c:30
+msgid "Test of the configuration"
+msgstr "Profi'r ffurfweddiad"
+
+#: ../../Xconfig/test.pm_.c:31
msgid "Do you want to test the configuration?"
msgstr "Ydych chi eisiau profi eich ffurfweddiad?"
-#: ../../Xconfig/test.pm_.c:26
-msgid "Test of the configuration"
-msgstr "Profi'r ffurfweddiad"
+#: ../../Xconfig/test.pm_.c:31
+msgid "Warning: testing this graphic card may freeze your computer"
+msgstr "Rhybydd: gall profi'r cerdyn graffig hwn rewi eich cyfrifiadur"
#: ../../Xconfig/various.pm_.c:29
#, c-format
@@ -412,11 +415,18 @@ msgid ""
"\n"
"Do you have this feature?"
msgstr ""
+"Mae'n edrych fel bod gan eich cerdyn graffig gyswlltTV-OUT.\n"
+"Mae modd ei ffurfweddu i weithio drwy byffer ffrâm.\n"
+"\n"
+"Rhaid cysylltu eich cerdyn graffig â'ch teledu cyn cychwyn eich "
+"cyfrifiadur.\n"
+"Dewiswch \"TVout\" yn y llwythwr cychwyn\n"
+"\n"
+"Ydy'r nodwedd hon gennych?"
#: ../../Xconfig/various.pm_.c:84
-#, fuzzy
msgid "What norm is your TV using?"
-msgstr "Pa fath o gysylltiad IDSN?"
+msgstr "Pa norm mae eich teledu yn ei ddefnyddio?"
#: ../../any.pm_.c:108 ../../any.pm_.c:133
msgid "First sector of boot partition"
@@ -462,26 +472,22 @@ msgstr "Cychwyn o DOS/Windows (loadlin)"
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:158 ../../any.pm_.c:190
+#: ../../any.pm_.c:159 ../../any.pm_.c:190
msgid "Bootloader main options"
msgstr "Prif ddewisiadau Bootloader"
-#: ../../any.pm_.c:159 ../../any.pm_.c:191
+#: ../../any.pm_.c:160 ../../any.pm_.c:191
msgid "Bootloader to use"
msgstr "Bootloader ar waith"
-#: ../../any.pm_.c:161
+#: ../../any.pm_.c:162
msgid "Bootloader installation"
msgstr "Gosodiad Bootloader"
-#: ../../any.pm_.c:163 ../../any.pm_.c:193
+#: ../../any.pm_.c:164 ../../any.pm_.c:193
msgid "Boot device"
msgstr "Dyfais cychwyn"
-#: ../../any.pm_.c:164
-msgid "LBA (doesn't work on old BIOSes)"
-msgstr "LBA (nid yw'n gweithio gyda hen BIOSau)"
-
#: ../../any.pm_.c:165
msgid "Compact"
msgstr "Cryno"
@@ -498,16 +504,17 @@ msgstr "Modd fideo"
msgid "Delay before booting default image"
msgstr "Oedi cyn cychwyn delwedd rhagosodedig"
-#: ../../any.pm_.c:170 ../../any.pm_.c:786
+#: ../../any.pm_.c:170 ../../any.pm_.c:788
#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1111 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:743 ../../printerdrake.pm_.c:858
-#: ../../standalone/drakconnect_.c:624 ../../standalone/drakconnect_.c:649
+#: ../../install_steps_interactive.pm_.c:1096 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:850 ../../printerdrake.pm_.c:965
+#: ../../standalone/drakbackup_.c:3528 ../../standalone/drakconnect_.c:624
+#: ../../standalone/drakconnect_.c:649
msgid "Password"
msgstr "Cyfrinair"
-#: ../../any.pm_.c:171 ../../any.pm_.c:787
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../any.pm_.c:171 ../../any.pm_.c:789
+#: ../../install_steps_interactive.pm_.c:1097
msgid "Password (again)"
msgstr "Cyfrinair (eto)"
@@ -542,14 +549,14 @@ msgid ""
msgstr ""
"Dewis Nid yw 'cyfyngu dewisiadau llinell orchymyn' o werth heb gyfrinair"
-#: ../../any.pm_.c:184 ../../any.pm_.c:762
-#: ../../diskdrake/interactive.pm_.c:1180
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../any.pm_.c:184 ../../any.pm_.c:764
+#: ../../diskdrake/interactive.pm_.c:1191
+#: ../../install_steps_interactive.pm_.c:1091
msgid "Please try again"
msgstr "Ceisiwch eto"
-#: ../../any.pm_.c:184 ../../any.pm_.c:762
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../any.pm_.c:184 ../../any.pm_.c:764
+#: ../../install_steps_interactive.pm_.c:1091
msgid "The passwords do not match"
msgstr "Nid yw'r cyfrineiriau'n cydfynd"
@@ -599,16 +606,16 @@ msgstr ""
"Dyma'r cofnodion gwahanol.\n"
"Mae modd i chi ychwanegu rhagor neu newid y rhai presennol."
-#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1483
-#: ../../standalone/drakbackup_.c:1596 ../../standalone/drakfont_.c:1011
+#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1558
+#: ../../standalone/drakbackup_.c:1671 ../../standalone/drakfont_.c:1011
#: ../../standalone/drakfont_.c:1054
msgid "Add"
msgstr "Ychwanegu"
-#: ../../any.pm_.c:257 ../../any.pm_.c:774 ../../diskdrake/dav.pm_.c:60
+#: ../../any.pm_.c:257 ../../any.pm_.c:776 ../../diskdrake/dav.pm_.c:64
#: ../../diskdrake/hd_gtk.pm_.c:153 ../../diskdrake/removable.pm_.c:27
#: ../../diskdrake/smbnfs_gtk.pm_.c:88 ../../interactive/http.pm_.c:153
-#: ../../standalone/drakbackup_.c:2696
+#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2772
msgid "Done"
msgstr "Gorffen"
@@ -620,7 +627,7 @@ msgstr "Newid"
msgid "Which type of entry do you want to add?"
msgstr "Pa fath o gofnod ydych chi eisiau ei ychwanegu?"
-#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1630
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1705
msgid "Linux"
msgstr "Linux"
@@ -714,13 +721,13 @@ msgstr "Oes gennych un arall?"
msgid "Do you have any %s interfaces?"
msgstr "Oes gennych rhyngwynebau %s?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:821 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:283
+#: ../../any.pm_.c:660 ../../any.pm_.c:823 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:286
msgid "No"
msgstr "Na"
-#: ../../any.pm_.c:660 ../../any.pm_.c:820 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:283
+#: ../../any.pm_.c:660 ../../any.pm_.c:822 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:286
msgid "Yes"
msgstr "Iawn"
@@ -741,7 +748,7 @@ msgid "(module %s)"
msgstr "(modiwl %s)"
#: ../../any.pm_.c:689
-#, fuzzy, c-format
+#, c-format
msgid ""
"You may now provide its options to module %s.\n"
"Note that any address should be entered with the prefix 0x like '0x123'"
@@ -824,39 +831,46 @@ msgstr "caniatáu \"su\""
msgid "access to administrative files"
msgstr "mynediad i ffeiliau gweinyddol"
-#: ../../any.pm_.c:758
+#: ../../any.pm_.c:754
+msgid "access to network tools"
+msgstr "mynediad i offer rhwydwaith"
+
+#: ../../any.pm_.c:755
+msgid "access to compilation tools"
+msgstr "mynediad i offer crynhoad"
+
+#: ../../any.pm_.c:760
#, c-format
msgid "(already added %s)"
msgstr "(wedi ychwanegu %s yn barod)"
-#: ../../any.pm_.c:763
+#: ../../any.pm_.c:765
msgid "This password is too simple"
msgstr "Mae'r cyfrinair yn rhy syml"
-#: ../../any.pm_.c:764
+#: ../../any.pm_.c:766
msgid "Please give a user name"
msgstr "Rhowch enw defnyddiwr"
-#: ../../any.pm_.c:765
+#: ../../any.pm_.c:767
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
"Rhaid i'r enw defnyddiwr gynnwys dim ond llythrennau bach, rhifau, '-' a '_'"
-#: ../../any.pm_.c:766
-#, fuzzy
+#: ../../any.pm_.c:768
msgid "The user name is too long"
-msgstr "Mae'r enw defnyddiwr wedi ei ychwanegu yn barod"
+msgstr "Mae'r enw defnyddiwr yn rhy hir"
-#: ../../any.pm_.c:767
+#: ../../any.pm_.c:769
msgid "This user name is already added"
msgstr "Mae'r enw defnyddiwr wedi ei ychwanegu yn barod"
-#: ../../any.pm_.c:771
+#: ../../any.pm_.c:773
msgid "Add user"
msgstr "Ychwanegu defnyddiwr"
-#: ../../any.pm_.c:772
+#: ../../any.pm_.c:774
#, c-format
msgid ""
"Enter a user\n"
@@ -865,32 +879,32 @@ msgstr ""
"Rhowch enw defnyddiwr\n"
"%s"
-#: ../../any.pm_.c:773
+#: ../../any.pm_.c:775
msgid "Accept user"
msgstr "Derbyn defnyddiwr"
-#: ../../any.pm_.c:784
+#: ../../any.pm_.c:786
msgid "Real name"
msgstr "Enw cywir"
-#: ../../any.pm_.c:785 ../../printerdrake.pm_.c:742
-#: ../../printerdrake.pm_.c:857
+#: ../../any.pm_.c:787 ../../printerdrake.pm_.c:849
+#: ../../printerdrake.pm_.c:964
msgid "User name"
msgstr "Enw defnyddiwr"
-#: ../../any.pm_.c:788
+#: ../../any.pm_.c:790
msgid "Shell"
msgstr "Cragen"
-#: ../../any.pm_.c:790
+#: ../../any.pm_.c:792
msgid "Icon"
msgstr "Eicon"
-#: ../../any.pm_.c:817
+#: ../../any.pm_.c:819
msgid "Autologin"
msgstr "Awtomewngofnodi"
-#: ../../any.pm_.c:818
+#: ../../any.pm_.c:820
msgid ""
"I can set up your computer to automatically log on one user.\n"
"Do you want to use this feature?"
@@ -899,54 +913,54 @@ msgstr ""
"defnyddiwr\n"
"Hoffech chi wneud hyn?"
-#: ../../any.pm_.c:822
+#: ../../any.pm_.c:824
msgid "Choose the default user:"
msgstr "Dewis y defnyddiwr rhagosodedig:"
-#: ../../any.pm_.c:823
+#: ../../any.pm_.c:825
msgid "Choose the window manager to run:"
msgstr "Dewiswch y rheolwr ffenestr i rhedeg:"
-#: ../../any.pm_.c:838
+#: ../../any.pm_.c:840
msgid "Please choose a language to use."
msgstr "Dewiswch iaith i'w defnyddio."
-#: ../../any.pm_.c:840
+#: ../../any.pm_.c:842
msgid ""
"Mandrake Linux can support multiple languages. Select\n"
"the languages you would like to install. They will be available\n"
"when your installation is complete and you restart your system."
msgstr "Gallwch ddewis ieithoedd eraill fydd ar gael ar ôl gosod"
-#: ../../any.pm_.c:854 ../../install_steps_interactive.pm_.c:708
+#: ../../any.pm_.c:856 ../../install_steps_interactive.pm_.c:692
#: ../../standalone/drakxtv_.c:73
msgid "All"
msgstr "Popeth"
-#: ../../any.pm_.c:974
+#: ../../any.pm_.c:977
msgid "Allow all users"
msgstr "Caniatáu pob defnyddiwr"
-#: ../../any.pm_.c:974
+#: ../../any.pm_.c:977
msgid "No sharing"
msgstr "Dim rhannu"
-#: ../../any.pm_.c:984 ../../standalone.pm_.c:57
+#: ../../any.pm_.c:987 ../../install_any.pm_.c:1183 ../../standalone.pm_.c:58
#, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "Rhaid i becyn %s gael ei osod. Ydych chi am ei osod?"
-#: ../../any.pm_.c:987
+#: ../../any.pm_.c:990
msgid ""
"You can export using NFS or Samba. Please select which you'd like to use."
msgstr "Medrwch allforio gan ddefnyddio NFS neu Samba. Pa un hoffech chi"
-#: ../../any.pm_.c:995 ../../standalone.pm_.c:61
+#: ../../any.pm_.c:998 ../../install_any.pm_.c:1188 ../../standalone.pm_.c:63
#, c-format
msgid "Mandatory package %s is missing"
msgstr "Mae pecyn gorfodol %s ar goll"
-#: ../../any.pm_.c:1001
+#: ../../any.pm_.c:1004
msgid ""
"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
@@ -954,12 +968,17 @@ msgid ""
"\n"
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
+"Hoffech chi ganiatáu i rhai defnyddwyr rannu eu cyfeiriaduron?\n"
+"Bydd caniatáu hyn yn gadael i ddefnyddwyr glicio ar \"Rhannu\" yn konqueror "
+"a nautilus.\n"
+"\n"
+"\"Addasu\" caniatáu cyfran i'r defnyddwyr.\n"
-#: ../../any.pm_.c:1015
+#: ../../any.pm_.c:1018
msgid "Launch userdrake"
msgstr "Cychwyn userdrake"
-#: ../../any.pm_.c:1017
+#: ../../any.pm_.c:1020
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
@@ -967,31 +986,31 @@ msgstr ""
"Mae rhannu yn ôl defnyddiwr yn defnyddio \"rhannu ffeiliau\" grwp.\n"
"Mae modd defnyddio userdrake i ychwanegu defnyddiwr i'r grwp."
-#: ../../any.pm_.c:1068
+#: ../../any.pm_.c:1071
msgid "Welcome To Crackers"
msgstr "Croeso i Crackers"
-#: ../../any.pm_.c:1069
+#: ../../any.pm_.c:1072
msgid "Poor"
msgstr "Gwael"
-#: ../../any.pm_.c:1070 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1073 ../../mouse.pm_.c:31
msgid "Standard"
msgstr "Safonol"
-#: ../../any.pm_.c:1071
+#: ../../any.pm_.c:1074
msgid "High"
msgstr "Uchel"
-#: ../../any.pm_.c:1072
+#: ../../any.pm_.c:1075
msgid "Higher"
msgstr "Uwch"
-#: ../../any.pm_.c:1073
+#: ../../any.pm_.c:1076
msgid "Paranoid"
msgstr "Paranoia"
-#: ../../any.pm_.c:1076
+#: ../../any.pm_.c:1079
msgid ""
"This level is to be used with care. It makes your system more easy to use,\n"
"but very sensitive: it must not be used for a machine connected to others\n"
@@ -1002,7 +1021,7 @@ msgstr ""
"i'w\n"
"gysylltu ag eraill nag i'r Rhyngrwyd. Does dim cysylltiad drwy gyfrinair."
-#: ../../any.pm_.c:1079
+#: ../../any.pm_.c:1082
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -1010,7 +1029,7 @@ msgstr ""
"Mae'r cyfrinair wedi ei alluogi, ond ni argymellir ei ddefnyddio fel "
"cyfrifiadur rhwydwaith."
-#: ../../any.pm_.c:1080
+#: ../../any.pm_.c:1083
msgid ""
"This is the standard security recommended for a computer that will be used "
"to connect to the Internet as a client."
@@ -1018,7 +1037,7 @@ msgstr ""
"Dyma'r safon sy'n cael ei argymell ar gyfer diogelwch cyfrifiadur fydd yn "
"cael ei gysylltu â'r Rhyngrwyd fel cleient."
-#: ../../any.pm_.c:1081
+#: ../../any.pm_.c:1084
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
@@ -1026,7 +1045,7 @@ msgstr ""
"Mae rhai cyfyngiadau, ac mae rhagor o wiriadau awtomatig yn cael eu rhedeg "
"bob nos"
-#: ../../any.pm_.c:1082
+#: ../../any.pm_.c:1085
msgid ""
"With this security level, the use of this system as a server becomes "
"possible.\n"
@@ -1042,7 +1061,7 @@ msgstr ""
"cysylltiad gan amryw o gleientiaid. Sylwer: os mae cleient yn unig yw eich "
"peiriant ar y Rhyngrwyd, yna mae'n well i chi ddewis lefel is."
-#: ../../any.pm_.c:1085
+#: ../../any.pm_.c:1088
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
"security features are at their maximum."
@@ -1050,33 +1069,31 @@ msgstr ""
"Wedi ei seilio ar y lefel flaenorol, ond mae'r system yn hollol gaeëdig.\n"
"Mae nodweddion diogelwch ar eu uchaf."
-#: ../../any.pm_.c:1091
-#, fuzzy
+#: ../../any.pm_.c:1094
msgid "DrakSec Basic Options"
-msgstr "Dewisiadau"
+msgstr "Dewisiadau Sylfaenol DrakSec"
-#: ../../any.pm_.c:1092
-#, fuzzy
+#: ../../any.pm_.c:1095
msgid "Please choose the desired security level"
msgstr "Dewiswch lefel diogelwch"
-#: ../../any.pm_.c:1095
+#: ../../any.pm_.c:1098
msgid "Security level"
msgstr "Lefel diogelwch"
-#: ../../any.pm_.c:1097
+#: ../../any.pm_.c:1100
msgid "Use libsafe for servers"
msgstr "Defnyddiwch libsafe ar gyfer gwasanaethwyr"
-#: ../../any.pm_.c:1098
+#: ../../any.pm_.c:1101
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
"Llyfrgell sy'n diogelu rhag gorlif byffer ac ymosodiadau llinellau fformatio."
-#: ../../any.pm_.c:1099
+#: ../../any.pm_.c:1102
msgid "Security Administrator (login or email)"
-msgstr ""
+msgstr "Gweinyddwr Diogelwch (mewngfnodi neu e-bost)"
#: ../../any.pm_.c:1189
msgid ""
@@ -1084,6 +1101,9 @@ msgid ""
"allow switching between the different keyboard layouts\n"
"(eg: latin and non latin)"
msgstr ""
+"Yma medrwch ddewis yr allwedd neu gyfuniad allwedd fydd yn\n"
+"caniatáu newid rhwng bysellfyrddau gwahanol (e.e.: lladin neu\n"
+"arall)"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#: ../../bootloader.pm_.c:375
@@ -1103,57 +1123,57 @@ msgstr ""
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:935
+#: ../../bootloader.pm_.c:932
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Croeso i GRUB, y dewiswr systemau gweithredu!"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:938
+#: ../../bootloader.pm_.c:935
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "Defnyddiwch allweddi %c a %c i ddewis pa gofnod i'w amlygu."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:941
+#: ../../bootloader.pm_.c:938
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Gwasgwch Enter i gychwyn y system weithredu, 'g' i olygu'r"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:941
msgid "commands before booting, or 'c' for a command-line."
msgstr "gorchmynion cyn cychwyn, neu 'o' am y llinell orchymyn."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:947
+#: ../../bootloader.pm_.c:944
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "Bydd y cofnod wedi ei amlygu'n cychwyn yn awtomatig ymhen %d eiliad."
-#: ../../bootloader.pm_.c:951
+#: ../../bootloader.pm_.c:948
msgid "not enough room in /boot"
msgstr "dim digon o le yn /boot"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1051
+#: ../../bootloader.pm_.c:1048
msgid "Desktop"
msgstr "Penbwrdd"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1053
+#: ../../bootloader.pm_.c:1050
msgid "Start Menu"
msgstr "Dewislen Cychwyn"
-#: ../../bootloader.pm_.c:1072
+#: ../../bootloader.pm_.c:1069
#, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "Nid oes modd gosod y llwythwr cychwyn ar adran %s\n"
-#: ../../bootlook.pm_.c:45
+#: ../../bootlook.pm_.c:45 ../../standalone/draksplash_.c:25
msgid "no help implemented yet.\n"
msgstr "nid yw cymorth wedi ei weithredu eto.\n"
@@ -1161,8 +1181,8 @@ msgstr "nid yw cymorth wedi ei weithredu eto.\n"
msgid "Boot Style Configuration"
msgstr "Ffurfweddu'r Math o Gychwyn"
-#: ../../bootlook.pm_.c:78 ../../harddrake/ui.pm_.c:59
-#: ../../harddrake/ui.pm_.c:60 ../../standalone/drakfloppy_.c:81
+#: ../../bootlook.pm_.c:78 ../../harddrake/ui.pm_.c:62
+#: ../../harddrake/ui.pm_.c:63 ../../standalone/drakfloppy_.c:81
#: ../../standalone/logdrake_.c:101
msgid "/_File"
msgstr "/_Ffeil"
@@ -1172,7 +1192,7 @@ msgstr "/_Ffeil"
msgid "/File/_Quit"
msgstr "/Ffeil/_Gadael"
-#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:60
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:63
#: ../../standalone/drakfloppy_.c:82 ../../standalone/logdrake_.c:107
msgid "<control>Q"
msgstr "<control>Q"
@@ -1206,102 +1226,110 @@ msgid "Yaboot mode"
msgstr "Modd Yaboot"
#: ../../bootlook.pm_.c:143
-#, fuzzy
msgid "Install themes"
-msgstr "System osod"
+msgstr "Gosod themâu"
#: ../../bootlook.pm_.c:144
msgid "Display theme under console"
-msgstr ""
+msgstr "Dangos thema yn y consol"
-#: ../../bootlook.pm_.c:166
-msgid "Can't create Bootsplash preview"
-msgstr ""
+#: ../../bootlook.pm_.c:145
+msgid "Create new theme"
+msgstr "Creu thema newydd"
-#: ../../bootlook.pm_.c:166 ../../bootlook.pm_.c:184 ../../bootlook.pm_.c:187
-#: ../../bootlook.pm_.c:190 ../../bootlook.pm_.c:220 ../../bootlook.pm_.c:222
-#: ../../bootlook.pm_.c:232 ../../bootlook.pm_.c:241 ../../bootlook.pm_.c:248
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:336
-#: ../../diskdrake/interactive.pm_.c:351 ../../diskdrake/interactive.pm_.c:464
-#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../bootlook.pm_.c:169
+msgid "Can't create Bootsplash preview"
+msgstr "Methu creu rhagolwg Croeso Cychwyn"
+
+#: ../../bootlook.pm_.c:169 ../../bootlook.pm_.c:187 ../../bootlook.pm_.c:190
+#: ../../bootlook.pm_.c:193 ../../bootlook.pm_.c:223 ../../bootlook.pm_.c:225
+#: ../../bootlook.pm_.c:235 ../../bootlook.pm_.c:244 ../../bootlook.pm_.c:251
+#: ../../diskdrake/dav.pm_.c:73 ../../diskdrake/hd_gtk.pm_.c:116
+#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/interactive.pm_.c:355
+#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/interactive.pm_.c:474
+#: ../../diskdrake/smbnfs_gtk.pm_.c:45 ../../fsedit.pm_.c:239
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:365 ../../interactive/http.pm_.c:119
-#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:80
+#: ../../interactive/http.pm_.c:119 ../../interactive/http.pm_.c:120
+#: ../../standalone/draksplash_.c:32
msgid "Error"
msgstr "Gwall"
-#: ../../bootlook.pm_.c:183
+#: ../../bootlook.pm_.c:186
#, c-format
msgid "Backup %s to %s.old"
-msgstr ""
+msgstr "%s to %s.old wrth gefn"
-#: ../../bootlook.pm_.c:184
+#: ../../bootlook.pm_.c:187
msgid "unable to backup lilo message"
-msgstr ""
+msgstr "methu cadw neges lilo wrth gefn"
-#: ../../bootlook.pm_.c:186
-#, fuzzy, c-format
+#: ../../bootlook.pm_.c:189
+#, c-format
msgid "Copy %s to %s"
-msgstr "Copïo %s"
+msgstr "Copïo %s i %s"
-#: ../../bootlook.pm_.c:187
+#: ../../bootlook.pm_.c:190
msgid "can't change lilo message"
-msgstr ""
+msgstr "methu newid neges lilo"
-#: ../../bootlook.pm_.c:190
+#: ../../bootlook.pm_.c:193
msgid "Lilo message not found"
-msgstr ""
+msgstr "Heb ganfod neges lilo"
-#: ../../bootlook.pm_.c:220
+#: ../../bootlook.pm_.c:223
msgid "Can't write /etc/sysconfig/bootsplash."
-msgstr ""
+msgstr "Methu ysgrifennu /etc/sysconfig/bootsplash."
-#: ../../bootlook.pm_.c:220
-#, fuzzy, c-format
+#: ../../bootlook.pm_.c:223
+#, c-format
msgid "Write %s"
-msgstr "XFree86: %s"
+msgstr "Ysgrifennu %s"
-#: ../../bootlook.pm_.c:222
+#: ../../bootlook.pm_.c:225
msgid ""
"Can't write /etc/sysconfig/bootsplash\n"
"File not found."
msgstr ""
+"Methu ysgrifennu /etc/sysconfig/bootsplash.\\\\\n"
+"Heb ganfod y ffeil"
-#: ../../bootlook.pm_.c:233
+#: ../../bootlook.pm_.c:236
#, c-format
msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
-msgstr ""
+msgstr "Methu cychwyn mkinitrd -f /boot/initrd-%s.img %s."
-#: ../../bootlook.pm_.c:236
+#: ../../bootlook.pm_.c:239
#, c-format
-msgid "Make initrd 'mkinird -f /boot/initrd-%s.img %s'."
-msgstr ""
+msgid "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
+msgstr "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
-#: ../../bootlook.pm_.c:242
+#: ../../bootlook.pm_.c:245
msgid ""
"Can't relaunch LiLo!\n"
"Launch \"lilo\" as root in command line to complete LiLo theme installation."
msgstr ""
+"Methu ailgychwyn LiLo!\n"
+"Cychwyn \"lilo\" fel gwraidd ar y linell orchymyn i gwblhau gosod thema "
+"LiLo'n llawn."
-#: ../../bootlook.pm_.c:246
+#: ../../bootlook.pm_.c:249
msgid "Relaunch 'lilo'"
-msgstr ""
+msgstr "Ail gychwyh 'lilo'"
-#: ../../bootlook.pm_.c:248
-#, fuzzy
+#: ../../bootlook.pm_.c:251 ../../standalone/draksplash_.c:161
+#: ../../standalone/draksplash_.c:330 ../../standalone/draksplash_.c:454
msgid "Notice"
-msgstr "NoVideo"
+msgstr "Nodyn"
-#: ../../bootlook.pm_.c:249
+#: ../../bootlook.pm_.c:252
msgid "LiLo and Bootsplash themes installation successfull"
-msgstr ""
+msgstr "Themâu LiLo a Bootsplash wedi eu gosod yn llwyddiannus"
-#: ../../bootlook.pm_.c:249
-#, fuzzy
+#: ../../bootlook.pm_.c:252
msgid "Theme installation failed!"
-msgstr "Dewis dosbarth gosod"
+msgstr "Methodd gosod y thema!"
-#: ../../bootlook.pm_.c:258
+#: ../../bootlook.pm_.c:261
#, c-format
msgid ""
"You are currently using %s as your boot manager.\n"
@@ -1310,23 +1338,21 @@ msgstr ""
"Ryych yn defnyddio %s fel Rheolwr Cychwyn.\n"
"Cliciwch Ffurfweddu i gychwyn dewin gosod"
-#: ../../bootlook.pm_.c:260 ../../standalone/drakbackup_.c:2352
-#: ../../standalone/drakbackup_.c:2362 ../../standalone/drakbackup_.c:2372
-#: ../../standalone/drakbackup_.c:2380 ../../standalone/drakgw_.c:592
-#: ../../standalone/tinyfirewall_.c:58
+#: ../../bootlook.pm_.c:263 ../../standalone/drakbackup_.c:2427
+#: ../../standalone/drakbackup_.c:2437 ../../standalone/drakbackup_.c:2447
+#: ../../standalone/drakbackup_.c:2455 ../../standalone/drakgw_.c:530
msgid "Configure"
msgstr "Ffurfweddu"
-#: ../../bootlook.pm_.c:267
-#, fuzzy
+#: ../../bootlook.pm_.c:270
msgid "Splash selection"
-msgstr "Cadw'r dewis becynnau"
+msgstr "Dewis sgrin croeso"
-#: ../../bootlook.pm_.c:270
+#: ../../bootlook.pm_.c:273
msgid "Themes"
-msgstr ""
+msgstr "Themâu"
-#: ../../bootlook.pm_.c:272
+#: ../../bootlook.pm_.c:275
msgid ""
"\n"
"Select a theme for\n"
@@ -1334,45 +1360,50 @@ msgid ""
"you can choose\n"
"them separatly"
msgstr ""
+"\n"
+"Dewis thema ar\n"
+"gyfer lilo a bootsplash,\n"
+"mae modd eu dewis\n"
+"ar wahân"
-#: ../../bootlook.pm_.c:275
+#: ../../bootlook.pm_.c:278
msgid "Lilo screen"
-msgstr ""
+msgstr "Sgrin Lilo"
-#: ../../bootlook.pm_.c:279
+#: ../../bootlook.pm_.c:283
msgid "Bootsplash"
-msgstr ""
+msgstr "Bootsplash"
-#: ../../bootlook.pm_.c:314
+#: ../../bootlook.pm_.c:318
msgid "System mode"
msgstr "Modd System"
-#: ../../bootlook.pm_.c:316
+#: ../../bootlook.pm_.c:320
msgid "Launch the graphical environment when your system starts"
msgstr "Cychwyn y system X-Window o'r cychwyn"
-#: ../../bootlook.pm_.c:321
+#: ../../bootlook.pm_.c:325
msgid "No, I don't want autologin"
msgstr "Na, tydw i ddim eisiau awto-mewngofnodi"
-#: ../../bootlook.pm_.c:323
+#: ../../bootlook.pm_.c:327
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "Iawn, rwyf eisiau awto-mewngofnodi gyda (defnyddiwr, penbwrdd)"
-#: ../../bootlook.pm_.c:333 ../../network/netconnect.pm_.c:101
+#: ../../bootlook.pm_.c:337 ../../network/netconnect.pm_.c:101
#: ../../standalone/drakTermServ_.c:173 ../../standalone/drakTermServ_.c:300
-#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:3513
-#: ../../standalone/drakbackup_.c:4290 ../../standalone/drakconnect_.c:108
+#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4191
+#: ../../standalone/drakbackup_.c:4952 ../../standalone/drakconnect_.c:108
#: ../../standalone/drakconnect_.c:140 ../../standalone/drakconnect_.c:296
#: ../../standalone/drakconnect_.c:435 ../../standalone/drakconnect_.c:521
#: ../../standalone/drakconnect_.c:564 ../../standalone/drakconnect_.c:667
#: ../../standalone/drakfloppy_.c:376 ../../standalone/drakfont_.c:612
#: ../../standalone/drakfont_.c:799 ../../standalone/drakfont_.c:876
-#: ../../standalone/drakfont_.c:963 ../../standalone/logdrake_.c:521
+#: ../../standalone/drakfont_.c:963 ../../standalone/logdrake_.c:519
msgid "OK"
msgstr "Iawn"
-#: ../../bootlook.pm_.c:403
+#: ../../bootlook.pm_.c:407
#, c-format
msgid "can not open /etc/inittab for reading: %s"
msgstr "maethu agor/etc/inittab ar gyfer darllen: %s"
@@ -1469,49 +1500,50 @@ msgstr "Awstria"
msgid "United States"
msgstr "Yr Unol Daleithiau"
-#: ../../detect_devices.pm_.c:599 ../../detect_devices.pm_.c:641
-#: ../../detect_devices.pm_.c:803
-#, fuzzy
-msgid "Unknown Model"
-msgstr "Model anhysbys"
-
#: ../../diskdrake/dav.pm_.c:23
-#, fuzzy
msgid "New"
-msgstr "newydd"
+msgstr "Newydd"
+
+#: ../../diskdrake/dav.pm_.c:59 ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/smbnfs_gtk.pm_.c:81
+msgid "Unmount"
+msgstr "Dad-osod"
+
+#: ../../diskdrake/dav.pm_.c:60 ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/smbnfs_gtk.pm_.c:82
+msgid "Mount"
+msgstr "Gosod"
-#: ../../diskdrake/dav.pm_.c:57
+#: ../../diskdrake/dav.pm_.c:61
msgid "Server"
msgstr "Gwasanaethwr"
-#: ../../diskdrake/dav.pm_.c:58 ../../diskdrake/interactive.pm_.c:375
-#: ../../diskdrake/interactive.pm_.c:558 ../../diskdrake/interactive.pm_.c:585
+#: ../../diskdrake/dav.pm_.c:62 ../../diskdrake/interactive.pm_.c:379
+#: ../../diskdrake/interactive.pm_.c:568 ../../diskdrake/interactive.pm_.c:595
#: ../../diskdrake/removable.pm_.c:24 ../../diskdrake/removable_gtk.pm_.c:15
#: ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr "Pwynt gosod"
-#: ../../diskdrake/dav.pm_.c:68
-#, fuzzy
+#: ../../diskdrake/dav.pm_.c:81
msgid "Please enter the WebDAV server URL"
-msgstr "Rhowch gyflymder yr ysgrifennydd CD"
+msgstr "Rhowch URL gwasanaehthwr WebDAV"
-#: ../../diskdrake/dav.pm_.c:71
+#: ../../diskdrake/dav.pm_.c:84
msgid "The URL must begin with http:// or https://"
-msgstr ""
+msgstr "Rhaid i'r URL gychwyn gyda http:// neu https://"
-#: ../../diskdrake/dav.pm_.c:92
-#, fuzzy
+#: ../../diskdrake/dav.pm_.c:105
msgid "Server: "
-msgstr "Gwasanaethwr"
+msgstr "Gwasanaethwr:"
-#: ../../diskdrake/dav.pm_.c:93 ../../diskdrake/interactive.pm_.c:435
-#: ../../diskdrake/interactive.pm_.c:1079
-#: ../../diskdrake/interactive.pm_.c:1153
+#: ../../diskdrake/dav.pm_.c:106 ../../diskdrake/interactive.pm_.c:440
+#: ../../diskdrake/interactive.pm_.c:1089
+#: ../../diskdrake/interactive.pm_.c:1164
msgid "Mount point: "
msgstr "Pwynt gosod:"
-#: ../../diskdrake/dav.pm_.c:94 ../../diskdrake/interactive.pm_.c:1159
+#: ../../diskdrake/dav.pm_.c:107 ../../diskdrake/interactive.pm_.c:1170
#, c-format
msgid "Options: %s"
msgstr "Dewisiadau: %s"
@@ -1520,8 +1552,9 @@ msgstr "Dewisiadau: %s"
msgid "Please make a backup of your data first"
msgstr "Gwnewch gopi wrth gefn o'ch data yn gyntaf"
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:924
-#: ../../diskdrake/interactive.pm_.c:933 ../../diskdrake/interactive.pm_.c:999
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:934
+#: ../../diskdrake/interactive.pm_.c:943
+#: ../../diskdrake/interactive.pm_.c:1009
msgid "Read carefully!"
msgstr "Darllenwch yn ofalus!"
@@ -1560,10 +1593,14 @@ msgid "Please click on a partition"
msgstr "Cliciwch ar raniad"
#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
-#: ../../install_steps_gtk.pm_.c:471
+#: ../../install_steps_gtk.pm_.c:465
msgid "Details"
msgstr "Manylion"
+#: ../../diskdrake/hd_gtk.pm_.c:252
+msgid "No hard drives found"
+msgstr "Heb ganfood gyrrwyr caled"
+
#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Ext2"
msgstr "Ext2"
@@ -1588,13 +1625,13 @@ msgstr "SunOS"
msgid "Swap"
msgstr "Swap"
-#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1105
msgid "Empty"
msgstr "Gwag"
-#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:331
-#: ../../install_steps_gtk.pm_.c:389 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1679
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:325
+#: ../../install_steps_gtk.pm_.c:383 ../../mouse.pm_.c:165
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1754
msgid "Other"
msgstr "Arall"
@@ -1602,12 +1639,12 @@ msgstr "Arall"
msgid "Filesystem types:"
msgstr "Mathau ffeil-system:"
-#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:397
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:402
msgid "Create"
msgstr "Creu"
-#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:376
-#: ../../diskdrake/interactive.pm_.c:521 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:380
+#: ../../diskdrake/interactive.pm_.c:531 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "Math"
@@ -1617,7 +1654,7 @@ msgstr "Math"
msgid "Use ``%s'' instead"
msgstr "Defnyddiwch \"%s\" yn lle hynny"
-#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:389
msgid "Delete"
msgstr "Dileu"
@@ -1625,7 +1662,7 @@ msgstr "Dileu"
msgid "Use ``Unmount'' first"
msgstr "Defnyddiwch \"Dad-osod\" yn gyntaf"
-#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:513
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:518
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
@@ -1633,102 +1670,102 @@ msgstr ""
"Wedi newid y math o raniad %s bydd yr holl ddata ar y rhaniad yn cael ei "
"golli"
-#: ../../diskdrake/interactive.pm_.c:173
+#: ../../diskdrake/interactive.pm_.c:174
msgid "Choose a partition"
msgstr "Dewiswch raniad"
-#: ../../diskdrake/interactive.pm_.c:173
+#: ../../diskdrake/interactive.pm_.c:174
msgid "Choose another partition"
msgstr "Dewiswch rhaniad arall"
-#: ../../diskdrake/interactive.pm_.c:198
+#: ../../diskdrake/interactive.pm_.c:199
msgid "Exit"
msgstr "Gadael"
-#: ../../diskdrake/interactive.pm_.c:220
+#: ../../diskdrake/interactive.pm_.c:221
msgid "Toggle to expert mode"
msgstr "Cyffredinol > Arbennigwr"
-#: ../../diskdrake/interactive.pm_.c:220
+#: ../../diskdrake/interactive.pm_.c:221
msgid "Toggle to normal mode"
msgstr "Arbennigwr > Cyffredinol"
-#: ../../diskdrake/interactive.pm_.c:220
+#: ../../diskdrake/interactive.pm_.c:221
msgid "Undo"
msgstr "Dadwneud"
-#: ../../diskdrake/interactive.pm_.c:239
+#: ../../diskdrake/interactive.pm_.c:240
msgid "Continue anyway?"
msgstr "Parhau beth bynnag?"
-#: ../../diskdrake/interactive.pm_.c:244
+#: ../../diskdrake/interactive.pm_.c:245
msgid "Quit without saving"
msgstr "Gorffen heb arbed"
-#: ../../diskdrake/interactive.pm_.c:244
+#: ../../diskdrake/interactive.pm_.c:245
msgid "Quit without writing the partition table?"
msgstr "Gorffen heb ysgrifennu y tabl rhaniadau?"
-#: ../../diskdrake/interactive.pm_.c:249
+#: ../../diskdrake/interactive.pm_.c:250
msgid "Do you want to save /etc/fstab modifications"
msgstr "Ydych eisiau cadw newidiadau /etc/fstab"
-#: ../../diskdrake/interactive.pm_.c:261
+#: ../../diskdrake/interactive.pm_.c:263
msgid "Auto allocate"
msgstr "Awto ddynodi"
-#: ../../diskdrake/interactive.pm_.c:261
+#: ../../diskdrake/interactive.pm_.c:263
msgid "Clear all"
msgstr "Clirio i gyd"
-#: ../../diskdrake/interactive.pm_.c:261
+#: ../../diskdrake/interactive.pm_.c:263
#: ../../install_steps_interactive.pm_.c:214
msgid "More"
msgstr "Rhagor"
-#: ../../diskdrake/interactive.pm_.c:264
+#: ../../diskdrake/interactive.pm_.c:267
msgid "Hard drive information"
msgstr "Gwybodaeth am y ddisg caled"
-#: ../../diskdrake/interactive.pm_.c:294
+#: ../../diskdrake/interactive.pm_.c:298
msgid "All primary partitions are used"
msgstr "Mae pob rhaniad cynradd wedi ei ddefnyddio"
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:299
msgid "I can't add any more partition"
msgstr "Alla'i ddim ychwanegu unrhyw raniadau ychwanegol"
-#: ../../diskdrake/interactive.pm_.c:296
+#: ../../diskdrake/interactive.pm_.c:300
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
msgstr "I gael mwy o raniadau, dilëwch un er mwyn gallu creu rhaniad estynedig"
-#: ../../diskdrake/interactive.pm_.c:306
+#: ../../diskdrake/interactive.pm_.c:310
msgid "Save partition table"
msgstr "Cadw'r tabl rhaniad"
-#: ../../diskdrake/interactive.pm_.c:307
+#: ../../diskdrake/interactive.pm_.c:311
msgid "Restore partition table"
msgstr "Adfer y tabl rhaniad"
-#: ../../diskdrake/interactive.pm_.c:308
+#: ../../diskdrake/interactive.pm_.c:312
msgid "Rescue partition table"
msgstr "Achub y tabl rhaniadau"
-#: ../../diskdrake/interactive.pm_.c:310
+#: ../../diskdrake/interactive.pm_.c:314
msgid "Reload partition table"
msgstr "Ail-lwytho'r tabl rhaniad"
-#: ../../diskdrake/interactive.pm_.c:315
+#: ../../diskdrake/interactive.pm_.c:319
msgid "Removable media automounting"
msgstr "Cyfrwng symudadwy'n awto-osod"
-#: ../../diskdrake/interactive.pm_.c:324 ../../diskdrake/interactive.pm_.c:344
+#: ../../diskdrake/interactive.pm_.c:328 ../../diskdrake/interactive.pm_.c:348
msgid "Select file"
msgstr "Dewiswch ffeil"
-#: ../../diskdrake/interactive.pm_.c:331
+#: ../../diskdrake/interactive.pm_.c:335
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1736,11 +1773,11 @@ msgstr ""
"Nid oes gan y tabl rhaniad wrth gefn yr un maint\n"
"Parhau?"
-#: ../../diskdrake/interactive.pm_.c:345
+#: ../../diskdrake/interactive.pm_.c:349
msgid "Warning"
msgstr "Rhybudd"
-#: ../../diskdrake/interactive.pm_.c:346
+#: ../../diskdrake/interactive.pm_.c:350
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1748,112 +1785,107 @@ msgstr ""
"Rhowch flopi yn y disg-yrrwr\n"
"Mi fydd yr holl wybodaeth ar y fflopi yma yn gael ei ddileu"
-#: ../../diskdrake/interactive.pm_.c:357
+#: ../../diskdrake/interactive.pm_.c:361
msgid "Trying to rescue partition table"
msgstr "Yn trio achub y tabl rhaniadau"
-#: ../../diskdrake/interactive.pm_.c:363
+#: ../../diskdrake/interactive.pm_.c:367
msgid "Detailed information"
msgstr "Gwybodaeth fanwl"
-#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:652
+#: ../../diskdrake/interactive.pm_.c:382 ../../diskdrake/interactive.pm_.c:662
msgid "Resize"
msgstr "Newid maint"
-#: ../../diskdrake/interactive.pm_.c:379 ../../diskdrake/interactive.pm_.c:705
+#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/interactive.pm_.c:715
msgid "Move"
msgstr "Symud"
-#: ../../diskdrake/interactive.pm_.c:380
+#: ../../diskdrake/interactive.pm_.c:384
msgid "Format"
msgstr "Fformatio"
-#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/smbnfs_gtk.pm_.c:82
-msgid "Mount"
-msgstr "Gosod"
-
-#: ../../diskdrake/interactive.pm_.c:382
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Add to RAID"
msgstr "Ychwanegu i RAID"
-#: ../../diskdrake/interactive.pm_.c:383
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Add to LVM"
msgstr "Ychwanegu i LVM"
-#: ../../diskdrake/interactive.pm_.c:384 ../../diskdrake/smbnfs_gtk.pm_.c:81
-msgid "Unmount"
-msgstr "Dad-osod"
-
-#: ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/interactive.pm_.c:390
msgid "Remove from RAID"
msgstr "Tynnu o RAID"
-#: ../../diskdrake/interactive.pm_.c:387
+#: ../../diskdrake/interactive.pm_.c:391
msgid "Remove from LVM"
msgstr "Tynnu o LVM"
-#: ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/interactive.pm_.c:392
msgid "Modify RAID"
msgstr "Newid RAID"
-#: ../../diskdrake/interactive.pm_.c:389
+#: ../../diskdrake/interactive.pm_.c:393
msgid "Use for loopback"
msgstr "Defnyddiwch ar gyfer cylchol"
-#: ../../diskdrake/interactive.pm_.c:428
+#: ../../diskdrake/interactive.pm_.c:433
msgid "Create a new partition"
msgstr "Creu rhaniad newydd"
-#: ../../diskdrake/interactive.pm_.c:431
+#: ../../diskdrake/interactive.pm_.c:436
msgid "Start sector: "
msgstr "Sector dechreuol: "
-#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:805
+#: ../../diskdrake/interactive.pm_.c:438 ../../diskdrake/interactive.pm_.c:815
msgid "Size in MB: "
msgstr "Maint mewn MB: "
-#: ../../diskdrake/interactive.pm_.c:434 ../../diskdrake/interactive.pm_.c:806
+#: ../../diskdrake/interactive.pm_.c:439 ../../diskdrake/interactive.pm_.c:816
msgid "Filesystem type: "
msgstr "Math o ffeilsystem: "
-#: ../../diskdrake/interactive.pm_.c:439
+#: ../../diskdrake/interactive.pm_.c:444
msgid "Preference: "
msgstr "Dewis"
-#: ../../diskdrake/interactive.pm_.c:464
+#: ../../diskdrake/interactive.pm_.c:469
msgid ""
"You can't create a new partition\n"
"(since you reached the maximal number of primary partitions).\n"
"First remove a primary partition and create an extended partition."
msgstr ""
+"Nid oes modd i chi greu rhaniad newydd\n"
+"(gan eich bod wedi cyrraedd y nifer uchaf o raniadau cynradd).\n"
+"Diddymwch raniad cynradd a chreu rhaniad estynedig."
-#: ../../diskdrake/interactive.pm_.c:494
+#: ../../diskdrake/interactive.pm_.c:499
msgid "Remove the loopback file?"
msgstr "Tynnu'r ffeil cylch-ol?"
-#: ../../diskdrake/interactive.pm_.c:519
+#: ../../diskdrake/interactive.pm_.c:529
msgid "Change partition type"
msgstr "Newid math y rhaniad"
-#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:530 ../../diskdrake/removable.pm_.c:48
msgid "Which filesystem do you want?"
msgstr "Pa fath o system ffeil ydych chi eisiau?"
-#: ../../diskdrake/interactive.pm_.c:526
+#: ../../diskdrake/interactive.pm_.c:536
msgid "Switching from ext2 to ext3"
msgstr "Newid o ext2 i ext3"
-#: ../../diskdrake/interactive.pm_.c:556
+#: ../../diskdrake/interactive.pm_.c:566
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "Lle'r hoffech chi odod y ffeil cylch-ol %s?"
-#: ../../diskdrake/interactive.pm_.c:557
+#: ../../diskdrake/interactive.pm_.c:567
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Lle ydych am osod dyfais %s?"
-#: ../../diskdrake/interactive.pm_.c:563
+#: ../../diskdrake/interactive.pm_.c:573
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1862,138 +1894,138 @@ msgstr ""
"gyfer cylch-ol\n"
"Tynnu'r cylch-ol yn gyntaf"
-#: ../../diskdrake/interactive.pm_.c:584
-#, fuzzy, c-format
+#: ../../diskdrake/interactive.pm_.c:594
+#, c-format
msgid "Where do you want to mount %s?"
-msgstr "Lle ydych am osod dyfais %s?"
+msgstr "Lle ydych am osod %s?"
-#: ../../diskdrake/interactive.pm_.c:608
+#: ../../diskdrake/interactive.pm_.c:618
msgid "Computing FAT filesystem bounds"
msgstr "Cyfrifo ffiniau system ffeiliau FAT"
-#: ../../diskdrake/interactive.pm_.c:608 ../../diskdrake/interactive.pm_.c:667
-#: ../../install_interactive.pm_.c:131
+#: ../../diskdrake/interactive.pm_.c:618 ../../diskdrake/interactive.pm_.c:677
+#: ../../install_interactive.pm_.c:133
msgid "Resizing"
msgstr "Newid maint"
-#: ../../diskdrake/interactive.pm_.c:640
+#: ../../diskdrake/interactive.pm_.c:650
msgid "This partition is not resizeable"
msgstr "Nid oes modd newid maint y rhaniad"
-#: ../../diskdrake/interactive.pm_.c:645
+#: ../../diskdrake/interactive.pm_.c:655
msgid "All data on this partition should be backed-up"
msgstr "Dylai'r holl ddata ar y rhaniad gael ei ategu"
-#: ../../diskdrake/interactive.pm_.c:647
+#: ../../diskdrake/interactive.pm_.c:657
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr ""
"Ar ôl newid maint rhaniad %s, bydd yr holl ddata ar y rhaniad yma yn cael ei "
"golli"
-#: ../../diskdrake/interactive.pm_.c:652
+#: ../../diskdrake/interactive.pm_.c:662
msgid "Choose the new size"
msgstr "Dewiswch y maint newydd"
-#: ../../diskdrake/interactive.pm_.c:653
+#: ../../diskdrake/interactive.pm_.c:663
msgid "New size in MB: "
msgstr "Maint mewn MB: "
-#: ../../diskdrake/interactive.pm_.c:706
+#: ../../diskdrake/interactive.pm_.c:716
msgid "Which disk do you want to move it to?"
msgstr "Pa ddisg hoffech chi symud iddo?"
-#: ../../diskdrake/interactive.pm_.c:707
+#: ../../diskdrake/interactive.pm_.c:717
msgid "Sector"
msgstr "Sector"
-#: ../../diskdrake/interactive.pm_.c:708
+#: ../../diskdrake/interactive.pm_.c:718
msgid "Which sector do you want to move it to?"
msgstr "Pa sector hoffech chi symud iddo?"
-#: ../../diskdrake/interactive.pm_.c:711
+#: ../../diskdrake/interactive.pm_.c:721
msgid "Moving"
msgstr "Symud"
-#: ../../diskdrake/interactive.pm_.c:711
+#: ../../diskdrake/interactive.pm_.c:721
msgid "Moving partition..."
msgstr "Yn symud rhaniad.."
-#: ../../diskdrake/interactive.pm_.c:728
+#: ../../diskdrake/interactive.pm_.c:738
msgid "Choose an existing RAID to add to"
msgstr "Dewis RAID presennol i ychwanegu iddo"
-#: ../../diskdrake/interactive.pm_.c:729 ../../diskdrake/interactive.pm_.c:746
+#: ../../diskdrake/interactive.pm_.c:739 ../../diskdrake/interactive.pm_.c:756
msgid "new"
msgstr "newydd"
-#: ../../diskdrake/interactive.pm_.c:744
+#: ../../diskdrake/interactive.pm_.c:754
msgid "Choose an existing LVM to add to"
msgstr "Dewis LVM presennol i ychwanegu iddo"
-#: ../../diskdrake/interactive.pm_.c:749
+#: ../../diskdrake/interactive.pm_.c:759
msgid "LVM name?"
msgstr "Enw LVM"
-#: ../../diskdrake/interactive.pm_.c:790
+#: ../../diskdrake/interactive.pm_.c:800
msgid "This partition can't be used for loopback"
msgstr "Niid oes modd defnyddio'r rhaniad ar gyfer cylch-ol"
-#: ../../diskdrake/interactive.pm_.c:803
+#: ../../diskdrake/interactive.pm_.c:813
msgid "Loopback"
msgstr "Cylch-ol"
-#: ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:814
msgid "Loopback file name: "
msgstr "Enw ffeil cylch-ol"
-#: ../../diskdrake/interactive.pm_.c:809
+#: ../../diskdrake/interactive.pm_.c:819
msgid "Give a file name"
msgstr "Rhowch enw ffeil"
-#: ../../diskdrake/interactive.pm_.c:812
+#: ../../diskdrake/interactive.pm_.c:822
msgid "File already used by another loopback, choose another one"
msgstr ""
"Mae'r ffeil yn cael ei ddweis eisoes gam gylch-ol arall, dewiswch un arall"
-#: ../../diskdrake/interactive.pm_.c:813
+#: ../../diskdrake/interactive.pm_.c:823
msgid "File already exists. Use it?"
msgstr "Mae'r ffeil yn bodoli eisoes. Defnyddiwch hwn?"
-#: ../../diskdrake/interactive.pm_.c:836
+#: ../../diskdrake/interactive.pm_.c:846
msgid "Mount options"
msgstr "Dewisiadau gosod"
-#: ../../diskdrake/interactive.pm_.c:843
+#: ../../diskdrake/interactive.pm_.c:853
msgid "Various"
msgstr "Amrywiol"
-#: ../../diskdrake/interactive.pm_.c:907 ../../standalone/drakfloppy_.c:103
+#: ../../diskdrake/interactive.pm_.c:917 ../../standalone/drakfloppy_.c:103
msgid "device"
msgstr "dyfais"
-#: ../../diskdrake/interactive.pm_.c:908
+#: ../../diskdrake/interactive.pm_.c:918
msgid "level"
msgstr "lefel"
-#: ../../diskdrake/interactive.pm_.c:909
+#: ../../diskdrake/interactive.pm_.c:919
msgid "chunk size"
msgstr "maint darn"
-#: ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:934
msgid "Be careful: this operation is dangerous."
msgstr "Byddwch ofalus: mae'r weithred hon yn beryglus"
-#: ../../diskdrake/interactive.pm_.c:939
+#: ../../diskdrake/interactive.pm_.c:949
msgid "What type of partitioning?"
msgstr "Pa fath o rhaniad %s"
-#: ../../diskdrake/interactive.pm_.c:955
-#, fuzzy, c-format
+#: ../../diskdrake/interactive.pm_.c:965
+#, c-format
msgid "The package %s is needed. Install it?"
-msgstr "Rhaid i becyn %s gael ei osod. Ydych chi am ei osod?"
+msgstr "Rhaid cael pecyn %s. Ydych chi am ei osod?"
-#: ../../diskdrake/interactive.pm_.c:969
+#: ../../diskdrake/interactive.pm_.c:979
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -2005,7 +2037,7 @@ msgstr ""
"Naill ai nad ydych yn defnyddio LILO a ddim angen /boot neu byddwch yn "
"defnyddio LILO a ni fydd yn gweithio."
-#: ../../diskdrake/interactive.pm_.c:973
+#: ../../diskdrake/interactive.pm_.c:983
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -2017,7 +2049,7 @@ msgstr ""
"Os ydych yn bwriadu defnyddio y rheolwr bwtio LILO, nodwch fe ddylech greu "
"rhaniad /boot"
-#: ../../diskdrake/interactive.pm_.c:979
+#: ../../diskdrake/interactive.pm_.c:989
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
@@ -2027,45 +2059,45 @@ msgstr ""
"Nid oes llwythwr cychwyn yn medru trin hwn heb rhaniad /boot\n"
"Cofiwch ychwanegu rhaniad /boot"
-#: ../../diskdrake/interactive.pm_.c:999
+#: ../../diskdrake/interactive.pm_.c:1009
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "Mae tabl rhaniad disg-yrrwr %s am gael ei ysgrifennu i'r disg!"
-#: ../../diskdrake/interactive.pm_.c:1003
+#: ../../diskdrake/interactive.pm_.c:1013
msgid "You'll need to reboot before the modification can take place"
msgstr "Mi fydd angen i chi ail-fwtio cyn i'r newidiadau gymeryd lle"
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1024
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr ""
"Wedi fformatio rhaniad %s, bydd yr holl ddata ar y rhaniad yn cael ei golli"
-#: ../../diskdrake/interactive.pm_.c:1016
+#: ../../diskdrake/interactive.pm_.c:1026
msgid "Formatting"
msgstr "Fformatio"
-#: ../../diskdrake/interactive.pm_.c:1017
+#: ../../diskdrake/interactive.pm_.c:1027
#, c-format
msgid "Formatting loopback file %s"
msgstr "Yn fformatio ffeil cylch-ol %s"
-#: ../../diskdrake/interactive.pm_.c:1018
-#: ../../install_steps_interactive.pm_.c:476
+#: ../../diskdrake/interactive.pm_.c:1028
+#: ../../install_steps_interactive.pm_.c:459
#, c-format
msgid "Formatting partition %s"
msgstr "Yn fformatio rhaniad %s"
-#: ../../diskdrake/interactive.pm_.c:1029
+#: ../../diskdrake/interactive.pm_.c:1039
msgid "Hide files"
msgstr "Cuddio ffeiliau"
-#: ../../diskdrake/interactive.pm_.c:1029
+#: ../../diskdrake/interactive.pm_.c:1039
msgid "Move files to the new partition"
msgstr "Symud ffeiliau i'r rhaniad newydd"
-#: ../../diskdrake/interactive.pm_.c:1030
+#: ../../diskdrake/interactive.pm_.c:1040
#, c-format
msgid ""
"Directory %s already contains data\n"
@@ -2074,83 +2106,83 @@ msgstr ""
"Mae cyfarwyddiadur %s eisoes yn cynnwys peth data\n"
"(%s)"
-#: ../../diskdrake/interactive.pm_.c:1041
+#: ../../diskdrake/interactive.pm_.c:1051
msgid "Moving files to the new partition"
msgstr "Symud ffeiliau i'r rhaniad newydd"
-#: ../../diskdrake/interactive.pm_.c:1045
+#: ../../diskdrake/interactive.pm_.c:1055
#, c-format
msgid "Copying %s"
msgstr "Copïo %s"
-#: ../../diskdrake/interactive.pm_.c:1049
+#: ../../diskdrake/interactive.pm_.c:1059
#, c-format
msgid "Removing %s"
msgstr "Tynnu %s"
-#: ../../diskdrake/interactive.pm_.c:1059
+#: ../../diskdrake/interactive.pm_.c:1069
#, c-format
msgid "partition %s is now known as %s"
msgstr "Mae rhaniad %s yn cael ei alw'n %s"
-#: ../../diskdrake/interactive.pm_.c:1080
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1090
+#: ../../diskdrake/interactive.pm_.c:1149
msgid "Device: "
msgstr "Dyfais: "
-#: ../../diskdrake/interactive.pm_.c:1081
+#: ../../diskdrake/interactive.pm_.c:1091
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "Llythyren disg-yrrwr yn DOS: %s (dim ond dyfalu)\n"
-#: ../../diskdrake/interactive.pm_.c:1085
-#: ../../diskdrake/interactive.pm_.c:1093
-#: ../../diskdrake/interactive.pm_.c:1157
+#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1103
+#: ../../diskdrake/interactive.pm_.c:1168
msgid "Type: "
msgstr "Math: "
-#: ../../diskdrake/interactive.pm_.c:1089
+#: ../../diskdrake/interactive.pm_.c:1099
msgid "Name: "
msgstr "Enw :"
-#: ../../diskdrake/interactive.pm_.c:1097
+#: ../../diskdrake/interactive.pm_.c:1107
#, c-format
msgid "Start: sector %s\n"
msgstr "Dechrau: sector %s\n"
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1108
#, c-format
msgid "Size: %s"
msgstr "Maint: %s"
-#: ../../diskdrake/interactive.pm_.c:1100
+#: ../../diskdrake/interactive.pm_.c:1110
#, c-format
msgid ", %s sectors"
msgstr ", %s sector"
-#: ../../diskdrake/interactive.pm_.c:1102
+#: ../../diskdrake/interactive.pm_.c:1112
#, c-format
msgid "Cylinder %d to %d\n"
msgstr "Silindr %d i silindr %d\n"
-#: ../../diskdrake/interactive.pm_.c:1103
+#: ../../diskdrake/interactive.pm_.c:1113
msgid "Formatted\n"
msgstr "Wedi fformatio\n"
-#: ../../diskdrake/interactive.pm_.c:1104
+#: ../../diskdrake/interactive.pm_.c:1114
msgid "Not formatted\n"
msgstr "Heb ei fformatio\n"
-#: ../../diskdrake/interactive.pm_.c:1105
+#: ../../diskdrake/interactive.pm_.c:1115
msgid "Mounted\n"
msgstr "Gosodwyd\n"
-#: ../../diskdrake/interactive.pm_.c:1106
+#: ../../diskdrake/interactive.pm_.c:1116
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1108
+#: ../../diskdrake/interactive.pm_.c:1118
#, c-format
msgid ""
"Loopback file(s):\n"
@@ -2159,7 +2191,7 @@ msgstr ""
"Ffeil(iau) Cylch-ol:\n"
" %s\n"
-#: ../../diskdrake/interactive.pm_.c:1109
+#: ../../diskdrake/interactive.pm_.c:1119
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -2167,27 +2199,27 @@ msgstr ""
"Y rhaniad i'w bwtio fel rheol\n"
" (ar gyfer bwt MS-DOS, nid ar gyfer lilo)\n"
-#: ../../diskdrake/interactive.pm_.c:1111
+#: ../../diskdrake/interactive.pm_.c:1121
#, c-format
msgid "Level %s\n"
msgstr "Lefel %s\n"
-#: ../../diskdrake/interactive.pm_.c:1112
+#: ../../diskdrake/interactive.pm_.c:1122
#, c-format
msgid "Chunk size %s\n"
msgstr "Maint darn %s\n"
-#: ../../diskdrake/interactive.pm_.c:1113
+#: ../../diskdrake/interactive.pm_.c:1123
#, c-format
msgid "RAID-disks %s\n"
msgstr "Disg RAID %s\n"
-#: ../../diskdrake/interactive.pm_.c:1115
+#: ../../diskdrake/interactive.pm_.c:1125
#, c-format
msgid "Loopback file name: %s"
msgstr "Enw ffeil cylch-ol: %s"
-#: ../../diskdrake/interactive.pm_.c:1118
+#: ../../diskdrake/interactive.pm_.c:1128
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -2199,7 +2231,7 @@ msgstr ""
"yw'r rhaniad hwn. Gwell gadael\n"
"llonnydd iddo.\n"
-#: ../../diskdrake/interactive.pm_.c:1121
+#: ../../diskdrake/interactive.pm_.c:1131
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2211,58 +2243,62 @@ msgstr ""
"hwn ar gyfer cychwyniad\n"
"dwbl eich system\n"
-#: ../../diskdrake/interactive.pm_.c:1140
+#: ../../diskdrake/interactive.pm_.c:1150
+msgid "Read-only"
+msgstr "Darllen yn unig"
+
+#: ../../diskdrake/interactive.pm_.c:1151
#, c-format
msgid "Size: %s\n"
msgstr "Maint: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1141
+#: ../../diskdrake/interactive.pm_.c:1152
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Geometreg: %s silindr, %s pen, %s sector\n"
-#: ../../diskdrake/interactive.pm_.c:1142
+#: ../../diskdrake/interactive.pm_.c:1153
msgid "Info: "
msgstr "Gwybodaeth:"
-#: ../../diskdrake/interactive.pm_.c:1143
+#: ../../diskdrake/interactive.pm_.c:1154
#, c-format
msgid "LVM-disks %s\n"
msgstr "Diag LVM %s\n"
-#: ../../diskdrake/interactive.pm_.c:1144
+#: ../../diskdrake/interactive.pm_.c:1155
#, c-format
msgid "Partition table type: %s\n"
msgstr "Math tabl rhaniad: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1145
-#, fuzzy, c-format
+#: ../../diskdrake/interactive.pm_.c:1156
+#, c-format
msgid "on channel %d id %d\n"
-msgstr "ar fws %d id %d\n"
+msgstr "ar sianel %d id %d\n"
-#: ../../diskdrake/interactive.pm_.c:1175
+#: ../../diskdrake/interactive.pm_.c:1186
msgid "Filesystem encryption key"
msgstr "Allwedd amgryptio system ffeil : "
-#: ../../diskdrake/interactive.pm_.c:1176
+#: ../../diskdrake/interactive.pm_.c:1187
msgid "Choose your filesystem encryption key"
msgstr "Dewiswch eich allwedd amgryptio system ffeiliau"
-#: ../../diskdrake/interactive.pm_.c:1179
+#: ../../diskdrake/interactive.pm_.c:1190
#, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr ""
"Mae'r allwedd amgryptio'n rhy syml ( mae'n rhaid bod o leiaf %d nod o hyd)"
-#: ../../diskdrake/interactive.pm_.c:1180
+#: ../../diskdrake/interactive.pm_.c:1191
msgid "The encryption keys do not match"
msgstr "Nid yw'r allweddi amgryptio'n cydfynd"
-#: ../../diskdrake/interactive.pm_.c:1183
+#: ../../diskdrake/interactive.pm_.c:1194
msgid "Encryption key"
msgstr "Allwedd amgryptio"
-#: ../../diskdrake/interactive.pm_.c:1184
+#: ../../diskdrake/interactive.pm_.c:1195
msgid "Encryption key (again)"
msgstr "Allwedd amgryptio (eto)"
@@ -2278,58 +2314,56 @@ msgstr "Cliciwch ar gyfrwng"
#, c-format
msgid "Can't login using username %s (bad password?)"
msgstr ""
+"Methu mewngofnodi gan ddefnyddio enw defnyddiwr %s (cyfrinair anghywir?)"
#: ../../diskdrake/smbnfs_gtk.pm_.c:166 ../../diskdrake/smbnfs_gtk.pm_.c:175
-#, fuzzy
msgid "Domain Authentication Required"
-msgstr "Dilysu"
+msgstr "Angen Dilysu Parth"
#: ../../diskdrake/smbnfs_gtk.pm_.c:167
-#, fuzzy
msgid "Another one"
-msgstr "Rhyngrwyd"
+msgstr "Un arall"
#: ../../diskdrake/smbnfs_gtk.pm_.c:167
-#, fuzzy
msgid "Which username"
-msgstr "Enw defnyddiwr"
+msgstr "Pa enw defnyddiwr"
#: ../../diskdrake/smbnfs_gtk.pm_.c:176
msgid ""
"Please enter your username, password and domain name to access this host."
msgstr ""
+"Rhowch eich enw defnyddiwr, cyfrinair ac enw parth y gael mynediad i'r "
+"gwesteiwr."
-#: ../../diskdrake/smbnfs_gtk.pm_.c:178
-#, fuzzy
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3527
msgid "Username"
msgstr "Enw defnyddiwr"
#: ../../diskdrake/smbnfs_gtk.pm_.c:180
-#, fuzzy
msgid "Domain"
-msgstr "Parth NIS"
+msgstr "Parth"
#: ../../diskdrake/smbnfs_gtk.pm_.c:200
msgid "Search servers"
msgstr "Chwiliwch am wasanaethwyr"
-#: ../../fs.pm_.c:552 ../../fs.pm_.c:562 ../../fs.pm_.c:566 ../../fs.pm_.c:570
-#: ../../fs.pm_.c:574 ../../fs.pm_.c:578
+#: ../../fs.pm_.c:544 ../../fs.pm_.c:554 ../../fs.pm_.c:558 ../../fs.pm_.c:562
+#: ../../fs.pm_.c:566 ../../fs.pm_.c:570
#, c-format
msgid "%s formatting of %s failed"
msgstr "mi fethodd y %s fformatio o %s"
-#: ../../fs.pm_.c:615
+#: ../../fs.pm_.c:607
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "Nid wyf yn gwybod sut i fformatio %s ym math %s"
-#: ../../fs.pm_.c:687 ../../fs.pm_.c:731
+#: ../../fs.pm_.c:681 ../../fs.pm_.c:724
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr "methodd gosod rhaniad %s yng gnhyfeiriadur %s"
-#: ../../fs.pm_.c:746 ../../partition_table.pm_.c:602
+#: ../../fs.pm_.c:739 ../../partition_table.pm_.c:598
#, c-format
msgid "error unmounting %s: %s"
msgstr "gwall dadosod %s: %s"
@@ -2346,285 +2380,343 @@ msgstr "gyda /usr"
msgid "server"
msgstr "Gwasanaethwr"
-#: ../../fsedit.pm_.c:472
+#: ../../fsedit.pm_.c:240
+#, fuzzy, c-format
+msgid ""
+"I can't read the partition table of device %s, it's too corrupted for me :(\n"
+"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
+"The other solution is to not allow DrakX to modify the partition table.\n"
+"(the error is %s)\n"
+"\n"
+"Do you agree to loose all the partitions?\n"
+msgstr ""
+"Nid wyf yn medru darllen eich tabl rhaniad, mae'n rhy lygredig. :(\n"
+"Mae modd i mi fynd ymlaen i ddiystyru rhaniadau gwael (Bydd yr\n"
+" HOLL DDATA'n cael ei golli!). Yr ateb arall yw peidio gadael i\n"
+"DrakX newid y tabl rhaniad. (y gwall yw %s)\n"
+"\n"
+"Ydych chi'n cytuno i golli'r holl raniadau?\n"
+
+#: ../../fsedit.pm_.c:501
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr "Does dim modd defnyddio JFS ar rhaniadau llai na 16MB"
-#: ../../fsedit.pm_.c:473
+#: ../../fsedit.pm_.c:502
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr "Does dim modd defnyddio ReiserFS ar gyfer rhaniadau llai na 32MB"
-#: ../../fsedit.pm_.c:492
+#: ../../fsedit.pm_.c:521
msgid "Mount points must begin with a leading /"
msgstr "Rjhaid i bwyntiau gosod gynnwys / arweiniol"
-#: ../../fsedit.pm_.c:493
+#: ../../fsedit.pm_.c:522
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Mae yna eisoes raniad gyda pwynt gosod %s\n"
-#: ../../fsedit.pm_.c:497
+#: ../../fsedit.pm_.c:526
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr "Does dim modd defnyddio Cyfrol Rhesymegol LVM ar gyfer pwynt gosod %s"
-#: ../../fsedit.pm_.c:499
+#: ../../fsedit.pm_.c:528
msgid "This directory should remain within the root filesystem"
msgstr "Dyai'r cyfeiriadur aros o fewn y system ffeilio gwraidd"
-#: ../../fsedit.pm_.c:501
-#, fuzzy
+#: ../../fsedit.pm_.c:530
msgid ""
"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
"point\n"
msgstr ""
-"Mae angen gwir system ffeilio (ext2, reiserfs) ar gyfer y pwynt gosod\n"
+"Mae angen gwir system ffeilio (ext2, reiserfs, xfs, neu jfs)) ar gyfer y "
+"pwynt gosod\n"
-#: ../../fsedit.pm_.c:503
+#: ../../fsedit.pm_.c:532
#, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr "Does dim modd defnyddio Cyfrol Rhesymegol LVM ar gyfer pwynt gosod %s"
-#: ../../fsedit.pm_.c:570
+#: ../../fsedit.pm_.c:599
msgid "Not enough free space for auto-allocating"
msgstr "Nid oes digon o le ar gyfer awtoddynodi"
-#: ../../fsedit.pm_.c:572
+#: ../../fsedit.pm_.c:601
msgid "Nothing to do"
msgstr "Dim i'w wneud"
-#: ../../fsedit.pm_.c:665
+#: ../../fsedit.pm_.c:694
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Gwall wrth agos %s ar gyfer ysgrifennu %s"
-#: ../../fsedit.pm_.c:750
+#: ../../harddrake/sound.pm_.c:155
+msgid "No alternative driver"
+msgstr "Dim gyrrwyr eraill"
+
+#: ../../harddrake/sound.pm_.c:156
+#, c-format
+msgid "There's no known OSS/ALSA alternative driver for your sound card (%s)"
+msgstr "Nid oes gyrrwr OSS/ALSA arall ar gyfer eich cerdyn sain (%s)"
+
+#: ../../harddrake/sound.pm_.c:158
+msgid "Sound configuration"
+msgstr "Furfweddiad sain"
+
+#: ../../harddrake/sound.pm_.c:159
+#, c-format
msgid ""
-"An error occurred - no valid devices were found on which to create new "
-"filesystems. Please check your hardware for the cause of this problem"
+"Here you can select an alternative driver (either OSS or ALSA) for your "
+"sound card (%s)"
msgstr ""
-"Digwyddodd gwall - ni chanfyddwyd dyfeisiadau dilys i greu systemau ffeil "
-"arnynt. Gwiriwch eich caledwedd am ffynhonell yr anhawster."
+"Yma medrwch ddewis gyrrwr arall (un ai OSS neu ALSA) ar gyfer eich cerdyn "
+"sain (%s)"
-#: ../../fsedit.pm_.c:773
-msgid "You don't have any partitions!"
-msgstr "Does gennych chi ddim rhaniadau!"
+#: ../../harddrake/sound.pm_.c:162
+msgid "Driver:"
+msgstr "Gyrrwr:"
-#: ../../harddrake/ui.pm_.c:15
-#, fuzzy
+#: ../../harddrake/sound.pm_.c:173
+msgid "No known driver"
+msgstr "Dim gyrrwr hysbys"
+
+#: ../../harddrake/sound.pm_.c:174
+#, c-format
+msgid "There's no known driver for your sound card (%s)"
+msgstr "Nid oes gyrrwr hysbys ar gyfer eich cerdyn sain (%s)"
+
+#: ../../harddrake/sound.pm_.c:177
+msgid "Unkown driver"
+msgstr "Gyrrwr anhysbys"
+
+#: ../../harddrake/sound.pm_.c:178
+#, fuzzy, c-format
+msgid ""
+"The \"%s\" driver for your sound card is unlisted\n"
+"\n"
+"Please send the output of the \"lspcidrake -v\" command to\n"
+"<install at mandrakesoft dot com>\n"
+"with subject: unlisted sound driver \"%s\""
+msgstr ""
+"Nid yw'r gyrrwr \"%s\" wedi ei restri\n"
+"\n"
+"Gyrrwch allbwn gorchymyn \"lspcidrake -v\" i\n"
+"Thierry Vignaud <tvignaud at mandrakesoft dot com>\n"
+"o dan bennawd: unlisted sound drivers"
+
+#: ../../harddrake/ui.pm_.c:16
msgid "Model"
-msgstr "Llygoden"
+msgstr "Model"
-#: ../../harddrake/ui.pm_.c:15
-#, fuzzy
+#: ../../harddrake/ui.pm_.c:16
msgid "hard disk model"
-msgstr "Cof Cerdyn (DMA)"
+msgstr "Model disg caled"
-#: ../../harddrake/ui.pm_.c:16
-#, fuzzy
+#: ../../harddrake/ui.pm_.c:17
msgid "Channel"
-msgstr "Diddymu"
+msgstr "Sianel"
-#: ../../harddrake/ui.pm_.c:16
+#: ../../harddrake/ui.pm_.c:17
msgid "EIDE/SCSI channel"
-msgstr ""
+msgstr "Sianel EIDE/SCSI"
-#: ../../harddrake/ui.pm_.c:18
+#: ../../harddrake/ui.pm_.c:19
msgid "Bus"
-msgstr ""
+msgstr "Bws"
-#: ../../harddrake/ui.pm_.c:19
+#: ../../harddrake/ui.pm_.c:20
msgid ""
"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
-msgstr ""
+msgstr "dyma'r bws corfforol i'r ddyfais gael ei gysylltu (e.e. PCI, USB,...)"
-#: ../../harddrake/ui.pm_.c:20
-#, fuzzy
+#: ../../harddrake/ui.pm_.c:21
msgid "Module"
-msgstr "Llygoden"
+msgstr "Modiwl"
-#: ../../harddrake/ui.pm_.c:20
+#: ../../harddrake/ui.pm_.c:21
msgid "the module of the GNU/Linux kernel that handle that device"
-msgstr ""
+msgstr "y modiwl o'r cnewyllyn GNU/Linux sy'n trin y ddyfais honno"
-#: ../../harddrake/ui.pm_.c:21
+#: ../../harddrake/ui.pm_.c:22
msgid "Media class"
-msgstr ""
+msgstr "Dosbarth y cyfrwng"
-#: ../../harddrake/ui.pm_.c:21
+#: ../../harddrake/ui.pm_.c:22
msgid "class of hardware device"
-msgstr ""
+msgstr "dosbarth y dyfais caledwedd"
-#: ../../harddrake/ui.pm_.c:22 ../../printerdrake.pm_.c:1404
+#: ../../harddrake/ui.pm_.c:23 ../../printerdrake.pm_.c:1517
msgid "Description"
msgstr "Disgrifiad"
-#: ../../harddrake/ui.pm_.c:22
+#: ../../harddrake/ui.pm_.c:23
msgid "this field describe the device"
-msgstr ""
+msgstr "mae'r maes yn disgrifio'r ddyfais"
-#: ../../harddrake/ui.pm_.c:24
-#, fuzzy
+#: ../../harddrake/ui.pm_.c:25
msgid "Bus identification"
-msgstr "Dilysu"
+msgstr "Dynodiad bws"
-#: ../../harddrake/ui.pm_.c:25
+#: ../../harddrake/ui.pm_.c:26
msgid ""
-"- PCI and USB devices : this list the vendor, device, subvendor and "
-"subdevice PCI/USB ids"
+"- PCI and USB devices: this list the vendor, device, subvendor and subdevice "
+"PCI/USB ids"
msgstr ""
+"- dyfeisiau PCI ac USB : dyma restr gwerthwyr, dyfais, iswerthwyr ac "
+"isddyfais PCI/USB"
-#: ../../harddrake/ui.pm_.c:27
+#: ../../harddrake/ui.pm_.c:28
msgid "Location on the bus"
-msgstr ""
+msgstr "Lleoliad ar y bws"
-#: ../../harddrake/ui.pm_.c:28
+#: ../../harddrake/ui.pm_.c:29
msgid ""
"- pci devices: this gives the PCI slot, device and function of this card\n"
"- eide devices: the device is either a slave or a master device\n"
"- scsi devices: the scsi bus and the scsi device ids"
msgstr ""
+"- dyfeisiau pci: dyma slot PCI, dyfais a gwaith y cerdyn\n"
+"- dyfeisiau ide: mae'r ddyfais un ai yn was neu feistr\n"
+"- dyfeisiau scsi: dynodiad dyfeisiau scsi a'r bws scsi"
-#: ../../harddrake/ui.pm_.c:31
-#, fuzzy
+#: ../../harddrake/ui.pm_.c:32
msgid "Old device file"
-msgstr "Dewiswch ffeil"
+msgstr "Hen ffeil dyfais"
-#: ../../harddrake/ui.pm_.c:32
+#: ../../harddrake/ui.pm_.c:33
msgid "old static device name used in dev package"
-msgstr ""
+msgstr "hen enw dyfais sefydlog yn cael ei ddefnyddio mewn pecyn dev"
-#: ../../harddrake/ui.pm_.c:33
-#, fuzzy
+#: ../../harddrake/ui.pm_.c:34
msgid "New devfs device"
-msgstr "Dyfais mynedfa"
+msgstr "Dyfais devfs newydd"
-#: ../../harddrake/ui.pm_.c:34
+#: ../../harddrake/ui.pm_.c:35
msgid "new dinamic device name generated by incore kernel devfs"
-msgstr ""
+msgstr "enw dyfais deinamig yn cael eui gynhyrchu gan incore kernel devfs"
-#: ../../harddrake/ui.pm_.c:35
-#, fuzzy
+#: ../../harddrake/ui.pm_.c:36
msgid "Number of buttons"
-msgstr "2 fotwm"
+msgstr "Nifer o fotymau"
-#: ../../harddrake/ui.pm_.c:36
+#: ../../harddrake/ui.pm_.c:37
msgid "the vendor name of the device"
-msgstr ""
+msgstr "enw gwerthwr y ddyfais"
+
+#: ../../harddrake/ui.pm_.c:38
+#, fuzzy
+msgid "Alternative drivers"
+msgstr "Dim gyrrwyr eraill"
-#: ../../harddrake/ui.pm_.c:60
+#: ../../harddrake/ui.pm_.c:39
#, fuzzy
+msgid "the list of alternative drivers for this sound card"
+msgstr "Nid oes gyrrwr OSS/ALSA arall ar gyfer eich cerdyn sain (%s)"
+
+#: ../../harddrake/ui.pm_.c:63
msgid "/_Quit"
-msgstr "Gadael"
+msgstr "/_Gadael"
-#: ../../harddrake/ui.pm_.c:61 ../../harddrake/ui.pm_.c:62
-#: ../../harddrake/ui.pm_.c:68 ../../standalone/logdrake_.c:110
+#: ../../harddrake/ui.pm_.c:64 ../../harddrake/ui.pm_.c:65
+#: ../../harddrake/ui.pm_.c:71 ../../standalone/logdrake_.c:110
msgid "/_Help"
msgstr "/_Cymorth"
-#: ../../harddrake/ui.pm_.c:62
-#, fuzzy
+#: ../../harddrake/ui.pm_.c:65
msgid "/_Help..."
-msgstr "/_Cymorth"
+msgstr "/_Cymorth..."
-#: ../../harddrake/ui.pm_.c:63
+#: ../../harddrake/ui.pm_.c:66
msgid "Harddrake help"
-msgstr ""
+msgstr "Harddrake help"
-#: ../../harddrake/ui.pm_.c:64
+#: ../../harddrake/ui.pm_.c:67
msgid ""
"Description of the fields:\n"
"\n"
msgstr ""
+"Disgrifiad y meysydd:\n"
+"\n"
-#: ../../harddrake/ui.pm_.c:68
-#, fuzzy
+#: ../../harddrake/ui.pm_.c:71
msgid "/_About..."
-msgstr "/Cymorth/_Ynghylch..."
+msgstr "/_Ynghylch..."
-#: ../../harddrake/ui.pm_.c:69
+#: ../../harddrake/ui.pm_.c:72
msgid "About Harddrake"
-msgstr ""
+msgstr "Ynghylch Harddrake"
-#: ../../harddrake/ui.pm_.c:70
+#: ../../harddrake/ui.pm_.c:73
msgid ""
"This is HardDrake, a Mandrake hardware configuration tool.\n"
"Version:"
msgstr ""
+"Dyma HardDrake, offeryn ffurfweddu caledwedd Mandrake.\n"
+"Fersiwn:"
-#: ../../harddrake/ui.pm_.c:71
-#, fuzzy
+#: ../../harddrake/ui.pm_.c:74
msgid "Author:"
-msgstr "Atoholi"
+msgstr "Awdur"
-#: ../../harddrake/ui.pm_.c:83
-#, fuzzy
+#: ../../harddrake/ui.pm_.c:86
msgid "Harddrake2 version "
-msgstr "Canfod disg caled"
+msgstr "Harddrake2 fersiwn "
-#: ../../harddrake/ui.pm_.c:91
-#, fuzzy
+#: ../../harddrake/ui.pm_.c:103
msgid "Detected hardware"
-msgstr "Gweler gwyboadeth am galedwedd"
+msgstr "Caledwedd canfyddwyd"
-#: ../../harddrake/ui.pm_.c:92
-#, fuzzy
-msgid "Configure module"
-msgstr "Ffurfweddu llygoden"
+#: ../../harddrake/ui.pm_.c:105
+msgid "Information"
+msgstr "Gwybodaeth"
-#: ../../harddrake/ui.pm_.c:92
-#, fuzzy
-msgid "Informations"
-msgstr "Dangos gwybodaeth"
+#: ../../harddrake/ui.pm_.c:108
+msgid "Configure module"
+msgstr "Modd ffurfweddu"
-#: ../../harddrake/ui.pm_.c:92
+#: ../../harddrake/ui.pm_.c:109
msgid "Run config tool"
-msgstr ""
+msgstr "Rhedeg offeryn ffurfweddu"
-#: ../../harddrake/ui.pm_.c:96
-#, fuzzy
+#: ../../harddrake/ui.pm_.c:113
msgid "Detection in progress"
-msgstr "canfyddwyd ar borth %s"
+msgstr "Canfod ar waith"
-#: ../../harddrake/ui.pm_.c:96 ../../interactive.pm_.c:388
+#: ../../harddrake/ui.pm_.c:113 ../../interactive.pm_.c:391
msgid "Please wait"
msgstr "Arhoswch"
-#: ../../harddrake/ui.pm_.c:139
+#: ../../harddrake/ui.pm_.c:156
msgid "primary"
-msgstr ""
+msgstr "cynradd"
-#: ../../harddrake/ui.pm_.c:139
-#, fuzzy
+#: ../../harddrake/ui.pm_.c:156
msgid "secondary"
-msgstr "%d eiliad"
+msgstr "eilradd"
-#: ../../harddrake/ui.pm_.c:176
+#: ../../harddrake/ui.pm_.c:197
msgid "You can configure each parameter of the module here."
-msgstr ""
+msgstr "Mae modd i chi ffurfweddu pob paramedr o'r modiwl yma"
-#: ../../harddrake/ui.pm_.c:192
-#, fuzzy, c-format
+#: ../../harddrake/ui.pm_.c:213
+#, c-format
msgid "Running \"%s\" ..."
-msgstr "Tynnu argraffydd \"%s\"..."
+msgstr "Rhedeg \"%s\"..."
#: ../../harddrake/v4l.pm_.c:15 ../../harddrake/v4l.pm_.c:65
-#, fuzzy
msgid "Auto-detect"
-msgstr "Defnyddio awto ganfod"
+msgstr "Awto ganfod"
#: ../../harddrake/v4l.pm_.c:66 ../../harddrake/v4l.pm_.c:186
-#, fuzzy
msgid "Unknown|Generic"
-msgstr "Generig"
+msgstr "Anhysbys|Generig"
#: ../../harddrake/v4l.pm_.c:98
msgid "Unknown|CPH05X (bt878) [many vendors]"
-msgstr ""
+msgstr "Anhysbys|CPH05X (bt878) [nifer o werthwyr]"
#: ../../harddrake/v4l.pm_.c:99
msgid "Unknown|CPH06X (bt878) [many vendors]"
-msgstr ""
+msgstr "Anhysbys|CPH06X (bt878) [nifer o werthwyr]"
#: ../../harddrake/v4l.pm_.c:210
msgid ""
@@ -2633,59 +2725,62 @@ msgid ""
"If your card is misdetected, you can force the right tuner and card types "
"here. Just select your tv card parameters if needed"
msgstr ""
+"Ar gyfer y rhelyw o gardiau Teledu diweddar, mae'r modiwl bttv o'r cnewyllyn "
+"yn awto ganfod y paramedrau cywir.\n"
+"Os yw'ch cerdyn yn cael ei ganfod ar gam, mae modd gorfodi'r mathau cywir o "
+"gerdyn a rheolydd,\n"
+"Dewiswch baramedrau eich cerdyn teledu os oes raid"
#: ../../harddrake/v4l.pm_.c:213
-#, fuzzy
-msgid "Card model :"
-msgstr "Cof Cerdyn (DMA)"
+msgid "Card model:"
+msgstr "Model cerdyn:"
#: ../../harddrake/v4l.pm_.c:214
-#, fuzzy
-msgid "Tuner type :"
-msgstr "Newid y math"
+msgid "Tuner type:"
+msgstr "Math o diwniwr"
#: ../../harddrake/v4l.pm_.c:215
-msgid "Number of capture buffers :"
-msgstr ""
+msgid "Number of capture buffers:"
+msgstr "Nifer o fyffers cipio:"
#: ../../harddrake/v4l.pm_.c:215
msgid "number of capture buffers for mmap'ed capture"
-msgstr ""
+msgstr "nifer o fyffers cipio ar gyfer cipio mmap"
#: ../../harddrake/v4l.pm_.c:217
-#, fuzzy
-msgid "PLL setting :"
-msgstr "gosodiad llwyth"
+msgid "PLL setting:"
+msgstr "Gosodiad PLL:"
#: ../../harddrake/v4l.pm_.c:218
-msgid "Radio support :"
-msgstr ""
+msgid "Radio support:"
+msgstr "Cynal radio:"
#: ../../harddrake/v4l.pm_.c:218
msgid "enable radio support"
-msgstr ""
+msgstr "galluogi cynal radio"
#: ../../help.pm_.c:13
+#, fuzzy
msgid ""
"GNU/Linux is a multiuser system, and this means that each user can have his\n"
"own preferences, his own files and so on. You can read the ``User Guide''\n"
"to learn more. But unlike \"root\", which is the administrator, the users\n"
-"you will add here will not be entitled to change anything except their own\n"
-"files and their own configuration. You will have to create at least one\n"
-"regular user for yourself. That account is where you should log in for\n"
-"routine use. Although it is very practical to log in as \"root\" everyday,\n"
-"it may also be very dangerous! The slightest mistake could mean that your\n"
-"system would not work any more. If you make a serious mistake as a regular\n"
-"user, you may only lose some information, but not the entire system.\n"
+"you add here will not be entitled to change anything except their own files\n"
+"and their own configuration. You will have to create at least one regular\n"
+"user for yourself. That account is where you should log in for routine use.\n"
+"Although it is very practical to log in as \"root\" everyday, it may also\n"
+"be very dangerous! The slightest mistake could mean that your system would\n"
+"not work any more. If you make a serious mistake as a regular user, you may\n"
+"only lose some information, but not the entire system.\n"
"\n"
"First, you have to enter your real name. This is not mandatory, of course -\n"
"as you can actually enter whatever you want. DrakX will then take the first\n"
"word you have entered in the box and will bring it over to the \"User\n"
"name\". This is the name this particular user will use to log onto the\n"
"system. You can change it. You then have to enter a password here. A\n"
-"non-privileged (regular) user's password is not as crucial as \"root\"' one\n"
-"from a security point of view, but that is no reason to neglect it: after\n"
-"all, your files are at risk.\n"
+"non-privileged (regular) user's password is not as crucial as the \"root\"'\n"
+"one from a security point of view, but that is no reason to neglect it:\n"
+"after all, your files are at risk.\n"
"\n"
"If you click on \"Accept user\", you can then add as many as you want. Add\n"
"a user for each one of your friends: your father or your sister, for\n"
@@ -2807,6 +2902,7 @@ msgstr ""
"allan yr CD cyfredol a gofyn am y llall.."
#: ../../help.pm_.c:77
+#, fuzzy
msgid ""
"It is now time to specify which programs you wish to install on your\n"
"system. There are thousands of packages available for Mandrake Linux, and\n"
@@ -2835,7 +2931,7 @@ msgid ""
"to have a graphical workstation!\n"
"\n"
"Moving the mouse cursor over a group name will display a short explanatory\n"
-"text about that group. If you deselect all groups when performing a regular\n"
+"text about that group. If you unselect all groups when performing a regular\n"
"installation (by opposition to an upgrade), a dialog will pop up proposing\n"
"different options for a minimal installation:\n"
"\n"
@@ -2910,11 +3006,12 @@ msgstr ""
" "
#: ../../help.pm_.c:128
+#, fuzzy
msgid ""
-"Finally, depending on whether or not you selected individual packages, you\n"
-"will be presented a tree containing all packages classified by groups and\n"
-"subgroups. While browsing the tree, you can select entire groups,\n"
-"subgroups, or individual packages.\n"
+"Finally, depending on whether or not you chose to be able to select\n"
+"individual packages, you will be presented a tree containing all packages\n"
+"classified by groups and subgroups. While browsing the tree, you can select\n"
+"entire groups, subgroups, or individual packages.\n"
"\n"
"Whenever you select a package on the tree, a description appears on the\n"
"right. When your selection is finished, click the \"Install\" button which\n"
@@ -2984,12 +3081,13 @@ msgstr ""
"greu disg meddal o'r fath."
#: ../../help.pm_.c:164
+#, fuzzy
msgid ""
-"You are now proposed to set up your Internet/network connection. If you\n"
-"wish to connect your computer to the Internet or to a local network, click\n"
-"\"OK\". The autodetection of network devices and modem will be launched. If\n"
-"this detection fails, uncheck the \"Use auto detection\" box next time. You\n"
-"may also choose not to configure the network, or do it later; in that case,\n"
+"You are now able to set up your Internet/network connection. If you wish to\n"
+"connect your computer to the Internet or to a local network, click \"OK\".\n"
+"The autodetection of network devices and modem will be launched. If this\n"
+"detection fails, uncheck the \"Use auto detection\" box next time. You may\n"
+"also choose not to configure the network, or do it later; in that case,\n"
"simply click the \"Cancel\" button.\n"
"\n"
"Available connections are: traditional modem, ISDN modem, ADSL connection,\n"
@@ -3066,10 +3164,11 @@ msgstr ""
"!!"
#: ../../help.pm_.c:203
+#, fuzzy
msgid ""
"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
"local time according to the time zone you selected. It is however possible\n"
-"to deactivate this by deselecting \"Hardware clock set to GMT\" so that the\n"
+"to deactivate this by unselecting \"Hardware clock set to GMT\" so that the\n"
"hardware clock is the same as the system clock. This is useful when the\n"
"machine is hosting another operating system like Windows.\n"
"\n"
@@ -3082,6 +3181,7 @@ msgid ""
msgstr "Mae gGNU/Linux yn rheoli amser drwy GMT (Greenwich Mean Time)"
#: ../../help.pm_.c:217
+#, fuzzy
msgid ""
"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
@@ -3100,7 +3200,9 @@ msgid ""
"If you can see the message during the test, and answer \"Yes\", then DrakX\n"
"will proceed to the next step. If you cannot see the message, it simply\n"
"means that the configuration was wrong and the test will automatically end\n"
-"after 10 seconds, restoring the screen."
+"after 10 seconds, restoring the screen. Refer then to the Video\n"
+"configuration section of the user guide for more information on how to\n"
+"configure your display."
msgstr ""
"X (am X Window System) yw calon rhag wyneb graffigol GNU/Linux\n"
"y mae pob amgylchedd graffig megis KDE, Gnome, AfterStep\n"
@@ -3121,32 +3223,7 @@ msgstr ""
"bod y ffurfweddiad yn anghywir a daw i ben ymhen 10 eiliad, gan adfer y "
"sgrin."
-#: ../../help.pm_.c:237
-msgid ""
-"The first time you try the X configuration, you may not be very satisfied\n"
-"with its display (screen is too small, shifted left or right...). Hence,\n"
-"even if X starts up correctly, DrakX then asks you if the configuration\n"
-"suits you. It will also propose to change it by displaying a list of valid\n"
-"modes it could find, asking you to select one.\n"
-"\n"
-"As a last resort, if you still cannot get X to work, choose \"Change\n"
-"graphics card\", select \"Unlisted card\", and when prompted on which\n"
-"server, choose \"FBDev\". This is a failsafe option which works with any\n"
-"modern graphics card. Then choose \"Test again\" to be sure."
-msgstr ""
-"Efallai na fyddwch yn fodlon iawn gyda dagosiad ffurfweddiad X y tro\n"
-"cyntaf fyddwch yn ei ddefnyddio (sgrin yn rhy fach, i un ochr, ag ati)\n"
-"Felly mae DrakX yn gofyn i chi os yw'r ffurfweddiad yn iawn. Bydd\n"
-"hefyd yn cynnig ei newid drwy gynnig restr o foddau dilys daeth o hyd\n"
-"iddynt, i chi gael dewis un.\n"
-" \n"
-"Os nad ydych yn medru cael X i weithio, dewiswch \" Newid cerdyn graffig"
-"\",\n"
-"dewiswch \"Cerdyn heb ei restri\", ac yna wrth ddewis gwasanaethwr, dewis\n"
-"\"FBDev\". Mae hwn yn ddewis diogelwch sy'n gweithio gydag unrhyw gerdyn\n"
-"graffig modern. Dewiswch \" Profwch eto\" i fod yn siwr."
-
-#: ../../help.pm_.c:249
+#: ../../help.pm_.c:239
msgid ""
"Finally, you will be asked whether you want to see the graphical interface\n"
"at boot. Note this question will be asked even if you chose not to test the\n"
@@ -3160,7 +3237,8 @@ msgstr ""
"am ateb \"Na\" os yw eich peiriant i weithredu fel gwasanaethwr, neu os\n"
"nad oeddech yn llwyddiannus yn cael eich dangosydd i ffurfweddu'n gywir.."
-#: ../../help.pm_.c:256
+#: ../../help.pm_.c:246
+#, fuzzy
msgid ""
"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
@@ -3180,10 +3258,10 @@ msgid ""
"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
"password, or any other reason.\n"
"\n"
-"When you click on this step, you will be asked to enter a disk inside the\n"
-"drive. The floppy disk you will insert must be empty or contain data which\n"
-"you do not need. You will not have to format it since DrakX will rewrite\n"
-"the whole disk."
+"If you say \"Yes\", you will be asked to enter a disk inside the drive. The\n"
+"floppy disk you will insert must be empty or contain data which you do not\n"
+"need. You will not have to format it since DrakX will rewrite the whole\n"
+"disk."
msgstr ""
"Mae gan yr CD-ROM Mandrake Linux modd achub. Gallwch ei gyrraedd drwy\n"
"gychwyn y peiriant o'r CD-ROM, gwasgu'r fysell >>F1<< o'r cychwyn a theipio\n"
@@ -3214,7 +3292,7 @@ msgstr ""
"dim\n"
"angen ei fformatio gan y bydd DrakX yn ailysgrifennu'r holl ddisg."
-#: ../../help.pm_.c:280
+#: ../../help.pm_.c:270
#, fuzzy
msgid ""
"At this point, you need to choose where you want to install the Mandrake\n"
@@ -3248,7 +3326,9 @@ msgid ""
"\n"
" * \"Use existing partition\": the wizard has detected one or more existing\n"
"Linux partitions on your hard drive. If you want to use them, choose this\n"
-"option;\n"
+"option. You will then be asked to choose the mount points associated to\n"
+"each of the partitions. The legacy mount points are selected by default,\n"
+"and you should generally keep them.\n"
"\n"
" * \"Use the free space on the Windows; partition\": if Microsoft Windows\n"
"is installed on your hard drive and takes all the space available on it,\n"
@@ -3281,7 +3361,9 @@ msgid ""
" * \"Expert mode\": choose this option if you want to manually partition\n"
"your hard drive. Be careful - it is a powerful but dangerous choice. You\n"
"can very easily lose all your data. Hence, do not choose this unless you\n"
-"know what you are doing."
+"know what you are doing. To know how do use the DiskDrake utility used\n"
+"here, refer to the section ``Managing Your Partitions'' of the ````User\n"
+"Guide''''"
msgstr ""
"Yn awr mae angen i chi ddewis lle ar eich disg caled i osod eich\n"
"system weithredu Linux Mandrake. Os yw eich disg caled yn wag neu\n"
@@ -3355,7 +3437,7 @@ msgstr ""
"beth\n"
"ydych yn ei wneud."
-#: ../../help.pm_.c:347
+#: ../../help.pm_.c:341
msgid ""
"There you are. Installation is now complete and your GNU/Linux system is\n"
"ready to use. Just click \"OK\" to reboot the system. You can start\n"
@@ -3421,7 +3503,7 @@ msgstr ""
"Linux,\n"
"teipiwch \"mformat a:\")"
-#: ../../help.pm_.c:378
+#: ../../help.pm_.c:372
msgid ""
"Any partitions that have been newly defined must be formatted for use\n"
"(formatting means creating a filesystem).\n"
@@ -3473,7 +3555,7 @@ msgstr ""
"Cliciwch \"Uwch\" os ydych am ddewis rhaniadau i'w gwirio am flociau\n"
"gwallus ar y ddisg."
-#: ../../help.pm_.c:404
+#: ../../help.pm_.c:398
msgid ""
"Your new Mandrake Linux operating system is currently being installed.\n"
"Depending on the number of packages you will be installing and the speed of\n"
@@ -3488,12 +3570,13 @@ msgstr ""
"\n"
"Amynedd..."
-#: ../../help.pm_.c:412
+#: ../../help.pm_.c:406
+#, fuzzy
msgid ""
"At the time you are installing Mandrake Linux, it is likely that some\n"
"packages have been updated since the initial release. Some bugs may have\n"
"been fixed, and security issues solved. To allow you to benefit from these\n"
-"updates, you are now proposed to download them from the Internet. Choose\n"
+"updates, you are now able to download them from the Internet. Choose\n"
"\"Yes\" if you have a working Internet connection, or \"No\" if you prefer\n"
"to install updated packages later.\n"
"\n"
@@ -3514,7 +3597,7 @@ msgstr ""
"pecynnau yn ymddangos: Wedi i chi benderfynu ar eich dewis, cliciwch\n"
"\"Gosod\" i estyn a gosod y pecynnau hynny neu \"Diddymu\" i beidio."
-#: ../../help.pm_.c:425
+#: ../../help.pm_.c:419
msgid ""
"Before continuing, you should read carefully the terms of the license. It\n"
"covers the whole Mandrake Linux distribution, and if you do not agree with\n"
@@ -3527,14 +3610,15 @@ msgstr ""
"amodau, cliciwch ar fotwm \"Gwrthod\" fydd yn terfynu'r gosodiad yn syth.\n"
"I barhau gyda'r gosodiad, cliciwch fotwm \"Derbyn\"."
-#: ../../help.pm_.c:432
+#: ../../help.pm_.c:426
+#, fuzzy
msgid ""
"At this point, it is time to choose the security level desired for the\n"
"machine. As a rule of thumb, the more exposed the machine is, and the more\n"
"the data stored in it is crucial, the higher the security level should be.\n"
"However, a higher security level is generally obtained at the expense of\n"
-"easiness of use. Refer to the \"msec\" chapter of the ``Reference Manual''\n"
-"to get more information about the meaning of these levels.\n"
+"ease of use. Refer to the \"msec\" chapter of the ``Reference Manual'' to\n"
+"get more information about the meaning of these levels.\n"
"\n"
"If you do not know what to choose, keep the default option."
msgstr ""
@@ -3546,7 +3630,7 @@ msgstr ""
"\n"
"Os nad ydych yn siwr beth i'w ddewis, dewiswch y rhagosodedig."
-#: ../../help.pm_.c:442
+#: ../../help.pm_.c:436
#, fuzzy
msgid ""
"At this point, you need to choose which partition(s) will be used for the\n"
@@ -3564,26 +3648,26 @@ msgid ""
" * \"Clear all\": this option deletes all partitions on the selected hard\n"
"drive;\n"
"\n"
-" * \"Auto allocate\": this option enables to automatically create \"Ext2\"\n"
-"and swap partitions in free space of your hard drive;\n"
+" * \"Auto allocate\": this option enables to automatically create ext3 and\n"
+"swap partitions in free space of your hard drive;\n"
"\n"
-" * \"More\": gives access to additional features:\n"
+"\"More\": gives access to additional features:\n"
"\n"
-" * \"Save partition table\": saves the partition table to a floppy.\n"
-"Useful for later partition-table recovery if necessary. It is strongly\n"
-"recommended to perform this step;\n"
+" * \"Save partition table\": saves the partition table to a floppy. Useful\n"
+"for later partition-table recovery if necessary. It is strongly recommended\n"
+"to perform this step;\n"
"\n"
-" * \"Restore partition table\": allows to restore a previously saved\n"
+" * \"Restore partition table\": allows to restore a previously saved\n"
"partition table from floppy disk;\n"
"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you\n"
-"can try to recover it using this option. Please be careful and remember\n"
-"that it can fail;\n"
+" * \"Rescue partition table\": if your partition table is damaged, you can\n"
+"try to recover it using this option. Please be careful and remember that it\n"
+"can fail;\n"
"\n"
-" * \"Reload partition table\": discards all changes and loads your\n"
-"initial partition table;\n"
+" * \"Reload partition table\": discards all changes and loads your initial\n"
+"partition table;\n"
"\n"
-" * \"Removable media automounting\": unchecking this option will force\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
"users to manually mount and unmount removable medias such as floppies and\n"
"CD-ROMs.\n"
"\n"
@@ -3611,7 +3695,7 @@ msgid ""
" * Ctrl-m to set the mount point.\n"
"\n"
"To get information about the different filesystem types available, please\n"
-"read the ext2fs chapter from the ``Reference Manual''.\n"
+"read the ext2FS chapter from the ``Reference Manual''.\n"
"\n"
"If you are installing on a PPC machine, you will want to create a small HFS\n"
"``bootstrap'' partition of at least 1MB, which will be used by the yaboot\n"
@@ -3654,7 +3738,7 @@ msgstr ""
"lwytho'r\n"
"tabl rhaniad gwreiddiol.\n"
"\n"
-" *\"awto osod cyfrwng symudol\": dad-diciwch y dewis hwn i osod a dad "
+" *\"Awto osod cyfrwng symudol\": dad-diciwch y dewis hwn i osod a dad "
"osod\n"
"gyda llaw, cyfryngau symudol megis disgiau meddal ac CD-ROMau\n"
"\n"
@@ -3696,7 +3780,7 @@ msgstr ""
"gyfer\n"
" sefyllfaoedd cychwyn argyfyngus!"
-#: ../../help.pm_.c:513
+#: ../../help.pm_.c:507
msgid ""
"More than one Microsoft partition has been detected on your hard drive.\n"
"Please choose the one you want to resize in order to install your new\n"
@@ -3758,11 +3842,11 @@ msgstr ""
"Mae \"Enw Windows\" yn cyfeirio at y llythyren y disg caled o dan\n"
" Windows (\"C:\" yw'r ddisg neu raniad cyntaf)."
-#: ../../help.pm_.c:544
+#: ../../help.pm_.c:538
msgid "Please be patient. This operation can take several minutes."
msgstr "Amynedd... Gall y weithred hon gymryd rhai munudau."
-#: ../../help.pm_.c:547
+#: ../../help.pm_.c:541
#, fuzzy
msgid ""
"DrakX now needs to know if you want to perform a default (\"Recommended\")\n"
@@ -3770,23 +3854,23 @@ msgid ""
"also choose to do a new install or an upgrade of an existing Mandrake Linux\n"
"system:\n"
"\n"
-" * \"Install\": completely wipes out the old system. In fact, depending on\n"
-"what currently holds your machine, you will be able to keep some old (Linux\n"
-"or other) partitions unchanged;\n"
+" * \"Install\": completely wipes out the old system, however, depending on\n"
+"what is currently installed on your machine, you may be able to keep some\n"
+"old partitions (Linux or otherwise) unchanged;\n"
"\n"
" * \"Upgrade\": this installation class allows to simply update the\n"
"packages currently installed on your Mandrake Linux system. It keeps the\n"
"current partitions of your hard drives as well as user configurations. All\n"
-"other configuration steps remain available with respect to plain\n"
+"other configuration steps remain available, similar to a normal\n"
"installation;\n"
"\n"
-" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
-"existing Mandrake Linux system while keeping all system configurations\n"
-"unchanged. Adding new packages to the current installation is also\n"
-"possible.\n"
+" * \"Upgrade Packages Only\": this new installation class allows you to\n"
+"upgrade an existing Mandrake Linux system while keeping all system\n"
+"configurations unchanged. Adding new packages to the current installation\n"
+"is also possible.\n"
"\n"
-"Upgrades should work fine for Mandrake Linux systems starting from \"8.1\"\n"
-"release.\n"
+"Upgrades should work fine on Mandrake Linux systems containing version\n"
+"\"8.1\" or later.\n"
"\n"
"Depending on your knowledge of GNU/Linux, select one of the following\n"
"choices:\n"
@@ -3795,11 +3879,11 @@ msgid ""
"operating system. The installation will be very easy and you will only be\n"
"asked a few questions;\n"
"\n"
-" * Expert: if you have a good knowledge of GNU/Linux, you can choose this\n"
-"installation class. The expert installation will allow you to perform a\n"
-"highly-customized installation. Answering some of the questions can be\n"
-"difficult if you do not have a good knowledge of GNU/Linux, so do not\n"
-"choose this unless you know what you are doing."
+" * Expert: if you have a good understanding of GNU/Linux, you may wish to\n"
+"perform a highly customized installation. Some of the decisions you will\n"
+"have to make may be difficult if you do not have good knowledge of\n"
+"GNU/Linux, so it is not recommended that those without a fair amount of\n"
+"experience select this installation class."
msgstr ""
"Mae DrakX am wybod a ydych am wneud gosodiad rhagosodedig.\n"
"Hwn sy'n cael ei (\"Argymell\") neu a ydych eisiau mwy o reolaeth\n"
@@ -3835,19 +3919,23 @@ msgstr ""
"oes gennych wybodaeth drylwyr o GNU/Linux, felly peidiwch â dewis hwn os\n"
" nad ydych yn gwybod beth rydych yn ei wneud."
-#: ../../help.pm_.c:584
+#: ../../help.pm_.c:578
+#, fuzzy
msgid ""
"Normally, DrakX selects the right keyboard for you (depending on the\n"
-"language you have chosen) and you won't even see this step. However, you\n"
-"might not have a keyboard that corresponds exactly to your language: for\n"
-"example, if you are an English speaking Swiss person, you may still want\n"
-"your keyboard to be a Swiss keyboard. Or if you speak English but are\n"
-"located in Quebec, you may find yourself in the same situation. In both\n"
-"cases, you will have to go back to this installation step and select an\n"
-"appropriate keyboard from the list.\n"
+"language you have chosen). However, you might not have a keyboard that\n"
+"corresponds exactly to your language: for example, if you are an English\n"
+"speaking Swiss person, you may still want your keyboard to be a Swiss\n"
+"keyboard. Or if you speak English but are located in Quebec, you may find\n"
+"yourself in the same situation. In both cases, you will have to go back to\n"
+"this installation step and select an appropriate keyboard from the list.\n"
"\n"
"Click on the \"More\" button to be presented with the complete list of\n"
-"supported keyboards."
+"supported keyboards.\n"
+"\n"
+"If you choose a keyboard layout based on a non-latin alphabet, you will be\n"
+"asked on next dialog to choose the key binding that will switch the\n"
+"keyboard layout between the latin and non latin layouts."
msgstr ""
"Fel arfer mae DrakX yn dewis y bysellfwrdd cywir ar eich cyfer ( gan "
"ddibynnu pa\n"
@@ -3866,8 +3954,11 @@ msgstr ""
" cynnal.\n"
" "
-#: ../../help.pm_.c:597
+#: ../../help.pm_.c:594
+#, fuzzy
msgid ""
+"The first step is to choose your preferred language.\n"
+"\n"
"Please choose your preferred language for installation and system usage.\n"
"\n"
"Clicking on the \"Advanced\" button will allow you to select other\n"
@@ -3895,7 +3986,8 @@ msgstr ""
"Sylwer bod modd gosod myw nag un iaith. Unwaith i chi ddewis unrhyw \n"
"leoleiddiad ychwanegol cliciwch y botwm \"Iawn\" i barhau."
-#: ../../help.pm_.c:610
+#: ../../help.pm_.c:609
+#, fuzzy
msgid ""
"DrakX generally detects the number of buttons your mouse has. If not, it\n"
"assumes you have a two-button mouse and will set it up for third-button\n"
@@ -3908,7 +4000,14 @@ msgid ""
"If you choose a mouse other than the default, a test screen will be\n"
"displayed. Use the buttons and wheel to verify that the settings are\n"
"correct. If the mouse is not working well, press the space bar or [Return]\n"
-"to \"Cancel\" and choose again."
+"to \"Cancel\" and choose again.\n"
+"\n"
+"Wheel mouses are sometimes not automatically detected. You will need to\n"
+"manually select it in the list. Be sure to select the one corresponding to\n"
+"the correct port it is attached to. After you have pressed the \"OK\"\n"
+"button, a mouse image is displayed. You then need to move the wheel of your\n"
+"mouse to activate it correctly. Then test all buttons and movements are\n"
+"correct."
msgstr ""
"Drwy ragosodiad mae DrakX yn cymryd bod gennych lygoden dau fotwm a bydd yn "
"ei osod i efelychu botwm tri. Bydd DrakX yn gwybod yn awtomatig p'un a'i "
@@ -3922,7 +4021,7 @@ msgstr ""
"fod y gosodiadau'n gweithio. Os nad yw'r llygoden yn gweithio'n iawn pwyswch "
"ar y bylchwr neu [Return] i \"Dileu\" a dewis eto."
-#: ../../help.pm_.c:624
+#: ../../help.pm_.c:630
msgid ""
"Please select the correct port. For example, the \"COM1\" port under\n"
"Windows is named \"ttyS0\" under GNU/Linux."
@@ -3931,7 +4030,7 @@ msgstr ""
"yn\n"
"\"ttyS0\" yn GNU/Linux, e.e."
-#: ../../help.pm_.c:628
+#: ../../help.pm_.c:634
#, fuzzy
msgid ""
"This is the most crucial decision point for the security of your GNU/Linux\n"
@@ -3962,9 +4061,9 @@ msgid ""
"In Expert mode, you will be asked if you will be connecting to an\n"
"authentication server, like NIS or LDAP.\n"
"\n"
-"If your network uses the LDAP (or NIS) protocol for authentication, select\n"
-"\"LDAP\" (or \"NIS\") as authentication. If you do not know, ask your\n"
-"network administrator.\n"
+"If your network uses either of the LDAP, NIS, or PDC Windows Domain\n"
+"authentication services, select the appropriate one as \"authentication\".\n"
+"If you do not know, ask your network administrator.\n"
"\n"
"If your computer is not connected to any administrated network, you will\n"
"want to choose \"Local files\" for authentication."
@@ -4013,7 +4112,7 @@ msgstr ""
"weinyddu,\n"
" byddwch angen dewis \"Ffeiliau lleol\" ar gyfer dilysu."
-#: ../../help.pm_.c:664
+#: ../../help.pm_.c:670
#, fuzzy
msgid ""
"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
@@ -4053,16 +4152,7 @@ msgid ""
"options. !!\n"
"\n"
"Clicking the \"Advanced\" button in this dialog will offer many advanced\n"
-"options, which are reserved to the expert user.\n"
-"\n"
-"After you have configured the general bootloader parameters, the list of\n"
-"boot options which will be available at boot time will be displayed.\n"
-"\n"
-"If there is another operating system installed on your machine, it will\n"
-"automatically be added to the boot menu. Here, you can choose to fine-tune\n"
-"the existing options. Select an entry and click \"Modify\" to modify or\n"
-"remove it; \"Add\" creates a new entry; and \"Done\" goes on to the next\n"
-"installation step."
+"options, which are reserved for the expert user."
msgstr ""
"Mae LILO a grub yn llwythwyr cychwyn ar gyfer GNU/Linux. Fel rheol\n"
"mae'r cam yma'n gwbl awtomatig. Mewn gwirionedd mae DrakX yn\n"
@@ -4123,13 +4213,17 @@ msgstr ""
"\"Ychwanegu\" i greu enw newydd; a \"Gorffen\" i fynd ymlaen i'r cam nesaf "
"o'r gosod."
-#: ../../help.pm_.c:713
+#: ../../help.pm_.c:710
+#, fuzzy
msgid ""
-"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
-"either GNU/Linux or any other operating system present on your computer.\n"
-"Normally, these other operating systems are correctly detected and\n"
-"installed. If this is not the case, you can add an entry by hand in this\n"
-"screen. Be careful to choose the correct parameters.\n"
+"After you have configured the general bootloader parameters, the list of\n"
+"boot options which will be available at boot time will be displayed.\n"
+"\n"
+"If there is another operating system installed on your machine, it will\n"
+"automatically be added to the boot menu. Here, you can choose to fine-tune\n"
+"the existing options. Select an entry and click \"Modify\" to modify or\n"
+"remove it; \"Add\" creates a new entry; and \"Done\" goes on to the next\n"
+"installation step.\n"
"\n"
"You may also not want to give access to these other operating systems to\n"
"anyone. In which case, you can delete the corresponding entries. But then,\n"
@@ -4162,7 +4256,6 @@ msgstr ""
"sector of drive (MBR)\"."
#: ../../help.pm_.c:731
-#, fuzzy
msgid ""
"Here, we select a printing system for your computer. Other OSs may offer\n"
"you one, but Mandrake Linux offers three.\n"
@@ -4222,18 +4315,18 @@ msgstr ""
#: ../../help.pm_.c:759
#, fuzzy
msgid ""
-"DrakX now detects any IDE device present in your computer. It will also\n"
-"scan for one or more PCI SCSI card(s) on your system. If a SCSI card is\n"
+"DrakX now detects any IDE devices present in your computer. It will also\n"
+"scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
"found, DrakX will automatically install the appropriate driver.\n"
"\n"
"Because hardware detection does not always detect a piece of hardware,\n"
"DrakX will ask you to confirm if a PCI SCSI card is present. Click \"Yes\"\n"
"if you know that there is a SCSI card installed in your machine. You will\n"
-"be presented a list of SCSI cards to choose from. Click \"No\" if you have\n"
-"no SCSI hardware. If you are unsure, you can check the list of hardware\n"
-"detected in your machine by selecting \"See hardware info\" and clicking\n"
-"\"OK\". Examine the list of hardware and then click on the \"OK\" button to\n"
-"return to the SCSI interface question.\n"
+"be presented with a list of SCSI cards to choose from. Click \"No\" if you\n"
+"have no SCSI hardware. If you are unsure, you can check the list of\n"
+"hardware detected in your machine by selecting \"See hardware info\" and\n"
+"clicking \"OK\". Examine the list of hardware and then click on the \"OK\"\n"
+"button to return to the SCSI interface question.\n"
"\n"
"If you have to manually specify your adapter, DrakX will ask if you want to\n"
"specify options for it. You should allow DrakX to probe the hardware for\n"
@@ -4281,7 +4374,6 @@ msgstr ""
" ydych wedi defnyddio'r caledwedd gyda Windows ar eich system)."
#: ../../help.pm_.c:786
-#, fuzzy
msgid ""
"You can add additional entries for yaboot, either for other operating\n"
"systems, alternate kernels, or for an emergency boot image.\n"
@@ -4383,7 +4475,6 @@ msgstr ""
" bwyso ar [Tab] i weld dewisiadau'r cychwyn."
#: ../../help.pm_.c:833
-#, fuzzy
msgid ""
"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
"either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
@@ -4473,7 +4564,9 @@ msgid ""
"order to configure the clock according to the time zone you are in;\n"
"\n"
" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
-"configuration wizard;\n"
+"configuration wizard. Consult the corresponding chapter of the ``User\n"
+"Guide'' for more information on how to setup a new printer. The interface\n"
+"presented there is similar to the one used during installation;\n"
"\n"
" * \"Sound card\": if a sound card is detected on your system, it is\n"
"displayed here. No modification possible at installation time;\n"
@@ -4520,7 +4613,7 @@ msgstr ""
" yn cael ei ddangos yma. Mae modd clicio ar y botwm i newid y paramedrau\n"
" cysylltiedig."
-#: ../../help.pm_.c:894
+#: ../../help.pm_.c:896
msgid ""
"Choose the hard drive you want to erase in order to install your new\n"
"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
@@ -4530,7 +4623,7 @@ msgstr ""
"Mandrake Linux newydd. Byddwch ofalus, bydd yr holl ddata sydd arno'n\n"
"cael ei ddileu ac ni fydd modd ei adfer!"
-#: ../../help.pm_.c:899
+#: ../../help.pm_.c:901
msgid ""
"Click on \"OK\" if you want to delete all data and partitions present on\n"
"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
@@ -4564,7 +4657,7 @@ msgstr ""
msgid "You must also format %s"
msgstr "Rhaid fformatio %s"
-#: ../../install_any.pm_.c:418
+#: ../../install_any.pm_.c:423
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -4587,20 +4680,29 @@ msgstr ""
"\n"
"Ydych chi wir eisiau gosod y gwasanaethwyr hyn?\n"
-#: ../../install_any.pm_.c:453
+#: ../../install_any.pm_.c:441
+#, c-format
+msgid ""
+"The following packages will be removed to allow upgrading your system: %s\n"
+"\n"
+"\n"
+"Do you really want to remove these packages?\n"
+msgstr ""
+
+#: ../../install_any.pm_.c:471
msgid "Can't use broadcast with no NIS domain"
msgstr "Methu defnyddio darlledu heb parth NIS"
-#: ../../install_any.pm_.c:841
+#: ../../install_any.pm_.c:862
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Rhowch ddisg meddal wedi ei fformatio i FAT yng ngyrrwr %s"
-#: ../../install_any.pm_.c:845
+#: ../../install_any.pm_.c:866
msgid "This floppy is not FAT formatted"
msgstr "Nid yw 'r disg meddal hwn wedi ei fformatio i FAT"
-#: ../../install_any.pm_.c:857
+#: ../../install_any.pm_.c:878
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -4608,11 +4710,19 @@ msgstr ""
"I ddefnyddio'r dewis o becynnau wedi eu cadw, cychwynnwch y gosodiad gyda "
"``linux defcfg=floppy''"
-#: ../../install_any.pm_.c:880 ../../partition_table.pm_.c:771
+#: ../../install_any.pm_.c:901 ../../partition_table.pm_.c:767
#, c-format
msgid "Error reading file %s"
msgstr "Gwall wrth ddarllen ffeil %s"
+#: ../../install_any.pm_.c:1023
+msgid ""
+"An error occurred - no valid devices were found on which to create new "
+"filesystems. Please check your hardware for the cause of this problem"
+msgstr ""
+"Digwyddodd gwall - ni chanfyddwyd dyfeisiadau dilys i greu systemau ffeil "
+"arnynt. Gwiriwch eich caledwedd am ffynhonell yr anhawster."
+
#: ../../install_interactive.pm_.c:23
#, c-format
msgid ""
@@ -4646,59 +4756,59 @@ msgstr ""
"\n"
"Parhau beth bynnag?"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:168
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:169
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "Rhaid bod gennych raniad FAT wedi ei osod yn /boot/efi"
-#: ../../install_interactive.pm_.c:91
+#: ../../install_interactive.pm_.c:92
msgid "Use free space"
msgstr "Defnyddiwch le gwag"
-#: ../../install_interactive.pm_.c:93
+#: ../../install_interactive.pm_.c:94
msgid "Not enough free space to allocate new partitions"
msgstr "Nid oes digon o le i ddynodi rhaniadau newydd"
-#: ../../install_interactive.pm_.c:101
+#: ../../install_interactive.pm_.c:102
msgid "Use existing partitions"
msgstr "Defnyddiwch y rhaniadau cyfredol"
-#: ../../install_interactive.pm_.c:103
+#: ../../install_interactive.pm_.c:104
msgid "There is no existing partition to use"
msgstr "Nid oes rhaniad cyfredol i'w ddefnyddio"
-#: ../../install_interactive.pm_.c:110
+#: ../../install_interactive.pm_.c:111
msgid "Use the Windows partition for loopback"
msgstr "Defnyddiwch rhaniad Windows ar gyfer cylch-ol"
-#: ../../install_interactive.pm_.c:113
+#: ../../install_interactive.pm_.c:114
msgid "Which partition do you want to use for Linux4Win?"
msgstr "Pa raniad hoffech chi ei ddefnyddio ar gyfer Linux4Win?"
-#: ../../install_interactive.pm_.c:115
+#: ../../install_interactive.pm_.c:116
msgid "Choose the sizes"
msgstr "Dewiswch y maint"
-#: ../../install_interactive.pm_.c:116
+#: ../../install_interactive.pm_.c:117
msgid "Root partition size in MB: "
msgstr "Maint rhaniad gwraidd mewn MB :"
-#: ../../install_interactive.pm_.c:117
+#: ../../install_interactive.pm_.c:118
msgid "Swap partition size in MB: "
msgstr "Maint rhaniad cyfnewid mewn MB: "
-#: ../../install_interactive.pm_.c:126
+#: ../../install_interactive.pm_.c:128
msgid "Use the free space on the Windows partition"
msgstr "Defnyddiwch y lle gwag ar raniad Windows"
-#: ../../install_interactive.pm_.c:129
+#: ../../install_interactive.pm_.c:131
msgid "Which partition do you want to resize?"
msgstr "Pa raniad ydych chi am newid ei faint?"
-#: ../../install_interactive.pm_.c:131
+#: ../../install_interactive.pm_.c:133
msgid "Resizing Windows partition"
msgstr "Mesur ffiniau system ffeilio Windows"
-#: ../../install_interactive.pm_.c:134
+#: ../../install_interactive.pm_.c:136
#, c-format
msgid ""
"The FAT resizer is unable to handle your partition, \n"
@@ -4707,14 +4817,14 @@ msgstr ""
"Nid yw'r newidiwr maint FAT yn medru trin eich rhaniad.\n"
"digwyddodd y gwall canlynol: %s"
-#: ../../install_interactive.pm_.c:137
+#: ../../install_interactive.pm_.c:139
msgid ""
"Your Windows partition is too fragmented. Please reboot your computer under "
"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
"installation."
msgstr "Mae eich rhaniad Windows yn rhy ysgyriog, rhedwch \"defrag\" yn gyntaf"
-#: ../../install_interactive.pm_.c:138
+#: ../../install_interactive.pm_.c:140
msgid ""
"WARNING!\n"
"\n"
@@ -4734,21 +4844,21 @@ msgstr ""
"Dylech hefyd wneud copi wrth gefn o'ch data.Pan rydych yn siwr, cliciwch "
"Iawn."
-#: ../../install_interactive.pm_.c:148
+#: ../../install_interactive.pm_.c:150
msgid "Which size do you want to keep for Windows on"
msgstr "Pa faint ydych am ei gadw ar gyfer Windows ar"
-#: ../../install_interactive.pm_.c:149
+#: ../../install_interactive.pm_.c:151
#, c-format
msgid "partition %s"
msgstr "rhaniad %s"
-#: ../../install_interactive.pm_.c:156
+#: ../../install_interactive.pm_.c:158
#, c-format
msgid "FAT resizing failed: %s"
msgstr "Methodd newid maint FAT: %s"
-#: ../../install_interactive.pm_.c:171
+#: ../../install_interactive.pm_.c:173
msgid ""
"There is no FAT partition to resize or to use as loopback (or not enough "
"space left)"
@@ -4756,32 +4866,32 @@ msgstr ""
"Nid oes rhaniadau FAT i newid eu maint neu i'w defnyddio fel cylch-ôl (neu "
"nad oes digon o le ar ôl)"
-#: ../../install_interactive.pm_.c:177
+#: ../../install_interactive.pm_.c:179
msgid "Erase entire disk"
msgstr "Dileu'r ddisg gyfan"
-#: ../../install_interactive.pm_.c:177
+#: ../../install_interactive.pm_.c:179
msgid "Remove Windows(TM)"
msgstr "Tynnu Windows(TM)"
-#: ../../install_interactive.pm_.c:180
+#: ../../install_interactive.pm_.c:182
msgid "You have more than one hard drive, which one do you install linux on?"
msgstr "Mae gennych fwy nag un disg caled, ar ba un ydych am osod linux?"
-#: ../../install_interactive.pm_.c:183
+#: ../../install_interactive.pm_.c:185
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr "Bydd pob rhaniad a'u data yn cael ei ddileu ar yrrwr %s"
-#: ../../install_interactive.pm_.c:191
+#: ../../install_interactive.pm_.c:193
msgid "Custom disk partitioning"
msgstr "Rhannu disg unigol"
-#: ../../install_interactive.pm_.c:195
+#: ../../install_interactive.pm_.c:197
msgid "Use fdisk"
msgstr "Defnyddiwch fdisk"
-#: ../../install_interactive.pm_.c:198
+#: ../../install_interactive.pm_.c:200
#, c-format
msgid ""
"You can now partition %s.\n"
@@ -4790,28 +4900,28 @@ msgstr ""
"Medrwch rhannu %s\n"
"Wedi gorffen, peidiwch anghofio cadw gyda 'w'"
-#: ../../install_interactive.pm_.c:227
+#: ../../install_interactive.pm_.c:229
msgid "You don't have enough free space on your Windows partition"
msgstr "Does gennych ddim digon o le rhydd ar eich rhaniad Windows"
-#: ../../install_interactive.pm_.c:243
+#: ../../install_interactive.pm_.c:245
msgid "I can't find any room for installing"
msgstr "Methu canfod lle ar gyfer gosod"
-#: ../../install_interactive.pm_.c:246
+#: ../../install_interactive.pm_.c:248
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr "Daeth dewin Rhannu DrakX o hyd i'r atebion canlynol:"
-#: ../../install_interactive.pm_.c:250
+#: ../../install_interactive.pm_.c:252
#, c-format
msgid "Partitioning failed: %s"
msgstr "Methodd rhannu: %s"
-#: ../../install_interactive.pm_.c:260
+#: ../../install_interactive.pm_.c:262
msgid "Bringing up the network"
msgstr "Cychwyn y rhwydwaith"
-#: ../../install_interactive.pm_.c:265
+#: ../../install_interactive.pm_.c:267
msgid "Bringing down the network"
msgstr "Cau'r rhwydwaith"
@@ -4823,12 +4933,12 @@ msgstr ""
"Digwyddodd gwall ond wn i ddim sut i ddelio ag ef yn dwt.\n"
"Mae'n beryglus i barhau."
-#: ../../install_steps.pm_.c:210
+#: ../../install_steps.pm_.c:211
#, c-format
msgid "Duplicate mount point %s"
msgstr "Pwynt gosod dyblyg %s"
-#: ../../install_steps.pm_.c:379
+#: ../../install_steps.pm_.c:380
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -4840,12 +4950,12 @@ msgstr ""
"Gwiriwch y CD-ROM ar gyfrifiadur wedi ei osod gan ddefnyddio \"rpm -qpl "
"Mandrake/RPMS/*.rpm\"\n"
-#: ../../install_steps.pm_.c:451
+#: ../../install_steps.pm_.c:452
#, c-format
msgid "Welcome to %s"
msgstr "Croeso i %s"
-#: ../../install_steps.pm_.c:530 ../../install_steps.pm_.c:770
+#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:772
msgid "No floppy drive available"
msgstr "Does dim gyrrwr disg meddal ar gael"
@@ -4875,69 +4985,69 @@ msgstr "Gosod Dosbarth"
msgid "Please choose one of the following classes of installation:"
msgstr "Dewiswch un o'r dosbarthiadau canlynol o osodiad::"
-#: ../../install_steps_gtk.pm_.c:243 ../../install_steps_interactive.pm_.c:694
+#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:678
msgid "Package Group Selection"
msgstr "Dewis y Grwp Pecyn"
-#: ../../install_steps_gtk.pm_.c:276 ../../install_steps_interactive.pm_.c:709
+#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:693
msgid "Individual package selection"
msgstr "Dewis pecynnau unigol."
-#: ../../install_steps_gtk.pm_.c:299 ../../install_steps_interactive.pm_.c:633
+#: ../../install_steps_gtk.pm_.c:293 ../../install_steps_interactive.pm_.c:617
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Cyfanswm maint: %d/%d MB"
-#: ../../install_steps_gtk.pm_.c:341
+#: ../../install_steps_gtk.pm_.c:335
msgid "Bad package"
msgstr "Pecyn gwallus"
-#: ../../install_steps_gtk.pm_.c:342
+#: ../../install_steps_gtk.pm_.c:336
#, c-format
msgid "Name: %s\n"
msgstr "Enw: %s\n"
-#: ../../install_steps_gtk.pm_.c:343
+#: ../../install_steps_gtk.pm_.c:337
#, c-format
msgid "Version: %s\n"
msgstr "Fersiwn: %s\n"
-#: ../../install_steps_gtk.pm_.c:344
+#: ../../install_steps_gtk.pm_.c:338
#, c-format
msgid "Size: %d KB\n"
msgstr "Maint: %d KB\n"
-#: ../../install_steps_gtk.pm_.c:345
+#: ../../install_steps_gtk.pm_.c:339
#, c-format
msgid "Importance: %s\n"
msgstr "Pwysigrwydd: %s\n"
-#: ../../install_steps_gtk.pm_.c:367
+#: ../../install_steps_gtk.pm_.c:361
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr "Nid oes modd i chi ddewis y pecyn hwn - does dim lle ar ol i'w osod"
-#: ../../install_steps_gtk.pm_.c:372
+#: ../../install_steps_gtk.pm_.c:366
msgid "The following packages are going to be installed"
msgstr "Mae'r pecynnau canlynol i'w gosod"
-#: ../../install_steps_gtk.pm_.c:373
+#: ../../install_steps_gtk.pm_.c:367
msgid "The following packages are going to be removed"
msgstr "Bydd y pecynnau canlynol yn cael eu tynnu"
-#: ../../install_steps_gtk.pm_.c:385
+#: ../../install_steps_gtk.pm_.c:379
msgid "You can't select/unselect this package"
msgstr "Does dim modd i chi ddewis/dad-ddewis y pecyn"
-#: ../../install_steps_gtk.pm_.c:397
+#: ../../install_steps_gtk.pm_.c:391
msgid "This is a mandatory package, it can't be unselected"
msgstr "Mae hwn yn becyn hanfodol, does dim modd ei ddad-ddewis"
-#: ../../install_steps_gtk.pm_.c:399
+#: ../../install_steps_gtk.pm_.c:393
msgid "You can't unselect this package. It is already installed"
msgstr "Does dim mod dad-ddewis y pecyn, mae wedi ei osod yn barod"
-#: ../../install_steps_gtk.pm_.c:402
+#: ../../install_steps_gtk.pm_.c:396
msgid ""
"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
@@ -4945,74 +5055,74 @@ msgstr ""
"Rhaid i'r pecyn gael ei uwchraddio\n"
"Ydych chi'n siwr eich bod am ei ddad-ddewis?"
-#: ../../install_steps_gtk.pm_.c:405
+#: ../../install_steps_gtk.pm_.c:399
msgid "You can't unselect this package. It must be upgraded"
msgstr "Does dim mod dad-ddewis y pecyn hwn. Rhaid ei ddiweddaru"
-#: ../../install_steps_gtk.pm_.c:410
+#: ../../install_steps_gtk.pm_.c:404
msgid "Show automatically selected packages"
msgstr "Dangoswch y pecynnau dewis awtomatig"
-#: ../../install_steps_gtk.pm_.c:411 ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_gtk.pm_.c:405 ../../install_steps_interactive.pm_.c:255
#: ../../install_steps_interactive.pm_.c:259
-#: ../../standalone/drakbackup_.c:3600
+#: ../../standalone/drakbackup_.c:4257
msgid "Install"
msgstr "Gosodiad"
-#: ../../install_steps_gtk.pm_.c:414
+#: ../../install_steps_gtk.pm_.c:408
msgid "Load/Save on floppy"
msgstr "LLwytho/Cadw ar ddisg meddal"
-#: ../../install_steps_gtk.pm_.c:415
+#: ../../install_steps_gtk.pm_.c:409
msgid "Updating package selection"
msgstr "Diweddaru'r dewis pecynnau"
-#: ../../install_steps_gtk.pm_.c:420
+#: ../../install_steps_gtk.pm_.c:414
msgid "Minimal install"
msgstr "Gosodiad lleiaf"
-#: ../../install_steps_gtk.pm_.c:435 ../../install_steps_interactive.pm_.c:538
+#: ../../install_steps_gtk.pm_.c:429 ../../install_steps_interactive.pm_.c:522
msgid "Choose the packages you want to install"
msgstr "Dewiswch y pecynnau hoffech chi eu gosod"
-#: ../../install_steps_gtk.pm_.c:451 ../../install_steps_interactive.pm_.c:778
+#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:762
msgid "Installing"
msgstr "Gosod"
-#: ../../install_steps_gtk.pm_.c:457
+#: ../../install_steps_gtk.pm_.c:451
msgid "Estimating"
msgstr "Amcangyfrif"
-#: ../../install_steps_gtk.pm_.c:464
+#: ../../install_steps_gtk.pm_.c:458
msgid "Time remaining "
msgstr "Amser yn weddill"
-#: ../../install_steps_gtk.pm_.c:476
+#: ../../install_steps_gtk.pm_.c:470
msgid "Please wait, preparing installation..."
msgstr "Arhoswch, paratoi'r gosodiad"
-#: ../../install_steps_gtk.pm_.c:560
+#: ../../install_steps_gtk.pm_.c:554
#, c-format
msgid "%d packages"
msgstr "%d pecyn"
-#: ../../install_steps_gtk.pm_.c:565
+#: ../../install_steps_gtk.pm_.c:559
#, c-format
msgid "Installing package %s"
msgstr "Gosod pecynnau %s"
-#: ../../install_steps_gtk.pm_.c:602 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:802
+#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:786
#: ../../standalone/drakautoinst_.c:202
msgid "Accept"
msgstr "Derbyn"
-#: ../../install_steps_gtk.pm_.c:602 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:802
+#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:786
msgid "Refuse"
msgstr "Gwrthod"
-#: ../../install_steps_gtk.pm_.c:603 ../../install_steps_interactive.pm_.c:803
+#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:787
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -5026,17 +5136,17 @@ msgstr ""
"Rhowch yr CD-ROM sydd wedi ei labeli \"%s\" yn eich gyrrwr a chlicio Iawn\n"
"Os nad yw gennych, cliciwch Dileu i osgoi gosod o'r CD-ROM hwn."
-#: ../../install_steps_gtk.pm_.c:617 ../../install_steps_gtk.pm_.c:621
-#: ../../install_steps_interactive.pm_.c:815
-#: ../../install_steps_interactive.pm_.c:819
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_gtk.pm_.c:615
+#: ../../install_steps_interactive.pm_.c:799
+#: ../../install_steps_interactive.pm_.c:803
msgid "Go on anyway?"
msgstr "Mynd yn ein blaen beth bynnag?"
-#: ../../install_steps_gtk.pm_.c:617 ../../install_steps_interactive.pm_.c:815
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:799
msgid "There was an error ordering packages:"
msgstr "Roedd gwall wrth drefnu pecynnau"
-#: ../../install_steps_gtk.pm_.c:621 ../../install_steps_interactive.pm_.c:819
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:803
msgid "There was an error installing packages:"
msgstr "Digwyddodd gwall wrth osod pecyn"
@@ -5352,7 +5462,7 @@ msgid "Are you sure you refuse the licence?"
msgstr ""
#: ../../install_steps_interactive.pm_.c:211
-#: ../../install_steps_interactive.pm_.c:1038
+#: ../../install_steps_interactive.pm_.c:1023
#: ../../standalone/keyboarddrake_.c:31
msgid "Keyboard"
msgstr "Allweddell"
@@ -5400,11 +5510,11 @@ msgstr "Diweddaru'r pecynnau'n unig"
msgid "Please choose the type of your mouse."
msgstr "Dewiswch math eich llygoden"
-#: ../../install_steps_interactive.pm_.c:281 ../../standalone/mousedrake_.c:59
+#: ../../install_steps_interactive.pm_.c:281 ../../standalone/mousedrake_.c:60
msgid "Mouse Port"
msgstr "Porth Llygoden"
-#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:61
msgid "Please choose on which serial port your mouse is connected to."
msgstr "Dewiswch ba borth cyfresol mae eich llygoden wedi cysylltu iddi"
@@ -5436,115 +5546,89 @@ msgstr "Ffurfweddu IDE"
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:336
+#: ../../install_steps_interactive.pm_.c:338
msgid "No partition available"
msgstr "dim rhaniadau ar gael"
-#: ../../install_steps_interactive.pm_.c:339
+#: ../../install_steps_interactive.pm_.c:341
msgid "Scanning partitions to find mount points"
msgstr "Sganio rhaniadau i ganfod pwyntiau gosod"
-#: ../../install_steps_interactive.pm_.c:347
+#: ../../install_steps_interactive.pm_.c:349
msgid "Choose the mount points"
msgstr "Dewiswch y pwyntiau gosod"
-#: ../../install_steps_interactive.pm_.c:366
-#, c-format
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to not allow DrakX to modify the partition table.\n"
-"(the error is %s)\n"
-"\n"
-"Do you agree to loose all the partitions?\n"
-msgstr ""
-"Nid wyf yn medru darllen eich tabl rhaniad, mae'n rhy lygredig. :(\n"
-"Mae modd i mi fynd ymlaen i ddiystyru rhaniadau gwael (Bydd yr\n"
-" HOLL DDATA'n cael ei golli!). Yr ateb arall yw peidio gadael i\n"
-"DrakX newid y tabl rhaniad. (y gwall yw %s)\n"
-"\n"
-"Ydych chi'n cytuno i golli'r holl raniadau?\n"
-
#: ../../install_steps_interactive.pm_.c:379
msgid ""
-"DiskDrake failed to read correctly the partition table.\n"
-"Continue at your own risk!"
-msgstr ""
-"Methodd DrakX a darllen y tabl rhaniad yn gywir.\n"
-"Mae'n beryglus parhau!"
-
-#: ../../install_steps_interactive.pm_.c:396
-msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
msgstr ""
"Nid oes lle rhydd ar gyfer yr ymlwythwr 1MB! Bydd y gosodiad yn parhau, ond "
"i gychwyn y system bydd rhaid i chi greu rhaniad ymlwythwr yn DiskDrake"
-#: ../../install_steps_interactive.pm_.c:405
+#: ../../install_steps_interactive.pm_.c:388
msgid "No root partition found to perform an upgrade"
msgstr "Ni chanfyddwyd rhaniad gwraidd i wneud diweddariad"
-#: ../../install_steps_interactive.pm_.c:406
+#: ../../install_steps_interactive.pm_.c:389
msgid "Root Partition"
msgstr "Rhaniad Gwraidd"
-#: ../../install_steps_interactive.pm_.c:407
+#: ../../install_steps_interactive.pm_.c:390
msgid "What is the root partition (/) of your system?"
msgstr "Beth yw'r rhaniad gwraidd (/) ar eich system?"
-#: ../../install_steps_interactive.pm_.c:421
+#: ../../install_steps_interactive.pm_.c:404
msgid "You need to reboot for the partition table modifications to take place"
msgstr ""
"Bydd angen i chi ail gychwyn cyn i'r newidiadau yn eich tabl rhaniad ddigwydd"
-#: ../../install_steps_interactive.pm_.c:445
+#: ../../install_steps_interactive.pm_.c:428
msgid "Choose the partitions you want to format"
msgstr "Dewiswch y rhaniadau rydych am eu fformatio"
-#: ../../install_steps_interactive.pm_.c:446
+#: ../../install_steps_interactive.pm_.c:429
msgid "Check bad blocks?"
msgstr "Gwirio blociau gwallus?"
-#: ../../install_steps_interactive.pm_.c:473
+#: ../../install_steps_interactive.pm_.c:456
msgid "Formatting partitions"
msgstr "Yn fformatio rhaniadau"
-#: ../../install_steps_interactive.pm_.c:475
+#: ../../install_steps_interactive.pm_.c:458
#, c-format
msgid "Creating and formatting file %s"
msgstr "Creu a fformatio ffeil %s"
-#: ../../install_steps_interactive.pm_.c:480
+#: ../../install_steps_interactive.pm_.c:463
#, c-format
msgid ""
"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
"you can loose data)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:482
+#: ../../install_steps_interactive.pm_.c:465
msgid "Not enough swap space to fulfill installation, please add some"
msgstr "Dim digon o le cyfnewid i gyflawni'r gosodiad, ychwanegwch rhagor"
-#: ../../install_steps_interactive.pm_.c:489
-#, fuzzy
+#: ../../install_steps_interactive.pm_.c:472
msgid "Looking for available packages and rebuilding rpm database..."
-msgstr "Chwilio am y pecynnau sydd ar gael"
+msgstr ""
+"Chwilio am y pecynnau sydd ar gael ac yn ailadeiladu cronfa ddata rpm..."
-#: ../../install_steps_interactive.pm_.c:490
+#: ../../install_steps_interactive.pm_.c:473
msgid "Looking for available packages..."
msgstr "Chwilio am y pecynnau sydd ar gael"
-#: ../../install_steps_interactive.pm_.c:493
-#, fuzzy
+#: ../../install_steps_interactive.pm_.c:476
msgid "Looking at packages already installed..."
-msgstr "Does dim mod dad-ddewis y pecyn, mae wedi ei osod yn barod"
+msgstr "Edrych arbecynnau wedieu gosod yn barod"
-#: ../../install_steps_interactive.pm_.c:497
+#: ../../install_steps_interactive.pm_.c:480
msgid "Finding packages to upgrade..."
msgstr "Canfod pecynnau i'w uwchraddio"
-#: ../../install_steps_interactive.pm_.c:515
+#: ../../install_steps_interactive.pm_.c:498
#, c-format
msgid ""
"Your system does not have enough space left for installation or upgrade (%d "
@@ -5553,7 +5637,7 @@ msgstr ""
"Nid oes gan eich system ddigon o le ar ôl ar gyfer gosodiad neu uwchraddiad "
"(%d> %d)"
-#: ../../install_steps_interactive.pm_.c:550
+#: ../../install_steps_interactive.pm_.c:534
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
@@ -5561,35 +5645,35 @@ msgstr ""
"Dewiswch llwytho neu ddewis cadw pecyn ar ddisg meddal.\n"
"Mae'r fformat yr un ar ddisgiau meddal wedi eu cynhyrchu drwy auto_install."
-#: ../../install_steps_interactive.pm_.c:553
+#: ../../install_steps_interactive.pm_.c:537
msgid "Load from floppy"
msgstr "Llwytho o o ddisg meddal"
-#: ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_interactive.pm_.c:539
msgid "Loading from floppy"
msgstr "Llwytho o ddisg meddal"
-#: ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_interactive.pm_.c:539
msgid "Package selection"
msgstr "Dewis pecynnau"
-#: ../../install_steps_interactive.pm_.c:560
+#: ../../install_steps_interactive.pm_.c:544
msgid "Insert a floppy containing package selection"
msgstr "Rhowch ddisg meddal yn cynnwys dewis pecynnau yn y peiriant"
-#: ../../install_steps_interactive.pm_.c:572
+#: ../../install_steps_interactive.pm_.c:556
msgid "Save on floppy"
msgstr "Cadw ar ddisg meddal"
-#: ../../install_steps_interactive.pm_.c:646
+#: ../../install_steps_interactive.pm_.c:630
msgid "Selected size is larger than available space"
msgstr "Mae'r maint ddewiswyd yn fwy na'r lle ar gael"
-#: ../../install_steps_interactive.pm_.c:660
+#: ../../install_steps_interactive.pm_.c:644
msgid "Type of install"
msgstr "Math o osodiad"
-#: ../../install_steps_interactive.pm_.c:661
+#: ../../install_steps_interactive.pm_.c:645
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
@@ -5597,19 +5681,19 @@ msgstr ""
"Nid ydych wedi dewis unrhyw grwpiau o becynnau.\n"
"Dewiswch y gosodiad lleiaf rydych ei eisiau"
-#: ../../install_steps_interactive.pm_.c:664
+#: ../../install_steps_interactive.pm_.c:648
msgid "With X"
msgstr "Gyda X"
-#: ../../install_steps_interactive.pm_.c:666
+#: ../../install_steps_interactive.pm_.c:650
msgid "With basic documentation (recommended!)"
msgstr "Gyda dogfennaethelfennol (argymhellir!)"
-#: ../../install_steps_interactive.pm_.c:667
+#: ../../install_steps_interactive.pm_.c:651
msgid "Truly minimal install (especially no urpmi)"
msgstr "Gosodiad bychan iawn (yn arbennig dim urpmi)"
-#: ../../install_steps_interactive.pm_.c:752
+#: ../../install_steps_interactive.pm_.c:736
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -5619,16 +5703,16 @@ msgstr ""
"Os nad oes gennych un ohonynt, Cliciwch Diddymu.\n"
"Os mae dim ond rhai CDau sydd ar goll, yna cliciwch Iawn."
-#: ../../install_steps_interactive.pm_.c:757
+#: ../../install_steps_interactive.pm_.c:741
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "Cd-Rom wedi ei labelu \"%s\""
-#: ../../install_steps_interactive.pm_.c:778
+#: ../../install_steps_interactive.pm_.c:762
msgid "Preparing installation"
msgstr "Paratoi'r gosodiad"
-#: ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:771
#, c-format
msgid ""
"Installing package %s\n"
@@ -5637,21 +5721,21 @@ msgstr ""
"Gosod pecyn %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:833
+#: ../../install_steps_interactive.pm_.c:817
msgid "Post-install configuration"
msgstr "Ffurfweddiad ôl osod"
-#: ../../install_steps_interactive.pm_.c:839
+#: ../../install_steps_interactive.pm_.c:823
#, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Mewnosodwch y disg meddal Cychwyn ddefnyddiwyd yn gyrrwr %s"
-#: ../../install_steps_interactive.pm_.c:845
+#: ../../install_steps_interactive.pm_.c:829
#, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Rhowch y disg meddal Diweddaru Modiwlau yng ngyrrwr %s"
-#: ../../install_steps_interactive.pm_.c:865
+#: ../../install_steps_interactive.pm_.c:849
msgid ""
"You now have the opportunity to download encryption software.\n"
"\n"
@@ -5726,8 +5810,7 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:904
-#, fuzzy
+#: ../../install_steps_interactive.pm_.c:888
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
"have been released after the distribution was released. They may\n"
@@ -5738,164 +5821,163 @@ msgid ""
"\n"
"Do you want to install the updates ?"
msgstr ""
-"Mae'n bosibl i chi llwytho i lawr y pecynnau diweddaraf sydd wedi eu ryddhau "
-"ers i'r dosbaerthiad fod ar gael.\n"
+"Mae'n bosibl i chi llwytho i lawr y pecynnau diweddaraf sydd wedi eu\n"
+"ryddhau ers i'r dosbarthiad fod ar gael.\n"
"\n"
"Medrwch gael atgyweiriadau diogelwch a gwallau ond mae'n rhaid i\n"
"chi fod wedi cysyllu â'r Rhyngrwyd i barhau.\n"
"\n"
"Ydych chi am osod y diweddariadau?"
-#: ../../install_steps_interactive.pm_.c:919
+#: ../../install_steps_interactive.pm_.c:903
msgid ""
"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr ""
"Cysylltu â'safle Mandrake Linux i estyn rhestr o'r drychau sydd ar gael"
-#: ../../install_steps_interactive.pm_.c:924
+#: ../../install_steps_interactive.pm_.c:908
msgid "Choose a mirror from which to get the packages"
msgstr "Dewiswch ddrych lle mae modd estyn y pecynnau"
-#: ../../install_steps_interactive.pm_.c:933
+#: ../../install_steps_interactive.pm_.c:917
msgid "Contacting the mirror to get the list of available packages..."
msgstr "Cysylltu â'r drych i estyn y rhestr o becynnau sydd ar gael"
-#: ../../install_steps_interactive.pm_.c:960
+#: ../../install_steps_interactive.pm_.c:945
msgid "Which is your timezone?"
msgstr "Pa un yw eich parth amser?"
-#: ../../install_steps_interactive.pm_.c:965
+#: ../../install_steps_interactive.pm_.c:950
msgid "Hardware clock set to GMT"
msgstr "Cloc caledwedd wedi ei osod i GMT"
-#: ../../install_steps_interactive.pm_.c:966
+#: ../../install_steps_interactive.pm_.c:951
msgid "Automatic time synchronization (using NTP)"
msgstr "Cydweddi amser awtomatig (defnyddio NTP)"
-#: ../../install_steps_interactive.pm_.c:973
+#: ../../install_steps_interactive.pm_.c:958
msgid "NTP Server"
msgstr "Gweinydd NTP"
-#: ../../install_steps_interactive.pm_.c:1007
-#: ../../install_steps_interactive.pm_.c:1015
+#: ../../install_steps_interactive.pm_.c:992
+#: ../../install_steps_interactive.pm_.c:1000
msgid "Remote CUPS server"
msgstr "Gwasanaethwr CUPS pell"
-#: ../../install_steps_interactive.pm_.c:1008
+#: ../../install_steps_interactive.pm_.c:993
msgid "No printer"
msgstr "Nid oes argraffydd"
-#: ../../install_steps_interactive.pm_.c:1025
+#: ../../install_steps_interactive.pm_.c:1010
msgid "Do you have an ISA sound card?"
msgstr "A oes gennych gerdyn sain ISA?"
-#: ../../install_steps_interactive.pm_.c:1027
+#: ../../install_steps_interactive.pm_.c:1012
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr "Rhedwch \"sndconfig\" wedi'r gosodiad i ffurfweddu'ch cerdyn sain"
-#: ../../install_steps_interactive.pm_.c:1029
+#: ../../install_steps_interactive.pm_.c:1014
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr "Heb ganfod cerdyn sain. Ceisiwch \"harddrake\" wedi'r gosodiad"
-#: ../../install_steps_interactive.pm_.c:1034 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1019 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Crynodeb"
-#: ../../install_steps_interactive.pm_.c:1037
+#: ../../install_steps_interactive.pm_.c:1022
msgid "Mouse"
msgstr "Llygoden"
-#: ../../install_steps_interactive.pm_.c:1039
+#: ../../install_steps_interactive.pm_.c:1024
msgid "Timezone"
msgstr "Cylchfa amser"
-#: ../../install_steps_interactive.pm_.c:1040 ../../printerdrake.pm_.c:2728
-#: ../../printerdrake.pm_.c:2814
+#: ../../install_steps_interactive.pm_.c:1025 ../../printerdrake.pm_.c:2937
+#: ../../printerdrake.pm_.c:3026
msgid "Printer"
msgstr "Argraffydd"
-#: ../../install_steps_interactive.pm_.c:1042
+#: ../../install_steps_interactive.pm_.c:1027
msgid "ISDN card"
msgstr "Cerdyn ISDN"
-#: ../../install_steps_interactive.pm_.c:1045
-#: ../../install_steps_interactive.pm_.c:1047
+#: ../../install_steps_interactive.pm_.c:1030
+#: ../../install_steps_interactive.pm_.c:1032
msgid "Sound card"
msgstr "Cerdyn sain"
-#: ../../install_steps_interactive.pm_.c:1049
+#: ../../install_steps_interactive.pm_.c:1034
msgid "TV card"
msgstr "Cerdyn Teledu"
-#: ../../install_steps_interactive.pm_.c:1089
-#: ../../install_steps_interactive.pm_.c:1114
-#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1074
+#: ../../install_steps_interactive.pm_.c:1099
+#: ../../install_steps_interactive.pm_.c:1103
msgid "LDAP"
msgstr "LDAP"
-#: ../../install_steps_interactive.pm_.c:1090
-#: ../../install_steps_interactive.pm_.c:1114
-#: ../../install_steps_interactive.pm_.c:1127
+#: ../../install_steps_interactive.pm_.c:1075
+#: ../../install_steps_interactive.pm_.c:1099
+#: ../../install_steps_interactive.pm_.c:1112
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1091
-#: ../../install_steps_interactive.pm_.c:1114
-#: ../../install_steps_interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1141
-#, fuzzy
+#: ../../install_steps_interactive.pm_.c:1076
+#: ../../install_steps_interactive.pm_.c:1099
+#: ../../install_steps_interactive.pm_.c:1120
+#: ../../install_steps_interactive.pm_.c:1126
msgid "Windows Domain"
-msgstr "Estyn Ffontiau Windows"
+msgstr "Parth Windows"
-#: ../../install_steps_interactive.pm_.c:1092
-#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1077
+#: ../../install_steps_interactive.pm_.c:1099
msgid "Local files"
msgstr "Ffeiliau lleol"
-#: ../../install_steps_interactive.pm_.c:1101
-#: ../../install_steps_interactive.pm_.c:1102 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1086
+#: ../../install_steps_interactive.pm_.c:1087 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Gosod cyfrinair gwraidd"
-#: ../../install_steps_interactive.pm_.c:1103
+#: ../../install_steps_interactive.pm_.c:1088
msgid "No password"
msgstr "Dim cyfrinair"
-#: ../../install_steps_interactive.pm_.c:1108
+#: ../../install_steps_interactive.pm_.c:1093
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr "Mae'r cyfrinair yn rhy syml ( rhaid iddo fod o leiaf %d nod o hyd)"
-#: ../../install_steps_interactive.pm_.c:1114 ../../network/modem.pm_.c:49
+#: ../../install_steps_interactive.pm_.c:1099 ../../network/modem.pm_.c:49
#: ../../standalone/drakconnect_.c:625 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Dilysu"
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1107
msgid "Authentication LDAP"
msgstr "Dilysu LDAP"
-#: ../../install_steps_interactive.pm_.c:1123
+#: ../../install_steps_interactive.pm_.c:1108
msgid "LDAP Base dn"
msgstr "Sail dn LDAP"
-#: ../../install_steps_interactive.pm_.c:1124
+#: ../../install_steps_interactive.pm_.c:1109
msgid "LDAP Server"
msgstr "Gwasanaethwr LDAP"
-#: ../../install_steps_interactive.pm_.c:1130
+#: ../../install_steps_interactive.pm_.c:1115
msgid "Authentication NIS"
msgstr "Dilysu LDAP"
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1116
msgid "NIS Domain"
msgstr "Parth NIS"
-#: ../../install_steps_interactive.pm_.c:1132
+#: ../../install_steps_interactive.pm_.c:1117
msgid "NIS Server"
msgstr "Gwasanaethwr NIS"
-#: ../../install_steps_interactive.pm_.c:1138
+#: ../../install_steps_interactive.pm_.c:1123
msgid ""
"For this to work for a W2K PDC, you will probably need to have the admin "
"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
@@ -5911,21 +5993,19 @@ msgid ""
"good."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1140
-#, fuzzy
+#: ../../install_steps_interactive.pm_.c:1125
msgid "Authentication Windows Domain"
-msgstr "Dilysu LDAP"
+msgstr "Dilysu Parth Windows"
-#: ../../install_steps_interactive.pm_.c:1142
-#, fuzzy
+#: ../../install_steps_interactive.pm_.c:1127
msgid "Domain Admin User Name"
-msgstr "Enw parth"
+msgstr "Enw Defnyddiwr Gweinyddiaeth Parth"
-#: ../../install_steps_interactive.pm_.c:1143
+#: ../../install_steps_interactive.pm_.c:1128
msgid "Domain Admin Password"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1178
+#: ../../install_steps_interactive.pm_.c:1163
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
"depending on the normal bootloader. This is useful if you don't want to "
@@ -5956,19 +6036,19 @@ msgstr ""
"gyrrwr\n"
" cyntaf a chliciwch \"Iawn\"."
-#: ../../install_steps_interactive.pm_.c:1194
+#: ../../install_steps_interactive.pm_.c:1179
msgid "First floppy drive"
msgstr "Gyrrwr disg meddal cyntaf"
-#: ../../install_steps_interactive.pm_.c:1195
+#: ../../install_steps_interactive.pm_.c:1180
msgid "Second floppy drive"
msgstr "Ail ddisg meddal"
-#: ../../install_steps_interactive.pm_.c:1196 ../../printerdrake.pm_.c:2277
+#: ../../install_steps_interactive.pm_.c:1181 ../../printerdrake.pm_.c:2470
msgid "Skip"
msgstr "Hepgor"
-#: ../../install_steps_interactive.pm_.c:1201
+#: ../../install_steps_interactive.pm_.c:1186
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5993,7 +6073,7 @@ msgstr ""
"greu disg cychwyn ar gyfer eich system?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1207
+#: ../../install_steps_interactive.pm_.c:1192
msgid ""
"\n"
"\n"
@@ -6007,28 +6087,28 @@ msgstr ""
"bydd creu disg cychwyn ar ddisg meddal 1.44Mb'n debygol o fethu,\n"
"oherwydd mae XFS yn gofyn am yrrwr mawr iawn)."
-#: ../../install_steps_interactive.pm_.c:1215
+#: ../../install_steps_interactive.pm_.c:1200
msgid "Sorry, no floppy drive available"
msgstr "Nid oes gyrrwr disg meddal ar gael"
-#: ../../install_steps_interactive.pm_.c:1219
+#: ../../install_steps_interactive.pm_.c:1204
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "Dewiswch y gyrrwr disg meddal i'w ddefnyddio i greu disg cychwyn"
-#: ../../install_steps_interactive.pm_.c:1223
+#: ../../install_steps_interactive.pm_.c:1208
#, c-format
msgid "Insert a floppy in %s"
msgstr "Rhowch ddisg meddal yn %s"
-#: ../../install_steps_interactive.pm_.c:1226
+#: ../../install_steps_interactive.pm_.c:1211
msgid "Creating bootdisk..."
msgstr "Creu disg cychwyn"
-#: ../../install_steps_interactive.pm_.c:1233
+#: ../../install_steps_interactive.pm_.c:1218
msgid "Preparing bootloader..."
msgstr "Paratoi llwythwr cychwyn"
-#: ../../install_steps_interactive.pm_.c:1244
+#: ../../install_steps_interactive.pm_.c:1229
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -6042,11 +6122,11 @@ msgstr ""
"rhaid defnyddio BootX i gychwyn\n"
"eich peiriant."
-#: ../../install_steps_interactive.pm_.c:1250
+#: ../../install_steps_interactive.pm_.c:1235
msgid "Do you want to use aboot?"
msgstr "Ydych chi eisiau defnyddio aboot?"
-#: ../../install_steps_interactive.pm_.c:1253
+#: ../../install_steps_interactive.pm_.c:1238
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -6054,15 +6134,15 @@ msgstr ""
"Gwall gosod aboot, \n"
"ceisiwch orfodi gosodiad hyd yn oed os yw hynny'n dinistrio'r rhaniad cyntaf?"
-#: ../../install_steps_interactive.pm_.c:1260
+#: ../../install_steps_interactive.pm_.c:1245
msgid "Installing bootloader"
msgstr "Gosod llwythwr cychwyn"
-#: ../../install_steps_interactive.pm_.c:1266
+#: ../../install_steps_interactive.pm_.c:1251
msgid "Installation of bootloader failed. The following error occured:"
msgstr "Methodd gosod llwythwr cychwyn. Digwyddodd y gwall canlynol:"
-#: ../../install_steps_interactive.pm_.c:1274
+#: ../../install_steps_interactive.pm_.c:1259
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -6080,17 +6160,17 @@ msgstr ""
" Yna teipiwch: shut-down\n"
"Wrth gychwyn eto dylech weld anogwr y llwythwr cychwyn."
-#: ../../install_steps_interactive.pm_.c:1308
+#: ../../install_steps_interactive.pm_.c:1293
#: ../../standalone/drakautoinst_.c:79
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Rhowch ddisg meddal yng ngyrrwr %s"
-#: ../../install_steps_interactive.pm_.c:1312
+#: ../../install_steps_interactive.pm_.c:1297
msgid "Creating auto install floppy..."
msgstr "Creu disg meddal awto gosod"
-#: ../../install_steps_interactive.pm_.c:1323
+#: ../../install_steps_interactive.pm_.c:1308
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -6100,7 +6180,7 @@ msgstr ""
"\n"
"Ydych chi wir eisiau gorffen?"
-#: ../../install_steps_interactive.pm_.c:1334
+#: ../../install_steps_interactive.pm_.c:1319
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
@@ -6132,16 +6212,15 @@ msgstr ""
"Mae gwybodaeth ar ffurfweddu eich system ar gael ym mhenawdau ôl osod\n"
"yr Official Mandrake Linux User's Guide."
-#: ../../install_steps_interactive.pm_.c:1347
-#, fuzzy
+#: ../../install_steps_interactive.pm_.c:1332
msgid "http://www.mandrakelinux.com/en/90errata.php3"
-msgstr "http://www.mandrakesoft.com/sales/contact"
+msgstr "http://www.mandrakelinux.com/en/90errata.php3"
-#: ../../install_steps_interactive.pm_.c:1352
+#: ../../install_steps_interactive.pm_.c:1337
msgid "Generate auto install floppy"
msgstr "Creu disg meddal awto gosod"
-#: ../../install_steps_interactive.pm_.c:1354
+#: ../../install_steps_interactive.pm_.c:1339
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -6156,15 +6235,15 @@ msgstr ""
"\n"
"Efallai byddai'n well gennych ai osod y gosodiad.\n"
-#: ../../install_steps_interactive.pm_.c:1359
+#: ../../install_steps_interactive.pm_.c:1344
msgid "Automated"
msgstr "Awtomeiddwyd"
-#: ../../install_steps_interactive.pm_.c:1359
+#: ../../install_steps_interactive.pm_.c:1344
msgid "Replay"
msgstr "Ail chwarae"
-#: ../../install_steps_interactive.pm_.c:1362
+#: ../../install_steps_interactive.pm_.c:1347
msgid "Save packages selection"
msgstr "Cadw'r dewis becynnau"
@@ -6173,7 +6252,8 @@ msgstr "Cadw'r dewis becynnau"
msgid "Mandrake Linux Installation %s"
msgstr "Gosodiad %s Mandraks Linux"
-#: ../../install_steps_newt.pm_.c:34
+#. -PO This string must fit in a 80-char wide text screen
+#: ../../install_steps_newt.pm_.c:35
msgid ""
" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
msgstr ""
@@ -6191,22 +6271,22 @@ msgstr "consolehelper ar goll"
msgid "Choose a file"
msgstr "Dewis ffeil"
-#: ../../interactive.pm_.c:317
+#: ../../interactive.pm_.c:320
msgid "Advanced"
msgstr "Uwch"
-#: ../../interactive.pm_.c:318
+#: ../../interactive.pm_.c:321
msgid "Basic"
msgstr "Elfennol"
-#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:155
-#: ../../printerdrake.pm_.c:1990
+#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:158
+#: ../../printerdrake.pm_.c:2124
msgid "<- Previous"
msgstr "<- Cynt"
#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
-#: ../../standalone/drakbackup_.c:3464 ../../standalone/drakbackup_.c:3491
-#: ../../standalone/drakbackup_.c:3517
+#: ../../standalone/drakbackup_.c:4112 ../../standalone/drakbackup_.c:4139
+#: ../../standalone/drakbackup_.c:4169 ../../standalone/drakbackup_.c:4195
msgid "Next"
msgstr "Nesaf"
@@ -6279,375 +6359,371 @@ msgstr ""
msgid "Re-submit"
msgstr "Ail-gyflwyno"
-#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:152 ../../keyboard.pm_.c:187
msgid "Czech (QWERTZ)"
msgstr "Tsiec (QWERTY)"
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:153 ../../keyboard.pm_.c:189
msgid "German"
msgstr "Almaeneg"
-#: ../../keyboard.pm_.c:175
+#: ../../keyboard.pm_.c:154
msgid "Dvorak"
msgstr "Dvorak"
-#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:218
+#: ../../keyboard.pm_.c:155 ../../keyboard.pm_.c:197
msgid "Spanish"
msgstr "Spaenaidd"
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:156 ../../keyboard.pm_.c:198
msgid "Finnish"
msgstr "Ffinaidd"
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:220
+#: ../../keyboard.pm_.c:157 ../../keyboard.pm_.c:199
msgid "French"
msgstr "Ffrengig"
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:158 ../../keyboard.pm_.c:231
msgid "Norwegian"
msgstr "Norwyaidd"
-#: ../../keyboard.pm_.c:180
+#: ../../keyboard.pm_.c:159
msgid "Polish"
msgstr "Pwylaidd"
-#: ../../keyboard.pm_.c:181 ../../keyboard.pm_.c:260
+#: ../../keyboard.pm_.c:160 ../../keyboard.pm_.c:239
msgid "Russian"
msgstr "Rwsiaidd"
-#: ../../keyboard.pm_.c:183 ../../keyboard.pm_.c:262
+#: ../../keyboard.pm_.c:162 ../../keyboard.pm_.c:241
msgid "Swedish"
msgstr "Swedaidd"
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:278
+#: ../../keyboard.pm_.c:163 ../../keyboard.pm_.c:257
msgid "UK keyboard"
msgstr "Bysellfwrdd DG"
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:279
+#: ../../keyboard.pm_.c:164 ../../keyboard.pm_.c:258
msgid "US keyboard"
msgstr "Bysellfwrdd UDA"
-#: ../../keyboard.pm_.c:187
+#: ../../keyboard.pm_.c:166
msgid "Albanian"
msgstr "Albaniaidd"
-#: ../../keyboard.pm_.c:188
+#: ../../keyboard.pm_.c:167
msgid "Armenian (old)"
msgstr "Armenaidd (hen)"
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:168
msgid "Armenian (typewriter)"
msgstr "Armenaidd (teipiadur)"
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:169
msgid "Armenian (phonetic)"
msgstr "Armenaidd (ffonetig)"
-#: ../../keyboard.pm_.c:195
+#: ../../keyboard.pm_.c:174
msgid "Azerbaidjani (latin)"
msgstr "Azerbaidjan (lladin)"
-#: ../../keyboard.pm_.c:197
+#: ../../keyboard.pm_.c:176
msgid "Belgian"
msgstr "Belgaidd"
-#: ../../keyboard.pm_.c:198
-#, fuzzy
+#: ../../keyboard.pm_.c:177
msgid "Bengali"
-msgstr "galluogi"
+msgstr "Bengali"
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:178
msgid "Bulgarian (phonetic)"
msgstr "Bwlgaraidd (ffonetig)"
-#: ../../keyboard.pm_.c:200
+#: ../../keyboard.pm_.c:179
msgid "Bulgarian (BDS)"
msgstr "Bwlgaraidd (BDS)"
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:180
msgid "Brazilian (ABNT-2)"
msgstr "Brasilaidd (ABNT-2)"
-#: ../../keyboard.pm_.c:204
-#, fuzzy
+#: ../../keyboard.pm_.c:183
msgid "Bosnian"
-msgstr "Estonaidd"
+msgstr "Bosnieg"
-#: ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:184
msgid "Belarusian"
msgstr "Belarusaidd"
-#: ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:185
msgid "Swiss (German layout)"
msgstr "Swisaidd (gosodiad Almaenig)"
-#: ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:186
msgid "Swiss (French layout)"
msgstr "Swisaidd (gosodiad Ffrengig)"
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:188
msgid "Czech (QWERTY)"
msgstr "Tsiec (QWERTY)"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:190
msgid "German (no dead keys)"
msgstr "Almaenaidd (dim bysellau marw)"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:191
msgid "Devanagari"
-msgstr ""
+msgstr "Devanagari"
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:192
msgid "Danish"
msgstr "Danaidd"
-#: ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:193
msgid "Dvorak (US)"
msgstr "Dvorak (UDA)"
-#: ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:194
msgid "Dvorak (Norwegian)"
msgstr "Dvorak (Norwyaidd)"
-#: ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:195
msgid "Dvorak (Swedish)"
msgstr "Dvorak (Swedaidd)"
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:196
msgid "Estonian"
msgstr "Estonaidd"
-#: ../../keyboard.pm_.c:221
+#: ../../keyboard.pm_.c:200
msgid "Georgian (\"Russian\" layout)"
msgstr "Georgaidd (gosodiad \"Rwsiaidd\")"
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:201
msgid "Georgian (\"Latin\" layout)"
msgstr "Georgaidd (gosodiad \"Lladinaidd\")"
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:202
msgid "Greek"
msgstr "Groegaidd"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:203
msgid "Gujarati"
-msgstr ""
+msgstr "Gujarati"
-#: ../../keyboard.pm_.c:225
+#: ../../keyboard.pm_.c:204
msgid "Gurmukhi"
-msgstr ""
+msgstr "Gurmukhi"
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:205
msgid "Hungarian"
msgstr "Hwngaraidd"
-#: ../../keyboard.pm_.c:227
+#: ../../keyboard.pm_.c:206
msgid "Croatian"
msgstr "Croataidd"
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:207
msgid "Israeli"
msgstr "Israelaidd"
-#: ../../keyboard.pm_.c:229
+#: ../../keyboard.pm_.c:208
msgid "Israeli (Phonetic)"
msgstr "Israelaidd (Ffonetig)"
-#: ../../keyboard.pm_.c:230
+#: ../../keyboard.pm_.c:209
msgid "Iranian"
msgstr "Iranaidd"
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:210
msgid "Icelandic"
msgstr "Eislandaidd"
-#: ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:211
msgid "Italian"
msgstr "Eidalaidd"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:212
msgid "Inuktitut"
-msgstr ""
+msgstr "Inuktitut"
-#: ../../keyboard.pm_.c:234
+#: ../../keyboard.pm_.c:213
msgid "Japanese 106 keys"
msgstr "Siapaëaidd 106 bysell"
-#: ../../keyboard.pm_.c:237
+#: ../../keyboard.pm_.c:216
msgid "Korean keyboard"
msgstr "Bysellfwrdd Coreaidd"
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:217
msgid "Latin American"
msgstr "Lladin America"
-#: ../../keyboard.pm_.c:239
-#, fuzzy
+#: ../../keyboard.pm_.c:218
msgid "Laotian"
-msgstr "Latfiaidd"
+msgstr "Latfieg"
-#: ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:219
msgid "Lithuanian AZERTY (old)"
msgstr "Lithuenaidd AZERTY (hen)"
-#: ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:221
msgid "Lithuanian AZERTY (new)"
msgstr "Lithuenaidd AZERTY (newydd)"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:222
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Lithuenaidd \"rhes rhif\" QWERTY"
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:223
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "Lithuenaidd \"ffonetig\" QWERTY"
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:224
msgid "Latvian"
msgstr "Latfiaidd"
-#: ../../keyboard.pm_.c:246
+#: ../../keyboard.pm_.c:225
msgid "Macedonian"
msgstr "Macedonaidd"
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:226
msgid "Myanmar (Burmese)"
-msgstr ""
+msgstr "Myanmar (Burma)"
-#: ../../keyboard.pm_.c:248
-#, fuzzy
+#: ../../keyboard.pm_.c:227
msgid "Mongolian (cyrillic)"
-msgstr "Serbaidd (cyrilig)"
+msgstr "Mongoleg (cyrillic)"
-#: ../../keyboard.pm_.c:249
+#: ../../keyboard.pm_.c:228
msgid "Maltese (UK)"
-msgstr ""
+msgstr "Malteg (DU)"
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:229
msgid "Maltese (US)"
-msgstr ""
+msgstr "Malteg (UDA)"
-#: ../../keyboard.pm_.c:251
+#: ../../keyboard.pm_.c:230
msgid "Dutch"
msgstr "Isalmaenaidd"
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:232
msgid "Polish (qwerty layout)"
msgstr "Pwylaidd (gosodiad qwerty)"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:233
msgid "Polish (qwertz layout)"
msgstr "Pwylaidd (gosodiad qwerty)"
-#: ../../keyboard.pm_.c:255
+#: ../../keyboard.pm_.c:234
msgid "Portuguese"
msgstr "Portiwgalaidd"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:235
msgid "Canadian (Quebec)"
msgstr "Canada (Quebec)"
-#: ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:237
msgid "Romanian (qwertz)"
msgstr "Romanaidd (qwertz)"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:238
msgid "Romanian (qwerty)"
msgstr "Romanaidd (qwerty)"
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:240
msgid "Russian (Yawerty)"
msgstr "Rwsiaidd (Yawerty)"
-#: ../../keyboard.pm_.c:263
+#: ../../keyboard.pm_.c:242
msgid "Slovenian"
msgstr "Slfenaidd"
-#: ../../keyboard.pm_.c:264
+#: ../../keyboard.pm_.c:243
msgid "Slovakian (QWERTZ)"
msgstr "Slofacaidd (QWERTZ)"
-#: ../../keyboard.pm_.c:265
+#: ../../keyboard.pm_.c:244
msgid "Slovakian (QWERTY)"
msgstr "Slovacaidd (QWERTY)"
-#: ../../keyboard.pm_.c:267
+#: ../../keyboard.pm_.c:246
msgid "Serbian (cyrillic)"
msgstr "Serbaidd (cyrilig)"
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:248
msgid "Tamil (Unicode)"
msgstr "Tamil (Unicode)"
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:249
msgid "Tamil (TSCII)"
msgstr "Tamil (TSCII)"
-#: ../../keyboard.pm_.c:271
+#: ../../keyboard.pm_.c:250
msgid "Thai keyboard"
msgstr "Bysellfwrdd Thai"
-#: ../../keyboard.pm_.c:273
+#: ../../keyboard.pm_.c:252
msgid "Tajik keyboard"
msgstr "Bysellfwrdd Tajig"
-#: ../../keyboard.pm_.c:274
+#: ../../keyboard.pm_.c:253
msgid "Turkish (traditional \"F\" model)"
msgstr "Twrcaidd (model traddodiadol \"F\")"
-#: ../../keyboard.pm_.c:275
+#: ../../keyboard.pm_.c:254
msgid "Turkish (modern \"Q\" model)"
msgstr "Twrcaidd (model modern \"Q\")"
-#: ../../keyboard.pm_.c:277
+#: ../../keyboard.pm_.c:256
msgid "Ukrainian"
msgstr "Wcranaidd"
-#: ../../keyboard.pm_.c:280
+#: ../../keyboard.pm_.c:259
msgid "US keyboard (international)"
msgstr "Bysellfwrdd UDA (rhyngwladol)"
-#: ../../keyboard.pm_.c:281
+#: ../../keyboard.pm_.c:260
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "Fietnamëaidd \"rhes rhifol\" QWERTY"
-#: ../../keyboard.pm_.c:282
+#: ../../keyboard.pm_.c:261
msgid "Yugoslavian (latin)"
msgstr "Iwgoslafaidd (lladin)"
-#: ../../keyboard.pm_.c:289
+#: ../../keyboard.pm_.c:268
msgid "Right Alt key"
msgstr "Bysell Alt dde"
-#: ../../keyboard.pm_.c:290
+#: ../../keyboard.pm_.c:269
msgid "Both Shift keys simultaneously"
msgstr "Y ddwy fysell Shift gyda'i gilydd"
-#: ../../keyboard.pm_.c:291
+#: ../../keyboard.pm_.c:270
msgid "Control and Shift keys simultaneously"
msgstr "Bysellau Control a Shift gyda'i gilydd"
-#: ../../keyboard.pm_.c:292
+#: ../../keyboard.pm_.c:271
msgid "CapsLock key"
msgstr "Bysell CapsLock"
-#: ../../keyboard.pm_.c:293
+#: ../../keyboard.pm_.c:272
msgid "Ctrl and Alt keys simultaneously"
msgstr "Bysellau Ctrl ac Alt gyda'i gilydd"
-#: ../../keyboard.pm_.c:294
+#: ../../keyboard.pm_.c:273
msgid "Alt and Shift keys simultaneously"
msgstr "Bysellau Alt a Shift gyda'i gilydd"
-#: ../../keyboard.pm_.c:295
+#: ../../keyboard.pm_.c:274
msgid "\"Menu\" key"
msgstr "Bysell \"Dewislen\""
-#: ../../keyboard.pm_.c:296
+#: ../../keyboard.pm_.c:275
msgid "Left \"Windows\" key"
msgstr "Bysell \"Windows\" chwith"
-#: ../../keyboard.pm_.c:297
+#: ../../keyboard.pm_.c:276
msgid "Right \"Windows\" key"
msgstr "Bysell \"Windows\" de"
@@ -6661,9 +6737,8 @@ msgid "Remove the logical volumes first\n"
msgstr "Tynnu'r cyfrolau rhesymegol yn gyntaf\n"
#: ../../modparm.pm_.c:50
-#, fuzzy
msgid "a number"
-msgstr "Rhif ffôn"
+msgstr "rhif"
#: ../../modparm.pm_.c:52
#, c-format
@@ -6680,9 +6755,8 @@ msgid "comma separated numbers"
msgstr ""
#: ../../modparm.pm_.c:54
-#, fuzzy
msgid "comma separated strings"
-msgstr "Fformatio rhaniadau"
+msgstr "llinellau collnod ranedig"
#: ../../modules.pm_.c:292
msgid ""
@@ -6707,11 +6781,11 @@ msgstr "Llygoden Olwyn PS Generig"
msgid "GlidePoint"
msgstr "GlidePoint"
-#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:63
+#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:65
msgid "Kensington Thinking Mouse"
msgstr "Kensington Thinking Mouse"
-#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:59
+#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:61
msgid "Genius NetMouse"
msgstr "Genius NetMouse"
@@ -6719,115 +6793,123 @@ msgstr "Genius NetMouse"
msgid "Genius NetScroll"
msgstr "Genius NetScroll"
-#: ../../mouse.pm_.c:43 ../../mouse.pm_.c:68
+#: ../../mouse.pm_.c:39 ../../mouse.pm_.c:48
+msgid "Microsoft Explorer"
+msgstr "Microsoft Explorer"
+
+#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:70
msgid "1 button"
msgstr "1 botwm"
-#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:51
+#: ../../mouse.pm_.c:45 ../../mouse.pm_.c:53
msgid "Generic 2 Button Mouse"
msgstr "Llygoden 2 Fotwm Generig"
-#: ../../mouse.pm_.c:46
+#: ../../mouse.pm_.c:47
msgid "Wheel"
msgstr "Olwyn"
-#: ../../mouse.pm_.c:49
+#: ../../mouse.pm_.c:51
msgid "serial"
msgstr "cyfresol"
-#: ../../mouse.pm_.c:52
+#: ../../mouse.pm_.c:54
msgid "Generic 3 Button Mouse"
msgstr "Llygoden 3 Botwm Generig"
-#: ../../mouse.pm_.c:53
+#: ../../mouse.pm_.c:55
msgid "Microsoft IntelliMouse"
msgstr "Microsoft IntelliMouse"
-#: ../../mouse.pm_.c:54
+#: ../../mouse.pm_.c:56
msgid "Logitech MouseMan"
msgstr "Logitech MouseMan"
-#: ../../mouse.pm_.c:55
+#: ../../mouse.pm_.c:57
msgid "Mouse Systems"
msgstr "Systemau Llygoden"
-#: ../../mouse.pm_.c:57
+#: ../../mouse.pm_.c:59
msgid "Logitech CC Series"
msgstr "Logitech CC Series"
-#: ../../mouse.pm_.c:58
+#: ../../mouse.pm_.c:60
msgid "Logitech MouseMan+/FirstMouse+"
msgstr "Logitech MouseMan+/FirstMouse+"
-#: ../../mouse.pm_.c:60
+#: ../../mouse.pm_.c:62
msgid "MM Series"
msgstr "MM Series"
-#: ../../mouse.pm_.c:61
+#: ../../mouse.pm_.c:63
msgid "MM HitTablet"
msgstr "MM HitTablet"
-#: ../../mouse.pm_.c:62
+#: ../../mouse.pm_.c:64
msgid "Logitech Mouse (serial, old C7 type)"
msgstr "Llygoden Logitech (cyfresol, hen fath C7)"
-#: ../../mouse.pm_.c:66
+#: ../../mouse.pm_.c:68
msgid "busmouse"
msgstr "busmouse"
-#: ../../mouse.pm_.c:69
+#: ../../mouse.pm_.c:71
msgid "2 buttons"
msgstr "2 fotwm"
-#: ../../mouse.pm_.c:70
+#: ../../mouse.pm_.c:72
msgid "3 buttons"
msgstr "3 botwm"
-#: ../../mouse.pm_.c:73
+#: ../../mouse.pm_.c:75
msgid "none"
msgstr "dim"
-#: ../../mouse.pm_.c:75
+#: ../../mouse.pm_.c:77
msgid "No mouse"
msgstr "Dim llygoden"
-#: ../../mouse.pm_.c:445
+#: ../../mouse.pm_.c:482
msgid "Please test the mouse"
msgstr "Profwch y llygoden"
-#: ../../mouse.pm_.c:446
+#: ../../mouse.pm_.c:483
msgid "To activate the mouse,"
msgstr "I ysgogi'r llygoden,"
-#: ../../mouse.pm_.c:447
+#: ../../mouse.pm_.c:484
msgid "MOVE YOUR WHEEL!"
msgstr "SYMUDWCH YR OLWYN!"
-#: ../../my_gtk.pm_.c:156
+#: ../../my_gtk.pm_.c:64
+msgid "-adobe-utopia-regular-r-*-*-25-*-*-*-p-*-iso8859-*,*-r-*"
+msgstr "-adobe-utopia-regular-r-*-*-25-*-*-*-p-*-iso8859-*,*-r-*"
+
+#: ../../my_gtk.pm_.c:159
msgid "Finish"
msgstr "Gorffen"
-#: ../../my_gtk.pm_.c:156 ../../printerdrake.pm_.c:1992
+#: ../../my_gtk.pm_.c:159 ../../printerdrake.pm_.c:2126
msgid "Next ->"
msgstr "Nesaf ->"
-#: ../../my_gtk.pm_.c:284
+#: ../../my_gtk.pm_.c:287
msgid "Is this correct?"
msgstr "Ydi hyn yn gywir?"
-#: ../../my_gtk.pm_.c:356 ../../services.pm_.c:222
+#: ../../my_gtk.pm_.c:359 ../../services.pm_.c:222
msgid "Info"
msgstr "Gwybodaeth"
-#: ../../my_gtk.pm_.c:377
+#: ../../my_gtk.pm_.c:380
msgid "Expand Tree"
msgstr "Estyn y goeden"
-#: ../../my_gtk.pm_.c:378
+#: ../../my_gtk.pm_.c:381
msgid "Collapse Tree"
msgstr "Cau'r goeden"
-#: ../../my_gtk.pm_.c:379
+#: ../../my_gtk.pm_.c:382
msgid "Toggle between flat and group sorted"
msgstr "Newid rhwng gwastad a'r grwp wedi ei ddidoli"
@@ -6865,6 +6947,68 @@ msgstr "defnyddiwch pppoe"
msgid "use pptp"
msgstr "defnyddiwch pptp"
+#: ../../network/drakfirewall.pm_.c:12
+msgid "Web Server"
+msgstr "Gwasanaethwr Gwe"
+
+#: ../../network/drakfirewall.pm_.c:17
+msgid "Domain Name Server"
+msgstr "Gwasanaethwr Enw Parth"
+
+#: ../../network/drakfirewall.pm_.c:32
+msgid "Mail Server"
+msgstr "Gwasanaethwr E-bost"
+
+#: ../../network/drakfirewall.pm_.c:37
+msgid "POP and IMAP Server"
+msgstr "Gwasanaethwr POP ac IMAP"
+
+#: ../../network/drakfirewall.pm_.c:111
+msgid "No network card"
+msgstr "Dim cerdyn rhwydwaith"
+
+#: ../../network/drakfirewall.pm_.c:129
+#, fuzzy
+msgid ""
+"drakfirewall configurator\n"
+"\n"
+"This configures a personal firewall for this Mandrake Linux machine.\n"
+"For a powerful dedicated firewall solution, please look to the\n"
+"specialized MandrakeSecurity Firewall distribution."
+msgstr ""
+"ffurfweddiadur tinyfirewall\n"
+"\n"
+"Mae hwn yn ffurfweddu mur gwarchod personol ar gyfer y peiriant \n"
+"Mandrake Linux hwn. Am fur gwarchod pwrpasol pwerus, \n"
+"edrychwch ddosbarthiad arbennigol MandrakeSecurity Firewall."
+
+#: ../../network/drakfirewall.pm_.c:147
+msgid "Which services would you like to allow the Internet to connect to?"
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:148
+msgid ""
+"You can enter miscellaneous ports. \n"
+"Valid examples are: 139/tcp 139/udp.\n"
+"Have a look at /etc/services for information."
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:154
+#, c-format
+msgid ""
+"Invalid port given: %s.\n"
+"The proper format is \"port/tcp\" or \"port/udp\", \n"
+"where port is between 1 and 65535."
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:162
+msgid "Everything (no firewall)"
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:164
+msgid "Other ports"
+msgstr "Pyrth eraill"
+
#: ../../network/ethernet.pm_.c:37
msgid ""
"Which dhcp client do you want to use?\n"
@@ -6881,7 +7025,7 @@ msgstr ""
"Nid oes addasydd rhwydwaith ethernet wedi ei ganfod ar eich system.\n"
"Nid wyf yn medru gosod y math yma o gysylltiad."
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:247
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:240
msgid "Choose the network interface"
msgstr "Dewiswch rhag wyneb y rhwydwaith"
@@ -6895,7 +7039,7 @@ msgstr ""
msgid "no network card found"
msgstr "heb ganfod cerdyn rhwydwaith"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:366
msgid "Configuring network"
msgstr "Ffurfweddu'r rhwydwaith"
@@ -6911,7 +7055,7 @@ msgstr ""
"yr enw gwesteiwr i weithio. Dylai eich enw gwesteiwr\n"
"fod yn enw cymhwysol llawn megis \"fymlwch.fynesg.fyco.com\""
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:370
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:371
msgid "Host name"
msgstr "Enw gwesteiwr"
@@ -7214,13 +7358,13 @@ msgstr "Dewiswch broffil i'w ffurfweddu"
msgid "Use auto detection"
msgstr "Defnyddio awto ganfod"
-#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2930
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:3151
#: ../../standalone/drakconnect_.c:274 ../../standalone/drakconnect_.c:277
#: ../../standalone/drakfloppy_.c:145
msgid "Expert Mode"
msgstr "Modd Uwch"
-#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:283
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:386
msgid "Detecting devices..."
msgstr "Canfod dyfeisiadau..."
@@ -7387,15 +7531,14 @@ msgid "Automatic IP"
msgstr "IP awtomatig"
#: ../../network/network.pm_.c:315
-#, fuzzy
msgid "Start at boot"
msgstr "Cychwyn y peiriant"
-#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:753
+#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:860
msgid "IP address should be in format 1.2.3.4"
msgstr "dylai cyfeiriad IP fod mewn fformat 1.2.3.4"
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:367
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -7407,43 +7550,55 @@ msgstr ""
"megis \"fymlwch.fynesg.fyngho.com\".\n"
"Medrwch hefyd gynnig eich cyfeiriad IP os oes gennych un"
-#: ../../network/network.pm_.c:371
+#: ../../network/network.pm_.c:372
msgid "DNS server"
msgstr "Gwasanaethwr DNS"
-#: ../../network/network.pm_.c:372
+#: ../../network/network.pm_.c:373
#, c-format
msgid "Gateway (e.g. %s)"
msgstr "Mynedfa (e.e. %s)"
-#: ../../network/network.pm_.c:374
+#: ../../network/network.pm_.c:375
msgid "Gateway device"
msgstr "Dyfais mynedfa"
-#: ../../network/network.pm_.c:386
+#: ../../network/network.pm_.c:387
msgid "Proxies configuration"
msgstr "Ffurfweddiad dirprwyon"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:388
msgid "HTTP proxy"
msgstr "Dirprwy HTTP"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:389
msgid "FTP proxy"
msgstr "Dirprwy FTP"
-#: ../../network/network.pm_.c:389
+#: ../../network/network.pm_.c:390
msgid "Track network card id (useful for laptops)"
msgstr "Dilynnwch cyfernod cerdyn rhwydwaith (defnyddiol ar gyfer gliniadur)"
-#: ../../network/network.pm_.c:392
+#: ../../network/network.pm_.c:393
msgid "Proxy should be http://..."
msgstr "Dylai dirprwyon fod yn gyfanrif!"
-#: ../../network/network.pm_.c:393
+#: ../../network/network.pm_.c:394
msgid "Proxy should be ftp://..."
msgstr "Dylai rhif porth fod yn ftp://..."
+#: ../../network/shorewall.pm_.c:24
+msgid "Firewalling configuration detected!"
+msgstr "Wedi canfod ffurfweddiad mur gwarchod!"
+
+#: ../../network/shorewall.pm_.c:25
+msgid ""
+"Warning! An existing firewalling configuration has been detected. You may "
+"need some manual fix after installation."
+msgstr ""
+"Rhybudd! Mae ffurfweddiad mur gwarchod wedi ei ganfod. Efallai bydd angen "
+"atgyweirio gyda llaw ar ôl y gosodiad."
+
#: ../../network/tools.pm_.c:41
msgid "Internet configuration"
msgstr "Ffurfweddiad rhyngrwyd"
@@ -7547,17 +7702,17 @@ msgstr "Cyfrinair y Cyfrif"
#: ../../network/tools.pm_.c:104 ../../network/tools.pm_.c:118
msgid "United Kingdom"
-msgstr ""
+msgstr "Y Deyrnas Unedig"
-#: ../../partition_table.pm_.c:606
+#: ../../partition_table.pm_.c:602
msgid "mount failed: "
msgstr "maethodd y gosodiad"
-#: ../../partition_table.pm_.c:670
+#: ../../partition_table.pm_.c:666
msgid "Extended partition not supported on this platform"
msgstr "Nid yw'r rhainad estynedig yncael ei gynnal ay y platfform hwn"
-#: ../../partition_table.pm_.c:688
+#: ../../partition_table.pm_.c:684
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
@@ -7567,21 +7722,21 @@ msgstr ""
"Yr unig ateb yw i symud eich rhaniadau cynradd fel bo'r twll nesaf at y "
"rhaniadau estynedig "
-#: ../../partition_table.pm_.c:778
+#: ../../partition_table.pm_.c:774
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "Methodd adfer o ffeil %s: %s"
-#: ../../partition_table.pm_.c:780
+#: ../../partition_table.pm_.c:776
msgid "Bad backup file"
msgstr "Ffeil wrth gefn gwallus"
-#: ../../partition_table.pm_.c:802
+#: ../../partition_table.pm_.c:798
#, c-format
msgid "Error writing to file %s"
msgstr "Gwall wrth ysgrifennu i ffeil %s"
-#: ../../partition_table/raw.pm_.c:187
+#: ../../partition_table/raw.pm_.c:189
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
@@ -7627,150 +7782,154 @@ msgstr "LPD - Line Printer Daemon"
msgid "PDQ - Print, Don't Queue"
msgstr "PDQ - Print, Don't Queue"
-#: ../../printer.pm_.c:35 ../../printer.pm_.c:854
+#: ../../printer.pm_.c:34 ../../printer.pm_.c:1125
msgid "CUPS"
msgstr "CUPS"
-#: ../../printer.pm_.c:36
+#: ../../printer.pm_.c:35
msgid "LPRng"
msgstr "LPRng"
-#: ../../printer.pm_.c:37
+#: ../../printer.pm_.c:36
msgid "LPD"
msgstr "LPD"
-#: ../../printer.pm_.c:38
+#: ../../printer.pm_.c:37
msgid "PDQ"
msgstr "PDQ"
-#: ../../printer.pm_.c:50
+#: ../../printer.pm_.c:49
msgid "Local printer"
msgstr "Argraffydd lleol"
-#: ../../printer.pm_.c:51
+#: ../../printer.pm_.c:50
msgid "Remote printer"
msgstr "Argraffydd pell"
-#: ../../printer.pm_.c:52
+#: ../../printer.pm_.c:51
msgid "Printer on remote CUPS server"
msgstr "Argraffydd ar wasanaethwr CUPS pell"
-#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:776
+#: ../../printer.pm_.c:52 ../../printerdrake.pm_.c:883
msgid "Printer on remote lpd server"
msgstr "Argraffydd ar wasanaethwr lpd pell"
-#: ../../printer.pm_.c:54
+#: ../../printer.pm_.c:53
msgid "Network printer (TCP/Socket)"
msgstr "Argraffydd rhwydwaith (TCP/Soced)"
-#: ../../printer.pm_.c:55
+#: ../../printer.pm_.c:54
msgid "Printer on SMB/Windows 95/98/NT server"
msgstr "Argraffydd ar wasanaethwr SMB/Windows 95/98/NT"
-#: ../../printer.pm_.c:56
+#: ../../printer.pm_.c:55
msgid "Printer on NetWare server"
msgstr "Argraffydd ar wasanaethwr NetWare"
-#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:780
+#: ../../printer.pm_.c:56 ../../printerdrake.pm_.c:887
msgid "Enter a printer device URI"
msgstr "Rhowch URI dyfais argraffydd"
-#: ../../printer.pm_.c:58
+#: ../../printer.pm_.c:57
msgid "Pipe job into a command"
msgstr "Peipio'r gwaith i orchymyn"
-#: ../../printer.pm_.c:487 ../../printer.pm_.c:678 ../../printer.pm_.c:1000
-#: ../../printerdrake.pm_.c:2070 ../../printerdrake.pm_.c:3189
+#: ../../printer.pm_.c:324 ../../printer.pm_.c:366 ../../printer.pm_.c:533
+msgid "Unknown Model"
+msgstr "Model anhysbys"
+
+#: ../../printer.pm_.c:735 ../../printer.pm_.c:926 ../../printer.pm_.c:1318
+#: ../../printerdrake.pm_.c:2260 ../../printerdrake.pm_.c:3414
msgid "Unknown model"
msgstr "Model anhysbys"
-#: ../../printer.pm_.c:515
+#: ../../printer.pm_.c:763
msgid "Local Printers"
msgstr "Argraffyddion Lleol"
-#: ../../printer.pm_.c:517 ../../printer.pm_.c:855
+#: ../../printer.pm_.c:765 ../../printer.pm_.c:1126
msgid "Remote Printers"
msgstr "Argraffyddion Pell"
-#: ../../printer.pm_.c:524 ../../printerdrake.pm_.c:301
+#: ../../printer.pm_.c:772 ../../printerdrake.pm_.c:404
#, c-format
msgid " on parallel port \\/*%s"
msgstr " ar borth paralel \\/\"%s"
-#: ../../printer.pm_.c:527 ../../printerdrake.pm_.c:303
+#: ../../printer.pm_.c:775 ../../printerdrake.pm_.c:406
#, c-format
msgid ", USB printer \\/*%s"
msgstr ", argraffydd USB \\/\"%s"
-#: ../../printer.pm_.c:532
+#: ../../printer.pm_.c:780
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ", dyfais amlbwrpas ar borth paralel \\/\"%s"
-#: ../../printer.pm_.c:535
+#: ../../printer.pm_.c:783
msgid ", multi-function device on USB"
msgstr ", dyfais amlbwrpas ar USB"
-#: ../../printer.pm_.c:537
+#: ../../printer.pm_.c:785
msgid ", multi-function device on HP JetDirect"
msgstr ", dyfais amlbwrpas ar HP JetDirect"
-#: ../../printer.pm_.c:539
+#: ../../printer.pm_.c:787
msgid ", multi-function device"
msgstr ",dyfais amlbwrpas"
-#: ../../printer.pm_.c:542
+#: ../../printer.pm_.c:790
#, c-format
msgid ", printing to %s"
msgstr ", argraffu i %s"
-#: ../../printer.pm_.c:544
-#, fuzzy, c-format
+#: ../../printer.pm_.c:792
+#, c-format
msgid " on LPD server \"%s\", printer \"%s\""
msgstr "ar wasanaethwr LPD \"%s\", argraffydd \"%s\""
-#: ../../printer.pm_.c:546
+#: ../../printer.pm_.c:794
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ", gwesteiwr TCP/IP \"%s\", porth %s"
-#: ../../printer.pm_.c:550
-#, fuzzy, c-format
+#: ../../printer.pm_.c:798
+#, c-format
msgid " on SMB/Windows server \"%s\", share \"%s\""
-msgstr "ar wasanaethwr Windows \"%s\", rhannu \"%s\""
+msgstr "ar wasanaethwr SMB/Windows \"%s\", rhannu \"%s\""
-#: ../../printer.pm_.c:554
-#, fuzzy, c-format
+#: ../../printer.pm_.c:802
+#, c-format
msgid " on Novell server \"%s\", printer \"%s\""
msgstr "ar wasanaethwr Novell \"%s\", argraffydd \"%s\""
-#: ../../printer.pm_.c:556
+#: ../../printer.pm_.c:804
#, c-format
msgid ", using command %s"
msgstr ", defnyddio gorchymyn %s"
-#: ../../printer.pm_.c:675 ../../printerdrake.pm_.c:1540
+#: ../../printer.pm_.c:923 ../../printerdrake.pm_.c:1656
msgid "Raw printer (No driver)"
msgstr "Argraffydd crai (dim gyrrwr)"
-#: ../../printer.pm_.c:824
+#: ../../printer.pm_.c:1095
#, c-format
msgid "(on %s)"
msgstr "(ar %s)"
-#: ../../printer.pm_.c:826
+#: ../../printer.pm_.c:1097
msgid "(on this machine)"
msgstr "(ar y peiriant hwn)"
-#: ../../printer.pm_.c:851
+#: ../../printer.pm_.c:1122
#, c-format
msgid "On CUPS server \"%s\""
msgstr "Ar wasanaethwr CUPS \"%s\""
-#: ../../printer.pm_.c:857 ../../printerdrake.pm_.c:2851
-#: ../../printerdrake.pm_.c:2862 ../../printerdrake.pm_.c:3078
-#: ../../printerdrake.pm_.c:3130 ../../printerdrake.pm_.c:3156
-#: ../../printerdrake.pm_.c:3326 ../../printerdrake.pm_.c:3328
+#: ../../printer.pm_.c:1128 ../../printerdrake.pm_.c:3071
+#: ../../printerdrake.pm_.c:3082 ../../printerdrake.pm_.c:3303
+#: ../../printerdrake.pm_.c:3355 ../../printerdrake.pm_.c:3381
+#: ../../printerdrake.pm_.c:3556 ../../printerdrake.pm_.c:3558
msgid " (Default)"
msgstr "(Rhagosodedig)"
@@ -7796,11 +7955,11 @@ msgstr ""
msgid "Printer auto-detection (Local, TCP/Socket, and SMB printers)"
msgstr ""
-#: ../../printerdrake.pm_.c:84 ../../printerdrake.pm_.c:2914
+#: ../../printerdrake.pm_.c:84 ../../printerdrake.pm_.c:3135
msgid "CUPS configuration"
msgstr "Furfweddiad CUPS"
-#: ../../printerdrake.pm_.c:85 ../../printerdrake.pm_.c:2915
+#: ../../printerdrake.pm_.c:85 ../../printerdrake.pm_.c:3136
msgid "Specify CUPS server"
msgstr "Enwch wasanaethwr CUPS"
@@ -7844,7 +8003,7 @@ msgstr ""
msgid "The IP address should look like 192.168.1.20"
msgstr "Dylai cyfeiriad IP edrych fel 192.168.1.20"
-#: ../../printerdrake.pm_.c:95 ../../printerdrake.pm_.c:987
+#: ../../printerdrake.pm_.c:95 ../../printerdrake.pm_.c:1094
msgid "The port number should be an integer!"
msgstr "Dylai rhif porth fod yn gyfanrif!"
@@ -7852,7 +8011,7 @@ msgstr "Dylai rhif porth fod yn gyfanrif!"
msgid "CUPS server IP"
msgstr "IP gwasanaethwr CUPS"
-#: ../../printerdrake.pm_.c:103 ../../printerdrake.pm_.c:1007
+#: ../../printerdrake.pm_.c:103 ../../printerdrake.pm_.c:1114
msgid "Port"
msgstr "Porth"
@@ -7860,12 +8019,126 @@ msgstr "Porth"
msgid "Automatic CUPS configuration"
msgstr "Furfweddiad CUPS Awtomatig"
-#: ../../printerdrake.pm_.c:183 ../../printerdrake.pm_.c:192
-#: ../../printerdrake.pm_.c:2897 ../../printerdrake.pm_.c:3017
+#: ../../printerdrake.pm_.c:177 ../../printerdrake.pm_.c:247
+#: ../../printerdrake.pm_.c:1529 ../../printerdrake.pm_.c:1533
+#: ../../printerdrake.pm_.c:1651 ../../printerdrake.pm_.c:2203
+#: ../../printerdrake.pm_.c:2356 ../../printerdrake.pm_.c:2415
+#: ../../printerdrake.pm_.c:2488 ../../printerdrake.pm_.c:2509
+#: ../../printerdrake.pm_.c:2699 ../../printerdrake.pm_.c:2740
+#: ../../printerdrake.pm_.c:2745 ../../printerdrake.pm_.c:2779
+#: ../../printerdrake.pm_.c:2784 ../../printerdrake.pm_.c:2821
+#: ../../printerdrake.pm_.c:2874 ../../printerdrake.pm_.c:2894
+#: ../../printerdrake.pm_.c:2908 ../../printerdrake.pm_.c:2942
+#: ../../printerdrake.pm_.c:2988 ../../printerdrake.pm_.c:3006
+#: ../../printerdrake.pm_.c:3095 ../../printerdrake.pm_.c:3169
+#: ../../printerdrake.pm_.c:3471 ../../printerdrake.pm_.c:3526
+#: ../../printerdrake.pm_.c:3579 ../../standalone/printerdrake_.c:57
+msgid "Printerdrake"
+msgstr "Printerdrake"
+
+#: ../../printerdrake.pm_.c:178
+msgid "Checking your system..."
+msgstr "Gwirio eich system..."
+
+#: ../../printerdrake.pm_.c:186
+msgid ""
+"There are no printers found which are directly connected to your machine"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:198
+msgid ""
+"The following printers\n"
+"\n"
+msgstr ""
+"Yr argraffyddion canlynol\n"
+"\n"
+
+#: ../../printerdrake.pm_.c:199
+msgid ""
+"The following printer\n"
+"\n"
+msgstr ""
+"Yr argraffydd canlynol\n"
+"\n"
+
+#: ../../printerdrake.pm_.c:201
+msgid ""
+"\n"
+"and one unknown printer are "
+msgstr ""
+
+#: ../../printerdrake.pm_.c:203
+#, c-format
+msgid ""
+"\n"
+"and %d unknown printers are "
+msgstr ""
+
+#: ../../printerdrake.pm_.c:207
+msgid ""
+"\n"
+"are "
+msgstr ""
+
+#: ../../printerdrake.pm_.c:208
+msgid ""
+"\n"
+"is "
+msgstr ""
+
+#: ../../printerdrake.pm_.c:210
+msgid "directly connected to your system"
+msgstr "wedi ei gysylltu'n uniongyrchol â'ch system!"
+
+#: ../../printerdrake.pm_.c:213
+msgid ""
+"\n"
+"There is one unknown printer directly connected to your system"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:215
+#, c-format
+msgid ""
+"\n"
+"There are %d unknown printers directly connected to your system"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:221
+msgid " (Make sure that all your printers are connected and turned on).\n"
+msgstr ""
+"(Gwnewch yn siwr bod eich argraffyddion wedi eu cysylltu a'u troi mlaen).\n"
+
+#: ../../printerdrake.pm_.c:235
+msgid ""
+"Do you want to enable printing on the printers mentioned above or on "
+"printers in the local network?\n"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:236
+msgid "Do you want to enable printing on printers in the local network?\n"
+msgstr "Ydych chi am alluogi argraffu ar argraffydd mewn rhwydwaith leol?\n"
+
+#: ../../printerdrake.pm_.c:238
+msgid "Do you want to enable printing on the printers mentioned above?\n"
+msgstr "Ydych chi am alluogi argraffu ar yr argraffyddion enwwi'r uchod?\n"
+
+#: ../../printerdrake.pm_.c:239
+msgid "Are you sure that you want to set up printing on this machine?\n"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:240
+#, c-format
+msgid ""
+"NOTE: Depending on the printer model and the printing system up to %d MB of "
+"additional software will be installed."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:269 ../../printerdrake.pm_.c:278
+#: ../../printerdrake.pm_.c:3117 ../../printerdrake.pm_.c:3242
msgid "Add a new printer"
msgstr "Ychwanegu argraffydd newydd"
-#: ../../printerdrake.pm_.c:184
+#: ../../printerdrake.pm_.c:270
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7888,7 +8161,7 @@ msgstr ""
"yn rhoi mynediad i'r holl yrwyr argraffyddion sydd ar gael, dewisiadau "
"gyrwyr a mathau o gysylltiadau argraffyddion."
-#: ../../printerdrake.pm_.c:193
+#: ../../printerdrake.pm_.c:280
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7897,7 +8170,7 @@ msgid ""
"computer, connected directly to the network or to a remote Windows machine.\n"
"\n"
"If you have printer(s) connected to this machine, Please plug it/them in on "
-"this computer and turn it/them on so that they can be auto-detected. Also "
+"this computer and turn it/them on so that it/they can be auto-detected. Also "
"your network printer(s) and you Windows machines must be connected and "
"turned on.\n"
"\n"
@@ -7910,7 +8183,22 @@ msgid ""
"want to set up your printer(s) now."
msgstr ""
-#: ../../printerdrake.pm_.c:202
+#: ../../printerdrake.pm_.c:289 ../../printerdrake.pm_.c:306
+msgid ""
+"\n"
+"Welcome to the Printer Setup Wizard\n"
+"\n"
+"This wizard will help you to install your printer(s) connected to this "
+"computer.\n"
+"\n"
+"If you have printer(s) connected to this machine, Please plug it/them in on "
+"this computer and turn it/them on so that it/they can be auto-detected.\n"
+"\n"
+" Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
+"want to set up your printer(s) now."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:297
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7919,7 +8207,7 @@ msgid ""
"computer or connected directly to the network.\n"
"\n"
"If you have printer(s) connected to this machine, Please plug it/them in on "
-"this computer and turn it/them on so that they can be auto-detected. Also "
+"this computer and turn it/them on so that it/they can be auto-detected. Also "
"your network printer(s) must be connected and turned on.\n"
"\n"
"Note that auto-detecting printers on the network takes longer than the auto-"
@@ -7930,25 +8218,24 @@ msgid ""
"want to set up your printer(s) now."
msgstr ""
-#: ../../printerdrake.pm_.c:213
-#, fuzzy
+#: ../../printerdrake.pm_.c:315
msgid "Auto-detect printers connected to this machine"
-msgstr "Awto ganfod argraffyddion"
+msgstr "Awto ganfod argraffyddion sy'n gysylltiedig a'r peiriant hwn"
-#: ../../printerdrake.pm_.c:215
+#: ../../printerdrake.pm_.c:318
msgid "Auto-detect printers connected directly to the local network"
msgstr ""
-#: ../../printerdrake.pm_.c:218
+#: ../../printerdrake.pm_.c:321
msgid "Auto-detect printers connected to machines running Microsoft Windows"
msgstr ""
-#: ../../printerdrake.pm_.c:245 ../../printerdrake.pm_.c:459
-#: ../../printerdrake.pm_.c:484
+#: ../../printerdrake.pm_.c:348 ../../printerdrake.pm_.c:562
+#: ../../printerdrake.pm_.c:587
msgid "Local Printer"
msgstr "Argraffydd Lleol"
-#: ../../printerdrake.pm_.c:246
+#: ../../printerdrake.pm_.c:349
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -7968,50 +8255,49 @@ msgstr ""
"gosodiadau dewis rhagosodedig (mewnflwch papur, ansawdd y printiad,...0, "
"dewiswch \"Argraffydd\" yn adran \"Caledwedd\" Canolfan Rheoli Mandrake."
-#: ../../printerdrake.pm_.c:283 ../../printerdrake.pm_.c:474
-#: ../../printerdrake.pm_.c:683 ../../printerdrake.pm_.c:923
-#, fuzzy
+#: ../../printerdrake.pm_.c:386 ../../printerdrake.pm_.c:577
+#: ../../printerdrake.pm_.c:790 ../../printerdrake.pm_.c:1030
msgid "Printer auto-detection"
-msgstr "Defnyddio awto ganfod"
+msgstr "Awto ganfod argraffydd"
-#: ../../printerdrake.pm_.c:305
-#, fuzzy, c-format
+#: ../../printerdrake.pm_.c:408
+#, c-format
msgid ", network printer \"%s\", port %s"
-msgstr ", gwesteiwr TCP/IP \"%s\", porth %s"
+msgstr ", rhwydwaith argraffu \"%s\", porth %s"
-#: ../../printerdrake.pm_.c:307
-#, fuzzy, c-format
+#: ../../printerdrake.pm_.c:410
+#, c-format
msgid ", printer \"%s\" on SMB/Windows server \"%s\""
-msgstr "Argraffydd ar wasanaethwr SMB/Windows 95/98/NT"
+msgstr ", argraffydd \"%s\" ar wasanaethwr SMB/Windows \"%s\""
-#: ../../printerdrake.pm_.c:313
+#: ../../printerdrake.pm_.c:416
#, c-format
msgid "Detected %s"
msgstr "Canfyddwyd %s"
-#: ../../printerdrake.pm_.c:317 ../../printerdrake.pm_.c:348
-#: ../../printerdrake.pm_.c:367
+#: ../../printerdrake.pm_.c:420 ../../printerdrake.pm_.c:451
+#: ../../printerdrake.pm_.c:470
#, c-format
msgid "Printer on parallel port \\/*%s"
msgstr "Argraffydd ar borth paralel \\/\"%s"
-#: ../../printerdrake.pm_.c:319 ../../printerdrake.pm_.c:350
-#: ../../printerdrake.pm_.c:372
+#: ../../printerdrake.pm_.c:422 ../../printerdrake.pm_.c:453
+#: ../../printerdrake.pm_.c:475
#, c-format
msgid "USB printer \\/*%s"
msgstr "Argraffydd USB \\/\"%s"
-#: ../../printerdrake.pm_.c:321
-#, fuzzy, c-format
+#: ../../printerdrake.pm_.c:424
+#, c-format
msgid "Network printer \"%s\", port %s"
-msgstr "Argraffydd rhwydwaith (TCP/Soced)"
+msgstr "Argraffydd rhwydwaith \"%s\", porth %s"
-#: ../../printerdrake.pm_.c:323
-#, fuzzy, c-format
+#: ../../printerdrake.pm_.c:426
+#, c-format
msgid "Printer \"%s\" on SMB/Windows server \"%s\""
-msgstr "Argraffydd ar wasanaethwr SMB/Windows 95/98/NT"
+msgstr "Argraffydd \"%s\" ar wasanaethwr SMB/Windows \"%s\""
-#: ../../printerdrake.pm_.c:460
+#: ../../printerdrake.pm_.c:563
msgid ""
"No local printer found! To manually install a printer enter a device name/"
"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
@@ -8023,23 +8309,19 @@ msgstr ""
"dev/,...., cyfatebol i LPT1:, LPT2,..., argraffydd USB 1af: /dev/usb/lp0, "
"ail argraffydd USB: /dev/usb/lp1,...)."
-#: ../../printerdrake.pm_.c:464
+#: ../../printerdrake.pm_.c:567
msgid "You must enter a device or file name!"
msgstr "Rhaid cynnig enw dyfais neu ffeil!"
-#: ../../printerdrake.pm_.c:475
-#, fuzzy
+#: ../../printerdrake.pm_.c:578
msgid "No printer found!"
-msgstr ""
-"Heb ganfood argraffydd lleol!\n"
-"\n"
+msgstr "Heb ganfood argraffydd!"
-#: ../../printerdrake.pm_.c:485
-#, fuzzy
+#: ../../printerdrake.pm_.c:588
msgid "Available printers"
-msgstr "Argraffydd lleol"
+msgstr "Argraffyddion ar gael"
-#: ../../printerdrake.pm_.c:489
+#: ../../printerdrake.pm_.c:592
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
@@ -8047,7 +8329,7 @@ msgstr ""
"Cafodd yr argraffydd canlynol ei awto ganfod, os nad hwn yw'r un rydych am "
"ei ffurfweddu, rhowch enw dyfais/enw ffeil ar y llinell mewnbwn."
-#: ../../printerdrake.pm_.c:490
+#: ../../printerdrake.pm_.c:593
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up or enter a device name/file name in the input line"
@@ -8056,7 +8338,7 @@ msgstr ""
"argraffydd rydych am ei osod neu rhowch enw dyfais/ffeil yn y llinell "
"mewnbwn."
-#: ../../printerdrake.pm_.c:492
+#: ../../printerdrake.pm_.c:595
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
@@ -8068,7 +8350,7 @@ msgstr ""
"byddai'n well gennych ffurfweddiad unigryw i'ch argraffydd, cychwynnwch "
"\"Ffurfweddiad gyda Llaw\"."
-#: ../../printerdrake.pm_.c:493
+#: ../../printerdrake.pm_.c:596
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
@@ -8081,7 +8363,7 @@ msgstr ""
"well gennych ffurfweddiad unigryw i'ch argraffydd, cychwynnwch "
"\"Ffurfweddiad gyda Llaw\"."
-#: ../../printerdrake.pm_.c:495
+#: ../../printerdrake.pm_.c:598
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
@@ -8089,11 +8371,11 @@ msgstr ""
"Dewiswch y porth y mae eich argraffydd wedi cysylltu iddo neurhowch enw "
"dyfais/ffeil ar y ninell mewnbwn"
-#: ../../printerdrake.pm_.c:496
+#: ../../printerdrake.pm_.c:599
msgid "Please choose the port where your printer is connected to."
msgstr "Dewiswch y porth mae'r argraffydd wedi cysylltu iddo."
-#: ../../printerdrake.pm_.c:498
+#: ../../printerdrake.pm_.c:601
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
@@ -8101,19 +8383,19 @@ msgstr ""
" (Pyrth paralel: /dev/lp0, /dev/lp1, ..., yn cyfateb i LPT1:, LPT2:, ..., "
"argraffydd USB cyntaf: /dev/usb/lp0, ail argraffydd USB : /dev/usb/lp1, ...)."
-#: ../../printerdrake.pm_.c:503
+#: ../../printerdrake.pm_.c:606
msgid "You must choose/enter a printer/device!"
msgstr "Rhaid dewis/rhoi argraffydd/dyfais!"
-#: ../../printerdrake.pm_.c:523
+#: ../../printerdrake.pm_.c:626
msgid "Manual configuration"
msgstr "Ffurfweddiad gyda llaw"
-#: ../../printerdrake.pm_.c:577
+#: ../../printerdrake.pm_.c:680
msgid "Remote lpd Printer Options"
msgstr "Dewisiadau Argraffydd lpd Pell"
-#: ../../printerdrake.pm_.c:578
+#: ../../printerdrake.pm_.c:681
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
"server and the printer name on that server."
@@ -8121,47 +8403,46 @@ msgstr ""
"I ddefnyddio argraffydd lpd pell, rhaid darparu enw gwesteiwr gwasanaethwr "
"yr argraffydd ac enw'r argraffydd ar y gwasanaethwr hwnnw."
-#: ../../printerdrake.pm_.c:579
+#: ../../printerdrake.pm_.c:682
msgid "Remote host name"
msgstr "Enw gwesteiwr pell"
-#: ../../printerdrake.pm_.c:580
+#: ../../printerdrake.pm_.c:683
msgid "Remote printer name"
msgstr "Enw'r argraffydd pell"
-#: ../../printerdrake.pm_.c:583
+#: ../../printerdrake.pm_.c:686
msgid "Remote host name missing!"
msgstr "Mae enw'r gwesteiwr pell ar goll!"
-#: ../../printerdrake.pm_.c:587
+#: ../../printerdrake.pm_.c:690
msgid "Remote printer name missing!"
msgstr "Mae enw'r argraffydd pell ar goll!"
-#: ../../printerdrake.pm_.c:609 ../../printerdrake.pm_.c:1119
-#, fuzzy, c-format
+#: ../../printerdrake.pm_.c:712 ../../printerdrake.pm_.c:1225
+#, c-format
msgid "Detected model: %s %s"
-msgstr "Canfyddwyd %s"
+msgstr "Canfyddwyd model %s %s"
-#: ../../printerdrake.pm_.c:683 ../../printerdrake.pm_.c:923
-#, fuzzy
+#: ../../printerdrake.pm_.c:790 ../../printerdrake.pm_.c:1030
msgid "Scanning network..."
-msgstr "Cychwyn y rhwydwaith..."
+msgstr "Chwilio'r rhwydwaith..."
-#: ../../printerdrake.pm_.c:692 ../../printerdrake.pm_.c:713
-#, fuzzy, c-format
+#: ../../printerdrake.pm_.c:799 ../../printerdrake.pm_.c:820
+#, c-format
msgid ", printer \"%s\" on server \"%s\""
-msgstr "ar wasanaethwr Windows \"%s\", rhannu \"%s\""
+msgstr ", argraffydd \"%s\" ar wasanaethwr \"%s\""
-#: ../../printerdrake.pm_.c:695 ../../printerdrake.pm_.c:716
-#, fuzzy, c-format
+#: ../../printerdrake.pm_.c:802 ../../printerdrake.pm_.c:823
+#, c-format
msgid "Printer \"%s\" on server \"%s\""
-msgstr "Argraffu ar argraffydd \"%s\""
+msgstr "Argraffydd \"%s\" ar wasanaethwr \"%s\""
-#: ../../printerdrake.pm_.c:736
+#: ../../printerdrake.pm_.c:843
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "Dewisiadau Argraffydd SMB (Windows 9x/NT)"
-#: ../../printerdrake.pm_.c:737
+#: ../../printerdrake.pm_.c:844
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
"may be different from its TCP/IP hostname!) and possibly the IP address of "
@@ -8174,46 +8455,45 @@ msgstr ""
"rydych am gael mynediad iddo ac unrhyw enw defnyddiwr, cyfrinair a "
"gwybodaeth am grwp gwaith perthynol."
-#: ../../printerdrake.pm_.c:738
+#: ../../printerdrake.pm_.c:845
msgid ""
" If the desired printer was auto-detected, simply choose it from the list "
"and then add user name, password, and/or workgroup if needed."
msgstr ""
-#: ../../printerdrake.pm_.c:739
+#: ../../printerdrake.pm_.c:846
msgid "SMB server host"
msgstr "Gwasanaethwr gwesteiwr SMB"
-#: ../../printerdrake.pm_.c:740
+#: ../../printerdrake.pm_.c:847
msgid "SMB server IP"
msgstr "IP Gwasanaethwr SMB"
-#: ../../printerdrake.pm_.c:741
+#: ../../printerdrake.pm_.c:848
msgid "Share name"
msgstr "Rhannu enw"
-#: ../../printerdrake.pm_.c:744
+#: ../../printerdrake.pm_.c:851
msgid "Workgroup"
msgstr "Grwp gwaith"
-#: ../../printerdrake.pm_.c:746
-#, fuzzy
+#: ../../printerdrake.pm_.c:853
msgid "Auto-detected"
-msgstr "Defnyddio awto ganfod"
+msgstr "Awto ganfyddwyd"
-#: ../../printerdrake.pm_.c:757
+#: ../../printerdrake.pm_.c:864
msgid "Either the server name or the server's IP must be given!"
msgstr "Rhaid rhoi un ai enw'r gwasanaethwr neu IP'r gwasanaethwr!"
-#: ../../printerdrake.pm_.c:761
+#: ../../printerdrake.pm_.c:868
msgid "Samba share name missing!"
msgstr "Mae enw rhannu Samba ar goll!"
-#: ../../printerdrake.pm_.c:767
+#: ../../printerdrake.pm_.c:874
msgid "SECURITY WARNING!"
msgstr ""
-#: ../../printerdrake.pm_.c:768
+#: ../../printerdrake.pm_.c:875
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -8237,7 +8517,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:778
+#: ../../printerdrake.pm_.c:885
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -8246,7 +8526,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:781
+#: ../../printerdrake.pm_.c:888
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
@@ -8254,11 +8534,11 @@ msgid ""
"Do you really want to continue setting up this printer as you are doing now?"
msgstr ""
-#: ../../printerdrake.pm_.c:853
+#: ../../printerdrake.pm_.c:960
msgid "NetWare Printer Options"
msgstr "Dewisiadau Argraffydd NetWare"
-#: ../../printerdrake.pm_.c:854
+#: ../../printerdrake.pm_.c:961
msgid ""
"To print on a NetWare printer, you need to provide the NetWare print server "
"name (Note! it may be different from its TCP/IP hostname!) as well as the "
@@ -8270,70 +8550,67 @@ msgstr ""
"â'r rhes waith argraffu am yr argraffydd rydych am gael mynediad iddo ac "
"unrhyw enw defnyddiwr a chyfrinair perthnasol."
-#: ../../printerdrake.pm_.c:855
+#: ../../printerdrake.pm_.c:962
msgid "Printer Server"
msgstr "Gwasanaethwr Argraffydd"
-#: ../../printerdrake.pm_.c:856
+#: ../../printerdrake.pm_.c:963
msgid "Print Queue Name"
msgstr "Enw Rhes Argraffu"
-#: ../../printerdrake.pm_.c:861
+#: ../../printerdrake.pm_.c:968
msgid "NCP server name missing!"
msgstr "Mae enw gwasanaethwr NCP ar goll!"
-#: ../../printerdrake.pm_.c:865
+#: ../../printerdrake.pm_.c:972
msgid "NCP queue name missing!"
msgstr "Mae enw rhes NCP ar goll"
-#: ../../printerdrake.pm_.c:932 ../../printerdrake.pm_.c:952
-#, fuzzy, c-format
+#: ../../printerdrake.pm_.c:1039 ../../printerdrake.pm_.c:1059
+#, c-format
msgid ", host \"%s\", port %s"
-msgstr ", gwesteiwr TCP/IP \"%s\", porth %s"
+msgstr ", gwesteiwr \"%s\", porth %s"
-#: ../../printerdrake.pm_.c:935 ../../printerdrake.pm_.c:955
-#, fuzzy, c-format
+#: ../../printerdrake.pm_.c:1042 ../../printerdrake.pm_.c:1062
+#, c-format
msgid "Host \"%s\", port %s"
-msgstr ", gwesteiwr TCP/IP \"%s\", porth %s"
+msgstr ",Gwesteiwr \"%s\", porth %s"
-#: ../../printerdrake.pm_.c:975
+#: ../../printerdrake.pm_.c:1082
msgid "TCP/Socket Printer Options"
msgstr "Dewisiadau Argraffydd TCP/Soced"
-#: ../../printerdrake.pm_.c:977
+#: ../../printerdrake.pm_.c:1084
msgid ""
"Choose one of the auto-detected printers from the list or enter the hostname "
"or IP and the optional port number (default is 9100) into the input fields."
msgstr ""
-#: ../../printerdrake.pm_.c:978
-#, fuzzy
+#: ../../printerdrake.pm_.c:1085
msgid ""
"To print to a TCP or socket printer, you need to provide the host name or IP "
"of the printer and optionally the port number (default is 9100). On HP "
"JetDirect servers the port number is usually 9100, on other servers it can "
"vary. See the manual of your hardware."
msgstr ""
-"I argraffu i argraffydd TCP neu soced, rhaid i chi ddarparu enw gwesteiwr yr "
-"argraffydd ac yn ddewisol rhif y porth. Ar wasanaethwyr HP JetDirect rhif y "
-"porth, fel rheol, yw 9100, gall amrywio ar wasanaethwyr eraill. Gweler "
-"llawlyfr eich caledwedd"
+"I argraffu i argraffydd TCP neu soced, rhaid i chi ddarparu enw gwesteiwr "
+"neu IP'r argraffydd ac yn ddewisol rhif y porth (Y rhagosodedig yw 9100). Ar "
+"wasanaethwyr HP JetDirect rhif y porth, fel rheol, yw 9100, gall amrywio ar "
+"wasanaethwyr eraill. Gweler llawlyfr eich caledwedd"
-#: ../../printerdrake.pm_.c:983
-#, fuzzy
+#: ../../printerdrake.pm_.c:1090
msgid "Printer host name or IP missing!"
-msgstr "Mae enw'r gwesteiwr argraffu ar goll!"
+msgstr "Mae enw'r gwesteiwr argraffu neu IP ar goll!"
-#: ../../printerdrake.pm_.c:1005
-#, fuzzy
+#: ../../printerdrake.pm_.c:1112
msgid "Printer host name or IP"
-msgstr "Enw'gwesteiwr yr argraffydd"
+msgstr "Enw'r gwesteiwr neu IP yr argraffydd"
-#: ../../printerdrake.pm_.c:1054 ../../printerdrake.pm_.c:1056
+#: ../../printerdrake.pm_.c:1160 ../../printerdrake.pm_.c:1162
msgid "Printer Device URI"
msgstr "URI Dyfais Argraffu"
-#: ../../printerdrake.pm_.c:1055
+#: ../../printerdrake.pm_.c:1161
msgid ""
"You can specify directly the URI to access the printer. The URI must fulfill "
"either the CUPS or the Foomatic specifications. Note that not all URI types "
@@ -8343,11 +8620,11 @@ msgstr ""
"gyflawni manylyn un ai CUPS neu Foomatic. Sylwer nad yw pob math o URI cyn "
"cael eu cynnal gan bob sbwlydd ."
-#: ../../printerdrake.pm_.c:1070
+#: ../../printerdrake.pm_.c:1176
msgid "A valid URI must be entered!"
msgstr "Rhaid cynnig URI dilys!"
-#: ../../printerdrake.pm_.c:1402
+#: ../../printerdrake.pm_.c:1515
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
"Location fields do not need to be filled in. They are comments for the users."
@@ -8355,27 +8632,27 @@ msgstr ""
"Mae pob argraffydd angen enw (e.e. \"argraffydd\". Nid oes angen llanw "
"meysydd Disgrifiad a Lleoliad. Lle ar gyfer sylwadau'r defnyddiwr sydd yma."
-#: ../../printerdrake.pm_.c:1403
+#: ../../printerdrake.pm_.c:1516
msgid "Name of printer"
msgstr "Enw'r argraffydd"
-#: ../../printerdrake.pm_.c:1405
+#: ../../printerdrake.pm_.c:1518
msgid "Location"
msgstr "Lleoliad"
-#: ../../printerdrake.pm_.c:1416 ../../printerdrake.pm_.c:1536
+#: ../../printerdrake.pm_.c:1530 ../../printerdrake.pm_.c:1652
msgid "Reading printer database..."
msgstr "Darllen cronfa ddata argraffydd..."
-#: ../../printerdrake.pm_.c:1419
+#: ../../printerdrake.pm_.c:1534
msgid "Preparing printer database..."
msgstr "Paratoi cronfa ddata argraffydd..."
-#: ../../printerdrake.pm_.c:1516
+#: ../../printerdrake.pm_.c:1631
msgid "Your printer model"
msgstr "Model eich argraffydd"
-#: ../../printerdrake.pm_.c:1517
+#: ../../printerdrake.pm_.c:1632
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -8401,24 +8678,24 @@ msgstr ""
"\n"
"%s"
-#: ../../printerdrake.pm_.c:1522 ../../printerdrake.pm_.c:1525
+#: ../../printerdrake.pm_.c:1637 ../../printerdrake.pm_.c:1640
msgid "The model is correct"
msgstr "Mae'r model yn gywir"
-#: ../../printerdrake.pm_.c:1523 ../../printerdrake.pm_.c:1524
-#: ../../printerdrake.pm_.c:1527
+#: ../../printerdrake.pm_.c:1638 ../../printerdrake.pm_.c:1639
+#: ../../printerdrake.pm_.c:1642
msgid "Select model manually"
msgstr "Dewiswch y model gyda llaw"
-#: ../../printerdrake.pm_.c:1543
+#: ../../printerdrake.pm_.c:1659
msgid "Printer model selection"
msgstr "Dewis model yr argraffydd"
-#: ../../printerdrake.pm_.c:1544
+#: ../../printerdrake.pm_.c:1660
msgid "Which printer model do you have?"
msgstr "Pa fath o argraffydd sydd gennych?"
-#: ../../printerdrake.pm_.c:1545
+#: ../../printerdrake.pm_.c:1661
msgid ""
"\n"
"\n"
@@ -8432,7 +8709,7 @@ msgstr ""
"Chwiliwch am y model cywir pan fo'r cyrchwr yn sefyll ar y model anghywir "
"neu ar \"Argraffydd bras\"."
-#: ../../printerdrake.pm_.c:1548
+#: ../../printerdrake.pm_.c:1664
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
@@ -8440,11 +8717,11 @@ msgstr ""
"Nid yw eich argraffydd wedi ei rhestri, dewiswch un cyfatebol (gw. llawlyfr "
"eich argraffydd) neu un tebyg."
-#: ../../printerdrake.pm_.c:1624
+#: ../../printerdrake.pm_.c:1741
msgid "OKI winprinter configuration"
msgstr "Ffurfweddiad OKI winprinter "
-#: ../../printerdrake.pm_.c:1625
+#: ../../printerdrake.pm_.c:1742
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -8461,11 +8738,11 @@ msgstr ""
"brawf. Os na wnewch chi hynny, ni fydd yr argraffydd yn gweithio. Bydd eich "
"gosodiad ynghylch ymath o gysylltiad yn cael ei anwybyddu gan y gyrrwr."
-#: ../../printerdrake.pm_.c:1668 ../../printerdrake.pm_.c:1695
+#: ../../printerdrake.pm_.c:1785 ../../printerdrake.pm_.c:1812
msgid "Lexmark inkjet configuration"
msgstr "Ffurfweddiad inkjet Lexmark"
-#: ../../printerdrake.pm_.c:1669
+#: ../../printerdrake.pm_.c:1786
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
"no printers on remote machines or print server boxes. Please connect your "
@@ -8476,17 +8753,17 @@ msgstr ""
"argraffyddion lleol, yn unig. Cysylltwch eich argraffydd i borth lleol neu "
"ffurfweddwch ef i'r peiriant mae'n gysylltiedig ag ef."
-#: ../../printerdrake.pm_.c:1696
+#: ../../printerdrake.pm_.c:1813
+#, fuzzy
msgid ""
"To be able to print with your Lexmark inkjet and this configuration, you "
"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
-"com/). Go to the US site and click on the \"Drivers\" button. Then choose "
-"your model and afterwards \"Linux\" as operating system. The drivers come as "
-"RPM packages or shell scripts with interactive graphical installation. You "
-"do not need to do this configuration by the graphical frontends. Cancel "
-"directly after the license agreement. Then print printhead alignment pages "
-"with \"lexmarkmaintain\" and adjust the head alignment settings with this "
-"program."
+"com/). Click on the \"Drivers\" link. Then choose your model and afterwards "
+"\"Linux\" as operating system. The drivers come as RPM packages or shell "
+"scripts with interactive graphical installation. You do not need to do this "
+"configuration by the graphical frontends. Cancel directly after the license "
+"agreement. Then print printhead alignment pages with \"lexmarkmaintain\" and "
+"adjust the head alignment settings with this program."
msgstr ""
"I fedru argraffu gyda eich argraffydd inkjet Lexmark a'r ffurfweddiad hwn, "
"bydd angen gyrwyr argraffydd inkjet sydd wedi eu darparu gan Lexmark (http://"
@@ -8498,7 +8775,34 @@ msgstr ""
"dudalennau'r alinio'r pen argraffu gyda \"lexmarkmaintain\" a newid "
"gosodiadau aliniad y pen gyda'r rhaglen."
-#: ../../printerdrake.pm_.c:1912
+#: ../../printerdrake.pm_.c:1816
+msgid "GDI Laser Printer using the Zenographics ZJ-Stream Format"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:1817
+msgid ""
+"Your printer belongs to the group of GDI laser printers (winprinters) sold "
+"by different manufacturers which uses the Zenographics ZJ-stream raster "
+"format for the data sent to the printer. The driver for these printers is "
+"still in a very early development stage and so it will perhaps not always "
+"work properly. Especially it is possible that the printer only works when "
+"you choose the A4 paper size.\n"
+"\n"
+"Some of these printers, as the HP LaserJet 1000, for which this driver was "
+"originally created, need their firmware to be uploaded to them after they "
+"are turned on. In the case of the HP LaserJet 1000 you have to search the "
+"printer's Windows driver CD or your Windows partition for the file "
+"\"sihp1000.img\" and upload the file to the printer with one of the "
+"following commands:\n"
+"\n"
+" lpr -o raw sihp1000.img\n"
+" cat sihp1000.img > /dev/usb/lp0\n"
+"\n"
+"The first command can be given by any normal user, the second must be given "
+"as root. After having done so you can print normally.\n"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:2040
msgid ""
"Printer default settings\n"
"\n"
@@ -8515,22 +8819,22 @@ msgstr ""
"argraffiad ansawdd/cydraniad uchel iawn yn medru arafu'r argraffu'n "
"sylweddol.."
-#: ../../printerdrake.pm_.c:1921
+#: ../../printerdrake.pm_.c:2049
#, c-format
msgid "Option %s must be an integer number!"
msgstr "Rhaid i ddewis %s fod yn gyfanrif"
-#: ../../printerdrake.pm_.c:1925
+#: ../../printerdrake.pm_.c:2053
#, c-format
msgid "Option %s must be a number!"
msgstr "Rhaid i ddewis %s fod yn rhif!"
-#: ../../printerdrake.pm_.c:1930
+#: ../../printerdrake.pm_.c:2058
#, c-format
msgid "Option %s out of range!"
msgstr "Dewis %s allan o amrediad!"
-#: ../../printerdrake.pm_.c:1969
+#: ../../printerdrake.pm_.c:2097
#, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
@@ -8539,11 +8843,11 @@ msgstr ""
"Ydych chi am osod argraffydd (\"%s\")\n"
"fel yr argraffydd rhagosodedig?"
-#: ../../printerdrake.pm_.c:1986
+#: ../../printerdrake.pm_.c:2120
msgid "Test pages"
msgstr "Tudalennau prawf"
-#: ../../printerdrake.pm_.c:1987
+#: ../../printerdrake.pm_.c:2121
msgid ""
"Please select the test pages you want to print.\n"
"Note: the photo test page can take a rather long time to get printed and on "
@@ -8555,39 +8859,39 @@ msgstr ""
"ei argraffu ac ar argraffydd laser heb lawer o gof mae'n bosibl na ddaw o "
"gwbl. Yn y rhan fwyaf o achosion, mae'r prawf tudalen safonol yn ddigonol."
-#: ../../printerdrake.pm_.c:1991
+#: ../../printerdrake.pm_.c:2125
msgid "No test pages"
msgstr "Dim tudalennau prawf"
-#: ../../printerdrake.pm_.c:1992
+#: ../../printerdrake.pm_.c:2126
msgid "Print"
msgstr "Argraffu"
-#: ../../printerdrake.pm_.c:1994
+#: ../../printerdrake.pm_.c:2183
msgid "Standard test page"
msgstr "Tudalen prawf safonnol"
-#: ../../printerdrake.pm_.c:1997
+#: ../../printerdrake.pm_.c:2186
msgid "Alternative test page (Letter)"
msgstr "Prawf tudalen arall (Llythyr)"
-#: ../../printerdrake.pm_.c:2000
+#: ../../printerdrake.pm_.c:2189
msgid "Alternative test page (A4)"
msgstr "Prawf tudalen arall (A4)"
-#: ../../printerdrake.pm_.c:2002
+#: ../../printerdrake.pm_.c:2191
msgid "Photo test page"
msgstr "Tudalen prawf llun"
-#: ../../printerdrake.pm_.c:2006
+#: ../../printerdrake.pm_.c:2195
msgid "Do not print any test page"
msgstr "Peidiwch argraffu tudalennau prawf"
-#: ../../printerdrake.pm_.c:2014 ../../printerdrake.pm_.c:2166
+#: ../../printerdrake.pm_.c:2204 ../../printerdrake.pm_.c:2357
msgid "Printing test page(s)..."
msgstr "Argraffu tudalen(nau) prawf..."
-#: ../../printerdrake.pm_.c:2039
+#: ../../printerdrake.pm_.c:2229
#, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -8602,7 +8906,7 @@ msgstr ""
"%s\n"
"\n"
-#: ../../printerdrake.pm_.c:2043
+#: ../../printerdrake.pm_.c:2233
msgid ""
"Test page(s) have been sent to the printer.\n"
"It may take some time before the printer starts.\n"
@@ -8610,15 +8914,15 @@ msgstr ""
"Mae tudalen(nau) prawf wedi eu hanfon at yr argraffydd.\n"
"Gall gymryd amser cyn i'r argraffydd gychwyn.\n"
-#: ../../printerdrake.pm_.c:2050
+#: ../../printerdrake.pm_.c:2240
msgid "Did it work properly?"
msgstr "A weithiodd hwnnw'n iawn?"
-#: ../../printerdrake.pm_.c:2072 ../../printerdrake.pm_.c:3191
+#: ../../printerdrake.pm_.c:2262 ../../printerdrake.pm_.c:3416
msgid "Raw printer"
msgstr "Argraffydd bras"
-#: ../../printerdrake.pm_.c:2098
+#: ../../printerdrake.pm_.c:2288
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -8631,7 +8935,7 @@ msgstr ""
"\"xpp <file>\" neu \"kprinter <file>\". Mae'r offeryn graffigol yn caniatáu "
"chi ddefnyddio'r argraffydd ac i newid gosodiadau dewis yn hawdd.\n"
-#: ../../printerdrake.pm_.c:2100
+#: ../../printerdrake.pm_.c:2290
msgid ""
"These commands you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications, but here do not supply the file name "
@@ -8641,8 +8945,8 @@ msgstr ""
"deialogau argraffu mewn nifer o raglenni, ond yma nid ydynt yn darparu'r "
"enw ffeil am fod y ffeil i'r argraffydd yn cael ei ddarparu gan y rhaglen.\n"
-#: ../../printerdrake.pm_.c:2103 ../../printerdrake.pm_.c:2120
-#: ../../printerdrake.pm_.c:2130
+#: ../../printerdrake.pm_.c:2293 ../../printerdrake.pm_.c:2310
+#: ../../printerdrake.pm_.c:2320
#, c-format
msgid ""
"\n"
@@ -8655,8 +8959,8 @@ msgstr ""
"tasg argraffu penodol. Ychwanegwch y gosodiadau angenrheidiol i'r llinell "
"gorchymyn, e.e \"%s <file>\". "
-#: ../../printerdrake.pm_.c:2106 ../../printerdrake.pm_.c:2146
-#, fuzzy, c-format
+#: ../../printerdrake.pm_.c:2296 ../../printerdrake.pm_.c:2336
+#, c-format
msgid ""
"To know about the options available for the current printer read either the "
"list shown below or click on the \"Print option list\" button.%s%s\n"
@@ -8664,10 +8968,10 @@ msgid ""
msgstr ""
"Er mwyn cael gwybodaeth am y dewisiadau sydd ar gael ar gyfer yr argraffydd "
"cyfredol darllenwch un ai'r rhestr isod neu cliciwch ar y botwm \"Rhestr "
-"dewis argraffu\"%s\n"
+"dewis argraffu\"%s%s\n"
"\n"
-#: ../../printerdrake.pm_.c:2110
+#: ../../printerdrake.pm_.c:2300
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
@@ -8676,7 +8980,7 @@ msgstr ""
"presennol:\n"
"\n"
-#: ../../printerdrake.pm_.c:2115 ../../printerdrake.pm_.c:2125
+#: ../../printerdrake.pm_.c:2305 ../../printerdrake.pm_.c:2315
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
@@ -8685,8 +8989,8 @@ msgstr ""
"I argraffu ffeil o'r llinell orchymyn (ffenestr terfynnell) defnyddiwch "
"orchymyn \"%s <file>\".\n"
-#: ../../printerdrake.pm_.c:2117 ../../printerdrake.pm_.c:2127
-#: ../../printerdrake.pm_.c:2137
+#: ../../printerdrake.pm_.c:2307 ../../printerdrake.pm_.c:2317
+#: ../../printerdrake.pm_.c:2327
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
@@ -8696,7 +9000,7 @@ msgstr ""
"nifer o raglenni. Ond peidiwch â rhoi'r enw ffeil yma oherwydd bod y ffeil "
"i'w argraffu wedi ei ddarparu gan y rhaglen.\n"
-#: ../../printerdrake.pm_.c:2122 ../../printerdrake.pm_.c:2132
+#: ../../printerdrake.pm_.c:2312 ../../printerdrake.pm_.c:2322
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
@@ -8704,7 +9008,7 @@ msgstr ""
"I edrych ar y rhestr o'r dewisiadau sydd ar gael ar gyfer yr argraffydd "
"cyfredol cliciwch ar fotwm \"Rhestr dewisiadau argraffu\"."
-#: ../../printerdrake.pm_.c:2135
+#: ../../printerdrake.pm_.c:2325
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
@@ -8713,7 +9017,7 @@ msgstr ""
"I argraffu ffeil o'r llinell orchymyn (ffenestr terfynnell) defnyddiwch y "
"gorchymyn \"%s <file>\" or \"%s <file>\".\n"
-#: ../../printerdrake.pm_.c:2139
+#: ../../printerdrake.pm_.c:2329
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -8730,7 +9034,7 @@ msgstr ""
"fydd yn stopio 'r holl waith argraffu'n syth pan fyddwch yn ei glicio. Mae "
"hyn yn ddefnyddiol pan fydd y papur wedi mynd yn sownd, ag ati.\n"
-#: ../../printerdrake.pm_.c:2143
+#: ../../printerdrake.pm_.c:2333
#, c-format
msgid ""
"\n"
@@ -8743,41 +9047,41 @@ msgstr ""
"ar gyfer tasg argraffu penodol. Ychwanegwch y gosodiadau angenrheidiol i'r "
"llinell gorchymyn, e.e \"%s <file>\".\n"
-#: ../../printerdrake.pm_.c:2153
-#, fuzzy, c-format
+#: ../../printerdrake.pm_.c:2343
+#, c-format
msgid "Printing/Scanning/Photo Cards on \"%s\""
-msgstr "Argraffu/Sganio ar \"%s\""
+msgstr "Argraffu/Sganio/Cardiau Llun ar \"%s\""
-#: ../../printerdrake.pm_.c:2154
+#: ../../printerdrake.pm_.c:2344
#, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "Argraffu/Sganio ar \"%s\""
-#: ../../printerdrake.pm_.c:2156
-#, fuzzy, c-format
+#: ../../printerdrake.pm_.c:2346
+#, c-format
msgid "Printing/Photo Card Access on \"%s\""
-msgstr "Argraffu/Sganio ar \"%s\""
+msgstr "Argraffu/Mynediad Cardiau Llun ar \"%s\""
-#: ../../printerdrake.pm_.c:2157
+#: ../../printerdrake.pm_.c:2347
#, c-format
msgid "Printing on the printer \"%s\""
msgstr "Argraffu ar argraffydd \"%s\""
-#: ../../printerdrake.pm_.c:2160 ../../printerdrake.pm_.c:2163
-#: ../../printerdrake.pm_.c:2164 ../../printerdrake.pm_.c:2165
-#: ../../printerdrake.pm_.c:3175 ../../standalone/drakTermServ_.c:248
-#: ../../standalone/drakbackup_.c:1485 ../../standalone/drakbackup_.c:3530
-#: ../../standalone/drakbug_.c:129 ../../standalone/drakfont_.c:705
+#: ../../printerdrake.pm_.c:2350 ../../printerdrake.pm_.c:2353
+#: ../../printerdrake.pm_.c:2354 ../../printerdrake.pm_.c:2355
+#: ../../printerdrake.pm_.c:3400 ../../standalone/drakTermServ_.c:248
+#: ../../standalone/drakbackup_.c:1560 ../../standalone/drakbackup_.c:4208
+#: ../../standalone/drakbug_.c:130 ../../standalone/drakfont_.c:705
#: ../../standalone/drakfont_.c:1014
msgid "Close"
msgstr "Cau"
-#: ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2353
msgid "Print option list"
msgstr "Rhestr ddewis argraffu"
-#: ../../printerdrake.pm_.c:2182
-#, fuzzy, c-format
+#: ../../printerdrake.pm_.c:2373
+#, c-format
msgid ""
"Your multi-function device was configured automatically to be able to scan. "
"Now you can scan with \"scanimage\" (\"scanimage -d hp:%s\" to specify the "
@@ -8794,12 +9098,12 @@ msgstr ""
"bennu pa un os oes gennych fwy nag un) o'r llinell orchymyn neu gyda rhag "
"wynebau graffigol \"xscanimage\" neu \"xsane\". Os ydych yn defnyddio GIMP, "
"medrwch sganio hefyd, drwy ddewis y man priodol yn y ddewislen \"Ffeil\"/"
-"\"Cipio\". Galwch hefyd \"man scanimage\" a \"man sane-hp\" ar y linell "
-"orchymyn i dderbyn mwy o wybodaeth.\n"
+"\"Cipio\". Galwch hefyd \"man scanimage\" ar y linell orchymyn i dderbyn mwy "
+"o wybodaeth.\n"
"\n"
"Peidiwch defnyddio \"scannerdrake\" ar gyfer y ddyfais hon."
-#: ../../printerdrake.pm_.c:2202
+#: ../../printerdrake.pm_.c:2394
msgid ""
"Your printer was configured automatically to give you access to the photo "
"card drives from your PC. Now you can access your photo cards using the "
@@ -8812,17 +9116,17 @@ msgid ""
"of the file lists."
msgstr ""
-#: ../../printerdrake.pm_.c:2223 ../../printerdrake.pm_.c:2673
-#: ../../printerdrake.pm_.c:2945
+#: ../../printerdrake.pm_.c:2416 ../../printerdrake.pm_.c:2875
+#: ../../printerdrake.pm_.c:3170
msgid "Reading printer data..."
msgstr "Darllen data argraffydd..."
-#: ../../printerdrake.pm_.c:2243 ../../printerdrake.pm_.c:2271
-#: ../../printerdrake.pm_.c:2306
+#: ../../printerdrake.pm_.c:2436 ../../printerdrake.pm_.c:2464
+#: ../../printerdrake.pm_.c:2499
msgid "Transfer printer configuration"
msgstr "Trosglwyddo ffurfweddiad yr argraffydd"
-#: ../../printerdrake.pm_.c:2244
+#: ../../printerdrake.pm_.c:2437
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -8837,7 +9141,7 @@ msgstr ""
"cael eu trosi, ond ni fydd y gwaith argraffu'n cael eu trosi.\n"
"Ni fydd yr holl waith argraffu'n cael eu trosi, am y rhesymau canlynol:\n"
-#: ../../printerdrake.pm_.c:2247
+#: ../../printerdrake.pm_.c:2440
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
@@ -8845,18 +9149,18 @@ msgstr ""
"Nid yw CUPS yn cefnogi argraffyddion ar wasanaethwyr Novell neu "
"argraffyddion sy'n anfon data mewn gorchymyn ffurf -rhydd.\n"
-#: ../../printerdrake.pm_.c:2249
+#: ../../printerdrake.pm_.c:2442
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
msgstr ""
"Mae PDQ yn cynnal argraffyddion lleol, LDP pell, a Socket/TCP, yn unig.\n"
-#: ../../printerdrake.pm_.c:2251
+#: ../../printerdrake.pm_.c:2444
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr "Nid yw LPD na LPRng yn cynnal argraffyddion IPP.\n"
-#: ../../printerdrake.pm_.c:2253
+#: ../../printerdrake.pm_.c:2446
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
@@ -8864,7 +9168,7 @@ msgstr ""
"Yn ogystal, nid oes modd trosglwyddo rhesi grewyd gan y rhaglen hon na "
"\"foomatic-configure\"."
-#: ../../printerdrake.pm_.c:2254
+#: ../../printerdrake.pm_.c:2447
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
@@ -8874,7 +9178,7 @@ msgstr ""
"Hefyd nid oes modd trosglwyddo argraffyddion ffurfweddwyd gyda ffeiliau PPD "
"ddarparwyd gan eu gwneuthurwyr na gyrrwyr CUPS brodorol."
-#: ../../printerdrake.pm_.c:2255
+#: ../../printerdrake.pm_.c:2448
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
@@ -8884,15 +9188,15 @@ msgstr ""
"Nodwch yr argraffydd rydych am ei drosglwddo a chliciwch\n"
"\"Trosglwyddo\"."
-#: ../../printerdrake.pm_.c:2258
+#: ../../printerdrake.pm_.c:2451
msgid "Do not transfer printers"
msgstr "Peidio trosglwyddo argraffydd"
-#: ../../printerdrake.pm_.c:2259 ../../printerdrake.pm_.c:2276
+#: ../../printerdrake.pm_.c:2452 ../../printerdrake.pm_.c:2469
msgid "Transfer"
msgstr "Trosglwyddo"
-#: ../../printerdrake.pm_.c:2272
+#: ../../printerdrake.pm_.c:2465
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -8903,12 +9207,12 @@ msgstr ""
"Cliciwch \"Trosglwyddo\" i ysgrifennu drosto.\n"
"Mae modd i chi osod enw newydd arno neu ei hepgor."
-#: ../../printerdrake.pm_.c:2280
+#: ../../printerdrake.pm_.c:2473
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr ""
"Dylai enw'r argraffydd gynnwys llythrennau, rhifau a'r tanlinellu, yn unig"
-#: ../../printerdrake.pm_.c:2285
+#: ../../printerdrake.pm_.c:2478
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
@@ -8917,16 +9221,16 @@ msgstr ""
"Mae argraffydd \"%s\" yn bodoli eisoes,\n"
"ydych chi wir eisiau ailysgrifennu ei ffurfweddiad?"
-#: ../../printerdrake.pm_.c:2293
+#: ../../printerdrake.pm_.c:2486
msgid "New printer name"
msgstr "Enw'r argraffydd newydd"
-#: ../../printerdrake.pm_.c:2296
+#: ../../printerdrake.pm_.c:2489
#, c-format
msgid "Transferring %s..."
msgstr "Trosglwyddo %s..."
-#: ../../printerdrake.pm_.c:2307
+#: ../../printerdrake.pm_.c:2500
#, c-format
msgid ""
"You have transferred your former default printer (\"%s\"), Should it be also "
@@ -8936,29 +9240,29 @@ msgstr ""
"(\"%s\"). A ddylai fod yn argraffydd rhagosodedig y system argraffu newydd %"
"s ?"
-#: ../../printerdrake.pm_.c:2316
+#: ../../printerdrake.pm_.c:2510
msgid "Refreshing printer data..."
msgstr "Adnewyddu data'r argraffydd..."
-#: ../../printerdrake.pm_.c:2324 ../../printerdrake.pm_.c:2395
-#: ../../printerdrake.pm_.c:2407
+#: ../../printerdrake.pm_.c:2518 ../../printerdrake.pm_.c:2590
+#: ../../printerdrake.pm_.c:2602
msgid "Configuration of a remote printer"
msgstr "Ffurfweddiad argraffydd pell"
-#: ../../printerdrake.pm_.c:2325
+#: ../../printerdrake.pm_.c:2519
msgid "Starting network..."
msgstr "Cychwyn y rhwydwaith..."
-#: ../../printerdrake.pm_.c:2359 ../../printerdrake.pm_.c:2363
-#: ../../printerdrake.pm_.c:2365
+#: ../../printerdrake.pm_.c:2554 ../../printerdrake.pm_.c:2558
+#: ../../printerdrake.pm_.c:2560
msgid "Configure the network now"
msgstr "Ffurfweddwch y rhwydwaith"
-#: ../../printerdrake.pm_.c:2360
+#: ../../printerdrake.pm_.c:2555
msgid "Network functionality not configured"
msgstr "Nid yw swyddogaethau'r rhwydwaith wedi ei ffurfweddu"
-#: ../../printerdrake.pm_.c:2361
+#: ../../printerdrake.pm_.c:2556
msgid ""
"You are going to configure a remote printer. This needs working network "
"access, but your network is not configured yet. If you go on without network "
@@ -8970,11 +9274,11 @@ msgstr ""
"fynd ymlaen heb ffurfweddiad rhwydwaith, ni bydd modd i chi ddefnyddio'r "
"argraffydd rydych yn ei ffurfweddu ar hyn o bryd. Beth ydych am ei wneud?"
-#: ../../printerdrake.pm_.c:2364
+#: ../../printerdrake.pm_.c:2559
msgid "Go on without configuring the network"
msgstr "Mynd yn eich blaen heb ffurfweddu'r rhwydwaith"
-#: ../../printerdrake.pm_.c:2397
+#: ../../printerdrake.pm_.c:2592
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -8990,7 +9294,7 @@ msgstr ""
"argraffydd, eto gan ddefnyddio Canolfan Rheoli Mandrake, adran \"Caledwedd\"/"
"\"Argraffydd\""
-#: ../../printerdrake.pm_.c:2398
+#: ../../printerdrake.pm_.c:2593
msgid ""
"The network access was not running and could not be started. Please check "
"your configuration and your hardware. Then try to configure your remote "
@@ -9000,24 +9304,24 @@ msgstr ""
"Gwiriwch eich ffurfweddiad a'ch caledwedd. Yna ceisiwch ail ffurfweddi eich "
"argraffydd."
-#: ../../printerdrake.pm_.c:2408
+#: ../../printerdrake.pm_.c:2603
msgid "Restarting printing system..."
msgstr "Ailgychwyn system argraffu..."
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2641
msgid "high"
msgstr "uchel"
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2641
msgid "paranoid"
msgstr "Paranoia"
-#: ../../printerdrake.pm_.c:2447
+#: ../../printerdrake.pm_.c:2642
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr "Gosod system argraffu yn lefel diogelwch %s"
-#: ../../printerdrake.pm_.c:2448
+#: ../../printerdrake.pm_.c:2643
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -9041,11 +9345,11 @@ msgstr ""
"\n"
"Ydych chi wir eisiau ffurfweddu argraffu ar y peiriant hwn?"
-#: ../../printerdrake.pm_.c:2480
+#: ../../printerdrake.pm_.c:2675
msgid "Starting the printing system at boot time"
msgstr "Cychwyn y system argraffu wrth gychwyn y cyfrifiadur"
-#: ../../printerdrake.pm_.c:2481
+#: ../../printerdrake.pm_.c:2676
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -9067,75 +9371,71 @@ msgstr ""
"\n"
"Ydych chi am i'r cychwyn awtomatig gael ei droi ymlaen eto?"
-#: ../../printerdrake.pm_.c:2504 ../../printerdrake.pm_.c:2544
-#: ../../printerdrake.pm_.c:2581 ../../printerdrake.pm_.c:2621
-#: ../../printerdrake.pm_.c:2733
+#: ../../printerdrake.pm_.c:2700 ../../printerdrake.pm_.c:2741
+#: ../../printerdrake.pm_.c:2780 ../../printerdrake.pm_.c:2822
+#: ../../printerdrake.pm_.c:2943
msgid "Checking installed software..."
msgstr "Gwirio'r meddalwedd sydd wedi ei osod..."
-#: ../../printerdrake.pm_.c:2548
+#: ../../printerdrake.pm_.c:2746
msgid "Removing LPRng..."
msgstr "Tynnu LPRng..."
-#: ../../printerdrake.pm_.c:2585
+#: ../../printerdrake.pm_.c:2785
msgid "Removing LPD..."
msgstr "Tynnu LPD..."
-#: ../../printerdrake.pm_.c:2657
+#: ../../printerdrake.pm_.c:2858
msgid "Select Printer Spooler"
msgstr "Dewiswch Sbwlydd Argraffydd"
-#: ../../printerdrake.pm_.c:2658
+#: ../../printerdrake.pm_.c:2859
msgid "Which printing system (spooler) do you want to use?"
msgstr "Pa system argraffu(sbwlydd) ydych chi am ei ddefnyddio?"
-#: ../../printerdrake.pm_.c:2691
-#, fuzzy, c-format
+#: ../../printerdrake.pm_.c:2895
+#, c-format
msgid "Configuring printer \"%s\"..."
msgstr "Ffurfweddu argraffydd \"%s\" ..."
-#: ../../printerdrake.pm_.c:2704
+#: ../../printerdrake.pm_.c:2909
msgid "Installing Foomatic..."
msgstr "Gosod Foomatic..."
-#: ../../printerdrake.pm_.c:2769 ../../printerdrake.pm_.c:2808
-#: ../../printerdrake.pm_.c:3192 ../../printerdrake.pm_.c:3262
+#: ../../printerdrake.pm_.c:2979 ../../printerdrake.pm_.c:3020
+#: ../../printerdrake.pm_.c:3417 ../../printerdrake.pm_.c:3490
msgid "Printer options"
msgstr "Dewisiadau argraffydd"
-#: ../../printerdrake.pm_.c:2778
-msgid "Preparing PrinterDrake..."
+#: ../../printerdrake.pm_.c:2989
+msgid "Preparing Printerdrake..."
msgstr "Paratoi PrinterDrake..."
-#: ../../printerdrake.pm_.c:2795 ../../printerdrake.pm_.c:3349
+#: ../../printerdrake.pm_.c:3007 ../../printerdrake.pm_.c:3580
msgid "Configuring applications..."
msgstr "Ffurfweddi'u rhaglenni"
-#: ../../printerdrake.pm_.c:2815
+#: ../../printerdrake.pm_.c:3027
msgid "Would you like to configure printing?"
msgstr "Hoffech chi ffurfweddu argraffu?"
-#: ../../printerdrake.pm_.c:2827
+#: ../../printerdrake.pm_.c:3039
msgid "Printing system: "
msgstr "System argraffu."
-#: ../../printerdrake.pm_.c:2875
-msgid "Printerdrake"
-msgstr "Printerdrake"
-
-#: ../../printerdrake.pm_.c:2879
+#: ../../printerdrake.pm_.c:3099
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; to view information about it; "
"or to make a printer on a remote CUPS server available for Star Office/"
-"OpenOffice.org."
+"OpenOffice.org/GIMP."
msgstr ""
"Mae'r argraffyddion canlynol wedi eu ffurfweddu. Cliciwch ar un i newid ei "
"osodiadau; ei wneud yn argraffydd rhagosodedig; i edrych am wybodaeth "
"amdano; neu i wneud argraffydd CUPS pell ar gael ar gyfer Star Office/"
-"OpenOffice.org."
+"OpenOffice.org/GIMP."
-#: ../../printerdrake.pm_.c:2880
+#: ../../printerdrake.pm_.c:3100
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; or to view information about "
@@ -9144,29 +9444,29 @@ msgstr ""
"Mae'r argraffyddion canlynol wedi eu ffurfweddi. Cliciwch ar un i newid ei "
"osodiadau; ei wneud yn argraffydd rhagosodedig; i edrych am wybodaeth amdano."
-#: ../../printerdrake.pm_.c:2906
+#: ../../printerdrake.pm_.c:3127
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr ""
"Adnewyddu rhestr argraffyddion (dangos pob argraffydd CUPS pell sydd ar gael)"
-#: ../../printerdrake.pm_.c:2924
+#: ../../printerdrake.pm_.c:3145
msgid "Change the printing system"
msgstr "Newidiwch y system argraffu"
-#: ../../printerdrake.pm_.c:2929 ../../standalone/drakconnect_.c:277
+#: ../../printerdrake.pm_.c:3150 ../../standalone/drakconnect_.c:277
msgid "Normal Mode"
msgstr "Modd Arferol"
-#: ../../printerdrake.pm_.c:3085 ../../printerdrake.pm_.c:3135
-#: ../../printerdrake.pm_.c:3343
+#: ../../printerdrake.pm_.c:3310 ../../printerdrake.pm_.c:3360
+#: ../../printerdrake.pm_.c:3573
msgid "Do you want to configure another printer?"
msgstr "Ydych chi eisiau ffurfwedu argraffydd arall?"
-#: ../../printerdrake.pm_.c:3170
+#: ../../printerdrake.pm_.c:3395
msgid "Modify printer configuration"
msgstr "Newid ffurfweddiad yr argraffydd"
-#: ../../printerdrake.pm_.c:3172
+#: ../../printerdrake.pm_.c:3397
#, c-format
msgid ""
"Printer %s\n"
@@ -9175,106 +9475,108 @@ msgstr ""
"Argraffydd %s\n"
"Beth ydych am ei newid ar yr argraffydd hwn?"
-#: ../../printerdrake.pm_.c:3176
+#: ../../printerdrake.pm_.c:3401
msgid "Do it!"
msgstr "Gwna!!"
-#: ../../printerdrake.pm_.c:3181 ../../printerdrake.pm_.c:3236
+#: ../../printerdrake.pm_.c:3406 ../../printerdrake.pm_.c:3461
msgid "Printer connection type"
msgstr "Math o gyswllt argraffydd"
-#: ../../printerdrake.pm_.c:3182 ../../printerdrake.pm_.c:3240
+#: ../../printerdrake.pm_.c:3407 ../../printerdrake.pm_.c:3465
msgid "Printer name, description, location"
msgstr "Enw'r argraffydd, disgrifiad, lleoliad"
-#: ../../printerdrake.pm_.c:3184 ../../printerdrake.pm_.c:3255
+#: ../../printerdrake.pm_.c:3409 ../../printerdrake.pm_.c:3483
msgid "Printer manufacturer, model, driver"
msgstr "Gwneuthurwr yr argraffydd, model, gyrrwr"
-#: ../../printerdrake.pm_.c:3185 ../../printerdrake.pm_.c:3256
+#: ../../printerdrake.pm_.c:3410 ../../printerdrake.pm_.c:3484
msgid "Printer manufacturer, model"
msgstr "Gwneuthurwr yr argraffydd, model"
-#: ../../printerdrake.pm_.c:3194 ../../printerdrake.pm_.c:3266
+#: ../../printerdrake.pm_.c:3419 ../../printerdrake.pm_.c:3494
msgid "Set this printer as the default"
msgstr "Gosod yr argraffydd fel y rhagosodedig"
-#: ../../printerdrake.pm_.c:3196 ../../printerdrake.pm_.c:3271
-msgid "Add this printer to Star Office/OpenOffice.org"
-msgstr "Ychwanegwchyr argraffydd hwn i Star Office/OpenOffice.org"
+#: ../../printerdrake.pm_.c:3421 ../../printerdrake.pm_.c:3499
+msgid "Add this printer to Star Office/OpenOffice.org/GIMP"
+msgstr "Ychwanegwchyr argraffydd hwn i Star Office/OpenOffice.org/GIMP"
-#: ../../printerdrake.pm_.c:3197 ../../printerdrake.pm_.c:3280
-msgid "Remove this printer from Star Office/OpenOffice.org"
-msgstr "Tynnwch yr argraffydd hwn o Star Office/OpenOffice.org"
+#: ../../printerdrake.pm_.c:3422 ../../printerdrake.pm_.c:3508
+msgid "Remove this printer from Star Office/OpenOffice.org/GIMP"
+msgstr "Tynnwch yr argraffydd hwn o Star Office/OpenOffice.org/GIMP"
-#: ../../printerdrake.pm_.c:3198 ../../printerdrake.pm_.c:3289
+#: ../../printerdrake.pm_.c:3423 ../../printerdrake.pm_.c:3517
msgid "Print test pages"
msgstr "Argraffu tudalennau prawf"
-#: ../../printerdrake.pm_.c:3199 ../../printerdrake.pm_.c:3291
+#: ../../printerdrake.pm_.c:3424 ../../printerdrake.pm_.c:3519
msgid "Know how to use this printer"
msgstr "Gwybod sut i ddefnyddio'r argraffydd"
-#: ../../printerdrake.pm_.c:3201 ../../printerdrake.pm_.c:3293
+#: ../../printerdrake.pm_.c:3426 ../../printerdrake.pm_.c:3521
msgid "Remove printer"
msgstr "Tynnu argraffydd"
-#: ../../printerdrake.pm_.c:3245
-#, fuzzy, c-format
+#: ../../printerdrake.pm_.c:3472
+#, c-format
msgid "Removing old printer \"%s\"..."
msgstr "Tynnu hen argraffydd \"%s\"..."
-#: ../../printerdrake.pm_.c:3269
+#: ../../printerdrake.pm_.c:3497
msgid "Default printer"
msgstr "Argraffydd rhagosodedig"
-#: ../../printerdrake.pm_.c:3270
+#: ../../printerdrake.pm_.c:3498
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr "Mae argraffydd \"%s\" wedi ei osod fel yr argraffydd rhagosodedig."
-#: ../../printerdrake.pm_.c:3274 ../../printerdrake.pm_.c:3277
-msgid "Adding printer to Star Office/OpenOffice.org"
-msgstr "Ychwanegu argraffydd i Star Office/OpenOffice.org"
+#: ../../printerdrake.pm_.c:3502 ../../printerdrake.pm_.c:3505
+msgid "Adding printer to Star Office/OpenOffice.org/GIMP"
+msgstr "Ychwanegu argraffydd i Star Office/OpenOffice.org/GIMP"
-#: ../../printerdrake.pm_.c:3275
+#: ../../printerdrake.pm_.c:3503
#, c-format
msgid ""
-"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
+"The printer \"%s\" was successfully added to Star Office/OpenOffice.org/GIMP."
msgstr ""
"Mae argraffydd \"%s\" wedi ei ychwanegu'n llwyddiannus i Star Office/"
-"OpenOffice.org."
+"OpenOffice.org/GIMP."
-#: ../../printerdrake.pm_.c:3278
+#: ../../printerdrake.pm_.c:3506
#, c-format
-msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
+msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org/GIMP."
msgstr ""
-"Wedi methu ag ychwanegu argraffydd \"%s\" i Star Office/OpenOffice.org."
+"Wedi methu ag ychwanegu argraffydd \"%s\" i Star Office/OpenOffice.org/GIMP."
-#: ../../printerdrake.pm_.c:3283 ../../printerdrake.pm_.c:3286
-msgid "Removing printer from Star Office/OpenOffice.org"
-msgstr "Tynnu'r argraffydd o Star Office/OpenOffice.org."
+#: ../../printerdrake.pm_.c:3511 ../../printerdrake.pm_.c:3514
+msgid "Removing printer from Star Office/OpenOffice.org/GIMP"
+msgstr "Tynnu'r argraffydd o Star Office/OpenOffice.org/GIMP."
-#: ../../printerdrake.pm_.c:3284
+#: ../../printerdrake.pm_.c:3512
#, c-format
msgid ""
-"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
+"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org/"
+"GIMP."
msgstr ""
"Cafodd argraffydd \"%s\" ei dynnu'n llwyddiannus o Star Office/OpenOffice."
"org."
-#: ../../printerdrake.pm_.c:3287
+#: ../../printerdrake.pm_.c:3515
#, c-format
-msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
-msgstr "Methwyd â thynnu argraffydd \"%s\" o Star Office/OpenOffice.org."
+msgid ""
+"Failed to remove the printer \"%s\" from Star Office/OpenOffice.org/GIMP."
+msgstr "Methwyd â thynnu argraffydd \"%s\" o Star Office/OpenOffice.org/GIMP."
-#: ../../printerdrake.pm_.c:3295
+#: ../../printerdrake.pm_.c:3523
#, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr "Ydych chi wir eisiau tynnu argraffydd \"%s\""
-#: ../../printerdrake.pm_.c:3297
-#, fuzzy, c-format
+#: ../../printerdrake.pm_.c:3527
+#, c-format
msgid "Removing printer \"%s\"..."
msgstr "Tynnu argraffydd \"%s\"..."
@@ -9328,9 +9630,8 @@ msgstr ""
"Gadewch yn wag os nad ydych eisiau dirprwy ftp"
#: ../../proxy.pm_.c:65
-#, fuzzy
msgid "Url should begin with 'ftp:' or 'http:'"
-msgstr "Dylai'r URL ddechrau gyda \"http:\""
+msgstr "Dylai'r URL ddechrau gyda 'ftp' neu 'http:'"
#: ../../proxy.pm_.c:79
msgid ""
@@ -9694,7 +9995,7 @@ msgstr "Rhyngrwyd"
msgid "File sharing"
msgstr "Rhannu Ffeiliau"
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1669
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1744
msgid "System"
msgstr "System"
@@ -9745,15 +10046,15 @@ msgstr "Cychwyn"
msgid "Stop"
msgstr "Aros"
-#: ../../share/advertising/00-thanks.pl_.c:9
-msgid "Thank you for choosing Mandrake Linux 8.2"
-msgstr "Diolch am ddewis Mandrake Linux 8.2"
+#: ../../share/advertising/01-thanks.pl_.c:9
+msgid "Thank you for choosing Mandrake Linux 9.0"
+msgstr "Diolch am ddewis Mandrake Linux 9.0"
-#: ../../share/advertising/00-thanks.pl_.c:10
+#: ../../share/advertising/01-thanks.pl_.c:10
msgid "Welcome to the Open Source world"
msgstr "Croeso i fyd Cod Agored"
-#: ../../share/advertising/00-thanks.pl_.c:11
+#: ../../share/advertising/01-thanks.pl_.c:11
msgid ""
"The success of MandrakeSoft is based upon the principle of Free Software. "
"Your new operating system is the result of collaborative work on the part of "
@@ -9763,228 +10064,258 @@ msgstr ""
"eich system weithredu newydd yn ganlyniad gwaith cydweithredol ar ran y "
"Gymuned Linux byd-eang"
-#: ../../share/advertising/01-gnu.pl_.c:9
-msgid "Join the Free Software world"
+#: ../../share/advertising/02-community.pl_.c:9
+#, fuzzy
+msgid "Get involved in the Free Software world"
msgstr "Ymunwch â byd Meddalwedd Rhydd"
-#: ../../share/advertising/01-gnu.pl_.c:10
+#: ../../share/advertising/02-community.pl_.c:10
+msgid "Want to know more about the Open Source community?"
+msgstr ""
+
+#: ../../share/advertising/02-community.pl_.c:11
msgid ""
-"Get to know the Open Source community and become a member. Learn, teach, and "
-"help others by joining the many discussion forums that you will find in our "
-"\"Community\" webpages"
+"To share your own knowledge and help build Linux tools, join the discussions "
+"forum you'll find on our \"Community\" webpages"
msgstr ""
"Dewch i adnabod y gymuned Cod Agored a dewch yn aelod. Dysgwch, addysgwch a "
"chynorthwywch eraill drwy ymuno yn y grwpiau trafod niferus sydd i'w cael yn "
"ein tudalennau gwe \"Cymuned\""
-#: ../../share/advertising/02-internet.pl_.c:9
-msgid "Internet and Messaging"
-msgstr "Y Rhygnrwyd a Negesu"
+#: ../../share/advertising/03-internet.pl_.c:9
+#, fuzzy
+msgid "Get the most from the Internet"
+msgstr "Cysylltu â'r We"
-#: ../../share/advertising/02-internet.pl_.c:10
+#: ../../share/advertising/03-internet.pl_.c:10
+#, fuzzy
msgid ""
-"Mandrake Linux 8.2 provides the best software to access everything the "
-"Internet has to offer: Surf the web & view animations with Mozilla and "
-"Konqueror, exchange email & organize your personal information with "
-"Evolution and Kmail, and much more"
+"Mandrake Linux 9.0 has selected the best software for you. Surf the Web and "
+"view animations with Mozilla and Konqueror, or read your mail and handle "
+"your personal information with Evolution and Kmail"
msgstr ""
"Mae Mandrake Linux 8.2 yn cynnig y feddalwedd orau i gael mynediad i bopeth "
"sydd gan y Rhyngrwyd i'w gynnig. Syrffiwch y we a gwyliwch animeddiadau gyda "
"Mozilla a Konqueror, cyfnewidiwch e-bost a threfnu eich gwybodaeth gyda "
"Evolution a Kmail, a llawr iawn rhagor. "
-#: ../../share/advertising/03-graphic.pl_.c:9
-msgid "Multimedia and Graphics"
-msgstr "Amlgyfrwng a Graffigau"
+#: ../../share/advertising/04-multimedia.pl_.c:9
+msgid "Discover the most up-to-date graphics and multimedia tools!"
+msgstr ""
-#: ../../share/advertising/03-graphic.pl_.c:10
+#: ../../share/advertising/04-multimedia.pl_.c:10
+msgid "Push multimedia to its limits!"
+msgstr ""
+
+#: ../../share/advertising/04-multimedia.pl_.c:11
+#, fuzzy
msgid ""
-"Mandrake Linux 8.2 lets you push your multimedia computer to its limits! Use "
-"the latest software to play music and audio files, edit and organize your "
-"images and photos, watch TV and videos, and much more"
+"Mandrake Linux 9.0 enables you to use the very latest software to play audio "
+"files, edit and handle your images or photos, and play videos"
msgstr ""
"Mae Mandrake Linux 8.2 yn caniatáu i chi wthio eich cyfrifiadur aml-gyfrwng "
"i'r eithaf! Defnyddiwch y feddalwedd ddiweddaraf i chwarae ffeiliau "
"cerddoriaeth a sain, golygu a threfnu eich delweddau a lluniau, gwylio "
"teledu a fideo, a llawer iawn mwy"
-#: ../../share/advertising/04-develop.pl_.c:9
-msgid "Development"
-msgstr "Datblygiad"
+#: ../../share/advertising/05-games.pl_.c:9
+msgid "Games"
+msgstr "Gemau"
-#: ../../share/advertising/04-develop.pl_.c:10
+#: ../../share/advertising/05-games.pl_.c:10
+#, fuzzy
msgid ""
-"Mandrake Linux 8.2 is the ultimate development platform. Discover the power "
-"of the GNU gcc compiler as well as the best Open Source development "
-"environments"
+"Mandrake Linux 9.0 provides the best Open Source games - arcade, action, "
+"cards, sports, strategy..."
msgstr ""
-"Mandrake Linux 8.2 yw'r platfform datblygu gorau. Darganfyddwch rym grynhowr "
-"gcc GNU yn ogystal ag amgylcheddau datblygiadol Cod Agored gorau oll"
+"Mae Mandrake Linux 8.2 yn darparu'r gemau Cod Agored gorau - arcêd, antur, "
+"cardiau, chwaraeon, strategaeth..."
-#: ../../share/advertising/05-contcenter.pl_.c:9
-#: ../../standalone/drakbug_.c:69
+#: ../../share/advertising/06-mcc.pl_.c:9 ../../standalone/drakbug_.c:69
msgid "Mandrake Control Center"
msgstr "Canolfan Rheoli Mandrake"
-#: ../../share/advertising/05-contcenter.pl_.c:10
+#: ../../share/advertising/06-mcc.pl_.c:10
+#, fuzzy
msgid ""
-"The Mandrake Linux 8.2 Control Center is a one-stop location for fully "
-"customizing and configuring your Mandrake system"
+"Mandrake Linux 9.0 provides a powerful tool to fully customize and configure "
+"your machine"
msgstr ""
"Canolfan Rheoli Mandrake Linux 8.2 yw'r lleoliad canolog ar gyfer llunio a "
"ffurfio eich system Mandrake"
-#: ../../share/advertising/06-user.pl_.c:9
+#: ../../share/advertising/07-desktop.pl_.c:9
msgid "User interfaces"
msgstr "Rhyngwynebau defnyddwyr"
-#: ../../share/advertising/06-user.pl_.c:10
+#: ../../share/advertising/07-desktop.pl_.c:10
+msgid ""
+"Mandrake Linux 9.0 provides 11 user interfaces which can be fully modified: "
+"KDE 3, Gnome 2, WindowMaker..."
+msgstr ""
+
+#: ../../share/advertising/08-development.pl_.c:9
+#, fuzzy
+msgid "Development simplified"
+msgstr "Datblygiad"
+
+#: ../../share/advertising/08-development.pl_.c:10
+msgid "Mandrake Linux 9.0 is the ultimate development platform"
+msgstr ""
+
+#: ../../share/advertising/08-development.pl_.c:11
+#, fuzzy
msgid ""
-"Mandrake Linux 8.2 provides 11 different graphical desktop environments and "
-"window managers to choose from including GNOME 1.4, KDE 2.2.2, Window Maker "
-"0.8, and the rest"
+"Use the full power of the GNU gcc 3 compiler as well as the best Open Source "
+"development environments"
msgstr ""
-"Mae Mandrake Linux 8.2 yn darparu 11 amgylchedd penbwrdd graffigol a "
-"rheolwyr ffenestri gwahanol i ddewis ohonynt gan gynnwys Gnome 1.4, KDE "
-"2.2.2., Window Maker 0.8, a'r gweddill"
+"Mandrake Linux 8.2 yw'r platfform datblygu gorau. Darganfyddwch rym grynhowr "
+"gcc GNU yn ogystal ag amgylcheddau datblygiadol Cod Agored gorau oll"
-#: ../../share/advertising/07-server.pl_.c:9
-msgid "Server Software"
-msgstr "Meddalwedd Gwasanethwyr"
+#: ../../share/advertising/09-server.pl_.c:9
+msgid "Turn your machine into a reliable server"
+msgstr ""
-#: ../../share/advertising/07-server.pl_.c:10
+#: ../../share/advertising/09-server.pl_.c:10
+#, fuzzy
msgid ""
-"Transform your machine into a powerful server with just a few clicks of the "
-"mouse: Web server, email, firewall, router, file and print server, ..."
+"Transform your machine into a powerful server in a few clicks of your mouse: "
+"Web server, mail, firewall, router, file and print server..."
msgstr ""
"Trowch eich peiriant i fod yn wasanaethwr pwerus gydag ychydig gliciau ar "
"eich llygoden: gwasanaethwyr gwe, e-bost, mur gwarchod, llwybrydd, "
"gwasanaethwr ffeil ac argraffu..."
-#: ../../share/advertising/08-games.pl_.c:9
-msgid "Games"
-msgstr "Gemau"
+#: ../../share/advertising/10-mnf.pl_.c:9
+msgid "Optimize your security"
+msgstr ""
-#: ../../share/advertising/08-games.pl_.c:10
+#: ../../share/advertising/10-mnf.pl_.c:10
msgid ""
-"Mandrake Linux 8.2 provides the best Open Source games - arcade, action, "
-"cards, sports, strategy, ..."
+"The MandrakeSecurity range includes the Multi Network Firewall product (M.N."
+"F.)"
msgstr ""
-"Mae Mandrake Linux 8.2 yn darparu'r gemau Cod Agored gorau - arcêd, antur, "
-"cardiau, chwaraeon, strategaeth..."
-#: ../../share/advertising/09-MDKcampus.pl_.c:9
-msgid "MandrakeCampus"
-msgstr "MandrakeCampus"
+#: ../../share/advertising/10-mnf.pl_.c:11
+msgid ""
+"This firewall product includes network features which allow you to fulfill "
+"all your security needs"
+msgstr ""
-#: ../../share/advertising/09-MDKcampus.pl_.c:10
+#: ../../share/advertising/10-mnf.pl_.c:12
+msgid "This product is available on MandrakeStore website"
+msgstr ""
+
+#: ../../share/advertising/11-mdkstore.pl_.c:9
+msgid "The official MandrakeSoft store"
+msgstr ""
+
+#: ../../share/advertising/11-mdkstore.pl_.c:10
+#, fuzzy
msgid ""
-"Would you like to learn Linux simply, quickly, and for free? MandrakeSoft "
-"provides free Linux training, as well as a way to test your progress, at "
-"MandrakeCampus -- our online training center"
+"Our full range of Linux solutions, as well as special offers on products and "
+"'goodies', are available online at our e-store"
msgstr ""
-"Hoffech chi ddysgu Linux yn syml, yn gyflym, ac am ddim? Mae MandrakeSoft yn "
-"darparu hyfforddiant ar Linux, yn ogystal â ffordd i fesur eich cynnydd, yn "
-"MandrakeCampus - ein canolfan hyfforddiant ar-lein"
+"Mae amrediad eang o ddarpariaeth Linux, yn ogystal â chynigion arbennig ar "
+"gynnyrch a 'difyrrwch', ar gael ar-lein yn ein e-siop"
-#: ../../share/advertising/10-MDKexpert.pl_.c:9
-msgid "MandrakeExpert"
-msgstr "MandrakeExpert"
+#: ../../share/advertising/12-mdkstore.pl_.c:9
+msgid "Strategic partners"
+msgstr ""
-#: ../../share/advertising/10-MDKexpert.pl_.c:10
+#: ../../share/advertising/12-mdkstore.pl_.c:10
msgid ""
-"Quality support from the Linux Community, and from MandrakeSoft, is just "
-"around the corner. And if you're already a Linux veteran, become an \"Expert"
-"\" and share your knowledge at our support website"
+"MandrakeSoft works alongside a selection of companies offering professional "
+"solutions compatible with Mandrake Linux; a list of these partners is "
+"available on the MandrakeStore"
msgstr ""
-"Mae cefnogaeth werthfawr gan Gymuned Linux, a chan MandrakeSoft i'w gael yn "
-"hwylus. Ac os ydych yn hen law ar Linux, cewch fod yn \"Arbenigwr\" a rhannu "
-"eich gwybodaeth ar ein safle cefnogi"
-#: ../../share/advertising/11-consul.pl_.c:9
-msgid "MandrakeConsulting"
-msgstr "MandrakeConsulting"
+#: ../../share/advertising/13-mdkcampus.pl_.c:9
+msgid "Discover MandrakeSoft's training catalogue Linux-Campus"
+msgstr ""
-#: ../../share/advertising/11-consul.pl_.c:10
+#: ../../share/advertising/13-mdkcampus.pl_.c:10
msgid ""
-"For all of your IT projects, our consultants are ready to analyze your "
-"requirements and offer a customized solution. Benefit from MandrakeSoft's "
-"vast experience as a Linux producer to provide a true IT alternative for "
-"your business organization"
+"The training program has been create to respond to the needs of both users "
+"and experts (Network and System administrations)"
msgstr ""
-"Ar gyfer eich holl brojectau TG, mae ein hymgynghorwyr ar gael i ddadansoddi "
-"eich anghenion a chynnig atebion unigryw i chi. Medrwch fanteisio ar brofiad "
-"eang MandrakeSoft fel cynhyrchydd Linux i ddarparu ateb TG gwell i'ch busnes."
-#: ../../share/advertising/12-MDKstore.pl_.c:9
-msgid "MandrakeStore"
-msgstr "MandrakeStore"
+#: ../../share/advertising/13-mdkcampus.pl_.c:11
+msgid "Certify yourself on Linux"
+msgstr ""
-#: ../../share/advertising/12-MDKstore.pl_.c:10
+#: ../../share/advertising/13-mdkcampus.pl_.c:12
msgid ""
-"A full range of Linux solutions, as well as special offers on products and "
-"'goodies', are available online at our e-store"
+"Whether you choose to teach yourself online or via our network of training "
+"partners, the Linux-Campus catalogue prepares you for the acknowledged LPI "
+"certification program (worldwide professional technical certification)"
+msgstr ""
+
+#: ../../share/advertising/14-mdkexpert.pl_.c:9
+#, fuzzy
+msgid "Become a MandrakeExpert"
+msgstr "MandrakeExpert"
+
+#: ../../share/advertising/14-mdkexpert.pl_.c:10
+msgid ""
+"Find the solutions to your problems via MandrakeSoft's online support "
+"platform"
msgstr ""
-"Mae amrediad eang o ddarpariaeth Linux, yn ogystal â chynigion arbennig ar "
-"gynnyrch a 'difyrrwch', ar gael ar-lein yn ein e-siop"
-#: ../../share/advertising/13-Nvert.pl_.c:9
+#: ../../share/advertising/14-mdkexpert.pl_.c:11
msgid ""
-"For more information on MandrakeSoft's Professional Services and commercial "
-"offerings, please see the following web page:"
+"Join the MandrakeSoft support teams and the Linux Community online to share "
+"your knowledge and help others by becoming a recognized Expert on the online "
+"technical support website:"
msgstr ""
-"Am ragor o wybodaeth ar Wasanaethau Profesiynol a chynigion masnachol "
-"MandrakeSoft, gwelwch y dudalen we ganlynol:"
-#: ../../share/advertising/13-Nvert.pl_.c:11
-msgid "http://www.mandrakesoft.com/sales/contact"
-msgstr "http://www.mandrakesoft.com/sales/contact"
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:9
+#, fuzzy
+msgid "MandrakeExpert Corporate"
+msgstr "MandrakeExpert"
+
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:10
+msgid "An online platform to respond to company's specific support needs"
+msgstr ""
+
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:11
+msgid ""
+"All incidents will be followed up by a single qualified MandrakeSoft "
+"technical expert."
+msgstr ""
-#: ../../standalone.pm_.c:40
+#: ../../standalone.pm_.c:41
msgid "Installing packages..."
msgstr "Gosod pecynnau..."
-#: ../../standalone/XFdrake_.c:143
+#: ../../standalone/XFdrake_.c:145
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "Allgofnodwch ac yna defnyddiwch Ctrl Alt-BackSpace"
-#: ../../standalone/XFdrake_.c:147
+#: ../../standalone/XFdrake_.c:149
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "Ail fewn gofnodwch i %s i wireddu'r newidiadau"
-#: ../../standalone/diskdrake_.c:81
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I'll try to go on blanking bad partitions"
-msgstr ""
-"Methu darllen eich tabl rhaniadau. Mae'n rhy lwgr i mi :[\n"
-"Af ymlaen i flancio rhaniadau gwael"
-
#: ../../standalone/drakTermServ_.c:188
-#, fuzzy
msgid "Mandrake Terminal Server Configuration"
-msgstr "Trosglwyddo ffurfweddiad yr argraffydd"
+msgstr "Ffurfweddiad Gwasanaethwr Terfynell Mandrake"
#: ../../standalone/drakTermServ_.c:203
-#, fuzzy
msgid "Enable Server"
-msgstr "Gwasanaethwr Cronfa Ddata"
+msgstr "Galluogi'r Gwasanaethwr"
#: ../../standalone/drakTermServ_.c:210
-#, fuzzy
msgid "Disable Server"
-msgstr "Gwasanaethwr Cronfa Ddata"
+msgstr "Analluogi'r Gwasanaethwr"
#: ../../standalone/drakTermServ_.c:218
-#, fuzzy
msgid "Start Server"
-msgstr "Gwasanaethwr NIS"
+msgstr "Cychwyn y Gwasanaethwr"
#: ../../standalone/drakTermServ_.c:225
-#, fuzzy
msgid "Stop Server"
-msgstr "Gwasanaethwr NIS"
+msgstr "Atal y Gwasanaethwr"
#: ../../standalone/drakTermServ_.c:233
msgid "Etherboot Floppy/ISO"
@@ -9995,21 +10326,20 @@ msgid "Net Boot Images"
msgstr ""
#: ../../standalone/drakTermServ_.c:239
-#, fuzzy
msgid "Add/Del Users"
-msgstr "Ychwanegu defnyddiwr"
+msgstr "Ychwanegu/Diddymu Defnyddwyr"
#: ../../standalone/drakTermServ_.c:241
-#, fuzzy
msgid "Add/Del Clients"
-msgstr "Cleient DHCP"
-
-#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3282
-#: ../../standalone/drakbackup_.c:3315 ../../standalone/drakbackup_.c:3341
-#: ../../standalone/drakbackup_.c:3368 ../../standalone/drakbackup_.c:3395
-#: ../../standalone/drakbackup_.c:3434 ../../standalone/drakbackup_.c:3455
-#: ../../standalone/drakbackup_.c:3482 ../../standalone/drakbackup_.c:3508
-#: ../../standalone/drakbackup_.c:3533 ../../standalone/drakfont_.c:700
+msgstr "Ychwanegu/Dileu Cleientiaid"
+
+#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3930
+#: ../../standalone/drakbackup_.c:3963 ../../standalone/drakbackup_.c:3989
+#: ../../standalone/drakbackup_.c:4016 ../../standalone/drakbackup_.c:4043
+#: ../../standalone/drakbackup_.c:4082 ../../standalone/drakbackup_.c:4103
+#: ../../standalone/drakbackup_.c:4130 ../../standalone/drakbackup_.c:4160
+#: ../../standalone/drakbackup_.c:4186 ../../standalone/drakbackup_.c:4211
+#: ../../standalone/drakfont_.c:700
msgid "Help"
msgstr "Cymorth"
@@ -10038,28 +10368,24 @@ msgid "Build Single NIC -->"
msgstr ""
#: ../../standalone/drakTermServ_.c:535
-#, fuzzy
msgid "No nic selected!"
-msgstr "Heb gysylltu"
+msgstr "Heb ddewis nic"
#: ../../standalone/drakTermServ_.c:538
msgid "Build All Kernels -->"
msgstr ""
#: ../../standalone/drakTermServ_.c:552
-#, fuzzy
msgid "<-- Delete"
-msgstr "Dileu"
+msgstr "<-- Dileu"
#: ../../standalone/drakTermServ_.c:559
-#, fuzzy
msgid "Delete All NBIs"
-msgstr "Dewis Popeth"
+msgstr "Dileu Pob NBI"
#: ../../standalone/drakTermServ_.c:621
-#, fuzzy
msgid "Add User -->"
-msgstr "Ychwanegu defnyddiwr"
+msgstr "Pob Defnyddiwr-->"
#: ../../standalone/drakTermServ_.c:629
msgid "<-- Del User"
@@ -10070,24 +10396,20 @@ msgid "Add Client -->"
msgstr ""
#: ../../standalone/drakTermServ_.c:735
-#, fuzzy
msgid "<-- Del Client"
-msgstr "Cleient DHCP"
+msgstr "<--Diddymu Cleient"
#: ../../standalone/drakTermServ_.c:741
-#, fuzzy
msgid "dhcpd Config..."
-msgstr "Ffurfweddu..."
+msgstr "Ffurfweddu dhcpd..."
#: ../../standalone/drakTermServ_.c:888
-#, fuzzy
msgid "Write Config"
-msgstr "ailffurfweddu"
+msgstr "Ysgrifenu ffurfweddu"
#: ../../standalone/drakTermServ_.c:946
-#, fuzzy
msgid "Please insert floppy disk:"
-msgstr "Mewnosodwch y disg meddal Cychwyn ddefnyddiwyd yn gyrrwr %s"
+msgstr "Mewnosodwch ddisg meddal:"
#: ../../standalone/drakTermServ_.c:950
msgid "Couldn't access the floppy!"
@@ -10098,9 +10420,8 @@ msgid "Floppy can be removed now"
msgstr ""
#: ../../standalone/drakTermServ_.c:955
-#, fuzzy
msgid "No floppy drive available!"
-msgstr "Does dim gyrrwr disg meddal ar gael"
+msgstr "Does dim gyrrwr disg meddal ar gael!"
#: ../../standalone/drakTermServ_.c:964
#, c-format
@@ -10165,7 +10486,6 @@ msgstr ""
"fydd gyda llaw"
#: ../../standalone/drakautoinst_.c:81 ../../standalone/drakautoinst_.c:82
-#, fuzzy
msgid "Creating auto install floppy"
msgstr "Creu disg meddal awto gosod"
@@ -10181,8 +10501,8 @@ msgstr ""
"\n"
"Mae paramedrau'r awto osod i'w cael yn yr adran ar y chwith"
-#: ../../standalone/drakautoinst_.c:239 ../../standalone/drakgw_.c:548
-#: ../../standalone/scannerdrake_.c:105
+#: ../../standalone/drakautoinst_.c:239 ../../standalone/drakgw_.c:484
+#: ../../standalone/scannerdrake_.c:119
msgid "Congratulations!"
msgstr "Llongyfarchiadau!"
@@ -10206,20 +10526,23 @@ msgstr "Ychwanegu eitem"
msgid "Remove the last item"
msgstr "Tynnu'r eitem olaf"
-#: ../../standalone/drakbackup_.c:625
+#: ../../standalone/drakbackup_.c:619
msgid "Cron not available yet as non-root"
msgstr ""
-#: ../../standalone/drakbackup_.c:731
+#: ../../standalone/drakbackup_.c:725
msgid "WARNING"
msgstr ""
-#: ../../standalone/drakbackup_.c:732
-#, fuzzy
+#: ../../standalone/drakbackup_.c:726
msgid "FATAL"
-msgstr "FAT"
+msgstr "TERFYNNOL"
-#: ../../standalone/drakbackup_.c:744
+#: ../../standalone/drakbackup_.c:727
+msgid "INFO"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:739
msgid ""
"\n"
" DrakBackup Report \n"
@@ -10229,7 +10552,7 @@ msgstr ""
" Adroddiad DrakBackup \n"
"\n"
-#: ../../standalone/drakbackup_.c:745
+#: ../../standalone/drakbackup_.c:740
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -10241,7 +10564,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:749
+#: ../../standalone/drakbackup_.c:744
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -10253,13 +10576,19 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:770 ../../standalone/drakbackup_.c:840
-#: ../../standalone/drakbackup_.c:894
-#, fuzzy
+#: ../../standalone/drakbackup_.c:765 ../../standalone/drakbackup_.c:835
+#: ../../standalone/drakbackup_.c:889
msgid "Total progess"
-msgstr "cyfanswm y cynnydd"
+msgstr "Cyfanswm y cynnydd"
+
+#: ../../standalone/drakbackup_.c:788
+msgid ""
+"Sorry, perl-Expect is not installed/enabled. To use\n"
+"this feature, install perl-Expect and comment lines 772-774,\n"
+" as well as 788,789. Then uncomment line 787."
+msgstr ""
-#: ../../standalone/drakbackup_.c:822
+#: ../../standalone/drakbackup_.c:817
#, c-format
msgid ""
"%s exists, delete?\n"
@@ -10268,16 +10597,41 @@ msgid ""
" need to purge the entry from authorized_keys on the server."
msgstr ""
-#: ../../standalone/drakbackup_.c:831
+#: ../../standalone/drakbackup_.c:826
msgid "This may take a moment to generate the keys."
msgstr ""
-#: ../../standalone/drakbackup_.c:838
+#: ../../standalone/drakbackup_.c:833
#, c-format
msgid "ERROR: Cannot spawn %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:865
+#: ../../standalone/drakbackup_.c:850
+#, c-format
+msgid "No password prompt on %s at port %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:851
+#, fuzzy, c-format
+msgid "Bad password on %s"
+msgstr "Dim cyfrinair"
+
+#: ../../standalone/drakbackup_.c:852
+#, c-format
+msgid "Permission denied transferring %s to %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:853
+#, c-format
+msgid "Can't find %s on %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:856
+#, c-format
+msgid "%s not responding"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:860
#, c-format
msgid ""
"Transfer successful\n"
@@ -10288,60 +10642,64 @@ msgid ""
"without being prompted for a password."
msgstr ""
-#: ../../standalone/drakbackup_.c:908
+#: ../../standalone/drakbackup_.c:903
msgid "WebDAV remote site already in sync!"
msgstr ""
-#: ../../standalone/drakbackup_.c:912
+#: ../../standalone/drakbackup_.c:907
msgid "WebDAV transfer failed!"
msgstr ""
-#: ../../standalone/drakbackup_.c:934
+#: ../../standalone/drakbackup_.c:928
msgid "No CDR/DVDR in drive!"
msgstr ""
-#: ../../standalone/drakbackup_.c:938
+#: ../../standalone/drakbackup_.c:932
msgid "Does not appear to be recordable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:942
+#: ../../standalone/drakbackup_.c:936
msgid "Not erasable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:981
+#: ../../standalone/drakbackup_.c:975
msgid "This may take a moment to erase the media."
msgstr ""
-#: ../../standalone/drakbackup_.c:1045
+#: ../../standalone/drakbackup_.c:1060
msgid "Permission problem accessing CD."
msgstr ""
-#: ../../standalone/drakbackup_.c:1144 ../../standalone/drakbackup_.c:1193
+#: ../../standalone/drakbackup_.c:1087
+#, c-format
+msgid "No tape in %s!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1199 ../../standalone/drakbackup_.c:1248
msgid "Backup system files..."
msgstr "Ffeiliau system wrth gefn"
-#: ../../standalone/drakbackup_.c:1194 ../../standalone/drakbackup_.c:1261
+#: ../../standalone/drakbackup_.c:1249 ../../standalone/drakbackup_.c:1316
msgid "Hard Disk Backup files..."
msgstr "Ffeiliau cadw wrth gefn y Disg Caled"
-#: ../../standalone/drakbackup_.c:1206
+#: ../../standalone/drakbackup_.c:1261
msgid "Backup User files..."
msgstr "Ffeiliau Defnyddiwr Cadw wrth Gefn..."
-#: ../../standalone/drakbackup_.c:1207
+#: ../../standalone/drakbackup_.c:1262
msgid "Hard Disk Backup Progress..."
msgstr "Cynnydd Disg Caled wrth Gefn..."
-#: ../../standalone/drakbackup_.c:1260
+#: ../../standalone/drakbackup_.c:1315
msgid "Backup Other files..."
msgstr "Cadw wrth gefn ffeiliau eraill..."
-#: ../../standalone/drakbackup_.c:1266
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1321
msgid "No changes to backup!"
-msgstr "Defnyddiwch dâp i gadw wrth gefn"
+msgstr "Dim newid i'r ffeil wrth gefn"
-#: ../../standalone/drakbackup_.c:1282 ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1337 ../../standalone/drakbackup_.c:1360
#, c-format
msgid ""
"\n"
@@ -10349,59 +10707,57 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1289
-#, fuzzy, c-format
+#: ../../standalone/drakbackup_.c:1344
+#, c-format
msgid ""
-"file list sent by FTP : %s\n"
+"file list sent by FTP: %s\n"
" "
msgstr ""
"rhestr ffeil yrrwyd gan FTP: %s\n"
" "
-#: ../../standalone/drakbackup_.c:1292
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1347
msgid ""
"\n"
" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
"\n"
-"(!) anhawster cysylltiad FTP: Nid oedd yn bosibl anfon eich ffeiliau wrth "
-"gefn drwy FTP.\n"
+" Anhawster cysylltiad FTP: Nid oedd yn bosibl anfon eich ffeiliau wrth gefn "
+"drwy FTP.\n"
-#: ../../standalone/drakbackup_.c:1310
+#: ../../standalone/drakbackup_.c:1365
msgid ""
"\n"
"Drakbackup activities via CD:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1315
+#: ../../standalone/drakbackup_.c:1370
msgid ""
"\n"
"Drakbackup activities via tape:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1324
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1379
msgid " Error during mail sending. \n"
-msgstr "(!) Gwall wrth anfon e-bost. \n"
+msgstr " Gwall wrth anfon e-bost. \n"
-#: ../../standalone/drakbackup_.c:1346
+#: ../../standalone/drakbackup_.c:1404
msgid "Can't create catalog!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1459 ../../standalone/drakbackup_.c:1470
-#: ../../standalone/drakbackup_.c:1481 ../../standalone/drakfont_.c:1004
+#: ../../standalone/drakbackup_.c:1517 ../../standalone/drakbackup_.c:1528
+#: ../../standalone/drakfont_.c:1004
msgid "File Selection"
msgstr "Dewis ffeiliau"
-#: ../../standalone/drakbackup_.c:1486
+#: ../../standalone/drakbackup_.c:1556
msgid "Select the files or directories and click on 'Add'"
msgstr "Dewiswch y ffeiliau neu gyfeiriaduron a chliciwch 'Ychwanegu'"
-#: ../../standalone/drakbackup_.c:1525
+#: ../../standalone/drakbackup_.c:1600
msgid ""
"\n"
"Please check all options that you need.\n"
@@ -10409,27 +10765,26 @@ msgstr ""
"\n"
"Gwiriwch pob dewis sydd angen arnoch.\n"
-#: ../../standalone/drakbackup_.c:1526
+#: ../../standalone/drakbackup_.c:1601
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
"Mae'r dewisiadau hyn yn medru cadw wrth gefn ac adfer pob ffeil yn eich "
"cyfeiriadur /etc.\n"
-#: ../../standalone/drakbackup_.c:1527
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1602
msgid "Backup your System files. (/etc directory)"
msgstr "Cadw wrth gefn ffeiliau System. ( cyfeiriadur /etc )"
-#: ../../standalone/drakbackup_.c:1528
+#: ../../standalone/drakbackup_.c:1603
msgid "Use incremental backup (do not replace old backups)"
msgstr "Cadw wrth gefn cynyddol (peidio disodli hen ffeiliau wrth gefn)"
-#: ../../standalone/drakbackup_.c:1529
+#: ../../standalone/drakbackup_.c:1604
msgid "Do not include critical files (passwd, group, fstab)"
msgstr "Peidio cynnwys ffeiliau hanfodol (passwd, group, fstab)"
-#: ../../standalone/drakbackup_.c:1530
+#: ../../standalone/drakbackup_.c:1605
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
@@ -10437,131 +10792,128 @@ msgstr ""
"Gyda'e dewis hwn medrwch adfer unrhyw fersiwn\n"
"o'ch cyfeiriadur /etc."
-#: ../../standalone/drakbackup_.c:1547
+#: ../../standalone/drakbackup_.c:1622
msgid "Please check all users that you want to include in your backup."
msgstr "Gwiriwch pob defnyddiwr rydych am eu cynnwys yn eich cadw wrth gefn."
-#: ../../standalone/drakbackup_.c:1574
+#: ../../standalone/drakbackup_.c:1649
msgid "Do not include the browser cache"
msgstr "Peidio cynnwys storfa'r porwr"
-#: ../../standalone/drakbackup_.c:1575 ../../standalone/drakbackup_.c:1599
+#: ../../standalone/drakbackup_.c:1650 ../../standalone/drakbackup_.c:1674
msgid "Use Incremental Backups (do not replace old backups)"
msgstr "Defnyddio Cadw wrth Gefn Cynyddol (peidio disodli hen gadw wrth gefn)"
-#: ../../standalone/drakbackup_.c:1597 ../../standalone/drakfont_.c:1058
+#: ../../standalone/drakbackup_.c:1672 ../../standalone/drakfont_.c:1058
msgid "Remove Selected"
msgstr "Tynnu'r Dewis"
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:1710
msgid "Windows (FAT32)"
msgstr "Windows (FAT32)"
-#: ../../standalone/drakbackup_.c:1674
+#: ../../standalone/drakbackup_.c:1749
msgid "Users"
msgstr "Defnyddwyr"
-#: ../../standalone/drakbackup_.c:1700
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1775
msgid "Use network connection to backup"
-msgstr "Defnyddiwch cysylltiad FTP i gadw wrth gefn"
+msgstr "Defnyddiwch cysylltiad rhwydwaith i gadw wrth gefn"
+
+#: ../../standalone/drakbackup_.c:1777
+msgid "Net Method:"
+msgstr ""
-#: ../../standalone/drakbackup_.c:1706
+#: ../../standalone/drakbackup_.c:1781
msgid "Use Expect for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1707
+#: ../../standalone/drakbackup_.c:1782
msgid ""
"Create/Transfer\n"
"backup keys for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1708
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1783
msgid ""
" Transfer \n"
"Now"
-msgstr "Trosglwyddo"
+msgstr ""
+"Trosglwyddo \n"
+"Nawr"
-#: ../../standalone/drakbackup_.c:1709
+#: ../../standalone/drakbackup_.c:1784
msgid "Keys in place already"
msgstr ""
-#: ../../standalone/drakbackup_.c:1713
+#: ../../standalone/drakbackup_.c:1788
msgid "Please enter the host name or IP."
msgstr "Rhowch enw'r gwesteiwr neu'r IP"
-#: ../../standalone/drakbackup_.c:1718
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1793
msgid ""
"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
-"Rhowch y cyfeiriadur i osod y cadw\n"
+"Rhowch y cyfeiriadur(neu fodiwl) i osod y cadw\n"
"wrth gefn ar y gwesteiwr hwn."
-#: ../../standalone/drakbackup_.c:1723
+#: ../../standalone/drakbackup_.c:1798
msgid "Please enter your login"
msgstr "Rhowch eich mewngofnod"
-#: ../../standalone/drakbackup_.c:1728
+#: ../../standalone/drakbackup_.c:1803
msgid "Please enter your password"
msgstr "Rhowch eich cyfrinair"
-#: ../../standalone/drakbackup_.c:1734
+#: ../../standalone/drakbackup_.c:1809
msgid "Remember this password"
msgstr "Cofiwch y cyfrinair"
-#: ../../standalone/drakbackup_.c:1745
+#: ../../standalone/drakbackup_.c:1820
msgid "Need hostname, username and password!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1841
+#: ../../standalone/drakbackup_.c:1915
msgid "Use CD/DVDROM to backup"
msgstr "Defnyddiwch yr CD/DVDROM i gadw wrth gefn"
-#: ../../standalone/drakbackup_.c:1844
+#: ../../standalone/drakbackup_.c:1918
msgid ""
"Please choose your CD/DVD device\n"
"(Press Enter to propogate settings to other fields.\n"
"This field isn't necessary, only a tool to fill in the form.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1849
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1923
msgid "Please choose your CD/DVD media size"
-msgstr "Dewiswch eich gofod CD"
+msgstr "Dewiswch maint eich gofod CD/DVD"
-#: ../../standalone/drakbackup_.c:1855
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1929
msgid "Please check for multisession CD"
-msgstr "Gwiriwch os ydych yn defnyddio cyfrwng CDRW"
+msgstr "Gwiriwch os ydych yn defnyddio CD amlsesiwn"
-#: ../../standalone/drakbackup_.c:1861
+#: ../../standalone/drakbackup_.c:1935
msgid "Please check if you are using CDRW media"
msgstr "Gwiriwch os ydych yn defnyddio cyfrwng CDRW"
-#: ../../standalone/drakbackup_.c:1867
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1941
msgid "Please check if you want to erase your RW media (1st Session)"
-msgstr "Gwiriwch os ydych am ddileu eich CDRW cyn"
+msgstr "Gwiriwch os ydych am ddileu eich cyfrwng RW(Sesiwn 1af)"
-#: ../../standalone/drakbackup_.c:1868
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1942
msgid " Erase Now "
-msgstr "Trosglwyddo"
+msgstr "Dileu Nawr"
-#: ../../standalone/drakbackup_.c:1874
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1948
msgid "Please check if you are using a DVDR device"
-msgstr "Gwiriwch os ydych yn defnyddio cyfrwng CDRW"
+msgstr "Gwiriwch os ydych yn defnyddio dyfais DVDR"
-#: ../../standalone/drakbackup_.c:1880
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1954
msgid "Please check if you are using a DVDRAM device"
-msgstr "Gwiriwch os ydych yn defnyddio cyfrwng CDRW"
+msgstr "Gwiriwch os ydych yn defnyddio dyfais DVDRAM"
-#: ../../standalone/drakbackup_.c:1893
+#: ../../standalone/drakbackup_.c:1967
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
@@ -10569,36 +10921,33 @@ msgstr ""
"Rhowch enw dyfais eich Ysgrifennwr CD\n"
"ex: 0,1,0"
-#: ../../standalone/drakbackup_.c:1926
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2000
msgid "No CD device defined!"
-msgstr "Dewiswch ffeil"
+msgstr "Heb ddiffinio dyfais CD!"
-#: ../../standalone/drakbackup_.c:1974
+#: ../../standalone/drakbackup_.c:2048
msgid "Use tape to backup"
msgstr "Defnyddiwch dâp i gadw wrth gefn"
-#: ../../standalone/drakbackup_.c:1977
+#: ../../standalone/drakbackup_.c:2051
msgid "Please enter the device name to use for backup"
msgstr "Rhowch enw dyfais i'w ddefnyddio ar gyfer cadw wrth gefn"
-#: ../../standalone/drakbackup_.c:1983
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2057
msgid "Please check if you want to use the non-rewinding device."
-msgstr "Gwiriwch os ydych am ddileu eich CDRW cyn"
+msgstr ""
+"Gwiriwch os ydych am ddefnyddio'r dyfais nad yw'n mynd nôl i'e ddechrau."
-#: ../../standalone/drakbackup_.c:1989
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2063
msgid "Please check if you want to erase your tape before the backup."
-msgstr "Gwiriwch os ydych am ddileu eich CDRW cyn"
+msgstr "Gwiriwch os ydych am ddileu eich tâp cyn y cadw wrth gefn."
-#: ../../standalone/drakbackup_.c:1995
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2069
msgid "Please check if you want to eject your tape after the backup."
-msgstr "Gwiriwch os ydych am ddileu eich CDRW cyn"
+msgstr "Gwiriwch os ydych am dynnu eich tâp ar ôl y cadw wrth gefn."
-#: ../../standalone/drakbackup_.c:2001 ../../standalone/drakbackup_.c:2074
-#: ../../standalone/drakbackup_.c:3025
+#: ../../standalone/drakbackup_.c:2075 ../../standalone/drakbackup_.c:2149
+#: ../../standalone/drakbackup_.c:3116
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
@@ -10606,57 +10955,55 @@ msgstr ""
"Rhowch y maint mwyaf\n"
"i'w ganiatáu ar gyfer Drakbackup"
-#: ../../standalone/drakbackup_.c:2066
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2140
msgid "Please enter the directory to save to:"
msgstr "Rhowch y cyfeiriadur i gadw iddo:"
-#: ../../standalone/drakbackup_.c:2080 ../../standalone/drakbackup_.c:3031
+#: ../../standalone/drakbackup_.c:2155 ../../standalone/drakbackup_.c:3122
msgid "Use quota for backup files."
msgstr "Defnyddiwch y cwota ar gyfer ffeiliau wrth gefn"
-#: ../../standalone/drakbackup_.c:2146
+#: ../../standalone/drakbackup_.c:2221
msgid "Network"
msgstr "Rhwydwaith"
-#: ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:2226
msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2156
+#: ../../standalone/drakbackup_.c:2231
msgid "HardDrive / NFS"
msgstr "Disg Caled / NFS"
-#: ../../standalone/drakbackup_.c:2161
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2236
msgid "Tape"
-msgstr "Math"
+msgstr "Tâp"
-#: ../../standalone/drakbackup_.c:2175 ../../standalone/drakbackup_.c:2179
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2250 ../../standalone/drakbackup_.c:2254
+#: ../../standalone/drakbackup_.c:2258
msgid "hourly"
msgstr "bob awr"
-#: ../../standalone/drakbackup_.c:2176 ../../standalone/drakbackup_.c:2180
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2251 ../../standalone/drakbackup_.c:2255
+#: ../../standalone/drakbackup_.c:2258
msgid "daily"
msgstr "bob dydd"
-#: ../../standalone/drakbackup_.c:2177 ../../standalone/drakbackup_.c:2181
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2252 ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2258
msgid "weekly"
msgstr "bob wythnos"
-#: ../../standalone/drakbackup_.c:2178 ../../standalone/drakbackup_.c:2182
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2253 ../../standalone/drakbackup_.c:2257
+#: ../../standalone/drakbackup_.c:2258
msgid "monthly"
msgstr "bob mis"
-#: ../../standalone/drakbackup_.c:2196
+#: ../../standalone/drakbackup_.c:2271
msgid "Use daemon"
msgstr "Defnyddiwch ddaemon"
-#: ../../standalone/drakbackup_.c:2201
+#: ../../standalone/drakbackup_.c:2276
msgid ""
"Please choose the time \n"
"interval between each backup"
@@ -10664,7 +11011,7 @@ msgstr ""
"Dewiswch faint o amser\n"
"fydd rhwng pob cadw wrth gefn"
-#: ../../standalone/drakbackup_.c:2207
+#: ../../standalone/drakbackup_.c:2282
msgid ""
"Please choose the\n"
"media for backup."
@@ -10672,80 +11019,81 @@ msgstr ""
"Dewiswch y cyfrwng ar\n"
"gyfer cadw wrth gefn..."
-#: ../../standalone/drakbackup_.c:2214
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2289
msgid ""
"Please be sure that the cron daemon is included in your services. \n"
"\n"
"Note that currently all 'net' medias also use the hard drive."
msgstr ""
-"Gwnewch yn siwr bod daemon cron yn cael ei gynnwys yn eich gwasanaethau"
+"Gwnewch yn siwr bod daemon cron yn cael ei gynnwys yn eich gwasanaethau. \n"
+"\n"
+"Sylwer bod yr holl gyfrwn \"gwe\" yn defnyddio'r ddisg caled."
-#: ../../standalone/drakbackup_.c:2251
-msgid "Send mail report after each backup to :"
+#: ../../standalone/drakbackup_.c:2326
+msgid "Send mail report after each backup to:"
msgstr "Anfonwch adroddiad e-bost wedi pob cadw wrth gefn i :"
-#: ../../standalone/drakbackup_.c:2257
+#: ../../standalone/drakbackup_.c:2332
msgid "Delete Hard Drive tar files after backup to other media."
msgstr ""
-#: ../../standalone/drakbackup_.c:2296
+#: ../../standalone/drakbackup_.c:2371
msgid "What"
msgstr "Beth"
-#: ../../standalone/drakbackup_.c:2301
+#: ../../standalone/drakbackup_.c:2376
msgid "Where"
msgstr "Lle"
-#: ../../standalone/drakbackup_.c:2306
+#: ../../standalone/drakbackup_.c:2381
msgid "When"
msgstr "Pryd"
-#: ../../standalone/drakbackup_.c:2311
+#: ../../standalone/drakbackup_.c:2386
msgid "More Options"
msgstr "Dewisiadau Eraill"
-#: ../../standalone/drakbackup_.c:2330 ../../standalone/drakbackup_.c:3873
+#: ../../standalone/drakbackup_.c:2405 ../../standalone/drakbackup_.c:4530
msgid "Drakbackup Configuration"
msgstr "Ffurfweddiad Drakbackup"
-#: ../../standalone/drakbackup_.c:2348
+#: ../../standalone/drakbackup_.c:2423
msgid "Please choose where you want to backup"
msgstr "Dewiswch i le rydych am gadw ffeiliau wrth gefn"
-#: ../../standalone/drakbackup_.c:2350
+#: ../../standalone/drakbackup_.c:2425
msgid "on Hard Drive"
msgstr "ar Ddisg Caled"
-#: ../../standalone/drakbackup_.c:2360
+#: ../../standalone/drakbackup_.c:2435
msgid "across Network"
msgstr "ar draws Rhwydwaith"
-#: ../../standalone/drakbackup_.c:2370
+#: ../../standalone/drakbackup_.c:2445
msgid "on CDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2378
+#: ../../standalone/drakbackup_.c:2453
msgid "on Tape Device"
msgstr ""
-#: ../../standalone/drakbackup_.c:2421
+#: ../../standalone/drakbackup_.c:2496
msgid "Please choose what you want to backup"
msgstr "Dewiswch beth rydych am ei gadw wrth gefn"
-#: ../../standalone/drakbackup_.c:2422
+#: ../../standalone/drakbackup_.c:2497
msgid "Backup system"
msgstr "System cadw wrth gefn"
-#: ../../standalone/drakbackup_.c:2423
+#: ../../standalone/drakbackup_.c:2498
msgid "Backup Users"
msgstr "Defnyddwyr Cadw wrth Gwfn"
-#: ../../standalone/drakbackup_.c:2426
+#: ../../standalone/drakbackup_.c:2501
msgid "Select user manually"
msgstr "Dewis defnyddwyr gyda llaw"
-#: ../../standalone/drakbackup_.c:2508
+#: ../../standalone/drakbackup_.c:2584
msgid ""
"\n"
"Backup Sources: \n"
@@ -10753,7 +11101,7 @@ msgstr ""
"\n"
"Ffynhonell Cadw wrth Gefn:\n"
-#: ../../standalone/drakbackup_.c:2509
+#: ../../standalone/drakbackup_.c:2585
msgid ""
"\n"
"- System Files:\n"
@@ -10761,7 +11109,7 @@ msgstr ""
"\n"
"- Ffeiliau System: \n"
-#: ../../standalone/drakbackup_.c:2511
+#: ../../standalone/drakbackup_.c:2587
msgid ""
"\n"
"- User Files:\n"
@@ -10769,7 +11117,7 @@ msgstr ""
"\n"
"- Ffeiliau Defnyddiwr:\n"
-#: ../../standalone/drakbackup_.c:2513
+#: ../../standalone/drakbackup_.c:2589
msgid ""
"\n"
"- Other Files:\n"
@@ -10777,64 +11125,64 @@ msgstr ""
"\n"
"- Ffeiliau Eraill: \n"
-#: ../../standalone/drakbackup_.c:2515
+#: ../../standalone/drakbackup_.c:2591
#, c-format
msgid ""
"\n"
-"- Save on Hard drive on path : %s\n"
+"- Save on Hard drive on path: %s\n"
msgstr ""
"\n"
"Cadw ar Ddisg caled ar lwybr: %s\n"
-#: ../../standalone/drakbackup_.c:2518
+#: ../../standalone/drakbackup_.c:2594
msgid ""
"\n"
"- Delete hard drive tar files after backup.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2524
+#: ../../standalone/drakbackup_.c:2600
msgid ""
"\n"
"- Burn to CD"
msgstr ""
-#: ../../standalone/drakbackup_.c:2525
+#: ../../standalone/drakbackup_.c:2601
msgid "RW"
msgstr ""
-#: ../../standalone/drakbackup_.c:2526
-#, fuzzy, c-format
-msgid " on device : %s"
-msgstr "Dyfais llygoden: %s\n"
+#: ../../standalone/drakbackup_.c:2602
+#, c-format
+msgid " on device: %s"
+msgstr "ar ddyfais: %s"
-#: ../../standalone/drakbackup_.c:2527
+#: ../../standalone/drakbackup_.c:2603
msgid " (multi-session)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2528
-#, fuzzy, c-format
+#: ../../standalone/drakbackup_.c:2604
+#, c-format
msgid ""
"\n"
-"- Save to Tape on device : %s"
+"- Save to Tape on device: %s"
msgstr ""
"\n"
-"- Cadw ar FTP ar y gwesteiwr: %s\n"
+"- Cadw i dâp ar ddyfais: %s"
-#: ../../standalone/drakbackup_.c:2529
+#: ../../standalone/drakbackup_.c:2605
#, c-format
msgid "\t\tErase=%s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2532
-#, fuzzy, c-format
+#: ../../standalone/drakbackup_.c:2608
+#, c-format
msgid ""
"\n"
-"- Save via %s on host : %s\n"
+"- Save via %s on host: %s\n"
msgstr ""
"\n"
-"- Cadw ar FTP ar y gwesteiwr: %s\n"
+"- Cadw drwy %s ar westeiwr: %s\n"
-#: ../../standalone/drakbackup_.c:2533
+#: ../../standalone/drakbackup_.c:2609
#, c-format
msgid ""
"\t\t user name: %s\n"
@@ -10843,7 +11191,7 @@ msgstr ""
"\t\t enw defnyddiwr:%s\n"
"\t\t ar lwybr: %s \n"
-#: ../../standalone/drakbackup_.c:2534
+#: ../../standalone/drakbackup_.c:2610
msgid ""
"\n"
"- Options:\n"
@@ -10851,62 +11199,60 @@ msgstr ""
"\n"
"-Dewisiadau:\n"
-#: ../../standalone/drakbackup_.c:2535
+#: ../../standalone/drakbackup_.c:2611
msgid "\tDo not include System Files\n"
msgstr "\tPeidiwch cynnwys Ffeiliau System\n"
-#: ../../standalone/drakbackup_.c:2538
+#: ../../standalone/drakbackup_.c:2614
msgid "\tBackups use tar and bzip2\n"
msgstr "\t Bydd Cadw wrth gefn yn defnyddio tar a bzip2\n"
-#: ../../standalone/drakbackup_.c:2540
+#: ../../standalone/drakbackup_.c:2616
msgid "\tBackups use tar and gzip\n"
msgstr "\tBydd Cadw wrth Gefn yn defnyddio tar a gzip\n"
-#: ../../standalone/drakbackup_.c:2543
+#: ../../standalone/drakbackup_.c:2619
#, c-format
msgid ""
"\n"
-"- Daemon (%s) include :\n"
+"- Daemon (%s) include:\n"
msgstr ""
"\n"
"- Daemon (%s) i gynnwys :\n"
-#: ../../standalone/drakbackup_.c:2544
+#: ../../standalone/drakbackup_.c:2620
msgid "\t-Hard drive.\n"
msgstr "\t-Disg Caled.\n"
-#: ../../standalone/drakbackup_.c:2545
+#: ../../standalone/drakbackup_.c:2621
msgid "\t-CDROM.\n"
msgstr "\t-CDROM.\n"
-#: ../../standalone/drakbackup_.c:2546
+#: ../../standalone/drakbackup_.c:2622
msgid "\t-Tape \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2547
+#: ../../standalone/drakbackup_.c:2623
msgid "\t-Network by FTP.\n"
msgstr "\t-Rhwydwaith drwy FTP.\n"
-#: ../../standalone/drakbackup_.c:2548
+#: ../../standalone/drakbackup_.c:2624
msgid "\t-Network by SSH.\n"
msgstr "\t-Rhwydwaith drwy SSH.\n"
-#: ../../standalone/drakbackup_.c:2549
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2625
msgid "\t-Network by rsync.\n"
-msgstr "\t-Rhwydwaith drwy FTP.\n"
+msgstr "\t-Rhwydwaith drwy rsync.\n"
-#: ../../standalone/drakbackup_.c:2550
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2626
msgid "\t-Network by webdav.\n"
-msgstr "\t-Rhwydwaith drwy FTP.\n"
+msgstr "\t-Rhwydwaith drwy webday.\n"
-#: ../../standalone/drakbackup_.c:2552
+#: ../../standalone/drakbackup_.c:2628
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr "Dim ffurfweddiad, cliciwch Dewin neu Uwch.\n"
-#: ../../standalone/drakbackup_.c:2558
+#: ../../standalone/drakbackup_.c:2634
msgid ""
"List of data to restore:\n"
"\n"
@@ -10914,7 +11260,7 @@ msgstr ""
"Rhestr o ddata i'w adfer:\n"
"\n"
-#: ../../standalone/drakbackup_.c:2725
+#: ../../standalone/drakbackup_.c:2801
msgid ""
"List of data corrupted:\n"
"\n"
@@ -10922,160 +11268,268 @@ msgstr ""
"Rhestr o ddata llwgr:\n"
"\n"
-#: ../../standalone/drakbackup_.c:2727
+#: ../../standalone/drakbackup_.c:2803
msgid "Please uncheck or remove it on next time."
msgstr "Dad-diciwch hwn neu ei dynnu'r tro nesaf."
-#: ../../standalone/drakbackup_.c:2737
+#: ../../standalone/drakbackup_.c:2813
msgid "Backup files are corrupted"
msgstr "Mae'r ffeiliau wrth gefn wedi eu llygru"
-#: ../../standalone/drakbackup_.c:2758
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2834
msgid " All of your selected data have been "
msgstr " Mae eich dewis data wedi ei "
-#: ../../standalone/drakbackup_.c:2759
+#: ../../standalone/drakbackup_.c:2835
#, c-format
msgid " Successfuly Restored on %s "
msgstr " Ei adfer yn Llwyddiannus ar %s "
-#: ../../standalone/drakbackup_.c:2877
+#: ../../standalone/drakbackup_.c:2953
msgid " Restore Configuration "
msgstr " Adfer y Furfweddiad"
-#: ../../standalone/drakbackup_.c:2895
+#: ../../standalone/drakbackup_.c:2971
msgid "OK to restore the other files."
msgstr "Iawn i adfer ffeiliau eraill"
-#: ../../standalone/drakbackup_.c:2912
+#: ../../standalone/drakbackup_.c:2988
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
"Rhestr defnyddwyr i'w adfer ( dim ond y diweddaraf yn ôl y defnyddwyr, sy'n "
"bwysig )"
-#: ../../standalone/drakbackup_.c:2975
+#: ../../standalone/drakbackup_.c:3066
msgid "Backup the system files before:"
msgstr "Cadw'r ffeiliau system wrth gefn cyn:"
-#: ../../standalone/drakbackup_.c:2977
+#: ../../standalone/drakbackup_.c:3068
msgid "please choose the date to restore"
msgstr "dewiswch y data i'w adfer"
-#: ../../standalone/drakbackup_.c:3014
+#: ../../standalone/drakbackup_.c:3105
msgid "Use Hard Disk to backup"
msgstr "Defnyddiwch y Ddisg Caled ar gyfer cadw wrth gefn"
-#: ../../standalone/drakbackup_.c:3017
+#: ../../standalone/drakbackup_.c:3108
msgid "Please enter the directory to save:"
msgstr "Rhowch y cyfeiriadur i gadw iddo:"
-#: ../../standalone/drakbackup_.c:3060
+#: ../../standalone/drakbackup_.c:3151
msgid "FTP Connection"
msgstr "Cysylltiad FTP"
-#: ../../standalone/drakbackup_.c:3067
+#: ../../standalone/drakbackup_.c:3158
msgid "Secure Connection"
msgstr "Cysylltiad Diogel"
-#: ../../standalone/drakbackup_.c:3093
+#: ../../standalone/drakbackup_.c:3184
msgid "Restore from Hard Disk."
msgstr "Adfer o'r Ddisg Caled."
-#: ../../standalone/drakbackup_.c:3095
+#: ../../standalone/drakbackup_.c:3186
msgid "Please enter the directory where backups are stored"
msgstr "Rhowch y cyfeiriadur lle mae'r ffeiliau wrth gefn yn cael eu cadw"
-#: ../../standalone/drakbackup_.c:3157
+#: ../../standalone/drakbackup_.c:3254
msgid "Select another media to restore from"
msgstr "Dewis cyfrwng arall i adfer ohono"
-#: ../../standalone/drakbackup_.c:3159
+#: ../../standalone/drakbackup_.c:3256
msgid "Other Media"
msgstr "Cyfrwng Arall"
-#: ../../standalone/drakbackup_.c:3164
+#: ../../standalone/drakbackup_.c:3261
msgid "Restore system"
msgstr "Adfer y system"
-#: ../../standalone/drakbackup_.c:3165
+#: ../../standalone/drakbackup_.c:3262
msgid "Restore Users"
msgstr "Adfer Defnyddwyr"
-#: ../../standalone/drakbackup_.c:3166
+#: ../../standalone/drakbackup_.c:3263
msgid "Restore Other"
msgstr "Adfer Arall"
-#: ../../standalone/drakbackup_.c:3168
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3265
msgid "select path to restore (instead of /)"
msgstr "dewis llwybr arall i adfer ( yn lle / )"
-#: ../../standalone/drakbackup_.c:3172
+#: ../../standalone/drakbackup_.c:3269
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
"Gwnewch cadw wrth gefn newydd cyn adfer ( ar gyfer cadw wrth gefn cynyddol "
"yn unig )"
-#: ../../standalone/drakbackup_.c:3174
+#: ../../standalone/drakbackup_.c:3271
msgid "Remove user directories before restore."
msgstr "Tynnu cyfeiriaduron defnyddiwr cyn adfer."
-#: ../../standalone/drakbackup_.c:3232
+#: ../../standalone/drakbackup_.c:3384
+msgid ""
+"Restore Selected\n"
+"Catalog Entry"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3394
+msgid ""
+"Restore Selected\n"
+"Files"
+msgstr ""
+"Adfer y Dewis\n"
+"Ffeiliau"
+
+#: ../../standalone/drakbackup_.c:3411
+msgid ""
+"Change\n"
+"Restore Path"
+msgstr ""
+"Newid\n"
+"Llwybr Adfer"
+
+#: ../../standalone/drakbackup_.c:3477
+#, c-format
+msgid "Backup files not found at %s."
+msgstr "Heb ganfod y ffeiliau wrth gefn yn %s."
+
+#: ../../standalone/drakbackup_.c:3490
+#, c-format
+msgid ""
+"Insert the CD with volume label %s\n"
+" in the CD drive under mount point /mnt/cdrom"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3490
+msgid "Restore From CD"
+msgstr "Adfer o'r CD"
+
+#: ../../standalone/drakbackup_.c:3492
+#, c-format
+msgid "Not the correct CD label. Disk is labelled %s."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3502
+#, c-format
+msgid ""
+"Insert the tape with volume label %s\n"
+" in the tape drive device %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3502
+msgid "Restore From Tape"
+msgstr "Adfer o Dâp"
+
+#: ../../standalone/drakbackup_.c:3504
+#, c-format
+msgid "Not the correct tape label. Tape is labelled %s."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3524
+msgid "Restore Via Network"
+msgstr "Adfer drwy'r Rhwydwaith"
+
+#: ../../standalone/drakbackup_.c:3524
+#, c-format
+msgid "Restore Via Network Protocol: %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3525
+msgid "Host Name"
+msgstr "Enw Gwesteiwr"
+
+#: ../../standalone/drakbackup_.c:3526
+msgid "Host Path or Module"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3533
+msgid "Password required"
+msgstr "Mae angen cyfrinair"
+
+#: ../../standalone/drakbackup_.c:3539
+msgid "Username required"
+msgstr "Mae angen enw defnyddiwr"
+
+#: ../../standalone/drakbackup_.c:3542
+msgid "Hostname required"
+msgstr "Mae angen enw gwesteiwr"
+
+#: ../../standalone/drakbackup_.c:3547
+msgid "Path or Module required"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3560
+msgid "Files Restored..."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3563
+msgid "Restore Failed..."
+msgstr "Methodd Adfer..."
+
+#: ../../standalone/drakbackup_.c:3801
msgid "Restore all backups"
msgstr "Adfer pob cadw wrth gefn"
-#: ../../standalone/drakbackup_.c:3241
+#: ../../standalone/drakbackup_.c:3810
msgid "Custom Restore"
msgstr "Adfer Dewisol"
-#: ../../standalone/drakbackup_.c:3287 ../../standalone/drakbackup_.c:3320
-#: ../../standalone/drakbackup_.c:3346 ../../standalone/drakbackup_.c:3373
-#: ../../standalone/drakbackup_.c:3400 ../../standalone/drakbackup_.c:3460
-#: ../../standalone/drakbackup_.c:3487 ../../standalone/drakbackup_.c:3513
+#: ../../standalone/drakbackup_.c:3856
+msgid "CD in place - continue."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3862
+msgid "Browse to new restore repository."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3865
+msgid "Restore From Catalog"
+msgstr "Adfer o'r Catalog"
+
+#: ../../standalone/drakbackup_.c:3893
+#, fuzzy
+msgid "Restore Progress"
+msgstr "Adfer Defnyddwyr"
+
+#: ../../standalone/drakbackup_.c:3935 ../../standalone/drakbackup_.c:3968
+#: ../../standalone/drakbackup_.c:3994 ../../standalone/drakbackup_.c:4021
+#: ../../standalone/drakbackup_.c:4048 ../../standalone/drakbackup_.c:4108
+#: ../../standalone/drakbackup_.c:4135 ../../standalone/drakbackup_.c:4165
+#: ../../standalone/drakbackup_.c:4191
msgid "Previous"
msgstr "Cynt"
-#: ../../standalone/drakbackup_.c:3291 ../../standalone/drakbackup_.c:3377
+#: ../../standalone/drakbackup_.c:3939 ../../standalone/drakbackup_.c:4025
#: ../../standalone/logdrake_.c:223
msgid "Save"
msgstr "Gorffen"
-#: ../../standalone/drakbackup_.c:3350
+#: ../../standalone/drakbackup_.c:3998
msgid "Build Backup"
msgstr "Adeiladu Cadw wrth Gefn"
-#: ../../standalone/drakbackup_.c:3404 ../../standalone/drakbackup_.c:3974
+#: ../../standalone/drakbackup_.c:4052 ../../standalone/drakbackup_.c:4632
msgid "Restore"
msgstr "Adfer"
-#: ../../standalone/drakbackup_.c:3553
-msgid ""
-"Please Build backup before to restore it...\n"
-" or verify that your path to save is correct."
-msgstr ""
-"Crëwch gadw wrth gefn cyn ei adfer...\n"
-" neu gwiriwch fod eich llwybr i'w gadw'n gywir."
-
-#: ../../standalone/drakbackup_.c:3574
+#: ../../standalone/drakbackup_.c:4231
msgid ""
-"Error during sendmail\n"
-" your report mail was not sent\n"
+"Error during sendmail.\n"
+" Your report mail was not sent.\n"
" Please configure sendmail"
msgstr ""
"Gwall wrth ddefnyddio sendmail\n"
-" chafodd eich adroddiad e-bost mo'i anfon\n"
+" chafodd eich adroddiad e-bost mo'i anfon\n"
" Ffurfweddwch eich sendmail"
-#: ../../standalone/drakbackup_.c:3598
-#, fuzzy
+#: ../../standalone/drakbackup_.c:4255
msgid ""
"The following packages need to be installed:\n"
" @list_of_rpm_to_install"
-msgstr "Mae'r pecynnau canlynol i'w gosod"
+msgstr ""
+"Mae'r pecynnau canlynol i'w gosod:\n"
+" @list_of_rpm_to_install"
-#: ../../standalone/drakbackup_.c:3621
-#, fuzzy
+#: ../../standalone/drakbackup_.c:4278
msgid ""
"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
@@ -11083,19 +11537,19 @@ msgstr ""
"Gwall wrth anfon ffeil drwy FTP.\n"
" Cywirwch eich ffurfweddiad FTP."
-#: ../../standalone/drakbackup_.c:3644
+#: ../../standalone/drakbackup_.c:4301
msgid "Please select data to restore..."
msgstr "Dewiswch y data i'w adfer..."
-#: ../../standalone/drakbackup_.c:3665
+#: ../../standalone/drakbackup_.c:4322
msgid "Please select media for backup..."
msgstr "Dewiswch y cyfrwng ar gyfer cadw wrth gefn..."
-#: ../../standalone/drakbackup_.c:3687
+#: ../../standalone/drakbackup_.c:4344
msgid "Please select data to backup..."
msgstr "Dewiswch y data i'w gadw wrth gefn..."
-#: ../../standalone/drakbackup_.c:3709
+#: ../../standalone/drakbackup_.c:4366
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
@@ -11103,60 +11557,59 @@ msgstr ""
"Ni chanfyddwyd y ffeil ffurfweddu \n"
"cliciwch Dewin neu Uwch."
-#: ../../standalone/drakbackup_.c:3730
+#: ../../standalone/drakbackup_.c:4387
msgid "Under Devel ... please wait."
msgstr "O dan ddatblygiad...arhoswch."
-#: ../../standalone/drakbackup_.c:3811
+#: ../../standalone/drakbackup_.c:4468
msgid "Backup system files"
msgstr "Ffeiliau System Cadw wrth Gefn"
-#: ../../standalone/drakbackup_.c:3813
+#: ../../standalone/drakbackup_.c:4470
msgid "Backup user files"
msgstr "Ffeiliau Defnyddiwr Cadw wrth Gefn"
-#: ../../standalone/drakbackup_.c:3815
+#: ../../standalone/drakbackup_.c:4472
msgid "Backup other files"
msgstr "Cadw'r ffeiliau eraill wrth gefn"
-#: ../../standalone/drakbackup_.c:3817 ../../standalone/drakbackup_.c:3850
+#: ../../standalone/drakbackup_.c:4474 ../../standalone/drakbackup_.c:4507
msgid "Total Progress"
msgstr "Cyfanswm Cynydd"
-#: ../../standalone/drakbackup_.c:3841
+#: ../../standalone/drakbackup_.c:4498
msgid "files sending by FTP"
msgstr "anfon ffeil drwy FTP"
-#: ../../standalone/drakbackup_.c:3845
+#: ../../standalone/drakbackup_.c:4502
msgid "Sending files..."
msgstr "Anfon ffeiliau..."
-#: ../../standalone/drakbackup_.c:3931
+#: ../../standalone/drakbackup_.c:4588
msgid "Backup Now from configuration file"
msgstr "Cadwch wrth Gefn eich ffeiliau ffurfweddu"
-#: ../../standalone/drakbackup_.c:3936
+#: ../../standalone/drakbackup_.c:4593
msgid "View Backup Configuration."
msgstr "Edrych ar Ffurfweddiad Cadw wrth Gefn"
-#: ../../standalone/drakbackup_.c:3956
+#: ../../standalone/drakbackup_.c:4614
msgid "Wizard Configuration"
msgstr "Ffurfweddiad y Dewin"
-#: ../../standalone/drakbackup_.c:3961
+#: ../../standalone/drakbackup_.c:4619
msgid "Advanced Configuration"
msgstr "Ffurfweddiad Uwch"
-#: ../../standalone/drakbackup_.c:3966
+#: ../../standalone/drakbackup_.c:4624
msgid "Backup Now"
msgstr "Cadw wrth Gefn Nawr"
-#: ../../standalone/drakbackup_.c:3996
+#: ../../standalone/drakbackup_.c:4658
msgid "Drakbackup"
msgstr "Drakbackup"
-#: ../../standalone/drakbackup_.c:4045
-#, fuzzy
+#: ../../standalone/drakbackup_.c:4707
msgid ""
"options description:\n"
"\n"
@@ -11214,7 +11667,7 @@ msgstr ""
" ...\n"
" \n"
-#: ../../standalone/drakbackup_.c:4075
+#: ../../standalone/drakbackup_.c:4737
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -11223,7 +11676,7 @@ msgid ""
"\n"
msgstr "\n"
-#: ../../standalone/drakbackup_.c:4083
+#: ../../standalone/drakbackup_.c:4745
msgid ""
"options description:\n"
"\n"
@@ -11300,28 +11753,28 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:4122
+#: ../../standalone/drakbackup_.c:4784
msgid ""
"restore description:\n"
" \n"
-"Only the most recent date will be used ,because with incremental \n"
-"backups it is necesarry to restore one by one each older backups.\n"
+"Only the most recent date will be used, because with incremental \n"
+"backups it is necessary to restore one by one each older backup.\n"
"\n"
-"So if you don't like to restore a user please unselect all his\n"
-"check box.\n"
+"So if you don't want to restore a user please unselect all their\n"
+"check boxes.\n"
"\n"
-"Otherwise, you are able to select only one of this\n"
+"Otherwise, you are able to select only one of these.\n"
"\n"
" - Incremental Backups:\n"
"\n"
"\tThe incremental backup is the most powerful \n"
-"\toption to use backup, this option allow you \n"
-"\tto backup all your data the first time, and \n"
-"\tonly the changed after.\n"
-"\tSo you will be able during the restore\n"
+"\toption to use. This option allows you to \n"
+"\tbackup all of your data the first time, and \n"
+"\tonly the changed data after.\n"
+"\tSo you will be able, during the restore\n"
"\tstep, to restore your data from a specified\n"
"\tdate.\n"
-"\tIf you have not selected this options all\n"
+"\tIf you have not selected this option all\n"
"\told backups are deleted before each backup. \n"
"\n"
"\n"
@@ -11349,18 +11802,18 @@ msgstr ""
"\\n\n"
"\n"
-#: ../../standalone/drakbackup_.c:4148 ../../standalone/drakbackup_.c:4225
+#: ../../standalone/drakbackup_.c:4810 ../../standalone/drakbackup_.c:4887
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
" Hawlfraint(H 2001 MandrakeSoft gan DUPONT Sebastien <dupont_s\\@epita.fr>"
-#: ../../standalone/drakbackup_.c:4150 ../../standalone/drakbackup_.c:4227
+#: ../../standalone/drakbackup_.c:4812 ../../standalone/drakbackup_.c:4889
msgid ""
" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
-#: ../../standalone/drakbackup_.c:4152 ../../standalone/drakbackup_.c:4229
+#: ../../standalone/drakbackup_.c:4814 ../../standalone/drakbackup_.c:4891
msgid ""
" This program is free software; you can redistribute it and/or modify\n"
" it under the terms of the GNU General Public License as published by\n"
@@ -11392,7 +11845,7 @@ msgstr ""
" Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,\n"
"MA 02111-1307, USA"
-#: ../../standalone/drakbackup_.c:4166
+#: ../../standalone/drakbackup_.c:4828
msgid ""
"Description:\n"
"\n"
@@ -11468,7 +11921,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:4204
+#: ../../standalone/drakbackup_.c:4866
msgid ""
"options description:\n"
"\n"
@@ -11487,7 +11940,7 @@ msgstr ""
"cyn ei anfon i'r gwasanaethwr.\n"
"\n"
-#: ../../standalone/drakbackup_.c:4213
+#: ../../standalone/drakbackup_.c:4875
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -11509,7 +11962,7 @@ msgstr ""
"bwysig eich bod yn ofalus a pheidio newid y ffeiliau\n"
"data wrth gefn gyda llaw.\n"
-#: ../../standalone/drakbackup_.c:4243
+#: ../../standalone/drakbackup_.c:4905
msgid ""
"Description:\n"
"\n"
@@ -11626,42 +12079,35 @@ msgstr ""
msgid "Synchronization tool"
msgstr ""
-#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:85
-#: ../../standalone/drakbug_.c:150 ../../standalone/drakbug_.c:152
-#: ../../standalone/drakbug_.c:156
-#, fuzzy
+#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:86
+#: ../../standalone/drakbug_.c:151 ../../standalone/drakbug_.c:153
+#: ../../standalone/drakbug_.c:157
msgid "Standalone Tools"
-msgstr "Offer y Consol"
+msgstr "Offer Unigol"
#: ../../standalone/drakbug_.c:73
-#, fuzzy
msgid "HardDrake"
-msgstr "ar Ddisg Caled"
+msgstr "HardDrake"
#: ../../standalone/drakbug_.c:74
-#, fuzzy
msgid "Mandrake Online"
-msgstr "MandrakeConsulting"
+msgstr "Mandrake Online"
#: ../../standalone/drakbug_.c:75
-#, fuzzy
msgid "Menudrake"
-msgstr "MandrakeStore"
+msgstr "Menudrake"
#: ../../standalone/drakbug_.c:76
-#, fuzzy
msgid "Msec"
-msgstr "Llygoden"
+msgstr "Msec"
#: ../../standalone/drakbug_.c:77
-#, fuzzy
msgid "Remote Control"
-msgstr "Argraffydd pell"
+msgstr "Rheoli o Bell"
#: ../../standalone/drakbug_.c:78
-#, fuzzy
msgid "Software Manager"
-msgstr "Rhannu enw"
+msgstr "Rheolwr Meddalwedd"
#: ../../standalone/drakbug_.c:79
msgid "Urpmi"
@@ -11672,35 +12118,30 @@ msgid "Windows Migration tool"
msgstr ""
#: ../../standalone/drakbug_.c:81
-#, fuzzy
msgid "Userdrake"
-msgstr "Printerdrake"
+msgstr "Userdrake"
#: ../../standalone/drakbug_.c:82
-#, fuzzy
msgid "Configuration Wizards"
-msgstr "Dewin Ffurfweddu'r Rhwydwaith"
+msgstr "Dewin Ffurfweddu"
-#: ../../standalone/drakbug_.c:96
-#, fuzzy
+#: ../../standalone/drakbug_.c:97
msgid "Application:"
-msgstr "Dilysu"
+msgstr "Rhaglen"
-#: ../../standalone/drakbug_.c:97
-#, fuzzy
+#: ../../standalone/drakbug_.c:98
msgid "Package: "
-msgstr "Dewis pecynnau"
+msgstr "Pecynnau"
-#: ../../standalone/drakbug_.c:98
+#: ../../standalone/drakbug_.c:99
msgid "Kernel:"
msgstr ""
-#: ../../standalone/drakbug_.c:99
-#, fuzzy
+#: ../../standalone/drakbug_.c:100
msgid "Release: "
-msgstr "Arhoswch"
+msgstr "Ryddhad"
-#: ../../standalone/drakbug_.c:114
+#: ../../standalone/drakbug_.c:115
msgid ""
"\n"
"\n"
@@ -11712,24 +12153,21 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbug_.c:135
-#, fuzzy
+#: ../../standalone/drakbug_.c:136
msgid "Report"
-msgstr "porth"
+msgstr "Adroddiad"
-#: ../../standalone/drakbug_.c:165
-#, fuzzy
+#: ../../standalone/drakbug_.c:166
msgid "Not installed"
-msgstr "Wedi'r dad osod"
+msgstr "Heb ei osod"
-#: ../../standalone/drakbug_.c:182
+#: ../../standalone/drakbug_.c:183
msgid "connecting to Bugzilla wizard ..."
msgstr ""
-#: ../../standalone/drakbug_.c:189
-#, fuzzy
+#: ../../standalone/drakbug_.c:190
msgid "No browser available! Please install one"
-msgstr "Bydd lluniau o'r sgrin ar gale ar ôl gosod yn %s"
+msgstr "Dim porwr ar gael! Gosodawch un"
#: ../../standalone/drakconnect_.c:79
#, c-format
@@ -12025,12 +12463,12 @@ msgid "Be sure a media is present for the device %s"
msgstr "Gwnewch yn siwr fod y deunydd ar gael ar gyfer y ddyfais %s"
#: ../../standalone/drakfloppy_.c:426
-#, fuzzy, c-format
+#, c-format
msgid ""
"There is no medium or it is write-protected for device %s.\n"
"Please insert one."
msgstr ""
-"Does dim cyfrwng i'r dyfais %s.\n"
+"Does dim cyfrwng neu mae wedi ei amddiffyn rhag ysgrifennu i'r dyfais %s.\n"
"Rhowch un i mewn.."
#: ../../standalone/drakfloppy_.c:428
@@ -12176,7 +12614,7 @@ msgid "Font List"
msgstr "Rhestr Ffontiau"
#: ../../standalone/drakfont_.c:909
-msgid "Choose the applications that will support the fonts :"
+msgid "Choose the applications that will support the fonts:"
msgstr "Dewiswch y rhaglenni fydd yn cynnal ffontiau:"
#: ../../standalone/drakfont_.c:918
@@ -12247,19 +12685,19 @@ msgstr "Tynnu ffontiau oddi ar eich system!"
msgid "Post Uninstall"
msgstr "Wedi'r dad osod"
-#: ../../standalone/drakgw_.c:42 ../../standalone/drakgw_.c:195
+#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:188
msgid "Internet Connection Sharing"
msgstr "Rhannu Cysylltiad â'r Rhyngrwyd"
-#: ../../standalone/drakgw_.c:121
+#: ../../standalone/drakgw_.c:119
msgid "Sorry, we support only 2.4 kernels."
msgstr ""
-#: ../../standalone/drakgw_.c:133
+#: ../../standalone/drakgw_.c:130
msgid "Internet Connection Sharing currently enabled"
msgstr "Mae Rhannu Cysylltiad â'r Rhyngrwyd wedi ei alluogi"
-#: ../../standalone/drakgw_.c:134
+#: ../../standalone/drakgw_.c:131
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -12271,31 +12709,31 @@ msgstr ""
"\n"
"Beth hoffech ei wneud?"
-#: ../../standalone/drakgw_.c:138
+#: ../../standalone/drakgw_.c:135
msgid "disable"
msgstr "dymunol"
-#: ../../standalone/drakgw_.c:138 ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:135 ../../standalone/drakgw_.c:160
msgid "dismiss"
msgstr "gwrthod"
-#: ../../standalone/drakgw_.c:138 ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:135 ../../standalone/drakgw_.c:160
msgid "reconfigure"
msgstr "ailffurfweddu"
-#: ../../standalone/drakgw_.c:141
+#: ../../standalone/drakgw_.c:138
msgid "Disabling servers..."
msgstr "Analluogi gwasanaethwyr..."
-#: ../../standalone/drakgw_.c:149
+#: ../../standalone/drakgw_.c:146
msgid "Internet connection sharing is now disabled."
msgstr "Mae rhannu cysylltiad â'r Rhyngrwyd wedi ei analluogi."
-#: ../../standalone/drakgw_.c:158
+#: ../../standalone/drakgw_.c:155
msgid "Internet Connection Sharing currently disabled"
msgstr "Mae Rhannu Cysylltiad a'r Rhyngrwyd wedi ei analluogi"
-#: ../../standalone/drakgw_.c:159
+#: ../../standalone/drakgw_.c:156
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
@@ -12307,19 +12745,19 @@ msgstr ""
"\n"
"Beth hoffech ei wneud?"
-#: ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:160
msgid "enable"
msgstr "galluogi"
-#: ../../standalone/drakgw_.c:170
+#: ../../standalone/drakgw_.c:167
msgid "Enabling servers..."
msgstr "Galluogi gwasanaethwyr..."
-#: ../../standalone/drakgw_.c:175
+#: ../../standalone/drakgw_.c:172
msgid "Internet connection sharing is now enabled."
msgstr "Mae rhannu cysylltiad â'r Rhyngrwyd wedi ei alluogi."
-#: ../../standalone/drakgw_.c:196
+#: ../../standalone/drakgw_.c:189
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
"With that feature, other computers on your local network will be able to use "
@@ -12336,21 +12774,21 @@ msgstr ""
"Sylwer: bydd angen Addasydd Rhwydwaith un-pwrpas i greu Rhwydwaith Lleol "
"(LAN)."
-#: ../../standalone/drakgw_.c:222
+#: ../../standalone/drakgw_.c:215
#, c-format
msgid "Interface %s (using module %s)"
msgstr "Rhyngwyneb %s (gan ddefnyddio modiwl %s)"
-#: ../../standalone/drakgw_.c:223
+#: ../../standalone/drakgw_.c:216
#, c-format
msgid "Interface %s"
msgstr "Rhagwyneb %s"
-#: ../../standalone/drakgw_.c:231
+#: ../../standalone/drakgw_.c:224
msgid "No network adapter on your system!"
msgstr "Nid oes addasydd rhwydwaith ar eich system!"
-#: ../../standalone/drakgw_.c:232
+#: ../../standalone/drakgw_.c:225
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
@@ -12358,11 +12796,11 @@ msgstr ""
"Nid oes addasydd rhwydwaith ethernet wedi ei ganfod ar eich system. Rhedwch "
"yr offeryn ffurfweddu caledwedd."
-#: ../../standalone/drakgw_.c:238
+#: ../../standalone/drakgw_.c:231
msgid "Network interface"
msgstr "Rhyngwyneb rhwydwaith"
-#: ../../standalone/drakgw_.c:239
+#: ../../standalone/drakgw_.c:232
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -12377,7 +12815,7 @@ msgstr ""
"\n"
"Rwyf ar fin gosod eich Rhwydwaith Lleol gyda'r addasydd hwnnw.."
-#: ../../standalone/drakgw_.c:248
+#: ../../standalone/drakgw_.c:241
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
@@ -12385,11 +12823,11 @@ msgstr ""
"Dewiswch ba addasyddion rhwydwaith fydd yn cael eu cysylltu â'ch Rhwydwaith "
"Lleol."
-#: ../../standalone/drakgw_.c:266
+#: ../../standalone/drakgw_.c:259
msgid "Network interface already configured"
msgstr "Mae rhag wyneb y rhwydwaith wedi ei ffurfwedu eisoes"
-#: ../../standalone/drakgw_.c:267
+#: ../../standalone/drakgw_.c:260
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -12405,15 +12843,15 @@ msgstr ""
"Medrwch ei wneud gyda llaw ond mae'n rhaid i chi wybod beth ydych yn ei "
"wneud."
-#: ../../standalone/drakgw_.c:272
+#: ../../standalone/drakgw_.c:265
msgid "Automatic reconfiguration"
msgstr "Ail ffurfweddiad awtomatig"
-#: ../../standalone/drakgw_.c:273
+#: ../../standalone/drakgw_.c:266
msgid "Show current interface configuration"
msgstr "Dangoswch y ffurfweddiad rhag wyneb cyfredol"
-#: ../../standalone/drakgw_.c:275
+#: ../../standalone/drakgw_.c:268
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -12430,7 +12868,7 @@ msgstr ""
"Priodweddau IP: %s\n"
"Gyrrwr: %s"
-#: ../../standalone/drakgw_.c:287
+#: ../../standalone/drakgw_.c:280
msgid ""
"I can keep your current configuration and assume you already set up a DHCP "
"server; in that case please verify I correctly read the C-Class Network that "
@@ -12449,54 +12887,42 @@ msgstr ""
"Neu, medraf ail ffurfweddu eich rhag wyneb ac (ail)ffurfweddi gwasanaethwr "
"DHCP ar eich cyfer.\n"
-#: ../../standalone/drakgw_.c:292
+#: ../../standalone/drakgw_.c:285
msgid "C-Class Local Network"
msgstr "Rhwydwaith Lleol Dosbarth C"
-#: ../../standalone/drakgw_.c:293
+#: ../../standalone/drakgw_.c:286
msgid "(This) DHCP Server IP"
msgstr "Gwasanaethwr DHCP IP (Hwn)"
-#: ../../standalone/drakgw_.c:294
+#: ../../standalone/drakgw_.c:287
msgid "Re-configure interface and DHCP server"
msgstr "Ail ffurfweddi rhag wyneb a gwasanaethwr DHCP"
-#: ../../standalone/drakgw_.c:301
+#: ../../standalone/drakgw_.c:294
msgid "The Local Network did not finish with `.0', bailing out."
msgstr "Nid yw'r Rhwydwaith Leol yn terfynnu gyda '.0', tynnu allan."
-#: ../../standalone/drakgw_.c:312
+#: ../../standalone/drakgw_.c:305
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr ""
"Canfuwyd gwrthdaro posib yng nghyfeiriad LAN ffurfweddiad presennol %s!\n"
-#: ../../standalone/drakgw_.c:320
-msgid "Firewalling configuration detected!"
-msgstr "Wedi canfod ffurfweddiad mur gwarchod!"
-
-#: ../../standalone/drakgw_.c:321
-msgid ""
-"Warning! An existing firewalling configuration has been detected. You may "
-"need some manual fix after installation."
-msgstr ""
-"Rhybudd! Mae ffurfweddiad mur gwarchod wedi ei ganfod. Efallai bydd angen "
-"atgyweirio gyda llaw ar ôl y gosodiad."
-
-#: ../../standalone/drakgw_.c:328
+#: ../../standalone/drakgw_.c:315
msgid "Configuring..."
msgstr "Ffurfweddu..."
-#: ../../standalone/drakgw_.c:329
+#: ../../standalone/drakgw_.c:316
msgid "Configuring scripts, installing software, starting servers..."
msgstr "Ffurfweddio sgriptiau, gosod meddalwedd, cychwyn gwasanaethwyr..."
-#: ../../standalone/drakgw_.c:365
+#: ../../standalone/drakgw_.c:352
#, c-format
msgid "Problems installing package %s"
msgstr "Anhawster wrth osod pecyn %s"
-#: ../../standalone/drakgw_.c:549
+#: ../../standalone/drakgw_.c:485
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
@@ -12506,23 +12932,23 @@ msgstr ""
"Gallwch rannu cysylltiad â'r Rhyngrwyd gyda chyfrifiaduron eraill ar eich "
"Rhwydwaith Lleol gan ddefnyddio ffurfweddiad rhwydwaith awtomatig (DHCP)."
-#: ../../standalone/drakgw_.c:566
+#: ../../standalone/drakgw_.c:504
msgid "The setup has already been done, but it's currently disabled."
msgstr "Mae'r gosodiad wedi ei gyflawnu, mae wedi ei anallluogi ar hyn o bryd."
-#: ../../standalone/drakgw_.c:567
+#: ../../standalone/drakgw_.c:505
msgid "The setup has already been done, and it's currently enabled."
msgstr "Mae'r gosodiad wedi ei gyflawnu, mae wedi ei allluogi ar hyn o bryd."
-#: ../../standalone/drakgw_.c:568
+#: ../../standalone/drakgw_.c:506
msgid "No Internet Connection Sharing has ever been configured."
msgstr "Nid oes Rhannu Cysylltiad â'r Rhyngrwyd wedi eu ffurfweddu o'r blaen."
-#: ../../standalone/drakgw_.c:573
+#: ../../standalone/drakgw_.c:511
msgid "Internet connection sharing configuration"
msgstr "Ffurfweddiad rhannu cysylltiad â'r Rhyngrwyd"
-#: ../../standalone/drakgw_.c:580
+#: ../../standalone/drakgw_.c:518
#, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -12537,6 +12963,143 @@ msgstr ""
"\n"
"Cliciwch Ffurfweddu i gychwyn y dewin gosod."
+#: ../../standalone/draksound_.c:46
+msgid "No Sound Card detected!"
+msgstr "Heb ganfod Cerdyn Sain!"
+
+#: ../../standalone/draksound_.c:47
+msgid ""
+"No Sound Card has been detected on your machine. Please verify that a Linux-"
+"supported Sound Card is correctly plugged in.\n"
+"\n"
+"\n"
+"You can visit our hardware database at:\n"
+"\n"
+"\n"
+"http://www.linux-mandrake.com/en/hardware.php3"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:32
+msgid "package ImageMagick is required for correct working"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:76
+msgid "first step creation"
+msgstr "creu'r cam cyntaf"
+
+#: ../../standalone/draksplash_.c:77
+msgid "final resolution"
+msgstr "cydraniad terfynnol"
+
+#: ../../standalone/draksplash_.c:78 ../../standalone/draksplash_.c:170
+msgid "choose image file"
+msgstr "dewis ffeil delwedd"
+
+#: ../../standalone/draksplash_.c:79
+msgid "Theme name"
+msgstr "Enw Thema"
+
+#: ../../standalone/draksplash_.c:81
+msgid "make bootsplash step 2"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:82
+msgid "go to lilosplash configuration"
+msgstr "mynd i fffurfweddiad lilosplash"
+
+#: ../../standalone/draksplash_.c:83
+msgid "quit"
+msgstr "gadael"
+
+#: ../../standalone/draksplash_.c:84
+msgid "save theme"
+msgstr "cadw thema"
+
+#: ../../standalone/draksplash_.c:85
+msgid "browse"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:98 ../../standalone/draksplash_.c:159
+msgid "Configure bootsplash picture"
+msgstr "Ffurfweddu llun croeso cychwyn"
+
+#: ../../standalone/draksplash_.c:99
+msgid "x coordinate of text box in number of character"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:100
+msgid "y coordinate of text box in number of character"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:101
+msgid "text width"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:102
+msgid "text box height"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:103
+msgid "the progress bar x coordinate of its upper left corner"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:104
+msgid "the progress bar y coordinate of its upper left corner"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:105
+msgid "the width of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:106
+msgid "the heigth of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:107
+msgid "the color of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:119
+msgid "go back"
+msgstr "mynd nôl"
+
+#: ../../standalone/draksplash_.c:120
+msgid "preview"
+msgstr "rhagolwg"
+
+#: ../../standalone/draksplash_.c:121
+msgid "choose color"
+msgstr "dewis lliw"
+
+#: ../../standalone/draksplash_.c:124
+msgid "Display logo on Console"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:125
+msgid "Make kernel message quiet by default"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:161 ../../standalone/draksplash_.c:330
+#, c-format
+msgid "This theme haven't yet any bootsplash in %s !"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:213
+msgid "saving Bootsplash theme..."
+msgstr ""
+
+#: ../../standalone/draksplash_.c:436
+msgid "ProgressBar color selection"
+msgstr "Dewis lliw ProgressBar"
+
+#: ../../standalone/draksplash_.c:454
+msgid "You must choose an image file first!"
+msgstr "Rhaid dewis ffeil delwedd yn gyntaf!"
+
+#: ../../standalone/draksplash_.c:463
+msgid "Generating preview ..."
+msgstr "Cynhyrchu rhagolwg..."
+
#: ../../standalone/drakxtv_.c:49
msgid ""
"XawTV isn't installed!\n"
@@ -12557,9 +13120,8 @@ msgid "Canada (cable)"
msgstr "Canada (cabl)"
#: ../../standalone/drakxtv_.c:66
-#, fuzzy
msgid "USA (broadcast)"
-msgstr "UDA (bcast)"
+msgstr "UDA (darlledu)"
#: ../../standalone/drakxtv_.c:66
msgid "USA (cable)"
@@ -12570,14 +13132,12 @@ msgid "USA (cable-hrc)"
msgstr "UDA (cable-hrc)"
#: ../../standalone/drakxtv_.c:67
-#, fuzzy
msgid "China (broadcast)"
-msgstr "Tseina (bcast)"
+msgstr "Tseina (darlledu)"
#: ../../standalone/drakxtv_.c:67
-#, fuzzy
msgid "Japan (broadcast)"
-msgstr "Siapan (bcast)"
+msgstr "Siapan (darlledu)"
#: ../../standalone/drakxtv_.c:67
msgid "Japan (cable)"
@@ -12588,9 +13148,8 @@ msgid "East Europe"
msgstr "Dwyrain Ewrop"
#: ../../standalone/drakxtv_.c:68
-#, fuzzy
msgid "France [SECAM]"
-msgstr "Ffrainc"
+msgstr "Ffrainc(SECAM)"
#: ../../standalone/drakxtv_.c:68
msgid "Ireland"
@@ -12627,11 +13186,11 @@ msgid ""
msgstr "Rhowch eich safon teledu a gwlad"
#: ../../standalone/drakxtv_.c:109
-msgid "TV norm :"
+msgid "TV norm:"
msgstr "Safon Teledu:"
#: ../../standalone/drakxtv_.c:110
-msgid "Area :"
+msgid "Area:"
msgstr "Ardal:"
#: ../../standalone/drakxtv_.c:114
@@ -12643,9 +13202,8 @@ msgid "Scanning for TV channels"
msgstr "Sganio am Sianel Teledu"
#: ../../standalone/drakxtv_.c:125
-#, fuzzy
msgid "There was an error while scanning for TV channels"
-msgstr "Digwyddodd gwall wrth osod pecyn"
+msgstr "Digwyddodd gwall wrth sganio am sianelu teledu"
#: ../../standalone/drakxtv_.c:126
msgid "XawTV isn't installed!"
@@ -12709,7 +13267,7 @@ msgstr ""
"Mae'r newid wedi ei gyflawni, ond i fod yn effeithiol mae'n rhaid i chi "
"allgofnodi"
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:517
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:515
msgid "logdrake"
msgstr "logdrake"
@@ -12818,9 +13376,8 @@ msgid "Content of the file"
msgstr "Cynnwys y ffeil"
#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:391
-#, fuzzy
msgid "Mail alert"
-msgstr "Rhybudd E-bost/SMS"
+msgstr "Rhybudd e-bost"
#: ../../standalone/logdrake_.c:267
#, c-format
@@ -12828,18 +13385,16 @@ msgid "please wait, parsing file: %s"
msgstr "arhoswch, dosbarthu ffeil: %s"
#: ../../standalone/logdrake_.c:408
-#, fuzzy
msgid "Mail alert configuration"
-msgstr "Rhybudd ffurfweddiad E-bost/SMS"
+msgstr "Ffurfweddiad rhybudd e-bost"
#: ../../standalone/logdrake_.c:409
-#, fuzzy
msgid ""
"Welcome to the mail configuration utility.\n"
"\n"
"Here, you'll be able to set up the alert system.\n"
msgstr ""
-"Croeso i'r gwasanaeth ffurfweddu e-bost/SMS\n"
+"Croeso i'r gwasanaeth ffurfweddu e-bost\n"
"\n"
"Yma bydd modd i chi osod y system rhybuddio.\n"
@@ -12848,39 +13403,32 @@ msgid "Apache World Wide Web Server"
msgstr ""
#: ../../standalone/logdrake_.c:417
-#, fuzzy
msgid "Domain Name Resolver"
-msgstr "Enw parth"
+msgstr "Datrysydd Enw Parth"
#: ../../standalone/logdrake_.c:418
-#, fuzzy
msgid "Ftp Server"
-msgstr "Gwasanaethwr NIS"
+msgstr "Gwasanaethwr Ftp"
#: ../../standalone/logdrake_.c:419
-#, fuzzy
msgid "Postfix Mail Server"
-msgstr "Gwasanaethwr e-bost Postfix, gwasanaethwr newyddion Inn"
+msgstr "Gwasanaethwr E-bost Postfix"
#: ../../standalone/logdrake_.c:420
-#, fuzzy
msgid "Samba Server"
-msgstr "Gwasanaethwr NIS"
+msgstr "Gwasanaethwr Samba"
#: ../../standalone/logdrake_.c:421
-#, fuzzy
msgid "SSH Server"
-msgstr "Gwasanaethwr NIS"
+msgstr "Gwasanaethwr SSH"
#: ../../standalone/logdrake_.c:422
-#, fuzzy
msgid "Webmin Service"
-msgstr "Gwasanaethau"
+msgstr "Gwasanaethau Webmin"
#: ../../standalone/logdrake_.c:423
-#, fuzzy
msgid "Xinetd Service"
-msgstr "Gwasanaethwr Argraffydd"
+msgstr "Gwasanaeth Xinetd"
#: ../../standalone/logdrake_.c:430
msgid "service setting"
@@ -12888,7 +13436,7 @@ msgstr "gosodiad gwasanaeth"
#: ../../standalone/logdrake_.c:431
msgid ""
-"You will receive an alert if one of the selected service is no more running"
+"You will receive an alert if one of the selected services is no more running"
msgstr "Byddwch yn derbyn rhybudd os na fydd un o'r gwasanaethu hyn yn rhedeg"
#: ../../standalone/logdrake_.c:443
@@ -12904,24 +13452,22 @@ msgid "alert configuration"
msgstr "ffurfweddiad rhybudd"
#: ../../standalone/logdrake_.c:458
-#, fuzzy
msgid "Please enter your email address below "
-msgstr "Rhowch eich cyfrinair"
+msgstr "Rhowch eich cyfeiriad e-bost islaw"
-#: ../../standalone/logdrake_.c:499
+#: ../../standalone/logdrake_.c:497
msgid "Save as.."
msgstr "Cadw fel..."
-#: ../../standalone/mousedrake_.c:43
+#: ../../standalone/mousedrake_.c:45
msgid "Please, choose the type of your mouse."
msgstr "Dewiswch math eich llygoden"
-#: ../../standalone/mousedrake_.c:57
+#: ../../standalone/mousedrake_.c:58
msgid "Emulate third button?"
msgstr "Efelychu'r trydydd botwm?"
-#: ../../standalone/printerdrake_.c:48
-#, fuzzy
+#: ../../standalone/printerdrake_.c:57
msgid "Reading printer data ..."
msgstr "Darllen data argraffydd..."
@@ -12933,33 +13479,43 @@ msgstr "Canfod dyfeisiadau..."
msgid "Test ports"
msgstr "Profwch y pyrth"
-#: ../../standalone/scannerdrake_.c:52
+#: ../../standalone/scannerdrake_.c:53 ../../standalone/scannerdrake_.c:68
+#: ../../standalone/scannerdrake_.c:81
#, c-format
-msgid "%s found on %s, configure it ?"
+msgid "The %s is not supported by this version of Mandrake Linux."
+msgstr ""
+
+#: ../../standalone/scannerdrake_.c:56
+#, c-format
+msgid "%s found on %s, configure it?"
msgstr "Wedi canfod %s ar %s, ei ffurfweddi?"
#: ../../standalone/scannerdrake_.c:59
+#, c-format
+msgid "%s is not in the scanner database, configure it manually?"
+msgstr ""
+
+#: ../../standalone/scannerdrake_.c:65
msgid "Select a scanner"
msgstr "Dewiswch sganiwr"
-#: ../../standalone/scannerdrake_.c:79
+#: ../../standalone/scannerdrake_.c:93
#, c-format
msgid "This %s scanner is unsupported"
msgstr "Nid yw sganiwr %s yn cael ei gynnal"
-#: ../../standalone/scannerdrake_.c:93
+#: ../../standalone/scannerdrake_.c:107
#, c-format
msgid ""
"Scannerdrake was not able to detect your %s scanner.\n"
"Please select the device where your scanner is plugged"
msgstr ""
-#: ../../standalone/scannerdrake_.c:95
-#, fuzzy
+#: ../../standalone/scannerdrake_.c:109
msgid "choose device"
-msgstr "Dyfais cychwyn"
+msgstr "dewis dyfais"
-#: ../../standalone/scannerdrake_.c:101
+#: ../../standalone/scannerdrake_.c:115
#, c-format
msgid ""
"This %s scanner must be configured by printerdrake.\n"
@@ -12969,7 +13525,7 @@ msgstr ""
"Rhaid i sganiwr %s gael ei ffurfweddu gan printerdrake.\n"
"Medrwch gychwyn printerdrake o adran Galedwedd Canolfan Rheoli Mandrake"
-#: ../../standalone/scannerdrake_.c:106
+#: ../../standalone/scannerdrake_.c:120
#, c-format
msgid ""
"Your %s scanner has been configured.\n"
@@ -12977,48 +13533,18 @@ msgid ""
"applications menu."
msgstr ""
-#: ../../standalone/service_harddrake_.c:57
+#: ../../standalone/service_harddrake_.c:39
#, c-format
msgid "Some devices in the \"%s\" hardware class were removed:\n"
msgstr ""
-#: ../../standalone/service_harddrake_.c:61
+#: ../../standalone/service_harddrake_.c:43
#, c-format
msgid ""
"\n"
"Some devices in the %s class were added:\n"
msgstr ""
-#: ../../standalone/tinyfirewall_.c:30
-msgid "Firewalling Configuration"
-msgstr "Ffurfweddiad Mur Gwarchod"
-
-#: ../../standalone/tinyfirewall_.c:43
-msgid "Firewalling configuration"
-msgstr "Ffurfweddiad Mur Gwarchod"
-
-#: ../../standalone/tinyfirewall_.c:78
-msgid ""
-"Firewalling\n"
-"\n"
-"You already have set up a firewall.\n"
-"Click on Configure to change or remove the firewall"
-msgstr ""
-"Mur Gwarchod\n"
-"\n"
-"Rydych eisoes wedi gosod mur gwarchod\n"
-"Cliciwch Ffurfweddu i newid neu dynnu'r mur gwarchod"
-
-#: ../../standalone/tinyfirewall_.c:82
-msgid ""
-"Firewalling\n"
-"\n"
-"Click on Configure to set up a standard firewall"
-msgstr ""
-"Mur gwarchod\n"
-"\n"
-"Cliciwch Ffurfweddu i osod mur gwarchod safonnol"
-
#: ../../steps.pm_.c:14
msgid "Choose your language"
msgstr "Dewis eich iaith"
@@ -13091,224 +13617,7 @@ msgstr "Diweddariadau system gosod"
msgid "Exit install"
msgstr "Gadael gosod"
-#: ../../tinyfirewall.pm_.c:9
-msgid ""
-"tinyfirewall configurator\n"
-"\n"
-"This configures a personal firewall for this Mandrake Linux machine.\n"
-"For a powerful dedicated firewall solution, please look to the\n"
-"specialized MandrakeSecurity Firewall distribution."
-msgstr ""
-"ffurfweddiadur tinyfirewall\n"
-"\n"
-"Mae hwn yn ffurfweddu mur gwarchod personol ar gyfer y peiriant \n"
-"Mandrake Linux hwn. Am fur gwarchod pwrpasol pwerus, \n"
-"edrychwch ddosbarthiad arbennigol MandrakeSecurity Firewall."
-
-#: ../../tinyfirewall.pm_.c:14
-msgid ""
-"We'll now ask you questions about which services you'd like to allow\n"
-"the Internet to connect to. Please think carefully about these\n"
-"questions, as your computer's security is important.\n"
-"\n"
-"Please, if you're not currently using one of these services, firewall\n"
-"it off. You can change this configuration anytime you like by\n"
-"re-running this application!"
-msgstr ""
-"Byddwn nawr yn gofyn cwestiynnau am wasanaethau'r hoffech eu \n"
-"caniatáu i'r Rhyngrwyd gysylltu â hwy. Meddyliwch yn ofalus am y \n"
-"cwestiynnau, mae diogelwch eich cyfrifiadur yn bwysig.\n"
-"\n"
-"Os nad ydych yn defnyddio un o'r gwasanaethau hyn \n"
-"gwarchodwch ef. Mae modd newid y ffurfweddiad pryd \n"
-"bynnag hoffech chi drwy ail redeg y rhaglen."
-
-#: ../../tinyfirewall.pm_.c:21
-msgid ""
-"Are you running a web server on this machine that you need the whole\n"
-"Internet to see? If you are running a webserver that only needs to be\n"
-"accessed by this machine, you can safely answer NO here.\n"
-"\n"
-msgstr ""
-"A ydych yn rhedeg gwasanaethwr gwe ar y peiriant hwn i'r holl\n"
-"Ryngrwyd ei weld? Os ydych yn rhedeg gwasanaethwr gwe\n"
-"sydd ar gyfer y peiriant hwn yn unig, yna atebwch NA.\n"
-
-#: ../../tinyfirewall.pm_.c:26
-msgid ""
-"Are you running a name server on this machine? If you didn't set one\n"
-"up to give away IP and zone information to the whole Internet, please\n"
-"answer no.\n"
-"\n"
-msgstr ""
-"A ydych yn rhedeg gwasanaethwr enw ar y peiriant hwn? Os nad ydych wedi\n"
-"gosod un i rhannu gwybodaeth IP a parth i'r holl Ryngrwyd, yna atebwch NA.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:31
-msgid ""
-"Do you want to allow incoming Secure Shell (ssh) connections? This\n"
-"is a telnet-replacement that you might use to login. If you're using\n"
-"telnet now, you should definitely switch to ssh. telnet is not\n"
-"encrypted -- so some attackers can steal your password if you use\n"
-"it. ssh is encrypted and doesn't allow for this eavesdropping."
-msgstr ""
-"Ydych chi am ganiatáu cysylltiadau Secure Shell (ssh)? Mewngofnod\n"
-"posib i gymryd lle telnet yw hwn. Os ydych yn defnyddio telnet, dylech wir \n"
-"newid i ssh. Nid yw telnet wedi ei amgryptio - gall rhai ymosodwyr ddwyn\n"
-"eich cyfrinair. Mae ssh wedi ei amgryptio ac nid yw'n caniatáu i eraill "
-"wrando."
-
-#: ../../tinyfirewall.pm_.c:36
-msgid ""
-"Do you want to allow incoming telnet connections?\n"
-"This is horribly unsafe, as we explained in the previous screen. We\n"
-"strongly recommend answering No here and using ssh in place of\n"
-"telnet.\n"
-msgstr ""
-"A ydych am ganiatáu cysylltiadau telnet i mewn?\n"
-"Mae hyn yn erchyll o aniogel, fel soniwyd yn y sgrin diwethaf. Rydym\n"
-" yn argymell yn gryf eich bod yn ateb Na yn fan hyn a defnyddio ssh\n"
-"yn lle telnet\n"
-
-#: ../../tinyfirewall.pm_.c:41
-msgid ""
-"Are you running an FTP server here that you need accessible to the\n"
-"Internet? If you are, we strongly recommend that you only use it for\n"
-"Anonymous transfers. Any passwords sent by FTP can be stolen by some\n"
-"attackers, since FTP also uses no encryption for transferring passwords.\n"
-msgstr ""
-"A ydych yn rhedeg gwasanaethwr FTP sydd angen cysylltiad â'r Rhyngrwyd?\n"
-"Os ydych rydym yn argymell yn gryf eich bod yn ei ddefnyddio ar gyfer\n"
-"trosglwyddiadau anhysbys yn unig. Gall unrhyw gyfrinair sy'n cael ei anfon\n"
-"drwy FTP gael ei ddwyn, gan nad yw FTP'n defnyddio amgryptiad ar gyfer\n"
-"trosglwyddo cyfrineiriau\n"
-
-#: ../../tinyfirewall.pm_.c:46
-msgid ""
-"Are you running a mail server here? If you're sending you \n"
-"messages through pine, mutt or any other text-based mail client,\n"
-"you probably are. Otherwise, you should firewall this off.\n"
-"\n"
-msgstr ""
-"A ydych yn rhedeg gwasanaethwr e-bost? Os ydych yn\n"
-"anfon eich negeseuon drwy pine, mutt neu unrhyw gleient testun arall\n"
-"yna mae'n debyg eich bod. Oni bai am hynny, dylech ddiogelu hwn gyda\n"
-"mur gwarchod\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:51
-msgid ""
-"Are you running a POP or IMAP server here? This would\n"
-"be used to host non-web-based mail accounts for people via \n"
-"this machine.\n"
-"\n"
-msgstr ""
-"A ydych yn rhedeg gwasanaethwr POP neu IMAP? Byddai\n"
-"hyn yn cael ei ddefnyddio fel gwestai ar gyfer cyfrifon e-bost\n"
-"nad ydynt yn gysylltiedig a'r we, drwy'r peiriant hwn\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:56
-msgid ""
-"You appear to be running a 2.2 kernel. If your network IP\n"
-"is automatically set by a computer in your home or office \n"
-"(dynamically assigned), we need to allow for this. Is\n"
-"this the case?\n"
-msgstr ""
-"Mae'n ymddangos eich bod yn rhedeg cnewyllyn 2.2 Os\n"
-"yw eich rhwydwaith wedi ei greu'n awtomatig gan gyfrifiadur\n"
-"yn eich cartref neu swyddfa (neilltuad dynamigol) rhaid caniatáu\n"
-"ar gyfer hyn. Ai dyma sut mae hi?\n"
-
-#: ../../tinyfirewall.pm_.c:61
-msgid ""
-"Is your computer getting time syncronized to another computer?\n"
-"Mostly, this is used by medium-large Unix/Linux organizations\n"
-"to synchronize time for logging and such. If you're not part\n"
-"of a larger office and haven't heard of this, you probably \n"
-"aren't."
-msgstr ""
-"Ydi eich cyfrifiadur yn cydweddi amser gyda cyfrifiadur arall?\n"
-"Fel rheol, mae hyn yn cael ei ddefnyddio gan gyrff Unix/Linux\n"
-"cymhedrol-mawr i gydweddu amser ar gyfer mewngofnodi ag ati.\n"
-"Os nad ydych yn rhan o swyddfa fwy ac heb glywed am hyn, mwy\n"
-"na thebych, nid ydych."
-
-#: ../../tinyfirewall.pm_.c:66
-msgid ""
-"Configuration complete. May we write these changes to disk?\n"
-"\n"
-"\n"
-"\n"
-msgstr ""
-"Mae furfweddiad wedi ei gwblhau. Gawn ni ysgrifennu'r newidiadau hyn i "
-"ddisg?\n"
-"\n"
-"\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:82
-#, c-format
-msgid "Can't open %s: %s\n"
-msgstr "Methu agor %s: %s\n"
-
-#: ../../tinyfirewall.pm_.c:84
-#, c-format
-msgid "Can't open %s for writing: %s\n"
-msgstr "Methu agor %s ar gyfer ysgrifennu: %s\n"
-
-#: ../../tinyfirewall.pm_.c:178
-msgid "No I don't need DHCP"
-msgstr "Nid wyf angen DHCP"
-
-#: ../../tinyfirewall.pm_.c:178
-msgid "Yes I need DHCP"
-msgstr "Rwyf eisiau DHCP"
-
-#: ../../tinyfirewall.pm_.c:179
-msgid "No I don't need NTP"
-msgstr "Nid wyf angen NTP"
-
-#: ../../tinyfirewall.pm_.c:179
-msgid "Yes I need NTP"
-msgstr "Rwyf eisiau NTP"
-
-#: ../../tinyfirewall.pm_.c:180 ../../tinyfirewall.pm_.c:184
-msgid "Don't Save"
-msgstr "Peidio Cadw"
-
-#: ../../tinyfirewall.pm_.c:180 ../../tinyfirewall.pm_.c:184
-#: ../../tinyfirewall.pm_.c:204
-msgid "Save & Quit"
-msgstr "Cadw a Gadael"
-
-#: ../../tinyfirewall.pm_.c:195 ../../tinyfirewall.pm_.c:199
-msgid "Firewall Configuration Wizard"
-msgstr "Dewin Ffurfweddu'r Mur Cadarn"
-
-#: ../../tinyfirewall.pm_.c:197
-msgid "No (firewall this off from the internet)"
-msgstr "Na ((rhowch hwn tu nôl i fur cadarn rhag y rhyngrwyd)"
-
-#: ../../tinyfirewall.pm_.c:198
-msgid "Yes (allow this through the firewall)"
-msgstr "Iawn (caniatewch hwn drwy'r mur cadarn)"
-
-#: ../../tinyfirewall.pm_.c:230
-msgid "Please Wait... Verifying installed packages"
-msgstr "Arhoswch,... Gwirio'r pecynnau sydd wedi eu gosod"
-
-#: ../../tinyfirewall.pm_.c:236
-#, c-format
-msgid ""
-"Failure installing the needed packages : %s and Bastille.\n"
-" Try to install them manually."
-msgstr ""
-"Wedi methu gosod y pecynnau angenrheidiol: %s a Bastille.\n"
-" Ceisiwch eu gosod gyda llaw."
-
-#: ../../ugtk.pm_.c:619
+#: ../../ugtk.pm_.c:594
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
@@ -13444,6 +13753,10 @@ msgid "Graphical Environment"
msgstr "Amgylchedd Graffig"
#: ../../share/compssUsers:999
+msgid "Development"
+msgstr "Datblygiad"
+
+#: ../../share/compssUsers:999
msgid "Apache, Pro-ftpd"
msgstr "Apache, Pro-ftpd"
@@ -13521,7 +13834,7 @@ msgstr "Clientiaid ar gyfer protocolau amrywiol yn cynnwys ssh"
#: ../../share/compssUsers:999
msgid "LSB"
-msgstr ""
+msgstr "LSB"
#: ../../share/compssUsers:999
msgid "Internet gateway"
@@ -13555,387 +13868,92 @@ msgstr "Aml-gyfrwng - Llosgi CD"
msgid "Scientific Workstation"
msgstr "Gweithfan Gwyddonol"
-#~ msgid "$mode: $warning"
-#~ msgstr "$mode: $warning"
-
-#, fuzzy
-#~ msgid ""
-#~ "This level is to be used with care. It makes your system more easy to "
-#~ "use,\n"
-#~ " but very sensitive: it must not be used for a machine "
-#~ "connected to others\n"
-#~ " or to the Internet. There is no password access."
-#~ msgstr ""
-#~ "Rhaid defnyddio'r lefel hwn a gofal. Mae'n gwneud eich system yn haws ei\n"
-#~ "ddefnyddio ond mae'n sensitif iawn: rhaid peidio ei ddefnyddio fel "
-#~ "peiriant i'w\n"
-#~ "gysylltu ag eraill nag i'r Rhyngrwyd. Does dim cysylltiad drwy gyfrinair."
-
-#, fuzzy
-#~ msgid ""
-#~ "With this security level, the use of this system as a server becomes "
-#~ "possible.\n"
-#~ " The security is now high enough to use the system as a "
-#~ "server which can accept\n"
-#~ " connections from many clients. Note: if your machine is "
-#~ "only a client on the Internet, you should choose a lower level."
-#~ msgstr ""
-#~ "Gyda'r lefel diogelwch hwn, mae defnydd y system fel gwasanaethwr yn "
-#~ "bosibl.\n"
-#~ "Mae diogelwch yn ddigon uchel i ddefnyddio'r system fel gwasanaethwr sy'n "
-#~ "derbyn\n"
-#~ "cysylltiad gan amryw o gleientiaid. Sylwer: os mae cleient yn unig yw "
-#~ "eich peiriant ar y Rhyngrwyd, yna mae'n well i chi ddewis lefel is."
-
-#, fuzzy
-#~ msgid "Basic Options"
-#~ msgstr "Dewisiadau"
-
-#, fuzzy
-#~ msgid "Security Checks"
-#~ msgstr "Diogelwch"
-
-#~ msgid "Data list to include on CDROM."
-#~ msgstr "Rhestr data i'w gynnwys ar CDROM"
-
-#~ msgid "Please choose your CD space"
-#~ msgstr "Dewiswch eich gofod CD"
-
-#~ msgid "Please enter the cd writer speed"
-#~ msgstr "Rhowch gyflymder yr ysgrifennydd CD"
-
-#~ msgid "Please check if you want to erase your CDRW before"
-#~ msgstr "Gwiriwch os ydych am ddileu eich CDRW cyn"
-
-#~ msgid "Please enter your CD Writer device name (ex: 0,1,0)"
-#~ msgstr "Rhowch enw dyfais eich Ysgrifennydd CD (ex: 0,1,0)"
-
-#~ msgid "Please check if you want to include install boot on your CD."
-#~ msgstr "Ticiwch os ydych eisiau cynnwys cychwyn gosod ar eich CD."
-
-#~ msgid "Url should begin with 'ftp:'"
-#~ msgstr "Dylai'r URL ddechrau gyda 'ftp:'"
-
#~ msgid ""
-#~ "Please check if you want to include\n"
-#~ " install boot on your CD."
-#~ msgstr ""
-#~ "Gwiriwch os ydych am gynnwys\n"
-#~ " cychwyn gosod ar eich CD"
-
-#, fuzzy
-#~ msgid "Windows PDC"
-#~ msgstr "Windows (FAT32)"
-
-#, fuzzy
-#~ msgid "PDC Server Name"
-#~ msgstr "Gweinydd NTP"
-
-#~ msgid ""
-#~ "\n"
-#~ "Welcome to the Printer Setup Wizard\n"
-#~ "\n"
-#~ "This wizard will help you to install your printer(s) connected to this "
-#~ "computer.\n"
+#~ "The first time you try the X configuration, you may not be very "
+#~ "satisfied\n"
+#~ "with its display (screen is too small, shifted left or right...). Hence,\n"
+#~ "even if X starts up correctly, DrakX then asks you if the configuration\n"
+#~ "suits you. It will also propose to change it by displaying a list of "
+#~ "valid\n"
+#~ "modes it could find, asking you to select one.\n"
#~ "\n"
-#~ "Please plug in your printer(s) on this computer and turn it/them on. "
-#~ "Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
-#~ "want to set up your printer(s) now.\n"
-#~ "\n"
-#~ "Note that some computers can crash during the printer auto-detection, "
-#~ "turn off \"Auto-detect printers\" to do a printer installation without "
-#~ "auto-detection. Use the \"Expert Mode\" of printerdrake when you want to "
-#~ "set up printing on a remote printer if printerdrake does not list it "
-#~ "automatically."
+#~ "As a last resort, if you still cannot get X to work, choose \"Change\n"
+#~ "graphics card\", select \"Unlisted card\", and when prompted on which\n"
+#~ "server, choose \"FBDev\". This is a failsafe option which works with any\n"
+#~ "modern graphics card. Then choose \"Test again\" to be sure."
#~ msgstr ""
-#~ "\n"
-#~ "Croeso i Ddewin Gosod Argraffydd\n"
-#~ "\n"
-#~ "Bydd y dewin yn eich cynorthwyo i osod eich argraffydd(ion) sy'n "
-#~ "gysylltiedig â'r cyfrifiadur hwn.\n"
-#~ "Cysylltwch yr argraffydd(ion) i'r cyfrifiadur a'i(u) troi mlaen. Cliciwch "
-#~ "\"Nesaf\" pan rydych yn barod, ac ar \"Diddymu\"pan nad ydych am osod "
-#~ "eich argraffydd(ion) ar hyn o bryd.\n"
-#~ "\n"
-#~ "Sylwch fod rhai cyfrifiaduron yn medru methu yn ystod awto ganfod "
-#~ "argraffydd, diffoddwch \"Awto ganfod argraffyddion\" i osod argraffydd "
-#~ "heb awto ganfod. Defnyddiwch \"Modd Arbenigwr\" printdrake pan fyddwch am "
-#~ "osod argraffydd pell os nad yw printerdrake yn ei restri'n awtomatig."
-
-#~ msgid "Auto-Detection of Printers"
-#~ msgstr "Awto ganfod Argraffyddion"
+#~ "Efallai na fyddwch yn fodlon iawn gyda dagosiad ffurfweddiad X y tro\n"
+#~ "cyntaf fyddwch yn ei ddefnyddio (sgrin yn rhy fach, i un ochr, ag ati)\n"
+#~ "Felly mae DrakX yn gofyn i chi os yw'r ffurfweddiad yn iawn. Bydd\n"
+#~ "hefyd yn cynnig ei newid drwy gynnig restr o foddau dilys daeth o hyd\n"
+#~ "iddynt, i chi gael dewis un.\n"
+#~ " \n"
+#~ "Os nad ydych yn medru cael X i weithio, dewiswch \" Newid cerdyn graffig"
+#~ "\",\n"
+#~ "dewiswch \"Cerdyn heb ei restri\", ac yna wrth ddewis gwasanaethwr, "
+#~ "dewis\n"
+#~ "\"FBDev\". Mae hwn yn ddewis diogelwch sy'n gweithio gydag unrhyw gerdyn\n"
+#~ "graffig modern. Dewiswch \" Profwch eto\" i fod yn siwr."
+
+#~ msgid "Internet and Messaging"
+#~ msgstr "Y Rhygnrwyd a Negesu"
+
+#~ msgid "Multimedia and Graphics"
+#~ msgstr "Amlgyfrwng a Graffigau"
#~ msgid ""
-#~ "Printerdrake is able to auto-detect your locally connected parallel and "
-#~ "USB printers for you, but note that on some systems the auto-detection "
-#~ "CAN FREEZE YOUR SYSTEM AND THIS CAN LEAD TO CORRUPTED FILE SYSTEMS! So do "
-#~ "it ON YOUR OWN RISK!\n"
-#~ "\n"
-#~ "Do you really want to get your printers auto-detected?"
+#~ "Mandrake Linux 8.2 provides 11 different graphical desktop environments "
+#~ "and window managers to choose from including GNOME 1.4, KDE 2.2.2, Window "
+#~ "Maker 0.8, and the rest"
#~ msgstr ""
-#~ "Mae Printerdrake yn medru awto ganfod eich argraffyddion paralel ac USB "
-#~ "lleol, ond sylwch fod awto ganfod yn MEDRU RHEWI EICH SYSTEM AC ARWAIN AT "
-#~ "SYSTEMAU FFEIL LLWGR! Gwnewch hyn AR EICH MENTER EICH HUN!\n"
-#~ "\n"
-#~ "Ydych eisiau i'ch argraffydd gael ei awto ganfod?"
+#~ "Mae Mandrake Linux 8.2 yn darparu 11 amgylchedd penbwrdd graffigol a "
+#~ "rheolwyr ffenestri gwahanol i ddewis ohonynt gan gynnwys Gnome 1.4, KDE "
+#~ "2.2.2., Window Maker 0.8, a'r gweddill"
-#~ msgid "Set up printer manually"
-#~ msgstr "Gosod argraffydd gyda llaw"
+#~ msgid "Server Software"
+#~ msgstr "Meddalwedd Gwasanethwyr"
-#~ msgid ""
-#~ "Network printers can only be installed after the installation. Choose "
-#~ "\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
-#~ msgstr ""
-#~ "Dim ond ar ôl cwblhau'r gosodiad mae modd gosod argraffyddion rhwydwaith. "
-#~ "Dewiswch \"Caledwedd\" ac yna \"Argraffydd\" yng Nghanolfan Rheoli "
-#~ "Mandrake"
+#~ msgid "MandrakeCampus"
+#~ msgstr "MandrakeCampus"
#~ msgid ""
-#~ "To install network printers, click \"Cancel\", switch to the \"Expert Mode"
-#~ "\", and click \"Add a new printer\" again."
+#~ "Would you like to learn Linux simply, quickly, and for free? MandrakeSoft "
+#~ "provides free Linux training, as well as a way to test your progress, at "
+#~ "MandrakeCampus -- our online training center"
#~ msgstr ""
-#~ "I osod argraffyddion rhwydwaith, cliciwch \"Diddymu\", trowch i \"Modd "
-#~ "Arbenigwr\", clicio \"Ychwanegu argraffydd newydd\" eto."
+#~ "Hoffech chi ddysgu Linux yn syml, yn gyflym, ac am ddim? Mae MandrakeSoft "
+#~ "yn darparu hyfforddiant ar Linux, yn ogystal â ffordd i fesur eich "
+#~ "cynnydd, yn MandrakeCampus - ein canolfan hyfforddiant ar-lein"
-#, fuzzy
#~ msgid ""
-#~ "Is your printer a multi-function device from HP (OfficeJet, PSC, LaserJet "
-#~ "1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart or an HP "
-#~ "LaserJet 2200?"
+#~ "Quality support from the Linux Community, and from MandrakeSoft, is just "
+#~ "around the corner. And if you're already a Linux veteran, become an "
+#~ "\"Expert\" and share your knowledge at our support website"
#~ msgstr ""
-#~ "A yw eich argraffydd yn ddyfais amlbwrpas gan HP (OfficeJet, PSC, "
-#~ "PhotoSmart LaserJet 1100/1200/1220/3200/3300 gyda sganiwr)"
-
-#~ msgid "Installing HPOJ package..."
-#~ msgstr "Gosod pecynnau HPOJ"
+#~ "Mae cefnogaeth werthfawr gan Gymuned Linux, a chan MandrakeSoft i'w gael "
+#~ "yn hwylus. Ac os ydych yn hen law ar Linux, cewch fod yn \"Arbenigwr\" a "
+#~ "rhannu eich gwybodaeth ar ein safle cefnogi"
-#~ msgid "Checking device and configuring HPOJ..."
-#~ msgstr "Gwirio a ffurfweddu dyfais HPOJ..."
-
-#, fuzzy
-#~ msgid "Installing SANE packages..."
-#~ msgstr "Gosod pecynnau SANE"
-
-#, fuzzy
-#~ msgid "Installing mtools packages..."
-#~ msgstr "Gosod pecynnau..."
-
-#~ msgid "Scanning on your HP multi-function device"
-#~ msgstr "Sganio eich dyfais HP aml bwrpas"
-
-#, fuzzy
-#~ msgid "Photo memory card access on your HP multi-function device"
-#~ msgstr "Sganio eich dyfais HP aml bwrpas"
-
-#~ msgid "Making printer port available for CUPS..."
-#~ msgstr "Gwneud porth argraffydd ar gael ar gyfer CUPS"
-
-#~ msgid "Control Center"
-#~ msgstr "Canolfan Rheoli"
-
-#~ msgid "Choose the tool you want to use"
-#~ msgstr "Dewiswch yr offeryn rydych am ei ddefnyddio"
-
-#~ msgid "Configure the way the system will alert you"
-#~ msgstr "Ffurfweddiwch y ffordd mae'r system yn eich rhybuddio"
-
-#~ msgid "no serial_usb found\n"
-#~ msgstr "neb ganfod serial_usb\n"
-
-#~ msgid "fsck failed with exit code %d or signal %d"
-#~ msgstr "methodd fdisk gyda cod gadael %d neu arwydd %d"
-
-#~ msgid "Graphics card identification: %s\n"
-#~ msgstr "Dynodiad y cerdyn graffeg: %s\n"
-
-#~ msgid "Choose options for server"
-#~ msgstr "Dewiswch opsiynau ar gyfer y gwasanaethwr"
-
-#~ msgid "Monitor not configured"
-#~ msgstr "Monitor heb ei ffurfweddu"
-
-#~ msgid "Graphics card not configured yet"
-#~ msgstr "Cerdyn graffig heb ei ffurfweddu eto"
-
-#~ msgid "Resolutions not chosen yet"
-#~ msgstr "Cydraniad heb ei ddewis eto"
+#~ msgid "MandrakeConsulting"
+#~ msgstr "MandrakeConsulting"
#~ msgid ""
-#~ "\n"
-#~ "try to change some parameters"
+#~ "For all of your IT projects, our consultants are ready to analyze your "
+#~ "requirements and offer a customized solution. Benefit from MandrakeSoft's "
+#~ "vast experience as a Linux producer to provide a true IT alternative for "
+#~ "your business organization"
#~ msgstr ""
-#~ "\n"
-#~ "ceisiwch newid rhai paramedrau"
-
-#~ msgid "An error occurred:"
-#~ msgstr "Digwyddodd gwall:"
-
-#~ msgid "Leaving in %d seconds"
-#~ msgstr "Gadael mewn %d eiliad"
-
-#~ msgid "Is this the correct setting?"
-#~ msgstr "Ydi'r gosodiad hwn yn gywir?"
-
-#~ msgid "An error occurred, try to change some parameters"
-#~ msgstr "Digwyddodd gwall, ceisiwch newid rhai paramedrau"
-
-#~ msgid "XFree86 server: %s"
-#~ msgstr "Gwasanaethwr XFree86: %s"
-
-#~ msgid "Show all"
-#~ msgstr "Dangos y cyfan"
-
-#~ msgid "Preparing X-Window configuration"
-#~ msgstr "Yn parataoi cyfluniad X-Window"
-
-#~ msgid "What do you want to do?"
-#~ msgstr "Beth ydych eisiau ei wneud?"
+#~ "Ar gyfer eich holl brojectau TG, mae ein hymgynghorwyr ar gael i "
+#~ "ddadansoddi eich anghenion a chynnig atebion unigryw i chi. Medrwch "
+#~ "fanteisio ar brofiad eang MandrakeSoft fel cynhyrchydd Linux i ddarparu "
+#~ "ateb TG gwell i'ch busnes."
-#~ msgid "Change Monitor"
-#~ msgstr "Newid Monitor"
-
-#~ msgid "Change Graphics card"
-#~ msgstr "Newid cerdyn Graffeg"
-
-#~ msgid "Change Server options"
-#~ msgstr "Dewisiadau newid Gwasanaethwr"
-
-#~ msgid "Change Resolution"
-#~ msgstr "Newid Cydraniad"
-
-#~ msgid "Show information"
-#~ msgstr "Dangos gwybodaeth"
-
-#~ msgid "Test again"
-#~ msgstr "Profi eto"
-
-#~ msgid ""
-#~ "Your HP multi-function device was configured automatically to be able to "
-#~ "scan. Now you can scan from the command line with \"ptal-hp %s scan ..."
-#~ "\". Scanning via a graphical interface or from the GIMP is not supported "
-#~ "yet for your device. More information you will find in the \"/usr/share/"
-#~ "doc/hpoj-0.8/ptal-hp-scan.html\" file on your system. If you have an HP "
-#~ "LaserJet 1100 or 1200 you can only scan when you have the scanner option "
-#~ "installed.\n"
-#~ "\n"
-#~ "Do not use \"scannerdrake\" for this device!"
-#~ msgstr ""
-#~ "Mae eich dyfais aml bwrpas HP wedi cael ei ffurfweddu'n awtomatig i fedru "
-#~ "sganio. Medrwch sganio o'r llinell orchymyn gyda \"ptal-hp %s scan ..."
-#~ "\".. Nid yw sganio drwy gyfrwng rhyng wyneb graffigol na GIMP yn cael ei "
-#~ "gynnal eto ar gyfer eich dyfais. Mae rhagor o wybodaeth i'w gael yn ffeil "
-#~ "\"/usr/share/doc/hpoj-0.8/ptal-hp-scan.html\" ar eich system. Os oes "
-#~ "gennych HP LaserJet 1100 neu 1200 yna dim ond os oes gennych y dewis "
-#~ "sganio wedi ei osod mae modd sganio.\n"
-#~ "Peidiwch defnyddio \"scannerdrake\" ar gyfer y ddyfais hon."
-
-#~ msgid "Use Hard Drive with daemon"
-#~ msgstr "Defnyddiwch y Disg Caled gyda'i ddaemon"
-
-#~ msgid "Use FTP with daemon"
-#~ msgstr "Defnyddiwch FTP gyda daemon"
-
-#~ msgid "Package List to Install"
-#~ msgstr "Rhestr Pecynnau i'w Gosod"
-
-#~ msgid "proftpd"
-#~ msgstr "proftpd"
-
-#~ msgid "sshd"
-#~ msgstr "sshd"
-
-#~ msgid "webmin"
-#~ msgstr "webmin"
-
-#~ msgid "xinetd"
-#~ msgstr "xinetd"
-
-#~ msgid "Setting security level"
-#~ msgstr "Gosod y lefel diogelwch"
-
-#~ msgid "Select a graphics card"
-#~ msgstr "Dewiswch gerdyn graffig"
-
-#~ msgid "Choose a X driver"
-#~ msgstr "Dewiswch yrrwr X"
-
-#~ msgid "X driver"
-#~ msgstr "Gyrrwr X"
-
-#~ msgid "Warning: testing this graphics card may freeze your computer"
-#~ msgstr "Rhybydd: gall profi'r cerdyn graffig hwn rewi eich cyfrifiadur"
-
-#~ msgid "Standard VGA, 640x480 at 60 Hz"
-#~ msgstr "VGA safonol, 640x480 ar 60 Hz"
-
-#~ msgid "Super VGA, 800x600 at 56 Hz"
-#~ msgstr "Uwch VGA, 800x600 ar 56 Hz"
-
-#~ msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
-#~ msgstr "Cydnaws a 8514, 1024x768 rhyngleswyd ar 87 Hz (nid 800x600)"
-
-#~ msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
-#~ msgstr "Super VGA, 1024x768 rhyngleswyd ar 87Hz, 800x600 ar 56 Hz"
-
-#~ msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
-#~ msgstr "Extended Super VGA, 800x600 ar 60 Hz, 640x480 ar 72 Hz"
-
-#~ msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
-#~ msgstr "SVGA di-rygnlesig, 1024x768 ar 60 Hz, 800x600 ar 72 Hz"
-
-#~ msgid "High Frequency SVGA, 1024x768 at 70 Hz"
-#~ msgstr "SVGA Amledd Uchel, 1024x768 ar 70 Hz"
-
-#~ msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
-#~ msgstr "Aml-amledd sydd yn medru dangos 1280x1024 ar 60 Hz"
-
-#~ msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
-#~ msgstr "Aml-amledd sydd yn medru dangos 1280x1024 ar 74 Hz"
-
-#~ msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
-#~ msgstr "Aml-amledd sydd yn medru dangos 1280x1024 ar 76 Hz"
-
-#~ msgid "Monitor that can do 1600x1200 at 70 Hz"
-#~ msgstr "Monitor sydd yn medru dangos 1600x1200 ar 70 Hz"
-
-#~ msgid "Monitor that can do 1600x1200 at 76 Hz"
-#~ msgstr "Monitor sydd yn medru dangos 1600x1200 ar 76 Hz"
+#~ msgid "MandrakeStore"
+#~ msgstr "MandrakeStore"
#~ msgid ""
-#~ "The total size for the groups you have selected is approximately %d MB.\n"
-#~ msgstr "Cyfanswm maint y grwpiau rydych wedi eu dewis yw tua %d MB.\n"
-
-#~ msgid ""
-#~ "If you wish to install less than this size,\n"
-#~ "select the percentage of packages that you want to install.\n"
-#~ "\n"
-#~ "A low percentage will install only the most important packages;\n"
-#~ "a percentage of 100%% will install all selected packages."
+#~ "For more information on MandrakeSoft's Professional Services and "
+#~ "commercial offerings, please see the following web page:"
#~ msgstr ""
-#~ "Os hoffech chi osod llai na'r maint hwn\n"
-#~ "dewiswch canran y pecynnau i'w gosod.\n"
-#~ "\n"
-#~ "Dim ond y pecynnau pwysicaf fydd yn cael eu gosod gyda chanran\n"
-#~ "isel; tra bydd canran o 100% yn llwytho'r holl becynnau."
-
-#~ msgid ""
-#~ "You have space on your disk for only %d%% of these packages.\n"
-#~ "\n"
-#~ "If you wish to install less than this,\n"
-#~ "select the percentage of packages that you want to install.\n"
-#~ "A low percentage will install only the most important packages;\n"
-#~ "a percentage of %d%% will install as many packages as possible."
-#~ msgstr ""
-#~ "Dim ond ar gyfer %d%% o'r pecynnau hyn mae gennych le.\n"
-#~ "\n"
-#~ "Os hoffech osod llai na hyn,\n"
-#~ "dewiswch canran y pecynnau rydych am eu gosod.\n"
-#~ "Dim ond y pecynnau pwysicaf fydd yn cael eu gosod gyda chanran\n"
-#~ "isel; tra bydd canran o %d%% yn llwytho'r gymaint o becynnau ag\n"
-#~ "y mae modd."
-
-#~ msgid "You will be able to choose them more specifically in the next step."
-#~ msgstr "Dydd modd eu dewis yn fwy penodol yn y cam nesaf."
-
-#~ msgid "Percentage of packages to install"
-#~ msgstr "Cyfanswm y pecynnau i'w gosod"
+#~ "Am ragor o wybodaeth ar Wasanaethau Profesiynol a chynigion masnachol "
+#~ "MandrakeSoft, gwelwch y dudalen we ganlynol:"
diff --git a/perl-install/share/po/da.po b/perl-install/share/po/da.po
index d207d57f4..2189f168f 100644
--- a/perl-install/share/po/da.po
+++ b/perl-install/share/po/da.po
@@ -7,9 +7,9 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: drakbootdisk 0.43\n"
-"POT-Creation-Date: 2002-08-21 15:44+0200\n"
-"PO-Revision-Date: 2002-08-17 15:07+0200\n"
+"Project-Id-Version: DrakX\n"
+"POT-Creation-Date: 2002-09-02 20:14+0200\n"
+"PO-Revision-Date: 2002-08-24 15:07+0200\n"
"Last-Translator: Keld Simonsen <keld@dkuug.dk>\n"
"Language-Team: dansk <dansk@klid.dk>\n"
"MIME-Version: 1.0\n"
@@ -52,19 +52,19 @@ msgstr "32 Mb"
msgid "64 MB or more"
msgstr "64 Mb eller mere"
-#: ../../Xconfig/card.pm_.c:201
+#: ../../Xconfig/card.pm_.c:203
msgid "Choose a X server"
msgstr "Vælg en X-server"
-#: ../../Xconfig/card.pm_.c:201
+#: ../../Xconfig/card.pm_.c:203
msgid "X server"
msgstr "X-server"
-#: ../../Xconfig/card.pm_.c:228
+#: ../../Xconfig/card.pm_.c:230
msgid "Multi-head configuration"
msgstr "Flerskærms-konfiguration"
-#: ../../Xconfig/card.pm_.c:229
+#: ../../Xconfig/card.pm_.c:231
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
@@ -72,27 +72,27 @@ msgstr ""
"Dit system understűtter konfiguration af flere skærme\n"
"Hvad vil du gűre?"
-#: ../../Xconfig/card.pm_.c:284
+#: ../../Xconfig/card.pm_.c:286
msgid "Select the memory size of your graphics card"
msgstr "Vælg hukommelsesmængde for dit grafikkort"
-#: ../../Xconfig/card.pm_.c:345
+#: ../../Xconfig/card.pm_.c:347
msgid "XFree configuration"
msgstr "XFree konfiguration"
-#: ../../Xconfig/card.pm_.c:347
+#: ../../Xconfig/card.pm_.c:349
msgid "Which configuration of XFree do you want to have?"
msgstr "Hvilken konfiguration af XFree űnsker du?"
-#: ../../Xconfig/card.pm_.c:379
+#: ../../Xconfig/card.pm_.c:381
msgid "Configure all heads independently"
msgstr "Konfigurér alle skærme uafhængigt"
-#: ../../Xconfig/card.pm_.c:380
+#: ../../Xconfig/card.pm_.c:382
msgid "Use Xinerama extension"
msgstr "Brug Xinerama-udvidelse"
-#: ../../Xconfig/card.pm_.c:384
+#: ../../Xconfig/card.pm_.c:386
#, c-format
msgid "Configure only card \"%s\"%s"
msgstr "Konfigurér kun kort \"%s\"%s"
@@ -103,13 +103,13 @@ msgstr "Konfigurér kun kort \"%s\"%s"
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:435
+#: ../../Xconfig/card.pm_.c:410 ../../Xconfig/card.pm_.c:436
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s with 3D hardware acceleration"
msgstr "XFree %s med 3D hardware acceleration"
-#: ../../Xconfig/card.pm_.c:412
+#: ../../Xconfig/card.pm_.c:413
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -118,18 +118,18 @@ msgstr ""
"Dit kort kan have 3D acceleration, men kun med XFree %s.\n"
"Dit kort er understűttet af XFree %s som kan have bedre understűttelse i 2D."
-#: ../../Xconfig/card.pm_.c:414 ../../Xconfig/card.pm_.c:437
+#: ../../Xconfig/card.pm_.c:415 ../../Xconfig/card.pm_.c:438
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr ""
"Dit kort kan have 3D hardware accelerations-understűttelse med XFree %s."
-#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:443
+#: ../../Xconfig/card.pm_.c:423 ../../Xconfig/card.pm_.c:444
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s med EKSPERMENTAL 3d hardware acceleration"
-#: ../../Xconfig/card.pm_.c:425
+#: ../../Xconfig/card.pm_.c:426
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -141,7 +141,7 @@ msgstr ""
"ned.\n"
"Dit kort er understűttet af XFree %s som kan have bedre understűttelse i 2D."
-#: ../../Xconfig/card.pm_.c:428 ../../Xconfig/card.pm_.c:445
+#: ../../Xconfig/card.pm_.c:429 ../../Xconfig/card.pm_.c:446
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
@@ -151,52 +151,53 @@ msgstr ""
"VIGTIGT: Dette er eksperimentelt og kan fć din maskine til at lćse eller gć "
"ned."
-#: ../../Xconfig/card.pm_.c:451
+#: ../../Xconfig/card.pm_.c:452
msgid "Xpmac (installation display driver)"
msgstr "Xpmac (installations-skærmdriver)"
-#: ../../Xconfig/main.pm_.c:78 ../../Xconfig/main.pm_.c:79
-#: ../../Xconfig/monitor.pm_.c:94 ../../any.pm_.c:974
+#: ../../Xconfig/main.pm_.c:76 ../../Xconfig/main.pm_.c:77
+#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:977
msgid "Custom"
msgstr "Tilpasset"
-#: ../../Xconfig/main.pm_.c:104
+#: ../../Xconfig/main.pm_.c:102
msgid "Graphic Card"
msgstr "Grafikkort"
-#: ../../Xconfig/main.pm_.c:107 ../../Xconfig/monitor.pm_.c:91
+#: ../../Xconfig/main.pm_.c:105 ../../Xconfig/monitor.pm_.c:93
msgid "Monitor"
msgstr "Skærm"
-#: ../../Xconfig/main.pm_.c:110 ../../Xconfig/resolution_and_depth.pm_.c:209
+#: ../../Xconfig/main.pm_.c:108 ../../Xconfig/resolution_and_depth.pm_.c:209
msgid "Resolution"
msgstr "Oplűsning"
-#: ../../Xconfig/main.pm_.c:114
+#: ../../Xconfig/main.pm_.c:113
msgid "Test"
msgstr "Afprűv"
-#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:59
-#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/removable.pm_.c:25
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:63
+#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/removable.pm_.c:25
#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "Valg"
#: ../../Xconfig/main.pm_.c:121 ../../Xconfig/resolution_and_depth.pm_.c:268
-#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:281
+#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:275
#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
-#: ../../interactive.pm_.c:351 ../../interactive/http.pm_.c:104
+#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:104
#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
-#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:156
-#: ../../my_gtk.pm_.c:284 ../../my_gtk.pm_.c:307
-#: ../../standalone/drakbackup_.c:3324 ../../standalone/drakbackup_.c:3419
-#: ../../standalone/drakbackup_.c:3438
+#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:159
+#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310
+#: ../../standalone/drakbackup_.c:3972 ../../standalone/drakbackup_.c:4067
+#: ../../standalone/drakbackup_.c:4086
msgid "Ok"
msgstr "O.k."
#: ../../Xconfig/main.pm_.c:121 ../../diskdrake/dav.pm_.c:24
-#: ../../printerdrake.pm_.c:2933 ../../standalone/logdrake_.c:224
+#: ../../harddrake/ui.pm_.c:98 ../../printerdrake.pm_.c:3155
+#: ../../standalone/logdrake_.c:224
msgid "Quit"
msgstr "Afslut"
@@ -213,27 +214,28 @@ msgstr ""
"\n"
"%s"
-#: ../../Xconfig/monitor.pm_.c:91
+#: ../../Xconfig/monitor.pm_.c:93
msgid "Choose a monitor"
msgstr "Vælg en skærmtype"
-#: ../../Xconfig/monitor.pm_.c:95
+#: ../../Xconfig/monitor.pm_.c:97
msgid "Plug'n Play"
msgstr "Plug'n Play"
-#: ../../Xconfig/monitor.pm_.c:96 ../../mouse.pm_.c:45
+#: ../../Xconfig/monitor.pm_.c:98 ../../mouse.pm_.c:46
msgid "Generic"
msgstr "Standard"
-#: ../../Xconfig/monitor.pm_.c:97 ../../harddrake/ui.pm_.c:36
+#: ../../Xconfig/monitor.pm_.c:99 ../../harddrake/ui.pm_.c:37
msgid "Vendor"
msgstr "Producent"
-#: ../../Xconfig/monitor.pm_.c:107
+#: ../../Xconfig/monitor.pm_.c:109
msgid "Plug'n Play probing failed. Please choose a precise monitor"
msgstr ""
+"Undersűgning for Plug'n Play mislykkedes. Vælg venligst den rigtige skærm"
-#: ../../Xconfig/monitor.pm_.c:112
+#: ../../Xconfig/monitor.pm_.c:114
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -257,11 +259,11 @@ msgstr ""
"Hvis du er i tvivl, bűr du vælge en opsætning, som du med SIKKERHED ved\n"
"at din skærm kan klare."
-#: ../../Xconfig/monitor.pm_.c:119
+#: ../../Xconfig/monitor.pm_.c:121
msgid "Horizontal refresh rate"
msgstr "Vandret opdateringsfrekvens"
-#: ../../Xconfig/monitor.pm_.c:120
+#: ../../Xconfig/monitor.pm_.c:122
msgid "Vertical refresh rate"
msgstr "Lodret opdateringsfrekvens"
@@ -298,36 +300,40 @@ msgstr "Vælg oplűsning og farvedybde"
msgid "Graphics card: %s"
msgstr "Grafikkort: %s"
-#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1015
-#: ../../bootlook.pm_.c:334 ../../diskdrake/smbnfs_gtk.pm_.c:87
-#: ../../install_steps_gtk.pm_.c:412 ../../install_steps_gtk.pm_.c:470
-#: ../../install_steps_interactive.pm_.c:576 ../../interactive.pm_.c:142
-#: ../../interactive.pm_.c:351 ../../interactive/http.pm_.c:105
+#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1018
+#: ../../bootlook.pm_.c:338 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:406 ../../install_steps_gtk.pm_.c:464
+#: ../../install_steps_interactive.pm_.c:560 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:105
#: ../../interactive/newt.pm_.c:174 ../../interactive/stdio.pm_.c:39
-#: ../../interactive/stdio.pm_.c:143 ../../my_gtk.pm_.c:155
-#: ../../my_gtk.pm_.c:159 ../../my_gtk.pm_.c:284
-#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1990
-#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3278
-#: ../../standalone/drakbackup_.c:3311 ../../standalone/drakbackup_.c:3337
-#: ../../standalone/drakbackup_.c:3364 ../../standalone/drakbackup_.c:3391
-#: ../../standalone/drakbackup_.c:3451 ../../standalone/drakbackup_.c:3478
-#: ../../standalone/drakbackup_.c:3504 ../../standalone/drakconnect_.c:115
-#: ../../standalone/drakconnect_.c:147 ../../standalone/drakconnect_.c:289
-#: ../../standalone/drakconnect_.c:537 ../../standalone/drakconnect_.c:679
-#: ../../standalone/drakfloppy_.c:234 ../../standalone/drakfloppy_.c:383
-#: ../../standalone/drakfont_.c:970 ../../standalone/drakgw_.c:598
-#: ../../standalone/logdrake_.c:224 ../../standalone/logdrake_.c:528
-#: ../../standalone/tinyfirewall_.c:64
+#: ../../interactive/stdio.pm_.c:143 ../../my_gtk.pm_.c:158
+#: ../../my_gtk.pm_.c:162 ../../my_gtk.pm_.c:287
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:2124
+#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3926
+#: ../../standalone/drakbackup_.c:3959 ../../standalone/drakbackup_.c:3985
+#: ../../standalone/drakbackup_.c:4012 ../../standalone/drakbackup_.c:4039
+#: ../../standalone/drakbackup_.c:4099 ../../standalone/drakbackup_.c:4126
+#: ../../standalone/drakbackup_.c:4156 ../../standalone/drakbackup_.c:4182
+#: ../../standalone/drakconnect_.c:115 ../../standalone/drakconnect_.c:147
+#: ../../standalone/drakconnect_.c:289 ../../standalone/drakconnect_.c:537
+#: ../../standalone/drakconnect_.c:679 ../../standalone/drakfloppy_.c:234
+#: ../../standalone/drakfloppy_.c:383 ../../standalone/drakfont_.c:970
+#: ../../standalone/drakgw_.c:536 ../../standalone/logdrake_.c:224
+#: ../../standalone/logdrake_.c:526
msgid "Cancel"
msgstr "Annullér"
-#: ../../Xconfig/test.pm_.c:26
+#: ../../Xconfig/test.pm_.c:30
+msgid "Test of the configuration"
+msgstr "Test konfigurationen"
+
+#: ../../Xconfig/test.pm_.c:31
msgid "Do you want to test the configuration?"
msgstr "Űnsker du at afprűve konfigurationen?"
-#: ../../Xconfig/test.pm_.c:26
-msgid "Test of the configuration"
-msgstr "Test konfigurationen"
+#: ../../Xconfig/test.pm_.c:31
+msgid "Warning: testing this graphic card may freeze your computer"
+msgstr ""
#: ../../Xconfig/various.pm_.c:29
#, c-format
@@ -414,7 +420,7 @@ msgid ""
"Do you have this feature?"
msgstr ""
"Grafikkortet ser ud til at have en TV-UD-forbindelse.\n"
-"Den kan konfigureres sć den fungerer med billeddbuffer.\n"
+"Den kan konfigureres sć den fungerer med billedbuffer\n"
"\n"
"Til dette skal du tilslutte grafikkortet til tv'et inden du starter "
"maskinen.\n"
@@ -470,26 +476,22 @@ msgstr "Start fra DOS/Windows (loadlin)"
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:158 ../../any.pm_.c:190
+#: ../../any.pm_.c:159 ../../any.pm_.c:190
msgid "Bootloader main options"
msgstr "Systemopstarterens hovedindstillinger"
-#: ../../any.pm_.c:159 ../../any.pm_.c:191
+#: ../../any.pm_.c:160 ../../any.pm_.c:191
msgid "Bootloader to use"
msgstr "Systemopstarter der skal bruges"
-#: ../../any.pm_.c:161
+#: ../../any.pm_.c:162
msgid "Bootloader installation"
msgstr "Systemopstarterens installation"
-#: ../../any.pm_.c:163 ../../any.pm_.c:193
+#: ../../any.pm_.c:164 ../../any.pm_.c:193
msgid "Boot device"
msgstr "Opstartsenhed"
-#: ../../any.pm_.c:164
-msgid "LBA (doesn't work on old BIOSes)"
-msgstr "LBA (virker ikke med gamle BIOS'er)"
-
#: ../../any.pm_.c:165
msgid "Compact"
msgstr "Kompakt"
@@ -506,16 +508,17 @@ msgstr "Videoindstilling"
msgid "Delay before booting default image"
msgstr "Ventetid fűr opstart af forvalgt styresystem"
-#: ../../any.pm_.c:170 ../../any.pm_.c:786
+#: ../../any.pm_.c:170 ../../any.pm_.c:788
#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1111 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:743 ../../printerdrake.pm_.c:858
-#: ../../standalone/drakconnect_.c:624 ../../standalone/drakconnect_.c:649
+#: ../../install_steps_interactive.pm_.c:1096 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:850 ../../printerdrake.pm_.c:965
+#: ../../standalone/drakbackup_.c:3528 ../../standalone/drakconnect_.c:624
+#: ../../standalone/drakconnect_.c:649
msgid "Password"
msgstr "Adgangskode"
-#: ../../any.pm_.c:171 ../../any.pm_.c:787
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../any.pm_.c:171 ../../any.pm_.c:789
+#: ../../install_steps_interactive.pm_.c:1097
msgid "Password (again)"
msgstr "Adgangskode (igen)"
@@ -551,14 +554,14 @@ msgstr ""
"Indstillingen ``Begræns kommandolinie-indstillinger'' er intet værd uden\n"
"en adgangskode"
-#: ../../any.pm_.c:184 ../../any.pm_.c:762
-#: ../../diskdrake/interactive.pm_.c:1180
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../any.pm_.c:184 ../../any.pm_.c:764
+#: ../../diskdrake/interactive.pm_.c:1191
+#: ../../install_steps_interactive.pm_.c:1091
msgid "Please try again"
msgstr "Prűv igen"
-#: ../../any.pm_.c:184 ../../any.pm_.c:762
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../any.pm_.c:184 ../../any.pm_.c:764
+#: ../../install_steps_interactive.pm_.c:1091
msgid "The passwords do not match"
msgstr "Adgangskoderne stemmer ikke overens"
@@ -608,16 +611,16 @@ msgstr ""
"Her er fűlgende typer indgange.\n"
"Du kan tilfűje flere eller ændre de eksisterende."
-#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1483
-#: ../../standalone/drakbackup_.c:1596 ../../standalone/drakfont_.c:1011
+#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1558
+#: ../../standalone/drakbackup_.c:1671 ../../standalone/drakfont_.c:1011
#: ../../standalone/drakfont_.c:1054
msgid "Add"
msgstr "Tilfűj"
-#: ../../any.pm_.c:257 ../../any.pm_.c:774 ../../diskdrake/dav.pm_.c:60
+#: ../../any.pm_.c:257 ../../any.pm_.c:776 ../../diskdrake/dav.pm_.c:64
#: ../../diskdrake/hd_gtk.pm_.c:153 ../../diskdrake/removable.pm_.c:27
#: ../../diskdrake/smbnfs_gtk.pm_.c:88 ../../interactive/http.pm_.c:153
-#: ../../standalone/drakbackup_.c:2696
+#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2772
msgid "Done"
msgstr "Færdig"
@@ -629,7 +632,7 @@ msgstr "Ændr"
msgid "Which type of entry do you want to add?"
msgstr "Hvilken type űnsker du at tilfűje"
-#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1630
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1705
msgid "Linux"
msgstr "Linux"
@@ -723,13 +726,13 @@ msgstr "Har du én til?"
msgid "Do you have any %s interfaces?"
msgstr "Har du nogen %s grænsesnit?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:821 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:283
+#: ../../any.pm_.c:660 ../../any.pm_.c:823 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:286
msgid "No"
msgstr "Nej"
-#: ../../any.pm_.c:660 ../../any.pm_.c:820 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:283
+#: ../../any.pm_.c:660 ../../any.pm_.c:822 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:286
msgid "Yes"
msgstr "Ja"
@@ -832,37 +835,47 @@ msgstr "tillad \"su\""
msgid "access to administrative files"
msgstr "adgang til administrative filer"
-#: ../../any.pm_.c:758
+#: ../../any.pm_.c:754
+#, fuzzy
+msgid "access to network tools"
+msgstr "adgang til rpm-værktűjer"
+
+#: ../../any.pm_.c:755
+#, fuzzy
+msgid "access to compilation tools"
+msgstr "adgang til rpm-værktűjer"
+
+#: ../../any.pm_.c:760
#, c-format
msgid "(already added %s)"
msgstr "(har allerede tilfűjet %s)"
-#: ../../any.pm_.c:763
+#: ../../any.pm_.c:765
msgid "This password is too simple"
msgstr "Adgangskoden er for simpel"
-#: ../../any.pm_.c:764
+#: ../../any.pm_.c:766
msgid "Please give a user name"
msgstr "Indtast et brugernavn"
-#: ../../any.pm_.c:765
+#: ../../any.pm_.c:767
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr "Brugernavnet mć kun indeholde smć bogstaver, tal, `-' og `_'"
-#: ../../any.pm_.c:766
+#: ../../any.pm_.c:768
msgid "The user name is too long"
msgstr "Dette brugernavn er for langt"
-#: ../../any.pm_.c:767
+#: ../../any.pm_.c:769
msgid "This user name is already added"
msgstr "Dette brugernavn eksisterer allerede"
-#: ../../any.pm_.c:771
+#: ../../any.pm_.c:773
msgid "Add user"
msgstr "Tilfűj bruger"
-#: ../../any.pm_.c:772
+#: ../../any.pm_.c:774
#, c-format
msgid ""
"Enter a user\n"
@@ -871,32 +884,32 @@ msgstr ""
"Indtast en bruger\n"
"%s"
-#: ../../any.pm_.c:773
+#: ../../any.pm_.c:775
msgid "Accept user"
msgstr "Acceptér bruger"
-#: ../../any.pm_.c:784
+#: ../../any.pm_.c:786
msgid "Real name"
msgstr "Rigtige navn"
-#: ../../any.pm_.c:785 ../../printerdrake.pm_.c:742
-#: ../../printerdrake.pm_.c:857
+#: ../../any.pm_.c:787 ../../printerdrake.pm_.c:849
+#: ../../printerdrake.pm_.c:964
msgid "User name"
msgstr "Brugernavn"
-#: ../../any.pm_.c:788
+#: ../../any.pm_.c:790
msgid "Shell"
msgstr "Skal"
-#: ../../any.pm_.c:790
+#: ../../any.pm_.c:792
msgid "Icon"
msgstr "Ikon"
-#: ../../any.pm_.c:817
+#: ../../any.pm_.c:819
msgid "Autologin"
msgstr "Autologin"
-#: ../../any.pm_.c:818
+#: ../../any.pm_.c:820
msgid ""
"I can set up your computer to automatically log on one user.\n"
"Do you want to use this feature?"
@@ -904,19 +917,19 @@ msgstr ""
"Jeg kan sætte din maskine op til automatisk at logge en bestemt bruger pć.\n"
"Űnsker du at bruge denne finesse?"
-#: ../../any.pm_.c:822
+#: ../../any.pm_.c:824
msgid "Choose the default user:"
msgstr "Vælg den forvalgte bruger:"
-#: ../../any.pm_.c:823
+#: ../../any.pm_.c:825
msgid "Choose the window manager to run:"
msgstr "Vælg den vindueshćndtering du űnsker at benytte:"
-#: ../../any.pm_.c:838
+#: ../../any.pm_.c:840
msgid "Please choose a language to use."
msgstr "Vælg det sprog, der skal bruges."
-#: ../../any.pm_.c:840
+#: ../../any.pm_.c:842
msgid ""
"Mandrake Linux can support multiple languages. Select\n"
"the languages you would like to install. They will be available\n"
@@ -924,35 +937,35 @@ msgid ""
msgstr ""
"Du kan vælge andre sprog der vil være tilgængelige efter installationen"
-#: ../../any.pm_.c:854 ../../install_steps_interactive.pm_.c:708
+#: ../../any.pm_.c:856 ../../install_steps_interactive.pm_.c:692
#: ../../standalone/drakxtv_.c:73
msgid "All"
msgstr "Alt"
-#: ../../any.pm_.c:974
+#: ../../any.pm_.c:977
msgid "Allow all users"
msgstr "Tillad alle brugere"
-#: ../../any.pm_.c:974
+#: ../../any.pm_.c:977
msgid "No sharing"
msgstr "Ingen fildeling"
-#: ../../any.pm_.c:984 ../../standalone.pm_.c:57
+#: ../../any.pm_.c:987 ../../install_any.pm_.c:1183 ../../standalone.pm_.c:58
#, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "Pakken %s skal være installeret. Űnsker du at installere den?"
-#: ../../any.pm_.c:987
+#: ../../any.pm_.c:990
msgid ""
"You can export using NFS or Samba. Please select which you'd like to use."
msgstr "Du kan eksportere med NFS eller Samba. Hvilken vil du bruge"
-#: ../../any.pm_.c:995 ../../standalone.pm_.c:61
+#: ../../any.pm_.c:998 ../../install_any.pm_.c:1188 ../../standalone.pm_.c:63
#, c-format
msgid "Mandatory package %s is missing"
msgstr "Krævet pakke %s mangler"
-#: ../../any.pm_.c:1001
+#: ../../any.pm_.c:1004
msgid ""
"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
@@ -965,11 +978,11 @@ msgstr ""
"Tilladelse af dette vil sætte brugere i stand til simpelthen at klikke pć "
"'Fildeling' i konqueror og nautilus.\n"
-#: ../../any.pm_.c:1015
+#: ../../any.pm_.c:1018
msgid "Launch userdrake"
msgstr "Start userdrake"
-#: ../../any.pm_.c:1017
+#: ../../any.pm_.c:1020
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
@@ -977,31 +990,31 @@ msgstr ""
"Deling per bruger bruger gruppen 'fileshare'. \n"
"Du kan bruge userdrake til at tilfűje en bruger til denne gruppe."
-#: ../../any.pm_.c:1068
+#: ../../any.pm_.c:1071
msgid "Welcome To Crackers"
msgstr "Velkommen til Crackere"
-#: ../../any.pm_.c:1069
+#: ../../any.pm_.c:1072
msgid "Poor"
msgstr "Ringe"
-#: ../../any.pm_.c:1070 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1073 ../../mouse.pm_.c:31
msgid "Standard"
msgstr "Standard"
-#: ../../any.pm_.c:1071
+#: ../../any.pm_.c:1074
msgid "High"
msgstr "Hűj"
-#: ../../any.pm_.c:1072
+#: ../../any.pm_.c:1075
msgid "Higher"
msgstr "Hűjere"
-#: ../../any.pm_.c:1073
+#: ../../any.pm_.c:1076
msgid "Paranoid"
msgstr "Paranoid"
-#: ../../any.pm_.c:1076
+#: ../../any.pm_.c:1079
msgid ""
"This level is to be used with care. It makes your system more easy to use,\n"
"but very sensitive: it must not be used for a machine connected to others\n"
@@ -1012,7 +1025,7 @@ msgstr ""
"eller har forbindelse til Internettet. Der er ikke nogen kontrol af "
"adgangskoder."
-#: ../../any.pm_.c:1079
+#: ../../any.pm_.c:1082
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -1020,7 +1033,7 @@ msgstr ""
"Kontrol af adgangskode er nu aktiveret, men brug som netværksmaskine er "
"stadig ikke anbefalet."
-#: ../../any.pm_.c:1080
+#: ../../any.pm_.c:1083
msgid ""
"This is the standard security recommended for a computer that will be used "
"to connect to the Internet as a client."
@@ -1028,7 +1041,7 @@ msgstr ""
"Dette er standard sikkerheds-anbefalingen for en maskine\n"
" med forbindelse til Internettet som klient. "
-#: ../../any.pm_.c:1081
+#: ../../any.pm_.c:1084
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
@@ -1036,7 +1049,7 @@ msgstr ""
"Der er allerede nogle begrænsninger, og flere automatiske kontroller bliver "
"kűrt hver nat."
-#: ../../any.pm_.c:1082
+#: ../../any.pm_.c:1085
msgid ""
"With this security level, the use of this system as a server becomes "
"possible.\n"
@@ -1050,7 +1063,7 @@ msgstr ""
"forbindelser fra mange klienter. Bemærk: hvis din maskine kun er en klient "
"pć internettet bűr du hellere vælge et lavere niveau."
-#: ../../any.pm_.c:1085
+#: ../../any.pm_.c:1088
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
"security features are at their maximum."
@@ -1058,29 +1071,29 @@ msgstr ""
"Baseret pć det foregćende niveau, men systemet er nu helt lukket.\n"
"Sikkerhedsfaciliteterne er nu pć deres hűjeste niveau."
-#: ../../any.pm_.c:1091
+#: ../../any.pm_.c:1094
msgid "DrakSec Basic Options"
msgstr "Basale valgmuligheder for DrakSec"
-#: ../../any.pm_.c:1092
+#: ../../any.pm_.c:1095
msgid "Please choose the desired security level"
msgstr "Vælg det űnskede sikkerhedniveau"
-#: ../../any.pm_.c:1095
+#: ../../any.pm_.c:1098
msgid "Security level"
msgstr "Sikkerhedsniveau"
-#: ../../any.pm_.c:1097
+#: ../../any.pm_.c:1100
msgid "Use libsafe for servers"
msgstr "Brug libsafe for servere"
-#: ../../any.pm_.c:1098
+#: ../../any.pm_.c:1101
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
"Et bibliotek som beskytter mod angreb via bufferoverlűb og formatstrenge."
-#: ../../any.pm_.c:1099
+#: ../../any.pm_.c:1102
msgid "Security Administrator (login or email)"
msgstr "Sikkerhedsadministrator (brugernavne eller e-post)"
@@ -1124,57 +1137,57 @@ msgstr ""
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:935
+#: ../../bootloader.pm_.c:932
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Velkommen til GRUB styresystemsvælgeren!"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:938
+#: ../../bootloader.pm_.c:935
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "Brug tasterne %c og %c til at vælge mellem mulighederne."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:941
+#: ../../bootloader.pm_.c:938
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Tryk 'enter' for at starte det valgte OS, 'e' for at redigere"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:941
msgid "commands before booting, or 'c' for a command-line."
msgstr "kommandoerne fűr opstart, eller 'c' for en kommandolinie."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:947
+#: ../../bootloader.pm_.c:944
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "Den fremhævede mulighed vil blive startet automatisk om %d sekunder."
-#: ../../bootloader.pm_.c:951
+#: ../../bootloader.pm_.c:948
msgid "not enough room in /boot"
msgstr "Ikke nok plads i /boot"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1051
+#: ../../bootloader.pm_.c:1048
msgid "Desktop"
msgstr "Skrivebord"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1053
+#: ../../bootloader.pm_.c:1050
msgid "Start Menu"
msgstr "Start-menu"
-#: ../../bootloader.pm_.c:1072
+#: ../../bootloader.pm_.c:1069
#, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "Du kan ikke installere opstartsindlæseren pć en %s-partition\n"
-#: ../../bootlook.pm_.c:45
+#: ../../bootlook.pm_.c:45 ../../standalone/draksplash_.c:25
msgid "no help implemented yet.\n"
msgstr "endnu er ingen hjælp implementeret.\n"
@@ -1182,8 +1195,8 @@ msgstr "endnu er ingen hjælp implementeret.\n"
msgid "Boot Style Configuration"
msgstr "Konfiguration af opstartsudseende"
-#: ../../bootlook.pm_.c:78 ../../harddrake/ui.pm_.c:59
-#: ../../harddrake/ui.pm_.c:60 ../../standalone/drakfloppy_.c:81
+#: ../../bootlook.pm_.c:78 ../../harddrake/ui.pm_.c:62
+#: ../../harddrake/ui.pm_.c:63 ../../standalone/drakfloppy_.c:81
#: ../../standalone/logdrake_.c:101
msgid "/_File"
msgstr "/_Fil"
@@ -1193,7 +1206,7 @@ msgstr "/_Fil"
msgid "/File/_Quit"
msgstr "/Fil/_Afslut"
-#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:60
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:63
#: ../../standalone/drakfloppy_.c:82 ../../standalone/logdrake_.c:107
msgid "<control>Q"
msgstr "<Ctrl>Q"
@@ -1234,54 +1247,60 @@ msgstr "Installér temaer"
msgid "Display theme under console"
msgstr "Visningstema under konsol"
-#: ../../bootlook.pm_.c:166
+#: ../../bootlook.pm_.c:145
+#, fuzzy
+msgid "Create new theme"
+msgstr "Opret en ny partition"
+
+#: ../../bootlook.pm_.c:169
msgid "Can't create Bootsplash preview"
msgstr "Kan ikke lave smugkig af opstartsskærm"
-#: ../../bootlook.pm_.c:166 ../../bootlook.pm_.c:184 ../../bootlook.pm_.c:187
-#: ../../bootlook.pm_.c:190 ../../bootlook.pm_.c:220 ../../bootlook.pm_.c:222
-#: ../../bootlook.pm_.c:232 ../../bootlook.pm_.c:241 ../../bootlook.pm_.c:248
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:336
-#: ../../diskdrake/interactive.pm_.c:351 ../../diskdrake/interactive.pm_.c:464
-#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../bootlook.pm_.c:169 ../../bootlook.pm_.c:187 ../../bootlook.pm_.c:190
+#: ../../bootlook.pm_.c:193 ../../bootlook.pm_.c:223 ../../bootlook.pm_.c:225
+#: ../../bootlook.pm_.c:235 ../../bootlook.pm_.c:244 ../../bootlook.pm_.c:251
+#: ../../diskdrake/dav.pm_.c:73 ../../diskdrake/hd_gtk.pm_.c:116
+#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/interactive.pm_.c:355
+#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/interactive.pm_.c:474
+#: ../../diskdrake/smbnfs_gtk.pm_.c:45 ../../fsedit.pm_.c:239
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:365 ../../interactive/http.pm_.c:119
-#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:80
+#: ../../interactive/http.pm_.c:119 ../../interactive/http.pm_.c:120
+#: ../../standalone/draksplash_.c:32
msgid "Error"
msgstr "Fejl"
-#: ../../bootlook.pm_.c:183
+#: ../../bootlook.pm_.c:186
#, c-format
msgid "Backup %s to %s.old"
msgstr "Sikkerhedskopiér %s til %s.old"
-#: ../../bootlook.pm_.c:184
+#: ../../bootlook.pm_.c:187
msgid "unable to backup lilo message"
-msgstr "kunne ikke lave sikkerhedskpoi af lilo-besked"
+msgstr "kunne ikke lave sikkerhedskopi af lilo-besked"
-#: ../../bootlook.pm_.c:186
+#: ../../bootlook.pm_.c:189
#, c-format
msgid "Copy %s to %s"
msgstr "Kopiér %s til %s"
-#: ../../bootlook.pm_.c:187
+#: ../../bootlook.pm_.c:190
msgid "can't change lilo message"
msgstr "kan ikke ændre lilo-besked"
-#: ../../bootlook.pm_.c:190
+#: ../../bootlook.pm_.c:193
msgid "Lilo message not found"
msgstr "Lilo-besked ikke fundet"
-#: ../../bootlook.pm_.c:220
+#: ../../bootlook.pm_.c:223
msgid "Can't write /etc/sysconfig/bootsplash."
msgstr "Kan ikke skrive /etc/sysconfig/bootsplash."
-#: ../../bootlook.pm_.c:220
+#: ../../bootlook.pm_.c:223
#, c-format
msgid "Write %s"
msgstr "Skriv %s"
-#: ../../bootlook.pm_.c:222
+#: ../../bootlook.pm_.c:225
msgid ""
"Can't write /etc/sysconfig/bootsplash\n"
"File not found."
@@ -1289,17 +1308,17 @@ msgstr ""
"Kan ikke skrive /etc/sysconfig/bootsplash\n"
"Fil ikke fundet."
-#: ../../bootlook.pm_.c:233
+#: ../../bootlook.pm_.c:236
#, c-format
msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
msgstr "Kan ikke opstarte mkinitrd -f /boot/initrd-%s.img %s."
-#: ../../bootlook.pm_.c:236
+#: ../../bootlook.pm_.c:239
#, c-format
-msgid "Make initrd 'mkinird -f /boot/initrd-%s.img %s'."
-msgstr "Lav initrd 'mkinird -f /boot/initrd-%s.img %s'."
+msgid "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
+msgstr "Lav initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
-#: ../../bootlook.pm_.c:242
+#: ../../bootlook.pm_.c:245
msgid ""
"Can't relaunch LiLo!\n"
"Launch \"lilo\" as root in command line to complete LiLo theme installation."
@@ -1308,23 +1327,24 @@ msgstr ""
"Start \"lilo\" som root pć kommandolinjen for at færdiggűre installationen "
"af Lilo-tema."
-#: ../../bootlook.pm_.c:246
+#: ../../bootlook.pm_.c:249
msgid "Relaunch 'lilo'"
msgstr "Genstart 'lilo'"
-#: ../../bootlook.pm_.c:248
+#: ../../bootlook.pm_.c:251 ../../standalone/draksplash_.c:161
+#: ../../standalone/draksplash_.c:330 ../../standalone/draksplash_.c:454
msgid "Notice"
msgstr "Bemærk"
-#: ../../bootlook.pm_.c:249
+#: ../../bootlook.pm_.c:252
msgid "LiLo and Bootsplash themes installation successfull"
msgstr "Problemfri installation af temaer for LiLo- og opstartsskærm"
-#: ../../bootlook.pm_.c:249
+#: ../../bootlook.pm_.c:252
msgid "Theme installation failed!"
msgstr "Installation af tema mislykkedes"
-#: ../../bootlook.pm_.c:258
+#: ../../bootlook.pm_.c:261
#, c-format
msgid ""
"You are currently using %s as your boot manager.\n"
@@ -1333,22 +1353,21 @@ msgstr ""
"Du bruger for űjeblikket % som opstartshćndterer.\n"
"Klik pć Konfigurér for at starte opsætnings-vejlederen."
-#: ../../bootlook.pm_.c:260 ../../standalone/drakbackup_.c:2352
-#: ../../standalone/drakbackup_.c:2362 ../../standalone/drakbackup_.c:2372
-#: ../../standalone/drakbackup_.c:2380 ../../standalone/drakgw_.c:592
-#: ../../standalone/tinyfirewall_.c:58
+#: ../../bootlook.pm_.c:263 ../../standalone/drakbackup_.c:2427
+#: ../../standalone/drakbackup_.c:2437 ../../standalone/drakbackup_.c:2447
+#: ../../standalone/drakbackup_.c:2455 ../../standalone/drakgw_.c:530
msgid "Configure"
msgstr "Konfigurér"
-#: ../../bootlook.pm_.c:267
+#: ../../bootlook.pm_.c:270
msgid "Splash selection"
msgstr "Valg af opstartsskærm"
-#: ../../bootlook.pm_.c:270
+#: ../../bootlook.pm_.c:273
msgid "Themes"
msgstr "Temaer"
-#: ../../bootlook.pm_.c:272
+#: ../../bootlook.pm_.c:275
msgid ""
"\n"
"Select a theme for\n"
@@ -1362,44 +1381,44 @@ msgstr ""
"du kan vælge\n"
"dem separat"
-#: ../../bootlook.pm_.c:275
+#: ../../bootlook.pm_.c:278
msgid "Lilo screen"
msgstr "Lilo-skærm"
-#: ../../bootlook.pm_.c:279
+#: ../../bootlook.pm_.c:283
msgid "Bootsplash"
msgstr "Opstartsskærm"
-#: ../../bootlook.pm_.c:314
+#: ../../bootlook.pm_.c:318
msgid "System mode"
msgstr "Systemtilstand"
-#: ../../bootlook.pm_.c:316
+#: ../../bootlook.pm_.c:320
msgid "Launch the graphical environment when your system starts"
msgstr "Start X-vinduessystemet efter opstart"
-#: ../../bootlook.pm_.c:321
+#: ../../bootlook.pm_.c:325
msgid "No, I don't want autologin"
msgstr "Nej, jeg űnsker ikke automatisk login"
-#: ../../bootlook.pm_.c:323
+#: ../../bootlook.pm_.c:327
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "Ja, jeg űnsker automatisk login med denne (bruger, skrivebord)"
-#: ../../bootlook.pm_.c:333 ../../network/netconnect.pm_.c:101
+#: ../../bootlook.pm_.c:337 ../../network/netconnect.pm_.c:101
#: ../../standalone/drakTermServ_.c:173 ../../standalone/drakTermServ_.c:300
-#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:3513
-#: ../../standalone/drakbackup_.c:4290 ../../standalone/drakconnect_.c:108
+#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4191
+#: ../../standalone/drakbackup_.c:4952 ../../standalone/drakconnect_.c:108
#: ../../standalone/drakconnect_.c:140 ../../standalone/drakconnect_.c:296
#: ../../standalone/drakconnect_.c:435 ../../standalone/drakconnect_.c:521
#: ../../standalone/drakconnect_.c:564 ../../standalone/drakconnect_.c:667
#: ../../standalone/drakfloppy_.c:376 ../../standalone/drakfont_.c:612
#: ../../standalone/drakfont_.c:799 ../../standalone/drakfont_.c:876
-#: ../../standalone/drakfont_.c:963 ../../standalone/logdrake_.c:521
+#: ../../standalone/drakfont_.c:963 ../../standalone/logdrake_.c:519
msgid "OK"
msgstr "O.k."
-#: ../../bootlook.pm_.c:403
+#: ../../bootlook.pm_.c:407
#, c-format
msgid "can not open /etc/inittab for reading: %s"
msgstr "kan ikke læse /etc/inittab: %s"
@@ -1496,45 +1515,50 @@ msgstr "Űstrig"
msgid "United States"
msgstr "U.S.A."
-#: ../../detect_devices.pm_.c:599 ../../detect_devices.pm_.c:641
-#: ../../detect_devices.pm_.c:803
-msgid "Unknown Model"
-msgstr "Ukendt model"
-
#: ../../diskdrake/dav.pm_.c:23
msgid "New"
msgstr "Ny"
-#: ../../diskdrake/dav.pm_.c:57
+#: ../../diskdrake/dav.pm_.c:59 ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/smbnfs_gtk.pm_.c:81
+msgid "Unmount"
+msgstr "Afmontér"
+
+#: ../../diskdrake/dav.pm_.c:60 ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/smbnfs_gtk.pm_.c:82
+msgid "Mount"
+msgstr "Montér"
+
+#: ../../diskdrake/dav.pm_.c:61
msgid "Server"
msgstr "Server"
-#: ../../diskdrake/dav.pm_.c:58 ../../diskdrake/interactive.pm_.c:375
-#: ../../diskdrake/interactive.pm_.c:558 ../../diskdrake/interactive.pm_.c:585
+#: ../../diskdrake/dav.pm_.c:62 ../../diskdrake/interactive.pm_.c:379
+#: ../../diskdrake/interactive.pm_.c:568 ../../diskdrake/interactive.pm_.c:595
#: ../../diskdrake/removable.pm_.c:24 ../../diskdrake/removable_gtk.pm_.c:15
#: ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr "Monteringssti"
-#: ../../diskdrake/dav.pm_.c:68
+#: ../../diskdrake/dav.pm_.c:81
msgid "Please enter the WebDAV server URL"
msgstr "Indtast LRL for WebDAV-serveren"
-#: ../../diskdrake/dav.pm_.c:71
+#: ../../diskdrake/dav.pm_.c:84
msgid "The URL must begin with http:// or https://"
msgstr "URL'en skal begynde med http:// or https://"
-#: ../../diskdrake/dav.pm_.c:92
+#: ../../diskdrake/dav.pm_.c:105
msgid "Server: "
msgstr "Server: "
-#: ../../diskdrake/dav.pm_.c:93 ../../diskdrake/interactive.pm_.c:435
-#: ../../diskdrake/interactive.pm_.c:1079
-#: ../../diskdrake/interactive.pm_.c:1153
+#: ../../diskdrake/dav.pm_.c:106 ../../diskdrake/interactive.pm_.c:440
+#: ../../diskdrake/interactive.pm_.c:1089
+#: ../../diskdrake/interactive.pm_.c:1164
msgid "Mount point: "
msgstr "Monteringssti: "
-#: ../../diskdrake/dav.pm_.c:94 ../../diskdrake/interactive.pm_.c:1159
+#: ../../diskdrake/dav.pm_.c:107 ../../diskdrake/interactive.pm_.c:1170
#, c-format
msgid "Options: %s"
msgstr "Valg: %s"
@@ -1543,8 +1567,9 @@ msgstr "Valg: %s"
msgid "Please make a backup of your data first"
msgstr "Lav gerne en sikkerhedkopi af dine data fűrst"
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:924
-#: ../../diskdrake/interactive.pm_.c:933 ../../diskdrake/interactive.pm_.c:999
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:934
+#: ../../diskdrake/interactive.pm_.c:943
+#: ../../diskdrake/interactive.pm_.c:1009
msgid "Read carefully!"
msgstr "Læs omhyggeligt!"
@@ -1582,10 +1607,15 @@ msgid "Please click on a partition"
msgstr "Klik pć en partition"
#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
-#: ../../install_steps_gtk.pm_.c:471
+#: ../../install_steps_gtk.pm_.c:465
msgid "Details"
msgstr "Detaljer"
+#: ../../diskdrake/hd_gtk.pm_.c:252
+#, fuzzy
+msgid "No hard drives found"
+msgstr "Ingen printer fundet!"
+
#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Ext2"
msgstr "Ext2"
@@ -1610,13 +1640,13 @@ msgstr "SunOS"
msgid "Swap"
msgstr "Swap"
-#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1105
msgid "Empty"
msgstr "Tom"
-#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:331
-#: ../../install_steps_gtk.pm_.c:389 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1679
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:325
+#: ../../install_steps_gtk.pm_.c:383 ../../mouse.pm_.c:165
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1754
msgid "Other"
msgstr "Andet"
@@ -1624,12 +1654,12 @@ msgstr "Andet"
msgid "Filesystem types:"
msgstr "Filsystems-typer:"
-#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:397
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:402
msgid "Create"
msgstr "Opret"
-#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:376
-#: ../../diskdrake/interactive.pm_.c:521 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:380
+#: ../../diskdrake/interactive.pm_.c:531 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "Type"
@@ -1639,7 +1669,7 @@ msgstr "Type"
msgid "Use ``%s'' instead"
msgstr "Benyt ``%s'' i stedet"
-#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:389
msgid "Delete"
msgstr "Slet"
@@ -1647,79 +1677,79 @@ msgstr "Slet"
msgid "Use ``Unmount'' first"
msgstr "Benyt ``Afmontér'' fűrst"
-#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:513
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:518
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
msgstr ""
"Efter type-ændring af partition %s vil alle data pć denne partition gć tabt"
-#: ../../diskdrake/interactive.pm_.c:173
+#: ../../diskdrake/interactive.pm_.c:174
msgid "Choose a partition"
msgstr "Vælg en partition"
-#: ../../diskdrake/interactive.pm_.c:173
+#: ../../diskdrake/interactive.pm_.c:174
msgid "Choose another partition"
msgstr "Vælg en ny partition"
-#: ../../diskdrake/interactive.pm_.c:198
+#: ../../diskdrake/interactive.pm_.c:199
msgid "Exit"
msgstr "Afslut"
-#: ../../diskdrake/interactive.pm_.c:220
+#: ../../diskdrake/interactive.pm_.c:221
msgid "Toggle to expert mode"
msgstr "Normal -> Ekspert"
-#: ../../diskdrake/interactive.pm_.c:220
+#: ../../diskdrake/interactive.pm_.c:221
msgid "Toggle to normal mode"
msgstr "Ekspert -> Normal"
-#: ../../diskdrake/interactive.pm_.c:220
+#: ../../diskdrake/interactive.pm_.c:221
msgid "Undo"
msgstr "Fortryd"
-#: ../../diskdrake/interactive.pm_.c:239
+#: ../../diskdrake/interactive.pm_.c:240
msgid "Continue anyway?"
msgstr "Fortsæt alligevel?"
-#: ../../diskdrake/interactive.pm_.c:244
+#: ../../diskdrake/interactive.pm_.c:245
msgid "Quit without saving"
msgstr "Afslut uden at gemme"
-#: ../../diskdrake/interactive.pm_.c:244
+#: ../../diskdrake/interactive.pm_.c:245
msgid "Quit without writing the partition table?"
msgstr "Afslut uden at skrive partitionstabellen?"
-#: ../../diskdrake/interactive.pm_.c:249
+#: ../../diskdrake/interactive.pm_.c:250
msgid "Do you want to save /etc/fstab modifications"
msgstr "Űnsker du at gemme /etc/fstab-ændringerne?"
-#: ../../diskdrake/interactive.pm_.c:261
+#: ../../diskdrake/interactive.pm_.c:263
msgid "Auto allocate"
msgstr "Allokér automatisk"
-#: ../../diskdrake/interactive.pm_.c:261
+#: ../../diskdrake/interactive.pm_.c:263
msgid "Clear all"
msgstr "Slet alt"
-#: ../../diskdrake/interactive.pm_.c:261
+#: ../../diskdrake/interactive.pm_.c:263
#: ../../install_steps_interactive.pm_.c:214
msgid "More"
msgstr "Mere"
-#: ../../diskdrake/interactive.pm_.c:264
+#: ../../diskdrake/interactive.pm_.c:267
msgid "Hard drive information"
msgstr "Drev-information"
-#: ../../diskdrake/interactive.pm_.c:294
+#: ../../diskdrake/interactive.pm_.c:298
msgid "All primary partitions are used"
msgstr "Alle primære partitioner er brugt"
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:299
msgid "I can't add any more partition"
msgstr "Kan ikke tilfűje flere partitioner"
-#: ../../diskdrake/interactive.pm_.c:296
+#: ../../diskdrake/interactive.pm_.c:300
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -1727,31 +1757,31 @@ msgstr ""
"For at du kan fć flere partitioner, skal du slette én, sć der kan oprettes "
"en udvidet partition"
-#: ../../diskdrake/interactive.pm_.c:306
+#: ../../diskdrake/interactive.pm_.c:310
msgid "Save partition table"
msgstr "Gem partitionstabel"
-#: ../../diskdrake/interactive.pm_.c:307
+#: ../../diskdrake/interactive.pm_.c:311
msgid "Restore partition table"
msgstr "Genskaber partitionstabel"
-#: ../../diskdrake/interactive.pm_.c:308
+#: ../../diskdrake/interactive.pm_.c:312
msgid "Rescue partition table"
msgstr "Redder partitionstabel"
-#: ../../diskdrake/interactive.pm_.c:310
+#: ../../diskdrake/interactive.pm_.c:314
msgid "Reload partition table"
msgstr "Genindlæs partitionstabel"
-#: ../../diskdrake/interactive.pm_.c:315
+#: ../../diskdrake/interactive.pm_.c:319
msgid "Removable media automounting"
msgstr "Automontering af flytbare medier"
-#: ../../diskdrake/interactive.pm_.c:324 ../../diskdrake/interactive.pm_.c:344
+#: ../../diskdrake/interactive.pm_.c:328 ../../diskdrake/interactive.pm_.c:348
msgid "Select file"
msgstr "Vælg fil"
-#: ../../diskdrake/interactive.pm_.c:331
+#: ../../diskdrake/interactive.pm_.c:335
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1759,11 +1789,11 @@ msgstr ""
"Kopien af partitionstabellen har ikke samme stűrrelse\n"
"Fortsæt alligevel?"
-#: ../../diskdrake/interactive.pm_.c:345
+#: ../../diskdrake/interactive.pm_.c:349
msgid "Warning"
msgstr "Advarsel"
-#: ../../diskdrake/interactive.pm_.c:346
+#: ../../diskdrake/interactive.pm_.c:350
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1771,79 +1801,71 @@ msgstr ""
"Indsæt en diskette i diskettedrevet\n"
"Alle data pć disketten vil blive slettet"
-#: ../../diskdrake/interactive.pm_.c:357
+#: ../../diskdrake/interactive.pm_.c:361
msgid "Trying to rescue partition table"
msgstr "Forsűger at redde partitionstabellen"
-#: ../../diskdrake/interactive.pm_.c:363
+#: ../../diskdrake/interactive.pm_.c:367
msgid "Detailed information"
msgstr "Detaljeret information"
-#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:652
+#: ../../diskdrake/interactive.pm_.c:382 ../../diskdrake/interactive.pm_.c:662
msgid "Resize"
msgstr "Stűrrelsesændring"
-#: ../../diskdrake/interactive.pm_.c:379 ../../diskdrake/interactive.pm_.c:705
+#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/interactive.pm_.c:715
msgid "Move"
msgstr "Flyt"
-#: ../../diskdrake/interactive.pm_.c:380
+#: ../../diskdrake/interactive.pm_.c:384
msgid "Format"
msgstr "Formatér"
-#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/smbnfs_gtk.pm_.c:82
-msgid "Mount"
-msgstr "Montér"
-
-#: ../../diskdrake/interactive.pm_.c:382
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Add to RAID"
msgstr "Tilfűj til RAID"
-#: ../../diskdrake/interactive.pm_.c:383
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Add to LVM"
msgstr "Tilfűj til LVM"
-#: ../../diskdrake/interactive.pm_.c:384 ../../diskdrake/smbnfs_gtk.pm_.c:81
-msgid "Unmount"
-msgstr "Afmontér"
-
-#: ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/interactive.pm_.c:390
msgid "Remove from RAID"
msgstr "Fjern fra RAID"
-#: ../../diskdrake/interactive.pm_.c:387
+#: ../../diskdrake/interactive.pm_.c:391
msgid "Remove from LVM"
msgstr "Fjern fra LVM"
-#: ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/interactive.pm_.c:392
msgid "Modify RAID"
msgstr "Ændr RAID"
-#: ../../diskdrake/interactive.pm_.c:389
+#: ../../diskdrake/interactive.pm_.c:393
msgid "Use for loopback"
msgstr "Loopback anvendelse"
-#: ../../diskdrake/interactive.pm_.c:428
+#: ../../diskdrake/interactive.pm_.c:433
msgid "Create a new partition"
msgstr "Opret en ny partition"
-#: ../../diskdrake/interactive.pm_.c:431
+#: ../../diskdrake/interactive.pm_.c:436
msgid "Start sector: "
msgstr "Startsektor: "
-#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:805
+#: ../../diskdrake/interactive.pm_.c:438 ../../diskdrake/interactive.pm_.c:815
msgid "Size in MB: "
msgstr "Stűrrelse i Mb: "
-#: ../../diskdrake/interactive.pm_.c:434 ../../diskdrake/interactive.pm_.c:806
+#: ../../diskdrake/interactive.pm_.c:439 ../../diskdrake/interactive.pm_.c:816
msgid "Filesystem type: "
msgstr "Filsystemstype: "
-#: ../../diskdrake/interactive.pm_.c:439
+#: ../../diskdrake/interactive.pm_.c:444
msgid "Preference: "
msgstr "Præference: "
-#: ../../diskdrake/interactive.pm_.c:464
+#: ../../diskdrake/interactive.pm_.c:469
msgid ""
"You can't create a new partition\n"
"(since you reached the maximal number of primary partitions).\n"
@@ -1853,33 +1875,33 @@ msgstr ""
"(fordi du er oppe pć det maksimale antal primære partitioner)\n"
"Fjern fűrst en primær partition og opret en udvidet partition."
-#: ../../diskdrake/interactive.pm_.c:494
+#: ../../diskdrake/interactive.pm_.c:499
msgid "Remove the loopback file?"
msgstr "Fjern loopback-filen?"
-#: ../../diskdrake/interactive.pm_.c:519
+#: ../../diskdrake/interactive.pm_.c:529
msgid "Change partition type"
msgstr "Skift partitionstype"
-#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:530 ../../diskdrake/removable.pm_.c:48
msgid "Which filesystem do you want?"
msgstr "Hvilket filsystem űnsker du at bruge?"
-#: ../../diskdrake/interactive.pm_.c:526
+#: ../../diskdrake/interactive.pm_.c:536
msgid "Switching from ext2 to ext3"
msgstr "Skifter fra ext2 til ext3"
-#: ../../diskdrake/interactive.pm_.c:556
+#: ../../diskdrake/interactive.pm_.c:566
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "Hvor űnsker du at montere loopback-fil %s?"
-#: ../../diskdrake/interactive.pm_.c:557
+#: ../../diskdrake/interactive.pm_.c:567
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Hvor űnsker du at montere partitionen %s?"
-#: ../../diskdrake/interactive.pm_.c:563
+#: ../../diskdrake/interactive.pm_.c:573
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1888,137 +1910,137 @@ msgstr ""
"loopback.\n"
"Fjern loopback fűrst"
-#: ../../diskdrake/interactive.pm_.c:584
+#: ../../diskdrake/interactive.pm_.c:594
#, c-format
msgid "Where do you want to mount %s?"
msgstr "Hvor űnsker du at montere %s?"
-#: ../../diskdrake/interactive.pm_.c:608
+#: ../../diskdrake/interactive.pm_.c:618
msgid "Computing FAT filesystem bounds"
msgstr "Udregner FAT-filsystemets grænser"
-#: ../../diskdrake/interactive.pm_.c:608 ../../diskdrake/interactive.pm_.c:667
-#: ../../install_interactive.pm_.c:131
+#: ../../diskdrake/interactive.pm_.c:618 ../../diskdrake/interactive.pm_.c:677
+#: ../../install_interactive.pm_.c:133
msgid "Resizing"
msgstr "Ændrer stűrrelsen"
-#: ../../diskdrake/interactive.pm_.c:640
+#: ../../diskdrake/interactive.pm_.c:650
msgid "This partition is not resizeable"
msgstr "Stűrrelsen pć denne partition kan ikke ændres"
-#: ../../diskdrake/interactive.pm_.c:645
+#: ../../diskdrake/interactive.pm_.c:655
msgid "All data on this partition should be backed-up"
msgstr "Det bűr laves en backup af alle data pć denne partition"
-#: ../../diskdrake/interactive.pm_.c:647
+#: ../../diskdrake/interactive.pm_.c:657
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr ""
"Efter ændring af stűrrelsen af partition %s vil alle data pć denne partition "
"gć tabt"
-#: ../../diskdrake/interactive.pm_.c:652
+#: ../../diskdrake/interactive.pm_.c:662
msgid "Choose the new size"
msgstr "Vælg den nye stűrrelse"
-#: ../../diskdrake/interactive.pm_.c:653
+#: ../../diskdrake/interactive.pm_.c:663
msgid "New size in MB: "
msgstr "Ny stűrrelse i Mb: "
-#: ../../diskdrake/interactive.pm_.c:706
+#: ../../diskdrake/interactive.pm_.c:716
msgid "Which disk do you want to move it to?"
msgstr "Hvilken disk űnsker du at flytte den til?"
-#: ../../diskdrake/interactive.pm_.c:707
+#: ../../diskdrake/interactive.pm_.c:717
msgid "Sector"
msgstr "Sektor"
-#: ../../diskdrake/interactive.pm_.c:708
+#: ../../diskdrake/interactive.pm_.c:718
msgid "Which sector do you want to move it to?"
msgstr "Hvilken sektor űnsker du at flytte den til?"
-#: ../../diskdrake/interactive.pm_.c:711
+#: ../../diskdrake/interactive.pm_.c:721
msgid "Moving"
msgstr "Flytter"
-#: ../../diskdrake/interactive.pm_.c:711
+#: ../../diskdrake/interactive.pm_.c:721
msgid "Moving partition..."
msgstr "Flytter partition..."
-#: ../../diskdrake/interactive.pm_.c:728
+#: ../../diskdrake/interactive.pm_.c:738
msgid "Choose an existing RAID to add to"
msgstr "Vælg en eksisterende RAID som skal udvides"
-#: ../../diskdrake/interactive.pm_.c:729 ../../diskdrake/interactive.pm_.c:746
+#: ../../diskdrake/interactive.pm_.c:739 ../../diskdrake/interactive.pm_.c:756
msgid "new"
msgstr "ny"
-#: ../../diskdrake/interactive.pm_.c:744
+#: ../../diskdrake/interactive.pm_.c:754
msgid "Choose an existing LVM to add to"
msgstr "Vælg en eksisterende LVM som skal udvides"
-#: ../../diskdrake/interactive.pm_.c:749
+#: ../../diskdrake/interactive.pm_.c:759
msgid "LVM name?"
msgstr "LVM-navn?"
-#: ../../diskdrake/interactive.pm_.c:790
+#: ../../diskdrake/interactive.pm_.c:800
msgid "This partition can't be used for loopback"
msgstr "Denne partition kan ikke bruges til loopback"
-#: ../../diskdrake/interactive.pm_.c:803
+#: ../../diskdrake/interactive.pm_.c:813
msgid "Loopback"
msgstr "Loopback"
-#: ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:814
msgid "Loopback file name: "
msgstr "Loopback-filnavn: "
-#: ../../diskdrake/interactive.pm_.c:809
+#: ../../diskdrake/interactive.pm_.c:819
msgid "Give a file name"
msgstr "Giv et filnavn"
-#: ../../diskdrake/interactive.pm_.c:812
+#: ../../diskdrake/interactive.pm_.c:822
msgid "File already used by another loopback, choose another one"
msgstr "Filen er allerede brugt af en anden loopback, vælg en anden fil"
-#: ../../diskdrake/interactive.pm_.c:813
+#: ../../diskdrake/interactive.pm_.c:823
msgid "File already exists. Use it?"
msgstr "Filen findes allerede. Skal den bruges?"
-#: ../../diskdrake/interactive.pm_.c:836
+#: ../../diskdrake/interactive.pm_.c:846
msgid "Mount options"
msgstr "Modulindstillinger"
-#: ../../diskdrake/interactive.pm_.c:843
+#: ../../diskdrake/interactive.pm_.c:853
msgid "Various"
msgstr "Diverse"
-#: ../../diskdrake/interactive.pm_.c:907 ../../standalone/drakfloppy_.c:103
+#: ../../diskdrake/interactive.pm_.c:917 ../../standalone/drakfloppy_.c:103
msgid "device"
msgstr "enhed"
-#: ../../diskdrake/interactive.pm_.c:908
+#: ../../diskdrake/interactive.pm_.c:918
msgid "level"
msgstr "niveau"
-#: ../../diskdrake/interactive.pm_.c:909
+#: ../../diskdrake/interactive.pm_.c:919
msgid "chunk size"
msgstr "enhedsstűrrelse"
-#: ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:934
msgid "Be careful: this operation is dangerous."
msgstr "Vær forsigtig: denne operation er farlig."
-#: ../../diskdrake/interactive.pm_.c:939
+#: ../../diskdrake/interactive.pm_.c:949
msgid "What type of partitioning?"
msgstr "Hvilken slags partitionering?"
-#: ../../diskdrake/interactive.pm_.c:955
+#: ../../diskdrake/interactive.pm_.c:965
#, c-format
msgid "The package %s is needed. Install it?"
msgstr "Pakken %s kræves. Űnsker du at installere den?"
-#: ../../diskdrake/interactive.pm_.c:969
+#: ../../diskdrake/interactive.pm_.c:979
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -2030,7 +2052,7 @@ msgstr ""
"fungere, eller du kan undlade at benytte LILO, hvilket vil betyde, at du "
"ikke har brug for /boot"
-#: ../../diskdrake/interactive.pm_.c:973
+#: ../../diskdrake/interactive.pm_.c:983
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -2042,7 +2064,7 @@ msgstr ""
"partition. Hvis du űnsker at benytte LILO, skal du oprette en /boot "
"partition indenfor 1024-cylinder grænsen."
-#: ../../diskdrake/interactive.pm_.c:979
+#: ../../diskdrake/interactive.pm_.c:989
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
@@ -2052,45 +2074,45 @@ msgstr ""
"Ingen systemopstarter kan hćndtere dette uden en /boot partition.\n"
"Sć vær omhyggelig med at tilfűje en /boot partition"
-#: ../../diskdrake/interactive.pm_.c:999
+#: ../../diskdrake/interactive.pm_.c:1009
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "Partitionstabellen for disk %s vil nu blive skrevet pć disken!"
-#: ../../diskdrake/interactive.pm_.c:1003
+#: ../../diskdrake/interactive.pm_.c:1013
msgid "You'll need to reboot before the modification can take place"
msgstr "Du skal genstarte maskinen for at aktivere ændringerne"
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1024
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr ""
"Efter formatering af partitionen %s vil alle data pć denne partition gć tabt"
-#: ../../diskdrake/interactive.pm_.c:1016
+#: ../../diskdrake/interactive.pm_.c:1026
msgid "Formatting"
msgstr "Formaterer"
-#: ../../diskdrake/interactive.pm_.c:1017
+#: ../../diskdrake/interactive.pm_.c:1027
#, c-format
msgid "Formatting loopback file %s"
msgstr "Formaterer loopback-fil %s"
-#: ../../diskdrake/interactive.pm_.c:1018
-#: ../../install_steps_interactive.pm_.c:476
+#: ../../diskdrake/interactive.pm_.c:1028
+#: ../../install_steps_interactive.pm_.c:459
#, c-format
msgid "Formatting partition %s"
msgstr "Formaterer partition %s"
-#: ../../diskdrake/interactive.pm_.c:1029
+#: ../../diskdrake/interactive.pm_.c:1039
msgid "Hide files"
msgstr "Skjul filer"
-#: ../../diskdrake/interactive.pm_.c:1029
+#: ../../diskdrake/interactive.pm_.c:1039
msgid "Move files to the new partition"
msgstr "Flyt filer til den nye partition"
-#: ../../diskdrake/interactive.pm_.c:1030
+#: ../../diskdrake/interactive.pm_.c:1040
#, c-format
msgid ""
"Directory %s already contains data\n"
@@ -2099,83 +2121,83 @@ msgstr ""
"Katalog %s indeholder allerede nogen data\n"
"(%s)"
-#: ../../diskdrake/interactive.pm_.c:1041
+#: ../../diskdrake/interactive.pm_.c:1051
msgid "Moving files to the new partition"
msgstr "Flytter filer til den nye partition"
-#: ../../diskdrake/interactive.pm_.c:1045
+#: ../../diskdrake/interactive.pm_.c:1055
#, c-format
msgid "Copying %s"
msgstr "Kopierer %s"
-#: ../../diskdrake/interactive.pm_.c:1049
+#: ../../diskdrake/interactive.pm_.c:1059
#, c-format
msgid "Removing %s"
msgstr "Fjerner %s"
-#: ../../diskdrake/interactive.pm_.c:1059
+#: ../../diskdrake/interactive.pm_.c:1069
#, c-format
msgid "partition %s is now known as %s"
msgstr "partition %s er nu kendt som %s"
-#: ../../diskdrake/interactive.pm_.c:1080
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1090
+#: ../../diskdrake/interactive.pm_.c:1149
msgid "Device: "
msgstr "Enhed: "
-#: ../../diskdrake/interactive.pm_.c:1081
+#: ../../diskdrake/interactive.pm_.c:1091
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "DOS-drevbogstav: %s (bare et gæt)\n"
-#: ../../diskdrake/interactive.pm_.c:1085
-#: ../../diskdrake/interactive.pm_.c:1093
-#: ../../diskdrake/interactive.pm_.c:1157
+#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1103
+#: ../../diskdrake/interactive.pm_.c:1168
msgid "Type: "
msgstr "Type: "
-#: ../../diskdrake/interactive.pm_.c:1089
+#: ../../diskdrake/interactive.pm_.c:1099
msgid "Name: "
msgstr "Navn: "
-#: ../../diskdrake/interactive.pm_.c:1097
+#: ../../diskdrake/interactive.pm_.c:1107
#, c-format
msgid "Start: sector %s\n"
msgstr "Start: sektor %s\n"
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1108
#, c-format
msgid "Size: %s"
msgstr "Stűrrelse: %s"
-#: ../../diskdrake/interactive.pm_.c:1100
+#: ../../diskdrake/interactive.pm_.c:1110
#, c-format
msgid ", %s sectors"
msgstr ", %s sektorer"
-#: ../../diskdrake/interactive.pm_.c:1102
+#: ../../diskdrake/interactive.pm_.c:1112
#, c-format
msgid "Cylinder %d to %d\n"
msgstr "Cylinder %d til %d\n"
-#: ../../diskdrake/interactive.pm_.c:1103
+#: ../../diskdrake/interactive.pm_.c:1113
msgid "Formatted\n"
msgstr "Formateret\n"
-#: ../../diskdrake/interactive.pm_.c:1104
+#: ../../diskdrake/interactive.pm_.c:1114
msgid "Not formatted\n"
msgstr "Ikke formateret\n"
-#: ../../diskdrake/interactive.pm_.c:1105
+#: ../../diskdrake/interactive.pm_.c:1115
msgid "Mounted\n"
msgstr "Monteret\n"
-#: ../../diskdrake/interactive.pm_.c:1106
+#: ../../diskdrake/interactive.pm_.c:1116
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1108
+#: ../../diskdrake/interactive.pm_.c:1118
#, c-format
msgid ""
"Loopback file(s):\n"
@@ -2184,7 +2206,7 @@ msgstr ""
"Loopback-fil(er):\n"
" %s\n"
-#: ../../diskdrake/interactive.pm_.c:1109
+#: ../../diskdrake/interactive.pm_.c:1119
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -2192,27 +2214,27 @@ msgstr ""
"Partition som opstartes som standard\n"
" (gælder kun MS-DOS-opstart, ikke LILO)\n"
-#: ../../diskdrake/interactive.pm_.c:1111
+#: ../../diskdrake/interactive.pm_.c:1121
#, c-format
msgid "Level %s\n"
msgstr "Niveau %s\n"
-#: ../../diskdrake/interactive.pm_.c:1112
+#: ../../diskdrake/interactive.pm_.c:1122
#, c-format
msgid "Chunk size %s\n"
msgstr "Enhedsstűrrelse %s\n"
-#: ../../diskdrake/interactive.pm_.c:1113
+#: ../../diskdrake/interactive.pm_.c:1123
#, c-format
msgid "RAID-disks %s\n"
msgstr "RAID-diske %s\n"
-#: ../../diskdrake/interactive.pm_.c:1115
+#: ../../diskdrake/interactive.pm_.c:1125
#, c-format
msgid "Loopback file name: %s"
msgstr "Loopback-filnavn: %s"
-#: ../../diskdrake/interactive.pm_.c:1118
+#: ../../diskdrake/interactive.pm_.c:1128
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -2224,7 +2246,7 @@ msgstr ""
"en driver-partition, du skal\n"
"sandsynligvis lade den være.\n"
-#: ../../diskdrake/interactive.pm_.c:1121
+#: ../../diskdrake/interactive.pm_.c:1131
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2236,58 +2258,62 @@ msgstr ""
"partition er for at\n"
"dual-boote dit system.\n"
-#: ../../diskdrake/interactive.pm_.c:1140
+#: ../../diskdrake/interactive.pm_.c:1150
+msgid "Read-only"
+msgstr ""
+
+#: ../../diskdrake/interactive.pm_.c:1151
#, c-format
msgid "Size: %s\n"
msgstr "Stűrrelse: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1141
+#: ../../diskdrake/interactive.pm_.c:1152
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Opbygning: %s cylindre, %s hoveder, %s sektorer\n"
-#: ../../diskdrake/interactive.pm_.c:1142
+#: ../../diskdrake/interactive.pm_.c:1153
msgid "Info: "
msgstr "Info: "
-#: ../../diskdrake/interactive.pm_.c:1143
+#: ../../diskdrake/interactive.pm_.c:1154
#, c-format
msgid "LVM-disks %s\n"
msgstr "LVM-diske %s\n"
-#: ../../diskdrake/interactive.pm_.c:1144
+#: ../../diskdrake/interactive.pm_.c:1155
#, c-format
msgid "Partition table type: %s\n"
msgstr "Partitionstabel-type: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1145
+#: ../../diskdrake/interactive.pm_.c:1156
#, c-format
msgid "on channel %d id %d\n"
msgstr "pć kanal %d id %d\n"
-#: ../../diskdrake/interactive.pm_.c:1175
+#: ../../diskdrake/interactive.pm_.c:1186
msgid "Filesystem encryption key"
msgstr "Krypteringsnűgle for filsystem"
-#: ../../diskdrake/interactive.pm_.c:1176
+#: ../../diskdrake/interactive.pm_.c:1187
msgid "Choose your filesystem encryption key"
msgstr "Vælg din krypteringsnűgle for filsystemet"
-#: ../../diskdrake/interactive.pm_.c:1179
+#: ../../diskdrake/interactive.pm_.c:1190
#, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr ""
"Denne krypteringsnűgle er for nem at gætte (skal mindst være pć %d tegn)"
-#: ../../diskdrake/interactive.pm_.c:1180
+#: ../../diskdrake/interactive.pm_.c:1191
msgid "The encryption keys do not match"
msgstr "Krypteringsnűglerne stemmer ikke overens"
-#: ../../diskdrake/interactive.pm_.c:1183
+#: ../../diskdrake/interactive.pm_.c:1194
msgid "Encryption key"
msgstr "Krypteringsnűgle"
-#: ../../diskdrake/interactive.pm_.c:1184
+#: ../../diskdrake/interactive.pm_.c:1195
msgid "Encryption key (again)"
msgstr "Krypteringsnűgle (igen)"
@@ -2320,10 +2346,10 @@ msgstr "Hvilket brugernavn"
msgid ""
"Please enter your username, password and domain name to access this host."
msgstr ""
-"Intast venligst dit brugernavn, din adgangskode og dit domænenavn for at fć "
+"Indtast venligst dit brugernavn, din adgangskode og dit domænenavn for at fć "
"adgang til denne vært."
-#: ../../diskdrake/smbnfs_gtk.pm_.c:178
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3527
msgid "Username"
msgstr "Brugernavn"
@@ -2335,23 +2361,23 @@ msgstr "Domæne"
msgid "Search servers"
msgstr "Sűg efter servere"
-#: ../../fs.pm_.c:552 ../../fs.pm_.c:562 ../../fs.pm_.c:566 ../../fs.pm_.c:570
-#: ../../fs.pm_.c:574 ../../fs.pm_.c:578
+#: ../../fs.pm_.c:544 ../../fs.pm_.c:554 ../../fs.pm_.c:558 ../../fs.pm_.c:562
+#: ../../fs.pm_.c:566 ../../fs.pm_.c:570
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s formatering af %s mislykkedes"
-#: ../../fs.pm_.c:615
+#: ../../fs.pm_.c:607
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "Ved ikke hvordan man formaterer %s som type %s"
-#: ../../fs.pm_.c:687 ../../fs.pm_.c:731
+#: ../../fs.pm_.c:681 ../../fs.pm_.c:724
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr "montering af partition %s i katalog %s mislykkedes"
-#: ../../fs.pm_.c:746 ../../partition_table.pm_.c:602
+#: ../../fs.pm_.c:739 ../../partition_table.pm_.c:598
#, c-format
msgid "error unmounting %s: %s"
msgstr "fejl ved afmontering af %s: %s"
@@ -2368,33 +2394,50 @@ msgstr "med /usr"
msgid "server"
msgstr "server"
-#: ../../fsedit.pm_.c:472
+#: ../../fsedit.pm_.c:240
+#, fuzzy, c-format
+msgid ""
+"I can't read the partition table of device %s, it's too corrupted for me :(\n"
+"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
+"The other solution is to not allow DrakX to modify the partition table.\n"
+"(the error is %s)\n"
+"\n"
+"Do you agree to loose all the partitions?\n"
+msgstr ""
+"Jeg kan ikke læse din partitionstabel, den er for űdelagt for mig :( Jeg kan "
+"forsűge fortsat at udblanke dćrlige partitioner, ALLE DATA vil gć tabt. Den "
+"anden mulighed er at forbyde DrakX at ændre partitionstabellen. (fejlen er %"
+"s)\n"
+"\n"
+"Er du indforstćet med at űdelægge alle partitionerne?\n"
+
+#: ../../fsedit.pm_.c:501
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr "Du kan ikke bruge JFS pć partitioner mindre end 16Mb"
-#: ../../fsedit.pm_.c:473
+#: ../../fsedit.pm_.c:502
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr "Du kan ikke bruge ReiserFS pć partitioner mindre end 32Mb"
-#: ../../fsedit.pm_.c:492
+#: ../../fsedit.pm_.c:521
msgid "Mount points must begin with a leading /"
msgstr "Monteringsstier skal begynde med /"
-#: ../../fsedit.pm_.c:493
+#: ../../fsedit.pm_.c:522
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Der findes allerede en partition med monterings-sti %s\n"
-#: ../../fsedit.pm_.c:497
+#: ../../fsedit.pm_.c:526
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr "Du kan ikke bruge et LVM logisk delarkiv for monteringspunkt %s"
-#: ../../fsedit.pm_.c:499
+#: ../../fsedit.pm_.c:528
msgid "This directory should remain within the root filesystem"
msgstr "Dette katalog bűr ligge pć rod-filsystemet"
-#: ../../fsedit.pm_.c:501
+#: ../../fsedit.pm_.c:530
msgid ""
"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
"point\n"
@@ -2402,103 +2445,140 @@ msgstr ""
"Du skal have et rigtigt filsystem (ext2/ext3, reiserfs, xfs eller jfs) til "
"dette monteringspunkt\n"
-#: ../../fsedit.pm_.c:503
+#: ../../fsedit.pm_.c:532
#, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr "Du kan ikke bruge et krypteret filsystem for monteringspunkt %s"
-#: ../../fsedit.pm_.c:570
+#: ../../fsedit.pm_.c:599
msgid "Not enough free space for auto-allocating"
msgstr "Ikke nok fri plads til at tildele nye partitioner automatisk"
-#: ../../fsedit.pm_.c:572
+#: ../../fsedit.pm_.c:601
msgid "Nothing to do"
msgstr "Ingenting at lave"
-#: ../../fsedit.pm_.c:665
+#: ../../fsedit.pm_.c:694
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Fejl ved ćbning af %s for skrivning: %s"
-#: ../../fsedit.pm_.c:750
+#: ../../harddrake/sound.pm_.c:155
+msgid "No alternative driver"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:156
+#, c-format
+msgid "There's no known OSS/ALSA alternative driver for your sound card (%s)"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:158
+#, fuzzy
+msgid "Sound configuration"
+msgstr "CUPS-Konfiguration"
+
+#: ../../harddrake/sound.pm_.c:159
+#, c-format
msgid ""
-"An error occurred - no valid devices were found on which to create new "
-"filesystems. Please check your hardware for the cause of this problem"
+"Here you can select an alternative driver (either OSS or ALSA) for your "
+"sound card (%s)"
msgstr ""
-"Der er opstćet en fejl - der kunne ikke findes nogen gyldige enheder, hvor "
-"der kan oprettes nye filsystemer. Undersűg din maskine for at finde ćrsagen "
-"til problemet"
-#: ../../fsedit.pm_.c:773
-msgid "You don't have any partitions!"
-msgstr "Du har ikke nogen partitioner!"
+#: ../../harddrake/sound.pm_.c:162
+#, fuzzy
+msgid "Driver:"
+msgstr "Drivprogram"
+
+#: ../../harddrake/sound.pm_.c:173
+msgid "No known driver"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:174
+#, c-format
+msgid "There's no known driver for your sound card (%s)"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:177
+#, fuzzy
+msgid "Unkown driver"
+msgstr "Ukendt model"
-#: ../../harddrake/ui.pm_.c:15
+#: ../../harddrake/sound.pm_.c:178
+#, c-format
+msgid ""
+"The \"%s\" driver for your sound card is unlisted\n"
+"\n"
+"Please send the output of the \"lspcidrake -v\" command to\n"
+"<install at mandrakesoft dot com>\n"
+"with subject: unlisted sound driver \"%s\""
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:16
msgid "Model"
msgstr "Model"
-#: ../../harddrake/ui.pm_.c:15
+#: ../../harddrake/ui.pm_.c:16
msgid "hard disk model"
msgstr "Disk-model"
-#: ../../harddrake/ui.pm_.c:16
+#: ../../harddrake/ui.pm_.c:17
msgid "Channel"
msgstr "Kanal"
-#: ../../harddrake/ui.pm_.c:16
+#: ../../harddrake/ui.pm_.c:17
msgid "EIDE/SCSI channel"
msgstr "EIDE/SCSI-kanal"
-#: ../../harddrake/ui.pm_.c:18
+#: ../../harddrake/ui.pm_.c:19
msgid "Bus"
msgstr "Bus"
-#: ../../harddrake/ui.pm_.c:19
+#: ../../harddrake/ui.pm_.c:20
msgid ""
"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
msgstr "Dette er den fysiske bus som enheden er tilsuttet (fx PCI, USB, ...)"
-#: ../../harddrake/ui.pm_.c:20
+#: ../../harddrake/ui.pm_.c:21
msgid "Module"
msgstr "Modul"
-#: ../../harddrake/ui.pm_.c:20
+#: ../../harddrake/ui.pm_.c:21
msgid "the module of the GNU/Linux kernel that handle that device"
msgstr "modulet i GNU/Linux-kernen som hćndterer denne enhed"
-#: ../../harddrake/ui.pm_.c:21
+#: ../../harddrake/ui.pm_.c:22
msgid "Media class"
msgstr "Medieklasse"
-#: ../../harddrake/ui.pm_.c:21
+#: ../../harddrake/ui.pm_.c:22
msgid "class of hardware device"
msgstr "Klasse af maskinenhed"
-#: ../../harddrake/ui.pm_.c:22 ../../printerdrake.pm_.c:1404
+#: ../../harddrake/ui.pm_.c:23 ../../printerdrake.pm_.c:1517
msgid "Description"
msgstr "Beskrivelse"
-#: ../../harddrake/ui.pm_.c:22
+#: ../../harddrake/ui.pm_.c:23
msgid "this field describe the device"
msgstr "Dette felt beskriver enheden"
-#: ../../harddrake/ui.pm_.c:24
+#: ../../harddrake/ui.pm_.c:25
msgid "Bus identification"
msgstr "Bus-identifikation"
-#: ../../harddrake/ui.pm_.c:25
+#: ../../harddrake/ui.pm_.c:26
msgid ""
-"- PCI and USB devices : this list the vendor, device, subvendor and "
-"subdevice PCI/USB ids"
+"- PCI and USB devices: this list the vendor, device, subvendor and subdevice "
+"PCI/USB ids"
msgstr ""
"- PCI- og USB-enheder: dette viser producenten, enheden, underproducent og "
"underenhed PCI/USB id'er"
-#: ../../harddrake/ui.pm_.c:27
+#: ../../harddrake/ui.pm_.c:28
msgid "Location on the bus"
msgstr "Plads pć bussen"
-#: ../../harddrake/ui.pm_.c:28
+#: ../../harddrake/ui.pm_.c:29
msgid ""
"- pci devices: this gives the PCI slot, device and function of this card\n"
"- eide devices: the device is either a slave or a master device\n"
@@ -2509,48 +2589,57 @@ msgstr ""
"- eide-enheder: enheden er enten en slave- eller mester-enhed\n"
"- scsi-enheder: scsi-bussen og scsi enheds-id'er"
-#: ../../harddrake/ui.pm_.c:31
+#: ../../harddrake/ui.pm_.c:32
msgid "Old device file"
msgstr "Gammel enhedsfil"
-#: ../../harddrake/ui.pm_.c:32
+#: ../../harddrake/ui.pm_.c:33
msgid "old static device name used in dev package"
msgstr "gammel statisk enhedsnavn brugt i dev-pakke"
-#: ../../harddrake/ui.pm_.c:33
+#: ../../harddrake/ui.pm_.c:34
msgid "New devfs device"
msgstr "Ny devfs-enhed"
-#: ../../harddrake/ui.pm_.c:34
+#: ../../harddrake/ui.pm_.c:35
msgid "new dinamic device name generated by incore kernel devfs"
msgstr "Nyt dynamisk enhedsnavn genereret af den kűrende kernes devfs"
-#: ../../harddrake/ui.pm_.c:35
+#: ../../harddrake/ui.pm_.c:36
msgid "Number of buttons"
msgstr "Antal knapper"
-#: ../../harddrake/ui.pm_.c:36
+#: ../../harddrake/ui.pm_.c:37
msgid "the vendor name of the device"
msgstr "navnet pć producenten af enheden"
-#: ../../harddrake/ui.pm_.c:60
+#: ../../harddrake/ui.pm_.c:38
+#, fuzzy
+msgid "Alternative drivers"
+msgstr "Alternativ testside (A4)"
+
+#: ../../harddrake/ui.pm_.c:39
+msgid "the list of alternative drivers for this sound card"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:63
msgid "/_Quit"
msgstr "/_Afslut"
-#: ../../harddrake/ui.pm_.c:61 ../../harddrake/ui.pm_.c:62
-#: ../../harddrake/ui.pm_.c:68 ../../standalone/logdrake_.c:110
+#: ../../harddrake/ui.pm_.c:64 ../../harddrake/ui.pm_.c:65
+#: ../../harddrake/ui.pm_.c:71 ../../standalone/logdrake_.c:110
msgid "/_Help"
msgstr "/_Hjælp"
-#: ../../harddrake/ui.pm_.c:62
+#: ../../harddrake/ui.pm_.c:65
msgid "/_Help..."
msgstr "/_Hjælp..."
-#: ../../harddrake/ui.pm_.c:63
+#: ../../harddrake/ui.pm_.c:66
msgid "Harddrake help"
msgstr "Harddrake hjælp"
-#: ../../harddrake/ui.pm_.c:64
+#: ../../harddrake/ui.pm_.c:67
msgid ""
"Description of the fields:\n"
"\n"
@@ -2558,15 +2647,15 @@ msgstr ""
"Beskrivelse af felterne:\n"
"\n"
-#: ../../harddrake/ui.pm_.c:68
+#: ../../harddrake/ui.pm_.c:71
msgid "/_About..."
msgstr "/_Om..."
-#: ../../harddrake/ui.pm_.c:69
+#: ../../harddrake/ui.pm_.c:72
msgid "About Harddrake"
msgstr "Om Harddrake"
-#: ../../harddrake/ui.pm_.c:70
+#: ../../harddrake/ui.pm_.c:73
msgid ""
"This is HardDrake, a Mandrake hardware configuration tool.\n"
"Version:"
@@ -2574,51 +2663,51 @@ msgstr ""
"Dette er HardDrake, et Mandrake-værktűj for konfigurering af maskinel.\n"
"Version:"
-#: ../../harddrake/ui.pm_.c:71
+#: ../../harddrake/ui.pm_.c:74
msgid "Author:"
msgstr "Forfatter:"
-#: ../../harddrake/ui.pm_.c:83
+#: ../../harddrake/ui.pm_.c:86
msgid "Harddrake2 version "
msgstr "Harddrake2 version "
-#: ../../harddrake/ui.pm_.c:91
+#: ../../harddrake/ui.pm_.c:103
msgid "Detected hardware"
msgstr "Fundet maskinel"
-#: ../../harddrake/ui.pm_.c:92
+#: ../../harddrake/ui.pm_.c:105
+msgid "Information"
+msgstr "Informationer"
+
+#: ../../harddrake/ui.pm_.c:108
msgid "Configure module"
msgstr "Konfigurér modul"
-#: ../../harddrake/ui.pm_.c:92
-msgid "Informations"
-msgstr "Informationer"
-
-#: ../../harddrake/ui.pm_.c:92
+#: ../../harddrake/ui.pm_.c:109
msgid "Run config tool"
msgstr "Kűr konfigurationsværktűj"
-#: ../../harddrake/ui.pm_.c:96
+#: ../../harddrake/ui.pm_.c:113
msgid "Detection in progress"
msgstr "Sűgning udfűres"
-#: ../../harddrake/ui.pm_.c:96 ../../interactive.pm_.c:388
+#: ../../harddrake/ui.pm_.c:113 ../../interactive.pm_.c:391
msgid "Please wait"
msgstr "Vent venligst"
-#: ../../harddrake/ui.pm_.c:139
+#: ../../harddrake/ui.pm_.c:156
msgid "primary"
msgstr "primær"
-#: ../../harddrake/ui.pm_.c:139
+#: ../../harddrake/ui.pm_.c:156
msgid "secondary"
msgstr "sekundær"
-#: ../../harddrake/ui.pm_.c:176
+#: ../../harddrake/ui.pm_.c:197
msgid "You can configure each parameter of the module here."
msgstr "Du kan konfigurere hver parameter for modulet her."
-#: ../../harddrake/ui.pm_.c:192
+#: ../../harddrake/ui.pm_.c:213
#, c-format
msgid "Running \"%s\" ..."
msgstr "Kűrer \"%s\" ..."
@@ -2652,15 +2741,15 @@ msgstr ""
"korttyper her. Bare vælg dit tv-korts parametre om nűdvendigt"
#: ../../harddrake/v4l.pm_.c:213
-msgid "Card model :"
+msgid "Card model:"
msgstr "Kortmodel:"
#: ../../harddrake/v4l.pm_.c:214
-msgid "Tuner type :"
+msgid "Tuner type:"
msgstr "Tuner-type:"
#: ../../harddrake/v4l.pm_.c:215
-msgid "Number of capture buffers :"
+msgid "Number of capture buffers:"
msgstr "Antal fangningsbuffere:"
#: ../../harddrake/v4l.pm_.c:215
@@ -2668,11 +2757,11 @@ msgid "number of capture buffers for mmap'ed capture"
msgstr "Antal fangningsbuffere for mmap-fangning"
#: ../../harddrake/v4l.pm_.c:217
-msgid "PLL setting :"
+msgid "PLL setting:"
msgstr "PLL-opsætning:"
#: ../../harddrake/v4l.pm_.c:218
-msgid "Radio support :"
+msgid "Radio support:"
msgstr "Radio-understűttelse:"
#: ../../harddrake/v4l.pm_.c:218
@@ -2684,22 +2773,22 @@ msgid ""
"GNU/Linux is a multiuser system, and this means that each user can have his\n"
"own preferences, his own files and so on. You can read the ``User Guide''\n"
"to learn more. But unlike \"root\", which is the administrator, the users\n"
-"you will add here will not be entitled to change anything except their own\n"
-"files and their own configuration. You will have to create at least one\n"
-"regular user for yourself. That account is where you should log in for\n"
-"routine use. Although it is very practical to log in as \"root\" everyday,\n"
-"it may also be very dangerous! The slightest mistake could mean that your\n"
-"system would not work any more. If you make a serious mistake as a regular\n"
-"user, you may only lose some information, but not the entire system.\n"
+"you add here will not be entitled to change anything except their own files\n"
+"and their own configuration. You will have to create at least one regular\n"
+"user for yourself. That account is where you should log in for routine use.\n"
+"Although it is very practical to log in as \"root\" everyday, it may also\n"
+"be very dangerous! The slightest mistake could mean that your system would\n"
+"not work any more. If you make a serious mistake as a regular user, you may\n"
+"only lose some information, but not the entire system.\n"
"\n"
"First, you have to enter your real name. This is not mandatory, of course -\n"
"as you can actually enter whatever you want. DrakX will then take the first\n"
"word you have entered in the box and will bring it over to the \"User\n"
"name\". This is the name this particular user will use to log onto the\n"
"system. You can change it. You then have to enter a password here. A\n"
-"non-privileged (regular) user's password is not as crucial as \"root\"' one\n"
-"from a security point of view, but that is no reason to neglect it: after\n"
-"all, your files are at risk.\n"
+"non-privileged (regular) user's password is not as crucial as the \"root\"'\n"
+"one from a security point of view, but that is no reason to neglect it:\n"
+"after all, your files are at risk.\n"
"\n"
"If you click on \"Accept user\", you can then add as many as you want. Add\n"
"a user for each one of your friends: your father or your sister, for\n"
@@ -2835,7 +2924,7 @@ msgid ""
"to have a graphical workstation!\n"
"\n"
"Moving the mouse cursor over a group name will display a short explanatory\n"
-"text about that group. If you deselect all groups when performing a regular\n"
+"text about that group. If you unselect all groups when performing a regular\n"
"installation (by opposition to an upgrade), a dialog will pop up proposing\n"
"different options for a minimal installation:\n"
"\n"
@@ -2909,10 +2998,10 @@ msgstr ""
#: ../../help.pm_.c:128
msgid ""
-"Finally, depending on whether or not you selected individual packages, you\n"
-"will be presented a tree containing all packages classified by groups and\n"
-"subgroups. While browsing the tree, you can select entire groups,\n"
-"subgroups, or individual packages.\n"
+"Finally, depending on whether or not you chose to be able to select\n"
+"individual packages, you will be presented a tree containing all packages\n"
+"classified by groups and subgroups. While browsing the tree, you can select\n"
+"entire groups, subgroups, or individual packages.\n"
"\n"
"Whenever you select a package on the tree, a description appears on the\n"
"right. When your selection is finished, click the \"Install\" button which\n"
@@ -2980,11 +3069,11 @@ msgstr ""
#: ../../help.pm_.c:164
msgid ""
-"You are now proposed to set up your Internet/network connection. If you\n"
-"wish to connect your computer to the Internet or to a local network, click\n"
-"\"OK\". The autodetection of network devices and modem will be launched. If\n"
-"this detection fails, uncheck the \"Use auto detection\" box next time. You\n"
-"may also choose not to configure the network, or do it later; in that case,\n"
+"You are now able to set up your Internet/network connection. If you wish to\n"
+"connect your computer to the Internet or to a local network, click \"OK\".\n"
+"The autodetection of network devices and modem will be launched. If this\n"
+"detection fails, uncheck the \"Use auto detection\" box next time. You may\n"
+"also choose not to configure the network, or do it later; in that case,\n"
"simply click the \"Cancel\" button.\n"
"\n"
"Available connections are: traditional modem, ISDN modem, ADSL connection,\n"
@@ -3062,7 +3151,7 @@ msgstr ""
msgid ""
"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
"local time according to the time zone you selected. It is however possible\n"
-"to deactivate this by deselecting \"Hardware clock set to GMT\" so that the\n"
+"to deactivate this by unselecting \"Hardware clock set to GMT\" so that the\n"
"hardware clock is the same as the system clock. This is useful when the\n"
"machine is hosting another operating system like Windows.\n"
"\n"
@@ -3105,7 +3194,9 @@ msgid ""
"If you can see the message during the test, and answer \"Yes\", then DrakX\n"
"will proceed to the next step. If you cannot see the message, it simply\n"
"means that the configuration was wrong and the test will automatically end\n"
-"after 10 seconds, restoring the screen."
+"after 10 seconds, restoring the screen. Refer then to the Video\n"
+"configuration section of the user guide for more information on how to\n"
+"configure your display."
msgstr ""
"X (for X-vinduessystem) er hjertet af GNU/Linux' grafiske grænseflade, "
"hvilket alle de grafiske miljűer (KDE, Gnome, AfterStep, WindowMaker)...), "
@@ -3126,30 +3217,7 @@ msgstr ""
"simpelthen at konfigurationen var forkert, og testen vil automatisk "
"afsluttes efter 10 sekunder, og genfremvise skærmen."
-#: ../../help.pm_.c:237
-msgid ""
-"The first time you try the X configuration, you may not be very satisfied\n"
-"with its display (screen is too small, shifted left or right...). Hence,\n"
-"even if X starts up correctly, DrakX then asks you if the configuration\n"
-"suits you. It will also propose to change it by displaying a list of valid\n"
-"modes it could find, asking you to select one.\n"
-"\n"
-"As a last resort, if you still cannot get X to work, choose \"Change\n"
-"graphics card\", select \"Unlisted card\", and when prompted on which\n"
-"server, choose \"FBDev\". This is a failsafe option which works with any\n"
-"modern graphics card. Then choose \"Test again\" to be sure."
-msgstr ""
-"Mćske er du ikke særligt tilfreds med det fűrste forsűg med X konfigurering "
-"(skærmen for lille, flyttet til venstre eller hűjre...). Derfor vil DrakX "
-"spűrge dig om konfigurationen passer dig, selvom X starter op korrekt. DrakX "
-"vil ogsć foreslć ændringer ved at vise en liste af gyldige tilstande som den "
-"kunne finde, og sć bede dig om at vælge én. \n"
-"Som en sidste udvej, hvis du stadig ikke kan fć X til at virke, vælg da Ændr "
-"grafikkort, vælg Ukendt kort, og nćr du bliver spurgt om hvilken server du "
-"vil have, vælg da FBDev. Dette er en fejlsikker mulighed som virker med alle "
-"moderne grafikkort. Vælg derefter Test igen for at være sikker."
-
-#: ../../help.pm_.c:249
+#: ../../help.pm_.c:239
msgid ""
"Finally, you will be asked whether you want to see the graphical interface\n"
"at boot. Note this question will be asked even if you chose not to test the\n"
@@ -3163,7 +3231,8 @@ msgstr ""
"maskine skal bruges som server, eller hvis ikke lykkedes dig at fć skærmen "
"konfigureret."
-#: ../../help.pm_.c:256
+#: ../../help.pm_.c:246
+#, fuzzy
msgid ""
"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
@@ -3183,10 +3252,10 @@ msgid ""
"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
"password, or any other reason.\n"
"\n"
-"When you click on this step, you will be asked to enter a disk inside the\n"
-"drive. The floppy disk you will insert must be empty or contain data which\n"
-"you do not need. You will not have to format it since DrakX will rewrite\n"
-"the whole disk."
+"If you say \"Yes\", you will be asked to enter a disk inside the drive. The\n"
+"floppy disk you will insert must be empty or contain data which you do not\n"
+"need. You will not have to format it since DrakX will rewrite the whole\n"
+"disk."
msgstr ""
"Mandrake Linux-cdrommen har en indbygget rednings-tilstand. Du kan fć fat i "
"denne ved at starte op fra cdrommen, trykke 'F1'-tasten ved opstart, og "
@@ -3212,7 +3281,7 @@ msgstr ""
"ikke har brug for. Du behűver ikke formatere den, da drakX vil overskrive "
"hele disketten."
-#: ../../help.pm_.c:280
+#: ../../help.pm_.c:270
msgid ""
"At this point, you need to choose where you want to install the Mandrake\n"
"Linux operating system on your hard drive. If your hard drive is empty or\n"
@@ -3245,7 +3314,9 @@ msgid ""
"\n"
" * \"Use existing partition\": the wizard has detected one or more existing\n"
"Linux partitions on your hard drive. If you want to use them, choose this\n"
-"option;\n"
+"option. You will then be asked to choose the mount points associated to\n"
+"each of the partitions. The legacy mount points are selected by default,\n"
+"and you should generally keep them.\n"
"\n"
" * \"Use the free space on the Windows; partition\": if Microsoft Windows\n"
"is installed on your hard drive and takes all the space available on it,\n"
@@ -3278,7 +3349,9 @@ msgid ""
" * \"Expert mode\": choose this option if you want to manually partition\n"
"your hard drive. Be careful - it is a powerful but dangerous choice. You\n"
"can very easily lose all your data. Hence, do not choose this unless you\n"
-"know what you are doing."
+"know what you are doing. To know how do use the DiskDrake utility used\n"
+"here, refer to the section ``Managing Your Partitions'' of the ````User\n"
+"Guide''''"
msgstr ""
"Nu skal du vælge hvor pć din harddisk du vil installere dit Mandrake Linux-"
"operativsystem. Hvis disken er tom eller et eksisterende operativsystem "
@@ -3344,7 +3417,7 @@ msgstr ""
"alle dine data. Sć lad være med at vælge den lűsning med mindre du véd hvad "
"du gűr."
-#: ../../help.pm_.c:347
+#: ../../help.pm_.c:341
msgid ""
"There you are. Installation is now complete and your GNU/Linux system is\n"
"ready to use. Just click \"OK\" to reboot the system. You can start\n"
@@ -3406,7 +3479,7 @@ msgstr ""
"(*) Du skal have en diskette formateret til FAT (denne oprettes i GNU/Linux "
"ved at skive \"mformat a:\")"
-#: ../../help.pm_.c:378
+#: ../../help.pm_.c:372
msgid ""
"Any partitions that have been newly defined must be formatted for use\n"
"(formatting means creating a filesystem).\n"
@@ -3457,7 +3530,7 @@ msgstr ""
"Klik pć 'Avanceret' for at vælge partitioner som du űnsker at tjekke for "
"dćrlige blokke."
-#: ../../help.pm_.c:404
+#: ../../help.pm_.c:398
msgid ""
"Your new Mandrake Linux operating system is currently being installed.\n"
"Depending on the number of packages you will be installing and the speed of\n"
@@ -3471,12 +3544,12 @@ msgstr ""
"kan dette tage fra nogen fć minutter til en del længere tid. \n"
"Hav venligst tćlmodighed med dette."
-#: ../../help.pm_.c:412
+#: ../../help.pm_.c:406
msgid ""
"At the time you are installing Mandrake Linux, it is likely that some\n"
"packages have been updated since the initial release. Some bugs may have\n"
"been fixed, and security issues solved. To allow you to benefit from these\n"
-"updates, you are now proposed to download them from the Internet. Choose\n"
+"updates, you are now able to download them from the Internet. Choose\n"
"\"Yes\" if you have a working Internet connection, or \"No\" if you prefer\n"
"to install updated packages later.\n"
"\n"
@@ -3498,7 +3571,7 @@ msgstr ""
"valget og tryk 'Installér' for at modtage og installere den valgte pakke "
"eller 'Annullér'for at afbryde."
-#: ../../help.pm_.c:425
+#: ../../help.pm_.c:419
msgid ""
"Before continuing, you should read carefully the terms of the license. It\n"
"covers the whole Mandrake Linux distribution, and if you do not agree with\n"
@@ -3512,14 +3585,14 @@ msgstr ""
"afslutte installationen. For at fortsætte installationen skal du klikke pć "
"'Acceptér'-knappen."
-#: ../../help.pm_.c:432
+#: ../../help.pm_.c:426
msgid ""
"At this point, it is time to choose the security level desired for the\n"
"machine. As a rule of thumb, the more exposed the machine is, and the more\n"
"the data stored in it is crucial, the higher the security level should be.\n"
"However, a higher security level is generally obtained at the expense of\n"
-"easiness of use. Refer to the \"msec\" chapter of the ``Reference Manual''\n"
-"to get more information about the meaning of these levels.\n"
+"ease of use. Refer to the \"msec\" chapter of the ``Reference Manual'' to\n"
+"get more information about the meaning of these levels.\n"
"\n"
"If you do not know what to choose, keep the default option."
msgstr ""
@@ -3531,7 +3604,7 @@ msgstr ""
"\n"
"Hvis du ikke véd hvad du skal vælge, sć behold den foreslćede mulighed."
-#: ../../help.pm_.c:442
+#: ../../help.pm_.c:436
msgid ""
"At this point, you need to choose which partition(s) will be used for the\n"
"installation of your Mandrake Linux system. If partitions have already been\n"
@@ -3548,26 +3621,26 @@ msgid ""
" * \"Clear all\": this option deletes all partitions on the selected hard\n"
"drive;\n"
"\n"
-" * \"Auto allocate\": this option enables to automatically create \"Ext2\"\n"
-"and swap partitions in free space of your hard drive;\n"
+" * \"Auto allocate\": this option enables to automatically create ext3 and\n"
+"swap partitions in free space of your hard drive;\n"
"\n"
-" * \"More\": gives access to additional features:\n"
+"\"More\": gives access to additional features:\n"
"\n"
-" * \"Save partition table\": saves the partition table to a floppy.\n"
-"Useful for later partition-table recovery if necessary. It is strongly\n"
-"recommended to perform this step;\n"
+" * \"Save partition table\": saves the partition table to a floppy. Useful\n"
+"for later partition-table recovery if necessary. It is strongly recommended\n"
+"to perform this step;\n"
"\n"
-" * \"Restore partition table\": allows to restore a previously saved\n"
+" * \"Restore partition table\": allows to restore a previously saved\n"
"partition table from floppy disk;\n"
"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you\n"
-"can try to recover it using this option. Please be careful and remember\n"
-"that it can fail;\n"
+" * \"Rescue partition table\": if your partition table is damaged, you can\n"
+"try to recover it using this option. Please be careful and remember that it\n"
+"can fail;\n"
"\n"
-" * \"Reload partition table\": discards all changes and loads your\n"
-"initial partition table;\n"
+" * \"Reload partition table\": discards all changes and loads your initial\n"
+"partition table;\n"
"\n"
-" * \"Removable media automounting\": unchecking this option will force\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
"users to manually mount and unmount removable medias such as floppies and\n"
"CD-ROMs.\n"
"\n"
@@ -3595,7 +3668,7 @@ msgid ""
" * Ctrl-m to set the mount point.\n"
"\n"
"To get information about the different filesystem types available, please\n"
-"read the ext2fs chapter from the ``Reference Manual''.\n"
+"read the ext2FS chapter from the ``Reference Manual''.\n"
"\n"
"If you are installing on a PPC machine, you will want to create a small HFS\n"
"``bootstrap'' partition of at least 1MB, which will be used by the yaboot\n"
@@ -3668,7 +3741,7 @@ msgstr ""
"til at gemme en ekstra kerne og ramdisk-billede for nűdsituationer ved "
"opstart."
-#: ../../help.pm_.c:513
+#: ../../help.pm_.c:507
msgid ""
"More than one Microsoft partition has been detected on your hard drive.\n"
"Please choose the one you want to resize in order to install your new\n"
@@ -3729,34 +3802,34 @@ msgstr ""
"'Windows navn' er det bogstav som dit drev har under Windows (den fűrste\n"
"disk eller partition kaldes 'C:')."
-#: ../../help.pm_.c:544
+#: ../../help.pm_.c:538
msgid "Please be patient. This operation can take several minutes."
msgstr "Hold ud! Dette kan tage adskillige minutter."
-#: ../../help.pm_.c:547
+#: ../../help.pm_.c:541
msgid ""
"DrakX now needs to know if you want to perform a default (\"Recommended\")\n"
"installation or if you want to have greater control (\"Expert\"). You can\n"
"also choose to do a new install or an upgrade of an existing Mandrake Linux\n"
"system:\n"
"\n"
-" * \"Install\": completely wipes out the old system. In fact, depending on\n"
-"what currently holds your machine, you will be able to keep some old (Linux\n"
-"or other) partitions unchanged;\n"
+" * \"Install\": completely wipes out the old system, however, depending on\n"
+"what is currently installed on your machine, you may be able to keep some\n"
+"old partitions (Linux or otherwise) unchanged;\n"
"\n"
" * \"Upgrade\": this installation class allows to simply update the\n"
"packages currently installed on your Mandrake Linux system. It keeps the\n"
"current partitions of your hard drives as well as user configurations. All\n"
-"other configuration steps remain available with respect to plain\n"
+"other configuration steps remain available, similar to a normal\n"
"installation;\n"
"\n"
-" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
-"existing Mandrake Linux system while keeping all system configurations\n"
-"unchanged. Adding new packages to the current installation is also\n"
-"possible.\n"
+" * \"Upgrade Packages Only\": this new installation class allows you to\n"
+"upgrade an existing Mandrake Linux system while keeping all system\n"
+"configurations unchanged. Adding new packages to the current installation\n"
+"is also possible.\n"
"\n"
-"Upgrades should work fine for Mandrake Linux systems starting from \"8.1\"\n"
-"release.\n"
+"Upgrades should work fine on Mandrake Linux systems containing version\n"
+"\"8.1\" or later.\n"
"\n"
"Depending on your knowledge of GNU/Linux, select one of the following\n"
"choices:\n"
@@ -3765,11 +3838,11 @@ msgid ""
"operating system. The installation will be very easy and you will only be\n"
"asked a few questions;\n"
"\n"
-" * Expert: if you have a good knowledge of GNU/Linux, you can choose this\n"
-"installation class. The expert installation will allow you to perform a\n"
-"highly-customized installation. Answering some of the questions can be\n"
-"difficult if you do not have a good knowledge of GNU/Linux, so do not\n"
-"choose this unless you know what you are doing."
+" * Expert: if you have a good understanding of GNU/Linux, you may wish to\n"
+"perform a highly customized installation. Some of the decisions you will\n"
+"have to make may be difficult if you do not have good knowledge of\n"
+"GNU/Linux, so it is not recommended that those without a fair amount of\n"
+"experience select this installation class."
msgstr ""
"DrakX skal nu vide om du vil udfűre en standard-installation ('Anbefalet'), "
"eller om du űnsker at have stűrre kontrol ('Ekspert'). Du kan ogsć vælge om "
@@ -3803,19 +3876,22 @@ msgstr ""
"svært hvis du ikke har sć godt et kendskab til GNU/Linux, sć lad være med at "
"vælge dette, medmindre du véd hvad du laver."
-#: ../../help.pm_.c:584
+#: ../../help.pm_.c:578
msgid ""
"Normally, DrakX selects the right keyboard for you (depending on the\n"
-"language you have chosen) and you won't even see this step. However, you\n"
-"might not have a keyboard that corresponds exactly to your language: for\n"
-"example, if you are an English speaking Swiss person, you may still want\n"
-"your keyboard to be a Swiss keyboard. Or if you speak English but are\n"
-"located in Quebec, you may find yourself in the same situation. In both\n"
-"cases, you will have to go back to this installation step and select an\n"
-"appropriate keyboard from the list.\n"
+"language you have chosen). However, you might not have a keyboard that\n"
+"corresponds exactly to your language: for example, if you are an English\n"
+"speaking Swiss person, you may still want your keyboard to be a Swiss\n"
+"keyboard. Or if you speak English but are located in Quebec, you may find\n"
+"yourself in the same situation. In both cases, you will have to go back to\n"
+"this installation step and select an appropriate keyboard from the list.\n"
"\n"
"Click on the \"More\" button to be presented with the complete list of\n"
-"supported keyboards."
+"supported keyboards.\n"
+"\n"
+"If you choose a keyboard layout based on a non-latin alphabet, you will be\n"
+"asked on next dialog to choose the key binding that will switch the\n"
+"keyboard layout between the latin and non latin layouts."
msgstr ""
"Normalt vil drakX have valgt det rigtige tastatur til dig (afhængigt af "
"sproget du har valgt) og du vil sć ikke se dette trin. Men du har mćske "
@@ -3828,8 +3904,10 @@ msgstr ""
"Klik pć 'mere'-tasten for at blive præsenteret for den fulde \n"
"liste af understűttede tastaturer."
-#: ../../help.pm_.c:597
+#: ../../help.pm_.c:594
msgid ""
+"The first step is to choose your preferred language.\n"
+"\n"
"Please choose your preferred language for installation and system usage.\n"
"\n"
"Clicking on the \"Advanced\" button will allow you to select other\n"
@@ -3852,7 +3930,7 @@ msgstr ""
"Bemærk at flere sprog kan installeres samtidigt. Nćr du er færdig med at "
"vælge yderligere sprog, sć klik O.k. for at fortsætte."
-#: ../../help.pm_.c:610
+#: ../../help.pm_.c:609
msgid ""
"DrakX generally detects the number of buttons your mouse has. If not, it\n"
"assumes you have a two-button mouse and will set it up for third-button\n"
@@ -3865,7 +3943,14 @@ msgid ""
"If you choose a mouse other than the default, a test screen will be\n"
"displayed. Use the buttons and wheel to verify that the settings are\n"
"correct. If the mouse is not working well, press the space bar or [Return]\n"
-"to \"Cancel\" and choose again."
+"to \"Cancel\" and choose again.\n"
+"\n"
+"Wheel mouses are sometimes not automatically detected. You will need to\n"
+"manually select it in the list. Be sure to select the one corresponding to\n"
+"the correct port it is attached to. After you have pressed the \"OK\"\n"
+"button, a mouse image is displayed. You then need to move the wheel of your\n"
+"mouse to activate it correctly. Then test all buttons and movements are\n"
+"correct."
msgstr ""
"Normalt antager drakX at du har en to-knapsmus og vil lave en opsætning hvor "
"den tredje knap emuleres. DrakX vil automatisk vide om den er PS/2, seriel "
@@ -3879,7 +3964,7 @@ msgstr ""
"om indstillerne er gode. Hvis musen ikke virker korrekt, tryk da pć "
"mellemrumstangenten eller vognretur for at 'Annullere' og vælg forfra."
-#: ../../help.pm_.c:624
+#: ../../help.pm_.c:630
msgid ""
"Please select the correct port. For example, the \"COM1\" port under\n"
"Windows is named \"ttyS0\" under GNU/Linux."
@@ -3887,7 +3972,7 @@ msgstr ""
"Vælg den rigtige port. For eksempel er navnet for COM1-porten under MS "
"Windows 'ttyS0' under GNU/Linux."
-#: ../../help.pm_.c:628
+#: ../../help.pm_.c:634
msgid ""
"This is the most crucial decision point for the security of your GNU/Linux\n"
"system: you have to enter the \"root\" password. \"root\" is the system\n"
@@ -3917,9 +4002,9 @@ msgid ""
"In Expert mode, you will be asked if you will be connecting to an\n"
"authentication server, like NIS or LDAP.\n"
"\n"
-"If your network uses the LDAP (or NIS) protocol for authentication, select\n"
-"\"LDAP\" (or \"NIS\") as authentication. If you do not know, ask your\n"
-"network administrator.\n"
+"If your network uses either of the LDAP, NIS, or PDC Windows Domain\n"
+"authentication services, select the appropriate one as \"authentication\".\n"
+"If you do not know, ask your network administrator.\n"
"\n"
"If your computer is not connected to any administrated network, you will\n"
"want to choose \"Local files\" for authentication."
@@ -3960,7 +4045,7 @@ msgstr ""
"Hvis din maskine ikke er forbundet til noget administreret netværk, űnsker "
"du nok at vælge Lokale filer for autentificering"
-#: ../../help.pm_.c:664
+#: ../../help.pm_.c:670
msgid ""
"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
@@ -3999,16 +4084,7 @@ msgid ""
"options. !!\n"
"\n"
"Clicking the \"Advanced\" button in this dialog will offer many advanced\n"
-"options, which are reserved to the expert user.\n"
-"\n"
-"After you have configured the general bootloader parameters, the list of\n"
-"boot options which will be available at boot time will be displayed.\n"
-"\n"
-"If there is another operating system installed on your machine, it will\n"
-"automatically be added to the boot menu. Here, you can choose to fine-tune\n"
-"the existing options. Select an entry and click \"Modify\" to modify or\n"
-"remove it; \"Add\" creates a new entry; and \"Done\" goes on to the next\n"
-"installation step."
+"options, which are reserved for the expert user."
msgstr ""
"LILO og GRUB er opstartsindlæsere for GNU/Linux. Dette trin er normalt helt "
"automatiseret. Faktisk vil drakX analysere opstartsektoren pć disken og vil "
@@ -4059,13 +4135,16 @@ msgstr ""
"for at ændre eller fjerne den; 'Tilfűj' opretter en ny indgang; og 'Færdig' "
"fortsætter til det næste installationstrin."
-#: ../../help.pm_.c:713
+#: ../../help.pm_.c:710
msgid ""
-"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
-"either GNU/Linux or any other operating system present on your computer.\n"
-"Normally, these other operating systems are correctly detected and\n"
-"installed. If this is not the case, you can add an entry by hand in this\n"
-"screen. Be careful to choose the correct parameters.\n"
+"After you have configured the general bootloader parameters, the list of\n"
+"boot options which will be available at boot time will be displayed.\n"
+"\n"
+"If there is another operating system installed on your machine, it will\n"
+"automatically be added to the boot menu. Here, you can choose to fine-tune\n"
+"the existing options. Select an entry and click \"Modify\" to modify or\n"
+"remove it; \"Add\" creates a new entry; and \"Done\" goes on to the next\n"
+"installation step.\n"
"\n"
"You may also not want to give access to these other operating systems to\n"
"anyone. In which case, you can delete the corresponding entries. But then,\n"
@@ -4155,18 +4234,18 @@ msgstr ""
#: ../../help.pm_.c:759
msgid ""
-"DrakX now detects any IDE device present in your computer. It will also\n"
-"scan for one or more PCI SCSI card(s) on your system. If a SCSI card is\n"
+"DrakX now detects any IDE devices present in your computer. It will also\n"
+"scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
"found, DrakX will automatically install the appropriate driver.\n"
"\n"
"Because hardware detection does not always detect a piece of hardware,\n"
"DrakX will ask you to confirm if a PCI SCSI card is present. Click \"Yes\"\n"
"if you know that there is a SCSI card installed in your machine. You will\n"
-"be presented a list of SCSI cards to choose from. Click \"No\" if you have\n"
-"no SCSI hardware. If you are unsure, you can check the list of hardware\n"
-"detected in your machine by selecting \"See hardware info\" and clicking\n"
-"\"OK\". Examine the list of hardware and then click on the \"OK\" button to\n"
-"return to the SCSI interface question.\n"
+"be presented with a list of SCSI cards to choose from. Click \"No\" if you\n"
+"have no SCSI hardware. If you are unsure, you can check the list of\n"
+"hardware detected in your machine by selecting \"See hardware info\" and\n"
+"clicking \"OK\". Examine the list of hardware and then click on the \"OK\"\n"
+"button to return to the SCSI interface question.\n"
"\n"
"If you have to manually specify your adapter, DrakX will ask if you want to\n"
"specify options for it. You should allow DrakX to probe the hardware for\n"
@@ -4380,7 +4459,9 @@ msgid ""
"order to configure the clock according to the time zone you are in;\n"
"\n"
" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
-"configuration wizard;\n"
+"configuration wizard. Consult the corresponding chapter of the ``User\n"
+"Guide'' for more information on how to setup a new printer. The interface\n"
+"presented there is similar to the one used during installation;\n"
"\n"
" * \"Sound card\": if a sound card is detected on your system, it is\n"
"displayed here. No modification possible at installation time;\n"
@@ -4420,7 +4501,7 @@ msgstr ""
"blive vist her. Du kan klikke pć knappen for at ændre de tilhűrende "
"parametre."
-#: ../../help.pm_.c:894
+#: ../../help.pm_.c:896
msgid ""
"Choose the hard drive you want to erase in order to install your new\n"
"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
@@ -4430,7 +4511,7 @@ msgstr ""
"partition. Vær forsigtig, alle data som er pć der, vil gć tabt og vil ikke "
"kunne genskabes!"
-#: ../../help.pm_.c:899
+#: ../../help.pm_.c:901
msgid ""
"Click on \"OK\" if you want to delete all data and partitions present on\n"
"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
@@ -4444,7 +4525,7 @@ msgstr ""
"pć dette diskdrev. Vær omhyggelig, efter klik pć O.k. vil du ikke være i "
"stand til at redde nogen data eller partitioner, der ligger pć dette "
"diskdrev, inklusive alle Windows data.\n"
-"Klik pć 'Annulér' for at anullere denne handling uden at tabe nogen data og "
+"Klik pć 'Annullér' for at anullere denne handling uden at tabe nogen data og "
"partitioner der er tilstede pć dette diskdrev."
#: ../../install2.pm_.c:111
@@ -4463,7 +4544,7 @@ msgstr ""
msgid "You must also format %s"
msgstr "Du skal ogsć formatere %s"
-#: ../../install_any.pm_.c:418
+#: ../../install_any.pm_.c:423
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -4487,20 +4568,29 @@ msgstr ""
"\n"
"Űnsker du virkelig at installere disse servere?\n"
-#: ../../install_any.pm_.c:453
+#: ../../install_any.pm_.c:441
+#, c-format
+msgid ""
+"The following packages will be removed to allow upgrading your system: %s\n"
+"\n"
+"\n"
+"Do you really want to remove these packages?\n"
+msgstr ""
+
+#: ../../install_any.pm_.c:471
msgid "Can't use broadcast with no NIS domain"
msgstr "Kan ikke bruge rundkastning uden noget NIS-domæne"
-#: ../../install_any.pm_.c:841
+#: ../../install_any.pm_.c:862
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Indsæt en tom diskette i diskette-drev %s"
-#: ../../install_any.pm_.c:845
+#: ../../install_any.pm_.c:866
msgid "This floppy is not FAT formatted"
msgstr "Denne diskette er ikke formatteret til FAT"
-#: ../../install_any.pm_.c:857
+#: ../../install_any.pm_.c:878
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -4508,11 +4598,20 @@ msgstr ""
"For at bruge dette gemte pakkevalg, start installationen op med``linux "
"defcfg=floppy''"
-#: ../../install_any.pm_.c:880 ../../partition_table.pm_.c:771
+#: ../../install_any.pm_.c:901 ../../partition_table.pm_.c:767
#, c-format
msgid "Error reading file %s"
msgstr "Fejl ved læsning af filen %s"
+#: ../../install_any.pm_.c:1023
+msgid ""
+"An error occurred - no valid devices were found on which to create new "
+"filesystems. Please check your hardware for the cause of this problem"
+msgstr ""
+"Der er opstćet en fejl - der kunne ikke findes nogen gyldige enheder, hvor "
+"der kan oprettes nye filsystemer. Undersűg din maskine for at finde ćrsagen "
+"til problemet"
+
#: ../../install_interactive.pm_.c:23
#, c-format
msgid ""
@@ -4547,59 +4646,59 @@ msgstr ""
"\n"
"Fortsæt alligevel?"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:168
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:169
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "Du skal have en FAT-partition monteret under /boot/efi"
-#: ../../install_interactive.pm_.c:91
+#: ../../install_interactive.pm_.c:92
msgid "Use free space"
msgstr "Brug fri plads"
-#: ../../install_interactive.pm_.c:93
+#: ../../install_interactive.pm_.c:94
msgid "Not enough free space to allocate new partitions"
msgstr "Ikke nok fri plads til at tildele nye partitioner"
-#: ../../install_interactive.pm_.c:101
+#: ../../install_interactive.pm_.c:102
msgid "Use existing partitions"
msgstr "Brug eksisterende partition"
-#: ../../install_interactive.pm_.c:103
+#: ../../install_interactive.pm_.c:104
msgid "There is no existing partition to use"
msgstr "Der er ingen eksisterende partition der kan bruges"
-#: ../../install_interactive.pm_.c:110
+#: ../../install_interactive.pm_.c:111
msgid "Use the Windows partition for loopback"
msgstr "Brug Windows partitionen til Loopback"
-#: ../../install_interactive.pm_.c:113
+#: ../../install_interactive.pm_.c:114
msgid "Which partition do you want to use for Linux4Win?"
msgstr "Hvilken partition vil du benytte som Linux4Win?"
-#: ../../install_interactive.pm_.c:115
+#: ../../install_interactive.pm_.c:116
msgid "Choose the sizes"
msgstr "Vælg stűrrelserne"
-#: ../../install_interactive.pm_.c:116
+#: ../../install_interactive.pm_.c:117
msgid "Root partition size in MB: "
msgstr "Rod-partitions stűrrelse i Mb: "
-#: ../../install_interactive.pm_.c:117
+#: ../../install_interactive.pm_.c:118
msgid "Swap partition size in MB: "
msgstr "Swap-partitions stűrrelse i Mb: "
-#: ../../install_interactive.pm_.c:126
+#: ../../install_interactive.pm_.c:128
msgid "Use the free space on the Windows partition"
msgstr "Brug den frie plads pć Windows-partitionen"
-#: ../../install_interactive.pm_.c:129
+#: ../../install_interactive.pm_.c:131
msgid "Which partition do you want to resize?"
msgstr "Hvilken partition űnsker du at ændre stűrrelse pć?"
-#: ../../install_interactive.pm_.c:131
+#: ../../install_interactive.pm_.c:133
msgid "Resizing Windows partition"
msgstr "Udregner Windows-filsystemets grænser"
-#: ../../install_interactive.pm_.c:134
+#: ../../install_interactive.pm_.c:136
#, c-format
msgid ""
"The FAT resizer is unable to handle your partition, \n"
@@ -4608,14 +4707,14 @@ msgstr ""
"Programmet til at ændre stűrrelse pć FAT kan ikke behandle din partition, \n"
"den fűlgende fejl opstod: %s"
-#: ../../install_interactive.pm_.c:137
+#: ../../install_interactive.pm_.c:139
msgid ""
"Your Windows partition is too fragmented. Please reboot your computer under "
"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
"installation."
msgstr "Din Windows partition er for fragmenteret, kűr 'defrag' fűrst"
-#: ../../install_interactive.pm_.c:138
+#: ../../install_interactive.pm_.c:140
msgid ""
"WARNING!\n"
"\n"
@@ -4634,21 +4733,21 @@ msgstr ""
"defrag) og sć genstarte installationen. Du bűr ogsć tage en sikkerhedskopi "
"af dine data. Tryk pć Ok, hvis du er helt sikker."
-#: ../../install_interactive.pm_.c:148
+#: ../../install_interactive.pm_.c:150
msgid "Which size do you want to keep for Windows on"
msgstr "Hvilken stűrrelse űnsker du at at beholde Windows pć?"
-#: ../../install_interactive.pm_.c:149
+#: ../../install_interactive.pm_.c:151
#, c-format
msgid "partition %s"
msgstr "partition %s"
-#: ../../install_interactive.pm_.c:156
+#: ../../install_interactive.pm_.c:158
#, c-format
msgid "FAT resizing failed: %s"
msgstr "FAT stűrrelsesændring mislykkedes: %s"
-#: ../../install_interactive.pm_.c:171
+#: ../../install_interactive.pm_.c:173
msgid ""
"There is no FAT partition to resize or to use as loopback (or not enough "
"space left)"
@@ -4656,32 +4755,32 @@ msgstr ""
"Der er ingen FAT-partitioner at ændre stűrrelse pć, eller bruge som loopback "
"(eller ikke nok plads tilbage)"
-#: ../../install_interactive.pm_.c:177
+#: ../../install_interactive.pm_.c:179
msgid "Erase entire disk"
msgstr "Slet hele disken"
-#: ../../install_interactive.pm_.c:177
+#: ../../install_interactive.pm_.c:179
msgid "Remove Windows(TM)"
msgstr "Fjern Windows(TM)"
-#: ../../install_interactive.pm_.c:180
+#: ../../install_interactive.pm_.c:182
msgid "You have more than one hard drive, which one do you install linux on?"
msgstr "Du har mere end et diskdrev, hvilken űnsker du at installere Linux pć?"
-#: ../../install_interactive.pm_.c:183
+#: ../../install_interactive.pm_.c:185
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr "Alle eksisterende partitioner og deres data vil gć tabt pć drev %s"
-#: ../../install_interactive.pm_.c:191
+#: ../../install_interactive.pm_.c:193
msgid "Custom disk partitioning"
msgstr "Brugerdefineret disk-opdeling"
-#: ../../install_interactive.pm_.c:195
+#: ../../install_interactive.pm_.c:197
msgid "Use fdisk"
msgstr "Brug fdisk"
-#: ../../install_interactive.pm_.c:198
+#: ../../install_interactive.pm_.c:200
#, c-format
msgid ""
"You can now partition %s.\n"
@@ -4690,28 +4789,28 @@ msgstr ""
"Du kan nu partitionere %s.\n"
"Nćr du er færdig, sć husk at gemme med 'w'"
-#: ../../install_interactive.pm_.c:227
+#: ../../install_interactive.pm_.c:229
msgid "You don't have enough free space on your Windows partition"
msgstr "Du har ikke nok fri plads pć din Windows-partition"
-#: ../../install_interactive.pm_.c:243
+#: ../../install_interactive.pm_.c:245
msgid "I can't find any room for installing"
msgstr "Kan ikke finde plads til installering"
-#: ../../install_interactive.pm_.c:246
+#: ../../install_interactive.pm_.c:248
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr "DrakX partitionerings-vejlederen fandt de fűlgende lűsninger:"
-#: ../../install_interactive.pm_.c:250
+#: ../../install_interactive.pm_.c:252
#, c-format
msgid "Partitioning failed: %s"
msgstr "Partitionering mislykkedes: %s"
-#: ../../install_interactive.pm_.c:260
+#: ../../install_interactive.pm_.c:262
msgid "Bringing up the network"
msgstr "Bringer netværket op"
-#: ../../install_interactive.pm_.c:265
+#: ../../install_interactive.pm_.c:267
msgid "Bringing down the network"
msgstr "Lukker netværket ned"
@@ -4724,12 +4823,12 @@ msgstr ""
"pæn mćde.\n"
"Fortsæt pć eget ansvar!"
-#: ../../install_steps.pm_.c:210
+#: ../../install_steps.pm_.c:211
#, c-format
msgid "Duplicate mount point %s"
msgstr "Duplikér monterings-sti %s"
-#: ../../install_steps.pm_.c:379
+#: ../../install_steps.pm_.c:380
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -4741,12 +4840,12 @@ msgstr ""
"Tjek cdrom'en pć en færdiginstalleret maskine ved brug af \"rpm -qpl "
"Mandrake/RPMS/*.rpm\"\n"
-#: ../../install_steps.pm_.c:451
+#: ../../install_steps.pm_.c:452
#, c-format
msgid "Welcome to %s"
msgstr "Velkommen til %s"
-#: ../../install_steps.pm_.c:530 ../../install_steps.pm_.c:770
+#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:772
msgid "No floppy drive available"
msgstr "Intet tilgængeligt diskettedrev"
@@ -4776,71 +4875,71 @@ msgstr "Installationsmetode"
msgid "Please choose one of the following classes of installation:"
msgstr "Vælg en af de fűlgende installations-mćder:"
-#: ../../install_steps_gtk.pm_.c:243 ../../install_steps_interactive.pm_.c:694
+#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:678
msgid "Package Group Selection"
msgstr "Valg af pakkegrupper"
-#: ../../install_steps_gtk.pm_.c:276 ../../install_steps_interactive.pm_.c:709
+#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:693
msgid "Individual package selection"
msgstr "Individuelt pakkevalg"
-#: ../../install_steps_gtk.pm_.c:299 ../../install_steps_interactive.pm_.c:633
+#: ../../install_steps_gtk.pm_.c:293 ../../install_steps_interactive.pm_.c:617
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Total stűrrelse: %d / %d Mb"
-#: ../../install_steps_gtk.pm_.c:341
+#: ../../install_steps_gtk.pm_.c:335
msgid "Bad package"
msgstr "Dćrlig pakke"
-#: ../../install_steps_gtk.pm_.c:342
+#: ../../install_steps_gtk.pm_.c:336
#, c-format
msgid "Name: %s\n"
msgstr "Navn: %s\n"
-#: ../../install_steps_gtk.pm_.c:343
+#: ../../install_steps_gtk.pm_.c:337
#, c-format
msgid "Version: %s\n"
msgstr "Version: %s\n"
-#: ../../install_steps_gtk.pm_.c:344
+#: ../../install_steps_gtk.pm_.c:338
#, c-format
msgid "Size: %d KB\n"
msgstr "Stűrrelse: %d KB\n"
-#: ../../install_steps_gtk.pm_.c:345
+#: ../../install_steps_gtk.pm_.c:339
#, c-format
msgid "Importance: %s\n"
msgstr "Vigtighed: %s\n"
-#: ../../install_steps_gtk.pm_.c:367
+#: ../../install_steps_gtk.pm_.c:361
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr ""
"Du kan ikke vælge denne pakke, da der ikke er nok plads tilbage til at "
"installere den"
-#: ../../install_steps_gtk.pm_.c:372
+#: ../../install_steps_gtk.pm_.c:366
msgid "The following packages are going to be installed"
msgstr "De fűlgende pakker vil blive installeret"
-#: ../../install_steps_gtk.pm_.c:373
+#: ../../install_steps_gtk.pm_.c:367
msgid "The following packages are going to be removed"
msgstr "De fűlgende pakker vil blive afinstalleret"
-#: ../../install_steps_gtk.pm_.c:385
+#: ../../install_steps_gtk.pm_.c:379
msgid "You can't select/unselect this package"
msgstr "Du kan ikke vælge/fravælge denne pakke"
-#: ../../install_steps_gtk.pm_.c:397
+#: ../../install_steps_gtk.pm_.c:391
msgid "This is a mandatory package, it can't be unselected"
msgstr "Dette er en nűdvendig pakke, den kan ikke vælges fra"
-#: ../../install_steps_gtk.pm_.c:399
+#: ../../install_steps_gtk.pm_.c:393
msgid "You can't unselect this package. It is already installed"
msgstr "Du kan ikke fravælge denne pakke. Den er allerede installeret"
-#: ../../install_steps_gtk.pm_.c:402
+#: ../../install_steps_gtk.pm_.c:396
msgid ""
"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
@@ -4848,74 +4947,74 @@ msgstr ""
"Denne pakke skal opgraderes\n"
"Er du sikker pć at du vil fravælge den?"
-#: ../../install_steps_gtk.pm_.c:405
+#: ../../install_steps_gtk.pm_.c:399
msgid "You can't unselect this package. It must be upgraded"
msgstr "Du kan ikke fravælge denne pakke. Den skal opgraderes"
-#: ../../install_steps_gtk.pm_.c:410
+#: ../../install_steps_gtk.pm_.c:404
msgid "Show automatically selected packages"
msgstr "Vis automatisk valgte pakker"
-#: ../../install_steps_gtk.pm_.c:411 ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_gtk.pm_.c:405 ../../install_steps_interactive.pm_.c:255
#: ../../install_steps_interactive.pm_.c:259
-#: ../../standalone/drakbackup_.c:3600
+#: ../../standalone/drakbackup_.c:4257
msgid "Install"
msgstr "Installér"
-#: ../../install_steps_gtk.pm_.c:414
+#: ../../install_steps_gtk.pm_.c:408
msgid "Load/Save on floppy"
msgstr "Indlæs/gem pć diskette"
-#: ../../install_steps_gtk.pm_.c:415
+#: ../../install_steps_gtk.pm_.c:409
msgid "Updating package selection"
msgstr "Opdaterer pakkevalg"
-#: ../../install_steps_gtk.pm_.c:420
+#: ../../install_steps_gtk.pm_.c:414
msgid "Minimal install"
msgstr "Minimal installation"
-#: ../../install_steps_gtk.pm_.c:435 ../../install_steps_interactive.pm_.c:538
+#: ../../install_steps_gtk.pm_.c:429 ../../install_steps_interactive.pm_.c:522
msgid "Choose the packages you want to install"
msgstr "Vælg pakker som skal installeres"
-#: ../../install_steps_gtk.pm_.c:451 ../../install_steps_interactive.pm_.c:778
+#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:762
msgid "Installing"
msgstr "Installerer"
-#: ../../install_steps_gtk.pm_.c:457
+#: ../../install_steps_gtk.pm_.c:451
msgid "Estimating"
msgstr "Beregnes"
-#: ../../install_steps_gtk.pm_.c:464
+#: ../../install_steps_gtk.pm_.c:458
msgid "Time remaining "
msgstr "Resterende tid "
-#: ../../install_steps_gtk.pm_.c:476
+#: ../../install_steps_gtk.pm_.c:470
msgid "Please wait, preparing installation..."
msgstr "Vent venligst, forbereder installationen"
-#: ../../install_steps_gtk.pm_.c:560
+#: ../../install_steps_gtk.pm_.c:554
#, c-format
msgid "%d packages"
msgstr "%d pakker"
-#: ../../install_steps_gtk.pm_.c:565
+#: ../../install_steps_gtk.pm_.c:559
#, c-format
msgid "Installing package %s"
msgstr "Installerer pakke %s"
-#: ../../install_steps_gtk.pm_.c:602 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:802
+#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:786
#: ../../standalone/drakautoinst_.c:202
msgid "Accept"
msgstr "Acceptér"
-#: ../../install_steps_gtk.pm_.c:602 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:802
+#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:786
msgid "Refuse"
msgstr "Nægt"
-#: ../../install_steps_gtk.pm_.c:603 ../../install_steps_interactive.pm_.c:803
+#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:787
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4930,17 +5029,17 @@ msgstr ""
"gjort\n"
"Hvis du ikke har den sć tryk pć Annullér, sć undgćs installation fra denne cd"
-#: ../../install_steps_gtk.pm_.c:617 ../../install_steps_gtk.pm_.c:621
-#: ../../install_steps_interactive.pm_.c:815
-#: ../../install_steps_interactive.pm_.c:819
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_gtk.pm_.c:615
+#: ../../install_steps_interactive.pm_.c:799
+#: ../../install_steps_interactive.pm_.c:803
msgid "Go on anyway?"
msgstr "Fortsæt alligevel?"
-#: ../../install_steps_gtk.pm_.c:617 ../../install_steps_interactive.pm_.c:815
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:799
msgid "There was an error ordering packages:"
msgstr "Der opstod en fejl ved sorteringen af pakkerne:"
-#: ../../install_steps_gtk.pm_.c:621 ../../install_steps_interactive.pm_.c:819
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:803
msgid "There was an error installing packages:"
msgstr "Der opstod en fejl ved installeringen af pakkerne:"
@@ -5225,7 +5324,7 @@ msgid "Are you sure you refuse the licence?"
msgstr "Er du sikker pć at du afviser licensen?"
#: ../../install_steps_interactive.pm_.c:211
-#: ../../install_steps_interactive.pm_.c:1038
+#: ../../install_steps_interactive.pm_.c:1023
#: ../../standalone/keyboarddrake_.c:31
msgid "Keyboard"
msgstr "Tastatur"
@@ -5273,11 +5372,11 @@ msgstr "Opgradér kun pakker"
msgid "Please choose the type of your mouse."
msgstr "Vælg muse-type."
-#: ../../install_steps_interactive.pm_.c:281 ../../standalone/mousedrake_.c:59
+#: ../../install_steps_interactive.pm_.c:281 ../../standalone/mousedrake_.c:60
msgid "Mouse Port"
msgstr "Muse-port"
-#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:61
msgid "Please choose on which serial port your mouse is connected to."
msgstr "Vælg hvilken seriel port din mus er forbundet til."
@@ -5309,84 +5408,60 @@ msgstr "Konfigurerer IDE"
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:336
+#: ../../install_steps_interactive.pm_.c:338
msgid "No partition available"
msgstr "ingen ledige partitioner"
-#: ../../install_steps_interactive.pm_.c:339
+#: ../../install_steps_interactive.pm_.c:341
msgid "Scanning partitions to find mount points"
msgstr "Skanner partitioner for at finde monteringspunkter"
-#: ../../install_steps_interactive.pm_.c:347
+#: ../../install_steps_interactive.pm_.c:349
msgid "Choose the mount points"
msgstr "Vælg monterings-stierne"
-#: ../../install_steps_interactive.pm_.c:366
-#, c-format
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to not allow DrakX to modify the partition table.\n"
-"(the error is %s)\n"
-"\n"
-"Do you agree to loose all the partitions?\n"
-msgstr ""
-"Jeg kan ikke læse din partitionstabel, den er for űdelagt for mig :( Jeg kan "
-"forsűge fortsat at udblanke dćrlige partitioner, ALLE DATA vil gć tabt. Den "
-"anden mulighed er at forbyde DrakX at ændre partitionstabellen. (fejlen er %"
-"s)\n"
-"\n"
-"Er du indforstćet med at űdelægge alle partitionerne?\n"
-
#: ../../install_steps_interactive.pm_.c:379
msgid ""
-"DiskDrake failed to read correctly the partition table.\n"
-"Continue at your own risk!"
-msgstr ""
-"DiskDrake kunne ikke læse partitionstabellen korrekt. Fortsæt pć eget ansvar!"
-
-#: ../../install_steps_interactive.pm_.c:396
-msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
msgstr ""
"Det er ikke plads for 1 MB bootstrap! Installationen vil fortsætte, men for "
"at starte dit system op, skal du lave en bootstrap partition i DiskDrake"
-#: ../../install_steps_interactive.pm_.c:405
+#: ../../install_steps_interactive.pm_.c:388
msgid "No root partition found to perform an upgrade"
msgstr "Ingen rodpartition fundet til opgradering"
-#: ../../install_steps_interactive.pm_.c:406
+#: ../../install_steps_interactive.pm_.c:389
msgid "Root Partition"
msgstr "Rod-partition"
-#: ../../install_steps_interactive.pm_.c:407
+#: ../../install_steps_interactive.pm_.c:390
msgid "What is the root partition (/) of your system?"
msgstr "Hvilken partition indeholder systemets rod-partition (/)?"
-#: ../../install_steps_interactive.pm_.c:421
+#: ../../install_steps_interactive.pm_.c:404
msgid "You need to reboot for the partition table modifications to take place"
msgstr "Du skal genstarte for at aktivere ændringerne i partitionstabellen"
-#: ../../install_steps_interactive.pm_.c:445
+#: ../../install_steps_interactive.pm_.c:428
msgid "Choose the partitions you want to format"
msgstr "Vælg partitioner der skal formateres"
-#: ../../install_steps_interactive.pm_.c:446
+#: ../../install_steps_interactive.pm_.c:429
msgid "Check bad blocks?"
msgstr "Led efter beskadigede blokke?"
-#: ../../install_steps_interactive.pm_.c:473
+#: ../../install_steps_interactive.pm_.c:456
msgid "Formatting partitions"
msgstr "Formaterer partitioner"
-#: ../../install_steps_interactive.pm_.c:475
+#: ../../install_steps_interactive.pm_.c:458
#, c-format
msgid "Creating and formatting file %s"
msgstr "Opretter og formaterer fil %s"
-#: ../../install_steps_interactive.pm_.c:480
+#: ../../install_steps_interactive.pm_.c:463
#, c-format
msgid ""
"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
@@ -5395,27 +5470,27 @@ msgstr ""
"Kontrol af filsystem %s mislykkedes. Űnsker du at reparere fejlene (bemærk, "
"du kan miste data)"
-#: ../../install_steps_interactive.pm_.c:482
+#: ../../install_steps_interactive.pm_.c:465
msgid "Not enough swap space to fulfill installation, please add some"
msgstr "Ikke nok swap-plads til at gennemfűre installationen, tilfűj mere"
-#: ../../install_steps_interactive.pm_.c:489
+#: ../../install_steps_interactive.pm_.c:472
msgid "Looking for available packages and rebuilding rpm database..."
msgstr "Leder efter tilgængelige pakker og genopbygger rpm-database..."
-#: ../../install_steps_interactive.pm_.c:490
+#: ../../install_steps_interactive.pm_.c:473
msgid "Looking for available packages..."
msgstr "Leder efter tilgængelige pakker"
-#: ../../install_steps_interactive.pm_.c:493
+#: ../../install_steps_interactive.pm_.c:476
msgid "Looking at packages already installed..."
msgstr "Leder efter pakker der allerede er installeret..."
-#: ../../install_steps_interactive.pm_.c:497
+#: ../../install_steps_interactive.pm_.c:480
msgid "Finding packages to upgrade..."
msgstr "Leder efter pakker som skal opgraderes"
-#: ../../install_steps_interactive.pm_.c:515
+#: ../../install_steps_interactive.pm_.c:498
#, c-format
msgid ""
"Your system does not have enough space left for installation or upgrade (%d "
@@ -5424,7 +5499,7 @@ msgstr ""
"Dit system har ikke nok plads tilbage til en installation eller opgradering "
"(%d > %d)"
-#: ../../install_steps_interactive.pm_.c:550
+#: ../../install_steps_interactive.pm_.c:534
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
@@ -5432,35 +5507,35 @@ msgstr ""
"Vælg indlæs eller gem pakkevalg pć diskette.\n"
"Formatet er det samme som for auto_install-genererede disketter."
-#: ../../install_steps_interactive.pm_.c:553
+#: ../../install_steps_interactive.pm_.c:537
msgid "Load from floppy"
msgstr "Indlæs fra diskette"
-#: ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_interactive.pm_.c:539
msgid "Loading from floppy"
msgstr "Indlæser fra diskette"
-#: ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_interactive.pm_.c:539
msgid "Package selection"
msgstr "Valg af pakker"
-#: ../../install_steps_interactive.pm_.c:560
+#: ../../install_steps_interactive.pm_.c:544
msgid "Insert a floppy containing package selection"
msgstr "Indsæt en diskette med pakkevalget"
-#: ../../install_steps_interactive.pm_.c:572
+#: ../../install_steps_interactive.pm_.c:556
msgid "Save on floppy"
msgstr "Gem pć diskette"
-#: ../../install_steps_interactive.pm_.c:646
+#: ../../install_steps_interactive.pm_.c:630
msgid "Selected size is larger than available space"
msgstr "Valgt stűrrelse er stűrre end tilgængelig plads"
-#: ../../install_steps_interactive.pm_.c:660
+#: ../../install_steps_interactive.pm_.c:644
msgid "Type of install"
msgstr "Installationstype"
-#: ../../install_steps_interactive.pm_.c:661
+#: ../../install_steps_interactive.pm_.c:645
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
@@ -5468,19 +5543,19 @@ msgstr ""
"Du har ikke valgt nogen gruppe af pakker.\n"
"Vælg den minimale installation du űnsker"
-#: ../../install_steps_interactive.pm_.c:664
+#: ../../install_steps_interactive.pm_.c:648
msgid "With X"
msgstr "Med X"
-#: ../../install_steps_interactive.pm_.c:666
+#: ../../install_steps_interactive.pm_.c:650
msgid "With basic documentation (recommended!)"
msgstr "Med basal dokumentation (anbefalet!)"
-#: ../../install_steps_interactive.pm_.c:667
+#: ../../install_steps_interactive.pm_.c:651
msgid "Truly minimal install (especially no urpmi)"
msgstr "Virkelig minimal installation (specielt ingen urpmi)"
-#: ../../install_steps_interactive.pm_.c:752
+#: ../../install_steps_interactive.pm_.c:736
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -5490,16 +5565,16 @@ msgstr ""
"Hvis du ikke har nogen af disse cd'er, klik Annullér.\n"
"Hvis kun nogen cd'er mangler, fravælg dem, og klik sć Ok."
-#: ../../install_steps_interactive.pm_.c:757
+#: ../../install_steps_interactive.pm_.c:741
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "Cdrom med etikette '%s'"
-#: ../../install_steps_interactive.pm_.c:778
+#: ../../install_steps_interactive.pm_.c:762
msgid "Preparing installation"
msgstr "Forbereder installationen"
-#: ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:771
#, c-format
msgid ""
"Installing package %s\n"
@@ -5508,21 +5583,21 @@ msgstr ""
"Installerer pakke %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:833
+#: ../../install_steps_interactive.pm_.c:817
msgid "Post-install configuration"
msgstr "Konfiguration efter installation"
-#: ../../install_steps_interactive.pm_.c:839
+#: ../../install_steps_interactive.pm_.c:823
#, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Indsæt opstartsdisketten i diskette-drevet %s"
-#: ../../install_steps_interactive.pm_.c:845
+#: ../../install_steps_interactive.pm_.c:829
#, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Indsæt Opdater moduler-disketten i drev %s"
-#: ../../install_steps_interactive.pm_.c:865
+#: ../../install_steps_interactive.pm_.c:849
msgid ""
"You now have the opportunity to download encryption software.\n"
"\n"
@@ -5585,12 +5660,12 @@ msgstr ""
"\n"
"\n"
"For spűrgsmćl om denne aftale, vær venlig at kontakte \n"
-"Mandrakesoft, Inc.\n"
+"MandrakeSoft, Inc.\n"
"2400 N. Lincoln Avenue Suite 243\n"
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:904
+#: ../../install_steps_interactive.pm_.c:888
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
"have been released after the distribution was released. They may\n"
@@ -5609,155 +5684,155 @@ msgstr ""
"\n"
"Űnsker du at installere opdateringerne?"
-#: ../../install_steps_interactive.pm_.c:919
+#: ../../install_steps_interactive.pm_.c:903
msgid ""
"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr ""
"Kontakter Mandrake Linux netsted for at hente listen over tilgængelige spejle"
-#: ../../install_steps_interactive.pm_.c:924
+#: ../../install_steps_interactive.pm_.c:908
msgid "Choose a mirror from which to get the packages"
msgstr "Vælg det spejl hvorfra pakkerne skal hentes"
-#: ../../install_steps_interactive.pm_.c:933
+#: ../../install_steps_interactive.pm_.c:917
msgid "Contacting the mirror to get the list of available packages..."
msgstr "Kontakter spejlet for at hente listen af tilgængelige pakker"
-#: ../../install_steps_interactive.pm_.c:960
+#: ../../install_steps_interactive.pm_.c:945
msgid "Which is your timezone?"
msgstr "Hvad er din tidszone?"
-#: ../../install_steps_interactive.pm_.c:965
+#: ../../install_steps_interactive.pm_.c:950
msgid "Hardware clock set to GMT"
msgstr "Maskin-ur sat til GMT"
-#: ../../install_steps_interactive.pm_.c:966
+#: ../../install_steps_interactive.pm_.c:951
msgid "Automatic time synchronization (using NTP)"
msgstr "Automatisk tidssynkronisering (ved hjælp af NTP)"
-#: ../../install_steps_interactive.pm_.c:973
+#: ../../install_steps_interactive.pm_.c:958
msgid "NTP Server"
msgstr "NTP-server"
-#: ../../install_steps_interactive.pm_.c:1007
-#: ../../install_steps_interactive.pm_.c:1015
+#: ../../install_steps_interactive.pm_.c:992
+#: ../../install_steps_interactive.pm_.c:1000
msgid "Remote CUPS server"
msgstr "Ekstern CUPS server"
-#: ../../install_steps_interactive.pm_.c:1008
+#: ../../install_steps_interactive.pm_.c:993
msgid "No printer"
msgstr "Ingen printer"
-#: ../../install_steps_interactive.pm_.c:1025
+#: ../../install_steps_interactive.pm_.c:1010
msgid "Do you have an ISA sound card?"
msgstr "Har du et ISA-lydkort?"
-#: ../../install_steps_interactive.pm_.c:1027
+#: ../../install_steps_interactive.pm_.c:1012
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr "Kűr \"sndconfig\" efter installation for at konfigurere dit lydkort"
-#: ../../install_steps_interactive.pm_.c:1029
+#: ../../install_steps_interactive.pm_.c:1014
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr "Intet lydkort genkendt. Prűv at kűre \"harddrake\" efter installation"
-#: ../../install_steps_interactive.pm_.c:1034 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1019 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Oversigt"
-#: ../../install_steps_interactive.pm_.c:1037
+#: ../../install_steps_interactive.pm_.c:1022
msgid "Mouse"
msgstr "Mus"
-#: ../../install_steps_interactive.pm_.c:1039
+#: ../../install_steps_interactive.pm_.c:1024
msgid "Timezone"
msgstr "Tidszone"
-#: ../../install_steps_interactive.pm_.c:1040 ../../printerdrake.pm_.c:2728
-#: ../../printerdrake.pm_.c:2814
+#: ../../install_steps_interactive.pm_.c:1025 ../../printerdrake.pm_.c:2937
+#: ../../printerdrake.pm_.c:3026
msgid "Printer"
msgstr "Printer"
-#: ../../install_steps_interactive.pm_.c:1042
+#: ../../install_steps_interactive.pm_.c:1027
msgid "ISDN card"
msgstr "Internt ISDN-kort"
-#: ../../install_steps_interactive.pm_.c:1045
-#: ../../install_steps_interactive.pm_.c:1047
+#: ../../install_steps_interactive.pm_.c:1030
+#: ../../install_steps_interactive.pm_.c:1032
msgid "Sound card"
msgstr "Lydkort"
-#: ../../install_steps_interactive.pm_.c:1049
+#: ../../install_steps_interactive.pm_.c:1034
msgid "TV card"
msgstr "TV-kort"
-#: ../../install_steps_interactive.pm_.c:1089
-#: ../../install_steps_interactive.pm_.c:1114
-#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1074
+#: ../../install_steps_interactive.pm_.c:1099
+#: ../../install_steps_interactive.pm_.c:1103
msgid "LDAP"
msgstr "LDAP"
-#: ../../install_steps_interactive.pm_.c:1090
-#: ../../install_steps_interactive.pm_.c:1114
-#: ../../install_steps_interactive.pm_.c:1127
+#: ../../install_steps_interactive.pm_.c:1075
+#: ../../install_steps_interactive.pm_.c:1099
+#: ../../install_steps_interactive.pm_.c:1112
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1091
-#: ../../install_steps_interactive.pm_.c:1114
-#: ../../install_steps_interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1141
+#: ../../install_steps_interactive.pm_.c:1076
+#: ../../install_steps_interactive.pm_.c:1099
+#: ../../install_steps_interactive.pm_.c:1120
+#: ../../install_steps_interactive.pm_.c:1126
msgid "Windows Domain"
msgstr "Windows Domain"
-#: ../../install_steps_interactive.pm_.c:1092
-#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1077
+#: ../../install_steps_interactive.pm_.c:1099
msgid "Local files"
msgstr "Lokale filer"
-#: ../../install_steps_interactive.pm_.c:1101
-#: ../../install_steps_interactive.pm_.c:1102 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1086
+#: ../../install_steps_interactive.pm_.c:1087 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Sæt root-adgangskode"
-#: ../../install_steps_interactive.pm_.c:1103
+#: ../../install_steps_interactive.pm_.c:1088
msgid "No password"
msgstr "Ingen adgangskode"
-#: ../../install_steps_interactive.pm_.c:1108
+#: ../../install_steps_interactive.pm_.c:1093
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr "Dette kodeord er for nemt at gætte (det skal mindst være pć %d tegn)"
-#: ../../install_steps_interactive.pm_.c:1114 ../../network/modem.pm_.c:49
+#: ../../install_steps_interactive.pm_.c:1099 ../../network/modem.pm_.c:49
#: ../../standalone/drakconnect_.c:625 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Identifikation"
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1107
msgid "Authentication LDAP"
msgstr "Autentificering LDAP"
-#: ../../install_steps_interactive.pm_.c:1123
+#: ../../install_steps_interactive.pm_.c:1108
msgid "LDAP Base dn"
msgstr "LDAP grundlæggende dn"
-#: ../../install_steps_interactive.pm_.c:1124
+#: ../../install_steps_interactive.pm_.c:1109
msgid "LDAP Server"
msgstr "LDAP-server"
-#: ../../install_steps_interactive.pm_.c:1130
+#: ../../install_steps_interactive.pm_.c:1115
msgid "Authentication NIS"
msgstr "Autentificering NIS"
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1116
msgid "NIS Domain"
msgstr "NIS-domæne"
-#: ../../install_steps_interactive.pm_.c:1132
+#: ../../install_steps_interactive.pm_.c:1117
msgid "NIS Server"
msgstr "NIS-server"
-#: ../../install_steps_interactive.pm_.c:1138
+#: ../../install_steps_interactive.pm_.c:1123
msgid ""
"For this to work for a W2K PDC, you will probably need to have the admin "
"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
@@ -5772,8 +5847,8 @@ msgid ""
"The command 'wbinfo -t' will test whether your authentication secrets are "
"good."
msgstr ""
-"For at dette kan virke pć en W2K PDC skal du nok have administratoren til "
-"atkűre: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
+"For at dette kan virke pć en W2K PDC skal du nok have administratoren til at "
+"kűre: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
"add og genstarte serveren.\n"
"Du skal ogsć have et brugernavn og en adgangskode for at maskinen kan "
"tilsluttes Windows(TM)-domænet.\n"
@@ -5786,19 +5861,19 @@ msgstr ""
"Kommandoen 'wbinfo -t' vil afprűve om dine hemmelige autentifikationsdata er "
"i orden."
-#: ../../install_steps_interactive.pm_.c:1140
+#: ../../install_steps_interactive.pm_.c:1125
msgid "Authentication Windows Domain"
msgstr "Autentifikations Windowsdomæne"
-#: ../../install_steps_interactive.pm_.c:1142
+#: ../../install_steps_interactive.pm_.c:1127
msgid "Domain Admin User Name"
msgstr "Brugernavn for domæneadministrator"
-#: ../../install_steps_interactive.pm_.c:1143
+#: ../../install_steps_interactive.pm_.c:1128
msgid "Domain Admin Password"
msgstr "Adgangskode for domæneadministrator"
-#: ../../install_steps_interactive.pm_.c:1178
+#: ../../install_steps_interactive.pm_.c:1163
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
"depending on the normal bootloader. This is useful if you don't want to "
@@ -5826,19 +5901,19 @@ msgstr ""
"Hvis du űnsker at lave en opstartsdiskette til dit system, indsæt en "
"diskette i dit fűrste diskettedrev og tryk 'Ok'."
-#: ../../install_steps_interactive.pm_.c:1194
+#: ../../install_steps_interactive.pm_.c:1179
msgid "First floppy drive"
msgstr "Fűrste diskette-drev"
-#: ../../install_steps_interactive.pm_.c:1195
+#: ../../install_steps_interactive.pm_.c:1180
msgid "Second floppy drive"
msgstr "Andet diskette-drev"
-#: ../../install_steps_interactive.pm_.c:1196 ../../printerdrake.pm_.c:2277
+#: ../../install_steps_interactive.pm_.c:1181 ../../printerdrake.pm_.c:2470
msgid "Skip"
msgstr "Spring over"
-#: ../../install_steps_interactive.pm_.c:1201
+#: ../../install_steps_interactive.pm_.c:1186
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5863,7 +5938,7 @@ msgstr ""
"Vil du lave en opstartsdiskette til dit system?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1207
+#: ../../install_steps_interactive.pm_.c:1192
msgid ""
"\n"
"\n"
@@ -5877,28 +5952,28 @@ msgstr ""
"oprettelse af en opstartsdiskette pć en 1.44 Mb diskette vil formentlig\n"
"mislykkes, fordi XFS kræver en meget stor driver)."
-#: ../../install_steps_interactive.pm_.c:1215
+#: ../../install_steps_interactive.pm_.c:1200
msgid "Sorry, no floppy drive available"
msgstr "Der er desværre ikke noget tilgængeligt diskette-drev"
-#: ../../install_steps_interactive.pm_.c:1219
+#: ../../install_steps_interactive.pm_.c:1204
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "Vælg det diskette-drev, du vil benytte til at lave boot-disketten"
-#: ../../install_steps_interactive.pm_.c:1223
+#: ../../install_steps_interactive.pm_.c:1208
#, c-format
msgid "Insert a floppy in %s"
msgstr "Indsæt en diskette i %s"
-#: ../../install_steps_interactive.pm_.c:1226
+#: ../../install_steps_interactive.pm_.c:1211
msgid "Creating bootdisk..."
msgstr "Opretter opstartsdiskette..."
-#: ../../install_steps_interactive.pm_.c:1233
+#: ../../install_steps_interactive.pm_.c:1218
msgid "Preparing bootloader..."
msgstr "Forbereder opstarter..."
-#: ../../install_steps_interactive.pm_.c:1244
+#: ../../install_steps_interactive.pm_.c:1229
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5909,11 +5984,11 @@ msgstr ""
"opstartsindlæseren vil ikke virke for dig. Installationen vil fortsætte, men "
"du skal bruge BootX for at starte din maskine."
-#: ../../install_steps_interactive.pm_.c:1250
+#: ../../install_steps_interactive.pm_.c:1235
msgid "Do you want to use aboot?"
msgstr "Űnsker du at bruge aboot?"
-#: ../../install_steps_interactive.pm_.c:1253
+#: ../../install_steps_interactive.pm_.c:1238
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -5922,15 +5997,15 @@ msgstr ""
"forsűg at gennemtvinge installation selv om dette kan űdelægge den fűrste "
"partition?"
-#: ../../install_steps_interactive.pm_.c:1260
+#: ../../install_steps_interactive.pm_.c:1245
msgid "Installing bootloader"
msgstr "Installerer systemopstarter"
-#: ../../install_steps_interactive.pm_.c:1266
+#: ../../install_steps_interactive.pm_.c:1251
msgid "Installation of bootloader failed. The following error occured:"
msgstr "Installation af opstarter mislykkedes. Den fűlgende fejl opstod:"
-#: ../../install_steps_interactive.pm_.c:1274
+#: ../../install_steps_interactive.pm_.c:1259
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -5947,17 +6022,17 @@ msgstr ""
" Skriv sć: shut-down\n"
"Ved næste opstart burde du se systemstarteren."
-#: ../../install_steps_interactive.pm_.c:1308
+#: ../../install_steps_interactive.pm_.c:1293
#: ../../standalone/drakautoinst_.c:79
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Indsæt en tom diskette i drev %s"
-#: ../../install_steps_interactive.pm_.c:1312
+#: ../../install_steps_interactive.pm_.c:1297
msgid "Creating auto install floppy..."
msgstr "Laver autoinstallations-diskette"
-#: ../../install_steps_interactive.pm_.c:1323
+#: ../../install_steps_interactive.pm_.c:1308
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -5967,7 +6042,7 @@ msgstr ""
"\n"
"Er du sikker pć du űnsker du at lukke nu?"
-#: ../../install_steps_interactive.pm_.c:1334
+#: ../../install_steps_interactive.pm_.c:1319
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
@@ -5999,15 +6074,15 @@ msgstr ""
"Information om konfigurering af dit system kan du finde i kapitlet om efter-"
"installation i den Officielle Mandrake Linux Brugervejledning."
-#: ../../install_steps_interactive.pm_.c:1347
+#: ../../install_steps_interactive.pm_.c:1332
msgid "http://www.mandrakelinux.com/en/90errata.php3"
msgstr "http://www.mandrakelinux.com/en/90errata.php3"
-#: ../../install_steps_interactive.pm_.c:1352
+#: ../../install_steps_interactive.pm_.c:1337
msgid "Generate auto install floppy"
msgstr "Laver autoinstallations-diskette"
-#: ../../install_steps_interactive.pm_.c:1354
+#: ../../install_steps_interactive.pm_.c:1339
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -6021,15 +6096,15 @@ msgstr ""
"\n"
"Du foretrækker mćske at afspille installationen igen\n"
-#: ../../install_steps_interactive.pm_.c:1359
+#: ../../install_steps_interactive.pm_.c:1344
msgid "Automated"
msgstr "Automatisk"
-#: ../../install_steps_interactive.pm_.c:1359
+#: ../../install_steps_interactive.pm_.c:1344
msgid "Replay"
msgstr "Afspil igen"
-#: ../../install_steps_interactive.pm_.c:1362
+#: ../../install_steps_interactive.pm_.c:1347
msgid "Save packages selection"
msgstr "Gem pakke-valg"
@@ -6038,7 +6113,8 @@ msgstr "Gem pakke-valg"
msgid "Mandrake Linux Installation %s"
msgstr "Mandrake Linux Installation %s"
-#: ../../install_steps_newt.pm_.c:34
+#. -PO This string must fit in a 80-char wide text screen
+#: ../../install_steps_newt.pm_.c:35
msgid ""
" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
msgstr ""
@@ -6056,22 +6132,22 @@ msgstr "konsolhjælper mangler"
msgid "Choose a file"
msgstr "Vælg en fil"
-#: ../../interactive.pm_.c:317
+#: ../../interactive.pm_.c:320
msgid "Advanced"
msgstr "Avanceret"
-#: ../../interactive.pm_.c:318
+#: ../../interactive.pm_.c:321
msgid "Basic"
msgstr "Basal"
-#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:155
-#: ../../printerdrake.pm_.c:1990
+#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:158
+#: ../../printerdrake.pm_.c:2124
msgid "<- Previous"
msgstr "<- Forrige"
#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
-#: ../../standalone/drakbackup_.c:3464 ../../standalone/drakbackup_.c:3491
-#: ../../standalone/drakbackup_.c:3517
+#: ../../standalone/drakbackup_.c:4112 ../../standalone/drakbackup_.c:4139
+#: ../../standalone/drakbackup_.c:4169 ../../standalone/drakbackup_.c:4195
msgid "Next"
msgstr "Næste"
@@ -6144,375 +6220,371 @@ msgstr ""
msgid "Re-submit"
msgstr "Indsend igen"
-#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:152 ../../keyboard.pm_.c:187
msgid "Czech (QWERTZ)"
msgstr "Tjekkisk (QWERTZ)"
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:153 ../../keyboard.pm_.c:189
msgid "German"
msgstr "Tysk"
-#: ../../keyboard.pm_.c:175
+#: ../../keyboard.pm_.c:154
msgid "Dvorak"
msgstr "Dvorak"
-#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:218
+#: ../../keyboard.pm_.c:155 ../../keyboard.pm_.c:197
msgid "Spanish"
msgstr "Spansk"
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:156 ../../keyboard.pm_.c:198
msgid "Finnish"
msgstr "Finsk"
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:220
+#: ../../keyboard.pm_.c:157 ../../keyboard.pm_.c:199
msgid "French"
msgstr "Fransk"
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:158 ../../keyboard.pm_.c:231
msgid "Norwegian"
msgstr "Norsk"
-#: ../../keyboard.pm_.c:180
+#: ../../keyboard.pm_.c:159
msgid "Polish"
msgstr "Polsk"
-#: ../../keyboard.pm_.c:181 ../../keyboard.pm_.c:260
+#: ../../keyboard.pm_.c:160 ../../keyboard.pm_.c:239
msgid "Russian"
msgstr "Russisk"
-#: ../../keyboard.pm_.c:183 ../../keyboard.pm_.c:262
+#: ../../keyboard.pm_.c:162 ../../keyboard.pm_.c:241
msgid "Swedish"
msgstr "Svensk"
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:278
+#: ../../keyboard.pm_.c:163 ../../keyboard.pm_.c:257
msgid "UK keyboard"
msgstr "Britisk"
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:279
+#: ../../keyboard.pm_.c:164 ../../keyboard.pm_.c:258
msgid "US keyboard"
msgstr "Amerikansk"
-#: ../../keyboard.pm_.c:187
+#: ../../keyboard.pm_.c:166
msgid "Albanian"
msgstr "Albansk"
-#: ../../keyboard.pm_.c:188
+#: ../../keyboard.pm_.c:167
msgid "Armenian (old)"
msgstr "Armensk (gammel)"
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:168
msgid "Armenian (typewriter)"
msgstr "Armensk (skrivemaskine)"
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:169
msgid "Armenian (phonetic)"
msgstr "Armensk (fonetisk)"
-#: ../../keyboard.pm_.c:195
+#: ../../keyboard.pm_.c:174
msgid "Azerbaidjani (latin)"
msgstr "Azerbaidiansk (latin)"
-#: ../../keyboard.pm_.c:197
+#: ../../keyboard.pm_.c:176
msgid "Belgian"
msgstr "Belgisk"
-#: ../../keyboard.pm_.c:198
-#, fuzzy
+#: ../../keyboard.pm_.c:177
msgid "Bengali"
-msgstr "aktivér"
+msgstr "Bengali"
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:178
msgid "Bulgarian (phonetic)"
msgstr "Bulgarsk (fonetisk)"
-#: ../../keyboard.pm_.c:200
+#: ../../keyboard.pm_.c:179
msgid "Bulgarian (BDS)"
msgstr "Bulgarsk (BDS)"
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:180
msgid "Brazilian (ABNT-2)"
msgstr "Brasiliansk (ABNT-2)"
-#: ../../keyboard.pm_.c:204
-#, fuzzy
+#: ../../keyboard.pm_.c:183
msgid "Bosnian"
-msgstr "Estisk"
+msgstr "Bosnisk"
-#: ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:184
msgid "Belarusian"
msgstr "Hviderussisk"
-#: ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:185
msgid "Swiss (German layout)"
msgstr "Schweizisk (Tysk layout)"
-#: ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:186
msgid "Swiss (French layout)"
msgstr "Schweizisk (Fransk layout)"
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:188
msgid "Czech (QWERTY)"
msgstr "Tjekkisk (QWERTY)"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:190
msgid "German (no dead keys)"
msgstr "Tysk (ingen dűde taster)"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:191
msgid "Devanagari"
-msgstr ""
+msgstr "Devanagari"
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:192
msgid "Danish"
msgstr "Dansk"
-#: ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:193
msgid "Dvorak (US)"
msgstr "Dvorak (US)"
-#: ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:194
msgid "Dvorak (Norwegian)"
msgstr "Dvorak (norsk)"
-#: ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:195
msgid "Dvorak (Swedish)"
msgstr "Dvorak (svensk)"
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:196
msgid "Estonian"
msgstr "Estisk"
-#: ../../keyboard.pm_.c:221
+#: ../../keyboard.pm_.c:200
msgid "Georgian (\"Russian\" layout)"
msgstr "Georgisk (russisk layout)"
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:201
msgid "Georgian (\"Latin\" layout)"
msgstr "Georgisk (Latin layout)"
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:202
msgid "Greek"
msgstr "Græsk"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:203
msgid "Gujarati"
-msgstr ""
+msgstr "Gujarati"
-#: ../../keyboard.pm_.c:225
+#: ../../keyboard.pm_.c:204
msgid "Gurmukhi"
-msgstr ""
+msgstr "Gurmukhi"
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:205
msgid "Hungarian"
msgstr "Ungarsk"
-#: ../../keyboard.pm_.c:227
+#: ../../keyboard.pm_.c:206
msgid "Croatian"
msgstr "Kroatisk"
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:207
msgid "Israeli"
msgstr "Israelsk"
-#: ../../keyboard.pm_.c:229
+#: ../../keyboard.pm_.c:208
msgid "Israeli (Phonetic)"
msgstr "Israelsk (Fonetisk)"
-#: ../../keyboard.pm_.c:230
+#: ../../keyboard.pm_.c:209
msgid "Iranian"
msgstr "Iransk"
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:210
msgid "Icelandic"
msgstr "Islandsk"
-#: ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:211
msgid "Italian"
msgstr "Italiensk"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:212
msgid "Inuktitut"
-msgstr ""
+msgstr "Inuktitut"
-#: ../../keyboard.pm_.c:234
+#: ../../keyboard.pm_.c:213
msgid "Japanese 106 keys"
msgstr "Japansk 106 taster"
-#: ../../keyboard.pm_.c:237
+#: ../../keyboard.pm_.c:216
msgid "Korean keyboard"
msgstr "Koreansk tastatur"
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:217
msgid "Latin American"
msgstr "Latinamerikansk"
-#: ../../keyboard.pm_.c:239
-#, fuzzy
+#: ../../keyboard.pm_.c:218
msgid "Laotian"
-msgstr "Lettisk"
+msgstr "Laotisk"
-#: ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:219
msgid "Lithuanian AZERTY (old)"
msgstr "Litauisk AZERTY (gammel)"
-#: ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:221
msgid "Lithuanian AZERTY (new)"
msgstr "Litauisk AZERTY (ny)"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:222
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Litauisk \"talrække\" QWERTY"
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:223
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "Litauisk \"fonetisk\" QWERTY"
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:224
msgid "Latvian"
msgstr "Lettisk"
-#: ../../keyboard.pm_.c:246
+#: ../../keyboard.pm_.c:225
msgid "Macedonian"
msgstr "Makedonisk"
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:226
msgid "Myanmar (Burmese)"
-msgstr ""
+msgstr "Myanmar (Burmesisk)"
-#: ../../keyboard.pm_.c:248
-#, fuzzy
+#: ../../keyboard.pm_.c:227
msgid "Mongolian (cyrillic)"
-msgstr "Serbisk (kyrillisk)"
+msgstr "Mongolsk (kyrillisk)"
-#: ../../keyboard.pm_.c:249
+#: ../../keyboard.pm_.c:228
msgid "Maltese (UK)"
-msgstr ""
+msgstr "Maltesisk (UK)"
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:229
msgid "Maltese (US)"
-msgstr ""
+msgstr "Maltesisk (US)"
-#: ../../keyboard.pm_.c:251
+#: ../../keyboard.pm_.c:230
msgid "Dutch"
msgstr "Hollandsk"
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:232
msgid "Polish (qwerty layout)"
msgstr "Polsk (polsk layout)"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:233
msgid "Polish (qwertz layout)"
msgstr "Polsk (polsk layout)"
-#: ../../keyboard.pm_.c:255
+#: ../../keyboard.pm_.c:234
msgid "Portuguese"
msgstr "Portugisisk"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:235
msgid "Canadian (Quebec)"
msgstr "Canadisk (Québec)"
-#: ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:237
msgid "Romanian (qwertz)"
msgstr "Russisk (qwertz)"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:238
msgid "Romanian (qwerty)"
msgstr "Russisk (qwerty)"
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:240
msgid "Russian (Yawerty)"
msgstr "Russisk (Yawerty)"
-#: ../../keyboard.pm_.c:263
+#: ../../keyboard.pm_.c:242
msgid "Slovenian"
msgstr "Slovensk"
-#: ../../keyboard.pm_.c:264
+#: ../../keyboard.pm_.c:243
msgid "Slovakian (QWERTZ)"
msgstr "Slovakisk (QWERTZ)"
-#: ../../keyboard.pm_.c:265
+#: ../../keyboard.pm_.c:244
msgid "Slovakian (QWERTY)"
msgstr "Slovakisk (QWERTY)"
-#: ../../keyboard.pm_.c:267
+#: ../../keyboard.pm_.c:246
msgid "Serbian (cyrillic)"
msgstr "Serbisk (kyrillisk)"
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:248
msgid "Tamil (Unicode)"
msgstr "Tamil (Unicode)"
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:249
msgid "Tamil (TSCII)"
msgstr "Tamil (TSCII)"
-#: ../../keyboard.pm_.c:271
+#: ../../keyboard.pm_.c:250
msgid "Thai keyboard"
msgstr "Thailandsk"
-#: ../../keyboard.pm_.c:273
+#: ../../keyboard.pm_.c:252
msgid "Tajik keyboard"
msgstr "Tajik tastatur"
-#: ../../keyboard.pm_.c:274
+#: ../../keyboard.pm_.c:253
msgid "Turkish (traditional \"F\" model)"
msgstr "Tyrkisk (traditionel \"F\" model)"
-#: ../../keyboard.pm_.c:275
+#: ../../keyboard.pm_.c:254
msgid "Turkish (modern \"Q\" model)"
msgstr "Tyrkisk (moderne \"Q\" model)"
-#: ../../keyboard.pm_.c:277
+#: ../../keyboard.pm_.c:256
msgid "Ukrainian"
msgstr "Ukrainsk"
-#: ../../keyboard.pm_.c:280
+#: ../../keyboard.pm_.c:259
msgid "US keyboard (international)"
msgstr "Amerikansk (internaltionalt)"
-#: ../../keyboard.pm_.c:281
+#: ../../keyboard.pm_.c:260
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "Vietnamesisk \"talrække\" QWERTY"
-#: ../../keyboard.pm_.c:282
+#: ../../keyboard.pm_.c:261
msgid "Yugoslavian (latin)"
msgstr "Jugoslavisk (latinsk)"
-#: ../../keyboard.pm_.c:289
+#: ../../keyboard.pm_.c:268
msgid "Right Alt key"
msgstr "Hűjre alt-tast"
-#: ../../keyboard.pm_.c:290
+#: ../../keyboard.pm_.c:269
msgid "Both Shift keys simultaneously"
msgstr "Begge taster samtidigt"
-#: ../../keyboard.pm_.c:291
+#: ../../keyboard.pm_.c:270
msgid "Control and Shift keys simultaneously"
msgstr "Kontrol- og skiftetaster samtidigt"
-#: ../../keyboard.pm_.c:292
+#: ../../keyboard.pm_.c:271
msgid "CapsLock key"
msgstr "CapsLock-tast"
-#: ../../keyboard.pm_.c:293
+#: ../../keyboard.pm_.c:272
msgid "Ctrl and Alt keys simultaneously"
msgstr "Ctrl- og alt-taster samtidigt"
-#: ../../keyboard.pm_.c:294
+#: ../../keyboard.pm_.c:273
msgid "Alt and Shift keys simultaneously"
msgstr "Alt og Shift-taster samtidigt"
-#: ../../keyboard.pm_.c:295
+#: ../../keyboard.pm_.c:274
msgid "\"Menu\" key"
msgstr "'Menu'-tast"
-#: ../../keyboard.pm_.c:296
+#: ../../keyboard.pm_.c:275
msgid "Left \"Windows\" key"
msgstr "Venstre Windows-tast"
-#: ../../keyboard.pm_.c:297
+#: ../../keyboard.pm_.c:276
msgid "Right \"Windows\" key"
msgstr "Hűjre Windows-tast"
@@ -6570,11 +6642,11 @@ msgstr "Standard PS2 mus med hjul"
msgid "GlidePoint"
msgstr "GlidePoint"
-#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:63
+#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:65
msgid "Kensington Thinking Mouse"
msgstr "Kensington Thinking-mus"
-#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:59
+#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:61
msgid "Genius NetMouse"
msgstr "Genius NetMouse"
@@ -6582,115 +6654,125 @@ msgstr "Genius NetMouse"
msgid "Genius NetScroll"
msgstr "Genius NetScroll"
-#: ../../mouse.pm_.c:43 ../../mouse.pm_.c:68
+#: ../../mouse.pm_.c:39 ../../mouse.pm_.c:48
+#, fuzzy
+msgid "Microsoft Explorer"
+msgstr "Microsoft IntelliMouse"
+
+#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:70
msgid "1 button"
msgstr "1 knap"
-#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:51
+#: ../../mouse.pm_.c:45 ../../mouse.pm_.c:53
msgid "Generic 2 Button Mouse"
msgstr "Standard 2-knaps mus"
-#: ../../mouse.pm_.c:46
+#: ../../mouse.pm_.c:47
msgid "Wheel"
msgstr "Hjul"
-#: ../../mouse.pm_.c:49
+#: ../../mouse.pm_.c:51
msgid "serial"
msgstr "seriel"
-#: ../../mouse.pm_.c:52
+#: ../../mouse.pm_.c:54
msgid "Generic 3 Button Mouse"
msgstr "Standard 3-knaps mus"
-#: ../../mouse.pm_.c:53
+#: ../../mouse.pm_.c:55
msgid "Microsoft IntelliMouse"
msgstr "Microsoft IntelliMouse"
-#: ../../mouse.pm_.c:54
+#: ../../mouse.pm_.c:56
msgid "Logitech MouseMan"
msgstr "Logitech MouseMan"
-#: ../../mouse.pm_.c:55
+#: ../../mouse.pm_.c:57
msgid "Mouse Systems"
msgstr "Mouse Systems"
-#: ../../mouse.pm_.c:57
+#: ../../mouse.pm_.c:59
msgid "Logitech CC Series"
msgstr "Logitech CC Serien (seriel)"
-#: ../../mouse.pm_.c:58
+#: ../../mouse.pm_.c:60
msgid "Logitech MouseMan+/FirstMouse+"
msgstr "Logitech MouseMan+/FirstMouse+"
-#: ../../mouse.pm_.c:60
+#: ../../mouse.pm_.c:62
msgid "MM Series"
msgstr "MM Serien"
-#: ../../mouse.pm_.c:61
+#: ../../mouse.pm_.c:63
msgid "MM HitTablet"
msgstr "MM HitTablet"
-#: ../../mouse.pm_.c:62
+#: ../../mouse.pm_.c:64
msgid "Logitech Mouse (serial, old C7 type)"
msgstr "Logitech mus (seriel, gammel C7 type)"
-#: ../../mouse.pm_.c:66
+#: ../../mouse.pm_.c:68
msgid "busmouse"
msgstr "Busmus"
-#: ../../mouse.pm_.c:69
+#: ../../mouse.pm_.c:71
msgid "2 buttons"
msgstr "2 knapper"
-#: ../../mouse.pm_.c:70
+#: ../../mouse.pm_.c:72
msgid "3 buttons"
msgstr "3 knapper"
-#: ../../mouse.pm_.c:73
+#: ../../mouse.pm_.c:75
msgid "none"
msgstr "ingenting"
-#: ../../mouse.pm_.c:75
+#: ../../mouse.pm_.c:77
msgid "No mouse"
msgstr "Ingen mus"
-#: ../../mouse.pm_.c:445
+#: ../../mouse.pm_.c:482
msgid "Please test the mouse"
msgstr "Test musen"
-#: ../../mouse.pm_.c:446
+#: ../../mouse.pm_.c:483
msgid "To activate the mouse,"
msgstr "For at aktivere musen,"
-#: ../../mouse.pm_.c:447
+#: ../../mouse.pm_.c:484
msgid "MOVE YOUR WHEEL!"
msgstr "FLYT PĆ HJULET!"
-#: ../../my_gtk.pm_.c:156
+#: ../../my_gtk.pm_.c:64
+#, fuzzy
+msgid "-adobe-utopia-regular-r-*-*-25-*-*-*-p-*-iso8859-*,*-r-*"
+msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
+
+#: ../../my_gtk.pm_.c:159
msgid "Finish"
msgstr "Afslut"
-#: ../../my_gtk.pm_.c:156 ../../printerdrake.pm_.c:1992
+#: ../../my_gtk.pm_.c:159 ../../printerdrake.pm_.c:2126
msgid "Next ->"
msgstr "Næste ->"
-#: ../../my_gtk.pm_.c:284
+#: ../../my_gtk.pm_.c:287
msgid "Is this correct?"
msgstr "Er dette korrekt?"
-#: ../../my_gtk.pm_.c:356 ../../services.pm_.c:222
+#: ../../my_gtk.pm_.c:359 ../../services.pm_.c:222
msgid "Info"
msgstr "Info"
-#: ../../my_gtk.pm_.c:377
+#: ../../my_gtk.pm_.c:380
msgid "Expand Tree"
msgstr "Udvid træ"
-#: ../../my_gtk.pm_.c:378
+#: ../../my_gtk.pm_.c:381
msgid "Collapse Tree"
msgstr "Sammenfold træ"
-#: ../../my_gtk.pm_.c:379
+#: ../../my_gtk.pm_.c:382
msgid "Toggle between flat and group sorted"
msgstr "Skift mellem flad og gruppesorteret"
@@ -6728,6 +6810,74 @@ msgstr "brug pppoe"
msgid "use pptp"
msgstr "brug pptp"
+#: ../../network/drakfirewall.pm_.c:12
+#, fuzzy
+msgid "Web Server"
+msgstr "Server"
+
+#: ../../network/drakfirewall.pm_.c:17
+#, fuzzy
+msgid "Domain Name Server"
+msgstr "Lűser for domænenavn"
+
+#: ../../network/drakfirewall.pm_.c:32
+#, fuzzy
+msgid "Mail Server"
+msgstr "Aktivér server"
+
+#: ../../network/drakfirewall.pm_.c:37
+#, fuzzy
+msgid "POP and IMAP Server"
+msgstr "LDAP-server"
+
+#: ../../network/drakfirewall.pm_.c:111
+#, fuzzy
+msgid "No network card"
+msgstr "kunne ikke finde noget netkort"
+
+#: ../../network/drakfirewall.pm_.c:129
+#, fuzzy
+msgid ""
+"drakfirewall configurator\n"
+"\n"
+"This configures a personal firewall for this Mandrake Linux machine.\n"
+"For a powerful dedicated firewall solution, please look to the\n"
+"specialized MandrakeSecurity Firewall distribution."
+msgstr ""
+"tinyfirewall-konfigurator\n"
+"\n"
+"Dette konfigurerer en personlig brandmur for denne Mandrake Linux maskine.\n"
+"For en stærk dedikeret brandmurs-lűsning se venligst den specialiserede "
+"MandrakeSecurity Firewall-distribution."
+
+#: ../../network/drakfirewall.pm_.c:147
+msgid "Which services would you like to allow the Internet to connect to?"
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:148
+msgid ""
+"You can enter miscellaneous ports. \n"
+"Valid examples are: 139/tcp 139/udp.\n"
+"Have a look at /etc/services for information."
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:154
+#, c-format
+msgid ""
+"Invalid port given: %s.\n"
+"The proper format is \"port/tcp\" or \"port/udp\", \n"
+"where port is between 1 and 65535."
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:162
+msgid "Everything (no firewall)"
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:164
+#, fuzzy
+msgid "Other ports"
+msgstr "Afprűv porte"
+
#: ../../network/ethernet.pm_.c:37
msgid ""
"Which dhcp client do you want to use?\n"
@@ -6744,7 +6894,7 @@ msgstr ""
"Der blev ikke fundet nogen ethernet netværksadapter pć dit system.\n"
"Kan ikke sætte denne forbindelsetype op."
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:247
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:240
msgid "Choose the network interface"
msgstr "Vælg netværksgrænsesnit"
@@ -6759,7 +6909,7 @@ msgstr ""
msgid "no network card found"
msgstr "kunne ikke finde noget netkort"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:366
msgid "Configuring network"
msgstr "Konfigurerer netværk"
@@ -6775,7 +6925,7 @@ msgstr ""
"Dit værtsnavn bűr være et fuldt kvalificeret værtsnavn,\n"
"fx 'minpc.mitfirma.dk'."
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:370
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:371
msgid "Host name"
msgstr "Værtsnavn"
@@ -7080,13 +7230,13 @@ msgstr "Vælg profilen der skal konfigureres"
msgid "Use auto detection"
msgstr "Brug automatisk detektion"
-#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2930
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:3151
#: ../../standalone/drakconnect_.c:274 ../../standalone/drakconnect_.c:277
#: ../../standalone/drakfloppy_.c:145
msgid "Expert Mode"
msgstr "Eksperttilstand"
-#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:283
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:386
msgid "Detecting devices..."
msgstr "Detekterer enheder..."
@@ -7254,11 +7404,11 @@ msgstr "Automatisk IP"
msgid "Start at boot"
msgstr "Start ved opstart"
-#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:753
+#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:860
msgid "IP address should be in format 1.2.3.4"
msgstr "IP adresse skal have formatet 1.2.3.4"
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:367
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -7270,43 +7420,55 @@ msgstr ""
"f.eks. minpc.mitfirma.dk. Hvis du ikke har nogen ekstra navne-servere,\n"
"sć lad navne-server-felterne være blanke."
-#: ../../network/network.pm_.c:371
+#: ../../network/network.pm_.c:372
msgid "DNS server"
msgstr "DNS-server"
-#: ../../network/network.pm_.c:372
+#: ../../network/network.pm_.c:373
#, c-format
msgid "Gateway (e.g. %s)"
msgstr "Gateway (fx %s)"
-#: ../../network/network.pm_.c:374
+#: ../../network/network.pm_.c:375
msgid "Gateway device"
msgstr "Gateway enhed"
-#: ../../network/network.pm_.c:386
+#: ../../network/network.pm_.c:387
msgid "Proxies configuration"
msgstr "Konfiguration af mellemvært (proxy)"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:388
msgid "HTTP proxy"
msgstr "HTTP-proxy"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:389
msgid "FTP proxy"
msgstr "FTP-proxy"
-#: ../../network/network.pm_.c:389
+#: ../../network/network.pm_.c:390
msgid "Track network card id (useful for laptops)"
msgstr "Fűlg id for netværkskort (nyttigt for bærbare)"
-#: ../../network/network.pm_.c:392
+#: ../../network/network.pm_.c:393
msgid "Proxy should be http://..."
msgstr "Proxy skal være http://..."
-#: ../../network/network.pm_.c:393
+#: ../../network/network.pm_.c:394
msgid "Proxy should be ftp://..."
msgstr "Proxy skal være ftp://..."
+#: ../../network/shorewall.pm_.c:24
+msgid "Firewalling configuration detected!"
+msgstr "Brandmurkonfiguration fundet!"
+
+#: ../../network/shorewall.pm_.c:25
+msgid ""
+"Warning! An existing firewalling configuration has been detected. You may "
+"need some manual fix after installation."
+msgstr ""
+"Advarsel! En eksisterende brandmurkonfiguration er blevet fundet. Du skal "
+"muligvis lave manuelle rettelser efter installationen."
+
#: ../../network/tools.pm_.c:41
msgid "Internet configuration"
msgstr "Internet-konfiguration"
@@ -7412,15 +7574,15 @@ msgstr "Kodeord for konto"
msgid "United Kingdom"
msgstr "Storbritannien"
-#: ../../partition_table.pm_.c:606
+#: ../../partition_table.pm_.c:602
msgid "mount failed: "
msgstr "montering mislykkedes: "
-#: ../../partition_table.pm_.c:670
+#: ../../partition_table.pm_.c:666
msgid "Extended partition not supported on this platform"
msgstr "Udvidet partition ikke understűttet pć denne platform"
-#: ../../partition_table.pm_.c:688
+#: ../../partition_table.pm_.c:684
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
@@ -7430,21 +7592,21 @@ msgstr ""
"Den eneste lűsning er at flytte dine primære partitioner, sćledes at\n"
"\"hullet\" bliver placeret ved siden af de udvidede partitioner."
-#: ../../partition_table.pm_.c:778
+#: ../../partition_table.pm_.c:774
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "Genskabning fra fil %s mislykkedes: %s"
-#: ../../partition_table.pm_.c:780
+#: ../../partition_table.pm_.c:776
msgid "Bad backup file"
msgstr "Fejl i sikkerhedskopien"
-#: ../../partition_table.pm_.c:802
+#: ../../partition_table.pm_.c:798
#, c-format
msgid "Error writing to file %s"
msgstr "Fejl ved skrivning til fil %s"
-#: ../../partition_table/raw.pm_.c:187
+#: ../../partition_table/raw.pm_.c:189
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
@@ -7490,150 +7652,154 @@ msgstr "LPD - Line Printer Dæmon"
msgid "PDQ - Print, Don't Queue"
msgstr "PDQ - Print, Don't Queue"
-#: ../../printer.pm_.c:35 ../../printer.pm_.c:854
+#: ../../printer.pm_.c:34 ../../printer.pm_.c:1125
msgid "CUPS"
msgstr "CUPS"
-#: ../../printer.pm_.c:36
+#: ../../printer.pm_.c:35
msgid "LPRng"
msgstr "LPRng"
-#: ../../printer.pm_.c:37
+#: ../../printer.pm_.c:36
msgid "LPD"
msgstr "LPD"
-#: ../../printer.pm_.c:38
+#: ../../printer.pm_.c:37
msgid "PDQ"
msgstr "PDQ"
-#: ../../printer.pm_.c:50
+#: ../../printer.pm_.c:49
msgid "Local printer"
msgstr "Lokal printer"
-#: ../../printer.pm_.c:51
+#: ../../printer.pm_.c:50
msgid "Remote printer"
msgstr "Ekstern printer"
-#: ../../printer.pm_.c:52
+#: ../../printer.pm_.c:51
msgid "Printer on remote CUPS server"
msgstr "Printer pć ekstern CUPS server"
-#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:776
+#: ../../printer.pm_.c:52 ../../printerdrake.pm_.c:883
msgid "Printer on remote lpd server"
msgstr "Printer pć ekstern lpd server"
-#: ../../printer.pm_.c:54
+#: ../../printer.pm_.c:53
msgid "Network printer (TCP/Socket)"
msgstr "Netværksprinter (TCP/sokkel)"
-#: ../../printer.pm_.c:55
+#: ../../printer.pm_.c:54
msgid "Printer on SMB/Windows 95/98/NT server"
msgstr "Printer pć SMB/Windows 95/98/NT server"
-#: ../../printer.pm_.c:56
+#: ../../printer.pm_.c:55
msgid "Printer on NetWare server"
msgstr "Printer pć en NetWare server"
-#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:780
+#: ../../printer.pm_.c:56 ../../printerdrake.pm_.c:887
msgid "Enter a printer device URI"
msgstr "Indtast en printerenheds-URI"
-#: ../../printer.pm_.c:58
+#: ../../printer.pm_.c:57
msgid "Pipe job into a command"
msgstr "kanalisér opgave ind i kommando"
-#: ../../printer.pm_.c:487 ../../printer.pm_.c:678 ../../printer.pm_.c:1000
-#: ../../printerdrake.pm_.c:2070 ../../printerdrake.pm_.c:3189
+#: ../../printer.pm_.c:324 ../../printer.pm_.c:366 ../../printer.pm_.c:533
+msgid "Unknown Model"
+msgstr "Ukendt model"
+
+#: ../../printer.pm_.c:735 ../../printer.pm_.c:926 ../../printer.pm_.c:1318
+#: ../../printerdrake.pm_.c:2260 ../../printerdrake.pm_.c:3414
msgid "Unknown model"
msgstr "Ukendt model"
-#: ../../printer.pm_.c:515
+#: ../../printer.pm_.c:763
msgid "Local Printers"
msgstr "Lokale printere"
-#: ../../printer.pm_.c:517 ../../printer.pm_.c:855
+#: ../../printer.pm_.c:765 ../../printer.pm_.c:1126
msgid "Remote Printers"
msgstr "Eksterne printere"
-#: ../../printer.pm_.c:524 ../../printerdrake.pm_.c:301
+#: ../../printer.pm_.c:772 ../../printerdrake.pm_.c:404
#, c-format
msgid " on parallel port \\/*%s"
msgstr " pć parallelport \\/*%s"
-#: ../../printer.pm_.c:527 ../../printerdrake.pm_.c:303
+#: ../../printer.pm_.c:775 ../../printerdrake.pm_.c:406
#, c-format
msgid ", USB printer \\/*%s"
msgstr ", USB printer \\/*%s"
-#: ../../printer.pm_.c:532
+#: ../../printer.pm_.c:780
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ", multi-funktions-enhed pć parallel port \\/*%s"
-#: ../../printer.pm_.c:535
+#: ../../printer.pm_.c:783
msgid ", multi-function device on USB"
msgstr ", multi-funktions-enhed pć USB"
-#: ../../printer.pm_.c:537
+#: ../../printer.pm_.c:785
msgid ", multi-function device on HP JetDirect"
msgstr ", multi-funktions-enhed pć HP JetDirect"
-#: ../../printer.pm_.c:539
+#: ../../printer.pm_.c:787
msgid ", multi-function device"
msgstr ", multi-funktions-enhed"
-#: ../../printer.pm_.c:542
+#: ../../printer.pm_.c:790
#, c-format
msgid ", printing to %s"
msgstr ", skriver til %s"
-#: ../../printer.pm_.c:544
+#: ../../printer.pm_.c:792
#, c-format
msgid " on LPD server \"%s\", printer \"%s\""
msgstr " pć LPD-server \"%s\", printer \"%s\""
-#: ../../printer.pm_.c:546
+#: ../../printer.pm_.c:794
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ", TCP/IP vært \"%s\", port %s"
-#: ../../printer.pm_.c:550
+#: ../../printer.pm_.c:798
#, c-format
msgid " on SMB/Windows server \"%s\", share \"%s\""
msgstr " pć Windows-server \"%s\", deling \"%s\""
-#: ../../printer.pm_.c:554
+#: ../../printer.pm_.c:802
#, c-format
msgid " on Novell server \"%s\", printer \"%s\""
msgstr " pć Novell-server \"%s\", printer \"%s\""
-#: ../../printer.pm_.c:556
+#: ../../printer.pm_.c:804
#, c-format
msgid ", using command %s"
msgstr ", med kommando %s"
-#: ../../printer.pm_.c:675 ../../printerdrake.pm_.c:1540
+#: ../../printer.pm_.c:923 ../../printerdrake.pm_.c:1656
msgid "Raw printer (No driver)"
msgstr "Rć printer (ingen driver)"
-#: ../../printer.pm_.c:824
+#: ../../printer.pm_.c:1095
#, c-format
msgid "(on %s)"
msgstr "(pć %s)"
-#: ../../printer.pm_.c:826
+#: ../../printer.pm_.c:1097
msgid "(on this machine)"
msgstr "(pć denne maskine)"
-#: ../../printer.pm_.c:851
+#: ../../printer.pm_.c:1122
#, c-format
msgid "On CUPS server \"%s\""
msgstr "Pć CUPS-server '%s'"
-#: ../../printer.pm_.c:857 ../../printerdrake.pm_.c:2851
-#: ../../printerdrake.pm_.c:2862 ../../printerdrake.pm_.c:3078
-#: ../../printerdrake.pm_.c:3130 ../../printerdrake.pm_.c:3156
-#: ../../printerdrake.pm_.c:3326 ../../printerdrake.pm_.c:3328
+#: ../../printer.pm_.c:1128 ../../printerdrake.pm_.c:3071
+#: ../../printerdrake.pm_.c:3082 ../../printerdrake.pm_.c:3303
+#: ../../printerdrake.pm_.c:3355 ../../printerdrake.pm_.c:3381
+#: ../../printerdrake.pm_.c:3556 ../../printerdrake.pm_.c:3558
msgid " (Default)"
msgstr " (Forvalgt)"
@@ -7660,11 +7826,11 @@ msgid "Printer auto-detection (Local, TCP/Socket, and SMB printers)"
msgstr ""
"Automatisk identifikation af printere (Lokal, TCP/Socket og SMB-skrivere)"
-#: ../../printerdrake.pm_.c:84 ../../printerdrake.pm_.c:2914
+#: ../../printerdrake.pm_.c:84 ../../printerdrake.pm_.c:3135
msgid "CUPS configuration"
msgstr "CUPS-Konfiguration"
-#: ../../printerdrake.pm_.c:85 ../../printerdrake.pm_.c:2915
+#: ../../printerdrake.pm_.c:85 ../../printerdrake.pm_.c:3136
msgid "Specify CUPS server"
msgstr "Angiv CUPS server"
@@ -7706,7 +7872,7 @@ msgstr ""
msgid "The IP address should look like 192.168.1.20"
msgstr "IP-adressen bűr se ud som 192.168.1.20"
-#: ../../printerdrake.pm_.c:95 ../../printerdrake.pm_.c:987
+#: ../../printerdrake.pm_.c:95 ../../printerdrake.pm_.c:1094
msgid "The port number should be an integer!"
msgstr "Port-nummeret bűr være et heltal!"
@@ -7714,7 +7880,7 @@ msgstr "Port-nummeret bűr være et heltal!"
msgid "CUPS server IP"
msgstr "CUPS-serverens IP"
-#: ../../printerdrake.pm_.c:103 ../../printerdrake.pm_.c:1007
+#: ../../printerdrake.pm_.c:103 ../../printerdrake.pm_.c:1114
msgid "Port"
msgstr "Port"
@@ -7722,12 +7888,130 @@ msgstr "Port"
msgid "Automatic CUPS configuration"
msgstr "Automatisk CUPS-konfiguration"
-#: ../../printerdrake.pm_.c:183 ../../printerdrake.pm_.c:192
-#: ../../printerdrake.pm_.c:2897 ../../printerdrake.pm_.c:3017
+#: ../../printerdrake.pm_.c:177 ../../printerdrake.pm_.c:247
+#: ../../printerdrake.pm_.c:1529 ../../printerdrake.pm_.c:1533
+#: ../../printerdrake.pm_.c:1651 ../../printerdrake.pm_.c:2203
+#: ../../printerdrake.pm_.c:2356 ../../printerdrake.pm_.c:2415
+#: ../../printerdrake.pm_.c:2488 ../../printerdrake.pm_.c:2509
+#: ../../printerdrake.pm_.c:2699 ../../printerdrake.pm_.c:2740
+#: ../../printerdrake.pm_.c:2745 ../../printerdrake.pm_.c:2779
+#: ../../printerdrake.pm_.c:2784 ../../printerdrake.pm_.c:2821
+#: ../../printerdrake.pm_.c:2874 ../../printerdrake.pm_.c:2894
+#: ../../printerdrake.pm_.c:2908 ../../printerdrake.pm_.c:2942
+#: ../../printerdrake.pm_.c:2988 ../../printerdrake.pm_.c:3006
+#: ../../printerdrake.pm_.c:3095 ../../printerdrake.pm_.c:3169
+#: ../../printerdrake.pm_.c:3471 ../../printerdrake.pm_.c:3526
+#: ../../printerdrake.pm_.c:3579 ../../standalone/printerdrake_.c:57
+msgid "Printerdrake"
+msgstr "Printerdrake"
+
+#: ../../printerdrake.pm_.c:178
+#, fuzzy
+msgid "Checking your system..."
+msgstr "Genstarter printsystemet ..."
+
+#: ../../printerdrake.pm_.c:186
+msgid ""
+"There are no printers found which are directly connected to your machine"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:198
+#, fuzzy
+msgid ""
+"The following printers\n"
+"\n"
+msgstr "De fűlgende pakker vil blive afinstalleret"
+
+#: ../../printerdrake.pm_.c:199
+#, fuzzy
+msgid ""
+"The following printer\n"
+"\n"
+msgstr "De fűlgende pakker vil blive afinstalleret"
+
+#: ../../printerdrake.pm_.c:201
+msgid ""
+"\n"
+"and one unknown printer are "
+msgstr ""
+
+#: ../../printerdrake.pm_.c:203
+#, c-format
+msgid ""
+"\n"
+"and %d unknown printers are "
+msgstr ""
+
+#: ../../printerdrake.pm_.c:207
+msgid ""
+"\n"
+"are "
+msgstr ""
+
+#: ../../printerdrake.pm_.c:208
+msgid ""
+"\n"
+"is "
+msgstr ""
+
+#: ../../printerdrake.pm_.c:210
+#, fuzzy
+msgid "directly connected to your system"
+msgstr "Kopiér skrifttyper pć dit system"
+
+#: ../../printerdrake.pm_.c:213
+msgid ""
+"\n"
+"There is one unknown printer directly connected to your system"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:215
+#, c-format
+msgid ""
+"\n"
+"There are %d unknown printers directly connected to your system"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:221
+#, fuzzy
+msgid " (Make sure that all your printers are connected and turned on).\n"
+msgstr "Angiv hvilken port din printer er forbundet til."
+
+#: ../../printerdrake.pm_.c:235
+msgid ""
+"Do you want to enable printing on the printers mentioned above or on "
+"printers in the local network?\n"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:236
+#, fuzzy
+msgid "Do you want to enable printing on printers in the local network?\n"
+msgstr ""
+"Űnsker du fremover at bruge printeren \"%s\"\n"
+"som standard?"
+
+#: ../../printerdrake.pm_.c:238
+#, fuzzy
+msgid "Do you want to enable printing on the printers mentioned above?\n"
+msgstr "Űnsker du at starte din forbindelse ved opstart?"
+
+#: ../../printerdrake.pm_.c:239
+msgid "Are you sure that you want to set up printing on this machine?\n"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:240
+#, c-format
+msgid ""
+"NOTE: Depending on the printer model and the printing system up to %d MB of "
+"additional software will be installed."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:269 ../../printerdrake.pm_.c:278
+#: ../../printerdrake.pm_.c:3117 ../../printerdrake.pm_.c:3242
msgid "Add a new printer"
msgstr "Tilfűj en ny printer"
-#: ../../printerdrake.pm_.c:184
+#: ../../printerdrake.pm_.c:270
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7749,7 +8033,8 @@ msgstr ""
"giver dig adgang til alle tilgængelige printerdrivere, drivermuligheder og "
"opkoblingstyper for printere."
-#: ../../printerdrake.pm_.c:193
+#: ../../printerdrake.pm_.c:280
+#, fuzzy
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7758,7 +8043,7 @@ msgid ""
"computer, connected directly to the network or to a remote Windows machine.\n"
"\n"
"If you have printer(s) connected to this machine, Please plug it/them in on "
-"this computer and turn it/them on so that they can be auto-detected. Also "
+"this computer and turn it/them on so that it/they can be auto-detected. Also "
"your network printer(s) and you Windows machines must be connected and "
"turned on.\n"
"\n"
@@ -7788,7 +8073,40 @@ msgstr ""
"Klik pć \"Næste\" nćr du er klar og pć \"Afbryd\" hvis du ikke vil "
"installere printere nu."
-#: ../../printerdrake.pm_.c:202
+#: ../../printerdrake.pm_.c:289 ../../printerdrake.pm_.c:306
+#, fuzzy
+msgid ""
+"\n"
+"Welcome to the Printer Setup Wizard\n"
+"\n"
+"This wizard will help you to install your printer(s) connected to this "
+"computer.\n"
+"\n"
+"If you have printer(s) connected to this machine, Please plug it/them in on "
+"this computer and turn it/them on so that it/they can be auto-detected.\n"
+"\n"
+" Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
+"want to set up your printer(s) now."
+msgstr ""
+"\n"
+"Velkommen til guiden for printerinstallation\n"
+"\n"
+"Denne guide lader dig installere printere sluttet til denne maskine eller "
+"direkte til netværket.\n"
+"\n"
+"Hvis du har printere sluttet til denne maskine, sć sæt dem pć nu sć de kan "
+"identificeres automatisk. Netværksprinterne og Windows-maskinerne skal ogsć "
+"være tilsluttede og tændte.\n"
+"\n"
+"Bemærk at det tager længere tid at identificere netværksprintere end at "
+"identificere lokalt tilsluttede printere. Hvis du űnsker at det skal gć "
+"hurtigere at identificere printere kan du deaktivere identifikation af "
+"netværksprintere.\n"
+"Klik pć \"Næste\" nćr du er klar og pć \"Afbryd\" hvis du ikke vil "
+"installere printere nu."
+
+#: ../../printerdrake.pm_.c:297
+#, fuzzy
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7797,7 +8115,7 @@ msgid ""
"computer or connected directly to the network.\n"
"\n"
"If you have printer(s) connected to this machine, Please plug it/them in on "
-"this computer and turn it/them on so that they can be auto-detected. Also "
+"this computer and turn it/them on so that it/they can be auto-detected. Also "
"your network printer(s) must be connected and turned on.\n"
"\n"
"Note that auto-detecting printers on the network takes longer than the auto-"
@@ -7821,28 +8139,28 @@ msgstr ""
"identificere lokalt tilsluttede printere. Hvis du űnsker at det skal gć "
"hurtigere at identificere printere kan du deaktivere identifikation af "
"netværksprintere.\n"
-" Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
-"want to set up your printer(s) now."
+"Klik pć \"Næste\" nćr du er klar og pć \"Afbryd\" hvis du ikke vil "
+"installere printere nu."
-#: ../../printerdrake.pm_.c:213
+#: ../../printerdrake.pm_.c:315
msgid "Auto-detect printers connected to this machine"
msgstr "Auto-opdagelse af printere tilsluttet denne maskine"
-#: ../../printerdrake.pm_.c:215
+#: ../../printerdrake.pm_.c:318
msgid "Auto-detect printers connected directly to the local network"
msgstr "Auto-opdagelse af printere tilsluttet direkte til det lokale netværk"
-#: ../../printerdrake.pm_.c:218
+#: ../../printerdrake.pm_.c:321
msgid "Auto-detect printers connected to machines running Microsoft Windows"
msgstr ""
"Auto-opdagelse af printere tilsluttet maskiner der kűre Microsoft Windows"
-#: ../../printerdrake.pm_.c:245 ../../printerdrake.pm_.c:459
-#: ../../printerdrake.pm_.c:484
+#: ../../printerdrake.pm_.c:348 ../../printerdrake.pm_.c:562
+#: ../../printerdrake.pm_.c:587
msgid "Local Printer"
msgstr "Lokal printer"
-#: ../../printerdrake.pm_.c:246
+#: ../../printerdrake.pm_.c:349
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -7865,49 +8183,49 @@ msgstr ""
"űnsker at ændre pć standard-indstillingerne (papirbakke, printkvalitet ...), "
"sć vælg 'Printer' i 'Udstyr'-afsnittet i Mandrake Kontrolcentret."
-#: ../../printerdrake.pm_.c:283 ../../printerdrake.pm_.c:474
-#: ../../printerdrake.pm_.c:683 ../../printerdrake.pm_.c:923
+#: ../../printerdrake.pm_.c:386 ../../printerdrake.pm_.c:577
+#: ../../printerdrake.pm_.c:790 ../../printerdrake.pm_.c:1030
msgid "Printer auto-detection"
msgstr "Auto-opdagelse af printere"
-#: ../../printerdrake.pm_.c:305
+#: ../../printerdrake.pm_.c:408
#, c-format
msgid ", network printer \"%s\", port %s"
msgstr ", netværksprinter \"%s\", port %s"
-#: ../../printerdrake.pm_.c:307
+#: ../../printerdrake.pm_.c:410
#, c-format
msgid ", printer \"%s\" on SMB/Windows server \"%s\""
msgstr ", printer \"%s\" pć SMB/Windows-server \"%s\""
-#: ../../printerdrake.pm_.c:313
+#: ../../printerdrake.pm_.c:416
#, c-format
msgid "Detected %s"
msgstr "Fandt %s"
-#: ../../printerdrake.pm_.c:317 ../../printerdrake.pm_.c:348
-#: ../../printerdrake.pm_.c:367
+#: ../../printerdrake.pm_.c:420 ../../printerdrake.pm_.c:451
+#: ../../printerdrake.pm_.c:470
#, c-format
msgid "Printer on parallel port \\/*%s"
msgstr "Printer pć parallel port \\/*%s"
-#: ../../printerdrake.pm_.c:319 ../../printerdrake.pm_.c:350
-#: ../../printerdrake.pm_.c:372
+#: ../../printerdrake.pm_.c:422 ../../printerdrake.pm_.c:453
+#: ../../printerdrake.pm_.c:475
#, c-format
msgid "USB printer \\/*%s"
msgstr "USB-printer \\/*%s"
-#: ../../printerdrake.pm_.c:321
+#: ../../printerdrake.pm_.c:424
#, c-format
msgid "Network printer \"%s\", port %s"
msgstr "Netværksprinter '%s', port %s"
-#: ../../printerdrake.pm_.c:323
+#: ../../printerdrake.pm_.c:426
#, c-format
msgid "Printer \"%s\" on SMB/Windows server \"%s\""
msgstr "Printer '%s' pć SMB/Windows server '%s'"
-#: ../../printerdrake.pm_.c:460
+#: ../../printerdrake.pm_.c:563
msgid ""
"No local printer found! To manually install a printer enter a device name/"
"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
@@ -7919,19 +8237,19 @@ msgstr ""
"dev/lp1 ..., svarende til LPT1:, LPT2: ..., fűrste USB-printer: /dev/usb/"
"lp0, 2. USB-printer: /dev/usb/lp1 ...)."
-#: ../../printerdrake.pm_.c:464
+#: ../../printerdrake.pm_.c:567
msgid "You must enter a device or file name!"
msgstr "Du skal indtaste en enhed eller et filnavn!"
-#: ../../printerdrake.pm_.c:475
+#: ../../printerdrake.pm_.c:578
msgid "No printer found!"
msgstr "Ingen printer fundet!"
-#: ../../printerdrake.pm_.c:485
+#: ../../printerdrake.pm_.c:588
msgid "Available printers"
msgstr "Tilgængelige printer"
-#: ../../printerdrake.pm_.c:489
+#: ../../printerdrake.pm_.c:592
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
@@ -7939,7 +8257,7 @@ msgstr ""
"Den fűlgende printer blev opdaget automatisk. Hvis det ikke er den du űnsker "
"at opsætte sć indtast et enhedsnavn/filnavn pć inddatalinjen"
-#: ../../printerdrake.pm_.c:490
+#: ../../printerdrake.pm_.c:593
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up or enter a device name/file name in the input line"
@@ -7947,7 +8265,7 @@ msgstr ""
"Her er en liste over alle automatisk opdagede printere. Vælg den printer du "
"űnsker at opsætte eller indtast et enhedsnavn/filnavn pć inddatalinjen"
-#: ../../printerdrake.pm_.c:492
+#: ../../printerdrake.pm_.c:595
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
@@ -7959,7 +8277,7 @@ msgstr ""
"eller hvis du foretrækker en tilpasset printerkonfiguration, sć slć 'Manuel "
"konfiguration' til."
-#: ../../printerdrake.pm_.c:493
+#: ../../printerdrake.pm_.c:596
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
@@ -7972,7 +8290,7 @@ msgstr ""
"foretrækker en tilpasset printerkonfiguration, sć slć 'Manuel konfiguration' "
"til."
-#: ../../printerdrake.pm_.c:495
+#: ../../printerdrake.pm_.c:598
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
@@ -7980,11 +8298,11 @@ msgstr ""
"Angiv hvilken port din printer er forbundet til eller indtast et enhedsnavn/"
"filnavn pć inddatalinjen"
-#: ../../printerdrake.pm_.c:496
+#: ../../printerdrake.pm_.c:599
msgid "Please choose the port where your printer is connected to."
msgstr "Angiv hvilken port din printer er forbundet til."
-#: ../../printerdrake.pm_.c:498
+#: ../../printerdrake.pm_.c:601
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
@@ -7992,19 +8310,19 @@ msgstr ""
"(parallelporte: /dev/lp0, /dev/lp1 ..., svarende til LPT1:, LPT2: ..., "
"fűrste USB-printer: /dev/usb/lp0, 2. USB-printer: /dev/usb/lp1 ...)."
-#: ../../printerdrake.pm_.c:503
+#: ../../printerdrake.pm_.c:606
msgid "You must choose/enter a printer/device!"
msgstr "Du skal vælge eller indtaste en printer/enhed!"
-#: ../../printerdrake.pm_.c:523
+#: ../../printerdrake.pm_.c:626
msgid "Manual configuration"
msgstr "Manuel konfiguration"
-#: ../../printerdrake.pm_.c:577
+#: ../../printerdrake.pm_.c:680
msgid "Remote lpd Printer Options"
msgstr "Parametre til ekstern lpd"
-#: ../../printerdrake.pm_.c:578
+#: ../../printerdrake.pm_.c:681
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
"server and the printer name on that server."
@@ -8012,46 +8330,46 @@ msgstr ""
"For at bruge en ekstern printer, skal du opgive værtsnavnet\n"
"for printerserveren og navnet pć printeren pć denne server."
-#: ../../printerdrake.pm_.c:579
+#: ../../printerdrake.pm_.c:682
msgid "Remote host name"
msgstr "Eksternt værtsnavn"
-#: ../../printerdrake.pm_.c:580
+#: ../../printerdrake.pm_.c:683
msgid "Remote printer name"
msgstr "Eksternt printernavn"
-#: ../../printerdrake.pm_.c:583
+#: ../../printerdrake.pm_.c:686
msgid "Remote host name missing!"
msgstr "Eksternt værtsnavn mangler"
-#: ../../printerdrake.pm_.c:587
+#: ../../printerdrake.pm_.c:690
msgid "Remote printer name missing!"
msgstr "Det eksterne værtsnavn mangler!"
-#: ../../printerdrake.pm_.c:609 ../../printerdrake.pm_.c:1119
+#: ../../printerdrake.pm_.c:712 ../../printerdrake.pm_.c:1225
#, c-format
msgid "Detected model: %s %s"
msgstr "Fandt model: %s %s"
-#: ../../printerdrake.pm_.c:683 ../../printerdrake.pm_.c:923
+#: ../../printerdrake.pm_.c:790 ../../printerdrake.pm_.c:1030
msgid "Scanning network..."
msgstr "Skanner netværk ..."
-#: ../../printerdrake.pm_.c:692 ../../printerdrake.pm_.c:713
+#: ../../printerdrake.pm_.c:799 ../../printerdrake.pm_.c:820
#, c-format
msgid ", printer \"%s\" on server \"%s\""
msgstr ", printer \"%s\" pć server \"%s\""
-#: ../../printerdrake.pm_.c:695 ../../printerdrake.pm_.c:716
+#: ../../printerdrake.pm_.c:802 ../../printerdrake.pm_.c:823
#, c-format
msgid "Printer \"%s\" on server \"%s\""
msgstr "Printer \"%s\" pć server \"%s\""
-#: ../../printerdrake.pm_.c:736
+#: ../../printerdrake.pm_.c:843
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "SMB (Windows 9x/NT)-printer indstillinger"
-#: ../../printerdrake.pm_.c:737
+#: ../../printerdrake.pm_.c:844
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
"may be different from its TCP/IP hostname!) and possibly the IP address of "
@@ -8063,7 +8381,7 @@ msgstr ""
"IP-adressen pć printerserveren, sć vel som delenavnet for printeren du vil "
"bruge samt nűdvendig information om brugernavn, adgangskode og arbejdsgruppe."
-#: ../../printerdrake.pm_.c:738
+#: ../../printerdrake.pm_.c:845
msgid ""
" If the desired printer was auto-detected, simply choose it from the list "
"and then add user name, password, and/or workgroup if needed."
@@ -8071,39 +8389,39 @@ msgstr ""
" Hvis den űnskede printer blev fundet, sć vælg den fra listen og tilfűj "
"dernæst brugernavn, adgangskode og/eller arbejdsgruppe om nűdvendigt."
-#: ../../printerdrake.pm_.c:739
+#: ../../printerdrake.pm_.c:846
msgid "SMB server host"
msgstr "SMB-servervært"
-#: ../../printerdrake.pm_.c:740
+#: ../../printerdrake.pm_.c:847
msgid "SMB server IP"
msgstr "SMB-serverens IP"
-#: ../../printerdrake.pm_.c:741
+#: ../../printerdrake.pm_.c:848
msgid "Share name"
msgstr "Dele-navn"
-#: ../../printerdrake.pm_.c:744
+#: ../../printerdrake.pm_.c:851
msgid "Workgroup"
msgstr "Arbejdsgruppe"
-#: ../../printerdrake.pm_.c:746
+#: ../../printerdrake.pm_.c:853
msgid "Auto-detected"
msgstr "Auto-detekteret"
-#: ../../printerdrake.pm_.c:757
+#: ../../printerdrake.pm_.c:864
msgid "Either the server name or the server's IP must be given!"
msgstr "Enten servernavnet eller serverens IP skal angives!"
-#: ../../printerdrake.pm_.c:761
+#: ../../printerdrake.pm_.c:868
msgid "Samba share name missing!"
msgstr "Samba-delenavn mangler!"
-#: ../../printerdrake.pm_.c:767
+#: ../../printerdrake.pm_.c:874
msgid "SECURITY WARNING!"
msgstr "SIKKERHEDSADVARSEL!"
-#: ../../printerdrake.pm_.c:768
+#: ../../printerdrake.pm_.c:875
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -8146,7 +8464,7 @@ msgstr ""
"Opsæt dernæst udskrift fra denne maskine med '%s'-opkoblingstypen i "
"Printerdrake.\n"
-#: ../../printerdrake.pm_.c:778
+#: ../../printerdrake.pm_.c:885
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -8158,7 +8476,7 @@ msgstr ""
"protokollen, og opsæt udskrift fra denne maskine med '%s'-opkoblingstypen i "
"Printerdrake.\n"
-#: ../../printerdrake.pm_.c:781
+#: ../../printerdrake.pm_.c:888
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
@@ -8170,11 +8488,11 @@ msgstr ""
"\n"
"Űnsker du virkelig at fortsætte med at opsætte din printer som du gűr nu?"
-#: ../../printerdrake.pm_.c:853
+#: ../../printerdrake.pm_.c:960
msgid "NetWare Printer Options"
msgstr "NetWare printer-parametre"
-#: ../../printerdrake.pm_.c:854
+#: ../../printerdrake.pm_.c:961
msgid ""
"To print on a NetWare printer, you need to provide the NetWare print server "
"name (Note! it may be different from its TCP/IP hostname!) as well as the "
@@ -8186,37 +8504,37 @@ msgstr ""
"navnet!) sćvel som kűnavnet for den printer du vil benytte samt om "
"nűdvendigt et brugernavn og en adgangskode."
-#: ../../printerdrake.pm_.c:855
+#: ../../printerdrake.pm_.c:962
msgid "Printer Server"
msgstr "Printer-server"
-#: ../../printerdrake.pm_.c:856
+#: ../../printerdrake.pm_.c:963
msgid "Print Queue Name"
msgstr "Printerkű-navn"
-#: ../../printerdrake.pm_.c:861
+#: ../../printerdrake.pm_.c:968
msgid "NCP server name missing!"
msgstr "NCP-servernavn mangler!"
-#: ../../printerdrake.pm_.c:865
+#: ../../printerdrake.pm_.c:972
msgid "NCP queue name missing!"
msgstr "NCP-kűnavn mangler!"
-#: ../../printerdrake.pm_.c:932 ../../printerdrake.pm_.c:952
+#: ../../printerdrake.pm_.c:1039 ../../printerdrake.pm_.c:1059
#, c-format
msgid ", host \"%s\", port %s"
msgstr ", vært \"%s\", port %s"
-#: ../../printerdrake.pm_.c:935 ../../printerdrake.pm_.c:955
+#: ../../printerdrake.pm_.c:1042 ../../printerdrake.pm_.c:1062
#, c-format
msgid "Host \"%s\", port %s"
msgstr "Vært \"%s\", port %s"
-#: ../../printerdrake.pm_.c:975
+#: ../../printerdrake.pm_.c:1082
msgid "TCP/Socket Printer Options"
msgstr "TCP/Sokkel-printer-parametre"
-#: ../../printerdrake.pm_.c:977
+#: ../../printerdrake.pm_.c:1084
msgid ""
"Choose one of the auto-detected printers from the list or enter the hostname "
"or IP and the optional port number (default is 9100) into the input fields."
@@ -8224,7 +8542,7 @@ msgstr ""
"Vælg en af de fundne printere fra listen eller angiv værtsnavnet eller IP-"
"adressen og eventuelt portnummer (standard er 9100) i indtastningsfelterne."
-#: ../../printerdrake.pm_.c:978
+#: ../../printerdrake.pm_.c:1085
msgid ""
"To print to a TCP or socket printer, you need to provide the host name or IP "
"of the printer and optionally the port number (default is 9100). On HP "
@@ -8236,19 +8554,19 @@ msgstr ""
"Pć HP JetDirect-servere er portnummeret normalt 9100, pć andre servere "
"varierer det. Tjek manualen for dit udstyr."
-#: ../../printerdrake.pm_.c:983
+#: ../../printerdrake.pm_.c:1090
msgid "Printer host name or IP missing!"
msgstr "Værtsnavn eller IP-adresse pć printer mangler!"
-#: ../../printerdrake.pm_.c:1005
+#: ../../printerdrake.pm_.c:1112
msgid "Printer host name or IP"
msgstr "Værtsnavn eller IP-adresse pć printer mangler!"
-#: ../../printerdrake.pm_.c:1054 ../../printerdrake.pm_.c:1056
+#: ../../printerdrake.pm_.c:1160 ../../printerdrake.pm_.c:1162
msgid "Printer Device URI"
msgstr "Printer-enheds URI"
-#: ../../printerdrake.pm_.c:1055
+#: ../../printerdrake.pm_.c:1161
msgid ""
"You can specify directly the URI to access the printer. The URI must fulfill "
"either the CUPS or the Foomatic specifications. Note that not all URI types "
@@ -8258,11 +8576,11 @@ msgstr ""
"CUPS- eller Foomatic-standarden. Bemærk at ikke alle typer URIer "
"understűttes af alle kű-behandlere."
-#: ../../printerdrake.pm_.c:1070
+#: ../../printerdrake.pm_.c:1176
msgid "A valid URI must be entered!"
msgstr "En korrekt URI skal opgives!"
-#: ../../printerdrake.pm_.c:1402
+#: ../../printerdrake.pm_.c:1515
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
"Location fields do not need to be filled in. They are comments for the users."
@@ -8271,27 +8589,27 @@ msgstr ""
"Beskrivelsen og lokaliseringsfelterne behűver ikke \n"
"udfyldes. De er kommentarer til brugerne."
-#: ../../printerdrake.pm_.c:1403
+#: ../../printerdrake.pm_.c:1516
msgid "Name of printer"
msgstr "Navn pć printer"
-#: ../../printerdrake.pm_.c:1405
+#: ../../printerdrake.pm_.c:1518
msgid "Location"
msgstr "Placering"
-#: ../../printerdrake.pm_.c:1416 ../../printerdrake.pm_.c:1536
+#: ../../printerdrake.pm_.c:1530 ../../printerdrake.pm_.c:1652
msgid "Reading printer database..."
msgstr "Læser database over printere ..."
-#: ../../printerdrake.pm_.c:1419
+#: ../../printerdrake.pm_.c:1534
msgid "Preparing printer database..."
msgstr "Forbereder printerdatabase: ..."
-#: ../../printerdrake.pm_.c:1516
+#: ../../printerdrake.pm_.c:1631
msgid "Your printer model"
msgstr "Din printermodel"
-#: ../../printerdrake.pm_.c:1517
+#: ../../printerdrake.pm_.c:1632
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -8316,24 +8634,24 @@ msgstr ""
"\n"
"%s"
-#: ../../printerdrake.pm_.c:1522 ../../printerdrake.pm_.c:1525
+#: ../../printerdrake.pm_.c:1637 ../../printerdrake.pm_.c:1640
msgid "The model is correct"
msgstr "Modellen er korrekt"
-#: ../../printerdrake.pm_.c:1523 ../../printerdrake.pm_.c:1524
-#: ../../printerdrake.pm_.c:1527
+#: ../../printerdrake.pm_.c:1638 ../../printerdrake.pm_.c:1639
+#: ../../printerdrake.pm_.c:1642
msgid "Select model manually"
msgstr "Vælg model manuelt"
-#: ../../printerdrake.pm_.c:1543
+#: ../../printerdrake.pm_.c:1659
msgid "Printer model selection"
msgstr "Valg af printermodel"
-#: ../../printerdrake.pm_.c:1544
+#: ../../printerdrake.pm_.c:1660
msgid "Which printer model do you have?"
msgstr "Hvilken printermodel har du?"
-#: ../../printerdrake.pm_.c:1545
+#: ../../printerdrake.pm_.c:1661
msgid ""
"\n"
"\n"
@@ -8349,7 +8667,7 @@ msgstr ""
"nćr markűren stćr pć en forkert model, eller\n"
"pć 'Rć printer'."
-#: ../../printerdrake.pm_.c:1548
+#: ../../printerdrake.pm_.c:1664
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
@@ -8357,11 +8675,11 @@ msgstr ""
"Hvis din printer ikke er listet, sć vælg en kompatibel (se printermanual) "
"eller en lignende printer."
-#: ../../printerdrake.pm_.c:1624
+#: ../../printerdrake.pm_.c:1741
msgid "OKI winprinter configuration"
msgstr "OKI konfiguration af winprinter"
-#: ../../printerdrake.pm_.c:1625
+#: ../../printerdrake.pm_.c:1742
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -8377,11 +8695,11 @@ msgstr ""
"parallelle port fűr du udskriver en prűveside. Ellers vil printeren ikke "
"virke. Din opsætning af forbindelsestype vil blive ignoreret af driveren."
-#: ../../printerdrake.pm_.c:1668 ../../printerdrake.pm_.c:1695
+#: ../../printerdrake.pm_.c:1785 ../../printerdrake.pm_.c:1812
msgid "Lexmark inkjet configuration"
msgstr "Lexmark inkjet konfiguration"
-#: ../../printerdrake.pm_.c:1669
+#: ../../printerdrake.pm_.c:1786
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
"no printers on remote machines or print server boxes. Please connect your "
@@ -8393,17 +8711,17 @@ msgstr ""
"din printer til en lokal port eller konfigurér den pć den maskine, den er "
"forbundet til."
-#: ../../printerdrake.pm_.c:1696
+#: ../../printerdrake.pm_.c:1813
+#, fuzzy
msgid ""
"To be able to print with your Lexmark inkjet and this configuration, you "
"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
-"com/). Go to the US site and click on the \"Drivers\" button. Then choose "
-"your model and afterwards \"Linux\" as operating system. The drivers come as "
-"RPM packages or shell scripts with interactive graphical installation. You "
-"do not need to do this configuration by the graphical frontends. Cancel "
-"directly after the license agreement. Then print printhead alignment pages "
-"with \"lexmarkmaintain\" and adjust the head alignment settings with this "
-"program."
+"com/). Click on the \"Drivers\" link. Then choose your model and afterwards "
+"\"Linux\" as operating system. The drivers come as RPM packages or shell "
+"scripts with interactive graphical installation. You do not need to do this "
+"configuration by the graphical frontends. Cancel directly after the license "
+"agreement. Then print printhead alignment pages with \"lexmarkmaintain\" and "
+"adjust the head alignment settings with this program."
msgstr ""
"For at kunne udskrive pć din Lexmark inkjet fra denne konfigurering skal du "
"bruge inkjet printerdriverne leveret af Lexmark (http://www.lexmark.com/). "
@@ -8415,7 +8733,34 @@ msgstr ""
"'lexmarkmaintain', og justér opsætningen af justeringen af hovedet med dette "
"program."
-#: ../../printerdrake.pm_.c:1912
+#: ../../printerdrake.pm_.c:1816
+msgid "GDI Laser Printer using the Zenographics ZJ-Stream Format"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:1817
+msgid ""
+"Your printer belongs to the group of GDI laser printers (winprinters) sold "
+"by different manufacturers which uses the Zenographics ZJ-stream raster "
+"format for the data sent to the printer. The driver for these printers is "
+"still in a very early development stage and so it will perhaps not always "
+"work properly. Especially it is possible that the printer only works when "
+"you choose the A4 paper size.\n"
+"\n"
+"Some of these printers, as the HP LaserJet 1000, for which this driver was "
+"originally created, need their firmware to be uploaded to them after they "
+"are turned on. In the case of the HP LaserJet 1000 you have to search the "
+"printer's Windows driver CD or your Windows partition for the file "
+"\"sihp1000.img\" and upload the file to the printer with one of the "
+"following commands:\n"
+"\n"
+" lpr -o raw sihp1000.img\n"
+" cat sihp1000.img > /dev/usb/lp0\n"
+"\n"
+"The first command can be given by any normal user, the second must be given "
+"as root. After having done so you can print normally.\n"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:2040
msgid ""
"Printer default settings\n"
"\n"
@@ -8431,22 +8776,22 @@ msgstr ""
"enhed, ekstra bakker) er sat rigtigt. Bemærk at en meget god "
"udskriftskvalitet kan gűre udskriften betydeligt langsommere."
-#: ../../printerdrake.pm_.c:1921
+#: ../../printerdrake.pm_.c:2049
#, c-format
msgid "Option %s must be an integer number!"
msgstr "Valg %s skal være et helt tal!"
-#: ../../printerdrake.pm_.c:1925
+#: ../../printerdrake.pm_.c:2053
#, c-format
msgid "Option %s must be a number!"
msgstr "Valg %s skal være et tal!"
-#: ../../printerdrake.pm_.c:1930
+#: ../../printerdrake.pm_.c:2058
#, c-format
msgid "Option %s out of range!"
msgstr "Valg %s er udenfor omrćde!"
-#: ../../printerdrake.pm_.c:1969
+#: ../../printerdrake.pm_.c:2097
#, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
@@ -8455,11 +8800,11 @@ msgstr ""
"Űnsker du fremover at bruge printeren \"%s\"\n"
"som standard?"
-#: ../../printerdrake.pm_.c:1986
+#: ../../printerdrake.pm_.c:2120
msgid "Test pages"
msgstr "Testsider"
-#: ../../printerdrake.pm_.c:1987
+#: ../../printerdrake.pm_.c:2121
msgid ""
"Please select the test pages you want to print.\n"
"Note: the photo test page can take a rather long time to get printed and on "
@@ -8471,39 +8816,39 @@ msgstr ""
"laserprintere med for lidt hukommelse vil den mćske ikke skrives ud i det "
"hele taget. Som regel vil det være nok at udskrive standard-testsiden."
-#: ../../printerdrake.pm_.c:1991
+#: ../../printerdrake.pm_.c:2125
msgid "No test pages"
msgstr "Ingen testsider"
-#: ../../printerdrake.pm_.c:1992
+#: ../../printerdrake.pm_.c:2126
msgid "Print"
msgstr "Udskriv"
-#: ../../printerdrake.pm_.c:1994
+#: ../../printerdrake.pm_.c:2183
msgid "Standard test page"
msgstr "Standard testside"
-#: ../../printerdrake.pm_.c:1997
+#: ../../printerdrake.pm_.c:2186
msgid "Alternative test page (Letter)"
msgstr "Alternativ testside (letter)"
-#: ../../printerdrake.pm_.c:2000
+#: ../../printerdrake.pm_.c:2189
msgid "Alternative test page (A4)"
msgstr "Alternativ testside (A4)"
-#: ../../printerdrake.pm_.c:2002
+#: ../../printerdrake.pm_.c:2191
msgid "Photo test page"
msgstr "Fototestside"
-#: ../../printerdrake.pm_.c:2006
+#: ../../printerdrake.pm_.c:2195
msgid "Do not print any test page"
msgstr "Udskriv ikke nogen testsider"
-#: ../../printerdrake.pm_.c:2014 ../../printerdrake.pm_.c:2166
+#: ../../printerdrake.pm_.c:2204 ../../printerdrake.pm_.c:2357
msgid "Printing test page(s)..."
msgstr "Udskriver testsider..."
-#: ../../printerdrake.pm_.c:2039
+#: ../../printerdrake.pm_.c:2229
#, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -8518,7 +8863,7 @@ msgstr ""
"%s\n"
"\n"
-#: ../../printerdrake.pm_.c:2043
+#: ../../printerdrake.pm_.c:2233
msgid ""
"Test page(s) have been sent to the printer.\n"
"It may take some time before the printer starts.\n"
@@ -8526,15 +8871,15 @@ msgstr ""
"Testsider er sendt til printeren.\n"
"Det kan tage lidt tid fűr printeren starter.\n"
-#: ../../printerdrake.pm_.c:2050
+#: ../../printerdrake.pm_.c:2240
msgid "Did it work properly?"
msgstr "Fungerer det korrekt?"
-#: ../../printerdrake.pm_.c:2072 ../../printerdrake.pm_.c:3191
+#: ../../printerdrake.pm_.c:2262 ../../printerdrake.pm_.c:3416
msgid "Raw printer"
msgstr "Rć printer"
-#: ../../printerdrake.pm_.c:2098
+#: ../../printerdrake.pm_.c:2288
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -8547,7 +8892,7 @@ msgstr ""
"'kprinter <fil>'. De grafiske værktűjer lader dig vælge printeren og ændre "
"indstillingerne pć en nem mćde.\n"
-#: ../../printerdrake.pm_.c:2100
+#: ../../printerdrake.pm_.c:2290
msgid ""
"These commands you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications, but here do not supply the file name "
@@ -8557,8 +8902,8 @@ msgstr ""
"udskriftsdialogerne i mange programmer, men lad være med at angive filnavnet "
"her, fordi filen der skal udskrives leveres af programmet.\n"
-#: ../../printerdrake.pm_.c:2103 ../../printerdrake.pm_.c:2120
-#: ../../printerdrake.pm_.c:2130
+#: ../../printerdrake.pm_.c:2293 ../../printerdrake.pm_.c:2310
+#: ../../printerdrake.pm_.c:2320
#, c-format
msgid ""
"\n"
@@ -8571,7 +8916,7 @@ msgstr ""
"bestemt udskriftsjob. Tilfűj blot de űnskede indstillinger til "
"kommandolinjen, fx '%s <fil>\". "
-#: ../../printerdrake.pm_.c:2106 ../../printerdrake.pm_.c:2146
+#: ../../printerdrake.pm_.c:2296 ../../printerdrake.pm_.c:2336
#, c-format
msgid ""
"To know about the options available for the current printer read either the "
@@ -8583,7 +8928,7 @@ msgstr ""
"%s\n"
"\n"
-#: ../../printerdrake.pm_.c:2110
+#: ../../printerdrake.pm_.c:2300
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
@@ -8591,7 +8936,7 @@ msgstr ""
"Her er en liste over tilgængelige printmuligheder for den aktuelle printer:\n"
"\n"
-#: ../../printerdrake.pm_.c:2115 ../../printerdrake.pm_.c:2125
+#: ../../printerdrake.pm_.c:2305 ../../printerdrake.pm_.c:2315
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
@@ -8600,8 +8945,8 @@ msgstr ""
"For at udskrive en fil fra kommandolinjen (terminalvinduet) brug da "
"kommandoen '%s <fil>'.\n"
-#: ../../printerdrake.pm_.c:2117 ../../printerdrake.pm_.c:2127
-#: ../../printerdrake.pm_.c:2137
+#: ../../printerdrake.pm_.c:2307 ../../printerdrake.pm_.c:2317
+#: ../../printerdrake.pm_.c:2327
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
@@ -8611,7 +8956,7 @@ msgstr ""
"udskriftsdialogerne i mange programmer, men lad være med at angive filnavnet "
"her, fordi filen der skal udskrives leveres af programmet.\n"
-#: ../../printerdrake.pm_.c:2122 ../../printerdrake.pm_.c:2132
+#: ../../printerdrake.pm_.c:2312 ../../printerdrake.pm_.c:2322
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
@@ -8619,7 +8964,7 @@ msgstr ""
"For at fć en liste af tilgængelige muligheder for den aktuelle printer kan "
"du klikke pć knappen 'Liste med printermuligheder'."
-#: ../../printerdrake.pm_.c:2135
+#: ../../printerdrake.pm_.c:2325
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
@@ -8628,7 +8973,7 @@ msgstr ""
"For at udskrive en fil fra kommandolinjen (terminalvinduet) brug da "
"kommandoen '%s <fil>' eller '%s <fil>'.\n"
-#: ../../printerdrake.pm_.c:2139
+#: ../../printerdrake.pm_.c:2329
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -8644,7 +8989,7 @@ msgstr ""
"űjeblikkeligt nćr du klikker pć den. Dette er fx nyttigt hvis papiret "
"krűller sammen.\n"
-#: ../../printerdrake.pm_.c:2143
+#: ../../printerdrake.pm_.c:2333
#, c-format
msgid ""
"\n"
@@ -8657,40 +9002,40 @@ msgstr ""
"for et bestemt udskriftsjob. Tilfűj blot de űnskede indstillinger til "
"kommandolinjen, fx '%s <fil>'.\n"
-#: ../../printerdrake.pm_.c:2153
+#: ../../printerdrake.pm_.c:2343
#, c-format
msgid "Printing/Scanning/Photo Cards on \"%s\""
msgstr "Udskriver/Skanner/Fotokort pć '%s'"
-#: ../../printerdrake.pm_.c:2154
+#: ../../printerdrake.pm_.c:2344
#, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "Udskriver/Skanner pć '%s'"
-#: ../../printerdrake.pm_.c:2156
+#: ../../printerdrake.pm_.c:2346
#, c-format
msgid "Printing/Photo Card Access on \"%s\""
msgstr "Udskriver/Adgang til fotokort pć '%s'"
-#: ../../printerdrake.pm_.c:2157
+#: ../../printerdrake.pm_.c:2347
#, c-format
msgid "Printing on the printer \"%s\""
msgstr "Udskriver pć printeren '%s'"
-#: ../../printerdrake.pm_.c:2160 ../../printerdrake.pm_.c:2163
-#: ../../printerdrake.pm_.c:2164 ../../printerdrake.pm_.c:2165
-#: ../../printerdrake.pm_.c:3175 ../../standalone/drakTermServ_.c:248
-#: ../../standalone/drakbackup_.c:1485 ../../standalone/drakbackup_.c:3530
-#: ../../standalone/drakbug_.c:129 ../../standalone/drakfont_.c:705
+#: ../../printerdrake.pm_.c:2350 ../../printerdrake.pm_.c:2353
+#: ../../printerdrake.pm_.c:2354 ../../printerdrake.pm_.c:2355
+#: ../../printerdrake.pm_.c:3400 ../../standalone/drakTermServ_.c:248
+#: ../../standalone/drakbackup_.c:1560 ../../standalone/drakbackup_.c:4208
+#: ../../standalone/drakbug_.c:130 ../../standalone/drakfont_.c:705
#: ../../standalone/drakfont_.c:1014
msgid "Close"
msgstr "Luk"
-#: ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2353
msgid "Print option list"
msgstr "Liste med printermuligheder"
-#: ../../printerdrake.pm_.c:2182
+#: ../../printerdrake.pm_.c:2373
#, c-format
msgid ""
"Your multi-function device was configured automatically to be able to scan. "
@@ -8712,7 +9057,7 @@ msgstr ""
"\n"
"Brug ikke \"scannerdrake\" pć denne enhed!"
-#: ../../printerdrake.pm_.c:2202
+#: ../../printerdrake.pm_.c:2394
msgid ""
"Your printer was configured automatically to give you access to the photo "
"card drives from your PC. Now you can access your photo cards using the "
@@ -8733,17 +9078,17 @@ msgstr ""
"én HP-printer med fotokortdrev. I 'MtoolsFM' kan du skifte mellem "
"drevbogstaver med feltet i de űverste hűjre hjűrner af fillisterne."
-#: ../../printerdrake.pm_.c:2223 ../../printerdrake.pm_.c:2673
-#: ../../printerdrake.pm_.c:2945
+#: ../../printerdrake.pm_.c:2416 ../../printerdrake.pm_.c:2875
+#: ../../printerdrake.pm_.c:3170
msgid "Reading printer data..."
msgstr "Læser printerdata ..."
-#: ../../printerdrake.pm_.c:2243 ../../printerdrake.pm_.c:2271
-#: ../../printerdrake.pm_.c:2306
+#: ../../printerdrake.pm_.c:2436 ../../printerdrake.pm_.c:2464
+#: ../../printerdrake.pm_.c:2499
msgid "Transfer printer configuration"
msgstr "Overfűr printerkonfiguration"
-#: ../../printerdrake.pm_.c:2244
+#: ../../printerdrake.pm_.c:2437
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -8758,7 +9103,7 @@ msgstr ""
"opgaver.\n"
"Ikke alle kűer kan overfűres pć grund af:\n"
-#: ../../printerdrake.pm_.c:2247
+#: ../../printerdrake.pm_.c:2440
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
@@ -8766,7 +9111,7 @@ msgstr ""
"CUPS understűtter ikke printere pć Novellservere eller printere som sender "
"dataene ind i en frit-formet kommando.\n"
-#: ../../printerdrake.pm_.c:2249
+#: ../../printerdrake.pm_.c:2442
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
@@ -8774,11 +9119,11 @@ msgstr ""
"PDQ understűtter kun lokale printere, eksterne LPD printere, og Sokkel/TCP "
"printere.\n"
-#: ../../printerdrake.pm_.c:2251
+#: ../../printerdrake.pm_.c:2444
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr "LPD og LPRng understűtter ikke IPP printere.\n"
-#: ../../printerdrake.pm_.c:2253
+#: ../../printerdrake.pm_.c:2446
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
@@ -8786,7 +9131,7 @@ msgstr ""
"Desuden kan kűer lavet med dette program eller \"foomatic -configure\" ikke "
"overflyttes."
-#: ../../printerdrake.pm_.c:2254
+#: ../../printerdrake.pm_.c:2447
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
@@ -8796,7 +9141,7 @@ msgstr ""
"Printere konfigureret med PPD-filerne, som producenten har lavet, eller med "
"CUPS egne drivere kan heller ikke overflyttes."
-#: ../../printerdrake.pm_.c:2255
+#: ../../printerdrake.pm_.c:2448
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
@@ -8806,15 +9151,15 @@ msgstr ""
"Vælg printerene som du vil overflytte og klik\n"
"\"Overfűr\"."
-#: ../../printerdrake.pm_.c:2258
+#: ../../printerdrake.pm_.c:2451
msgid "Do not transfer printers"
msgstr "Overfűr ikke printere"
-#: ../../printerdrake.pm_.c:2259 ../../printerdrake.pm_.c:2276
+#: ../../printerdrake.pm_.c:2452 ../../printerdrake.pm_.c:2469
msgid "Transfer"
msgstr "Overfűr"
-#: ../../printerdrake.pm_.c:2272
+#: ../../printerdrake.pm_.c:2465
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -8825,11 +9170,11 @@ msgstr ""
"Klik \"Overfűr\" for at overskrive.\n"
"Du kan ogsć give et nyt printernavn, eller overspringe denne printer."
-#: ../../printerdrake.pm_.c:2280
+#: ../../printerdrake.pm_.c:2473
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr "Navn pć printer bűr kun indeholde bogstaver, tal og understregen _"
-#: ../../printerdrake.pm_.c:2285
+#: ../../printerdrake.pm_.c:2478
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
@@ -8838,16 +9183,16 @@ msgstr ""
"Printeren \"%s\" eksisterer allerede,\n"
"űnsker du virkelig at overskrive dens konfiguration?"
-#: ../../printerdrake.pm_.c:2293
+#: ../../printerdrake.pm_.c:2486
msgid "New printer name"
msgstr "Nyt printernavn"
-#: ../../printerdrake.pm_.c:2296
+#: ../../printerdrake.pm_.c:2489
#, c-format
msgid "Transferring %s..."
msgstr "Overfűrer %s ..."
-#: ../../printerdrake.pm_.c:2307
+#: ../../printerdrake.pm_.c:2500
#, c-format
msgid ""
"You have transferred your former default printer (\"%s\"), Should it be also "
@@ -8856,29 +9201,29 @@ msgstr ""
"Du har overfűrt din tidligere standard-printer '%s', skal den ogsć være "
"standard-printer under det nye printersystem %s?"
-#: ../../printerdrake.pm_.c:2316
+#: ../../printerdrake.pm_.c:2510
msgid "Refreshing printer data..."
msgstr "Opfrisker printerdata ..."
-#: ../../printerdrake.pm_.c:2324 ../../printerdrake.pm_.c:2395
-#: ../../printerdrake.pm_.c:2407
+#: ../../printerdrake.pm_.c:2518 ../../printerdrake.pm_.c:2590
+#: ../../printerdrake.pm_.c:2602
msgid "Configuration of a remote printer"
msgstr "Konfiguration af en ekstern printer"
-#: ../../printerdrake.pm_.c:2325
+#: ../../printerdrake.pm_.c:2519
msgid "Starting network..."
msgstr "Starter netværk ..."
-#: ../../printerdrake.pm_.c:2359 ../../printerdrake.pm_.c:2363
-#: ../../printerdrake.pm_.c:2365
+#: ../../printerdrake.pm_.c:2554 ../../printerdrake.pm_.c:2558
+#: ../../printerdrake.pm_.c:2560
msgid "Configure the network now"
msgstr "Konfigurér netværket nu"
-#: ../../printerdrake.pm_.c:2360
+#: ../../printerdrake.pm_.c:2555
msgid "Network functionality not configured"
msgstr "Netværksfunktionalitet ikke konfigureret"
-#: ../../printerdrake.pm_.c:2361
+#: ../../printerdrake.pm_.c:2556
msgid ""
"You are going to configure a remote printer. This needs working network "
"access, but your network is not configured yet. If you go on without network "
@@ -8890,11 +9235,11 @@ msgstr ""
"fortsætte uden en netværkskonfiguration, vil du ikke kunne bruge printeren "
"som du konfigurerer nu. Hvordan űnsker du at fortsætte?"
-#: ../../printerdrake.pm_.c:2364
+#: ../../printerdrake.pm_.c:2559
msgid "Go on without configuring the network"
msgstr "Fortsæt med konfigurering af netværk"
-#: ../../printerdrake.pm_.c:2397
+#: ../../printerdrake.pm_.c:2592
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -8909,7 +9254,7 @@ msgstr ""
"'Forbindelse', og konfigurér derefter printeren ogsć med Mandrake "
"Kontrolcenter, afsnittet om 'Maskinel'/'Printer'"
-#: ../../printerdrake.pm_.c:2398
+#: ../../printerdrake.pm_.c:2593
msgid ""
"The network access was not running and could not be started. Please check "
"your configuration and your hardware. Then try to configure your remote "
@@ -8918,24 +9263,24 @@ msgstr ""
"Netværksadgangen kűrte ikke og kunne ikke startes. Tjek din konfiguration og "
"dit udstyr. Prűv derefter at konfigurere din eksterne printer igen."
-#: ../../printerdrake.pm_.c:2408
+#: ../../printerdrake.pm_.c:2603
msgid "Restarting printing system..."
msgstr "Genstarter printsystemet ..."
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2641
msgid "high"
msgstr "hűj"
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2641
msgid "paranoid"
msgstr "paranoid"
-#: ../../printerdrake.pm_.c:2447
+#: ../../printerdrake.pm_.c:2642
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr "Installerer et printersystem pć sikkerhedsniveauet %s"
-#: ../../printerdrake.pm_.c:2448
+#: ../../printerdrake.pm_.c:2643
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -8960,11 +9305,11 @@ msgstr ""
"\n"
"Űnsker du virkelig at konfigurere udskrivning pć denne maskine?"
-#: ../../printerdrake.pm_.c:2480
+#: ../../printerdrake.pm_.c:2675
msgid "Starting the printing system at boot time"
msgstr "Starter printsystemet ved opstart"
-#: ../../printerdrake.pm_.c:2481
+#: ../../printerdrake.pm_.c:2676
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -8984,75 +9329,72 @@ msgstr ""
"\n"
"Űnsker du at have den automatiske opstart af printsystemet slćet til igen?"
-#: ../../printerdrake.pm_.c:2504 ../../printerdrake.pm_.c:2544
-#: ../../printerdrake.pm_.c:2581 ../../printerdrake.pm_.c:2621
-#: ../../printerdrake.pm_.c:2733
+#: ../../printerdrake.pm_.c:2700 ../../printerdrake.pm_.c:2741
+#: ../../printerdrake.pm_.c:2780 ../../printerdrake.pm_.c:2822
+#: ../../printerdrake.pm_.c:2943
msgid "Checking installed software..."
msgstr "Tjekker installeret programmel..."
-#: ../../printerdrake.pm_.c:2548
+#: ../../printerdrake.pm_.c:2746
msgid "Removing LPRng..."
msgstr "Fjerner LPRng..."
-#: ../../printerdrake.pm_.c:2585
+#: ../../printerdrake.pm_.c:2785
msgid "Removing LPD..."
msgstr "Fjerner LPD..."
-#: ../../printerdrake.pm_.c:2657
+#: ../../printerdrake.pm_.c:2858
msgid "Select Printer Spooler"
msgstr "Vælg printerkű-behandler"
-#: ../../printerdrake.pm_.c:2658
+#: ../../printerdrake.pm_.c:2859
msgid "Which printing system (spooler) do you want to use?"
msgstr "Hvilket printersystem (spooler) űnsker du at bruge?"
-#: ../../printerdrake.pm_.c:2691
+#: ../../printerdrake.pm_.c:2895
#, c-format
msgid "Configuring printer \"%s\"..."
msgstr "Konfigurerer printer '%s'..."
-#: ../../printerdrake.pm_.c:2704
+#: ../../printerdrake.pm_.c:2909
msgid "Installing Foomatic..."
msgstr "Installerer Foomatic..."
-#: ../../printerdrake.pm_.c:2769 ../../printerdrake.pm_.c:2808
-#: ../../printerdrake.pm_.c:3192 ../../printerdrake.pm_.c:3262
+#: ../../printerdrake.pm_.c:2979 ../../printerdrake.pm_.c:3020
+#: ../../printerdrake.pm_.c:3417 ../../printerdrake.pm_.c:3490
msgid "Printer options"
msgstr "Printer-muligheder"
-#: ../../printerdrake.pm_.c:2778
-msgid "Preparing PrinterDrake..."
+#: ../../printerdrake.pm_.c:2989
+#, fuzzy
+msgid "Preparing Printerdrake..."
msgstr "Forbereder PrinterDrake ..."
-#: ../../printerdrake.pm_.c:2795 ../../printerdrake.pm_.c:3349
+#: ../../printerdrake.pm_.c:3007 ../../printerdrake.pm_.c:3580
msgid "Configuring applications..."
msgstr "Konfigurerer programmer..."
-#: ../../printerdrake.pm_.c:2815
+#: ../../printerdrake.pm_.c:3027
msgid "Would you like to configure printing?"
msgstr "Vil du gerne konfigurere udskrivning?"
-#: ../../printerdrake.pm_.c:2827
+#: ../../printerdrake.pm_.c:3039
msgid "Printing system: "
msgstr "Printsystem: "
-#: ../../printerdrake.pm_.c:2875
-msgid "Printerdrake"
-msgstr "Printerdrake"
-
-#: ../../printerdrake.pm_.c:2879
+#: ../../printerdrake.pm_.c:3099
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; to view information about it; "
"or to make a printer on a remote CUPS server available for Star Office/"
-"OpenOffice.org."
+"OpenOffice.org/GIMP."
msgstr ""
"De fűlgende printere er konfigureret. Dobbeltklik pć en printer for at ændre "
"dens indstillinger; for at gűre den til standard-printer: for at se "
"information om den; eller for at gűre en ekstern CUPS-printer tilgængelig "
-"for Star Office/OpenOffice.org.org."
+"for Star Office/OpenOffice.org/GIMP.org."
-#: ../../printerdrake.pm_.c:2880
+#: ../../printerdrake.pm_.c:3100
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; or to view information about "
@@ -9062,29 +9404,29 @@ msgstr ""
"dens indstillinger, for at gűre den til standard-printer, eller for at se "
"information om den."
-#: ../../printerdrake.pm_.c:2906
+#: ../../printerdrake.pm_.c:3127
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr ""
"Opfrisk printerliste (for at vise alle tilgængelige eksterne CUPS-printere)"
-#: ../../printerdrake.pm_.c:2924
+#: ../../printerdrake.pm_.c:3145
msgid "Change the printing system"
msgstr "Ændr printsystemet"
-#: ../../printerdrake.pm_.c:2929 ../../standalone/drakconnect_.c:277
+#: ../../printerdrake.pm_.c:3150 ../../standalone/drakconnect_.c:277
msgid "Normal Mode"
msgstr "Normal udgave"
-#: ../../printerdrake.pm_.c:3085 ../../printerdrake.pm_.c:3135
-#: ../../printerdrake.pm_.c:3343
+#: ../../printerdrake.pm_.c:3310 ../../printerdrake.pm_.c:3360
+#: ../../printerdrake.pm_.c:3573
msgid "Do you want to configure another printer?"
msgstr "Űnsker du at konfigurere en anden printer?"
-#: ../../printerdrake.pm_.c:3170
+#: ../../printerdrake.pm_.c:3395
msgid "Modify printer configuration"
msgstr "Ændr printerkonfiguration"
-#: ../../printerdrake.pm_.c:3172
+#: ../../printerdrake.pm_.c:3397
#, c-format
msgid ""
"Printer %s\n"
@@ -9093,101 +9435,105 @@ msgstr ""
"Printer %s\n"
"Hvad űnsker du at forandre pć, pć denne printer?"
-#: ../../printerdrake.pm_.c:3176
+#: ../../printerdrake.pm_.c:3401
msgid "Do it!"
msgstr "Gűr det!"
-#: ../../printerdrake.pm_.c:3181 ../../printerdrake.pm_.c:3236
+#: ../../printerdrake.pm_.c:3406 ../../printerdrake.pm_.c:3461
msgid "Printer connection type"
msgstr "Printeropkoblingstype"
-#: ../../printerdrake.pm_.c:3182 ../../printerdrake.pm_.c:3240
+#: ../../printerdrake.pm_.c:3407 ../../printerdrake.pm_.c:3465
msgid "Printer name, description, location"
msgstr "Printernavn, beskrivelse, sted"
-#: ../../printerdrake.pm_.c:3184 ../../printerdrake.pm_.c:3255
+#: ../../printerdrake.pm_.c:3409 ../../printerdrake.pm_.c:3483
msgid "Printer manufacturer, model, driver"
msgstr "Printerproducent, model, driver"
-#: ../../printerdrake.pm_.c:3185 ../../printerdrake.pm_.c:3256
+#: ../../printerdrake.pm_.c:3410 ../../printerdrake.pm_.c:3484
msgid "Printer manufacturer, model"
msgstr "Printerproducent, model"
-#: ../../printerdrake.pm_.c:3194 ../../printerdrake.pm_.c:3266
+#: ../../printerdrake.pm_.c:3419 ../../printerdrake.pm_.c:3494
msgid "Set this printer as the default"
msgstr "Sæt printeren som standard-printer"
-#: ../../printerdrake.pm_.c:3196 ../../printerdrake.pm_.c:3271
-msgid "Add this printer to Star Office/OpenOffice.org"
-msgstr "Tilfűj denne printer til Star Office/OpenOffice.org.org"
+#: ../../printerdrake.pm_.c:3421 ../../printerdrake.pm_.c:3499
+msgid "Add this printer to Star Office/OpenOffice.org/GIMP"
+msgstr "Tilfűj denne printer til Star Office/OpenOffice.org/GIMP.org"
-#: ../../printerdrake.pm_.c:3197 ../../printerdrake.pm_.c:3280
-msgid "Remove this printer from Star Office/OpenOffice.org"
-msgstr "Fjern denne printer fra Star Office/OpenOffice.org.org"
+#: ../../printerdrake.pm_.c:3422 ../../printerdrake.pm_.c:3508
+msgid "Remove this printer from Star Office/OpenOffice.org/GIMP"
+msgstr "Fjern denne printer fra Star Office/OpenOffice.org/GIMP.org"
-#: ../../printerdrake.pm_.c:3198 ../../printerdrake.pm_.c:3289
+#: ../../printerdrake.pm_.c:3423 ../../printerdrake.pm_.c:3517
msgid "Print test pages"
msgstr "Udskriver testsider"
-#: ../../printerdrake.pm_.c:3199 ../../printerdrake.pm_.c:3291
+#: ../../printerdrake.pm_.c:3424 ../../printerdrake.pm_.c:3519
msgid "Know how to use this printer"
msgstr "Véd hvordan denne printer bruges"
-#: ../../printerdrake.pm_.c:3201 ../../printerdrake.pm_.c:3293
+#: ../../printerdrake.pm_.c:3426 ../../printerdrake.pm_.c:3521
msgid "Remove printer"
msgstr "Fjern printer"
-#: ../../printerdrake.pm_.c:3245
+#: ../../printerdrake.pm_.c:3472
#, c-format
msgid "Removing old printer \"%s\"..."
msgstr "Fjerner gammel printer \"%s\"..."
-#: ../../printerdrake.pm_.c:3269
+#: ../../printerdrake.pm_.c:3497
msgid "Default printer"
msgstr "Standard printer"
-#: ../../printerdrake.pm_.c:3270
+#: ../../printerdrake.pm_.c:3498
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr "Printeren '%s' er nu sat som standard-printer."
-#: ../../printerdrake.pm_.c:3274 ../../printerdrake.pm_.c:3277
-msgid "Adding printer to Star Office/OpenOffice.org"
-msgstr "Tilfűjer printer til Star Office/OpenOffice.org.org"
+#: ../../printerdrake.pm_.c:3502 ../../printerdrake.pm_.c:3505
+msgid "Adding printer to Star Office/OpenOffice.org/GIMP"
+msgstr "Tilfűjer printer til Star Office/OpenOffice.org/GIMP.org"
-#: ../../printerdrake.pm_.c:3275
+#: ../../printerdrake.pm_.c:3503
#, c-format
msgid ""
-"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
-msgstr "Printeren \"%s\" blev tilfűjet til Star Office/OpenOffice.org.org."
+"The printer \"%s\" was successfully added to Star Office/OpenOffice.org/GIMP."
+msgstr ""
+"Printeren \"%s\" blev tilfűjet til Star Office/OpenOffice.org/GIMP.org."
-#: ../../printerdrake.pm_.c:3278
+#: ../../printerdrake.pm_.c:3506
#, c-format
-msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
+msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org/GIMP."
msgstr ""
-"Kunne ikke tilfűje printeren \"%s\" til Star Office/OpenOffice.org.org."
+"Kunne ikke tilfűje printeren \"%s\" til Star Office/OpenOffice.org/GIMP.org."
-#: ../../printerdrake.pm_.c:3283 ../../printerdrake.pm_.c:3286
-msgid "Removing printer from Star Office/OpenOffice.org"
-msgstr "Fjerner printer fra Star Office/OpenOffice.org.org"
+#: ../../printerdrake.pm_.c:3511 ../../printerdrake.pm_.c:3514
+msgid "Removing printer from Star Office/OpenOffice.org/GIMP"
+msgstr "Fjerner printer fra Star Office/OpenOffice.org/GIMP.org"
-#: ../../printerdrake.pm_.c:3284
+#: ../../printerdrake.pm_.c:3512
#, c-format
msgid ""
-"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
-msgstr "Printeren \"%s\" blev fjernet fra Star Office/OpenOffice.org.org."
+"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org/"
+"GIMP."
+msgstr "Printeren \"%s\" blev fjernet fra Star Office/OpenOffice.org/GIMP.org."
-#: ../../printerdrake.pm_.c:3287
+#: ../../printerdrake.pm_.c:3515
#, c-format
-msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
-msgstr "Kunne ikke fjerne printeren \"%s\" fra Star Office/OpenOffice.org.org."
+msgid ""
+"Failed to remove the printer \"%s\" from Star Office/OpenOffice.org/GIMP."
+msgstr ""
+"Kunne ikke fjerne printeren \"%s\" fra Star Office/OpenOffice.org/GIMP.org."
-#: ../../printerdrake.pm_.c:3295
+#: ../../printerdrake.pm_.c:3523
#, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr "Űnsker du virkelig at fjerne printeren \"%s\"?"
-#: ../../printerdrake.pm_.c:3297
+#: ../../printerdrake.pm_.c:3527
#, c-format
msgid "Removing printer \"%s\"..."
msgstr "Fjerner printer \"%s\"..."
@@ -9594,7 +9940,7 @@ msgstr "Internet"
msgid "File sharing"
msgstr "Fildeling"
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1669
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1744
msgid "System"
msgstr "System"
@@ -9647,15 +9993,15 @@ msgstr "Start"
msgid "Stop"
msgstr "Stop"
-#: ../../share/advertising/00-thanks.pl_.c:9
-msgid "Thank you for choosing Mandrake Linux 8.2"
-msgstr "Tak fordi du valgte Mandrake Linux 8.2"
+#: ../../share/advertising/01-thanks.pl_.c:9
+msgid "Thank you for choosing Mandrake Linux 9.0"
+msgstr "Tak fordi du valgte Mandrake Linux 9.0"
-#: ../../share/advertising/00-thanks.pl_.c:10
+#: ../../share/advertising/01-thanks.pl_.c:10
msgid "Welcome to the Open Source world"
msgstr "Velkommen til en verden af ćben kildekode"
-#: ../../share/advertising/00-thanks.pl_.c:11
+#: ../../share/advertising/01-thanks.pl_.c:11
msgid ""
"The success of MandrakeSoft is based upon the principle of Free Software. "
"Your new operating system is the result of collaborative work on the part of "
@@ -9665,203 +10011,236 @@ msgstr ""
"operativsystem er resultatet af et samarbejde i det verdensomspændende Linux-"
"samfund"
-#: ../../share/advertising/01-gnu.pl_.c:9
-msgid "Join the Free Software world"
+#: ../../share/advertising/02-community.pl_.c:9
+msgid "Get involved in the Free Software world"
msgstr "Vær med i det frie programmels verden"
-#: ../../share/advertising/01-gnu.pl_.c:10
+#: ../../share/advertising/02-community.pl_.c:10
+msgid "Want to know more about the Open Source community?"
+msgstr ""
+
+#: ../../share/advertising/02-community.pl_.c:11
msgid ""
-"Get to know the Open Source community and become a member. Learn, teach, and "
-"help others by joining the many discussion forums that you will find in our "
-"\"Community\" webpages"
+"To share your own knowledge and help build Linux tools, join the discussions "
+"forum you'll find on our \"Community\" webpages"
msgstr ""
"Kom til at kende Ćben Kildekode-samfundet og bliv medlem. Lær, undervis og "
"hjælp andre ved at være med i de mange diskussionsfora som du finder pć "
"vores 'Samfunds'-netsider."
-#: ../../share/advertising/02-internet.pl_.c:9
-msgid "Internet and Messaging"
-msgstr "Internet og beskeder"
+#: ../../share/advertising/03-internet.pl_.c:9
+#, fuzzy
+msgid "Get the most from the Internet"
+msgstr "Lav forbindelse til Internettet"
-#: ../../share/advertising/02-internet.pl_.c:10
+#: ../../share/advertising/03-internet.pl_.c:10
+#, fuzzy
msgid ""
-"Mandrake Linux 8.2 provides the best software to access everything the "
-"Internet has to offer: Surf the web & view animations with Mozilla and "
-"Konqueror, exchange email & organize your personal information with "
-"Evolution and Kmail, and much more"
+"Mandrake Linux 9.0 has selected the best software for you. Surf the Web and "
+"view animations with Mozilla and Konqueror, or read your mail and handle "
+"your personal information with Evolution and Kmail"
msgstr ""
"Mandrake Linux 8.2 giver dig det bedste programmel til at fć adgang til alt "
"hvad internettet har at tilbyde. Surf pć nettet og se animationer med "
"Mozilla og Konqueror, udveksl post og organisér dine personlige "
"informationer med Evolution og Kmail, og meget mere."
-#: ../../share/advertising/03-graphic.pl_.c:9
-msgid "Multimedia and Graphics"
-msgstr "Multimedie og Grafik"
+#: ../../share/advertising/04-multimedia.pl_.c:9
+msgid "Discover the most up-to-date graphics and multimedia tools!"
+msgstr ""
-#: ../../share/advertising/03-graphic.pl_.c:10
+#: ../../share/advertising/04-multimedia.pl_.c:10
+msgid "Push multimedia to its limits!"
+msgstr ""
+
+#: ../../share/advertising/04-multimedia.pl_.c:11
+#, fuzzy
msgid ""
-"Mandrake Linux 8.2 lets you push your multimedia computer to its limits! Use "
-"the latest software to play music and audio files, edit and organize your "
-"images and photos, watch TV and videos, and much more"
+"Mandrake Linux 9.0 enables you to use the very latest software to play audio "
+"files, edit and handle your images or photos, and play videos"
msgstr ""
"Mandrake Linux 8.2 vil kunne presse din mulitimediemaskine til det yderste! "
"Brug det nyeste programmel til at afspille musik og lydfiler, redigér og "
"organisér dine billeder eller foto, se tv og videoer, og meget mere"
-#: ../../share/advertising/04-develop.pl_.c:9
-msgid "Development"
-msgstr "Udvikling"
+#: ../../share/advertising/05-games.pl_.c:9
+msgid "Games"
+msgstr "Spil"
-#: ../../share/advertising/04-develop.pl_.c:10
+#: ../../share/advertising/05-games.pl_.c:10
+#, fuzzy
msgid ""
-"Mandrake Linux 8.2 is the ultimate development platform. Discover the power "
-"of the GNU gcc compiler as well as the best Open Source development "
-"environments"
+"Mandrake Linux 9.0 provides the best Open Source games - arcade, action, "
+"cards, sports, strategy..."
msgstr ""
-"Mandrake Linux 8.2 er den ultimative udviklingsplatform. Opdag styrken i GNU "
-"gcc-oversætteren og de bedste Ćben Kildekode-udviklingsmiljűer"
+"Mandrake Linux 8.2 tilbyder det bedste i Ćben Kildekode-spil - arkade, kort, "
+"sport, action, strategi, ..."
-#: ../../share/advertising/05-contcenter.pl_.c:9
-#: ../../standalone/drakbug_.c:69
+#: ../../share/advertising/06-mcc.pl_.c:9 ../../standalone/drakbug_.c:69
msgid "Mandrake Control Center"
msgstr "Mandrake Kontrolcenter"
-#: ../../share/advertising/05-contcenter.pl_.c:10
+#: ../../share/advertising/06-mcc.pl_.c:10
+#, fuzzy
msgid ""
-"The Mandrake Linux 8.2 Control Center is a one-stop location for fully "
-"customizing and configuring your Mandrake system"
+"Mandrake Linux 9.0 provides a powerful tool to fully customize and configure "
+"your machine"
msgstr ""
"Mandrake Linux 8.2 kontrolcenter er et samlet sted til fuldt ud at tilpasse "
"og konfigurere dit Mandrake-system"
-#: ../../share/advertising/06-user.pl_.c:9
+#: ../../share/advertising/07-desktop.pl_.c:9
msgid "User interfaces"
msgstr "Brugergrænseflader"
-#: ../../share/advertising/06-user.pl_.c:10
+#: ../../share/advertising/07-desktop.pl_.c:10
msgid ""
-"Mandrake Linux 8.2 provides 11 different graphical desktop environments and "
-"window managers to choose from including GNOME 1.4, KDE 2.2.2, Window Maker "
-"0.8, and the rest"
+"Mandrake Linux 9.0 provides 11 user interfaces which can be fully modified: "
+"KDE 3, Gnome 2, WindowMaker..."
msgstr ""
-"Mandrake Linux tilbyder at vælge mellem 11 forskellige grafiske "
-"skrivebordsmiljűer og vindueshćndteringer, inklusive GNOME 1.4, KDE 2.2.2, "
-"Window Maker og resten"
-#: ../../share/advertising/07-server.pl_.c:9
-msgid "Server Software"
-msgstr "Serverprogrammel"
+#: ../../share/advertising/08-development.pl_.c:9
+#, fuzzy
+msgid "Development simplified"
+msgstr "Udvikling"
+
+#: ../../share/advertising/08-development.pl_.c:10
+msgid "Mandrake Linux 9.0 is the ultimate development platform"
+msgstr ""
-#: ../../share/advertising/07-server.pl_.c:10
+#: ../../share/advertising/08-development.pl_.c:11
+#, fuzzy
msgid ""
-"Transform your machine into a powerful server with just a few clicks of the "
-"mouse: Web server, email, firewall, router, file and print server, ..."
+"Use the full power of the GNU gcc 3 compiler as well as the best Open Source "
+"development environments"
+msgstr ""
+"Mandrake Linux 8.2 er den ultimative udviklingsplatform. Opdag styrken i GNU "
+"gcc-oversætteren og de bedste Ćben Kildekode-udviklingsmiljűer"
+
+#: ../../share/advertising/09-server.pl_.c:9
+msgid "Turn your machine into a reliable server"
+msgstr ""
+
+#: ../../share/advertising/09-server.pl_.c:10
+#, fuzzy
+msgid ""
+"Transform your machine into a powerful server in a few clicks of your mouse: "
+"Web server, mail, firewall, router, file and print server..."
msgstr ""
"Lav din maskine om til en stærk server med bare nogen fć klik med musen: "
"Webserver, post, brandmur, ruter, fil- og print-server, ..."
-#: ../../share/advertising/08-games.pl_.c:9
-msgid "Games"
-msgstr "Spil"
+#: ../../share/advertising/10-mnf.pl_.c:9
+msgid "Optimize your security"
+msgstr ""
-#: ../../share/advertising/08-games.pl_.c:10
+#: ../../share/advertising/10-mnf.pl_.c:10
msgid ""
-"Mandrake Linux 8.2 provides the best Open Source games - arcade, action, "
-"cards, sports, strategy, ..."
+"The MandrakeSecurity range includes the Multi Network Firewall product (M.N."
+"F.)"
+msgstr ""
+
+#: ../../share/advertising/10-mnf.pl_.c:11
+msgid ""
+"This firewall product includes network features which allow you to fulfill "
+"all your security needs"
msgstr ""
-"Mandrake Linux 8.2 tilbyder det bedste i Ćben Kildekode-spil - arkade, kort, "
-"sport, action, strategi, ..."
-#: ../../share/advertising/09-MDKcampus.pl_.c:9
-msgid "MandrakeCampus"
-msgstr "MandrakeCampus"
+#: ../../share/advertising/10-mnf.pl_.c:12
+msgid "This product is available on MandrakeStore website"
+msgstr ""
+
+#: ../../share/advertising/11-mdkstore.pl_.c:9
+msgid "The official MandrakeSoft store"
+msgstr ""
-#: ../../share/advertising/09-MDKcampus.pl_.c:10
+#: ../../share/advertising/11-mdkstore.pl_.c:10
+#, fuzzy
msgid ""
-"Would you like to learn Linux simply, quickly, and for free? MandrakeSoft "
-"provides free Linux training, as well as a way to test your progress, at "
-"MandrakeCampus -- our online training center"
+"Our full range of Linux solutions, as well as special offers on products and "
+"'goodies', are available online at our e-store"
msgstr ""
-"Har du lyst til at lære Linux nemt, hurtigt og gratis? MandrakeSoft tilbyder "
-"gratis træning i Linux, sć vel som en mćde at afprűve dine fremskridt, via "
-"MandrakeCampus - vores træningscenter pć nettet"
+"Et komplet udvalg af Linux-lűsninger, sć vel som specialtilbud pć vores "
+"produkter og godbidder, er tilgængelige i vores e-butik"
-#: ../../share/advertising/10-MDKexpert.pl_.c:9
-msgid "MandrakeExpert"
-msgstr "MandrakeExpert"
+#: ../../share/advertising/12-mdkstore.pl_.c:9
+msgid "Strategic partners"
+msgstr ""
-#: ../../share/advertising/10-MDKexpert.pl_.c:10
+#: ../../share/advertising/12-mdkstore.pl_.c:10
msgid ""
-"Quality support from the Linux Community, and from MandrakeSoft, is just "
-"around the corner. And if you're already a Linux veteran, become an \"Expert"
-"\" and share your knowledge at our support website"
+"MandrakeSoft works alongside a selection of companies offering professional "
+"solutions compatible with Mandrake Linux; a list of these partners is "
+"available on the MandrakeStore"
msgstr ""
-"Kvalitetssupport fra Linux-samfundet, og fra MandrakeSoft, er lige om "
-"hjűrnet! Og hvis du allerede er en Linux-veteran kan du blive en ekspert og "
-"dele ud af din viden pć vores support-netsted"
-#: ../../share/advertising/11-consul.pl_.c:9
-msgid "MandrakeConsulting"
-msgstr "MandrakeConsulting"
+#: ../../share/advertising/13-mdkcampus.pl_.c:9
+msgid "Discover MandrakeSoft's training catalogue Linux-Campus"
+msgstr ""
-#: ../../share/advertising/11-consul.pl_.c:10
+#: ../../share/advertising/13-mdkcampus.pl_.c:10
msgid ""
-"For all of your IT projects, our consultants are ready to analyze your "
-"requirements and offer a customized solution. Benefit from MandrakeSoft's "
-"vast experience as a Linux producer to provide a true IT alternative for "
-"your business organization"
+"The training program has been create to respond to the needs of both users "
+"and experts (Network and System administrations)"
msgstr ""
-"Vores konsulenter er klar for ethvert af jeres IT-projekter til at analysere "
-"jeres krav og tilbyde en tilpasset lűsning. Drag fordel af MandrakeSofts "
-"udstrakte erfaring som Linux-producent til at fremkomme med et ægte IT-"
-"alternativ for jeres organisation."
-#: ../../share/advertising/12-MDKstore.pl_.c:9
-msgid "MandrakeStore"
-msgstr "MandrakeStore"
+#: ../../share/advertising/13-mdkcampus.pl_.c:11
+msgid "Certify yourself on Linux"
+msgstr ""
-#: ../../share/advertising/12-MDKstore.pl_.c:10
+#: ../../share/advertising/13-mdkcampus.pl_.c:12
msgid ""
-"A full range of Linux solutions, as well as special offers on products and "
-"'goodies', are available online at our e-store"
+"Whether you choose to teach yourself online or via our network of training "
+"partners, the Linux-Campus catalogue prepares you for the acknowledged LPI "
+"certification program (worldwide professional technical certification)"
+msgstr ""
+
+#: ../../share/advertising/14-mdkexpert.pl_.c:9
+#, fuzzy
+msgid "Become a MandrakeExpert"
+msgstr "MandrakeExpert"
+
+#: ../../share/advertising/14-mdkexpert.pl_.c:10
+msgid ""
+"Find the solutions to your problems via MandrakeSoft's online support "
+"platform"
msgstr ""
-"Et komplet udvalg af Linux-lűsninger, sć vel som specialtilbud pć vores "
-"produkter og godbidder, er tilgængelige i vores e-butik"
-#: ../../share/advertising/13-Nvert.pl_.c:9
+#: ../../share/advertising/14-mdkexpert.pl_.c:11
msgid ""
-"For more information on MandrakeSoft's Professional Services and commercial "
-"offerings, please see the following web page:"
+"Join the MandrakeSoft support teams and the Linux Community online to share "
+"your knowledge and help others by becoming a recognized Expert on the online "
+"technical support website:"
msgstr ""
-"For yderligere information om MandrakeSofts professionelle tjenester og "
-"kommercielle tilbud kan du se pć den fűlgende netside:"
-#: ../../share/advertising/13-Nvert.pl_.c:11
-msgid "http://www.mandrakesoft.com/sales/contact"
-msgstr "http://www.mandrakesoft.com/sales/contact"
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:9
+#, fuzzy
+msgid "MandrakeExpert Corporate"
+msgstr "MandrakeExpert"
+
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:10
+msgid "An online platform to respond to company's specific support needs"
+msgstr ""
+
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:11
+msgid ""
+"All incidents will be followed up by a single qualified MandrakeSoft "
+"technical expert."
+msgstr ""
-#: ../../standalone.pm_.c:40
+#: ../../standalone.pm_.c:41
msgid "Installing packages..."
msgstr "Installerer pakker..."
-#: ../../standalone/XFdrake_.c:143
+#: ../../standalone/XFdrake_.c:145
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "Log ud og tryk herefter pć Ctrl-Alt-Bak"
-#: ../../standalone/XFdrake_.c:147
+#: ../../standalone/XFdrake_.c:149
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "Log ind i %s igen for at aktivere ændringerne"
-#: ../../standalone/diskdrake_.c:81
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I'll try to go on blanking bad partitions"
-msgstr ""
-"Jeg kan ikke læse din partitionstabel, den er for űdelagt :(\n"
-"Jeg vil forsűge mig med at slette de beskadigede partitioner"
-
#: ../../standalone/drakTermServ_.c:188
msgid "Mandrake Terminal Server Configuration"
msgstr "Konfiguration af Mandrake Terminalserver"
@@ -9898,12 +10277,13 @@ msgstr "Tilfűj/slet brugere"
msgid "Add/Del Clients"
msgstr "Tilfűj/slet klienter"
-#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3282
-#: ../../standalone/drakbackup_.c:3315 ../../standalone/drakbackup_.c:3341
-#: ../../standalone/drakbackup_.c:3368 ../../standalone/drakbackup_.c:3395
-#: ../../standalone/drakbackup_.c:3434 ../../standalone/drakbackup_.c:3455
-#: ../../standalone/drakbackup_.c:3482 ../../standalone/drakbackup_.c:3508
-#: ../../standalone/drakbackup_.c:3533 ../../standalone/drakfont_.c:700
+#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3930
+#: ../../standalone/drakbackup_.c:3963 ../../standalone/drakbackup_.c:3989
+#: ../../standalone/drakbackup_.c:4016 ../../standalone/drakbackup_.c:4043
+#: ../../standalone/drakbackup_.c:4082 ../../standalone/drakbackup_.c:4103
+#: ../../standalone/drakbackup_.c:4130 ../../standalone/drakbackup_.c:4160
+#: ../../standalone/drakbackup_.c:4186 ../../standalone/drakbackup_.c:4211
+#: ../../standalone/drakfont_.c:700
msgid "Help"
msgstr "Hjælp"
@@ -10067,8 +10447,8 @@ msgstr ""
"\n"
"Parametrene for autokonfigurationen kan ses i afsnittene til venstre"
-#: ../../standalone/drakautoinst_.c:239 ../../standalone/drakgw_.c:548
-#: ../../standalone/scannerdrake_.c:105
+#: ../../standalone/drakautoinst_.c:239 ../../standalone/drakgw_.c:484
+#: ../../standalone/scannerdrake_.c:119
msgid "Congratulations!"
msgstr "Tillykke!"
@@ -10092,20 +10472,23 @@ msgstr "Tilfűj et element"
msgid "Remove the last item"
msgstr "Fjern det sidste element"
-#: ../../standalone/drakbackup_.c:625
+#: ../../standalone/drakbackup_.c:619
msgid "Cron not available yet as non-root"
-msgstr ""
+msgstr "Cron er ikke tilgængelig endnu som ikke-root"
-#: ../../standalone/drakbackup_.c:731
+#: ../../standalone/drakbackup_.c:725
msgid "WARNING"
-msgstr ""
+msgstr "ADVARSEL"
-#: ../../standalone/drakbackup_.c:732
-#, fuzzy
+#: ../../standalone/drakbackup_.c:726
msgid "FATAL"
-msgstr "FAT"
+msgstr "FATAL"
-#: ../../standalone/drakbackup_.c:744
+#: ../../standalone/drakbackup_.c:727
+msgid "INFO"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:739
msgid ""
"\n"
" DrakBackup Report \n"
@@ -10115,7 +10498,7 @@ msgstr ""
" DrakBackup Rapport \n"
"\n"
-#: ../../standalone/drakbackup_.c:745
+#: ../../standalone/drakbackup_.c:740
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -10127,7 +10510,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:749
+#: ../../standalone/drakbackup_.c:744
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -10139,12 +10522,19 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:770 ../../standalone/drakbackup_.c:840
-#: ../../standalone/drakbackup_.c:894
+#: ../../standalone/drakbackup_.c:765 ../../standalone/drakbackup_.c:835
+#: ../../standalone/drakbackup_.c:889
msgid "Total progess"
msgstr "Total fremdrift"
-#: ../../standalone/drakbackup_.c:822
+#: ../../standalone/drakbackup_.c:788
+msgid ""
+"Sorry, perl-Expect is not installed/enabled. To use\n"
+"this feature, install perl-Expect and comment lines 772-774,\n"
+" as well as 788,789. Then uncomment line 787."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:817
#, c-format
msgid ""
"%s exists, delete?\n"
@@ -10157,16 +10547,41 @@ msgstr ""
"Advarsel: Hvis du allerede har lavet denne proces behűver du formodentlig\n"
" at fjerne posten fra authorized_keys pć serveren."
-#: ../../standalone/drakbackup_.c:831
+#: ../../standalone/drakbackup_.c:826
msgid "This may take a moment to generate the keys."
msgstr "Det kan tage lidt tid at generere nűglerne."
-#: ../../standalone/drakbackup_.c:838
+#: ../../standalone/drakbackup_.c:833
#, c-format
msgid "ERROR: Cannot spawn %s."
msgstr "Fejl: Kan ikke starte %s."
-#: ../../standalone/drakbackup_.c:865
+#: ../../standalone/drakbackup_.c:850
+#, c-format
+msgid "No password prompt on %s at port %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:851
+#, fuzzy, c-format
+msgid "Bad password on %s"
+msgstr "Ingen adgangskode"
+
+#: ../../standalone/drakbackup_.c:852
+#, c-format
+msgid "Permission denied transferring %s to %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:853
+#, fuzzy, c-format
+msgid "Can't find %s on %s"
+msgstr "Kan ikke ćbne %s: %s\n"
+
+#: ../../standalone/drakbackup_.c:856
+#, c-format
+msgid "%s not responding"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:860
#, c-format
msgid ""
"Transfer successful\n"
@@ -10183,60 +10598,64 @@ msgstr ""
"\n"
"uden at blive spurgt om en adgangskode."
-#: ../../standalone/drakbackup_.c:908
+#: ../../standalone/drakbackup_.c:903
msgid "WebDAV remote site already in sync!"
-msgstr ""
+msgstr "WebDAV eksternt netsted allerede synkroniseret!"
-#: ../../standalone/drakbackup_.c:912
+#: ../../standalone/drakbackup_.c:907
msgid "WebDAV transfer failed!"
-msgstr ""
+msgstr "WebDAV overfűrsel mislykkedes!"
-#: ../../standalone/drakbackup_.c:934
+#: ../../standalone/drakbackup_.c:928
msgid "No CDR/DVDR in drive!"
-msgstr ""
+msgstr "Ingen CDR/DVDR i drevet!"
-#: ../../standalone/drakbackup_.c:938
+#: ../../standalone/drakbackup_.c:932
msgid "Does not appear to be recordable media!"
-msgstr ""
+msgstr "Ser ikke ud til at være et skrivbart medie!"
-#: ../../standalone/drakbackup_.c:942
+#: ../../standalone/drakbackup_.c:936
msgid "Not erasable media!"
-msgstr ""
+msgstr "Ikke sletbart medie!"
-#: ../../standalone/drakbackup_.c:981
+#: ../../standalone/drakbackup_.c:975
msgid "This may take a moment to erase the media."
msgstr "Det kan tage lidt tid at slette mediet."
-#: ../../standalone/drakbackup_.c:1045
+#: ../../standalone/drakbackup_.c:1060
msgid "Permission problem accessing CD."
+msgstr "Problem med rettigheder ved adgang til CD."
+
+#: ../../standalone/drakbackup_.c:1087
+#, c-format
+msgid "No tape in %s!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1144 ../../standalone/drakbackup_.c:1193
+#: ../../standalone/drakbackup_.c:1199 ../../standalone/drakbackup_.c:1248
msgid "Backup system files..."
msgstr "Sikkerhedskopiér systemfiler..."
-#: ../../standalone/drakbackup_.c:1194 ../../standalone/drakbackup_.c:1261
+#: ../../standalone/drakbackup_.c:1249 ../../standalone/drakbackup_.c:1316
msgid "Hard Disk Backup files..."
msgstr "Sikkerhedskopifiler for disk..."
-#: ../../standalone/drakbackup_.c:1206
+#: ../../standalone/drakbackup_.c:1261
msgid "Backup User files..."
msgstr "Sikkerhedskopiér brugerfiler..."
-#: ../../standalone/drakbackup_.c:1207
+#: ../../standalone/drakbackup_.c:1262
msgid "Hard Disk Backup Progress..."
msgstr "Fremdrift for sikkerhedskopiering af disk..."
-#: ../../standalone/drakbackup_.c:1260
+#: ../../standalone/drakbackup_.c:1315
msgid "Backup Other files..."
msgstr "Sikkerhedskopiér andre filer..."
-#: ../../standalone/drakbackup_.c:1266
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1321
msgid "No changes to backup!"
-msgstr "brug bćnd til sikkerhedskopieringen"
+msgstr "Ingen ændringer til sikkerhedskopi!"
-#: ../../standalone/drakbackup_.c:1282 ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1337 ../../standalone/drakbackup_.c:1360
#, c-format
msgid ""
"\n"
@@ -10247,16 +10666,16 @@ msgstr ""
"Drakbackup aktiviteter via %s:\n"
"\n"
-#: ../../standalone/drakbackup_.c:1289
+#: ../../standalone/drakbackup_.c:1344
#, c-format
msgid ""
-"file list sent by FTP : %s\n"
+"file list sent by FTP: %s\n"
" "
msgstr ""
"filliste sendt via FTP: %s\n"
" "
-#: ../../standalone/drakbackup_.c:1292
+#: ../../standalone/drakbackup_.c:1347
msgid ""
"\n"
" FTP connection problem: It was not possible to send your backup files by "
@@ -10266,7 +10685,7 @@ msgstr ""
"FTP forbindelsesproblem: Det var ikke muligt at sende dine backupfiler via "
"FTP.\n"
-#: ../../standalone/drakbackup_.c:1310
+#: ../../standalone/drakbackup_.c:1365
msgid ""
"\n"
"Drakbackup activities via CD:\n"
@@ -10276,7 +10695,7 @@ msgstr ""
"Drakbackup aktiviteter via CD:\n"
"\n"
-#: ../../standalone/drakbackup_.c:1315
+#: ../../standalone/drakbackup_.c:1370
msgid ""
"\n"
"Drakbackup activities via tape:\n"
@@ -10286,24 +10705,24 @@ msgstr ""
"Drakbackup aktiviteter via bćnd:\n"
"\n"
-#: ../../standalone/drakbackup_.c:1324
+#: ../../standalone/drakbackup_.c:1379
msgid " Error during mail sending. \n"
msgstr " Fejl ved afsendelse af post. \n"
-#: ../../standalone/drakbackup_.c:1346
+#: ../../standalone/drakbackup_.c:1404
msgid "Can't create catalog!"
-msgstr ""
+msgstr "Kan ikke oprette katalog!"
-#: ../../standalone/drakbackup_.c:1459 ../../standalone/drakbackup_.c:1470
-#: ../../standalone/drakbackup_.c:1481 ../../standalone/drakfont_.c:1004
+#: ../../standalone/drakbackup_.c:1517 ../../standalone/drakbackup_.c:1528
+#: ../../standalone/drakfont_.c:1004
msgid "File Selection"
msgstr "Valg af filer"
-#: ../../standalone/drakbackup_.c:1486
+#: ../../standalone/drakbackup_.c:1556
msgid "Select the files or directories and click on 'Add'"
msgstr "Vælg filerne eller katalogerne og klik pć 'Tilfűj'"
-#: ../../standalone/drakbackup_.c:1525
+#: ../../standalone/drakbackup_.c:1600
msgid ""
"\n"
"Please check all options that you need.\n"
@@ -10311,26 +10730,26 @@ msgstr ""
"\n"
"Markér alle muligheder som du behűver.\n"
-#: ../../standalone/drakbackup_.c:1526
+#: ../../standalone/drakbackup_.c:1601
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
"Disse valgmuligheder kan sikkerhedskopiere og genskabe alle filer i dit /etc "
"katalog.\n"
-#: ../../standalone/drakbackup_.c:1527
+#: ../../standalone/drakbackup_.c:1602
msgid "Backup your System files. (/etc directory)"
msgstr "Lav sikkerhedkopi af dine systemfiler. (/etc kataloget)"
-#: ../../standalone/drakbackup_.c:1528
+#: ../../standalone/drakbackup_.c:1603
msgid "Use incremental backup (do not replace old backups)"
msgstr "Brug inkrementalbackup (overskriv ikke gamle sikkerhedskopier)"
-#: ../../standalone/drakbackup_.c:1529
+#: ../../standalone/drakbackup_.c:1604
msgid "Do not include critical files (passwd, group, fstab)"
msgstr "Medtag ikke kritiske filer (passwd, group, fstab)"
-#: ../../standalone/drakbackup_.c:1530
+#: ../../standalone/drakbackup_.c:1605
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
@@ -10338,39 +10757,43 @@ msgstr ""
"Med denne valgmulighed vil du være i stand til at kunne genskabe\n"
"enhver version af dit /etc katalog."
-#: ../../standalone/drakbackup_.c:1547
+#: ../../standalone/drakbackup_.c:1622
msgid "Please check all users that you want to include in your backup."
msgstr "Markér alle brugere som du vil have med i din sikkerhedskopi."
-#: ../../standalone/drakbackup_.c:1574
+#: ../../standalone/drakbackup_.c:1649
msgid "Do not include the browser cache"
msgstr "Medtag ikke cache for netlæser"
-#: ../../standalone/drakbackup_.c:1575 ../../standalone/drakbackup_.c:1599
+#: ../../standalone/drakbackup_.c:1650 ../../standalone/drakbackup_.c:1674
msgid "Use Incremental Backups (do not replace old backups)"
msgstr "Brug inkrementalbackup (overskriv ikke gamle sikkerhedskopier)"
-#: ../../standalone/drakbackup_.c:1597 ../../standalone/drakfont_.c:1058
+#: ../../standalone/drakbackup_.c:1672 ../../standalone/drakfont_.c:1058
msgid "Remove Selected"
msgstr "Fjern valgte"
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:1710
msgid "Windows (FAT32)"
msgstr "Windows (FAT32)"
-#: ../../standalone/drakbackup_.c:1674
+#: ../../standalone/drakbackup_.c:1749
msgid "Users"
msgstr "Brugere"
-#: ../../standalone/drakbackup_.c:1700
+#: ../../standalone/drakbackup_.c:1775
msgid "Use network connection to backup"
msgstr "Brug netværksforbindelse til sikkerhedskopiering"
-#: ../../standalone/drakbackup_.c:1706
+#: ../../standalone/drakbackup_.c:1777
+msgid "Net Method:"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1781
msgid "Use Expect for SSH"
msgstr "Brug Expect for SSH"
-#: ../../standalone/drakbackup_.c:1707
+#: ../../standalone/drakbackup_.c:1782
msgid ""
"Create/Transfer\n"
"backup keys for SSH"
@@ -10378,7 +10801,7 @@ msgstr ""
"Opret/overfűr\n"
"sikkerhedskopieringsnűgler for SSH"
-#: ../../standalone/drakbackup_.c:1708
+#: ../../standalone/drakbackup_.c:1783
msgid ""
" Transfer \n"
"Now"
@@ -10386,15 +10809,15 @@ msgstr ""
" Overfűr \n"
"Nu"
-#: ../../standalone/drakbackup_.c:1709
+#: ../../standalone/drakbackup_.c:1784
msgid "Keys in place already"
msgstr "Nűglerne findes allerede"
-#: ../../standalone/drakbackup_.c:1713
+#: ../../standalone/drakbackup_.c:1788
msgid "Please enter the host name or IP."
msgstr "Indtast værtsnavn eller IP."
-#: ../../standalone/drakbackup_.c:1718
+#: ../../standalone/drakbackup_.c:1793
msgid ""
"Please enter the directory (or module) to\n"
" put the backup on this host."
@@ -10402,27 +10825,27 @@ msgstr ""
"Indtast kataloget (eller modulet) hvori\n"
" sikkerhedskopien skal lægges pć denne maskine."
-#: ../../standalone/drakbackup_.c:1723
+#: ../../standalone/drakbackup_.c:1798
msgid "Please enter your login"
msgstr "Indtast dit brugernavn"
-#: ../../standalone/drakbackup_.c:1728
+#: ../../standalone/drakbackup_.c:1803
msgid "Please enter your password"
msgstr "Indtast din adgangskode"
-#: ../../standalone/drakbackup_.c:1734
+#: ../../standalone/drakbackup_.c:1809
msgid "Remember this password"
msgstr "Husk denne adgangskode"
-#: ../../standalone/drakbackup_.c:1745
+#: ../../standalone/drakbackup_.c:1820
msgid "Need hostname, username and password!"
msgstr "Behűver værtsnavn, brugernavn og adgangskode!"
-#: ../../standalone/drakbackup_.c:1841
+#: ../../standalone/drakbackup_.c:1915
msgid "Use CD/DVDROM to backup"
msgstr "Brug CD/DVDROM til sikkerhedskopiering"
-#: ../../standalone/drakbackup_.c:1844
+#: ../../standalone/drakbackup_.c:1918
msgid ""
"Please choose your CD/DVD device\n"
"(Press Enter to propogate settings to other fields.\n"
@@ -10430,37 +10853,37 @@ msgid ""
msgstr ""
"Vælg cd/dvd-enhed.\n"
"(Tryk Enter for at overfűre indstillinger til andre felter.\n"
-"Dette felt behűves ikke, det er kun et værktűj for at udfulde formularen.)"
+"Dette felt behűves ikke, det er kun et værktűj for at udfylde formularen.)"
-#: ../../standalone/drakbackup_.c:1849
+#: ../../standalone/drakbackup_.c:1923
msgid "Please choose your CD/DVD media size"
msgstr "Vælg cd/dvd-mediastűrrelse"
-#: ../../standalone/drakbackup_.c:1855
+#: ../../standalone/drakbackup_.c:1929
msgid "Please check for multisession CD"
msgstr "Markér om du bruger en multisessions-cd"
-#: ../../standalone/drakbackup_.c:1861
+#: ../../standalone/drakbackup_.c:1935
msgid "Please check if you are using CDRW media"
msgstr "Markér om du bruger et CDRW-medie"
-#: ../../standalone/drakbackup_.c:1867
+#: ../../standalone/drakbackup_.c:1941
msgid "Please check if you want to erase your RW media (1st Session)"
msgstr "Markér om du vil slette dit CDRW-medie (1. session"
-#: ../../standalone/drakbackup_.c:1868
+#: ../../standalone/drakbackup_.c:1942
msgid " Erase Now "
msgstr " Slet nu "
-#: ../../standalone/drakbackup_.c:1874
+#: ../../standalone/drakbackup_.c:1948
msgid "Please check if you are using a DVDR device"
msgstr "Markér om du bruger en CDRW-enhed"
-#: ../../standalone/drakbackup_.c:1880
+#: ../../standalone/drakbackup_.c:1954
msgid "Please check if you are using a DVDRAM device"
msgstr "Markér om du bruger en DVDRAM-enhed"
-#: ../../standalone/drakbackup_.c:1893
+#: ../../standalone/drakbackup_.c:1967
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
@@ -10468,32 +10891,32 @@ msgstr ""
"Indtast din CD-brænders enhedsnavn\n"
" fx: 0,1,0"
-#: ../../standalone/drakbackup_.c:1926
+#: ../../standalone/drakbackup_.c:2000
msgid "No CD device defined!"
msgstr "Ingen cd-enhed defineret!"
-#: ../../standalone/drakbackup_.c:1974
+#: ../../standalone/drakbackup_.c:2048
msgid "Use tape to backup"
msgstr "brug bćnd til sikkerhedskopieringen"
-#: ../../standalone/drakbackup_.c:1977
+#: ../../standalone/drakbackup_.c:2051
msgid "Please enter the device name to use for backup"
msgstr "Indtast endhedsnavnet der skal bruges til sikkerhedskopiering"
-#: ../../standalone/drakbackup_.c:1983
+#: ../../standalone/drakbackup_.c:2057
msgid "Please check if you want to use the non-rewinding device."
msgstr "Markér om du vil bruge den ikke-tilbagespolende enhed."
-#: ../../standalone/drakbackup_.c:1989
+#: ../../standalone/drakbackup_.c:2063
msgid "Please check if you want to erase your tape before the backup."
msgstr "Markér om du vil slette dit bćnd fűr sikkerhedskopi laves"
-#: ../../standalone/drakbackup_.c:1995
+#: ../../standalone/drakbackup_.c:2069
msgid "Please check if you want to eject your tape after the backup."
msgstr "Markér om du vil udskyde dit bćnd fűr sikkerhedskopi laves"
-#: ../../standalone/drakbackup_.c:2001 ../../standalone/drakbackup_.c:2074
-#: ../../standalone/drakbackup_.c:3025
+#: ../../standalone/drakbackup_.c:2075 ../../standalone/drakbackup_.c:2149
+#: ../../standalone/drakbackup_.c:3116
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
@@ -10501,55 +10924,55 @@ msgstr ""
"Indtast den maksimale stűrrelse\n"
" tilladt for Drakbackup"
-#: ../../standalone/drakbackup_.c:2066
+#: ../../standalone/drakbackup_.c:2140
msgid "Please enter the directory to save to:"
msgstr "Indtast kataloget hvortil der skal gemmes:"
-#: ../../standalone/drakbackup_.c:2080 ../../standalone/drakbackup_.c:3031
+#: ../../standalone/drakbackup_.c:2155 ../../standalone/drakbackup_.c:3122
msgid "Use quota for backup files."
msgstr "Brug kvoter for sikkerhedskopieringsfiler"
-#: ../../standalone/drakbackup_.c:2146
+#: ../../standalone/drakbackup_.c:2221
msgid "Network"
msgstr "Netværk"
-#: ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:2226
msgid "CDROM / DVDROM"
msgstr "CDROM / DVDROM"
-#: ../../standalone/drakbackup_.c:2156
+#: ../../standalone/drakbackup_.c:2231
msgid "HardDrive / NFS"
msgstr "Diskdrev / NFS"
-#: ../../standalone/drakbackup_.c:2161
+#: ../../standalone/drakbackup_.c:2236
msgid "Tape"
msgstr "Bćnd"
-#: ../../standalone/drakbackup_.c:2175 ../../standalone/drakbackup_.c:2179
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2250 ../../standalone/drakbackup_.c:2254
+#: ../../standalone/drakbackup_.c:2258
msgid "hourly"
msgstr "timeligt"
-#: ../../standalone/drakbackup_.c:2176 ../../standalone/drakbackup_.c:2180
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2251 ../../standalone/drakbackup_.c:2255
+#: ../../standalone/drakbackup_.c:2258
msgid "daily"
msgstr "dagligt"
-#: ../../standalone/drakbackup_.c:2177 ../../standalone/drakbackup_.c:2181
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2252 ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2258
msgid "weekly"
msgstr "ugentligt"
-#: ../../standalone/drakbackup_.c:2178 ../../standalone/drakbackup_.c:2182
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2253 ../../standalone/drakbackup_.c:2257
+#: ../../standalone/drakbackup_.c:2258
msgid "monthly"
msgstr "mćnedligt"
-#: ../../standalone/drakbackup_.c:2196
+#: ../../standalone/drakbackup_.c:2271
msgid "Use daemon"
msgstr "Brug dæmon"
-#: ../../standalone/drakbackup_.c:2201
+#: ../../standalone/drakbackup_.c:2276
msgid ""
"Please choose the time \n"
"interval between each backup"
@@ -10557,7 +10980,7 @@ msgstr ""
"Vælg tidsinterval mellem\n"
"hver sikkerhedskopiering"
-#: ../../standalone/drakbackup_.c:2207
+#: ../../standalone/drakbackup_.c:2282
msgid ""
"Please choose the\n"
"media for backup."
@@ -10565,7 +10988,7 @@ msgstr ""
"Vælg mediet for\n"
"sikkerhedskopiering."
-#: ../../standalone/drakbackup_.c:2214
+#: ../../standalone/drakbackup_.c:2289
msgid ""
"Please be sure that the cron daemon is included in your services. \n"
"\n"
@@ -10574,71 +10997,71 @@ msgstr ""
"Forsikr dig gerne om at cron-dæmonen er med i dine tjenester.\n"
"Bemærk at alle 'net'-medier ogsć bruger disken for nærværende."
-#: ../../standalone/drakbackup_.c:2251
-msgid "Send mail report after each backup to :"
+#: ../../standalone/drakbackup_.c:2326
+msgid "Send mail report after each backup to:"
msgstr "Send epost-rapport efter hver sikkerhedskopiering til:"
-#: ../../standalone/drakbackup_.c:2257
+#: ../../standalone/drakbackup_.c:2332
msgid "Delete Hard Drive tar files after backup to other media."
-msgstr ""
+msgstr "Slet tar-filer pć disken efter sikkerhedskopiering til andet medie."
-#: ../../standalone/drakbackup_.c:2296
+#: ../../standalone/drakbackup_.c:2371
msgid "What"
msgstr "Hvad"
-#: ../../standalone/drakbackup_.c:2301
+#: ../../standalone/drakbackup_.c:2376
msgid "Where"
msgstr "Hvor"
-#: ../../standalone/drakbackup_.c:2306
+#: ../../standalone/drakbackup_.c:2381
msgid "When"
msgstr "Hvornćr"
-#: ../../standalone/drakbackup_.c:2311
+#: ../../standalone/drakbackup_.c:2386
msgid "More Options"
msgstr "Flere muligheder"
-#: ../../standalone/drakbackup_.c:2330 ../../standalone/drakbackup_.c:3873
+#: ../../standalone/drakbackup_.c:2405 ../../standalone/drakbackup_.c:4530
msgid "Drakbackup Configuration"
msgstr "Drakbackup konfiguration"
-#: ../../standalone/drakbackup_.c:2348
+#: ../../standalone/drakbackup_.c:2423
msgid "Please choose where you want to backup"
msgstr "Vælg hvor du űnsker at sikkerhedskopiere"
-#: ../../standalone/drakbackup_.c:2350
+#: ../../standalone/drakbackup_.c:2425
msgid "on Hard Drive"
msgstr "pć diskdrev"
-#: ../../standalone/drakbackup_.c:2360
+#: ../../standalone/drakbackup_.c:2435
msgid "across Network"
msgstr "over netværk"
-#: ../../standalone/drakbackup_.c:2370
+#: ../../standalone/drakbackup_.c:2445
msgid "on CDROM"
msgstr "pć cd-rom"
-#: ../../standalone/drakbackup_.c:2378
+#: ../../standalone/drakbackup_.c:2453
msgid "on Tape Device"
msgstr "pć bćndenhed"
-#: ../../standalone/drakbackup_.c:2421
+#: ../../standalone/drakbackup_.c:2496
msgid "Please choose what you want to backup"
msgstr "Vælg hvad du vil sikkerhedkopiere"
-#: ../../standalone/drakbackup_.c:2422
+#: ../../standalone/drakbackup_.c:2497
msgid "Backup system"
msgstr "Lav sikkerhedskopi af system"
-#: ../../standalone/drakbackup_.c:2423
+#: ../../standalone/drakbackup_.c:2498
msgid "Backup Users"
msgstr "Lav sikkerhedskopi af brugere"
-#: ../../standalone/drakbackup_.c:2426
+#: ../../standalone/drakbackup_.c:2501
msgid "Select user manually"
msgstr "Hćndpluk bruger"
-#: ../../standalone/drakbackup_.c:2508
+#: ../../standalone/drakbackup_.c:2584
msgid ""
"\n"
"Backup Sources: \n"
@@ -10646,7 +11069,7 @@ msgstr ""
"\n"
"Kilder for sikkerhedskopi: \n"
-#: ../../standalone/drakbackup_.c:2509
+#: ../../standalone/drakbackup_.c:2585
msgid ""
"\n"
"- System Files:\n"
@@ -10654,7 +11077,7 @@ msgstr ""
"\n"
"- Systemfiler:\n"
-#: ../../standalone/drakbackup_.c:2511
+#: ../../standalone/drakbackup_.c:2587
msgid ""
"\n"
"- User Files:\n"
@@ -10662,7 +11085,7 @@ msgstr ""
"\n"
"- Brugerfiler:\n"
-#: ../../standalone/drakbackup_.c:2513
+#: ../../standalone/drakbackup_.c:2589
msgid ""
"\n"
"- Other Files:\n"
@@ -10670,22 +11093,24 @@ msgstr ""
"\n"
"- Andre filer:\n"
-#: ../../standalone/drakbackup_.c:2515
+#: ../../standalone/drakbackup_.c:2591
#, c-format
msgid ""
"\n"
-"- Save on Hard drive on path : %s\n"
+"- Save on Hard drive on path: %s\n"
msgstr ""
"\n"
"- Gem til diskdrev pć stien: %s\n"
-#: ../../standalone/drakbackup_.c:2518
+#: ../../standalone/drakbackup_.c:2594
msgid ""
"\n"
"- Delete hard drive tar files after backup.\n"
msgstr ""
+"\n"
+"- Slet tar-filer pć disken efter sikkerhedskopiering.\n"
-#: ../../standalone/drakbackup_.c:2524
+#: ../../standalone/drakbackup_.c:2600
msgid ""
"\n"
"- Burn to CD"
@@ -10693,43 +11118,43 @@ msgstr ""
"\n"
"- Brænd pć CD"
-#: ../../standalone/drakbackup_.c:2525
+#: ../../standalone/drakbackup_.c:2601
msgid "RW"
msgstr "RW"
-#: ../../standalone/drakbackup_.c:2526
+#: ../../standalone/drakbackup_.c:2602
#, c-format
-msgid " on device : %s"
+msgid " on device: %s"
msgstr " pć enhed: %s"
-#: ../../standalone/drakbackup_.c:2527
+#: ../../standalone/drakbackup_.c:2603
msgid " (multi-session)"
-msgstr ""
+msgstr " (multi-session)"
-#: ../../standalone/drakbackup_.c:2528
+#: ../../standalone/drakbackup_.c:2604
#, c-format
msgid ""
"\n"
-"- Save to Tape on device : %s"
+"- Save to Tape on device: %s"
msgstr ""
"\n"
"- Gem pć bćnd pć enhed: %s"
-#: ../../standalone/drakbackup_.c:2529
+#: ../../standalone/drakbackup_.c:2605
#, c-format
msgid "\t\tErase=%s"
msgstr "\t\tErase=%s"
-#: ../../standalone/drakbackup_.c:2532
+#: ../../standalone/drakbackup_.c:2608
#, c-format
msgid ""
"\n"
-"- Save via %s on host : %s\n"
+"- Save via %s on host: %s\n"
msgstr ""
"\n"
"- Gem via %s pć vært: %s\n"
-#: ../../standalone/drakbackup_.c:2533
+#: ../../standalone/drakbackup_.c:2609
#, c-format
msgid ""
"\t\t user name: %s\n"
@@ -10738,7 +11163,7 @@ msgstr ""
"\t\t brugernavn: %s\n"
"\t\t pć sti: %s \n"
-#: ../../standalone/drakbackup_.c:2534
+#: ../../standalone/drakbackup_.c:2610
msgid ""
"\n"
"- Options:\n"
@@ -10746,60 +11171,60 @@ msgstr ""
"\n"
"- Muligheder:\n"
-#: ../../standalone/drakbackup_.c:2535
+#: ../../standalone/drakbackup_.c:2611
msgid "\tDo not include System Files\n"
msgstr "\tMedtag ikke systemfiler\n"
-#: ../../standalone/drakbackup_.c:2538
+#: ../../standalone/drakbackup_.c:2614
msgid "\tBackups use tar and bzip2\n"
msgstr "\tSikkerhedskopiering bruger tar og bzip2\n"
-#: ../../standalone/drakbackup_.c:2540
+#: ../../standalone/drakbackup_.c:2616
msgid "\tBackups use tar and gzip\n"
msgstr "\tSikkerhedskopiering bruger tar og gzip\n"
-#: ../../standalone/drakbackup_.c:2543
+#: ../../standalone/drakbackup_.c:2619
#, c-format
msgid ""
"\n"
-"- Daemon (%s) include :\n"
+"- Daemon (%s) include:\n"
msgstr ""
"\n"
"- Dæmon (%s) indeholder:\n"
-#: ../../standalone/drakbackup_.c:2544
+#: ../../standalone/drakbackup_.c:2620
msgid "\t-Hard drive.\n"
msgstr "\t-Diskdrev.\n"
-#: ../../standalone/drakbackup_.c:2545
+#: ../../standalone/drakbackup_.c:2621
msgid "\t-CDROM.\n"
msgstr "\t-cdrom.\n"
-#: ../../standalone/drakbackup_.c:2546
+#: ../../standalone/drakbackup_.c:2622
msgid "\t-Tape \n"
msgstr "\t-Tape \n"
-#: ../../standalone/drakbackup_.c:2547
+#: ../../standalone/drakbackup_.c:2623
msgid "\t-Network by FTP.\n"
msgstr "\t-Netværk via FTP.\n"
-#: ../../standalone/drakbackup_.c:2548
+#: ../../standalone/drakbackup_.c:2624
msgid "\t-Network by SSH.\n"
msgstr "\t-Netværk via SSH.\n"
-#: ../../standalone/drakbackup_.c:2549
+#: ../../standalone/drakbackup_.c:2625
msgid "\t-Network by rsync.\n"
msgstr "\t-Netværk via rsync.\n"
-#: ../../standalone/drakbackup_.c:2550
+#: ../../standalone/drakbackup_.c:2626
msgid "\t-Network by webdav.\n"
msgstr "\t-Netværk via webdav.\n"
-#: ../../standalone/drakbackup_.c:2552
+#: ../../standalone/drakbackup_.c:2628
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr "Ingen konfiguration, klik pć Vejleder eller Avanceret.\n"
-#: ../../standalone/drakbackup_.c:2558
+#: ../../standalone/drakbackup_.c:2634
msgid ""
"List of data to restore:\n"
"\n"
@@ -10807,7 +11232,7 @@ msgstr ""
"Liste over data som skal genskabes:\n"
"\n"
-#: ../../standalone/drakbackup_.c:2725
+#: ../../standalone/drakbackup_.c:2801
msgid ""
"List of data corrupted:\n"
"\n"
@@ -10815,152 +11240,270 @@ msgstr ""
"Liste over data der er űdelagt:\n"
"\n"
-#: ../../standalone/drakbackup_.c:2727
+#: ../../standalone/drakbackup_.c:2803
msgid "Please uncheck or remove it on next time."
msgstr "Afmarkér eller fjern det gerne næste gang."
-#: ../../standalone/drakbackup_.c:2737
+#: ../../standalone/drakbackup_.c:2813
msgid "Backup files are corrupted"
msgstr "Sikkerhedskopifiler er űdelagte"
-#: ../../standalone/drakbackup_.c:2758
+#: ../../standalone/drakbackup_.c:2834
msgid " All of your selected data have been "
msgstr " Alle dine valgte data er blevet "
-#: ../../standalone/drakbackup_.c:2759
+#: ../../standalone/drakbackup_.c:2835
#, c-format
msgid " Successfuly Restored on %s "
msgstr " genskabt uden fejl pć %s "
-#: ../../standalone/drakbackup_.c:2877
+#: ../../standalone/drakbackup_.c:2953
msgid " Restore Configuration "
msgstr " Genskab konfiguration "
-#: ../../standalone/drakbackup_.c:2895
+#: ../../standalone/drakbackup_.c:2971
msgid "OK to restore the other files."
msgstr "O.k. at genskabe de andre filer."
-#: ../../standalone/drakbackup_.c:2912
+#: ../../standalone/drakbackup_.c:2988
msgid "User list to restore (only the most recent date per user is important)"
msgstr "Brugerliste at genskabe (kun den nyeste dato per bruger er vigtig)"
-#: ../../standalone/drakbackup_.c:2975
+#: ../../standalone/drakbackup_.c:3066
msgid "Backup the system files before:"
msgstr "Lav sikkerhedskopi af systemfiler fűr:"
-#: ../../standalone/drakbackup_.c:2977
+#: ../../standalone/drakbackup_.c:3068
msgid "please choose the date to restore"
msgstr "Vælg dato for genskabning"
-#: ../../standalone/drakbackup_.c:3014
+#: ../../standalone/drakbackup_.c:3105
msgid "Use Hard Disk to backup"
msgstr "Brug disk til sikkerhedskopiering"
-#: ../../standalone/drakbackup_.c:3017
+#: ../../standalone/drakbackup_.c:3108
msgid "Please enter the directory to save:"
msgstr "Indtast kataloget der skal gemmes:"
-#: ../../standalone/drakbackup_.c:3060
+#: ../../standalone/drakbackup_.c:3151
msgid "FTP Connection"
msgstr "FTP forbindelse"
-#: ../../standalone/drakbackup_.c:3067
+#: ../../standalone/drakbackup_.c:3158
msgid "Secure Connection"
msgstr "Sikker forbindelse"
-#: ../../standalone/drakbackup_.c:3093
+#: ../../standalone/drakbackup_.c:3184
msgid "Restore from Hard Disk."
msgstr "Genskab fra disk."
-#: ../../standalone/drakbackup_.c:3095
+#: ../../standalone/drakbackup_.c:3186
msgid "Please enter the directory where backups are stored"
msgstr "Indtast kataloget hvor sikkerhedskopier gemmes"
-#: ../../standalone/drakbackup_.c:3157
+#: ../../standalone/drakbackup_.c:3254
msgid "Select another media to restore from"
msgstr "Vælg et andet medie at genskabe fra"
-#: ../../standalone/drakbackup_.c:3159
+#: ../../standalone/drakbackup_.c:3256
msgid "Other Media"
msgstr "Andet medie"
-#: ../../standalone/drakbackup_.c:3164
+#: ../../standalone/drakbackup_.c:3261
msgid "Restore system"
msgstr "Genskab system"
-#: ../../standalone/drakbackup_.c:3165
+#: ../../standalone/drakbackup_.c:3262
msgid "Restore Users"
msgstr "Genskab brugere"
-#: ../../standalone/drakbackup_.c:3166
+#: ../../standalone/drakbackup_.c:3263
msgid "Restore Other"
msgstr "Genskab andet"
-#: ../../standalone/drakbackup_.c:3168
+#: ../../standalone/drakbackup_.c:3265
msgid "select path to restore (instead of /)"
msgstr "vælg sti at genskabe (i stedet for /)"
-#: ../../standalone/drakbackup_.c:3172
+#: ../../standalone/drakbackup_.c:3269
msgid "Do new backup before restore (only for incremental backups.)"
msgstr "Lav ny sikkerhedskopi fűr genskabning (kun for inkrementalbackupper)."
-#: ../../standalone/drakbackup_.c:3174
+#: ../../standalone/drakbackup_.c:3271
msgid "Remove user directories before restore."
msgstr "Fjern brugerkataloger fűr genskabning."
-#: ../../standalone/drakbackup_.c:3232
+#: ../../standalone/drakbackup_.c:3384
+msgid ""
+"Restore Selected\n"
+"Catalog Entry"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3394
+#, fuzzy
+msgid ""
+"Restore Selected\n"
+"Files"
+msgstr "Fjern valgte"
+
+#: ../../standalone/drakbackup_.c:3411
+#, fuzzy
+msgid ""
+"Change\n"
+"Restore Path"
+msgstr "Genskab andet"
+
+#: ../../standalone/drakbackup_.c:3477
+#, fuzzy, c-format
+msgid "Backup files not found at %s."
+msgstr "Sikkerhedskopiér %s til %s.old"
+
+#: ../../standalone/drakbackup_.c:3490
+#, c-format
+msgid ""
+"Insert the CD with volume label %s\n"
+" in the CD drive under mount point /mnt/cdrom"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3490
+#, fuzzy
+msgid "Restore From CD"
+msgstr "Genskab fra disk."
+
+#: ../../standalone/drakbackup_.c:3492
+#, c-format
+msgid "Not the correct CD label. Disk is labelled %s."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3502
+#, c-format
+msgid ""
+"Insert the tape with volume label %s\n"
+" in the tape drive device %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3502
+#, fuzzy
+msgid "Restore From Tape"
+msgstr "Genskaber partitionstabel"
+
+#: ../../standalone/drakbackup_.c:3504
+#, c-format
+msgid "Not the correct tape label. Tape is labelled %s."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3524
+#, fuzzy
+msgid "Restore Via Network"
+msgstr "Genskab brugere"
+
+#: ../../standalone/drakbackup_.c:3524
+#, c-format
+msgid "Restore Via Network Protocol: %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3525
+#, fuzzy
+msgid "Host Name"
+msgstr "Værtsnavn"
+
+#: ../../standalone/drakbackup_.c:3526
+msgid "Host Path or Module"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3533
+#, fuzzy
+msgid "Password required"
+msgstr "Adgangskode"
+
+#: ../../standalone/drakbackup_.c:3539
+#, fuzzy
+msgid "Username required"
+msgstr "Brugernavn"
+
+#: ../../standalone/drakbackup_.c:3542
+#, fuzzy
+msgid "Hostname required"
+msgstr "Værtsnavn: "
+
+#: ../../standalone/drakbackup_.c:3547
+msgid "Path or Module required"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3560
+msgid "Files Restored..."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3563
+#, fuzzy
+msgid "Restore Failed..."
+msgstr "Genskab andet"
+
+#: ../../standalone/drakbackup_.c:3801
msgid "Restore all backups"
msgstr "Genskab alle sikkerhedskopier"
-#: ../../standalone/drakbackup_.c:3241
+#: ../../standalone/drakbackup_.c:3810
msgid "Custom Restore"
msgstr "Tilpasset genskabelse"
-#: ../../standalone/drakbackup_.c:3287 ../../standalone/drakbackup_.c:3320
-#: ../../standalone/drakbackup_.c:3346 ../../standalone/drakbackup_.c:3373
-#: ../../standalone/drakbackup_.c:3400 ../../standalone/drakbackup_.c:3460
-#: ../../standalone/drakbackup_.c:3487 ../../standalone/drakbackup_.c:3513
+#: ../../standalone/drakbackup_.c:3856
+msgid "CD in place - continue."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3862
+msgid "Browse to new restore repository."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3865
+#, fuzzy
+msgid "Restore From Catalog"
+msgstr "Genskaber partitionstabel"
+
+#: ../../standalone/drakbackup_.c:3893
+#, fuzzy
+msgid "Restore Progress"
+msgstr "Genskab brugere"
+
+#: ../../standalone/drakbackup_.c:3935 ../../standalone/drakbackup_.c:3968
+#: ../../standalone/drakbackup_.c:3994 ../../standalone/drakbackup_.c:4021
+#: ../../standalone/drakbackup_.c:4048 ../../standalone/drakbackup_.c:4108
+#: ../../standalone/drakbackup_.c:4135 ../../standalone/drakbackup_.c:4165
+#: ../../standalone/drakbackup_.c:4191
msgid "Previous"
msgstr "Forrige"
-#: ../../standalone/drakbackup_.c:3291 ../../standalone/drakbackup_.c:3377
+#: ../../standalone/drakbackup_.c:3939 ../../standalone/drakbackup_.c:4025
#: ../../standalone/logdrake_.c:223
msgid "Save"
msgstr "Gem"
-#: ../../standalone/drakbackup_.c:3350
+#: ../../standalone/drakbackup_.c:3998
msgid "Build Backup"
msgstr "Opbyg sikkerhedskopien"
-#: ../../standalone/drakbackup_.c:3404 ../../standalone/drakbackup_.c:3974
+#: ../../standalone/drakbackup_.c:4052 ../../standalone/drakbackup_.c:4632
msgid "Restore"
msgstr "Genskab"
-#: ../../standalone/drakbackup_.c:3553
-msgid ""
-"Please Build backup before to restore it...\n"
-" or verify that your path to save is correct."
-msgstr ""
-"Lav sikkerhedskopieringen fűr genskablesen af den...\n"
-" eller efterse at stien til gemning er korrekt."
-
-#: ../../standalone/drakbackup_.c:3574
+#: ../../standalone/drakbackup_.c:4231
+#, fuzzy
msgid ""
-"Error during sendmail\n"
-" your report mail was not sent\n"
+"Error during sendmail.\n"
+" Your report mail was not sent.\n"
" Please configure sendmail"
msgstr ""
"Fejl ved sendmail.\n"
" din rapport blev ikke sendt\n"
" Konfigurér venligst sendmail"
-#: ../../standalone/drakbackup_.c:3598
+#: ../../standalone/drakbackup_.c:4255
msgid ""
"The following packages need to be installed:\n"
" @list_of_rpm_to_install"
msgstr "De fűlgende pakker vil blive installeret @list_of_rpm_to_install"
-#: ../../standalone/drakbackup_.c:3621
+#: ../../standalone/drakbackup_.c:4278
msgid ""
"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
@@ -10968,19 +11511,19 @@ msgstr ""
"Fejl ved sending af fil via FTP.\n"
" Ret venligst din FTP-konfiguration."
-#: ../../standalone/drakbackup_.c:3644
+#: ../../standalone/drakbackup_.c:4301
msgid "Please select data to restore..."
msgstr "Udvælg de data du vil genskabe..."
-#: ../../standalone/drakbackup_.c:3665
+#: ../../standalone/drakbackup_.c:4322
msgid "Please select media for backup..."
msgstr "Vælg medie for sikkerhedskopi..."
-#: ../../standalone/drakbackup_.c:3687
+#: ../../standalone/drakbackup_.c:4344
msgid "Please select data to backup..."
msgstr "Vælg data for sikkerhedskopi..."
-#: ../../standalone/drakbackup_.c:3709
+#: ../../standalone/drakbackup_.c:4366
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
@@ -10988,59 +11531,59 @@ msgstr ""
"ingen konfigurationsfil fundet \n"
"klik pć Vejleder eller Avanceret."
-#: ../../standalone/drakbackup_.c:3730
+#: ../../standalone/drakbackup_.c:4387
msgid "Under Devel ... please wait."
msgstr "Under udvikling ... vent venligst:-)"
-#: ../../standalone/drakbackup_.c:3811
+#: ../../standalone/drakbackup_.c:4468
msgid "Backup system files"
msgstr "Lav sikkerhedskopi af systemfiler"
-#: ../../standalone/drakbackup_.c:3813
+#: ../../standalone/drakbackup_.c:4470
msgid "Backup user files"
msgstr "Lav sikkerhedskopi af brugerfiler"
-#: ../../standalone/drakbackup_.c:3815
+#: ../../standalone/drakbackup_.c:4472
msgid "Backup other files"
msgstr "Lav sikkerhedskopi af andre filer"
-#: ../../standalone/drakbackup_.c:3817 ../../standalone/drakbackup_.c:3850
+#: ../../standalone/drakbackup_.c:4474 ../../standalone/drakbackup_.c:4507
msgid "Total Progress"
msgstr "Total fremdrift"
-#: ../../standalone/drakbackup_.c:3841
+#: ../../standalone/drakbackup_.c:4498
msgid "files sending by FTP"
msgstr "Filer sendes via FTP"
-#: ../../standalone/drakbackup_.c:3845
+#: ../../standalone/drakbackup_.c:4502
msgid "Sending files..."
msgstr "Sender filer..."
-#: ../../standalone/drakbackup_.c:3931
+#: ../../standalone/drakbackup_.c:4588
msgid "Backup Now from configuration file"
msgstr "Lav sikkerhedskopi nu ud fra konfigurationsfil"
-#: ../../standalone/drakbackup_.c:3936
+#: ../../standalone/drakbackup_.c:4593
msgid "View Backup Configuration."
msgstr "Se konfiguration af sikkerhedskopiering."
-#: ../../standalone/drakbackup_.c:3956
+#: ../../standalone/drakbackup_.c:4614
msgid "Wizard Configuration"
msgstr "Konfiguration med vejleder"
-#: ../../standalone/drakbackup_.c:3961
+#: ../../standalone/drakbackup_.c:4619
msgid "Advanced Configuration"
msgstr "Avanceret konfiguration"
-#: ../../standalone/drakbackup_.c:3966
+#: ../../standalone/drakbackup_.c:4624
msgid "Backup Now"
msgstr "Lav sikkerhedskopiering nu"
-#: ../../standalone/drakbackup_.c:3996
+#: ../../standalone/drakbackup_.c:4658
msgid "Drakbackup"
msgstr "Drakbackup"
-#: ../../standalone/drakbackup_.c:4045
+#: ../../standalone/drakbackup_.c:4707
msgid ""
"options description:\n"
"\n"
@@ -11100,7 +11643,7 @@ msgstr ""
" \n"
"\n"
-#: ../../standalone/drakbackup_.c:4075
+#: ../../standalone/drakbackup_.c:4737
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -11114,7 +11657,7 @@ msgstr ""
" sætte myhostname eller mydomain i /etc/postfix/main.cf\n"
"\n"
-#: ../../standalone/drakbackup_.c:4083
+#: ../../standalone/drakbackup_.c:4745
msgid ""
"options description:\n"
"\n"
@@ -11190,28 +11733,29 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:4122
+#: ../../standalone/drakbackup_.c:4784
+#, fuzzy
msgid ""
"restore description:\n"
" \n"
-"Only the most recent date will be used ,because with incremental \n"
-"backups it is necesarry to restore one by one each older backups.\n"
+"Only the most recent date will be used, because with incremental \n"
+"backups it is necessary to restore one by one each older backup.\n"
"\n"
-"So if you don't like to restore a user please unselect all his\n"
-"check box.\n"
+"So if you don't want to restore a user please unselect all their\n"
+"check boxes.\n"
"\n"
-"Otherwise, you are able to select only one of this\n"
+"Otherwise, you are able to select only one of these.\n"
"\n"
" - Incremental Backups:\n"
"\n"
"\tThe incremental backup is the most powerful \n"
-"\toption to use backup, this option allow you \n"
-"\tto backup all your data the first time, and \n"
-"\tonly the changed after.\n"
-"\tSo you will be able during the restore\n"
+"\toption to use. This option allows you to \n"
+"\tbackup all of your data the first time, and \n"
+"\tonly the changed data after.\n"
+"\tSo you will be able, during the restore\n"
"\tstep, to restore your data from a specified\n"
"\tdate.\n"
-"\tIf you have not selected this options all\n"
+"\tIf you have not selected this option all\n"
"\told backups are deleted before each backup. \n"
"\n"
"\n"
@@ -11239,20 +11783,20 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:4148 ../../standalone/drakbackup_.c:4225
+#: ../../standalone/drakbackup_.c:4810 ../../standalone/drakbackup_.c:4887
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
" Copyright (C) 2001 MandrakeSoft ved DUPONT Sebastien <dupont_s\\@epita.fr>"
-#: ../../standalone/drakbackup_.c:4150 ../../standalone/drakbackup_.c:4227
+#: ../../standalone/drakbackup_.c:4812 ../../standalone/drakbackup_.c:4889
msgid ""
" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
" opdateringer 2002 MandrakeSoft ved Stew Benedict <sbenedict\\@mandrakesoft."
"com>"
-#: ../../standalone/drakbackup_.c:4152 ../../standalone/drakbackup_.c:4229
+#: ../../standalone/drakbackup_.c:4814 ../../standalone/drakbackup_.c:4891
msgid ""
" This program is free software; you can redistribute it and/or modify\n"
" it under the terms of the GNU General Public License as published by\n"
@@ -11284,7 +11828,7 @@ msgstr ""
"Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,\n"
"USA."
-#: ../../standalone/drakbackup_.c:4166
+#: ../../standalone/drakbackup_.c:4828
msgid ""
"Description:\n"
"\n"
@@ -11358,7 +11902,7 @@ msgstr ""
" \n"
"\n"
-#: ../../standalone/drakbackup_.c:4204
+#: ../../standalone/drakbackup_.c:4866
msgid ""
"options description:\n"
"\n"
@@ -11376,7 +11920,7 @@ msgstr ""
"fűr den sendes til ftp-serveren.\n"
"\n"
-#: ../../standalone/drakbackup_.c:4213
+#: ../../standalone/drakbackup_.c:4875
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -11398,7 +11942,7 @@ msgstr ""
"Det er vigtigt at være forsigtig og ikke ændre sikkerhedskopieringens\n"
"datafiler i hćnden.\n"
-#: ../../standalone/drakbackup_.c:4243
+#: ../../standalone/drakbackup_.c:4905
msgid ""
"Description:\n"
"\n"
@@ -11520,9 +12064,9 @@ msgstr "Fűrstegangshjælper"
msgid "Synchronization tool"
msgstr "Synkroniseringsværktűj"
-#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:85
-#: ../../standalone/drakbug_.c:150 ../../standalone/drakbug_.c:152
-#: ../../standalone/drakbug_.c:156
+#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:86
+#: ../../standalone/drakbug_.c:151 ../../standalone/drakbug_.c:153
+#: ../../standalone/drakbug_.c:157
msgid "Standalone Tools"
msgstr "Fritstćende værktűjer"
@@ -11566,23 +12110,23 @@ msgstr "Userdrake"
msgid "Configuration Wizards"
msgstr "Vejledere til konfiguration"
-#: ../../standalone/drakbug_.c:96
+#: ../../standalone/drakbug_.c:97
msgid "Application:"
msgstr "Applikation:"
-#: ../../standalone/drakbug_.c:97
+#: ../../standalone/drakbug_.c:98
msgid "Package: "
msgstr "Pakke: "
-#: ../../standalone/drakbug_.c:98
+#: ../../standalone/drakbug_.c:99
msgid "Kernel:"
msgstr "Kerne:"
-#: ../../standalone/drakbug_.c:99
+#: ../../standalone/drakbug_.c:100
msgid "Release: "
msgstr "Udgave: "
-#: ../../standalone/drakbug_.c:114
+#: ../../standalone/drakbug_.c:115
msgid ""
"\n"
"\n"
@@ -11601,19 +12145,19 @@ msgstr ""
"vil blive overfűrt til den server\n"
"\n"
-#: ../../standalone/drakbug_.c:135
+#: ../../standalone/drakbug_.c:136
msgid "Report"
msgstr "Rapport"
-#: ../../standalone/drakbug_.c:165
+#: ../../standalone/drakbug_.c:166
msgid "Not installed"
msgstr "Ikke installeret"
-#: ../../standalone/drakbug_.c:182
+#: ../../standalone/drakbug_.c:183
msgid "connecting to Bugzilla wizard ..."
msgstr "Opkobler til vejleder for Bugzilla"
-#: ../../standalone/drakbug_.c:189
+#: ../../standalone/drakbug_.c:190
msgid "No browser available! Please install one"
msgstr "Ingen netlæser til stede! Installér venligst én"
@@ -12061,7 +12605,7 @@ msgid "Font List"
msgstr "Liste over skrifttyper"
#: ../../standalone/drakfont_.c:909
-msgid "Choose the applications that will support the fonts :"
+msgid "Choose the applications that will support the fonts:"
msgstr "Vælg de programpakker som vil understűtte skrifttyperne:"
#: ../../standalone/drakfont_.c:918
@@ -12132,19 +12676,19 @@ msgstr "Fjern skrifttyper pć dit system"
msgid "Post Uninstall"
msgstr "Efterbehandling for afinstallering"
-#: ../../standalone/drakgw_.c:42 ../../standalone/drakgw_.c:195
+#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:188
msgid "Internet Connection Sharing"
msgstr "Deling af internetforbindelse"
-#: ../../standalone/drakgw_.c:121
+#: ../../standalone/drakgw_.c:119
msgid "Sorry, we support only 2.4 kernels."
msgstr "Desværre, vi understűtter kun 2.4-kerner."
-#: ../../standalone/drakgw_.c:133
+#: ../../standalone/drakgw_.c:130
msgid "Internet Connection Sharing currently enabled"
msgstr "Deling af internetforbindelse er slćet til"
-#: ../../standalone/drakgw_.c:134
+#: ../../standalone/drakgw_.c:131
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -12156,31 +12700,31 @@ msgstr ""
"\n"
"Hvad űnsker du at gűre?"
-#: ../../standalone/drakgw_.c:138
+#: ../../standalone/drakgw_.c:135
msgid "disable"
msgstr "deaktivér"
-#: ../../standalone/drakgw_.c:138 ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:135 ../../standalone/drakgw_.c:160
msgid "dismiss"
msgstr "forkast"
-#: ../../standalone/drakgw_.c:138 ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:135 ../../standalone/drakgw_.c:160
msgid "reconfigure"
msgstr "genkonfigurér"
-#: ../../standalone/drakgw_.c:141
+#: ../../standalone/drakgw_.c:138
msgid "Disabling servers..."
msgstr "Slćr servere fra..."
-#: ../../standalone/drakgw_.c:149
+#: ../../standalone/drakgw_.c:146
msgid "Internet connection sharing is now disabled."
msgstr "Deling af internetforbindelse er nu slćet fra"
-#: ../../standalone/drakgw_.c:158
+#: ../../standalone/drakgw_.c:155
msgid "Internet Connection Sharing currently disabled"
msgstr "Deling af internetforbindelse er slćet fra"
-#: ../../standalone/drakgw_.c:159
+#: ../../standalone/drakgw_.c:156
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
@@ -12191,19 +12735,19 @@ msgstr ""
"Den er de-aktiveret for nærværende\n"
"Hvad űnsker du at gűre?"
-#: ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:160
msgid "enable"
msgstr "aktivér"
-#: ../../standalone/drakgw_.c:170
+#: ../../standalone/drakgw_.c:167
msgid "Enabling servers..."
msgstr "Aktiverer servere..."
-#: ../../standalone/drakgw_.c:175
+#: ../../standalone/drakgw_.c:172
msgid "Internet connection sharing is now enabled."
msgstr "Deling af internetforbindelse er nu slćet til"
-#: ../../standalone/drakgw_.c:196
+#: ../../standalone/drakgw_.c:189
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
"With that feature, other computers on your local network will be able to use "
@@ -12219,21 +12763,21 @@ msgstr ""
"Bemærk: du skal bruge en dediceret netværksadapter, for at lave et lokalt "
"netværk (LAN)."
-#: ../../standalone/drakgw_.c:222
+#: ../../standalone/drakgw_.c:215
#, c-format
msgid "Interface %s (using module %s)"
msgstr "Grænseflade %s (benytter modul %s)"
-#: ../../standalone/drakgw_.c:223
+#: ../../standalone/drakgw_.c:216
#, c-format
msgid "Interface %s"
msgstr "Grænseflade %s"
-#: ../../standalone/drakgw_.c:231
+#: ../../standalone/drakgw_.c:224
msgid "No network adapter on your system!"
msgstr "Ikke nogen netværksadapter i dit system!"
-#: ../../standalone/drakgw_.c:232
+#: ../../standalone/drakgw_.c:225
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
@@ -12241,11 +12785,11 @@ msgstr ""
"Ingen ethernet netværksadapter er blevet fundet pć dit system. Kűr venligst "
"værktűjet til maskinel konfiguration."
-#: ../../standalone/drakgw_.c:238
+#: ../../standalone/drakgw_.c:231
msgid "Network interface"
msgstr "Netværksgrænsesnit"
-#: ../../standalone/drakgw_.c:239
+#: ../../standalone/drakgw_.c:232
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -12260,17 +12804,17 @@ msgstr ""
"\n"
"Jeg skal til at sætte dit lokalnet pć med den adapter."
-#: ../../standalone/drakgw_.c:248
+#: ../../standalone/drakgw_.c:241
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
msgstr "Vælg hvilken netværksadapter som skal forbindes til dit lokalnet."
-#: ../../standalone/drakgw_.c:266
+#: ../../standalone/drakgw_.c:259
msgid "Network interface already configured"
msgstr "Netværksgrænsesnit allerede konfigureret"
-#: ../../standalone/drakgw_.c:267
+#: ../../standalone/drakgw_.c:260
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -12285,15 +12829,15 @@ msgstr ""
"\n"
"Du kan gűre det i hćnden, men du skal vide hvad du gűr."
-#: ../../standalone/drakgw_.c:272
+#: ../../standalone/drakgw_.c:265
msgid "Automatic reconfiguration"
msgstr "Automatisk rekonfiguration"
-#: ../../standalone/drakgw_.c:273
+#: ../../standalone/drakgw_.c:266
msgid "Show current interface configuration"
msgstr "Vis aktuelle grænsesnitskonfiguration"
-#: ../../standalone/drakgw_.c:275
+#: ../../standalone/drakgw_.c:268
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -12310,7 +12854,7 @@ msgstr ""
"IP-attribut: %s\n"
"Driver: %s"
-#: ../../standalone/drakgw_.c:287
+#: ../../standalone/drakgw_.c:280
msgid ""
"I can keep your current configuration and assume you already set up a DHCP "
"server; in that case please verify I correctly read the C-Class Network that "
@@ -12331,53 +12875,41 @@ msgstr ""
"server for dig.\n"
"\n"
-#: ../../standalone/drakgw_.c:292
+#: ../../standalone/drakgw_.c:285
msgid "C-Class Local Network"
msgstr "C-klasse lokalnetværk"
-#: ../../standalone/drakgw_.c:293
+#: ../../standalone/drakgw_.c:286
msgid "(This) DHCP Server IP"
msgstr "(Denne) DHCP-servers IP-adresse"
-#: ../../standalone/drakgw_.c:294
+#: ../../standalone/drakgw_.c:287
msgid "Re-configure interface and DHCP server"
msgstr "Rekonfigurér grænsesnit og DHCP-server"
-#: ../../standalone/drakgw_.c:301
+#: ../../standalone/drakgw_.c:294
msgid "The Local Network did not finish with `.0', bailing out."
msgstr "Lokalnetværket endte ikke med `.0', stćr af."
-#: ../../standalone/drakgw_.c:312
+#: ../../standalone/drakgw_.c:305
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr "Mulig LAN-adresse konflikt fundet i konfigurationen til %s!\n"
-#: ../../standalone/drakgw_.c:320
-msgid "Firewalling configuration detected!"
-msgstr "Brandmurkonfiguration fundet!"
-
-#: ../../standalone/drakgw_.c:321
-msgid ""
-"Warning! An existing firewalling configuration has been detected. You may "
-"need some manual fix after installation."
-msgstr ""
-"Advarsel! En eksisterende brandmurkonfiguration er blevet fundet. Du skal "
-"muligvis lave manuelle rettelser efter installationen."
-
-#: ../../standalone/drakgw_.c:328
+#: ../../standalone/drakgw_.c:315
msgid "Configuring..."
msgstr "Konfigurerer..."
-#: ../../standalone/drakgw_.c:329
+#: ../../standalone/drakgw_.c:316
msgid "Configuring scripts, installing software, starting servers..."
msgstr "Konfigurerer skript, installerer programmel, starter servere..."
-#: ../../standalone/drakgw_.c:365
+#: ../../standalone/drakgw_.c:352
#, c-format
msgid "Problems installing package %s"
msgstr "Problemer med installation af %s"
-#: ../../standalone/drakgw_.c:549
+#: ../../standalone/drakgw_.c:485
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
@@ -12387,23 +12919,23 @@ msgstr ""
"Du kan nu dele din internetforbindelse med andre maskiner pć dit lokale "
"netværk, ved at bruge DHCP."
-#: ../../standalone/drakgw_.c:566
+#: ../../standalone/drakgw_.c:504
msgid "The setup has already been done, but it's currently disabled."
msgstr "Indstilling er allerede gjort. men er de-aktiveret for nærværende."
-#: ../../standalone/drakgw_.c:567
+#: ../../standalone/drakgw_.c:505
msgid "The setup has already been done, and it's currently enabled."
msgstr "Indstilling er allerede gjort. og er for nærværende aktiv."
-#: ../../standalone/drakgw_.c:568
+#: ../../standalone/drakgw_.c:506
msgid "No Internet Connection Sharing has ever been configured."
msgstr "Deling af Internetforbindelse har aldrig været konfigureret."
-#: ../../standalone/drakgw_.c:573
+#: ../../standalone/drakgw_.c:511
msgid "Internet connection sharing configuration"
msgstr "Konfiguration af deling af internetforbindelse"
-#: ../../standalone/drakgw_.c:580
+#: ../../standalone/drakgw_.c:518
#, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -12418,6 +12950,168 @@ msgstr ""
"Klik pć Konfigurér for at starte programmet til at dele din "
"internetforbindelse!"
+#: ../../standalone/draksound_.c:46
+#, fuzzy
+msgid "No Sound Card detected!"
+msgstr "Intet tv-kort genkendt!"
+
+#: ../../standalone/draksound_.c:47
+#, fuzzy
+msgid ""
+"No Sound Card has been detected on your machine. Please verify that a Linux-"
+"supported Sound Card is correctly plugged in.\n"
+"\n"
+"\n"
+"You can visit our hardware database at:\n"
+"\n"
+"\n"
+"http://www.linux-mandrake.com/en/hardware.php3"
+msgstr ""
+"Intet tv-kort blev genkendt pć din maskine. Tjek venligst at et video/tv-"
+"kort der understűttes af Linux er korrekt isat.\n"
+"\n"
+"\n"
+"Du kan besűge vores database over udstyr pć:\n"
+"\n"
+"\n"
+"http://www.linux-mandrake.com/en/hardware.php3"
+
+#: ../../standalone/draksplash_.c:32
+msgid "package ImageMagick is required for correct working"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:76
+#, fuzzy
+msgid "first step creation"
+msgstr "fremstilling af opstartsdiskette"
+
+#: ../../standalone/draksplash_.c:77
+#, fuzzy
+msgid "final resolution"
+msgstr "Oplűsning"
+
+#: ../../standalone/draksplash_.c:78 ../../standalone/draksplash_.c:170
+#, fuzzy
+msgid "choose image file"
+msgstr "Vælg en fil"
+
+#: ../../standalone/draksplash_.c:79
+#, fuzzy
+msgid "Theme name"
+msgstr "Dele-navn"
+
+#: ../../standalone/draksplash_.c:81
+msgid "make bootsplash step 2"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:82
+#, fuzzy
+msgid "go to lilosplash configuration"
+msgstr "Konfiguration efter installation"
+
+#: ../../standalone/draksplash_.c:83
+#, fuzzy
+msgid "quit"
+msgstr "Afslut"
+
+#: ../../standalone/draksplash_.c:84
+#, fuzzy
+msgid "save theme"
+msgstr "Installér temaer"
+
+#: ../../standalone/draksplash_.c:85
+msgid "browse"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:98 ../../standalone/draksplash_.c:159
+#, fuzzy
+msgid "Configure bootsplash picture"
+msgstr "Kan ikke lave smugkig af opstartsskærm"
+
+#: ../../standalone/draksplash_.c:99
+msgid "x coordinate of text box in number of character"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:100
+msgid "y coordinate of text box in number of character"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:101
+msgid "text width"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:102
+msgid "text box height"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:103
+msgid "the progress bar x coordinate of its upper left corner"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:104
+msgid "the progress bar y coordinate of its upper left corner"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:105
+msgid "the width of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:106
+msgid "the heigth of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:107
+msgid "the color of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:119
+#, fuzzy
+msgid "go back"
+msgstr "Loopback"
+
+#: ../../standalone/draksplash_.c:120
+#, fuzzy
+msgid "preview"
+msgstr "enhed"
+
+#: ../../standalone/draksplash_.c:121
+#, fuzzy
+msgid "choose color"
+msgstr "Vælg en skærmtype"
+
+#: ../../standalone/draksplash_.c:124
+#, fuzzy
+msgid "Display logo on Console"
+msgstr "Visningstema under konsol"
+
+#: ../../standalone/draksplash_.c:125
+msgid "Make kernel message quiet by default"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:161 ../../standalone/draksplash_.c:330
+#, c-format
+msgid "This theme haven't yet any bootsplash in %s !"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:213
+msgid "saving Bootsplash theme..."
+msgstr ""
+
+#: ../../standalone/draksplash_.c:436
+#, fuzzy
+msgid "ProgressBar color selection"
+msgstr "Valg af printermodel"
+
+#: ../../standalone/draksplash_.c:454
+#, fuzzy
+msgid "You must choose an image file first!"
+msgstr "Du skal vælge eller indtaste en printer/enhed!"
+
+#: ../../standalone/draksplash_.c:463
+#, fuzzy
+msgid "Generating preview ..."
+msgstr "Sűger efter enheder..."
+
#: ../../standalone/drakxtv_.c:49
msgid ""
"XawTV isn't installed!\n"
@@ -12516,11 +13210,11 @@ msgid ""
msgstr "Indtast din tv-standard og land"
#: ../../standalone/drakxtv_.c:109
-msgid "TV norm :"
+msgid "TV norm:"
msgstr "Tv-standard:"
#: ../../standalone/drakxtv_.c:110
-msgid "Area :"
+msgid "Area:"
msgstr "Omrćde:"
#: ../../standalone/drakxtv_.c:114
@@ -12533,7 +13227,7 @@ msgstr "Skanner for tv-kanaler"
#: ../../standalone/drakxtv_.c:125
msgid "There was an error while scanning for TV channels"
-msgstr "Der opstod en fejl ved skanninge efter tv-kanaler"
+msgstr "Der opstod en fejl ved skanningen efter tv-kanaler"
#: ../../standalone/drakxtv_.c:126
msgid "XawTV isn't installed!"
@@ -12603,7 +13297,7 @@ msgstr "Kan ikke starte levende opgradering!!!\n"
msgid "The change is done, but to be effective you must logout"
msgstr "Ændringen er fortaget, men for at være effektiv skal du logge ud"
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:517
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:515
msgid "logdrake"
msgstr "logdrake"
@@ -12771,8 +13465,9 @@ msgid "service setting"
msgstr "opsætning af tjenester"
#: ../../standalone/logdrake_.c:431
+#, fuzzy
msgid ""
-"You will receive an alert if one of the selected service is no more running"
+"You will receive an alert if one of the selected services is no more running"
msgstr ""
"Du vil modtage en advarsel hvis en af de valgte tjenester ikke længere kűrer"
@@ -12792,19 +13487,19 @@ msgstr "advarsels-konfiguration"
msgid "Please enter your email address below "
msgstr "Indtast din adgangskode for epost nedenfor"
-#: ../../standalone/logdrake_.c:499
+#: ../../standalone/logdrake_.c:497
msgid "Save as.."
msgstr "Gem som..."
-#: ../../standalone/mousedrake_.c:43
+#: ../../standalone/mousedrake_.c:45
msgid "Please, choose the type of your mouse."
msgstr "Vælg muse-type."
-#: ../../standalone/mousedrake_.c:57
+#: ../../standalone/mousedrake_.c:58
msgid "Emulate third button?"
msgstr "Emulering af tredje knap?"
-#: ../../standalone/printerdrake_.c:48
+#: ../../standalone/printerdrake_.c:57
msgid "Reading printer data ..."
msgstr "Læser printerdata ..."
@@ -12816,21 +13511,32 @@ msgstr "Sűger efter enheder..."
msgid "Test ports"
msgstr "Afprűv porte"
-#: ../../standalone/scannerdrake_.c:52
+#: ../../standalone/scannerdrake_.c:53 ../../standalone/scannerdrake_.c:68
+#: ../../standalone/scannerdrake_.c:81
#, c-format
-msgid "%s found on %s, configure it ?"
+msgid "The %s is not supported by this version of Mandrake Linux."
+msgstr ""
+
+#: ../../standalone/scannerdrake_.c:56
+#, fuzzy, c-format
+msgid "%s found on %s, configure it?"
msgstr "%s fundet pć %s, skal det konfigureres?"
#: ../../standalone/scannerdrake_.c:59
+#, c-format
+msgid "%s is not in the scanner database, configure it manually?"
+msgstr ""
+
+#: ../../standalone/scannerdrake_.c:65
msgid "Select a scanner"
msgstr "Vælg en skanner"
-#: ../../standalone/scannerdrake_.c:79
+#: ../../standalone/scannerdrake_.c:93
#, c-format
msgid "This %s scanner is unsupported"
msgstr "Denne %s-skanner er ikke understűttet"
-#: ../../standalone/scannerdrake_.c:93
+#: ../../standalone/scannerdrake_.c:107
#, c-format
msgid ""
"Scannerdrake was not able to detect your %s scanner.\n"
@@ -12839,11 +13545,11 @@ msgstr ""
"Scannerdrake kunne ikke genkende din %s-skanner.\n"
"Vælg venligst den enhed hvor din skanner er isat"
-#: ../../standalone/scannerdrake_.c:95
+#: ../../standalone/scannerdrake_.c:109
msgid "choose device"
msgstr "vælg enhed"
-#: ../../standalone/scannerdrake_.c:101
+#: ../../standalone/scannerdrake_.c:115
#, c-format
msgid ""
"This %s scanner must be configured by printerdrake.\n"
@@ -12853,7 +13559,7 @@ msgstr ""
"Denne %s-skanner skal være konfigureret af printerdrake.\n"
"Du kan starte printerdrake fra Mandrake Kontrolcenter i Udstyr-afsnittet."
-#: ../../standalone/scannerdrake_.c:106
+#: ../../standalone/scannerdrake_.c:120
#, c-format
msgid ""
"Your %s scanner has been configured.\n"
@@ -12863,12 +13569,12 @@ msgstr ""
"Din %s-skanner er blevet konfigureret.\n"
"Du kan nu skanne dokumenter med 'XSane' fra Multimedie/grafik iprogrammenuen."
-#: ../../standalone/service_harddrake_.c:57
+#: ../../standalone/service_harddrake_.c:39
#, c-format
msgid "Some devices in the \"%s\" hardware class were removed:\n"
msgstr "Nogen enheder i maskinelklassen '%s' blev fjernet:\n"
-#: ../../standalone/service_harddrake_.c:61
+#: ../../standalone/service_harddrake_.c:43
#, c-format
msgid ""
"\n"
@@ -12877,36 +13583,6 @@ msgstr ""
"\n"
"Nogen enheder i maskinelklassen '%s' blev tilfűjet:\n"
-#: ../../standalone/tinyfirewall_.c:30
-msgid "Firewalling Configuration"
-msgstr "Konfiguration af brandmur"
-
-#: ../../standalone/tinyfirewall_.c:43
-msgid "Firewalling configuration"
-msgstr "Brandmurskonfiguration"
-
-#: ../../standalone/tinyfirewall_.c:78
-msgid ""
-"Firewalling\n"
-"\n"
-"You already have set up a firewall.\n"
-"Click on Configure to change or remove the firewall"
-msgstr ""
-"Brandmure\n"
-"\n"
-"Du har allerede indstillet en brandmur.\n"
-"Klik pć Konfigurér for at ændre eller fjerne brandmuren"
-
-#: ../../standalone/tinyfirewall_.c:82
-msgid ""
-"Firewalling\n"
-"\n"
-"Click on Configure to set up a standard firewall"
-msgstr ""
-"Brandmure\n"
-"\n"
-"Klik pć Konfigurér for at sætte en standard-brandmur op"
-
#: ../../steps.pm_.c:14
msgid "Choose your language"
msgstr "Vælg sprog"
@@ -12979,222 +13655,7 @@ msgstr "Installér opdateringer"
msgid "Exit install"
msgstr "Afslut installation"
-#: ../../tinyfirewall.pm_.c:9
-msgid ""
-"tinyfirewall configurator\n"
-"\n"
-"This configures a personal firewall for this Mandrake Linux machine.\n"
-"For a powerful dedicated firewall solution, please look to the\n"
-"specialized MandrakeSecurity Firewall distribution."
-msgstr ""
-"tinyfirewall-konfigurator\n"
-"\n"
-"Dette konfigurerer en personlig brandmur for denne Mandrake Linux maskine.\n"
-"For en stærk dedikeret brandmurs-lűsning se venligst den specialiserede "
-"MandrakeSecurity Firewall-distribution."
-
-#: ../../tinyfirewall.pm_.c:14
-msgid ""
-"We'll now ask you questions about which services you'd like to allow\n"
-"the Internet to connect to. Please think carefully about these\n"
-"questions, as your computer's security is important.\n"
-"\n"
-"Please, if you're not currently using one of these services, firewall\n"
-"it off. You can change this configuration anytime you like by\n"
-"re-running this application!"
-msgstr ""
-"Vi vil nu spűrge dig om hvilke tjenester du gerne vil tillade\n"
-"internettet at forbinde til. Tænk grundigt over disse\n"
-"spűrgsmćl, da din maskines sikkerhed er vigtig.\n"
-"\n"
-"Hvis du ikke bruger nogle af disse tjenester sć skærm dem af\n"
-"med brandmuren. Du kan altid ændre indstillingerne nćr du vil\n"
-"ved at kűre dette program igen!"
-
-#: ../../tinyfirewall.pm_.c:21
-msgid ""
-"Are you running a web server on this machine that you need the whole\n"
-"Internet to see? If you are running a webserver that only needs to be\n"
-"accessed by this machine, you can safely answer NO here.\n"
-"\n"
-msgstr ""
-"Kűrer du en webserver pć denne maskine som du har brug for at hele\n"
-"internettet kan se? Hvis du kűrer en webserver som kun behűver at blive\n"
-"tilgćet af denne maskine kan du roligt svare NEJ her.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:26
-msgid ""
-"Are you running a name server on this machine? If you didn't set one\n"
-"up to give away IP and zone information to the whole Internet, please\n"
-"answer no.\n"
-"\n"
-msgstr ""
-"Kűrer du en DNS-navneserver pć denne maskine? Hvis du ikke har sat\n"
-"en op til at give IP- og zone-information til hele internettet kan du svare\n"
-"nej her.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:31
-msgid ""
-"Do you want to allow incoming Secure Shell (ssh) connections? This\n"
-"is a telnet-replacement that you might use to login. If you're using\n"
-"telnet now, you should definitely switch to ssh. telnet is not\n"
-"encrypted -- so some attackers can steal your password if you use\n"
-"it. ssh is encrypted and doesn't allow for this eavesdropping."
-msgstr ""
-"Űnsker du at tillade indgćende Secure Shell ssh-forbindelser?\n"
-"Det er en erstatning for telnet som du mćske vil bruge til at logge ind.\n"
-"Hvis du bruger telnet nu bűr du afgjort skifte til ssh. telnet er ikke\n"
-"krypteret - sć nogle angribere kan stjæle din adgangskode hvis du bruger\n"
-"den. ssh er krypteret og tillader ikke den slags aflytning."
-
-#: ../../tinyfirewall.pm_.c:36
-msgid ""
-"Do you want to allow incoming telnet connections?\n"
-"This is horribly unsafe, as we explained in the previous screen. We\n"
-"strongly recommend answering No here and using ssh in place of\n"
-"telnet.\n"
-msgstr ""
-"Vil du tillade indgćende telnet-forbindelser?\n"
-"Dette er virkeligt usikkert som vi har forklaret i det foregćende billede. "
-"Vi\n"
-"anbefaler stærkt at du svarer NEJ her og bruger ssh i stedet for telnet.\n"
-
-#: ../../tinyfirewall.pm_.c:41
-msgid ""
-"Are you running an FTP server here that you need accessible to the\n"
-"Internet? If you are, we strongly recommend that you only use it for\n"
-"Anonymous transfers. Any passwords sent by FTP can be stolen by some\n"
-"attackers, since FTP also uses no encryption for transferring passwords.\n"
-msgstr ""
-"Kűrer du en FTP-tjeneste pć denne maskine som du har brug for at hele\n"
-"internettet har adgang til? Hvis du har sć anbefaler vi stærkt at du kun\n"
-"bruger den til anonyme overfűrsler. En hvilkensomhelst adgangskode sendt\n"
-"over FTP kan stjæles af visse angribere, siden FTP heller ikke bruger\n"
-"kryptering til at overfűre adgangskoder.\n"
-
-#: ../../tinyfirewall.pm_.c:46
-msgid ""
-"Are you running a mail server here? If you're sending you \n"
-"messages through pine, mutt or any other text-based mail client,\n"
-"you probably are. Otherwise, you should firewall this off.\n"
-"\n"
-msgstr ""
-"Kűrer du en post-server her? Hvis du sender beskeder med\n"
-"pine, mutt eller en anden tekstbaseret post-klient er det sandsynligt.\n"
-"Ellers bűr du skærme den væk.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:51
-msgid ""
-"Are you running a POP or IMAP server here? This would\n"
-"be used to host non-web-based mail accounts for people via \n"
-"this machine.\n"
-"\n"
-msgstr ""
-"Kűrer du en POP- eller IMAP-tjeneste her? Dette kan bruges til at betjene "
-"ikke-webaserede postkonti for folk via denne maskine.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:56
-msgid ""
-"You appear to be running a 2.2 kernel. If your network IP\n"
-"is automatically set by a computer in your home or office \n"
-"(dynamically assigned), we need to allow for this. Is\n"
-"this the case?\n"
-msgstr ""
-"Du ser ud til at kűre en 2.2-kerne. Hvis din IP-netværksadresse\n"
-"bliver sat automatisk af en maskine i dit hjem eller kontor\n"
-"(dynamisk tildelt) bűr vi tillade dette. Er dette tilfældet?\n"
-
-#: ../../tinyfirewall.pm_.c:61
-msgid ""
-"Is your computer getting time syncronized to another computer?\n"
-"Mostly, this is used by medium-large Unix/Linux organizations\n"
-"to synchronize time for logging and such. If you're not part\n"
-"of a larger office and haven't heard of this, you probably \n"
-"aren't."
-msgstr ""
-"Fćr din maskine tiden synkroniseret efter en anden maskine?\n"
-"Oftest er dette brugt af stűrre Unix/Linux-organisationer for at\n"
-"synkronisere tiden for logning og lignende. Hvis du ikke er en del\n"
-"af et stűrre kontor og ikke har hűrt om dette er det sandsynligvis\n"
-"ikke tilfældet."
-
-#: ../../tinyfirewall.pm_.c:66
-msgid ""
-"Configuration complete. May we write these changes to disk?\n"
-"\n"
-"\n"
-"\n"
-msgstr ""
-"Konfigurationen er færdig. Skal vi skrive disse ændringer til disken?\n"
-"\n"
-"\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:82
-#, c-format
-msgid "Can't open %s: %s\n"
-msgstr "Kan ikke ćbne %s: %s\n"
-
-#: ../../tinyfirewall.pm_.c:84
-#, c-format
-msgid "Can't open %s for writing: %s\n"
-msgstr "Kan ikke ćbne %s for skrivning: %s\n"
-
-#: ../../tinyfirewall.pm_.c:178
-msgid "No I don't need DHCP"
-msgstr "Nej, jeg har ikke brug for DHCP"
-
-#: ../../tinyfirewall.pm_.c:178
-msgid "Yes I need DHCP"
-msgstr "Ja, jeg har brug for DHCP"
-
-#: ../../tinyfirewall.pm_.c:179
-msgid "No I don't need NTP"
-msgstr "Nej, jeg har ikke brug for NTP"
-
-#: ../../tinyfirewall.pm_.c:179
-msgid "Yes I need NTP"
-msgstr "Ja, jeg har brug for NTP"
-
-#: ../../tinyfirewall.pm_.c:180 ../../tinyfirewall.pm_.c:184
-msgid "Don't Save"
-msgstr "Gem ikke"
-
-#: ../../tinyfirewall.pm_.c:180 ../../tinyfirewall.pm_.c:184
-#: ../../tinyfirewall.pm_.c:204
-msgid "Save & Quit"
-msgstr "Gem og afslut"
-
-#: ../../tinyfirewall.pm_.c:195 ../../tinyfirewall.pm_.c:199
-msgid "Firewall Configuration Wizard"
-msgstr "Vejleder til brandmurskonfiguration"
-
-#: ../../tinyfirewall.pm_.c:197
-msgid "No (firewall this off from the internet)"
-msgstr "Nej (sæt en brandmur op mod internettet)"
-
-#: ../../tinyfirewall.pm_.c:198
-msgid "Yes (allow this through the firewall)"
-msgstr "Nej (tillad dette gennem brandmuren)"
-
-#: ../../tinyfirewall.pm_.c:230
-msgid "Please Wait... Verifying installed packages"
-msgstr "Vent venligst..., kontrollerer installerede pakker"
-
-#: ../../tinyfirewall.pm_.c:236
-#, c-format
-msgid ""
-"Failure installing the needed packages : %s and Bastille.\n"
-" Try to install them manually."
-msgstr ""
-"Kunne ikke installere de krævede pakker: %s og Bastille.\n"
-" Prűv at installere dem manuelt."
-
-#: ../../ugtk.pm_.c:619
+#: ../../ugtk.pm_.c:594
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
@@ -13327,6 +13788,10 @@ msgid "Graphical Environment"
msgstr "Grafisk miljű"
#: ../../share/compssUsers:999
+msgid "Development"
+msgstr "Udvikling"
+
+#: ../../share/compssUsers:999
msgid "Apache, Pro-ftpd"
msgstr "Apache og Pro-ftpd"
@@ -13436,72 +13901,315 @@ msgstr "Multimedie - CD-brænding"
msgid "Scientific Workstation"
msgstr "Videnskabelig arbejdsstation"
-#~ msgid "\n"
-#~ msgstr "\n"
+#~ msgid ""
+#~ "The first time you try the X configuration, you may not be very "
+#~ "satisfied\n"
+#~ "with its display (screen is too small, shifted left or right...). Hence,\n"
+#~ "even if X starts up correctly, DrakX then asks you if the configuration\n"
+#~ "suits you. It will also propose to change it by displaying a list of "
+#~ "valid\n"
+#~ "modes it could find, asking you to select one.\n"
+#~ "\n"
+#~ "As a last resort, if you still cannot get X to work, choose \"Change\n"
+#~ "graphics card\", select \"Unlisted card\", and when prompted on which\n"
+#~ "server, choose \"FBDev\". This is a failsafe option which works with any\n"
+#~ "modern graphics card. Then choose \"Test again\" to be sure."
+#~ msgstr ""
+#~ "Mćske er du ikke særligt tilfreds med det fűrste forsűg med X "
+#~ "konfigurering (skærmen for lille, flyttet til venstre eller hűjre...). "
+#~ "Derfor vil DrakX spűrge dig om konfigurationen passer dig, selvom X "
+#~ "starter op korrekt. DrakX vil ogsć foreslć ændringer ved at vise en liste "
+#~ "af gyldige tilstande som den kunne finde, og sć bede dig om at vælge "
+#~ "én. \n"
+#~ "Som en sidste udvej, hvis du stadig ikke kan fć X til at virke, vælg da "
+#~ "Ændr grafikkort, vælg Ukendt kort, og nćr du bliver spurgt om hvilken "
+#~ "server du vil have, vælg da FBDev. Dette er en fejlsikker mulighed som "
+#~ "virker med alle moderne grafikkort. Vælg derefter Test igen for at være "
+#~ "sikker."
+
+#~ msgid "Internet and Messaging"
+#~ msgstr "Internet og beskeder"
+
+#~ msgid "Multimedia and Graphics"
+#~ msgstr "Multimedie og Grafik"
+
+#~ msgid ""
+#~ "Mandrake Linux 8.2 provides 11 different graphical desktop environments "
+#~ "and window managers to choose from including GNOME 1.4, KDE 2.2.2, Window "
+#~ "Maker 0.8, and the rest"
+#~ msgstr ""
+#~ "Mandrake Linux tilbyder at vælge mellem 11 forskellige grafiske "
+#~ "skrivebordsmiljűer og vindueshćndteringer, inklusive GNOME 1.4, KDE "
+#~ "2.2.2, Window Maker og resten"
-#~ msgid "$mode: $warning"
-#~ msgstr "$mode: $warning"
+#~ msgid "Server Software"
+#~ msgstr "Serverprogrammel"
+
+#~ msgid "MandrakeCampus"
+#~ msgstr "MandrakeCampus"
#~ msgid ""
+#~ "Would you like to learn Linux simply, quickly, and for free? MandrakeSoft "
+#~ "provides free Linux training, as well as a way to test your progress, at "
+#~ "MandrakeCampus -- our online training center"
+#~ msgstr ""
+#~ "Har du lyst til at lære Linux nemt, hurtigt og gratis? MandrakeSoft "
+#~ "tilbyder gratis træning i Linux, sć vel som en mćde at afprűve dine "
+#~ "fremskridt, via MandrakeCampus - vores træningscenter pć nettet"
+
+#~ msgid ""
+#~ "Quality support from the Linux Community, and from MandrakeSoft, is just "
+#~ "around the corner. And if you're already a Linux veteran, become an "
+#~ "\"Expert\" and share your knowledge at our support website"
+#~ msgstr ""
+#~ "Kvalitetssupport fra Linux-samfundet, og fra MandrakeSoft, er lige om "
+#~ "hjűrnet! Og hvis du allerede er en Linux-veteran kan du blive en ekspert "
+#~ "og dele ud af din viden pć vores support-netsted"
+
+#~ msgid "MandrakeConsulting"
+#~ msgstr "MandrakeConsulting"
+
+#~ msgid ""
+#~ "For all of your IT projects, our consultants are ready to analyze your "
+#~ "requirements and offer a customized solution. Benefit from MandrakeSoft's "
+#~ "vast experience as a Linux producer to provide a true IT alternative for "
+#~ "your business organization"
+#~ msgstr ""
+#~ "Vores konsulenter er klar for ethvert af jeres IT-projekter til at "
+#~ "analysere jeres krav og tilbyde en tilpasset lűsning. Drag fordel af "
+#~ "MandrakeSofts udstrakte erfaring som Linux-producent til at fremkomme med "
+#~ "et ægte IT-alternativ for jeres organisation."
+
+#~ msgid "MandrakeStore"
+#~ msgstr "MandrakeStore"
+
+#~ msgid ""
+#~ "For more information on MandrakeSoft's Professional Services and "
+#~ "commercial offerings, please see the following web page:"
+#~ msgstr ""
+#~ "For yderligere information om MandrakeSofts professionelle tjenester og "
+#~ "kommercielle tilbud kan du se pć den fűlgende netside:"
+
+#~ msgid "LBA (doesn't work on old BIOSes)"
+#~ msgstr "LBA (virker ikke med gamle BIOS'er)"
+
+#~ msgid "You don't have any partitions!"
+#~ msgstr "Du har ikke nogen partitioner!"
+
+#~ msgid ""
+#~ "DiskDrake failed to read correctly the partition table.\n"
+#~ "Continue at your own risk!"
+#~ msgstr ""
+#~ "DiskDrake kunne ikke læse partitionstabellen korrekt. Fortsæt pć eget "
+#~ "ansvar!"
+
+#~ msgid ""
+#~ "I can't read your partition table, it's too corrupted for me :(\n"
+#~ "I'll try to go on blanking bad partitions"
+#~ msgstr ""
+#~ "Jeg kan ikke læse din partitionstabel, den er for űdelagt :(\n"
+#~ "Jeg vil forsűge mig med at slette de beskadigede partitioner"
+
+#~ msgid ""
+#~ "Please Build backup before to restore it...\n"
+#~ " or verify that your path to save is correct."
+#~ msgstr ""
+#~ "Lav sikkerhedskopieringen fűr genskablesen af den...\n"
+#~ " eller efterse at stien til gemning er korrekt."
+
+#~ msgid "Firewalling Configuration"
+#~ msgstr "Konfiguration af brandmur"
+
+#~ msgid "Firewalling configuration"
+#~ msgstr "Brandmurskonfiguration"
+
+#~ msgid ""
+#~ "Firewalling\n"
+#~ "\n"
+#~ "You already have set up a firewall.\n"
+#~ "Click on Configure to change or remove the firewall"
+#~ msgstr ""
+#~ "Brandmure\n"
+#~ "\n"
+#~ "Du har allerede indstillet en brandmur.\n"
+#~ "Klik pć Konfigurér for at ændre eller fjerne brandmuren"
+
+#~ msgid ""
+#~ "Firewalling\n"
+#~ "\n"
+#~ "Click on Configure to set up a standard firewall"
+#~ msgstr ""
+#~ "Brandmure\n"
+#~ "\n"
+#~ "Klik pć Konfigurér for at sætte en standard-brandmur op"
+
+#~ msgid ""
+#~ "We'll now ask you questions about which services you'd like to allow\n"
+#~ "the Internet to connect to. Please think carefully about these\n"
+#~ "questions, as your computer's security is important.\n"
+#~ "\n"
+#~ "Please, if you're not currently using one of these services, firewall\n"
+#~ "it off. You can change this configuration anytime you like by\n"
+#~ "re-running this application!"
+#~ msgstr ""
+#~ "Vi vil nu spűrge dig om hvilke tjenester du gerne vil tillade\n"
+#~ "internettet at forbinde til. Tænk grundigt over disse\n"
+#~ "spűrgsmćl, da din maskines sikkerhed er vigtig.\n"
+#~ "\n"
+#~ "Hvis du ikke bruger nogle af disse tjenester sć skærm dem af\n"
+#~ "med brandmuren. Du kan altid ændre indstillingerne nćr du vil\n"
+#~ "ved at kűre dette program igen!"
+
+#~ msgid ""
+#~ "Are you running a web server on this machine that you need the whole\n"
+#~ "Internet to see? If you are running a webserver that only needs to be\n"
+#~ "accessed by this machine, you can safely answer NO here.\n"
+#~ "\n"
+#~ msgstr ""
+#~ "Kűrer du en webserver pć denne maskine som du har brug for at hele\n"
+#~ "internettet kan se? Hvis du kűrer en webserver som kun behűver at blive\n"
+#~ "tilgćet af denne maskine kan du roligt svare NEJ her.\n"
#~ "\n"
-#~ "Drakbackup activities via $net_proto:\n"
+
+#~ msgid ""
+#~ "Are you running a name server on this machine? If you didn't set one\n"
+#~ "up to give away IP and zone information to the whole Internet, please\n"
+#~ "answer no.\n"
+#~ "\n"
+#~ msgstr ""
+#~ "Kűrer du en DNS-navneserver pć denne maskine? Hvis du ikke har sat\n"
+#~ "en op til at give IP- og zone-information til hele internettet kan du "
+#~ "svare\n"
+#~ "nej her.\n"
+#~ "\n"
+
+#~ msgid ""
+#~ "Do you want to allow incoming Secure Shell (ssh) connections? This\n"
+#~ "is a telnet-replacement that you might use to login. If you're using\n"
+#~ "telnet now, you should definitely switch to ssh. telnet is not\n"
+#~ "encrypted -- so some attackers can steal your password if you use\n"
+#~ "it. ssh is encrypted and doesn't allow for this eavesdropping."
+#~ msgstr ""
+#~ "Űnsker du at tillade indgćende Secure Shell ssh-forbindelser?\n"
+#~ "Det er en erstatning for telnet som du mćske vil bruge til at logge ind.\n"
+#~ "Hvis du bruger telnet nu bűr du afgjort skifte til ssh. telnet er ikke\n"
+#~ "krypteret - sć nogle angribere kan stjæle din adgangskode hvis du bruger\n"
+#~ "den. ssh er krypteret og tillader ikke den slags aflytning."
+
+#~ msgid ""
+#~ "Do you want to allow incoming telnet connections?\n"
+#~ "This is horribly unsafe, as we explained in the previous screen. We\n"
+#~ "strongly recommend answering No here and using ssh in place of\n"
+#~ "telnet.\n"
+#~ msgstr ""
+#~ "Vil du tillade indgćende telnet-forbindelser?\n"
+#~ "Dette er virkeligt usikkert som vi har forklaret i det foregćende "
+#~ "billede. Vi\n"
+#~ "anbefaler stærkt at du svarer NEJ her og bruger ssh i stedet for telnet.\n"
+
+#~ msgid ""
+#~ "Are you running an FTP server here that you need accessible to the\n"
+#~ "Internet? If you are, we strongly recommend that you only use it for\n"
+#~ "Anonymous transfers. Any passwords sent by FTP can be stolen by some\n"
+#~ "attackers, since FTP also uses no encryption for transferring passwords.\n"
+#~ msgstr ""
+#~ "Kűrer du en FTP-tjeneste pć denne maskine som du har brug for at hele\n"
+#~ "internettet har adgang til? Hvis du har sć anbefaler vi stærkt at du kun\n"
+#~ "bruger den til anonyme overfűrsler. En hvilkensomhelst adgangskode sendt\n"
+#~ "over FTP kan stjæles af visse angribere, siden FTP heller ikke bruger\n"
+#~ "kryptering til at overfűre adgangskoder.\n"
+
+#~ msgid ""
+#~ "Are you running a mail server here? If you're sending you \n"
+#~ "messages through pine, mutt or any other text-based mail client,\n"
+#~ "you probably are. Otherwise, you should firewall this off.\n"
#~ "\n"
#~ msgstr ""
+#~ "Kűrer du en post-server her? Hvis du sender beskeder med\n"
+#~ "pine, mutt eller en anden tekstbaseret post-klient er det sandsynligt.\n"
+#~ "Ellers bűr du skærme den væk.\n"
#~ "\n"
-#~ "Drakbackup aktiviteter via $net_proto:\n"
+
+#~ msgid ""
+#~ "Are you running a POP or IMAP server here? This would\n"
+#~ "be used to host non-web-based mail accounts for people via \n"
+#~ "this machine.\n"
+#~ "\n"
+#~ msgstr ""
+#~ "Kűrer du en POP- eller IMAP-tjeneste her? Dette kan bruges til at betjene "
+#~ "ikke-webaserede postkonti for folk via denne maskine.\n"
#~ "\n"
#~ msgid ""
-#~ "This level is to be used with care. It makes your system more easy to "
-#~ "use,\n"
-#~ " but very sensitive: it must not be used for a machine "
-#~ "connected to others\n"
-#~ " or to the Internet. There is no password access."
+#~ "You appear to be running a 2.2 kernel. If your network IP\n"
+#~ "is automatically set by a computer in your home or office \n"
+#~ "(dynamically assigned), we need to allow for this. Is\n"
+#~ "this the case?\n"
#~ msgstr ""
-#~ "Dette niveau skal bruges med omtanke. Det gűr dit system nemmere at "
-#~ "bruge, men er meget sćrbart: det mć ikke bruges til en maskine der er i "
-#~ "et netværk eller har forbindelse til Internettet. Der er ikke nogen "
-#~ "kontrol af adgangskoder."
+#~ "Du ser ud til at kűre en 2.2-kerne. Hvis din IP-netværksadresse\n"
+#~ "bliver sat automatisk af en maskine i dit hjem eller kontor\n"
+#~ "(dynamisk tildelt) bűr vi tillade dette. Er dette tilfældet?\n"
#~ msgid ""
-#~ "With this security level, the use of this system as a server becomes "
-#~ "possible.\n"
-#~ " The security is now high enough to use the system as a "
-#~ "server which can accept\n"
-#~ " connections from many clients. Note: if your machine is "
-#~ "only a client on the Internet, you should choose a lower level."
+#~ "Is your computer getting time syncronized to another computer?\n"
+#~ "Mostly, this is used by medium-large Unix/Linux organizations\n"
+#~ "to synchronize time for logging and such. If you're not part\n"
+#~ "of a larger office and haven't heard of this, you probably \n"
+#~ "aren't."
+#~ msgstr ""
+#~ "Fćr din maskine tiden synkroniseret efter en anden maskine?\n"
+#~ "Oftest er dette brugt af stűrre Unix/Linux-organisationer for at\n"
+#~ "synkronisere tiden for logning og lignende. Hvis du ikke er en del\n"
+#~ "af et stűrre kontor og ikke har hűrt om dette er det sandsynligvis\n"
+#~ "ikke tilfældet."
+
+#~ msgid ""
+#~ "Configuration complete. May we write these changes to disk?\n"
+#~ "\n"
+#~ "\n"
+#~ "\n"
#~ msgstr ""
-#~ "Med dette sikkerhedsniveau kan brug som server komme pć tale.\n"
-#~ "Sikkerheden er nu hűj nok til at systemet kan bruges som server som "
-#~ "tillader forbindelser fra mange klienter. Bemærk: hvis din maskine kun er "
-#~ "en klient pć internettet bűr du hellere vælge et lavere niveau."
+#~ "Konfigurationen er færdig. Skal vi skrive disse ændringer til disken?\n"
+#~ "\n"
+#~ "\n"
+#~ "\n"
-#~ msgid "Basic Options"
-#~ msgstr "Basale valgmuligheder"
+#~ msgid "Can't open %s for writing: %s\n"
+#~ msgstr "Kan ikke ćbne %s for skrivning: %s\n"
-#~ msgid "Security Checks"
-#~ msgstr "Sikkerhedkontroller"
+#~ msgid "No I don't need DHCP"
+#~ msgstr "Nej, jeg har ikke brug for DHCP"
-#~ msgid "WARNING: $warning"
-#~ msgstr "Advarsel: $warning"
+#~ msgid "Yes I need DHCP"
+#~ msgstr "Ja, jeg har brug for DHCP"
-#~ msgid "$descr"
-#~ msgstr "$descr"
+#~ msgid "No I don't need NTP"
+#~ msgstr "Nej, jeg har ikke brug for NTP"
-#~ msgid "Data list to include on CDROM."
-#~ msgstr "Dataliste som skal medtages pć cdrom."
+#~ msgid "Yes I need NTP"
+#~ msgstr "Ja, jeg har brug for NTP"
-#~ msgid "Please choose your CD space"
-#~ msgstr "Vælg din cd-plads"
+#~ msgid "Don't Save"
+#~ msgstr "Gem ikke"
-#~ msgid "Please enter the cd writer speed"
-#~ msgstr "Indtast hastighed pć cd-brænder"
+#~ msgid "Save & Quit"
+#~ msgstr "Gem og afslut"
-#~ msgid "Please check if you want to erase your CDRW before"
-#~ msgstr "Markér om du vil slette din CDRW fűr ny skrivning"
+#~ msgid "Firewall Configuration Wizard"
+#~ msgstr "Vejleder til brandmurskonfiguration"
-#~ msgid "Please enter your CD Writer device name (ex: 0,1,0)"
-#~ msgstr "Indtast navnet pć enheden for din cd-brænder (fx: 0,1,0)"
+#~ msgid "No (firewall this off from the internet)"
+#~ msgstr "Nej (sæt en brandmur op mod internettet)"
-#~ msgid "Please check if you want to include install boot on your CD."
-#~ msgstr "Markér om du űnsker at medtage installeringsopstart pć din cd."
+#~ msgid "Yes (allow this through the firewall)"
+#~ msgstr "Nej (tillad dette gennem brandmuren)"
+
+#~ msgid "Please Wait... Verifying installed packages"
+#~ msgstr "Vent venligst..., kontrollerer installerede pakker"
+
+#~ msgid ""
+#~ "Failure installing the needed packages: %s and Bastille.\n"
+#~ " Try to install them manually."
+#~ msgstr ""
+#~ "Kunne ikke installere de krævede pakker: %s og Bastille.\n"
+#~ " Prűv at installere dem manuelt."
diff --git a/perl-install/share/po/de.po b/perl-install/share/po/de.po
index 465f2f857..b7088a3da 100644
--- a/perl-install/share/po/de.po
+++ b/perl-install/share/po/de.po
@@ -5,8 +5,8 @@
msgid ""
msgstr ""
"Project-Id-Version: MandrakeInstaller\n"
-"POT-Creation-Date: 2002-08-21 15:44+0200\n"
-"PO-Revision-Date: 2002-08-13 23:16+0200\n"
+"POT-Creation-Date: 2002-09-02 20:14+0200\n"
+"PO-Revision-Date: 2002-08-31 11:53+0200\n"
"Last-Translator: Stefan Siegel <siegel@linux-mandrake.com>\n"
"Language-Team: German Translation Team <cooker-i18n@linux-mandrake.com>\n"
"MIME-Version: 1.0\n"
@@ -49,19 +49,19 @@ msgstr "32 MB"
msgid "64 MB or more"
msgstr "64 MB oder mehr"
-#: ../../Xconfig/card.pm_.c:201
+#: ../../Xconfig/card.pm_.c:203
msgid "Choose a X server"
msgstr "WĂ€hlen Sie einen X Server"
-#: ../../Xconfig/card.pm_.c:201
+#: ../../Xconfig/card.pm_.c:203
msgid "X server"
msgstr "X Server"
-#: ../../Xconfig/card.pm_.c:228
+#: ../../Xconfig/card.pm_.c:230
msgid "Multi-head configuration"
msgstr "Mehrkarten-Einstellung"
-#: ../../Xconfig/card.pm_.c:229
+#: ../../Xconfig/card.pm_.c:231
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
@@ -69,27 +69,27 @@ msgstr ""
"Ihr System erlaubt die Verwendung einer Mehrkarten Konfiguration.\n"
"Was wollen Sie tun?"
-#: ../../Xconfig/card.pm_.c:284
+#: ../../Xconfig/card.pm_.c:286
msgid "Select the memory size of your graphics card"
msgstr "WĂ€hlen Sie die SpeichergrĂ¶ĂŸe Ihrer Grafikkarte"
-#: ../../Xconfig/card.pm_.c:345
+#: ../../Xconfig/card.pm_.c:347
msgid "XFree configuration"
msgstr "XFree konfigurieren"
-#: ../../Xconfig/card.pm_.c:347
+#: ../../Xconfig/card.pm_.c:349
msgid "Which configuration of XFree do you want to have?"
msgstr "Welche XFree-Konfiguration wollen Sie verwenden?"
-#: ../../Xconfig/card.pm_.c:379
+#: ../../Xconfig/card.pm_.c:381
msgid "Configure all heads independently"
msgstr "Alle Karten getrennt konfigurieren"
-#: ../../Xconfig/card.pm_.c:380
+#: ../../Xconfig/card.pm_.c:382
msgid "Use Xinerama extension"
msgstr "Xinerama Erweiterung verwenden"
-#: ../../Xconfig/card.pm_.c:384
+#: ../../Xconfig/card.pm_.c:386
#, c-format
msgid "Configure only card \"%s\"%s"
msgstr "Nur Karte „%s“ (%s) konfigurieren"
@@ -100,13 +100,13 @@ msgstr "Nur Karte „%s“ (%s) konfigurieren"
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:435
+#: ../../Xconfig/card.pm_.c:410 ../../Xconfig/card.pm_.c:436
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s with 3D hardware acceleration"
msgstr "XFree %s mit 3D-Hardwarebeschleunigung"
-#: ../../Xconfig/card.pm_.c:412
+#: ../../Xconfig/card.pm_.c:413
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -116,17 +116,17 @@ msgstr ""
"XFree %s. Ihre Karte wird auch von XFree %s unterstĂŒtzt, wodurch Sie \n"
"bessere 2D-UnterstĂŒtzung erhalten können."
-#: ../../Xconfig/card.pm_.c:414 ../../Xconfig/card.pm_.c:437
+#: ../../Xconfig/card.pm_.c:415 ../../Xconfig/card.pm_.c:438
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr "Ihre Grafikkarte kann mit XFree %s 3D-hardwarebeschleunigt werden."
-#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:443
+#: ../../Xconfig/card.pm_.c:423 ../../Xconfig/card.pm_.c:444
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s mit EXPERIMENTELLER 3D-Hardwarebeschleunigung"
-#: ../../Xconfig/card.pm_.c:425
+#: ../../Xconfig/card.pm_.c:426
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -139,7 +139,7 @@ msgstr ""
"XFree %s unterstĂŒtzt, wodurch Sie bessere 2D-UnterstĂŒtzung erhalten \n"
"können."
-#: ../../Xconfig/card.pm_.c:428 ../../Xconfig/card.pm_.c:445
+#: ../../Xconfig/card.pm_.c:429 ../../Xconfig/card.pm_.c:446
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
@@ -149,52 +149,53 @@ msgstr ""
"XFree %s. BEMERKUNG: DIESE FUNKTION IST NOCH IM EXPERIMENTIERSTADIUM \n"
"UND KANN ZUM STEHENBLEIBEN IHRES RECHNERS FÜHREN."
-#: ../../Xconfig/card.pm_.c:451
+#: ../../Xconfig/card.pm_.c:452
msgid "Xpmac (installation display driver)"
msgstr "Xpmac (Installationsbildschirmtreiber)"
-#: ../../Xconfig/main.pm_.c:78 ../../Xconfig/main.pm_.c:79
-#: ../../Xconfig/monitor.pm_.c:94 ../../any.pm_.c:974
+#: ../../Xconfig/main.pm_.c:76 ../../Xconfig/main.pm_.c:77
+#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:977
msgid "Custom"
msgstr "Benutzerdefiniert"
-#: ../../Xconfig/main.pm_.c:104
+#: ../../Xconfig/main.pm_.c:102
msgid "Graphic Card"
msgstr "Grafikkarte"
-#: ../../Xconfig/main.pm_.c:107 ../../Xconfig/monitor.pm_.c:91
+#: ../../Xconfig/main.pm_.c:105 ../../Xconfig/monitor.pm_.c:93
msgid "Monitor"
msgstr "Monitor"
-#: ../../Xconfig/main.pm_.c:110 ../../Xconfig/resolution_and_depth.pm_.c:209
+#: ../../Xconfig/main.pm_.c:108 ../../Xconfig/resolution_and_depth.pm_.c:209
msgid "Resolution"
msgstr "Auflösung"
-#: ../../Xconfig/main.pm_.c:114
+#: ../../Xconfig/main.pm_.c:113
msgid "Test"
msgstr "Test"
-#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:59
-#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/removable.pm_.c:25
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:63
+#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/removable.pm_.c:25
#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "Optionen"
#: ../../Xconfig/main.pm_.c:121 ../../Xconfig/resolution_and_depth.pm_.c:268
-#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:281
+#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:275
#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
-#: ../../interactive.pm_.c:351 ../../interactive/http.pm_.c:104
+#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:104
#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
-#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:156
-#: ../../my_gtk.pm_.c:284 ../../my_gtk.pm_.c:307
-#: ../../standalone/drakbackup_.c:3324 ../../standalone/drakbackup_.c:3419
-#: ../../standalone/drakbackup_.c:3438
+#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:159
+#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310
+#: ../../standalone/drakbackup_.c:3972 ../../standalone/drakbackup_.c:4067
+#: ../../standalone/drakbackup_.c:4086
msgid "Ok"
msgstr "OK"
#: ../../Xconfig/main.pm_.c:121 ../../diskdrake/dav.pm_.c:24
-#: ../../printerdrake.pm_.c:2933 ../../standalone/logdrake_.c:224
+#: ../../harddrake/ui.pm_.c:98 ../../printerdrake.pm_.c:3155
+#: ../../standalone/logdrake_.c:224
msgid "Quit"
msgstr "Verlassen"
@@ -211,27 +212,27 @@ msgstr ""
"\n"
"%s"
-#: ../../Xconfig/monitor.pm_.c:91
+#: ../../Xconfig/monitor.pm_.c:93
msgid "Choose a monitor"
msgstr "WĂ€hlen Sie Ihren Monitor"
-#: ../../Xconfig/monitor.pm_.c:95
+#: ../../Xconfig/monitor.pm_.c:97
msgid "Plug'n Play"
msgstr "Plug'n'Play"
-#: ../../Xconfig/monitor.pm_.c:96 ../../mouse.pm_.c:45
+#: ../../Xconfig/monitor.pm_.c:98 ../../mouse.pm_.c:46
msgid "Generic"
msgstr "Generisch"
-#: ../../Xconfig/monitor.pm_.c:97 ../../harddrake/ui.pm_.c:36
+#: ../../Xconfig/monitor.pm_.c:99 ../../harddrake/ui.pm_.c:37
msgid "Vendor"
msgstr "Hersteller"
-#: ../../Xconfig/monitor.pm_.c:107
+#: ../../Xconfig/monitor.pm_.c:109
msgid "Plug'n Play probing failed. Please choose a precise monitor"
-msgstr ""
+msgstr "Das Plug'n'Play testen schlug fehl. Bitte wÀhlen Sie einen Monitor."
-#: ../../Xconfig/monitor.pm_.c:112
+#: ../../Xconfig/monitor.pm_.c:114
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -252,11 +253,11 @@ msgstr ""
"könnten. Im Zweifelsfall wÀhlen Sie bitte eine konservativere \n"
"Einstellung."
-#: ../../Xconfig/monitor.pm_.c:119
+#: ../../Xconfig/monitor.pm_.c:121
msgid "Horizontal refresh rate"
msgstr "Horizontale Wiederholfrequenz"
-#: ../../Xconfig/monitor.pm_.c:120
+#: ../../Xconfig/monitor.pm_.c:122
msgid "Vertical refresh rate"
msgstr "Vertikale Wiederholfrequenz"
@@ -293,36 +294,40 @@ msgstr "WÀhlen Sie bitte Auflösung und Farbtiefe"
msgid "Graphics card: %s"
msgstr "Grafikkarte: %s"
-#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1015
-#: ../../bootlook.pm_.c:334 ../../diskdrake/smbnfs_gtk.pm_.c:87
-#: ../../install_steps_gtk.pm_.c:412 ../../install_steps_gtk.pm_.c:470
-#: ../../install_steps_interactive.pm_.c:576 ../../interactive.pm_.c:142
-#: ../../interactive.pm_.c:351 ../../interactive/http.pm_.c:105
+#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1018
+#: ../../bootlook.pm_.c:338 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:406 ../../install_steps_gtk.pm_.c:464
+#: ../../install_steps_interactive.pm_.c:560 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:105
#: ../../interactive/newt.pm_.c:174 ../../interactive/stdio.pm_.c:39
-#: ../../interactive/stdio.pm_.c:143 ../../my_gtk.pm_.c:155
-#: ../../my_gtk.pm_.c:159 ../../my_gtk.pm_.c:284
-#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1990
-#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3278
-#: ../../standalone/drakbackup_.c:3311 ../../standalone/drakbackup_.c:3337
-#: ../../standalone/drakbackup_.c:3364 ../../standalone/drakbackup_.c:3391
-#: ../../standalone/drakbackup_.c:3451 ../../standalone/drakbackup_.c:3478
-#: ../../standalone/drakbackup_.c:3504 ../../standalone/drakconnect_.c:115
-#: ../../standalone/drakconnect_.c:147 ../../standalone/drakconnect_.c:289
-#: ../../standalone/drakconnect_.c:537 ../../standalone/drakconnect_.c:679
-#: ../../standalone/drakfloppy_.c:234 ../../standalone/drakfloppy_.c:383
-#: ../../standalone/drakfont_.c:970 ../../standalone/drakgw_.c:598
-#: ../../standalone/logdrake_.c:224 ../../standalone/logdrake_.c:528
-#: ../../standalone/tinyfirewall_.c:64
+#: ../../interactive/stdio.pm_.c:143 ../../my_gtk.pm_.c:158
+#: ../../my_gtk.pm_.c:162 ../../my_gtk.pm_.c:287
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:2124
+#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3926
+#: ../../standalone/drakbackup_.c:3959 ../../standalone/drakbackup_.c:3985
+#: ../../standalone/drakbackup_.c:4012 ../../standalone/drakbackup_.c:4039
+#: ../../standalone/drakbackup_.c:4099 ../../standalone/drakbackup_.c:4126
+#: ../../standalone/drakbackup_.c:4156 ../../standalone/drakbackup_.c:4182
+#: ../../standalone/drakconnect_.c:115 ../../standalone/drakconnect_.c:147
+#: ../../standalone/drakconnect_.c:289 ../../standalone/drakconnect_.c:537
+#: ../../standalone/drakconnect_.c:679 ../../standalone/drakfloppy_.c:234
+#: ../../standalone/drakfloppy_.c:383 ../../standalone/drakfont_.c:970
+#: ../../standalone/drakgw_.c:536 ../../standalone/logdrake_.c:224
+#: ../../standalone/logdrake_.c:526
msgid "Cancel"
msgstr " Abbruch "
-#: ../../Xconfig/test.pm_.c:26
+#: ../../Xconfig/test.pm_.c:30
+msgid "Test of the configuration"
+msgstr "PrĂŒfen der Einstellungen"
+
+#: ../../Xconfig/test.pm_.c:31
msgid "Do you want to test the configuration?"
msgstr "Möchten Sie die vorgenommenen Einstellungen prĂŒfen?"
-#: ../../Xconfig/test.pm_.c:26
-msgid "Test of the configuration"
-msgstr "PrĂŒfen der Einstellungen"
+#: ../../Xconfig/test.pm_.c:31
+msgid "Warning: testing this graphic card may freeze your computer"
+msgstr "Warnung: Testen dieser Grafikkarte kann Ihren Rechner anhalten"
#: ../../Xconfig/various.pm_.c:29
#, c-format
@@ -466,26 +471,22 @@ msgstr "Boot von DOS/Windows aus (loadlin)"
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:158 ../../any.pm_.c:190
+#: ../../any.pm_.c:159 ../../any.pm_.c:190
msgid "Bootloader main options"
msgstr "Haupt-Optionen des Betriebssystemstarters"
-#: ../../any.pm_.c:159 ../../any.pm_.c:191
+#: ../../any.pm_.c:160 ../../any.pm_.c:191
msgid "Bootloader to use"
msgstr "Zu verwendender Betriebssystemstarter"
-#: ../../any.pm_.c:161
+#: ../../any.pm_.c:162
msgid "Bootloader installation"
msgstr "Installation des Betriebssystemstarters"
-#: ../../any.pm_.c:163 ../../any.pm_.c:193
+#: ../../any.pm_.c:164 ../../any.pm_.c:193
msgid "Boot device"
msgstr "Boot GerÀt"
-#: ../../any.pm_.c:164
-msgid "LBA (doesn't work on old BIOSes)"
-msgstr "LBA (funktioniert nicht mit alten BIOS Versionen)"
-
#: ../../any.pm_.c:165
msgid "Compact"
msgstr "Kompakt"
@@ -502,16 +503,17 @@ msgstr "Video Modus"
msgid "Delay before booting default image"
msgstr "Wartezeit vorm Starten des Standard Betriebssystems"
-#: ../../any.pm_.c:170 ../../any.pm_.c:786
+#: ../../any.pm_.c:170 ../../any.pm_.c:788
#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1111 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:743 ../../printerdrake.pm_.c:858
-#: ../../standalone/drakconnect_.c:624 ../../standalone/drakconnect_.c:649
+#: ../../install_steps_interactive.pm_.c:1096 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:850 ../../printerdrake.pm_.c:965
+#: ../../standalone/drakbackup_.c:3528 ../../standalone/drakconnect_.c:624
+#: ../../standalone/drakconnect_.c:649
msgid "Password"
msgstr "Passwort"
-#: ../../any.pm_.c:171 ../../any.pm_.c:787
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../any.pm_.c:171 ../../any.pm_.c:789
+#: ../../install_steps_interactive.pm_.c:1097
msgid "Password (again)"
msgstr "Passwort (erneut)"
@@ -547,14 +549,14 @@ msgstr ""
"Die Option „Gebrauch der Kommandozeilen-Parameter einschrĂ€nken“ ist ohne \n"
"Angabe eines Passworts wirkungslos"
-#: ../../any.pm_.c:184 ../../any.pm_.c:762
-#: ../../diskdrake/interactive.pm_.c:1180
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../any.pm_.c:184 ../../any.pm_.c:764
+#: ../../diskdrake/interactive.pm_.c:1191
+#: ../../install_steps_interactive.pm_.c:1091
msgid "Please try again"
msgstr "Bitte versuchen Sie es erneut"
-#: ../../any.pm_.c:184 ../../any.pm_.c:762
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../any.pm_.c:184 ../../any.pm_.c:764
+#: ../../install_steps_interactive.pm_.c:1091
msgid "The passwords do not match"
msgstr "Die Passwörter stimmen nicht ĂŒberein"
@@ -605,16 +607,16 @@ msgstr ""
"Hier sind die verschiedenen EintrÀge.\n"
"Sie können weitere hinzufĂŒgen oder existierende Ă€ndern."
-#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1483
-#: ../../standalone/drakbackup_.c:1596 ../../standalone/drakfont_.c:1011
+#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1558
+#: ../../standalone/drakbackup_.c:1671 ../../standalone/drakfont_.c:1011
#: ../../standalone/drakfont_.c:1054
msgid "Add"
msgstr "HinzufĂŒgen"
-#: ../../any.pm_.c:257 ../../any.pm_.c:774 ../../diskdrake/dav.pm_.c:60
+#: ../../any.pm_.c:257 ../../any.pm_.c:776 ../../diskdrake/dav.pm_.c:64
#: ../../diskdrake/hd_gtk.pm_.c:153 ../../diskdrake/removable.pm_.c:27
#: ../../diskdrake/smbnfs_gtk.pm_.c:88 ../../interactive/http.pm_.c:153
-#: ../../standalone/drakbackup_.c:2696
+#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2772
msgid "Done"
msgstr "Fertig"
@@ -626,7 +628,7 @@ msgstr "Ändern"
msgid "Which type of entry do you want to add?"
msgstr "Welche Art Eintrag wollen Sie hinzufĂŒgen?"
-#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1630
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1705
msgid "Linux"
msgstr "Linux"
@@ -720,13 +722,13 @@ msgstr "VerfĂŒgen Sie ĂŒber weitere?"
msgid "Do you have any %s interfaces?"
msgstr "VerfĂŒgen Sie ĂŒber %s Schnittstellen?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:821 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:283
+#: ../../any.pm_.c:660 ../../any.pm_.c:823 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:286
msgid "No"
msgstr "Nein"
-#: ../../any.pm_.c:660 ../../any.pm_.c:820 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:283
+#: ../../any.pm_.c:660 ../../any.pm_.c:822 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:286
msgid "Yes"
msgstr "Ja"
@@ -827,39 +829,47 @@ msgstr "„su“ erlauben"
msgid "access to administrative files"
msgstr "Zugriff auf Verwaltungsdateien"
-#: ../../any.pm_.c:758
+#: ../../any.pm_.c:754
+msgid "access to network tools"
+msgstr "Zugriff auf Netzwerk-Werkzeuge"
+
+#: ../../any.pm_.c:755
+msgid "access to compilation tools"
+msgstr "Zugriff auf Compiler"
+
+#: ../../any.pm_.c:760
#, c-format
msgid "(already added %s)"
msgstr "(%s wurde bereits hinzugefĂŒgt)"
-#: ../../any.pm_.c:763
+#: ../../any.pm_.c:765
msgid "This password is too simple"
msgstr "Dieses Passwort ist zu einfach"
-#: ../../any.pm_.c:764
+#: ../../any.pm_.c:766
msgid "Please give a user name"
msgstr "Bitte geben Sie ein Benutzerkennzeichen an"
-#: ../../any.pm_.c:765
+#: ../../any.pm_.c:767
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
"Das Benutzerkennzeichen sollte nur aus Kleinbuchstaben, Ziffern, \n"
"„-“ und „_“ bestehen"
-#: ../../any.pm_.c:766
+#: ../../any.pm_.c:768
msgid "The user name is too long"
msgstr "Dieses Benutzerkennzeichen ist zu lang"
-#: ../../any.pm_.c:767
+#: ../../any.pm_.c:769
msgid "This user name is already added"
msgstr "Dieses Benutzerkennzeichen existiert bereits"
-#: ../../any.pm_.c:771
+#: ../../any.pm_.c:773
msgid "Add user"
msgstr "Benutzer hinzufĂŒgen"
-#: ../../any.pm_.c:772
+#: ../../any.pm_.c:774
#, c-format
msgid ""
"Enter a user\n"
@@ -868,32 +878,32 @@ msgstr ""
"Benutzerkennzeichen einrichten\n"
"%s"
-#: ../../any.pm_.c:773
+#: ../../any.pm_.c:775
msgid "Accept user"
msgstr "Benutzer akzeptieren"
-#: ../../any.pm_.c:784
+#: ../../any.pm_.c:786
msgid "Real name"
msgstr "Benutzername"
-#: ../../any.pm_.c:785 ../../printerdrake.pm_.c:742
-#: ../../printerdrake.pm_.c:857
+#: ../../any.pm_.c:787 ../../printerdrake.pm_.c:849
+#: ../../printerdrake.pm_.c:964
msgid "User name"
msgstr "Benutzerkennzeichen"
-#: ../../any.pm_.c:788
+#: ../../any.pm_.c:790
msgid "Shell"
msgstr "Shell"
-#: ../../any.pm_.c:790
+#: ../../any.pm_.c:792
msgid "Icon"
msgstr "Symbol"
-#: ../../any.pm_.c:817
+#: ../../any.pm_.c:819
msgid "Autologin"
msgstr "Autologin"
-#: ../../any.pm_.c:818
+#: ../../any.pm_.c:820
msgid ""
"I can set up your computer to automatically log on one user.\n"
"Do you want to use this feature?"
@@ -902,19 +912,19 @@ msgstr ""
"ein Benutzer angemeldet wird.\n"
"Wollen Sie davon Gebrauch machen?"
-#: ../../any.pm_.c:822
+#: ../../any.pm_.c:824
msgid "Choose the default user:"
msgstr "WĂ€hlen Sie den Standard-Nutzer:"
-#: ../../any.pm_.c:823
+#: ../../any.pm_.c:825
msgid "Choose the window manager to run:"
msgstr "WĂ€hlen Sie den Window-Manager, den Sie verwenden wollen:"
-#: ../../any.pm_.c:838
+#: ../../any.pm_.c:840
msgid "Please choose a language to use."
msgstr "Bitte wÀhlen Sie die zu verwendende Sprache."
-#: ../../any.pm_.c:840
+#: ../../any.pm_.c:842
msgid ""
"Mandrake Linux can support multiple languages. Select\n"
"the languages you would like to install. They will be available\n"
@@ -923,37 +933,37 @@ msgstr ""
"Sie können andere Sprachen auswÀhlen, die nach der Installation zur "
"VerfĂŒgung stehen."
-#: ../../any.pm_.c:854 ../../install_steps_interactive.pm_.c:708
+#: ../../any.pm_.c:856 ../../install_steps_interactive.pm_.c:692
#: ../../standalone/drakxtv_.c:73
msgid "All"
msgstr "Alle"
-#: ../../any.pm_.c:974
+#: ../../any.pm_.c:977
msgid "Allow all users"
msgstr "Allen Benutzern erlauben"
-#: ../../any.pm_.c:974
+#: ../../any.pm_.c:977
msgid "No sharing"
msgstr "Kein Teilen"
-#: ../../any.pm_.c:984 ../../standalone.pm_.c:57
+#: ../../any.pm_.c:987 ../../install_any.pm_.c:1183 ../../standalone.pm_.c:58
#, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "Das Paket %s muss installiert sein. Soll ich es installieren?"
-#: ../../any.pm_.c:987
+#: ../../any.pm_.c:990
msgid ""
"You can export using NFS or Samba. Please select which you'd like to use."
msgstr ""
"Sie können die Dateien mittels Samba oder NFS anbieten. Welche Variante "
"wollen Sie?"
-#: ../../any.pm_.c:995 ../../standalone.pm_.c:61
+#: ../../any.pm_.c:998 ../../install_any.pm_.c:1188 ../../standalone.pm_.c:63
#, c-format
msgid "Mandatory package %s is missing"
msgstr "Das zwingend benötigte Paket „%s“ fehlt."
-#: ../../any.pm_.c:1001
+#: ../../any.pm_.c:1004
msgid ""
"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
@@ -968,11 +978,11 @@ msgstr ""
"Mit „Benutzerdefiniert“ können Sie eine Einstellung pro Kennzeichen "
"vornehmen.\n"
-#: ../../any.pm_.c:1015
+#: ../../any.pm_.c:1018
msgid "Launch userdrake"
msgstr "Userdrake starten"
-#: ../../any.pm_.c:1017
+#: ../../any.pm_.c:1020
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
@@ -981,31 +991,31 @@ msgstr ""
"Sie können UserDrake verwenden, um Benutzerkennzeichen in diese Gruppe "
"aufzunehmen."
-#: ../../any.pm_.c:1068
+#: ../../any.pm_.c:1071
msgid "Welcome To Crackers"
msgstr "Cracker-Spielplatz"
-#: ../../any.pm_.c:1069
+#: ../../any.pm_.c:1072
msgid "Poor"
msgstr "Schwach"
-#: ../../any.pm_.c:1070 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1073 ../../mouse.pm_.c:31
msgid "Standard"
msgstr "Standard"
-#: ../../any.pm_.c:1071
+#: ../../any.pm_.c:1074
msgid "High"
msgstr "Hoch"
-#: ../../any.pm_.c:1072
+#: ../../any.pm_.c:1075
msgid "Higher"
msgstr "Höher"
-#: ../../any.pm_.c:1073
+#: ../../any.pm_.c:1076
msgid "Paranoid"
msgstr "Paranoid"
-#: ../../any.pm_.c:1076
+#: ../../any.pm_.c:1079
msgid ""
"This level is to be used with care. It makes your system more easy to use,\n"
"but very sensitive: it must not be used for a machine connected to others\n"
@@ -1016,7 +1026,7 @@ msgstr ""
"der Rechner nicht als Netzwerkrechner (LAN oder Modem) verwendet werden, \n"
"da Angreifer mangels Passwort an Ihre Daten gelangen können!"
-#: ../../any.pm_.c:1079
+#: ../../any.pm_.c:1082
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -1024,7 +1034,7 @@ msgstr ""
"Passwortabfragen sind nun eingeschaltet, aber die Verwendung als \n"
"Netzwerkrechner kann hier nicht empfohlen werden."
-#: ../../any.pm_.c:1080
+#: ../../any.pm_.c:1083
msgid ""
"This is the standard security recommended for a computer that will be used "
"to connect to the Internet as a client."
@@ -1032,7 +1042,7 @@ msgstr ""
"Das ist die Standard-Sicherheitsebene fĂŒr Rechner, mit Internetzugang \n"
"als Klient."
-#: ../../any.pm_.c:1081
+#: ../../any.pm_.c:1084
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
@@ -1040,7 +1050,7 @@ msgstr ""
"Es gibt bereits mehr Restriktionen und jede Nacht werden automatische "
"Sicherheitstests durchgefĂŒhrt."
-#: ../../any.pm_.c:1082
+#: ../../any.pm_.c:1085
msgid ""
"With this security level, the use of this system as a server becomes "
"possible.\n"
@@ -1057,7 +1067,7 @@ msgstr ""
"Klient ins Internet gehen, besser eine niedrigere Sicherhetsebene \n"
"verwenden sollte."
-#: ../../any.pm_.c:1085
+#: ../../any.pm_.c:1088
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
"security features are at their maximum."
@@ -1065,28 +1075,28 @@ msgstr ""
"Diese Ebene bietet die selbe FunktionalitÀt, wie die vorherige. Jedoch ist \n"
"das System nun komplett geschlossen. Es ist die höchste Sicherheitsebene."
-#: ../../any.pm_.c:1091
+#: ../../any.pm_.c:1094
msgid "DrakSec Basic Options"
msgstr "DrakSec Grundeinstellungen"
-#: ../../any.pm_.c:1092
+#: ../../any.pm_.c:1095
msgid "Please choose the desired security level"
msgstr "WĂ€hlen Sie Ihre Sicherheitsebene"
-#: ../../any.pm_.c:1095
+#: ../../any.pm_.c:1098
msgid "Security level"
msgstr "Sicherheitsebene"
-#: ../../any.pm_.c:1097
+#: ../../any.pm_.c:1100
msgid "Use libsafe for servers"
msgstr "„libsafe“ bei Servern verwenden"
-#: ../../any.pm_.c:1098
+#: ../../any.pm_.c:1101
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr "Eine Bibliothek, die gegen sog. „buffer overflow“-Angriffe schĂŒtzt."
-#: ../../any.pm_.c:1099
+#: ../../any.pm_.c:1102
msgid "Security Administrator (login or email)"
msgstr "Sicherheitsadministrator (Kennzeichen oder E-Mail)"
@@ -1130,59 +1140,59 @@ msgstr ""
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:935
+#: ../../bootloader.pm_.c:932
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Willkommen zum Betriebssystem-Starter GRUB!"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:938
+#: ../../bootloader.pm_.c:935
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "Verwenden Sie die Tasten %c und %c um ein Betriebssystem zu w„hlen."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:941
+#: ../../bootloader.pm_.c:938
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Zum Starten des BS drcken Sie <Return>. Mit <e> k”nnen Sie das"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:941
msgid "commands before booting, or 'c' for a command-line."
msgstr "Kommando vorher editieren, mit <c> erhalten Sie eine Kommandozeile."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:947
+#: ../../bootloader.pm_.c:944
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "In %d Sekunden wird das gew„hlte BS automatisch gestartet."
-#: ../../bootloader.pm_.c:951
+#: ../../bootloader.pm_.c:948
msgid "not enough room in /boot"
msgstr "Sie haben nicht genug Platz in „/boot“"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1051
+#: ../../bootloader.pm_.c:1048
msgid "Desktop"
msgstr "ArbeitsoberflÀche"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1053
+#: ../../bootloader.pm_.c:1050
msgid "Start Menu"
msgstr "Start-MenĂŒ"
-#: ../../bootloader.pm_.c:1072
+#: ../../bootloader.pm_.c:1069
#, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr ""
"Sie können den Betriebssystemstarter\n"
"nicht auf einer %s Partition installieren!\n"
-#: ../../bootlook.pm_.c:45
+#: ../../bootlook.pm_.c:45 ../../standalone/draksplash_.c:25
msgid "no help implemented yet.\n"
msgstr "Es steht noch keine Hilfe zur VerfĂŒgung.\n"
@@ -1190,8 +1200,8 @@ msgstr "Es steht noch keine Hilfe zur VerfĂŒgung.\n"
msgid "Boot Style Configuration"
msgstr "Konfiguration der Boot-Einstellungen"
-#: ../../bootlook.pm_.c:78 ../../harddrake/ui.pm_.c:59
-#: ../../harddrake/ui.pm_.c:60 ../../standalone/drakfloppy_.c:81
+#: ../../bootlook.pm_.c:78 ../../harddrake/ui.pm_.c:62
+#: ../../harddrake/ui.pm_.c:63 ../../standalone/drakfloppy_.c:81
#: ../../standalone/logdrake_.c:101
msgid "/_File"
msgstr "/_Datei"
@@ -1201,7 +1211,7 @@ msgstr "/_Datei"
msgid "/File/_Quit"
msgstr "/Datei/B_eenden"
-#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:60
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:63
#: ../../standalone/drakfloppy_.c:82 ../../standalone/logdrake_.c:107
msgid "<control>Q"
msgstr "<control>Q"
@@ -1242,70 +1252,75 @@ msgstr "Themen installieren"
msgid "Display theme under console"
msgstr "Bildschirm-Thema fĂŒr die Konsole"
-#: ../../bootlook.pm_.c:166
+#: ../../bootlook.pm_.c:145
+msgid "Create new theme"
+msgstr "Ein neues Thema erzeugen"
+
+#: ../../bootlook.pm_.c:169
msgid "Can't create Bootsplash preview"
msgstr "Ich kan keine Start-Vorschau erzeugen"
-#: ../../bootlook.pm_.c:166 ../../bootlook.pm_.c:184 ../../bootlook.pm_.c:187
-#: ../../bootlook.pm_.c:190 ../../bootlook.pm_.c:220 ../../bootlook.pm_.c:222
-#: ../../bootlook.pm_.c:232 ../../bootlook.pm_.c:241 ../../bootlook.pm_.c:248
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:336
-#: ../../diskdrake/interactive.pm_.c:351 ../../diskdrake/interactive.pm_.c:464
-#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../bootlook.pm_.c:169 ../../bootlook.pm_.c:187 ../../bootlook.pm_.c:190
+#: ../../bootlook.pm_.c:193 ../../bootlook.pm_.c:223 ../../bootlook.pm_.c:225
+#: ../../bootlook.pm_.c:235 ../../bootlook.pm_.c:244 ../../bootlook.pm_.c:251
+#: ../../diskdrake/dav.pm_.c:73 ../../diskdrake/hd_gtk.pm_.c:116
+#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/interactive.pm_.c:355
+#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/interactive.pm_.c:474
+#: ../../diskdrake/smbnfs_gtk.pm_.c:45 ../../fsedit.pm_.c:239
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:365 ../../interactive/http.pm_.c:119
-#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:80
+#: ../../interactive/http.pm_.c:119 ../../interactive/http.pm_.c:120
+#: ../../standalone/draksplash_.c:32
msgid "Error"
msgstr "Fehler"
-#: ../../bootlook.pm_.c:183
+#: ../../bootlook.pm_.c:186
#, c-format
msgid "Backup %s to %s.old"
msgstr "Anlegen einer Sicherheitskopie von „%s“ unter „%s.old“."
-#: ../../bootlook.pm_.c:184
+#: ../../bootlook.pm_.c:187
msgid "unable to backup lilo message"
msgstr "Ich kann keine Sicherheitskopie der LILO-Nachricht anlegen."
-#: ../../bootlook.pm_.c:186
+#: ../../bootlook.pm_.c:189
#, c-format
msgid "Copy %s to %s"
msgstr "Kopiere „%s“ nach „%s“"
-#: ../../bootlook.pm_.c:187
+#: ../../bootlook.pm_.c:190
msgid "can't change lilo message"
msgstr "Ich kann die LILO-Nachricht nicht Àern."
-#: ../../bootlook.pm_.c:190
+#: ../../bootlook.pm_.c:193
msgid "Lilo message not found"
msgstr "Ich kann die LILO Nachricht nicht finden."
-#: ../../bootlook.pm_.c:220
+#: ../../bootlook.pm_.c:223
msgid "Can't write /etc/sysconfig/bootsplash."
msgstr "Ich kann „/etc/sysconfig/bootsplash“ nicht anlegen."
-#: ../../bootlook.pm_.c:220
+#: ../../bootlook.pm_.c:223
#, c-format
msgid "Write %s"
msgstr "Schreiben von %s"
-#: ../../bootlook.pm_.c:222
+#: ../../bootlook.pm_.c:225
msgid ""
"Can't write /etc/sysconfig/bootsplash\n"
"File not found."
msgstr "Ich kann „/etc/sysconfig/bootsplash“ nicht anlegen."
-#: ../../bootlook.pm_.c:233
+#: ../../bootlook.pm_.c:236
#, c-format
msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
msgstr "Ich kann „mkinitrd -f /boot/initrd-%s.img %s“ nicht ausfĂŒhren."
-#: ../../bootlook.pm_.c:236
+#: ../../bootlook.pm_.c:239
#, c-format
-msgid "Make initrd 'mkinird -f /boot/initrd-%s.img %s'."
+msgid "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
msgstr "Erstellen der RamDisk: „mkinitrd -f /boot/initrd-%s.img %s“."
-#: ../../bootlook.pm_.c:242
+#: ../../bootlook.pm_.c:245
msgid ""
"Can't relaunch LiLo!\n"
"Launch \"lilo\" as root in command line to complete LiLo theme installation."
@@ -1314,23 +1329,24 @@ msgstr ""
"Benutzerkennzeichen „lilo“ in einer Konsole aus, um die Themen-Installation "
"zu beenden."
-#: ../../bootlook.pm_.c:246
+#: ../../bootlook.pm_.c:249
msgid "Relaunch 'lilo'"
msgstr "LILO ausfĂŒhren"
-#: ../../bootlook.pm_.c:248
+#: ../../bootlook.pm_.c:251 ../../standalone/draksplash_.c:161
+#: ../../standalone/draksplash_.c:330 ../../standalone/draksplash_.c:454
msgid "Notice"
msgstr "Anmerkung"
-#: ../../bootlook.pm_.c:249
+#: ../../bootlook.pm_.c:252
msgid "LiLo and Bootsplash themes installation successfull"
msgstr "Installation des LILO- und Start-Themas erfolgreich."
-#: ../../bootlook.pm_.c:249
+#: ../../bootlook.pm_.c:252
msgid "Theme installation failed!"
msgstr "Die Installation des Themas schlug fehl!"
-#: ../../bootlook.pm_.c:258
+#: ../../bootlook.pm_.c:261
#, c-format
msgid ""
"You are currently using %s as your boot manager.\n"
@@ -1339,22 +1355,21 @@ msgstr ""
"Sie verwenden momentan „%s“ als Betriebssystemstarter.\n"
"WĂ€hlen Sie „Konfigurieren“, wenn Sie den Assistenten starten wollen."
-#: ../../bootlook.pm_.c:260 ../../standalone/drakbackup_.c:2352
-#: ../../standalone/drakbackup_.c:2362 ../../standalone/drakbackup_.c:2372
-#: ../../standalone/drakbackup_.c:2380 ../../standalone/drakgw_.c:592
-#: ../../standalone/tinyfirewall_.c:58
+#: ../../bootlook.pm_.c:263 ../../standalone/drakbackup_.c:2427
+#: ../../standalone/drakbackup_.c:2437 ../../standalone/drakbackup_.c:2447
+#: ../../standalone/drakbackup_.c:2455 ../../standalone/drakgw_.c:530
msgid "Configure"
msgstr "Konfigurieren"
-#: ../../bootlook.pm_.c:267
+#: ../../bootlook.pm_.c:270
msgid "Splash selection"
msgstr "Startschirmauswahl"
-#: ../../bootlook.pm_.c:270
+#: ../../bootlook.pm_.c:273
msgid "Themes"
msgstr "Themen"
-#: ../../bootlook.pm_.c:272
+#: ../../bootlook.pm_.c:275
msgid ""
"\n"
"Select a theme for\n"
@@ -1371,44 +1386,44 @@ msgstr ""
"unterschiedliche\n"
"Varianten wÀhlen."
-#: ../../bootlook.pm_.c:275
+#: ../../bootlook.pm_.c:278
msgid "Lilo screen"
msgstr "LILO-MenĂŒ"
-#: ../../bootlook.pm_.c:279
+#: ../../bootlook.pm_.c:283
msgid "Bootsplash"
msgstr "Startschirm"
-#: ../../bootlook.pm_.c:314
+#: ../../bootlook.pm_.c:318
msgid "System mode"
msgstr "System-Modus"
-#: ../../bootlook.pm_.c:316
+#: ../../bootlook.pm_.c:320
msgid "Launch the graphical environment when your system starts"
msgstr "X-Window nach dem Hochfahren automatisch starten "
-#: ../../bootlook.pm_.c:321
+#: ../../bootlook.pm_.c:325
msgid "No, I don't want autologin"
msgstr "Nein ich will kein Autologin"
-#: ../../bootlook.pm_.c:323
+#: ../../bootlook.pm_.c:327
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "Ja ich will Autologin mit diesem Kennzeichen und dieser OberflÀche"
-#: ../../bootlook.pm_.c:333 ../../network/netconnect.pm_.c:101
+#: ../../bootlook.pm_.c:337 ../../network/netconnect.pm_.c:101
#: ../../standalone/drakTermServ_.c:173 ../../standalone/drakTermServ_.c:300
-#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:3513
-#: ../../standalone/drakbackup_.c:4290 ../../standalone/drakconnect_.c:108
+#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4191
+#: ../../standalone/drakbackup_.c:4952 ../../standalone/drakconnect_.c:108
#: ../../standalone/drakconnect_.c:140 ../../standalone/drakconnect_.c:296
#: ../../standalone/drakconnect_.c:435 ../../standalone/drakconnect_.c:521
#: ../../standalone/drakconnect_.c:564 ../../standalone/drakconnect_.c:667
#: ../../standalone/drakfloppy_.c:376 ../../standalone/drakfont_.c:612
#: ../../standalone/drakfont_.c:799 ../../standalone/drakfont_.c:876
-#: ../../standalone/drakfont_.c:963 ../../standalone/logdrake_.c:521
+#: ../../standalone/drakfont_.c:963 ../../standalone/logdrake_.c:519
msgid "OK"
msgstr " Ok "
-#: ../../bootlook.pm_.c:403
+#: ../../bootlook.pm_.c:407
#, c-format
msgid "can not open /etc/inittab for reading: %s"
msgstr "Ich kann „/etc/inittab“ nicht zum lesen öffnen: %s"
@@ -1506,48 +1521,50 @@ msgstr "Östereich"
msgid "United States"
msgstr "Vereinigte Staaten von Amerika"
-#: ../../detect_devices.pm_.c:599 ../../detect_devices.pm_.c:641
-#: ../../detect_devices.pm_.c:803
-msgid "Unknown Model"
-msgstr "Unbekanntes Modell"
-
#: ../../diskdrake/dav.pm_.c:23
-#, fuzzy
msgid "New"
msgstr "Neu"
-#: ../../diskdrake/dav.pm_.c:57
+#: ../../diskdrake/dav.pm_.c:59 ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/smbnfs_gtk.pm_.c:81
+msgid "Unmount"
+msgstr "AushÀngen"
+
+#: ../../diskdrake/dav.pm_.c:60 ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/smbnfs_gtk.pm_.c:82
+msgid "Mount"
+msgstr "EinhÀngen"
+
+#: ../../diskdrake/dav.pm_.c:61
msgid "Server"
msgstr "Server"
-#: ../../diskdrake/dav.pm_.c:58 ../../diskdrake/interactive.pm_.c:375
-#: ../../diskdrake/interactive.pm_.c:558 ../../diskdrake/interactive.pm_.c:585
+#: ../../diskdrake/dav.pm_.c:62 ../../diskdrake/interactive.pm_.c:379
+#: ../../diskdrake/interactive.pm_.c:568 ../../diskdrake/interactive.pm_.c:595
#: ../../diskdrake/removable.pm_.c:24 ../../diskdrake/removable_gtk.pm_.c:15
#: ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr "EinhÀngpunkt"
-#: ../../diskdrake/dav.pm_.c:68
-#, fuzzy
+#: ../../diskdrake/dav.pm_.c:81
msgid "Please enter the WebDAV server URL"
-msgstr "Bitte geben Sie die CD-Brenngeschwindigkeit ein"
+msgstr "Bitte geben Sie die WebDAV-Server URL an"
-#: ../../diskdrake/dav.pm_.c:71
+#: ../../diskdrake/dav.pm_.c:84
msgid "The URL must begin with http:// or https://"
-msgstr ""
+msgstr "Die URL muss mit „http://“ oder „https://“ beginnen!"
-#: ../../diskdrake/dav.pm_.c:92
-#, fuzzy
+#: ../../diskdrake/dav.pm_.c:105
msgid "Server: "
-msgstr "Server"
+msgstr "Server: "
-#: ../../diskdrake/dav.pm_.c:93 ../../diskdrake/interactive.pm_.c:435
-#: ../../diskdrake/interactive.pm_.c:1079
-#: ../../diskdrake/interactive.pm_.c:1153
+#: ../../diskdrake/dav.pm_.c:106 ../../diskdrake/interactive.pm_.c:440
+#: ../../diskdrake/interactive.pm_.c:1089
+#: ../../diskdrake/interactive.pm_.c:1164
msgid "Mount point: "
msgstr "EinhÀngpunkt: "
-#: ../../diskdrake/dav.pm_.c:94 ../../diskdrake/interactive.pm_.c:1159
+#: ../../diskdrake/dav.pm_.c:107 ../../diskdrake/interactive.pm_.c:1170
#, c-format
msgid "Options: %s"
msgstr "Optionen: %s"
@@ -1556,8 +1573,9 @@ msgstr "Optionen: %s"
msgid "Please make a backup of your data first"
msgstr "Bitte machen Sie erst eine Sicherheitskopie Ihrer Daten!"
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:924
-#: ../../diskdrake/interactive.pm_.c:933 ../../diskdrake/interactive.pm_.c:999
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:934
+#: ../../diskdrake/interactive.pm_.c:943
+#: ../../diskdrake/interactive.pm_.c:1009
msgid "Read carefully!"
msgstr "Lesen Sie bitte aufmerksam!"
@@ -1595,10 +1613,14 @@ msgid "Please click on a partition"
msgstr "Bitte klicken Sie auf eine Partition"
#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
-#: ../../install_steps_gtk.pm_.c:471
+#: ../../install_steps_gtk.pm_.c:465
msgid "Details"
msgstr "Details"
+#: ../../diskdrake/hd_gtk.pm_.c:252
+msgid "No hard drives found"
+msgstr "Keine Festplatten gefunden"
+
#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Ext2"
msgstr "Ext2"
@@ -1623,13 +1645,13 @@ msgstr "SunOS"
msgid "Swap"
msgstr "Auslagerung"
-#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1105
msgid "Empty"
msgstr "Leer"
-#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:331
-#: ../../install_steps_gtk.pm_.c:389 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1679
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:325
+#: ../../install_steps_gtk.pm_.c:383 ../../mouse.pm_.c:165
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1754
msgid "Other"
msgstr "Andere"
@@ -1637,12 +1659,12 @@ msgstr "Andere"
msgid "Filesystem types:"
msgstr "Dateisystemtypen:"
-#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:397
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:402
msgid "Create"
msgstr "Erzeugen"
-#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:376
-#: ../../diskdrake/interactive.pm_.c:521 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:380
+#: ../../diskdrake/interactive.pm_.c:531 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "Typ"
@@ -1652,7 +1674,7 @@ msgstr "Typ"
msgid "Use ``%s'' instead"
msgstr "Verwenden Sie stattdessen „%s“"
-#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:389
msgid "Delete"
msgstr "Löschen"
@@ -1660,7 +1682,7 @@ msgstr "Löschen"
msgid "Use ``Unmount'' first"
msgstr "Verwenden Sie erst „umount“"
-#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:513
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:518
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
@@ -1668,72 +1690,72 @@ msgstr ""
"Nach Änderung des Partitionstyps von %s, werden sĂ€mtliche Daten darauf "
"gelöscht"
-#: ../../diskdrake/interactive.pm_.c:173
+#: ../../diskdrake/interactive.pm_.c:174
msgid "Choose a partition"
msgstr "WĂ€hlen Sie eine Partition"
-#: ../../diskdrake/interactive.pm_.c:173
+#: ../../diskdrake/interactive.pm_.c:174
msgid "Choose another partition"
msgstr "WĂ€hlen Sie eine andere Partition"
-#: ../../diskdrake/interactive.pm_.c:198
+#: ../../diskdrake/interactive.pm_.c:199
msgid "Exit"
msgstr "Verlassen"
-#: ../../diskdrake/interactive.pm_.c:220
+#: ../../diskdrake/interactive.pm_.c:221
msgid "Toggle to expert mode"
msgstr "In den Experten-Modus wechseln"
-#: ../../diskdrake/interactive.pm_.c:220
+#: ../../diskdrake/interactive.pm_.c:221
msgid "Toggle to normal mode"
msgstr "In den Normal-Modus wechseln"
-#: ../../diskdrake/interactive.pm_.c:220
+#: ../../diskdrake/interactive.pm_.c:221
msgid "Undo"
msgstr "RĂŒckgĂ€ngig"
-#: ../../diskdrake/interactive.pm_.c:239
+#: ../../diskdrake/interactive.pm_.c:240
msgid "Continue anyway?"
msgstr "Wollen Sie trotzdem fortfahren?"
-#: ../../diskdrake/interactive.pm_.c:244
+#: ../../diskdrake/interactive.pm_.c:245
msgid "Quit without saving"
msgstr "Beenden ohne speichern"
-#: ../../diskdrake/interactive.pm_.c:244
+#: ../../diskdrake/interactive.pm_.c:245
msgid "Quit without writing the partition table?"
msgstr "Beenden ohne die Partitionstabelle zu speichern?"
-#: ../../diskdrake/interactive.pm_.c:249
+#: ../../diskdrake/interactive.pm_.c:250
msgid "Do you want to save /etc/fstab modifications"
msgstr "Möchten Sie die vorgenommenen Änderungen in „/etc/fstab“ speichern?"
-#: ../../diskdrake/interactive.pm_.c:261
+#: ../../diskdrake/interactive.pm_.c:263
msgid "Auto allocate"
msgstr "Automatisches Erstellen"
-#: ../../diskdrake/interactive.pm_.c:261
+#: ../../diskdrake/interactive.pm_.c:263
msgid "Clear all"
msgstr "Alles löschen"
-#: ../../diskdrake/interactive.pm_.c:261
+#: ../../diskdrake/interactive.pm_.c:263
#: ../../install_steps_interactive.pm_.c:214
msgid "More"
msgstr "Mehr"
-#: ../../diskdrake/interactive.pm_.c:264
+#: ../../diskdrake/interactive.pm_.c:267
msgid "Hard drive information"
msgstr "Festplatten-Informationen"
-#: ../../diskdrake/interactive.pm_.c:294
+#: ../../diskdrake/interactive.pm_.c:298
msgid "All primary partitions are used"
msgstr "Alle PrimÀrpartitionen sind in Gebrauch"
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:299
msgid "I can't add any more partition"
msgstr "Ich kann keinen weiteren Partitionen hinzufĂŒgen"
-#: ../../diskdrake/interactive.pm_.c:296
+#: ../../diskdrake/interactive.pm_.c:300
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -1741,31 +1763,31 @@ msgstr ""
"Um mehr Partitionen einrichten zu können, mĂŒssen Sie zunĂ€chst eine Partition "
"löschen und anschließend eine erweiterte Partition erzeugen"
-#: ../../diskdrake/interactive.pm_.c:306
+#: ../../diskdrake/interactive.pm_.c:310
msgid "Save partition table"
msgstr "Partitionstabelle schreiben"
-#: ../../diskdrake/interactive.pm_.c:307
+#: ../../diskdrake/interactive.pm_.c:311
msgid "Restore partition table"
msgstr "Partitionstabelle wiederherstellen"
-#: ../../diskdrake/interactive.pm_.c:308
+#: ../../diskdrake/interactive.pm_.c:312
msgid "Rescue partition table"
msgstr "Partitionstabelle retten"
-#: ../../diskdrake/interactive.pm_.c:310
+#: ../../diskdrake/interactive.pm_.c:314
msgid "Reload partition table"
msgstr "Partitionstabelle neu laden"
-#: ../../diskdrake/interactive.pm_.c:315
+#: ../../diskdrake/interactive.pm_.c:319
msgid "Removable media automounting"
msgstr "Wechselmedien automatisch EinhÀngen"
-#: ../../diskdrake/interactive.pm_.c:324 ../../diskdrake/interactive.pm_.c:344
+#: ../../diskdrake/interactive.pm_.c:328 ../../diskdrake/interactive.pm_.c:348
msgid "Select file"
msgstr "Datei auswÀhlen"
-#: ../../diskdrake/interactive.pm_.c:331
+#: ../../diskdrake/interactive.pm_.c:335
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1773,11 +1795,11 @@ msgstr ""
"Die gesicherte Partitionstabelle hat nicht dieselbe GrĂ¶ĂŸe\n"
"Soll trotzdem fortgefahren werden?"
-#: ../../diskdrake/interactive.pm_.c:345
+#: ../../diskdrake/interactive.pm_.c:349
msgid "Warning"
msgstr "Warnung"
-#: ../../diskdrake/interactive.pm_.c:346
+#: ../../diskdrake/interactive.pm_.c:350
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1785,79 +1807,71 @@ msgstr ""
"Legen Sie eine Diskette in das Laufwerk\n"
"Alle Daten auf dieser Diskette werden gelöscht!"
-#: ../../diskdrake/interactive.pm_.c:357
+#: ../../diskdrake/interactive.pm_.c:361
msgid "Trying to rescue partition table"
msgstr "Ich Versuche, die Partitionstabelle zu retten"
-#: ../../diskdrake/interactive.pm_.c:363
+#: ../../diskdrake/interactive.pm_.c:367
msgid "Detailed information"
msgstr "AusfĂŒhrliche Informationen"
-#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:652
+#: ../../diskdrake/interactive.pm_.c:382 ../../diskdrake/interactive.pm_.c:662
msgid "Resize"
msgstr "GrĂ¶ĂŸe verĂ€ndern"
-#: ../../diskdrake/interactive.pm_.c:379 ../../diskdrake/interactive.pm_.c:705
+#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/interactive.pm_.c:715
msgid "Move"
msgstr "Bewegen"
-#: ../../diskdrake/interactive.pm_.c:380
+#: ../../diskdrake/interactive.pm_.c:384
msgid "Format"
msgstr "Formatieren"
-#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/smbnfs_gtk.pm_.c:82
-msgid "Mount"
-msgstr "EinhÀngen"
-
-#: ../../diskdrake/interactive.pm_.c:382
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Add to RAID"
msgstr "Zum RAID hinzufĂŒgen"
-#: ../../diskdrake/interactive.pm_.c:383
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Add to LVM"
msgstr "Zum LVM hinzufĂŒgen"
-#: ../../diskdrake/interactive.pm_.c:384 ../../diskdrake/smbnfs_gtk.pm_.c:81
-msgid "Unmount"
-msgstr "AushÀngen"
-
-#: ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/interactive.pm_.c:390
msgid "Remove from RAID"
msgstr "Löschen aus dem RAID"
-#: ../../diskdrake/interactive.pm_.c:387
+#: ../../diskdrake/interactive.pm_.c:391
msgid "Remove from LVM"
msgstr "Löschen aus dem LVM"
-#: ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/interactive.pm_.c:392
msgid "Modify RAID"
msgstr "RAID modifizieren"
-#: ../../diskdrake/interactive.pm_.c:389
+#: ../../diskdrake/interactive.pm_.c:393
msgid "Use for loopback"
msgstr "Als Loopback verwenden"
-#: ../../diskdrake/interactive.pm_.c:428
+#: ../../diskdrake/interactive.pm_.c:433
msgid "Create a new partition"
msgstr "Erzeuge eine neue Partition"
-#: ../../diskdrake/interactive.pm_.c:431
+#: ../../diskdrake/interactive.pm_.c:436
msgid "Start sector: "
msgstr "Anfangssektor: "
-#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:805
+#: ../../diskdrake/interactive.pm_.c:438 ../../diskdrake/interactive.pm_.c:815
msgid "Size in MB: "
msgstr "GrĂ¶ĂŸe in MB:"
-#: ../../diskdrake/interactive.pm_.c:434 ../../diskdrake/interactive.pm_.c:806
+#: ../../diskdrake/interactive.pm_.c:439 ../../diskdrake/interactive.pm_.c:816
msgid "Filesystem type: "
msgstr "Dateisystemtyp: "
-#: ../../diskdrake/interactive.pm_.c:439
+#: ../../diskdrake/interactive.pm_.c:444
msgid "Preference: "
msgstr "Einstellung: "
-#: ../../diskdrake/interactive.pm_.c:464
+#: ../../diskdrake/interactive.pm_.c:469
msgid ""
"You can't create a new partition\n"
"(since you reached the maximal number of primary partitions).\n"
@@ -1868,33 +1882,33 @@ msgstr ""
"eine primÀre Partioion und legen Sie stattdessen eine erweiterte \n"
"Partition an."
-#: ../../diskdrake/interactive.pm_.c:494
+#: ../../diskdrake/interactive.pm_.c:499
msgid "Remove the loopback file?"
msgstr "Die Loopback-Datei entfernen?"
-#: ../../diskdrake/interactive.pm_.c:519
+#: ../../diskdrake/interactive.pm_.c:529
msgid "Change partition type"
msgstr "Partitionstyp Àndern"
-#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:530 ../../diskdrake/removable.pm_.c:48
msgid "Which filesystem do you want?"
msgstr "Welches Dateisystem wollen Sie verwenden?"
-#: ../../diskdrake/interactive.pm_.c:526
+#: ../../diskdrake/interactive.pm_.c:536
msgid "Switching from ext2 to ext3"
msgstr "Konvertiere ext2 zu ext3"
-#: ../../diskdrake/interactive.pm_.c:556
+#: ../../diskdrake/interactive.pm_.c:566
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "Wo wollen Sie die Loopback-Datei %s einhÀngen?"
-#: ../../diskdrake/interactive.pm_.c:557
+#: ../../diskdrake/interactive.pm_.c:567
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Wo wollen Sie das GerÀt %s einhÀngen?"
-#: ../../diskdrake/interactive.pm_.c:563
+#: ../../diskdrake/interactive.pm_.c:573
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1902,140 +1916,140 @@ msgstr ""
"Ich kann diesen EinhĂ€ngpunkt nicht zurĂŒcksetzen, da diese Partition als \n"
"Loopback verwendet wird. Bitte entfernen Sie erst diesen Loopback."
-#: ../../diskdrake/interactive.pm_.c:584
-#, fuzzy, c-format
+#: ../../diskdrake/interactive.pm_.c:594
+#, c-format
msgid "Where do you want to mount %s?"
-msgstr "Wo wollen Sie das GerÀt %s einhÀngen?"
+msgstr "Wo wollen Sie „%s“ einhĂ€ngen?"
-#: ../../diskdrake/interactive.pm_.c:608
+#: ../../diskdrake/interactive.pm_.c:618
msgid "Computing FAT filesystem bounds"
msgstr "Errechne die Grenzen des FAT Dateisystems"
-#: ../../diskdrake/interactive.pm_.c:608 ../../diskdrake/interactive.pm_.c:667
-#: ../../install_interactive.pm_.c:131
+#: ../../diskdrake/interactive.pm_.c:618 ../../diskdrake/interactive.pm_.c:677
+#: ../../install_interactive.pm_.c:133
msgid "Resizing"
msgstr "Neuberechnen der GrĂ¶ĂŸe"
-#: ../../diskdrake/interactive.pm_.c:640
+#: ../../diskdrake/interactive.pm_.c:650
msgid "This partition is not resizeable"
msgstr "Die GrĂ¶ĂŸe dieser Partition kann ich nicht Ă€ndern"
-#: ../../diskdrake/interactive.pm_.c:645
+#: ../../diskdrake/interactive.pm_.c:655
msgid "All data on this partition should be backed-up"
msgstr "Sie sollten ein Backup sÀmtlicher Daten dieser Partition erstellen"
-#: ../../diskdrake/interactive.pm_.c:647
+#: ../../diskdrake/interactive.pm_.c:657
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr ""
"Durch VerĂ€nderung der PartitionsgrĂ¶ĂŸe von %s, gehen sĂ€mtliche Daten darauf "
"verloren"
-#: ../../diskdrake/interactive.pm_.c:652
+#: ../../diskdrake/interactive.pm_.c:662
msgid "Choose the new size"
msgstr "WĂ€hlen Sie die neue GrĂ¶ĂŸe"
-#: ../../diskdrake/interactive.pm_.c:653
+#: ../../diskdrake/interactive.pm_.c:663
msgid "New size in MB: "
msgstr "Neue GrĂ¶ĂŸe in MB:"
-#: ../../diskdrake/interactive.pm_.c:706
+#: ../../diskdrake/interactive.pm_.c:716
msgid "Which disk do you want to move it to?"
msgstr "Zu welcher Platte wollen Sie wechseln?"
-#: ../../diskdrake/interactive.pm_.c:707
+#: ../../diskdrake/interactive.pm_.c:717
msgid "Sector"
msgstr "Sektor"
-#: ../../diskdrake/interactive.pm_.c:708
+#: ../../diskdrake/interactive.pm_.c:718
msgid "Which sector do you want to move it to?"
msgstr "Zu welchem Sektor wollen Sie wechseln?"
-#: ../../diskdrake/interactive.pm_.c:711
+#: ../../diskdrake/interactive.pm_.c:721
msgid "Moving"
msgstr "wechsele"
-#: ../../diskdrake/interactive.pm_.c:711
+#: ../../diskdrake/interactive.pm_.c:721
msgid "Moving partition..."
msgstr "Bewege Partition..."
-#: ../../diskdrake/interactive.pm_.c:728
+#: ../../diskdrake/interactive.pm_.c:738
msgid "Choose an existing RAID to add to"
msgstr "WĂ€hlen Sie einen vorhandenen RAID"
-#: ../../diskdrake/interactive.pm_.c:729 ../../diskdrake/interactive.pm_.c:746
+#: ../../diskdrake/interactive.pm_.c:739 ../../diskdrake/interactive.pm_.c:756
msgid "new"
msgstr "Neu"
-#: ../../diskdrake/interactive.pm_.c:744
+#: ../../diskdrake/interactive.pm_.c:754
msgid "Choose an existing LVM to add to"
msgstr "WĂ€hlen Sie einen vorhandenen LVM"
-#: ../../diskdrake/interactive.pm_.c:749
+#: ../../diskdrake/interactive.pm_.c:759
msgid "LVM name?"
msgstr "LVM Name?"
-#: ../../diskdrake/interactive.pm_.c:790
+#: ../../diskdrake/interactive.pm_.c:800
msgid "This partition can't be used for loopback"
msgstr "Diese Partition kann nicht als Loopback verwendet werden"
-#: ../../diskdrake/interactive.pm_.c:803
+#: ../../diskdrake/interactive.pm_.c:813
msgid "Loopback"
msgstr "Loopback"
-#: ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:814
msgid "Loopback file name: "
msgstr "Name der Loopback-Datei: "
-#: ../../diskdrake/interactive.pm_.c:809
+#: ../../diskdrake/interactive.pm_.c:819
msgid "Give a file name"
msgstr "Dateinamen angeben"
-#: ../../diskdrake/interactive.pm_.c:812
+#: ../../diskdrake/interactive.pm_.c:822
msgid "File already used by another loopback, choose another one"
msgstr ""
"Diese Datei wird bereits von einer anderen Loopback-VerknĂŒpfung verwendet, "
"wÀhlen Sie eine andere Datei."
-#: ../../diskdrake/interactive.pm_.c:813
+#: ../../diskdrake/interactive.pm_.c:823
msgid "File already exists. Use it?"
msgstr ""
"Es existiert bereits eine Datei mit diesem Namen. Soll ich sie verwenden?"
-#: ../../diskdrake/interactive.pm_.c:836
+#: ../../diskdrake/interactive.pm_.c:846
msgid "Mount options"
msgstr "EinhÀng-Optionen"
-#: ../../diskdrake/interactive.pm_.c:843
+#: ../../diskdrake/interactive.pm_.c:853
msgid "Various"
msgstr "Verschiedene"
-#: ../../diskdrake/interactive.pm_.c:907 ../../standalone/drakfloppy_.c:103
+#: ../../diskdrake/interactive.pm_.c:917 ../../standalone/drakfloppy_.c:103
msgid "device"
msgstr "GerÀt"
-#: ../../diskdrake/interactive.pm_.c:908
+#: ../../diskdrake/interactive.pm_.c:918
msgid "level"
msgstr "Level"
-#: ../../diskdrake/interactive.pm_.c:909
+#: ../../diskdrake/interactive.pm_.c:919
msgid "chunk size"
msgstr "BlockgrĂ¶ĂŸe"
-#: ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:934
msgid "Be careful: this operation is dangerous."
msgstr "Vorsicht: Diese Aktion ist gefÀhrlich."
-#: ../../diskdrake/interactive.pm_.c:939
+#: ../../diskdrake/interactive.pm_.c:949
msgid "What type of partitioning?"
msgstr "Welcher Partitionstyp?"
-#: ../../diskdrake/interactive.pm_.c:955
+#: ../../diskdrake/interactive.pm_.c:965
#, c-format
msgid "The package %s is needed. Install it?"
msgstr "Das Paket %s wird benötigt. Soll ich es installieren?"
-#: ../../diskdrake/interactive.pm_.c:969
+#: ../../diskdrake/interactive.pm_.c:979
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -2048,7 +2062,7 @@ msgstr ""
"verwenden \n"
"LILO nicht, dann benötigen Sie keine „/boot“ Partition."
-#: ../../diskdrake/interactive.pm_.c:973
+#: ../../diskdrake/interactive.pm_.c:983
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -2061,7 +2075,7 @@ msgstr ""
"Betriebssystemstarter einsetzen wollen, vergessen Sie bitte nicht, eine „/"
"boot“ Partition anzulegen!"
-#: ../../diskdrake/interactive.pm_.c:979
+#: ../../diskdrake/interactive.pm_.c:989
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
@@ -2073,46 +2087,46 @@ msgstr ""
"„/boot“-Partition arbeiten. Sie sollten also daran denken, eine solche \n"
"Partition zu erstellen."
-#: ../../diskdrake/interactive.pm_.c:999
+#: ../../diskdrake/interactive.pm_.c:1009
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "Die Partitionstabelle der Platte „%s“ wird gespeichert!"
-#: ../../diskdrake/interactive.pm_.c:1003
+#: ../../diskdrake/interactive.pm_.c:1013
msgid "You'll need to reboot before the modification can take place"
msgstr ""
"Sie mĂŒssen Ihren Rechner neu starten, damit die VerĂ€nderungen wirksam werden"
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1024
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr ""
"Nach Formatieren der Partition %s, werden sÀmtliche Daten darauf gelöscht"
-#: ../../diskdrake/interactive.pm_.c:1016
+#: ../../diskdrake/interactive.pm_.c:1026
msgid "Formatting"
msgstr "Formatiere"
-#: ../../diskdrake/interactive.pm_.c:1017
+#: ../../diskdrake/interactive.pm_.c:1027
#, c-format
msgid "Formatting loopback file %s"
-msgstr "Formatiere Loopback-Datei %s"
+msgstr "Formatiere Loopback-Datei „%s“"
-#: ../../diskdrake/interactive.pm_.c:1018
-#: ../../install_steps_interactive.pm_.c:476
+#: ../../diskdrake/interactive.pm_.c:1028
+#: ../../install_steps_interactive.pm_.c:459
#, c-format
msgid "Formatting partition %s"
-msgstr "Formatiere Partition %s"
+msgstr "Formatiere Partition „%s“"
-#: ../../diskdrake/interactive.pm_.c:1029
+#: ../../diskdrake/interactive.pm_.c:1039
msgid "Hide files"
msgstr "Dateien verstecken"
-#: ../../diskdrake/interactive.pm_.c:1029
+#: ../../diskdrake/interactive.pm_.c:1039
msgid "Move files to the new partition"
msgstr "Dateien auf die neue Partition verschieben."
-#: ../../diskdrake/interactive.pm_.c:1030
+#: ../../diskdrake/interactive.pm_.c:1040
#, c-format
msgid ""
"Directory %s already contains data\n"
@@ -2121,83 +2135,83 @@ msgstr ""
"Das Verzeichnis „%s“ enthĂ€lt bereits Daten\n"
"(%s)"
-#: ../../diskdrake/interactive.pm_.c:1041
+#: ../../diskdrake/interactive.pm_.c:1051
msgid "Moving files to the new partition"
msgstr "Dateien auf die neue Partition verschieben."
-#: ../../diskdrake/interactive.pm_.c:1045
+#: ../../diskdrake/interactive.pm_.c:1055
#, c-format
msgid "Copying %s"
msgstr "Kopiere: %s"
-#: ../../diskdrake/interactive.pm_.c:1049
+#: ../../diskdrake/interactive.pm_.c:1059
#, c-format
msgid "Removing %s"
msgstr "Entferne: %s"
-#: ../../diskdrake/interactive.pm_.c:1059
+#: ../../diskdrake/interactive.pm_.c:1069
#, c-format
msgid "partition %s is now known as %s"
msgstr "Die Partition %s heißt nun %s"
-#: ../../diskdrake/interactive.pm_.c:1080
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1090
+#: ../../diskdrake/interactive.pm_.c:1149
msgid "Device: "
msgstr "GerÀt: "
-#: ../../diskdrake/interactive.pm_.c:1081
+#: ../../diskdrake/interactive.pm_.c:1091
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "DOS Laufwerksbuchstabe: %s (vermutlich?)\n"
-#: ../../diskdrake/interactive.pm_.c:1085
-#: ../../diskdrake/interactive.pm_.c:1093
-#: ../../diskdrake/interactive.pm_.c:1157
+#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1103
+#: ../../diskdrake/interactive.pm_.c:1168
msgid "Type: "
msgstr "Typ:"
-#: ../../diskdrake/interactive.pm_.c:1089
+#: ../../diskdrake/interactive.pm_.c:1099
msgid "Name: "
msgstr "Name: "
-#: ../../diskdrake/interactive.pm_.c:1097
+#: ../../diskdrake/interactive.pm_.c:1107
#, c-format
msgid "Start: sector %s\n"
msgstr "Anfang: Sektor %s\n"
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1108
#, c-format
msgid "Size: %s"
msgstr "GrĂ¶ĂŸe: %s"
-#: ../../diskdrake/interactive.pm_.c:1100
+#: ../../diskdrake/interactive.pm_.c:1110
#, c-format
msgid ", %s sectors"
msgstr ", %s Sektoren"
-#: ../../diskdrake/interactive.pm_.c:1102
+#: ../../diskdrake/interactive.pm_.c:1112
#, c-format
msgid "Cylinder %d to %d\n"
msgstr "Zylinder %d bis %d\n"
-#: ../../diskdrake/interactive.pm_.c:1103
+#: ../../diskdrake/interactive.pm_.c:1113
msgid "Formatted\n"
msgstr "Formatiert\n"
-#: ../../diskdrake/interactive.pm_.c:1104
+#: ../../diskdrake/interactive.pm_.c:1114
msgid "Not formatted\n"
msgstr "Nicht formatiert\n"
-#: ../../diskdrake/interactive.pm_.c:1105
+#: ../../diskdrake/interactive.pm_.c:1115
msgid "Mounted\n"
msgstr "EingehÀngt\n"
-#: ../../diskdrake/interactive.pm_.c:1106
+#: ../../diskdrake/interactive.pm_.c:1116
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1108
+#: ../../diskdrake/interactive.pm_.c:1118
#, c-format
msgid ""
"Loopback file(s):\n"
@@ -2206,7 +2220,7 @@ msgstr ""
"Loopback Datei(en):\n"
" %s\n"
-#: ../../diskdrake/interactive.pm_.c:1109
+#: ../../diskdrake/interactive.pm_.c:1119
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -2214,27 +2228,27 @@ msgstr ""
"Partition wird standardmĂ€ĂŸig geladen\n"
" (fĂŒr MS-DOS Boot, nicht jedoch fĂŒr LILO)\n"
-#: ../../diskdrake/interactive.pm_.c:1111
+#: ../../diskdrake/interactive.pm_.c:1121
#, c-format
msgid "Level %s\n"
msgstr "Level %s\n"
-#: ../../diskdrake/interactive.pm_.c:1112
+#: ../../diskdrake/interactive.pm_.c:1122
#, c-format
msgid "Chunk size %s\n"
msgstr "BlockgrĂ¶ĂŸe %s\n"
-#: ../../diskdrake/interactive.pm_.c:1113
+#: ../../diskdrake/interactive.pm_.c:1123
#, c-format
msgid "RAID-disks %s\n"
msgstr "RAID Platten %s\n"
-#: ../../diskdrake/interactive.pm_.c:1115
+#: ../../diskdrake/interactive.pm_.c:1125
#, c-format
msgid "Loopback file name: %s"
msgstr "Dateiname des Loopbacks: %s"
-#: ../../diskdrake/interactive.pm_.c:1118
+#: ../../diskdrake/interactive.pm_.c:1128
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -2247,7 +2261,7 @@ msgstr ""
"Partition handelt. Sie sollten sie\n"
"daher unverÀndert lassen.\n"
-#: ../../diskdrake/interactive.pm_.c:1121
+#: ../../diskdrake/interactive.pm_.c:1131
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2260,58 +2274,62 @@ msgstr ""
"Betriebssysteme auf dem selben\n"
"Rechner.\n"
-#: ../../diskdrake/interactive.pm_.c:1140
+#: ../../diskdrake/interactive.pm_.c:1150
+msgid "Read-only"
+msgstr "Nur lesbar"
+
+#: ../../diskdrake/interactive.pm_.c:1151
#, c-format
msgid "Size: %s\n"
msgstr "GrĂ¶ĂŸe: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1141
+#: ../../diskdrake/interactive.pm_.c:1152
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Geometrie: %s Zylinder, %s Köpfe, %s Sektoren\n"
-#: ../../diskdrake/interactive.pm_.c:1142
+#: ../../diskdrake/interactive.pm_.c:1153
msgid "Info: "
msgstr "Info: "
-#: ../../diskdrake/interactive.pm_.c:1143
+#: ../../diskdrake/interactive.pm_.c:1154
#, c-format
msgid "LVM-disks %s\n"
msgstr "LVM Platten %s\n"
-#: ../../diskdrake/interactive.pm_.c:1144
+#: ../../diskdrake/interactive.pm_.c:1155
#, c-format
msgid "Partition table type: %s\n"
msgstr "Partitionstabellen Typ: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1145
+#: ../../diskdrake/interactive.pm_.c:1156
#, c-format
msgid "on channel %d id %d\n"
msgstr "auf Kanal %d ID %d\n"
-#: ../../diskdrake/interactive.pm_.c:1175
+#: ../../diskdrake/interactive.pm_.c:1186
msgid "Filesystem encryption key"
msgstr "Dateisystem-SchlĂŒssel"
-#: ../../diskdrake/interactive.pm_.c:1176
+#: ../../diskdrake/interactive.pm_.c:1187
msgid "Choose your filesystem encryption key"
msgstr "WĂ€hlen Sie Ihren Dateisystem-SchlĂŒssel (Passwort)"
-#: ../../diskdrake/interactive.pm_.c:1179
+#: ../../diskdrake/interactive.pm_.c:1190
#, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr ""
"Dieses Passwort ist zu einfach (es muss mindestens %d Zeichen lang sein)!"
-#: ../../diskdrake/interactive.pm_.c:1180
+#: ../../diskdrake/interactive.pm_.c:1191
msgid "The encryption keys do not match"
msgstr "Die Passwörter stimmen nicht ĂŒberein"
-#: ../../diskdrake/interactive.pm_.c:1183
+#: ../../diskdrake/interactive.pm_.c:1194
msgid "Encryption key"
msgstr "SchlĂŒssel"
-#: ../../diskdrake/interactive.pm_.c:1184
+#: ../../diskdrake/interactive.pm_.c:1195
msgid "Encryption key (again)"
msgstr "SchlĂŒssel (erneut)"
@@ -2346,7 +2364,7 @@ msgid ""
msgstr ""
"Bitte geben Sie Benutzerkennzeichen, Passwort und DomÀne des Rechners an."
-#: ../../diskdrake/smbnfs_gtk.pm_.c:178
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3527
msgid "Username"
msgstr "Benutzerkennzeichen"
@@ -2358,25 +2376,25 @@ msgstr "DomÀne"
msgid "Search servers"
msgstr "Server suchen"
-#: ../../fs.pm_.c:552 ../../fs.pm_.c:562 ../../fs.pm_.c:566 ../../fs.pm_.c:570
-#: ../../fs.pm_.c:574 ../../fs.pm_.c:578
+#: ../../fs.pm_.c:544 ../../fs.pm_.c:554 ../../fs.pm_.c:558 ../../fs.pm_.c:562
+#: ../../fs.pm_.c:566 ../../fs.pm_.c:570
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s formatieren von %s schlug Fehl"
-#: ../../fs.pm_.c:615
+#: ../../fs.pm_.c:607
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr ""
"Ich bin nicht in der Lage, %s mit einem Dateisystem vom Typ %s zu "
"formatieren."
-#: ../../fs.pm_.c:687 ../../fs.pm_.c:731
+#: ../../fs.pm_.c:681 ../../fs.pm_.c:724
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr "Das EinhÀngen der Partition %s in das Verzeichnis %s schlug fehl."
-#: ../../fs.pm_.c:746 ../../partition_table.pm_.c:602
+#: ../../fs.pm_.c:739 ../../partition_table.pm_.c:598
#, c-format
msgid "error unmounting %s: %s"
msgstr "Fehler beim AushÀngen von %s: %s"
@@ -2393,37 +2411,56 @@ msgstr "mit „/usr“"
msgid "server"
msgstr "Server"
-#: ../../fsedit.pm_.c:472
+#: ../../fsedit.pm_.c:240
+#, c-format
+msgid ""
+"I can't read the partition table of device %s, it's too corrupted for me :(\n"
+"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
+"The other solution is to not allow DrakX to modify the partition table.\n"
+"(the error is %s)\n"
+"\n"
+"Do you agree to loose all the partitions?\n"
+msgstr ""
+"Ich kann die Partitionstabelle von „%s“ nicht verstehen. Sie scheint \n"
+"fehlerhaft zu sein :-(\n"
+"Ich kann fortfahren, indem ich die fehlerhaften Partitionen lösche \n"
+"(dabei gehen ALLE darauf vorhandenen DATEN VERLOREN!). Alternativ können \n"
+"Sie mir jedoch auch verbieten, die Partitionstabelle zu verÀndern.\n"
+"(Folgender Fehler trat auf: „%s“).\n"
+"\n"
+"Sind Sie einverstanden, dass ich die problematischen Partitionen lösche?\n"
+
+#: ../../fsedit.pm_.c:501
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr ""
"Sie können JFS nicht fĂŒr Partitionen verwenden, die kleiner als 16MB sind!"
-#: ../../fsedit.pm_.c:473
+#: ../../fsedit.pm_.c:502
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr ""
"Sie können ReiserFS nicht fĂŒr Partitionen verwenden, die kleiner als 32MB "
"sind!"
-#: ../../fsedit.pm_.c:492
+#: ../../fsedit.pm_.c:521
msgid "Mount points must begin with a leading /"
msgstr "EinhĂ€ngpunkte mĂŒssen mit einem / beginnen."
-#: ../../fsedit.pm_.c:493
+#: ../../fsedit.pm_.c:522
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Es gibt bereits eine Partition, mit dem EinhÀngpunkt %s\n"
-#: ../../fsedit.pm_.c:497
+#: ../../fsedit.pm_.c:526
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr ""
"Sie können kein logisches LVM Medium fĂŒr den EinhĂ€ngpunkt %s verwenden."
-#: ../../fsedit.pm_.c:499
+#: ../../fsedit.pm_.c:528
msgid "This directory should remain within the root filesystem"
msgstr "Dieses Verzeichnis muss in der Verzeichnisbaumwurzel bleiben"
-#: ../../fsedit.pm_.c:501
+#: ../../fsedit.pm_.c:530
msgid ""
"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
"point\n"
@@ -2431,218 +2468,278 @@ msgstr ""
"Sie benötigen ein echtes GNU/Linux Dateisystem (Ext2/Ext3, ReiserFS, XFS "
"oder JFS) fĂŒr diesen EinhĂ€ngpunkt.\n"
-#: ../../fsedit.pm_.c:503
+#: ../../fsedit.pm_.c:532
#, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr ""
"Sie können kein verschlĂŒsseltes Medium fĂŒr den EinhĂ€ngpunkt %s verwenden."
# ../../diskdrak1
-#: ../../fsedit.pm_.c:570
+#: ../../fsedit.pm_.c:599
msgid "Not enough free space for auto-allocating"
msgstr "Nicht genug freier Platz, damit ich selbst Partition anlegen kann."
-#: ../../fsedit.pm_.c:572
+#: ../../fsedit.pm_.c:601
msgid "Nothing to do"
msgstr "Nichts zu tun."
-#: ../../fsedit.pm_.c:665
+#: ../../fsedit.pm_.c:694
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Fehler beim Öffnen von %s zum Schreiben: %s"
-#: ../../fsedit.pm_.c:750
+#: ../../harddrake/sound.pm_.c:155
+msgid "No alternative driver"
+msgstr "Kein alternativer Treiber"
+
+#: ../../harddrake/sound.pm_.c:156
+#, c-format
+msgid "There's no known OSS/ALSA alternative driver for your sound card (%s)"
+msgstr ""
+"Es existiert kein alternativer OSS/ALSA Treiber fĂŒr Ihre Soundkarte (%s)"
+
+#: ../../harddrake/sound.pm_.c:158
+msgid "Sound configuration"
+msgstr "Sound Konfiguration"
+
+#: ../../harddrake/sound.pm_.c:159
+#, c-format
msgid ""
-"An error occurred - no valid devices were found on which to create new "
-"filesystems. Please check your hardware for the cause of this problem"
+"Here you can select an alternative driver (either OSS or ALSA) for your "
+"sound card (%s)"
msgstr ""
-"Ein Fehler ist aufgetreten - es wurden keine gĂŒltigen GerĂ€te gefunden, auf "
-"denen neue Dateisysteme erstellt werden können. Bitte ĂŒberprĂŒfen Sie Ihre "
-"Hardware(-Konfiguration) auf mögliche Fehler und falsche Einstellungen."
+"Hier können Sie einen alternativen Treiber (entweder OSS odr ALSA) fĂŒr Ihre "
+"Soundkarte (%s) auswÀhlen"
+
+#: ../../harddrake/sound.pm_.c:162
+msgid "Driver:"
+msgstr "Treiber:"
-#: ../../fsedit.pm_.c:773
-msgid "You don't have any partitions!"
-msgstr "Sie haben keine Partitionen!"
+#: ../../harddrake/sound.pm_.c:173
+msgid "No known driver"
+msgstr "Kein bekannter Treiber"
+
+#: ../../harddrake/sound.pm_.c:174
+#, c-format
+msgid "There's no known driver for your sound card (%s)"
+msgstr "Es gibt keinen bekannten Treiber fĂŒr Ihre Soundkarte (%s)"
+
+#: ../../harddrake/sound.pm_.c:177
+msgid "Unkown driver"
+msgstr "Unbekannter Treiber"
+
+#: ../../harddrake/sound.pm_.c:178
+#, fuzzy, c-format
+msgid ""
+"The \"%s\" driver for your sound card is unlisted\n"
+"\n"
+"Please send the output of the \"lspcidrake -v\" command to\n"
+"<install at mandrakesoft dot com>\n"
+"with subject: unlisted sound driver \"%s\""
+msgstr ""
+"Der Treiber „%s“ fĂŒr Ihre Karte ist nicht in der Treiberliste\n"
+"\n"
+"Bitte senden Sie die Ausgabe von „lspcidrake -v“ an \n"
+"Thierry Vignaud <tvignaud(at)mandrakesoft.com>\n"
+"Mit der Bretreffzeile: unlisted sound driver"
-#: ../../harddrake/ui.pm_.c:15
+#: ../../harddrake/ui.pm_.c:16
msgid "Model"
msgstr "Modell"
-#: ../../harddrake/ui.pm_.c:15
+#: ../../harddrake/ui.pm_.c:16
msgid "hard disk model"
msgstr "Festplattenmodell"
-#: ../../harddrake/ui.pm_.c:16
+#: ../../harddrake/ui.pm_.c:17
msgid "Channel"
msgstr "Kanal"
-#: ../../harddrake/ui.pm_.c:16
+#: ../../harddrake/ui.pm_.c:17
msgid "EIDE/SCSI channel"
msgstr "EIDE/SCSI Kanal"
-#: ../../harddrake/ui.pm_.c:18
+#: ../../harddrake/ui.pm_.c:19
msgid "Bus"
msgstr "Bus"
-#: ../../harddrake/ui.pm_.c:19
+#: ../../harddrake/ui.pm_.c:20
msgid ""
"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
msgstr ""
+"Der physikalische Bus, an dem sich das GerÀt befindet (etwa: PCI, USB, ...)"
-#: ../../harddrake/ui.pm_.c:20
+#: ../../harddrake/ui.pm_.c:21
msgid "Module"
msgstr "Modul"
-#: ../../harddrake/ui.pm_.c:20
+#: ../../harddrake/ui.pm_.c:21
msgid "the module of the GNU/Linux kernel that handle that device"
-msgstr ""
+msgstr "Das Linux Kernmodul, das UnterstĂŒtzung fĂŒr dieses GerĂ€t bereitstellt"
-#: ../../harddrake/ui.pm_.c:21
+#: ../../harddrake/ui.pm_.c:22
msgid "Media class"
-msgstr ""
+msgstr "Medienklasse"
-#: ../../harddrake/ui.pm_.c:21
+#: ../../harddrake/ui.pm_.c:22
msgid "class of hardware device"
-msgstr ""
+msgstr "Hardwareklasse"
-#: ../../harddrake/ui.pm_.c:22 ../../printerdrake.pm_.c:1404
+#: ../../harddrake/ui.pm_.c:23 ../../printerdrake.pm_.c:1517
msgid "Description"
msgstr "Beschreibung"
-#: ../../harddrake/ui.pm_.c:22
+#: ../../harddrake/ui.pm_.c:23
msgid "this field describe the device"
-msgstr ""
+msgstr "Dieses Feld beschreibt das GerÀt"
-#: ../../harddrake/ui.pm_.c:24
-#, fuzzy
+#: ../../harddrake/ui.pm_.c:25
msgid "Bus identification"
-msgstr "Authentifizierung"
+msgstr "Bus"
-#: ../../harddrake/ui.pm_.c:25
+#: ../../harddrake/ui.pm_.c:26
msgid ""
-"- PCI and USB devices : this list the vendor, device, subvendor and "
-"subdevice PCI/USB ids"
+"- PCI and USB devices: this list the vendor, device, subvendor and subdevice "
+"PCI/USB ids"
msgstr ""
+"- PCI und USB GerÀte: Eine Auflistung der Hersteller- und GerÀte-ID, sowie "
+"der Herstellersub- und GerÀtesub-ID von PCI und USB GerÀten."
-#: ../../harddrake/ui.pm_.c:27
+#: ../../harddrake/ui.pm_.c:28
msgid "Location on the bus"
-msgstr ""
+msgstr "Standort auf den Bus"
-#: ../../harddrake/ui.pm_.c:28
+#: ../../harddrake/ui.pm_.c:29
msgid ""
"- pci devices: this gives the PCI slot, device and function of this card\n"
"- eide devices: the device is either a slave or a master device\n"
"- scsi devices: the scsi bus and the scsi device ids"
msgstr ""
+"- PCI GerÀte: PCI-Slot, GerÀt und GerÀtetyp\n"
+"- EIDE GerÀte: Master- oder Slave-GerÀt\n"
+"- SCSI GerÀte: Der SCSI-Bus und die GerÀte-ID"
-#: ../../harddrake/ui.pm_.c:31
-#, fuzzy
+#: ../../harddrake/ui.pm_.c:32
msgid "Old device file"
-msgstr "Datei auswÀhlen"
+msgstr "Alte GerÀtedatei"
-#: ../../harddrake/ui.pm_.c:32
+#: ../../harddrake/ui.pm_.c:33
msgid "old static device name used in dev package"
-msgstr ""
+msgstr "Alter statischer Name im „dev“ Paket"
-#: ../../harddrake/ui.pm_.c:33
-#, fuzzy
+#: ../../harddrake/ui.pm_.c:34
msgid "New devfs device"
-msgstr "Gateway GerÀt"
+msgstr "Neues DevFS GerÀt"
-#: ../../harddrake/ui.pm_.c:34
+#: ../../harddrake/ui.pm_.c:35
msgid "new dinamic device name generated by incore kernel devfs"
-msgstr ""
+msgstr "Neuer dynamischer Name des DevFS"
-#: ../../harddrake/ui.pm_.c:35
+#: ../../harddrake/ui.pm_.c:36
msgid "Number of buttons"
msgstr "Anzahl Tasten"
-#: ../../harddrake/ui.pm_.c:36
+#: ../../harddrake/ui.pm_.c:37
msgid "the vendor name of the device"
msgstr "Herstellername des GerÀts"
-#: ../../harddrake/ui.pm_.c:60
+#: ../../harddrake/ui.pm_.c:38
+#, fuzzy
+msgid "Alternative drivers"
+msgstr "Kein alternativer Treiber"
+
+#: ../../harddrake/ui.pm_.c:39
+#, fuzzy
+msgid "the list of alternative drivers for this sound card"
+msgstr ""
+"Es existiert kein alternativer OSS/ALSA Treiber fĂŒr Ihre Soundkarte (%s)"
+
+#: ../../harddrake/ui.pm_.c:63
msgid "/_Quit"
msgstr "/_Beenden"
-#: ../../harddrake/ui.pm_.c:61 ../../harddrake/ui.pm_.c:62
-#: ../../harddrake/ui.pm_.c:68 ../../standalone/logdrake_.c:110
+#: ../../harddrake/ui.pm_.c:64 ../../harddrake/ui.pm_.c:65
+#: ../../harddrake/ui.pm_.c:71 ../../standalone/logdrake_.c:110
msgid "/_Help"
msgstr "/_Hilfe"
-#: ../../harddrake/ui.pm_.c:62
+#: ../../harddrake/ui.pm_.c:65
msgid "/_Help..."
msgstr "/_Hilfe ..."
-#: ../../harddrake/ui.pm_.c:63
+#: ../../harddrake/ui.pm_.c:66
msgid "Harddrake help"
msgstr "HardDrake Hilfe"
-#: ../../harddrake/ui.pm_.c:64
+#: ../../harddrake/ui.pm_.c:67
msgid ""
"Description of the fields:\n"
"\n"
msgstr ""
+"Beschreibung der Felder:\n"
+"\n"
-#: ../../harddrake/ui.pm_.c:68
+#: ../../harddrake/ui.pm_.c:71
msgid "/_About..."
msgstr "/_Über ..."
-#: ../../harddrake/ui.pm_.c:69
+#: ../../harddrake/ui.pm_.c:72
msgid "About Harddrake"
msgstr "Über HardDrake"
-#: ../../harddrake/ui.pm_.c:70
+#: ../../harddrake/ui.pm_.c:73
msgid ""
"This is HardDrake, a Mandrake hardware configuration tool.\n"
"Version:"
msgstr ""
+"HardDrake - das Mandrake Linux Hardware-Konfigurationswerkzeug.\n"
+"Version:"
-#: ../../harddrake/ui.pm_.c:71
+#: ../../harddrake/ui.pm_.c:74
msgid "Author:"
msgstr "Autor:"
-#: ../../harddrake/ui.pm_.c:83
+#: ../../harddrake/ui.pm_.c:86
msgid "Harddrake2 version "
msgstr "HardDrake2 Version "
-#: ../../harddrake/ui.pm_.c:91
+#: ../../harddrake/ui.pm_.c:103
msgid "Detected hardware"
msgstr "Gefundene Hardware"
-#: ../../harddrake/ui.pm_.c:92
+#: ../../harddrake/ui.pm_.c:105
+msgid "Information"
+msgstr "Informationen"
+
+#: ../../harddrake/ui.pm_.c:108
msgid "Configure module"
msgstr "Modul konfigurieren"
-#: ../../harddrake/ui.pm_.c:92
-msgid "Informations"
-msgstr "Informationen"
-
-#: ../../harddrake/ui.pm_.c:92
+#: ../../harddrake/ui.pm_.c:109
msgid "Run config tool"
msgstr "Konfigurationswerkzeug starten"
-#: ../../harddrake/ui.pm_.c:96
+#: ../../harddrake/ui.pm_.c:113
msgid "Detection in progress"
msgstr "Erkennung lÀuft"
-#: ../../harddrake/ui.pm_.c:96 ../../interactive.pm_.c:388
+#: ../../harddrake/ui.pm_.c:113 ../../interactive.pm_.c:391
msgid "Please wait"
msgstr "Bitte warten"
-#: ../../harddrake/ui.pm_.c:139
+#: ../../harddrake/ui.pm_.c:156
msgid "primary"
msgstr "PrimÀr"
-#: ../../harddrake/ui.pm_.c:139
+#: ../../harddrake/ui.pm_.c:156
msgid "secondary"
msgstr "SekundÀr"
-#: ../../harddrake/ui.pm_.c:176
+#: ../../harddrake/ui.pm_.c:197
msgid "You can configure each parameter of the module here."
msgstr "Sie können alle Modulparamerter hier einstellen."
-#: ../../harddrake/ui.pm_.c:192
+#: ../../harddrake/ui.pm_.c:213
#, c-format
msgid "Running \"%s\" ..."
msgstr "„%s“ ausfĂŒhren ..."
@@ -2670,30 +2767,33 @@ msgid ""
"If your card is misdetected, you can force the right tuner and card types "
"here. Just select your tv card parameters if needed"
msgstr ""
+"FĂŒr die meisten modernen TV-Karten erkennt das bttv-Modul des Linux Kerns "
+"automatisch die richtigen Parameter.\n"
+"Falls Ihre Karte falsch erkannt wird, können Sie Tuner- und Kartentyp hier "
+"eintellen. Geben Sie einfach die benötigten Parameter an."
#: ../../harddrake/v4l.pm_.c:213
-msgid "Card model :"
+msgid "Card model:"
msgstr "Kartentyp:"
#: ../../harddrake/v4l.pm_.c:214
-#, fuzzy
-msgid "Tuner type :"
+msgid "Tuner type:"
msgstr "Tunertyp:"
#: ../../harddrake/v4l.pm_.c:215
-msgid "Number of capture buffers :"
-msgstr ""
+msgid "Number of capture buffers:"
+msgstr "Anzahl der Aufnahmepuffer:"
#: ../../harddrake/v4l.pm_.c:215
msgid "number of capture buffers for mmap'ed capture"
-msgstr ""
+msgstr "Anzahl der Puffer fĂŒr MMAP Aufnahmen"
#: ../../harddrake/v4l.pm_.c:217
-msgid "PLL setting :"
+msgid "PLL setting:"
msgstr "PLL-Einstellung:"
#: ../../harddrake/v4l.pm_.c:218
-msgid "Radio support :"
+msgid "Radio support:"
msgstr "Radiobetrieb:"
#: ../../harddrake/v4l.pm_.c:218
@@ -2701,28 +2801,28 @@ msgid "enable radio support"
msgstr "Radiobetrieb aktivieren"
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/de/drakx-help.xml
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
#: ../../help.pm_.c:13
msgid ""
"GNU/Linux is a multiuser system, and this means that each user can have his\n"
"own preferences, his own files and so on. You can read the ``User Guide''\n"
"to learn more. But unlike \"root\", which is the administrator, the users\n"
-"you will add here will not be entitled to change anything except their own\n"
-"files and their own configuration. You will have to create at least one\n"
-"regular user for yourself. That account is where you should log in for\n"
-"routine use. Although it is very practical to log in as \"root\" everyday,\n"
-"it may also be very dangerous! The slightest mistake could mean that your\n"
-"system would not work any more. If you make a serious mistake as a regular\n"
-"user, you may only lose some information, but not the entire system.\n"
+"you add here will not be entitled to change anything except their own files\n"
+"and their own configuration. You will have to create at least one regular\n"
+"user for yourself. That account is where you should log in for routine use.\n"
+"Although it is very practical to log in as \"root\" everyday, it may also\n"
+"be very dangerous! The slightest mistake could mean that your system would\n"
+"not work any more. If you make a serious mistake as a regular user, you may\n"
+"only lose some information, but not the entire system.\n"
"\n"
"First, you have to enter your real name. This is not mandatory, of course -\n"
"as you can actually enter whatever you want. DrakX will then take the first\n"
"word you have entered in the box and will bring it over to the \"User\n"
"name\". This is the name this particular user will use to log onto the\n"
"system. You can change it. You then have to enter a password here. A\n"
-"non-privileged (regular) user's password is not as crucial as \"root\"' one\n"
-"from a security point of view, but that is no reason to neglect it: after\n"
-"all, your files are at risk.\n"
+"non-privileged (regular) user's password is not as crucial as the \"root\"'\n"
+"one from a security point of view, but that is no reason to neglect it:\n"
+"after all, your files are at risk.\n"
"\n"
"If you click on \"Accept user\", you can then add as many as you want. Add\n"
"a user for each one of your friends: your father or your sister, for\n"
@@ -2735,7 +2835,7 @@ msgstr ""
"Benutzerkennzeichen hat eigene PrÀferenzen (Grafische Umgebung,\n"
"Programmeinstellungen, etc.), sowie ein eigenes Heim-Verzeichnis, in dem\n"
"diese Einstellungen gespeichert werden. Falls Sie mehr wissen wollen,\n"
-"können Sie im Benutzerhandbuch nachsehen. Sie können mehrere normale\n"
+"können Sie im „Benutzerhandbuch“ nachsehen. Sie können mehrere normale\n"
"Benutzerkonten einrichten, im Gegensatz zum „privilegierten“ Kennzeichen:\n"
"»root«, das einmalig ist. Im Gegensatz zu »root« können diese normalen\n"
"Benutzer jedoch nur ihre eigenen Dateien und Konfigurationen verÀndern. Sie\n"
@@ -2757,7 +2857,7 @@ msgstr ""
"etwas Sorgfalt walten lassen. Immerhin sind es Ihre Daten ...\n"
"\n"
"Klicken Sie auf „Benutzer akzeptieren“, um das Kennzeichen zu erstellen.\n"
-"Anschließend können Sie direkt weitere Benutzer hinzufĂŒgen. Wenn Sie allen\n"
+"Anschließend können Sie direkt weitere Benutzer hinzufĂŒgen. Wenn Sie alle\n"
"Kennzeichen erstellt haben, klicken Sie auf „Fertig“.\n"
"\n"
"Durch Anwahl der SchaltflĂ€che „Fortgeschritten“ haben Sie auch die\n"
@@ -2765,7 +2865,7 @@ msgstr ""
"dies die „Bash“)."
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/de/drakx-help.xml
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
#: ../../help.pm_.c:41
msgid ""
"Listed above are the existing Linux partitions detected on your hard drive.\n"
@@ -2798,40 +2898,39 @@ msgid ""
"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
"\"second lowest SCSI ID\", etc."
msgstr ""
-"Oben sehen Sie die auf Ihrer Festplatte gefundenen Linux-Partitionen. Als\n"
-"normaler Linuxanwender können Sie problemlos die VorschlÀge des Assistenten\n"
-"ĂŒbernehmen. Sollten Sie diesen Vorschlag Ă€ndern, mĂŒssen Sie zumindest eine\n"
-"Partition als Verzeichnisbaumwurzel („/“) definieren. WĂ€hlen Sie keine zu\n"
-"kleine Partition, da sie sonst nicht genug Software installieren können.\n"
-"Falls Sie Ihre persönlichen Daten auf einer getrennten Partition speichern\n"
-"möchten, mĂŒssen Sie eine Linux-Partition fĂŒr ihre persönlichen\n"
-"Verzeichnisse („/home“) definieren (Dies geht natĂŒrlich nur, wenn Sie mehr\n"
-"als nur eine Linux Partition haben).\n"
+"Sie erhalten die Liste, der auf Ihren Festplatten gefundenen GNU/Linux\n"
+"Partitionen. Sie können die Auswahl des Assistenten beibehalten - sie\n"
+"sollte normalerweise Ihren BedĂŒrfnissen entsprechen. Falls Sie es vorziehen\n"
+"die EinhÀngpunkte selbst zu definieren, denken Sie bitte daran, dass Sie\n"
+"zumindest eine Verzeichnisbaumwurzel („/“ benötigen. WĂ€hlen Sie die\n"
+"Partitionen nicht zu klein, da Sie sonst nicht genĂŒgend Programme\n"
+"installieren können. Wenn Sie Ihre peröchen Daten auf einer eigenen\n"
+"Partition halten wollen, legen Sie sich eine Partition namens „/home“ an.\n"
"\n"
-"Alle Partitionen werden folgendermaßen aufgefĂŒhrt: „Name“, „KapazitĂ€t“\n"
+"Die Partitionen werden folgendermaßen aufgelistet: „Name“, „KapazitĂ€t“.\n"
"\n"
-"„Name“ ist zusammengesetzt aus: „Festplattentyp“, „Festplattennummer“ und\n"
-"„Partitionsnummer“ (etwa, „hda1“ oder „sdb4“).\n"
+"„Name“ hat folgende Struktur: „Festplattentyp“, „Festplattennummer“,\n"
+"„Partitionsnummer“ (etwa „hda1“).\n"
"\n"
-"„Festplattentyp“ ist „hd“ falls es sich um einen IDE Platte handelt und\n"
-"„sd“ wenn es eine SCSI Platte ist.\n"
+"„Hard drive type“ ist „„hd““, falls Ihre Platte eine IDE/ATAPI Platte ist\n"
+"und „„sd““, wenn es sich um eine SCSI Platte handelt.\n"
"\n"
-"„Festplattennummer“ ist der Buchstabe hinter „hd“ oder „sd“. Bei IDE\n"
-"Platten bedeutet:\n"
+"„Festplattennummer“ ist immer der Buchstabe hinter dem Festplattentyp. Bei\n"
+"IDE Platten bedeutet:\n"
"\n"
-" * „a“ - „Master Festplatte am primĂ€ren IDE Kontroller“,\n"
+" * „„a““ bedeutet „Master Platte am primĂ€ren IDE-Controller“;\n"
"\n"
-" * „b“ - „Slave Festplatte am primĂ€ren IDE Kontroller“,\n"
+" * „„b““ bedeutet „Slave Platte am primĂ€ren IDE-Controller“;\n"
"\n"
-" * „c“ - „Master Festplatte am sekundĂ€ren IDE Kontroller“,\n"
+" * „„c““ bedeutet „Master Platte am sekundĂ€ren IDE-Controller“;\n"
"\n"
-" * „d“ - „Slave Festplatte am sekundĂ€ren IDE Kontroller“,\n"
+" * „„d““ bedeutet „Slave Platte am sekundĂ€ren IDE-Controller“;\n"
"\n"
-"Bei SCSI Platten steht „a“ fĂŒr „erste Festplatte am Bus“, „b“ fĂŒr „zweite\n"
-"Festplatte am Bus“, etc."
+"Bei SCSI Platten steht „„a““ fĂŒr „niedrigste SCSI ID“, „„b““ fĂŒr\n"
+"„zweitniedrigste SCSI ID“, etc."
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/de/drakx-help.xml
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
#: ../../help.pm_.c:72
msgid ""
"The Mandrake Linux installation is spread out over several CD-ROMs. DrakX\n"
@@ -2844,7 +2943,7 @@ msgstr ""
"wird es die aktuelle CD-ROM auswerfen und nach einer anderen fragen."
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/de/drakx-help.xml
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
#: ../../help.pm_.c:77
msgid ""
"It is now time to specify which programs you wish to install on your\n"
@@ -2874,7 +2973,7 @@ msgid ""
"to have a graphical workstation!\n"
"\n"
"Moving the mouse cursor over a group name will display a short explanatory\n"
-"text about that group. If you deselect all groups when performing a regular\n"
+"text about that group. If you unselect all groups when performing a regular\n"
"installation (by opposition to an upgrade), a dialog will pop up proposing\n"
"different options for a minimal installation:\n"
"\n"
@@ -2926,7 +3025,7 @@ msgstr ""
"Wenn Sie die Maus ĂŒber eine Gruppe bewegen, erhalten Sie einen kurzen\n"
"erklĂ€renden Text ĂŒber die Gruppe. Falls Sie bei einer Installation alle\n"
"Markierungen entfernen, erscheint ein Dialog, in dem Sie zwischen\n"
-"verschiedenen Minimalinstallationen wÀhlen können.\n"
+"verschiedenen Minimalinstallationen wÀhlen können:\n"
"\n"
" * „Mit X“ Installiert eine rudimentĂ€re grafische OberflĂ€che;\n"
"\n"
@@ -2934,9 +3033,9 @@ msgstr ""
"grundlegender Werkzeuge inklusive deren Dokumentation. Dies ist die\n"
"sinnvollste Wahl fĂŒr eine Serverinstallation.\n"
"\n"
-" * „Extrem minimale Installation“ Sie erhalten eine komplett „nackte“\n"
-"Linux-Distribution (speziell auch ohne urpmi!). Es versteht sich von\n"
-"selbst, dass das nur eine Kommandozeileninstallation sein kann.\n"
+" * „Extrem minimale Installation“ Sie erhalten eine komplett „nackte“ 65MB\n"
+"große GNU/Linux-Distribution (speziell auch ohne urpmi!). Es versteht sich\n"
+"von selbst, dass das nur eine Kommandozeileninstallation sein kann.\n"
"\n"
"Wenn Sie die SchaltflĂ€che „Fortgeschritten“ anwĂ€hlen, erhalten Sie die\n"
"Möglichkeit, eine „Individuelle Paketauswahl“ durchzufĂŒhren. Das macht nur\n"
@@ -2949,13 +3048,13 @@ msgstr ""
"oder repariert."
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/de/drakx-help.xml
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
#: ../../help.pm_.c:128
msgid ""
-"Finally, depending on whether or not you selected individual packages, you\n"
-"will be presented a tree containing all packages classified by groups and\n"
-"subgroups. While browsing the tree, you can select entire groups,\n"
-"subgroups, or individual packages.\n"
+"Finally, depending on whether or not you chose to be able to select\n"
+"individual packages, you will be presented a tree containing all packages\n"
+"classified by groups and subgroups. While browsing the tree, you can select\n"
+"entire groups, subgroups, or individual packages.\n"
"\n"
"Whenever you select a package on the tree, a description appears on the\n"
"right. When your selection is finished, click the \"Install\" button which\n"
@@ -3025,14 +3124,14 @@ msgstr ""
"Installationsschrittes."
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/de/drakx-help.xml
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
#: ../../help.pm_.c:164
msgid ""
-"You are now proposed to set up your Internet/network connection. If you\n"
-"wish to connect your computer to the Internet or to a local network, click\n"
-"\"OK\". The autodetection of network devices and modem will be launched. If\n"
-"this detection fails, uncheck the \"Use auto detection\" box next time. You\n"
-"may also choose not to configure the network, or do it later; in that case,\n"
+"You are now able to set up your Internet/network connection. If you wish to\n"
+"connect your computer to the Internet or to a local network, click \"OK\".\n"
+"The autodetection of network devices and modem will be launched. If this\n"
+"detection fails, uncheck the \"Use auto detection\" box next time. You may\n"
+"also choose not to configure the network, or do it later; in that case,\n"
"simply click the \"Cancel\" button.\n"
"\n"
"Available connections are: traditional modem, ISDN modem, ADSL connection,\n"
@@ -3054,13 +3153,13 @@ msgstr ""
"schalten Sie jedoch zuvor, falls nötig, die dafĂŒr benötigten GerĂ€te ein,\n"
"damit „DrakX“ sie automatisch erkennen kann.\n"
"\n"
-"Mandrake Linux bietet Ihnen die Möglichkeit, Ihre Internet-Ver­bindung\n"
+"Mandrake Linux bietet Ihnen die Möglichkeit, Ihre Internet-Verbindung\n"
"bereits wÀhrend der Installation zu konfigurieren. Zur Auswahl stehen\n"
"folgende Verbindungsarten: Herkömmliches Modem, ISDN Modem, ADSL\n"
"Verbindung, Kabelmodem oder eine einfache LAN Verbindung (Ethernet).\n"
"\n"
"Wir wollen hier nicht weiter ins Detail gehen, nur soviel: Stellen Sie\n"
-"sicher, dass sie die nötigen Parameter von Ihrem Internet Provider oder\n"
+"sicher, dass Sie die nötigen Parameter von Ihrem Internet Provider oder\n"
"Systemadministrator erhalten haben.\n"
"\n"
"Weitere Einzelheiten, die hier bereits hilfreich sein können, erhalten Sie\n"
@@ -3073,7 +3172,7 @@ msgstr ""
"„Abbrechen“."
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/de/drakx-help.xml
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
#: ../../help.pm_.c:186
msgid ""
"You may now choose which services you wish to start at boot time.\n"
@@ -3112,12 +3211,12 @@ msgstr ""
"wirklich brauchen! !!"
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/de/drakx-help.xml
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
#: ../../help.pm_.c:203
msgid ""
"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
"local time according to the time zone you selected. It is however possible\n"
-"to deactivate this by deselecting \"Hardware clock set to GMT\" so that the\n"
+"to deactivate this by unselecting \"Hardware clock set to GMT\" so that the\n"
"hardware clock is the same as the system clock. This is useful when the\n"
"machine is hosting another operating system like Windows.\n"
"\n"
@@ -3141,7 +3240,7 @@ msgstr ""
"benötigen Sie eine stÀndige Internetverbindung."
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/de/drakx-help.xml
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
#: ../../help.pm_.c:217
msgid ""
"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
@@ -3161,7 +3260,9 @@ msgid ""
"If you can see the message during the test, and answer \"Yes\", then DrakX\n"
"will proceed to the next step. If you cannot see the message, it simply\n"
"means that the configuration was wrong and the test will automatically end\n"
-"after 10 seconds, restoring the screen."
+"after 10 seconds, restoring the screen. Refer then to the Video\n"
+"configuration section of the user guide for more information on how to\n"
+"configure your display."
msgstr ""
"X (das X Window System) ist das Herz der grafischen BenutzeroberflÀche von\n"
"GNU/Linux. Es bildet die Grundlage fĂŒr die Vielzahl grafischer\n"
@@ -3184,37 +3285,7 @@ msgstr ""
"mĂŒssen Sie nur 10 Sekunden warten. Anschließend sollte wieder das\n"
"KonfigurationsmenĂŒ erscheinen."
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/de/drakx-help.xml
-#: ../../help.pm_.c:237
-msgid ""
-"The first time you try the X configuration, you may not be very satisfied\n"
-"with its display (screen is too small, shifted left or right...). Hence,\n"
-"even if X starts up correctly, DrakX then asks you if the configuration\n"
-"suits you. It will also propose to change it by displaying a list of valid\n"
-"modes it could find, asking you to select one.\n"
-"\n"
-"As a last resort, if you still cannot get X to work, choose \"Change\n"
-"graphics card\", select \"Unlisted card\", and when prompted on which\n"
-"server, choose \"FBDev\". This is a failsafe option which works with any\n"
-"modern graphics card. Then choose \"Test again\" to be sure."
-msgstr ""
-"Es kann Ihnen passieren, dass der erste Versuch noch nicht korrekt ist (Der\n"
-"Schirm ist zu klein, liegt zu weit rechts oder links ...). Daher werden Sie\n"
-"selbst dann mit der Frage konfrontiert, wenn der „DrakX“-Server sich\n"
-"starten lies, „DrakX“ also davon ausgehen könnte, dass alles in Ordnung\n"
-"ist. Sie erhalten daher eine Liste von gĂŒltigen Modi, aus denen Sie\n"
-"versuchen sollten den besten auszuwÀhlen.\n"
-"\n"
-"Sollten alle stricke reißen, und „DrakX“ immer noch nicht laufen, wĂ€hlen\n"
-"Sie einfach im UntermenĂŒ „Grafikkarte Ă€ndern“, den Punkt „Nicht\n"
-"aufgefĂŒhrt“. Wenn Sie dann nach dem Server gefragt werden, wĂ€hlen Sie den\n"
-"„FBDev“: Diese Variante sollte mit allen modernen Grafikkarten\n"
-"funktionieren. Ein „Nochmals testen“ sollte Gewissheit bringen."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/de/drakx-help.xml
-#: ../../help.pm_.c:249
+#: ../../help.pm_.c:239
msgid ""
"Finally, you will be asked whether you want to see the graphical interface\n"
"at boot. Note this question will be asked even if you chose not to test the\n"
@@ -3222,15 +3293,15 @@ msgid ""
"act as a server, or if you were not successful in getting the display\n"
"configured."
msgstr ""
-"Letztlich werden Sie gefragt, ob sie direkt in die grafische OberflÀche\n"
-"starten wollen. Diese Frage wird auch erscheinen, wenn Sie das Testen der\n"
-"Konfiguration ĂŒbersprungen haben. Schlug die Konfiguration der grafischen\n"
-"Umgebung fehl oder wollen Sie den Rechner als Server laufen lassen, geben\n"
-"Sie natĂŒrlich „Nein“ an."
+"Nun werden Sie gefragt, ob Sie in die grafische Ungebug starten wollen.\n"
+"Es sei angemerkt, dass Sie das auch gefragt werden, wenn die Grafikkarte \n"
+"vorher nicht getestet wurde. Sie sollten mit „Nein“ anworten, falls Ihr\n"
+"Rechner als Server dienen sollte oder der Test der Grafikumgebung zu\n"
+"Problemen fĂŒhrte."
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/de/drakx-help.xml
-#: ../../help.pm_.c:256
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
+#: ../../help.pm_.c:246
msgid ""
"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
@@ -3250,10 +3321,10 @@ msgid ""
"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
"password, or any other reason.\n"
"\n"
-"When you click on this step, you will be asked to enter a disk inside the\n"
-"drive. The floppy disk you will insert must be empty or contain data which\n"
-"you do not need. You will not have to format it since DrakX will rewrite\n"
-"the whole disk."
+"If you say \"Yes\", you will be asked to enter a disk inside the drive. The\n"
+"floppy disk you will insert must be empty or contain data which you do not\n"
+"need. You will not have to format it since DrakX will rewrite the whole\n"
+"disk."
msgstr ""
"Die Mandrake Linux CD-ROM hat einen eingebauten Rettungsmo­dus. Sie\n"
"erreichen ihn durch Starten von CD-ROM, und DrĂŒcken von »F1« bei\n"
@@ -3261,7 +3332,7 @@ msgstr ""
"Ihr Rechner nicht von CD-ROM starten kann, sollten Sie diesen Punkt\n"
"unbedingt aus zwei GrĂŒnden abarbeiten:\n"
"\n"
-" * Wenn „DrakX“ den Betriebssystemstarter installiert, schreibt es den\n"
+" * Wenn DrakX den Betriebssystemstarter installiert, schreibt es den\n"
"Boot-Sektor (MBR) Ihrer primĂ€ren Festplatte neu (außer Sie wollen einen\n"
"anderen Betriebssystemstarter verwenden), damit Sie die verschiedenen,\n"
"vorhandenen Betriebssysteme starten können (etwa Windows und GNU/Linux).\n"
@@ -3284,8 +3355,8 @@ msgstr ""
"kĂŒmmert sich um alles."
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/de/drakx-help.xml
-#: ../../help.pm_.c:280
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
+#: ../../help.pm_.c:270
msgid ""
"At this point, you need to choose where you want to install the Mandrake\n"
"Linux operating system on your hard drive. If your hard drive is empty or\n"
@@ -3318,7 +3389,9 @@ msgid ""
"\n"
" * \"Use existing partition\": the wizard has detected one or more existing\n"
"Linux partitions on your hard drive. If you want to use them, choose this\n"
-"option;\n"
+"option. You will then be asked to choose the mount points associated to\n"
+"each of the partitions. The legacy mount points are selected by default,\n"
+"and you should generally keep them.\n"
"\n"
" * \"Use the free space on the Windows; partition\": if Microsoft Windows\n"
"is installed on your hard drive and takes all the space available on it,\n"
@@ -3351,7 +3424,9 @@ msgid ""
" * \"Expert mode\": choose this option if you want to manually partition\n"
"your hard drive. Be careful - it is a powerful but dangerous choice. You\n"
"can very easily lose all your data. Hence, do not choose this unless you\n"
-"know what you are doing."
+"know what you are doing. To know how do use the DiskDrake utility used\n"
+"here, refer to the section ``Managing Your Partitions'' of the ````User\n"
+"Guide''''"
msgstr ""
"Sie mĂŒssen nun entscheiden, wo auf Ihrer/n Festplatte(n) Ihr Mandrake Linux\n"
"System installiert werden soll. Sofern alles leer ist bzw. ein\n"
@@ -3388,12 +3463,10 @@ msgstr ""
"\n"
" * „Verwende existierende“: Der Assistent hat eine oder mehrere\n"
"existierende Linux Partitionen auf Ihrer Platte gefunden. WĂ€hlen Sie diese\n"
-"SchaltflÀche, falls Sie sie behalten wollen.\n"
-"\n"
-" * „Komplette Platte löschen“: Falls Sie alle Daten Ihrer Platte verlieren,\n"
-"und sie durch Ihr neues Mandrake Linux System ersetzen wollen, wÀhlen Sie\n"
-"diese SchaltflĂ€che. Beachten Sie, dass dieser Schritt nicht rĂŒckgĂ€ngig\n"
-"gemacht werden kann.\n"
+"SchaltflÀche, falls Sie sie behalten wollen. Sie werden dann gebeten, die\n"
+"EinhÀngpunkte der Partitionen anzugeben. Als Vorgabe erhalten Sie die\n"
+"EinhÀngpunkte der gefundenen Distribution, normalerweise ist es nicht nötig\n"
+"diese zu Àndern.\n"
"\n"
" * „Freien Platz der Windows Partition verwenden“: Falls der gesamte\n"
"Plattenplatz aktuell fĂŒr Microsoft Windows(TM) verschwendet ist, mĂŒssen Sie\n"
@@ -3408,16 +3481,27 @@ msgstr ""
"betont, dass das bedeutet, Sie haben weniger Platz fĂŒr Windows als\n"
"momentan.\n"
"\n"
+" * „Komplette Platte löschen“: Falls Sie alle Daten Ihrer Platte verlieren,\n"
+"und sie durch Ihr neues Mandrake Linux System ersetzen wollen, wÀhlen Sie\n"
+"diese SchaltflĂ€che. Beachten Sie, dass dieser Schritt nicht rĂŒckgĂ€ngig\n"
+"gemacht werden kann.\n"
+"\n"
+" !! Wenn Sie diese Variante wÀhlen, werden alle Ihre Daten auf der Platte\n"
+"gelöscht! !!\n"
+"\n"
" * „Windows(TM) löschen“: Bei dieser Variante werden alle Windows\n"
"Partitionen gelöscht und die Platte(n) komplett neu partitioniert.\n"
"\n"
-" !! Alle Daten auf den Platten gehen dadurch verloren! !!\n"
+" !! Wenn Sie diese Variante wÀhlen, werden alle Ihre Daten auf der Platte\n"
+"gelöscht! !!\n"
"\n"
" * „Expertenmodus“: Wenn Sie Ihre Festplatte selber von Hand partitionieren\n"
"wollen, dann können Sie diese Option wÀhlen. Seien Sie bitte sehr\n"
"sorgfÀltig, wenn Sie diese Lösung wÀhlen, da Sie zwar alle möglichen\n"
"Einstellungen vornehmen, aber gleichzeitig auch sehr leicht Daten verlieren\n"
-"können. Diese Option ist nur geeignet, wenn Sie wissen, was Sie tun.\n"
+"können. Diese Option ist nur geeignet, wenn Sie wissen, was Sie tun. Um zu\n"
+"erfahren, wie Sie DiskDrake verwenden können, lesen Sie bitte das Kapitel\n"
+"„Managing Your Partitions“ im „„User Guide““\n"
"\n"
"(*) In Deutschland ist es quasi unmöglich, Komplettrechner mit leeren\n"
"Festplatten zu erhalten, da laut Gesetz nur Rechner mit BS verkauft werden\n"
@@ -3428,8 +3512,8 @@ msgstr ""
"aus Redmond gleichgesetzt."
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/de/drakx-help.xml
-#: ../../help.pm_.c:347
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
+#: ../../help.pm_.c:341
msgid ""
"There you are. Installation is now complete and your GNU/Linux system is\n"
"ready to use. Just click \"OK\" to reboot the system. You can start\n"
@@ -3497,8 +3581,8 @@ msgstr ""
"können Sie unter GNU/Linux eine solche erstellen)."
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/de/drakx-help.xml
-#: ../../help.pm_.c:378
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
+#: ../../help.pm_.c:372
msgid ""
"Any partitions that have been newly defined must be formatted for use\n"
"(formatting means creating a filesystem).\n"
@@ -3525,33 +3609,35 @@ msgid ""
"Click on \"Advanced\" if you wish to select partitions that will be checked\n"
"for bad blocks on the disk."
msgstr ""
-"Alle neu angelegten Partitionen mĂŒssen formatiert (= ein Dateisystem darauf\n"
-"erzeugt) werden, bevor Sie sie verwenden können.\n"
+"Alle Partitionen, die gerade neu erzeugt wurden, mĂŒssen formatiert werden\n"
+"(d.h. es muss ein Dateisystem auf der Partition erstellt werden), bevor sie\n"
+"verwendet werden können.\n"
"\n"
-"Möglicherweise wollen Sie auch einige bereits existierende Partitionen\n"
-"formatieren, um alle darauf vorhandenen Daten zu löschen. Falls ja,\n"
-"markieren Sie diese ebenfalls.\n"
+"Sie erhalten hier auch die Möglichkeit bereits existierende Partitionen neu\n"
+"zu formatieren, um die darauf vorhandenen Daten zu löschen. Markieren Sie\n"
+"diese einfach ebenfalls in der Liste.\n"
"\n"
-"Es sei angemerkt, dass bereits existierende Partitionen nicht erneut\n"
-"formatiert werden mĂŒssen. Sie sollten Partitionen, die Teile des\n"
-"Betriebssystems enthalten neu formatieren (etwa „/“, „/usr“ oder „/var“),\n"
-"Partitionen mit Ihren privaten Daten (normalerweise „/home“) sollten Sie\n"
-"jedoch nicht neu formatieren.\n"
+"Es sei angemerkt, dass nicht alle Partitionen neu formatiert werden mĂŒssen.\n"
+"Sie sollten normalerweise nur die Partitionen neu formatieren, die\n"
+"Systemdaten, jedoch keine Privatdaten enthalten (etwa „/“, „/usr“ oder\n"
+"„/var“). Partitionen wie etwa „/home“ sollten Sie normalerweise nicht neu\n"
+"formatieren.\n"
"\n"
-"Seien Sie in diesem Schritt sehr sorgfÀltig. Nach dem Formatieren einer\n"
-"Partition ist der komplette Inhalt unwiederbringlich gelöscht!\n"
+"Seien Sie sorgfÀltig bei der Auswahl der Partitionen. Nach dem formatieren\n"
+"sind alle zuvor darauf existierenden Daten unwiederbringlich verloren.\n"
"\n"
-"WĂ€hlen Sie „OK“, sobald Sie bereit sind die Partitionen zu formatieren.\n"
+"Wenn Sie alle Einstellungen vorgenommen haben, betÀtigen Sie die\n"
+"SchaltflĂ€che „OK“, um mit dem Formatieren dere Partitionen zu beginnen.\n"
"\n"
-"WĂ€hlen Sie „Abbruch“, falls Sie andere Partitionen verwenden wollen, um Ihr\n"
-"Mandrake Linux darauf zu installieren.\n"
+"BetĂ€tigen Sie „Abbruch“, wenn Sie eine andere Partition fĂŒr Ihr neues\n"
+"Mandrake Linux vorgesehen haben.\n"
"\n"
-"WĂ€hlen Sie „Fortgeschritten“, um die Möglichkeit zu erhalten, Partitionen\n"
-"anzugeben, die auf defekte Blöcke untersucht werden sollen."
+"BetĂ€tigen Sie die SchaltflĂ€che „Fortgeschritten“, falls Sie Partitionen auf\n"
+"defekte Blöcke untersuchen wollen."
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/de/drakx-help.xml
-#: ../../help.pm_.c:404
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
+#: ../../help.pm_.c:398
msgid ""
"Your new Mandrake Linux operating system is currently being installed.\n"
"Depending on the number of packages you will be installing and the speed of\n"
@@ -3560,20 +3646,20 @@ msgid ""
"\n"
"Please be patient."
msgstr ""
-"Ihre neue Mandrake Linux Distribution wird nun installiert. Das dauert\n"
-"einige Minuten (abhÀngig von der Anzahl zu installierender Pakete und der\n"
-"Geschwindigkeit Ihres Rechners).\n"
+"Ihr neues Mandrake Linux System wird nun installiert. AbhÀngig von der\n"
+"Anzahl Pakete und der Geschwindigkeit Ihres Rechners kann dies zwischen\n"
+"einigen Minuten und mehreren Stunden dauern.\n"
"\n"
-"Bitte haben Sie etwas Geduld."
+"Haben Sie noch etwas Gerduld."
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/de/drakx-help.xml
-#: ../../help.pm_.c:412
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
+#: ../../help.pm_.c:406
msgid ""
"At the time you are installing Mandrake Linux, it is likely that some\n"
"packages have been updated since the initial release. Some bugs may have\n"
"been fixed, and security issues solved. To allow you to benefit from these\n"
-"updates, you are now proposed to download them from the Internet. Choose\n"
+"updates, you are now able to download them from the Internet. Choose\n"
"\"Yes\" if you have a working Internet connection, or \"No\" if you prefer\n"
"to install updated packages later.\n"
"\n"
@@ -3600,8 +3686,8 @@ msgstr ""
"wĂŒnschen, betĂ€tigen Sie einfach die SchaltflĂ€che „Abbruch“."
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/de/drakx-help.xml
-#: ../../help.pm_.c:425
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
+#: ../../help.pm_.c:419
msgid ""
"Before continuing, you should read carefully the terms of the license. It\n"
"covers the whole Mandrake Linux distribution, and if you do not agree with\n"
@@ -3616,15 +3702,15 @@ msgstr ""
"betĂ€tigen Sie die SchaltflĂ€che „Akzeptieren“."
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/de/drakx-help.xml
-#: ../../help.pm_.c:432
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
+#: ../../help.pm_.c:426
msgid ""
"At this point, it is time to choose the security level desired for the\n"
"machine. As a rule of thumb, the more exposed the machine is, and the more\n"
"the data stored in it is crucial, the higher the security level should be.\n"
"However, a higher security level is generally obtained at the expense of\n"
-"easiness of use. Refer to the \"msec\" chapter of the ``Reference Manual''\n"
-"to get more information about the meaning of these levels.\n"
+"ease of use. Refer to the \"msec\" chapter of the ``Reference Manual'' to\n"
+"get more information about the meaning of these levels.\n"
"\n"
"If you do not know what to choose, keep the default option."
msgstr ""
@@ -3635,14 +3721,14 @@ msgstr ""
"Sicherheit zulasten der Benutzerfreundlichkeit und Einfachheit, mit der\n"
"gewisse Befehle/AblĂ€ufe durchgefĂŒhrt werden können. AusfĂŒhrlichere\n"
"ErlÀuterungen zu den verschiedenen Sicherheitsebenen erhalten Sie im\n"
-"Kapitel MSEC des Referenzhandbuchs.\n"
+"Kapitel MSEC des „Referenzhandbuchs“.\n"
"\n"
"Sollten Sie sich an dieser Stelle nicht sicher sein, so behalten Sie die\n"
"Standardeinstellung bei."
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/de/drakx-help.xml
-#: ../../help.pm_.c:442
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
+#: ../../help.pm_.c:436
msgid ""
"At this point, you need to choose which partition(s) will be used for the\n"
"installation of your Mandrake Linux system. If partitions have already been\n"
@@ -3659,26 +3745,26 @@ msgid ""
" * \"Clear all\": this option deletes all partitions on the selected hard\n"
"drive;\n"
"\n"
-" * \"Auto allocate\": this option enables to automatically create \"Ext2\"\n"
-"and swap partitions in free space of your hard drive;\n"
+" * \"Auto allocate\": this option enables to automatically create ext3 and\n"
+"swap partitions in free space of your hard drive;\n"
"\n"
-" * \"More\": gives access to additional features:\n"
+"\"More\": gives access to additional features:\n"
"\n"
-" * \"Save partition table\": saves the partition table to a floppy.\n"
-"Useful for later partition-table recovery if necessary. It is strongly\n"
-"recommended to perform this step;\n"
+" * \"Save partition table\": saves the partition table to a floppy. Useful\n"
+"for later partition-table recovery if necessary. It is strongly recommended\n"
+"to perform this step;\n"
"\n"
-" * \"Restore partition table\": allows to restore a previously saved\n"
+" * \"Restore partition table\": allows to restore a previously saved\n"
"partition table from floppy disk;\n"
"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you\n"
-"can try to recover it using this option. Please be careful and remember\n"
-"that it can fail;\n"
+" * \"Rescue partition table\": if your partition table is damaged, you can\n"
+"try to recover it using this option. Please be careful and remember that it\n"
+"can fail;\n"
"\n"
-" * \"Reload partition table\": discards all changes and loads your\n"
-"initial partition table;\n"
+" * \"Reload partition table\": discards all changes and loads your initial\n"
+"partition table;\n"
"\n"
-" * \"Removable media automounting\": unchecking this option will force\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
"users to manually mount and unmount removable medias such as floppies and\n"
"CD-ROMs.\n"
"\n"
@@ -3706,7 +3792,7 @@ msgid ""
" * Ctrl-m to set the mount point.\n"
"\n"
"To get information about the different filesystem types available, please\n"
-"read the ext2fs chapter from the ``Reference Manual''.\n"
+"read the ext2FS chapter from the ``Reference Manual''.\n"
"\n"
"If you are installing on a PPC machine, you will want to create a small HFS\n"
"``bootstrap'' partition of at least 1MB, which will be used by the yaboot\n"
@@ -3714,7 +3800,7 @@ msgid ""
"may find it a useful place to store a spare kernel and ramdisk images for\n"
"emergency boot situations."
msgstr ""
-"Sie mĂŒssen nun entscheiden auf welche Partition(en) Ihr neues Mandrake\n"
+"Sie mĂŒssen nun entscheiden auf welche(n) Partition(en) Ihr neues Mandrake\n"
"Linux System installiert werden soll. Falls bereits Partitionen existieren\n"
"(etwa von einer frĂŒheren Installation von GNU/Linux oder durch das Erzeugen\n"
"mit einem anderen Partitionierungswerkzeug), können Sie diese verwenden.\n"
@@ -3730,33 +3816,40 @@ msgstr ""
" * „Alles löschen“: BetĂ€tigen dieser SchaltflĂ€che löscht alle Partitionen\n"
"auf der markierten Festplatte.\n"
"\n"
-" * „Automatisches Erstellen“: Diese SchaltflĂ€che erstellt automatisch Ext2-\n"
+" * „Automatisches Erstellen“: Diese SchaltflĂ€che erstellt automatisch ext3-\n"
"und Swap-Partitionen im ungenutzten Bereich Ihrer Festplatte.\n"
"\n"
-" * „Partitionstabelle retten“: Falls Ihre Partitionstabelle defekt ist,\n"
-"können Sie durch DrĂŒcken dieser SchaltflĂ€che versuchen Sie wieder\n"
-"herzustellen. Seien Sie vorsichtig und denken Sie immer daran, dass dieser\n"
-"Versuch misslingen kann.\n"
+"„Mehr“: bietet weitere Möglichkeiten:\n"
"\n"
-" * „RĂŒckgĂ€ngig“: Mit dieser SchaltflĂ€che können Sie alle Einstellungen\n"
-"rĂŒckgĂ€ngig machen.\n"
+" * „Partitionstabelle schreiben“: Falls Sie Ihre aktuelle Partitionstabelle\n"
+"auf Diskette speichern wollen, falls Sie sie spÀter wiederherstellen\n"
+"wollen, können Sie das mit Hilfe dieser SchaltflÀche tun.\n"
+"\n"
+" * „Partitionstabelle wiederherstellen“: Mit dieser SchaltflĂ€che können Sie\n"
+"eine vorher auf Diskette gesicherte Partitionstabelle wieder herstellen.\n"
+"\n"
+" * „Partitionstabelle retten“: Sollte Ihre Partitionstabelle zerstört\n"
+"worden sein, können Sie versuchen, mit dieser SchaltflÀche eine\n"
+"Restaurierung vorzunehmen. Seien Sie vorsichtig! es ist nicht\n"
+"unwahrscheinlich, dass dieser Versuch fehl schlÀgt.\n"
"\n"
-" * „Neu laden“: Sie können durch BetĂ€tigen dieser SchaltflĂ€che alle\n"
-"Einstellungen rĂŒckgĂ€ngig machen und die (noch bestehende) Partitionstabelle\n"
-"neu laden.\n"
+" * „Partitionstabelle neu laden“: Alle Änderungen verwerfen und mit der\n"
+"ursprĂŒnglichen Partitionstabelle neu beginnen.\n"
+"\n"
+" * „Wechselmedien automatisch EinhĂ€ngen“: Entfernen dieser Markierung fĂŒhrt\n"
+"dazu, dass die Anwender hinterher die Wechselmedien manuell ein- und\n"
+"aushĂ€ngen mĂŒssen.\n"
"\n"
" * „Assistent“: Falls Sie keine Ahnung haben wie Sie die Festplatte\n"
"partitionieren sollen, wĂ€hlen Sie diese SchaltflĂ€che. Sie ĂŒberlassen damit\n"
"die gesamte Arbeit unserem Assistenten, der mittels „Abra Kadabra“(TM) Ihre\n"
"Platte partitioniert.\n"
"\n"
-" * „Von Diskette wiederherstellen“: Falls Sie Ihre Partitionstabelle vor\n"
-"Beginn auf eine Diskette gespeichert haben, können Sie sie mittels dieser\n"
-"SchaltflĂ€che wieder zurĂŒckschreiben.\n"
+" * „RĂŒckgĂ€ngig“: Mit dieser SchaltflĂ€che können Sie alle Einstellungen\n"
+"rĂŒckgĂ€ngig machen.\n"
"\n"
-" * „Auf Diskette speichern“: Falls Sie Ihre aktuelle Partitionstabelle auf\n"
-"Diskette speichern wollen, falls Sie sie spÀter wiederherstellen wollen,\n"
-"können Sie das mit Hilfe dieser SchaltflÀche tun.\n"
+" * „In den Experten-/ Normal-Modus wechseln“: Anbieten bzw. Maskieren von\n"
+"Zusatzmöglichkeiten.\n"
"\n"
" * „Fertig“: Nachdem Sie das Partitionieren Ihrer Festplatte beendet haben,\n"
"aktivieren Sie diese SchaltflĂ€che, um Ihre Änderungen zu speichern.\n"
@@ -3766,23 +3859,26 @@ msgstr ""
"\n"
"Wenn eine Partition ausgewÀhlt ist, können Sie mittels:\n"
"\n"
-" * [Strg]-[C] - eine neue Partition erstellen (wenn Sie auf einer leeren\n"
+" * Ctrl- C - eine neue Partition erstellen (wenn Sie auf einer leeren\n"
"Partition sind)\n"
"\n"
-" * [Strg]-[D] - die Partition löschen\n"
+" * Ctrl- D - die Partition löschen\n"
"\n"
-" * [Strg]-[M] - dem EinhÀngpunkt festlegen\n"
+" * Ctrl- M - dem EinhÀngpunkt festlegen.\n"
+"\n"
+"Um mehr Informationen ĂŒber die verschiedenen Dateisystemtypen zu erhalten,\n"
+"lesen Sie bitte das Kapitel ext2FS in der „Reference Manual“.\n"
"\n"
"Falls Sie die Installation auf einem PPC-Rechner vornehmen, sollten Sie\n"
-"eine mindestens 1 MB große HFS Start-Partition fĂŒr den\n"
-"Betriebssystemstarter „Yaboot“ erstellen. Wenn Sie diese Partition etwas\n"
-"grĂ¶ĂŸer dimensionieren, etwa 50 MB, haben Sie einen geeigneten Platz, um\n"
+"eine mindestens 1MB, große HFS Start-Partition fĂŒr den\n"
+"Betriebssystemstarter yaboot erstellen. Wenn Sie diese Partition etwas\n"
+"grĂ¶ĂŸer dimensionieren, etwa 50MB, haben Sie einen geeigneten Platz, um\n"
"einen Rettungskern samt RamDisk abzulegen, um in NotfÀllen starten zu\n"
"können."
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/de/drakx-help.xml
-#: ../../help.pm_.c:513
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
+#: ../../help.pm_.c:507
msgid ""
"More than one Microsoft partition has been detected on your hard drive.\n"
"Please choose the one you want to resize in order to install your new\n"
@@ -3814,68 +3910,67 @@ msgid ""
"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
"disk or partition is called \"C:\")."
msgstr ""
-"Es wurde mehr als nur eine Microsoft Windows(TM) Partition auf Ihrer Platte\n"
-"gefunden. Bitte wÀhlen Sie welche Sie verkleinern wollen, um Ihr neues\n"
-"Betriebssystem Mandrake Linux installieren zu können.\n"
+"Es wurde mehr als eine Windows Partition gefunden. WĂ€hlen Sie bitte, welche\n"
+"sie verleinern wollen, um Platz fĂŒr Ihr neues Mandrake Linux zu schaffen.\n"
"\n"
-"Zu Ihrer Information sind alle Partitionen folgendermaßen aufgefĂŒhrt:\n"
-"„Linuxname“, „Windowsname“, „KapazitĂ€t“.\n"
+"Die Partitionen werden folgendermaßen aufgelistet: „Linux Name“, „Windows\n"
+"Name“, „KapazitĂ€t“.\n"
"\n"
-"„Linuxname“ ist zusammengesetzt aus: „Festplattentyp“, „Festplattennummer“\n"
-"und „Partitionsnummer“ (etwa, „hda1“ oder „sdb4“).\n"
+"„Linux Name“ hat folgende Struktur: „Festplattentyp“, „Festplattennummer“,\n"
+"„Partitionsnummer“ (etwa „hda1“).\n"
"\n"
-"„Festplattentyp“ ist „hd“ falls es sich um einen IDE Platte handelt und\n"
-"„sd“ wenn es eine SCSI Platte ist.\n"
+"„Hard drive type“ ist „„hd““, falls Ihre Platte eine IDE/ATAPI Platte ist\n"
+"und „„sd““, wenn es sich um eine SCSI Platte handelt.\n"
"\n"
-"„Festplattennummer“ ist der Buchstabe hinter „hd“ oder „sd“. Bei IDE\n"
-"Platten bedeutet:\n"
+"„Festplattennummer“ ist immer der Buchstabe hinter dem Festplattentyp. Bei\n"
+"IDE Platten bedeutet:\n"
"\n"
-" * „a“ - „Master Festplatte am primĂ€ren IDE Kontroller“,\n"
+" * „„a““ bedeutet „Master Platte am primĂ€ren IDE-Controller“;\n"
"\n"
-" * „b“ - „Slave Festplatte am primĂ€ren IDE Kontroller“,\n"
+" * „„b““ bedeutet „Slave Platte am primĂ€ren IDE-Controller“;\n"
"\n"
-" * „c“ - „Master Festplatte am sekundĂ€ren IDE Kontroller“,\n"
+" * „„c““ bedeutet „Master Platte am sekundĂ€ren IDE-Controller“;\n"
"\n"
-" * „d“ - „Slave Festplatte am sekundĂ€ren IDE Kontroller“.\n"
+" * „„d““ bedeutet „Slave Platte am sekundĂ€ren IDE-Controller“;\n"
"\n"
-"Bei SCSI Platten steht „a“ fĂŒr „erste Festplatte am Bus“, „b“ fĂŒr „zweite\n"
-"Festplatte am Bus“, etc.\n"
+"Bei SCSI Platten steht „„a““ fĂŒr „niedrigste SCSI ID“, „„b““ fĂŒr\n"
+"„zweitniedrigste SCSI ID“, etc.\n"
"\n"
-"„Windowsname“ ist der Laufwerksbuchstabe, wie er von Windows vergeben wird\n"
-"(die erste FAT Partition der ersten Platte heißt „C:“)."
+"„Windows Name“ ist der Buchstabe, den die Partition unter Windows erhalten\n"
+"wĂŒrde (die erste Partition der ersten Platte heißt „„C:““)."
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/de/drakx-help.xml
-#: ../../help.pm_.c:544
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
+#: ../../help.pm_.c:538
msgid "Please be patient. This operation can take several minutes."
-msgstr "Bitte gedulden Sie sich etwas. Es kann einige Minuten dauern."
+msgstr "Haben Sie bitte etwas Geduld. Diese Aktion kann einige Minuten dauern."
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/de/drakx-help.xml
-#: ../../help.pm_.c:547
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
+#: ../../help.pm_.c:541
msgid ""
"DrakX now needs to know if you want to perform a default (\"Recommended\")\n"
"installation or if you want to have greater control (\"Expert\"). You can\n"
"also choose to do a new install or an upgrade of an existing Mandrake Linux\n"
"system:\n"
"\n"
-" * \"Install\": completely wipes out the old system. In fact, depending on\n"
-"what currently holds your machine, you will be able to keep some old (Linux\n"
-"or other) partitions unchanged;\n"
+" * \"Install\": completely wipes out the old system, however, depending on\n"
+"what is currently installed on your machine, you may be able to keep some\n"
+"old partitions (Linux or otherwise) unchanged;\n"
"\n"
" * \"Upgrade\": this installation class allows to simply update the\n"
"packages currently installed on your Mandrake Linux system. It keeps the\n"
"current partitions of your hard drives as well as user configurations. All\n"
-"other configuration steps remain available with respect to plain\n"
+"other configuration steps remain available, similar to a normal\n"
"installation;\n"
"\n"
-" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
-"existing Mandrake Linux system while keeping all system configurations\n"
-"unchanged. Adding new packages to the current installation is also\n"
-"possible.\n"
+" * \"Upgrade Packages Only\": this new installation class allows you to\n"
+"upgrade an existing Mandrake Linux system while keeping all system\n"
+"configurations unchanged. Adding new packages to the current installation\n"
+"is also possible.\n"
"\n"
-"Upgrades should work fine for Mandrake Linux systems starting from \"8.1\"\n"
-"release.\n"
+"Upgrades should work fine on Mandrake Linux systems containing version\n"
+"\"8.1\" or later.\n"
"\n"
"Depending on your knowledge of GNU/Linux, select one of the following\n"
"choices:\n"
@@ -3884,11 +3979,11 @@ msgid ""
"operating system. The installation will be very easy and you will only be\n"
"asked a few questions;\n"
"\n"
-" * Expert: if you have a good knowledge of GNU/Linux, you can choose this\n"
-"installation class. The expert installation will allow you to perform a\n"
-"highly-customized installation. Answering some of the questions can be\n"
-"difficult if you do not have a good knowledge of GNU/Linux, so do not\n"
-"choose this unless you know what you are doing."
+" * Expert: if you have a good understanding of GNU/Linux, you may wish to\n"
+"perform a highly customized installation. Some of the decisions you will\n"
+"have to make may be difficult if you do not have good knowledge of\n"
+"GNU/Linux, so it is not recommended that those without a fair amount of\n"
+"experience select this installation class."
msgstr ""
"„DrakX“ fragt Sie nun nach der gewĂŒnschten Installationsart. Sie haben die\n"
"Wahl zwischen einer Standardinstallation („Empfehlenswert“) und einer\n"
@@ -3914,6 +4009,9 @@ msgstr ""
"Installation, bis auf die Auswahl der zu installierenden Pakete,\n"
"ĂŒbersprungen.\n"
"\n"
+"Aktualisierungen von Mandrake Linux „8.1“ oder aktuelleren Systemen sollten\n"
+"problemlos funktionieren.\n"
+"\n"
"Je nachdem, wie viel Erfahrung Sie mit GNU/Linux haben, können Sie sich fĂŒr\n"
"eine der folgenden Installations- oder Aktualisierungsarten fĂŒr Ihr\n"
"Mandrake Linux System entscheiden:\n"
@@ -3930,23 +4028,30 @@ msgstr ""
"sich fĂŒr diese Installationsklasse entscheiden. Die Antworten auf einige\n"
"Fragen können sehr schwierig sein und Auswirkungen auf Sicherheit und\n"
"StabilitÀt Ihrer Distribution haben. WÀhlen Sie diese Installationsklasse\n"
-"also wirklich nur wenn Sie wissen, was Sie tun!"
+"also wirklich nur wenn Sie wissen, was Sie tun!\n"
+"\n"
+"Dieses Handbuch wird sich auf die Installationsart „Experte“ konzentrieren.\n"
+"Sollten Sie sich stattdessen fĂŒr die Klasse „Empfehlenswert“ entscheiden,\n"
+"ĂŒberlesen Sie bitte einfach die Abschnitte, die fĂŒr Sie nicht zutreffen."
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/de/drakx-help.xml
-#: ../../help.pm_.c:584
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
+#: ../../help.pm_.c:578
msgid ""
"Normally, DrakX selects the right keyboard for you (depending on the\n"
-"language you have chosen) and you won't even see this step. However, you\n"
-"might not have a keyboard that corresponds exactly to your language: for\n"
-"example, if you are an English speaking Swiss person, you may still want\n"
-"your keyboard to be a Swiss keyboard. Or if you speak English but are\n"
-"located in Quebec, you may find yourself in the same situation. In both\n"
-"cases, you will have to go back to this installation step and select an\n"
-"appropriate keyboard from the list.\n"
+"language you have chosen). However, you might not have a keyboard that\n"
+"corresponds exactly to your language: for example, if you are an English\n"
+"speaking Swiss person, you may still want your keyboard to be a Swiss\n"
+"keyboard. Or if you speak English but are located in Quebec, you may find\n"
+"yourself in the same situation. In both cases, you will have to go back to\n"
+"this installation step and select an appropriate keyboard from the list.\n"
"\n"
"Click on the \"More\" button to be presented with the complete list of\n"
-"supported keyboards."
+"supported keyboards.\n"
+"\n"
+"If you choose a keyboard layout based on a non-latin alphabet, you will be\n"
+"asked on next dialog to choose the key binding that will switch the\n"
+"keyboard layout between the latin and non latin layouts."
msgstr ""
"„DrakX“ wird aufgrund Ihrer Sprachauswahl das fĂŒr Sie passende\n"
"Tastaturlayout bereits ausgewÀhlt haben, Sie sollten diesen Schritt\n"
@@ -3958,12 +4063,19 @@ msgstr ""
"\n"
"Sollten Sie eine andere als die zur gewÀhlten Sprache gehörende Tastatur\n"
"verwenden wollen, wĂ€hlen Sie die SchaltflĂ€che „Mehr“. Sie erhalten dann\n"
-"eine Liste aller unterstĂŒtzten Tastaturen."
+"eine Liste aller unterstĂŒtzten Tastaturen.\n"
+"\n"
+"Sollten Sie sich fĂŒr ein Tastaturlayout einer nicht lateinischen Sprache\n"
+"entschieden haben, werden Sie im nÀchsten Schritt gefragt, mit welcher\n"
+"Tastenkombination Sie zwischen dem von Ihnen gewÀhlten und dem lateinischen\n"
+"Layout umschalten wollen."
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/de/drakx-help.xml
-#: ../../help.pm_.c:597
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
+#: ../../help.pm_.c:594
msgid ""
+"The first step is to choose your preferred language.\n"
+"\n"
"Please choose your preferred language for installation and system usage.\n"
"\n"
"Clicking on the \"Advanced\" button will allow you to select other\n"
@@ -3976,6 +4088,8 @@ msgid ""
"Note that multiple languages may be installed. Once you have selected any\n"
"additional locales, click the \"OK\" button to continue."
msgstr ""
+"Als ersten Schritt, wĂ€hlen Sie bitte die gewĂŒnschte Sprache.\n"
+"\n"
"WĂ€hlen Sie Ihre bevorzugte Sprache fĂŒr den Installationsvorgang und\n"
"Systemlaufzeit.\n"
"\n"
@@ -3989,8 +4103,8 @@ msgstr ""
"Sie automatisch zum nÀchsten Schritt."
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/de/drakx-help.xml
-#: ../../help.pm_.c:610
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
+#: ../../help.pm_.c:609
msgid ""
"DrakX generally detects the number of buttons your mouse has. If not, it\n"
"assumes you have a two-button mouse and will set it up for third-button\n"
@@ -4003,7 +4117,14 @@ msgid ""
"If you choose a mouse other than the default, a test screen will be\n"
"displayed. Use the buttons and wheel to verify that the settings are\n"
"correct. If the mouse is not working well, press the space bar or [Return]\n"
-"to \"Cancel\" and choose again."
+"to \"Cancel\" and choose again.\n"
+"\n"
+"Wheel mouses are sometimes not automatically detected. You will need to\n"
+"manually select it in the list. Be sure to select the one corresponding to\n"
+"the correct port it is attached to. After you have pressed the \"OK\"\n"
+"button, a mouse image is displayed. You then need to move the wheel of your\n"
+"mouse to activate it correctly. Then test all buttons and movements are\n"
+"correct."
msgstr ""
"„DrakX“ versucht normalerweise die Anzahl Tasten Ihrer Maus zu erkennen.\n"
"Sollte das nicht möglich sein, so behandelt es Ihre Maus als\n"
@@ -4017,21 +4138,30 @@ msgstr ""
"Anschließend können Sie die FunktionstĂŒchtigkeit Ihrer Maus ĂŒberprĂŒfen.\n"
"Verwenden Sie auch die Knöpfe und gegebenenfalls das Mausrad, um\n"
"sicherzustellen, dass die festgelegten Einstellungen funktionieren. Falls\n"
-"nicht, klicken Sie auf „Abbrechen“ und wĂ€hlen einen anderen Treiber aus."
+"nicht, drĂŒcken Sie die [Leertaste] oder die Eingabetaste, um die\n"
+"SchaltflĂ€che „Abbrechen“ zu betĂ€tigen und wĂ€hlen Sie einen anderen Treiber\n"
+"aus.\n"
+"\n"
+"Es kommt vor, dass MĂ€use mit RĂ€dern nicht korrekt erkannt werden. WĂ€hlen\n"
+"Sie in diesem Fall die richtige Maus aus der vorgegebenen Liste. Stellen\n"
+"Sie sicher, dass Sie auch den Anschluss richtig angegeben haben. Nach\n"
+"betĂ€tigen der SchaltflĂ€che „OK“, wird Ihnen ein Bild der gewĂ€hlten Maus\n"
+"gezeigt. Bewegen Sie RĂ€der und Tasten, um sicherzustellen, dass die Maus\n"
+"richtig erkannt wurde."
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/de/drakx-help.xml
-#: ../../help.pm_.c:624
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
+#: ../../help.pm_.c:630
msgid ""
"Please select the correct port. For example, the \"COM1\" port under\n"
"Windows is named \"ttyS0\" under GNU/Linux."
msgstr ""
-"Bitte wÀhlen Sie den richtigen Anschluss aus. Die COM1-Schnittstelle unter\n"
-"Windows wird beispielsweise unter GNU/Linux als „ttyS0“ bezeichnet."
+"WĂ€hlen Sie bitte den richtigen Anschluss. So ist etwa der unter Windows\n"
+"„COM1“ genannte Anschluss in GNU/Linux unter „ttyS0“ erreichbar."
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/de/drakx-help.xml
-#: ../../help.pm_.c:628
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
+#: ../../help.pm_.c:634
msgid ""
"This is the most crucial decision point for the security of your GNU/Linux\n"
"system: you have to enter the \"root\" password. \"root\" is the system\n"
@@ -4061,15 +4191,15 @@ msgid ""
"In Expert mode, you will be asked if you will be connecting to an\n"
"authentication server, like NIS or LDAP.\n"
"\n"
-"If your network uses the LDAP (or NIS) protocol for authentication, select\n"
-"\"LDAP\" (or \"NIS\") as authentication. If you do not know, ask your\n"
-"network administrator.\n"
+"If your network uses either of the LDAP, NIS, or PDC Windows Domain\n"
+"authentication services, select the appropriate one as \"authentication\".\n"
+"If you do not know, ask your network administrator.\n"
"\n"
"If your computer is not connected to any administrated network, you will\n"
"want to choose \"Local files\" for authentication."
msgstr ""
"Sie können nun das »root« Passwort fĂŒr Ihr Mandrake Linux System eingeben.\n"
-"Das Passwort muss zweimal eingegeben werden, um sicher zu stellen, dass sie\n"
+"Das Passwort muss zweimal eingegeben werden, um sicher zu stellen, dass Sie\n"
"es korrekt eingegeben haben.\n"
"\n"
"»root« ist das Benutzerkennzeichen des Systemadministrators. Er ist der\n"
@@ -4088,7 +4218,7 @@ msgstr ""
"zugegriffen hat!\n"
"\n"
"Das Passwort sollte eine Mischung aus alphanumerischen Zeichen sein und\n"
-"mindestens 8 Zeichen lang sein. Es sollte niemals irgendwo aufgeschrieben\n"
+"mindestens 8 Zeichen lang. Es sollte niemals irgendwo aufgeschrieben\n"
"werden.\n"
"\n"
"Machen Sie das Passwort aber nicht zu lang oder zu kompliziert: Sie sollten\n"
@@ -4102,17 +4232,17 @@ msgstr ""
"Diese hÀngen davon ab, ob Sie mit sich mit einem Authentifizierungsserver\n"
"verbinden wollen oder nicht.\n"
"\n"
-"Falls in Ihrem Netzwerk das LDAP (oder NIS) Protokoll fĂŒr die\n"
-"Authentifizierung verwendet wird, wÀhlen Sie bitte den entsprechenden\n"
-"MenĂŒpunkt. Falls Sie nicht wissen, welches Protokoll Sie verwenden, fragen\n"
-"Sie Ihren Netzwerkadministrator.\n"
+"Falls in Ihrem Netzwerk LDAP, NIS oder PDC zur Authentifizierung verwendet\n"
+"wird, wĂ€hlen Sie bitte den entsprechenden MenĂŒpunkt. Falls Sie nicht\n"
+"wissen, welches Protokoll Sie verwenden, fragen Sie Ihren\n"
+"Netzwerkadministrator.\n"
"\n"
"Falls Ihr Rechner nicht an einem administrierten Netzwerk hÀngt, wÀhlen Sie\n"
"bitte „Lokale Dateien“ zur Authentifizierung."
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/de/drakx-help.xml
-#: ../../help.pm_.c:664
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
+#: ../../help.pm_.c:670
msgid ""
"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
@@ -4151,43 +4281,33 @@ msgid ""
"options. !!\n"
"\n"
"Clicking the \"Advanced\" button in this dialog will offer many advanced\n"
-"options, which are reserved to the expert user.\n"
-"\n"
-"After you have configured the general bootloader parameters, the list of\n"
-"boot options which will be available at boot time will be displayed.\n"
-"\n"
-"If there is another operating system installed on your machine, it will\n"
-"automatically be added to the boot menu. Here, you can choose to fine-tune\n"
-"the existing options. Select an entry and click \"Modify\" to modify or\n"
-"remove it; \"Add\" creates a new entry; and \"Done\" goes on to the next\n"
-"installation step."
+"options, which are reserved for the expert user."
msgstr ""
-"„LILO“ und „grub“ sind Betriebssystemstarter fĂŒr GNU/Linux. Diese\n"
-"Installationsphase lÀuft in den meisten FÀllen völlig automatisch ab.\n"
-"„DrakX“ analysiert den Bootsektor und ergreift dann die passenden\n"
-"Maßnahmen:\n"
+"LILO und grub sind Betriebssystemstarter fĂŒr GNU/Linux. Diese\n"
+"Installationsphase lÀuft in den meisten FÀllen völlig automatisch ab. DrakX\n"
+"analysiert den Bootsektor und ergreift dann die passenden Maßnahmen:\n"
"\n"
-" * Findet „DrakX“ einen Windows-Bootsektor, ersetzt es ihn durch einen\n"
-"„grub“ oder „LILO“-Bootsektor. Sie erhalten dadurch die Möglichkeit, beim\n"
+" * Findet DrakX einen Windows-Bootsektor, ersetzt es ihn durch einen grub\n"
+"oder LILO-Bootsektor. Sie erhalten dadurch die Möglichkeit, beim\n"
"Systemstart zwischen Windows (bzw. anderen Betriebssystemen, sofern\n"
"vorhanden) und Windows auszuwÀhlen;\n"
"\n"
-" * Findet „DrakX“ einen Linux-Bootsektor vor, ersetzt es ihn durch einen\n"
+" * Findet DrakX einen Linux-Bootsektor vor, ersetzt es ihn durch einen\n"
"neuen;\n"
"\n"
-"Im Zweifelsfall bietet „DrakX“ Ihnen einen Dialog mit verschiedenen\n"
+"Im Zweifelsfall bietet DrakX Ihnen einen Dialog mit verschiedenen\n"
"Auswahlmöglichkeiten.\n"
"\n"
" * „Zu verwendender Betriebssystemstarter“: Hier erhalten Sie drei\n"
"Alternativen:\n"
"\n"
-" * „Grub“: Falls Sie „grub“ (TextmenĂŒ) bevorzugen.\n"
+" * „Grub“: Falls Sie grub (TextmenĂŒ) bevorzugen.\n"
"\n"
-" * „LILO mit grafischem MenĂŒâ€œ: Falls Sie „LILO“ mit seiner grafischen\n"
+" * „LILO mit grafischem MenĂŒâ€œ: Falls Sie LILO mit seiner grafischen\n"
"OberflÀche bevorzugen.\n"
"\n"
-" * „LILO mit TextmenĂŒâ€œ: Falls Sie „LILO“ mit TextmenĂŒ als Ihren\n"
-"Favoriten ansehen.\n"
+" * „LILO mit TextmenĂŒâ€œ: Falls Sie LILO mit TextmenĂŒ als Ihren Favoriten\n"
+"ansehen.\n"
"\n"
" * „Boot GerĂ€t“: Normalerweise mĂŒssen Sie hier nichts Ă€ndern („/dev/hda“),\n"
"Sie könnten jedoch den Starter auch auf der zweiten Platte installieren,\n"
@@ -4206,50 +4326,44 @@ msgstr ""
"verÀndern ... !!\n"
"\n"
"Durch wĂ€hlen der SchaltflĂ€che „Fortgeschritten“ erhalten Sie etliche\n"
-"Optionen, die dem fortgeschrittenen Anwender vorbehalten bleiben.\n"
-"\n"
-"Mandrake Linux installiert normalerweise seinen eigenen\n"
-"Betriebssystemstarter, der Sie sowohl GNU/Linux, als auch alle anderen\n"
-"installierten Betriebssysteme starten lÀsst.\n"
-"\n"
-"Sollte sich auf Ihrem Rechner bereits ein anderes Betriebssystem befinden,\n"
-"so wird dieses - sofern es erkannt wird - automatisch zu dem StartmenĂŒ\n"
-"hinzugefĂŒgt. Hier können Sie noch einige Feineinstellungen fĂŒr die\n"
-"bestehenden Optionen vornehmen. Markieren Sie einen bestehenden Eintrag und\n"
-"betĂ€tigen Sie die SchaltflĂ€che „Ändern“, um ihn anzupassen oder zu löschen;\n"
-"„HinzufĂŒgen“ erzeugt einen neuen Eintrag und „Fertig“ bringt Sie zum\n"
-"nÀchsten Installationsschritt."
+"Optionen, die dem fortgeschrittenen Anwender vorbehalten bleiben."
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/de/drakx-help.xml
-#: ../../help.pm_.c:713
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
+#: ../../help.pm_.c:710
msgid ""
-"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
-"either GNU/Linux or any other operating system present on your computer.\n"
-"Normally, these other operating systems are correctly detected and\n"
-"installed. If this is not the case, you can add an entry by hand in this\n"
-"screen. Be careful to choose the correct parameters.\n"
+"After you have configured the general bootloader parameters, the list of\n"
+"boot options which will be available at boot time will be displayed.\n"
+"\n"
+"If there is another operating system installed on your machine, it will\n"
+"automatically be added to the boot menu. Here, you can choose to fine-tune\n"
+"the existing options. Select an entry and click \"Modify\" to modify or\n"
+"remove it; \"Add\" creates a new entry; and \"Done\" goes on to the next\n"
+"installation step.\n"
"\n"
"You may also not want to give access to these other operating systems to\n"
"anyone. In which case, you can delete the corresponding entries. But then,\n"
"you will need a boot disk in order to boot those other operating systems!"
msgstr ""
-"„LILO“ (der LInux LOader) und „grub“ sind Betriebssystemstarter: Diese\n"
-"Programme starten entweder GNU/Linux oder die anderen Betriebssysteme, die\n"
-"auf Ihrem Rechner vorhanden sind. Normalerweise erkennen diese Werkzeuge\n"
-"alle existierenden Betriebssysteme korrekt und bieten Sie als\n"
-"Startalternativen an. Ist dies einmal nicht der Fall, können Sie hier\n"
-"manuell helfend eingreifen. Seien Sie jedoch vorsichtig, dass sie die\n"
-"korrekten Parameter eingeben.\n"
+"Nachdem Sie die allgemeinen BS-Startetr Parameter eingestellt haben,\n"
+"bekommen Sie die Liste möglicher Betriebssystemalternativen fĂŒr das\n"
+"StartmenĂŒ gezeigt.\n"
"\n"
-"Eventuell möchten Sie anderen Anwendern nicht die Möglichkeit geben, diese\n"
-"anderen Betriebssysteme zu verwenden, in diesem Fall können Sie den\n"
-"entsprechenden Eintrag einfach löschen. Das hat jedoch zur Folge, dass sie\n"
-"eine Startdiskette benötigen, um diese Betriebssysteme in Zukunft starten\n"
-"zu können."
+"Sollte sich auf Ihrem Rechner bereits ein anderes Betriebssystem befinden,\n"
+"so wird dieses - sofern es erkannt wird - automatisch zu dem StartmenĂŒ\n"
+"hinzugefĂŒgt. Hier können Sie noch einige Feineinstellungen fĂŒr die\n"
+"bestehenden Optionen vornehmen. Markieren Sie einen bestehenden Eintrag und\n"
+"betĂ€tigen Sie die SchaltflĂ€che „Ändern“, um ihn anzupassen oder zu löschen;\n"
+"„HinzufĂŒgen“ erzeugt einen neuen Eintrag und „Fertig“ bringt Sie zum\n"
+"nÀchsten Installationsschritt.\n"
+"\n"
+"Möglicherweise wollen Sie auch nicht, dass andere Anwender Zugiff auf die\n"
+"ĂŒbrigen installierten Betriebssysteme bekommen. In diesem Fall können Sie\n"
+"die jeweiligen EintrĂ€ge entfernen, Sie mĂŒssen jedoch selbst fĂŒr\n"
+"Startdisketten sorgen, um diese Syteme erreichen zu können!"
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/de/drakx-help.xml
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
#: ../../help.pm_.c:724
msgid ""
"You must indicate where you wish to place the information required to boot\n"
@@ -4258,14 +4372,14 @@ msgid ""
"Unless you know exactly what you are doing, choose \"First sector of drive\n"
"(MBR)\"."
msgstr ""
-"Sie mĂŒssen nun entscheiden, wo die Informationen zum Starten Ihrer\n"
+"\"Sie mĂŒssen nun entscheiden, wo die Informationen zum Starten Ihrer\n"
"GNU/Linux Distribution erstellt werden sollen.\n"
"\n"
"Sofern Sie nicht genau wissen, was sie machen sollen, wĂ€hlen Sie „Erster\n"
-"Sektor der Platte (MBR)“"
+"Sektor der Platte (MBR)“."
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/de/drakx-help.xml
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
#: ../../help.pm_.c:731
msgid ""
"Here, we select a printing system for your computer. Other OSs may offer\n"
@@ -4295,8 +4409,9 @@ msgid ""
"Otherwise, CUPS is preferable as it is simpler and better at working over\n"
"networks."
msgstr ""
-"Sie können nun ein Drucksystem wÀhlen. Wo andere Betriebssysteme Ihnen nur\n"
-"eins bieten, bietet Mandrake Linux Ihnen drei:\n"
+"Hier können Sie das Drucksystem fĂŒr Ihren Rechner wĂ€hlen. Andere\n"
+"Betriebssysteme bieten Ihnen nur eines, bei Mandrake Linux können Sie\n"
+"zwischen drei verschiedenen wÀhlen.\n"
"\n"
" * „pdq“ - Es steht fĂŒr „print, don't queue“ (engl. fĂŒr „Drucken ohne\n"
"Warteschlange“). Falls Sie einen Drucker haben, der direkt an Ihrem Rechner\n"
@@ -4305,7 +4420,7 @@ msgstr ""
"dabei aber extrem langsam. WĂ€hlen Sie „pdq“, wenn Sie ein GNU/Linux Neuling\n"
"sind. Sie können diese Wahl spÀter immer wieder Àndern, indem Sie\n"
"PrinterDrake im Mandrake Kontrollzentrum starten und dort die SchaltflÀche\n"
-"„Expertenmodus“ betĂ€tigen.\n"
+"„>Expertenmodus“ betĂ€tigen.\n"
"\n"
" * „CUPS“ - Mit dem „Common Unix Printing System“ (engl. fĂŒr „Allgemeines\n"
"Unix-Drucksystem“) können Sie ebenso gut um auf Ihrem direkt\n"
@@ -4315,32 +4430,32 @@ msgstr ""
"verwendet werden - Es ist somit rĂŒckwĂ€rtskompatibel. Es ist sehr mĂ€chtig,\n"
"in seiner Grundeinstellung verhĂ€lt es sich jedoch genau wie „pdq“. Wenn Sie\n"
"einen „lpd“ Server benötigen, mĂŒssen Sie einfach nur den „cups-lpd“ DĂ€mon\n"
-"starten. „CUPS“ bietet grafische Konfigurations- und DruckmenĂŒs.\n"
+"starten. CUPS bietet grafische Konfigurations- und DruckmenĂŒs.\n"
"\n"
-" * „LPRng“ - „Line Printer Daemon new generation“ (engl. fĂŒr\n"
+" * „lprNG“ - „line printer daemon New Generation“ (engl. fĂŒr\n"
"„Zeilendrucker-DĂ€mon - Neue Generation“). Dieses System bietet etwa das\n"
"gleiche, was die beiden vorherigen können, es erlaubt Ihnen jedoch auch auf\n"
"Drucker in Novell Netzwerken zuzugreifen, da es das IPX Protokoll\n"
-"beherrscht. Falls Sie das benötigen, verwenden Sie LPRng. Andernfalls ist\n"
+"beherrscht. Falls Sie das benötigen, verwenden Sie „lprNG“. Andernfalls ist\n"
"„CUPS“ vorzuziehen, da es benutzerfreundlicher ist und in\n"
"Nicht-IPX-Netzwerken besser funktioniert."
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/de/drakx-help.xml
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
#: ../../help.pm_.c:759
msgid ""
-"DrakX now detects any IDE device present in your computer. It will also\n"
-"scan for one or more PCI SCSI card(s) on your system. If a SCSI card is\n"
+"DrakX now detects any IDE devices present in your computer. It will also\n"
+"scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
"found, DrakX will automatically install the appropriate driver.\n"
"\n"
"Because hardware detection does not always detect a piece of hardware,\n"
"DrakX will ask you to confirm if a PCI SCSI card is present. Click \"Yes\"\n"
"if you know that there is a SCSI card installed in your machine. You will\n"
-"be presented a list of SCSI cards to choose from. Click \"No\" if you have\n"
-"no SCSI hardware. If you are unsure, you can check the list of hardware\n"
-"detected in your machine by selecting \"See hardware info\" and clicking\n"
-"\"OK\". Examine the list of hardware and then click on the \"OK\" button to\n"
-"return to the SCSI interface question.\n"
+"be presented with a list of SCSI cards to choose from. Click \"No\" if you\n"
+"have no SCSI hardware. If you are unsure, you can check the list of\n"
+"hardware detected in your machine by selecting \"See hardware info\" and\n"
+"clicking \"OK\". Examine the list of hardware and then click on the \"OK\"\n"
+"button to return to the SCSI interface question.\n"
"\n"
"If you have to manually specify your adapter, DrakX will ask if you want to\n"
"specify options for it. You should allow DrakX to probe the hardware for\n"
@@ -4356,11 +4471,11 @@ msgid ""
"Windows on your system)."
msgstr ""
"„DrakX“ versucht nun alle IDE Festplatten Ihres Systems zu finden. Unter\n"
-"Anderem sucht „DrakX“ auch nach PCI SCSI-Karten, die es kennt, um sie\n"
+"Anderem sucht „DrakX“ auch nach PCISCSI-Karten, die es kennt, um sie\n"
"automatisch mit dem richtigen Treiber einzubinden.\n"
"\n"
-"Falls Sie ĂŒber keinen SCSI Adapter verfĂŒgen, es sich um einen ISA SCSI\n"
-"Adapter handelt oder um einen PCI SCSI Adapter, bei dem „DrakX“ nicht weiß,\n"
+"Falls Sie ĂŒber keinen SCSI Adapter verfĂŒgen, es sich um einen ISASCSI\n"
+"Adapter handelt oder um einen PCISCSI Adapter, bei dem „DrakX“ nicht weiß,\n"
"welcher Treiber funktioniert, werden Sie gebeten, „DrakX“ zu helfen.\n"
"\n"
"Ist in Ihrem Rechner kein SCSI Adapter, wĂ€hlen Sie einfach „Nein“. Sollten\n"
@@ -4373,13 +4488,13 @@ msgstr ""
"funktioniert das.\n"
"\n"
"Falls nicht, mĂŒssen Sie die Optionen angeben. Schauen Sie im\n"
-"Installationshandbuch, wie Sie diese Informationen erhalten können: etwa\n"
+"„Installationshandbuch“, wie Sie diese Informationen erhalten können: etwa\n"
"unter Windows (sofern das auf Ihren Rechner installiert ist), aus den\n"
"HandbĂŒchern, die sie mit dem Adapter erhalten haben oder von den Web-Seiten\n"
"des Hardware-Anbieters (sofern Sie einen WWW-Zugang haben)."
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/de/drakx-help.xml
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
#: ../../help.pm_.c:786
msgid ""
"You can add additional entries for yaboot, either for other operating\n"
@@ -4428,7 +4543,7 @@ msgid ""
"also be highlighted with a ``*'', if you press [Tab] to see the boot\n"
"selections."
msgstr ""
-"Sie können weitere „Yaboot“ EintrĂ€ge angeben, etwa fĂŒr andere\n"
+"Sie können weitere yaboot EintrĂ€ge angeben, etwa fĂŒr andere\n"
"Betriebssysteme, alternative Kerne oder ein Rettungssystem.\n"
"\n"
"FĂŒr ein anderes BS können Sie nur einen Namen und die Start-Partition\n"
@@ -4436,14 +4551,14 @@ msgstr ""
"\n"
"FĂŒr Linux gibt es einige Parameter:\n"
"\n"
-" * „Identifikator“: Es handelt sich um den Namen, den Sie an der „Yaboot“\n"
+" * „Identifikator“: Es handelt sich um den Namen, den Sie an der yaboot\n"
"Eingabeaufforderung angeben mĂŒssen, um diese Alternative zu wĂ€hlen.\n"
"\n"
" * „Kern“: Der Name des BS-Kerns, den sie starten wollen. Normalerweise\n"
"handelt es sich um „vmlinuz“ oder eine Variante von „vmlinuz“ mit einer\n"
"Versionsnummer.\n"
"\n"
-" * „Verzeichnisbaumwurzel“: Die Verzeichnisbaumwurzel „/“ Ihrer Linux\n"
+" * „Verzeichnisbaumwurzel“: Die Verzeichnisbaumwurzel „„/““ Ihrer Linux\n"
"Installation.\n"
"\n"
" * „Übergeben“: Auf Apple Hardware, wird die Übergabemöglichkeit weiterer\n"
@@ -4452,10 +4567,10 @@ msgstr ""
"klassische Apple-MĂ€use von Hause aus mit 2 fehlenden Maustasten\n"
"ausgeliefert werden. Hier einige Beispiele:\n"
"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111\n"
+" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111\n"
"hda=autotune\n"
"\n"
-" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
+" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
"\n"
" * „Init-RamDisk“: Dieser Parameter kann entweder verwendet werden, um beim\n"
"Betriebssystemstart bereits zusĂ€tzliche Kern-Module zur VerfĂŒgung zu haben,\n"
@@ -4476,13 +4591,13 @@ msgstr ""
"„novideo“-Modus, also im FrameBuffer-Modus zu starten.\n"
"\n"
" * „Standard“: WĂ€hlt diesen Eintrag als Standard Linux-Kern, den Sie durch\n"
-"DrĂŒcken von [Enter] an der „Yaboot“ Eingabeaufforderung gestartet bekommen.\n"
+"DrĂŒcken von Enter an der yaboot Eingabeaufforderung gestartet bekommen.\n"
"Wenn Sie die [Tab]-Taste an der Eingabeaufforderung drĂŒcken, erhalten Sie\n"
"eine Liste der verfĂŒgbaren Alternativen. Der Standardeintrag wird mit einem\n"
"Stern „*“ markiert."
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/de/drakx-help.xml
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
#: ../../help.pm_.c:833
msgid ""
"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
@@ -4516,14 +4631,14 @@ msgid ""
" * Default OS: you can select which OS will boot by default when the Open\n"
"Firmware Delay expires."
msgstr ""
-"„Yaboot“ ist ein BS-Starter fĂŒr NewWorld MacIntosh Rechner. Er kann sowohl\n"
+"Yaboot ist ein BS-Starter fĂŒr NewWorld MacIntosh Rechner. Er kann sowohl\n"
"GNU/Linux als auch MacOS oder MacOS X starten, falls diese auf Ihrem\n"
"Rechner installiert sind. Normalerweise werden diese Betriebssysteme alle\n"
"automatisch gefunden und eingebunden. Sollte dies nicht der Fall sein,\n"
"können Sie diese hier manuell hinzufĂŒgen. Stellen Sie jedoch sicher, die\n"
"richtigen Parameter zu verwenden.\n"
"\n"
-"Die Hauptparameter von „Yaboot“ sind:\n"
+"Die Hauptparameter von yaboot sind:\n"
"\n"
" * „Init Nachricht“: Ein Text, der vor der Eingabeaufforderung angezeigt\n"
"wird.\n"
@@ -4533,27 +4648,27 @@ msgstr ""
"einem frĂŒheren Schritt bereits eine Boot-Partition angelegt haben, um diese\n"
"Daten zu beherbergen.\n"
"\n"
-" * „Open Firmware Verzögerung“: Im Gegensatz zu „LILO“, stehen mit „Yaboot“\n"
+" * „Open Firmware Verzögerung“: Im Gegensatz zu LILO, stehen mit yaboot\n"
"zwei Verzögerungen zur VerfĂŒgung. Die erste Verzögerung wird in Sekunden\n"
"angegeben und dient zur Auswahl zwischen CD, OF Boot, MacOS oder Linux.\n"
"\n"
" * „BS-Startverzögerung fĂŒr den Kern“: Diese Verzögerung entspricht der\n"
-"„LILO“ Start-Verzögerung. Sie haben nach der Auswahl von GNU/Linux diese\n"
+"LILO Start-Verzögerung. Sie haben nach der Auswahl von GNU/Linux diese\n"
"Verzögerung (in 0,1 Sekunden Schritten) Zeit, bis der Standardkern geladen\n"
"wird.\n"
"\n"
" * „BS-Start von CD erlauben“: Markieren dieses Punkts erlaubt es Ihnen an\n"
-"der ersten Eingabeaufforderung „C“ fĂŒr den Start von CD zu wĂ€hlen.\n"
+"der ersten Eingabeaufforderung [C] fĂŒr den Start von CD zu wĂ€hlen.\n"
"\n"
" * „Open Firmware Start erlauben“: Markieren dieses Punkts erlaubt es Ihnen\n"
-"an der ersten Eingabeaufforderung „N“ fĂŒr den Open Firmware Start zu\n"
+"an der ersten Eingabeaufforderung [N] fĂŒr den Open Firmware Start zu\n"
"wÀhlen.\n"
"\n"
" * „Standard BS“: Hiermit stellen Sie ein, welches Betriebssystem nach\n"
"Ablauf der Open Firmware Verzögerung automatisch gestartet werden soll."
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/de/drakx-help.xml
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
#: ../../help.pm_.c:865
msgid ""
"Here are presented various parameters concerning your machine. Depending on\n"
@@ -4572,7 +4687,9 @@ msgid ""
"order to configure the clock according to the time zone you are in;\n"
"\n"
" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
-"configuration wizard;\n"
+"configuration wizard. Consult the corresponding chapter of the ``User\n"
+"Guide'' for more information on how to setup a new printer. The interface\n"
+"presented there is similar to the one used during installation;\n"
"\n"
" * \"Sound card\": if a sound card is detected on your system, it is\n"
"displayed here. No modification possible at installation time;\n"
@@ -4615,20 +4732,20 @@ msgstr ""
"Parameter Àndern."
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/de/drakx-help.xml
-#: ../../help.pm_.c:894
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
+#: ../../help.pm_.c:896
msgid ""
"Choose the hard drive you want to erase in order to install your new\n"
"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
"and will not be recoverable!"
msgstr ""
-"WÀhlen Sie die Festplatte, die sie löschen wollen, um Ihre neue Mandrake\n"
-"Linux Distribution darauf zu installieren. Achtung: Alle darauf\n"
-"befindlichen Daten gehen bei diesem Schritt unwiederbringlich verloren!"
+"Bitte wÀhlen Sie die Festplatte, die Sie löschen wollen, um Ihr neues\n"
+"Mandrake Linux zu installieren. Bedenken Sie dabei, dass alle Daten auf\n"
+"dieser Platte nach diesem Schritt unwiederbringlich verloren sind!"
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/de/drakx-help.xml
-#: ../../help.pm_.c:899
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
+#: ../../help.pm_.c:901
msgid ""
"Click on \"OK\" if you want to delete all data and partitions present on\n"
"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
@@ -4638,13 +4755,12 @@ msgid ""
"Click on \"Cancel\" to cancel this operation without losing any data and\n"
"partitions present on this hard drive."
msgstr ""
-"WĂ€hlen Sie „OK“, wenn Sie alle Partitionen (damit auch alle Daten) dieser\n"
-"Festplatte löschen wollen. Achtung: durch BetÀtigen dieser SchaltflÀche\n"
-"werden alle Daten auf der Festplatte unwiederbringlich gelöscht (auch alle\n"
-"evtl. vorhandenen Windows(TM)-Daten)!\n"
+"BetĂ€tigen Sie die SchaltflĂ€che „OK“, wenn Sie alle Partitionen und die\n"
+"darauf befindlichen Daten löschen wollen. Bedenken Sie, dass Sie nach\n"
+"betÀtigen der SchaltflÀche auch an die möglichweise noch vorhandenen\n"
+"Windows Daten nicht mehr gelangen werden!\n"
"\n"
-"WĂ€hlen Sie „Abbruch“, um die vorhandenen Daten unangetastet zu lassen und\n"
-"die Operation abzubrechen."
+"WĂ€hlen Sie „Abbruch“, um ohne Datenverlust die Aktion abtzubrechen."
#: ../../install2.pm_.c:111
#, c-format
@@ -4663,7 +4779,7 @@ msgstr ""
msgid "You must also format %s"
msgstr "Sie mĂŒssen auch %s formatieren."
-#: ../../install_any.pm_.c:418
+#: ../../install_any.pm_.c:423
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -4688,22 +4804,36 @@ msgstr ""
"\n"
"Wollen Sie diese Server wirklich installieren?\n"
-#: ../../install_any.pm_.c:453
+#: ../../install_any.pm_.c:441
+#, c-format
+msgid ""
+"The following packages will be removed to allow upgrading your system: %s\n"
+"\n"
+"\n"
+"Do you really want to remove these packages?\n"
+msgstr ""
+"Folgende Pakete werden entfernt, um das Aktualisieren Ihres Rechners zu "
+"ermöglichen: %s\n"
+"\n"
+"\n"
+"Wollen Sie diese Pakete wirklich entfernen?\n"
+
+#: ../../install_any.pm_.c:471
msgid "Can't use broadcast with no NIS domain"
msgstr ""
"Ich kann kein Broadcast machen,\n"
"da keine NIS DomÀne angegeben wurde"
-#: ../../install_any.pm_.c:841
+#: ../../install_any.pm_.c:862
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Legen Sie eine leere, FAT formatierte Diskette in Laufwerk %s ein."
-#: ../../install_any.pm_.c:845
+#: ../../install_any.pm_.c:866
msgid "This floppy is not FAT formatted"
msgstr "Diese Diskette ist nich FAT formatiert"
-#: ../../install_any.pm_.c:857
+#: ../../install_any.pm_.c:878
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -4711,11 +4841,20 @@ msgstr ""
"Um diese gespeicherte Paketauswahl zu verwenden, starten Sie die \n"
"Installation bitte mit: „boot defcfg=floppy“"
-#: ../../install_any.pm_.c:880 ../../partition_table.pm_.c:771
+#: ../../install_any.pm_.c:901 ../../partition_table.pm_.c:767
#, c-format
msgid "Error reading file %s"
msgstr "Fehler beim Lesen der Datei %s"
+#: ../../install_any.pm_.c:1023
+msgid ""
+"An error 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, auf "
+"denen neue Dateisysteme erstellt werden können. Bitte ĂŒberprĂŒfen Sie Ihre "
+"Hardware(-Konfiguration) auf mögliche Fehler und falsche Einstellungen."
+
#: ../../install_interactive.pm_.c:23
#, c-format
msgid ""
@@ -4749,59 +4888,59 @@ msgstr ""
"\n"
"Wollen Sie trotzdem fortfahren?"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:168
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:169
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "Sie mĂŒssen eine FAT Partition in „/boot/efi“ eingehĂ€ngt haben."
-#: ../../install_interactive.pm_.c:91
+#: ../../install_interactive.pm_.c:92
msgid "Use free space"
msgstr "Freien Platz verwenden"
-#: ../../install_interactive.pm_.c:93
+#: ../../install_interactive.pm_.c:94
msgid "Not enough free space to allocate new partitions"
msgstr "Nicht genug freier Platz, um die neue Partition anlegen zu können."
-#: ../../install_interactive.pm_.c:101
+#: ../../install_interactive.pm_.c:102
msgid "Use existing partitions"
msgstr "Verwende existierende Partition(en)"
-#: ../../install_interactive.pm_.c:103
+#: ../../install_interactive.pm_.c:104
msgid "There is no existing partition to use"
msgstr "Es gibt keine existierende Partition, die ich verwenden kann."
-#: ../../install_interactive.pm_.c:110
+#: ../../install_interactive.pm_.c:111
msgid "Use the Windows partition for loopback"
msgstr "Auf der Windows Partition Loopbacks anlegen"
-#: ../../install_interactive.pm_.c:113
+#: ../../install_interactive.pm_.c:114
msgid "Which partition do you want to use for Linux4Win?"
msgstr "Auf welche Partition wollen Sie Linux4Win installieren?"
-#: ../../install_interactive.pm_.c:115
+#: ../../install_interactive.pm_.c:116
msgid "Choose the sizes"
msgstr "WĂ€hlen Sie die GrĂ¶ĂŸen"
-#: ../../install_interactive.pm_.c:116
+#: ../../install_interactive.pm_.c:117
msgid "Root partition size in MB: "
msgstr "GrĂ¶ĂŸe der Verzeichnisbaumwurzel-Partition in MB: "
-#: ../../install_interactive.pm_.c:117
+#: ../../install_interactive.pm_.c:118
msgid "Swap partition size in MB: "
msgstr "GrĂ¶ĂŸe der Auslagerungspartition in MB: "
-#: ../../install_interactive.pm_.c:126
+#: ../../install_interactive.pm_.c:128
msgid "Use the free space on the Windows partition"
msgstr "Den freien Platz der Windows Partition verwenden"
-#: ../../install_interactive.pm_.c:129
+#: ../../install_interactive.pm_.c:131
msgid "Which partition do you want to resize?"
msgstr "Bei welcher Partition wollen Sie die GrĂ¶ĂŸe Ă€ndern?"
-#: ../../install_interactive.pm_.c:131
+#: ../../install_interactive.pm_.c:133
msgid "Resizing Windows partition"
msgstr "Errechne die Grenzen des Windows Dateisystems"
-#: ../../install_interactive.pm_.c:134
+#: ../../install_interactive.pm_.c:136
#, c-format
msgid ""
"The FAT resizer is unable to handle your partition, \n"
@@ -4811,7 +4950,7 @@ msgstr ""
"Partition nicht arbeiten. Folgender Fehler trat auf:\n"
"%s"
-#: ../../install_interactive.pm_.c:137
+#: ../../install_interactive.pm_.c:139
msgid ""
"Your Windows partition is too fragmented. Please reboot your computer under "
"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
@@ -4820,7 +4959,7 @@ msgstr ""
"Ihre Windows-Partition ist zu sehr fragmentiert.\n"
"Starten Sie bitte erst „defrag“ unter Windows."
-#: ../../install_interactive.pm_.c:138
+#: ../../install_interactive.pm_.c:140
msgid ""
"WARNING!\n"
"\n"
@@ -4841,21 +4980,21 @@ msgstr ""
"Sie sollten natĂŒrlich generell Sicherheitskopien Ihrer Daten angelegt\n"
"haben. Falls dies der Fall ist, können Sie mit OK fortfahren."
-#: ../../install_interactive.pm_.c:148
+#: ../../install_interactive.pm_.c:150
msgid "Which size do you want to keep for Windows on"
msgstr "Wieviel Platz benötigen sie noch fĂŒr Windows auf"
-#: ../../install_interactive.pm_.c:149
+#: ../../install_interactive.pm_.c:151
#, c-format
msgid "partition %s"
msgstr "Partition %s"
-#: ../../install_interactive.pm_.c:156
+#: ../../install_interactive.pm_.c:158
#, c-format
msgid "FAT resizing failed: %s"
msgstr "FAT GrĂ¶ĂŸenanpassung schlug Fehl: %s"
-#: ../../install_interactive.pm_.c:171
+#: ../../install_interactive.pm_.c:173
msgid ""
"There is no FAT partition to resize or to use as loopback (or not enough "
"space left)"
@@ -4864,36 +5003,36 @@ msgstr ""
"ich als Loopback verwenden kann (möglicherweise haben Sie auch einfach\n"
"nur nichtmehr genĂŒgend freien Speicher)."
-#: ../../install_interactive.pm_.c:177
+#: ../../install_interactive.pm_.c:179
msgid "Erase entire disk"
msgstr "Komplette Platte löschen"
-#: ../../install_interactive.pm_.c:177
+#: ../../install_interactive.pm_.c:179
msgid "Remove Windows(TM)"
msgstr "Windows(TM) löschen"
-#: ../../install_interactive.pm_.c:180
+#: ../../install_interactive.pm_.c:182
msgid "You have more than one hard drive, which one do you install linux on?"
msgstr ""
"Sie haben mehr als eine Festplatte.\n"
"Auf welche soll GNU/Linux installiert werden?"
-#: ../../install_interactive.pm_.c:183
+#: ../../install_interactive.pm_.c:185
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr ""
"SÄMTLICHE existierende Partitionen samt der derauf befindlichen Daten \n"
"auf Laufwerk %s gehen dabei verloren"
-#: ../../install_interactive.pm_.c:191
+#: ../../install_interactive.pm_.c:193
msgid "Custom disk partitioning"
msgstr "Benutzerdefinierte Partitionierung"
-#: ../../install_interactive.pm_.c:195
+#: ../../install_interactive.pm_.c:197
msgid "Use fdisk"
msgstr "Fdisk verwenden"
-#: ../../install_interactive.pm_.c:198
+#: ../../install_interactive.pm_.c:200
#, c-format
msgid ""
"You can now partition %s.\n"
@@ -4903,28 +5042,28 @@ msgstr ""
"Vergessen Sie nicht die Einstellungen mittels ,w` zu speichern, \n"
"sobald Sie fertig sind."
-#: ../../install_interactive.pm_.c:227
+#: ../../install_interactive.pm_.c:229
msgid "You don't have enough free space on your Windows partition"
msgstr "Sie haben nicht genug freien Platz auf Ihrer Windows Partition."
-#: ../../install_interactive.pm_.c:243
+#: ../../install_interactive.pm_.c:245
msgid "I can't find any room for installing"
msgstr "Ich finde nicht genug Platz fĂŒr die Installation."
-#: ../../install_interactive.pm_.c:246
+#: ../../install_interactive.pm_.c:248
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr "Der DrakX Partitionierungsassistent fand folgende Lösung:"
-#: ../../install_interactive.pm_.c:250
+#: ../../install_interactive.pm_.c:252
#, c-format
msgid "Partitioning failed: %s"
msgstr "Das Partitionieren schlug Fehl: %s"
-#: ../../install_interactive.pm_.c:260
+#: ../../install_interactive.pm_.c:262
msgid "Bringing up the network"
msgstr "Netzwerkverbindung herstellen"
-#: ../../install_interactive.pm_.c:265
+#: ../../install_interactive.pm_.c:267
msgid "Bringing down the network"
msgstr "Netzwerkverbindung trennen"
@@ -4936,12 +5075,12 @@ msgstr ""
"Es trat ein Fehler auf. Ich weiß jedoch nicht, wie ich damit sinnvoll \n"
"umgehen soll. Sie können fortfahren, jedoch auf eigenes Risiko!"
-#: ../../install_steps.pm_.c:210
+#: ../../install_steps.pm_.c:211
#, c-format
msgid "Duplicate mount point %s"
msgstr "Den EinhÀngpunkt %s kopieren"
-#: ../../install_steps.pm_.c:379
+#: ../../install_steps.pm_.c:380
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -4953,12 +5092,12 @@ msgstr ""
"Testen Sie die CD-ROM auf einem Linux-Rechner mittels „rpm -qpl \n"
"Mandrake/rpms/*.rpm“\n"
-#: ../../install_steps.pm_.c:451
+#: ../../install_steps.pm_.c:452
#, c-format
msgid "Welcome to %s"
msgstr "Willkommen auf %s"
-#: ../../install_steps.pm_.c:530 ../../install_steps.pm_.c:770
+#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:772
msgid "No floppy drive available"
msgstr "Kein Disketten-Laufwerk verfĂŒgbar"
@@ -4989,73 +5128,73 @@ msgstr "Installationsart"
msgid "Please choose one of the following classes of installation:"
msgstr "Bitte wÀhlen Sie eine der folgenden Installationsklassen:"
-#: ../../install_steps_gtk.pm_.c:243 ../../install_steps_interactive.pm_.c:694
+#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:678
msgid "Package Group Selection"
msgstr "Auswahl der Paketgruppen"
-#: ../../install_steps_gtk.pm_.c:276 ../../install_steps_interactive.pm_.c:709
+#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:693
msgid "Individual package selection"
msgstr "Individuelle Paketauswahl"
-#: ../../install_steps_gtk.pm_.c:299 ../../install_steps_interactive.pm_.c:633
+#: ../../install_steps_gtk.pm_.c:293 ../../install_steps_interactive.pm_.c:617
#, c-format
msgid "Total size: %d / %d MB"
msgstr "GesamtgrĂ¶ĂŸe: %d / %d MB"
-#: ../../install_steps_gtk.pm_.c:341
+#: ../../install_steps_gtk.pm_.c:335
msgid "Bad package"
msgstr "UngĂŒltiges Paket"
-#: ../../install_steps_gtk.pm_.c:342
+#: ../../install_steps_gtk.pm_.c:336
#, c-format
msgid "Name: %s\n"
msgstr "Name: %s\n"
-#: ../../install_steps_gtk.pm_.c:343
+#: ../../install_steps_gtk.pm_.c:337
#, c-format
msgid "Version: %s\n"
msgstr "Version: %s\n"
-#: ../../install_steps_gtk.pm_.c:344
+#: ../../install_steps_gtk.pm_.c:338
#, c-format
msgid "Size: %d KB\n"
msgstr "GrĂ¶ĂŸe: %d KB\n"
-#: ../../install_steps_gtk.pm_.c:345
+#: ../../install_steps_gtk.pm_.c:339
#, c-format
msgid "Importance: %s\n"
msgstr "Wichtigkeit: %s\n"
-#: ../../install_steps_gtk.pm_.c:367
+#: ../../install_steps_gtk.pm_.c:361
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr ""
"Sie können dieses Paket nicht auswÀhlen, da Sie nicht genug Plattenplatz "
"haben."
-#: ../../install_steps_gtk.pm_.c:372
+#: ../../install_steps_gtk.pm_.c:366
msgid "The following packages are going to be installed"
msgstr "Die folgenden Pakete werden installiert werden"
-#: ../../install_steps_gtk.pm_.c:373
+#: ../../install_steps_gtk.pm_.c:367
msgid "The following packages are going to be removed"
msgstr "Die folgenden Pakete werden entfernt"
-#: ../../install_steps_gtk.pm_.c:385
+#: ../../install_steps_gtk.pm_.c:379
msgid "You can't select/unselect this package"
msgstr "Sie können dieses Paket nicht auswÀhlen/es aus der Auswahl entfernen."
-#: ../../install_steps_gtk.pm_.c:397
+#: ../../install_steps_gtk.pm_.c:391
msgid "This is a mandatory package, it can't be unselected"
msgstr "Dieses Paket ist existenziell, sie können es nicht deselektieren"
-#: ../../install_steps_gtk.pm_.c:399
+#: ../../install_steps_gtk.pm_.c:393
msgid "You can't unselect this package. It is already installed"
msgstr ""
"Sie können dieses Paket nicht aus der Auswahl entfernen. \n"
"Es ist bereits installiert!"
-#: ../../install_steps_gtk.pm_.c:402
+#: ../../install_steps_gtk.pm_.c:396
msgid ""
"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
@@ -5063,76 +5202,76 @@ msgstr ""
"Dieses Paket muss aktualisiert werden.\n"
"Sind Sie sicher, dass Sie es aus der Auswahl entfernen wollen?"
-#: ../../install_steps_gtk.pm_.c:405
+#: ../../install_steps_gtk.pm_.c:399
msgid "You can't unselect this package. It must be upgraded"
msgstr ""
"Sie können dieses Paket nicht aus der Auswahl entfernen. \n"
"Es muss aktualisiert werden!"
-#: ../../install_steps_gtk.pm_.c:410
+#: ../../install_steps_gtk.pm_.c:404
msgid "Show automatically selected packages"
msgstr "Anzeige automatisch markierter Pakete"
-#: ../../install_steps_gtk.pm_.c:411 ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_gtk.pm_.c:405 ../../install_steps_interactive.pm_.c:255
#: ../../install_steps_interactive.pm_.c:259
-#: ../../standalone/drakbackup_.c:3600
+#: ../../standalone/drakbackup_.c:4257
msgid "Install"
msgstr "Installation"
-#: ../../install_steps_gtk.pm_.c:414
+#: ../../install_steps_gtk.pm_.c:408
msgid "Load/Save on floppy"
msgstr "Laden von/Speichern auf Diskette"
-#: ../../install_steps_gtk.pm_.c:415
+#: ../../install_steps_gtk.pm_.c:409
msgid "Updating package selection"
msgstr "Erneuere Paket Auswahl"
-#: ../../install_steps_gtk.pm_.c:420
+#: ../../install_steps_gtk.pm_.c:414
msgid "Minimal install"
msgstr "Minimal-Installation"
-#: ../../install_steps_gtk.pm_.c:435 ../../install_steps_interactive.pm_.c:538
+#: ../../install_steps_gtk.pm_.c:429 ../../install_steps_interactive.pm_.c:522
msgid "Choose the packages you want to install"
msgstr "Zu installierende Pakete auswÀhlen"
-#: ../../install_steps_gtk.pm_.c:451 ../../install_steps_interactive.pm_.c:778
+#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:762
msgid "Installing"
msgstr "Installation wird durchgefĂŒhrt"
-#: ../../install_steps_gtk.pm_.c:457
+#: ../../install_steps_gtk.pm_.c:451
msgid "Estimating"
msgstr "SchÀtzung"
-#: ../../install_steps_gtk.pm_.c:464
+#: ../../install_steps_gtk.pm_.c:458
msgid "Time remaining "
msgstr "Verbleibende Zeit "
-#: ../../install_steps_gtk.pm_.c:476
+#: ../../install_steps_gtk.pm_.c:470
msgid "Please wait, preparing installation..."
msgstr "Bitte warten, bereite Installation vor"
-#: ../../install_steps_gtk.pm_.c:560
+#: ../../install_steps_gtk.pm_.c:554
#, c-format
msgid "%d packages"
msgstr "%d Pakete"
-#: ../../install_steps_gtk.pm_.c:565
+#: ../../install_steps_gtk.pm_.c:559
#, c-format
msgid "Installing package %s"
msgstr "Installation des Pakets %s"
-#: ../../install_steps_gtk.pm_.c:602 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:802
+#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:786
#: ../../standalone/drakautoinst_.c:202
msgid "Accept"
msgstr "Akzeptieren"
-#: ../../install_steps_gtk.pm_.c:602 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:802
+#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:786
msgid "Refuse"
msgstr "ZurĂŒckweisen"
-#: ../../install_steps_gtk.pm_.c:603 ../../install_steps_interactive.pm_.c:803
+#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:787
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -5147,17 +5286,17 @@ msgstr ""
"dann drĂŒcken Sie OK.\n"
"Falls Sie sie nicht vorliegen haben, drĂŒcken Sie Abbruch."
-#: ../../install_steps_gtk.pm_.c:617 ../../install_steps_gtk.pm_.c:621
-#: ../../install_steps_interactive.pm_.c:815
-#: ../../install_steps_interactive.pm_.c:819
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_gtk.pm_.c:615
+#: ../../install_steps_interactive.pm_.c:799
+#: ../../install_steps_interactive.pm_.c:803
msgid "Go on anyway?"
msgstr "Wollen Sie trotzdem fortfahren?"
-#: ../../install_steps_gtk.pm_.c:617 ../../install_steps_interactive.pm_.c:815
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:799
msgid "There was an error ordering packages:"
msgstr "Bei der Anforderung folgender Pakete trat ein Fehler auf:"
-#: ../../install_steps_gtk.pm_.c:621 ../../install_steps_interactive.pm_.c:819
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:803
msgid "There was an error installing packages:"
msgstr "Bei der Installation der Pakete trat ein Fehler auf:"
@@ -5360,7 +5499,7 @@ msgstr ""
"der Mandrake Linux-Lizenz in die deutsche Sprache. Sie ist keine\n"
"rechtsverbindliche Darstellung der Lizenzbedingungen der Software in\n"
"dieser Distribution - nur der ursprĂŒngliche französische Text der\n"
-"Mandrake Linux Lizenz ist rechtsverbindlich. Wir hoffen aber, dass diese\n"
+"Mandrake Linux-Lizenz ist rechtsverbindlich. Wir hoffen aber, dass diese\n"
"Übersetzung den deutschsprechenden Benutzern das VerstĂ€ndnis dieser\n"
"Lizenz erleichtert.\n"
"\n"
@@ -5399,7 +5538,7 @@ msgstr ""
"gegeben soweit es gesetzlich zulÀssig ist.\n"
"MandrakeSoft S. A. haftet unter keinen UmstÀnden, soweit gesetzlich\n"
"zulĂ€ssig, fĂŒr direkte oder indirekte SchĂ€den irgendwelcher Art,\n"
-"(inklusive uneingeschrÀnkt SchÀden aufgrund Verlust von\n"
+"(inklusive uneingeschrÀnkten SchÀden aufgrund Verlust von\n"
"GeschÀftsbeziehungen, Unterbrechung von GeschÀftsvorgÀngen,\n"
"finanziellen Verlust, GebĂŒhren oder Strafen aufgrund gerichtlicher\n"
"Entscheide, oder jegliche FolgeschÀden) die aufgrund der Benutzung oder\n"
@@ -5414,7 +5553,7 @@ msgstr ""
"\n"
"Soweit gesetzlich zulÀssig, haften MandrakeSoft S. A. und deren\n"
"Vertreiber unter keinen UmstĂ€nden fĂŒr direkte oder indirekte SchĂ€den\n"
-"irgendwelcher Art, (inklusive uneingeschrÀnkt SchÀden aufgrund Verlust\n"
+"irgendwelcher Art, (inklusive uneingeschrÀnkten SchÀden aufgrund Verlust\n"
"von GeschÀftsbeziehungen, Unterbrechung von GeschÀftsvorgÀngen,\n"
"finanziellen Verlust, GebĂŒhren oder Strafen aufgrund gerichtlicher\n"
"Entscheide, oder jegliche FolgeschÀden) die aufgrund des Besitzes und\n"
@@ -5466,14 +5605,14 @@ msgstr ""
"werden vorzugsweise außergerichtlich beigelegt. Letztes Mittel ist das\n"
"zustÀndige Gericht in Paris, Frankreich.\n"
"Zu jeglicher Frage zu diesem Dokument kontaktieren Sie bitte\n"
-"MandrakeSoft S. A..\n"
-"Introduction\n"
+"MandrakeSoft S. A.\n"
"\n"
"\n"
"\n"
+"Hier die französche Version:\n"
"\n"
"\n"
-"Hier die französche Version:\n"
+"Introduction\n"
"\n"
"Le systĂšme d'exploitation et les divers composants disponibles dans la \n"
"distribution Mandrake Linux sont ci-aprÚs dénommés ensemble les \n"
@@ -5577,10 +5716,10 @@ msgstr ""
#: ../../install_steps_interactive.pm_.c:191
msgid "Are you sure you refuse the licence?"
-msgstr ""
+msgstr "Sind Sie sicher, dass Sie die Lizenz zurĂŒckweisen wollen?"
#: ../../install_steps_interactive.pm_.c:211
-#: ../../install_steps_interactive.pm_.c:1038
+#: ../../install_steps_interactive.pm_.c:1023
#: ../../standalone/keyboarddrake_.c:31
msgid "Keyboard"
msgstr "Tastatur"
@@ -5628,11 +5767,11 @@ msgstr "Nur Pakete aktualisieren"
msgid "Please choose the type of your mouse."
msgstr "Bitte wÀhlen Sie Ihren Maustyp."
-#: ../../install_steps_interactive.pm_.c:281 ../../standalone/mousedrake_.c:59
+#: ../../install_steps_interactive.pm_.c:281 ../../standalone/mousedrake_.c:60
msgid "Mouse Port"
msgstr "Maus Port"
-#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:61
msgid "Please choose on which serial port your mouse is connected to."
msgstr "Bitte wÀhlen Sie den seriellen Anschluss, an dem Ihre Maus hÀngt."
@@ -5664,46 +5803,20 @@ msgstr "IDE konfigurieren"
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:336
+#: ../../install_steps_interactive.pm_.c:338
msgid "No partition available"
msgstr "Keine Partition verfĂŒgbar"
-#: ../../install_steps_interactive.pm_.c:339
+#: ../../install_steps_interactive.pm_.c:341
msgid "Scanning partitions to find mount points"
msgstr "Durchsuchen der Partitionen, um die EinhÀngpunkte zu finden."
-#: ../../install_steps_interactive.pm_.c:347
+#: ../../install_steps_interactive.pm_.c:349
msgid "Choose the mount points"
msgstr "WÀhlen Sie die EinhÀngpunkte"
-#: ../../install_steps_interactive.pm_.c:366
-#, c-format
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to not allow DrakX to modify the partition table.\n"
-"(the error is %s)\n"
-"\n"
-"Do you agree to loose all the partitions?\n"
-msgstr ""
-"Vermutlich ist Ihre Partitionstabelle fehlerhaft, ich habe Probleme,\n"
-"sie zu lesen :-( (Folgender Fehler trat auf: „%s“).\n"
-"Ich kann fortfahren, indem ich die fehlerhaften Partitionen lösche \n"
-"(dabei gehen ALLE darauf vorhandenen DATEN VERLOREN!). Alternativ können \n"
-"Sie mir jedoch auch verbieten, die Partitionstabelle zu verÀndern.\n"
-"\n"
-"Sind Sie einverstanden, dass ich die problematischen Partitionen lösche?\n"
-
#: ../../install_steps_interactive.pm_.c:379
msgid ""
-"DiskDrake failed to read correctly the partition table.\n"
-"Continue at your own risk!"
-msgstr ""
-"DiskDrake ist nicht in der Lage, Ihre Partitionstabelle korrekt zu \n"
-"interpretieren. Sie können fortfahren, jedoch auf eigenes Risiko!"
-
-#: ../../install_steps_interactive.pm_.c:396
-msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
msgstr ""
@@ -5711,76 +5824,74 @@ msgstr ""
"Installation wird fortgesetzt, Sie mĂŒssen jedoch eine Start-Partition mit "
"DiskDrake erstellen."
-#: ../../install_steps_interactive.pm_.c:405
+#: ../../install_steps_interactive.pm_.c:388
msgid "No root partition found to perform an upgrade"
msgstr ""
"Es wurde keine Verzeichnisbaumwurzel gefunden, die aktualisiert werden kann."
-#: ../../install_steps_interactive.pm_.c:406
+#: ../../install_steps_interactive.pm_.c:389
msgid "Root Partition"
msgstr "Verzeichnisbaumwurzel"
-#: ../../install_steps_interactive.pm_.c:407
+#: ../../install_steps_interactive.pm_.c:390
msgid "What is the root partition (/) of your system?"
msgstr "Welche Partition ist Ihre Verzeichnisbaumwurzel?"
-#: ../../install_steps_interactive.pm_.c:421
+#: ../../install_steps_interactive.pm_.c:404
msgid "You need to reboot for the partition table modifications to take place"
msgstr ""
"Sie mĂŒssen Ihren Rechner neu starten, um die Änderungen \n"
"der Partitionstabelle wirksam werden zu lassen."
-#: ../../install_steps_interactive.pm_.c:445
+#: ../../install_steps_interactive.pm_.c:428
msgid "Choose the partitions you want to format"
msgstr "Zu formatierende Partitionen auswÀhlen"
-#: ../../install_steps_interactive.pm_.c:446
+#: ../../install_steps_interactive.pm_.c:429
msgid "Check bad blocks?"
msgstr "Soll ich nach defekten Blöcken suchen?"
-#: ../../install_steps_interactive.pm_.c:473
+#: ../../install_steps_interactive.pm_.c:456
msgid "Formatting partitions"
msgstr "Partitionen formatieren"
-#: ../../install_steps_interactive.pm_.c:475
+#: ../../install_steps_interactive.pm_.c:458
#, c-format
msgid "Creating and formatting file %s"
msgstr "Erzeugen und formatieren der Datei %s"
-#: ../../install_steps_interactive.pm_.c:480
+#: ../../install_steps_interactive.pm_.c:463
#, c-format
msgid ""
"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
"you can loose data)"
msgstr ""
+"Es traten Fehler beim Kontrollieren des Dateisystems %s auf. Wollen Sie, "
+"dass ich versuche sie zu beheben? (Achtung: das kann zu Datenverlust fĂŒhren)"
-#: ../../install_steps_interactive.pm_.c:482
+#: ../../install_steps_interactive.pm_.c:465
msgid "Not enough swap space to fulfill installation, please add some"
msgstr ""
"Der Swap-Bereich ist zu klein, um die Installation zu ermöglichen! \n"
"Bitte vergrĂ¶ĂŸern Sie den Bereich."
-#: ../../install_steps_interactive.pm_.c:489
-#, fuzzy
+#: ../../install_steps_interactive.pm_.c:472
msgid "Looking for available packages and rebuilding rpm database..."
-msgstr "Suche nach vorhandenen Paketen"
+msgstr "Suche nach vorhandenen Paketen und aktualisieren der RPM-Datenbank ..."
-#: ../../install_steps_interactive.pm_.c:490
+#: ../../install_steps_interactive.pm_.c:473
msgid "Looking for available packages..."
-msgstr "Suche nach vorhandenen Paketen"
+msgstr "Suche nach vorhandenen Paketen..."
-#: ../../install_steps_interactive.pm_.c:493
-#, fuzzy
+#: ../../install_steps_interactive.pm_.c:476
msgid "Looking at packages already installed..."
-msgstr ""
-"Sie können dieses Paket nicht aus der Auswahl entfernen. \n"
-"Es ist bereits installiert!"
+msgstr "Suche nach bereits installierten Paketen ..."
-#: ../../install_steps_interactive.pm_.c:497
+#: ../../install_steps_interactive.pm_.c:480
msgid "Finding packages to upgrade..."
-msgstr "Finden der zu aktualisierenden Pakete"
+msgstr "Finden der zu aktualisierenden Pakete ..."
-#: ../../install_steps_interactive.pm_.c:515
+#: ../../install_steps_interactive.pm_.c:498
#, c-format
msgid ""
"Your system does not have enough space left for installation or upgrade (%d "
@@ -5789,7 +5900,7 @@ msgstr ""
"Es steht auf Ihrem System nicht genĂŒgend Speicherplatz fĂŒr die \n"
"Installation bzw. Aktualisierung zur VerfĂŒgung (%d > %d)."
-#: ../../install_steps_interactive.pm_.c:550
+#: ../../install_steps_interactive.pm_.c:534
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
@@ -5798,36 +5909,36 @@ msgstr ""
"oder darauf gespeichert werden soll. Es handelt sich um das \n"
"selbe Format, wie die unter „auto_install“ erzeugten Disketten."
-#: ../../install_steps_interactive.pm_.c:553
+#: ../../install_steps_interactive.pm_.c:537
msgid "Load from floppy"
msgstr "Von Diskette laden"
-#: ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_interactive.pm_.c:539
msgid "Loading from floppy"
msgstr "Laden von Diskette ..."
-#: ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_interactive.pm_.c:539
msgid "Package selection"
msgstr "Auswahl der Pakete"
-#: ../../install_steps_interactive.pm_.c:560
+#: ../../install_steps_interactive.pm_.c:544
msgid "Insert a floppy containing package selection"
msgstr ""
"Legen Sie eine Diskette ein, auf der Ihre Paketauswahl gespeichert ist."
-#: ../../install_steps_interactive.pm_.c:572
+#: ../../install_steps_interactive.pm_.c:556
msgid "Save on floppy"
msgstr "Auf Diskette speichern"
-#: ../../install_steps_interactive.pm_.c:646
+#: ../../install_steps_interactive.pm_.c:630
msgid "Selected size is larger than available space"
msgstr "GewĂŒnschte GrĂ¶ĂŸe ĂŒbersteigt den verfĂŒgbaren Platz"
-#: ../../install_steps_interactive.pm_.c:660
+#: ../../install_steps_interactive.pm_.c:644
msgid "Type of install"
msgstr "Installationsklasse"
-#: ../../install_steps_interactive.pm_.c:661
+#: ../../install_steps_interactive.pm_.c:645
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
@@ -5835,19 +5946,19 @@ msgstr ""
"Sie haben keine Paketgruppe ausgewÀhlt\n"
"Bitte wĂ€hlen Sie die minimale Installation, die Sie wĂŒnschen."
-#: ../../install_steps_interactive.pm_.c:664
+#: ../../install_steps_interactive.pm_.c:648
msgid "With X"
msgstr "Mit X"
-#: ../../install_steps_interactive.pm_.c:666
+#: ../../install_steps_interactive.pm_.c:650
msgid "With basic documentation (recommended!)"
msgstr "Mit minimaler Dokumentation (Empfohlen)"
-#: ../../install_steps_interactive.pm_.c:667
+#: ../../install_steps_interactive.pm_.c:651
msgid "Truly minimal install (especially no urpmi)"
msgstr "Extrem minimale Installation (ohne „urpmi“)"
-#: ../../install_steps_interactive.pm_.c:752
+#: ../../install_steps_interactive.pm_.c:736
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -5858,16 +5969,16 @@ msgstr ""
"falls nur einige der aufgefĂŒhrten CDs fehlen, entfernen Sie die \n"
"entsprechende Markierung und wĂ€hlen Sie dann „OK“."
-#: ../../install_steps_interactive.pm_.c:757
+#: ../../install_steps_interactive.pm_.c:741
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "CD-ROM „%s“"
-#: ../../install_steps_interactive.pm_.c:778
+#: ../../install_steps_interactive.pm_.c:762
msgid "Preparing installation"
msgstr "Installation vorbereiten"
-#: ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:771
#, c-format
msgid ""
"Installing package %s\n"
@@ -5876,23 +5987,23 @@ msgstr ""
"Installiere Paket %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:833
+#: ../../install_steps_interactive.pm_.c:817
msgid "Post-install configuration"
msgstr "Einstellungen fĂŒr nach der Installation"
-#: ../../install_steps_interactive.pm_.c:839
+#: ../../install_steps_interactive.pm_.c:823
#, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Bitte legen Sie die Startdiskette in Laufwerk %s ein."
-#: ../../install_steps_interactive.pm_.c:845
+#: ../../install_steps_interactive.pm_.c:829
#, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr ""
"Bitte legen Sie die Diskette der zu aktualisiernden Module in Laufwerk %s "
"ein."
-#: ../../install_steps_interactive.pm_.c:865
+#: ../../install_steps_interactive.pm_.c:849
msgid ""
"You now have the opportunity to download encryption software.\n"
"\n"
@@ -5968,8 +6079,7 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:904
-#, fuzzy
+#: ../../install_steps_interactive.pm_.c:888
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
"have been released after the distribution was released. They may\n"
@@ -5988,164 +6098,163 @@ msgstr ""
"\n"
"Möchten Sie die Aktualisierungen vornehmen?"
-#: ../../install_steps_interactive.pm_.c:919
+#: ../../install_steps_interactive.pm_.c:903
msgid ""
"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr ""
"Verbindung mit dem Mandrake Linux Web-Server aufbauen, um eine Liste\n"
"verfĂŒgbarer Pakete zu erhalten."
-#: ../../install_steps_interactive.pm_.c:924
+#: ../../install_steps_interactive.pm_.c:908
msgid "Choose a mirror from which to get the packages"
msgstr "Bitte wÀhlen Sie einen Mirror, von dem Sie die Pakete holen wollen."
-#: ../../install_steps_interactive.pm_.c:933
+#: ../../install_steps_interactive.pm_.c:917
msgid "Contacting the mirror to get the list of available packages..."
msgstr ""
"Verbindung mit dem Mirror aufbauen, um eine Liste verfĂŒgbarer Pakete zu "
"erhalten."
-#: ../../install_steps_interactive.pm_.c:960
+#: ../../install_steps_interactive.pm_.c:945
msgid "Which is your timezone?"
msgstr "WĂ€hlen Sie Ihre Zeitzone"
-#: ../../install_steps_interactive.pm_.c:965
+#: ../../install_steps_interactive.pm_.c:950
msgid "Hardware clock set to GMT"
msgstr "Hardware Uhr liefert GMT"
-#: ../../install_steps_interactive.pm_.c:966
+#: ../../install_steps_interactive.pm_.c:951
msgid "Automatic time synchronization (using NTP)"
msgstr "Automatische Zeit-Synchronisation (durch NTP)"
-#: ../../install_steps_interactive.pm_.c:973
+#: ../../install_steps_interactive.pm_.c:958
msgid "NTP Server"
msgstr "NTP Server"
-#: ../../install_steps_interactive.pm_.c:1007
-#: ../../install_steps_interactive.pm_.c:1015
+#: ../../install_steps_interactive.pm_.c:992
+#: ../../install_steps_interactive.pm_.c:1000
msgid "Remote CUPS server"
-msgstr "CUPS-Server auf der Gegenseite"
+msgstr "CUPS-Server im Netzwerkbetrieb"
-#: ../../install_steps_interactive.pm_.c:1008
+#: ../../install_steps_interactive.pm_.c:993
msgid "No printer"
msgstr "Kein Drucker"
-#: ../../install_steps_interactive.pm_.c:1025
+#: ../../install_steps_interactive.pm_.c:1010
msgid "Do you have an ISA sound card?"
msgstr "VerfĂŒgen Sie ĂŒber eine ISA soundkarte?"
-#: ../../install_steps_interactive.pm_.c:1027
+#: ../../install_steps_interactive.pm_.c:1012
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
"Starten Sie „sndconfig“ nach der Installation, um Ihre Soundkarte "
"einzurichten."
-#: ../../install_steps_interactive.pm_.c:1029
+#: ../../install_steps_interactive.pm_.c:1014
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
"Es wurde keine Soundkarte gefunden. Versuchen Sie „harddrake“nach der "
"Installation."
-#: ../../install_steps_interactive.pm_.c:1034 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1019 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Zusammenfassung"
-#: ../../install_steps_interactive.pm_.c:1037
+#: ../../install_steps_interactive.pm_.c:1022
msgid "Mouse"
msgstr "Maus"
-#: ../../install_steps_interactive.pm_.c:1039
+#: ../../install_steps_interactive.pm_.c:1024
msgid "Timezone"
msgstr "Zeitzone"
-#: ../../install_steps_interactive.pm_.c:1040 ../../printerdrake.pm_.c:2728
-#: ../../printerdrake.pm_.c:2814
+#: ../../install_steps_interactive.pm_.c:1025 ../../printerdrake.pm_.c:2937
+#: ../../printerdrake.pm_.c:3026
msgid "Printer"
msgstr "Drucker"
-#: ../../install_steps_interactive.pm_.c:1042
+#: ../../install_steps_interactive.pm_.c:1027
msgid "ISDN card"
msgstr "ISDN Karte"
-#: ../../install_steps_interactive.pm_.c:1045
-#: ../../install_steps_interactive.pm_.c:1047
+#: ../../install_steps_interactive.pm_.c:1030
+#: ../../install_steps_interactive.pm_.c:1032
msgid "Sound card"
msgstr "Soundkarte"
-#: ../../install_steps_interactive.pm_.c:1049
+#: ../../install_steps_interactive.pm_.c:1034
msgid "TV card"
msgstr "TV-Karte"
-#: ../../install_steps_interactive.pm_.c:1089
-#: ../../install_steps_interactive.pm_.c:1114
-#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1074
+#: ../../install_steps_interactive.pm_.c:1099
+#: ../../install_steps_interactive.pm_.c:1103
msgid "LDAP"
msgstr "LDAP"
-#: ../../install_steps_interactive.pm_.c:1090
-#: ../../install_steps_interactive.pm_.c:1114
-#: ../../install_steps_interactive.pm_.c:1127
+#: ../../install_steps_interactive.pm_.c:1075
+#: ../../install_steps_interactive.pm_.c:1099
+#: ../../install_steps_interactive.pm_.c:1112
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1091
-#: ../../install_steps_interactive.pm_.c:1114
-#: ../../install_steps_interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1141
-#, fuzzy
+#: ../../install_steps_interactive.pm_.c:1076
+#: ../../install_steps_interactive.pm_.c:1099
+#: ../../install_steps_interactive.pm_.c:1120
+#: ../../install_steps_interactive.pm_.c:1126
msgid "Windows Domain"
-msgstr "Windows-Schriften verwenden"
+msgstr "Windows DomÀne"
-#: ../../install_steps_interactive.pm_.c:1092
-#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1077
+#: ../../install_steps_interactive.pm_.c:1099
msgid "Local files"
msgstr "Lokale Dateien"
-#: ../../install_steps_interactive.pm_.c:1101
-#: ../../install_steps_interactive.pm_.c:1102 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1086
+#: ../../install_steps_interactive.pm_.c:1087 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Root-Passwort setzen"
-#: ../../install_steps_interactive.pm_.c:1103
+#: ../../install_steps_interactive.pm_.c:1088
msgid "No password"
msgstr "Kein Passwort"
-#: ../../install_steps_interactive.pm_.c:1108
+#: ../../install_steps_interactive.pm_.c:1093
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr ""
"Dieses Passwort ist zu einfach (es muss mindestens %d Zeichen lang sein)!"
-#: ../../install_steps_interactive.pm_.c:1114 ../../network/modem.pm_.c:49
+#: ../../install_steps_interactive.pm_.c:1099 ../../network/modem.pm_.c:49
#: ../../standalone/drakconnect_.c:625 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Authentifizierung"
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1107
msgid "Authentication LDAP"
msgstr "LDAP Authentifizierung"
-#: ../../install_steps_interactive.pm_.c:1123
+#: ../../install_steps_interactive.pm_.c:1108
msgid "LDAP Base dn"
msgstr "LDAP Base dn"
-#: ../../install_steps_interactive.pm_.c:1124
+#: ../../install_steps_interactive.pm_.c:1109
msgid "LDAP Server"
msgstr "LDAP Server"
-#: ../../install_steps_interactive.pm_.c:1130
+#: ../../install_steps_interactive.pm_.c:1115
msgid "Authentication NIS"
msgstr "NIS Authentifizierung"
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1116
msgid "NIS Domain"
msgstr "NIS Domain"
-#: ../../install_steps_interactive.pm_.c:1132
+#: ../../install_steps_interactive.pm_.c:1117
msgid "NIS Server"
msgstr "NIS Server"
-#: ../../install_steps_interactive.pm_.c:1138
+#: ../../install_steps_interactive.pm_.c:1123
msgid ""
"For this to work for a W2K PDC, you will probably need to have the admin "
"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
@@ -6160,22 +6269,36 @@ msgid ""
"The command 'wbinfo -t' will test whether your authentication secrets are "
"good."
msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1140
-#, fuzzy
+"Damit dies mit einem Windows 2000-DomÀnen-Controller funktioniert, muss der "
+"Administrator folgendes AusfĂŒhren: „C:\\>net localgroup \"Pre-Windows 2000 "
+"Compatible Access\" everyone /add“. Anschließend muss der Server neu "
+"gestartet werden.\n"
+"Damit Sie Ihren Mandrake Linux Rechner zur Windows(TM) DomĂ€ne hinzufĂŒgen "
+"können, benötigen Sie noch Kennzeichen und Passwort des "
+"DomÀnenadministrators.\n"
+"Sollte das Netzwerk noch nicht aktiv sein, wird DrakX nach der "
+"Netzwerkkonfiguration versuchen, sich in die DomÀne zu integrieren.\n"
+"Sollte dies schief gehen, und die DomÀnenauthentifizierung funktioniert "
+"nicht, verwenden Sie nach der Instalation von Mandrake Linux folgenden "
+"Befehl: „smbpasswd -j DOMÄNE -U KENNZEICEN%PASSWORT“, wobei „DOMÄNE“ die "
+"Windows(TM) DomĂ€ne ist, „KENNZEICHEN“ und „PASSWORT“ das Kennzeichen und das "
+"Passwort des DomÀnenadministrators.\n"
+"Mit „wbinfo -t“ können Sie anschließend testetn, ob die Anmeldung "
+"erfolgreich war."
+
+#: ../../install_steps_interactive.pm_.c:1125
msgid "Authentication Windows Domain"
-msgstr "LDAP Authentifizierung"
+msgstr "Windows DomÀnenauthentifizierung"
-#: ../../install_steps_interactive.pm_.c:1142
-#, fuzzy
+#: ../../install_steps_interactive.pm_.c:1127
msgid "Domain Admin User Name"
-msgstr "Name der DomÀne"
+msgstr "Name des DomÀnenadministrators"
-#: ../../install_steps_interactive.pm_.c:1143
+#: ../../install_steps_interactive.pm_.c:1128
msgid "Domain Admin Password"
-msgstr ""
+msgstr "Paswort des Administrators"
-#: ../../install_steps_interactive.pm_.c:1178
+#: ../../install_steps_interactive.pm_.c:1163
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
"depending on the normal bootloader. This is useful if you don't want to "
@@ -6206,19 +6329,19 @@ msgstr ""
"Falls Sie eine Startdiskette erstellen wollen, legen Sie eine Diskette \n"
"ohne relevante Daten in ihr erstes Laufwerk und drĂŒcken Sie „OK“."
-#: ../../install_steps_interactive.pm_.c:1194
+#: ../../install_steps_interactive.pm_.c:1179
msgid "First floppy drive"
msgstr "erste Disketten-Laufwerk"
-#: ../../install_steps_interactive.pm_.c:1195
+#: ../../install_steps_interactive.pm_.c:1180
msgid "Second floppy drive"
msgstr "zweite Disketten-Laufwerk"
-#: ../../install_steps_interactive.pm_.c:1196 ../../printerdrake.pm_.c:2277
+#: ../../install_steps_interactive.pm_.c:1181 ../../printerdrake.pm_.c:2470
msgid "Skip"
msgstr "Überspringen"
-#: ../../install_steps_interactive.pm_.c:1201
+#: ../../install_steps_interactive.pm_.c:1186
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -6247,7 +6370,7 @@ msgstr ""
"Möchten Sie jetzt eine Startdiskette fĂŒr Ihr System erstellen?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1207
+#: ../../install_steps_interactive.pm_.c:1192
msgid ""
"\n"
"\n"
@@ -6261,31 +6384,30 @@ msgstr ""
"Das Erstellen einer Startdiskette auf einem 1,44 MB Medium \n"
"schlĂ€ sicher fehl, da XFS einen sehr großen Treiber benötigt)."
-#: ../../install_steps_interactive.pm_.c:1215
+#: ../../install_steps_interactive.pm_.c:1200
msgid "Sorry, no floppy drive available"
msgstr "Ich kann kein Laufwerk finden"
-#: ../../install_steps_interactive.pm_.c:1219
+#: ../../install_steps_interactive.pm_.c:1204
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr ""
"WĂ€hlen Sie das Laufwerk, in dem Sie die Start-Diskette erstellen wollen"
-#: ../../install_steps_interactive.pm_.c:1223
+#: ../../install_steps_interactive.pm_.c:1208
#, c-format
msgid "Insert a floppy in %s"
msgstr ""
-"Legen Sie eine Diskette, die keine relevanten Daten mehr enthÀllt in das %s "
-"ein."
+"Legen Sie eine Diskette, die keine relevanten Daten mehr enthĂ€lt in „%s“ ein."
-#: ../../install_steps_interactive.pm_.c:1226
+#: ../../install_steps_interactive.pm_.c:1211
msgid "Creating bootdisk..."
msgstr "Startdiskette wird erstellt..."
-#: ../../install_steps_interactive.pm_.c:1233
+#: ../../install_steps_interactive.pm_.c:1218
msgid "Preparing bootloader..."
msgstr "Betriebssystemstarter vorbereiten"
-#: ../../install_steps_interactive.pm_.c:1244
+#: ../../install_steps_interactive.pm_.c:1229
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -6299,11 +6421,11 @@ msgstr ""
"„BootX“ verwenden mĂŒssen um LINUX auf Ihrem Rechner\n"
"zu starten."
-#: ../../install_steps_interactive.pm_.c:1250
+#: ../../install_steps_interactive.pm_.c:1235
msgid "Do you want to use aboot?"
msgstr "Möchten Sie „aboot“ verwenden?"
-#: ../../install_steps_interactive.pm_.c:1253
+#: ../../install_steps_interactive.pm_.c:1238
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -6312,16 +6434,16 @@ msgstr ""
"mit Gewalt versuchen, auch wenn dies die Zerstörung der ersten \n"
"Partition verursachen kann?"
-#: ../../install_steps_interactive.pm_.c:1260
+#: ../../install_steps_interactive.pm_.c:1245
msgid "Installing bootloader"
-msgstr "BS-Starter installieren"
+msgstr "Betriebssystemstarter installieren"
-#: ../../install_steps_interactive.pm_.c:1266
+#: ../../install_steps_interactive.pm_.c:1251
msgid "Installation of bootloader failed. The following error occured:"
msgstr ""
"Die Installation des BS-Starters schlug Fehl. Folgender Fehler trat auf:"
-#: ../../install_steps_interactive.pm_.c:1274
+#: ../../install_steps_interactive.pm_.c:1259
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -6339,17 +6461,17 @@ msgstr ""
"Tippen Sie dann: shut-down\n"
"Beim darauffolgenden Neustart sollte Sie die Eingabeaufforderung sehen."
-#: ../../install_steps_interactive.pm_.c:1308
+#: ../../install_steps_interactive.pm_.c:1293
#: ../../standalone/drakautoinst_.c:79
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Legen Sie eine leere Diskette in das %s ein."
-#: ../../install_steps_interactive.pm_.c:1312
+#: ../../install_steps_interactive.pm_.c:1297
msgid "Creating auto install floppy..."
msgstr "Erstellen einer Auto-Installationsdiskette"
-#: ../../install_steps_interactive.pm_.c:1323
+#: ../../install_steps_interactive.pm_.c:1308
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -6359,7 +6481,7 @@ msgstr ""
"\n"
"Wollen Sie DrakX wirklich beenden?"
-#: ../../install_steps_interactive.pm_.c:1334
+#: ../../install_steps_interactive.pm_.c:1319
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
@@ -6389,16 +6511,15 @@ msgstr ""
"Wie Sie Ihr System warten können, erfahren Sie im Kapitel „Nach der "
"Installation“ im offiziellen Benutzerhandbuch von Mandrake Linux."
-#: ../../install_steps_interactive.pm_.c:1347
-#, fuzzy
+#: ../../install_steps_interactive.pm_.c:1332
msgid "http://www.mandrakelinux.com/en/90errata.php3"
-msgstr "http://www.mandrakesoft.com/sales/contact/"
+msgstr "http://www.mandrakelinux.com/en/90errata.php3"
-#: ../../install_steps_interactive.pm_.c:1352
+#: ../../install_steps_interactive.pm_.c:1337
msgid "Generate auto install floppy"
msgstr "Erstellen einer Auto-Installationsdiskette"
-#: ../../install_steps_interactive.pm_.c:1354
+#: ../../install_steps_interactive.pm_.c:1339
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -6415,15 +6536,15 @@ msgstr ""
"Vermutlich werden Sie es vorziehen, erneut eine normale\n"
"Installation durchzufĂŒhren.\n"
-#: ../../install_steps_interactive.pm_.c:1359
+#: ../../install_steps_interactive.pm_.c:1344
msgid "Automated"
msgstr "Automatisiert"
-#: ../../install_steps_interactive.pm_.c:1359
+#: ../../install_steps_interactive.pm_.c:1344
msgid "Replay"
msgstr "Erneut abspielen"
-#: ../../install_steps_interactive.pm_.c:1362
+#: ../../install_steps_interactive.pm_.c:1347
msgid "Save packages selection"
msgstr "Paketauswahl speichern"
@@ -6432,7 +6553,8 @@ msgstr "Paketauswahl speichern"
msgid "Mandrake Linux Installation %s"
msgstr "Mandrake Linux Installation %s"
-#: ../../install_steps_newt.pm_.c:34
+#. -PO This string must fit in a 80-char wide text screen
+#: ../../install_steps_newt.pm_.c:35
msgid ""
" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
msgstr ""
@@ -6450,24 +6572,24 @@ msgstr "Das Programm „consolehelper“ wurde nicht gefunden."
msgid "Choose a file"
msgstr "WĂ€hlen Sie eine Datei"
-#: ../../interactive.pm_.c:317
+#: ../../interactive.pm_.c:320
msgid "Advanced"
msgstr "Fortgeschritten"
-#: ../../interactive.pm_.c:318
+#: ../../interactive.pm_.c:321
msgid "Basic"
msgstr "Einfach"
-#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:155
-#: ../../printerdrake.pm_.c:1990
+#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:158
+#: ../../printerdrake.pm_.c:2124
msgid "<- Previous"
msgstr "<- ZurĂŒck"
#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
-#: ../../standalone/drakbackup_.c:3464 ../../standalone/drakbackup_.c:3491
-#: ../../standalone/drakbackup_.c:3517
+#: ../../standalone/drakbackup_.c:4112 ../../standalone/drakbackup_.c:4139
+#: ../../standalone/drakbackup_.c:4169 ../../standalone/drakbackup_.c:4195
msgid "Next"
-msgstr "Weiter ->"
+msgstr "Weiter"
#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:149
msgid "Bad choice, try again\n"
@@ -6503,7 +6625,7 @@ msgstr "Möchten Sie diese SchaltflÀche betÀtigen?"
#: ../../interactive/stdio.pm_.c:105
msgid " enter `void' for void entry"
-msgstr ""
+msgstr "Geben Sie „void“ fĂŒen Leeren Eintrag an"
#: ../../interactive/stdio.pm_.c:105
#, c-format
@@ -6537,375 +6659,371 @@ msgstr ""
msgid "Re-submit"
msgstr "Erneut verschicken"
-#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:152 ../../keyboard.pm_.c:187
msgid "Czech (QWERTZ)"
msgstr "Tschechien (QWERTZ)"
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:153 ../../keyboard.pm_.c:189
msgid "German"
msgstr "Deutschland"
-#: ../../keyboard.pm_.c:175
+#: ../../keyboard.pm_.c:154
msgid "Dvorak"
msgstr "Dvorak"
-#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:218
+#: ../../keyboard.pm_.c:155 ../../keyboard.pm_.c:197
msgid "Spanish"
msgstr "Spanien"
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:156 ../../keyboard.pm_.c:198
msgid "Finnish"
msgstr "Finnland"
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:220
+#: ../../keyboard.pm_.c:157 ../../keyboard.pm_.c:199
msgid "French"
msgstr "Frankreich"
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:158 ../../keyboard.pm_.c:231
msgid "Norwegian"
msgstr "Norwegen"
-#: ../../keyboard.pm_.c:180
+#: ../../keyboard.pm_.c:159
msgid "Polish"
msgstr "Polen"
-#: ../../keyboard.pm_.c:181 ../../keyboard.pm_.c:260
+#: ../../keyboard.pm_.c:160 ../../keyboard.pm_.c:239
msgid "Russian"
msgstr "Russland"
-#: ../../keyboard.pm_.c:183 ../../keyboard.pm_.c:262
+#: ../../keyboard.pm_.c:162 ../../keyboard.pm_.c:241
msgid "Swedish"
msgstr "Schweden"
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:278
+#: ../../keyboard.pm_.c:163 ../../keyboard.pm_.c:257
msgid "UK keyboard"
msgstr "Grßbritannien"
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:279
+#: ../../keyboard.pm_.c:164 ../../keyboard.pm_.c:258
msgid "US keyboard"
msgstr "Vereinigte Staaten von Amerika"
-#: ../../keyboard.pm_.c:187
+#: ../../keyboard.pm_.c:166
msgid "Albanian"
msgstr "Albanien"
-#: ../../keyboard.pm_.c:188
+#: ../../keyboard.pm_.c:167
msgid "Armenian (old)"
msgstr "Armenien (alt)"
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:168
msgid "Armenian (typewriter)"
msgstr "Armenien (Schreibmaschine)"
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:169
msgid "Armenian (phonetic)"
msgstr "Armenien (Phonetisch)"
-#: ../../keyboard.pm_.c:195
+#: ../../keyboard.pm_.c:174
msgid "Azerbaidjani (latin)"
msgstr "Aserbeidschan (Lateinisches Layout)"
-#: ../../keyboard.pm_.c:197
+#: ../../keyboard.pm_.c:176
msgid "Belgian"
msgstr "Belgien"
-#: ../../keyboard.pm_.c:198
-#, fuzzy
+#: ../../keyboard.pm_.c:177
msgid "Bengali"
-msgstr "aktivieren"
+msgstr "Bangladesh"
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:178
msgid "Bulgarian (phonetic)"
msgstr "Bulgarien (Phonetisch)"
-#: ../../keyboard.pm_.c:200
+#: ../../keyboard.pm_.c:179
msgid "Bulgarian (BDS)"
msgstr "Bulgarien (BDS)"
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:180
msgid "Brazilian (ABNT-2)"
msgstr "Brasilien (ABNT-2)"
-#: ../../keyboard.pm_.c:204
-#, fuzzy
+#: ../../keyboard.pm_.c:183
msgid "Bosnian"
-msgstr "Estland"
+msgstr "Bosnien"
-#: ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:184
msgid "Belarusian"
msgstr "Weißrussland"
-#: ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:185
msgid "Swiss (German layout)"
msgstr "Schweiz (deutsches Layout)"
-#: ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:186
msgid "Swiss (French layout)"
msgstr "Schweiz (französisches Layout)"
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:188
msgid "Czech (QWERTY)"
msgstr "Tschechien (QWERTY)"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:190
msgid "German (no dead keys)"
msgstr "Deutschland (ohne Akzenttasten)"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:191
msgid "Devanagari"
-msgstr ""
+msgstr "Devanagari"
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:192
msgid "Danish"
msgstr "DĂ€nemark"
-#: ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:193
msgid "Dvorak (US)"
msgstr "Dvorak (USA)"
-#: ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:194
msgid "Dvorak (Norwegian)"
msgstr "Dvorak (Norwegen)"
-#: ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:195
msgid "Dvorak (Swedish)"
msgstr "Dvorak (Schweden)"
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:196
msgid "Estonian"
msgstr "Estland"
-#: ../../keyboard.pm_.c:221
+#: ../../keyboard.pm_.c:200
msgid "Georgian (\"Russian\" layout)"
msgstr "Georgien (Kyrillisches Layout)"
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:201
msgid "Georgian (\"Latin\" layout)"
msgstr "Georgien (Lateinisches Layout)"
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:202
msgid "Greek"
msgstr "Griechenland"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:203
msgid "Gujarati"
-msgstr ""
+msgstr "Indien (Gujarati)"
-#: ../../keyboard.pm_.c:225
+#: ../../keyboard.pm_.c:204
msgid "Gurmukhi"
-msgstr ""
+msgstr "Indien (Gurmukhi)"
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:205
msgid "Hungarian"
msgstr "Ungarn"
-#: ../../keyboard.pm_.c:227
+#: ../../keyboard.pm_.c:206
msgid "Croatian"
msgstr "Kroatien"
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:207
msgid "Israeli"
msgstr "Israel"
-#: ../../keyboard.pm_.c:229
+#: ../../keyboard.pm_.c:208
msgid "Israeli (Phonetic)"
msgstr "Israel (Phonetisch)"
-#: ../../keyboard.pm_.c:230
+#: ../../keyboard.pm_.c:209
msgid "Iranian"
msgstr "Iran"
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:210
msgid "Icelandic"
msgstr "Island"
-#: ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:211
msgid "Italian"
msgstr "Italien"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:212
msgid "Inuktitut"
-msgstr ""
+msgstr "Grönland (Inuktitut)"
-#: ../../keyboard.pm_.c:234
+#: ../../keyboard.pm_.c:213
msgid "Japanese 106 keys"
msgstr "Japan (106 Tasten)"
-#: ../../keyboard.pm_.c:237
+#: ../../keyboard.pm_.c:216
msgid "Korean keyboard"
msgstr "Korea"
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:217
msgid "Latin American"
msgstr "Lateinamerika"
-#: ../../keyboard.pm_.c:239
-#, fuzzy
+#: ../../keyboard.pm_.c:218
msgid "Laotian"
-msgstr "Lettland"
+msgstr "Laos"
-#: ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:219
msgid "Lithuanian AZERTY (old)"
msgstr "Litauen (AZERTY - alt)"
-#: ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:221
msgid "Lithuanian AZERTY (new)"
msgstr "Litauen (AZERTY - neu)"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:222
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Litauen (QWERTY - „number row“)"
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:223
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "Litauen (QWERTY - Phonetisch)"
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:224
msgid "Latvian"
msgstr "Lettland"
-#: ../../keyboard.pm_.c:246
+#: ../../keyboard.pm_.c:225
msgid "Macedonian"
msgstr "Mazedonien"
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:226
msgid "Myanmar (Burmese)"
-msgstr ""
+msgstr "Myanmar (Burmesien)"
-#: ../../keyboard.pm_.c:248
-#, fuzzy
+#: ../../keyboard.pm_.c:227
msgid "Mongolian (cyrillic)"
-msgstr "Serbien (Kyrillisches Layout)"
+msgstr "Mongolei (Kyrillisches Layout)"
-#: ../../keyboard.pm_.c:249
+#: ../../keyboard.pm_.c:228
msgid "Maltese (UK)"
-msgstr ""
+msgstr "Malta (GB)"
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:229
msgid "Maltese (US)"
-msgstr ""
+msgstr "Malta (USA)"
-#: ../../keyboard.pm_.c:251
+#: ../../keyboard.pm_.c:230
msgid "Dutch"
msgstr "Niederlande"
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:232
msgid "Polish (qwerty layout)"
msgstr "Polen (QWERTY Layout)"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:233
msgid "Polish (qwertz layout)"
msgstr "Polen (QWERTZ Layout)"
-#: ../../keyboard.pm_.c:255
+#: ../../keyboard.pm_.c:234
msgid "Portuguese"
msgstr "Portugal"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:235
msgid "Canadian (Quebec)"
-msgstr "Kanada (Quebec)"
+msgstr "Kanada (Québec)"
-#: ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:237
msgid "Romanian (qwertz)"
msgstr "RumÀnien (QWERTZ)"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:238
msgid "Romanian (qwerty)"
msgstr "RumÀnien (QWERTY)"
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:240
msgid "Russian (Yawerty)"
msgstr "Russland (YaWERTY)"
-#: ../../keyboard.pm_.c:263
+#: ../../keyboard.pm_.c:242
msgid "Slovenian"
msgstr "Slowenien"
-#: ../../keyboard.pm_.c:264
+#: ../../keyboard.pm_.c:243
msgid "Slovakian (QWERTZ)"
msgstr "Slowakei (QWERTZ)"
-#: ../../keyboard.pm_.c:265
+#: ../../keyboard.pm_.c:244
msgid "Slovakian (QWERTY)"
msgstr "Slowakei (QWERTY)"
-#: ../../keyboard.pm_.c:267
+#: ../../keyboard.pm_.c:246
msgid "Serbian (cyrillic)"
msgstr "Serbien (Kyrillisches Layout)"
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:248
msgid "Tamil (Unicode)"
msgstr "Indien (Tamilisches Layout - Unicode)"
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:249
msgid "Tamil (TSCII)"
msgstr "Indien (Tamilisches Layout - TSCII)"
-#: ../../keyboard.pm_.c:271
+#: ../../keyboard.pm_.c:250
msgid "Thai keyboard"
msgstr "ThailÀndische Tastatur"
-#: ../../keyboard.pm_.c:273
+#: ../../keyboard.pm_.c:252
msgid "Tajik keyboard"
msgstr "Tadschikistan"
-#: ../../keyboard.pm_.c:274
+#: ../../keyboard.pm_.c:253
msgid "Turkish (traditional \"F\" model)"
msgstr "TĂŒrkei (traditionelles „F“ Modell)"
-#: ../../keyboard.pm_.c:275
+#: ../../keyboard.pm_.c:254
msgid "Turkish (modern \"Q\" model)"
msgstr "TĂŒrkei (modernes „Q“ Modell)"
-#: ../../keyboard.pm_.c:277
+#: ../../keyboard.pm_.c:256
msgid "Ukrainian"
msgstr "Ukraine"
-#: ../../keyboard.pm_.c:280
+#: ../../keyboard.pm_.c:259
msgid "US keyboard (international)"
msgstr "Vereinigte Staaten von Amerika (international)"
-#: ../../keyboard.pm_.c:281
+#: ../../keyboard.pm_.c:260
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "Vietnam QWERTY („number row“)"
-#: ../../keyboard.pm_.c:282
+#: ../../keyboard.pm_.c:261
msgid "Yugoslavian (latin)"
msgstr "Jugoslawien (Lateinisches Layout)"
-#: ../../keyboard.pm_.c:289
+#: ../../keyboard.pm_.c:268
msgid "Right Alt key"
msgstr "AltGr-Taste"
-#: ../../keyboard.pm_.c:290
+#: ../../keyboard.pm_.c:269
msgid "Both Shift keys simultaneously"
msgstr "Beide Umschalttasten gleichzeitig"
-#: ../../keyboard.pm_.c:291
+#: ../../keyboard.pm_.c:270
msgid "Control and Shift keys simultaneously"
msgstr "Strg und Umschalttaste gleichzeititg"
-#: ../../keyboard.pm_.c:292
+#: ../../keyboard.pm_.c:271
msgid "CapsLock key"
msgstr "CapsLock Taste"
-#: ../../keyboard.pm_.c:293
+#: ../../keyboard.pm_.c:272
msgid "Ctrl and Alt keys simultaneously"
msgstr "Strg und Alt gleichzeitig"
-#: ../../keyboard.pm_.c:294
+#: ../../keyboard.pm_.c:273
msgid "Alt and Shift keys simultaneously"
msgstr "Alt und Umschalttaste gleichzeitig"
-#: ../../keyboard.pm_.c:295
+#: ../../keyboard.pm_.c:274
msgid "\"Menu\" key"
msgstr "MenĂŒtaste"
-#: ../../keyboard.pm_.c:296
+#: ../../keyboard.pm_.c:275
msgid "Left \"Windows\" key"
msgstr "Linke „Windows“-Taste"
-#: ../../keyboard.pm_.c:297
+#: ../../keyboard.pm_.c:276
msgid "Right \"Windows\" key"
msgstr "Rechte „Windows“-Taste"
@@ -6919,28 +7037,26 @@ msgid "Remove the logical volumes first\n"
msgstr "Entfernen Sie erst die Logischen Medien\n"
#: ../../modparm.pm_.c:50
-#, fuzzy
msgid "a number"
-msgstr "Telefonnummer"
+msgstr "eine Nummer"
#: ../../modparm.pm_.c:52
#, c-format
msgid "%d comma separated numbers"
-msgstr ""
+msgstr "%d durch Kommas getrennte Nummern"
#: ../../modparm.pm_.c:52
#, c-format
msgid "%d comma separated strings"
-msgstr ""
+msgstr "%d durch Kommas getrennte Textfelder"
#: ../../modparm.pm_.c:54
msgid "comma separated numbers"
-msgstr ""
+msgstr "durch Kommas getrennte Nummern"
#: ../../modparm.pm_.c:54
-#, fuzzy
msgid "comma separated strings"
-msgstr "Partitionen formatieren"
+msgstr "durch Kommas getrennte Textfelder"
#: ../../modules.pm_.c:292
msgid ""
@@ -6965,11 +7081,11 @@ msgstr "Generische PS2 Rad-Maus"
msgid "GlidePoint"
msgstr "GlidePoint"
-#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:63
+#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:65
msgid "Kensington Thinking Mouse"
msgstr "Kensington Thinking Maus"
-#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:59
+#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:61
msgid "Genius NetMouse"
msgstr "Genius NetMaus"
@@ -6977,115 +7093,123 @@ msgstr "Genius NetMaus"
msgid "Genius NetScroll"
msgstr "Genius NetScroll"
-#: ../../mouse.pm_.c:43 ../../mouse.pm_.c:68
+#: ../../mouse.pm_.c:39 ../../mouse.pm_.c:48
+msgid "Microsoft Explorer"
+msgstr "Microsoft Explorer"
+
+#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:70
msgid "1 button"
msgstr "1 Taste"
-#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:51
+#: ../../mouse.pm_.c:45 ../../mouse.pm_.c:53
msgid "Generic 2 Button Mouse"
msgstr "Generische 2 Tasten Maus"
-#: ../../mouse.pm_.c:46
+#: ../../mouse.pm_.c:47
msgid "Wheel"
msgstr "Rad"
-#: ../../mouse.pm_.c:49
+#: ../../mouse.pm_.c:51
msgid "serial"
msgstr "Seriell"
-#: ../../mouse.pm_.c:52
+#: ../../mouse.pm_.c:54
msgid "Generic 3 Button Mouse"
msgstr "Generische 3 Tasten Maus"
-#: ../../mouse.pm_.c:53
+#: ../../mouse.pm_.c:55
msgid "Microsoft IntelliMouse"
msgstr "Microsoft IntelliMaus"
-#: ../../mouse.pm_.c:54
+#: ../../mouse.pm_.c:56
msgid "Logitech MouseMan"
msgstr "Logitech MausMan/FirstMaus"
-#: ../../mouse.pm_.c:55
+#: ../../mouse.pm_.c:57
msgid "Mouse Systems"
msgstr "Mouse Systems"
-#: ../../mouse.pm_.c:57
+#: ../../mouse.pm_.c:59
msgid "Logitech CC Series"
msgstr "Logitech CC Serie"
-#: ../../mouse.pm_.c:58
+#: ../../mouse.pm_.c:60
msgid "Logitech MouseMan+/FirstMouse+"
msgstr "Logitech MausMan+/FirstMaus+"
-#: ../../mouse.pm_.c:60
+#: ../../mouse.pm_.c:62
msgid "MM Series"
msgstr "MM Serie"
-#: ../../mouse.pm_.c:61
+#: ../../mouse.pm_.c:63
msgid "MM HitTablet"
msgstr "MM HitTablet"
-#: ../../mouse.pm_.c:62
+#: ../../mouse.pm_.c:64
msgid "Logitech Mouse (serial, old C7 type)"
msgstr "Logitech Maus (Seriell, alter C7 Typ)"
-#: ../../mouse.pm_.c:66
+#: ../../mouse.pm_.c:68
msgid "busmouse"
msgstr "Bus-Maus"
-#: ../../mouse.pm_.c:69
+#: ../../mouse.pm_.c:71
msgid "2 buttons"
msgstr "2 Tasten"
-#: ../../mouse.pm_.c:70
+#: ../../mouse.pm_.c:72
msgid "3 buttons"
msgstr "3 Tasten"
-#: ../../mouse.pm_.c:73
+#: ../../mouse.pm_.c:75
msgid "none"
msgstr "keine"
-#: ../../mouse.pm_.c:75
+#: ../../mouse.pm_.c:77
msgid "No mouse"
msgstr "Keine Maus"
-#: ../../mouse.pm_.c:445
+#: ../../mouse.pm_.c:482
msgid "Please test the mouse"
msgstr "Bitte testen Sie Ihre Maus"
-#: ../../mouse.pm_.c:446
+#: ../../mouse.pm_.c:483
msgid "To activate the mouse,"
msgstr "Um Ihre Maus zu aktivieren:"
-#: ../../mouse.pm_.c:447
+#: ../../mouse.pm_.c:484
msgid "MOVE YOUR WHEEL!"
msgstr "BEWEGEN SIE IHR MAUS-RAD!"
-#: ../../my_gtk.pm_.c:156
+#: ../../my_gtk.pm_.c:64
+msgid "-adobe-utopia-regular-r-*-*-25-*-*-*-p-*-iso8859-*,*-r-*"
+msgstr "-adobe-utopia-regular-r-*-*-25-*-*-*-p-*-iso8859-*,*-r-*"
+
+#: ../../my_gtk.pm_.c:159
msgid "Finish"
msgstr "Beenden"
-#: ../../my_gtk.pm_.c:156 ../../printerdrake.pm_.c:1992
+#: ../../my_gtk.pm_.c:159 ../../printerdrake.pm_.c:2126
msgid "Next ->"
msgstr "Weiter ->"
-#: ../../my_gtk.pm_.c:284
+#: ../../my_gtk.pm_.c:287
msgid "Is this correct?"
msgstr "Ist dies richtig?"
-#: ../../my_gtk.pm_.c:356 ../../services.pm_.c:222
+#: ../../my_gtk.pm_.c:359 ../../services.pm_.c:222
msgid "Info"
msgstr "Info"
-#: ../../my_gtk.pm_.c:377
+#: ../../my_gtk.pm_.c:380
msgid "Expand Tree"
msgstr "Baum erweitern"
-#: ../../my_gtk.pm_.c:378
+#: ../../my_gtk.pm_.c:381
msgid "Collapse Tree"
msgstr "Baum verkleinern"
-#: ../../my_gtk.pm_.c:379
+#: ../../my_gtk.pm_.c:382
msgid "Toggle between flat and group sorted"
msgstr "Umschalten zwischen unsortiert und gruppiert"
@@ -7109,7 +7233,7 @@ msgstr "Alcatel speedtouch USB"
#: ../../network/adsl.pm_.c:22
msgid "ECI Hi-Focus"
-msgstr ""
+msgstr "ECI Hi-Focus"
#: ../../network/adsl.pm_.c:22
msgid "use dhcp"
@@ -7123,6 +7247,75 @@ msgstr "PPPOE verwenden"
msgid "use pptp"
msgstr "PPTP verwenden"
+#: ../../network/drakfirewall.pm_.c:12
+msgid "Web Server"
+msgstr "Webserver"
+
+#: ../../network/drakfirewall.pm_.c:17
+msgid "Domain Name Server"
+msgstr "DomÀnen-Namenserver (DNS)"
+
+#: ../../network/drakfirewall.pm_.c:32
+msgid "Mail Server"
+msgstr "E-Mailserver"
+
+#: ../../network/drakfirewall.pm_.c:37
+msgid "POP and IMAP Server"
+msgstr "POP und IMAP Server"
+
+#: ../../network/drakfirewall.pm_.c:111
+msgid "No network card"
+msgstr "Keine Netzwerkkarte"
+
+#: ../../network/drakfirewall.pm_.c:129
+#, fuzzy
+msgid ""
+"drakfirewall configurator\n"
+"\n"
+"This configures a personal firewall for this Mandrake Linux machine.\n"
+"For a powerful dedicated firewall solution, please look to the\n"
+"specialized MandrakeSecurity Firewall distribution."
+msgstr ""
+"TinyFirewall Konfigurierer\n"
+"\n"
+"Hiermit konfigurieren Sie eine persönliche Firewall fĂŒr diesen\n"
+"Mandrake Linux Rechner. Sollten Sie an einer speziellen ausgereiften\n"
+"Firewall-Lösung interessiert sein, schauen Sie sich nach der speziell\n"
+"dafĂŒr entwickelten MandrakeSecurity Firewall Distribution um."
+
+#: ../../network/drakfirewall.pm_.c:147
+msgid "Which services would you like to allow the Internet to connect to?"
+msgstr "Auf welche Dienste daf aus dem Internet zugegeriffenwerden?"
+
+#: ../../network/drakfirewall.pm_.c:148
+msgid ""
+"You can enter miscellaneous ports. \n"
+"Valid examples are: 139/tcp 139/udp.\n"
+"Have a look at /etc/services for information."
+msgstr ""
+"Sie können verschiedene Ports angeben. \n"
+"Korrekte Beispiele sind: 139/tcp 139/udp.\n"
+"FĂŒr weitere Informationen schauen Sie in „/etc/services“."
+
+#: ../../network/drakfirewall.pm_.c:154
+#, c-format
+msgid ""
+"Invalid port given: %s.\n"
+"The proper format is \"port/tcp\" or \"port/udp\", \n"
+"where port is between 1 and 65535."
+msgstr ""
+"Angabe eines ungĂŒltigen Ports: „%s“.\n"
+"Das Format lautet: „port/tcp“ oder „port/udp“, \n"
+"wobei Port eine Zahl zwischen 1 und 65535."
+
+#: ../../network/drakfirewall.pm_.c:162
+msgid "Everything (no firewall)"
+msgstr "Alles (Keine Firewall)"
+
+#: ../../network/drakfirewall.pm_.c:164
+msgid "Other ports"
+msgstr "Andere Ports"
+
#: ../../network/ethernet.pm_.c:37
msgid ""
"Which dhcp client do you want to use?\n"
@@ -7139,7 +7332,7 @@ msgstr ""
"Ich habe keine Ethernet-Netzwerkkarte finden können, daher kanndieser "
"Verbindungstyp nicht konfiguriert werden."
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:247
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:240
msgid "Choose the network interface"
msgstr "WĂ€hlen Sie die Netzwerkkarte"
@@ -7154,7 +7347,7 @@ msgstr ""
msgid "no network card found"
msgstr "Keine Netzwerkkarte gefunden"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:366
msgid "Configuring network"
msgstr "Netzwerk konfigurieren"
@@ -7170,7 +7363,7 @@ msgstr ""
"Ihr Rechnername sollte auch die Domain beinhalten,\n"
"etwa „meinrechner.meineabteilung.meinefirma.de“."
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:370
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:371
msgid "Host name"
msgstr "Rechnername"
@@ -7480,13 +7673,13 @@ msgstr "WĂ€hlen Sie das Profil, dass eingestellt werden soll"
msgid "Use auto detection"
msgstr "Autoerkennung benutzen"
-#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2930
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:3151
#: ../../standalone/drakconnect_.c:274 ../../standalone/drakconnect_.c:277
#: ../../standalone/drakfloppy_.c:145
msgid "Expert Mode"
msgstr "Expertenmodus"
-#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:283
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:386
msgid "Detecting devices..."
msgstr "GerÀteerkennung..."
@@ -7655,15 +7848,14 @@ msgid "Automatic IP"
msgstr "Automatische IP-Adressen Zuweisung"
#: ../../network/network.pm_.c:315
-#, fuzzy
msgid "Start at boot"
-msgstr "Beim Hochfahren gestartet"
+msgstr "Beim BS-Start aktivieren"
-#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:753
+#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:860
msgid "IP address should be in format 1.2.3.4"
msgstr "Die IP Adresse sollte etwa die Form „192.168.1.42“ haben!"
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:367
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -7675,43 +7867,56 @@ msgstr ""
"etwa „meinrechner.meineabteilung.meinefirma.de“.\n"
"Falls Sie ein Gateway verwenden, sollten Sie auch dessen IP-Adresse angeben."
-#: ../../network/network.pm_.c:371
+#: ../../network/network.pm_.c:372
msgid "DNS server"
msgstr "DNS-Server"
-#: ../../network/network.pm_.c:372
+#: ../../network/network.pm_.c:373
#, c-format
msgid "Gateway (e.g. %s)"
msgstr "Gateway (etwa %s)"
-#: ../../network/network.pm_.c:374
+#: ../../network/network.pm_.c:375
msgid "Gateway device"
msgstr "Gateway GerÀt"
-#: ../../network/network.pm_.c:386
+#: ../../network/network.pm_.c:387
msgid "Proxies configuration"
msgstr "Proxies einstellen"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:388
msgid "HTTP proxy"
msgstr "HTTP Proxy"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:389
msgid "FTP proxy"
msgstr "FTP Proxy"
-#: ../../network/network.pm_.c:389
+#: ../../network/network.pm_.c:390
msgid "Track network card id (useful for laptops)"
msgstr "Netzwerkkarten-ID ĂŒberwachen (sinnvoll fĂŒr Laptops)"
-#: ../../network/network.pm_.c:392
+#: ../../network/network.pm_.c:393
msgid "Proxy should be http://..."
msgstr "Proxy muss „http://...“ sein"
-#: ../../network/network.pm_.c:393
+#: ../../network/network.pm_.c:394
msgid "Proxy should be ftp://..."
msgstr "Proxy muss „ftp://...“ sein"
+#: ../../network/shorewall.pm_.c:24
+msgid "Firewalling configuration detected!"
+msgstr "Ich habe eine Firewall-Konfiguration gefunden!"
+
+#: ../../network/shorewall.pm_.c:25
+msgid ""
+"Warning! An existing firewalling configuration has been detected. You may "
+"need some manual fix after installation."
+msgstr ""
+"WARNUNG: Ich habe eine eine Firewall-Konfiguration gefunden. \n"
+"Möglicherweise mĂŒssen Sie nach der Installation einige Einstellungen \n"
+"von Hand vornehmen."
+
#: ../../network/tools.pm_.c:41
msgid "Internet configuration"
msgstr "Internet Konfiguration"
@@ -7817,17 +8022,17 @@ msgstr "Passwort"
#: ../../network/tools.pm_.c:104 ../../network/tools.pm_.c:118
msgid "United Kingdom"
-msgstr ""
+msgstr "Großbritannien"
-#: ../../partition_table.pm_.c:606
+#: ../../partition_table.pm_.c:602
msgid "mount failed: "
msgstr "Fehler beim EinhÀngen: "
-#: ../../partition_table.pm_.c:670
+#: ../../partition_table.pm_.c:666
msgid "Extended partition not supported on this platform"
msgstr "Diese Rechnerarchitektur kennt keine erweiterten Partitionen"
-#: ../../partition_table.pm_.c:688
+#: ../../partition_table.pm_.c:684
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
@@ -7838,21 +8043,21 @@ msgstr ""
"Ihre primÀren Partitionen so verschieben, dass der Bereich direkt \n"
"neben der erweiterten Partition zu liegen kommt."
-#: ../../partition_table.pm_.c:778
+#: ../../partition_table.pm_.c:774
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "Restaurieren aus der Datei %s schlug Fehl: %s"
-#: ../../partition_table.pm_.c:780
+#: ../../partition_table.pm_.c:776
msgid "Bad backup file"
msgstr "Fehlerhafte Backup-Datei"
-#: ../../partition_table.pm_.c:802
+#: ../../partition_table.pm_.c:798
#, c-format
msgid "Error writing to file %s"
msgstr "Fehler beim Schreiben in Datei %s"
-#: ../../partition_table/raw.pm_.c:187
+#: ../../partition_table/raw.pm_.c:189
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
@@ -7899,150 +8104,154 @@ msgstr "LPD - Line Printer Daemon"
msgid "PDQ - Print, Don't Queue"
msgstr "PDQ - Print, Don't Queue"
-#: ../../printer.pm_.c:35 ../../printer.pm_.c:854
+#: ../../printer.pm_.c:34 ../../printer.pm_.c:1125
msgid "CUPS"
msgstr "CUPS"
-#: ../../printer.pm_.c:36
+#: ../../printer.pm_.c:35
msgid "LPRng"
msgstr "LPRng"
-#: ../../printer.pm_.c:37
+#: ../../printer.pm_.c:36
msgid "LPD"
msgstr "LPD"
-#: ../../printer.pm_.c:38
+#: ../../printer.pm_.c:37
msgid "PDQ"
msgstr "PDQ"
-#: ../../printer.pm_.c:50
+#: ../../printer.pm_.c:49
msgid "Local printer"
msgstr "Lokaler Drucker"
-#: ../../printer.pm_.c:51
+#: ../../printer.pm_.c:50
msgid "Remote printer"
msgstr "Entfernter Drucker"
-#: ../../printer.pm_.c:52
+#: ../../printer.pm_.c:51
msgid "Printer on remote CUPS server"
msgstr "Drucker an CUPS-Server auf der Gegenseite"
-#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:776
+#: ../../printer.pm_.c:52 ../../printerdrake.pm_.c:883
msgid "Printer on remote lpd server"
msgstr "Drucker an lpd-Server auf der Gegenseite"
-#: ../../printer.pm_.c:54
+#: ../../printer.pm_.c:53
msgid "Network printer (TCP/Socket)"
msgstr "Netzwerkdrucker (TCP/Socket)"
-#: ../../printer.pm_.c:55
+#: ../../printer.pm_.c:54
msgid "Printer on SMB/Windows 95/98/NT server"
msgstr "Drucker an SMB/Windows 9x/ME/NT"
-#: ../../printer.pm_.c:56
+#: ../../printer.pm_.c:55
msgid "Printer on NetWare server"
msgstr "Drucker an NetWare Server"
-#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:780
+#: ../../printer.pm_.c:56 ../../printerdrake.pm_.c:887
msgid "Enter a printer device URI"
msgstr "Druckeranschluss URI"
-#: ../../printer.pm_.c:58
+#: ../../printer.pm_.c:57
msgid "Pipe job into a command"
msgstr "Den Auftrag an ein Kommando weiterleiten"
-#: ../../printer.pm_.c:487 ../../printer.pm_.c:678 ../../printer.pm_.c:1000
-#: ../../printerdrake.pm_.c:2070 ../../printerdrake.pm_.c:3189
+#: ../../printer.pm_.c:324 ../../printer.pm_.c:366 ../../printer.pm_.c:533
+msgid "Unknown Model"
+msgstr "Unbekanntes Modell"
+
+#: ../../printer.pm_.c:735 ../../printer.pm_.c:926 ../../printer.pm_.c:1318
+#: ../../printerdrake.pm_.c:2260 ../../printerdrake.pm_.c:3414
msgid "Unknown model"
msgstr "Unbekanntes Modell"
-#: ../../printer.pm_.c:515
+#: ../../printer.pm_.c:763
msgid "Local Printers"
msgstr "Lokale Drucker"
-#: ../../printer.pm_.c:517 ../../printer.pm_.c:855
+#: ../../printer.pm_.c:765 ../../printer.pm_.c:1126
msgid "Remote Printers"
-msgstr "Entfernte Drucker"
+msgstr "Netzwerkdrucker"
-#: ../../printer.pm_.c:524 ../../printerdrake.pm_.c:301
+#: ../../printer.pm_.c:772 ../../printerdrake.pm_.c:404
#, c-format
msgid " on parallel port \\/*%s"
msgstr " an Parallelport \\/*%s"
-#: ../../printer.pm_.c:527 ../../printerdrake.pm_.c:303
+#: ../../printer.pm_.c:775 ../../printerdrake.pm_.c:406
#, c-format
msgid ", USB printer \\/*%s"
msgstr ", USB-Drucker \\/*%s"
-#: ../../printer.pm_.c:532
+#: ../../printer.pm_.c:780
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ", MultifunktionsgerÀt am Parallelport \\/*%s"
-#: ../../printer.pm_.c:535
+#: ../../printer.pm_.c:783
msgid ", multi-function device on USB"
msgstr ", USB MultifunktionsgerÀt"
-#: ../../printer.pm_.c:537
+#: ../../printer.pm_.c:785
msgid ", multi-function device on HP JetDirect"
msgstr ", MultifunktionsgerÀt am HP JedDirect"
-#: ../../printer.pm_.c:539
+#: ../../printer.pm_.c:787
msgid ", multi-function device"
msgstr ", MultifunktionsgerÀt"
-#: ../../printer.pm_.c:542
+#: ../../printer.pm_.c:790
#, c-format
msgid ", printing to %s"
msgstr ", drucken auf %s"
-#: ../../printer.pm_.c:544
-#, fuzzy, c-format
+#: ../../printer.pm_.c:792
+#, c-format
msgid " on LPD server \"%s\", printer \"%s\""
msgstr "auf LDP-Server „%s“, Drucker „%s“"
-#: ../../printer.pm_.c:546
+#: ../../printer.pm_.c:794
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ", TCP/IP Drucker „%s“, Port %s"
-#: ../../printer.pm_.c:550
-#, fuzzy, c-format
+#: ../../printer.pm_.c:798
+#, c-format
msgid " on SMB/Windows server \"%s\", share \"%s\""
-msgstr "auf Windows-Server „%s“, Freigabe „%s“"
+msgstr "auf SMB/Windows-Server „%s“, Freigabe „%s“"
-#: ../../printer.pm_.c:554
-#, fuzzy, c-format
+#: ../../printer.pm_.c:802
+#, c-format
msgid " on Novell server \"%s\", printer \"%s\""
msgstr "auf dem Novell-Server „%s“, Drucker „%s“"
-#: ../../printer.pm_.c:556
+#: ../../printer.pm_.c:804
#, c-format
msgid ", using command %s"
msgstr ", mittels Kommando „%s“"
-#: ../../printer.pm_.c:675 ../../printerdrake.pm_.c:1540
+#: ../../printer.pm_.c:923 ../../printerdrake.pm_.c:1656
msgid "Raw printer (No driver)"
msgstr "Rohdaten-Drucker (kein Treiber)"
-#: ../../printer.pm_.c:824
+#: ../../printer.pm_.c:1095
#, c-format
msgid "(on %s)"
msgstr "(an %s)"
-#: ../../printer.pm_.c:826
+#: ../../printer.pm_.c:1097
msgid "(on this machine)"
msgstr "(an diesem Rechner)"
-#: ../../printer.pm_.c:851
+#: ../../printer.pm_.c:1122
#, c-format
msgid "On CUPS server \"%s\""
msgstr "Auf CUPS-Server „%s“"
-#: ../../printer.pm_.c:857 ../../printerdrake.pm_.c:2851
-#: ../../printerdrake.pm_.c:2862 ../../printerdrake.pm_.c:3078
-#: ../../printerdrake.pm_.c:3130 ../../printerdrake.pm_.c:3156
-#: ../../printerdrake.pm_.c:3326 ../../printerdrake.pm_.c:3328
+#: ../../printer.pm_.c:1128 ../../printerdrake.pm_.c:3071
+#: ../../printerdrake.pm_.c:3082 ../../printerdrake.pm_.c:3303
+#: ../../printerdrake.pm_.c:3355 ../../printerdrake.pm_.c:3381
+#: ../../printerdrake.pm_.c:3556 ../../printerdrake.pm_.c:3558
msgid " (Default)"
msgstr " (Standard)"
@@ -8067,13 +8276,13 @@ msgstr ""
#: ../../printerdrake.pm_.c:36
msgid "Printer auto-detection (Local, TCP/Socket, and SMB printers)"
-msgstr ""
+msgstr "Autoerkennung von Druckern (Lokal, TCP/Socket und SMB Drucker)"
-#: ../../printerdrake.pm_.c:84 ../../printerdrake.pm_.c:2914
+#: ../../printerdrake.pm_.c:84 ../../printerdrake.pm_.c:3135
msgid "CUPS configuration"
msgstr "CUPS Konfiguration"
-#: ../../printerdrake.pm_.c:85 ../../printerdrake.pm_.c:2915
+#: ../../printerdrake.pm_.c:85 ../../printerdrake.pm_.c:3136
msgid "Specify CUPS server"
msgstr "CUPS-Server angeben"
@@ -8090,7 +8299,7 @@ msgstr ""
"Falls auf der Gegenseite ein CUPS-Server lĂ€uft, mĂŒssen Sie\n"
"hier keine Einstellungen vornehmen; CUPS Server informieren Ihren\n"
"Rechner ĂŒber die von ihnen verwalteten Drucker. Alle Drucker,\n"
-"die Ihr Rechner momentan kennt sind unter „Entfernte Drucker“ aufgefĂŒhrt.\n"
+"die Ihr Rechner momentan kennt sind unter „Netzwerkdrucker“ aufgefĂŒhrt.\n"
"Sollte der entfernte CUPS Server jedoch in einem anderen Subnetz\n"
"beheimatet sein, mĂŒssen Sie mindestens seine IP-Adresse, evtl. auch\n"
"die Port Nummer angeben. Im lokalen Subnetz können Sie die Felder\n"
@@ -8117,7 +8326,7 @@ msgstr ""
msgid "The IP address should look like 192.168.1.20"
msgstr "Die IP Adresse sollte etwa die Form „192.168.1.42“ haben!"
-#: ../../printerdrake.pm_.c:95 ../../printerdrake.pm_.c:987
+#: ../../printerdrake.pm_.c:95 ../../printerdrake.pm_.c:1094
msgid "The port number should be an integer!"
msgstr "Die Prot Nummer muss eine Zahl sein!"
@@ -8125,7 +8334,7 @@ msgstr "Die Prot Nummer muss eine Zahl sein!"
msgid "CUPS server IP"
msgstr "CUPS-Server-IP"
-#: ../../printerdrake.pm_.c:103 ../../printerdrake.pm_.c:1007
+#: ../../printerdrake.pm_.c:103 ../../printerdrake.pm_.c:1114
msgid "Port"
msgstr "Port"
@@ -8133,12 +8342,143 @@ msgstr "Port"
msgid "Automatic CUPS configuration"
msgstr "Automatische CUPS Konfiguration"
-#: ../../printerdrake.pm_.c:183 ../../printerdrake.pm_.c:192
-#: ../../printerdrake.pm_.c:2897 ../../printerdrake.pm_.c:3017
+#: ../../printerdrake.pm_.c:177 ../../printerdrake.pm_.c:247
+#: ../../printerdrake.pm_.c:1529 ../../printerdrake.pm_.c:1533
+#: ../../printerdrake.pm_.c:1651 ../../printerdrake.pm_.c:2203
+#: ../../printerdrake.pm_.c:2356 ../../printerdrake.pm_.c:2415
+#: ../../printerdrake.pm_.c:2488 ../../printerdrake.pm_.c:2509
+#: ../../printerdrake.pm_.c:2699 ../../printerdrake.pm_.c:2740
+#: ../../printerdrake.pm_.c:2745 ../../printerdrake.pm_.c:2779
+#: ../../printerdrake.pm_.c:2784 ../../printerdrake.pm_.c:2821
+#: ../../printerdrake.pm_.c:2874 ../../printerdrake.pm_.c:2894
+#: ../../printerdrake.pm_.c:2908 ../../printerdrake.pm_.c:2942
+#: ../../printerdrake.pm_.c:2988 ../../printerdrake.pm_.c:3006
+#: ../../printerdrake.pm_.c:3095 ../../printerdrake.pm_.c:3169
+#: ../../printerdrake.pm_.c:3471 ../../printerdrake.pm_.c:3526
+#: ../../printerdrake.pm_.c:3579 ../../standalone/printerdrake_.c:57
+msgid "Printerdrake"
+msgstr "PrinterDrake"
+
+#: ../../printerdrake.pm_.c:178
+msgid "Checking your system..."
+msgstr "Untersuchung Ihres Rechners ..."
+
+#: ../../printerdrake.pm_.c:186
+msgid ""
+"There are no printers found which are directly connected to your machine"
+msgstr "Ich konnte keine Drucker direkt an Ihrem Rechner finden."
+
+#: ../../printerdrake.pm_.c:198
+msgid ""
+"The following printers\n"
+"\n"
+msgstr ""
+"Die folgenden Drucker\n"
+"\n"
+
+#: ../../printerdrake.pm_.c:199
+msgid ""
+"The following printer\n"
+"\n"
+msgstr ""
+"Der folgende Drucker\n"
+"\n"
+
+#: ../../printerdrake.pm_.c:201
+msgid ""
+"\n"
+"and one unknown printer are "
+msgstr ""
+"\n"
+"und ein unbekannter Drucker sind "
+
+#: ../../printerdrake.pm_.c:203
+#, c-format
+msgid ""
+"\n"
+"and %d unknown printers are "
+msgstr ""
+"\n"
+"und %d unbekannte Drucker sind "
+
+#: ../../printerdrake.pm_.c:207
+msgid ""
+"\n"
+"are "
+msgstr ""
+"\n"
+"sind "
+
+#: ../../printerdrake.pm_.c:208
+msgid ""
+"\n"
+"is "
+msgstr ""
+"\n"
+"ist "
+
+#: ../../printerdrake.pm_.c:210
+msgid "directly connected to your system"
+msgstr "direkt mit Ihrem Rechner verbunden."
+
+#: ../../printerdrake.pm_.c:213
+msgid ""
+"\n"
+"There is one unknown printer directly connected to your system"
+msgstr ""
+"\n"
+"Ich konnte einen unbekannten Rechner direkt an Ihrem Rechner finden."
+
+#: ../../printerdrake.pm_.c:215
+#, c-format
+msgid ""
+"\n"
+"There are %d unknown printers directly connected to your system"
+msgstr ""
+"\n"
+"Ich konnte %d unbekannte Rechner direkt an Ihrem Rechner finden."
+
+#: ../../printerdrake.pm_.c:221
+msgid " (Make sure that all your printers are connected and turned on).\n"
+msgstr ""
+"(Stellen Sie bitte sicher, dass alle Drucker angeschlossen und\n"
+"angeschaltet sind).\n"
+
+#: ../../printerdrake.pm_.c:235
+msgid ""
+"Do you want to enable printing on the printers mentioned above or on "
+"printers in the local network?\n"
+msgstr ""
+"Wollen Sie oben aufgefĂŒhrte Drucker oder Drucker im lokalen Netzwerk zum "
+"Drucken konfigurieren?\n"
+
+#: ../../printerdrake.pm_.c:236
+msgid "Do you want to enable printing on printers in the local network?\n"
+msgstr "Wollen Sie Drucker im lokalen Netzwerk zum Drucken konfigurieren?\n"
+
+#: ../../printerdrake.pm_.c:238
+msgid "Do you want to enable printing on the printers mentioned above?\n"
+msgstr "Wollen Sie oben aufgefĂŒhrte Drucker zum Drucken konfigurieren?\n"
+
+#: ../../printerdrake.pm_.c:239
+msgid "Are you sure that you want to set up printing on this machine?\n"
+msgstr "Sind Sie sicher, dass Sie mit diesem Rechner drucken wollen?\n"
+
+#: ../../printerdrake.pm_.c:240
+#, c-format
+msgid ""
+"NOTE: Depending on the printer model and the printing system up to %d MB of "
+"additional software will be installed."
+msgstr ""
+"ANMERKUNG: Je nach Drucker und Drucksystem werden bis zu %d MB zusÀtzlicher "
+"Software auf Ihrem Rechner installiert."
+
+#: ../../printerdrake.pm_.c:269 ../../printerdrake.pm_.c:278
+#: ../../printerdrake.pm_.c:3117 ../../printerdrake.pm_.c:3242
msgid "Add a new printer"
msgstr "Drucker hinzufĂŒgen"
-#: ../../printerdrake.pm_.c:184
+#: ../../printerdrake.pm_.c:270
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -8153,13 +8493,13 @@ msgstr ""
"\n"
"Willkommen zum Druckereinrichtungsassistenten\n"
"\n"
-"Dieser Assistent hilft Ihnen lokale oder entfernte Drucker so einzurichten, "
+"Dieser Assistent hilft Ihnen lokale oder Netzwerkdrucker so einzurichten, "
"dass dieser Rechner bzw. andere in Ihrem Netzwerk darauf drucken können.\n"
"\n"
"Sie werden nur nach den nötigen Informationen ĂŒber den Drucker gefragt, um "
"Ihnen dann Zugriff auf Treiber, Druckoptionen und Anschlussart zu erhalten."
-#: ../../printerdrake.pm_.c:193
+#: ../../printerdrake.pm_.c:280
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -8168,7 +8508,7 @@ msgid ""
"computer, connected directly to the network or to a remote Windows machine.\n"
"\n"
"If you have printer(s) connected to this machine, Please plug it/them in on "
-"this computer and turn it/them on so that they can be auto-detected. Also "
+"this computer and turn it/them on so that it/they can be auto-detected. Also "
"your network printer(s) and you Windows machines must be connected and "
"turned on.\n"
"\n"
@@ -8180,8 +8520,51 @@ msgid ""
" Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
"want to set up your printer(s) now."
msgstr ""
+"\n"
+"Willkommen zum Druckerassistenten\n"
+"\n"
+"Dieser Assistent möchte Ihnen helfen, Ihre(n) lokalen und Netzwerkdrucker "
+"sowie Drucker an Windowsrechnern im lokalen Netz zu konfigurieren.\n"
+"\n"
+"Falls Sie Drucker haben, die direkt mit dem Rechner verbunden sind, stellen "
+"Sie sicher, dass diese richtig angeschlossen und eingeschaltet sind. Ebenso "
+"mĂŒssen die Netzwerkdrucker bzw. Windows-Rechner eingeschaltet sein.\n"
+"\n"
+"Es sei angemerkt, dass sie Erkennung von Netzwerkdruckern etwas lÀnger "
+"dauert, als das Finden von Druckern, die direkt an Ihrem Rechner hÀngen. "
+"Schalten Sie daher die Erkennung von Netzwerkrechnern aus, sofern Sie diese "
+"FunktionalitÀt nicht benötigen.\n"
+"\n"
+"BetĂ€tigen Sie die SchaltflĂ€che „Weiter“, wenn Sie soweit sind, bzw. "
+"„Abbruch“, wenn Sie keine Drucker konfigurieren wollen."
+
+#: ../../printerdrake.pm_.c:289 ../../printerdrake.pm_.c:306
+msgid ""
+"\n"
+"Welcome to the Printer Setup Wizard\n"
+"\n"
+"This wizard will help you to install your printer(s) connected to this "
+"computer.\n"
+"\n"
+"If you have printer(s) connected to this machine, Please plug it/them in on "
+"this computer and turn it/them on so that it/they can be auto-detected.\n"
+"\n"
+" Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
+"want to set up your printer(s) now."
+msgstr ""
+"\n"
+"Willkommen zum Druckerassistenten\n"
+"\n"
+"Dieser Assistent möchte Ihnen helfen, Ihre(n) lokalen Drucker zu "
+"konfigurieren.\n"
+"\n"
+"Falls Sie Drucker haben, die direkt mit dem Rechner verbunden sind, stellen "
+"Sie sicher, dass diese richtig angeschlossen und eingeschaltet sind.\n"
+"\n"
+"BetĂ€tigen Sie die SchaltflĂ€che „Weiter“, wenn Sie soweit sind, bzw. "
+"„Abbruch“, wenn Sie keine Drucker konfigurieren wollen."
-#: ../../printerdrake.pm_.c:202
+#: ../../printerdrake.pm_.c:297
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -8190,7 +8573,7 @@ msgid ""
"computer or connected directly to the network.\n"
"\n"
"If you have printer(s) connected to this machine, Please plug it/them in on "
-"this computer and turn it/them on so that they can be auto-detected. Also "
+"this computer and turn it/them on so that it/they can be auto-detected. Also "
"your network printer(s) must be connected and turned on.\n"
"\n"
"Note that auto-detecting printers on the network takes longer than the auto-"
@@ -8200,26 +8583,43 @@ msgid ""
" Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
"want to set up your printer(s) now."
msgstr ""
+"\n"
+"Willkommen zum Druckerassistenten\n"
+"\n"
+"Dieser Assistent möchte Ihnen helfen, Ihre(n) lokalen und Netzwerkdrucker zu "
+"konfigurieren.\n"
+"\n"
+"Falls Sie Drucker haben, die direkt mit dem Rechner verbunden sind, stellen "
+"Sie sicher, dass diese richtig angeschlossen und eingeschaltet sind. Ebenso "
+"mĂŒssen die Netzwerkdrucker eingeschaltet sein.\n"
+"\n"
+"Es sei angemerkt, dass sie Erkennung von Netzwerkdruckern etwas lÀnger "
+"dauert, als das Finden von Druckern, die direkt an Ihrem Rechner hÀngen. "
+"Schalten Sie daher die Erkennung von Netzwerkrechnern aus, sofern Sie diese "
+"FunktionalitÀt nicht benötigen.\n"
+"\n"
+"BetĂ€tigen Sie die SchaltflĂ€che „Weiter“, wenn Sie soweit sind, bzw. "
+"„Abbruch“, wenn Sie keine Drucker konfigurieren wollen."
-#: ../../printerdrake.pm_.c:213
-#, fuzzy
+#: ../../printerdrake.pm_.c:315
msgid "Auto-detect printers connected to this machine"
-msgstr "Drucker-Selbsterkennung"
+msgstr "Selbsterkennung von direkt am Rechner angeschlossenen Druckern"
-#: ../../printerdrake.pm_.c:215
+#: ../../printerdrake.pm_.c:318
msgid "Auto-detect printers connected directly to the local network"
-msgstr ""
+msgstr "Selbsterkennung von Druckern, die im lokalen Netzwerk hÀngen"
-#: ../../printerdrake.pm_.c:218
+#: ../../printerdrake.pm_.c:321
msgid "Auto-detect printers connected to machines running Microsoft Windows"
msgstr ""
+"Selbsterkennung von Druckern, die im Netwerk oder an Windows Rechnern hÀngen"
-#: ../../printerdrake.pm_.c:245 ../../printerdrake.pm_.c:459
-#: ../../printerdrake.pm_.c:484
+#: ../../printerdrake.pm_.c:348 ../../printerdrake.pm_.c:562
+#: ../../printerdrake.pm_.c:587
msgid "Local Printer"
msgstr "Lokaler Drucker"
-#: ../../printerdrake.pm_.c:246
+#: ../../printerdrake.pm_.c:349
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -8243,50 +8643,49 @@ msgstr ""
"DruckqualitĂ€t) anpassen wollen, wĂ€hlen Sie „Drucker“ im „Hardware“\n"
"Bereich des Mandrake Kontrollzentrums."
-#: ../../printerdrake.pm_.c:283 ../../printerdrake.pm_.c:474
-#: ../../printerdrake.pm_.c:683 ../../printerdrake.pm_.c:923
-#, fuzzy
+#: ../../printerdrake.pm_.c:386 ../../printerdrake.pm_.c:577
+#: ../../printerdrake.pm_.c:790 ../../printerdrake.pm_.c:1030
msgid "Printer auto-detection"
-msgstr "Autoerkennung durchfĂŒhren"
+msgstr "Selbsterkennung von Druckern"
-#: ../../printerdrake.pm_.c:305
-#, fuzzy, c-format
+#: ../../printerdrake.pm_.c:408
+#, c-format
msgid ", network printer \"%s\", port %s"
-msgstr ", TCP/IP Drucker „%s“, Port %s"
+msgstr ", Netzwerkdrucker „%s“, Port %s"
-#: ../../printerdrake.pm_.c:307
-#, fuzzy, c-format
+#: ../../printerdrake.pm_.c:410
+#, c-format
msgid ", printer \"%s\" on SMB/Windows server \"%s\""
-msgstr "Drucker an SMB/Windows 9x/ME/NT"
+msgstr ", Drucker „%s“ an SMB/Windows Server „%s“"
-#: ../../printerdrake.pm_.c:313
+#: ../../printerdrake.pm_.c:416
#, c-format
msgid "Detected %s"
msgstr "%s gefunden"
-#: ../../printerdrake.pm_.c:317 ../../printerdrake.pm_.c:348
-#: ../../printerdrake.pm_.c:367
+#: ../../printerdrake.pm_.c:420 ../../printerdrake.pm_.c:451
+#: ../../printerdrake.pm_.c:470
#, c-format
msgid "Printer on parallel port \\/*%s"
msgstr "Drucker an Parallelport \\/*%s"
-#: ../../printerdrake.pm_.c:319 ../../printerdrake.pm_.c:350
-#: ../../printerdrake.pm_.c:372
+#: ../../printerdrake.pm_.c:422 ../../printerdrake.pm_.c:453
+#: ../../printerdrake.pm_.c:475
#, c-format
msgid "USB printer \\/*%s"
msgstr "USB-Drucker \\/*%s"
-#: ../../printerdrake.pm_.c:321
-#, fuzzy, c-format
+#: ../../printerdrake.pm_.c:424
+#, c-format
msgid "Network printer \"%s\", port %s"
-msgstr "Netzwerkdrucker (TCP/Socket)"
+msgstr "Netzwerkdrucker „%s“, Port %s"
-#: ../../printerdrake.pm_.c:323
-#, fuzzy, c-format
+#: ../../printerdrake.pm_.c:426
+#, c-format
msgid "Printer \"%s\" on SMB/Windows server \"%s\""
-msgstr "Drucker an SMB/Windows 9x/ME/NT"
+msgstr "Drucker „%s“ am SMB/Windows Server „%s“"
-#: ../../printerdrake.pm_.c:460
+#: ../../printerdrake.pm_.c:563
msgid ""
"No local printer found! To manually install a printer enter a device name/"
"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
@@ -8298,23 +8697,19 @@ msgstr ""
"AnschlĂŒsse: /dev/lp0, /dev/lp1, ..., Ă€quivalent zu LPT1:, LPT2:, ...; Erster "
"USB Drucker: /dev/usb/lp0, zweier USB Drucker: /dev/usb/lp1, ...)."
-#: ../../printerdrake.pm_.c:464
+#: ../../printerdrake.pm_.c:567
msgid "You must enter a device or file name!"
msgstr "Sie mĂŒssen einen GerĂ€te- oder Dateinamen eingeben!"
-#: ../../printerdrake.pm_.c:475
-#, fuzzy
+#: ../../printerdrake.pm_.c:578
msgid "No printer found!"
-msgstr ""
-"Kein Lokaler Drucker erkannt!\n"
-"\n"
+msgstr "Kein Drucker erkannt!"
-#: ../../printerdrake.pm_.c:485
-#, fuzzy
+#: ../../printerdrake.pm_.c:588
msgid "Available printers"
-msgstr "Lokaler Drucker"
+msgstr "Vorhandene Drucker"
-#: ../../printerdrake.pm_.c:489
+#: ../../printerdrake.pm_.c:592
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
@@ -8323,7 +8718,7 @@ msgstr ""
"Drucker handelt, den Sie einrichten wollen, geben Sie einen GerÀte- oder "
"Dateinamen in der Eingabezeile an."
-#: ../../printerdrake.pm_.c:490
+#: ../../printerdrake.pm_.c:593
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up or enter a device name/file name in the input line"
@@ -8332,7 +8727,7 @@ msgstr ""
"gewĂŒnschten Drucker oder geben Sie einen GerĂ€te- oder Dateinamen in der "
"Eingabezeile an."
-#: ../../printerdrake.pm_.c:492
+#: ../../printerdrake.pm_.c:595
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
@@ -8344,7 +8739,7 @@ msgstr ""
"oder wollen Sie die Einrichtung selbst vornehmen, wĂ€hlen Sie „Manuelle "
"Konfiguration“."
-#: ../../printerdrake.pm_.c:493
+#: ../../printerdrake.pm_.c:596
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
@@ -8356,7 +8751,7 @@ msgstr ""
"Ihr Drucker nicht richtig erkannt worden sein, oder wollen Sie die "
"Einrichtung selbst vornehmen, wĂ€hlen Sie „Manuelle Konfiguration“."
-#: ../../printerdrake.pm_.c:495
+#: ../../printerdrake.pm_.c:598
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
@@ -8364,11 +8759,11 @@ msgstr ""
"Bitte wÀhlen Sie den Anschluss, an dem der Drucker hÀngt oder geben Sie "
"einen GerÀte- oder Dateinamen in der Eingabezeile an."
-#: ../../printerdrake.pm_.c:496
+#: ../../printerdrake.pm_.c:599
msgid "Please choose the port where your printer is connected to."
msgstr "Bitte wÀhlen Sie den Anschluss, an dem Ihr Drucker hÀngt."
-#: ../../printerdrake.pm_.c:498
+#: ../../printerdrake.pm_.c:601
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
@@ -8377,19 +8772,19 @@ msgstr ""
"LPT2:, ..., Erster USB Drucker: /dev/usb/lp0, zweier USB Drucker: /dev/usb/"
"lp1, ...)."
-#: ../../printerdrake.pm_.c:503
+#: ../../printerdrake.pm_.c:606
msgid "You must choose/enter a printer/device!"
msgstr "Sie mĂŒssen einen Drucker wĂ€hlen/ein GerĂ€t eingeben!"
-#: ../../printerdrake.pm_.c:523
+#: ../../printerdrake.pm_.c:626
msgid "Manual configuration"
msgstr "Manuelle Konfiguration"
-#: ../../printerdrake.pm_.c:577
+#: ../../printerdrake.pm_.c:680
msgid "Remote lpd Printer Options"
msgstr "Optionen fĂŒr Netzwerk-Druckerspooler"
-#: ../../printerdrake.pm_.c:578
+#: ../../printerdrake.pm_.c:681
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
"server and the printer name on that server."
@@ -8398,47 +8793,46 @@ msgstr ""
"Rechnernamen des Drucker-Servers sowie den Druckernamen auf diesem Server "
"angeben, an den die AuftrĂ€ge ĂŒbertragen werden sollen."
-#: ../../printerdrake.pm_.c:579
+#: ../../printerdrake.pm_.c:682
msgid "Remote host name"
msgstr "Name des entfernten Rechners"
-#: ../../printerdrake.pm_.c:580
+#: ../../printerdrake.pm_.c:683
msgid "Remote printer name"
msgstr "Name des entfernten Druckers"
-#: ../../printerdrake.pm_.c:583
+#: ../../printerdrake.pm_.c:686
msgid "Remote host name missing!"
msgstr "Der Name des entfernten Rechners fehlt!"
-#: ../../printerdrake.pm_.c:587
+#: ../../printerdrake.pm_.c:690
msgid "Remote printer name missing!"
msgstr "Der Name des entfernten Druckers fehlt!"
-#: ../../printerdrake.pm_.c:609 ../../printerdrake.pm_.c:1119
-#, fuzzy, c-format
+#: ../../printerdrake.pm_.c:712 ../../printerdrake.pm_.c:1225
+#, c-format
msgid "Detected model: %s %s"
-msgstr "%s gefunden"
+msgstr "Gefundendenes Modell: %s %s"
-#: ../../printerdrake.pm_.c:683 ../../printerdrake.pm_.c:923
-#, fuzzy
+#: ../../printerdrake.pm_.c:790 ../../printerdrake.pm_.c:1030
msgid "Scanning network..."
-msgstr "Netzwerk starten ..."
+msgstr "Netzwerk durchsuchen ..."
-#: ../../printerdrake.pm_.c:692 ../../printerdrake.pm_.c:713
-#, fuzzy, c-format
+#: ../../printerdrake.pm_.c:799 ../../printerdrake.pm_.c:820
+#, c-format
msgid ", printer \"%s\" on server \"%s\""
-msgstr "auf Windows-Server „%s“, Freigabe „%s“"
+msgstr ", Drucker „%s“, auf Server „%s“"
-#: ../../printerdrake.pm_.c:695 ../../printerdrake.pm_.c:716
-#, fuzzy, c-format
+#: ../../printerdrake.pm_.c:802 ../../printerdrake.pm_.c:823
+#, c-format
msgid "Printer \"%s\" on server \"%s\""
-msgstr "Drucken auf Drucker „%s“"
+msgstr "Drucker „%s“, auf Server „%s“"
-#: ../../printerdrake.pm_.c:736
+#: ../../printerdrake.pm_.c:843
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "SMB (Windows 9x/NT) Drucker-Parameter"
-#: ../../printerdrake.pm_.c:737
+#: ../../printerdrake.pm_.c:844
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
"may be different from its TCP/IP hostname!) and possibly the IP address of "
@@ -8451,46 +8845,48 @@ msgstr ""
"fĂŒr den Drucker, auf den Sie zugreifen möchten, sowie entsprechender "
"Benutzername, Passwort und Arbeitsgruppe."
-#: ../../printerdrake.pm_.c:738
+#: ../../printerdrake.pm_.c:845
msgid ""
" If the desired printer was auto-detected, simply choose it from the list "
"and then add user name, password, and/or workgroup if needed."
msgstr ""
+"Falls der gewĂŒnschte Drucker bereits gefunden wurde, wĂ€hlen Sie ihn einfach "
+"in obiger Liste aus und geben Sie - falls notwendig - Name, Passwort und/"
+"oder DomÀne an."
-#: ../../printerdrake.pm_.c:739
+#: ../../printerdrake.pm_.c:846
msgid "SMB server host"
msgstr "SMB-Server"
-#: ../../printerdrake.pm_.c:740
+#: ../../printerdrake.pm_.c:847
msgid "SMB server IP"
msgstr "SMB-Server-IP"
-#: ../../printerdrake.pm_.c:741
+#: ../../printerdrake.pm_.c:848
msgid "Share name"
msgstr "Freigabename"
-#: ../../printerdrake.pm_.c:744
+#: ../../printerdrake.pm_.c:851
msgid "Workgroup"
msgstr "Arbeitsgruppe"
-#: ../../printerdrake.pm_.c:746
-#, fuzzy
+#: ../../printerdrake.pm_.c:853
msgid "Auto-detected"
-msgstr "Autoerkennung durchfĂŒhren"
+msgstr "Selbst gefunden"
-#: ../../printerdrake.pm_.c:757
+#: ../../printerdrake.pm_.c:864
msgid "Either the server name or the server's IP must be given!"
msgstr "Sie mĂŒssen entweder Den Servernamen oder seine IP-Adresse angeben!"
-#: ../../printerdrake.pm_.c:761
+#: ../../printerdrake.pm_.c:868
msgid "Samba share name missing!"
msgstr "Der Name der Samba-Freigabe fehlt!"
-#: ../../printerdrake.pm_.c:767
+#: ../../printerdrake.pm_.c:874
msgid "SECURITY WARNING!"
-msgstr ""
+msgstr "SICHERHEITSWARNUNG!"
-#: ../../printerdrake.pm_.c:768
+#: ../../printerdrake.pm_.c:875
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -8514,7 +8910,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:778
+#: ../../printerdrake.pm_.c:885
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -8523,7 +8919,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:781
+#: ../../printerdrake.pm_.c:888
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
@@ -8531,11 +8927,11 @@ msgid ""
"Do you really want to continue setting up this printer as you are doing now?"
msgstr ""
-#: ../../printerdrake.pm_.c:853
+#: ../../printerdrake.pm_.c:960
msgid "NetWare Printer Options"
msgstr "Optionen fĂŒr NetWare-Drucker"
-#: ../../printerdrake.pm_.c:854
+#: ../../printerdrake.pm_.c:961
msgid ""
"To print on a NetWare printer, you need to provide the NetWare print server "
"name (Note! it may be different from its TCP/IP hostname!) as well as the "
@@ -8547,44 +8943,43 @@ msgstr ""
"Rechnernamen des Computers), Name der Drucker-Warteschlange, sowie falls "
"notwendig, den entsprechenden Benutzernamen samt Passwort."
-#: ../../printerdrake.pm_.c:855
+#: ../../printerdrake.pm_.c:962
msgid "Printer Server"
msgstr "Drucker-Server"
-#: ../../printerdrake.pm_.c:856
+#: ../../printerdrake.pm_.c:963
msgid "Print Queue Name"
msgstr "Name der Druckerwarteschlange"
-#: ../../printerdrake.pm_.c:861
+#: ../../printerdrake.pm_.c:968
msgid "NCP server name missing!"
msgstr "Der NCP Servername fehlt!"
-#: ../../printerdrake.pm_.c:865
+#: ../../printerdrake.pm_.c:972
msgid "NCP queue name missing!"
msgstr "Der NCP Warteschlangen-Name fehlt!"
-#: ../../printerdrake.pm_.c:932 ../../printerdrake.pm_.c:952
-#, fuzzy, c-format
+#: ../../printerdrake.pm_.c:1039 ../../printerdrake.pm_.c:1059
+#, c-format
msgid ", host \"%s\", port %s"
-msgstr ", TCP/IP Drucker „%s“, Port %s"
+msgstr ", Rechner „%s“, Port %s"
-#: ../../printerdrake.pm_.c:935 ../../printerdrake.pm_.c:955
-#, fuzzy, c-format
+#: ../../printerdrake.pm_.c:1042 ../../printerdrake.pm_.c:1062
+#, c-format
msgid "Host \"%s\", port %s"
-msgstr ", TCP/IP Drucker „%s“, Port %s"
+msgstr "Rechner „%s“, Port %s"
-#: ../../printerdrake.pm_.c:975
+#: ../../printerdrake.pm_.c:1082
msgid "TCP/Socket Printer Options"
msgstr "Optionen fĂŒr TCP/Socket-Drucker"
-#: ../../printerdrake.pm_.c:977
+#: ../../printerdrake.pm_.c:1084
msgid ""
"Choose one of the auto-detected printers from the list or enter the hostname "
"or IP and the optional port number (default is 9100) into the input fields."
msgstr ""
-#: ../../printerdrake.pm_.c:978
-#, fuzzy
+#: ../../printerdrake.pm_.c:1085
msgid ""
"To print to a TCP or socket printer, you need to provide the host name or IP "
"of the printer and optionally the port number (default is 9100). On HP "
@@ -8592,26 +8987,24 @@ msgid ""
"vary. See the manual of your hardware."
msgstr ""
"Um einen TCP- oder Socket-Drucker verwenden zu können, mĂŒssen Sie auf alle "
-"FÀlle dessen Rechnernamen, möglicherweise auch den Port, angeben. Bei HP "
-"JetDirect Servern ist dies normalerweise die Port-Adresse 9100, bei anderen "
-"Servern kann es eine andere sein. Schauen Sie im Zweifelsfall in die "
-"Unterlagen Ihrer Hardware."
+"FÀlle dessen Rechnernamen, bzw. IP-Adresse - möglicherweise auch den Port - "
+"angeben. Bei HP JetDirect Servern ist dies normalerweise die Port-Adresse "
+"9100, bei anderen Servern kann es eine andere sein. Schauen Sie im "
+"Zweifelsfall in die Unterlagen des Herstellers."
-#: ../../printerdrake.pm_.c:983
-#, fuzzy
+#: ../../printerdrake.pm_.c:1090
msgid "Printer host name or IP missing!"
-msgstr "Der Rechnername des Druckers fehlt!"
+msgstr "Der Rechnername, bzw die IP-Adresse des Druckers fehlt!"
-#: ../../printerdrake.pm_.c:1005
-#, fuzzy
+#: ../../printerdrake.pm_.c:1112
msgid "Printer host name or IP"
-msgstr "Rechnername des Druckers"
+msgstr "Rechnername/IP des Druckers"
-#: ../../printerdrake.pm_.c:1054 ../../printerdrake.pm_.c:1056
+#: ../../printerdrake.pm_.c:1160 ../../printerdrake.pm_.c:1162
msgid "Printer Device URI"
msgstr "Druckeranschluss URI"
-#: ../../printerdrake.pm_.c:1055
+#: ../../printerdrake.pm_.c:1161
msgid ""
"You can specify directly the URI to access the printer. The URI must fulfill "
"either the CUPS or the Foomatic specifications. Note that not all URI types "
@@ -8621,11 +9014,11 @@ msgstr ""
"bzw. den Foomatic Spezifikationen genĂŒgen. Es sei hier noch angemerkt, dass "
"nicht alle URI-Typen von allen Drucksystemem unterstĂŒtzt werden."
-#: ../../printerdrake.pm_.c:1070
+#: ../../printerdrake.pm_.c:1176
msgid "A valid URI must be entered!"
msgstr "Sie mĂŒssen eine gĂŒltige URI eingeben!"
-#: ../../printerdrake.pm_.c:1402
+#: ../../printerdrake.pm_.c:1515
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
"Location fields do not need to be filled in. They are comments for the users."
@@ -8634,27 +9027,27 @@ msgstr ""
"Beschreibung und Standort mĂŒssen nicht ausgefĂŒllt werden.\n"
"Sie dienen nur als Kommentare fĂŒr den Anwender."
-#: ../../printerdrake.pm_.c:1403
+#: ../../printerdrake.pm_.c:1516
msgid "Name of printer"
msgstr "Druckername"
-#: ../../printerdrake.pm_.c:1405
+#: ../../printerdrake.pm_.c:1518
msgid "Location"
msgstr "Standort"
-#: ../../printerdrake.pm_.c:1416 ../../printerdrake.pm_.c:1536
+#: ../../printerdrake.pm_.c:1530 ../../printerdrake.pm_.c:1652
msgid "Reading printer database..."
msgstr "Lesen der Drucker-Datenbank ..."
-#: ../../printerdrake.pm_.c:1419
+#: ../../printerdrake.pm_.c:1534
msgid "Preparing printer database..."
msgstr "Vorbereiten der Drucker-Datenbank ..."
-#: ../../printerdrake.pm_.c:1516
+#: ../../printerdrake.pm_.c:1631
msgid "Your printer model"
msgstr "Ihr Druckermodell"
-#: ../../printerdrake.pm_.c:1517
+#: ../../printerdrake.pm_.c:1632
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -8680,24 +9073,24 @@ msgstr ""
"\n"
"%s"
-#: ../../printerdrake.pm_.c:1522 ../../printerdrake.pm_.c:1525
+#: ../../printerdrake.pm_.c:1637 ../../printerdrake.pm_.c:1640
msgid "The model is correct"
msgstr "Das Modell ist richtig"
-#: ../../printerdrake.pm_.c:1523 ../../printerdrake.pm_.c:1524
-#: ../../printerdrake.pm_.c:1527
+#: ../../printerdrake.pm_.c:1638 ../../printerdrake.pm_.c:1639
+#: ../../printerdrake.pm_.c:1642
msgid "Select model manually"
msgstr "Modell auswÀhlen"
-#: ../../printerdrake.pm_.c:1543
+#: ../../printerdrake.pm_.c:1659
msgid "Printer model selection"
msgstr "Auswahl des Druckertyps"
-#: ../../printerdrake.pm_.c:1544
+#: ../../printerdrake.pm_.c:1660
msgid "Which printer model do you have?"
msgstr "Über welchen Druckertyp verfĂŒgen Sie?"
-#: ../../printerdrake.pm_.c:1545
+#: ../../printerdrake.pm_.c:1661
msgid ""
"\n"
"\n"
@@ -8711,7 +9104,7 @@ msgstr ""
"Falls die Markierung auf einem falschen GerĂ€t oder auf „Rohdaten-Drucker“ "
"steht, suchen Sie bitte selbst Ihren Drucker in der Liste."
-#: ../../printerdrake.pm_.c:1548
+#: ../../printerdrake.pm_.c:1664
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
@@ -8719,11 +9112,11 @@ msgstr ""
"Falls Ihr Drucker nicht aufgefĂŒhrt ist wĂ€hlen Sie bitte ein kompatibles bzw "
"Ă€hnliches Modell (FĂŒr Einzelheiten schauen Sie bitte in Ihr Druckerhandbuch)."
-#: ../../printerdrake.pm_.c:1624
+#: ../../printerdrake.pm_.c:1741
msgid "OKI winprinter configuration"
msgstr "OKI Win-Drucker Konfiguration"
-#: ../../printerdrake.pm_.c:1625
+#: ../../printerdrake.pm_.c:1742
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -8738,11 +9131,11 @@ msgstr ""
"Schnittstelle oder an einer Printserver-Box hĂ€ngen, schließen Sie ihn bitte "
"an den ersten Parallelport, bevor Sie versuchen eine Testseite zu drucken ..."
-#: ../../printerdrake.pm_.c:1668 ../../printerdrake.pm_.c:1695
+#: ../../printerdrake.pm_.c:1785 ../../printerdrake.pm_.c:1812
msgid "Lexmark inkjet configuration"
msgstr "Lexmark Tintenstrahl-Konfiguration"
-#: ../../printerdrake.pm_.c:1669
+#: ../../printerdrake.pm_.c:1786
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
"no printers on remote machines or print server boxes. Please connect your "
@@ -8754,17 +9147,17 @@ msgstr ""
"Sie den Druker direkt an Ihren Rechner oder richten Sie ihn auf dem Rechner "
"ein, an den er angeschlossen ist."
-#: ../../printerdrake.pm_.c:1696
+#: ../../printerdrake.pm_.c:1813
+#, fuzzy
msgid ""
"To be able to print with your Lexmark inkjet and this configuration, you "
"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
-"com/). Go to the US site and click on the \"Drivers\" button. Then choose "
-"your model and afterwards \"Linux\" as operating system. The drivers come as "
-"RPM packages or shell scripts with interactive graphical installation. You "
-"do not need to do this configuration by the graphical frontends. Cancel "
-"directly after the license agreement. Then print printhead alignment pages "
-"with \"lexmarkmaintain\" and adjust the head alignment settings with this "
-"program."
+"com/). Click on the \"Drivers\" link. Then choose your model and afterwards "
+"\"Linux\" as operating system. The drivers come as RPM packages or shell "
+"scripts with interactive graphical installation. You do not need to do this "
+"configuration by the graphical frontends. Cancel directly after the license "
+"agreement. Then print printhead alignment pages with \"lexmarkmaintain\" and "
+"adjust the head alignment settings with this program."
msgstr ""
"Um mit Ihrem Lexmark Tintenstrahldrucker drucken zu können, benötigen Sie "
"die Treiber, die von Lexmark bereitgestellt werden (http://www.lexmark."
@@ -8776,7 +9169,34 @@ msgstr ""
"auf „Abbruch“ drĂŒcken. Drucken Sie dann Druckkopf-Einrichtungsseiten mit "
"„lexmarkmaintain“ und justieren Sie damit den Druckkopf."
-#: ../../printerdrake.pm_.c:1912
+#: ../../printerdrake.pm_.c:1816
+msgid "GDI Laser Printer using the Zenographics ZJ-Stream Format"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:1817
+msgid ""
+"Your printer belongs to the group of GDI laser printers (winprinters) sold "
+"by different manufacturers which uses the Zenographics ZJ-stream raster "
+"format for the data sent to the printer. The driver for these printers is "
+"still in a very early development stage and so it will perhaps not always "
+"work properly. Especially it is possible that the printer only works when "
+"you choose the A4 paper size.\n"
+"\n"
+"Some of these printers, as the HP LaserJet 1000, for which this driver was "
+"originally created, need their firmware to be uploaded to them after they "
+"are turned on. In the case of the HP LaserJet 1000 you have to search the "
+"printer's Windows driver CD or your Windows partition for the file "
+"\"sihp1000.img\" and upload the file to the printer with one of the "
+"following commands:\n"
+"\n"
+" lpr -o raw sihp1000.img\n"
+" cat sihp1000.img > /dev/usb/lp0\n"
+"\n"
+"The first command can be given by any normal user, the second must be given "
+"as root. After having done so you can print normally.\n"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:2040
msgid ""
"Printer default settings\n"
"\n"
@@ -8792,22 +9212,22 @@ msgstr ""
"richtig eingestellt sind. Es sei auch angemerkt, dass hÀufig mit steigender "
"DruckqualitÀt die Druckgeschwindigkeit sinkt."
-#: ../../printerdrake.pm_.c:1921
+#: ../../printerdrake.pm_.c:2049
#, c-format
msgid "Option %s must be an integer number!"
msgstr "Der Parameter %s muss eine Zahl sein!"
-#: ../../printerdrake.pm_.c:1925
+#: ../../printerdrake.pm_.c:2053
#, c-format
msgid "Option %s must be a number!"
msgstr "Der Parameter %s muss eine Zahl sein!"
-#: ../../printerdrake.pm_.c:1930
+#: ../../printerdrake.pm_.c:2058
#, c-format
msgid "Option %s out of range!"
msgstr "Der Parameter %s ist yu groß oder zu klein!"
-#: ../../printerdrake.pm_.c:1969
+#: ../../printerdrake.pm_.c:2097
#, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
@@ -8816,11 +9236,11 @@ msgstr ""
"Möchten Sie diesen Drucker („%s“)\n"
"als Standarddrucker verwenden?"
-#: ../../printerdrake.pm_.c:1986
+#: ../../printerdrake.pm_.c:2120
msgid "Test pages"
msgstr "Testseiten"
-#: ../../printerdrake.pm_.c:1987
+#: ../../printerdrake.pm_.c:2121
msgid ""
"Please select the test pages you want to print.\n"
"Note: the photo test page can take a rather long time to get printed and on "
@@ -8834,39 +9254,39 @@ msgstr ""
"gedruckt wird. Normalerweise sollte es ausreichen, die Standard-Testseiten "
"auszudrucken."
-#: ../../printerdrake.pm_.c:1991
+#: ../../printerdrake.pm_.c:2125
msgid "No test pages"
msgstr "Keine Testseiten"
-#: ../../printerdrake.pm_.c:1992
+#: ../../printerdrake.pm_.c:2126
msgid "Print"
msgstr "Drucken"
-#: ../../printerdrake.pm_.c:1994
+#: ../../printerdrake.pm_.c:2183
msgid "Standard test page"
msgstr "Standard-Testseite"
-#: ../../printerdrake.pm_.c:1997
+#: ../../printerdrake.pm_.c:2186
msgid "Alternative test page (Letter)"
msgstr "Alternative Testseite (US-Format - „Letter“)"
-#: ../../printerdrake.pm_.c:2000
+#: ../../printerdrake.pm_.c:2189
msgid "Alternative test page (A4)"
msgstr "Alternative Testseite (A4)"
-#: ../../printerdrake.pm_.c:2002
+#: ../../printerdrake.pm_.c:2191
msgid "Photo test page"
msgstr "Foto-Testseite"
-#: ../../printerdrake.pm_.c:2006
+#: ../../printerdrake.pm_.c:2195
msgid "Do not print any test page"
msgstr "Keine Testseite(n) drucken"
-#: ../../printerdrake.pm_.c:2014 ../../printerdrake.pm_.c:2166
+#: ../../printerdrake.pm_.c:2204 ../../printerdrake.pm_.c:2357
msgid "Printing test page(s)..."
msgstr "Druck der Testseite(n) ..."
-#: ../../printerdrake.pm_.c:2039
+#: ../../printerdrake.pm_.c:2229
#, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -8881,7 +9301,7 @@ msgstr ""
"%s\n"
"\n"
-#: ../../printerdrake.pm_.c:2043
+#: ../../printerdrake.pm_.c:2233
msgid ""
"Test page(s) have been sent to the printer.\n"
"It may take some time before the printer starts.\n"
@@ -8889,15 +9309,15 @@ msgstr ""
"Die Testseite(n) wurden an den Drucker gesandt.\n"
"Es kann einen Augenblick dauern, bevor der Drucker seine Arbeit aufnimmt.\n"
-#: ../../printerdrake.pm_.c:2050
+#: ../../printerdrake.pm_.c:2240
msgid "Did it work properly?"
msgstr "War der Ausdruck korrekt?"
-#: ../../printerdrake.pm_.c:2072 ../../printerdrake.pm_.c:3191
+#: ../../printerdrake.pm_.c:2262 ../../printerdrake.pm_.c:3416
msgid "Raw printer"
msgstr "Rohdaten-Drucker"
-#: ../../printerdrake.pm_.c:2098
+#: ../../printerdrake.pm_.c:2288
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -8911,7 +9331,7 @@ msgstr ""
"grafischen Hilfsprogramme erlauben Ihnen auf einfache Weise den richtigen "
"Drucker zu wÀhlen und die notwendigen Druckerparameter anzugeben.\n"
-#: ../../printerdrake.pm_.c:2100
+#: ../../printerdrake.pm_.c:2290
msgid ""
"These commands you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications, but here do not supply the file name "
@@ -8921,8 +9341,8 @@ msgstr ""
"zahlreicher Anwendungen angeben, lassen Sie jedoch den Dateinamen weg, da "
"die zu druckende Datei von der Anwendung geliefert wird.\n"
-#: ../../printerdrake.pm_.c:2103 ../../printerdrake.pm_.c:2120
-#: ../../printerdrake.pm_.c:2130
+#: ../../printerdrake.pm_.c:2293 ../../printerdrake.pm_.c:2310
+#: ../../printerdrake.pm_.c:2320
#, c-format
msgid ""
"\n"
@@ -8935,8 +9355,8 @@ msgstr ""
"bestimmten Druckauftrag zu Ă€ndern. Geben Sie die gewĂŒnschten Angaben einfach "
"in der Kommandozeile mit an, etwa: „%s <Datei>“. "
-#: ../../printerdrake.pm_.c:2106 ../../printerdrake.pm_.c:2146
-#, fuzzy, c-format
+#: ../../printerdrake.pm_.c:2296 ../../printerdrake.pm_.c:2336
+#, c-format
msgid ""
"To know about the options available for the current printer read either the "
"list shown below or click on the \"Print option list\" button.%s%s\n"
@@ -8944,10 +9364,10 @@ msgid ""
msgstr ""
"Um alle existierenden Optionen des Druckers zu erfahren, lesen Sie entweder "
"die unten angegebene Liste oder betĂ€tigen Sie die SchaltflĂ€che „Liste der "
-"Drucker-Optionen“. %s\n"
+"Drucker-Optionen“. %s%s\n"
"\n"
-#: ../../printerdrake.pm_.c:2110
+#: ../../printerdrake.pm_.c:2300
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
@@ -8955,7 +9375,7 @@ msgstr ""
"Hier die Liste vorhandener Drucker-Parameter des aktuellen Druckers:\n"
"\n"
-#: ../../printerdrake.pm_.c:2115 ../../printerdrake.pm_.c:2125
+#: ../../printerdrake.pm_.c:2305 ../../printerdrake.pm_.c:2315
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
@@ -8964,8 +9384,8 @@ msgstr ""
"Verwenden Sie den Befehl „%s <Datei>“, um die Datei <Datei> in der "
"Kommandozeile auszudrucken.\n"
-#: ../../printerdrake.pm_.c:2117 ../../printerdrake.pm_.c:2127
-#: ../../printerdrake.pm_.c:2137
+#: ../../printerdrake.pm_.c:2307 ../../printerdrake.pm_.c:2317
+#: ../../printerdrake.pm_.c:2327
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
@@ -8975,7 +9395,7 @@ msgstr ""
"angeben. Tragen Sie bitte keinen Dateinamen ein, da dieser vom Programm "
"ergÀnzt wird.\n"
-#: ../../printerdrake.pm_.c:2122 ../../printerdrake.pm_.c:2132
+#: ../../printerdrake.pm_.c:2312 ../../printerdrake.pm_.c:2322
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
@@ -8983,7 +9403,7 @@ msgstr ""
"Um eine Liste der Drucker-Parameter Ihres Druckers zu erhalten, betÀtigen "
"Sie bitte die SchaltflĂ€che „Liste der Drucker-Optionen“."
-#: ../../printerdrake.pm_.c:2135
+#: ../../printerdrake.pm_.c:2325
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
@@ -8992,7 +9412,7 @@ msgstr ""
"Verwenden Sie einen der Befehle „%s <Datei>“ oder „%s <Datei>“, um die Datei "
"<Datei> in der Kommandozeile auszudrucken.\n"
-#: ../../printerdrake.pm_.c:2139
+#: ../../printerdrake.pm_.c:2329
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -9008,7 +9428,7 @@ msgstr ""
"DruckauftrÀge anhÀ, wenn Sie es betÀgen. Das kann beispielsweise dann "
"hilfreich sein, wenn Sie einen Papierstau in Ihrem Drucker haben.\n"
-#: ../../printerdrake.pm_.c:2143
+#: ../../printerdrake.pm_.c:2333
#, c-format
msgid ""
"\n"
@@ -9021,41 +9441,41 @@ msgstr ""
"spezeiellen Druckjobs zu konfigurieren. FĂŒgen Sie einfach die gewĂŒnschten "
"Einstellungen in der Kommandozeile ein, etwa „%s <Datei>“.\n"
-#: ../../printerdrake.pm_.c:2153
-#, fuzzy, c-format
+#: ../../printerdrake.pm_.c:2343
+#, c-format
msgid "Printing/Scanning/Photo Cards on \"%s\""
-msgstr "Drucken/Scannen mit „%s“"
+msgstr "Drucken/Scannen/Fotokarten mit „%s“"
-#: ../../printerdrake.pm_.c:2154
+#: ../../printerdrake.pm_.c:2344
#, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "Drucken/Scannen mit „%s“"
-#: ../../printerdrake.pm_.c:2156
-#, fuzzy, c-format
+#: ../../printerdrake.pm_.c:2346
+#, c-format
msgid "Printing/Photo Card Access on \"%s\""
-msgstr "Drucken/Scannen mit „%s“"
+msgstr "Drucken/Fotokartenzugriff mit „%s“"
-#: ../../printerdrake.pm_.c:2157
+#: ../../printerdrake.pm_.c:2347
#, c-format
msgid "Printing on the printer \"%s\""
msgstr "Drucken auf Drucker „%s“"
-#: ../../printerdrake.pm_.c:2160 ../../printerdrake.pm_.c:2163
-#: ../../printerdrake.pm_.c:2164 ../../printerdrake.pm_.c:2165
-#: ../../printerdrake.pm_.c:3175 ../../standalone/drakTermServ_.c:248
-#: ../../standalone/drakbackup_.c:1485 ../../standalone/drakbackup_.c:3530
-#: ../../standalone/drakbug_.c:129 ../../standalone/drakfont_.c:705
+#: ../../printerdrake.pm_.c:2350 ../../printerdrake.pm_.c:2353
+#: ../../printerdrake.pm_.c:2354 ../../printerdrake.pm_.c:2355
+#: ../../printerdrake.pm_.c:3400 ../../standalone/drakTermServ_.c:248
+#: ../../standalone/drakbackup_.c:1560 ../../standalone/drakbackup_.c:4208
+#: ../../standalone/drakbug_.c:130 ../../standalone/drakfont_.c:705
#: ../../standalone/drakfont_.c:1014
msgid "Close"
msgstr "Schließen"
-#: ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2353
msgid "Print option list"
msgstr "Liste der Drucker-Optionen"
-#: ../../printerdrake.pm_.c:2182
-#, fuzzy, c-format
+#: ../../printerdrake.pm_.c:2373
+#, c-format
msgid ""
"Your multi-function device was configured automatically to be able to scan. "
"Now you can scan with \"scanimage\" (\"scanimage -d hp:%s\" to specify the "
@@ -9067,18 +9487,18 @@ msgid ""
"\n"
"Do not use \"scannerdrake\" for this device!"
msgstr ""
-"Ihr HP-MultifunktionsgerÀt wurde automatisch auch zum Scannen eingerichtet. "
-"Sie können nun mit „scanimage“ („scanimage -d hp:%s“ um den Scanner "
-"auszuwÀhlen, falls Sie mehrere angeschlossen haben) aus der Kommandozeile "
-"oder mit „xscanimage“ bzw. „xsane“ - wenn Sie eine grafisches Werkzeug "
-"verwenden wollen - scannen. Wenn sie mit dem GIMP arbeiten wollen, können "
-"Sie dies ebenfalls tun. WĂ€hlen Sie einfach im MenĂŒ „Datei/Holen“ den "
-"entsprechenden Eintrag. Sie können sich auch mittels „man scanimage“ bzw "
-"„man sane-hp“ in der Kommandozeile weitere Informationen ausgeben lassen.\n"
+"Ihr MultifunktionsgerÀt wurde automatisch auch zum Scannen eingerichtet. Sie "
+"können nun mit dem Befehl „scanimage“ („scanimage -d hp:%s“ um den Scanner "
+"auszuwÀhlen, falls Sie mehrere angeschlossen haben), eingegeben in der "
+"Kommandozeile, scannen. Wenn Sie eine grafisches Werkzeug verwenden wollen: "
+"„xscanimage“ bzw. „xsane“. Sie können auch den GIMP verwenden. WĂ€hlen Sie "
+"einfach im MenĂŒ „Datei/Holen“ den entsprechenden Eintrag. Sie können sich "
+"auch mittels „man scanimage“ bzw „man sane-hp“ in der Kommandozeile weitere "
+"Informationen ausgeben lassen.\n"
"\n"
"Verwenden Sie fĂŒr dieses GerĂ€t nicht „ScannerDrake“!"
-#: ../../printerdrake.pm_.c:2202
+#: ../../printerdrake.pm_.c:2394
msgid ""
"Your printer was configured automatically to give you access to the photo "
"card drives from your PC. Now you can access your photo cards using the "
@@ -9091,17 +9511,17 @@ msgid ""
"of the file lists."
msgstr ""
-#: ../../printerdrake.pm_.c:2223 ../../printerdrake.pm_.c:2673
-#: ../../printerdrake.pm_.c:2945
+#: ../../printerdrake.pm_.c:2416 ../../printerdrake.pm_.c:2875
+#: ../../printerdrake.pm_.c:3170
msgid "Reading printer data..."
msgstr "Lesen der Treiber-Datenbank ..."
-#: ../../printerdrake.pm_.c:2243 ../../printerdrake.pm_.c:2271
-#: ../../printerdrake.pm_.c:2306
+#: ../../printerdrake.pm_.c:2436 ../../printerdrake.pm_.c:2464
+#: ../../printerdrake.pm_.c:2499
msgid "Transfer printer configuration"
msgstr "Drucker-Einstellung transferieren"
-#: ../../printerdrake.pm_.c:2244
+#: ../../printerdrake.pm_.c:2437
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -9117,7 +9537,7 @@ msgstr ""
"Warteschlange gehen jedoch verloren.\n"
"Nicht alle Warteschlangen können ĂŒbernommen werden:\n"
-#: ../../printerdrake.pm_.c:2247
+#: ../../printerdrake.pm_.c:2440
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
@@ -9125,7 +9545,7 @@ msgstr ""
"CUPS unterstĂŒtzt keine Druker an Novel Servern oder Drucker, die ihre Daten "
"in ein frei gewÀhltes Kommando senden.\n"
-#: ../../printerdrake.pm_.c:2249
+#: ../../printerdrake.pm_.c:2442
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
@@ -9133,11 +9553,11 @@ msgstr ""
"PDQ unterstĂŒtzt nur lokale Drucker, entfernte LPD Drucker und Socket/TCP "
"Drucker.\n"
-#: ../../printerdrake.pm_.c:2251
+#: ../../printerdrake.pm_.c:2444
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr "LPD und LPRng unterstĂŒkeine IPP Drucker.\n"
-#: ../../printerdrake.pm_.c:2253
+#: ../../printerdrake.pm_.c:2446
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
@@ -9145,7 +9565,7 @@ msgstr ""
"Warteschlangen, die nicht mit diesem Programm oder „foomatic-configure“ "
"ertellt wurden, können nicht ĂŒbertragen werden."
-#: ../../printerdrake.pm_.c:2254
+#: ../../printerdrake.pm_.c:2447
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
@@ -9155,7 +9575,7 @@ msgstr ""
"Drucker, die mit den PPD-Dateien ihrer Hersteller oder CUPS-spezifischen "
"Treibern eingerichtet wurden, können nicht ĂŒbertragen werden."
-#: ../../printerdrake.pm_.c:2255
+#: ../../printerdrake.pm_.c:2448
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
@@ -9165,15 +9585,15 @@ msgstr ""
"Markieren Sie die Druckerwarteschlangen, die sie ĂŒbertragen wollen und "
"betĂ€tigen Sie die SchaltflĂ€che „Übertragen“."
-#: ../../printerdrake.pm_.c:2258
+#: ../../printerdrake.pm_.c:2451
msgid "Do not transfer printers"
msgstr "Druckerdaten nicht ĂŒbertragen"
-#: ../../printerdrake.pm_.c:2259 ../../printerdrake.pm_.c:2276
+#: ../../printerdrake.pm_.c:2452 ../../printerdrake.pm_.c:2469
msgid "Transfer"
msgstr "Übertragen"
-#: ../../printerdrake.pm_.c:2272
+#: ../../printerdrake.pm_.c:2465
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -9185,12 +9605,12 @@ msgstr ""
"ĂŒberschreiben. Sie können dem Drucker auch einen neuen \n"
"Namen geben oder ihn einfach ĂŒberspringen."
-#: ../../printerdrake.pm_.c:2280
+#: ../../printerdrake.pm_.c:2473
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr ""
"Druckernamen sollten nur Buchstaben, Ziffern und den Unterstrich unterhalten"
-#: ../../printerdrake.pm_.c:2285
+#: ../../printerdrake.pm_.c:2478
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
@@ -9199,16 +9619,16 @@ msgstr ""
"Der Drucker „%s“ existiert bereits. Wollen Sie ihn wirklich \n"
"ersetzen?"
-#: ../../printerdrake.pm_.c:2293
+#: ../../printerdrake.pm_.c:2486
msgid "New printer name"
msgstr "Neuer Druckername"
-#: ../../printerdrake.pm_.c:2296
+#: ../../printerdrake.pm_.c:2489
#, c-format
msgid "Transferring %s..."
msgstr "Übertragen von „%s“ ..."
-#: ../../printerdrake.pm_.c:2307
+#: ../../printerdrake.pm_.c:2500
#, c-format
msgid ""
"You have transferred your former default printer (\"%s\"), Should it be also "
@@ -9217,29 +9637,29 @@ msgstr ""
"Sie haben Ihren alten Standarddrucker („%s“) ĂŒbertragen, soll es auch Ihr "
"Standarddrucker unter dem neuen Drucksystem „%s“ werden?"
-#: ../../printerdrake.pm_.c:2316
+#: ../../printerdrake.pm_.c:2510
msgid "Refreshing printer data..."
msgstr "Aktualisieren der Druckerdaten ..."
-#: ../../printerdrake.pm_.c:2324 ../../printerdrake.pm_.c:2395
-#: ../../printerdrake.pm_.c:2407
+#: ../../printerdrake.pm_.c:2518 ../../printerdrake.pm_.c:2590
+#: ../../printerdrake.pm_.c:2602
msgid "Configuration of a remote printer"
msgstr "Konfiguration eines entfernten Druckers"
-#: ../../printerdrake.pm_.c:2325
+#: ../../printerdrake.pm_.c:2519
msgid "Starting network..."
msgstr "Netzwerk starten ..."
-#: ../../printerdrake.pm_.c:2359 ../../printerdrake.pm_.c:2363
-#: ../../printerdrake.pm_.c:2365
+#: ../../printerdrake.pm_.c:2554 ../../printerdrake.pm_.c:2558
+#: ../../printerdrake.pm_.c:2560
msgid "Configure the network now"
msgstr "Netzwerk jetzt konfigurieren"
-#: ../../printerdrake.pm_.c:2360
+#: ../../printerdrake.pm_.c:2555
msgid "Network functionality not configured"
msgstr "Ihr Netzwerk ist nicht konfiguriert"
-#: ../../printerdrake.pm_.c:2361
+#: ../../printerdrake.pm_.c:2556
msgid ""
"You are going to configure a remote printer. This needs working network "
"access, but your network is not configured yet. If you go on without network "
@@ -9251,11 +9671,11 @@ msgstr ""
"Sollten Sie dennoch fortfahren, ohne Ihr Netzwerk einzurichten, ist der "
"Drucker hinterher nicht zu verwenden. Wie wollen Sie fortfahren?"
-#: ../../printerdrake.pm_.c:2364
+#: ../../printerdrake.pm_.c:2559
msgid "Go on without configuring the network"
msgstr "Weiter ohne Netzwerkkonfiguration"
-#: ../../printerdrake.pm_.c:2397
+#: ../../printerdrake.pm_.c:2592
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -9271,7 +9691,7 @@ msgstr ""
"anschließend erneut den Drucker mittels „Hardware/Drucker“im Kontrollzentrum "
"einzurichten."
-#: ../../printerdrake.pm_.c:2398
+#: ../../printerdrake.pm_.c:2593
msgid ""
"The network access was not running and could not be started. Please check "
"your configuration and your hardware. Then try to configure your remote "
@@ -9282,24 +9702,24 @@ msgstr ""
"und Ihre Softwareeinstellngen. Versuchen Sie anschließend erneut den "
"entfernten Drucker einzurichten."
-#: ../../printerdrake.pm_.c:2408
+#: ../../printerdrake.pm_.c:2603
msgid "Restarting printing system..."
msgstr "Drucksystem neu starten ..."
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2641
msgid "high"
msgstr "Hoch"
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2641
msgid "paranoid"
msgstr "Paranoid"
-#: ../../printerdrake.pm_.c:2447
+#: ../../printerdrake.pm_.c:2642
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr "Installation eines Drucksystems in Sicherheitsebene %s"
-#: ../../printerdrake.pm_.c:2448
+#: ../../printerdrake.pm_.c:2643
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -9324,11 +9744,11 @@ msgstr ""
"\n"
"Wollen Sie wirklich dieses Drucksystem auf diesem Rechner installieren?"
-#: ../../printerdrake.pm_.c:2480
+#: ../../printerdrake.pm_.c:2675
msgid "Starting the printing system at boot time"
msgstr "Drucksystem beim BS-Start aktivieren"
-#: ../../printerdrake.pm_.c:2481
+#: ../../printerdrake.pm_.c:2676
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -9349,75 +9769,71 @@ msgstr ""
"\n"
"Wollen sie den automatischen Start des Drucksystems wieder herstellen?"
-#: ../../printerdrake.pm_.c:2504 ../../printerdrake.pm_.c:2544
-#: ../../printerdrake.pm_.c:2581 ../../printerdrake.pm_.c:2621
-#: ../../printerdrake.pm_.c:2733
+#: ../../printerdrake.pm_.c:2700 ../../printerdrake.pm_.c:2741
+#: ../../printerdrake.pm_.c:2780 ../../printerdrake.pm_.c:2822
+#: ../../printerdrake.pm_.c:2943
msgid "Checking installed software..."
msgstr "Suche nach installierter Software"
-#: ../../printerdrake.pm_.c:2548
+#: ../../printerdrake.pm_.c:2746
msgid "Removing LPRng..."
msgstr "Entfernen von LPRng ..."
-#: ../../printerdrake.pm_.c:2585
+#: ../../printerdrake.pm_.c:2785
msgid "Removing LPD..."
msgstr "Entfernen des LPD ..."
-#: ../../printerdrake.pm_.c:2657
+#: ../../printerdrake.pm_.c:2858
msgid "Select Printer Spooler"
msgstr "WĂ€hlen Sie das Drucksystem"
-#: ../../printerdrake.pm_.c:2658
+#: ../../printerdrake.pm_.c:2859
msgid "Which printing system (spooler) do you want to use?"
msgstr "Welches Drucksystem (Spooler) wollen Sie verwenden?"
-#: ../../printerdrake.pm_.c:2691
-#, fuzzy, c-format
+#: ../../printerdrake.pm_.c:2895
+#, c-format
msgid "Configuring printer \"%s\"..."
-msgstr "Konfigurieren von Drucker „%s“ ..."
+msgstr "Drucker „%s“ konfigurieren ..."
-#: ../../printerdrake.pm_.c:2704
+#: ../../printerdrake.pm_.c:2909
msgid "Installing Foomatic..."
msgstr "Installieren des Pakets Foomatic ..."
-#: ../../printerdrake.pm_.c:2769 ../../printerdrake.pm_.c:2808
-#: ../../printerdrake.pm_.c:3192 ../../printerdrake.pm_.c:3262
+#: ../../printerdrake.pm_.c:2979 ../../printerdrake.pm_.c:3020
+#: ../../printerdrake.pm_.c:3417 ../../printerdrake.pm_.c:3490
msgid "Printer options"
msgstr "Drucker-Optionen"
-#: ../../printerdrake.pm_.c:2778
-msgid "Preparing PrinterDrake..."
+#: ../../printerdrake.pm_.c:2989
+msgid "Preparing Printerdrake..."
msgstr "PrinterDrake vorbereiten ..."
-#: ../../printerdrake.pm_.c:2795 ../../printerdrake.pm_.c:3349
+#: ../../printerdrake.pm_.c:3007 ../../printerdrake.pm_.c:3580
msgid "Configuring applications..."
msgstr "Anwendungen konfigurieren ..."
-#: ../../printerdrake.pm_.c:2815
+#: ../../printerdrake.pm_.c:3027
msgid "Would you like to configure printing?"
msgstr "Möchten Sie einen Drucker konfigurieren?"
-#: ../../printerdrake.pm_.c:2827
+#: ../../printerdrake.pm_.c:3039
msgid "Printing system: "
msgstr "Drucksystem: "
-#: ../../printerdrake.pm_.c:2875
-msgid "Printerdrake"
-msgstr "PrinterDrake"
-
-#: ../../printerdrake.pm_.c:2879
+#: ../../printerdrake.pm_.c:3099
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; to view information about it; "
"or to make a printer on a remote CUPS server available for Star Office/"
-"OpenOffice.org."
+"OpenOffice.org/GIMP."
msgstr ""
"Die folgenden Drucker sind bereits eingerichtet. FĂŒhren Sie einen "
"Doppelklick auf einem aus, um ihn zu Àndern, als Standarddrucker zu "
"verwenden, Informtionen ĂŒber ihn zu erhalten oder einen entfernten CUPS-"
"Server fĂŒr Star/OpenOffice zugĂ€nglich zu machen."
-#: ../../printerdrake.pm_.c:2880
+#: ../../printerdrake.pm_.c:3100
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; or to view information about "
@@ -9427,28 +9843,28 @@ msgstr ""
"Doppelklick auf einem aus, um ihn zu Àndern, als Standarddrucker zu "
"verwenden oder Informtionen ĂŒber ihn zu erhalten."
-#: ../../printerdrake.pm_.c:2906
+#: ../../printerdrake.pm_.c:3127
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr "Aktualisiere Druckerliste (um alle entfernten CUPS-Drucker anzuzeigen)"
-#: ../../printerdrake.pm_.c:2924
+#: ../../printerdrake.pm_.c:3145
msgid "Change the printing system"
msgstr "Drucksystem Àndern"
-#: ../../printerdrake.pm_.c:2929 ../../standalone/drakconnect_.c:277
+#: ../../printerdrake.pm_.c:3150 ../../standalone/drakconnect_.c:277
msgid "Normal Mode"
msgstr "Normaler Modus"
-#: ../../printerdrake.pm_.c:3085 ../../printerdrake.pm_.c:3135
-#: ../../printerdrake.pm_.c:3343
+#: ../../printerdrake.pm_.c:3310 ../../printerdrake.pm_.c:3360
+#: ../../printerdrake.pm_.c:3573
msgid "Do you want to configure another printer?"
msgstr "Möchten Sie einen weiteren Drucker einrichten?"
-#: ../../printerdrake.pm_.c:3170
+#: ../../printerdrake.pm_.c:3395
msgid "Modify printer configuration"
msgstr "Drucker-Konfiguration Àndern"
-#: ../../printerdrake.pm_.c:3172
+#: ../../printerdrake.pm_.c:3397
#, c-format
msgid ""
"Printer %s\n"
@@ -9457,103 +9873,106 @@ msgstr ""
"Drucker %s\n"
"Was wollen Sie an diesem Drucker Àndern?"
-#: ../../printerdrake.pm_.c:3176
+#: ../../printerdrake.pm_.c:3401
msgid "Do it!"
msgstr "AusfĂŒhren!"
-#: ../../printerdrake.pm_.c:3181 ../../printerdrake.pm_.c:3236
+#: ../../printerdrake.pm_.c:3406 ../../printerdrake.pm_.c:3461
msgid "Printer connection type"
msgstr "Art der Druckeranbindung"
-#: ../../printerdrake.pm_.c:3182 ../../printerdrake.pm_.c:3240
+#: ../../printerdrake.pm_.c:3407 ../../printerdrake.pm_.c:3465
msgid "Printer name, description, location"
msgstr "Druckername, Beschreibung, Standort"
-#: ../../printerdrake.pm_.c:3184 ../../printerdrake.pm_.c:3255
+#: ../../printerdrake.pm_.c:3409 ../../printerdrake.pm_.c:3483
msgid "Printer manufacturer, model, driver"
msgstr "Druckerproduzent, Modell, Treiber"
-#: ../../printerdrake.pm_.c:3185 ../../printerdrake.pm_.c:3256
+#: ../../printerdrake.pm_.c:3410 ../../printerdrake.pm_.c:3484
msgid "Printer manufacturer, model"
msgstr "Druckerproduzent, Modell"
-#: ../../printerdrake.pm_.c:3194 ../../printerdrake.pm_.c:3266
+#: ../../printerdrake.pm_.c:3419 ../../printerdrake.pm_.c:3494
msgid "Set this printer as the default"
msgstr "Als Standarddrucker verwenden"
-#: ../../printerdrake.pm_.c:3196 ../../printerdrake.pm_.c:3271
-msgid "Add this printer to Star Office/OpenOffice.org"
-msgstr "Diesen Drucker fĂŒr StarOffice/OpenOffice.org hinzufĂŒgen"
+#: ../../printerdrake.pm_.c:3421 ../../printerdrake.pm_.c:3499
+msgid "Add this printer to Star Office/OpenOffice.org/GIMP"
+msgstr "Diesen Drucker fĂŒr StarOffice/OpenOffice.org/GIMP hinzufĂŒgen"
-#: ../../printerdrake.pm_.c:3197 ../../printerdrake.pm_.c:3280
-msgid "Remove this printer from Star Office/OpenOffice.org"
-msgstr "Diesen Drucker fĂŒr StarOffice/OpenOffice.org entfernen"
+#: ../../printerdrake.pm_.c:3422 ../../printerdrake.pm_.c:3508
+msgid "Remove this printer from Star Office/OpenOffice.org/GIMP"
+msgstr "Diesen Drucker fĂŒr StarOffice/OpenOffice.org/GIMP entfernen"
-#: ../../printerdrake.pm_.c:3198 ../../printerdrake.pm_.c:3289
+#: ../../printerdrake.pm_.c:3423 ../../printerdrake.pm_.c:3517
msgid "Print test pages"
msgstr "Testseite(n) drucken"
-#: ../../printerdrake.pm_.c:3199 ../../printerdrake.pm_.c:3291
+#: ../../printerdrake.pm_.c:3424 ../../printerdrake.pm_.c:3519
msgid "Know how to use this printer"
msgstr "Wie dieser Drucker genutzt werden kann"
-#: ../../printerdrake.pm_.c:3201 ../../printerdrake.pm_.c:3293
+#: ../../printerdrake.pm_.c:3426 ../../printerdrake.pm_.c:3521
msgid "Remove printer"
msgstr "Drucker entfernen"
-#: ../../printerdrake.pm_.c:3245
-#, fuzzy, c-format
+#: ../../printerdrake.pm_.c:3472
+#, c-format
msgid "Removing old printer \"%s\"..."
msgstr "Alten Drucker „%s“ entfernen ..."
-#: ../../printerdrake.pm_.c:3269
+#: ../../printerdrake.pm_.c:3497
msgid "Default printer"
msgstr "Standarddrucker"
-#: ../../printerdrake.pm_.c:3270
+#: ../../printerdrake.pm_.c:3498
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr "Der Drucker „%s“ ist jetzt Ihr Standarddrucker“"
-#: ../../printerdrake.pm_.c:3274 ../../printerdrake.pm_.c:3277
-msgid "Adding printer to Star Office/OpenOffice.org"
-msgstr "Drucker fĂŒr StarOffice/OpenOffice.org hinzufĂŒgen"
+#: ../../printerdrake.pm_.c:3502 ../../printerdrake.pm_.c:3505
+msgid "Adding printer to Star Office/OpenOffice.org/GIMP"
+msgstr "Drucker fĂŒr StarOffice/OpenOffice.org/GIMP hinzufĂŒgen"
-#: ../../printerdrake.pm_.c:3275
+#: ../../printerdrake.pm_.c:3503
#, c-format
msgid ""
-"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
+"The printer \"%s\" was successfully added to Star Office/OpenOffice.org/GIMP."
msgstr ""
-"Der Drucker „%s“ wurde erfogrich zu StarOffice/OpenOffice.org hinzugefĂŒgt."
+"Der Drucker „%s“ wurde erfogrich zu StarOffice/OpenOffice.org/GIMP "
+"hinzugefĂŒgt."
-#: ../../printerdrake.pm_.c:3278
+#: ../../printerdrake.pm_.c:3506
#, c-format
-msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
-msgstr "Fehler beim HinzufĂŒgen von „%s“ fĂŒr StarOffice/OpenOffice.org."
+msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org/GIMP."
+msgstr "Fehler beim HinzufĂŒgen von „%s“ fĂŒr StarOffice/OpenOffice.org/GIMP."
-#: ../../printerdrake.pm_.c:3283 ../../printerdrake.pm_.c:3286
-msgid "Removing printer from Star Office/OpenOffice.org"
-msgstr "Drucker fĂŒr StarOffice/OpenOffice.org entfernen"
+#: ../../printerdrake.pm_.c:3511 ../../printerdrake.pm_.c:3514
+msgid "Removing printer from Star Office/OpenOffice.org/GIMP"
+msgstr "Drucker fĂŒr StarOffice/OpenOffice.org/GIMP entfernen"
-#: ../../printerdrake.pm_.c:3284
+#: ../../printerdrake.pm_.c:3512
#, c-format
msgid ""
-"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
+"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org/"
+"GIMP."
msgstr ""
-"Der Drucker „%s“ wurde erfogrich fĂŒr StarOffice/OpenOffice.org entfernt."
+"Der Drucker „%s“ wurde erfogrich fĂŒr StarOffice/OpenOffice.org/GIMP entfernt."
-#: ../../printerdrake.pm_.c:3287
+#: ../../printerdrake.pm_.c:3515
#, c-format
-msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
-msgstr "Fehler beim Entfernen von „%s“ fĂŒr StarOffice/OpenOffice.org."
+msgid ""
+"Failed to remove the printer \"%s\" from Star Office/OpenOffice.org/GIMP."
+msgstr "Fehler beim Entfernen von „%s“ fĂŒr StarOffice/OpenOffice.org/GIMP."
-#: ../../printerdrake.pm_.c:3295
+#: ../../printerdrake.pm_.c:3523
#, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr "Möchten Sie den Drucker „%s“ wirklich entfernen?"
-#: ../../printerdrake.pm_.c:3297
-#, fuzzy, c-format
+#: ../../printerdrake.pm_.c:3527
+#, c-format
msgid "Removing printer \"%s\"..."
msgstr "Drucker „%s“ entfernen ..."
@@ -9609,9 +10028,8 @@ msgstr ""
"alle Felder leer."
#: ../../proxy.pm_.c:65
-#, fuzzy
msgid "Url should begin with 'ftp:' or 'http:'"
-msgstr "Die URL muss mit „http:“ beginnen"
+msgstr "Die URL muss mit „http://“ oder „ftp://“ beginnen"
#: ../../proxy.pm_.c:79
msgid ""
@@ -10002,7 +10420,7 @@ msgstr "Internet"
msgid "File sharing"
msgstr "Gemeinsamer Dateizugriff"
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1669
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1744
msgid "System"
msgstr "System"
@@ -10056,15 +10474,15 @@ msgstr "Start"
msgid "Stop"
msgstr "Stopp"
-#: ../../share/advertising/00-thanks.pl_.c:9
-msgid "Thank you for choosing Mandrake Linux 8.2"
-msgstr "Danke, dass Sie sich fĂŒr Mandrake Linux 8.2 entschieden haben"
+#: ../../share/advertising/01-thanks.pl_.c:9
+msgid "Thank you for choosing Mandrake Linux 9.0"
+msgstr "Danke, dass Sie sich fĂŒr Mandrake Linux 9.0 entschieden haben"
-#: ../../share/advertising/00-thanks.pl_.c:10
+#: ../../share/advertising/01-thanks.pl_.c:10
msgid "Welcome to the Open Source world"
msgstr "Willkommen in der Open Source Welt."
-#: ../../share/advertising/00-thanks.pl_.c:11
+#: ../../share/advertising/01-thanks.pl_.c:11
msgid ""
"The success of MandrakeSoft is based upon the principle of Free Software. "
"Your new operating system is the result of collaborative work on the part of "
@@ -10074,232 +10492,253 @@ msgstr ""
"neues Betriebssystem ist das Ergebnis einer weltweiten Zusammenarbeit der "
"GNU/Linux-Gemeinde."
-#: ../../share/advertising/01-gnu.pl_.c:9
-msgid "Join the Free Software world"
+#: ../../share/advertising/02-community.pl_.c:9
+msgid "Get involved in the Free Software world"
msgstr "Betreten Sie die Welt der Freien Software"
-#: ../../share/advertising/01-gnu.pl_.c:10
+#: ../../share/advertising/02-community.pl_.c:10
+msgid "Want to know more about the Open Source community?"
+msgstr ""
+
+#: ../../share/advertising/02-community.pl_.c:11
msgid ""
-"Get to know the Open Source community and become a member. Learn, teach, and "
-"help others by joining the many discussion forums that you will find in our "
-"\"Community\" webpages"
+"To share your own knowledge and help build Linux tools, join the discussions "
+"forum you'll find on our \"Community\" webpages"
msgstr ""
-"Wollen Sie die Open Source Gemeinde kennen lernen? Ein Teil von ihr werden? "
"Beteiligen Sie sich an den Diskussionsforen, die Sie auf unseren „Community“-"
-"Seiten finden."
+"Seiten finden, um Ihre wissen mit Anderen zu teilen."
-#: ../../share/advertising/02-internet.pl_.c:9
-msgid "Internet and Messaging"
-msgstr "Internet und Messaging"
+#: ../../share/advertising/03-internet.pl_.c:9
+msgid "Get the most from the Internet"
+msgstr "Nutzen Sie das Internet nach Ihren WĂŒnschen"
-#: ../../share/advertising/02-internet.pl_.c:10
+#: ../../share/advertising/03-internet.pl_.c:10
msgid ""
-"Mandrake Linux 8.2 provides the best software to access everything the "
-"Internet has to offer: Surf the web & view animations with Mozilla and "
-"Konqueror, exchange email & organize your personal information with "
-"Evolution and Kmail, and much more"
+"Mandrake Linux 9.0 has selected the best software for you. Surf the Web and "
+"view animations with Mozilla and Konqueror, or read your mail and handle "
+"your personal information with Evolution and Kmail"
msgstr ""
-"Mandrake Linux 8.2 stellt Ihnen die beste Softwareauswahl bereit, um auf "
+"Mandrake Linux 9.0 stellt Ihnen die beste Softwareauswahl bereit, um auf "
"alles, was das Internet bietet, zugreifen zu können. Surfen Sie im Web mit "
"Mozilla oder Konqueror, bearbeiten Sie E-Mails und verwalten Sie persönliche "
"Informationen mit Evolution, KMail oder zahlreichen anderen Programmen."
-#: ../../share/advertising/03-graphic.pl_.c:9
-msgid "Multimedia and Graphics"
-msgstr "Multimedia und Grafik"
+#: ../../share/advertising/04-multimedia.pl_.c:9
+msgid "Discover the most up-to-date graphics and multimedia tools!"
+msgstr "Entdecken Sie die atuellsten Grafik- und Multimedia-Programme"
+
+#: ../../share/advertising/04-multimedia.pl_.c:10
+msgid "Push multimedia to its limits!"
+msgstr ""
-#: ../../share/advertising/03-graphic.pl_.c:10
+#: ../../share/advertising/04-multimedia.pl_.c:11
msgid ""
-"Mandrake Linux 8.2 lets you push your multimedia computer to its limits! Use "
-"the latest software to play music and audio files, edit and organize your "
-"images and photos, watch TV and videos, and much more"
+"Mandrake Linux 9.0 enables you to use the very latest software to play audio "
+"files, edit and handle your images or photos, and play videos"
msgstr ""
-"Mandrake Linux 8.2 reizt Ihren Multimediarechner voll aus! Verwenden Sie die "
+"Mandrake Linux 9.0 reizt Ihren Multimediarechner voll aus! Verwenden Sie die "
"neuste Software, um Audiodateien abzuspielen, Ihre Fotos und Bilder zu "
-"bearbeiten sowie Videos abzuspielen..."
+"bearbeiten sowie Videos abzuspielen ..."
-#: ../../share/advertising/04-develop.pl_.c:9
-msgid "Development"
-msgstr "Entwicklungsplattform"
+#: ../../share/advertising/05-games.pl_.c:9
+msgid "Games"
+msgstr "Spiele"
-#: ../../share/advertising/04-develop.pl_.c:10
+#: ../../share/advertising/05-games.pl_.c:10
msgid ""
-"Mandrake Linux 8.2 is the ultimate development platform. Discover the power "
-"of the GNU gcc compiler as well as the best Open Source development "
-"environments"
+"Mandrake Linux 9.0 provides the best Open Source games - arcade, action, "
+"cards, sports, strategy..."
msgstr ""
-"Mandrake Linux 8.2 ist die ultimative Entwicklungsplattform. Nutzen Sie die "
-"volle Power des GNU C Compilers sowie der besten Open Source "
-"Entwicklungsumgebungen."
+"Mandrake Linux 9.0 bietet die besten Open Source Spiele der Bereiche: "
+"Arcade, Baller, Karten, Sport, Strategie, ..."
-#: ../../share/advertising/05-contcenter.pl_.c:9
-#: ../../standalone/drakbug_.c:69
+#: ../../share/advertising/06-mcc.pl_.c:9 ../../standalone/drakbug_.c:69
msgid "Mandrake Control Center"
msgstr "Mandrake Kontrollzentrum"
-#: ../../share/advertising/05-contcenter.pl_.c:10
+#: ../../share/advertising/06-mcc.pl_.c:10
msgid ""
-"The Mandrake Linux 8.2 Control Center is a one-stop location for fully "
-"customizing and configuring your Mandrake system"
+"Mandrake Linux 9.0 provides a powerful tool to fully customize and configure "
+"your machine"
msgstr ""
-"Das Mandrake Linux 8.2 Kontrollzentrum ist der zentrale Ort, an dem Sie Ihr "
+"Das Mandrake Linux Kontrollzentrum ist der zentrale Ort, an dem Sie Ihr "
"System nach Ihren WĂŒnschen anpassen können."
-#: ../../share/advertising/06-user.pl_.c:9
+#: ../../share/advertising/07-desktop.pl_.c:9
msgid "User interfaces"
msgstr "Arbeitsumgebungen"
-#: ../../share/advertising/06-user.pl_.c:10
+#: ../../share/advertising/07-desktop.pl_.c:10
+msgid ""
+"Mandrake Linux 9.0 provides 11 user interfaces which can be fully modified: "
+"KDE 3, Gnome 2, WindowMaker..."
+msgstr ""
+"Mandrake Linux 9.0 bietet 11 Arbeitsumgebungen, die Sie nach Ihren WĂŒnschen "
+"gestalten können, darunter: KDE 3, Gnome 2 und WindowMaker"
+
+#: ../../share/advertising/08-development.pl_.c:9
+msgid "Development simplified"
+msgstr "Softwareentwicklung leicht gemacht"
+
+#: ../../share/advertising/08-development.pl_.c:10
+msgid "Mandrake Linux 9.0 is the ultimate development platform"
+msgstr "Mandrake Linux 9.0 ist die ultimative Entwicklungsplattform."
+
+#: ../../share/advertising/08-development.pl_.c:11
msgid ""
-"Mandrake Linux 8.2 provides 11 different graphical desktop environments and "
-"window managers to choose from including GNOME 1.4, KDE 2.2.2, Window Maker "
-"0.8, and the rest"
+"Use the full power of the GNU gcc 3 compiler as well as the best Open Source "
+"development environments"
msgstr ""
-"Mandrake Linux 8.2 bietet 11 verschiedene grafische Arbeitsumgebungen und "
-"Windowmanager. Darunter GNOME 1.4, KDE 2.2.2 und Window Maker 0.8"
+"Mandrake Linux 9.0 ist die ultimative Entwicklungsplattform. Nutzen Sie die "
+"volle Power des GNU C Compilers sowie der besten Open Source "
+"Entwicklungsumgebungen."
-#: ../../share/advertising/07-server.pl_.c:9
-msgid "Server Software"
-msgstr "Server Software"
+#: ../../share/advertising/09-server.pl_.c:9
+msgid "Turn your machine into a reliable server"
+msgstr "Verwandeln Sie Ihren Rechner in einen zuverlÀssigen Server."
-#: ../../share/advertising/07-server.pl_.c:10
+#: ../../share/advertising/09-server.pl_.c:10
msgid ""
-"Transform your machine into a powerful server with just a few clicks of the "
-"mouse: Web server, email, firewall, router, file and print server, ..."
+"Transform your machine into a powerful server in a few clicks of your mouse: "
+"Web server, mail, firewall, router, file and print server..."
msgstr ""
"Verwandeln Sie Ihren Rechner mit ein paar Mausklicks in einen "
"leistungsfÀhigen Server: Web, E-Mail, Firewall, Router, Datei- und "
"Druckserver, ..."
-#: ../../share/advertising/08-games.pl_.c:9
-msgid "Games"
-msgstr "Spiele"
+#: ../../share/advertising/10-mnf.pl_.c:9
+msgid "Optimize your security"
+msgstr "Optimieren Sie Ihre Sicherheit"
-#: ../../share/advertising/08-games.pl_.c:10
+#: ../../share/advertising/10-mnf.pl_.c:10
msgid ""
-"Mandrake Linux 8.2 provides the best Open Source games - arcade, action, "
-"cards, sports, strategy, ..."
+"The MandrakeSecurity range includes the Multi Network Firewall product (M.N."
+"F.)"
msgstr ""
-"Mandrake Linux 8.2 bietet die besten Open Source Spiele - Arcade, Baller, "
-"Karten, Sport, Strategie, ..."
+"Die MandrakeSecurity Palette bietet unter Anderem die „Multi Network "
+"Firewall“ (M.N.F.)"
-#: ../../share/advertising/09-MDKcampus.pl_.c:9
-msgid "MandrakeCampus"
-msgstr "MandrakeCampus"
+#: ../../share/advertising/10-mnf.pl_.c:11
+msgid ""
+"This firewall product includes network features which allow you to fulfill "
+"all your security needs"
+msgstr ""
+"Dieses Firewall-Produkt enthÀlt die Netzwerkkomponenten, um all Ihren "
+"SicherheitsansprĂŒchen gerecht werden zu können."
+
+#: ../../share/advertising/10-mnf.pl_.c:12
+msgid "This product is available on MandrakeStore website"
+msgstr "Sie erhalten das Produkt in unserem WebShop: MadrakeStore."
-#: ../../share/advertising/09-MDKcampus.pl_.c:10
+#: ../../share/advertising/11-mdkstore.pl_.c:9
+msgid "The official MandrakeSoft store"
+msgstr ""
+
+#: ../../share/advertising/11-mdkstore.pl_.c:10
msgid ""
-"Would you like to learn Linux simply, quickly, and for free? MandrakeSoft "
-"provides free Linux training, as well as a way to test your progress, at "
-"MandrakeCampus -- our online training center"
+"Our full range of Linux solutions, as well as special offers on products and "
+"'goodies', are available online at our e-store"
msgstr ""
-"Sie wollen GNU/Linux in eine einfache, schnelle und vor Allem freie Weise "
-"erlernen? MandrakeSoft bieten ein freies Linux Training sowie einen Weg "
-"Ihren Fortschirtt mit unserem Online Trainingcenter „MandrakeCampus“ zu "
-"testen."
-#: ../../share/advertising/10-MDKexpert.pl_.c:9
-msgid "MandrakeExpert"
-msgstr "MandrakeExpert"
+#: ../../share/advertising/12-mdkstore.pl_.c:9
+msgid "Strategic partners"
+msgstr ""
-#: ../../share/advertising/10-MDKexpert.pl_.c:10
+#: ../../share/advertising/12-mdkstore.pl_.c:10
msgid ""
-"Quality support from the Linux Community, and from MandrakeSoft, is just "
-"around the corner. And if you're already a Linux veteran, become an \"Expert"
-"\" and share your knowledge at our support website"
+"MandrakeSoft works alongside a selection of companies offering professional "
+"solutions compatible with Mandrake Linux; a list of these partners is "
+"available on the MandrakeStore"
msgstr ""
-"Qualitativ hochwertiger Support aus der GNU/Linux Gemeinde und von "
-"MandrakeSoft ist nur einen Mausklick weit entfernt. Sind Sie bereits ein "
-"„alter Hase“ in Sachen GNU/Linux, werden Sie ein Experte, und teilen Sie Ihr "
-"Wissen mit Anderen auf unserer Support-Seite."
-#: ../../share/advertising/11-consul.pl_.c:9
-msgid "MandrakeConsulting"
-msgstr "MandrakeConsulting"
+#: ../../share/advertising/13-mdkcampus.pl_.c:9
+msgid "Discover MandrakeSoft's training catalogue Linux-Campus"
+msgstr ""
-#: ../../share/advertising/11-consul.pl_.c:10
+#: ../../share/advertising/13-mdkcampus.pl_.c:10
msgid ""
-"For all of your IT projects, our consultants are ready to analyze your "
-"requirements and offer a customized solution. Benefit from MandrakeSoft's "
-"vast experience as a Linux producer to provide a true IT alternative for "
-"your business organization"
+"The training program has been create to respond to the needs of both users "
+"and experts (Network and System administrations)"
msgstr ""
-"Unsere Consultants sind bereit, Ihnen fĂŒr alle Ihre IT-Projekte individuelle "
-"Lösungen anzubieten, die genau Ihren BedĂŒrfnissen entsprechen. MandrakeSoft "
-"als erfahrener Linux-Distributor bietet eine echte IT-Alternative fĂŒr Ihr "
-"Unternehmen."
-#: ../../share/advertising/12-MDKstore.pl_.c:9
-msgid "MandrakeStore"
-msgstr "MandrakeStore"
+#: ../../share/advertising/13-mdkcampus.pl_.c:11
+msgid "Certify yourself on Linux"
+msgstr ""
-#: ../../share/advertising/12-MDKstore.pl_.c:10
+#: ../../share/advertising/13-mdkcampus.pl_.c:12
msgid ""
-"A full range of Linux solutions, as well as special offers on products and "
-"'goodies', are available online at our e-store"
+"Whether you choose to teach yourself online or via our network of training "
+"partners, the Linux-Campus catalogue prepares you for the acknowledged LPI "
+"certification program (worldwide professional technical certification)"
+msgstr ""
+
+#: ../../share/advertising/14-mdkexpert.pl_.c:9
+msgid "Become a MandrakeExpert"
+msgstr ""
+
+#: ../../share/advertising/14-mdkexpert.pl_.c:10
+msgid ""
+"Find the solutions to your problems via MandrakeSoft's online support "
+"platform"
msgstr ""
-"Unsere Linux Komplettlösungen, Sonderangebote und Mandrake Fan-Artikel "
-"bekommen Sie in unserem E-Shop"
-#: ../../share/advertising/13-Nvert.pl_.c:9
+#: ../../share/advertising/14-mdkexpert.pl_.c:11
msgid ""
-"For more information on MandrakeSoft's Professional Services and commercial "
-"offerings, please see the following web page:"
+"Join the MandrakeSoft support teams and the Linux Community online to share "
+"your knowledge and help others by becoming a recognized Expert on the online "
+"technical support website:"
msgstr ""
-"Weitere Informationen ĂŒber MandrakeSofts professionelle Dienstleistungs- und "
-"gewerbliche Angebote erhalten Sie unter:"
-#: ../../share/advertising/13-Nvert.pl_.c:11
-msgid "http://www.mandrakesoft.com/sales/contact"
-msgstr "http://www.mandrakesoft.com/sales/contact/"
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:9
+#, fuzzy
+msgid "MandrakeExpert Corporate"
+msgstr "Mandrake Kontrollzentrum"
+
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:10
+msgid "An online platform to respond to company's specific support needs"
+msgstr ""
-#: ../../standalone.pm_.c:40
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:11
+msgid ""
+"All incidents will be followed up by a single qualified MandrakeSoft "
+"technical expert."
+msgstr ""
+
+#: ../../standalone.pm_.c:41
msgid "Installing packages..."
msgstr "Pakete Installieren ..."
-#: ../../standalone/XFdrake_.c:143
+#: ../../standalone/XFdrake_.c:145
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "Bitte loggen Sie sich aus, und drĂŒcken Sie Ctrl-Alt-RĂŒcktaste"
-#: ../../standalone/XFdrake_.c:147
+#: ../../standalone/XFdrake_.c:149
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr ""
"Bitte loggen Sie sich erneut in %s ein, \n"
"um die Änderungen wirksam werden zu lassen."
-#: ../../standalone/diskdrake_.c:81
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I'll try to go on blanking bad partitions"
-msgstr ""
-"Ich kann Ihre Partitionstabelle nicht lesen, sie ist fehlerhaft :-(\n"
-"Um fortfahren zu können setze ich die fehlerhaften Partitionen zurĂŒck"
-
#: ../../standalone/drakTermServ_.c:188
#, fuzzy
msgid "Mandrake Terminal Server Configuration"
msgstr "Drucker-Einstellung transferieren"
#: ../../standalone/drakTermServ_.c:203
-#, fuzzy
msgid "Enable Server"
-msgstr "Datenbankserver"
+msgstr "Server aktivieren"
#: ../../standalone/drakTermServ_.c:210
-#, fuzzy
msgid "Disable Server"
-msgstr "Datenbankserver"
+msgstr "Server deaktivieren"
#: ../../standalone/drakTermServ_.c:218
-#, fuzzy
msgid "Start Server"
-msgstr "NIS Server"
+msgstr "Server starten"
#: ../../standalone/drakTermServ_.c:225
-#, fuzzy
msgid "Stop Server"
-msgstr "NIS Server"
+msgstr "Server stoppen"
#: ../../standalone/drakTermServ_.c:233
msgid "Etherboot Floppy/ISO"
@@ -10319,34 +10758,35 @@ msgstr "Benutzer hinzufĂŒgen"
msgid "Add/Del Clients"
msgstr "DHCP-Klient"
-#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3282
-#: ../../standalone/drakbackup_.c:3315 ../../standalone/drakbackup_.c:3341
-#: ../../standalone/drakbackup_.c:3368 ../../standalone/drakbackup_.c:3395
-#: ../../standalone/drakbackup_.c:3434 ../../standalone/drakbackup_.c:3455
-#: ../../standalone/drakbackup_.c:3482 ../../standalone/drakbackup_.c:3508
-#: ../../standalone/drakbackup_.c:3533 ../../standalone/drakfont_.c:700
+#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3930
+#: ../../standalone/drakbackup_.c:3963 ../../standalone/drakbackup_.c:3989
+#: ../../standalone/drakbackup_.c:4016 ../../standalone/drakbackup_.c:4043
+#: ../../standalone/drakbackup_.c:4082 ../../standalone/drakbackup_.c:4103
+#: ../../standalone/drakbackup_.c:4130 ../../standalone/drakbackup_.c:4160
+#: ../../standalone/drakbackup_.c:4186 ../../standalone/drakbackup_.c:4211
+#: ../../standalone/drakfont_.c:700
msgid "Help"
msgstr "Hilfe"
#: ../../standalone/drakTermServ_.c:436
msgid "Boot Floppy"
-msgstr ""
+msgstr "Bootdiskette"
#: ../../standalone/drakTermServ_.c:438
msgid "Boot ISO"
-msgstr ""
+msgstr "Boot ISO"
#: ../../standalone/drakTermServ_.c:507
msgid "Build Whole Kernel -->"
-msgstr ""
+msgstr "Ganzen Kern erstellen -->"
#: ../../standalone/drakTermServ_.c:509 ../../standalone/drakTermServ_.c:539
msgid "This will take a few minutes."
-msgstr ""
+msgstr "Das dauert einige Minuten"
#: ../../standalone/drakTermServ_.c:521
msgid "No kernel selected!"
-msgstr ""
+msgstr "Kein Kern ausgewÀhlt!"
#: ../../standalone/drakTermServ_.c:524
msgid "Build Single NIC -->"
@@ -10359,12 +10799,11 @@ msgstr "Nicht Verbunden"
#: ../../standalone/drakTermServ_.c:538
msgid "Build All Kernels -->"
-msgstr ""
+msgstr "Alle Kerne erstellen -->"
#: ../../standalone/drakTermServ_.c:552
-#, fuzzy
msgid "<-- Delete"
-msgstr "Löschen"
+msgstr "<-- Löschen"
#: ../../standalone/drakTermServ_.c:559
#, fuzzy
@@ -10372,45 +10811,40 @@ msgid "Delete All NBIs"
msgstr "Alle auswÀhlen"
#: ../../standalone/drakTermServ_.c:621
-#, fuzzy
msgid "Add User -->"
-msgstr "Benutzer hinzufĂŒgen"
+msgstr "Benutzer hinzufĂŒgen -->"
#: ../../standalone/drakTermServ_.c:629
msgid "<-- Del User"
-msgstr ""
+msgstr "<-- Benutzer löschen"
#: ../../standalone/drakTermServ_.c:703
msgid "Add Client -->"
-msgstr ""
+msgstr "Klient hinzufĂŒgen -->"
#: ../../standalone/drakTermServ_.c:735
-#, fuzzy
msgid "<-- Del Client"
-msgstr "DHCP-Klient"
+msgstr "<-- Klient löschen"
#: ../../standalone/drakTermServ_.c:741
-#, fuzzy
msgid "dhcpd Config..."
-msgstr "Konfigurieren ..."
+msgstr "DHCP Konfigurieren ..."
#: ../../standalone/drakTermServ_.c:888
-#, fuzzy
msgid "Write Config"
-msgstr "neu konfigurieren"
+msgstr "Konfiguration speichern"
#: ../../standalone/drakTermServ_.c:946
-#, fuzzy
msgid "Please insert floppy disk:"
-msgstr "Bitte legen Sie die Startdiskette in Laufwerk %s ein."
+msgstr "Bitte legen Sie eine Diskette ein:"
#: ../../standalone/drakTermServ_.c:950
msgid "Couldn't access the floppy!"
-msgstr ""
+msgstr "Kein Diskettenzugriff möglich!"
#: ../../standalone/drakTermServ_.c:952
msgid "Floppy can be removed now"
-msgstr ""
+msgstr "Sie können die Diskette nun entfernen"
#: ../../standalone/drakTermServ_.c:955
#, fuzzy
@@ -10424,11 +10858,11 @@ msgstr ""
#: ../../standalone/drakTermServ_.c:966
msgid "Something went wrong! - Is mkisofs installed?"
-msgstr ""
+msgstr "Es trat ein Fehler auf! Ist „mkisofs“ installiert?"
#: ../../standalone/drakTermServ_.c:985
msgid "Need to create /etc/dhcpd.conf first!"
-msgstr ""
+msgstr "„/etc/dhcpd.conf“ muss erst angelegt werden!"
#: ../../standalone/drakautoinst_.c:43
msgid "Error!"
@@ -10482,7 +10916,6 @@ msgstr ""
"vorgenommen werden soll, oder ob Sie ihn manuell durchfĂŒhren wollen."
#: ../../standalone/drakautoinst_.c:81 ../../standalone/drakautoinst_.c:82
-#, fuzzy
msgid "Creating auto install floppy"
msgstr "Erstellen einer Auto-Installationsdiskette"
@@ -10498,8 +10931,8 @@ msgstr ""
"\n"
"Die Parameter der Autoinstallation sind in den Abschnitten rechts verfĂŒgbar."
-#: ../../standalone/drakautoinst_.c:239 ../../standalone/drakgw_.c:548
-#: ../../standalone/scannerdrake_.c:105
+#: ../../standalone/drakautoinst_.c:239 ../../standalone/drakgw_.c:484
+#: ../../standalone/scannerdrake_.c:119
msgid "Congratulations!"
msgstr "Gratuliere!"
@@ -10523,20 +10956,23 @@ msgstr "Eintrag hinzufĂŒgen"
msgid "Remove the last item"
msgstr "Letzten Eintrag entfernen?"
-#: ../../standalone/drakbackup_.c:625
+#: ../../standalone/drakbackup_.c:619
msgid "Cron not available yet as non-root"
msgstr ""
-#: ../../standalone/drakbackup_.c:731
+#: ../../standalone/drakbackup_.c:725
msgid "WARNING"
msgstr ""
-#: ../../standalone/drakbackup_.c:732
-#, fuzzy
+#: ../../standalone/drakbackup_.c:726
msgid "FATAL"
-msgstr "FAT"
+msgstr "FATAL"
-#: ../../standalone/drakbackup_.c:744
+#: ../../standalone/drakbackup_.c:727
+msgid "INFO"
+msgstr "INFO"
+
+#: ../../standalone/drakbackup_.c:739
msgid ""
"\n"
" DrakBackup Report \n"
@@ -10546,7 +10982,7 @@ msgstr ""
" DrakBackup Report \n"
"\n"
-#: ../../standalone/drakbackup_.c:745
+#: ../../standalone/drakbackup_.c:740
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -10557,7 +10993,7 @@ msgstr ""
" DrakBackup DĂ€mon Report\n"
"\n"
-#: ../../standalone/drakbackup_.c:749
+#: ../../standalone/drakbackup_.c:744
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -10568,13 +11004,20 @@ msgstr ""
" DrakBackup Report Details\n"
"\n"
-#: ../../standalone/drakbackup_.c:770 ../../standalone/drakbackup_.c:840
-#: ../../standalone/drakbackup_.c:894
+#: ../../standalone/drakbackup_.c:765 ../../standalone/drakbackup_.c:835
+#: ../../standalone/drakbackup_.c:889
#, fuzzy
msgid "Total progess"
msgstr "Vortschritt"
-#: ../../standalone/drakbackup_.c:822
+#: ../../standalone/drakbackup_.c:788
+msgid ""
+"Sorry, perl-Expect is not installed/enabled. To use\n"
+"this feature, install perl-Expect and comment lines 772-774,\n"
+" as well as 788,789. Then uncomment line 787."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:817
#, c-format
msgid ""
"%s exists, delete?\n"
@@ -10583,16 +11026,41 @@ msgid ""
" need to purge the entry from authorized_keys on the server."
msgstr ""
-#: ../../standalone/drakbackup_.c:831
+#: ../../standalone/drakbackup_.c:826
msgid "This may take a moment to generate the keys."
msgstr ""
-#: ../../standalone/drakbackup_.c:838
+#: ../../standalone/drakbackup_.c:833
#, c-format
msgid "ERROR: Cannot spawn %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:865
+#: ../../standalone/drakbackup_.c:850
+#, c-format
+msgid "No password prompt on %s at port %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:851
+#, fuzzy, c-format
+msgid "Bad password on %s"
+msgstr "Kein Passwort"
+
+#: ../../standalone/drakbackup_.c:852
+#, c-format
+msgid "Permission denied transferring %s to %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:853
+#, c-format
+msgid "Can't find %s on %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:856
+#, c-format
+msgid "%s not responding"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:860
#, c-format
msgid ""
"Transfer successful\n"
@@ -10603,60 +11071,65 @@ msgid ""
"without being prompted for a password."
msgstr ""
-#: ../../standalone/drakbackup_.c:908
+#: ../../standalone/drakbackup_.c:903
msgid "WebDAV remote site already in sync!"
msgstr ""
-#: ../../standalone/drakbackup_.c:912
+#: ../../standalone/drakbackup_.c:907
msgid "WebDAV transfer failed!"
msgstr ""
-#: ../../standalone/drakbackup_.c:934
+#: ../../standalone/drakbackup_.c:928
msgid "No CDR/DVDR in drive!"
msgstr ""
-#: ../../standalone/drakbackup_.c:938
+#: ../../standalone/drakbackup_.c:932
msgid "Does not appear to be recordable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:942
+#: ../../standalone/drakbackup_.c:936
msgid "Not erasable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:981
+#: ../../standalone/drakbackup_.c:975
msgid "This may take a moment to erase the media."
msgstr ""
-#: ../../standalone/drakbackup_.c:1045
+#: ../../standalone/drakbackup_.c:1060
msgid "Permission problem accessing CD."
msgstr ""
-#: ../../standalone/drakbackup_.c:1144 ../../standalone/drakbackup_.c:1193
+#: ../../standalone/drakbackup_.c:1087
+#, c-format
+msgid "No tape in %s!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1199 ../../standalone/drakbackup_.c:1248
msgid "Backup system files..."
msgstr "Systemdateien sichern ..."
-#: ../../standalone/drakbackup_.c:1194 ../../standalone/drakbackup_.c:1261
+#: ../../standalone/drakbackup_.c:1249 ../../standalone/drakbackup_.c:1316
msgid "Hard Disk Backup files..."
msgstr "Backup-Dateien auf der Festplatte ..."
-#: ../../standalone/drakbackup_.c:1206
+#: ../../standalone/drakbackup_.c:1261
msgid "Backup User files..."
msgstr "Benutzerdateien sichern ..."
-#: ../../standalone/drakbackup_.c:1207
+#: ../../standalone/drakbackup_.c:1262
msgid "Hard Disk Backup Progress..."
msgstr "Festplattenbackup in Bearbeitung ..."
-#: ../../standalone/drakbackup_.c:1260
+#: ../../standalone/drakbackup_.c:1315
msgid "Backup Other files..."
msgstr "Andere Dateien sichern ..."
-#: ../../standalone/drakbackup_.c:1266
+#: ../../standalone/drakbackup_.c:1321
#, fuzzy
msgid "No changes to backup!"
msgstr "Auf Bandlaufwerk sichern"
-#: ../../standalone/drakbackup_.c:1282 ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1337 ../../standalone/drakbackup_.c:1360
#, c-format
msgid ""
"\n"
@@ -10664,16 +11137,16 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1289
+#: ../../standalone/drakbackup_.c:1344
#, fuzzy, c-format
msgid ""
-"file list sent by FTP : %s\n"
+"file list sent by FTP: %s\n"
" "
msgstr ""
"Dateiliste per FTP senden: %s\n"
" "
-#: ../../standalone/drakbackup_.c:1292
+#: ../../standalone/drakbackup_.c:1347
#, fuzzy
msgid ""
"\n"
@@ -10684,41 +11157,41 @@ msgstr ""
"(!) FTP Verbindungsprobleme: Es war nicht möglich, Ihre Dateien per FTP zu "
"ĂŒbertragen.\n"
-#: ../../standalone/drakbackup_.c:1310
+#: ../../standalone/drakbackup_.c:1365
msgid ""
"\n"
"Drakbackup activities via CD:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1315
+#: ../../standalone/drakbackup_.c:1370
msgid ""
"\n"
"Drakbackup activities via tape:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1324
+#: ../../standalone/drakbackup_.c:1379
#, fuzzy
msgid " Error during mail sending. \n"
msgstr "(!) Fehler beim Verschicken der Mail. \n"
-#: ../../standalone/drakbackup_.c:1346
+#: ../../standalone/drakbackup_.c:1404
msgid "Can't create catalog!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1459 ../../standalone/drakbackup_.c:1470
-#: ../../standalone/drakbackup_.c:1481 ../../standalone/drakfont_.c:1004
+#: ../../standalone/drakbackup_.c:1517 ../../standalone/drakbackup_.c:1528
+#: ../../standalone/drakfont_.c:1004
msgid "File Selection"
msgstr "Dateiauswahl"
-#: ../../standalone/drakbackup_.c:1486
+#: ../../standalone/drakbackup_.c:1556
msgid "Select the files or directories and click on 'Add'"
msgstr ""
"WÀhlen Sie die Dateien oder Verzeichnisse und betÀtigen Sie die SchaltflÀche "
"„HinzufĂŒgen“"
-#: ../../standalone/drakbackup_.c:1525
+#: ../../standalone/drakbackup_.c:1600
msgid ""
"\n"
"Please check all options that you need.\n"
@@ -10726,27 +11199,27 @@ msgstr ""
"\n"
"Bitte wÀhlen Sie alle benötigten Parameter.\n"
-#: ../../standalone/drakbackup_.c:1526
+#: ../../standalone/drakbackup_.c:1601
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
"Diese Optionen kön alle Ihre Dateien im Verzeichnis „/etc“ sichern und "
"wiederherstellen\n"
-#: ../../standalone/drakbackup_.c:1527
+#: ../../standalone/drakbackup_.c:1602
#, fuzzy
msgid "Backup your System files. (/etc directory)"
msgstr "Sichern Ihrer Systemdateien (Verzeicnis „/etc“)"
-#: ../../standalone/drakbackup_.c:1528
+#: ../../standalone/drakbackup_.c:1603
msgid "Use incremental backup (do not replace old backups)"
msgstr "Inkrementelles Backup (alte Backups nicht ĂŒberschreiben)"
-#: ../../standalone/drakbackup_.c:1529
+#: ../../standalone/drakbackup_.c:1604
msgid "Do not include critical files (passwd, group, fstab)"
msgstr "Keine kritischen Dateien (passwd, group, fstab)"
-#: ../../standalone/drakbackup_.c:1530
+#: ../../standalone/drakbackup_.c:1605
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
@@ -10754,62 +11227,66 @@ msgstr ""
"Mit dieser Option sind Sie in der Lage, jede Version Ihres \n"
"„/etc“ Verzeichnisses wiederherzustellen."
-#: ../../standalone/drakbackup_.c:1547
+#: ../../standalone/drakbackup_.c:1622
msgid "Please check all users that you want to include in your backup."
msgstr ""
"Bitte wÀhlen Sie alle Kennzeichen, deren Dateinen mitgesichert werden sollen."
-#: ../../standalone/drakbackup_.c:1574
+#: ../../standalone/drakbackup_.c:1649
msgid "Do not include the browser cache"
msgstr "Die Browser-Caches nicht archivieren."
-#: ../../standalone/drakbackup_.c:1575 ../../standalone/drakbackup_.c:1599
+#: ../../standalone/drakbackup_.c:1650 ../../standalone/drakbackup_.c:1674
msgid "Use Incremental Backups (do not replace old backups)"
msgstr "Inkrementelle Archivierung (alte Archive nicht ersetzen)"
-#: ../../standalone/drakbackup_.c:1597 ../../standalone/drakfont_.c:1058
+#: ../../standalone/drakbackup_.c:1672 ../../standalone/drakfont_.c:1058
msgid "Remove Selected"
msgstr "Markierte entfernen"
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:1710
msgid "Windows (FAT32)"
msgstr "Windows (FAT32)"
-#: ../../standalone/drakbackup_.c:1674
+#: ../../standalone/drakbackup_.c:1749
msgid "Users"
msgstr "Benutzer"
-#: ../../standalone/drakbackup_.c:1700
+#: ../../standalone/drakbackup_.c:1775
#, fuzzy
msgid "Use network connection to backup"
msgstr "FTP-Verbindung zum erstellen der Sicherungskopien verwenden"
-#: ../../standalone/drakbackup_.c:1706
+#: ../../standalone/drakbackup_.c:1777
+msgid "Net Method:"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1781
msgid "Use Expect for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1707
+#: ../../standalone/drakbackup_.c:1782
msgid ""
"Create/Transfer\n"
"backup keys for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1708
+#: ../../standalone/drakbackup_.c:1783
#, fuzzy
msgid ""
" Transfer \n"
"Now"
msgstr "Übertragen"
-#: ../../standalone/drakbackup_.c:1709
+#: ../../standalone/drakbackup_.c:1784
msgid "Keys in place already"
msgstr ""
-#: ../../standalone/drakbackup_.c:1713
+#: ../../standalone/drakbackup_.c:1788
msgid "Please enter the host name or IP."
msgstr "Rechnernamen oder IP eingeben."
-#: ../../standalone/drakbackup_.c:1718
+#: ../../standalone/drakbackup_.c:1793
#, fuzzy
msgid ""
"Please enter the directory (or module) to\n"
@@ -10818,69 +11295,69 @@ msgstr ""
"Bitte geben Sie das Verzeichnis an,\n"
" in dem die Archive erstellt werden sollen."
-#: ../../standalone/drakbackup_.c:1723
+#: ../../standalone/drakbackup_.c:1798
msgid "Please enter your login"
msgstr "Bitte geben Sie Ihr Benutzerkennzeichen ein"
-#: ../../standalone/drakbackup_.c:1728
+#: ../../standalone/drakbackup_.c:1803
msgid "Please enter your password"
msgstr "Bitte geben Sie Ihr Passwort ein"
-#: ../../standalone/drakbackup_.c:1734
+#: ../../standalone/drakbackup_.c:1809
msgid "Remember this password"
msgstr "Passwort behalten"
-#: ../../standalone/drakbackup_.c:1745
+#: ../../standalone/drakbackup_.c:1820
#, fuzzy
msgid "Need hostname, username and password!"
msgstr "Ich mich unter „%s“ micht anmelden! Stimmt das Passwort?"
-#: ../../standalone/drakbackup_.c:1841
+#: ../../standalone/drakbackup_.c:1915
msgid "Use CD/DVDROM to backup"
msgstr "Sicherungskopie auf CD/DVDROM"
-#: ../../standalone/drakbackup_.c:1844
+#: ../../standalone/drakbackup_.c:1918
msgid ""
"Please choose your CD/DVD device\n"
"(Press Enter to propogate settings to other fields.\n"
"This field isn't necessary, only a tool to fill in the form.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1849
+#: ../../standalone/drakbackup_.c:1923
#, fuzzy
msgid "Please choose your CD/DVD media size"
msgstr "Bitte wÀhlen Sie Ihren CD-Paltz"
-#: ../../standalone/drakbackup_.c:1855
+#: ../../standalone/drakbackup_.c:1929
#, fuzzy
msgid "Please check for multisession CD"
msgstr "Kontrollieren Sie, ob Sie ein CDRW-Medium verwenden."
-#: ../../standalone/drakbackup_.c:1861
+#: ../../standalone/drakbackup_.c:1935
msgid "Please check if you are using CDRW media"
msgstr "Kontrollieren Sie, ob Sie ein CDRW-Medium verwenden."
-#: ../../standalone/drakbackup_.c:1867
+#: ../../standalone/drakbackup_.c:1941
#, fuzzy
msgid "Please check if you want to erase your RW media (1st Session)"
msgstr "Kontrollieren Sie, ob Sie die CDRW vorher löschen wollen."
-#: ../../standalone/drakbackup_.c:1868
+#: ../../standalone/drakbackup_.c:1942
#, fuzzy
msgid " Erase Now "
msgstr "Übertragen"
-#: ../../standalone/drakbackup_.c:1874
+#: ../../standalone/drakbackup_.c:1948
#, fuzzy
msgid "Please check if you are using a DVDR device"
msgstr "Kontrollieren Sie, ob Sie ein CDRW-Medium verwenden."
-#: ../../standalone/drakbackup_.c:1880
+#: ../../standalone/drakbackup_.c:1954
#, fuzzy
msgid "Please check if you are using a DVDRAM device"
msgstr "Kontrollieren Sie, ob Sie ein CDRW-Medium verwenden."
-#: ../../standalone/drakbackup_.c:1893
+#: ../../standalone/drakbackup_.c:1967
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
@@ -10888,36 +11365,36 @@ msgstr ""
"Bitte geben Sie den GerÀtenamen \n"
"Ihres Brenners an, etwa „0,1,0“."
-#: ../../standalone/drakbackup_.c:1926
+#: ../../standalone/drakbackup_.c:2000
#, fuzzy
msgid "No CD device defined!"
msgstr "Datei auswÀhlen"
-#: ../../standalone/drakbackup_.c:1974
+#: ../../standalone/drakbackup_.c:2048
msgid "Use tape to backup"
msgstr "Auf Bandlaufwerk sichern"
-#: ../../standalone/drakbackup_.c:1977
+#: ../../standalone/drakbackup_.c:2051
msgid "Please enter the device name to use for backup"
msgstr "Bitte geben Sie den GerĂ€tenamen fĂŒ Archivierung an."
-#: ../../standalone/drakbackup_.c:1983
+#: ../../standalone/drakbackup_.c:2057
#, fuzzy
msgid "Please check if you want to use the non-rewinding device."
msgstr "Kontrollieren Sie, ob Sie die CDRW vorher löschen wollen."
-#: ../../standalone/drakbackup_.c:1989
+#: ../../standalone/drakbackup_.c:2063
#, fuzzy
msgid "Please check if you want to erase your tape before the backup."
msgstr "Kontrollieren Sie, ob Sie die CDRW vorher löschen wollen."
-#: ../../standalone/drakbackup_.c:1995
+#: ../../standalone/drakbackup_.c:2069
#, fuzzy
msgid "Please check if you want to eject your tape after the backup."
msgstr "Kontrollieren Sie, ob Sie die CDRW vorher löschen wollen."
-#: ../../standalone/drakbackup_.c:2001 ../../standalone/drakbackup_.c:2074
-#: ../../standalone/drakbackup_.c:3025
+#: ../../standalone/drakbackup_.c:2075 ../../standalone/drakbackup_.c:2149
+#: ../../standalone/drakbackup_.c:3116
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
@@ -10925,57 +11402,57 @@ msgstr ""
"Bitte geben Sie die MaximalgrĂ¶ĂŸe \n"
"fĂŒr DrakBackup an."
-#: ../../standalone/drakbackup_.c:2066
+#: ../../standalone/drakbackup_.c:2140
#, fuzzy
msgid "Please enter the directory to save to:"
msgstr "Bitte geben Sie das Archivverzeichnis an:"
-#: ../../standalone/drakbackup_.c:2080 ../../standalone/drakbackup_.c:3031
+#: ../../standalone/drakbackup_.c:2155 ../../standalone/drakbackup_.c:3122
msgid "Use quota for backup files."
msgstr "Quota fĂŒr Backup-Datei verwenden."
-#: ../../standalone/drakbackup_.c:2146
+#: ../../standalone/drakbackup_.c:2221
msgid "Network"
msgstr "Netzwerk"
-#: ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:2226
msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2156
+#: ../../standalone/drakbackup_.c:2231
msgid "HardDrive / NFS"
msgstr "Festplatte/NFS"
-#: ../../standalone/drakbackup_.c:2161
+#: ../../standalone/drakbackup_.c:2236
#, fuzzy
msgid "Tape"
msgstr "Typ"
-#: ../../standalone/drakbackup_.c:2175 ../../standalone/drakbackup_.c:2179
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2250 ../../standalone/drakbackup_.c:2254
+#: ../../standalone/drakbackup_.c:2258
msgid "hourly"
msgstr "stĂŒndlich"
-#: ../../standalone/drakbackup_.c:2176 ../../standalone/drakbackup_.c:2180
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2251 ../../standalone/drakbackup_.c:2255
+#: ../../standalone/drakbackup_.c:2258
msgid "daily"
msgstr "tÀglich"
-#: ../../standalone/drakbackup_.c:2177 ../../standalone/drakbackup_.c:2181
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2252 ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2258
msgid "weekly"
msgstr "wöchendlich"
-#: ../../standalone/drakbackup_.c:2178 ../../standalone/drakbackup_.c:2182
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2253 ../../standalone/drakbackup_.c:2257
+#: ../../standalone/drakbackup_.c:2258
msgid "monthly"
msgstr "monatlich"
-#: ../../standalone/drakbackup_.c:2196
+#: ../../standalone/drakbackup_.c:2271
msgid "Use daemon"
msgstr "DĂ€mon verwenden"
-#: ../../standalone/drakbackup_.c:2201
+#: ../../standalone/drakbackup_.c:2276
msgid ""
"Please choose the time \n"
"interval between each backup"
@@ -10983,7 +11460,7 @@ msgstr ""
"Bitte wÀhlen Sie das Zeitintervall \n"
"zwischen zwei Sicherungen."
-#: ../../standalone/drakbackup_.c:2207
+#: ../../standalone/drakbackup_.c:2282
msgid ""
"Please choose the\n"
"media for backup."
@@ -10991,7 +11468,7 @@ msgstr ""
"Bitte wÀhlen Sie ein\n"
"Sicherungsmedium."
-#: ../../standalone/drakbackup_.c:2214
+#: ../../standalone/drakbackup_.c:2289
#, fuzzy
msgid ""
"Please be sure that the cron daemon is included in your services. \n"
@@ -10999,71 +11476,71 @@ msgid ""
"Note that currently all 'net' medias also use the hard drive."
msgstr "Stellen Sie sicher, dass der Cron-DĂ€mon als Dienst aktiviert ist."
-#: ../../standalone/drakbackup_.c:2251
-msgid "Send mail report after each backup to :"
+#: ../../standalone/drakbackup_.c:2326
+msgid "Send mail report after each backup to:"
msgstr "E-Mail Bericht nach jedem Sicherungsvorgang an: "
-#: ../../standalone/drakbackup_.c:2257
+#: ../../standalone/drakbackup_.c:2332
msgid "Delete Hard Drive tar files after backup to other media."
msgstr ""
-#: ../../standalone/drakbackup_.c:2296
+#: ../../standalone/drakbackup_.c:2371
msgid "What"
msgstr "Was"
-#: ../../standalone/drakbackup_.c:2301
+#: ../../standalone/drakbackup_.c:2376
msgid "Where"
msgstr "Wo"
-#: ../../standalone/drakbackup_.c:2306
+#: ../../standalone/drakbackup_.c:2381
msgid "When"
msgstr "Wann"
-#: ../../standalone/drakbackup_.c:2311
+#: ../../standalone/drakbackup_.c:2386
msgid "More Options"
msgstr "Mehr Parameter"
-#: ../../standalone/drakbackup_.c:2330 ../../standalone/drakbackup_.c:3873
+#: ../../standalone/drakbackup_.c:2405 ../../standalone/drakbackup_.c:4530
msgid "Drakbackup Configuration"
msgstr "DrakBackup Konfiguration"
-#: ../../standalone/drakbackup_.c:2348
+#: ../../standalone/drakbackup_.c:2423
msgid "Please choose where you want to backup"
msgstr "Bitte wÀhlen Sie wohin Sie die Sicherungskopien machen wollen."
-#: ../../standalone/drakbackup_.c:2350
+#: ../../standalone/drakbackup_.c:2425
msgid "on Hard Drive"
msgstr "auf Festplatte"
-#: ../../standalone/drakbackup_.c:2360
+#: ../../standalone/drakbackup_.c:2435
msgid "across Network"
msgstr "ĂŒber Netzwerk"
-#: ../../standalone/drakbackup_.c:2370
+#: ../../standalone/drakbackup_.c:2445
msgid "on CDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2378
+#: ../../standalone/drakbackup_.c:2453
msgid "on Tape Device"
msgstr ""
-#: ../../standalone/drakbackup_.c:2421
+#: ../../standalone/drakbackup_.c:2496
msgid "Please choose what you want to backup"
msgstr "Bitte wÀhlen Sie, was Sie sichern wollen"
-#: ../../standalone/drakbackup_.c:2422
+#: ../../standalone/drakbackup_.c:2497
msgid "Backup system"
msgstr "System sichern"
-#: ../../standalone/drakbackup_.c:2423
+#: ../../standalone/drakbackup_.c:2498
msgid "Backup Users"
msgstr "Benutzerkennzeichen sichern"
-#: ../../standalone/drakbackup_.c:2426
+#: ../../standalone/drakbackup_.c:2501
msgid "Select user manually"
msgstr "Benutzerkennzeichen auswÀhlen"
-#: ../../standalone/drakbackup_.c:2508
+#: ../../standalone/drakbackup_.c:2584
msgid ""
"\n"
"Backup Sources: \n"
@@ -11071,7 +11548,7 @@ msgstr ""
"\n"
"Sicherungsquellen: \n"
-#: ../../standalone/drakbackup_.c:2509
+#: ../../standalone/drakbackup_.c:2585
msgid ""
"\n"
"- System Files:\n"
@@ -11079,7 +11556,7 @@ msgstr ""
"\n"
"- Systemdateien:\n"
-#: ../../standalone/drakbackup_.c:2511
+#: ../../standalone/drakbackup_.c:2587
msgid ""
"\n"
"- User Files:\n"
@@ -11087,7 +11564,7 @@ msgstr ""
"\n"
"- Benutzerdateien:\n"
-#: ../../standalone/drakbackup_.c:2513
+#: ../../standalone/drakbackup_.c:2589
msgid ""
"\n"
"- Other Files:\n"
@@ -11095,64 +11572,64 @@ msgstr ""
"\n"
"- Sonstige Dateien:\n"
-#: ../../standalone/drakbackup_.c:2515
+#: ../../standalone/drakbackup_.c:2591
#, c-format
msgid ""
"\n"
-"- Save on Hard drive on path : %s\n"
+"- Save on Hard drive on path: %s\n"
msgstr ""
"\n"
"- Auf Festplatte sichern unter: %s\n"
-#: ../../standalone/drakbackup_.c:2518
+#: ../../standalone/drakbackup_.c:2594
msgid ""
"\n"
"- Delete hard drive tar files after backup.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2524
+#: ../../standalone/drakbackup_.c:2600
msgid ""
"\n"
"- Burn to CD"
msgstr ""
-#: ../../standalone/drakbackup_.c:2525
+#: ../../standalone/drakbackup_.c:2601
msgid "RW"
msgstr ""
-#: ../../standalone/drakbackup_.c:2526
+#: ../../standalone/drakbackup_.c:2602
#, fuzzy, c-format
-msgid " on device : %s"
+msgid " on device: %s"
msgstr "Mausschnittstelle: %s\n"
-#: ../../standalone/drakbackup_.c:2527
+#: ../../standalone/drakbackup_.c:2603
msgid " (multi-session)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2528
+#: ../../standalone/drakbackup_.c:2604
#, fuzzy, c-format
msgid ""
"\n"
-"- Save to Tape on device : %s"
+"- Save to Tape on device: %s"
msgstr ""
"\n"
"- Via FTP sichern auf: %s\n"
-#: ../../standalone/drakbackup_.c:2529
+#: ../../standalone/drakbackup_.c:2605
#, c-format
msgid "\t\tErase=%s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2532
+#: ../../standalone/drakbackup_.c:2608
#, fuzzy, c-format
msgid ""
"\n"
-"- Save via %s on host : %s\n"
+"- Save via %s on host: %s\n"
msgstr ""
"\n"
"- Via FTP sichern auf: %s\n"
-#: ../../standalone/drakbackup_.c:2533
+#: ../../standalone/drakbackup_.c:2609
#, c-format
msgid ""
"\t\t user name: %s\n"
@@ -11161,7 +11638,7 @@ msgstr ""
"\t\t Benutzer: %s\n"
"\t\t Pfad: %s \n"
-#: ../../standalone/drakbackup_.c:2534
+#: ../../standalone/drakbackup_.c:2610
msgid ""
"\n"
"- Options:\n"
@@ -11169,63 +11646,63 @@ msgstr ""
"\n"
"- Optionen:\n"
-#: ../../standalone/drakbackup_.c:2535
+#: ../../standalone/drakbackup_.c:2611
msgid "\tDo not include System Files\n"
msgstr "\tKeine Systemdateien\n"
-#: ../../standalone/drakbackup_.c:2538
+#: ../../standalone/drakbackup_.c:2614
msgid "\tBackups use tar and bzip2\n"
msgstr "\tSicherungen verwenden „tar“ und „bzip2“\n"
-#: ../../standalone/drakbackup_.c:2540
+#: ../../standalone/drakbackup_.c:2616
msgid "\tBackups use tar and gzip\n"
msgstr "\tSicherungen verwenden „tar“ und „gzip“\n"
-#: ../../standalone/drakbackup_.c:2543
+#: ../../standalone/drakbackup_.c:2619
#, c-format
msgid ""
"\n"
-"- Daemon (%s) include :\n"
+"- Daemon (%s) include:\n"
msgstr ""
"\n"
"- DÀmon (%s) enthÀlt:\n"
-#: ../../standalone/drakbackup_.c:2544
+#: ../../standalone/drakbackup_.c:2620
msgid "\t-Hard drive.\n"
msgstr "\t- Festplatte.\n"
-#: ../../standalone/drakbackup_.c:2545
+#: ../../standalone/drakbackup_.c:2621
msgid "\t-CDROM.\n"
msgstr "\t- CD-ROM.\n"
-#: ../../standalone/drakbackup_.c:2546
+#: ../../standalone/drakbackup_.c:2622
msgid "\t-Tape \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2547
+#: ../../standalone/drakbackup_.c:2623
msgid "\t-Network by FTP.\n"
msgstr "\t- Netzwerk per FTP.\n"
-#: ../../standalone/drakbackup_.c:2548
+#: ../../standalone/drakbackup_.c:2624
msgid "\t-Network by SSH.\n"
msgstr "\t- Netzwerk per SSH.\n"
-#: ../../standalone/drakbackup_.c:2549
+#: ../../standalone/drakbackup_.c:2625
#, fuzzy
msgid "\t-Network by rsync.\n"
msgstr "\t- Netzwerk per FTP.\n"
-#: ../../standalone/drakbackup_.c:2550
+#: ../../standalone/drakbackup_.c:2626
#, fuzzy
msgid "\t-Network by webdav.\n"
msgstr "\t- Netzwerk per FTP.\n"
-#: ../../standalone/drakbackup_.c:2552
+#: ../../standalone/drakbackup_.c:2628
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
"Keine Konfiguration. WĂ€hlen Sie dein Assistenten oder Fortgeschritten.\n"
-#: ../../standalone/drakbackup_.c:2558
+#: ../../standalone/drakbackup_.c:2634
msgid ""
"List of data to restore:\n"
"\n"
@@ -11233,7 +11710,7 @@ msgstr ""
"Liste der wiederherzustellenden Daten:\n"
"\n"
-#: ../../standalone/drakbackup_.c:2725
+#: ../../standalone/drakbackup_.c:2801
msgid ""
"List of data corrupted:\n"
"\n"
@@ -11241,160 +11718,278 @@ msgstr ""
"Liste der beschÀdigten Daten:\n"
"\n"
-#: ../../standalone/drakbackup_.c:2727
+#: ../../standalone/drakbackup_.c:2803
msgid "Please uncheck or remove it on next time."
msgstr ""
"Bitte entfernen Sie die Markierung oder löschen Sie sie das nÀchste Mal."
-#: ../../standalone/drakbackup_.c:2737
+#: ../../standalone/drakbackup_.c:2813
msgid "Backup files are corrupted"
msgstr "Die Sicherungen sind beschÀdigt."
-#: ../../standalone/drakbackup_.c:2758
+#: ../../standalone/drakbackup_.c:2834
#, fuzzy
msgid " All of your selected data have been "
msgstr " Alle Ihre gewÀlhten Daten wurden "
-#: ../../standalone/drakbackup_.c:2759
+#: ../../standalone/drakbackup_.c:2835
#, c-format
msgid " Successfuly Restored on %s "
msgstr " erfolgreich auf %s wiederhergestellt "
-#: ../../standalone/drakbackup_.c:2877
+#: ../../standalone/drakbackup_.c:2953
msgid " Restore Configuration "
msgstr " Konfiguration wiederherstellen "
-#: ../../standalone/drakbackup_.c:2895
+#: ../../standalone/drakbackup_.c:2971
msgid "OK to restore the other files."
msgstr "OK, die ĂŒbrigen Dateien zu aktualisieren."
-#: ../../standalone/drakbackup_.c:2912
+#: ../../standalone/drakbackup_.c:2988
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
"Liste wiederherzustellender Kennzeichen (letztes Datum per Kennzeichen ist "
"wichtig)"
-#: ../../standalone/drakbackup_.c:2975
+#: ../../standalone/drakbackup_.c:3066
msgid "Backup the system files before:"
msgstr "Systemdateien sichern vor:"
-#: ../../standalone/drakbackup_.c:2977
+#: ../../standalone/drakbackup_.c:3068
msgid "please choose the date to restore"
msgstr "Bitte wÀhlen Sie, welches Datum wiederhergestellt werden soll."
-#: ../../standalone/drakbackup_.c:3014
+#: ../../standalone/drakbackup_.c:3105
msgid "Use Hard Disk to backup"
msgstr "Auf Festpaltte sichern"
-#: ../../standalone/drakbackup_.c:3017
+#: ../../standalone/drakbackup_.c:3108
msgid "Please enter the directory to save:"
msgstr "Bitte geben Sie das Archivverzeichnis an:"
-#: ../../standalone/drakbackup_.c:3060
+#: ../../standalone/drakbackup_.c:3151
msgid "FTP Connection"
msgstr "FTP Verbindung"
-#: ../../standalone/drakbackup_.c:3067
+#: ../../standalone/drakbackup_.c:3158
msgid "Secure Connection"
msgstr "Sichere Verbindung"
-#: ../../standalone/drakbackup_.c:3093
+#: ../../standalone/drakbackup_.c:3184
msgid "Restore from Hard Disk."
msgstr "Von Festplatte wiederherstellen"
-#: ../../standalone/drakbackup_.c:3095
+#: ../../standalone/drakbackup_.c:3186
msgid "Please enter the directory where backups are stored"
msgstr "Bitte geben Sie das Verzeichnis an, in dem die Sicherungskopien liegen"
-#: ../../standalone/drakbackup_.c:3157
+#: ../../standalone/drakbackup_.c:3254
msgid "Select another media to restore from"
msgstr "WĂ€hlen Sie ein anderes Medium von dem Sie wiederherstellen wollen."
-#: ../../standalone/drakbackup_.c:3159
+#: ../../standalone/drakbackup_.c:3256
msgid "Other Media"
msgstr "Anderes Medium"
-#: ../../standalone/drakbackup_.c:3164
+#: ../../standalone/drakbackup_.c:3261
msgid "Restore system"
msgstr "System wiederherstellen"
-#: ../../standalone/drakbackup_.c:3165
+#: ../../standalone/drakbackup_.c:3262
msgid "Restore Users"
msgstr "Benutzerkennzeichen wiederherstellen"
-#: ../../standalone/drakbackup_.c:3166
+#: ../../standalone/drakbackup_.c:3263
msgid "Restore Other"
msgstr "Sonstiges wiederherstellen"
-#: ../../standalone/drakbackup_.c:3168
+#: ../../standalone/drakbackup_.c:3265
#, fuzzy
msgid "select path to restore (instead of /)"
msgstr "Auswahl des Pfades der wiederhergestellt werden soll (statt „/“"
-#: ../../standalone/drakbackup_.c:3172
+#: ../../standalone/drakbackup_.c:3269
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
"Erstelle Sicherung vor dem Wiederherstellen (nur fĂŒr inkrementelle "
"Sicherungen)."
-#: ../../standalone/drakbackup_.c:3174
+#: ../../standalone/drakbackup_.c:3271
msgid "Remove user directories before restore."
msgstr "Benutzerkennzeichen vor dem Wiederherstellen entfernen."
-#: ../../standalone/drakbackup_.c:3232
+#: ../../standalone/drakbackup_.c:3384
+msgid ""
+"Restore Selected\n"
+"Catalog Entry"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3394
+#, fuzzy
+msgid ""
+"Restore Selected\n"
+"Files"
+msgstr "Markierte entfernen"
+
+#: ../../standalone/drakbackup_.c:3411
+#, fuzzy
+msgid ""
+"Change\n"
+"Restore Path"
+msgstr "Sonstiges wiederherstellen"
+
+#: ../../standalone/drakbackup_.c:3477
+#, fuzzy, c-format
+msgid "Backup files not found at %s."
+msgstr "Anlegen einer Sicherheitskopie von „%s“ unter „%s.old“."
+
+#: ../../standalone/drakbackup_.c:3490
+#, c-format
+msgid ""
+"Insert the CD with volume label %s\n"
+" in the CD drive under mount point /mnt/cdrom"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3490
+#, fuzzy
+msgid "Restore From CD"
+msgstr "Von Festplatte wiederherstellen"
+
+#: ../../standalone/drakbackup_.c:3492
+#, c-format
+msgid "Not the correct CD label. Disk is labelled %s."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3502
+#, c-format
+msgid ""
+"Insert the tape with volume label %s\n"
+" in the tape drive device %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3502
+#, fuzzy
+msgid "Restore From Tape"
+msgstr "Partitionstabelle wiederherstellen"
+
+#: ../../standalone/drakbackup_.c:3504
+#, c-format
+msgid "Not the correct tape label. Tape is labelled %s."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3524
+#, fuzzy
+msgid "Restore Via Network"
+msgstr "Benutzerkennzeichen wiederherstellen"
+
+#: ../../standalone/drakbackup_.c:3524
+#, c-format
+msgid "Restore Via Network Protocol: %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3525
+#, fuzzy
+msgid "Host Name"
+msgstr "Rechnername"
+
+#: ../../standalone/drakbackup_.c:3526
+msgid "Host Path or Module"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3533
+#, fuzzy
+msgid "Password required"
+msgstr "Passwort"
+
+#: ../../standalone/drakbackup_.c:3539
+#, fuzzy
+msgid "Username required"
+msgstr "Benutzerkennzeichen"
+
+#: ../../standalone/drakbackup_.c:3542
+#, fuzzy
+msgid "Hostname required"
+msgstr "Rechnername: "
+
+#: ../../standalone/drakbackup_.c:3547
+msgid "Path or Module required"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3560
+msgid "Files Restored..."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3563
+#, fuzzy
+msgid "Restore Failed..."
+msgstr "Sonstiges wiederherstellen"
+
+#: ../../standalone/drakbackup_.c:3801
msgid "Restore all backups"
msgstr "Alle Sicherungen wiederherstellen"
-#: ../../standalone/drakbackup_.c:3241
+#: ../../standalone/drakbackup_.c:3810
msgid "Custom Restore"
msgstr "BenutzergefĂŒhrte Wiederherstellung"
-#: ../../standalone/drakbackup_.c:3287 ../../standalone/drakbackup_.c:3320
-#: ../../standalone/drakbackup_.c:3346 ../../standalone/drakbackup_.c:3373
-#: ../../standalone/drakbackup_.c:3400 ../../standalone/drakbackup_.c:3460
-#: ../../standalone/drakbackup_.c:3487 ../../standalone/drakbackup_.c:3513
+#: ../../standalone/drakbackup_.c:3856
+msgid "CD in place - continue."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3862
+msgid "Browse to new restore repository."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3865
+#, fuzzy
+msgid "Restore From Catalog"
+msgstr "Partitionstabelle wiederherstellen"
+
+#: ../../standalone/drakbackup_.c:3893
+#, fuzzy
+msgid "Restore Progress"
+msgstr "Benutzerkennzeichen wiederherstellen"
+
+#: ../../standalone/drakbackup_.c:3935 ../../standalone/drakbackup_.c:3968
+#: ../../standalone/drakbackup_.c:3994 ../../standalone/drakbackup_.c:4021
+#: ../../standalone/drakbackup_.c:4048 ../../standalone/drakbackup_.c:4108
+#: ../../standalone/drakbackup_.c:4135 ../../standalone/drakbackup_.c:4165
+#: ../../standalone/drakbackup_.c:4191
msgid "Previous"
msgstr "<- ZurĂŒck"
-#: ../../standalone/drakbackup_.c:3291 ../../standalone/drakbackup_.c:3377
+#: ../../standalone/drakbackup_.c:3939 ../../standalone/drakbackup_.c:4025
#: ../../standalone/logdrake_.c:223
msgid "Save"
msgstr "Speichern"
-#: ../../standalone/drakbackup_.c:3350
+#: ../../standalone/drakbackup_.c:3998
msgid "Build Backup"
msgstr "Sicherung erstellen"
-#: ../../standalone/drakbackup_.c:3404 ../../standalone/drakbackup_.c:3974
+#: ../../standalone/drakbackup_.c:4052 ../../standalone/drakbackup_.c:4632
msgid "Restore"
msgstr "Wiederherstellen"
-#: ../../standalone/drakbackup_.c:3553
-msgid ""
-"Please Build backup before to restore it...\n"
-" or verify that your path to save is correct."
-msgstr ""
-"Bitte erstellen Sie eine Sicherung, bevor Sie wiederherstellen können.\n"
-"oder stellen Sie sicher, dass der Pfad zu den Sicherungen korrekt ist."
-
-#: ../../standalone/drakbackup_.c:3574
+#: ../../standalone/drakbackup_.c:4231
+#, fuzzy
msgid ""
-"Error during sendmail\n"
-" your report mail was not sent\n"
+"Error during sendmail.\n"
+" Your report mail was not sent.\n"
" Please configure sendmail"
msgstr ""
"Sendmail Fehler\n"
" Ihre Bericht-Mail konnte nicht versandt werden.\n"
" Bitte richten Sie Sendmail korrekt ein."
-#: ../../standalone/drakbackup_.c:3598
+#: ../../standalone/drakbackup_.c:4255
#, fuzzy
msgid ""
"The following packages need to be installed:\n"
" @list_of_rpm_to_install"
msgstr "Die folgenden Pakete werden installiert werden"
-#: ../../standalone/drakbackup_.c:3621
+#: ../../standalone/drakbackup_.c:4278
#, fuzzy
msgid ""
"Error during sending file via FTP.\n"
@@ -11403,19 +11998,19 @@ msgstr ""
"Fehler bei der Üertragung via FTP.\n"
"Bitte korrigieren Sie Ihre FTP-Konfiguration."
-#: ../../standalone/drakbackup_.c:3644
+#: ../../standalone/drakbackup_.c:4301
msgid "Please select data to restore..."
msgstr "Bitte wÀhlen Sie die wiederherzustellenden Daten..."
-#: ../../standalone/drakbackup_.c:3665
+#: ../../standalone/drakbackup_.c:4322
msgid "Please select media for backup..."
msgstr "Bitte wÀhlen Sie ein Sicherungsmedium..."
-#: ../../standalone/drakbackup_.c:3687
+#: ../../standalone/drakbackup_.c:4344
msgid "Please select data to backup..."
msgstr "Bitte wÀhlen Sie die zu sichernden Daten..."
-#: ../../standalone/drakbackup_.c:3709
+#: ../../standalone/drakbackup_.c:4366
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
@@ -11423,59 +12018,59 @@ msgstr ""
"Keine Konfigurationsdatei gefunde.\n"
"Bitte wĂ€hlen Sie den „Assistenten“ oder „Erweitert“."
-#: ../../standalone/drakbackup_.c:3730
+#: ../../standalone/drakbackup_.c:4387
msgid "Under Devel ... please wait."
msgstr "In Entwicklung, haben Sie noch etwas Geduld ..."
-#: ../../standalone/drakbackup_.c:3811
+#: ../../standalone/drakbackup_.c:4468
msgid "Backup system files"
msgstr "Systemdateien sichern"
-#: ../../standalone/drakbackup_.c:3813
+#: ../../standalone/drakbackup_.c:4470
msgid "Backup user files"
msgstr "Benutzerdateien sichern"
-#: ../../standalone/drakbackup_.c:3815
+#: ../../standalone/drakbackup_.c:4472
msgid "Backup other files"
msgstr "Andere Dateien sichern"
-#: ../../standalone/drakbackup_.c:3817 ../../standalone/drakbackup_.c:3850
+#: ../../standalone/drakbackup_.c:4474 ../../standalone/drakbackup_.c:4507
msgid "Total Progress"
msgstr "Fortschritt"
-#: ../../standalone/drakbackup_.c:3841
+#: ../../standalone/drakbackup_.c:4498
msgid "files sending by FTP"
msgstr "DatenĂŒagung via FTP"
-#: ../../standalone/drakbackup_.c:3845
+#: ../../standalone/drakbackup_.c:4502
msgid "Sending files..."
msgstr "Dateien ĂŒbertragen ..."
-#: ../../standalone/drakbackup_.c:3931
+#: ../../standalone/drakbackup_.c:4588
msgid "Backup Now from configuration file"
msgstr "Jetzt Sicherung anhand der Konfigurationsdatei erstellen."
-#: ../../standalone/drakbackup_.c:3936
+#: ../../standalone/drakbackup_.c:4593
msgid "View Backup Configuration."
msgstr "Sicherungskonfiguration anzeiegen"
-#: ../../standalone/drakbackup_.c:3956
+#: ../../standalone/drakbackup_.c:4614
msgid "Wizard Configuration"
msgstr "AssistentengestĂŒtzte Konfiguration"
-#: ../../standalone/drakbackup_.c:3961
+#: ../../standalone/drakbackup_.c:4619
msgid "Advanced Configuration"
msgstr "Expertenkonfiguration"
-#: ../../standalone/drakbackup_.c:3966
+#: ../../standalone/drakbackup_.c:4624
msgid "Backup Now"
msgstr "Jetzt sichern"
-#: ../../standalone/drakbackup_.c:3996
+#: ../../standalone/drakbackup_.c:4658
msgid "Drakbackup"
msgstr "DrakBackup"
-#: ../../standalone/drakbackup_.c:4045
+#: ../../standalone/drakbackup_.c:4707
#, fuzzy
msgid ""
"options description:\n"
@@ -11538,7 +12133,7 @@ msgstr ""
" \n"
"\n"
-#: ../../standalone/drakbackup_.c:4075
+#: ../../standalone/drakbackup_.c:4737
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -11553,7 +12148,7 @@ msgstr ""
" in „/etc/postfix/main.cf“ korrigieren.\n"
"\n"
-#: ../../standalone/drakbackup_.c:4083
+#: ../../standalone/drakbackup_.c:4745
msgid ""
"options description:\n"
"\n"
@@ -11636,46 +12231,89 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:4122
+#: ../../standalone/drakbackup_.c:4784
+#, fuzzy
msgid ""
"restore description:\n"
" \n"
-"Only the most recent date will be used ,because with incremental \n"
-"backups it is necesarry to restore one by one each older backups.\n"
+"Only the most recent date will be used, because with incremental \n"
+"backups it is necessary to restore one by one each older backup.\n"
"\n"
-"So if you don't like to restore a user please unselect all his\n"
-"check box.\n"
+"So if you don't want to restore a user please unselect all their\n"
+"check boxes.\n"
"\n"
-"Otherwise, you are able to select only one of this\n"
+"Otherwise, you are able to select only one of these.\n"
"\n"
" - Incremental Backups:\n"
"\n"
"\tThe incremental backup is the most powerful \n"
-"\toption to use backup, this option allow you \n"
-"\tto backup all your data the first time, and \n"
-"\tonly the changed after.\n"
-"\tSo you will be able during the restore\n"
+"\toption to use. This option allows you to \n"
+"\tbackup all of your data the first time, and \n"
+"\tonly the changed data after.\n"
+"\tSo you will be able, during the restore\n"
"\tstep, to restore your data from a specified\n"
"\tdate.\n"
-"\tIf you have not selected this options all\n"
+"\tIf you have not selected this option all\n"
"\told backups are deleted before each backup. \n"
"\n"
"\n"
"\n"
msgstr ""
+"Parameter:\n"
+"\n"
+" - Systemdateien sichern:\n"
+" \n"
+"\tDiese Option erlaub es Ihnen Ihr „/etc“ Verzeichnis\n"
+"\tmit den darin enthaltenen Konfigurationsdateien zu\n"
+"\tsichern. Seien Sie vorsichtig, damit Sie wÀhrend der\n"
+"\tWiederherstellung folgende Dateien nicht ĂŒberschreiben:\n"
+"\t\t/etc/passwd \n"
+"\t\t/etc/group \n"
+"\t\t/etc/fstab\n"
+"\n"
+" - Benutzerdateien sichern:\n"
+"\n"
+"\tDiese Option erlaubt es Ihnen die Benutzerkenn-\n"
+"\tzeichen zu wÀhlen, deren Daten gesichert werden\n"
+"\tsollen.\n"
+"\tEs ist sinnvoll, die Browser-Caches vom Sichern\n"
+"\tauszunehmen, um Sicherungsplatz zu sparen.\n"
+"\n"
+" - Andere Dateien sichern:\n"
+"\n"
+"\tMit dieser Option können Sie weitere Dateienn\n"
+"\tzum Sichern vorsehen. Sollten Sie diese Version\n"
+"\tverwenden, können Sie momentan keine inkre-\n"
+"\tmentellen Aktualisierungen vornehmen.\n"
+"\n"
+" - Inkrementelle Archivierung:\n"
+"\n"
+"\tInkrementelle Archivierung ist die mÀchtigste\n"
+"\tder vorhandenen Optionen. Sie erlaubt es\n"
+"\tIhnen beim ersten Aufruf eine komplette\n"
+"\tSicherungskopie Ihres Systems zu erstellen und\n"
+"\tanschließnd nur noch Änderungen zu speichern.\n"
+"\tSomit sind Sie in der Lage, wÀhrend des Wieder-\n"
+"\therstellens, den Datenbestand eines bestimmten\n"
+"\tZeitpunkts zu erzeugen.\n"
+"\tSollten sie diese Alernative nicht gewÀhlt haben,\n"
+"\twerden die alten Sicherungen vor dem Ertellen\n"
+"\teiner neuen Sicherungskopie gelöscht.\n"
+"\n"
+"\n"
-#: ../../standalone/drakbackup_.c:4148 ../../standalone/drakbackup_.c:4225
+#: ../../standalone/drakbackup_.c:4810 ../../standalone/drakbackup_.c:4887
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
" Copyright (C) 2001 MandrakeSoft by Sebastien DUPONT <dupont_s\\@epita.fr>"
-#: ../../standalone/drakbackup_.c:4150 ../../standalone/drakbackup_.c:4227
+#: ../../standalone/drakbackup_.c:4812 ../../standalone/drakbackup_.c:4889
msgid ""
" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
-#: ../../standalone/drakbackup_.c:4152 ../../standalone/drakbackup_.c:4229
+#: ../../standalone/drakbackup_.c:4814 ../../standalone/drakbackup_.c:4891
msgid ""
" This program is free software; you can redistribute it and/or modify\n"
" it under the terms of the GNU General Public License as published by\n"
@@ -11705,7 +12343,7 @@ msgstr ""
" along with this program; if not, write to the Free Software\n"
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
-#: ../../standalone/drakbackup_.c:4166
+#: ../../standalone/drakbackup_.c:4828
msgid ""
"Description:\n"
"\n"
@@ -11745,7 +12383,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4204
+#: ../../standalone/drakbackup_.c:4866
msgid ""
"options description:\n"
"\n"
@@ -11763,7 +12401,7 @@ msgstr ""
"Rechner erstellt werden.\n"
"\n"
-#: ../../standalone/drakbackup_.c:4213
+#: ../../standalone/drakbackup_.c:4875
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -11786,7 +12424,7 @@ msgstr ""
"Seien Sie daher vorsichtig und Àndern Sie die Sicherungskopien \n"
"nicht manuell.\n"
-#: ../../standalone/drakbackup_.c:4243
+#: ../../standalone/drakbackup_.c:4905
msgid ""
"Description:\n"
"\n"
@@ -11867,9 +12505,9 @@ msgstr ""
msgid "Synchronization tool"
msgstr ""
-#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:85
-#: ../../standalone/drakbug_.c:150 ../../standalone/drakbug_.c:152
-#: ../../standalone/drakbug_.c:156
+#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:86
+#: ../../standalone/drakbug_.c:151 ../../standalone/drakbug_.c:153
+#: ../../standalone/drakbug_.c:157
#, fuzzy
msgid "Standalone Tools"
msgstr "Konsolen-Werkzeuge"
@@ -11922,26 +12560,26 @@ msgstr "PrinterDrake"
msgid "Configuration Wizards"
msgstr "Netzwerk Konfigurationsassistent"
-#: ../../standalone/drakbug_.c:96
+#: ../../standalone/drakbug_.c:97
#, fuzzy
msgid "Application:"
msgstr "Authentifizierung"
-#: ../../standalone/drakbug_.c:97
+#: ../../standalone/drakbug_.c:98
#, fuzzy
msgid "Package: "
msgstr "Auswahl der Pakete"
-#: ../../standalone/drakbug_.c:98
+#: ../../standalone/drakbug_.c:99
msgid "Kernel:"
msgstr ""
-#: ../../standalone/drakbug_.c:99
+#: ../../standalone/drakbug_.c:100
#, fuzzy
msgid "Release: "
msgstr "Bitte warten"
-#: ../../standalone/drakbug_.c:114
+#: ../../standalone/drakbug_.c:115
msgid ""
"\n"
"\n"
@@ -11953,21 +12591,21 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbug_.c:135
+#: ../../standalone/drakbug_.c:136
#, fuzzy
msgid "Report"
msgstr "Port"
-#: ../../standalone/drakbug_.c:165
+#: ../../standalone/drakbug_.c:166
#, fuzzy
msgid "Not installed"
msgstr "Nach dem Entfernen"
-#: ../../standalone/drakbug_.c:182
+#: ../../standalone/drakbug_.c:183
msgid "connecting to Bugzilla wizard ..."
msgstr ""
-#: ../../standalone/drakbug_.c:189
+#: ../../standalone/drakbug_.c:190
#, fuzzy
msgid "No browser available! Please install one"
msgstr "Die Bildschim-SchnappschĂŒsse liegen nach der Installation unter „%s“"
@@ -12416,7 +13054,7 @@ msgid "Font List"
msgstr "Font-Liste"
#: ../../standalone/drakfont_.c:909
-msgid "Choose the applications that will support the fonts :"
+msgid "Choose the applications that will support the fonts:"
msgstr "WĂ€hlen Sie die Programme, die die Schriften verwenden sollen:"
#: ../../standalone/drakfont_.c:918
@@ -12489,19 +13127,19 @@ msgstr "Entfernen von Schriftarten auf Ihrem Rechner"
msgid "Post Uninstall"
msgstr "Nach dem Entfernen"
-#: ../../standalone/drakgw_.c:42 ../../standalone/drakgw_.c:195
+#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:188
msgid "Internet Connection Sharing"
msgstr "Teilen der Internet-Verbindung"
-#: ../../standalone/drakgw_.c:121
+#: ../../standalone/drakgw_.c:119
msgid "Sorry, we support only 2.4 kernels."
msgstr ""
-#: ../../standalone/drakgw_.c:133
+#: ../../standalone/drakgw_.c:130
msgid "Internet Connection Sharing currently enabled"
msgstr "Teilen der Internetverbindung momentan eingeschaltet."
-#: ../../standalone/drakgw_.c:134
+#: ../../standalone/drakgw_.c:131
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -12513,31 +13151,31 @@ msgstr ""
"\n"
"Was wollen Sie tun?"
-#: ../../standalone/drakgw_.c:138
+#: ../../standalone/drakgw_.c:135
msgid "disable"
msgstr "deaktivieren"
-#: ../../standalone/drakgw_.c:138 ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:135 ../../standalone/drakgw_.c:160
msgid "dismiss"
msgstr "Verwerfen"
-#: ../../standalone/drakgw_.c:138 ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:135 ../../standalone/drakgw_.c:160
msgid "reconfigure"
msgstr "neu konfigurieren"
-#: ../../standalone/drakgw_.c:141
+#: ../../standalone/drakgw_.c:138
msgid "Disabling servers..."
msgstr "Server deaktivieren ..."
-#: ../../standalone/drakgw_.c:149
+#: ../../standalone/drakgw_.c:146
msgid "Internet connection sharing is now disabled."
msgstr "Teilen der Internet-Verbindung ist nun abgeschaltet."
-#: ../../standalone/drakgw_.c:158
+#: ../../standalone/drakgw_.c:155
msgid "Internet Connection Sharing currently disabled"
msgstr "Teilen der Internet-Verbindung momentan abgeschaltet."
-#: ../../standalone/drakgw_.c:159
+#: ../../standalone/drakgw_.c:156
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
@@ -12549,19 +13187,19 @@ msgstr ""
"\n"
"Was wollen Sie tun?"
-#: ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:160
msgid "enable"
msgstr "aktivieren"
-#: ../../standalone/drakgw_.c:170
+#: ../../standalone/drakgw_.c:167
msgid "Enabling servers..."
msgstr "Server aktivieren ..."
-#: ../../standalone/drakgw_.c:175
+#: ../../standalone/drakgw_.c:172
msgid "Internet connection sharing is now enabled."
msgstr "Teilen der Internetverbindung ist nun eingeschaltet."
-#: ../../standalone/drakgw_.c:196
+#: ../../standalone/drakgw_.c:189
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
"With that feature, other computers on your local network will be able to use "
@@ -12576,21 +13214,21 @@ msgstr ""
"Anmerkung: Sie benötigen eine Netzwerkkarte, mit deren Hilfe Sie ein \n"
"lokales Netz (LAN) aufsetzen können."
-#: ../../standalone/drakgw_.c:222
+#: ../../standalone/drakgw_.c:215
#, c-format
msgid "Interface %s (using module %s)"
msgstr "Schnittstelle %s (verwendet Modul %s)"
-#: ../../standalone/drakgw_.c:223
+#: ../../standalone/drakgw_.c:216
#, c-format
msgid "Interface %s"
msgstr "Schnittstelle: %s"
-#: ../../standalone/drakgw_.c:231
+#: ../../standalone/drakgw_.c:224
msgid "No network adapter on your system!"
msgstr "Sie haben keine Netzwerkkarte!"
-#: ../../standalone/drakgw_.c:232
+#: ../../standalone/drakgw_.c:225
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
@@ -12598,11 +13236,11 @@ msgstr ""
"Ihr Rechner hat keine konfigurierte Netzwerkkarte. Bitte verwenden Sie erst "
"HardDrake, bevor Sie weiter machen."
-#: ../../standalone/drakgw_.c:238
+#: ../../standalone/drakgw_.c:231
msgid "Network interface"
msgstr "Netzwerkkarte"
-#: ../../standalone/drakgw_.c:239
+#: ../../standalone/drakgw_.c:232
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -12617,7 +13255,7 @@ msgstr ""
"\n"
"Ich setze ihr lokales Netz damit auf."
-#: ../../standalone/drakgw_.c:248
+#: ../../standalone/drakgw_.c:241
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
@@ -12625,11 +13263,11 @@ msgstr ""
"Bitte wÀhlen Sie die Netzwerkkarte, die mit Ihrem lokalen Netzwerk \n"
"verbunden ist."
-#: ../../standalone/drakgw_.c:266
+#: ../../standalone/drakgw_.c:259
msgid "Network interface already configured"
msgstr "Ihr Netzwerk ist bereits konfiguriert"
-#: ../../standalone/drakgw_.c:267
+#: ../../standalone/drakgw_.c:260
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -12645,15 +13283,15 @@ msgstr ""
"Sie können auch eine manuelle Einrichtung vornehmen - dafĂŒr sollten Sie "
"jedoch wissen, wie das funktioniert."
-#: ../../standalone/drakgw_.c:272
+#: ../../standalone/drakgw_.c:265
msgid "Automatic reconfiguration"
msgstr "Automatische Rekonfiguration"
-#: ../../standalone/drakgw_.c:273
+#: ../../standalone/drakgw_.c:266
msgid "Show current interface configuration"
msgstr "Aktuelle Schnittstellenkonfiguration anzeigen"
-#: ../../standalone/drakgw_.c:275
+#: ../../standalone/drakgw_.c:268
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -12670,7 +13308,7 @@ msgstr ""
"IP-Eigenschaften: %s\n"
"Treiber: %s"
-#: ../../standalone/drakgw_.c:287
+#: ../../standalone/drakgw_.c:280
msgid ""
"I can keep your current configuration and assume you already set up a DHCP "
"server; in that case please verify I correctly read the C-Class Network that "
@@ -12690,56 +13328,43 @@ msgstr ""
"Server fĂŒr Sie aufsetzen.\n"
"\n"
-#: ../../standalone/drakgw_.c:292
+#: ../../standalone/drakgw_.c:285
msgid "C-Class Local Network"
msgstr "Lokales Klasse-C Netzwerk"
-#: ../../standalone/drakgw_.c:293
+#: ../../standalone/drakgw_.c:286
msgid "(This) DHCP Server IP"
msgstr "(Diese) DHCP-Server IP"
-#: ../../standalone/drakgw_.c:294
+#: ../../standalone/drakgw_.c:287
msgid "Re-configure interface and DHCP server"
msgstr "Neu konfigurieren des GerÀts und des DHCP-Servers"
-#: ../../standalone/drakgw_.c:301
+#: ../../standalone/drakgw_.c:294
msgid "The Local Network did not finish with `.0', bailing out."
msgstr "Das lokale Netzwerk endet nicht auf „.0“ - bereinige."
-#: ../../standalone/drakgw_.c:312
+#: ../../standalone/drakgw_.c:305
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr ""
"Es liegt ein möglicher LAN-Adressen Konflikt in der Konfiguration\n"
"von %s vor!\n"
-#: ../../standalone/drakgw_.c:320
-msgid "Firewalling configuration detected!"
-msgstr "Ich habe eine Firewall-Konfiguration gefunden!"
-
-#: ../../standalone/drakgw_.c:321
-msgid ""
-"Warning! An existing firewalling configuration has been detected. You may "
-"need some manual fix after installation."
-msgstr ""
-"WARNUNG: Ich habe eine eine Firewall-Konfiguration gefunden. \n"
-"Möglicherweise mĂŒssen Sie nach der Installation einige Einstellungen \n"
-"von Hand vornehmen."
-
-#: ../../standalone/drakgw_.c:328
+#: ../../standalone/drakgw_.c:315
msgid "Configuring..."
msgstr "Konfigurieren ..."
-#: ../../standalone/drakgw_.c:329
+#: ../../standalone/drakgw_.c:316
msgid "Configuring scripts, installing software, starting servers..."
msgstr "Skripte konfigurieren, Software installieren, Dienste starten ..."
-#: ../../standalone/drakgw_.c:365
+#: ../../standalone/drakgw_.c:352
#, c-format
msgid "Problems installing package %s"
msgstr "Probleme beim Installieren von Paket %s"
-#: ../../standalone/drakgw_.c:549
+#: ../../standalone/drakgw_.c:485
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
@@ -12750,24 +13375,24 @@ msgstr ""
"lokalen Netz mittels automatischer Netzwerk-Konfiguration (DHCP) \n"
"teilen."
-#: ../../standalone/drakgw_.c:566
+#: ../../standalone/drakgw_.c:504
msgid "The setup has already been done, but it's currently disabled."
msgstr ""
"Die Einstellungen wurden bereits vorgenommen, sie sind nur nicht aktiviert."
-#: ../../standalone/drakgw_.c:567
+#: ../../standalone/drakgw_.c:505
msgid "The setup has already been done, and it's currently enabled."
msgstr "Die Einstellungen wurden bereits vorgenommen und sind aktiv."
-#: ../../standalone/drakgw_.c:568
+#: ../../standalone/drakgw_.c:506
msgid "No Internet Connection Sharing has ever been configured."
msgstr "Teilen der Internetverbindung wurde noch nicht konfiguriert."
-#: ../../standalone/drakgw_.c:573
+#: ../../standalone/drakgw_.c:511
msgid "Internet connection sharing configuration"
msgstr "Teilen der Internetverbindung - Konfiguration"
-#: ../../standalone/drakgw_.c:580
+#: ../../standalone/drakgw_.c:518
#, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -12783,6 +13408,157 @@ msgstr ""
"\n"
"WĂ€hlen Sie „Konfigurieren“ wenn Sie den Assistenten starten wollen."
+#: ../../standalone/draksound_.c:46
+#, fuzzy
+msgid "No Sound Card detected!"
+msgstr "Nicht Verbunden"
+
+#: ../../standalone/draksound_.c:47
+msgid ""
+"No Sound Card has been detected on your machine. Please verify that a Linux-"
+"supported Sound Card is correctly plugged in.\n"
+"\n"
+"\n"
+"You can visit our hardware database at:\n"
+"\n"
+"\n"
+"http://www.linux-mandrake.com/en/hardware.php3"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:32
+msgid "package ImageMagick is required for correct working"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:76
+#, fuzzy
+msgid "first step creation"
+msgstr "Boot-Disketten Erstellung"
+
+#: ../../standalone/draksplash_.c:77
+#, fuzzy
+msgid "final resolution"
+msgstr "Auflösung"
+
+#: ../../standalone/draksplash_.c:78 ../../standalone/draksplash_.c:170
+#, fuzzy
+msgid "choose image file"
+msgstr "WĂ€hlen Sie eine Datei"
+
+#: ../../standalone/draksplash_.c:79
+#, fuzzy
+msgid "Theme name"
+msgstr "Freigabename"
+
+#: ../../standalone/draksplash_.c:81
+msgid "make bootsplash step 2"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:82
+#, fuzzy
+msgid "go to lilosplash configuration"
+msgstr "Einstellungen fĂŒr nach der Installation"
+
+#: ../../standalone/draksplash_.c:83
+#, fuzzy
+msgid "quit"
+msgstr "Verlassen"
+
+#: ../../standalone/draksplash_.c:84
+#, fuzzy
+msgid "save theme"
+msgstr "Themen installieren"
+
+#: ../../standalone/draksplash_.c:85
+msgid "browse"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:98 ../../standalone/draksplash_.c:159
+#, fuzzy
+msgid "Configure bootsplash picture"
+msgstr "Ich kan keine Start-Vorschau erzeugen"
+
+#: ../../standalone/draksplash_.c:99
+msgid "x coordinate of text box in number of character"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:100
+msgid "y coordinate of text box in number of character"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:101
+msgid "text width"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:102
+msgid "text box height"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:103
+msgid "the progress bar x coordinate of its upper left corner"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:104
+msgid "the progress bar y coordinate of its upper left corner"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:105
+msgid "the width of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:106
+msgid "the heigth of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:107
+msgid "the color of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:119
+#, fuzzy
+msgid "go back"
+msgstr "Loopback"
+
+#: ../../standalone/draksplash_.c:120
+#, fuzzy
+msgid "preview"
+msgstr "GerÀt"
+
+#: ../../standalone/draksplash_.c:121
+#, fuzzy
+msgid "choose color"
+msgstr "WĂ€hlen Sie Ihren Monitor"
+
+#: ../../standalone/draksplash_.c:124
+#, fuzzy
+msgid "Display logo on Console"
+msgstr "Bildschirm-Thema fĂŒr die Konsole"
+
+#: ../../standalone/draksplash_.c:125
+msgid "Make kernel message quiet by default"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:161 ../../standalone/draksplash_.c:330
+#, c-format
+msgid "This theme haven't yet any bootsplash in %s !"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:213
+msgid "saving Bootsplash theme..."
+msgstr ""
+
+#: ../../standalone/draksplash_.c:436
+msgid "ProgressBar color selection"
+msgstr "Farbauswahl fĂŒr den Fortschrittsbalken"
+
+#: ../../standalone/draksplash_.c:454
+#, fuzzy
+msgid "You must choose an image file first!"
+msgstr "Sie mĂŒssen einen Drucker wĂ€hlen/ein GerĂ€t eingeben!"
+
+#: ../../standalone/draksplash_.c:463
+msgid "Generating preview ..."
+msgstr "Vorschau erzeugen ..."
+
#: ../../standalone/drakxtv_.c:49
msgid ""
"XawTV isn't installed!\n"
@@ -12804,7 +13580,6 @@ msgid "Canada (cable)"
msgstr "Kanada (Kabel)"
#: ../../standalone/drakxtv_.c:66
-#, fuzzy
msgid "USA (broadcast)"
msgstr "USA (terrestrisch)"
@@ -12817,12 +13592,10 @@ msgid "USA (cable-hrc)"
msgstr "USA (Kabel-hrc)"
#: ../../standalone/drakxtv_.c:67
-#, fuzzy
msgid "China (broadcast)"
msgstr "China (terrestrisch)"
#: ../../standalone/drakxtv_.c:67
-#, fuzzy
msgid "Japan (broadcast)"
msgstr "Japan (terrestrisch)"
@@ -12835,9 +13608,8 @@ msgid "East Europe"
msgstr "Osteuropa"
#: ../../standalone/drakxtv_.c:68
-#, fuzzy
msgid "France [SECAM]"
-msgstr "Frankreich"
+msgstr "Frankreich (SECAM)"
#: ../../standalone/drakxtv_.c:68
msgid "Ireland"
@@ -12874,11 +13646,11 @@ msgid ""
msgstr "Bitte geben Sie Ihre Fernsehnorm und Region ein"
#: ../../standalone/drakxtv_.c:109
-msgid "TV norm :"
+msgid "TV norm:"
msgstr "Fernsehnorm:"
#: ../../standalone/drakxtv_.c:110
-msgid "Area :"
+msgid "Area:"
msgstr "Region:"
#: ../../standalone/drakxtv_.c:114
@@ -12890,25 +13662,24 @@ msgid "Scanning for TV channels"
msgstr "Sendersuche..."
#: ../../standalone/drakxtv_.c:125
-#, fuzzy
msgid "There was an error while scanning for TV channels"
-msgstr "Bei der Installation der Pakete trat ein Fehler auf:"
+msgstr "Bei der Suche der TV-KanÀle trat ein Fehler auf"
#: ../../standalone/drakxtv_.c:126
msgid "XawTV isn't installed!"
-msgstr ""
+msgstr "XawTV ist nicht installiert!"
#: ../../standalone/drakxtv_.c:129
msgid "Have a nice day!"
-msgstr ""
+msgstr "Bis bald!"
#: ../../standalone/drakxtv_.c:130
msgid "Now, you can run xawtv (under X Window!) !\n"
-msgstr ""
+msgstr "Sie können nun (unter X-Windows) „xawtv“ starten.\n"
#: ../../standalone/drakxtv_.c:153
msgid "No TV Card detected!"
-msgstr ""
+msgstr "Keine TV-Karte gefunden!"
#: ../../standalone/drakxtv_.c:154
msgid ""
@@ -12957,7 +13728,7 @@ msgstr ""
"Die Einstellungen wurden vorgenommen, werden jedoch erst nach einer "
"Neuanmeldung wirksam"
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:517
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:515
msgid "logdrake"
msgstr "LogDrake"
@@ -13066,9 +13837,8 @@ msgid "Content of the file"
msgstr "Inhalt der LogbĂŒcher"
#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:391
-#, fuzzy
msgid "Mail alert"
-msgstr "E-Mail/SMS Benachrichtigung"
+msgstr "E-Mail Benachrichtigung"
#: ../../standalone/logdrake_.c:267
#, c-format
@@ -13076,61 +13846,50 @@ msgid "please wait, parsing file: %s"
msgstr "Einen Moment, ich durchsuche: %s"
#: ../../standalone/logdrake_.c:408
-#, fuzzy
msgid "Mail alert configuration"
-msgstr "Mail/SMS Benachrichtigungskonfiguration"
+msgstr "Mail Benachrichtigungskonfiguration"
#: ../../standalone/logdrake_.c:409
-#, fuzzy
msgid ""
"Welcome to the mail configuration utility.\n"
"\n"
"Here, you'll be able to set up the alert system.\n"
msgstr ""
-"Herzlich willkommen zum E-Mail/SMS Konfigurationsassistenten.\n"
+"Herzlich willkommen zum E-Mail Benachrichtigungsassistenten.\n"
"\n"
"Hier können Sie Ihr Benachrichtigungssystem einrichten.\n"
#: ../../standalone/logdrake_.c:416
msgid "Apache World Wide Web Server"
-msgstr ""
+msgstr "Apache Web-Server"
#: ../../standalone/logdrake_.c:417
-#, fuzzy
msgid "Domain Name Resolver"
-msgstr "Name der DomÀne"
+msgstr "DNS"
#: ../../standalone/logdrake_.c:418
-#, fuzzy
msgid "Ftp Server"
-msgstr "NIS Server"
+msgstr "FTP Server"
#: ../../standalone/logdrake_.c:419
-#, fuzzy
msgid "Postfix Mail Server"
-msgstr ""
-"Postfix E-Mail-Server und\n"
-"Inn Diskussionsforen-Server"
+msgstr "Postfix E-Mail-Server"
#: ../../standalone/logdrake_.c:420
-#, fuzzy
msgid "Samba Server"
-msgstr "NIS Server"
+msgstr "Samba Server"
#: ../../standalone/logdrake_.c:421
-#, fuzzy
msgid "SSH Server"
-msgstr "NIS Server"
+msgstr "SSH Server"
#: ../../standalone/logdrake_.c:422
-#, fuzzy
msgid "Webmin Service"
-msgstr "Dienste"
+msgstr "Webmin"
#: ../../standalone/logdrake_.c:423
-#, fuzzy
msgid "Xinetd Service"
-msgstr "Drucker-Server"
+msgstr "xinetd"
#: ../../standalone/logdrake_.c:430
msgid "service setting"
@@ -13138,10 +13897,9 @@ msgstr "Dienste einstellen"
#: ../../standalone/logdrake_.c:431
msgid ""
-"You will receive an alert if one of the selected service is no more running"
+"You will receive an alert if one of the selected services is no more running"
msgstr ""
-"Sie weden benachrtichtigt, falls einer der gewÀhlten Dienste nichtmehr "
-"verfĂŒgbar ist."
+"Sie weden benachrtichtigt, falls einer der gewÀhlten Dienste nichtmehr lÀuft."
#: ../../standalone/logdrake_.c:443
msgid "load setting"
@@ -13156,26 +13914,24 @@ msgid "alert configuration"
msgstr "Benachrichtigungskonfiguration"
#: ../../standalone/logdrake_.c:458
-#, fuzzy
msgid "Please enter your email address below "
-msgstr "Bitte geben Sie Ihr Passwort ein"
+msgstr "Bitte geben Sie Ihre E-Mail-Adresse ein"
-#: ../../standalone/logdrake_.c:499
+#: ../../standalone/logdrake_.c:497
msgid "Save as.."
msgstr "Speichern unter..."
-#: ../../standalone/mousedrake_.c:43
+#: ../../standalone/mousedrake_.c:45
msgid "Please, choose the type of your mouse."
msgstr "Bitte wÀhlen Sie Ihren Maustyp."
-#: ../../standalone/mousedrake_.c:57
+#: ../../standalone/mousedrake_.c:58
msgid "Emulate third button?"
msgstr "Die dritte Maustaste emulieren?"
-#: ../../standalone/printerdrake_.c:48
-#, fuzzy
+#: ../../standalone/printerdrake_.c:57
msgid "Reading printer data ..."
-msgstr "Lesen der Treiber-Datenbank ..."
+msgstr "Lesen der Druckertreiber-Datenbank ..."
#: ../../standalone/scannerdrake_.c:41
msgid "Detecting devices ..."
@@ -13185,33 +13941,43 @@ msgstr "GerÀteerkennung..."
msgid "Test ports"
msgstr "Test der AnschlĂŒsse"
-#: ../../standalone/scannerdrake_.c:52
+#: ../../standalone/scannerdrake_.c:53 ../../standalone/scannerdrake_.c:68
+#: ../../standalone/scannerdrake_.c:81
#, c-format
-msgid "%s found on %s, configure it ?"
+msgid "The %s is not supported by this version of Mandrake Linux."
+msgstr "Der %s wird nicht von dieser Version von Madrake Linux unterstĂŒzt."
+
+#: ../../standalone/scannerdrake_.c:56
+#, c-format
+msgid "%s found on %s, configure it?"
msgstr "%s an %s gefunden. Wolen Sie ihn einrichten?"
#: ../../standalone/scannerdrake_.c:59
+#, c-format
+msgid "%s is not in the scanner database, configure it manually?"
+msgstr ""
+
+#: ../../standalone/scannerdrake_.c:65
msgid "Select a scanner"
msgstr "WĂ€hlen Sie einen Scanner"
-#: ../../standalone/scannerdrake_.c:79
+#: ../../standalone/scannerdrake_.c:93
#, c-format
msgid "This %s scanner is unsupported"
msgstr "Dieser %s Scanner wird nicht unterstĂŒtzt"
-#: ../../standalone/scannerdrake_.c:93
+#: ../../standalone/scannerdrake_.c:107
#, c-format
msgid ""
"Scannerdrake was not able to detect your %s scanner.\n"
"Please select the device where your scanner is plugged"
msgstr ""
-#: ../../standalone/scannerdrake_.c:95
-#, fuzzy
+#: ../../standalone/scannerdrake_.c:109
msgid "choose device"
-msgstr "Boot GerÀt"
+msgstr "GerÀt wÀhlen"
-#: ../../standalone/scannerdrake_.c:101
+#: ../../standalone/scannerdrake_.c:115
#, c-format
msgid ""
"This %s scanner must be configured by printerdrake.\n"
@@ -13222,7 +13988,7 @@ msgstr ""
"Sie können Pronterdrake im Mandrake-Kontrollzentrum im Hardware-Bereich "
"starten."
-#: ../../standalone/scannerdrake_.c:106
+#: ../../standalone/scannerdrake_.c:120
#, c-format
msgid ""
"Your %s scanner has been configured.\n"
@@ -13230,49 +13996,19 @@ msgid ""
"applications menu."
msgstr ""
-#: ../../standalone/service_harddrake_.c:57
+#: ../../standalone/service_harddrake_.c:39
#, c-format
msgid "Some devices in the \"%s\" hardware class were removed:\n"
-msgstr ""
+msgstr "Einige GerÀte in der Klasse %s wurden entfernt:\n"
-#: ../../standalone/service_harddrake_.c:61
+#: ../../standalone/service_harddrake_.c:43
#, c-format
msgid ""
"\n"
"Some devices in the %s class were added:\n"
msgstr ""
-
-#: ../../standalone/tinyfirewall_.c:30
-msgid "Firewalling Configuration"
-msgstr "Firewall-Konfiguration"
-
-#: ../../standalone/tinyfirewall_.c:43
-msgid "Firewalling configuration"
-msgstr "Firewall-Konfiguration"
-
-#: ../../standalone/tinyfirewall_.c:78
-msgid ""
-"Firewalling\n"
-"\n"
-"You already have set up a firewall.\n"
-"Click on Configure to change or remove the firewall"
-msgstr ""
-"Firewall\n"
-"\n"
-"Sie haben bereits eine Firewall eingerichtet.\n"
-"WĂ€hlen Sie die SchaltflĂ€che „Konfigurieren“,\n"
-"um sie zu löschen oder zu verÀndern."
-
-#: ../../standalone/tinyfirewall_.c:82
-msgid ""
-"Firewalling\n"
-"\n"
-"Click on Configure to set up a standard firewall"
-msgstr ""
-"Firewall\n"
"\n"
-"WĂ€hlen Sie die SchaltflĂ€che „Konfigurieren“,\n"
-"um eine Standard-Firewall einzurichten."
+"Einige GerĂ€te in der Klasse %s wurden hinzugefĂŒgt:\n"
#: ../../steps.pm_.c:14
msgid "Choose your language"
@@ -13346,229 +14082,7 @@ msgstr "Systemaktualisierungen"
msgid "Exit install"
msgstr "Installation beenden"
-#: ../../tinyfirewall.pm_.c:9
-msgid ""
-"tinyfirewall configurator\n"
-"\n"
-"This configures a personal firewall for this Mandrake Linux machine.\n"
-"For a powerful dedicated firewall solution, please look to the\n"
-"specialized MandrakeSecurity Firewall distribution."
-msgstr ""
-"TinyFirewall Konfigurierer\n"
-"\n"
-"Hiermit konfigurieren Sie eine persönliche Firewall fĂŒr diesen\n"
-"Mandrake Linux Rechner. Sollten Sie an einer speziellen ausgereiften\n"
-"Firewall-Lösung interessiert sein, schauen Sie sich nach der speziell\n"
-"dafĂŒr entwickelten MandrakeSecurity Firewall Distribution um."
-
-#: ../../tinyfirewall.pm_.c:14
-msgid ""
-"We'll now ask you questions about which services you'd like to allow\n"
-"the Internet to connect to. Please think carefully about these\n"
-"questions, as your computer's security is important.\n"
-"\n"
-"Please, if you're not currently using one of these services, firewall\n"
-"it off. You can change this configuration anytime you like by\n"
-"re-running this application!"
-msgstr ""
-"Wir fragen Sie nun, welchen Diensten Sie direkten Internetzugang\n"
-"gestatten wollen. Bitte machen Sie sich sorgfĂ€ltig Gedanken ĂŒber diese\n"
-"Fragen. Es geht hierbei schließlich um die Sicherheit Ihres Systems!\n"
-"\n"
-"Bitte schotten Sie jeden Dienst, den sie aktuell nicht verwenden, vom \n"
-"Netz ab. Sie können die vorgenommenen Einstellungen mit Hilfe dieses \n"
-"Programms jederzeit wieder Àndern!"
-
-#: ../../tinyfirewall.pm_.c:21
-msgid ""
-"Are you running a web server on this machine that you need the whole\n"
-"Internet to see? If you are running a webserver that only needs to be\n"
-"accessed by this machine, you can safely answer NO here.\n"
-"\n"
-msgstr ""
-"Betreiben Sie auf Ihrem Rechner einen Web-Server, der im gesamten\n"
-"Internet sichtbar sein soll? Falls der Server nur auf Ihrer Maschine\n"
-"zugreifbar sein soll, können Sie hier getrost NEIN antworten.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:26
-msgid ""
-"Are you running a name server on this machine? If you didn't set one\n"
-"up to give away IP and zone information to the whole Internet, please\n"
-"answer no.\n"
-"\n"
-msgstr ""
-"Betreiben Sie einen Name-Server auf Ihrem Rechner? Falls Sie keinen\n"
-"Eingerichtet haben, um dem gesamten Internet IP und Bereichsinformationen\n"
-"anzubieten, antworten Sie hier NEIN.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:31
-msgid ""
-"Do you want to allow incoming Secure Shell (ssh) connections? This\n"
-"is a telnet-replacement that you might use to login. If you're using\n"
-"telnet now, you should definitely switch to ssh. telnet is not\n"
-"encrypted -- so some attackers can steal your password if you use\n"
-"it. ssh is encrypted and doesn't allow for this eavesdropping."
-msgstr ""
-"Wollen Sie eingehende Secure Shell (ssh) Verbindungen gestatten?\n"
-"Es handelt sich hierbei um einen Ersatz fĂŒr Telnet. Falls sie noch\n"
-"Telnet verwenden, sollten Sie definitiv auf dieses Protokoll wechseln.\n"
-"Telnet ĂŒbertrĂ€gt Ihre gesamte Kommunikation (also auch Passwörter)\n"
-"UNVERSCHLÜSSELT! Sie bieten damit einem potentiellen Angreife ein\n"
-"leichtes Spiel. Die SSH hingegen verschlĂŒsselt die komplette\n"
-"Kommunikation und warnt sogar falls sie eine UnregelmĂ€ĂŸigkeit bemerkt."
-
-#: ../../tinyfirewall.pm_.c:36
-msgid ""
-"Do you want to allow incoming telnet connections?\n"
-"This is horribly unsafe, as we explained in the previous screen. We\n"
-"strongly recommend answering No here and using ssh in place of\n"
-"telnet.\n"
-msgstr ""
-"Wollen Sie eingehende Telnet-Verbindungen gestatten?\n"
-"Dienst extrem unsicher, wie wir bereits frĂŒher erwĂ€hnten. Wir empfehlen\n"
-"Ihnen daher nachdrĂŒcklich mit NEIN zu antworten und im Bedarfsfall auf\n"
-"die SSH auszuweichen.\n"
-
-#: ../../tinyfirewall.pm_.c:41
-msgid ""
-"Are you running an FTP server here that you need accessible to the\n"
-"Internet? If you are, we strongly recommend that you only use it for\n"
-"Anonymous transfers. Any passwords sent by FTP can be stolen by some\n"
-"attackers, since FTP also uses no encryption for transferring passwords.\n"
-msgstr ""
-"Betreiben Sie einen FTP Server der aus dem Internet zugreifbar sein soll?\n"
-"Falls ja, sollten Sie ihn jedoch nur fĂŒr „anonymen Transfer“ verwenden,\n"
-"da das Protokoll keine VerschlĂŒsselung ĂŒbertragener Passwörter vorsieht."
-"Verwenden Sie „scp“ aus dem SSH Paket zum verschlĂŒsselten\n"
-"Datentransfer zwischen zwei Rechnern.\n"
-
-#: ../../tinyfirewall.pm_.c:46
-msgid ""
-"Are you running a mail server here? If you're sending you \n"
-"messages through pine, mutt or any other text-based mail client,\n"
-"you probably are. Otherwise, you should firewall this off.\n"
-"\n"
-msgstr ""
-"Betreiben Sie einen Mail-Server? Falls Sie Ihre Nachrichten mit\n"
-"einem textbasierten E-Mail Programm wie pine oder mutt schreiben\n"
-"ist dies vermutlich der Fall. Andernfalls sollten Sie den Dienst\n"
-"abschalten.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:51
-msgid ""
-"Are you running a POP or IMAP server here? This would\n"
-"be used to host non-web-based mail accounts for people via \n"
-"this machine.\n"
-"\n"
-msgstr ""
-"Betreiben Sie einen POP oder IMAP Server? Sie wĂŒrden damit\n"
-"PostfĂ€cher fĂŒr nicht-web-basierten E-Mail Zugriff ĂŒber diese\n"
-"Maschine bereitstellen.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:56
-msgid ""
-"You appear to be running a 2.2 kernel. If your network IP\n"
-"is automatically set by a computer in your home or office \n"
-"(dynamically assigned), we need to allow for this. Is\n"
-"this the case?\n"
-msgstr ""
-"Sie scheinen einen 2.2er Kern zu verwenden. Falls Sie Ihre\n"
-"IP-Adresse automatisch im lokalen Netzwerk erhalten sollen,\n"
-"mĂŒssen wir dies gestatten. Ist das bei Ihnen der Fall?\n"
-
-#: ../../tinyfirewall.pm_.c:61
-msgid ""
-"Is your computer getting time syncronized to another computer?\n"
-"Mostly, this is used by medium-large Unix/Linux organizations\n"
-"to synchronize time for logging and such. If you're not part\n"
-"of a larger office and haven't heard of this, you probably \n"
-"aren't."
-msgstr ""
-"Wird die Zeit Ihres Rechners automatisch mit anderen Rechnern\n"
-"synchronisiert? Dies ist hĂ€ufig ab mittelgroßen UNIX/Linux Betrieben\n"
-"der Fall. Damit wird ein einheitliches Zeitschema, etwa fĂŒr die\n"
-"Datensicherung zugrunde gelegt. Wenn Sie nicht in einem grĂ¶ĂŸeren\n"
-"Betrieb arbeiten oder noch nie etwas zu diesem Thema gehört haben,\n"
-"trifft es fĂŒr Sie vermutlich nicht zu."
-
-#: ../../tinyfirewall.pm_.c:66
-msgid ""
-"Configuration complete. May we write these changes to disk?\n"
-"\n"
-"\n"
-"\n"
-msgstr ""
-"Konfiguration beendet. Soll ich die Änderungen auf Platte schreiben?\n"
-"\n"
-"\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:82
-#, c-format
-msgid "Can't open %s: %s\n"
-msgstr "Ich kann „%s“ nicht öffnen: %s\n"
-
-#: ../../tinyfirewall.pm_.c:84
-#, c-format
-msgid "Can't open %s for writing: %s\n"
-msgstr "Ich kann „%s“ nicht zum Schreiben öffnen: %s\n"
-
-#: ../../tinyfirewall.pm_.c:178
-msgid "No I don't need DHCP"
-msgstr "Nein, ich benötige kein DHCP"
-
-#: ../../tinyfirewall.pm_.c:178
-msgid "Yes I need DHCP"
-msgstr "Ja, ich benötige DHCP"
-
-#: ../../tinyfirewall.pm_.c:179
-msgid "No I don't need NTP"
-msgstr "Nein, ich benötige kein NTP"
-
-#: ../../tinyfirewall.pm_.c:179
-msgid "Yes I need NTP"
-msgstr "Ja, ich benötige NTP"
-
-#: ../../tinyfirewall.pm_.c:180 ../../tinyfirewall.pm_.c:184
-msgid "Don't Save"
-msgstr "Nicht speichern"
-
-#: ../../tinyfirewall.pm_.c:180 ../../tinyfirewall.pm_.c:184
-#: ../../tinyfirewall.pm_.c:204
-msgid "Save & Quit"
-msgstr "Speichern und beenden"
-
-#: ../../tinyfirewall.pm_.c:195 ../../tinyfirewall.pm_.c:199
-msgid "Firewall Configuration Wizard"
-msgstr "Firewall-Konfigurationsassistent"
-
-#: ../../tinyfirewall.pm_.c:197
-msgid "No (firewall this off from the internet)"
-msgstr "Nein (Vom externen Netz abschirmen)"
-
-#: ../../tinyfirewall.pm_.c:198
-msgid "Yes (allow this through the firewall)"
-msgstr "Ja (durch die Firewall erlauben)"
-
-#: ../../tinyfirewall.pm_.c:230
-msgid "Please Wait... Verifying installed packages"
-msgstr "Bitte warten, Kontrolle der installierten Pakete ..."
-
-#: ../../tinyfirewall.pm_.c:236
-#, c-format
-msgid ""
-"Failure installing the needed packages : %s and Bastille.\n"
-" Try to install them manually."
-msgstr ""
-"Fehler bein Versuch die gewĂŒnschten Pakete (%s und Bastille) zu "
-"installieren!\n"
-"Versuchen Sie es manuell."
-
-#: ../../ugtk.pm_.c:619
+#: ../../ugtk.pm_.c:594
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
@@ -13623,7 +14137,7 @@ msgstr "Audio Programme: MP3- und Midi-Abspieler, Mixer, usw."
#: ../../share/compssUsers:999
msgid "Linux Standard Base. Third party applications support"
-msgstr ""
+msgstr "Linux Standard Base. DrittanbieterunterstĂŒtzung"
#: ../../share/compssUsers:999
msgid "Books and Howto's on Linux and Free Software"
@@ -13653,7 +14167,6 @@ msgstr "Server, Datenbank"
msgid "PostgreSQL or MySQL database server"
msgstr "PostgeSQL oder MySQL Datenbankserver"
-#
#: ../../share/compssUsers:999
msgid "Tools to ease the configuration of your computer"
msgstr "Werkzeuge, die die Konfiguration Ihres Rechners erleichtern"
@@ -13706,6 +14219,10 @@ msgid "Graphical Environment"
msgstr "Grafische ArbeitsoberflÀche"
#: ../../share/compssUsers:999
+msgid "Development"
+msgstr "Entwicklungsplattform"
+
+#: ../../share/compssUsers:999
msgid "Apache, Pro-ftpd"
msgstr "Apache und Pro-ftpd"
@@ -13816,400 +14333,5 @@ msgstr "Multimedia / CD-Brenner"
msgid "Scientific Workstation"
msgstr "Wissenschaftlicher Arbeitsplatzrechner"
-#~ msgid "$mode: $warning"
-#~ msgstr "$mode: $warning"
-
-#, fuzzy
-#~ msgid ""
-#~ "This level is to be used with care. It makes your system more easy to "
-#~ "use,\n"
-#~ " but very sensitive: it must not be used for a machine "
-#~ "connected to others\n"
-#~ " or to the Internet. There is no password access."
-#~ msgstr ""
-#~ "Diese Ebene ist mit Vorsicht zu verwenden. Zwar macht sie Ihr System \n"
-#~ "einfacher handhabbar, aber auch leichter angreifbar: In dieser Form "
-#~ "darf \n"
-#~ "der Rechner nicht als Netzwerkrechner (LAN oder Modem) verwendet "
-#~ "werden, \n"
-#~ "da Angreifer mangels Passwort an Ihre Daten gelangen können!"
-
-#, fuzzy
-#~ msgid ""
-#~ "With this security level, the use of this system as a server becomes "
-#~ "possible.\n"
-#~ " The security is now high enough to use the system as a "
-#~ "server which can accept\n"
-#~ " connections from many clients. Note: if your machine is "
-#~ "only a client on the Internet, you should choose a lower level."
-#~ msgstr ""
-#~ "Mit dieser Sicherheitsebene wird es möglich, das System als einen \n"
-#~ "Server zu verwenden.\n"
-#~ "Die Sicherheit ist nun ausreichend hoch, um das System als Server \n"
-#~ "einzusetzen, der einer Vielzahl von Klienten einen Verbindungsaufbau \n"
-#~ "erlaubt. Es sei hier angemerkt, dass Ihr Rechner, wenn Sie nur als \n"
-#~ "Klient ins Internet gehen, besser eine niedrigere Sicherhetsebene \n"
-#~ "verwenden sollte."
-
-#, fuzzy
-#~ msgid "Basic Options"
-#~ msgstr "Optionen"
-
-#, fuzzy
-#~ msgid "Security Checks"
-#~ msgstr "Sicherheit"
-
-#~ msgid "Data list to include on CDROM."
-#~ msgstr "Liste der Daten, die auf CD-ROM sollen."
-
-#~ msgid "Please choose your CD space"
-#~ msgstr "Bitte wÀhlen Sie Ihren CD-Paltz"
-
-#~ msgid "Please enter the cd writer speed"
-#~ msgstr "Bitte geben Sie die CD-Brenngeschwindigkeit ein"
-
-#~ msgid "Please check if you want to erase your CDRW before"
-#~ msgstr "Kontrollieren Sie, ob Sie die CDRW vorher löschen wollen."
-
-#~ msgid "Please enter your CD Writer device name (ex: 0,1,0)"
-#~ msgstr "Bitte geben Sie den CD-Brenner an (etwa 0,1,0)"
-
-#~ msgid "Please check if you want to include install boot on your CD."
-#~ msgstr ""
-#~ "Bitte markieren, falls Sie „install boot“ auf Ihrer CD haben wollen."
-
-#~ msgid "Url should begin with 'ftp:'"
-#~ msgstr "Die URL muss mit „ftp:“ beginnen"
-
-#~ msgid ""
-#~ "Please check if you want to include\n"
-#~ " install boot on your CD."
-#~ msgstr ""
-#~ "Bitte markieren, falls Sie \n"
-#~ "„install boot“ auf Ihrer CD haben wollen."
-
-#, fuzzy
-#~ msgid "Windows PDC"
-#~ msgstr "Windows (FAT32)"
-
-#, fuzzy
-#~ msgid "PDC Server Name"
-#~ msgstr "NTP Server"
-
-#~ msgid ""
-#~ "\n"
-#~ "Welcome to the Printer Setup Wizard\n"
-#~ "\n"
-#~ "This wizard will help you to install your printer(s) connected to this "
-#~ "computer.\n"
-#~ "\n"
-#~ "Please plug in your printer(s) on this computer and turn it/them on. "
-#~ "Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
-#~ "want to set up your printer(s) now.\n"
-#~ "\n"
-#~ "Note that some computers can crash during the printer auto-detection, "
-#~ "turn off \"Auto-detect printers\" to do a printer installation without "
-#~ "auto-detection. Use the \"Expert Mode\" of printerdrake when you want to "
-#~ "set up printing on a remote printer if printerdrake does not list it "
-#~ "automatically."
-#~ msgstr ""
-#~ "\n"
-#~ "Willkommen zum Druckereinrichtungsassistenten\n"
-#~ "\n"
-#~ "Dieser Assistent hilft Ihnen lokale Drucker einzurichten, dass dieser "
-#~ "Rechner bzw. andere in Ihrem Netzwerk darauf drucken können.\n"
-#~ "\n"
-#~ "Bitte schließen sie Ihre(n) Drucker an, und stellen Sie sicher dass das "
-#~ "GerÀt/die GerÀte eingeschaltet ist/sind. BetÀtigen sie die SchaltflÀche "
-#~ "„Weiter“, wenn Sie fortfahren möchten bzw. „Abbruch“, wenn Sie jetzt "
-#~ "keinen Drucker einrichten möchten.\n"
-#~ "\n"
-#~ "In seltenen FĂ€llen kann es zum totalen stenenbleien des Rechners fĂŒhren, "
-#~ "wenn Sie eine Drucker-Selbsterkennung durchfĂŒhren. Schalten Sie diese "
-#~ "einfach aus, wenn Sie einen Drucker ohne Selbsterkennung durchfĂŒhren "
-#~ "wollen. Verwenden Sie den „Expertenmodus“ von PrinterDrake, um einen "
-#~ "entfernten Drucker einzurichten, falls er nicht automatisch aufgefĂŒhrt "
-#~ "wird."
-
-#~ msgid "Auto-Detection of Printers"
-#~ msgstr "Selbsterkennung von Druckern"
-
-#~ msgid ""
-#~ "Printerdrake is able to auto-detect your locally connected parallel and "
-#~ "USB printers for you, but note that on some systems the auto-detection "
-#~ "CAN FREEZE YOUR SYSTEM AND THIS CAN LEAD TO CORRUPTED FILE SYSTEMS! So do "
-#~ "it ON YOUR OWN RISK!\n"
-#~ "\n"
-#~ "Do you really want to get your printers auto-detected?"
-#~ msgstr ""
-#~ "PrinterDrake ist in der Lage Ihre Parallelport- und USB-Drucker selbst\n"
-#~ "zu erkennen und einzurichten. In einigen seltenen FĂ€llen KANN ES JEDOCH\n"
-#~ "ZUM TOTALEN STEHENBLEIBEN DES BETRIEBSSYSTEMS FÜHREN! Verwenden Sie \n"
-#~ "diese Variante also AUF IHR RISIKO!\n"
-#~ "\n"
-#~ "Wollen Sie wirklich, dass PrinterDrake eine Selbsterkennung versucht?"
-
-#~ msgid "Set up printer manually"
-#~ msgstr "Drucker selbst einrichten"
-
-#~ msgid ""
-#~ "Network printers can only be installed after the installation. Choose "
-#~ "\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
-#~ msgstr ""
-#~ "Netzwerkdrucker können erst nach der Installation eingerichtet werden. "
-#~ "WĂ€hlen Sie „Einstellungen/Hardware/Drucker“ im Mandrake Kontrollzentrum."
-
-#~ msgid ""
-#~ "To install network printers, click \"Cancel\", switch to the \"Expert Mode"
-#~ "\", and click \"Add a new printer\" again."
-#~ msgstr ""
-#~ "Um Netzwerkdrucker zu installieren wĂ€en Sie bitte „Abbruch“, wechseln in "
-#~ "den „Expertenmoduns“ und wĂ€hlen erneut „Drucker hinzufĂŒgen“."
-
-#, fuzzy
-#~ msgid ""
-#~ "Is your printer a multi-function device from HP (OfficeJet, PSC, LaserJet "
-#~ "1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart or an HP "
-#~ "LaserJet 2200?"
-#~ msgstr ""
-#~ "Ist Ihr Drucker ein MultifunktionsgerÀt von HP (OfficeJet, PSC, "
-#~ "PhotoSmart, LaserJet 1100/1200/1220/3200/3300 mit Scanner)?"
-
-#~ msgid "Installing HPOJ package..."
-#~ msgstr "Installiere das „HPOJ“-Paket ..."
-
-#~ msgid "Checking device and configuring HPOJ..."
-#~ msgstr "GerÀte untersuchen und HPOJ einrichten ..."
-
-#, fuzzy
-#~ msgid "Installing SANE packages..."
-#~ msgstr "Installiere das „SANE“-Paket ..."
-
-#, fuzzy
-#~ msgid "Installing mtools packages..."
-#~ msgstr "Pakete Installieren ..."
-
-#~ msgid "Scanning on your HP multi-function device"
-#~ msgstr "Scannen mit Ihrem HP-MultifunktionsgerÀt"
-
-#, fuzzy
-#~ msgid "Photo memory card access on your HP multi-function device"
-#~ msgstr "Scannen mit Ihrem HP-MultifunktionsgerÀt"
-
-#~ msgid "Making printer port available for CUPS..."
-#~ msgstr "CUPS den Drucker-Port zugÀnglich machen ..."
-
-#~ msgid "Control Center"
-#~ msgstr "Kontrollzentrum"
-
-#~ msgid "Choose the tool you want to use"
-#~ msgstr "WĂ€hlen Sie das Werkzeug, das Sie verwenden wollen"
-
-#~ msgid "Configure the way the system will alert you"
-#~ msgstr "Stellen Sie ein, wie das System Sie benachrichtigen soll"
-
-#~ msgid "no serial_usb found\n"
-#~ msgstr "Kein „serial_usb“ gefunden\n"
-
-#~ msgid "fsck failed with exit code %d or signal %d"
-#~ msgstr ""
-#~ "Der Dateisystemcheck (fsck) schlug fehl mit dem RĂŒckgabewert %d oder "
-#~ "Signal %d."
-
-#~ msgid "Graphics card identification: %s\n"
-#~ msgstr "Grafikkartenidentifikation: %s\n"
-
-#~ msgid "Choose options for server"
-#~ msgstr "WĂ€hlen Sie die Einstellungen fĂŒr den Server"
-
-#~ msgid "Monitor not configured"
-#~ msgstr "Ihr Monitor ist nicht konfiguriert"
-
-#~ msgid "Graphics card not configured yet"
-#~ msgstr "Ihre Grafikkarte ist noch nicht konfiguriert"
-
-#~ msgid "Resolutions not chosen yet"
-#~ msgstr "Die Auflösungen wurden noch nicht ausgewÀhlt"
-
-#~ msgid ""
-#~ "\n"
-#~ "try to change some parameters"
-#~ msgstr ""
-#~ "\n"
-#~ "Versuchen Sie bitte, einige Einstellungen zu Àndern"
-
-#~ msgid "An error occurred:"
-#~ msgstr "Ein Fehler ist aufgetreten:"
-
-#~ msgid "Leaving in %d seconds"
-#~ msgstr "Verlassen in %d Sekunden"
-
-#~ msgid "Is this the correct setting?"
-#~ msgstr "Ist dies richtig?"
-
-#~ msgid "An error occurred, try to change some parameters"
-#~ msgstr ""
-#~ "Ein Fehler ist aufgetreten. Versuchen Sie bitte, einige Parameter zu "
-#~ "Ă€ndern"
-
-#~ msgid "XFree86 server: %s"
-#~ msgstr "XFree86 Server: %s"
-
-#~ msgid "Show all"
-#~ msgstr "Alle anzeigen"
-
-#~ msgid "Preparing X-Window configuration"
-#~ msgstr "X-Window Konfiguration vorbereiten"
-
-#~ msgid "What do you want to do?"
-#~ msgstr "Was wollen Sie machen?"
-
-#~ msgid "Change Monitor"
-#~ msgstr "Monitor Àndern"
-
-#~ msgid "Change Graphics card"
-#~ msgstr "Grafikkarte Àndern"
-
-#~ msgid "Change Server options"
-#~ msgstr "Server Einstellungen Àndern"
-
-#~ msgid "Change Resolution"
-#~ msgstr "Auflösung Àndern"
-
-#~ msgid "Show information"
-#~ msgstr "Informationen anzeigen"
-
-#~ msgid "Test again"
-#~ msgstr "Nochmals testen"
-
-#~ msgid ""
-#~ "Your HP multi-function device was configured automatically to be able to "
-#~ "scan. Now you can scan from the command line with \"ptal-hp %s scan ..."
-#~ "\". Scanning via a graphical interface or from the GIMP is not supported "
-#~ "yet for your device. More information you will find in the \"/usr/share/"
-#~ "doc/hpoj-0.8/ptal-hp-scan.html\" file on your system. If you have an HP "
-#~ "LaserJet 1100 or 1200 you can only scan when you have the scanner option "
-#~ "installed.\n"
-#~ "\n"
-#~ "Do not use \"scannerdrake\" for this device!"
-#~ msgstr ""
-#~ "Ihr HP-MultifunktionsgerÀt wurde automatisch auch zum Scannen "
-#~ "eingerichtet. Sie können nun in der Kommandozeile mittels „ptal-hp %s "
-#~ "scan ...“ scannen. Zur Zeit existieren leider keine grafischen Werkzeuge, "
-#~ "mit deren Hilfe Sie Scannen können - Ihr MultifunktionsgerÀt wird noch "
-#~ "nicht unterstĂŒtzt. Weitetre Informationen finden Sie in der Datei „/usr/"
-#~ "share/doc/hpoj-0.8/ptal-hp-scan.html“ auf Ihrem Rechner. Falls Sie einen "
-#~ "HP LaserJet 1100 oder 1200 haben, können Sie nur scannen, wenn Sie die "
-#~ "Scanner-Option installiert haben.\n"
-#~ "\n"
-#~ "Verwenden Sie fĂŒr dieses GerĂ€t nicht „ScannerDrake“!"
-
-#~ msgid "Use Hard Drive with daemon"
-#~ msgstr "Festplatte mit DĂ€min verwenden"
-
-#~ msgid "Use FTP with daemon"
-#~ msgstr "FTP mit DĂ€mon verwenden"
-
-#~ msgid "Package List to Install"
-#~ msgstr "Zu installierende Pakete"
-
-#~ msgid "proftpd"
-#~ msgstr "Pro-ftpd"
-
-#~ msgid "sshd"
-#~ msgstr "sshd"
-
-#~ msgid "webmin"
-#~ msgstr "webmin"
-
-#~ msgid "xinetd"
-#~ msgstr "xinetd"
-
-#~ msgid "Setting security level"
-#~ msgstr "Sicherheitsebene einstellen"
-
-#~ msgid "Select a graphics card"
-#~ msgstr "WĂ€hlen Sie Ihre Grafikkarte"
-
-#~ msgid "Choose a X driver"
-#~ msgstr "WĂ€hlen Sie einen X Treiber"
-
-#~ msgid "X driver"
-#~ msgstr "X Treiber"
-
-#~ msgid "Warning: testing this graphics card may freeze your computer"
-#~ msgstr "Warnung: Testen dieser Grafikkarte kann Ihren Rechner anhalten"
-
-#~ msgid "Standard VGA, 640x480 at 60 Hz"
-#~ msgstr "Standard VGA, 640×480 bei 60 Hz"
-
-#~ msgid "Super VGA, 800x600 at 56 Hz"
-#~ msgstr "Super VGA, 800×600 bei 56 Hz"
-
-#~ msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
-#~ msgstr "8514 kompatibel, 1024×768 bei 87 Hz, interlaced (kein 800×600)"
-
-#~ msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
-#~ msgstr "Super VGA, 1024×768 bei 87 Hz, interlaced und 800×600 bei 56 Hz"
-
-#~ msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
-#~ msgstr "Extended Super VGA, 800×600 bei 60 Hz und 640×480 bei 72 Hz"
-
-#~ msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
-#~ msgstr "Non-Interlaced SVGA, 1024×768 bei 60 Hz und 800×600 bei 72 Hz"
-
-#~ msgid "High Frequency SVGA, 1024x768 at 70 Hz"
-#~ msgstr "Hochfrequenz SVGA, 1024×768 bei 70 Hz"
-
-#~ msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
-#~ msgstr "Mehrfrequenz mit der FĂ€higkeit fĂŒr 1280×1024 bei 60 Hz"
-
-#~ msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
-#~ msgstr "Mehrfrequenz mit der FĂ€higkeit fĂŒr 1280×1024 bei 74 Hz"
-
-#~ msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
-#~ msgstr "Mehrfrequenz mit der FĂ€higkeit fĂŒr 1280×1024 bei 76 Hz"
-
-#~ msgid "Monitor that can do 1600x1200 at 70 Hz"
-#~ msgstr "Ihr Monitor kann 1600×1200 bei 70 Hz darstellen"
-
-#~ msgid "Monitor that can do 1600x1200 at 76 Hz"
-#~ msgstr "Ihr Monitor kann 1600×1200 bei 76 Hz darstellen"
-
-#~ msgid ""
-#~ "The total size for the groups you have selected is approximately %d MB.\n"
-#~ msgstr "Die GesamtgrĂ¶ĂŸe der zu installierenden Pakete betrĂ€gt etwa %d MB.\n"
-
-#~ msgid ""
-#~ "If you wish to install less than this size,\n"
-#~ "select the percentage of packages that you want to install.\n"
-#~ "\n"
-#~ "A low percentage will install only the most important packages;\n"
-#~ "a percentage of 100%% will install all selected packages."
-#~ msgstr ""
-#~ "Falls Sie weniger als diese Menge installieren wollen, \n"
-#~ "geben Sie (in Prozent) an, wie viele Pakete Sie installieren wollen.\n"
-#~ "\n"
-#~ "Ein geringer Prozentsatz installiert nur die wichtigsten Pakete;\n"
-#~ "100%% installiert alle ausgewÀhlten Pakete."
-
-#~ msgid ""
-#~ "You have space on your disk for only %d%% of these packages.\n"
-#~ "\n"
-#~ "If you wish to install less than this,\n"
-#~ "select the percentage of packages that you want to install.\n"
-#~ "A low percentage will install only the most important packages;\n"
-#~ "a percentage of %d%% will install as many packages as possible."
-#~ msgstr ""
-#~ "Sie haben nur Platz fĂŒr %d%% der ausgewĂ€hlten Pakete. \n"
-#~ "\n"
-#~ "Falls Sie weniger als diese Menge installieren wollen, \n"
-#~ "geben Sie (in Prozent) an, wie viele Pakete Sie installieren wollen.\n"
-#~ "Ein geringer Prozentsatz installiert nur die wichtigsten Pakete;\n"
-#~ "%d%% installiert so viele Pakete wie möglich."
-
-#~ msgid "You will be able to choose them more specifically in the next step."
-#~ msgstr "Im nÀchsten Schritt können Sie genauer auswÀhlen"
-
-#~ msgid "Percentage of packages to install"
-#~ msgstr "Prozent der zu installierenden Pakete"
+#~ msgid "%s"
+#~ msgstr "%s"
diff --git a/perl-install/share/po/el.po b/perl-install/share/po/el.po
index 3b93b6889..b42335bd8 100644
--- a/perl-install/share/po/el.po
+++ b/perl-install/share/po/el.po
@@ -4,8 +4,8 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: drakfloppy 0.43\n"
-"POT-Creation-Date: 2002-08-21 15:44+0200\n"
+"Project-Id-Version: DrakX\n"
+"POT-Creation-Date: 2002-09-02 20:14+0200\n"
"PO-Revision-Date: 2001-08-22 22:44+0300\n"
"Last-Translator: Thanos Kyritsis <djart@hellug.gr>\n"
"Language-Team: Greek <nls@tux.hellug.gr>\n"
@@ -50,19 +50,19 @@ msgstr "32 MB"
msgid "64 MB or more"
msgstr "64 MB Ț đćńéóóüôćńá"
-#: ../../Xconfig/card.pm_.c:201
+#: ../../Xconfig/card.pm_.c:203
msgid "Choose a X server"
msgstr "ĆđéëĘîôć X server (ïäçăüò êÜńôáò ăńáöéêțí)"
-#: ../../Xconfig/card.pm_.c:201
+#: ../../Xconfig/card.pm_.c:203
msgid "X server"
msgstr "ćîőđçńćôçôȚò X Window"
-#: ../../Xconfig/card.pm_.c:228
+#: ../../Xconfig/card.pm_.c:230
msgid "Multi-head configuration"
msgstr "Ńęèìéóç đïëëțí êćöáëțí"
-#: ../../Xconfig/card.pm_.c:229
+#: ../../Xconfig/card.pm_.c:231
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
@@ -70,27 +70,27 @@ msgstr ""
"Ôï óęóôçìÜ óáò őđïóôçńßæćé ńęèìéóç đïëëáđëțí êćöáëțí.\n"
"Ôß èĘëćôć íá êÜíćôć;"
-#: ../../Xconfig/card.pm_.c:284
+#: ../../Xconfig/card.pm_.c:286
msgid "Select the memory size of your graphics card"
msgstr "ÌĘăćèïò ìíȚìçò êÜńôáò ăńáöéêțí"
-#: ../../Xconfig/card.pm_.c:345
+#: ../../Xconfig/card.pm_.c:347
msgid "XFree configuration"
msgstr "Ńőèìßóćéò XFree"
-#: ../../Xconfig/card.pm_.c:347
+#: ../../Xconfig/card.pm_.c:349
msgid "Which configuration of XFree do you want to have?"
msgstr "Ôß ôęđïő XFree èĘëćôć íá Ęśćôć;"
-#: ../../Xconfig/card.pm_.c:379
+#: ../../Xconfig/card.pm_.c:381
msgid "Configure all heads independently"
msgstr "Ńęèìéóç üëùí ôùí êćöáëțí áíćîÜńôçôá"
-#: ../../Xconfig/card.pm_.c:380
+#: ../../Xconfig/card.pm_.c:382
msgid "Use Xinerama extension"
msgstr "ŚńȚóç ćđĘêôáóçò Xinerama"
-#: ../../Xconfig/card.pm_.c:384
+#: ../../Xconfig/card.pm_.c:386
#, fuzzy, c-format
msgid "Configure only card \"%s\"%s"
msgstr "Ńęèìéóç ìüíï ôçò êÜńôáò \"%s\" (%s)"
@@ -101,13 +101,13 @@ msgstr "Ńęèìéóç ìüíï ôçò êÜńôáò \"%s\" (%s)"
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:435
+#: ../../Xconfig/card.pm_.c:410 ../../Xconfig/card.pm_.c:436
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s with 3D hardware acceleration"
msgstr "XFree %s ìć ćđéôÜśőíóç ôńéóäéÜóôáôùí ăńáöéêțí"
-#: ../../Xconfig/card.pm_.c:412
+#: ../../Xconfig/card.pm_.c:413
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -118,19 +118,19 @@ msgstr ""
"äßíïőí \n"
"êáëęôćńç őđïóôȚńéîç ăéá äéóäéÜóôáôá ăńáöéêÜ."
-#: ../../Xconfig/card.pm_.c:414 ../../Xconfig/card.pm_.c:437
+#: ../../Xconfig/card.pm_.c:415 ../../Xconfig/card.pm_.c:438
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr ""
"Ç êÜńôá ăńáöéêțí óáò őđïóôçńßæćé ćđéôÜśőíóç ôńéóäéÜóôáôùí ăńáöéêțí óôá XFree "
"%s."
-#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:443
+#: ../../Xconfig/card.pm_.c:423 ../../Xconfig/card.pm_.c:444
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s ìć ĐĆÉŃÁÌÁÔÉÊÇ ćđéôÜśőíóç ôńéóäéÜóôáôùí ăńáöéêțí"
-#: ../../Xconfig/card.pm_.c:425
+#: ../../Xconfig/card.pm_.c:426
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -144,7 +144,7 @@ msgstr ""
"őđïóôȚńéîç\n"
"ăéá äéóäéÜóôáôá ăńáöéêÜ."
-#: ../../Xconfig/card.pm_.c:428 ../../Xconfig/card.pm_.c:445
+#: ../../Xconfig/card.pm_.c:429 ../../Xconfig/card.pm_.c:446
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
@@ -154,53 +154,54 @@ msgstr ""
"%s,\n"
"ĐŃÏÓÏŚÇ: ĐĆÉŃÁÌÁÔÉÊÇ ŐĐÏÓÔÇŃÉÎÇ - ÌĐÏŃĆÉ ÍÁ ĐÁĂÙÓĆÉ ÔÏÍ ŐĐÏËÏĂÉÓÔÇ ÓÁÓ!"
-#: ../../Xconfig/card.pm_.c:451
+#: ../../Xconfig/card.pm_.c:452
msgid "Xpmac (installation display driver)"
msgstr "Xpmac (ïäçăüò đńïâïëȚò ćăêáôÜóôáóçò)"
-#: ../../Xconfig/main.pm_.c:78 ../../Xconfig/main.pm_.c:79
-#: ../../Xconfig/monitor.pm_.c:94 ../../any.pm_.c:974
+#: ../../Xconfig/main.pm_.c:76 ../../Xconfig/main.pm_.c:77
+#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:977
msgid "Custom"
msgstr "ĐńïóáńìïóìĘíï"
-#: ../../Xconfig/main.pm_.c:104
+#: ../../Xconfig/main.pm_.c:102
#, fuzzy
msgid "Graphic Card"
msgstr "ÊÜńôá ăńáöéêțí"
-#: ../../Xconfig/main.pm_.c:107 ../../Xconfig/monitor.pm_.c:91
+#: ../../Xconfig/main.pm_.c:105 ../../Xconfig/monitor.pm_.c:93
msgid "Monitor"
msgstr "Ïèüíç"
-#: ../../Xconfig/main.pm_.c:110 ../../Xconfig/resolution_and_depth.pm_.c:209
+#: ../../Xconfig/main.pm_.c:108 ../../Xconfig/resolution_and_depth.pm_.c:209
msgid "Resolution"
msgstr "ÁíÜëőóç"
-#: ../../Xconfig/main.pm_.c:114
+#: ../../Xconfig/main.pm_.c:113
msgid "Test"
msgstr ""
-#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:59
-#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/removable.pm_.c:25
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:63
+#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/removable.pm_.c:25
#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "ĆđéëïăĘò"
#: ../../Xconfig/main.pm_.c:121 ../../Xconfig/resolution_and_depth.pm_.c:268
-#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:281
+#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:275
#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
-#: ../../interactive.pm_.c:351 ../../interactive/http.pm_.c:104
+#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:104
#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
-#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:156
-#: ../../my_gtk.pm_.c:284 ../../my_gtk.pm_.c:307
-#: ../../standalone/drakbackup_.c:3324 ../../standalone/drakbackup_.c:3419
-#: ../../standalone/drakbackup_.c:3438
+#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:159
+#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310
+#: ../../standalone/drakbackup_.c:3972 ../../standalone/drakbackup_.c:4067
+#: ../../standalone/drakbackup_.c:4086
msgid "Ok"
msgstr "Ïê"
#: ../../Xconfig/main.pm_.c:121 ../../diskdrake/dav.pm_.c:24
-#: ../../printerdrake.pm_.c:2933 ../../standalone/logdrake_.c:224
+#: ../../harddrake/ui.pm_.c:98 ../../printerdrake.pm_.c:3155
+#: ../../standalone/logdrake_.c:224
msgid "Quit"
msgstr "žîïäïò"
@@ -217,28 +218,28 @@ msgstr ""
"\n"
"%s"
-#: ../../Xconfig/monitor.pm_.c:91
+#: ../../Xconfig/monitor.pm_.c:93
msgid "Choose a monitor"
msgstr "ĆđéëĘîôć ïèüíç"
-#: ../../Xconfig/monitor.pm_.c:95
+#: ../../Xconfig/monitor.pm_.c:97
msgid "Plug'n Play"
msgstr ""
-#: ../../Xconfig/monitor.pm_.c:96 ../../mouse.pm_.c:45
+#: ../../Xconfig/monitor.pm_.c:98 ../../mouse.pm_.c:46
msgid "Generic"
msgstr "Ăćíéêü"
-#: ../../Xconfig/monitor.pm_.c:97 ../../harddrake/ui.pm_.c:36
+#: ../../Xconfig/monitor.pm_.c:99 ../../harddrake/ui.pm_.c:37
#, fuzzy
msgid "Vendor"
msgstr "Áêęńùóç ôćëćőôáßáò đńÜîçò"
-#: ../../Xconfig/monitor.pm_.c:107
+#: ../../Xconfig/monitor.pm_.c:109
msgid "Plug'n Play probing failed. Please choose a precise monitor"
msgstr ""
-#: ../../Xconfig/monitor.pm_.c:112
+#: ../../Xconfig/monitor.pm_.c:114
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -262,11 +263,11 @@ msgstr ""
"êáôáóôńïöȚò\n"
"ôçò ïèüíçò óáò. Áí äćí ćßóôć óßăïőńïé, êÜíôć ìéá óőíôçńçôéêȚ ćđéëïăȚ."
-#: ../../Xconfig/monitor.pm_.c:119
+#: ../../Xconfig/monitor.pm_.c:121
msgid "Horizontal refresh rate"
msgstr "Óőśíüôçôá ïńéæüíôéáò áíáíĘùóçò"
-#: ../../Xconfig/monitor.pm_.c:120
+#: ../../Xconfig/monitor.pm_.c:122
msgid "Vertical refresh rate"
msgstr "Óőśíüôçôá êáôáêüńőöçò áíáíĘùóçò"
@@ -303,36 +304,41 @@ msgstr "ĆđéëĘîôć áíÜëőóç êáé âÜèïò śńțìáôïò"
msgid "Graphics card: %s"
msgstr "ÊÜńôá ăńáöéêțí: %s"
-#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1015
-#: ../../bootlook.pm_.c:334 ../../diskdrake/smbnfs_gtk.pm_.c:87
-#: ../../install_steps_gtk.pm_.c:412 ../../install_steps_gtk.pm_.c:470
-#: ../../install_steps_interactive.pm_.c:576 ../../interactive.pm_.c:142
-#: ../../interactive.pm_.c:351 ../../interactive/http.pm_.c:105
+#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1018
+#: ../../bootlook.pm_.c:338 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:406 ../../install_steps_gtk.pm_.c:464
+#: ../../install_steps_interactive.pm_.c:560 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:105
#: ../../interactive/newt.pm_.c:174 ../../interactive/stdio.pm_.c:39
-#: ../../interactive/stdio.pm_.c:143 ../../my_gtk.pm_.c:155
-#: ../../my_gtk.pm_.c:159 ../../my_gtk.pm_.c:284
-#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1990
-#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3278
-#: ../../standalone/drakbackup_.c:3311 ../../standalone/drakbackup_.c:3337
-#: ../../standalone/drakbackup_.c:3364 ../../standalone/drakbackup_.c:3391
-#: ../../standalone/drakbackup_.c:3451 ../../standalone/drakbackup_.c:3478
-#: ../../standalone/drakbackup_.c:3504 ../../standalone/drakconnect_.c:115
-#: ../../standalone/drakconnect_.c:147 ../../standalone/drakconnect_.c:289
-#: ../../standalone/drakconnect_.c:537 ../../standalone/drakconnect_.c:679
-#: ../../standalone/drakfloppy_.c:234 ../../standalone/drakfloppy_.c:383
-#: ../../standalone/drakfont_.c:970 ../../standalone/drakgw_.c:598
-#: ../../standalone/logdrake_.c:224 ../../standalone/logdrake_.c:528
-#: ../../standalone/tinyfirewall_.c:64
+#: ../../interactive/stdio.pm_.c:143 ../../my_gtk.pm_.c:158
+#: ../../my_gtk.pm_.c:162 ../../my_gtk.pm_.c:287
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:2124
+#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3926
+#: ../../standalone/drakbackup_.c:3959 ../../standalone/drakbackup_.c:3985
+#: ../../standalone/drakbackup_.c:4012 ../../standalone/drakbackup_.c:4039
+#: ../../standalone/drakbackup_.c:4099 ../../standalone/drakbackup_.c:4126
+#: ../../standalone/drakbackup_.c:4156 ../../standalone/drakbackup_.c:4182
+#: ../../standalone/drakconnect_.c:115 ../../standalone/drakconnect_.c:147
+#: ../../standalone/drakconnect_.c:289 ../../standalone/drakconnect_.c:537
+#: ../../standalone/drakconnect_.c:679 ../../standalone/drakfloppy_.c:234
+#: ../../standalone/drakfloppy_.c:383 ../../standalone/drakfont_.c:970
+#: ../../standalone/drakgw_.c:536 ../../standalone/logdrake_.c:224
+#: ../../standalone/logdrake_.c:526
msgid "Cancel"
msgstr "¶êőńï"
-#: ../../Xconfig/test.pm_.c:26
+#: ../../Xconfig/test.pm_.c:30
+msgid "Test of the configuration"
+msgstr "ÄïêéìȚ ńőèìßóćùí"
+
+#: ../../Xconfig/test.pm_.c:31
msgid "Do you want to test the configuration?"
msgstr "ÈĘëćôć íá äïêéìÜóćôć ôéò ńőèìßóćéò;"
-#: ../../Xconfig/test.pm_.c:26
-msgid "Test of the configuration"
-msgstr "ÄïêéìȚ ńőèìßóćùí"
+#: ../../Xconfig/test.pm_.c:31
+#, fuzzy
+msgid "Warning: testing this graphic card may freeze your computer"
+msgstr "ĐńïóïśȚ: Ç äïêéìȚ ćßíáé ćđéêßíäőíç óć áőôȚ ôçí êÜńôá ăńáöéêțí"
#: ../../Xconfig/various.pm_.c:29
#, c-format
@@ -469,26 +475,22 @@ msgstr "Ćêêßíçóç áđü ôï DOS/Windows (loadlin)"
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:158 ../../any.pm_.c:190
+#: ../../any.pm_.c:159 ../../any.pm_.c:190
msgid "Bootloader main options"
msgstr "ÂáóéêĘò ćđéëïăĘò đńïăńÜììáôïò ćêêßíçóçò"
-#: ../../any.pm_.c:159 ../../any.pm_.c:191
+#: ../../any.pm_.c:160 ../../any.pm_.c:191
msgid "Bootloader to use"
msgstr "Bootloader ăéá śńȚóç"
-#: ../../any.pm_.c:161
+#: ../../any.pm_.c:162
msgid "Bootloader installation"
msgstr "ĆăêáôÜóôáóç đńïăńÜììáôïò ćêêßíçóçò"
-#: ../../any.pm_.c:163 ../../any.pm_.c:193
+#: ../../any.pm_.c:164 ../../any.pm_.c:193
msgid "Boot device"
msgstr "ÓőóêćőȚ ćêêßíçóçò"
-#: ../../any.pm_.c:164
-msgid "LBA (doesn't work on old BIOSes)"
-msgstr "LBA (äćí ëćéôïőńăćß ìć đáëáéüôćńá BIOS)"
-
#: ../../any.pm_.c:165
msgid "Compact"
msgstr "ÓőìđáăȚò"
@@ -505,16 +507,17 @@ msgstr "ÁíÜëőóç ïèüíçò"
msgid "Delay before booting default image"
msgstr "ÊáèőóôĘńçóç đńéí ôçí ćêêéíçóç"
-#: ../../any.pm_.c:170 ../../any.pm_.c:786
+#: ../../any.pm_.c:170 ../../any.pm_.c:788
#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1111 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:743 ../../printerdrake.pm_.c:858
-#: ../../standalone/drakconnect_.c:624 ../../standalone/drakconnect_.c:649
+#: ../../install_steps_interactive.pm_.c:1096 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:850 ../../printerdrake.pm_.c:965
+#: ../../standalone/drakbackup_.c:3528 ../../standalone/drakconnect_.c:624
+#: ../../standalone/drakconnect_.c:649
msgid "Password"
msgstr "Óőíèçìáôéêü"
-#: ../../any.pm_.c:171 ../../any.pm_.c:787
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../any.pm_.c:171 ../../any.pm_.c:789
+#: ../../install_steps_interactive.pm_.c:1097
msgid "Password (again)"
msgstr "Óőíèçìáôéêü (îáíÜ)"
@@ -550,14 +553,14 @@ msgstr ""
"Ç ćđéëïăȚ ``Áđáăüńćőóç ćđéëïățí ăńáììȚò ćíôïëȚò'' ćßíáé Üśńçóôç śùńßò "
"óőíèçìáôéêü"
-#: ../../any.pm_.c:184 ../../any.pm_.c:762
-#: ../../diskdrake/interactive.pm_.c:1180
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../any.pm_.c:184 ../../any.pm_.c:764
+#: ../../diskdrake/interactive.pm_.c:1191
+#: ../../install_steps_interactive.pm_.c:1091
msgid "Please try again"
msgstr "Đáńáêáëț đńïóđáèȚóôć îáíÜ"
-#: ../../any.pm_.c:184 ../../any.pm_.c:762
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../any.pm_.c:184 ../../any.pm_.c:764
+#: ../../install_steps_interactive.pm_.c:1091
msgid "The passwords do not match"
msgstr "Ôá óőíèçìáôéêÜ ćßíáé áíüìïéá"
@@ -602,16 +605,16 @@ msgstr ""
"ŐđÜńśïőí ïé áêüëïőèćò ćđéëïăĘò.\n"
"Ìđïńćßôć íá đńïóèĘóćôć êé Üëëćò Ț íá áëëÜîćôć ôéò őđÜńśïőóćò."
-#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1483
-#: ../../standalone/drakbackup_.c:1596 ../../standalone/drakfont_.c:1011
+#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1558
+#: ../../standalone/drakbackup_.c:1671 ../../standalone/drakfont_.c:1011
#: ../../standalone/drakfont_.c:1054
msgid "Add"
msgstr "ĐńïóèȚêç"
-#: ../../any.pm_.c:257 ../../any.pm_.c:774 ../../diskdrake/dav.pm_.c:60
+#: ../../any.pm_.c:257 ../../any.pm_.c:776 ../../diskdrake/dav.pm_.c:64
#: ../../diskdrake/hd_gtk.pm_.c:153 ../../diskdrake/removable.pm_.c:27
#: ../../diskdrake/smbnfs_gtk.pm_.c:88 ../../interactive/http.pm_.c:153
-#: ../../standalone/drakbackup_.c:2696
+#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2772
msgid "Done"
msgstr "Ïëïêëçńțèçêć"
@@ -623,7 +626,7 @@ msgstr "Ôńïđïđïßçóç"
msgid "Which type of entry do you want to add?"
msgstr "Ôß ôęđïő ćđéëïăȚ èĘëćôć íá đńïóèĘóćôć"
-#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1630
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1705
msgid "Linux"
msgstr "Linux"
@@ -718,13 +721,13 @@ msgstr "žśćôć áëëïí;"
msgid "Do you have any %s interfaces?"
msgstr "žśćôć êÜđïéïí đńïóáńìïăĘá %s;"
-#: ../../any.pm_.c:660 ../../any.pm_.c:821 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:283
+#: ../../any.pm_.c:660 ../../any.pm_.c:823 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:286
msgid "No"
msgstr "Œśé"
-#: ../../any.pm_.c:660 ../../any.pm_.c:820 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:283
+#: ../../any.pm_.c:660 ../../any.pm_.c:822 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:286
msgid "Yes"
msgstr "Íáé"
@@ -822,39 +825,47 @@ msgstr ""
msgid "access to administrative files"
msgstr ""
-#: ../../any.pm_.c:758
+#: ../../any.pm_.c:754
+msgid "access to network tools"
+msgstr ""
+
+#: ../../any.pm_.c:755
+msgid "access to compilation tools"
+msgstr ""
+
+#: ../../any.pm_.c:760
#, c-format
msgid "(already added %s)"
msgstr "(ôï %s Ęśćé Țäç đńïóôćèćß)"
-#: ../../any.pm_.c:763
+#: ../../any.pm_.c:765
msgid "This password is too simple"
msgstr "Ôï óőíèçìáôéêü ćßíáé đïëę áđëü"
-#: ../../any.pm_.c:764
+#: ../../any.pm_.c:766
msgid "Please give a user name"
msgstr "Đáńáêáëț ćéóÜăćôć êùäéêü üíïìá"
-#: ../../any.pm_.c:765
+#: ../../any.pm_.c:767
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
"Ôï êùäéêü üíïìá ìđïńćß íá đćńéĘśćé ìüíï đćæÜ ăńÜììáôá, áńéèìïęò, `-' êáé `_'"
-#: ../../any.pm_.c:766
+#: ../../any.pm_.c:768
#, fuzzy
msgid "The user name is too long"
msgstr "Áőôü ôï êùäéêü üíïìá őđÜńśćé Țäç"
-#: ../../any.pm_.c:767
+#: ../../any.pm_.c:769
msgid "This user name is already added"
msgstr "Áőôü ôï êùäéêü üíïìá őđÜńśćé Țäç"
-#: ../../any.pm_.c:771
+#: ../../any.pm_.c:773
msgid "Add user"
msgstr "ĐńïóèȚêç śńȚóôç"
-#: ../../any.pm_.c:772
+#: ../../any.pm_.c:774
#, c-format
msgid ""
"Enter a user\n"
@@ -863,32 +874,32 @@ msgstr ""
"ĆéóÜăćôć śńȚóôç\n"
"%s"
-#: ../../any.pm_.c:773
+#: ../../any.pm_.c:775
msgid "Accept user"
msgstr "ÁđïäïśȚ śńȚóôç"
-#: ../../any.pm_.c:784
+#: ../../any.pm_.c:786
msgid "Real name"
msgstr "Đńáăìáôéêü üíïìá"
-#: ../../any.pm_.c:785 ../../printerdrake.pm_.c:742
-#: ../../printerdrake.pm_.c:857
+#: ../../any.pm_.c:787 ../../printerdrake.pm_.c:849
+#: ../../printerdrake.pm_.c:964
msgid "User name"
msgstr "Êùäéêü üíïìá"
-#: ../../any.pm_.c:788
+#: ../../any.pm_.c:790
msgid "Shell"
msgstr "Öëïéüò (shell)"
-#: ../../any.pm_.c:790
+#: ../../any.pm_.c:792
msgid "Icon"
msgstr "Ćéêïíßäéï"
-#: ../../any.pm_.c:817
+#: ../../any.pm_.c:819
msgid "Autologin"
msgstr "Áőôüìáôç óęíäćóç (Autologin)"
-#: ../../any.pm_.c:818
+#: ../../any.pm_.c:820
#, fuzzy
msgid ""
"I can set up your computer to automatically log on one user.\n"
@@ -898,20 +909,20 @@ msgstr ""
"ôçí ćêêßíçóç óć Ęíáí óőăêćêńéìĘíï śńȚóôç.\n"
"ĆÜí äćí èĘëćôć íá óőìâáßíćé áőôü, đáôȚóôć óôï êïőìđß áêęńùóçò."
-#: ../../any.pm_.c:822
+#: ../../any.pm_.c:824
msgid "Choose the default user:"
msgstr "ĆđéëĘîôć ôïí ćî' ïńéóìïę śńȚóôç:"
-#: ../../any.pm_.c:823
+#: ../../any.pm_.c:825
msgid "Choose the window manager to run:"
msgstr "ĆđéëĘîôć ôïí äéáśćéńéóôȚ đáńáèęńùí đïő èĘëćôć íá śńçóéìïđïéȚóćôć"
-#: ../../any.pm_.c:838
+#: ../../any.pm_.c:840
#, fuzzy
msgid "Please choose a language to use."
msgstr "Đáńáêáëț ćđéëĘîôć ìéá ăëțóóá."
-#: ../../any.pm_.c:840
+#: ../../any.pm_.c:842
msgid ""
"Mandrake Linux can support multiple languages. Select\n"
"the languages you would like to install. They will be available\n"
@@ -920,39 +931,39 @@ msgstr ""
"Ìđïńćßôć íá ćđéëĘîćôć êáé Üëëćò ăëțóóćò đïő èá ćßíáé äéáèĘóéìćò ìćôÜ ôï "
"đĘńáò ôçò ćăêáôÜóôáóçò"
-#: ../../any.pm_.c:854 ../../install_steps_interactive.pm_.c:708
+#: ../../any.pm_.c:856 ../../install_steps_interactive.pm_.c:692
#: ../../standalone/drakxtv_.c:73
msgid "All"
msgstr "Œëá"
-#: ../../any.pm_.c:974
+#: ../../any.pm_.c:977
#, fuzzy
msgid "Allow all users"
msgstr "ĐńïóèȚêç śńȚóôç"
-#: ../../any.pm_.c:974
+#: ../../any.pm_.c:977
#, fuzzy
msgid "No sharing"
msgstr "Ćêêßíçóç CUPS"
-#: ../../any.pm_.c:984 ../../standalone.pm_.c:57
+#: ../../any.pm_.c:987 ../../install_any.pm_.c:1183 ../../standalone.pm_.c:58
#, fuzzy, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr ""
"Áőôü ôï đáêĘôï đńĘđćé íá áíáâáèìéóôćß\n"
"Ćßóôć óßăïőńïò üôé èĘëćôć íá ôï áđïćđéëĘîćôć;"
-#: ../../any.pm_.c:987
+#: ../../any.pm_.c:990
msgid ""
"You can export using NFS or Samba. Please select which you'd like to use."
msgstr ""
-#: ../../any.pm_.c:995 ../../standalone.pm_.c:61
+#: ../../any.pm_.c:998 ../../install_any.pm_.c:1188 ../../standalone.pm_.c:63
#, c-format
msgid "Mandatory package %s is missing"
msgstr ""
-#: ../../any.pm_.c:1001
+#: ../../any.pm_.c:1004
msgid ""
"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
@@ -961,42 +972,42 @@ msgid ""
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:1015
+#: ../../any.pm_.c:1018
msgid "Launch userdrake"
msgstr ""
-#: ../../any.pm_.c:1017
+#: ../../any.pm_.c:1020
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
msgstr ""
-#: ../../any.pm_.c:1068
+#: ../../any.pm_.c:1071
msgid "Welcome To Crackers"
msgstr "Êáëțò Țńèáôć óôïőò Crackers"
-#: ../../any.pm_.c:1069
+#: ../../any.pm_.c:1072
msgid "Poor"
msgstr "Öôùśü"
-#: ../../any.pm_.c:1070 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1073 ../../mouse.pm_.c:31
msgid "Standard"
msgstr "Ôőđéêü"
-#: ../../any.pm_.c:1071
+#: ../../any.pm_.c:1074
msgid "High"
msgstr "Őűçëü"
-#: ../../any.pm_.c:1072
+#: ../../any.pm_.c:1075
#, fuzzy
msgid "Higher"
msgstr "Őűçëü"
-#: ../../any.pm_.c:1073
+#: ../../any.pm_.c:1076
msgid "Paranoid"
msgstr "Đáńáíïúêü"
-#: ../../any.pm_.c:1076
+#: ../../any.pm_.c:1079
msgid ""
"This level is to be used with care. It makes your system more easy to use,\n"
"but very sensitive: it must not be used for a machine connected to others\n"
@@ -1007,7 +1018,7 @@ msgstr ""
"óęóôçìá\n"
"óőíäćäćìĘíï óôï Internet Ț LAN. Äćí őđÜńśïőí ëĘîćéò êëćéäéÜ."
-#: ../../any.pm_.c:1079
+#: ../../any.pm_.c:1082
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -1015,7 +1026,7 @@ msgstr ""
"Ôțńá őđÜńśïőí ëĘîćéò êëćéäéÜ, áëëÜ ç śńȚóç ôïő óőóôȚìáôïò óć äßêôőï \n"
"äćí óőíßóôáôáé."
-#: ../../any.pm_.c:1080
+#: ../../any.pm_.c:1083
#, fuzzy
msgid ""
"This is the standard security recommended for a computer that will be used "
@@ -1024,13 +1035,13 @@ msgstr ""
"Áőôü ćßíáé ôï óőíçèéóìĘíï ćđßđćäï áóöáëćßáò ăéá Ęíá óęóôçìá đïő èá óőíäćèćß\n"
"ùò đćëÜôçò óôï Internet. ŐđÜńśïőí ôțńá Ęëćăśïé áóöáëćßáò."
-#: ../../any.pm_.c:1081
+#: ../../any.pm_.c:1084
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr ""
-#: ../../any.pm_.c:1082
+#: ../../any.pm_.c:1085
#, fuzzy
msgid ""
"With this security level, the use of this system as a server becomes "
@@ -1044,7 +1055,7 @@ msgstr ""
"Internet ùò ćîőđçńćôçôȚ. Ç áóöÜëćéá ćßíáé áńêćôÜ őűçëȚ țóôć íá äĘśćôáé\n"
"ôáőôüśńïíćò óőíäĘóćéò áđü đïëëïęò đćëÜôćò."
-#: ../../any.pm_.c:1085
+#: ../../any.pm_.c:1088
#, fuzzy
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
@@ -1053,32 +1064,32 @@ msgstr ""
"ÁóöÜëćéá ćđéđĘäïő 4, ìć ôï óęóôçìá ôćëćßùò êëćéóôü. ÁóöÜëćéá \n"
"óôï ìĘăéóôï äőíáôü."
-#: ../../any.pm_.c:1091
+#: ../../any.pm_.c:1094
#, fuzzy
msgid "DrakSec Basic Options"
msgstr "ĆđéëïăĘò"
-#: ../../any.pm_.c:1092
+#: ../../any.pm_.c:1095
#, fuzzy
msgid "Please choose the desired security level"
msgstr "ĆđéëĘîôć ćđßđćäï áóöáëćßáò"
-#: ../../any.pm_.c:1095
+#: ../../any.pm_.c:1098
#, fuzzy
msgid "Security level"
msgstr "Ńęèìéóç ćđéđĘäïő áóöáëćßáò"
-#: ../../any.pm_.c:1097
+#: ../../any.pm_.c:1100
#, fuzzy
msgid "Use libsafe for servers"
msgstr "Ńőèìßóćéò X server"
-#: ../../any.pm_.c:1098
+#: ../../any.pm_.c:1101
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
-#: ../../any.pm_.c:1099
+#: ../../any.pm_.c:1102
msgid "Security Administrator (login or email)"
msgstr ""
@@ -1119,57 +1130,57 @@ msgstr ""
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:935
+#: ../../bootloader.pm_.c:932
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Welcome to GRUB the operating system chooser!"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:938
+#: ../../bootloader.pm_.c:935
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "Use the %c and %c keys for selecting which entry is highlighted."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:941
+#: ../../bootloader.pm_.c:938
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Press enter to boot the selected OS, 'e' to edit the"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:941
msgid "commands before booting, or 'c' for a command-line."
msgstr "commands before booting, or 'c' for a command-line."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:947
+#: ../../bootloader.pm_.c:944
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "The highlighted entry will be booted automatically in %d seconds."
-#: ../../bootloader.pm_.c:951
+#: ../../bootloader.pm_.c:948
msgid "not enough room in /boot"
msgstr "äćí őđÜńśćé áńêćôüò śțńïò óôï /boot"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1051
+#: ../../bootloader.pm_.c:1048
msgid "Desktop"
msgstr "Desktop"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1053
+#: ../../bootloader.pm_.c:1050
msgid "Start Menu"
msgstr "Start Menu"
-#: ../../bootloader.pm_.c:1072
+#: ../../bootloader.pm_.c:1069
#, fuzzy, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "Đïę èĘëćôć íá ćăêáôáóôȚóćôć ôï đńüăńáììá ćêêßíçóçò;"
-#: ../../bootlook.pm_.c:45
+#: ../../bootlook.pm_.c:45 ../../standalone/draksplash_.c:25
msgid "no help implemented yet.\n"
msgstr "äćí őđÜńśćé âïȚèćéá äéáèĘóéìç áêüìá.\n"
@@ -1177,8 +1188,8 @@ msgstr "äćí őđÜńśćé âïȚèćéá äéáèĘóéìç áêüìá.\n"
msgid "Boot Style Configuration"
msgstr "Boot Ôęđïő Ńęèìéóç"
-#: ../../bootlook.pm_.c:78 ../../harddrake/ui.pm_.c:59
-#: ../../harddrake/ui.pm_.c:60 ../../standalone/drakfloppy_.c:81
+#: ../../bootlook.pm_.c:78 ../../harddrake/ui.pm_.c:62
+#: ../../harddrake/ui.pm_.c:63 ../../standalone/drakfloppy_.c:81
#: ../../standalone/logdrake_.c:101
msgid "/_File"
msgstr "/_Áńśćßï"
@@ -1188,7 +1199,7 @@ msgstr "/_Áńśćßï"
msgid "/File/_Quit"
msgstr "/Áńśćßï/ž_îïäïò"
-#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:60
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:63
#: ../../standalone/drakfloppy_.c:82 ../../standalone/logdrake_.c:107
msgid "<control>Q"
msgstr "<control>Q"
@@ -1230,94 +1241,101 @@ msgstr "ĆăêáôÜóôáóç óőóôȚìáôïò"
msgid "Display theme under console"
msgstr ""
-#: ../../bootlook.pm_.c:166
+#: ../../bootlook.pm_.c:145
+#, fuzzy
+msgid "Create new theme"
+msgstr "Äçìéïőńăßá íĘáò êáôÜôìçóçò"
+
+#: ../../bootlook.pm_.c:169
msgid "Can't create Bootsplash preview"
msgstr ""
-#: ../../bootlook.pm_.c:166 ../../bootlook.pm_.c:184 ../../bootlook.pm_.c:187
-#: ../../bootlook.pm_.c:190 ../../bootlook.pm_.c:220 ../../bootlook.pm_.c:222
-#: ../../bootlook.pm_.c:232 ../../bootlook.pm_.c:241 ../../bootlook.pm_.c:248
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:336
-#: ../../diskdrake/interactive.pm_.c:351 ../../diskdrake/interactive.pm_.c:464
-#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../bootlook.pm_.c:169 ../../bootlook.pm_.c:187 ../../bootlook.pm_.c:190
+#: ../../bootlook.pm_.c:193 ../../bootlook.pm_.c:223 ../../bootlook.pm_.c:225
+#: ../../bootlook.pm_.c:235 ../../bootlook.pm_.c:244 ../../bootlook.pm_.c:251
+#: ../../diskdrake/dav.pm_.c:73 ../../diskdrake/hd_gtk.pm_.c:116
+#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/interactive.pm_.c:355
+#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/interactive.pm_.c:474
+#: ../../diskdrake/smbnfs_gtk.pm_.c:45 ../../fsedit.pm_.c:239
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:365 ../../interactive/http.pm_.c:119
-#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:80
+#: ../../interactive/http.pm_.c:119 ../../interactive/http.pm_.c:120
+#: ../../standalone/draksplash_.c:32
msgid "Error"
msgstr "ÓöÜëìá"
-#: ../../bootlook.pm_.c:183
+#: ../../bootlook.pm_.c:186
#, c-format
msgid "Backup %s to %s.old"
msgstr ""
-#: ../../bootlook.pm_.c:184
+#: ../../bootlook.pm_.c:187
msgid "unable to backup lilo message"
msgstr ""
-#: ../../bootlook.pm_.c:186
+#: ../../bootlook.pm_.c:189
#, c-format
msgid "Copy %s to %s"
msgstr ""
-#: ../../bootlook.pm_.c:187
+#: ../../bootlook.pm_.c:190
msgid "can't change lilo message"
msgstr ""
-#: ../../bootlook.pm_.c:190
+#: ../../bootlook.pm_.c:193
msgid "Lilo message not found"
msgstr ""
-#: ../../bootlook.pm_.c:220
+#: ../../bootlook.pm_.c:223
msgid "Can't write /etc/sysconfig/bootsplash."
msgstr ""
-#: ../../bootlook.pm_.c:220
+#: ../../bootlook.pm_.c:223
#, fuzzy, c-format
msgid "Write %s"
msgstr "XFree %s"
-#: ../../bootlook.pm_.c:222
+#: ../../bootlook.pm_.c:225
msgid ""
"Can't write /etc/sysconfig/bootsplash\n"
"File not found."
msgstr ""
-#: ../../bootlook.pm_.c:233
+#: ../../bootlook.pm_.c:236
#, c-format
msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
msgstr ""
-#: ../../bootlook.pm_.c:236
+#: ../../bootlook.pm_.c:239
#, c-format
-msgid "Make initrd 'mkinird -f /boot/initrd-%s.img %s'."
+msgid "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
msgstr ""
-#: ../../bootlook.pm_.c:242
+#: ../../bootlook.pm_.c:245
msgid ""
"Can't relaunch LiLo!\n"
"Launch \"lilo\" as root in command line to complete LiLo theme installation."
msgstr ""
-#: ../../bootlook.pm_.c:246
+#: ../../bootlook.pm_.c:249
msgid "Relaunch 'lilo'"
msgstr ""
-#: ../../bootlook.pm_.c:248
+#: ../../bootlook.pm_.c:251 ../../standalone/draksplash_.c:161
+#: ../../standalone/draksplash_.c:330 ../../standalone/draksplash_.c:454
#, fuzzy
msgid "Notice"
msgstr "ŚùńßòVideo"
-#: ../../bootlook.pm_.c:249
+#: ../../bootlook.pm_.c:252
msgid "LiLo and Bootsplash themes installation successfull"
msgstr ""
-#: ../../bootlook.pm_.c:249
+#: ../../bootlook.pm_.c:252
#, fuzzy
msgid "Theme installation failed!"
msgstr "ĆđéëĘîôć ćăêáôÜóôáóç"
-#: ../../bootlook.pm_.c:258
+#: ../../bootlook.pm_.c:261
#, c-format
msgid ""
"You are currently using %s as your boot manager.\n"
@@ -1326,23 +1344,22 @@ msgstr ""
"Śńçóéìïđïéćßôć ôïí %s ùò Boot Manager.\n"
"ÊÜíôć êëßê óôï Ńęèìéóç ăéá íá îćêéíȚóćôć ôïí ïäçăü ćăêáôÜóôáóçò."
-#: ../../bootlook.pm_.c:260 ../../standalone/drakbackup_.c:2352
-#: ../../standalone/drakbackup_.c:2362 ../../standalone/drakbackup_.c:2372
-#: ../../standalone/drakbackup_.c:2380 ../../standalone/drakgw_.c:592
-#: ../../standalone/tinyfirewall_.c:58
+#: ../../bootlook.pm_.c:263 ../../standalone/drakbackup_.c:2427
+#: ../../standalone/drakbackup_.c:2437 ../../standalone/drakbackup_.c:2447
+#: ../../standalone/drakbackup_.c:2455 ../../standalone/drakgw_.c:530
msgid "Configure"
msgstr "Ńęèìéóç"
-#: ../../bootlook.pm_.c:267
+#: ../../bootlook.pm_.c:270
#, fuzzy
msgid "Splash selection"
msgstr "ÁđïèȚêćőóç ćđéëïăȚò đáêĘôùí"
-#: ../../bootlook.pm_.c:270
+#: ../../bootlook.pm_.c:273
msgid "Themes"
msgstr ""
-#: ../../bootlook.pm_.c:272
+#: ../../bootlook.pm_.c:275
msgid ""
"\n"
"Select a theme for\n"
@@ -1351,44 +1368,44 @@ msgid ""
"them separatly"
msgstr ""
-#: ../../bootlook.pm_.c:275
+#: ../../bootlook.pm_.c:278
msgid "Lilo screen"
msgstr ""
-#: ../../bootlook.pm_.c:279
+#: ../../bootlook.pm_.c:283
msgid "Bootsplash"
msgstr ""
-#: ../../bootlook.pm_.c:314
+#: ../../bootlook.pm_.c:318
msgid "System mode"
msgstr "ÊáôÜóôáóç óőóôȚìáôïò"
-#: ../../bootlook.pm_.c:316
+#: ../../bootlook.pm_.c:320
msgid "Launch the graphical environment when your system starts"
msgstr "¶íïéăìá ôïő X-Window êáôÜ ôçí ćêêßíçóç ôïő óőóôȚìáôïò"
-#: ../../bootlook.pm_.c:321
+#: ../../bootlook.pm_.c:325
msgid "No, I don't want autologin"
msgstr "Œśé, äćí ćđéèőìț áőôüìáôï login"
-#: ../../bootlook.pm_.c:323
+#: ../../bootlook.pm_.c:327
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "Íáé, ćđéèőìț áőôüìáôï login ìć áőôü (user, desktop)"
-#: ../../bootlook.pm_.c:333 ../../network/netconnect.pm_.c:101
+#: ../../bootlook.pm_.c:337 ../../network/netconnect.pm_.c:101
#: ../../standalone/drakTermServ_.c:173 ../../standalone/drakTermServ_.c:300
-#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:3513
-#: ../../standalone/drakbackup_.c:4290 ../../standalone/drakconnect_.c:108
+#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4191
+#: ../../standalone/drakbackup_.c:4952 ../../standalone/drakconnect_.c:108
#: ../../standalone/drakconnect_.c:140 ../../standalone/drakconnect_.c:296
#: ../../standalone/drakconnect_.c:435 ../../standalone/drakconnect_.c:521
#: ../../standalone/drakconnect_.c:564 ../../standalone/drakconnect_.c:667
#: ../../standalone/drakfloppy_.c:376 ../../standalone/drakfont_.c:612
#: ../../standalone/drakfont_.c:799 ../../standalone/drakfont_.c:876
-#: ../../standalone/drakfont_.c:963 ../../standalone/logdrake_.c:521
+#: ../../standalone/drakfont_.c:963 ../../standalone/logdrake_.c:519
msgid "OK"
msgstr "ĆíôÜîćé"
-#: ../../bootlook.pm_.c:403
+#: ../../bootlook.pm_.c:407
#, c-format
msgid "can not open /etc/inittab for reading: %s"
msgstr "áäőíáìßá áíïßăìáôïò ôïő /etc/inittab ăéá áíÜăíùóç: %s"
@@ -1496,49 +1513,54 @@ msgstr "óćéńéáêü"
msgid "United States"
msgstr ""
-#: ../../detect_devices.pm_.c:599 ../../detect_devices.pm_.c:641
-#: ../../detect_devices.pm_.c:803
-msgid "Unknown Model"
-msgstr ""
-
#: ../../diskdrake/dav.pm_.c:23
#, fuzzy
msgid "New"
msgstr "íĘï"
-#: ../../diskdrake/dav.pm_.c:57
+#: ../../diskdrake/dav.pm_.c:59 ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/smbnfs_gtk.pm_.c:81
+msgid "Unmount"
+msgstr "Áđïóęíäćóç"
+
+#: ../../diskdrake/dav.pm_.c:60 ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/smbnfs_gtk.pm_.c:82
+msgid "Mount"
+msgstr "Óęíäćóç"
+
+#: ../../diskdrake/dav.pm_.c:61
msgid "Server"
msgstr "ĆîőđçńćôçôȚò"
-#: ../../diskdrake/dav.pm_.c:58 ../../diskdrake/interactive.pm_.c:375
-#: ../../diskdrake/interactive.pm_.c:558 ../../diskdrake/interactive.pm_.c:585
+#: ../../diskdrake/dav.pm_.c:62 ../../diskdrake/interactive.pm_.c:379
+#: ../../diskdrake/interactive.pm_.c:568 ../../diskdrake/interactive.pm_.c:595
#: ../../diskdrake/removable.pm_.c:24 ../../diskdrake/removable_gtk.pm_.c:15
#: ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr "Óçìćßï óęíäćóçò"
-#: ../../diskdrake/dav.pm_.c:68
+#: ../../diskdrake/dav.pm_.c:81
#, fuzzy
msgid "Please enter the WebDAV server URL"
msgstr "Đáńáêáëț äïêéìÜóôć ôï đïíôßêé"
-#: ../../diskdrake/dav.pm_.c:71
+#: ../../diskdrake/dav.pm_.c:84
#, fuzzy
msgid "The URL must begin with http:// or https://"
msgstr "Ôï URL đńĘđćé íá îćêéíÜ ìć 'http:'"
-#: ../../diskdrake/dav.pm_.c:92
+#: ../../diskdrake/dav.pm_.c:105
#, fuzzy
msgid "Server: "
msgstr "ĆîőđçńćôçôȚò"
-#: ../../diskdrake/dav.pm_.c:93 ../../diskdrake/interactive.pm_.c:435
-#: ../../diskdrake/interactive.pm_.c:1079
-#: ../../diskdrake/interactive.pm_.c:1153
+#: ../../diskdrake/dav.pm_.c:106 ../../diskdrake/interactive.pm_.c:440
+#: ../../diskdrake/interactive.pm_.c:1089
+#: ../../diskdrake/interactive.pm_.c:1164
msgid "Mount point: "
msgstr "Óçìćßï óęíäćóçò: "
-#: ../../diskdrake/dav.pm_.c:94 ../../diskdrake/interactive.pm_.c:1159
+#: ../../diskdrake/dav.pm_.c:107 ../../diskdrake/interactive.pm_.c:1170
#, c-format
msgid "Options: %s"
msgstr "ĆđéëïăĘò: %s"
@@ -1547,8 +1569,9 @@ msgstr "ĆđéëïăĘò: %s"
msgid "Please make a backup of your data first"
msgstr "Đáńáêáëț êÜíôć đńțôá Ęíá áíôßăńáöï áóöáëćßáò ôùí äćäïìĘíùí óáò"
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:924
-#: ../../diskdrake/interactive.pm_.c:933 ../../diskdrake/interactive.pm_.c:999
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:934
+#: ../../diskdrake/interactive.pm_.c:943
+#: ../../diskdrake/interactive.pm_.c:1009
msgid "Read carefully!"
msgstr "ÄéáâÜóôć đńïóćêôéêÜ!"
@@ -1587,10 +1610,15 @@ msgid "Please click on a partition"
msgstr "Đáńáêáëț êÜíôć êëéê óć ìéá êáôÜôìçóç"
#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
-#: ../../install_steps_gtk.pm_.c:471
+#: ../../install_steps_gtk.pm_.c:465
msgid "Details"
msgstr "ËćđôïìĘńćéćò"
+#: ../../diskdrake/hd_gtk.pm_.c:252
+#, fuzzy
+msgid "No hard drives found"
+msgstr "Ôïđéêüò ćêôőđùôȚò"
+
#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Ext2"
msgstr "Ext2"
@@ -1616,13 +1644,13 @@ msgstr "SunOS"
msgid "Swap"
msgstr "Swap"
-#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1105
msgid "Empty"
msgstr "¶äćéï"
-#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:331
-#: ../../install_steps_gtk.pm_.c:389 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1679
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:325
+#: ../../install_steps_gtk.pm_.c:383 ../../mouse.pm_.c:165
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1754
msgid "Other"
msgstr "¶ëëï"
@@ -1630,12 +1658,12 @@ msgstr "¶ëëï"
msgid "Filesystem types:"
msgstr "Ôęđïé óőóôȚìáôïò áńśćßùí:"
-#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:397
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:402
msgid "Create"
msgstr "Äçìéïőńăßá"
-#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:376
-#: ../../diskdrake/interactive.pm_.c:521 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:380
+#: ../../diskdrake/interactive.pm_.c:531 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "Ôęđïò"
@@ -1645,7 +1673,7 @@ msgstr "Ôęđïò"
msgid "Use ``%s'' instead"
msgstr "ŚńçóéìïđïéȚóôć ``%s'' óôç èĘóç ôïő"
-#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:389
msgid "Delete"
msgstr "ÄéáăńáöȚ"
@@ -1653,7 +1681,7 @@ msgstr "ÄéáăńáöȚ"
msgid "Use ``Unmount'' first"
msgstr "ÊÜíôć đńțôá ``Áđïóęíäćóç''"
-#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:513
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:518
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
@@ -1661,77 +1689,77 @@ msgstr ""
"ÌćôÜ ôçí áëëáăȚ ôęđïő óôçí êáôÜôìçóç %s, üëá ôá äćäïìĘíá óć áőôȚí ôçí "
"êáôÜôìçóç èá śáèïęí"
-#: ../../diskdrake/interactive.pm_.c:173
+#: ../../diskdrake/interactive.pm_.c:174
#, fuzzy
msgid "Choose a partition"
msgstr "ĆđéëĘîôć đńÜîç"
-#: ../../diskdrake/interactive.pm_.c:173
+#: ../../diskdrake/interactive.pm_.c:174
#, fuzzy
msgid "Choose another partition"
msgstr "Äçìéïőńăßá íĘáò êáôÜôìçóçò"
-#: ../../diskdrake/interactive.pm_.c:198
+#: ../../diskdrake/interactive.pm_.c:199
#, fuzzy
msgid "Exit"
msgstr "Ext2"
-#: ../../diskdrake/interactive.pm_.c:220
+#: ../../diskdrake/interactive.pm_.c:221
msgid "Toggle to expert mode"
msgstr "ÌćôáđȚäçóç óć đńïśùńçìĘíï ôńüđï ëćéôïőńăßáò"
-#: ../../diskdrake/interactive.pm_.c:220
+#: ../../diskdrake/interactive.pm_.c:221
msgid "Toggle to normal mode"
msgstr "ÌćôáđȚäçóç óć êáíïíéêü ôńüđï ëćéôïőńăßáò"
-#: ../../diskdrake/interactive.pm_.c:220
+#: ../../diskdrake/interactive.pm_.c:221
msgid "Undo"
msgstr "Áêęńùóç ôćëćőôáßáò đńÜîçò"
-#: ../../diskdrake/interactive.pm_.c:239
+#: ../../diskdrake/interactive.pm_.c:240
msgid "Continue anyway?"
msgstr "Íá óőíćśéóù;"
-#: ../../diskdrake/interactive.pm_.c:244
+#: ../../diskdrake/interactive.pm_.c:245
msgid "Quit without saving"
msgstr "žîïäïò śùńßò áđïèȚêćőóç"
-#: ../../diskdrake/interactive.pm_.c:244
+#: ../../diskdrake/interactive.pm_.c:245
msgid "Quit without writing the partition table?"
msgstr "žîïäïò śùńßò áđïèȚêćőóç ôïő đßíáêá êáôáôìȚóćùí;"
-#: ../../diskdrake/interactive.pm_.c:249
+#: ../../diskdrake/interactive.pm_.c:250
#, fuzzy
msgid "Do you want to save /etc/fstab modifications"
msgstr "ÈĘëćôć íá äïêéìÜóćôć ôéò ńőèìßóćéò;"
-#: ../../diskdrake/interactive.pm_.c:261
+#: ../../diskdrake/interactive.pm_.c:263
msgid "Auto allocate"
msgstr "Áőôïìáôç êáôáíïìȚ"
-#: ../../diskdrake/interactive.pm_.c:261
+#: ../../diskdrake/interactive.pm_.c:263
msgid "Clear all"
msgstr "Êáèáńéóìüò üëùí"
-#: ../../diskdrake/interactive.pm_.c:261
+#: ../../diskdrake/interactive.pm_.c:263
#: ../../install_steps_interactive.pm_.c:214
msgid "More"
msgstr "¶ëëá"
-#: ../../diskdrake/interactive.pm_.c:264
+#: ../../diskdrake/interactive.pm_.c:267
#, fuzzy
msgid "Hard drive information"
msgstr "Ćíôïđéóìüò óêëçńïę äßóêïő"
-#: ../../diskdrake/interactive.pm_.c:294
+#: ../../diskdrake/interactive.pm_.c:298
msgid "All primary partitions are used"
msgstr "Œëćò ïé đńùôćęïőóćò êáôáôìȚóćéò ćßíáé óć śńȚóç"
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:299
msgid "I can't add any more partition"
msgstr "Äćí ìđïńț íá đńïóèĘóù êáôáôìçóćéò"
-#: ../../diskdrake/interactive.pm_.c:296
+#: ../../diskdrake/interactive.pm_.c:300
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -1739,35 +1767,35 @@ msgstr ""
"Ăéá íá đńïóèĘóćôć êáôáôìȚóćéò, đáńáêáëț äéáăńÜűôć ìßá ćôóé țóôćíá ćßíáé "
"äőíáôȚ ç đńïóèȚêç ćêôćôáìĘíçò êáôÜôìçóçò"
-#: ../../diskdrake/interactive.pm_.c:306
+#: ../../diskdrake/interactive.pm_.c:310
#, fuzzy
msgid "Save partition table"
msgstr "ÁđïèȚêćőóç đßíáêá êáôáôìȚóćùí"
-#: ../../diskdrake/interactive.pm_.c:307
+#: ../../diskdrake/interactive.pm_.c:311
#, fuzzy
msgid "Restore partition table"
msgstr "Đßíáêáò êáôáôìȚóćùí äéÜóùóçò"
-#: ../../diskdrake/interactive.pm_.c:308
+#: ../../diskdrake/interactive.pm_.c:312
msgid "Rescue partition table"
msgstr "Đßíáêáò êáôáôìȚóćùí äéÜóùóçò"
-#: ../../diskdrake/interactive.pm_.c:310
+#: ../../diskdrake/interactive.pm_.c:314
#, fuzzy
msgid "Reload partition table"
msgstr "Đßíáêáò êáôáôìȚóćùí äéÜóùóçò"
-#: ../../diskdrake/interactive.pm_.c:315
+#: ../../diskdrake/interactive.pm_.c:319
#, fuzzy
msgid "Removable media automounting"
msgstr "Áőôüìáôç óęíäćóç áđïóđțìćíùí ìïíÜäùí áđïèȚêćőóçò"
-#: ../../diskdrake/interactive.pm_.c:324 ../../diskdrake/interactive.pm_.c:344
+#: ../../diskdrake/interactive.pm_.c:328 ../../diskdrake/interactive.pm_.c:348
msgid "Select file"
msgstr "ĆđéëĘîôć áńśćßï"
-#: ../../diskdrake/interactive.pm_.c:331
+#: ../../diskdrake/interactive.pm_.c:335
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1775,11 +1803,11 @@ msgstr ""
"Ï ćöćäńéêüò đßíáêáò êáôáôìȚóćùí Ęśćé äéáöïńćôéêü ìĘăćèïò\n"
"Íá óőíćśßóù;"
-#: ../../diskdrake/interactive.pm_.c:345
+#: ../../diskdrake/interactive.pm_.c:349
msgid "Warning"
msgstr "Đńïćéäïđïßçóç"
-#: ../../diskdrake/interactive.pm_.c:346
+#: ../../diskdrake/interactive.pm_.c:350
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1787,114 +1815,106 @@ msgstr ""
"ĆéóÜăćôć ìéá äéóêĘôôá óôïí ïäçăü äéóêĘôôáò\n"
"Œëá ôá äćäïìĘíá óć áőôȚ ôç äéóêĘôôá èá śáèïęí"
-#: ../../diskdrake/interactive.pm_.c:357
+#: ../../diskdrake/interactive.pm_.c:361
msgid "Trying to rescue partition table"
msgstr "ĐńïóđÜèćéá äéÜóùóçò đßíáêá êáôáôìȚóćùí"
-#: ../../diskdrake/interactive.pm_.c:363
+#: ../../diskdrake/interactive.pm_.c:367
#, fuzzy
msgid "Detailed information"
msgstr "ĐńïâïëȚ đëçńïöïńéțí"
-#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:652
+#: ../../diskdrake/interactive.pm_.c:382 ../../diskdrake/interactive.pm_.c:662
msgid "Resize"
msgstr "ÁëëáăȚ ìćăĘèïőò"
-#: ../../diskdrake/interactive.pm_.c:379 ../../diskdrake/interactive.pm_.c:705
+#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/interactive.pm_.c:715
msgid "Move"
msgstr "Ìćôáêßíçóç"
-#: ../../diskdrake/interactive.pm_.c:380
+#: ../../diskdrake/interactive.pm_.c:384
msgid "Format"
msgstr "Ìïńöïđïßçóç"
-#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/smbnfs_gtk.pm_.c:82
-msgid "Mount"
-msgstr "Óęíäćóç"
-
-#: ../../diskdrake/interactive.pm_.c:382
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Add to RAID"
msgstr "ĐńïóèȚêç óôï RAID"
-#: ../../diskdrake/interactive.pm_.c:383
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Add to LVM"
msgstr "ĐńïóèȚêç óôï LVM"
-#: ../../diskdrake/interactive.pm_.c:384 ../../diskdrake/smbnfs_gtk.pm_.c:81
-msgid "Unmount"
-msgstr "Áđïóęíäćóç"
-
-#: ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/interactive.pm_.c:390
msgid "Remove from RAID"
msgstr "Áöáßńćóç áđü ôï RAID"
-#: ../../diskdrake/interactive.pm_.c:387
+#: ../../diskdrake/interactive.pm_.c:391
msgid "Remove from LVM"
msgstr "Áöáßńćóç áđü ôï LVM"
-#: ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/interactive.pm_.c:392
msgid "Modify RAID"
msgstr "Ôńïđïđïßçóç RAID"
-#: ../../diskdrake/interactive.pm_.c:389
+#: ../../diskdrake/interactive.pm_.c:393
msgid "Use for loopback"
msgstr "ŚńȚóç ăéá loopback"
-#: ../../diskdrake/interactive.pm_.c:428
+#: ../../diskdrake/interactive.pm_.c:433
msgid "Create a new partition"
msgstr "Äçìéïőńăßá íĘáò êáôÜôìçóçò"
-#: ../../diskdrake/interactive.pm_.c:431
+#: ../../diskdrake/interactive.pm_.c:436
msgid "Start sector: "
msgstr "ÁńśȚ óôïí ôïìĘá: "
-#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:805
+#: ../../diskdrake/interactive.pm_.c:438 ../../diskdrake/interactive.pm_.c:815
msgid "Size in MB: "
msgstr "ÌĘăćèïò óć MB"
-#: ../../diskdrake/interactive.pm_.c:434 ../../diskdrake/interactive.pm_.c:806
+#: ../../diskdrake/interactive.pm_.c:439 ../../diskdrake/interactive.pm_.c:816
msgid "Filesystem type: "
msgstr "Ôęđïò óőóôȚìáôïò áńśćßùí: "
-#: ../../diskdrake/interactive.pm_.c:439
+#: ../../diskdrake/interactive.pm_.c:444
msgid "Preference: "
msgstr "Đńïôßìçóç: "
-#: ../../diskdrake/interactive.pm_.c:464
+#: ../../diskdrake/interactive.pm_.c:469
msgid ""
"You can't create a new partition\n"
"(since you reached the maximal number of primary partitions).\n"
"First remove a primary partition and create an extended partition."
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:494
+#: ../../diskdrake/interactive.pm_.c:499
#, fuzzy
msgid "Remove the loopback file?"
msgstr "Ìïńöïđïßçóç áńśćßïő loopback %s"
-#: ../../diskdrake/interactive.pm_.c:519
+#: ../../diskdrake/interactive.pm_.c:529
msgid "Change partition type"
msgstr "ÁëëáăȚ ôęđïő êáôÜôìçóçò"
-#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:530 ../../diskdrake/removable.pm_.c:48
msgid "Which filesystem do you want?"
msgstr "Đïéü óęôçìá áńśćßùí đńïôéìÜôć;"
-#: ../../diskdrake/interactive.pm_.c:526
+#: ../../diskdrake/interactive.pm_.c:536
msgid "Switching from ext2 to ext3"
msgstr "ÁëëáăȚ áđü ext2 óć ext3"
-#: ../../diskdrake/interactive.pm_.c:556
+#: ../../diskdrake/interactive.pm_.c:566
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "Đïę èĘëćôć íá óőíäĘóćôć ôï áńśćßï loopback %s;"
-#: ../../diskdrake/interactive.pm_.c:557
+#: ../../diskdrake/interactive.pm_.c:567
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Đïę èĘëćôć íá óőíäĘóćôć ôçí óőóêćőȚ %s;"
-#: ../../diskdrake/interactive.pm_.c:563
+#: ../../diskdrake/interactive.pm_.c:573
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1903,143 +1923,143 @@ msgstr ""
"śńçóéìïđïéćßôáé\n"
"ăéá loopback. ÁöáéńĘóôć đńțôá ôï loopback"
-#: ../../diskdrake/interactive.pm_.c:584
+#: ../../diskdrake/interactive.pm_.c:594
#, fuzzy, c-format
msgid "Where do you want to mount %s?"
msgstr "Đïę èĘëćôć íá óőíäĘóćôć ôçí óőóêćőȚ %s;"
-#: ../../diskdrake/interactive.pm_.c:608
+#: ../../diskdrake/interactive.pm_.c:618
msgid "Computing FAT filesystem bounds"
msgstr "Őđïëïăéóìüò fat filesystem bounds"
-#: ../../diskdrake/interactive.pm_.c:608 ../../diskdrake/interactive.pm_.c:667
-#: ../../install_interactive.pm_.c:131
+#: ../../diskdrake/interactive.pm_.c:618 ../../diskdrake/interactive.pm_.c:677
+#: ../../install_interactive.pm_.c:133
msgid "Resizing"
msgstr "ÌćôáâïëȚ ìćăĘèïőò"
-#: ../../diskdrake/interactive.pm_.c:640
+#: ../../diskdrake/interactive.pm_.c:650
msgid "This partition is not resizeable"
msgstr "Áőôüò ï ôęđïò êáôÜôìçóçò äćí ìđïńćß í' áëëÜîćé ìĘăćèïò."
-#: ../../diskdrake/interactive.pm_.c:645
+#: ../../diskdrake/interactive.pm_.c:655
msgid "All data on this partition should be backed-up"
msgstr ""
"ĐńĘđćé íá ăßíćé áíôßăńáöï áóöáëćßáò üëùí ôùí äćäïìĘíùí óć áőôȚ ôçí êáôÜôìçóç"
-#: ../../diskdrake/interactive.pm_.c:647
+#: ../../diskdrake/interactive.pm_.c:657
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr ""
"ÌćôÜ ôçí áëëáăȚ ìćăĘèïőò óôçí êáôÜôìçóç %s, üëá ôá äćäïìĘíá óć áőôȚí ôçí "
"êáôÜôìçóç èá śáèïęí"
-#: ../../diskdrake/interactive.pm_.c:652
+#: ../../diskdrake/interactive.pm_.c:662
msgid "Choose the new size"
msgstr "ĆđéëĘîôć ôï íĘï ìĘăćèïò"
-#: ../../diskdrake/interactive.pm_.c:653
+#: ../../diskdrake/interactive.pm_.c:663
#, fuzzy
msgid "New size in MB: "
msgstr "ÌĘăćèïò óć MB"
-#: ../../diskdrake/interactive.pm_.c:706
+#: ../../diskdrake/interactive.pm_.c:716
msgid "Which disk do you want to move it to?"
msgstr "Óć đïéüí äßóêï èĘëćôć íá ìćôáêéíçèćßôć;"
-#: ../../diskdrake/interactive.pm_.c:707
+#: ../../diskdrake/interactive.pm_.c:717
msgid "Sector"
msgstr "ÔïìĘáò"
-#: ../../diskdrake/interactive.pm_.c:708
+#: ../../diskdrake/interactive.pm_.c:718
msgid "Which sector do you want to move it to?"
msgstr "Óć đïéüí ôïìĘá èĘëćôć íá ìćôáêéíçèćßôć;"
-#: ../../diskdrake/interactive.pm_.c:711
+#: ../../diskdrake/interactive.pm_.c:721
msgid "Moving"
msgstr "Ìćôáêßíçóç óć ćîĘëéîç"
-#: ../../diskdrake/interactive.pm_.c:711
+#: ../../diskdrake/interactive.pm_.c:721
msgid "Moving partition..."
msgstr "Ìćôáêßíçóç êáôÜôìçóçò óć ćîĘëéîç..."
-#: ../../diskdrake/interactive.pm_.c:728
+#: ../../diskdrake/interactive.pm_.c:738
msgid "Choose an existing RAID to add to"
msgstr "ĆđéëĘîôć Ęíá őđÜńśïí RAID óôï ïđïßï èá ăßíćé ç đńïóèȚêç"
-#: ../../diskdrake/interactive.pm_.c:729 ../../diskdrake/interactive.pm_.c:746
+#: ../../diskdrake/interactive.pm_.c:739 ../../diskdrake/interactive.pm_.c:756
msgid "new"
msgstr "íĘï"
-#: ../../diskdrake/interactive.pm_.c:744
+#: ../../diskdrake/interactive.pm_.c:754
msgid "Choose an existing LVM to add to"
msgstr "ĆđéëĘîôć Ęíá őđÜńśïí LVM óôï ïđïßï èá ăßíćé ç đńïóèȚêç"
-#: ../../diskdrake/interactive.pm_.c:749
+#: ../../diskdrake/interactive.pm_.c:759
msgid "LVM name?"
msgstr "üíïìá LVM;"
-#: ../../diskdrake/interactive.pm_.c:790
+#: ../../diskdrake/interactive.pm_.c:800
msgid "This partition can't be used for loopback"
msgstr "ÁőôȚ ç êáôÜôìçóç äćí ìđïńćß íá śńçóéìïđïéçèćß ăéá loopback"
-#: ../../diskdrake/interactive.pm_.c:803
+#: ../../diskdrake/interactive.pm_.c:813
msgid "Loopback"
msgstr "Loopback"
-#: ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:814
msgid "Loopback file name: "
msgstr "Œíïìá áńśćßïő loopback: "
-#: ../../diskdrake/interactive.pm_.c:809
+#: ../../diskdrake/interactive.pm_.c:819
#, fuzzy
msgid "Give a file name"
msgstr "Đńáăìáôéêü üíïìá"
-#: ../../diskdrake/interactive.pm_.c:812
+#: ../../diskdrake/interactive.pm_.c:822
msgid "File already used by another loopback, choose another one"
msgstr "Ôï áńśćßï śńçóéìđïđïéćßôáé Țäç, ćđéëĘîôć Ęíá Üëëï"
-#: ../../diskdrake/interactive.pm_.c:813
+#: ../../diskdrake/interactive.pm_.c:823
msgid "File already exists. Use it?"
msgstr "Ôï áńśćßï őđÜńśćé Țäç. Íá ôï śńçóéìïđïéȚóù;"
-#: ../../diskdrake/interactive.pm_.c:836
+#: ../../diskdrake/interactive.pm_.c:846
#, fuzzy
msgid "Mount options"
msgstr "ĐáńÜìćôńïé ïäçăïę"
-#: ../../diskdrake/interactive.pm_.c:843
+#: ../../diskdrake/interactive.pm_.c:853
msgid "Various"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:907 ../../standalone/drakfloppy_.c:103
+#: ../../diskdrake/interactive.pm_.c:917 ../../standalone/drakfloppy_.c:103
msgid "device"
msgstr "óőóêćőȚ"
-#: ../../diskdrake/interactive.pm_.c:908
+#: ../../diskdrake/interactive.pm_.c:918
msgid "level"
msgstr "ćđßđćäï"
-#: ../../diskdrake/interactive.pm_.c:909
+#: ../../diskdrake/interactive.pm_.c:919
msgid "chunk size"
msgstr "ìĘăćèïò chunk"
-#: ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:934
msgid "Be careful: this operation is dangerous."
msgstr "ĐńïóïśȚ: ÁőôȚ ç äéáäéêáóßá ćßíáé ćđéêßíäőíç."
-#: ../../diskdrake/interactive.pm_.c:939
+#: ../../diskdrake/interactive.pm_.c:949
msgid "What type of partitioning?"
msgstr "Ôß ôęđïő partitioning;"
-#: ../../diskdrake/interactive.pm_.c:955
+#: ../../diskdrake/interactive.pm_.c:965
#, fuzzy, c-format
msgid "The package %s is needed. Install it?"
msgstr ""
"Áőôü ôï đáêĘôï đńĘđćé íá áíáâáèìéóôćß\n"
"Ćßóôć óßăïőńïò üôé èĘëćôć íá ôï áđïćđéëĘîćôć;"
-#: ../../diskdrake/interactive.pm_.c:969
+#: ../../diskdrake/interactive.pm_.c:979
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -2051,7 +2071,7 @@ msgstr ""
"Ćßôć śńçóéìïđïéćßôć LILO êáé äćí èá äïőëĘűćé, ćßôć äćí śńçóéìïđïéćßôćLILO "
"êáé äćí śńćéÜæćóôć ôï /boot"
-#: ../../diskdrake/interactive.pm_.c:973
+#: ../../diskdrake/interactive.pm_.c:983
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -2062,7 +2082,7 @@ msgstr ""
"äćí Ęśćôć êáôÜôìçóç /boot.\n"
"Áí óêïđćęćôć íá śńçóéìïđïéȚóćôć LILO, đńïóèĘóôć ìßá êáôÜôìçóç /boot."
-#: ../../diskdrake/interactive.pm_.c:979
+#: ../../diskdrake/interactive.pm_.c:989
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
@@ -2073,139 +2093,139 @@ msgstr ""
"êáôÜôìçóç /boot.\n"
"Öńïíôßóôć ëïéđüí íá đńïóèĘóćôć ìéá êáôÜôìçóç /boot."
-#: ../../diskdrake/interactive.pm_.c:999
+#: ../../diskdrake/interactive.pm_.c:1009
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "Ï đßíáêáò êáôáôìȚóćùí ôïő äßóêïő %s èá áđïèçêćőôćß óôïí äßóêï!"
-#: ../../diskdrake/interactive.pm_.c:1003
+#: ../../diskdrake/interactive.pm_.c:1013
msgid "You'll need to reboot before the modification can take place"
msgstr "Áđáéôćßôáé ćđáíćêêßíçóç ăéá íá ćöáńìïóôïęí ïé áëëáăĘò"
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1024
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr ""
"ÌćôÜ ôçí ìïńöïđïßçóç ôçò êáôÜôìçóçò %s, üëá ôá äćäïìĘíá óć áőôȚí ôçí "
"êáôÜôìçóç èá śáèïęí"
-#: ../../diskdrake/interactive.pm_.c:1016
+#: ../../diskdrake/interactive.pm_.c:1026
msgid "Formatting"
msgstr "Ìïńöïđïßçóç"
-#: ../../diskdrake/interactive.pm_.c:1017
+#: ../../diskdrake/interactive.pm_.c:1027
#, c-format
msgid "Formatting loopback file %s"
msgstr "Ìïńöïđïßçóç áńśćßïő loopback %s"
-#: ../../diskdrake/interactive.pm_.c:1018
-#: ../../install_steps_interactive.pm_.c:476
+#: ../../diskdrake/interactive.pm_.c:1028
+#: ../../install_steps_interactive.pm_.c:459
#, c-format
msgid "Formatting partition %s"
msgstr "Ìïńöïđïßçóç êáôÜôìçóçò %s"
-#: ../../diskdrake/interactive.pm_.c:1029
+#: ../../diskdrake/interactive.pm_.c:1039
#, fuzzy
msgid "Hide files"
msgstr "áđïôőśßá mkraid"
-#: ../../diskdrake/interactive.pm_.c:1029
+#: ../../diskdrake/interactive.pm_.c:1039
#, fuzzy
msgid "Move files to the new partition"
msgstr "Äćí őđÜńśćé áńêćôüò ćëćęèćńïò śțńïò ăéá äçìéïőńăßá íĘùí êáôáôìȚóćùí"
-#: ../../diskdrake/interactive.pm_.c:1030
+#: ../../diskdrake/interactive.pm_.c:1040
#, c-format
msgid ""
"Directory %s already contains data\n"
"(%s)"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1041
+#: ../../diskdrake/interactive.pm_.c:1051
#, fuzzy
msgid "Moving files to the new partition"
msgstr "Äćí őđÜńśćé áńêćôüò ćëćęèćńïò śțńïò ăéá äçìéïőńăßá íĘùí êáôáôìȚóćùí"
-#: ../../diskdrake/interactive.pm_.c:1045
+#: ../../diskdrake/interactive.pm_.c:1055
#, c-format
msgid "Copying %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1049
+#: ../../diskdrake/interactive.pm_.c:1059
#, fuzzy, c-format
msgid "Removing %s"
msgstr "ÁíÜëőóç: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1059
+#: ../../diskdrake/interactive.pm_.c:1069
#, c-format
msgid "partition %s is now known as %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1080
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1090
+#: ../../diskdrake/interactive.pm_.c:1149
msgid "Device: "
msgstr "ÓőóêćőȚ: "
-#: ../../diskdrake/interactive.pm_.c:1081
+#: ../../diskdrake/interactive.pm_.c:1091
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "Đéèáíü DOS ăńÜììá äßóêïő: %s \n"
-#: ../../diskdrake/interactive.pm_.c:1085
-#: ../../diskdrake/interactive.pm_.c:1093
-#: ../../diskdrake/interactive.pm_.c:1157
+#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1103
+#: ../../diskdrake/interactive.pm_.c:1168
msgid "Type: "
msgstr "Ôęđïò: "
-#: ../../diskdrake/interactive.pm_.c:1089
+#: ../../diskdrake/interactive.pm_.c:1099
msgid "Name: "
msgstr "Œíïìá: "
-#: ../../diskdrake/interactive.pm_.c:1097
+#: ../../diskdrake/interactive.pm_.c:1107
#, c-format
msgid "Start: sector %s\n"
msgstr "ÁńśȚ: ôïìĘáò %s\n"
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1108
#, c-format
msgid "Size: %s"
msgstr "ÌĘăćèïò: %s"
-#: ../../diskdrake/interactive.pm_.c:1100
+#: ../../diskdrake/interactive.pm_.c:1110
#, c-format
msgid ", %s sectors"
msgstr ", %s ôïìćßò"
-#: ../../diskdrake/interactive.pm_.c:1102
+#: ../../diskdrake/interactive.pm_.c:1112
#, fuzzy, c-format
msgid "Cylinder %d to %d\n"
msgstr "Êęëéíäńïò %d ćțò êęëéíäńïò %d\n"
-#: ../../diskdrake/interactive.pm_.c:1103
+#: ../../diskdrake/interactive.pm_.c:1113
msgid "Formatted\n"
msgstr "ÌïńöïđïéçìĘíïò\n"
-#: ../../diskdrake/interactive.pm_.c:1104
+#: ../../diskdrake/interactive.pm_.c:1114
msgid "Not formatted\n"
msgstr "Áìïńöïđïßçôïò\n"
-#: ../../diskdrake/interactive.pm_.c:1105
+#: ../../diskdrake/interactive.pm_.c:1115
msgid "Mounted\n"
msgstr "ÓőíäćäćìĘíïò\n"
-#: ../../diskdrake/interactive.pm_.c:1106
+#: ../../diskdrake/interactive.pm_.c:1116
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1108
+#: ../../diskdrake/interactive.pm_.c:1118
#, fuzzy, c-format
msgid ""
"Loopback file(s):\n"
" %s\n"
msgstr "Áńśćßá loopback: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1109
+#: ../../diskdrake/interactive.pm_.c:1119
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -2213,27 +2233,27 @@ msgstr ""
"ÊáôÜôìçóç ćêêßíçóçò ćî ïńéóìïę\n"
" (áđü MS-DOS, üśé áđü lilo)\n"
-#: ../../diskdrake/interactive.pm_.c:1111
+#: ../../diskdrake/interactive.pm_.c:1121
#, c-format
msgid "Level %s\n"
msgstr "Ćđßđćäï %s\n"
-#: ../../diskdrake/interactive.pm_.c:1112
+#: ../../diskdrake/interactive.pm_.c:1122
#, c-format
msgid "Chunk size %s\n"
msgstr "ÌĘăćèïò chunk %s\n"
-#: ../../diskdrake/interactive.pm_.c:1113
+#: ../../diskdrake/interactive.pm_.c:1123
#, c-format
msgid "RAID-disks %s\n"
msgstr "Äßóêïé RAID %s\n"
-#: ../../diskdrake/interactive.pm_.c:1115
+#: ../../diskdrake/interactive.pm_.c:1125
#, c-format
msgid "Loopback file name: %s"
msgstr "Œíïìá áńśćßïő loopback: %s"
-#: ../../diskdrake/interactive.pm_.c:1118
+#: ../../diskdrake/interactive.pm_.c:1128
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -2245,7 +2265,7 @@ msgstr ""
"ìéá êáôÜôìçóç Ïäçățí, èá đńĘđćé đéèáíüôáôá\n"
"íá ôçí áöȚóćôć Țóőśç.\n"
-#: ../../diskdrake/interactive.pm_.c:1121
+#: ../../diskdrake/interactive.pm_.c:1131
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2257,61 +2277,65 @@ msgstr ""
"êáôÜôìçóç ăéá\n"
"dual-booting ôï óęóôçìÜ óáò.\n"
-#: ../../diskdrake/interactive.pm_.c:1140
+#: ../../diskdrake/interactive.pm_.c:1150
+msgid "Read-only"
+msgstr ""
+
+#: ../../diskdrake/interactive.pm_.c:1151
#, c-format
msgid "Size: %s\n"
msgstr "ÌĘăćèïò: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1141
+#: ../../diskdrake/interactive.pm_.c:1152
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Ăćùìćôńßá: %s êęëéíäńïé, %s êćöáëĘò, %s ôïìćßò\n"
-#: ../../diskdrake/interactive.pm_.c:1142
+#: ../../diskdrake/interactive.pm_.c:1153
msgid "Info: "
msgstr "Đëçńïöïńßćò: "
-#: ../../diskdrake/interactive.pm_.c:1143
+#: ../../diskdrake/interactive.pm_.c:1154
#, c-format
msgid "LVM-disks %s\n"
msgstr "Äßóêïé LVM %s\n"
-#: ../../diskdrake/interactive.pm_.c:1144
+#: ../../diskdrake/interactive.pm_.c:1155
#, c-format
msgid "Partition table type: %s\n"
msgstr "Ôęđïò đßíáêá êáôáôìȚóćùí: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1145
+#: ../../diskdrake/interactive.pm_.c:1156
#, fuzzy, c-format
msgid "on channel %d id %d\n"
msgstr "óôï bus %d id %d\n"
-#: ../../diskdrake/interactive.pm_.c:1175
+#: ../../diskdrake/interactive.pm_.c:1186
#, fuzzy
msgid "Filesystem encryption key"
msgstr "Ôęđïò óőóôȚìáôïò áńśćßùí: "
-#: ../../diskdrake/interactive.pm_.c:1176
+#: ../../diskdrake/interactive.pm_.c:1187
msgid "Choose your filesystem encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1179
+#: ../../diskdrake/interactive.pm_.c:1190
#, fuzzy, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr ""
"Áőôü ôï óőíèçìáôéêü ćßíáé đïëę áđëü (đńĘđćé íá ćßíáé ôïőëÜśéóôïí %d "
"śáńáêôȚńćò ìáêńę)"
-#: ../../diskdrake/interactive.pm_.c:1180
+#: ../../diskdrake/interactive.pm_.c:1191
#, fuzzy
msgid "The encryption keys do not match"
msgstr "Ôá óőíèçìáôéêÜ ćßíáé áíüìïéá"
-#: ../../diskdrake/interactive.pm_.c:1183
+#: ../../diskdrake/interactive.pm_.c:1194
msgid "Encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1184
+#: ../../diskdrake/interactive.pm_.c:1195
msgid "Encryption key (again)"
msgstr ""
@@ -2350,7 +2374,7 @@ msgid ""
"Please enter your username, password and domain name to access this host."
msgstr ""
-#: ../../diskdrake/smbnfs_gtk.pm_.c:178
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3527
#, fuzzy
msgid "Username"
msgstr "Êùäéêü üíïìá"
@@ -2365,23 +2389,23 @@ msgstr "ĐćńéïśȚ (domain) NIS"
msgid "Search servers"
msgstr "ĆîőđçńćôçôȚò DNS"
-#: ../../fs.pm_.c:552 ../../fs.pm_.c:562 ../../fs.pm_.c:566 ../../fs.pm_.c:570
-#: ../../fs.pm_.c:574 ../../fs.pm_.c:578
+#: ../../fs.pm_.c:544 ../../fs.pm_.c:554 ../../fs.pm_.c:558 ../../fs.pm_.c:562
+#: ../../fs.pm_.c:566 ../../fs.pm_.c:570
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s ìïńöïđïßçóç ôïő %s áđĘôőść"
-#: ../../fs.pm_.c:615
+#: ../../fs.pm_.c:607
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "äćí îĘńù đțò íá ìïńöïđïéȚóù ôï %s óć ôęđï %s"
-#: ../../fs.pm_.c:687 ../../fs.pm_.c:731
+#: ../../fs.pm_.c:681 ../../fs.pm_.c:724
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../fs.pm_.c:746 ../../partition_table.pm_.c:602
+#: ../../fs.pm_.c:739 ../../partition_table.pm_.c:598
#, c-format
msgid "error unmounting %s: %s"
msgstr "óöÜëìá êáôÜ ôçí áđïóęíäćóç ôïő %s: %s"
@@ -2398,37 +2422,54 @@ msgstr ""
msgid "server"
msgstr "ćîőđçńćôçôȚò"
-#: ../../fsedit.pm_.c:472
+#: ../../fsedit.pm_.c:240
+#, fuzzy, c-format
+msgid ""
+"I can't read the partition table of device %s, it's too corrupted for me :(\n"
+"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
+"The other solution is to not allow DrakX to modify the partition table.\n"
+"(the error is %s)\n"
+"\n"
+"Do you agree to loose all the partitions?\n"
+msgstr ""
+"Äćí ìđïńț íá äéáâÜóù ôïí đßíáêá êáôáôìȚóćùí, ćßíáé đïëę êáôćóôńáìĘíïò :(\n"
+"Èá đńïóđáèȚóù íá óőíćśßóù áöáéńțíôáò ôéò ëáíèáóìĘíćò êáôáôìȚóćéò êáé ÏËÁ\n"
+"ôá äćäïìĘíá èá śáèïęí. Ç Üëëç ćđéëïăȚ óáò ćßíáé íá ìçí ćđéôńĘűćôć óôï \n"
+"DrakX íá áăăßîćé ôïí đßíáêá êáôáôìȚóćùí. Ôï óöÜëìá ćßíáé: %s\n"
+"\n"
+"Óőìöùíćßôć íá äéáăńáöïęí üëćò ïé êáôáôìȚóćéò;\n"
+
+#: ../../fsedit.pm_.c:501
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr ""
"Äćí ìđïńćßôć íá śńçóéìïđïéȚóćôć ôï JFS ăéá êáôáôìȚóćéò ìéêńüôćńćò áđü 16MB"
-#: ../../fsedit.pm_.c:473
+#: ../../fsedit.pm_.c:502
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr ""
"Äćí ìđïńćßôć íá śńçóéìïđïéȚóćôć ôï ReiserFS ăéá êáôáôìȚóćéò ìéêńüôćńćò áđü "
"32MB"
-#: ../../fsedit.pm_.c:492
+#: ../../fsedit.pm_.c:521
msgid "Mount points must begin with a leading /"
msgstr "Ôï óçìćßï óęíäćóçò đńĘđćé íá îćêéíÜćé ìć /"
-#: ../../fsedit.pm_.c:493
+#: ../../fsedit.pm_.c:522
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "ŐđÜńśćé Țäç êáôÜôìçóç ìć óçìćßï óęíäćóçò %s\n"
-#: ../../fsedit.pm_.c:497
+#: ../../fsedit.pm_.c:526
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr "Äćí ìđïńćßôć íá śńçóéìïđïéȚóćôć ìéá êáôÜôìçóç LVM ăéá đńïóÜńôçóç %s"
-#: ../../fsedit.pm_.c:499
+#: ../../fsedit.pm_.c:528
msgid "This directory should remain within the root filesystem"
msgstr ""
"Áőôüò ï êáôÜëïăïò đńĘđćé íá đáńáìćßíćé óôï ńéæéêü óęóôçìá áńśćßùí (root)"
-#: ../../fsedit.pm_.c:501
+#: ../../fsedit.pm_.c:530
#, fuzzy
msgid ""
"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
@@ -2437,233 +2478,278 @@ msgstr ""
"ŚńćéÜæćóôć Ęíá đńáăìáôéêü óęóôçìá áńśćßùí (ext2, reiserfs) ăéá áőôü ôï "
"óçìćßï óęíäćóçò\n"
-#: ../../fsedit.pm_.c:503
+#: ../../fsedit.pm_.c:532
#, fuzzy, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr "Äćí ìđïńćßôć íá śńçóéìïđïéȚóćôć ìéá êáôÜôìçóç LVM ăéá đńïóÜńôçóç %s"
-#: ../../fsedit.pm_.c:570
+#: ../../fsedit.pm_.c:599
#, fuzzy
msgid "Not enough free space for auto-allocating"
msgstr ""
"Äćí őđÜńśćé áńêćôüò ćëćęèćńïò śțńïò ăéá áőôüìáôç äçìéïőńăßá íĘùí êáôáôìȚóćùí"
-#: ../../fsedit.pm_.c:572
+#: ../../fsedit.pm_.c:601
msgid "Nothing to do"
msgstr ""
-#: ../../fsedit.pm_.c:665
+#: ../../fsedit.pm_.c:694
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "ÓöÜëìá êáôÜ ôï Üíïéăìá ôïő %s ăéá ćăăńáöȚ: %s"
-#: ../../fsedit.pm_.c:750
+#: ../../harddrake/sound.pm_.c:155
+msgid "No alternative driver"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:156
+#, c-format
+msgid "There's no known OSS/ALSA alternative driver for your sound card (%s)"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:158
+#, fuzzy
+msgid "Sound configuration"
+msgstr "Ńęèìéóç LÁÍ"
+
+#: ../../harddrake/sound.pm_.c:159
+#, c-format
msgid ""
-"An error occurred - no valid devices were found on which to create new "
-"filesystems. Please check your hardware for the cause of this problem"
+"Here you can select an alternative driver (either OSS or ALSA) for your "
+"sound card (%s)"
msgstr ""
-"ĐńïêëȚèçêć óöÜëìá - äćí âńĘèçêáí óőóêćőĘò óôéò ïđïßćò íá ćßíáé äőíáôȚç "
-"äçìéïőńăßá íĘùí óőóôçìÜôùí áńśćßùí. Đáńáêáëț ćëćăîôć ôï őëéêü óáò ăéáôçí "
-"áéôßá áőôïę ôïő đńïâëȚìáôïò"
-#: ../../fsedit.pm_.c:773
-msgid "You don't have any partitions!"
-msgstr "Äćí őđÜńśćé êáìßá êáôÜôìçóç!"
+#: ../../harddrake/sound.pm_.c:162
+#, fuzzy
+msgid "Driver:"
+msgstr "Ïäçăüò"
+
+#: ../../harddrake/sound.pm_.c:173
+msgid "No known driver"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:174
+#, c-format
+msgid "There's no known driver for your sound card (%s)"
+msgstr ""
-#: ../../harddrake/ui.pm_.c:15
+#: ../../harddrake/sound.pm_.c:177
+msgid "Unkown driver"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:178
+#, c-format
+msgid ""
+"The \"%s\" driver for your sound card is unlisted\n"
+"\n"
+"Please send the output of the \"lspcidrake -v\" command to\n"
+"<install at mandrakesoft dot com>\n"
+"with subject: unlisted sound driver \"%s\""
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:16
#, fuzzy
msgid "Model"
msgstr "Đïíôßêé"
-#: ../../harddrake/ui.pm_.c:15
+#: ../../harddrake/ui.pm_.c:16
#, fuzzy
msgid "hard disk model"
msgstr "DMA êÜńôáò"
-#: ../../harddrake/ui.pm_.c:16
+#: ../../harddrake/ui.pm_.c:17
#, fuzzy
msgid "Channel"
msgstr "¶êőńï"
-#: ../../harddrake/ui.pm_.c:16
+#: ../../harddrake/ui.pm_.c:17
msgid "EIDE/SCSI channel"
msgstr ""
-#: ../../harddrake/ui.pm_.c:18
+#: ../../harddrake/ui.pm_.c:19
msgid "Bus"
msgstr ""
-#: ../../harddrake/ui.pm_.c:19
+#: ../../harddrake/ui.pm_.c:20
msgid ""
"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
msgstr ""
-#: ../../harddrake/ui.pm_.c:20
+#: ../../harddrake/ui.pm_.c:21
#, fuzzy
msgid "Module"
msgstr "Đïíôßêé"
-#: ../../harddrake/ui.pm_.c:20
+#: ../../harddrake/ui.pm_.c:21
msgid "the module of the GNU/Linux kernel that handle that device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:21
+#: ../../harddrake/ui.pm_.c:22
msgid "Media class"
msgstr ""
-#: ../../harddrake/ui.pm_.c:21
+#: ../../harddrake/ui.pm_.c:22
msgid "class of hardware device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:22 ../../printerdrake.pm_.c:1404
+#: ../../harddrake/ui.pm_.c:23 ../../printerdrake.pm_.c:1517
msgid "Description"
msgstr "ĐćńéăńáöȚ"
-#: ../../harddrake/ui.pm_.c:22
+#: ../../harddrake/ui.pm_.c:23
msgid "this field describe the device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:24
+#: ../../harddrake/ui.pm_.c:25
#, fuzzy
msgid "Bus identification"
msgstr "Đéóôïđïßçóç ôáőôüôçôáò"
-#: ../../harddrake/ui.pm_.c:25
+#: ../../harddrake/ui.pm_.c:26
msgid ""
-"- PCI and USB devices : this list the vendor, device, subvendor and "
-"subdevice PCI/USB ids"
+"- PCI and USB devices: this list the vendor, device, subvendor and subdevice "
+"PCI/USB ids"
msgstr ""
-#: ../../harddrake/ui.pm_.c:27
+#: ../../harddrake/ui.pm_.c:28
msgid "Location on the bus"
msgstr ""
-#: ../../harddrake/ui.pm_.c:28
+#: ../../harddrake/ui.pm_.c:29
msgid ""
"- pci devices: this gives the PCI slot, device and function of this card\n"
"- eide devices: the device is either a slave or a master device\n"
"- scsi devices: the scsi bus and the scsi device ids"
msgstr ""
-#: ../../harddrake/ui.pm_.c:31
+#: ../../harddrake/ui.pm_.c:32
#, fuzzy
msgid "Old device file"
msgstr "ĆđéëĘîôć áńśćßï"
-#: ../../harddrake/ui.pm_.c:32
+#: ../../harddrake/ui.pm_.c:33
msgid "old static device name used in dev package"
msgstr ""
-#: ../../harddrake/ui.pm_.c:33
+#: ../../harddrake/ui.pm_.c:34
#, fuzzy
msgid "New devfs device"
msgstr "ÓőóêćőȚ đęëçò"
-#: ../../harddrake/ui.pm_.c:34
+#: ../../harddrake/ui.pm_.c:35
msgid "new dinamic device name generated by incore kernel devfs"
msgstr ""
-#: ../../harddrake/ui.pm_.c:35
+#: ../../harddrake/ui.pm_.c:36
#, fuzzy
msgid "Number of buttons"
msgstr "Äęï đëȚêôńùí"
-#: ../../harddrake/ui.pm_.c:36
+#: ../../harddrake/ui.pm_.c:37
msgid "the vendor name of the device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:60
+#: ../../harddrake/ui.pm_.c:38
+#, fuzzy
+msgid "Alternative drivers"
+msgstr "Ćêôęđùóç äïêéìáóôéêțí óćëßäùí..."
+
+#: ../../harddrake/ui.pm_.c:39
+msgid "the list of alternative drivers for this sound card"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:63
#, fuzzy
msgid "/_Quit"
msgstr "žîïäïò"
-#: ../../harddrake/ui.pm_.c:61 ../../harddrake/ui.pm_.c:62
-#: ../../harddrake/ui.pm_.c:68 ../../standalone/logdrake_.c:110
+#: ../../harddrake/ui.pm_.c:64 ../../harddrake/ui.pm_.c:65
+#: ../../harddrake/ui.pm_.c:71 ../../standalone/logdrake_.c:110
msgid "/_Help"
msgstr "/_ÂïȚèćéá"
-#: ../../harddrake/ui.pm_.c:62
+#: ../../harddrake/ui.pm_.c:65
#, fuzzy
msgid "/_Help..."
msgstr "/_ÂïȚèćéá"
-#: ../../harddrake/ui.pm_.c:63
+#: ../../harddrake/ui.pm_.c:66
msgid "Harddrake help"
msgstr ""
-#: ../../harddrake/ui.pm_.c:64
+#: ../../harddrake/ui.pm_.c:67
msgid ""
"Description of the fields:\n"
"\n"
msgstr ""
-#: ../../harddrake/ui.pm_.c:68
+#: ../../harddrake/ui.pm_.c:71
#, fuzzy
msgid "/_About..."
msgstr "/ÂïȚèćéá/_ÓśćôéêÜ ìć..."
-#: ../../harddrake/ui.pm_.c:69
+#: ../../harddrake/ui.pm_.c:72
msgid "About Harddrake"
msgstr ""
-#: ../../harddrake/ui.pm_.c:70
+#: ../../harddrake/ui.pm_.c:73
msgid ""
"This is HardDrake, a Mandrake hardware configuration tool.\n"
"Version:"
msgstr ""
-#: ../../harddrake/ui.pm_.c:71
+#: ../../harddrake/ui.pm_.c:74
#, fuzzy
msgid "Author:"
msgstr "Áőôüìáôç ćîĘôáóç"
-#: ../../harddrake/ui.pm_.c:83
+#: ../../harddrake/ui.pm_.c:86
#, fuzzy
msgid "Harddrake2 version "
msgstr "Ćíôïđéóìüò óêëçńïę äßóêïő"
-#: ../../harddrake/ui.pm_.c:91
+#: ../../harddrake/ui.pm_.c:103
#, fuzzy
msgid "Detected hardware"
msgstr "ĐńïâïëȚ đëçńïöïńéțí őëéêïę"
-#: ../../harddrake/ui.pm_.c:92
+#: ../../harddrake/ui.pm_.c:105
#, fuzzy
-msgid "Configure module"
-msgstr "Ńęèìéóç đïíôéêéïę"
+msgid "Information"
+msgstr "ĐńïâïëȚ đëçńïöïńéțí"
-#: ../../harddrake/ui.pm_.c:92
+#: ../../harddrake/ui.pm_.c:108
#, fuzzy
-msgid "Informations"
-msgstr "ĐńïâïëȚ đëçńïöïńéțí"
+msgid "Configure module"
+msgstr "Ńęèìéóç đïíôéêéïę"
-#: ../../harddrake/ui.pm_.c:92
+#: ../../harddrake/ui.pm_.c:109
msgid "Run config tool"
msgstr ""
-#: ../../harddrake/ui.pm_.c:96
+#: ../../harddrake/ui.pm_.c:113
#, fuzzy
msgid "Detection in progress"
msgstr "áíéśíćęèçêć óôçí đüńôá %s"
-#: ../../harddrake/ui.pm_.c:96 ../../interactive.pm_.c:388
+#: ../../harddrake/ui.pm_.c:113 ../../interactive.pm_.c:391
msgid "Please wait"
msgstr "Đáńáêáëț đćńéìĘíćôć"
-#: ../../harddrake/ui.pm_.c:139
+#: ../../harddrake/ui.pm_.c:156
msgid "primary"
msgstr ""
-#: ../../harddrake/ui.pm_.c:139
+#: ../../harddrake/ui.pm_.c:156
#, fuzzy
msgid "secondary"
msgstr "%d äćőôćńüëćđôá"
-#: ../../harddrake/ui.pm_.c:176
+#: ../../harddrake/ui.pm_.c:197
msgid "You can configure each parameter of the module here."
msgstr ""
-#: ../../harddrake/ui.pm_.c:192
+#: ../../harddrake/ui.pm_.c:213
#, fuzzy, c-format
msgid "Running \"%s\" ..."
msgstr "ÁđïìćìáêńőóìĘíïò ćêôőđùôȚò"
@@ -2696,16 +2782,16 @@ msgstr ""
#: ../../harddrake/v4l.pm_.c:213
#, fuzzy
-msgid "Card model :"
+msgid "Card model:"
msgstr "DMA êÜńôáò"
#: ../../harddrake/v4l.pm_.c:214
#, fuzzy
-msgid "Tuner type :"
+msgid "Tuner type:"
msgstr "ÁëëáăȚ ôęđïő êáôÜôìçóçò"
#: ../../harddrake/v4l.pm_.c:215
-msgid "Number of capture buffers :"
+msgid "Number of capture buffers:"
msgstr ""
#: ../../harddrake/v4l.pm_.c:215
@@ -2714,11 +2800,11 @@ msgstr ""
#: ../../harddrake/v4l.pm_.c:217
#, fuzzy
-msgid "PLL setting :"
+msgid "PLL setting:"
msgstr "Ìïńöïđïßçóç"
#: ../../harddrake/v4l.pm_.c:218
-msgid "Radio support :"
+msgid "Radio support:"
msgstr ""
#: ../../harddrake/v4l.pm_.c:218
@@ -2730,22 +2816,22 @@ msgid ""
"GNU/Linux is a multiuser system, and this means that each user can have his\n"
"own preferences, his own files and so on. You can read the ``User Guide''\n"
"to learn more. But unlike \"root\", which is the administrator, the users\n"
-"you will add here will not be entitled to change anything except their own\n"
-"files and their own configuration. You will have to create at least one\n"
-"regular user for yourself. That account is where you should log in for\n"
-"routine use. Although it is very practical to log in as \"root\" everyday,\n"
-"it may also be very dangerous! The slightest mistake could mean that your\n"
-"system would not work any more. If you make a serious mistake as a regular\n"
-"user, you may only lose some information, but not the entire system.\n"
+"you add here will not be entitled to change anything except their own files\n"
+"and their own configuration. You will have to create at least one regular\n"
+"user for yourself. That account is where you should log in for routine use.\n"
+"Although it is very practical to log in as \"root\" everyday, it may also\n"
+"be very dangerous! The slightest mistake could mean that your system would\n"
+"not work any more. If you make a serious mistake as a regular user, you may\n"
+"only lose some information, but not the entire system.\n"
"\n"
"First, you have to enter your real name. This is not mandatory, of course -\n"
"as you can actually enter whatever you want. DrakX will then take the first\n"
"word you have entered in the box and will bring it over to the \"User\n"
"name\". This is the name this particular user will use to log onto the\n"
"system. You can change it. You then have to enter a password here. A\n"
-"non-privileged (regular) user's password is not as crucial as \"root\"' one\n"
-"from a security point of view, but that is no reason to neglect it: after\n"
-"all, your files are at risk.\n"
+"non-privileged (regular) user's password is not as crucial as the \"root\"'\n"
+"one from a security point of view, but that is no reason to neglect it:\n"
+"after all, your files are at risk.\n"
"\n"
"If you click on \"Accept user\", you can then add as many as you want. Add\n"
"a user for each one of your friends: your father or your sister, for\n"
@@ -2865,7 +2951,7 @@ msgid ""
"to have a graphical workstation!\n"
"\n"
"Moving the mouse cursor over a group name will display a short explanatory\n"
-"text about that group. If you deselect all groups when performing a regular\n"
+"text about that group. If you unselect all groups when performing a regular\n"
"installation (by opposition to an upgrade), a dialog will pop up proposing\n"
"different options for a minimal installation:\n"
"\n"
@@ -2891,10 +2977,10 @@ msgstr ""
#: ../../help.pm_.c:128
msgid ""
-"Finally, depending on whether or not you selected individual packages, you\n"
-"will be presented a tree containing all packages classified by groups and\n"
-"subgroups. While browsing the tree, you can select entire groups,\n"
-"subgroups, or individual packages.\n"
+"Finally, depending on whether or not you chose to be able to select\n"
+"individual packages, you will be presented a tree containing all packages\n"
+"classified by groups and subgroups. While browsing the tree, you can select\n"
+"entire groups, subgroups, or individual packages.\n"
"\n"
"Whenever you select a package on the tree, a description appears on the\n"
"right. When your selection is finished, click the \"Install\" button which\n"
@@ -2929,11 +3015,11 @@ msgstr ""
#: ../../help.pm_.c:164
msgid ""
-"You are now proposed to set up your Internet/network connection. If you\n"
-"wish to connect your computer to the Internet or to a local network, click\n"
-"\"OK\". The autodetection of network devices and modem will be launched. If\n"
-"this detection fails, uncheck the \"Use auto detection\" box next time. You\n"
-"may also choose not to configure the network, or do it later; in that case,\n"
+"You are now able to set up your Internet/network connection. If you wish to\n"
+"connect your computer to the Internet or to a local network, click \"OK\".\n"
+"The autodetection of network devices and modem will be launched. If this\n"
+"detection fails, uncheck the \"Use auto detection\" box next time. You may\n"
+"also choose not to configure the network, or do it later; in that case,\n"
"simply click the \"Cancel\" button.\n"
"\n"
"Available connections are: traditional modem, ISDN modem, ADSL connection,\n"
@@ -2988,7 +3074,7 @@ msgstr ""
msgid ""
"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
"local time according to the time zone you selected. It is however possible\n"
-"to deactivate this by deselecting \"Hardware clock set to GMT\" so that the\n"
+"to deactivate this by unselecting \"Hardware clock set to GMT\" so that the\n"
"hardware clock is the same as the system clock. This is useful when the\n"
"machine is hosting another operating system like Windows.\n"
"\n"
@@ -3019,24 +3105,12 @@ msgid ""
"If you can see the message during the test, and answer \"Yes\", then DrakX\n"
"will proceed to the next step. If you cannot see the message, it simply\n"
"means that the configuration was wrong and the test will automatically end\n"
-"after 10 seconds, restoring the screen."
-msgstr ""
-
-#: ../../help.pm_.c:237
-msgid ""
-"The first time you try the X configuration, you may not be very satisfied\n"
-"with its display (screen is too small, shifted left or right...). Hence,\n"
-"even if X starts up correctly, DrakX then asks you if the configuration\n"
-"suits you. It will also propose to change it by displaying a list of valid\n"
-"modes it could find, asking you to select one.\n"
-"\n"
-"As a last resort, if you still cannot get X to work, choose \"Change\n"
-"graphics card\", select \"Unlisted card\", and when prompted on which\n"
-"server, choose \"FBDev\". This is a failsafe option which works with any\n"
-"modern graphics card. Then choose \"Test again\" to be sure."
+"after 10 seconds, restoring the screen. Refer then to the Video\n"
+"configuration section of the user guide for more information on how to\n"
+"configure your display."
msgstr ""
-#: ../../help.pm_.c:249
+#: ../../help.pm_.c:239
msgid ""
"Finally, you will be asked whether you want to see the graphical interface\n"
"at boot. Note this question will be asked even if you chose not to test the\n"
@@ -3045,7 +3119,7 @@ msgid ""
"configured."
msgstr ""
-#: ../../help.pm_.c:256
+#: ../../help.pm_.c:246
msgid ""
"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
@@ -3065,13 +3139,13 @@ msgid ""
"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
"password, or any other reason.\n"
"\n"
-"When you click on this step, you will be asked to enter a disk inside the\n"
-"drive. The floppy disk you will insert must be empty or contain data which\n"
-"you do not need. You will not have to format it since DrakX will rewrite\n"
-"the whole disk."
+"If you say \"Yes\", you will be asked to enter a disk inside the drive. The\n"
+"floppy disk you will insert must be empty or contain data which you do not\n"
+"need. You will not have to format it since DrakX will rewrite the whole\n"
+"disk."
msgstr ""
-#: ../../help.pm_.c:280
+#: ../../help.pm_.c:270
#, fuzzy
msgid ""
"At this point, you need to choose where you want to install the Mandrake\n"
@@ -3105,7 +3179,9 @@ msgid ""
"\n"
" * \"Use existing partition\": the wizard has detected one or more existing\n"
"Linux partitions on your hard drive. If you want to use them, choose this\n"
-"option;\n"
+"option. You will then be asked to choose the mount points associated to\n"
+"each of the partitions. The legacy mount points are selected by default,\n"
+"and you should generally keep them.\n"
"\n"
" * \"Use the free space on the Windows; partition\": if Microsoft Windows\n"
"is installed on your hard drive and takes all the space available on it,\n"
@@ -3138,7 +3214,9 @@ msgid ""
" * \"Expert mode\": choose this option if you want to manually partition\n"
"your hard drive. Be careful - it is a powerful but dangerous choice. You\n"
"can very easily lose all your data. Hence, do not choose this unless you\n"
-"know what you are doing."
+"know what you are doing. To know how do use the DiskDrake utility used\n"
+"here, refer to the section ``Managing Your Partitions'' of the ````User\n"
+"Guide''''"
msgstr ""
"Óć áőôü ôï óçìćßï, đńĘđćé íá áđïöáóßóćôć đïę èá ćăêáôáóôȚóćôć ôï GNU/Linux\n"
"óôïí óêëçńü óáò äßóêï. ĆÜí ćßíáé Üäćéïò Ț ćÜí Ęíá Üëëï ëćéôïőńăéêü "
@@ -3210,7 +3288,7 @@ msgstr ""
" ćÜí êÜíćôć êÜđïéï ëÜèïò. Âćâáéùèćßôć üôé îĘńćôć ôé êÜíćôć đńùôïę "
"đńïśùńȚóćôć."
-#: ../../help.pm_.c:347
+#: ../../help.pm_.c:341
msgid ""
"There you are. Installation is now complete and your GNU/Linux system is\n"
"ready to use. Just click \"OK\" to reboot the system. You can start\n"
@@ -3243,7 +3321,7 @@ msgid ""
"\"mformat a:\")"
msgstr ""
-#: ../../help.pm_.c:378
+#: ../../help.pm_.c:372
#, fuzzy
msgid ""
"Any partitions that have been newly defined must be formatted for use\n"
@@ -3304,7 +3382,7 @@ msgstr ""
"śńçóéìïđïéȚóćôć \n"
"Üëëćò êáôáôìȚóćéò ăéá ôçí ćăêáôÜóôáóç ôïő Mandrake Linux."
-#: ../../help.pm_.c:404
+#: ../../help.pm_.c:398
#, fuzzy
msgid ""
"Your new Mandrake Linux operating system is currently being installed.\n"
@@ -3321,12 +3399,12 @@ msgstr ""
"\n"
"Đáńáêáëț đćńéìĘíćôć őđïìïíćôéêÜ."
-#: ../../help.pm_.c:412
+#: ../../help.pm_.c:406
msgid ""
"At the time you are installing Mandrake Linux, it is likely that some\n"
"packages have been updated since the initial release. Some bugs may have\n"
"been fixed, and security issues solved. To allow you to benefit from these\n"
-"updates, you are now proposed to download them from the Internet. Choose\n"
+"updates, you are now able to download them from the Internet. Choose\n"
"\"Yes\" if you have a working Internet connection, or \"No\" if you prefer\n"
"to install updated packages later.\n"
"\n"
@@ -3336,7 +3414,7 @@ msgid ""
"install the selected package(s), or \"Cancel\" to abort."
msgstr ""
-#: ../../help.pm_.c:425
+#: ../../help.pm_.c:419
msgid ""
"Before continuing, you should read carefully the terms of the license. It\n"
"covers the whole Mandrake Linux distribution, and if you do not agree with\n"
@@ -3345,19 +3423,19 @@ msgid ""
"\"Accept\" button."
msgstr ""
-#: ../../help.pm_.c:432
+#: ../../help.pm_.c:426
msgid ""
"At this point, it is time to choose the security level desired for the\n"
"machine. As a rule of thumb, the more exposed the machine is, and the more\n"
"the data stored in it is crucial, the higher the security level should be.\n"
"However, a higher security level is generally obtained at the expense of\n"
-"easiness of use. Refer to the \"msec\" chapter of the ``Reference Manual''\n"
-"to get more information about the meaning of these levels.\n"
+"ease of use. Refer to the \"msec\" chapter of the ``Reference Manual'' to\n"
+"get more information about the meaning of these levels.\n"
"\n"
"If you do not know what to choose, keep the default option."
msgstr ""
-#: ../../help.pm_.c:442
+#: ../../help.pm_.c:436
#, fuzzy
msgid ""
"At this point, you need to choose which partition(s) will be used for the\n"
@@ -3375,26 +3453,26 @@ msgid ""
" * \"Clear all\": this option deletes all partitions on the selected hard\n"
"drive;\n"
"\n"
-" * \"Auto allocate\": this option enables to automatically create \"Ext2\"\n"
-"and swap partitions in free space of your hard drive;\n"
+" * \"Auto allocate\": this option enables to automatically create ext3 and\n"
+"swap partitions in free space of your hard drive;\n"
"\n"
-" * \"More\": gives access to additional features:\n"
+"\"More\": gives access to additional features:\n"
"\n"
-" * \"Save partition table\": saves the partition table to a floppy.\n"
-"Useful for later partition-table recovery if necessary. It is strongly\n"
-"recommended to perform this step;\n"
+" * \"Save partition table\": saves the partition table to a floppy. Useful\n"
+"for later partition-table recovery if necessary. It is strongly recommended\n"
+"to perform this step;\n"
"\n"
-" * \"Restore partition table\": allows to restore a previously saved\n"
+" * \"Restore partition table\": allows to restore a previously saved\n"
"partition table from floppy disk;\n"
"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you\n"
-"can try to recover it using this option. Please be careful and remember\n"
-"that it can fail;\n"
+" * \"Rescue partition table\": if your partition table is damaged, you can\n"
+"try to recover it using this option. Please be careful and remember that it\n"
+"can fail;\n"
"\n"
-" * \"Reload partition table\": discards all changes and loads your\n"
-"initial partition table;\n"
+" * \"Reload partition table\": discards all changes and loads your initial\n"
+"partition table;\n"
"\n"
-" * \"Removable media automounting\": unchecking this option will force\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
"users to manually mount and unmount removable medias such as floppies and\n"
"CD-ROMs.\n"
"\n"
@@ -3422,7 +3500,7 @@ msgid ""
" * Ctrl-m to set the mount point.\n"
"\n"
"To get information about the different filesystem types available, please\n"
-"read the ext2fs chapter from the ``Reference Manual''.\n"
+"read the ext2FS chapter from the ``Reference Manual''.\n"
"\n"
"If you are installing on a PPC machine, you will want to create a small HFS\n"
"``bootstrap'' partition of at least 1MB, which will be used by the yaboot\n"
@@ -3512,7 +3590,7 @@ msgstr ""
"đ.ś. 50ÌÂ, ßóùò ôçí âńćßôć śńȚóéìç ăéá áđïèȚêćőóç \n"
"ćíüò đőńȚíá êáé ramdisk image ăéá ćđßăïőóćò êáôáóôÜóćéò."
-#: ../../help.pm_.c:513
+#: ../../help.pm_.c:507
#, fuzzy
msgid ""
"More than one Microsoft partition has been detected on your hard drive.\n"
@@ -3583,11 +3661,11 @@ msgstr ""
"Windows\n"
"(ï đńțôïò äßóêïò Ț êáôÜôìçóç ëĘăćôáé \"C:\")."
-#: ../../help.pm_.c:544
+#: ../../help.pm_.c:538
msgid "Please be patient. This operation can take several minutes."
msgstr "Đáńáêáëț đćńéìĘíćôć. ÁőôȚ ç äéáäéêáóßá ìđïńćß íá đÜńćé ìćńéêÜ ëćđôÜ."
-#: ../../help.pm_.c:547
+#: ../../help.pm_.c:541
#, fuzzy
msgid ""
"DrakX now needs to know if you want to perform a default (\"Recommended\")\n"
@@ -3595,23 +3673,23 @@ msgid ""
"also choose to do a new install or an upgrade of an existing Mandrake Linux\n"
"system:\n"
"\n"
-" * \"Install\": completely wipes out the old system. In fact, depending on\n"
-"what currently holds your machine, you will be able to keep some old (Linux\n"
-"or other) partitions unchanged;\n"
+" * \"Install\": completely wipes out the old system, however, depending on\n"
+"what is currently installed on your machine, you may be able to keep some\n"
+"old partitions (Linux or otherwise) unchanged;\n"
"\n"
" * \"Upgrade\": this installation class allows to simply update the\n"
"packages currently installed on your Mandrake Linux system. It keeps the\n"
"current partitions of your hard drives as well as user configurations. All\n"
-"other configuration steps remain available with respect to plain\n"
+"other configuration steps remain available, similar to a normal\n"
"installation;\n"
"\n"
-" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
-"existing Mandrake Linux system while keeping all system configurations\n"
-"unchanged. Adding new packages to the current installation is also\n"
-"possible.\n"
+" * \"Upgrade Packages Only\": this new installation class allows you to\n"
+"upgrade an existing Mandrake Linux system while keeping all system\n"
+"configurations unchanged. Adding new packages to the current installation\n"
+"is also possible.\n"
"\n"
-"Upgrades should work fine for Mandrake Linux systems starting from \"8.1\"\n"
-"release.\n"
+"Upgrades should work fine on Mandrake Linux systems containing version\n"
+"\"8.1\" or later.\n"
"\n"
"Depending on your knowledge of GNU/Linux, select one of the following\n"
"choices:\n"
@@ -3620,11 +3698,11 @@ msgid ""
"operating system. The installation will be very easy and you will only be\n"
"asked a few questions;\n"
"\n"
-" * Expert: if you have a good knowledge of GNU/Linux, you can choose this\n"
-"installation class. The expert installation will allow you to perform a\n"
-"highly-customized installation. Answering some of the questions can be\n"
-"difficult if you do not have a good knowledge of GNU/Linux, so do not\n"
-"choose this unless you know what you are doing."
+" * Expert: if you have a good understanding of GNU/Linux, you may wish to\n"
+"perform a highly customized installation. Some of the decisions you will\n"
+"have to make may be difficult if you do not have good knowledge of\n"
+"GNU/Linux, so it is not recommended that those without a fair amount of\n"
+"experience select this installation class."
msgstr ""
"Đáńáêáëț ćđéëĘîôć \"ĆăêáôÜóôáóç\" ćÜí äćí őđÜńśćé ćăêáôćóôçìĘíç đáëáéüôćńç "
"Ęêäïóç ôïő Mandrake Linux\n"
@@ -3660,23 +3738,28 @@ msgstr ""
"đńïûđïèĘôïőí ćîćéäéêćőìĘíćò ăíțóćéò.\n"
" Âćâáéùèćßôć üôé îĘńćôć ôé êÜíćôć đńùôïę ćđéëĘîćôć áőôȚí ôçí ćăêáôÜóôáóç."
-#: ../../help.pm_.c:584
+#: ../../help.pm_.c:578
msgid ""
"Normally, DrakX selects the right keyboard for you (depending on the\n"
-"language you have chosen) and you won't even see this step. However, you\n"
-"might not have a keyboard that corresponds exactly to your language: for\n"
-"example, if you are an English speaking Swiss person, you may still want\n"
-"your keyboard to be a Swiss keyboard. Or if you speak English but are\n"
-"located in Quebec, you may find yourself in the same situation. In both\n"
-"cases, you will have to go back to this installation step and select an\n"
-"appropriate keyboard from the list.\n"
+"language you have chosen). However, you might not have a keyboard that\n"
+"corresponds exactly to your language: for example, if you are an English\n"
+"speaking Swiss person, you may still want your keyboard to be a Swiss\n"
+"keyboard. Or if you speak English but are located in Quebec, you may find\n"
+"yourself in the same situation. In both cases, you will have to go back to\n"
+"this installation step and select an appropriate keyboard from the list.\n"
"\n"
"Click on the \"More\" button to be presented with the complete list of\n"
-"supported keyboards."
+"supported keyboards.\n"
+"\n"
+"If you choose a keyboard layout based on a non-latin alphabet, you will be\n"
+"asked on next dialog to choose the key binding that will switch the\n"
+"keyboard layout between the latin and non latin layouts."
msgstr ""
-#: ../../help.pm_.c:597
+#: ../../help.pm_.c:594
msgid ""
+"The first step is to choose your preferred language.\n"
+"\n"
"Please choose your preferred language for installation and system usage.\n"
"\n"
"Clicking on the \"Advanced\" button will allow you to select other\n"
@@ -3690,7 +3773,7 @@ msgid ""
"additional locales, click the \"OK\" button to continue."
msgstr ""
-#: ../../help.pm_.c:610
+#: ../../help.pm_.c:609
msgid ""
"DrakX generally detects the number of buttons your mouse has. If not, it\n"
"assumes you have a two-button mouse and will set it up for third-button\n"
@@ -3703,10 +3786,17 @@ msgid ""
"If you choose a mouse other than the default, a test screen will be\n"
"displayed. Use the buttons and wheel to verify that the settings are\n"
"correct. If the mouse is not working well, press the space bar or [Return]\n"
-"to \"Cancel\" and choose again."
+"to \"Cancel\" and choose again.\n"
+"\n"
+"Wheel mouses are sometimes not automatically detected. You will need to\n"
+"manually select it in the list. Be sure to select the one corresponding to\n"
+"the correct port it is attached to. After you have pressed the \"OK\"\n"
+"button, a mouse image is displayed. You then need to move the wheel of your\n"
+"mouse to activate it correctly. Then test all buttons and movements are\n"
+"correct."
msgstr ""
-#: ../../help.pm_.c:624
+#: ../../help.pm_.c:630
#, fuzzy
msgid ""
"Please select the correct port. For example, the \"COM1\" port under\n"
@@ -3715,7 +3805,7 @@ msgstr ""
"Đáńáêáëț ćđéëĘîôć ôçí êáôÜëëçëç èęńá. Ăéá đáńÜäćéăìá,\n"
"ç COM1 óôá Windows ïíïìÜæćôáé ttyS0 óôï GNU/Linux."
-#: ../../help.pm_.c:628
+#: ../../help.pm_.c:634
msgid ""
"This is the most crucial decision point for the security of your GNU/Linux\n"
"system: you have to enter the \"root\" password. \"root\" is the system\n"
@@ -3745,15 +3835,15 @@ msgid ""
"In Expert mode, you will be asked if you will be connecting to an\n"
"authentication server, like NIS or LDAP.\n"
"\n"
-"If your network uses the LDAP (or NIS) protocol for authentication, select\n"
-"\"LDAP\" (or \"NIS\") as authentication. If you do not know, ask your\n"
-"network administrator.\n"
+"If your network uses either of the LDAP, NIS, or PDC Windows Domain\n"
+"authentication services, select the appropriate one as \"authentication\".\n"
+"If you do not know, ask your network administrator.\n"
"\n"
"If your computer is not connected to any administrated network, you will\n"
"want to choose \"Local files\" for authentication."
msgstr ""
-#: ../../help.pm_.c:664
+#: ../../help.pm_.c:670
msgid ""
"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
@@ -3792,8 +3882,12 @@ msgid ""
"options. !!\n"
"\n"
"Clicking the \"Advanced\" button in this dialog will offer many advanced\n"
-"options, which are reserved to the expert user.\n"
-"\n"
+"options, which are reserved for the expert user."
+msgstr ""
+
+#: ../../help.pm_.c:710
+#, fuzzy
+msgid ""
"After you have configured the general bootloader parameters, the list of\n"
"boot options which will be available at boot time will be displayed.\n"
"\n"
@@ -3801,17 +3895,7 @@ msgid ""
"automatically be added to the boot menu. Here, you can choose to fine-tune\n"
"the existing options. Select an entry and click \"Modify\" to modify or\n"
"remove it; \"Add\" creates a new entry; and \"Done\" goes on to the next\n"
-"installation step."
-msgstr ""
-
-#: ../../help.pm_.c:713
-#, fuzzy
-msgid ""
-"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
-"either GNU/Linux or any other operating system present on your computer.\n"
-"Normally, these other operating systems are correctly detected and\n"
-"installed. If this is not the case, you can add an entry by hand in this\n"
-"screen. Be careful to choose the correct parameters.\n"
+"installation step.\n"
"\n"
"You may also not want to give access to these other operating systems to\n"
"anyone. In which case, you can delete the corresponding entries. But then,\n"
@@ -3881,18 +3965,18 @@ msgstr ""
#: ../../help.pm_.c:759
#, fuzzy
msgid ""
-"DrakX now detects any IDE device present in your computer. It will also\n"
-"scan for one or more PCI SCSI card(s) on your system. If a SCSI card is\n"
+"DrakX now detects any IDE devices present in your computer. It will also\n"
+"scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
"found, DrakX will automatically install the appropriate driver.\n"
"\n"
"Because hardware detection does not always detect a piece of hardware,\n"
"DrakX will ask you to confirm if a PCI SCSI card is present. Click \"Yes\"\n"
"if you know that there is a SCSI card installed in your machine. You will\n"
-"be presented a list of SCSI cards to choose from. Click \"No\" if you have\n"
-"no SCSI hardware. If you are unsure, you can check the list of hardware\n"
-"detected in your machine by selecting \"See hardware info\" and clicking\n"
-"\"OK\". Examine the list of hardware and then click on the \"OK\" button to\n"
-"return to the SCSI interface question.\n"
+"be presented with a list of SCSI cards to choose from. Click \"No\" if you\n"
+"have no SCSI hardware. If you are unsure, you can check the list of\n"
+"hardware detected in your machine by selecting \"See hardware info\" and\n"
+"clicking \"OK\". Examine the list of hardware and then click on the \"OK\"\n"
+"button to return to the SCSI interface question.\n"
"\n"
"If you have to manually specify your adapter, DrakX will ask if you want to\n"
"specify options for it. You should allow DrakX to probe the hardware for\n"
@@ -4153,7 +4237,9 @@ msgid ""
"order to configure the clock according to the time zone you are in;\n"
"\n"
" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
-"configuration wizard;\n"
+"configuration wizard. Consult the corresponding chapter of the ``User\n"
+"Guide'' for more information on how to setup a new printer. The interface\n"
+"presented there is similar to the one used during installation;\n"
"\n"
" * \"Sound card\": if a sound card is detected on your system, it is\n"
"displayed here. No modification possible at installation time;\n"
@@ -4166,7 +4252,7 @@ msgid ""
"associated with it."
msgstr ""
-#: ../../help.pm_.c:894
+#: ../../help.pm_.c:896
#, fuzzy
msgid ""
"Choose the hard drive you want to erase in order to install your new\n"
@@ -4177,7 +4263,7 @@ msgstr ""
"ôçí íĘá êáôÜôìçóç Mandrake Linux. ĐŃÏÓÏŚÇ: Œëá ôá äćäïìĘíá èá äéáăńáöïęí\n"
"êáé èá ćßíáé áäęíáôç ç ćđáíáöïńÜ ôïőò."
-#: ../../help.pm_.c:899
+#: ../../help.pm_.c:901
#, fuzzy
msgid ""
"Click on \"OK\" if you want to delete all data and partitions present on\n"
@@ -4210,7 +4296,7 @@ msgstr ""
msgid "You must also format %s"
msgstr ""
-#: ../../install_any.pm_.c:418
+#: ../../install_any.pm_.c:423
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -4236,20 +4322,29 @@ msgstr ""
"\n"
"ÈĘëćôć íá ćăêáôáóôȚóćôć áőôïęò ôïőò ćîőđçńćôçôĘò;\n"
-#: ../../install_any.pm_.c:453
+#: ../../install_any.pm_.c:441
+#, c-format
+msgid ""
+"The following packages will be removed to allow upgrading your system: %s\n"
+"\n"
+"\n"
+"Do you really want to remove these packages?\n"
+msgstr ""
+
+#: ../../install_any.pm_.c:471
msgid "Can't use broadcast with no NIS domain"
msgstr "Äćí ìđïńț íá śńçóéìïđïéȚóù broadcast śùńßò NIS domain"
-#: ../../install_any.pm_.c:841
+#: ../../install_any.pm_.c:862
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "ĆéóÜăćôć ìéá FAT ìïńöïđïéçìĘíç äéóêĘôôá óôïí ïäçăü %s"
-#: ../../install_any.pm_.c:845
+#: ../../install_any.pm_.c:866
msgid "This floppy is not FAT formatted"
msgstr "ÁőôȚ ç äéóêĘôôá äćí ćßíáé ìïńöïđïéçìĘíç FAT"
-#: ../../install_any.pm_.c:857
+#: ../../install_any.pm_.c:878
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -4257,11 +4352,20 @@ msgstr ""
"Ăéá íá śńçóéìïđïéȚóćôć áőôȚí ôçí áđïèçêćőìĘíç ćđéëïăȚ đáêĘôùí, îćêéíȚóôć ôçí "
"ćăêáôÜóôáóç ìć ``linux defcfg=floppy''"
-#: ../../install_any.pm_.c:880 ../../partition_table.pm_.c:771
+#: ../../install_any.pm_.c:901 ../../partition_table.pm_.c:767
#, c-format
msgid "Error reading file %s"
msgstr "ÓöÜëìá êáôÜ ôçí áíÜăíùóç ôïő áńśćßïő %s"
+#: ../../install_any.pm_.c:1023
+msgid ""
+"An error occurred - no valid devices were found on which to create new "
+"filesystems. Please check your hardware for the cause of this problem"
+msgstr ""
+"ĐńïêëȚèçêć óöÜëìá - äćí âńĘèçêáí óőóêćőĘò óôéò ïđïßćò íá ćßíáé äőíáôȚç "
+"äçìéïőńăßá íĘùí óőóôçìÜôùí áńśćßùí. Đáńáêáëț ćëćăîôć ôï őëéêü óáò ăéáôçí "
+"áéôßá áőôïę ôïő đńïâëȚìáôïò"
+
#: ../../install_interactive.pm_.c:23
#, c-format
msgid ""
@@ -4296,59 +4400,59 @@ msgstr ""
"\n"
"Íá óőíćśßóù;"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:168
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:169
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "ĐńĘđćé íá Ęśćôć ìéá êáôÜôìçóç FAT mounted óôï /boot/efi"
-#: ../../install_interactive.pm_.c:91
+#: ../../install_interactive.pm_.c:92
msgid "Use free space"
msgstr "ŚńȚóç ćëćęèćńïő śțńïő"
-#: ../../install_interactive.pm_.c:93
+#: ../../install_interactive.pm_.c:94
msgid "Not enough free space to allocate new partitions"
msgstr "Äćí őđÜńśćé áńêćôüò ćëćęèćńïò śțńïò ăéá äçìéïőńăßá íĘùí êáôáôìȚóćùí"
-#: ../../install_interactive.pm_.c:101
+#: ../../install_interactive.pm_.c:102
msgid "Use existing partitions"
msgstr "ŚńȚóç őđÜńśïíôùí êáôáôìȚóćùí"
-#: ../../install_interactive.pm_.c:103
+#: ../../install_interactive.pm_.c:104
msgid "There is no existing partition to use"
msgstr "Äćí őđÜńśïőí êáôáôìȚóćéò đńïò śńȚóç"
-#: ../../install_interactive.pm_.c:110
+#: ../../install_interactive.pm_.c:111
msgid "Use the Windows partition for loopback"
msgstr "ŚńȚóç êáôÜôìçóçò Windows ăéá loopback"
-#: ../../install_interactive.pm_.c:113
+#: ../../install_interactive.pm_.c:114
msgid "Which partition do you want to use for Linux4Win?"
msgstr "ĐïéÜ êáôÜôìçóç èĘëćôć íá śńçóéìïđïéȚóćôć ăéá ôï Linux4Win;"
-#: ../../install_interactive.pm_.c:115
+#: ../../install_interactive.pm_.c:116
msgid "Choose the sizes"
msgstr "ĆđéëĘîôć ôá ìćăĘèç"
-#: ../../install_interactive.pm_.c:116
+#: ../../install_interactive.pm_.c:117
msgid "Root partition size in MB: "
msgstr "ÌĘăćèïò âáóéêȚò êáôÜôìçóçò óőóôȚìáôïò óć MB:"
-#: ../../install_interactive.pm_.c:117
+#: ../../install_interactive.pm_.c:118
msgid "Swap partition size in MB: "
msgstr "ÌĘăćèïò êáôÜôìçóçò swap óć MB"
-#: ../../install_interactive.pm_.c:126
+#: ../../install_interactive.pm_.c:128
msgid "Use the free space on the Windows partition"
msgstr "ŚńȚóç ôïő ćëćęèćńïő śțńïő óôçí êáôÜôìçóç ôùí Windows"
-#: ../../install_interactive.pm_.c:129
+#: ../../install_interactive.pm_.c:131
msgid "Which partition do you want to resize?"
msgstr "Óć ôé ôęđï êáôÜôìçóçò èĘëćôć íá áëëÜîćôć ìĘăćèïò;"
-#: ../../install_interactive.pm_.c:131
+#: ../../install_interactive.pm_.c:133
msgid "Resizing Windows partition"
msgstr "Őđïëïăéóìüò ïńßùí óőóôȚìáôïò áńśćßùí Windows"
-#: ../../install_interactive.pm_.c:134
+#: ../../install_interactive.pm_.c:136
#, c-format
msgid ""
"The FAT resizer is unable to handle your partition, \n"
@@ -4357,7 +4461,7 @@ msgstr ""
"Äćí ìđïńț íá áëëÜîù ìĘăćèïò óôçí êáôÜôìçóç FAT, \n"
"đńïêëȚèçêć ôï đáńáêÜôù ëÜèïò: %s"
-#: ../../install_interactive.pm_.c:137
+#: ../../install_interactive.pm_.c:139
msgid ""
"Your Windows partition is too fragmented. Please reboot your computer under "
"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
@@ -4366,7 +4470,7 @@ msgstr ""
"Ç êáôÜôìçóç ôùí Windows ćßíáé đïëę êáôáêćńìáôéóìĘíç, đáńáêáëț ôńĘîôć đńțôá "
"ôï ``defrag'' "
-#: ../../install_interactive.pm_.c:138
+#: ../../install_interactive.pm_.c:140
#, fuzzy
msgid ""
"WARNING!\n"
@@ -4387,21 +4491,21 @@ msgstr ""
"ÌćôÜ èá đńĘđćé íá êńáôȚóćôć áíôßăńáöï áóöáëćßáò ôùí äćäïìĘíùí óáò.\n"
"ĆÜí ćßóôć óßăïőńïé, đáôȚóôć Ok."
-#: ../../install_interactive.pm_.c:148
+#: ../../install_interactive.pm_.c:150
msgid "Which size do you want to keep for Windows on"
msgstr "Ôé śțńï èĘëćôć íá êńáôȚóćôć ăéá ôá windows óôï"
-#: ../../install_interactive.pm_.c:149
+#: ../../install_interactive.pm_.c:151
#, c-format
msgid "partition %s"
msgstr "êáôÜôìçóç %s"
-#: ../../install_interactive.pm_.c:156
+#: ../../install_interactive.pm_.c:158
#, c-format
msgid "FAT resizing failed: %s"
msgstr "ÁëëáăȚ ìćăĘèïőò FAT áđĘôőść: %s"
-#: ../../install_interactive.pm_.c:171
+#: ../../install_interactive.pm_.c:173
msgid ""
"There is no FAT partition to resize or to use as loopback (or not enough "
"space left)"
@@ -4409,35 +4513,35 @@ msgstr ""
"Äćí őđÜńśïőí FAT êáôáôìȚóćéò ăéá áëëáăȚ ìćăĘèïőò Ț ăéá śńȚóç ùò loopback (Ț "
"äćí őđÜńśćé áńêćôüò śțńïò)"
-#: ../../install_interactive.pm_.c:177
+#: ../../install_interactive.pm_.c:179
msgid "Erase entire disk"
msgstr "ÄéáăńáöȚ ïëüêëçńïő ôïő äßóêïő"
-#: ../../install_interactive.pm_.c:177
+#: ../../install_interactive.pm_.c:179
msgid "Remove Windows(TM)"
msgstr "Áöáßńćóç Windows(TM)"
-#: ../../install_interactive.pm_.c:180
+#: ../../install_interactive.pm_.c:182
msgid "You have more than one hard drive, which one do you install linux on?"
msgstr ""
"žśćôć đćńéóóüôćńïőò áđü Ęíáí äßóêïőò, óć đïéüí èĘëćôć íá ćăêáôáóôȚóćôć ôï "
"Linux;"
-#: ../../install_interactive.pm_.c:183
+#: ../../install_interactive.pm_.c:185
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr ""
"Œëćò ïé őđÜńśïőóćò êáôáôìȚóćéò êáé ôá äćäïìĘíá ôïőò óôïí äßóêï %s èá śáèïęí"
-#: ../../install_interactive.pm_.c:191
+#: ../../install_interactive.pm_.c:193
msgid "Custom disk partitioning"
msgstr "ĐńïóáńìïóìĘíćò êáôáôìȚóćéò äßóêïő"
-#: ../../install_interactive.pm_.c:195
+#: ../../install_interactive.pm_.c:197
msgid "Use fdisk"
msgstr "ŚńȚóç fdisk"
-#: ../../install_interactive.pm_.c:198
+#: ../../install_interactive.pm_.c:200
#, c-format
msgid ""
"You can now partition %s.\n"
@@ -4446,28 +4550,28 @@ msgstr ""
"Ìđïńćßôć ôțńá íá êáôáôìȚóćôć ôïí äßóêï %s\n"
"Œôáí ôćëćéțóćôć, ìçí îćśÜóćôć íá áđïèçêćęóćôć đáôțíôáò `w'"
-#: ../../install_interactive.pm_.c:227
+#: ../../install_interactive.pm_.c:229
msgid "You don't have enough free space on your Windows partition"
msgstr "Äćí Ęśćôć áńêćôü ćëćęèćńï śțńï óôçí êáôÜôìçóç ôùí Windows"
-#: ../../install_interactive.pm_.c:243
+#: ../../install_interactive.pm_.c:245
msgid "I can't find any room for installing"
msgstr "Äćí ìđïńț íá âńț áńêćôü śțńï ăéá ćăêáôÜóôáóç"
-#: ../../install_interactive.pm_.c:246
+#: ../../install_interactive.pm_.c:248
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr "Ôï DrakX âńȚêć ôéò đáńáêÜôù ëęóćéò:"
-#: ../../install_interactive.pm_.c:250
+#: ../../install_interactive.pm_.c:252
#, c-format
msgid "Partitioning failed: %s"
msgstr "Ç êáôÜôìçóç áđĘôőść: %s"
-#: ../../install_interactive.pm_.c:260
+#: ../../install_interactive.pm_.c:262
msgid "Bringing up the network"
msgstr "Ćêêßíçóç äéêôęïő"
-#: ../../install_interactive.pm_.c:265
+#: ../../install_interactive.pm_.c:267
msgid "Bringing down the network"
msgstr "ÄéáêïđȚ ëćéôïőńăßáò äéêôęïő."
@@ -4480,12 +4584,12 @@ msgstr ""
"ôïő őëéêïę Ț áđü ôçí éóôïóćëßäá ôïő êáôáóêćőáóôȚ (áí Ęśćôć đńüóâáóç óôï "
"Internet).Óőíćśßóôć ìć äéêéÜ óáò ćőèęíç."
-#: ../../install_steps.pm_.c:210
+#: ../../install_steps.pm_.c:211
#, c-format
msgid "Duplicate mount point %s"
msgstr "Äéđëü óçìćßï óęíäćóçò %s"
-#: ../../install_steps.pm_.c:379
+#: ../../install_steps.pm_.c:380
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -4497,12 +4601,12 @@ msgstr ""
"ĆëĘăîôć ôï CD-ROM óć Ęíá Üëëï óęóôçìá śńçóéìïđïéțíôáò ôçí ćíôïëȚ \"rpm -qpl "
"Mandrake/RPMS/*.rpm\"\n"
-#: ../../install_steps.pm_.c:451
+#: ../../install_steps.pm_.c:452
#, c-format
msgid "Welcome to %s"
msgstr "Êáëțò Țńèáôć óôï %s"
-#: ../../install_steps.pm_.c:530 ../../install_steps.pm_.c:770
+#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:772
msgid "No floppy drive available"
msgstr "Äćí őđÜńśćé äéáèĘóéìïò ïäçăüò äéóêĘôôáò"
@@ -4534,70 +4638,70 @@ msgstr "Ôęđïò ćăêáôÜóôáóçò"
msgid "Please choose one of the following classes of installation:"
msgstr "Đáńáêáëț ćéóÜăćôć ôéò đáńáêÜôù đëçńïöïńßćò"
-#: ../../install_steps_gtk.pm_.c:243 ../../install_steps_interactive.pm_.c:694
+#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:678
msgid "Package Group Selection"
msgstr "ĆđéëïăȚ ïìÜäùí đáêĘôùí"
-#: ../../install_steps_gtk.pm_.c:276 ../../install_steps_interactive.pm_.c:709
+#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:693
msgid "Individual package selection"
msgstr "ĆđéëïăȚ îćśùńéóôțí đáêĘôùí"
-#: ../../install_steps_gtk.pm_.c:299 ../../install_steps_interactive.pm_.c:633
+#: ../../install_steps_gtk.pm_.c:293 ../../install_steps_interactive.pm_.c:617
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Óőíïëéêü ìĘăćèïò: %d / %d MB"
-#: ../../install_steps_gtk.pm_.c:341
+#: ../../install_steps_gtk.pm_.c:335
msgid "Bad package"
msgstr "ËÜèïò đáêĘôï"
-#: ../../install_steps_gtk.pm_.c:342
+#: ../../install_steps_gtk.pm_.c:336
#, c-format
msgid "Name: %s\n"
msgstr "Œíïìá: %s\n"
-#: ../../install_steps_gtk.pm_.c:343
+#: ../../install_steps_gtk.pm_.c:337
#, c-format
msgid "Version: %s\n"
msgstr "žêäïóç: %s\n"
-#: ../../install_steps_gtk.pm_.c:344
+#: ../../install_steps_gtk.pm_.c:338
#, c-format
msgid "Size: %d KB\n"
msgstr "ÌĘăćèïò: %d KB\n"
-#: ../../install_steps_gtk.pm_.c:345
+#: ../../install_steps_gtk.pm_.c:339
#, c-format
msgid "Importance: %s\n"
msgstr "Óçìáóßá: %s\n"
-#: ../../install_steps_gtk.pm_.c:367
+#: ../../install_steps_gtk.pm_.c:361
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr ""
"Äćí ìđïńćßôć íá ćđéëĘîćôć áőôü ôï đáêĘôï äéüôé äćí őđÜńśćé áńêćôüò śțńïò"
-#: ../../install_steps_gtk.pm_.c:372
+#: ../../install_steps_gtk.pm_.c:366
msgid "The following packages are going to be installed"
msgstr "Èá ćăêáôáóôáèïęí ôá đáńáêÜôù đáêĘôá"
-#: ../../install_steps_gtk.pm_.c:373
+#: ../../install_steps_gtk.pm_.c:367
msgid "The following packages are going to be removed"
msgstr "Èá áöáéńćèïęí ôá đáńáêÜôù đáêĘôá "
-#: ../../install_steps_gtk.pm_.c:385
+#: ../../install_steps_gtk.pm_.c:379
msgid "You can't select/unselect this package"
msgstr "Äćí ìđïńćßôć íá ćđéëĘîćôć/áđïćđéëĘîćôć áőôü ôï đáêĘôï"
-#: ../../install_steps_gtk.pm_.c:397
+#: ../../install_steps_gtk.pm_.c:391
msgid "This is a mandatory package, it can't be unselected"
msgstr "Áőôü ćßíáé áđáéôïęìćíï đáêĘôï, äćí ìđïńćß íá áđïćđéëćăćß"
-#: ../../install_steps_gtk.pm_.c:399
+#: ../../install_steps_gtk.pm_.c:393
msgid "You can't unselect this package. It is already installed"
msgstr "Äćí ìđïńćßôć íá áđïćđéëĘîćôć áőôü ôï đáêĘôï. Ćßíáé Țäç ćăêáôćóôçìĘíï"
-#: ../../install_steps_gtk.pm_.c:402
+#: ../../install_steps_gtk.pm_.c:396
msgid ""
"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
@@ -4605,74 +4709,74 @@ msgstr ""
"Áőôü ôï đáêĘôï đńĘđćé íá áíáâáèìéóôćß\n"
"Ćßóôć óßăïőńïò üôé èĘëćôć íá ôï áđïćđéëĘîćôć;"
-#: ../../install_steps_gtk.pm_.c:405
+#: ../../install_steps_gtk.pm_.c:399
msgid "You can't unselect this package. It must be upgraded"
msgstr "Äćí ìđïńćßôć íá áđïćđéëĘîćôć áőôü ôï đáêĘôï. ĐńĘđćé íá áíáâáèìéóôćß"
-#: ../../install_steps_gtk.pm_.c:410
+#: ../../install_steps_gtk.pm_.c:404
msgid "Show automatically selected packages"
msgstr "Áőôüìáôç đńïâïëȚ ćđéëćăìĘíùí đáêĘôùí"
-#: ../../install_steps_gtk.pm_.c:411 ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_gtk.pm_.c:405 ../../install_steps_interactive.pm_.c:255
#: ../../install_steps_interactive.pm_.c:259
-#: ../../standalone/drakbackup_.c:3600
+#: ../../standalone/drakbackup_.c:4257
msgid "Install"
msgstr "ĆăêáôÜóôáóç"
-#: ../../install_steps_gtk.pm_.c:414
+#: ../../install_steps_gtk.pm_.c:408
msgid "Load/Save on floppy"
msgstr "Öüńôùóç/ÁđïèȚêćőóç óć äéóêĘôôá"
-#: ../../install_steps_gtk.pm_.c:415
+#: ../../install_steps_gtk.pm_.c:409
msgid "Updating package selection"
msgstr "ÁíáíĘùóç ćđéëćăìĘíùí đáêĘôùí"
-#: ../../install_steps_gtk.pm_.c:420
+#: ../../install_steps_gtk.pm_.c:414
msgid "Minimal install"
msgstr "ĆëÜśéóôç ĆăêáôÜóôáóç"
-#: ../../install_steps_gtk.pm_.c:435 ../../install_steps_interactive.pm_.c:538
+#: ../../install_steps_gtk.pm_.c:429 ../../install_steps_interactive.pm_.c:522
msgid "Choose the packages you want to install"
msgstr "ĆđéëĘîôć ôá đáêĘôá đïő èĘëćôć íá ćăêáôáóôȚóćôć"
-#: ../../install_steps_gtk.pm_.c:451 ../../install_steps_interactive.pm_.c:778
+#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:762
msgid "Installing"
msgstr "ĆăêáôÜóôáóç"
-#: ../../install_steps_gtk.pm_.c:457
+#: ../../install_steps_gtk.pm_.c:451
msgid "Estimating"
msgstr "Ćêôßìçóç"
-#: ../../install_steps_gtk.pm_.c:464
+#: ../../install_steps_gtk.pm_.c:458
msgid "Time remaining "
msgstr "ĆíáđïìĘíùí śńüíïò "
-#: ../../install_steps_gtk.pm_.c:476
+#: ../../install_steps_gtk.pm_.c:470
msgid "Please wait, preparing installation..."
msgstr "Đáńáêáëț đćńéìĘíćôć, đńïćôïéìáóßá ćăêáôÜóôáóçò"
-#: ../../install_steps_gtk.pm_.c:560
+#: ../../install_steps_gtk.pm_.c:554
#, c-format
msgid "%d packages"
msgstr "%d đáêĘôá"
-#: ../../install_steps_gtk.pm_.c:565
+#: ../../install_steps_gtk.pm_.c:559
#, c-format
msgid "Installing package %s"
msgstr "ĆăêáôÜóôáóç đáêĘôïő %s"
-#: ../../install_steps_gtk.pm_.c:602 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:802
+#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:786
#: ../../standalone/drakautoinst_.c:202
msgid "Accept"
msgstr "ÁđïäïśȚ"
-#: ../../install_steps_gtk.pm_.c:602 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:802
+#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:786
msgid "Refuse"
msgstr "¶ńíçóç"
-#: ../../install_steps_gtk.pm_.c:603 ../../install_steps_interactive.pm_.c:803
+#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:787
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4686,17 +4790,17 @@ msgstr ""
"Đáńáêáëț ćéóÜăćôć ôï Cd-Rom ìć üíïìá \"%s\" óôïí ïäçăü óáò êáé đáôȚóôć Ïê.\n"
"ĆÜí äćí ôï Ęśćôć, đáôȚóôć Áêęńùóç ăéá áđïöőăȚ ćăêáôÜóôáóçò áđü áőôü ôï CdRom."
-#: ../../install_steps_gtk.pm_.c:617 ../../install_steps_gtk.pm_.c:621
-#: ../../install_steps_interactive.pm_.c:815
-#: ../../install_steps_interactive.pm_.c:819
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_gtk.pm_.c:615
+#: ../../install_steps_interactive.pm_.c:799
+#: ../../install_steps_interactive.pm_.c:803
msgid "Go on anyway?"
msgstr "Íá óőíćśßóù;"
-#: ../../install_steps_gtk.pm_.c:617 ../../install_steps_interactive.pm_.c:815
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:799
msgid "There was an error ordering packages:"
msgstr "ĐńïêëȚèçêć óöÜëìá êáôÜ ôçí ôáîéíüìçóç ôùí đáêĘôùí:"
-#: ../../install_steps_gtk.pm_.c:621 ../../install_steps_interactive.pm_.c:819
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:803
msgid "There was an error installing packages:"
msgstr "ĐńïêëȚèçêć óöÜëìá êáôÜ ôçí ćăêáôÜóôáóç ôùí đáêĘôùí:"
@@ -5017,7 +5121,7 @@ msgid "Are you sure you refuse the licence?"
msgstr ""
#: ../../install_steps_interactive.pm_.c:211
-#: ../../install_steps_interactive.pm_.c:1038
+#: ../../install_steps_interactive.pm_.c:1023
#: ../../standalone/keyboarddrake_.c:31
msgid "Keyboard"
msgstr "Đëçêôńïëüăéï"
@@ -5069,11 +5173,11 @@ msgstr "ÁíáíĘùóç ćđéëćăìĘíùí đáêĘôùí"
msgid "Please choose the type of your mouse."
msgstr "Đáńáêáëț ćđéëĘîôć ôęđï đïíôéêéïę."
-#: ../../install_steps_interactive.pm_.c:281 ../../standalone/mousedrake_.c:59
+#: ../../install_steps_interactive.pm_.c:281 ../../standalone/mousedrake_.c:60
msgid "Mouse Port"
msgstr "Èęńá đïíôéêéïę"
-#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:61
msgid "Please choose on which serial port your mouse is connected to."
msgstr ""
"Đáńáêáëț ćđéëĘîôć óćéńéáêȚ èęńá óôçí ïđïßá ćßíáé óőíäćäćìĘíï ôï đïíôßêé óáò."
@@ -5106,45 +5210,20 @@ msgstr "Ńęèìéóç IDE"
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:336
+#: ../../install_steps_interactive.pm_.c:338
msgid "No partition available"
msgstr "äćí őđÜńśïőí äéáèĘóéìćò êáôáôìȚóćéò"
-#: ../../install_steps_interactive.pm_.c:339
+#: ../../install_steps_interactive.pm_.c:341
msgid "Scanning partitions to find mount points"
msgstr "ÁíÜëőóç êáôáôìȚóćùí ăéá đńïóäéïńéóìü óçìćßùí óęíäćóçò."
-#: ../../install_steps_interactive.pm_.c:347
+#: ../../install_steps_interactive.pm_.c:349
msgid "Choose the mount points"
msgstr "ĆđéëĘîôć óçìćßá óęíäćóçò"
-#: ../../install_steps_interactive.pm_.c:366
-#, c-format
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to not allow DrakX to modify the partition table.\n"
-"(the error is %s)\n"
-"\n"
-"Do you agree to loose all the partitions?\n"
-msgstr ""
-"Äćí ìđïńț íá äéáâÜóù ôïí đßíáêá êáôáôìȚóćùí, ćßíáé đïëę êáôćóôńáìĘíïò :(\n"
-"Èá đńïóđáèȚóù íá óőíćśßóù áöáéńțíôáò ôéò ëáíèáóìĘíćò êáôáôìȚóćéò êáé ÏËÁ\n"
-"ôá äćäïìĘíá èá śáèïęí. Ç Üëëç ćđéëïăȚ óáò ćßíáé íá ìçí ćđéôńĘűćôć óôï \n"
-"DrakX íá áăăßîćé ôïí đßíáêá êáôáôìȚóćùí. Ôï óöÜëìá ćßíáé: %s\n"
-"\n"
-"Óőìöùíćßôć íá äéáăńáöïęí üëćò ïé êáôáôìȚóćéò;\n"
-
#: ../../install_steps_interactive.pm_.c:379
msgid ""
-"DiskDrake failed to read correctly the partition table.\n"
-"Continue at your own risk!"
-msgstr ""
-"Ôï DiskDrake áđĘôőść íá äéáâÜóćé óùóôÜ ôïí đßíáêá êáôáôìȚóćùí.\n"
-"Óőíćśßóôć ìć äéêȚ óáò ćőèęíç!"
-
-#: ../../install_steps_interactive.pm_.c:396
-msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
msgstr ""
@@ -5152,73 +5231,73 @@ msgstr ""
"áëëÜ ăéá íá îćêéíȚóćôć ôï óęóôçìÜ óáò, èá śńćéáóôćß íá äçìéïőńăȚóćôć ìéá "
"êáôÜôìçóç bootstrap ìć ôï DiskDrake"
-#: ../../install_steps_interactive.pm_.c:405
+#: ../../install_steps_interactive.pm_.c:388
msgid "No root partition found to perform an upgrade"
msgstr "Äćí âńĘèçêć êáôÜôìçóç root ăéá ôçí đńáăìáôïđïßçóç ôçò áíáâÜèìéóçò"
-#: ../../install_steps_interactive.pm_.c:406
+#: ../../install_steps_interactive.pm_.c:389
msgid "Root Partition"
msgstr "Root Partition (âáóéêȚ êáôÜôìçóç óőóôȚìáôïò)"
-#: ../../install_steps_interactive.pm_.c:407
+#: ../../install_steps_interactive.pm_.c:390
msgid "What is the root partition (/) of your system?"
msgstr "ĐïéÜ ćßíáé ç âáóéêȚ êáôÜôìçóç (/) ôïő óőóôȚìáôüò óáò;"
-#: ../../install_steps_interactive.pm_.c:421
+#: ../../install_steps_interactive.pm_.c:404
msgid "You need to reboot for the partition table modifications to take place"
msgstr ""
"Áđáéôćßôáé ćđáíćêêßíçóç ăéá íá ćíćńăïđïéçèïęí ïé áëëáăĘò óôïí đßíáêá "
"êáôáôìȚóćùí"
-#: ../../install_steps_interactive.pm_.c:445
+#: ../../install_steps_interactive.pm_.c:428
msgid "Choose the partitions you want to format"
msgstr "ĆđéëĘîôć êáôáôìȚóćéò đńïò ìïńöïđïßçóç"
-#: ../../install_steps_interactive.pm_.c:446
+#: ../../install_steps_interactive.pm_.c:429
msgid "Check bad blocks?"
msgstr "žëćăśïò ăéá śáëáóìĘíá blocks;"
-#: ../../install_steps_interactive.pm_.c:473
+#: ../../install_steps_interactive.pm_.c:456
msgid "Formatting partitions"
msgstr "Ìïńöïđïßçóç êáôáôìȚóćùí"
-#: ../../install_steps_interactive.pm_.c:475
+#: ../../install_steps_interactive.pm_.c:458
#, c-format
msgid "Creating and formatting file %s"
msgstr "Äçìéïőńăßá êáé ìïńöïđïßçóç áńśćßïő %s"
-#: ../../install_steps_interactive.pm_.c:480
+#: ../../install_steps_interactive.pm_.c:463
#, c-format
msgid ""
"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
"you can loose data)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:482
+#: ../../install_steps_interactive.pm_.c:465
msgid "Not enough swap space to fulfill installation, please add some"
msgstr ""
"Äćí őđÜńśćé áńêćôü swap ăéá ôçí ïëïêëȚńùóç ôçò ćăêáôÜóôáóçò, đáńáêáëț "
"đńïóèĘóôć"
-#: ../../install_steps_interactive.pm_.c:489
+#: ../../install_steps_interactive.pm_.c:472
#, fuzzy
msgid "Looking for available packages and rebuilding rpm database..."
msgstr "ŰÜśíù ăéá äéáèĘóéìá đáêĘôá"
-#: ../../install_steps_interactive.pm_.c:490
+#: ../../install_steps_interactive.pm_.c:473
msgid "Looking for available packages..."
msgstr "ŰÜśíù ăéá äéáèĘóéìá đáêĘôá"
-#: ../../install_steps_interactive.pm_.c:493
+#: ../../install_steps_interactive.pm_.c:476
#, fuzzy
msgid "Looking at packages already installed..."
msgstr "Äćí ìđïńćßôć íá áđïćđéëĘîćôć áőôü ôï đáêĘôï. Ćßíáé Țäç ćăêáôćóôçìĘíï"
-#: ../../install_steps_interactive.pm_.c:497
+#: ../../install_steps_interactive.pm_.c:480
msgid "Finding packages to upgrade..."
msgstr "Đńïóäéïńéóìüò đáêĘôùí đńïò áíáâÜèìéóç"
-#: ../../install_steps_interactive.pm_.c:515
+#: ../../install_steps_interactive.pm_.c:498
#, c-format
msgid ""
"Your system does not have enough space left for installation or upgrade (%d "
@@ -5227,7 +5306,7 @@ msgstr ""
"Ôï óęóôçìÜ óáò äćí Ęśćé áńêćôü äéáèĘóéìï śțńï ăéá ćăêáôÜóôáóç Ț áíáâÜèìéóç (%"
"d > %d)"
-#: ../../install_steps_interactive.pm_.c:550
+#: ../../install_steps_interactive.pm_.c:534
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
@@ -5236,53 +5315,53 @@ msgstr ""
"äéóêĘôôá.\n"
"Ç ìïńöïđïßçóç ćßíáé ç ßäéá ìć ôéò äéóêĘôôćò áőôüìáôçò ćăêáôÜóôáóçò."
-#: ../../install_steps_interactive.pm_.c:553
+#: ../../install_steps_interactive.pm_.c:537
msgid "Load from floppy"
msgstr "Öüńôùóç áđü äéóêĘôôá"
-#: ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_interactive.pm_.c:539
msgid "Loading from floppy"
msgstr "Öüńôùóç áđü äéóêĘôôá"
-#: ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_interactive.pm_.c:539
msgid "Package selection"
msgstr "ĆđéëïăȚ đáêĘôùí"
-#: ../../install_steps_interactive.pm_.c:560
+#: ../../install_steps_interactive.pm_.c:544
msgid "Insert a floppy containing package selection"
msgstr "ĆéóÜăćôć äéóêĘôôá đïő đćńéĘśćé ôçí ćđéëïăȚ đáêĘôùí"
-#: ../../install_steps_interactive.pm_.c:572
+#: ../../install_steps_interactive.pm_.c:556
msgid "Save on floppy"
msgstr "ÁđïèȚêćőóç óć äéóêĘôôá"
-#: ../../install_steps_interactive.pm_.c:646
+#: ../../install_steps_interactive.pm_.c:630
msgid "Selected size is larger than available space"
msgstr "Ôï ćđéëćăìĘíï ìĘăćèïò ćßíáé ìćăáëęôćńï áđü ôï äéáèĘóéìï śțńï"
-#: ../../install_steps_interactive.pm_.c:660
+#: ../../install_steps_interactive.pm_.c:644
msgid "Type of install"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:661
+#: ../../install_steps_interactive.pm_.c:645
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:664
+#: ../../install_steps_interactive.pm_.c:648
msgid "With X"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:666
+#: ../../install_steps_interactive.pm_.c:650
msgid "With basic documentation (recommended!)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:667
+#: ../../install_steps_interactive.pm_.c:651
msgid "Truly minimal install (especially no urpmi)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:752
+#: ../../install_steps_interactive.pm_.c:736
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -5292,16 +5371,16 @@ msgstr ""
"ĆÜí äćí Ęśćôć êáíĘíá áđü ôá đáńáêÜôù CDs, đáôȚóôć Áêęńùóç.\n"
"ĆÜí äćí Ęśćôć êÜđïéá áđü áőôÜ, áđïćđéëĘîôć ôá êáé đáôȚóôć Ok."
-#: ../../install_steps_interactive.pm_.c:757
+#: ../../install_steps_interactive.pm_.c:741
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "Cd-Rom ïíüìáôé \"%s\""
-#: ../../install_steps_interactive.pm_.c:778
+#: ../../install_steps_interactive.pm_.c:762
msgid "Preparing installation"
msgstr "Đńïćôïéìáóßá ćăêáôÜóôáóçò"
-#: ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:771
#, c-format
msgid ""
"Installing package %s\n"
@@ -5310,21 +5389,21 @@ msgstr ""
"ĆăêáôÜóôáóç đáêĘôïő %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:833
+#: ../../install_steps_interactive.pm_.c:817
msgid "Post-install configuration"
msgstr "Ńőèìßóćéò ìćôÜ ôçí ćăêáôÜóôáóç"
-#: ../../install_steps_interactive.pm_.c:839
+#: ../../install_steps_interactive.pm_.c:823
#, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Đáńáêáëț ćéóÜăćôć ôç äéóêĘôôá Ćêêßíçóçò óôïí ïäçăü %s"
-#: ../../install_steps_interactive.pm_.c:845
+#: ../../install_steps_interactive.pm_.c:829
#, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Đáńáêáëț ćéóÜăćôć ôç äéóêĘôôá ÁíáíĘùóçò ÁńèńùìÜôùí óôïí ïäçăü %s"
-#: ../../install_steps_interactive.pm_.c:865
+#: ../../install_steps_interactive.pm_.c:849
msgid ""
"You now have the opportunity to download encryption software.\n"
"\n"
@@ -5389,7 +5468,7 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:904
+#: ../../install_steps_interactive.pm_.c:888
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
"have been released after the distribution was released. They may\n"
@@ -5401,159 +5480,159 @@ msgid ""
"Do you want to install the updates ?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:919
+#: ../../install_steps_interactive.pm_.c:903
#, fuzzy
msgid ""
"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr "Óęíäćóç ăéá ëȚűç đáêĘôùí"
-#: ../../install_steps_interactive.pm_.c:924
+#: ../../install_steps_interactive.pm_.c:908
msgid "Choose a mirror from which to get the packages"
msgstr "ĆđéëĘîôć ôüđï áđü ôïí ïđïßï èá ăßíćé ç ëȚűç đáêĘôùí"
-#: ../../install_steps_interactive.pm_.c:933
+#: ../../install_steps_interactive.pm_.c:917
msgid "Contacting the mirror to get the list of available packages..."
msgstr "Óęíäćóç ăéá ëȚűç đáêĘôùí"
-#: ../../install_steps_interactive.pm_.c:960
+#: ../../install_steps_interactive.pm_.c:945
msgid "Which is your timezone?"
msgstr "ĐïéÜ ćßíáé ç æțíç țńáò;"
-#: ../../install_steps_interactive.pm_.c:965
+#: ../../install_steps_interactive.pm_.c:950
msgid "Hardware clock set to GMT"
msgstr "Ôï ńïëüé ôïő őđïëïăéóôȚ óáò ćßíáé ńőèìéóìĘíï óć GMT (țńá ĂêńȚíïőúôò)"
-#: ../../install_steps_interactive.pm_.c:966
+#: ../../install_steps_interactive.pm_.c:951
msgid "Automatic time synchronization (using NTP)"
msgstr "Áőôüìáôïò óőăśńïíéóìüò țńáò (śńȚóç NTP)"
-#: ../../install_steps_interactive.pm_.c:973
+#: ../../install_steps_interactive.pm_.c:958
msgid "NTP Server"
msgstr "ĆîőđçńćôçôȚò NTP"
-#: ../../install_steps_interactive.pm_.c:1007
-#: ../../install_steps_interactive.pm_.c:1015
+#: ../../install_steps_interactive.pm_.c:992
+#: ../../install_steps_interactive.pm_.c:1000
msgid "Remote CUPS server"
msgstr "ÁđïìćìáêńőóìĘíïò ćîőđçńćôçôȚò CUPS"
-#: ../../install_steps_interactive.pm_.c:1008
+#: ../../install_steps_interactive.pm_.c:993
msgid "No printer"
msgstr "ÊáíĘíáò ćêôőđùôȚò"
-#: ../../install_steps_interactive.pm_.c:1025
+#: ../../install_steps_interactive.pm_.c:1010
#, fuzzy
msgid "Do you have an ISA sound card?"
msgstr "žśćôć áëëïí;"
-#: ../../install_steps_interactive.pm_.c:1027
+#: ../../install_steps_interactive.pm_.c:1012
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1029
+#: ../../install_steps_interactive.pm_.c:1014
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1034 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1019 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Đćńßëçűç"
-#: ../../install_steps_interactive.pm_.c:1037
+#: ../../install_steps_interactive.pm_.c:1022
msgid "Mouse"
msgstr "Đïíôßêé"
-#: ../../install_steps_interactive.pm_.c:1039
+#: ../../install_steps_interactive.pm_.c:1024
msgid "Timezone"
msgstr "ÙńïëïăéáêȚ Æțíç"
-#: ../../install_steps_interactive.pm_.c:1040 ../../printerdrake.pm_.c:2728
-#: ../../printerdrake.pm_.c:2814
+#: ../../install_steps_interactive.pm_.c:1025 ../../printerdrake.pm_.c:2937
+#: ../../printerdrake.pm_.c:3026
msgid "Printer"
msgstr "ĆêôőđùôȚò"
-#: ../../install_steps_interactive.pm_.c:1042
+#: ../../install_steps_interactive.pm_.c:1027
msgid "ISDN card"
msgstr "KÜńôá ISDN"
-#: ../../install_steps_interactive.pm_.c:1045
-#: ../../install_steps_interactive.pm_.c:1047
+#: ../../install_steps_interactive.pm_.c:1030
+#: ../../install_steps_interactive.pm_.c:1032
msgid "Sound card"
msgstr "ÊÜńôá Țśïő"
-#: ../../install_steps_interactive.pm_.c:1049
+#: ../../install_steps_interactive.pm_.c:1034
msgid "TV card"
msgstr "ÊÜńôá TV"
-#: ../../install_steps_interactive.pm_.c:1089
-#: ../../install_steps_interactive.pm_.c:1114
-#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1074
+#: ../../install_steps_interactive.pm_.c:1099
+#: ../../install_steps_interactive.pm_.c:1103
msgid "LDAP"
msgstr "LDAP"
-#: ../../install_steps_interactive.pm_.c:1090
-#: ../../install_steps_interactive.pm_.c:1114
-#: ../../install_steps_interactive.pm_.c:1127
+#: ../../install_steps_interactive.pm_.c:1075
+#: ../../install_steps_interactive.pm_.c:1099
+#: ../../install_steps_interactive.pm_.c:1112
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1091
-#: ../../install_steps_interactive.pm_.c:1114
-#: ../../install_steps_interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1141
+#: ../../install_steps_interactive.pm_.c:1076
+#: ../../install_steps_interactive.pm_.c:1099
+#: ../../install_steps_interactive.pm_.c:1120
+#: ../../install_steps_interactive.pm_.c:1126
#, fuzzy
msgid "Windows Domain"
msgstr "ĐćńéïśȚ (domain) NIS"
-#: ../../install_steps_interactive.pm_.c:1092
-#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1077
+#: ../../install_steps_interactive.pm_.c:1099
msgid "Local files"
msgstr "ÔïđéêÜ áńśćßá"
-#: ../../install_steps_interactive.pm_.c:1101
-#: ../../install_steps_interactive.pm_.c:1102 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1086
+#: ../../install_steps_interactive.pm_.c:1087 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Óőíèçìáôéêü root"
-#: ../../install_steps_interactive.pm_.c:1103
+#: ../../install_steps_interactive.pm_.c:1088
msgid "No password"
msgstr "Śùńßò óőíèçìáôéêü"
-#: ../../install_steps_interactive.pm_.c:1108
+#: ../../install_steps_interactive.pm_.c:1093
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr ""
"Áőôü ôï óőíèçìáôéêü ćßíáé đïëę áđëü (đńĘđćé íá ćßíáé ôïőëÜśéóôïí %d "
"śáńáêôȚńćò ìáêńę)"
-#: ../../install_steps_interactive.pm_.c:1114 ../../network/modem.pm_.c:49
+#: ../../install_steps_interactive.pm_.c:1099 ../../network/modem.pm_.c:49
#: ../../standalone/drakconnect_.c:625 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Đéóôïđïßçóç ôáőôüôçôáò"
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1107
msgid "Authentication LDAP"
msgstr "Đéóôïđïßçóç LDAP"
-#: ../../install_steps_interactive.pm_.c:1123
+#: ../../install_steps_interactive.pm_.c:1108
msgid "LDAP Base dn"
msgstr "LDAP Base dn"
-#: ../../install_steps_interactive.pm_.c:1124
+#: ../../install_steps_interactive.pm_.c:1109
msgid "LDAP Server"
msgstr "ĆîőđçńćôçôȚò LDAP"
-#: ../../install_steps_interactive.pm_.c:1130
+#: ../../install_steps_interactive.pm_.c:1115
msgid "Authentication NIS"
msgstr "Ćîáêńßâùóç NIS"
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1116
msgid "NIS Domain"
msgstr "ĐćńéïśȚ (domain) NIS"
-#: ../../install_steps_interactive.pm_.c:1132
+#: ../../install_steps_interactive.pm_.c:1117
msgid "NIS Server"
msgstr "ĆîőđçńćôçôȚò NIS"
-#: ../../install_steps_interactive.pm_.c:1138
+#: ../../install_steps_interactive.pm_.c:1123
msgid ""
"For this to work for a W2K PDC, you will probably need to have the admin "
"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
@@ -5569,21 +5648,21 @@ msgid ""
"good."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1140
+#: ../../install_steps_interactive.pm_.c:1125
#, fuzzy
msgid "Authentication Windows Domain"
msgstr "Đéóôïđïßçóç LDAP"
-#: ../../install_steps_interactive.pm_.c:1142
+#: ../../install_steps_interactive.pm_.c:1127
#, fuzzy
msgid "Domain Admin User Name"
msgstr "Œíïìá äéêôęïő"
-#: ../../install_steps_interactive.pm_.c:1143
+#: ../../install_steps_interactive.pm_.c:1128
msgid "Domain Admin Password"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1178
+#: ../../install_steps_interactive.pm_.c:1163
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
"depending on the normal bootloader. This is useful if you don't want to "
@@ -5610,19 +5689,19 @@ msgstr ""
"êÜíïíôáò ćőêïëüôćńç ôçí ćđáíáöïńÜ ôïő óőóôȚìáôïò ìćôÜ áđü óïâáńȚ âëÜâç.\n"
"ÈĘëćôć íá äçìéïőńăȚóćôć äéóêĘôôá ćêêßíçóçò;"
-#: ../../install_steps_interactive.pm_.c:1194
+#: ../../install_steps_interactive.pm_.c:1179
msgid "First floppy drive"
msgstr "Đńțôïò ïäçăüò äéóêĘôáò"
-#: ../../install_steps_interactive.pm_.c:1195
+#: ../../install_steps_interactive.pm_.c:1180
msgid "Second floppy drive"
msgstr "Äćęôćńïò ïäçăüò äéóêĘôáò"
-#: ../../install_steps_interactive.pm_.c:1196 ../../printerdrake.pm_.c:2277
+#: ../../install_steps_interactive.pm_.c:1181 ../../printerdrake.pm_.c:2470
msgid "Skip"
msgstr "ĐáńÜëćéűç"
-#: ../../install_steps_interactive.pm_.c:1201
+#: ../../install_steps_interactive.pm_.c:1186
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5649,7 +5728,7 @@ msgstr ""
"ÈĘëćôć íá äçìéïőńăȚóćôć äéóêĘôôá ćêêßíçóçò;\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1207
+#: ../../install_steps_interactive.pm_.c:1192
msgid ""
"\n"
"\n"
@@ -5658,28 +5737,28 @@ msgid ""
"because XFS needs a very large driver)."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1215
+#: ../../install_steps_interactive.pm_.c:1200
msgid "Sorry, no floppy drive available"
msgstr "ËőđÜìáé, äćí őđÜńśćé äéáèĘóéìïò ïäçăüò äéóêĘôôáò"
-#: ../../install_steps_interactive.pm_.c:1219
+#: ../../install_steps_interactive.pm_.c:1204
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "ĆđéëĘîôć ïäçăü äéóêĘôôáò ăéá äçìéïőńăßá äéóêĘôôáò ćêêßíçóçò"
-#: ../../install_steps_interactive.pm_.c:1223
+#: ../../install_steps_interactive.pm_.c:1208
#, fuzzy, c-format
msgid "Insert a floppy in %s"
msgstr "ĆéóÜăćôć äéóêĘôôá óôïí ïäçăü %s"
-#: ../../install_steps_interactive.pm_.c:1226
+#: ../../install_steps_interactive.pm_.c:1211
msgid "Creating bootdisk..."
msgstr "Äçìéïőńăßá äßóêïő ćêêßíçóçò"
-#: ../../install_steps_interactive.pm_.c:1233
+#: ../../install_steps_interactive.pm_.c:1218
msgid "Preparing bootloader..."
msgstr "Đńïćôïéìáóßá đńïăńÜììáôïò ćêêßíçóçò"
-#: ../../install_steps_interactive.pm_.c:1244
+#: ../../install_steps_interactive.pm_.c:1229
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5691,11 +5770,11 @@ msgstr ""
"Ç ćăêáôÜóôáóç èá óőíćśéóôćß, áëëÜ\n"
"èá śńćéáóôćß íá śńçóéìïđïéȚóćôć ôï BootX ăéá íá îćêéíȚóćôć ôï ìçśÜíçìÜ óáò"
-#: ../../install_steps_interactive.pm_.c:1250
+#: ../../install_steps_interactive.pm_.c:1235
msgid "Do you want to use aboot?"
msgstr "ÈĘëćôć íá śńçóéìïđïéȚóćôć ôï aboot;"
-#: ../../install_steps_interactive.pm_.c:1253
+#: ../../install_steps_interactive.pm_.c:1238
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -5704,19 +5783,19 @@ msgstr ""
"đńïóđÜèćéá âćâéáóìĘíçò ćăêáôÜóôáóçò, áêüìá êáé áí áőôü Ęśćé óáí áđïôĘëćóìá "
"ôçí êáôáóôńïöȚ ôçò đńțôçò êáôÜôìçóçò;"
-#: ../../install_steps_interactive.pm_.c:1260
+#: ../../install_steps_interactive.pm_.c:1245
#, fuzzy
msgid "Installing bootloader"
msgstr "Ćăê. đń. ćêêßíçóçò"
-#: ../../install_steps_interactive.pm_.c:1266
+#: ../../install_steps_interactive.pm_.c:1251
msgid "Installation of bootloader failed. The following error occured:"
msgstr ""
"Ç ćăêáôÜóôáóç ôïő đńïăńÜììáôïò ćêêßíçóçò áđĘôőść. ĐńïêëȚèçêć ôï áêüëïőèï "
"óöÜëìá:"
-#: ../../install_steps_interactive.pm_.c:1274
-#, fuzzy, c-format
+#: ../../install_steps_interactive.pm_.c:1259
+#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
" enable the bootloader. If you don't see the bootloader prompt at\n"
@@ -5728,21 +5807,21 @@ msgstr ""
"Ìđïńćß íá śńćéáóôćß íá áëëÜîćôć ôçí Open Firmware boot-óőóêćőȚ țóôć íá\n"
" ćíćńăïđïéȚóćôć ôïí bootloader. Áí óôï reboot äćí äćßôć ôçí đńïôńïđȚ ôïő\n"
" bootloader, đáôȚóôć ôï Command-Option-O-F êáôÜ ôï reboot êáé ćéóÜăćôć:\n"
-" setenv boot-device $of_boot,\\\\:tbxi\n"
+" setenv boot-device %s,\\\\:tbxi\n"
" Ôüôć ôőđțóôć: shut-down\n"
"Óôçí ćđüìćíç ćêêßíçóç èá đńĘđćé íá äćßôć ôçí đńïôńïđȚ ôïő bootloader."
-#: ../../install_steps_interactive.pm_.c:1308
+#: ../../install_steps_interactive.pm_.c:1293
#: ../../standalone/drakautoinst_.c:79
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "ĆéóÜăćôć Üäćéá äéóêĘôôá óôïí ïäçăü %s"
-#: ../../install_steps_interactive.pm_.c:1312
+#: ../../install_steps_interactive.pm_.c:1297
msgid "Creating auto install floppy..."
msgstr "Đńïćôïéìáóßá äéóêĘôáò áőôüìáôçò ćăêáôÜóôáóçò"
-#: ../../install_steps_interactive.pm_.c:1323
+#: ../../install_steps_interactive.pm_.c:1308
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -5752,7 +5831,7 @@ msgstr ""
"\n"
"ÈĘëćôć óßăïőńá íá ćăêáôáëćßűćôć ôțńá;"
-#: ../../install_steps_interactive.pm_.c:1334
+#: ../../install_steps_interactive.pm_.c:1319
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
@@ -5786,15 +5865,15 @@ msgstr ""
"óśćôéêü\n"
"êćöÜëáéï ôïő ćđßóçìïő ïäçăïę śńȚóçò ôïő Mandrake Linux."
-#: ../../install_steps_interactive.pm_.c:1347
+#: ../../install_steps_interactive.pm_.c:1332
msgid "http://www.mandrakelinux.com/en/90errata.php3"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1352
+#: ../../install_steps_interactive.pm_.c:1337
msgid "Generate auto install floppy"
msgstr "Đńïćôïéìáóßá äéóêĘôôáò áőôüìáôçò ćăêáôÜóôáóçò"
-#: ../../install_steps_interactive.pm_.c:1354
+#: ../../install_steps_interactive.pm_.c:1339
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -5808,15 +5887,15 @@ msgstr ""
"\n"
"Ìđïńćß íá đńïôéìÜôć íá ćđáíáëÜâćôć ôçí ćăêáôÜóôáóç.\n"
-#: ../../install_steps_interactive.pm_.c:1359
+#: ../../install_steps_interactive.pm_.c:1344
msgid "Automated"
msgstr "Áőôüìáôï"
-#: ../../install_steps_interactive.pm_.c:1359
+#: ../../install_steps_interactive.pm_.c:1344
msgid "Replay"
msgstr "Ćđáíáöüńôùóç"
-#: ../../install_steps_interactive.pm_.c:1362
+#: ../../install_steps_interactive.pm_.c:1347
msgid "Save packages selection"
msgstr "ÁđïèȚêćőóç ćđéëïăȚò đáêĘôùí"
@@ -5825,7 +5904,8 @@ msgstr "ÁđïèȚêćőóç ćđéëïăȚò đáêĘôùí"
msgid "Mandrake Linux Installation %s"
msgstr "ĆăêáôÜóôáóç Mandrake Linux %s"
-#: ../../install_steps_newt.pm_.c:34
+#. -PO This string must fit in a 80-char wide text screen
+#: ../../install_steps_newt.pm_.c:35
msgid ""
" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
msgstr ""
@@ -5844,22 +5924,22 @@ msgstr ""
msgid "Choose a file"
msgstr "ĆđéëĘîôć đńÜîç"
-#: ../../interactive.pm_.c:317
+#: ../../interactive.pm_.c:320
msgid "Advanced"
msgstr " Ăéá ĐńïśùńçìĘíïőò"
-#: ../../interactive.pm_.c:318
+#: ../../interactive.pm_.c:321
msgid "Basic"
msgstr ""
-#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:155
-#: ../../printerdrake.pm_.c:1990
+#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:158
+#: ../../printerdrake.pm_.c:2124
msgid "<- Previous"
msgstr "<- Đńïçăïęìćíï"
#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
-#: ../../standalone/drakbackup_.c:3464 ../../standalone/drakbackup_.c:3491
-#: ../../standalone/drakbackup_.c:3517
+#: ../../standalone/drakbackup_.c:4112 ../../standalone/drakbackup_.c:4139
+#: ../../standalone/drakbackup_.c:4169 ../../standalone/drakbackup_.c:4195
#, fuzzy
msgid "Next"
msgstr "Ćđüìćíï -»"
@@ -5927,382 +6007,382 @@ msgstr ""
msgid "Re-submit"
msgstr ""
-#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:152 ../../keyboard.pm_.c:187
msgid "Czech (QWERTZ)"
msgstr "ÔóĘśéêï (QWERTZ)"
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:153 ../../keyboard.pm_.c:189
msgid "German"
msgstr "Ăćńìáíéêü"
-#: ../../keyboard.pm_.c:175
+#: ../../keyboard.pm_.c:154
msgid "Dvorak"
msgstr "Dvorak"
-#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:218
+#: ../../keyboard.pm_.c:155 ../../keyboard.pm_.c:197
msgid "Spanish"
msgstr "Éóđáíéêü"
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:156 ../../keyboard.pm_.c:198
msgid "Finnish"
msgstr "Öéíëáíäéêü"
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:220
+#: ../../keyboard.pm_.c:157 ../../keyboard.pm_.c:199
msgid "French"
msgstr "Ăáëëéêü"
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:158 ../../keyboard.pm_.c:231
msgid "Norwegian"
msgstr "Íïńâçăéêü"
-#: ../../keyboard.pm_.c:180
+#: ../../keyboard.pm_.c:159
msgid "Polish"
msgstr "Đïëùíéêü"
-#: ../../keyboard.pm_.c:181 ../../keyboard.pm_.c:260
+#: ../../keyboard.pm_.c:160 ../../keyboard.pm_.c:239
msgid "Russian"
msgstr "Ńùóéêü"
-#: ../../keyboard.pm_.c:183 ../../keyboard.pm_.c:262
+#: ../../keyboard.pm_.c:162 ../../keyboard.pm_.c:241
msgid "Swedish"
msgstr "Óïőçäéêü"
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:278
+#: ../../keyboard.pm_.c:163 ../../keyboard.pm_.c:257
msgid "UK keyboard"
msgstr "ÌćăÜëç Âńćôáííßá (UK)"
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:279
+#: ../../keyboard.pm_.c:164 ../../keyboard.pm_.c:258
msgid "US keyboard"
msgstr "Ç.Đ.Á. (US)"
-#: ../../keyboard.pm_.c:187
+#: ../../keyboard.pm_.c:166
msgid "Albanian"
msgstr "Áëâáíéêü"
-#: ../../keyboard.pm_.c:188
+#: ../../keyboard.pm_.c:167
msgid "Armenian (old)"
msgstr "Áńìćíéêü (đáëéü)"
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:168
msgid "Armenian (typewriter)"
msgstr "Áńìćíéêü (ăńáöïìçśáíȚ)"
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:169
msgid "Armenian (phonetic)"
msgstr "Áńìćíéêü (öùíçôéêü)"
-#: ../../keyboard.pm_.c:195
+#: ../../keyboard.pm_.c:174
msgid "Azerbaidjani (latin)"
msgstr "ÁæćńìđáúôæÜí (Ëáôéíéêü)"
-#: ../../keyboard.pm_.c:197
+#: ../../keyboard.pm_.c:176
msgid "Belgian"
msgstr "Âćëăéêü"
-#: ../../keyboard.pm_.c:198
+#: ../../keyboard.pm_.c:177
#, fuzzy
msgid "Bengali"
msgstr "ćíćńăïđïßçóç"
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:178
#, fuzzy
msgid "Bulgarian (phonetic)"
msgstr "Áńìćíéêü (öùíçôéêü)"
-#: ../../keyboard.pm_.c:200
+#: ../../keyboard.pm_.c:179
#, fuzzy
msgid "Bulgarian (BDS)"
msgstr "Âïőëăáńéêü"
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:180
msgid "Brazilian (ABNT-2)"
msgstr "ÂńáæéëéÜíéêï"
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:183
#, fuzzy
msgid "Bosnian"
msgstr "Ćóèïíéêü"
-#: ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:184
msgid "Belarusian"
msgstr "Ëćőêïńùóßáò"
-#: ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:185
msgid "Swiss (German layout)"
msgstr "Ćëâćôéêü (ĂćńìáíéêȚ äéáńęèìéóç)"
-#: ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:186
msgid "Swiss (French layout)"
msgstr "Ćëâćôéêü (ĂáëëéêȚ äéáńęèìéóç)"
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:188
msgid "Czech (QWERTY)"
msgstr "ÔóĘśéêï (QWERTY)"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:190
msgid "German (no dead keys)"
msgstr "Ăćńìáíéêü (śùńßò íćêńÜ đëȚêôńá)"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:191
msgid "Devanagari"
msgstr ""
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:192
msgid "Danish"
msgstr "Äáíéêü"
-#: ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:193
msgid "Dvorak (US)"
msgstr "Dvorak (ÇĐÁ)"
-#: ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:194
msgid "Dvorak (Norwegian)"
msgstr "Dvorak (Íïńâçăéêü)"
-#: ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:195
#, fuzzy
msgid "Dvorak (Swedish)"
msgstr "Dvorak (ÇĐÁ)"
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:196
msgid "Estonian"
msgstr "Ćóèïíéêü"
-#: ../../keyboard.pm_.c:221
+#: ../../keyboard.pm_.c:200
msgid "Georgian (\"Russian\" layout)"
msgstr "Ăćùńăßá (\"Ńùóéêç\" äéáńęèìéóç)"
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:201
msgid "Georgian (\"Latin\" layout)"
msgstr "Ăćùńăßá (\"ËáôéíéêȚ\" äéáńęèìéóç)"
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:202
msgid "Greek"
msgstr "Ćëëçíéêü"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:203
msgid "Gujarati"
msgstr ""
-#: ../../keyboard.pm_.c:225
+#: ../../keyboard.pm_.c:204
msgid "Gurmukhi"
msgstr ""
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:205
msgid "Hungarian"
msgstr "Ïőăăńéêü"
-#: ../../keyboard.pm_.c:227
+#: ../../keyboard.pm_.c:206
msgid "Croatian"
msgstr "Êńïáôéêü"
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:207
msgid "Israeli"
msgstr "ÉóńáȚë"
-#: ../../keyboard.pm_.c:229
+#: ../../keyboard.pm_.c:208
msgid "Israeli (Phonetic)"
msgstr "ÉóńáȚë (öùíçôéêü)"
-#: ../../keyboard.pm_.c:230
+#: ../../keyboard.pm_.c:209
msgid "Iranian"
msgstr "Éńáíéêü"
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:210
msgid "Icelandic"
msgstr "Éóëáíäéêü"
-#: ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:211
msgid "Italian"
msgstr "Éôáëéêü"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:212
msgid "Inuktitut"
msgstr ""
-#: ../../keyboard.pm_.c:234
+#: ../../keyboard.pm_.c:213
msgid "Japanese 106 keys"
msgstr "Éáđùíéêü 106 đëȚêôńùí"
-#: ../../keyboard.pm_.c:237
+#: ../../keyboard.pm_.c:216
msgid "Korean keyboard"
msgstr "ÊïńćÜôéêï Đëçêôńïëüăéï"
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:217
msgid "Latin American"
msgstr "ËáôéíéêȚò ÁìćńéêȚò"
-#: ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:218
#, fuzzy
msgid "Laotian"
msgstr "Ôïđïèćóßá"
-#: ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:219
msgid "Lithuanian AZERTY (old)"
msgstr "Ëéèïőáíéêü AZERTY (đáëéü)"
-#: ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:221
msgid "Lithuanian AZERTY (new)"
msgstr "Ëéèïőáíéêü AZERTY (íĘï)"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:222
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Ëéèïőáíéêü \"number row\" QWERTY"
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:223
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "Ëéèïőáíéêü \"öùíçôéêü\" QWERTY"
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:224
#, fuzzy
msgid "Latvian"
msgstr "Ôïđïèćóßá"
-#: ../../keyboard.pm_.c:246
+#: ../../keyboard.pm_.c:225
msgid "Macedonian"
msgstr "ÌáêćäïíéêȚ"
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:226
msgid "Myanmar (Burmese)"
msgstr ""
-#: ../../keyboard.pm_.c:248
+#: ../../keyboard.pm_.c:227
#, fuzzy
msgid "Mongolian (cyrillic)"
msgstr "ÁæćńìđáúôæÜí (êőńéëëéêü)"
-#: ../../keyboard.pm_.c:249
+#: ../../keyboard.pm_.c:228
msgid "Maltese (UK)"
msgstr ""
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:229
msgid "Maltese (US)"
msgstr ""
-#: ../../keyboard.pm_.c:251
+#: ../../keyboard.pm_.c:230
msgid "Dutch"
msgstr "Ïëëáíäéêü"
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:232
msgid "Polish (qwerty layout)"
msgstr "Đïëùíéêü (äéáńęèìéóç qwerty)"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:233
msgid "Polish (qwertz layout)"
msgstr "Đïëùíéêü (äéáńęèìéóç qwertz)"
-#: ../../keyboard.pm_.c:255
+#: ../../keyboard.pm_.c:234
msgid "Portuguese"
msgstr "Đïńôïăáëëéêü"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:235
msgid "Canadian (Quebec)"
msgstr "Êáíáäéêü (ÊćìđĘê)"
-#: ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:237
msgid "Romanian (qwertz)"
msgstr "Ńïőìáíéêü (qwertz)"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:238
msgid "Romanian (qwerty)"
msgstr "Ńïőìáíéêü (qwerty)"
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:240
msgid "Russian (Yawerty)"
msgstr "Ńùóéêü (Yawerty)"
-#: ../../keyboard.pm_.c:263
+#: ../../keyboard.pm_.c:242
msgid "Slovenian"
msgstr "Óëïâćíßáò"
-#: ../../keyboard.pm_.c:264
+#: ../../keyboard.pm_.c:243
msgid "Slovakian (QWERTZ)"
msgstr "Óëïâáêßáò (QWERTZ)"
-#: ../../keyboard.pm_.c:265
+#: ../../keyboard.pm_.c:244
msgid "Slovakian (QWERTY)"
msgstr "Óëïâáêßáò (QWERTY)"
-#: ../../keyboard.pm_.c:267
+#: ../../keyboard.pm_.c:246
#, fuzzy
msgid "Serbian (cyrillic)"
msgstr "ÁæćńìđáúôæÜí (êőńéëëéêü)"
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:248
msgid "Tamil (Unicode)"
msgstr ""
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:249
msgid "Tamil (TSCII)"
msgstr ""
-#: ../../keyboard.pm_.c:271
+#: ../../keyboard.pm_.c:250
msgid "Thai keyboard"
msgstr "Thai"
-#: ../../keyboard.pm_.c:273
+#: ../../keyboard.pm_.c:252
#, fuzzy
msgid "Tajik keyboard"
msgstr "Thai"
-#: ../../keyboard.pm_.c:274
+#: ../../keyboard.pm_.c:253
msgid "Turkish (traditional \"F\" model)"
msgstr "Ôïőńêéêü (đáńáäïóéáêü \"F\" ìïíôĘëï)"
-#: ../../keyboard.pm_.c:275
+#: ../../keyboard.pm_.c:254
msgid "Turkish (modern \"Q\" model)"
msgstr "Ôïőńêéêü (ìïíôĘńíï \"Q\" ìïíôĘëï)"
-#: ../../keyboard.pm_.c:277
+#: ../../keyboard.pm_.c:256
msgid "Ukrainian"
msgstr "Ïőêńáíéêü"
-#: ../../keyboard.pm_.c:280
+#: ../../keyboard.pm_.c:259
msgid "US keyboard (international)"
msgstr "US äéćèíĘò"
-#: ../../keyboard.pm_.c:281
+#: ../../keyboard.pm_.c:260
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "ÂéćôíÜì \"numeric row\" QWERTY"
-#: ../../keyboard.pm_.c:282
+#: ../../keyboard.pm_.c:261
#, fuzzy
msgid "Yugoslavian (latin)"
msgstr "Ăéïőăêïóëáâéêü (ëáôéíéêü/êőńéëëéêü)"
-#: ../../keyboard.pm_.c:289
+#: ../../keyboard.pm_.c:268
msgid "Right Alt key"
msgstr ""
-#: ../../keyboard.pm_.c:290
+#: ../../keyboard.pm_.c:269
msgid "Both Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:291
+#: ../../keyboard.pm_.c:270
msgid "Control and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:292
+#: ../../keyboard.pm_.c:271
msgid "CapsLock key"
msgstr ""
-#: ../../keyboard.pm_.c:293
+#: ../../keyboard.pm_.c:272
msgid "Ctrl and Alt keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:294
+#: ../../keyboard.pm_.c:273
msgid "Alt and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:295
+#: ../../keyboard.pm_.c:274
msgid "\"Menu\" key"
msgstr ""
-#: ../../keyboard.pm_.c:296
+#: ../../keyboard.pm_.c:275
msgid "Left \"Windows\" key"
msgstr ""
-#: ../../keyboard.pm_.c:297
+#: ../../keyboard.pm_.c:276
msgid "Right \"Windows\" key"
msgstr ""
@@ -6360,11 +6440,11 @@ msgstr "Ăćíéêïę ôęđïő đïíôßêé PS2 ìć ńïäÜêé"
msgid "GlidePoint"
msgstr "GlidePoint"
-#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:63
+#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:65
msgid "Kensington Thinking Mouse"
msgstr "Kensington Thinking Mouse"
-#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:59
+#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:61
msgid "Genius NetMouse"
msgstr "Genius NetMouse"
@@ -6372,115 +6452,125 @@ msgstr "Genius NetMouse"
msgid "Genius NetScroll"
msgstr "Genius NetScroll"
-#: ../../mouse.pm_.c:43 ../../mouse.pm_.c:68
+#: ../../mouse.pm_.c:39 ../../mouse.pm_.c:48
+#, fuzzy
+msgid "Microsoft Explorer"
+msgstr "Microsoft IntelliMouse"
+
+#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:70
msgid "1 button"
msgstr "1 đëȚêôńïő"
-#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:51
+#: ../../mouse.pm_.c:45 ../../mouse.pm_.c:53
msgid "Generic 2 Button Mouse"
msgstr "Ăćíéêïę ôęđïő ìć 2 đëȚêôńá"
-#: ../../mouse.pm_.c:46
+#: ../../mouse.pm_.c:47
msgid "Wheel"
msgstr "Ìć ńïäÜêé"
-#: ../../mouse.pm_.c:49
+#: ../../mouse.pm_.c:51
msgid "serial"
msgstr "óćéńéáêü"
-#: ../../mouse.pm_.c:52
+#: ../../mouse.pm_.c:54
msgid "Generic 3 Button Mouse"
msgstr "Ăćíéêïę ôęđïő ìć 3 đëȚêôńá"
-#: ../../mouse.pm_.c:53
+#: ../../mouse.pm_.c:55
msgid "Microsoft IntelliMouse"
msgstr "Microsoft IntelliMouse"
-#: ../../mouse.pm_.c:54
+#: ../../mouse.pm_.c:56
msgid "Logitech MouseMan"
msgstr "Logitech MouseMan"
-#: ../../mouse.pm_.c:55
+#: ../../mouse.pm_.c:57
msgid "Mouse Systems"
msgstr "Mouse Systems"
-#: ../../mouse.pm_.c:57
+#: ../../mouse.pm_.c:59
msgid "Logitech CC Series"
msgstr "Logitech CC Series"
-#: ../../mouse.pm_.c:58
+#: ../../mouse.pm_.c:60
msgid "Logitech MouseMan+/FirstMouse+"
msgstr "Logitech MouseMan+/FirstMouse+"
-#: ../../mouse.pm_.c:60
+#: ../../mouse.pm_.c:62
msgid "MM Series"
msgstr "MM Series"
-#: ../../mouse.pm_.c:61
+#: ../../mouse.pm_.c:63
msgid "MM HitTablet"
msgstr "MM HitTablet"
-#: ../../mouse.pm_.c:62
+#: ../../mouse.pm_.c:64
msgid "Logitech Mouse (serial, old C7 type)"
msgstr "Logitech Mouse (óćéńéáêü, đáëéüò C7 ôęđïò)"
-#: ../../mouse.pm_.c:66
+#: ../../mouse.pm_.c:68
msgid "busmouse"
msgstr "busmouse"
-#: ../../mouse.pm_.c:69
+#: ../../mouse.pm_.c:71
msgid "2 buttons"
msgstr "Äęï đëȚêôńùí"
-#: ../../mouse.pm_.c:70
+#: ../../mouse.pm_.c:72
msgid "3 buttons"
msgstr "Ôńéțí đëȚêôńùí"
-#: ../../mouse.pm_.c:73
+#: ../../mouse.pm_.c:75
msgid "none"
msgstr "êáíĘíá"
-#: ../../mouse.pm_.c:75
+#: ../../mouse.pm_.c:77
msgid "No mouse"
msgstr "Śùńßò đïíôßêé"
-#: ../../mouse.pm_.c:445
+#: ../../mouse.pm_.c:482
msgid "Please test the mouse"
msgstr "Đáńáêáëț äïêéìÜóôć ôï đïíôßêé"
-#: ../../mouse.pm_.c:446
+#: ../../mouse.pm_.c:483
msgid "To activate the mouse,"
msgstr "Ăéá ćíćńăïđïßçóç đïíôéêéïę"
-#: ../../mouse.pm_.c:447
+#: ../../mouse.pm_.c:484
msgid "MOVE YOUR WHEEL!"
msgstr "ÊÉÍÇÓÔĆ ÔÏ ŃÏÄÁÊÉ!"
-#: ../../my_gtk.pm_.c:156
+#: ../../my_gtk.pm_.c:64
+#, fuzzy
+msgid "-adobe-utopia-regular-r-*-*-25-*-*-*-p-*-iso8859-*,*-r-*"
+msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
+
+#: ../../my_gtk.pm_.c:159
msgid "Finish"
msgstr "ÔĘëïò"
-#: ../../my_gtk.pm_.c:156 ../../printerdrake.pm_.c:1992
+#: ../../my_gtk.pm_.c:159 ../../printerdrake.pm_.c:2126
msgid "Next ->"
msgstr "Ćđüìćíï -»"
-#: ../../my_gtk.pm_.c:284
+#: ../../my_gtk.pm_.c:287
msgid "Is this correct?"
msgstr "Óùóôü;"
-#: ../../my_gtk.pm_.c:356 ../../services.pm_.c:222
+#: ../../my_gtk.pm_.c:359 ../../services.pm_.c:222
msgid "Info"
msgstr "Đëçńïöïńßćò"
-#: ../../my_gtk.pm_.c:377
+#: ../../my_gtk.pm_.c:380
msgid "Expand Tree"
msgstr "ÁíÜđôőîç äĘíôńïő"
-#: ../../my_gtk.pm_.c:378
+#: ../../my_gtk.pm_.c:381
msgid "Collapse Tree"
msgstr "Óęìđôőîç äĘíôńïő"
-#: ../../my_gtk.pm_.c:379
+#: ../../my_gtk.pm_.c:382
msgid "Toggle between flat and group sorted"
msgstr "ĆíáëëáăȚ ìćôáîę ćđßđćäçò êáé ïìáäéêȚò ôáîéíüìçóçò"
@@ -6518,6 +6608,75 @@ msgstr "śńȚóç pppoe"
msgid "use pptp"
msgstr "śńȚóç pptp"
+#: ../../network/drakfirewall.pm_.c:12
+#, fuzzy
+msgid "Web Server"
+msgstr "ĆîőđçńćôçôȚò"
+
+#: ../../network/drakfirewall.pm_.c:17
+#, fuzzy
+msgid "Domain Name Server"
+msgstr "Œíïìá äéêôęïő"
+
+#: ../../network/drakfirewall.pm_.c:32
+#, fuzzy
+msgid "Mail Server"
+msgstr "ÂÜóç ÄćäïìĘíùí"
+
+#: ../../network/drakfirewall.pm_.c:37
+#, fuzzy
+msgid "POP and IMAP Server"
+msgstr "ĆîőđçńćôçôȚò LDAP"
+
+#: ../../network/drakfirewall.pm_.c:111
+#, fuzzy
+msgid "No network card"
+msgstr "äćí âńĘèçêć đńïóáńìïăĘáò äéêôęïő"
+
+#: ../../network/drakfirewall.pm_.c:129
+#, fuzzy
+msgid ""
+"drakfirewall configurator\n"
+"\n"
+"This configures a personal firewall for this Mandrake Linux machine.\n"
+"For a powerful dedicated firewall solution, please look to the\n"
+"specialized MandrakeSecurity Firewall distribution."
+msgstr ""
+"ńęèìéóç tinyfirewall\n"
+"\n"
+"Áőôü ńőèìßæćé ôï đńïóùđéêü óáò firewall ăéá áőôü ôï ìçśÜíçìá Mandrake "
+"Linux.\n"
+"Ăéá ìéá éóśőńȚ áöïóéùìĘíç ëęóç firewall, đáńáêáëț êïéôÜîôć óôçí\n"
+"ćéäéêćőìĘíç MandrakeSecurity Firewall äéáíïìȚ."
+
+#: ../../network/drakfirewall.pm_.c:147
+msgid "Which services would you like to allow the Internet to connect to?"
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:148
+msgid ""
+"You can enter miscellaneous ports. \n"
+"Valid examples are: 139/tcp 139/udp.\n"
+"Have a look at /etc/services for information."
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:154
+#, c-format
+msgid ""
+"Invalid port given: %s.\n"
+"The proper format is \"port/tcp\" or \"port/udp\", \n"
+"where port is between 1 and 65535."
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:162
+msgid "Everything (no firewall)"
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:164
+#, fuzzy
+msgid "Other ports"
+msgstr "ÄïêéìȚ èőńțí"
+
#: ../../network/ethernet.pm_.c:37
msgid ""
"Which dhcp client do you want to use?\n"
@@ -6534,7 +6693,7 @@ msgstr ""
"Äćí âńĘèçêć đńïóáńìïăĘáò äéêôęïő Ethernet óôï óęóôçìÜ óáò.\n"
"Äćí ìđïńț íá ńőèìßóù áőôïę ôïő ôęđïő ôçí óęíäćóç."
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:247
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:240
msgid "Choose the network interface"
msgstr "ĆđéëĘîôć óőóêćőȚ äéêôęïő"
@@ -6549,7 +6708,7 @@ msgstr ""
msgid "no network card found"
msgstr "äćí âńĘèçêć đńïóáńìïăĘáò äéêôęïő"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:366
msgid "Configuring network"
msgstr "Ńęèìéóç äéêôęïő"
@@ -6565,7 +6724,7 @@ msgstr ""
"Ôï üíïìá áőôü đńĘđćé íá ćßíáé Ęíá đëȚńćò üíïìá óőóôȚìáôïò,\n"
"üđùò đ.ś. ``mybox.mylab.myco.com''."
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:370
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:371
msgid "Host name"
msgstr "Œíïìá óőóôȚìáôïò"
@@ -6873,13 +7032,13 @@ msgstr "ĆđéëĘîôć ôï đńïößë ăéá ńęèìéóç"
msgid "Use auto detection"
msgstr "ŚńȚóç áőôüìáôçò áíßśíćőóçò"
-#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2930
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:3151
#: ../../standalone/drakconnect_.c:274 ../../standalone/drakconnect_.c:277
#: ../../standalone/drakfloppy_.c:145
msgid "Expert Mode"
msgstr "ÊáôÜóôáóç ĐńïśùńçìĘíùí"
-#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:283
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:386
msgid "Detecting devices..."
msgstr "Ćíôïđéóìüò óőóêćőțí..."
@@ -7046,11 +7205,11 @@ msgstr "Áőôüìáôï IP"
msgid "Start at boot"
msgstr "Îćêßíçóáí óôçí ćêêßíçóç óőóôȚìáôïò"
-#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:753
+#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:860
msgid "IP address should be in format 1.2.3.4"
msgstr "Ç IP äéćęèőíóç đńĘđćé íá ćßíáé óć ìïńöȚ 1.2.3.4"
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:367
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -7062,43 +7221,55 @@ msgstr ""
"üđùò đ.ś. ``mybox.mylab.myco.com''.\n"
"Ìđïńćßôć ćđßóçò íá ćéóÜăćôć êáé ôçí äéćęèőíóç IP ôçò đęëçò äéêôęïő"
-#: ../../network/network.pm_.c:371
+#: ../../network/network.pm_.c:372
msgid "DNS server"
msgstr "ĆîőđçńćôçôȚò DNS"
-#: ../../network/network.pm_.c:372
+#: ../../network/network.pm_.c:373
#, c-format
msgid "Gateway (e.g. %s)"
msgstr ""
-#: ../../network/network.pm_.c:374
+#: ../../network/network.pm_.c:375
msgid "Gateway device"
msgstr "ÓőóêćőȚ đęëçò"
-#: ../../network/network.pm_.c:386
+#: ../../network/network.pm_.c:387
msgid "Proxies configuration"
msgstr "Ńőèìßóćéò proxies"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:388
msgid "HTTP proxy"
msgstr "HTTP proxy"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:389
msgid "FTP proxy"
msgstr "FTP proxy"
-#: ../../network/network.pm_.c:389
+#: ../../network/network.pm_.c:390
msgid "Track network card id (useful for laptops)"
msgstr ""
-#: ../../network/network.pm_.c:392
+#: ../../network/network.pm_.c:393
msgid "Proxy should be http://..."
msgstr "Ï proxy đńĘđćé íá ćßíáé http://..."
-#: ../../network/network.pm_.c:393
+#: ../../network/network.pm_.c:394
msgid "Proxy should be ftp://..."
msgstr "Ï proxy đńĘđćé íá ćßíáé ftp://..."
+#: ../../network/shorewall.pm_.c:24
+msgid "Firewalling configuration detected!"
+msgstr "Áíéśíćęôçêć ńęèìéóç firewall!"
+
+#: ../../network/shorewall.pm_.c:25
+msgid ""
+"Warning! An existing firewalling configuration has been detected. You may "
+"need some manual fix after installation."
+msgstr ""
+"ĐńïóïśȚ! Áíéśíćęôçêć őđÜńśïőóá ńęèìéóç firewall. șóùò śńćéáóôïęí ïńéóìĘíćò"
+"\"śćéńïêßíçôćò\" ńőèìßóćéò ìćôÜ ôçí ćăêáôÜóôáóç."
+
#: ../../network/tools.pm_.c:41
msgid "Internet configuration"
msgstr "Ńőèìßóćéò Äéáäéêôęïő (Internet)"
@@ -7206,15 +7377,15 @@ msgstr "Óőíèçìáôéêü ëïăáńéáóìïę"
msgid "United Kingdom"
msgstr ""
-#: ../../partition_table.pm_.c:606
+#: ../../partition_table.pm_.c:602
msgid "mount failed: "
msgstr "óęíäćóç áđĘôőść: "
-#: ../../partition_table.pm_.c:670
+#: ../../partition_table.pm_.c:666
msgid "Extended partition not supported on this platform"
msgstr "Ç ćêôćôáìĘíç êáôÜôìçóç äćí őđïóôçńßæćôáé óć áőôüí ôïí ôęđï óőóôȚìáôïò"
-#: ../../partition_table.pm_.c:688
+#: ../../partition_table.pm_.c:684
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
@@ -7224,21 +7395,21 @@ msgstr ""
"Ç ìïíáäéêȚ ëęóç ćßíáé íá ìćôáêéíȚóćôć ôéò đńùôćęïőóćò êáôáôìȚóćéò óáò Ęôóé "
"țóôć ôï êćíü íá âńćèćß äßđëá óôçí ćêôćôáìĘíç êáôÜôìçóç"
-#: ../../partition_table.pm_.c:778
+#: ../../partition_table.pm_.c:774
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "Ç ćđáíáöïńÜ áđü ôï áńśćßï %s áđĘôőść: %s"
-#: ../../partition_table.pm_.c:780
+#: ../../partition_table.pm_.c:776
msgid "Bad backup file"
msgstr "ÊáôćóôńáìĘíï ćöćäńéêü áńśćßï"
-#: ../../partition_table.pm_.c:802
+#: ../../partition_table.pm_.c:798
#, c-format
msgid "Error writing to file %s"
msgstr "ÓöÜëìá ćăăńáöȚò óôï áńśćßï %s"
-#: ../../partition_table/raw.pm_.c:187
+#: ../../partition_table/raw.pm_.c:189
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
@@ -7285,158 +7456,162 @@ msgstr "LPD - Line Printer Daemon"
msgid "PDQ - Print, Don't Queue"
msgstr "PDQ - Print, Don't Queue"
-#: ../../printer.pm_.c:35 ../../printer.pm_.c:854
+#: ../../printer.pm_.c:34 ../../printer.pm_.c:1125
msgid "CUPS"
msgstr ""
-#: ../../printer.pm_.c:36
+#: ../../printer.pm_.c:35
msgid "LPRng"
msgstr ""
-#: ../../printer.pm_.c:37
+#: ../../printer.pm_.c:36
msgid "LPD"
msgstr ""
-#: ../../printer.pm_.c:38
+#: ../../printer.pm_.c:37
msgid "PDQ"
msgstr ""
-#: ../../printer.pm_.c:50
+#: ../../printer.pm_.c:49
msgid "Local printer"
msgstr "Ôïđéêüò ćêôőđùôȚò"
-#: ../../printer.pm_.c:51
+#: ../../printer.pm_.c:50
msgid "Remote printer"
msgstr "ÁđïìćìáêńőóìĘíïò ćêôőđùôȚò"
-#: ../../printer.pm_.c:52
+#: ../../printer.pm_.c:51
#, fuzzy
msgid "Printer on remote CUPS server"
msgstr "ÁđïìćìáêńőóìĘíïò ćîőđçńćôçôȚò CUPS"
-#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:776
+#: ../../printer.pm_.c:52 ../../printerdrake.pm_.c:883
#, fuzzy
msgid "Printer on remote lpd server"
msgstr "ÁđïìćìáêńőóìĘíïò ćîőđçńćôçôȚò lpd"
-#: ../../printer.pm_.c:54
+#: ../../printer.pm_.c:53
msgid "Network printer (TCP/Socket)"
msgstr "ĆêôőđùôȚò äéêôęïő (TCP/Socket)"
-#: ../../printer.pm_.c:55
+#: ../../printer.pm_.c:54
#, fuzzy
msgid "Printer on SMB/Windows 95/98/NT server"
msgstr "SMB/Windows 95/98/NT"
-#: ../../printer.pm_.c:56
+#: ../../printer.pm_.c:55
#, fuzzy
msgid "Printer on NetWare server"
msgstr "ĆîőđçńćôçôȚò ćêôőđțóćùí"
-#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:780
+#: ../../printer.pm_.c:56 ../../printerdrake.pm_.c:887
#, fuzzy
msgid "Enter a printer device URI"
msgstr "ÓőóêćőȚ ćêôőđùôȚ URI"
-#: ../../printer.pm_.c:58
+#: ../../printer.pm_.c:57
#, fuzzy
msgid "Pipe job into a command"
msgstr "ÄéáóùëȚíùóç óôçí ćíôïëȚ"
-#: ../../printer.pm_.c:487 ../../printer.pm_.c:678 ../../printer.pm_.c:1000
-#: ../../printerdrake.pm_.c:2070 ../../printerdrake.pm_.c:3189
+#: ../../printer.pm_.c:324 ../../printer.pm_.c:366 ../../printer.pm_.c:533
+msgid "Unknown Model"
+msgstr ""
+
+#: ../../printer.pm_.c:735 ../../printer.pm_.c:926 ../../printer.pm_.c:1318
+#: ../../printerdrake.pm_.c:2260 ../../printerdrake.pm_.c:3414
msgid "Unknown model"
msgstr ""
-#: ../../printer.pm_.c:515
+#: ../../printer.pm_.c:763
#, fuzzy
msgid "Local Printers"
msgstr "Ôïđéêüò ćêôőđùôȚò"
-#: ../../printer.pm_.c:517 ../../printer.pm_.c:855
+#: ../../printer.pm_.c:765 ../../printer.pm_.c:1126
#, fuzzy
msgid "Remote Printers"
msgstr "ÁđïìćìáêńőóìĘíïò ćêôőđùôȚò"
-#: ../../printer.pm_.c:524 ../../printerdrake.pm_.c:301
+#: ../../printer.pm_.c:772 ../../printerdrake.pm_.c:404
#, c-format
msgid " on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:527 ../../printerdrake.pm_.c:303
+#: ../../printer.pm_.c:775 ../../printerdrake.pm_.c:406
#, c-format
msgid ", USB printer \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:532
+#: ../../printer.pm_.c:780
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:535
+#: ../../printer.pm_.c:783
msgid ", multi-function device on USB"
msgstr ""
-#: ../../printer.pm_.c:537
+#: ../../printer.pm_.c:785
msgid ", multi-function device on HP JetDirect"
msgstr ""
-#: ../../printer.pm_.c:539
+#: ../../printer.pm_.c:787
msgid ", multi-function device"
msgstr ""
-#: ../../printer.pm_.c:542
+#: ../../printer.pm_.c:790
#, fuzzy, c-format
msgid ", printing to %s"
msgstr "ÓöÜëìá ćăăńáöȚò óôï áńśćßï %s"
-#: ../../printer.pm_.c:544
+#: ../../printer.pm_.c:792
#, c-format
msgid " on LPD server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:546
+#: ../../printer.pm_.c:794
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ""
-#: ../../printer.pm_.c:550
+#: ../../printer.pm_.c:798
#, c-format
msgid " on SMB/Windows server \"%s\", share \"%s\""
msgstr ""
-#: ../../printer.pm_.c:554
+#: ../../printer.pm_.c:802
#, c-format
msgid " on Novell server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:556
+#: ../../printer.pm_.c:804
#, c-format
msgid ", using command %s"
msgstr ""
-#: ../../printer.pm_.c:675 ../../printerdrake.pm_.c:1540
+#: ../../printer.pm_.c:923 ../../printerdrake.pm_.c:1656
msgid "Raw printer (No driver)"
msgstr ""
-#: ../../printer.pm_.c:824
+#: ../../printer.pm_.c:1095
#, fuzzy, c-format
msgid "(on %s)"
msgstr "(module %s)"
-#: ../../printer.pm_.c:826
+#: ../../printer.pm_.c:1097
msgid "(on this machine)"
msgstr ""
-#: ../../printer.pm_.c:851
+#: ../../printer.pm_.c:1122
#, fuzzy, c-format
msgid "On CUPS server \"%s\""
msgstr "IP äéćęèőíóç ćîőđçńćôçôȚ CUPS:"
-#: ../../printer.pm_.c:857 ../../printerdrake.pm_.c:2851
-#: ../../printerdrake.pm_.c:2862 ../../printerdrake.pm_.c:3078
-#: ../../printerdrake.pm_.c:3130 ../../printerdrake.pm_.c:3156
-#: ../../printerdrake.pm_.c:3326 ../../printerdrake.pm_.c:3328
+#: ../../printer.pm_.c:1128 ../../printerdrake.pm_.c:3071
+#: ../../printerdrake.pm_.c:3082 ../../printerdrake.pm_.c:3303
+#: ../../printerdrake.pm_.c:3355 ../../printerdrake.pm_.c:3381
+#: ../../printerdrake.pm_.c:3556 ../../printerdrake.pm_.c:3558
msgid " (Default)"
msgstr " (ĆđéëïăȚ ćî' ïńéóìïę)"
@@ -7464,12 +7639,12 @@ msgstr ""
msgid "Printer auto-detection (Local, TCP/Socket, and SMB printers)"
msgstr ""
-#: ../../printerdrake.pm_.c:84 ../../printerdrake.pm_.c:2914
+#: ../../printerdrake.pm_.c:84 ../../printerdrake.pm_.c:3135
#, fuzzy
msgid "CUPS configuration"
msgstr "Ńęèìéóç LÁÍ"
-#: ../../printerdrake.pm_.c:85 ../../printerdrake.pm_.c:2915
+#: ../../printerdrake.pm_.c:85 ../../printerdrake.pm_.c:3136
#, fuzzy
msgid "Specify CUPS server"
msgstr "ÁđïìćìáêńőóìĘíïò ćîőđçńćôçôȚò CUPS"
@@ -7499,7 +7674,7 @@ msgstr ""
msgid "The IP address should look like 192.168.1.20"
msgstr "Ç IP äéćęèőíóç đńĘđćé íá ćßíáé óć ìïńöȚ 192.168.1.20"
-#: ../../printerdrake.pm_.c:95 ../../printerdrake.pm_.c:987
+#: ../../printerdrake.pm_.c:95 ../../printerdrake.pm_.c:1094
msgid "The port number should be an integer!"
msgstr "Ï áńéèìüò èęńáò đńĘđćé íá ćßíáé áêĘńáéïò áńéèìüò!"
@@ -7507,7 +7682,7 @@ msgstr "Ï áńéèìüò èęńáò đńĘđćé íá ćßíáé áêĘńáéïò áńéèìüò!"
msgid "CUPS server IP"
msgstr "IP äéćęèőíóç ćîőđçńćôçôȚ CUPS:"
-#: ../../printerdrake.pm_.c:103 ../../printerdrake.pm_.c:1007
+#: ../../printerdrake.pm_.c:103 ../../printerdrake.pm_.c:1114
msgid "Port"
msgstr "Èęńá"
@@ -7516,13 +7691,130 @@ msgstr "Èęńá"
msgid "Automatic CUPS configuration"
msgstr "Boot Ôęđïő Ńęèìéóç"
-#: ../../printerdrake.pm_.c:183 ../../printerdrake.pm_.c:192
-#: ../../printerdrake.pm_.c:2897 ../../printerdrake.pm_.c:3017
+#: ../../printerdrake.pm_.c:177 ../../printerdrake.pm_.c:247
+#: ../../printerdrake.pm_.c:1529 ../../printerdrake.pm_.c:1533
+#: ../../printerdrake.pm_.c:1651 ../../printerdrake.pm_.c:2203
+#: ../../printerdrake.pm_.c:2356 ../../printerdrake.pm_.c:2415
+#: ../../printerdrake.pm_.c:2488 ../../printerdrake.pm_.c:2509
+#: ../../printerdrake.pm_.c:2699 ../../printerdrake.pm_.c:2740
+#: ../../printerdrake.pm_.c:2745 ../../printerdrake.pm_.c:2779
+#: ../../printerdrake.pm_.c:2784 ../../printerdrake.pm_.c:2821
+#: ../../printerdrake.pm_.c:2874 ../../printerdrake.pm_.c:2894
+#: ../../printerdrake.pm_.c:2908 ../../printerdrake.pm_.c:2942
+#: ../../printerdrake.pm_.c:2988 ../../printerdrake.pm_.c:3006
+#: ../../printerdrake.pm_.c:3095 ../../printerdrake.pm_.c:3169
+#: ../../printerdrake.pm_.c:3471 ../../printerdrake.pm_.c:3526
+#: ../../printerdrake.pm_.c:3579 ../../standalone/printerdrake_.c:57
+#, fuzzy
+msgid "Printerdrake"
+msgstr "ĆêôőđùôȚò"
+
+#: ../../printerdrake.pm_.c:178
+#, fuzzy
+msgid "Checking your system..."
+msgstr "Đïéü óęóôçìá ćêôęđùóçò èĘëćôć íá śńçóéìïđïéȚóćôć;"
+
+#: ../../printerdrake.pm_.c:186
+msgid ""
+"There are no printers found which are directly connected to your machine"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:198
+#, fuzzy
+msgid ""
+"The following printers\n"
+"\n"
+msgstr "Èá áöáéńćèïęí ôá đáńáêÜôù đáêĘôá "
+
+#: ../../printerdrake.pm_.c:199
+#, fuzzy
+msgid ""
+"The following printer\n"
+"\n"
+msgstr "Èá áöáéńćèïęí ôá đáńáêÜôù đáêĘôá "
+
+#: ../../printerdrake.pm_.c:201
+msgid ""
+"\n"
+"and one unknown printer are "
+msgstr ""
+
+#: ../../printerdrake.pm_.c:203
+#, c-format
+msgid ""
+"\n"
+"and %d unknown printers are "
+msgstr ""
+
+#: ../../printerdrake.pm_.c:207
+msgid ""
+"\n"
+"are "
+msgstr ""
+
+#: ../../printerdrake.pm_.c:208
+msgid ""
+"\n"
+"is "
+msgstr ""
+
+#: ../../printerdrake.pm_.c:210
+#, fuzzy
+msgid "directly connected to your system"
+msgstr "Äćí âńĘèçêć đńïóáńìïăĘáò äéêôęïő óôï óęóôçìÜ óáò!"
+
+#: ../../printerdrake.pm_.c:213
+msgid ""
+"\n"
+"There is one unknown printer directly connected to your system"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:215
+#, c-format
+msgid ""
+"\n"
+"There are %d unknown printers directly connected to your system"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:221
+#, fuzzy
+msgid " (Make sure that all your printers are connected and turned on).\n"
+msgstr "Óć đïéÜ óćéńéáêȚ đüńôá ćßíáé óőíäćäćìĘíï ôï modem óáò;"
+
+#: ../../printerdrake.pm_.c:235
+msgid ""
+"Do you want to enable printing on the printers mentioned above or on "
+"printers in the local network?\n"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:236
+#, fuzzy
+msgid "Do you want to enable printing on printers in the local network?\n"
+msgstr "ÈĘëćôć íá ćêôőđțóćôć ìéá äïêéìáóôéêȚ óćëßäá;"
+
+#: ../../printerdrake.pm_.c:238
+#, fuzzy
+msgid "Do you want to enable printing on the printers mentioned above?\n"
+msgstr "ÈĘëćôć íá óőíäĘćóôć êáôÜ ôçí ćêêßíçóç;"
+
+#: ../../printerdrake.pm_.c:239
+msgid "Are you sure that you want to set up printing on this machine?\n"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:240
+#, c-format
+msgid ""
+"NOTE: Depending on the printer model and the printing system up to %d MB of "
+"additional software will be installed."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:269 ../../printerdrake.pm_.c:278
+#: ../../printerdrake.pm_.c:3117 ../../printerdrake.pm_.c:3242
#, fuzzy
msgid "Add a new printer"
msgstr "ĐńïóèȚêç ćêôőđùôȚ"
-#: ../../printerdrake.pm_.c:184
+#: ../../printerdrake.pm_.c:270
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7535,7 +7827,7 @@ msgid ""
"connection types."
msgstr ""
-#: ../../printerdrake.pm_.c:193
+#: ../../printerdrake.pm_.c:280
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7544,7 +7836,7 @@ msgid ""
"computer, connected directly to the network or to a remote Windows machine.\n"
"\n"
"If you have printer(s) connected to this machine, Please plug it/them in on "
-"this computer and turn it/them on so that they can be auto-detected. Also "
+"this computer and turn it/them on so that it/they can be auto-detected. Also "
"your network printer(s) and you Windows machines must be connected and "
"turned on.\n"
"\n"
@@ -7557,7 +7849,22 @@ msgid ""
"want to set up your printer(s) now."
msgstr ""
-#: ../../printerdrake.pm_.c:202
+#: ../../printerdrake.pm_.c:289 ../../printerdrake.pm_.c:306
+msgid ""
+"\n"
+"Welcome to the Printer Setup Wizard\n"
+"\n"
+"This wizard will help you to install your printer(s) connected to this "
+"computer.\n"
+"\n"
+"If you have printer(s) connected to this machine, Please plug it/them in on "
+"this computer and turn it/them on so that it/they can be auto-detected.\n"
+"\n"
+" Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
+"want to set up your printer(s) now."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:297
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7566,7 +7873,7 @@ msgid ""
"computer or connected directly to the network.\n"
"\n"
"If you have printer(s) connected to this machine, Please plug it/them in on "
-"this computer and turn it/them on so that they can be auto-detected. Also "
+"this computer and turn it/them on so that it/they can be auto-detected. Also "
"your network printer(s) must be connected and turned on.\n"
"\n"
"Note that auto-detecting printers on the network takes longer than the auto-"
@@ -7577,26 +7884,26 @@ msgid ""
"want to set up your printer(s) now."
msgstr ""
-#: ../../printerdrake.pm_.c:213
+#: ../../printerdrake.pm_.c:315
#, fuzzy
msgid "Auto-detect printers connected to this machine"
msgstr "ÁđïìćìáêńőóìĘíïò ćêôőđùôȚò"
-#: ../../printerdrake.pm_.c:215
+#: ../../printerdrake.pm_.c:318
msgid "Auto-detect printers connected directly to the local network"
msgstr ""
-#: ../../printerdrake.pm_.c:218
+#: ../../printerdrake.pm_.c:321
msgid "Auto-detect printers connected to machines running Microsoft Windows"
msgstr ""
-#: ../../printerdrake.pm_.c:245 ../../printerdrake.pm_.c:459
-#: ../../printerdrake.pm_.c:484
+#: ../../printerdrake.pm_.c:348 ../../printerdrake.pm_.c:562
+#: ../../printerdrake.pm_.c:587
#, fuzzy
msgid "Local Printer"
msgstr "Ôïđéêüò ćêôőđùôȚò"
-#: ../../printerdrake.pm_.c:246
+#: ../../printerdrake.pm_.c:349
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -7610,50 +7917,50 @@ msgid ""
"Center."
msgstr ""
-#: ../../printerdrake.pm_.c:283 ../../printerdrake.pm_.c:474
-#: ../../printerdrake.pm_.c:683 ../../printerdrake.pm_.c:923
+#: ../../printerdrake.pm_.c:386 ../../printerdrake.pm_.c:577
+#: ../../printerdrake.pm_.c:790 ../../printerdrake.pm_.c:1030
#, fuzzy
msgid "Printer auto-detection"
msgstr "ŚńȚóç áőôüìáôçò áíßśíćőóçò"
-#: ../../printerdrake.pm_.c:305
+#: ../../printerdrake.pm_.c:408
#, c-format
msgid ", network printer \"%s\", port %s"
msgstr ""
-#: ../../printerdrake.pm_.c:307
+#: ../../printerdrake.pm_.c:410
#, fuzzy, c-format
msgid ", printer \"%s\" on SMB/Windows server \"%s\""
msgstr "SMB/Windows 95/98/NT"
-#: ../../printerdrake.pm_.c:313
+#: ../../printerdrake.pm_.c:416
#, fuzzy, c-format
msgid "Detected %s"
msgstr "áíéśíćęèçêć ôï %s"
-#: ../../printerdrake.pm_.c:317 ../../printerdrake.pm_.c:348
-#: ../../printerdrake.pm_.c:367
+#: ../../printerdrake.pm_.c:420 ../../printerdrake.pm_.c:451
+#: ../../printerdrake.pm_.c:470
#, c-format
msgid "Printer on parallel port \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:319 ../../printerdrake.pm_.c:350
-#: ../../printerdrake.pm_.c:372
+#: ../../printerdrake.pm_.c:422 ../../printerdrake.pm_.c:453
+#: ../../printerdrake.pm_.c:475
#, c-format
msgid "USB printer \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:321
+#: ../../printerdrake.pm_.c:424
#, fuzzy, c-format
msgid "Network printer \"%s\", port %s"
msgstr "ĆêôőđùôȚò äéêôęïő (TCP/Socket)"
-#: ../../printerdrake.pm_.c:323
+#: ../../printerdrake.pm_.c:426
#, fuzzy, c-format
msgid "Printer \"%s\" on SMB/Windows server \"%s\""
msgstr "SMB/Windows 95/98/NT"
-#: ../../printerdrake.pm_.c:460
+#: ../../printerdrake.pm_.c:563
msgid ""
"No local printer found! To manually install a printer enter a device name/"
"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
@@ -7661,34 +7968,34 @@ msgid ""
"printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:464
+#: ../../printerdrake.pm_.c:567
#, fuzzy
msgid "You must enter a device or file name!"
msgstr "ÓőóêćőȚ ćêôőđùôȚ URI"
-#: ../../printerdrake.pm_.c:475
+#: ../../printerdrake.pm_.c:578
#, fuzzy
msgid "No printer found!"
msgstr "Ôïđéêüò ćêôőđùôȚò"
-#: ../../printerdrake.pm_.c:485
+#: ../../printerdrake.pm_.c:588
#, fuzzy
msgid "Available printers"
msgstr "Ôïđéêüò ćêôőđùôȚò"
-#: ../../printerdrake.pm_.c:489
+#: ../../printerdrake.pm_.c:592
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:490
+#: ../../printerdrake.pm_.c:593
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up or enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:492
+#: ../../printerdrake.pm_.c:595
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
@@ -7696,7 +8003,7 @@ msgid ""
"configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:493
+#: ../../printerdrake.pm_.c:596
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
@@ -7704,38 +8011,38 @@ msgid ""
"customized printer configuration, turn on \"Manual configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:495
+#: ../../printerdrake.pm_.c:598
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:496
+#: ../../printerdrake.pm_.c:599
#, fuzzy
msgid "Please choose the port where your printer is connected to."
msgstr "Óć đïéÜ óćéńéáêȚ đüńôá ćßíáé óőíäćäćìĘíï ôï modem óáò;"
-#: ../../printerdrake.pm_.c:498
+#: ../../printerdrake.pm_.c:601
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:503
+#: ../../printerdrake.pm_.c:606
#, fuzzy
msgid "You must choose/enter a printer/device!"
msgstr "ÓőóêćőȚ ćêôőđùôȚ URI"
-#: ../../printerdrake.pm_.c:523
+#: ../../printerdrake.pm_.c:626
#, fuzzy
msgid "Manual configuration"
msgstr "Ńőèìßóćéò śńùìÜôùí"
-#: ../../printerdrake.pm_.c:577
+#: ../../printerdrake.pm_.c:680
msgid "Remote lpd Printer Options"
msgstr "ĆđéëïăĘò áđïìćìáêńőóìĘíïő lpd ćêôőđùôȚ"
-#: ../../printerdrake.pm_.c:578
+#: ../../printerdrake.pm_.c:681
#, fuzzy
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
@@ -7746,50 +8053,50 @@ msgstr ""
"ćêôőđțóćùí, êáèțò êáé ôï üíïìá ôçò ïőńÜò ôçí ïđïßá èá \n"
"śńçóéìïđïéȚóćôć óć áőôüí ôïí ćîőđçńćôçôȚ."
-#: ../../printerdrake.pm_.c:579
+#: ../../printerdrake.pm_.c:682
#, fuzzy
msgid "Remote host name"
msgstr "ÁđïìćìáêńőóìĘíï äéêôőáêü üíïìá:"
-#: ../../printerdrake.pm_.c:580
+#: ../../printerdrake.pm_.c:683
#, fuzzy
msgid "Remote printer name"
msgstr "ÁđïìćìáêńőóìĘíïò ćêôőđùôȚò"
-#: ../../printerdrake.pm_.c:583
+#: ../../printerdrake.pm_.c:686
msgid "Remote host name missing!"
msgstr "ÁđïìćìáêńőóìĘíï äéêôőáêü üíïìá ëćßđćé!"
-#: ../../printerdrake.pm_.c:587
+#: ../../printerdrake.pm_.c:690
#, fuzzy
msgid "Remote printer name missing!"
msgstr "ÁđïìćìáêńőóìĘíï äéêôőáêü üíïìá ëćßđćé!"
-#: ../../printerdrake.pm_.c:609 ../../printerdrake.pm_.c:1119
+#: ../../printerdrake.pm_.c:712 ../../printerdrake.pm_.c:1225
#, fuzzy, c-format
msgid "Detected model: %s %s"
msgstr "áíéśíćęèçêć ôï %s"
-#: ../../printerdrake.pm_.c:683 ../../printerdrake.pm_.c:923
+#: ../../printerdrake.pm_.c:790 ../../printerdrake.pm_.c:1030
#, fuzzy
msgid "Scanning network..."
msgstr "Ćêêßíçóç óęíäćóçò..."
-#: ../../printerdrake.pm_.c:692 ../../printerdrake.pm_.c:713
+#: ../../printerdrake.pm_.c:799 ../../printerdrake.pm_.c:820
#, c-format
msgid ", printer \"%s\" on server \"%s\""
msgstr ""
-#: ../../printerdrake.pm_.c:695 ../../printerdrake.pm_.c:716
+#: ../../printerdrake.pm_.c:802 ../../printerdrake.pm_.c:823
#, fuzzy, c-format
msgid "Printer \"%s\" on server \"%s\""
msgstr "ÄéáêïđȚ ëćéôïőńăßáò äéêôęïő."
-#: ../../printerdrake.pm_.c:736
+#: ../../printerdrake.pm_.c:843
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "ĆđéëïăĘò ćêôőđùôȚ SMB (Windows 9x/NT)"
-#: ../../printerdrake.pm_.c:737
+#: ../../printerdrake.pm_.c:844
#, fuzzy
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
@@ -7804,46 +8111,46 @@ msgstr ""
"đńüóâáóç, êáèțò êáé ïđïéáäȚđïôć áđáńáßôçôç đëçńïöïńßá đćńß êùäéêïę \n"
"śńȚóôç, ëĘîçò êëćéäß êáé ôïìĘá Ț ïìÜäáò ćńăáóßáò."
-#: ../../printerdrake.pm_.c:738
+#: ../../printerdrake.pm_.c:845
msgid ""
" If the desired printer was auto-detected, simply choose it from the list "
"and then add user name, password, and/or workgroup if needed."
msgstr ""
-#: ../../printerdrake.pm_.c:739
+#: ../../printerdrake.pm_.c:846
msgid "SMB server host"
msgstr "Äéêôőáêü üíïìá SMB ćîőđçńćôçôȚ:"
-#: ../../printerdrake.pm_.c:740
+#: ../../printerdrake.pm_.c:847
msgid "SMB server IP"
msgstr "IP äéćęèőíóç SMB ćîőđçńćôçôȚ:"
-#: ../../printerdrake.pm_.c:741
+#: ../../printerdrake.pm_.c:848
msgid "Share name"
msgstr "Œíïìá đüńïő:"
-#: ../../printerdrake.pm_.c:744
+#: ../../printerdrake.pm_.c:851
msgid "Workgroup"
msgstr "ÏìÜäá ćńăáóßáò:"
-#: ../../printerdrake.pm_.c:746
+#: ../../printerdrake.pm_.c:853
#, fuzzy
msgid "Auto-detected"
msgstr "ŚńȚóç áőôüìáôçò áíßśíćőóçò"
-#: ../../printerdrake.pm_.c:757
+#: ../../printerdrake.pm_.c:864
msgid "Either the server name or the server's IP must be given!"
msgstr "Ćßôć ôï üíïìá ôïő ćîőđçńćôçôȚ Ț ç IP ôïő đńĘđćé íá äïèïęí!"
-#: ../../printerdrake.pm_.c:761
+#: ../../printerdrake.pm_.c:868
msgid "Samba share name missing!"
msgstr "Ôï üíïìá ăéá ôçí Samba ëćßđćé!"
-#: ../../printerdrake.pm_.c:767
+#: ../../printerdrake.pm_.c:874
msgid "SECURITY WARNING!"
msgstr ""
-#: ../../printerdrake.pm_.c:768
+#: ../../printerdrake.pm_.c:875
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -7867,7 +8174,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:778
+#: ../../printerdrake.pm_.c:885
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -7876,7 +8183,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:781
+#: ../../printerdrake.pm_.c:888
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
@@ -7884,11 +8191,11 @@ msgid ""
"Do you really want to continue setting up this printer as you are doing now?"
msgstr ""
-#: ../../printerdrake.pm_.c:853
+#: ../../printerdrake.pm_.c:960
msgid "NetWare Printer Options"
msgstr "ĆđéëïăĘò ćêôőđùôȚ NetWare"
-#: ../../printerdrake.pm_.c:854
+#: ../../printerdrake.pm_.c:961
#, fuzzy
msgid ""
"To print on a NetWare printer, you need to provide the NetWare print server "
@@ -7902,44 +8209,44 @@ msgstr ""
"ôï üíïìá ôïő ćêôőđùôȚ óôïí ïđïßï ćđéèőìćßôć đńüóâáóç, êáèțò êáé\n"
"ïđïéáäȚđïôć áđáńáßôçôç đëçńïöïńßá đćńß êùäéêïę śńȚóôç êáé ëĘîçò êëćéäß."
-#: ../../printerdrake.pm_.c:855
+#: ../../printerdrake.pm_.c:962
msgid "Printer Server"
msgstr "ĆîőđçńćôçôȚò ćêôőđțóćùí"
-#: ../../printerdrake.pm_.c:856
+#: ../../printerdrake.pm_.c:963
msgid "Print Queue Name"
msgstr "Œíïìá ïőńÜò ćêôőđùôȚ"
-#: ../../printerdrake.pm_.c:861
+#: ../../printerdrake.pm_.c:968
msgid "NCP server name missing!"
msgstr "Ôï üíïìá ôïő ćîőđçńćôçôȚ NCP ëćßđćé!"
-#: ../../printerdrake.pm_.c:865
+#: ../../printerdrake.pm_.c:972
msgid "NCP queue name missing!"
msgstr "Ôï üíïìá ôçò NCP ïőńÜò ëćßđćé!"
-#: ../../printerdrake.pm_.c:932 ../../printerdrake.pm_.c:952
+#: ../../printerdrake.pm_.c:1039 ../../printerdrake.pm_.c:1059
#, c-format
msgid ", host \"%s\", port %s"
msgstr ""
-#: ../../printerdrake.pm_.c:935 ../../printerdrake.pm_.c:955
+#: ../../printerdrake.pm_.c:1042 ../../printerdrake.pm_.c:1062
#, c-format
msgid "Host \"%s\", port %s"
msgstr ""
-#: ../../printerdrake.pm_.c:975
+#: ../../printerdrake.pm_.c:1082
#, fuzzy
msgid "TCP/Socket Printer Options"
msgstr "ĆđéëïăĘò ćêôőđùôȚ socket"
-#: ../../printerdrake.pm_.c:977
+#: ../../printerdrake.pm_.c:1084
msgid ""
"Choose one of the auto-detected printers from the list or enter the hostname "
"or IP and the optional port number (default is 9100) into the input fields."
msgstr ""
-#: ../../printerdrake.pm_.c:978
+#: ../../printerdrake.pm_.c:1085
#, fuzzy
msgid ""
"To print to a TCP or socket printer, you need to provide the host name or IP "
@@ -7950,21 +8257,21 @@ msgstr ""
"Ăéá íá ćêôőđțóćôć óć Ęíáí ćêôőđùôȚ socket, đńĘđćé íá äțóćôć ôï \n"
"äéêôőáêü üíïìá ôïő ćêôőđùôȚ êáé đńïáéńćôéêÜ ôïí áńéèìü èęńáò."
-#: ../../printerdrake.pm_.c:983
+#: ../../printerdrake.pm_.c:1090
#, fuzzy
msgid "Printer host name or IP missing!"
msgstr "Œíïìá ćêôőđùôȚ ëćßđćé!"
-#: ../../printerdrake.pm_.c:1005
+#: ../../printerdrake.pm_.c:1112
#, fuzzy
msgid "Printer host name or IP"
msgstr "Œíïìá ćêôőđùôȚ"
-#: ../../printerdrake.pm_.c:1054 ../../printerdrake.pm_.c:1056
+#: ../../printerdrake.pm_.c:1160 ../../printerdrake.pm_.c:1162
msgid "Printer Device URI"
msgstr "ÓőóêćőȚ ćêôőđùôȚ URI"
-#: ../../printerdrake.pm_.c:1055
+#: ../../printerdrake.pm_.c:1161
#, fuzzy
msgid ""
"You can specify directly the URI to access the printer. The URI must fulfill "
@@ -7975,11 +8282,11 @@ msgstr ""
"đńĘđćé íá ôçńćß ćßôć ôéò CUPS ćßôć ôéò Foomatic đńïäéáăńáöĘò. Œśé đùò äćí "
"őđïóôçńßæïíôáé üëïé ïé URI ôęđïé áđü üëá ôá spoolers."
-#: ../../printerdrake.pm_.c:1070
+#: ../../printerdrake.pm_.c:1176
msgid "A valid URI must be entered!"
msgstr "žíá óùóôü URI đńĘđćé íá ćéóáśèćß!"
-#: ../../printerdrake.pm_.c:1402
+#: ../../printerdrake.pm_.c:1515
#, fuzzy
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
@@ -7989,30 +8296,30 @@ msgstr ""
"Ôá đćäßá ĐćńéăńáöȚ êáé Ôïđïèćóßá äćí śńćéÜæćôáé íá \n"
"óőìđëçńùèïęí. Ćßíáé áđëÜ óśüëéá ăéá ôïőò śńȚóôćò."
-#: ../../printerdrake.pm_.c:1403
+#: ../../printerdrake.pm_.c:1516
msgid "Name of printer"
msgstr "Œíïìá ćêôőđùôȚ"
-#: ../../printerdrake.pm_.c:1405
+#: ../../printerdrake.pm_.c:1518
msgid "Location"
msgstr "Ôïđïèćóßá"
-#: ../../printerdrake.pm_.c:1416 ../../printerdrake.pm_.c:1536
+#: ../../printerdrake.pm_.c:1530 ../../printerdrake.pm_.c:1652
#, fuzzy
msgid "Reading printer database..."
msgstr "ÁíÜăíùóç âÜóçò ïäçățí CUPS"
-#: ../../printerdrake.pm_.c:1419
+#: ../../printerdrake.pm_.c:1534
#, fuzzy
msgid "Preparing printer database..."
msgstr "ÁíÜăíùóç âÜóçò ïäçățí CUPS"
-#: ../../printerdrake.pm_.c:1516
+#: ../../printerdrake.pm_.c:1631
#, fuzzy
msgid "Your printer model"
msgstr "ÁđïìćìáêńőóìĘíïò ćêôőđùôȚò"
-#: ../../printerdrake.pm_.c:1517
+#: ../../printerdrake.pm_.c:1632
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -8027,26 +8334,26 @@ msgid ""
"%s"
msgstr ""
-#: ../../printerdrake.pm_.c:1522 ../../printerdrake.pm_.c:1525
+#: ../../printerdrake.pm_.c:1637 ../../printerdrake.pm_.c:1640
#, fuzzy
msgid "The model is correct"
msgstr "Óùóôü;"
-#: ../../printerdrake.pm_.c:1523 ../../printerdrake.pm_.c:1524
-#: ../../printerdrake.pm_.c:1527
+#: ../../printerdrake.pm_.c:1638 ../../printerdrake.pm_.c:1639
+#: ../../printerdrake.pm_.c:1642
#, fuzzy
msgid "Select model manually"
msgstr "ÁđïìćìáêńőóìĘíïò ćêôőđùôȚò"
-#: ../../printerdrake.pm_.c:1543
+#: ../../printerdrake.pm_.c:1659
msgid "Printer model selection"
msgstr "ĆđéëïăȚ ìïíôĘëïő ćêôőđùôȚ"
-#: ../../printerdrake.pm_.c:1544
+#: ../../printerdrake.pm_.c:1660
msgid "Which printer model do you have?"
msgstr "Ôß ôęđïő ćêôőđùôȚ Ęśćôć;"
-#: ../../printerdrake.pm_.c:1545
+#: ../../printerdrake.pm_.c:1661
msgid ""
"\n"
"\n"
@@ -8055,18 +8362,18 @@ msgid ""
"standing on a wrong model or on \"Raw printer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1548
+#: ../../printerdrake.pm_.c:1664
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
msgstr ""
-#: ../../printerdrake.pm_.c:1624
+#: ../../printerdrake.pm_.c:1741
#, fuzzy
msgid "OKI winprinter configuration"
msgstr "Ńőèìßóćéò Äéáäéêôęïő (Internet)"
-#: ../../printerdrake.pm_.c:1625
+#: ../../printerdrake.pm_.c:1742
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -8076,12 +8383,12 @@ msgid ""
"not work. Your connection type setting will be ignored by the driver."
msgstr ""
-#: ../../printerdrake.pm_.c:1668 ../../printerdrake.pm_.c:1695
+#: ../../printerdrake.pm_.c:1785 ../../printerdrake.pm_.c:1812
#, fuzzy
msgid "Lexmark inkjet configuration"
msgstr "Ńőèìßóćéò Äéáäéêôęïő (Internet)"
-#: ../../printerdrake.pm_.c:1669
+#: ../../printerdrake.pm_.c:1786
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
"no printers on remote machines or print server boxes. Please connect your "
@@ -8089,20 +8396,46 @@ msgid ""
"to."
msgstr ""
-#: ../../printerdrake.pm_.c:1696
+#: ../../printerdrake.pm_.c:1813
msgid ""
"To be able to print with your Lexmark inkjet and this configuration, you "
"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
-"com/). Go to the US site and click on the \"Drivers\" button. Then choose "
-"your model and afterwards \"Linux\" as operating system. The drivers come as "
-"RPM packages or shell scripts with interactive graphical installation. You "
-"do not need to do this configuration by the graphical frontends. Cancel "
-"directly after the license agreement. Then print printhead alignment pages "
-"with \"lexmarkmaintain\" and adjust the head alignment settings with this "
-"program."
+"com/). Click on the \"Drivers\" link. Then choose your model and afterwards "
+"\"Linux\" as operating system. The drivers come as RPM packages or shell "
+"scripts with interactive graphical installation. You do not need to do this "
+"configuration by the graphical frontends. Cancel directly after the license "
+"agreement. Then print printhead alignment pages with \"lexmarkmaintain\" and "
+"adjust the head alignment settings with this program."
msgstr ""
-#: ../../printerdrake.pm_.c:1912
+#: ../../printerdrake.pm_.c:1816
+msgid "GDI Laser Printer using the Zenographics ZJ-Stream Format"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:1817
+msgid ""
+"Your printer belongs to the group of GDI laser printers (winprinters) sold "
+"by different manufacturers which uses the Zenographics ZJ-stream raster "
+"format for the data sent to the printer. The driver for these printers is "
+"still in a very early development stage and so it will perhaps not always "
+"work properly. Especially it is possible that the printer only works when "
+"you choose the A4 paper size.\n"
+"\n"
+"Some of these printers, as the HP LaserJet 1000, for which this driver was "
+"originally created, need their firmware to be uploaded to them after they "
+"are turned on. In the case of the HP LaserJet 1000 you have to search the "
+"printer's Windows driver CD or your Windows partition for the file "
+"\"sihp1000.img\" and upload the file to the printer with one of the "
+"following commands:\n"
+"\n"
+" lpr -o raw sihp1000.img\n"
+" cat sihp1000.img > /dev/usb/lp0\n"
+"\n"
+"The first command can be given by any normal user, the second must be given "
+"as root. After having done so you can print normally.\n"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:2040
msgid ""
"Printer default settings\n"
"\n"
@@ -8112,34 +8445,34 @@ msgid ""
"printout quality/resolution printing can get substantially slower."
msgstr ""
-#: ../../printerdrake.pm_.c:1921
+#: ../../printerdrake.pm_.c:2049
#, c-format
msgid "Option %s must be an integer number!"
msgstr "ĆđéëïăȚ %s đńĘđćé íá ćßíáé áêĘńáéïò áńéèìüò!"
-#: ../../printerdrake.pm_.c:1925
+#: ../../printerdrake.pm_.c:2053
#, c-format
msgid "Option %s must be a number!"
msgstr "ĆđéëïăȚ %s đńĘđćé íá ćßíáé áńéèìüò!"
-#: ../../printerdrake.pm_.c:1930
+#: ../../printerdrake.pm_.c:2058
#, c-format
msgid "Option %s out of range!"
msgstr "ĆđéëïăȚ %s ćêôüò ïńßïő!"
-#: ../../printerdrake.pm_.c:1969
+#: ../../printerdrake.pm_.c:2097
#, fuzzy, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
"as the default printer?"
msgstr "ÈĘëćôć íá ćêôőđțóćôć ìéá äïêéìáóôéêȚ óćëßäá;"
-#: ../../printerdrake.pm_.c:1986
+#: ../../printerdrake.pm_.c:2120
#, fuzzy
msgid "Test pages"
msgstr "ÄïêéìȚ èőńțí"
-#: ../../printerdrake.pm_.c:1987
+#: ../../printerdrake.pm_.c:2121
msgid ""
"Please select the test pages you want to print.\n"
"Note: the photo test page can take a rather long time to get printed and on "
@@ -8147,44 +8480,44 @@ msgid ""
"it is enough to print the standard test page."
msgstr ""
-#: ../../printerdrake.pm_.c:1991
+#: ../../printerdrake.pm_.c:2125
msgid "No test pages"
msgstr ""
-#: ../../printerdrake.pm_.c:1992
+#: ../../printerdrake.pm_.c:2126
#, fuzzy
msgid "Print"
msgstr "ĆêôőđùôȚò"
-#: ../../printerdrake.pm_.c:1994
+#: ../../printerdrake.pm_.c:2183
#, fuzzy
msgid "Standard test page"
msgstr "Ôőđéêü"
-#: ../../printerdrake.pm_.c:1997
+#: ../../printerdrake.pm_.c:2186
msgid "Alternative test page (Letter)"
msgstr ""
-#: ../../printerdrake.pm_.c:2000
+#: ../../printerdrake.pm_.c:2189
#, fuzzy
msgid "Alternative test page (A4)"
msgstr "Ćêôęđùóç äïêéìáóôéêțí óćëßäùí..."
-#: ../../printerdrake.pm_.c:2002
+#: ../../printerdrake.pm_.c:2191
#, fuzzy
msgid "Photo test page"
msgstr "Ćêôęđùóç äïêéìáóôéêțí óćëßäùí..."
-#: ../../printerdrake.pm_.c:2006
+#: ../../printerdrake.pm_.c:2195
#, fuzzy
msgid "Do not print any test page"
msgstr "Ćêôęđùóç äïêéìáóôéêțí óćëßäùí..."
-#: ../../printerdrake.pm_.c:2014 ../../printerdrake.pm_.c:2166
+#: ../../printerdrake.pm_.c:2204 ../../printerdrake.pm_.c:2357
msgid "Printing test page(s)..."
msgstr "Ćêôęđùóç äïêéìáóôéêțí óćëßäùí..."
-#: ../../printerdrake.pm_.c:2039
+#: ../../printerdrake.pm_.c:2229
#, fuzzy, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -8200,7 +8533,7 @@ msgstr ""
"\n"
"žăéíć óùóôÜ ç ćêôęđùóç"
-#: ../../printerdrake.pm_.c:2043
+#: ../../printerdrake.pm_.c:2233
#, fuzzy
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -8210,16 +8543,16 @@ msgstr ""
"Ìđïńćß íá đćńÜóćé êÜđïéïò śńüíïò ìĘśńé ç ćêôęđùóç íá îćêéíȚóćé.\n"
"žăéíć óùóôÜ ç ćêôęđùóç;"
-#: ../../printerdrake.pm_.c:2050
+#: ../../printerdrake.pm_.c:2240
msgid "Did it work properly?"
msgstr ""
-#: ../../printerdrake.pm_.c:2072 ../../printerdrake.pm_.c:3191
+#: ../../printerdrake.pm_.c:2262 ../../printerdrake.pm_.c:3416
#, fuzzy
msgid "Raw printer"
msgstr "ÊáíĘíáò ćêôőđùôȚò"
-#: ../../printerdrake.pm_.c:2098
+#: ../../printerdrake.pm_.c:2288
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -8228,15 +8561,15 @@ msgid ""
"to modify the option settings easily.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2100
+#: ../../printerdrake.pm_.c:2290
msgid ""
"These commands you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications, but here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2103 ../../printerdrake.pm_.c:2120
-#: ../../printerdrake.pm_.c:2130
+#: ../../printerdrake.pm_.c:2293 ../../printerdrake.pm_.c:2310
+#: ../../printerdrake.pm_.c:2320
#, c-format
msgid ""
"\n"
@@ -8245,7 +8578,7 @@ msgid ""
"line, e. g. \"%s <file>\". "
msgstr ""
-#: ../../printerdrake.pm_.c:2106 ../../printerdrake.pm_.c:2146
+#: ../../printerdrake.pm_.c:2296 ../../printerdrake.pm_.c:2336
#, c-format
msgid ""
"To know about the options available for the current printer read either the "
@@ -8253,41 +8586,41 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2110
+#: ../../printerdrake.pm_.c:2300
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2115 ../../printerdrake.pm_.c:2125
+#: ../../printerdrake.pm_.c:2305 ../../printerdrake.pm_.c:2315
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2117 ../../printerdrake.pm_.c:2127
-#: ../../printerdrake.pm_.c:2137
+#: ../../printerdrake.pm_.c:2307 ../../printerdrake.pm_.c:2317
+#: ../../printerdrake.pm_.c:2327
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2122 ../../printerdrake.pm_.c:2132
+#: ../../printerdrake.pm_.c:2312 ../../printerdrake.pm_.c:2322
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
msgstr ""
-#: ../../printerdrake.pm_.c:2135
+#: ../../printerdrake.pm_.c:2325
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\" or \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2139
+#: ../../printerdrake.pm_.c:2329
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -8297,7 +8630,7 @@ msgid ""
"jams.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2143
+#: ../../printerdrake.pm_.c:2333
#, c-format
msgid ""
"\n"
@@ -8306,41 +8639,41 @@ msgid ""
"line, e. g. \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2153
+#: ../../printerdrake.pm_.c:2343
#, fuzzy, c-format
msgid "Printing/Scanning/Photo Cards on \"%s\""
msgstr "ÄéáêïđȚ ëćéôïőńăßáò äéêôęïő."
-#: ../../printerdrake.pm_.c:2154
+#: ../../printerdrake.pm_.c:2344
#, fuzzy, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "ÄéáêïđȚ ëćéôïőńăßáò äéêôęïő."
-#: ../../printerdrake.pm_.c:2156
+#: ../../printerdrake.pm_.c:2346
#, fuzzy, c-format
msgid "Printing/Photo Card Access on \"%s\""
msgstr "ÄéáêïđȚ ëćéôïőńăßáò äéêôęïő."
-#: ../../printerdrake.pm_.c:2157
+#: ../../printerdrake.pm_.c:2347
#, fuzzy, c-format
msgid "Printing on the printer \"%s\""
msgstr "ÄéáêïđȚ ëćéôïőńăßáò äéêôęïő."
-#: ../../printerdrake.pm_.c:2160 ../../printerdrake.pm_.c:2163
-#: ../../printerdrake.pm_.c:2164 ../../printerdrake.pm_.c:2165
-#: ../../printerdrake.pm_.c:3175 ../../standalone/drakTermServ_.c:248
-#: ../../standalone/drakbackup_.c:1485 ../../standalone/drakbackup_.c:3530
-#: ../../standalone/drakbug_.c:129 ../../standalone/drakfont_.c:705
+#: ../../printerdrake.pm_.c:2350 ../../printerdrake.pm_.c:2353
+#: ../../printerdrake.pm_.c:2354 ../../printerdrake.pm_.c:2355
+#: ../../printerdrake.pm_.c:3400 ../../standalone/drakTermServ_.c:248
+#: ../../standalone/drakbackup_.c:1560 ../../standalone/drakbackup_.c:4208
+#: ../../standalone/drakbug_.c:130 ../../standalone/drakfont_.c:705
#: ../../standalone/drakfont_.c:1014
msgid "Close"
msgstr "Êëćßóéìï"
-#: ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2353
#, fuzzy
msgid "Print option list"
msgstr "ĆđéëïăĘò ćêôőđùôȚ"
-#: ../../printerdrake.pm_.c:2182
+#: ../../printerdrake.pm_.c:2373
#, c-format
msgid ""
"Your multi-function device was configured automatically to be able to scan. "
@@ -8354,7 +8687,7 @@ msgid ""
"Do not use \"scannerdrake\" for this device!"
msgstr ""
-#: ../../printerdrake.pm_.c:2202
+#: ../../printerdrake.pm_.c:2394
msgid ""
"Your printer was configured automatically to give you access to the photo "
"card drives from your PC. Now you can access your photo cards using the "
@@ -8367,18 +8700,18 @@ msgid ""
"of the file lists."
msgstr ""
-#: ../../printerdrake.pm_.c:2223 ../../printerdrake.pm_.c:2673
-#: ../../printerdrake.pm_.c:2945
+#: ../../printerdrake.pm_.c:2416 ../../printerdrake.pm_.c:2875
+#: ../../printerdrake.pm_.c:3170
msgid "Reading printer data..."
msgstr ""
-#: ../../printerdrake.pm_.c:2243 ../../printerdrake.pm_.c:2271
-#: ../../printerdrake.pm_.c:2306
+#: ../../printerdrake.pm_.c:2436 ../../printerdrake.pm_.c:2464
+#: ../../printerdrake.pm_.c:2499
#, fuzzy
msgid "Transfer printer configuration"
msgstr "Ńőèìßóćéò Äéáäéêôęïő (Internet)"
-#: ../../printerdrake.pm_.c:2244
+#: ../../printerdrake.pm_.c:2437
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -8388,51 +8721,51 @@ msgid ""
"Not all queues can be transferred due to the following reasons:\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2247
+#: ../../printerdrake.pm_.c:2440
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2249
+#: ../../printerdrake.pm_.c:2442
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2251
+#: ../../printerdrake.pm_.c:2444
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2253
+#: ../../printerdrake.pm_.c:2446
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:2254
+#: ../../printerdrake.pm_.c:2447
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
"or with native CUPS drivers cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:2255
+#: ../../printerdrake.pm_.c:2448
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
"\"Transfer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:2258
+#: ../../printerdrake.pm_.c:2451
msgid "Do not transfer printers"
msgstr ""
-#: ../../printerdrake.pm_.c:2259 ../../printerdrake.pm_.c:2276
+#: ../../printerdrake.pm_.c:2452 ../../printerdrake.pm_.c:2469
msgid "Transfer"
msgstr ""
-#: ../../printerdrake.pm_.c:2272
+#: ../../printerdrake.pm_.c:2465
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -8440,63 +8773,63 @@ msgid ""
"You can also type a new name or skip this printer."
msgstr ""
-#: ../../printerdrake.pm_.c:2280
+#: ../../printerdrake.pm_.c:2473
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr ""
"Ôï üíïìá ôïő ćêôőđùôȚ đńĘđćé íá đćńéĘśćé ìüíï ăńÜììáôá, áńéèìïęò êáé ôïí "
"śáńáêôȚńá underscore"
-#: ../../printerdrake.pm_.c:2285
+#: ../../printerdrake.pm_.c:2478
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
"do you really want to overwrite its configuration?"
msgstr ""
-#: ../../printerdrake.pm_.c:2293
+#: ../../printerdrake.pm_.c:2486
#, fuzzy
msgid "New printer name"
msgstr "ÊáíĘíáò ćêôőđùôȚò"
-#: ../../printerdrake.pm_.c:2296
+#: ../../printerdrake.pm_.c:2489
#, c-format
msgid "Transferring %s..."
msgstr ""
-#: ../../printerdrake.pm_.c:2307
+#: ../../printerdrake.pm_.c:2500
#, c-format
msgid ""
"You have transferred your former default printer (\"%s\"), Should it be also "
"the default printer under the new printing system %s?"
msgstr ""
-#: ../../printerdrake.pm_.c:2316
+#: ../../printerdrake.pm_.c:2510
#, fuzzy
msgid "Refreshing printer data..."
msgstr "ÁíÜăíùóç âÜóçò ïäçățí CUPS"
-#: ../../printerdrake.pm_.c:2324 ../../printerdrake.pm_.c:2395
-#: ../../printerdrake.pm_.c:2407
+#: ../../printerdrake.pm_.c:2518 ../../printerdrake.pm_.c:2590
+#: ../../printerdrake.pm_.c:2602
msgid "Configuration of a remote printer"
msgstr ""
-#: ../../printerdrake.pm_.c:2325
+#: ../../printerdrake.pm_.c:2519
#, fuzzy
msgid "Starting network..."
msgstr "Ćêêßíçóç óęíäćóçò..."
-#: ../../printerdrake.pm_.c:2359 ../../printerdrake.pm_.c:2363
-#: ../../printerdrake.pm_.c:2365
+#: ../../printerdrake.pm_.c:2554 ../../printerdrake.pm_.c:2558
+#: ../../printerdrake.pm_.c:2560
#, fuzzy
msgid "Configure the network now"
msgstr "Ńęèìéóç äéêôęïő"
-#: ../../printerdrake.pm_.c:2360
+#: ../../printerdrake.pm_.c:2555
#, fuzzy
msgid "Network functionality not configured"
msgstr "Ç ïèüíç äćí Ęśćé ńőèìéóôćß áêüìç"
-#: ../../printerdrake.pm_.c:2361
+#: ../../printerdrake.pm_.c:2556
msgid ""
"You are going to configure a remote printer. This needs working network "
"access, but your network is not configured yet. If you go on without network "
@@ -8504,12 +8837,12 @@ msgid ""
"configuring now. How do you want to proceed?"
msgstr ""
-#: ../../printerdrake.pm_.c:2364
+#: ../../printerdrake.pm_.c:2559
#, fuzzy
msgid "Go on without configuring the network"
msgstr "Ńęèìéóç äéêôęïő"
-#: ../../printerdrake.pm_.c:2397
+#: ../../printerdrake.pm_.c:2592
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -8519,34 +8852,34 @@ msgid ""
"\"Printer\""
msgstr ""
-#: ../../printerdrake.pm_.c:2398
+#: ../../printerdrake.pm_.c:2593
msgid ""
"The network access was not running and could not be started. Please check "
"your configuration and your hardware. Then try to configure your remote "
"printer again."
msgstr ""
-#: ../../printerdrake.pm_.c:2408
+#: ../../printerdrake.pm_.c:2603
#, fuzzy
msgid "Restarting printing system..."
msgstr "Đïéü óęóôçìá ćêôęđùóçò èĘëćôć íá śńçóéìïđïéȚóćôć;"
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2641
#, fuzzy
msgid "high"
msgstr "Őűçëü"
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2641
#, fuzzy
msgid "paranoid"
msgstr "Đáńáíïúêü"
-#: ../../printerdrake.pm_.c:2447
+#: ../../printerdrake.pm_.c:2642
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr ""
-#: ../../printerdrake.pm_.c:2448
+#: ../../printerdrake.pm_.c:2643
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -8561,12 +8894,12 @@ msgid ""
"Do you really want to configure printing on this machine?"
msgstr ""
-#: ../../printerdrake.pm_.c:2480
+#: ../../printerdrake.pm_.c:2675
#, fuzzy
msgid "Starting the printing system at boot time"
msgstr "Đïéü óęóôçìá ćêôęđùóçò èĘëćôć íá śńçóéìïđïéȚóćôć;"
-#: ../../printerdrake.pm_.c:2481
+#: ../../printerdrake.pm_.c:2676
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -8580,77 +8913,73 @@ msgid ""
"again?"
msgstr ""
-#: ../../printerdrake.pm_.c:2504 ../../printerdrake.pm_.c:2544
-#: ../../printerdrake.pm_.c:2581 ../../printerdrake.pm_.c:2621
-#: ../../printerdrake.pm_.c:2733
+#: ../../printerdrake.pm_.c:2700 ../../printerdrake.pm_.c:2741
+#: ../../printerdrake.pm_.c:2780 ../../printerdrake.pm_.c:2822
+#: ../../printerdrake.pm_.c:2943
msgid "Checking installed software..."
msgstr ""
-#: ../../printerdrake.pm_.c:2548
+#: ../../printerdrake.pm_.c:2746
msgid "Removing LPRng..."
msgstr ""
-#: ../../printerdrake.pm_.c:2585
+#: ../../printerdrake.pm_.c:2785
msgid "Removing LPD..."
msgstr ""
-#: ../../printerdrake.pm_.c:2657
+#: ../../printerdrake.pm_.c:2858
msgid "Select Printer Spooler"
msgstr "ĆđéëïăȚ Spooler EêôőđùôȚ"
-#: ../../printerdrake.pm_.c:2658
+#: ../../printerdrake.pm_.c:2859
msgid "Which printing system (spooler) do you want to use?"
msgstr "Đïéü óęóôçìá ćêôęđùóçò èĘëćôć íá śńçóéìïđïéȚóćôć;"
-#: ../../printerdrake.pm_.c:2691
+#: ../../printerdrake.pm_.c:2895
#, fuzzy, c-format
msgid "Configuring printer \"%s\"..."
msgstr "Ńęèìéóç ćêôőđùôȚ"
-#: ../../printerdrake.pm_.c:2704
+#: ../../printerdrake.pm_.c:2909
#, fuzzy
msgid "Installing Foomatic..."
msgstr "ĆăêáôÜóôáóç đáêĘôïő %s"
-#: ../../printerdrake.pm_.c:2769 ../../printerdrake.pm_.c:2808
-#: ../../printerdrake.pm_.c:3192 ../../printerdrake.pm_.c:3262
+#: ../../printerdrake.pm_.c:2979 ../../printerdrake.pm_.c:3020
+#: ../../printerdrake.pm_.c:3417 ../../printerdrake.pm_.c:3490
msgid "Printer options"
msgstr "ĆđéëïăĘò ćêôőđùôȚ"
-#: ../../printerdrake.pm_.c:2778
-msgid "Preparing PrinterDrake..."
-msgstr ""
+#: ../../printerdrake.pm_.c:2989
+#, fuzzy
+msgid "Preparing Printerdrake..."
+msgstr "ÁíÜăíùóç âÜóçò ïäçățí CUPS"
-#: ../../printerdrake.pm_.c:2795 ../../printerdrake.pm_.c:3349
+#: ../../printerdrake.pm_.c:3007 ../../printerdrake.pm_.c:3580
#, fuzzy
msgid "Configuring applications..."
msgstr "Ńęèìéóç ćêôőđùôȚ"
-#: ../../printerdrake.pm_.c:2815
+#: ../../printerdrake.pm_.c:3027
msgid "Would you like to configure printing?"
msgstr "Èá èĘëáôć íá ńőèìßóćôć Ęíáí ćêôőđùôȚ;"
-#: ../../printerdrake.pm_.c:2827
+#: ../../printerdrake.pm_.c:3039
msgid "Printing system: "
msgstr ""
-#: ../../printerdrake.pm_.c:2875
-#, fuzzy
-msgid "Printerdrake"
-msgstr "ĆêôőđùôȚò"
-
-#: ../../printerdrake.pm_.c:2879
+#: ../../printerdrake.pm_.c:3099
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; to view information about it; "
"or to make a printer on a remote CUPS server available for Star Office/"
-"OpenOffice.org."
+"OpenOffice.org/GIMP."
msgstr ""
"ŐđÜńśïőí ïé áêüëïőèćò ïőńĘò ćêôęđùóçò.\n"
"Ìđïńćßôć íá đńïóèĘóćôć êé Üëëćò Ț íá áëëÜîćôć ôéò őđÜńśïőóćò."
-#: ../../printerdrake.pm_.c:2880
+#: ../../printerdrake.pm_.c:3100
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
@@ -8660,137 +8989,139 @@ msgstr ""
"ŐđÜńśïőí ïé áêüëïőèćò ïőńĘò ćêôęđùóçò.\n"
"Ìđïńćßôć íá đńïóèĘóćôć êé Üëëćò Ț íá áëëÜîćôć ôéò őđÜńśïőóćò."
-#: ../../printerdrake.pm_.c:2906
+#: ../../printerdrake.pm_.c:3127
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr ""
-#: ../../printerdrake.pm_.c:2924
+#: ../../printerdrake.pm_.c:3145
#, fuzzy
msgid "Change the printing system"
msgstr "Ńęèìéóç äéêôęïő"
-#: ../../printerdrake.pm_.c:2929 ../../standalone/drakconnect_.c:277
+#: ../../printerdrake.pm_.c:3150 ../../standalone/drakconnect_.c:277
msgid "Normal Mode"
msgstr "ÊáíïíéêȚ ÊáôÜóôáóç"
-#: ../../printerdrake.pm_.c:3085 ../../printerdrake.pm_.c:3135
-#: ../../printerdrake.pm_.c:3343
+#: ../../printerdrake.pm_.c:3310 ../../printerdrake.pm_.c:3360
+#: ../../printerdrake.pm_.c:3573
#, fuzzy
msgid "Do you want to configure another printer?"
msgstr "ÈĘëćôć íá äïêéìÜóćôć ôéò ńőèìßóćéò;"
-#: ../../printerdrake.pm_.c:3170
+#: ../../printerdrake.pm_.c:3395
#, fuzzy
msgid "Modify printer configuration"
msgstr "Ńőèìßóćéò Äéáäéêôęïő (Internet)"
-#: ../../printerdrake.pm_.c:3172
+#: ../../printerdrake.pm_.c:3397
#, fuzzy, c-format
msgid ""
"Printer %s\n"
"What do you want to modify on this printer?"
msgstr "ÈĘëćôć íá äïêéìÜóćôć ôéò ńőèìßóćéò;"
-#: ../../printerdrake.pm_.c:3176
+#: ../../printerdrake.pm_.c:3401
msgid "Do it!"
msgstr ""
-#: ../../printerdrake.pm_.c:3181 ../../printerdrake.pm_.c:3236
+#: ../../printerdrake.pm_.c:3406 ../../printerdrake.pm_.c:3461
#, fuzzy
msgid "Printer connection type"
msgstr "Óęíäćóç Internet"
-#: ../../printerdrake.pm_.c:3182 ../../printerdrake.pm_.c:3240
+#: ../../printerdrake.pm_.c:3407 ../../printerdrake.pm_.c:3465
#, fuzzy
msgid "Printer name, description, location"
msgstr "ĆđéëïăȚ ìïíôĘëïő ćêôőđùôȚ"
-#: ../../printerdrake.pm_.c:3184 ../../printerdrake.pm_.c:3255
+#: ../../printerdrake.pm_.c:3409 ../../printerdrake.pm_.c:3483
msgid "Printer manufacturer, model, driver"
msgstr ""
-#: ../../printerdrake.pm_.c:3185 ../../printerdrake.pm_.c:3256
+#: ../../printerdrake.pm_.c:3410 ../../printerdrake.pm_.c:3484
msgid "Printer manufacturer, model"
msgstr ""
-#: ../../printerdrake.pm_.c:3194 ../../printerdrake.pm_.c:3266
+#: ../../printerdrake.pm_.c:3419 ../../printerdrake.pm_.c:3494
msgid "Set this printer as the default"
msgstr ""
-#: ../../printerdrake.pm_.c:3196 ../../printerdrake.pm_.c:3271
-msgid "Add this printer to Star Office/OpenOffice.org"
+#: ../../printerdrake.pm_.c:3421 ../../printerdrake.pm_.c:3499
+msgid "Add this printer to Star Office/OpenOffice.org/GIMP"
msgstr ""
-#: ../../printerdrake.pm_.c:3197 ../../printerdrake.pm_.c:3280
-msgid "Remove this printer from Star Office/OpenOffice.org"
+#: ../../printerdrake.pm_.c:3422 ../../printerdrake.pm_.c:3508
+msgid "Remove this printer from Star Office/OpenOffice.org/GIMP"
msgstr ""
-#: ../../printerdrake.pm_.c:3198 ../../printerdrake.pm_.c:3289
+#: ../../printerdrake.pm_.c:3423 ../../printerdrake.pm_.c:3517
#, fuzzy
msgid "Print test pages"
msgstr "Ćêôęđùóç äïêéìáóôéêțí óćëßäùí..."
-#: ../../printerdrake.pm_.c:3199 ../../printerdrake.pm_.c:3291
+#: ../../printerdrake.pm_.c:3424 ../../printerdrake.pm_.c:3519
#, fuzzy
msgid "Know how to use this printer"
msgstr "ÈĘëćôć íá äïêéìÜóćôć ôéò ńőèìßóćéò;"
-#: ../../printerdrake.pm_.c:3201 ../../printerdrake.pm_.c:3293
+#: ../../printerdrake.pm_.c:3426 ../../printerdrake.pm_.c:3521
#, fuzzy
msgid "Remove printer"
msgstr "ÁđïìćìáêńőóìĘíïò ćêôőđùôȚò"
-#: ../../printerdrake.pm_.c:3245
+#: ../../printerdrake.pm_.c:3472
#, fuzzy, c-format
msgid "Removing old printer \"%s\"..."
msgstr "ÁđïìćìáêńőóìĘíïò ćêôőđùôȚò"
-#: ../../printerdrake.pm_.c:3269
+#: ../../printerdrake.pm_.c:3497
#, fuzzy
msgid "Default printer"
msgstr "Ôïđéêüò ćêôőđùôȚò"
-#: ../../printerdrake.pm_.c:3270
+#: ../../printerdrake.pm_.c:3498
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr ""
-#: ../../printerdrake.pm_.c:3274 ../../printerdrake.pm_.c:3277
-msgid "Adding printer to Star Office/OpenOffice.org"
+#: ../../printerdrake.pm_.c:3502 ../../printerdrake.pm_.c:3505
+msgid "Adding printer to Star Office/OpenOffice.org/GIMP"
msgstr ""
-#: ../../printerdrake.pm_.c:3275
+#: ../../printerdrake.pm_.c:3503
#, c-format
msgid ""
-"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
+"The printer \"%s\" was successfully added to Star Office/OpenOffice.org/GIMP."
msgstr ""
-#: ../../printerdrake.pm_.c:3278
+#: ../../printerdrake.pm_.c:3506
#, c-format
-msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
+msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org/GIMP."
msgstr ""
-#: ../../printerdrake.pm_.c:3283 ../../printerdrake.pm_.c:3286
-msgid "Removing printer from Star Office/OpenOffice.org"
+#: ../../printerdrake.pm_.c:3511 ../../printerdrake.pm_.c:3514
+msgid "Removing printer from Star Office/OpenOffice.org/GIMP"
msgstr ""
-#: ../../printerdrake.pm_.c:3284
+#: ../../printerdrake.pm_.c:3512
#, c-format
msgid ""
-"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
+"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org/"
+"GIMP."
msgstr ""
-#: ../../printerdrake.pm_.c:3287
+#: ../../printerdrake.pm_.c:3515
#, c-format
-msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
+msgid ""
+"Failed to remove the printer \"%s\" from Star Office/OpenOffice.org/GIMP."
msgstr ""
-#: ../../printerdrake.pm_.c:3295
+#: ../../printerdrake.pm_.c:3523
#, fuzzy, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr "ÈĘëćôć íá ćđáíćêêéíȚóćôć ôï äßêôőï;"
-#: ../../printerdrake.pm_.c:3297
+#: ../../printerdrake.pm_.c:3527
#, fuzzy, c-format
msgid "Removing printer \"%s\"..."
msgstr "ÁđïìćìáêńőóìĘíïò ćêôőđùôȚò"
@@ -9213,7 +9544,7 @@ msgstr "Éíôćńíćô"
msgid "File sharing"
msgstr ""
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1669
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1744
#, fuzzy
msgid "System"
msgstr "ÊáôÜóôáóç óőóôȚìáôïò"
@@ -9273,191 +9604,228 @@ msgstr "ÊáôÜóôáóç:"
msgid "Stop"
msgstr "ÔïìĘáò"
-#: ../../share/advertising/00-thanks.pl_.c:9
-msgid "Thank you for choosing Mandrake Linux 8.2"
+#: ../../share/advertising/01-thanks.pl_.c:9
+msgid "Thank you for choosing Mandrake Linux 9.0"
msgstr ""
-#: ../../share/advertising/00-thanks.pl_.c:10
+#: ../../share/advertising/01-thanks.pl_.c:10
msgid "Welcome to the Open Source world"
msgstr ""
-#: ../../share/advertising/00-thanks.pl_.c:11
+#: ../../share/advertising/01-thanks.pl_.c:11
msgid ""
"The success of MandrakeSoft is based upon the principle of Free Software. "
"Your new operating system is the result of collaborative work on the part of "
"the worldwide Linux Community"
msgstr ""
-#: ../../share/advertising/01-gnu.pl_.c:9
+#: ../../share/advertising/02-community.pl_.c:9
#, fuzzy
-msgid "Join the Free Software world"
+msgid "Get involved in the Free Software world"
msgstr "Őđüëïéđïò êüóìïò"
-#: ../../share/advertising/01-gnu.pl_.c:10
+#: ../../share/advertising/02-community.pl_.c:10
+msgid "Want to know more about the Open Source community?"
+msgstr ""
+
+#: ../../share/advertising/02-community.pl_.c:11
msgid ""
-"Get to know the Open Source community and become a member. Learn, teach, and "
-"help others by joining the many discussion forums that you will find in our "
-"\"Community\" webpages"
+"To share your own knowledge and help build Linux tools, join the discussions "
+"forum you'll find on our \"Community\" webpages"
msgstr ""
-#: ../../share/advertising/02-internet.pl_.c:9
+#: ../../share/advertising/03-internet.pl_.c:9
#, fuzzy
-msgid "Internet and Messaging"
-msgstr "Đńüóâáóç óôï Internet"
+msgid "Get the most from the Internet"
+msgstr "Óęíäćóç óôï Äéáäßêôőï"
-#: ../../share/advertising/02-internet.pl_.c:10
+#: ../../share/advertising/03-internet.pl_.c:10
msgid ""
-"Mandrake Linux 8.2 provides the best software to access everything the "
-"Internet has to offer: Surf the web & view animations with Mozilla and "
-"Konqueror, exchange email & organize your personal information with "
-"Evolution and Kmail, and much more"
+"Mandrake Linux 9.0 has selected the best software for you. Surf the Web and "
+"view animations with Mozilla and Konqueror, or read your mail and handle "
+"your personal information with Evolution and Kmail"
msgstr ""
-#: ../../share/advertising/03-graphic.pl_.c:9
-#, fuzzy
-msgid "Multimedia and Graphics"
-msgstr "ĐïëőìĘóá - ĂńáöéêÜ"
+#: ../../share/advertising/04-multimedia.pl_.c:9
+msgid "Discover the most up-to-date graphics and multimedia tools!"
+msgstr ""
-#: ../../share/advertising/03-graphic.pl_.c:10
+#: ../../share/advertising/04-multimedia.pl_.c:10
+msgid "Push multimedia to its limits!"
+msgstr ""
+
+#: ../../share/advertising/04-multimedia.pl_.c:11
msgid ""
-"Mandrake Linux 8.2 lets you push your multimedia computer to its limits! Use "
-"the latest software to play music and audio files, edit and organize your "
-"images and photos, watch TV and videos, and much more"
+"Mandrake Linux 9.0 enables you to use the very latest software to play audio "
+"files, edit and handle your images or photos, and play videos"
msgstr ""
-#: ../../share/advertising/04-develop.pl_.c:9
-msgid "Development"
-msgstr "ÁíÜđôőîç"
+#: ../../share/advertising/05-games.pl_.c:9
+msgid "Games"
+msgstr "Đáéśíßäéá"
-#: ../../share/advertising/04-develop.pl_.c:10
+#: ../../share/advertising/05-games.pl_.c:10
msgid ""
-"Mandrake Linux 8.2 is the ultimate development platform. Discover the power "
-"of the GNU gcc compiler as well as the best Open Source development "
-"environments"
+"Mandrake Linux 9.0 provides the best Open Source games - arcade, action, "
+"cards, sports, strategy..."
msgstr ""
-#: ../../share/advertising/05-contcenter.pl_.c:9
-#: ../../standalone/drakbug_.c:69
+#: ../../share/advertising/06-mcc.pl_.c:9 ../../standalone/drakbug_.c:69
#, fuzzy
msgid "Mandrake Control Center"
msgstr "ÊĘíôńï ĆëĘăśïő"
-#: ../../share/advertising/05-contcenter.pl_.c:10
+#: ../../share/advertising/06-mcc.pl_.c:10
msgid ""
-"The Mandrake Linux 8.2 Control Center is a one-stop location for fully "
-"customizing and configuring your Mandrake system"
+"Mandrake Linux 9.0 provides a powerful tool to fully customize and configure "
+"your machine"
msgstr ""
-#: ../../share/advertising/06-user.pl_.c:9
+#: ../../share/advertising/07-desktop.pl_.c:9
#, fuzzy
msgid "User interfaces"
msgstr "ÓőóêćőȚ äéêôęïő"
-#: ../../share/advertising/06-user.pl_.c:10
+#: ../../share/advertising/07-desktop.pl_.c:10
msgid ""
-"Mandrake Linux 8.2 provides 11 different graphical desktop environments and "
-"window managers to choose from including GNOME 1.4, KDE 2.2.2, Window Maker "
-"0.8, and the rest"
+"Mandrake Linux 9.0 provides 11 user interfaces which can be fully modified: "
+"KDE 3, Gnome 2, WindowMaker..."
msgstr ""
-#: ../../share/advertising/07-server.pl_.c:9
+#: ../../share/advertising/08-development.pl_.c:9
#, fuzzy
-msgid "Server Software"
-msgstr "Äéêôőáêü üíïìá SMB ćîőđçńćôçôȚ:"
+msgid "Development simplified"
+msgstr "ÁíÜđôőîç"
+
+#: ../../share/advertising/08-development.pl_.c:10
+msgid "Mandrake Linux 9.0 is the ultimate development platform"
+msgstr ""
-#: ../../share/advertising/07-server.pl_.c:10
+#: ../../share/advertising/08-development.pl_.c:11
msgid ""
-"Transform your machine into a powerful server with just a few clicks of the "
-"mouse: Web server, email, firewall, router, file and print server, ..."
+"Use the full power of the GNU gcc 3 compiler as well as the best Open Source "
+"development environments"
msgstr ""
-#: ../../share/advertising/08-games.pl_.c:9
-msgid "Games"
-msgstr "Đáéśíßäéá"
+#: ../../share/advertising/09-server.pl_.c:9
+msgid "Turn your machine into a reliable server"
+msgstr ""
-#: ../../share/advertising/08-games.pl_.c:10
+#: ../../share/advertising/09-server.pl_.c:10
msgid ""
-"Mandrake Linux 8.2 provides the best Open Source games - arcade, action, "
-"cards, sports, strategy, ..."
+"Transform your machine into a powerful server in a few clicks of your mouse: "
+"Web server, mail, firewall, router, file and print server..."
msgstr ""
-#: ../../share/advertising/09-MDKcampus.pl_.c:9
-msgid "MandrakeCampus"
+#: ../../share/advertising/10-mnf.pl_.c:9
+msgid "Optimize your security"
msgstr ""
-#: ../../share/advertising/09-MDKcampus.pl_.c:10
+#: ../../share/advertising/10-mnf.pl_.c:10
msgid ""
-"Would you like to learn Linux simply, quickly, and for free? MandrakeSoft "
-"provides free Linux training, as well as a way to test your progress, at "
-"MandrakeCampus -- our online training center"
+"The MandrakeSecurity range includes the Multi Network Firewall product (M.N."
+"F.)"
msgstr ""
-#: ../../share/advertising/10-MDKexpert.pl_.c:9
-#, fuzzy
-msgid "MandrakeExpert"
-msgstr "Ăéá ćéäéêïęò"
+#: ../../share/advertising/10-mnf.pl_.c:11
+msgid ""
+"This firewall product includes network features which allow you to fulfill "
+"all your security needs"
+msgstr ""
-#: ../../share/advertising/10-MDKexpert.pl_.c:10
+#: ../../share/advertising/10-mnf.pl_.c:12
+msgid "This product is available on MandrakeStore website"
+msgstr ""
+
+#: ../../share/advertising/11-mdkstore.pl_.c:9
+msgid "The official MandrakeSoft store"
+msgstr ""
+
+#: ../../share/advertising/11-mdkstore.pl_.c:10
msgid ""
-"Quality support from the Linux Community, and from MandrakeSoft, is just "
-"around the corner. And if you're already a Linux veteran, become an \"Expert"
-"\" and share your knowledge at our support website"
+"Our full range of Linux solutions, as well as special offers on products and "
+"'goodies', are available online at our e-store"
msgstr ""
-#: ../../share/advertising/11-consul.pl_.c:9
-msgid "MandrakeConsulting"
+#: ../../share/advertising/12-mdkstore.pl_.c:9
+msgid "Strategic partners"
msgstr ""
-#: ../../share/advertising/11-consul.pl_.c:10
+#: ../../share/advertising/12-mdkstore.pl_.c:10
msgid ""
-"For all of your IT projects, our consultants are ready to analyze your "
-"requirements and offer a customized solution. Benefit from MandrakeSoft's "
-"vast experience as a Linux producer to provide a true IT alternative for "
-"your business organization"
+"MandrakeSoft works alongside a selection of companies offering professional "
+"solutions compatible with Mandrake Linux; a list of these partners is "
+"available on the MandrakeStore"
msgstr ""
-#: ../../share/advertising/12-MDKstore.pl_.c:9
-msgid "MandrakeStore"
+#: ../../share/advertising/13-mdkcampus.pl_.c:9
+msgid "Discover MandrakeSoft's training catalogue Linux-Campus"
msgstr ""
-#: ../../share/advertising/12-MDKstore.pl_.c:10
+#: ../../share/advertising/13-mdkcampus.pl_.c:10
msgid ""
-"A full range of Linux solutions, as well as special offers on products and "
-"'goodies', are available online at our e-store"
+"The training program has been create to respond to the needs of both users "
+"and experts (Network and System administrations)"
msgstr ""
-#: ../../share/advertising/13-Nvert.pl_.c:9
+#: ../../share/advertising/13-mdkcampus.pl_.c:11
+msgid "Certify yourself on Linux"
+msgstr ""
+
+#: ../../share/advertising/13-mdkcampus.pl_.c:12
+msgid ""
+"Whether you choose to teach yourself online or via our network of training "
+"partners, the Linux-Campus catalogue prepares you for the acknowledged LPI "
+"certification program (worldwide professional technical certification)"
+msgstr ""
+
+#: ../../share/advertising/14-mdkexpert.pl_.c:9
+#, fuzzy
+msgid "Become a MandrakeExpert"
+msgstr "Ăéá ćéäéêïęò"
+
+#: ../../share/advertising/14-mdkexpert.pl_.c:10
msgid ""
-"For more information on MandrakeSoft's Professional Services and commercial "
-"offerings, please see the following web page:"
+"Find the solutions to your problems via MandrakeSoft's online support "
+"platform"
msgstr ""
-#: ../../share/advertising/13-Nvert.pl_.c:11
-msgid "http://www.mandrakesoft.com/sales/contact"
+#: ../../share/advertising/14-mdkexpert.pl_.c:11
+msgid ""
+"Join the MandrakeSoft support teams and the Linux Community online to share "
+"your knowledge and help others by becoming a recognized Expert on the online "
+"technical support website:"
msgstr ""
-#: ../../standalone.pm_.c:40
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:9
+#, fuzzy
+msgid "MandrakeExpert Corporate"
+msgstr "Ăéá ćéäéêïęò"
+
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:10
+msgid "An online platform to respond to company's specific support needs"
+msgstr ""
+
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:11
+msgid ""
+"All incidents will be followed up by a single qualified MandrakeSoft "
+"technical expert."
+msgstr ""
+
+#: ../../standalone.pm_.c:41
#, fuzzy
msgid "Installing packages..."
msgstr "ĆăêáôÜóôáóç đáêĘôïő %s"
-#: ../../standalone/XFdrake_.c:143
+#: ../../standalone/XFdrake_.c:145
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "Đáńáêáëț áđïóőíäćèćßôć êáé ìćôÜ đáôȚóôć Ctrl-Alt-BackSpace"
-#: ../../standalone/XFdrake_.c:147
+#: ../../standalone/XFdrake_.c:149
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "Đáńáêáëț ćđáíáóőíäćèćßôć ùò %s ăéá ćíćńăïđïßçóç ôùí áëëáățí"
-#: ../../standalone/diskdrake_.c:81
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I'll try to go on blanking bad partitions"
-msgstr ""
-"Äćí ìđïńț íá äéáâÜóù ôïí đßíáêá êáôáôìȚóćùí, ćßíáé đïëę êáôćóôńáìĘíïò :(\n"
-"Èá đńïóđáèȚóù íá óőíćśßóù áöáéńțíôáò ôéò ëáíèáóìĘíćò êáôáôìȚóćéò"
-
#: ../../standalone/drakTermServ_.c:188
#, fuzzy
msgid "Mandrake Terminal Server Configuration"
@@ -9501,12 +9869,13 @@ msgstr "ĐńïóèȚêç śńȚóôç"
msgid "Add/Del Clients"
msgstr "ĐćëÜôçò DHCP"
-#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3282
-#: ../../standalone/drakbackup_.c:3315 ../../standalone/drakbackup_.c:3341
-#: ../../standalone/drakbackup_.c:3368 ../../standalone/drakbackup_.c:3395
-#: ../../standalone/drakbackup_.c:3434 ../../standalone/drakbackup_.c:3455
-#: ../../standalone/drakbackup_.c:3482 ../../standalone/drakbackup_.c:3508
-#: ../../standalone/drakbackup_.c:3533 ../../standalone/drakfont_.c:700
+#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3930
+#: ../../standalone/drakbackup_.c:3963 ../../standalone/drakbackup_.c:3989
+#: ../../standalone/drakbackup_.c:4016 ../../standalone/drakbackup_.c:4043
+#: ../../standalone/drakbackup_.c:4082 ../../standalone/drakbackup_.c:4103
+#: ../../standalone/drakbackup_.c:4130 ../../standalone/drakbackup_.c:4160
+#: ../../standalone/drakbackup_.c:4186 ../../standalone/drakbackup_.c:4211
+#: ../../standalone/drakfont_.c:700
#, fuzzy
msgid "Help"
msgstr "/_ÂïȚèćéá"
@@ -9666,8 +10035,8 @@ msgid ""
"The parameters of the auto-install are available in the sections on the left"
msgstr ""
-#: ../../standalone/drakautoinst_.c:239 ../../standalone/drakgw_.c:548
-#: ../../standalone/scannerdrake_.c:105
+#: ../../standalone/drakautoinst_.c:239 ../../standalone/drakgw_.c:484
+#: ../../standalone/scannerdrake_.c:119
msgid "Congratulations!"
msgstr "ÓőăśáńçôȚńéá!"
@@ -9692,27 +10061,31 @@ msgstr "ĐńïóèȚêç śńȚóôç"
msgid "Remove the last item"
msgstr "Ìïńöïđïßçóç áńśćßïő loopback %s"
-#: ../../standalone/drakbackup_.c:625
+#: ../../standalone/drakbackup_.c:619
msgid "Cron not available yet as non-root"
msgstr ""
-#: ../../standalone/drakbackup_.c:731
+#: ../../standalone/drakbackup_.c:725
msgid "WARNING"
msgstr ""
-#: ../../standalone/drakbackup_.c:732
+#: ../../standalone/drakbackup_.c:726
#, fuzzy
msgid "FATAL"
msgstr "FAT"
-#: ../../standalone/drakbackup_.c:744
+#: ../../standalone/drakbackup_.c:727
+msgid "INFO"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:739
msgid ""
"\n"
" DrakBackup Report \n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:745
+#: ../../standalone/drakbackup_.c:740
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -9720,7 +10093,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:749
+#: ../../standalone/drakbackup_.c:744
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -9728,13 +10101,20 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:770 ../../standalone/drakbackup_.c:840
-#: ../../standalone/drakbackup_.c:894
+#: ../../standalone/drakbackup_.c:765 ../../standalone/drakbackup_.c:835
+#: ../../standalone/drakbackup_.c:889
#, fuzzy
msgid "Total progess"
msgstr "ÄïêéìȚ èőńțí"
-#: ../../standalone/drakbackup_.c:822
+#: ../../standalone/drakbackup_.c:788
+msgid ""
+"Sorry, perl-Expect is not installed/enabled. To use\n"
+"this feature, install perl-Expect and comment lines 772-774,\n"
+" as well as 788,789. Then uncomment line 787."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:817
#, c-format
msgid ""
"%s exists, delete?\n"
@@ -9743,16 +10123,41 @@ msgid ""
" need to purge the entry from authorized_keys on the server."
msgstr ""
-#: ../../standalone/drakbackup_.c:831
+#: ../../standalone/drakbackup_.c:826
msgid "This may take a moment to generate the keys."
msgstr ""
-#: ../../standalone/drakbackup_.c:838
+#: ../../standalone/drakbackup_.c:833
#, c-format
msgid "ERROR: Cannot spawn %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:865
+#: ../../standalone/drakbackup_.c:850
+#, c-format
+msgid "No password prompt on %s at port %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:851
+#, fuzzy, c-format
+msgid "Bad password on %s"
+msgstr "Śùńßò óőíèçìáôéêü"
+
+#: ../../standalone/drakbackup_.c:852
+#, c-format
+msgid "Permission denied transferring %s to %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:853
+#, fuzzy, c-format
+msgid "Can't find %s on %s"
+msgstr "Áäőíáìßá áíïßăìáôïò %s: %s\n"
+
+#: ../../standalone/drakbackup_.c:856
+#, c-format
+msgid "%s not responding"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:860
#, c-format
msgid ""
"Transfer successful\n"
@@ -9763,63 +10168,68 @@ msgid ""
"without being prompted for a password."
msgstr ""
-#: ../../standalone/drakbackup_.c:908
+#: ../../standalone/drakbackup_.c:903
msgid "WebDAV remote site already in sync!"
msgstr ""
-#: ../../standalone/drakbackup_.c:912
+#: ../../standalone/drakbackup_.c:907
msgid "WebDAV transfer failed!"
msgstr ""
-#: ../../standalone/drakbackup_.c:934
+#: ../../standalone/drakbackup_.c:928
msgid "No CDR/DVDR in drive!"
msgstr ""
-#: ../../standalone/drakbackup_.c:938
+#: ../../standalone/drakbackup_.c:932
msgid "Does not appear to be recordable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:942
+#: ../../standalone/drakbackup_.c:936
msgid "Not erasable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:981
+#: ../../standalone/drakbackup_.c:975
msgid "This may take a moment to erase the media."
msgstr ""
-#: ../../standalone/drakbackup_.c:1045
+#: ../../standalone/drakbackup_.c:1060
msgid "Permission problem accessing CD."
msgstr ""
-#: ../../standalone/drakbackup_.c:1144 ../../standalone/drakbackup_.c:1193
+#: ../../standalone/drakbackup_.c:1087
+#, c-format
+msgid "No tape in %s!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1199 ../../standalone/drakbackup_.c:1248
msgid "Backup system files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:1194 ../../standalone/drakbackup_.c:1261
+#: ../../standalone/drakbackup_.c:1249 ../../standalone/drakbackup_.c:1316
#, fuzzy
msgid "Hard Disk Backup files..."
msgstr "ÊáôćóôńáìĘíï ćöćäńéêü áńśćßï"
-#: ../../standalone/drakbackup_.c:1206
+#: ../../standalone/drakbackup_.c:1261
#, fuzzy
msgid "Backup User files..."
msgstr "ÊáôćóôńáìĘíï ćöćäńéêü áńśćßï"
-#: ../../standalone/drakbackup_.c:1207
+#: ../../standalone/drakbackup_.c:1262
msgid "Hard Disk Backup Progress..."
msgstr ""
-#: ../../standalone/drakbackup_.c:1260
+#: ../../standalone/drakbackup_.c:1315
#, fuzzy
msgid "Backup Other files..."
msgstr "ÊáôćóôńáìĘíï ćöćäńéêü áńśćßï"
-#: ../../standalone/drakbackup_.c:1266
+#: ../../standalone/drakbackup_.c:1321
#, fuzzy
msgid "No changes to backup!"
msgstr "ÊáôćóôńáìĘíï ćöćäńéêü áńśćßï"
-#: ../../standalone/drakbackup_.c:1282 ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1337 ../../standalone/drakbackup_.c:1360
#, c-format
msgid ""
"\n"
@@ -9827,800 +10237,923 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1289
+#: ../../standalone/drakbackup_.c:1344
#, c-format
msgid ""
-"file list sent by FTP : %s\n"
+"file list sent by FTP: %s\n"
" "
msgstr ""
-#: ../../standalone/drakbackup_.c:1292
+#: ../../standalone/drakbackup_.c:1347
msgid ""
"\n"
" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1310
+#: ../../standalone/drakbackup_.c:1365
msgid ""
"\n"
"Drakbackup activities via CD:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1315
+#: ../../standalone/drakbackup_.c:1370
msgid ""
"\n"
"Drakbackup activities via tape:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1324
+#: ../../standalone/drakbackup_.c:1379
#, fuzzy
msgid " Error during mail sending. \n"
msgstr "ÓöÜëìá êáôÜ ôçí áíÜăíùóç ôïő áńśćßïő %s"
-#: ../../standalone/drakbackup_.c:1346
+#: ../../standalone/drakbackup_.c:1404
msgid "Can't create catalog!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1459 ../../standalone/drakbackup_.c:1470
-#: ../../standalone/drakbackup_.c:1481 ../../standalone/drakfont_.c:1004
+#: ../../standalone/drakbackup_.c:1517 ../../standalone/drakbackup_.c:1528
+#: ../../standalone/drakfont_.c:1004
#, fuzzy
msgid "File Selection"
msgstr "ĆđéëïăȚ đáêĘôùí"
-#: ../../standalone/drakbackup_.c:1486
+#: ../../standalone/drakbackup_.c:1556
msgid "Select the files or directories and click on 'Add'"
msgstr ""
-#: ../../standalone/drakbackup_.c:1525
+#: ../../standalone/drakbackup_.c:1600
msgid ""
"\n"
"Please check all options that you need.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1526
+#: ../../standalone/drakbackup_.c:1601
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1527
+#: ../../standalone/drakbackup_.c:1602
#, fuzzy
msgid "Backup your System files. (/etc directory)"
msgstr "ÊáôćóôńáìĘíï ćöćäńéêü áńśćßï"
-#: ../../standalone/drakbackup_.c:1528
+#: ../../standalone/drakbackup_.c:1603
msgid "Use incremental backup (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1529
+#: ../../standalone/drakbackup_.c:1604
msgid "Do not include critical files (passwd, group, fstab)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1530
+#: ../../standalone/drakbackup_.c:1605
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr ""
-#: ../../standalone/drakbackup_.c:1547
+#: ../../standalone/drakbackup_.c:1622
#, fuzzy
msgid "Please check all users that you want to include in your backup."
msgstr "Đáńáêáëț ćđéëĘîôć ôá đáêĘôá đïő èĘëćôć íá ćăêáôáóôȚóćôć"
-#: ../../standalone/drakbackup_.c:1574
+#: ../../standalone/drakbackup_.c:1649
msgid "Do not include the browser cache"
msgstr ""
-#: ../../standalone/drakbackup_.c:1575 ../../standalone/drakbackup_.c:1599
+#: ../../standalone/drakbackup_.c:1650 ../../standalone/drakbackup_.c:1674
msgid "Use Incremental Backups (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1597 ../../standalone/drakfont_.c:1058
+#: ../../standalone/drakbackup_.c:1672 ../../standalone/drakfont_.c:1058
#, fuzzy
msgid "Remove Selected"
msgstr "ÄéáăńáöȚ ïőńÜò"
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:1710
#, fuzzy
msgid "Windows (FAT32)"
msgstr "Áöáßńćóç Windows(TM)"
-#: ../../standalone/drakbackup_.c:1674
+#: ../../standalone/drakbackup_.c:1749
#, fuzzy
msgid "Users"
msgstr "Êùäéêü üíïìá"
-#: ../../standalone/drakbackup_.c:1700
+#: ../../standalone/drakbackup_.c:1775
#, fuzzy
msgid "Use network connection to backup"
msgstr "ÊáôćóôńáìĘíï ćöćäńéêü áńśćßï"
-#: ../../standalone/drakbackup_.c:1706
+#: ../../standalone/drakbackup_.c:1777
+msgid "Net Method:"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1781
msgid "Use Expect for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1707
+#: ../../standalone/drakbackup_.c:1782
msgid ""
"Create/Transfer\n"
"backup keys for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1708
+#: ../../standalone/drakbackup_.c:1783
msgid ""
" Transfer \n"
"Now"
msgstr ""
-#: ../../standalone/drakbackup_.c:1709
+#: ../../standalone/drakbackup_.c:1784
msgid "Keys in place already"
msgstr ""
-#: ../../standalone/drakbackup_.c:1713
+#: ../../standalone/drakbackup_.c:1788
#, fuzzy
msgid "Please enter the host name or IP."
msgstr "Đáńáêáëț äïêéìÜóôć ôï đïíôßêé"
-#: ../../standalone/drakbackup_.c:1718
+#: ../../standalone/drakbackup_.c:1793
msgid ""
"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
-#: ../../standalone/drakbackup_.c:1723
+#: ../../standalone/drakbackup_.c:1798
#, fuzzy
msgid "Please enter your login"
msgstr "Đáńáêáëț đńïóđáèȚóôć îáíÜ"
-#: ../../standalone/drakbackup_.c:1728
+#: ../../standalone/drakbackup_.c:1803
#, fuzzy
msgid "Please enter your password"
msgstr "Đáńáêáëț đńïóđáèȚóôć îáíÜ"
-#: ../../standalone/drakbackup_.c:1734
+#: ../../standalone/drakbackup_.c:1809
#, fuzzy
msgid "Remember this password"
msgstr "îáíáđëçêôńïëïăȚóôć ôïí êùäéêü đńüóâáóçò"
-#: ../../standalone/drakbackup_.c:1745
+#: ../../standalone/drakbackup_.c:1820
msgid "Need hostname, username and password!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1841
+#: ../../standalone/drakbackup_.c:1915
msgid "Use CD/DVDROM to backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1844
+#: ../../standalone/drakbackup_.c:1918
msgid ""
"Please choose your CD/DVD device\n"
"(Press Enter to propogate settings to other fields.\n"
"This field isn't necessary, only a tool to fill in the form.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1849
+#: ../../standalone/drakbackup_.c:1923
#, fuzzy
msgid "Please choose your CD/DVD media size"
msgstr "Đáńáêáëț ćđéëĘîôć äéáńęèìéóç đëçêôńïëïăßïő."
-#: ../../standalone/drakbackup_.c:1855
+#: ../../standalone/drakbackup_.c:1929
#, fuzzy
msgid "Please check for multisession CD"
msgstr "Đáńáêáëț êÜíôć êëéê óć ìéá êáôÜôìçóç"
-#: ../../standalone/drakbackup_.c:1861
+#: ../../standalone/drakbackup_.c:1935
#, fuzzy
msgid "Please check if you are using CDRW media"
msgstr "Đáńáêáëț êÜíôć êëéê óć ìéá êáôÜôìçóç"
-#: ../../standalone/drakbackup_.c:1867
+#: ../../standalone/drakbackup_.c:1941
#, fuzzy
msgid "Please check if you want to erase your RW media (1st Session)"
msgstr "Đáńáêáëț êÜíôć êëéê óć ìéá êáôÜôìçóç"
-#: ../../standalone/drakbackup_.c:1868
+#: ../../standalone/drakbackup_.c:1942
msgid " Erase Now "
msgstr ""
-#: ../../standalone/drakbackup_.c:1874
+#: ../../standalone/drakbackup_.c:1948
#, fuzzy
msgid "Please check if you are using a DVDR device"
msgstr "Đáńáêáëț êÜíôć êëéê óć ìéá êáôÜôìçóç"
-#: ../../standalone/drakbackup_.c:1880
+#: ../../standalone/drakbackup_.c:1954
#, fuzzy
msgid "Please check if you are using a DVDRAM device"
msgstr "Đáńáêáëț êÜíôć êëéê óć ìéá êáôÜôìçóç"
-#: ../../standalone/drakbackup_.c:1893
+#: ../../standalone/drakbackup_.c:1967
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
msgstr ""
-#: ../../standalone/drakbackup_.c:1926
+#: ../../standalone/drakbackup_.c:2000
#, fuzzy
msgid "No CD device defined!"
msgstr "ĆđéëĘîôć áńśćßï"
-#: ../../standalone/drakbackup_.c:1974
+#: ../../standalone/drakbackup_.c:2048
#, fuzzy
msgid "Use tape to backup"
msgstr "ÊáôćóôńáìĘíï ćöćäńéêü áńśćßï"
-#: ../../standalone/drakbackup_.c:1977
+#: ../../standalone/drakbackup_.c:2051
msgid "Please enter the device name to use for backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1983
+#: ../../standalone/drakbackup_.c:2057
#, fuzzy
msgid "Please check if you want to use the non-rewinding device."
msgstr "Đáńáêáëț ćđéëĘîôć ôá đáêĘôá đïő èĘëćôć íá ćăêáôáóôȚóćôć"
-#: ../../standalone/drakbackup_.c:1989
+#: ../../standalone/drakbackup_.c:2063
#, fuzzy
msgid "Please check if you want to erase your tape before the backup."
msgstr "Đáńáêáëț ćđéëĘîôć ôá đáêĘôá đïő èĘëćôć íá ćăêáôáóôȚóćôć"
-#: ../../standalone/drakbackup_.c:1995
+#: ../../standalone/drakbackup_.c:2069
#, fuzzy
msgid "Please check if you want to eject your tape after the backup."
msgstr "Đáńáêáëț ćđéëĘîôć ôá đáêĘôá đïő èĘëćôć íá ćăêáôáóôȚóćôć"
-#: ../../standalone/drakbackup_.c:2001 ../../standalone/drakbackup_.c:2074
-#: ../../standalone/drakbackup_.c:3025
+#: ../../standalone/drakbackup_.c:2075 ../../standalone/drakbackup_.c:2149
+#: ../../standalone/drakbackup_.c:3116
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:2066
+#: ../../standalone/drakbackup_.c:2140
#, fuzzy
msgid "Please enter the directory to save to:"
msgstr "Đáńáêáëț äïêéìÜóôć ôï đïíôßêé"
-#: ../../standalone/drakbackup_.c:2080 ../../standalone/drakbackup_.c:3031
+#: ../../standalone/drakbackup_.c:2155 ../../standalone/drakbackup_.c:3122
#, fuzzy
msgid "Use quota for backup files."
msgstr "ÊáôćóôńáìĘíï ćöćäńéêü áńśćßï"
-#: ../../standalone/drakbackup_.c:2146
+#: ../../standalone/drakbackup_.c:2221
#, fuzzy
msgid "Network"
msgstr "ÓőóêćőȚ äéêôęïő"
-#: ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:2226
msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2156
+#: ../../standalone/drakbackup_.c:2231
msgid "HardDrive / NFS"
msgstr ""
-#: ../../standalone/drakbackup_.c:2161
+#: ../../standalone/drakbackup_.c:2236
#, fuzzy
msgid "Tape"
msgstr "Ôęđïò"
-#: ../../standalone/drakbackup_.c:2175 ../../standalone/drakbackup_.c:2179
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2250 ../../standalone/drakbackup_.c:2254
+#: ../../standalone/drakbackup_.c:2258
msgid "hourly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2176 ../../standalone/drakbackup_.c:2180
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2251 ../../standalone/drakbackup_.c:2255
+#: ../../standalone/drakbackup_.c:2258
msgid "daily"
msgstr ""
-#: ../../standalone/drakbackup_.c:2177 ../../standalone/drakbackup_.c:2181
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2252 ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2258
msgid "weekly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2178 ../../standalone/drakbackup_.c:2182
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2253 ../../standalone/drakbackup_.c:2257
+#: ../../standalone/drakbackup_.c:2258
msgid "monthly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2196
+#: ../../standalone/drakbackup_.c:2271
#, fuzzy
msgid "Use daemon"
msgstr "Êùäéêü üíïìá"
-#: ../../standalone/drakbackup_.c:2201
+#: ../../standalone/drakbackup_.c:2276
#, fuzzy
msgid ""
"Please choose the time \n"
"interval between each backup"
msgstr "Đáńáêáëț ćđéëĘîôć ôá đáêĘôá đïő èĘëćôć íá ćăêáôáóôȚóćôć"
-#: ../../standalone/drakbackup_.c:2207
+#: ../../standalone/drakbackup_.c:2282
#, fuzzy
msgid ""
"Please choose the\n"
"media for backup."
msgstr "Đáńáêáëț ćđéëĘîôć ìéá ăëțóóá."
-#: ../../standalone/drakbackup_.c:2214
+#: ../../standalone/drakbackup_.c:2289
msgid ""
"Please be sure that the cron daemon is included in your services. \n"
"\n"
"Note that currently all 'net' medias also use the hard drive."
msgstr ""
-#: ../../standalone/drakbackup_.c:2251
-msgid "Send mail report after each backup to :"
+#: ../../standalone/drakbackup_.c:2326
+msgid "Send mail report after each backup to:"
msgstr ""
-#: ../../standalone/drakbackup_.c:2257
+#: ../../standalone/drakbackup_.c:2332
msgid "Delete Hard Drive tar files after backup to other media."
msgstr ""
-#: ../../standalone/drakbackup_.c:2296
+#: ../../standalone/drakbackup_.c:2371
msgid "What"
msgstr ""
-#: ../../standalone/drakbackup_.c:2301
+#: ../../standalone/drakbackup_.c:2376
#, fuzzy
msgid "Where"
msgstr "Ìć ńïäÜêé"
-#: ../../standalone/drakbackup_.c:2306
+#: ../../standalone/drakbackup_.c:2381
#, fuzzy
msgid "When"
msgstr "Ìć ńïäÜêé"
-#: ../../standalone/drakbackup_.c:2311
+#: ../../standalone/drakbackup_.c:2386
#, fuzzy
msgid "More Options"
msgstr "ĐáńÜìćôńïé ïäçăïę"
-#: ../../standalone/drakbackup_.c:2330 ../../standalone/drakbackup_.c:3873
+#: ../../standalone/drakbackup_.c:2405 ../../standalone/drakbackup_.c:4530
#, fuzzy
msgid "Drakbackup Configuration"
msgstr "Ńőèìßóćéò äéêôęïő"
-#: ../../standalone/drakbackup_.c:2348
+#: ../../standalone/drakbackup_.c:2423
#, fuzzy
msgid "Please choose where you want to backup"
msgstr "Đáńáêáëț ćđéëĘîôć ôá đáêĘôá đïő èĘëćôć íá ćăêáôáóôȚóćôć"
-#: ../../standalone/drakbackup_.c:2350
+#: ../../standalone/drakbackup_.c:2425
msgid "on Hard Drive"
msgstr ""
-#: ../../standalone/drakbackup_.c:2360
+#: ../../standalone/drakbackup_.c:2435
msgid "across Network"
msgstr ""
-#: ../../standalone/drakbackup_.c:2370
+#: ../../standalone/drakbackup_.c:2445
msgid "on CDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2378
+#: ../../standalone/drakbackup_.c:2453
msgid "on Tape Device"
msgstr ""
-#: ../../standalone/drakbackup_.c:2421
+#: ../../standalone/drakbackup_.c:2496
#, fuzzy
msgid "Please choose what you want to backup"
msgstr "Đáńáêáëț ćđéëĘîôć ôá đáêĘôá đïő èĘëćôć íá ćăêáôáóôȚóćôć"
-#: ../../standalone/drakbackup_.c:2422
+#: ../../standalone/drakbackup_.c:2497
#, fuzzy
msgid "Backup system"
msgstr "Đńïćô. óőó. áńś."
-#: ../../standalone/drakbackup_.c:2423
+#: ../../standalone/drakbackup_.c:2498
msgid "Backup Users"
msgstr ""
-#: ../../standalone/drakbackup_.c:2426
+#: ../../standalone/drakbackup_.c:2501
msgid "Select user manually"
msgstr ""
-#: ../../standalone/drakbackup_.c:2508
+#: ../../standalone/drakbackup_.c:2584
msgid ""
"\n"
"Backup Sources: \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2509
+#: ../../standalone/drakbackup_.c:2585
msgid ""
"\n"
"- System Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2511
+#: ../../standalone/drakbackup_.c:2587
msgid ""
"\n"
"- User Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2513
+#: ../../standalone/drakbackup_.c:2589
msgid ""
"\n"
"- Other Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2515
+#: ../../standalone/drakbackup_.c:2591
#, c-format
msgid ""
"\n"
-"- Save on Hard drive on path : %s\n"
+"- Save on Hard drive on path: %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2518
+#: ../../standalone/drakbackup_.c:2594
msgid ""
"\n"
"- Delete hard drive tar files after backup.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2524
+#: ../../standalone/drakbackup_.c:2600
msgid ""
"\n"
"- Burn to CD"
msgstr ""
-#: ../../standalone/drakbackup_.c:2525
+#: ../../standalone/drakbackup_.c:2601
msgid "RW"
msgstr ""
-#: ../../standalone/drakbackup_.c:2526
+#: ../../standalone/drakbackup_.c:2602
#, fuzzy, c-format
-msgid " on device : %s"
+msgid " on device: %s"
msgstr "ÓőóêćőȚ đïíôéêéïę: %s\n"
-#: ../../standalone/drakbackup_.c:2527
+#: ../../standalone/drakbackup_.c:2603
msgid " (multi-session)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2528
+#: ../../standalone/drakbackup_.c:2604
#, c-format
msgid ""
"\n"
-"- Save to Tape on device : %s"
+"- Save to Tape on device: %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2529
+#: ../../standalone/drakbackup_.c:2605
#, c-format
msgid "\t\tErase=%s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2532
+#: ../../standalone/drakbackup_.c:2608
#, c-format
msgid ""
"\n"
-"- Save via %s on host : %s\n"
+"- Save via %s on host: %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2533
+#: ../../standalone/drakbackup_.c:2609
#, c-format
msgid ""
"\t\t user name: %s\n"
"\t\t on path: %s \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2534
+#: ../../standalone/drakbackup_.c:2610
#, fuzzy
msgid ""
"\n"
"- Options:\n"
msgstr "ĆđéëïăĘò"
-#: ../../standalone/drakbackup_.c:2535
+#: ../../standalone/drakbackup_.c:2611
msgid "\tDo not include System Files\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2538
+#: ../../standalone/drakbackup_.c:2614
msgid "\tBackups use tar and bzip2\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2540
+#: ../../standalone/drakbackup_.c:2616
msgid "\tBackups use tar and gzip\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2543
+#: ../../standalone/drakbackup_.c:2619
#, c-format
msgid ""
"\n"
-"- Daemon (%s) include :\n"
+"- Daemon (%s) include:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2544
+#: ../../standalone/drakbackup_.c:2620
msgid "\t-Hard drive.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2545
+#: ../../standalone/drakbackup_.c:2621
msgid "\t-CDROM.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2546
+#: ../../standalone/drakbackup_.c:2622
msgid "\t-Tape \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2547
+#: ../../standalone/drakbackup_.c:2623
msgid "\t-Network by FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2548
+#: ../../standalone/drakbackup_.c:2624
msgid "\t-Network by SSH.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2549
+#: ../../standalone/drakbackup_.c:2625
msgid "\t-Network by rsync.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2550
+#: ../../standalone/drakbackup_.c:2626
msgid "\t-Network by webdav.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2552
+#: ../../standalone/drakbackup_.c:2628
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2558
+#: ../../standalone/drakbackup_.c:2634
msgid ""
"List of data to restore:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2725
+#: ../../standalone/drakbackup_.c:2801
msgid ""
"List of data corrupted:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2727
+#: ../../standalone/drakbackup_.c:2803
#, fuzzy
msgid "Please uncheck or remove it on next time."
msgstr "Óć đïéÜ óćéńéáêȚ đüńôá ćßíáé óőíäćäćìĘíï ôï modem óáò;"
-#: ../../standalone/drakbackup_.c:2737
+#: ../../standalone/drakbackup_.c:2813
msgid "Backup files are corrupted"
msgstr ""
-#: ../../standalone/drakbackup_.c:2758
+#: ../../standalone/drakbackup_.c:2834
msgid " All of your selected data have been "
msgstr ""
-#: ../../standalone/drakbackup_.c:2759
+#: ../../standalone/drakbackup_.c:2835
#, c-format
msgid " Successfuly Restored on %s "
msgstr ""
-#: ../../standalone/drakbackup_.c:2877
+#: ../../standalone/drakbackup_.c:2953
#, fuzzy
msgid " Restore Configuration "
msgstr "Ńőèìßóćéò äéêôęïő"
-#: ../../standalone/drakbackup_.c:2895
+#: ../../standalone/drakbackup_.c:2971
msgid "OK to restore the other files."
msgstr ""
-#: ../../standalone/drakbackup_.c:2912
+#: ../../standalone/drakbackup_.c:2988
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2975
+#: ../../standalone/drakbackup_.c:3066
#, fuzzy
msgid "Backup the system files before:"
msgstr "ÊáôćóôńáìĘíï ćöćäńéêü áńśćßï"
-#: ../../standalone/drakbackup_.c:2977
+#: ../../standalone/drakbackup_.c:3068
#, fuzzy
msgid "please choose the date to restore"
msgstr "Đáńáêáëț ćđéëĘîôć ôęđï đïíôéêéïę."
-#: ../../standalone/drakbackup_.c:3014
+#: ../../standalone/drakbackup_.c:3105
#, fuzzy
msgid "Use Hard Disk to backup"
msgstr "ÊáôćóôńáìĘíï ćöćäńéêü áńśćßï"
-#: ../../standalone/drakbackup_.c:3017
+#: ../../standalone/drakbackup_.c:3108
#, fuzzy
msgid "Please enter the directory to save:"
msgstr "Đáńáêáëț äïêéìÜóôć ôï đïíôßêé"
-#: ../../standalone/drakbackup_.c:3060
+#: ../../standalone/drakbackup_.c:3151
#, fuzzy
msgid "FTP Connection"
msgstr "Óęíäćóç LAN"
-#: ../../standalone/drakbackup_.c:3067
+#: ../../standalone/drakbackup_.c:3158
#, fuzzy
msgid "Secure Connection"
msgstr "Ôńüđïò óęíäćóçò ćêôőđùôȚ"
-#: ../../standalone/drakbackup_.c:3093
+#: ../../standalone/drakbackup_.c:3184
#, fuzzy
msgid "Restore from Hard Disk."
msgstr "ĆđáíáöïńÜ áđü äéóêĘôôá"
-#: ../../standalone/drakbackup_.c:3095
+#: ../../standalone/drakbackup_.c:3186
msgid "Please enter the directory where backups are stored"
msgstr ""
-#: ../../standalone/drakbackup_.c:3157
+#: ../../standalone/drakbackup_.c:3254
#, fuzzy
msgid "Select another media to restore from"
msgstr "Đáńáêáëț ćđéëĘîôć ôęđï đïíôéêéïę."
-#: ../../standalone/drakbackup_.c:3159
+#: ../../standalone/drakbackup_.c:3256
#, fuzzy
msgid "Other Media"
msgstr "¶ëëï"
-#: ../../standalone/drakbackup_.c:3164
+#: ../../standalone/drakbackup_.c:3261
#, fuzzy
msgid "Restore system"
msgstr "ĆăêáôÜóôáóç óőóôȚìáôïò"
-#: ../../standalone/drakbackup_.c:3165
+#: ../../standalone/drakbackup_.c:3262
#, fuzzy
msgid "Restore Users"
msgstr "ĆđáíáöïńÜ áđü áńśćßï"
-#: ../../standalone/drakbackup_.c:3166
+#: ../../standalone/drakbackup_.c:3263
#, fuzzy
msgid "Restore Other"
msgstr "ĆđáíáöïńÜ áđü áńśćßï"
-#: ../../standalone/drakbackup_.c:3168
+#: ../../standalone/drakbackup_.c:3265
#, fuzzy
msgid "select path to restore (instead of /)"
msgstr "Đáńáêáëț ćđéëĘîôć ôęđï đïíôéêéïę."
-#: ../../standalone/drakbackup_.c:3172
+#: ../../standalone/drakbackup_.c:3269
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:3174
+#: ../../standalone/drakbackup_.c:3271
msgid "Remove user directories before restore."
msgstr ""
-#: ../../standalone/drakbackup_.c:3232
+#: ../../standalone/drakbackup_.c:3384
+msgid ""
+"Restore Selected\n"
+"Catalog Entry"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3394
+#, fuzzy
+msgid ""
+"Restore Selected\n"
+"Files"
+msgstr "ÄéáăńáöȚ ïőńÜò"
+
+#: ../../standalone/drakbackup_.c:3411
+#, fuzzy
+msgid ""
+"Change\n"
+"Restore Path"
+msgstr "ĆđáíáöïńÜ áđü áńśćßï"
+
+#: ../../standalone/drakbackup_.c:3477
+#, c-format
+msgid "Backup files not found at %s."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3490
+#, c-format
+msgid ""
+"Insert the CD with volume label %s\n"
+" in the CD drive under mount point /mnt/cdrom"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3490
+#, fuzzy
+msgid "Restore From CD"
+msgstr "ĆđáíáöïńÜ áđü äéóêĘôôá"
+
+#: ../../standalone/drakbackup_.c:3492
+#, c-format
+msgid "Not the correct CD label. Disk is labelled %s."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3502
+#, c-format
+msgid ""
+"Insert the tape with volume label %s\n"
+" in the tape drive device %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3502
+#, fuzzy
+msgid "Restore From Tape"
+msgstr "Đßíáêáò êáôáôìȚóćùí äéÜóùóçò"
+
+#: ../../standalone/drakbackup_.c:3504
+#, c-format
+msgid "Not the correct tape label. Tape is labelled %s."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3524
+#, fuzzy
+msgid "Restore Via Network"
+msgstr "ĆđáíáöïńÜ áđü áńśćßï"
+
+#: ../../standalone/drakbackup_.c:3524
+#, c-format
+msgid "Restore Via Network Protocol: %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3525
+#, fuzzy
+msgid "Host Name"
+msgstr "Œíïìá óőóôȚìáôïò"
+
+#: ../../standalone/drakbackup_.c:3526
+msgid "Host Path or Module"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3533
+#, fuzzy
+msgid "Password required"
+msgstr "Óőíèçìáôéêü"
+
+#: ../../standalone/drakbackup_.c:3539
+#, fuzzy
+msgid "Username required"
+msgstr "Êùäéêü üíïìá"
+
+#: ../../standalone/drakbackup_.c:3542
+#, fuzzy
+msgid "Hostname required"
+msgstr "Œíïìá óőóôȚìáôïò: "
+
+#: ../../standalone/drakbackup_.c:3547
+msgid "Path or Module required"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3560
+msgid "Files Restored..."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3563
+#, fuzzy
+msgid "Restore Failed..."
+msgstr "ĆđáíáöïńÜ áđü áńśćßï"
+
+#: ../../standalone/drakbackup_.c:3801
msgid "Restore all backups"
msgstr ""
-#: ../../standalone/drakbackup_.c:3241
+#: ../../standalone/drakbackup_.c:3810
#, fuzzy
msgid "Custom Restore"
msgstr "ĐńïóáńìïóìĘíï"
-#: ../../standalone/drakbackup_.c:3287 ../../standalone/drakbackup_.c:3320
-#: ../../standalone/drakbackup_.c:3346 ../../standalone/drakbackup_.c:3373
-#: ../../standalone/drakbackup_.c:3400 ../../standalone/drakbackup_.c:3460
-#: ../../standalone/drakbackup_.c:3487 ../../standalone/drakbackup_.c:3513
+#: ../../standalone/drakbackup_.c:3856
+msgid "CD in place - continue."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3862
+msgid "Browse to new restore repository."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3865
+#, fuzzy
+msgid "Restore From Catalog"
+msgstr "Đßíáêáò êáôáôìȚóćùí äéÜóùóçò"
+
+#: ../../standalone/drakbackup_.c:3893
+#, fuzzy
+msgid "Restore Progress"
+msgstr "ĆđáíáöïńÜ áđü áńśćßï"
+
+#: ../../standalone/drakbackup_.c:3935 ../../standalone/drakbackup_.c:3968
+#: ../../standalone/drakbackup_.c:3994 ../../standalone/drakbackup_.c:4021
+#: ../../standalone/drakbackup_.c:4048 ../../standalone/drakbackup_.c:4108
+#: ../../standalone/drakbackup_.c:4135 ../../standalone/drakbackup_.c:4165
+#: ../../standalone/drakbackup_.c:4191
#, fuzzy
msgid "Previous"
msgstr "<- Đńïçăïęìćíï"
-#: ../../standalone/drakbackup_.c:3291 ../../standalone/drakbackup_.c:3377
+#: ../../standalone/drakbackup_.c:3939 ../../standalone/drakbackup_.c:4025
#: ../../standalone/logdrake_.c:223
#, fuzzy
msgid "Save"
msgstr "ÊáôÜóôáóç:"
-#: ../../standalone/drakbackup_.c:3350
+#: ../../standalone/drakbackup_.c:3998
#, fuzzy
msgid "Build Backup"
msgstr "ÊáôćóôńáìĘíï ćöćäńéêü áńśćßï"
-#: ../../standalone/drakbackup_.c:3404 ../../standalone/drakbackup_.c:3974
+#: ../../standalone/drakbackup_.c:4052 ../../standalone/drakbackup_.c:4632
#, fuzzy
msgid "Restore"
msgstr "ĆđáíáöïńÜ áđü áńśćßï"
-#: ../../standalone/drakbackup_.c:3553
-msgid ""
-"Please Build backup before to restore it...\n"
-" or verify that your path to save is correct."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3574
+#: ../../standalone/drakbackup_.c:4231
msgid ""
-"Error during sendmail\n"
-" your report mail was not sent\n"
+"Error during sendmail.\n"
+" Your report mail was not sent.\n"
" Please configure sendmail"
msgstr ""
-#: ../../standalone/drakbackup_.c:3598
+#: ../../standalone/drakbackup_.c:4255
#, fuzzy
msgid ""
"The following packages need to be installed:\n"
" @list_of_rpm_to_install"
msgstr "Èá ćăêáôáóôáèïęí ôá đáńáêÜôù đáêĘôá"
-#: ../../standalone/drakbackup_.c:3621
+#: ../../standalone/drakbackup_.c:4278
msgid ""
"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
-#: ../../standalone/drakbackup_.c:3644
+#: ../../standalone/drakbackup_.c:4301
#, fuzzy
msgid "Please select data to restore..."
msgstr "Đáńáêáëț ćđéëĘîôć ìéá ăëțóóá."
-#: ../../standalone/drakbackup_.c:3665
+#: ../../standalone/drakbackup_.c:4322
#, fuzzy
msgid "Please select media for backup..."
msgstr "Đáńáêáëț ćđéëĘîôć ìéá ăëțóóá."
-#: ../../standalone/drakbackup_.c:3687
+#: ../../standalone/drakbackup_.c:4344
#, fuzzy
msgid "Please select data to backup..."
msgstr "Đáńáêáëț ćđéëĘîôć ìéá ăëțóóá."
-#: ../../standalone/drakbackup_.c:3709
+#: ../../standalone/drakbackup_.c:4366
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
msgstr ""
-#: ../../standalone/drakbackup_.c:3730
+#: ../../standalone/drakbackup_.c:4387
msgid "Under Devel ... please wait."
msgstr ""
-#: ../../standalone/drakbackup_.c:3811
+#: ../../standalone/drakbackup_.c:4468
#, fuzzy
msgid "Backup system files"
msgstr "ÊáôćóôńáìĘíï ćöćäńéêü áńśćßï"
-#: ../../standalone/drakbackup_.c:3813
+#: ../../standalone/drakbackup_.c:4470
#, fuzzy
msgid "Backup user files"
msgstr "ÊáôćóôńáìĘíï ćöćäńéêü áńśćßï"
-#: ../../standalone/drakbackup_.c:3815
+#: ../../standalone/drakbackup_.c:4472
#, fuzzy
msgid "Backup other files"
msgstr "ÊáôćóôńáìĘíï ćöćäńéêü áńśćßï"
-#: ../../standalone/drakbackup_.c:3817 ../../standalone/drakbackup_.c:3850
+#: ../../standalone/drakbackup_.c:4474 ../../standalone/drakbackup_.c:4507
msgid "Total Progress"
msgstr ""
-#: ../../standalone/drakbackup_.c:3841
+#: ../../standalone/drakbackup_.c:4498
msgid "files sending by FTP"
msgstr ""
-#: ../../standalone/drakbackup_.c:3845
+#: ../../standalone/drakbackup_.c:4502
#, fuzzy
msgid "Sending files..."
msgstr "ÁđïèȚêćőóç óć áńśćßï"
-#: ../../standalone/drakbackup_.c:3931
+#: ../../standalone/drakbackup_.c:4588
#, fuzzy
msgid "Backup Now from configuration file"
msgstr "Ńőèìßóćéò äéêôęïő"
-#: ../../standalone/drakbackup_.c:3936
+#: ../../standalone/drakbackup_.c:4593
#, fuzzy
msgid "View Backup Configuration."
msgstr "Ńőèìßóćéò äéêôęïő"
-#: ../../standalone/drakbackup_.c:3956
+#: ../../standalone/drakbackup_.c:4614
#, fuzzy
msgid "Wizard Configuration"
msgstr "Ńęèìéóç LÁÍ"
-#: ../../standalone/drakbackup_.c:3961
+#: ../../standalone/drakbackup_.c:4619
#, fuzzy
msgid "Advanced Configuration"
msgstr "Ńęèìéóç LÁÍ"
-#: ../../standalone/drakbackup_.c:3966
+#: ../../standalone/drakbackup_.c:4624
#, fuzzy
msgid "Backup Now"
msgstr "Đńïćô. óőó. áńś."
-#: ../../standalone/drakbackup_.c:3996
+#: ../../standalone/drakbackup_.c:4658
msgid "Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:4045
+#: ../../standalone/drakbackup_.c:4707
msgid ""
"options description:\n"
"\n"
@@ -10652,7 +11185,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4075
+#: ../../standalone/drakbackup_.c:4737
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -10661,7 +11194,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4083
+#: ../../standalone/drakbackup_.c:4745
msgid ""
"options description:\n"
"\n"
@@ -10702,45 +11235,45 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4122
+#: ../../standalone/drakbackup_.c:4784
msgid ""
"restore description:\n"
" \n"
-"Only the most recent date will be used ,because with incremental \n"
-"backups it is necesarry to restore one by one each older backups.\n"
+"Only the most recent date will be used, because with incremental \n"
+"backups it is necessary to restore one by one each older backup.\n"
"\n"
-"So if you don't like to restore a user please unselect all his\n"
-"check box.\n"
+"So if you don't want to restore a user please unselect all their\n"
+"check boxes.\n"
"\n"
-"Otherwise, you are able to select only one of this\n"
+"Otherwise, you are able to select only one of these.\n"
"\n"
" - Incremental Backups:\n"
"\n"
"\tThe incremental backup is the most powerful \n"
-"\toption to use backup, this option allow you \n"
-"\tto backup all your data the first time, and \n"
-"\tonly the changed after.\n"
-"\tSo you will be able during the restore\n"
+"\toption to use. This option allows you to \n"
+"\tbackup all of your data the first time, and \n"
+"\tonly the changed data after.\n"
+"\tSo you will be able, during the restore\n"
"\tstep, to restore your data from a specified\n"
"\tdate.\n"
-"\tIf you have not selected this options all\n"
+"\tIf you have not selected this option all\n"
"\told backups are deleted before each backup. \n"
"\n"
"\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4148 ../../standalone/drakbackup_.c:4225
+#: ../../standalone/drakbackup_.c:4810 ../../standalone/drakbackup_.c:4887
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
-#: ../../standalone/drakbackup_.c:4150 ../../standalone/drakbackup_.c:4227
+#: ../../standalone/drakbackup_.c:4812 ../../standalone/drakbackup_.c:4889
msgid ""
" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
-#: ../../standalone/drakbackup_.c:4152 ../../standalone/drakbackup_.c:4229
+#: ../../standalone/drakbackup_.c:4814 ../../standalone/drakbackup_.c:4891
msgid ""
" This program is free software; you can redistribute it and/or modify\n"
" it under the terms of the GNU General Public License as published by\n"
@@ -10757,7 +11290,7 @@ msgid ""
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
msgstr ""
-#: ../../standalone/drakbackup_.c:4166
+#: ../../standalone/drakbackup_.c:4828
msgid ""
"Description:\n"
"\n"
@@ -10797,7 +11330,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4204
+#: ../../standalone/drakbackup_.c:4866
msgid ""
"options description:\n"
"\n"
@@ -10808,7 +11341,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4213
+#: ../../standalone/drakbackup_.c:4875
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -10821,7 +11354,7 @@ msgid ""
"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4243
+#: ../../standalone/drakbackup_.c:4905
msgid ""
"Description:\n"
"\n"
@@ -10902,9 +11435,9 @@ msgstr ""
msgid "Synchronization tool"
msgstr ""
-#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:85
-#: ../../standalone/drakbug_.c:150 ../../standalone/drakbug_.c:152
-#: ../../standalone/drakbug_.c:156
+#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:86
+#: ../../standalone/drakbug_.c:151 ../../standalone/drakbug_.c:153
+#: ../../standalone/drakbug_.c:157
#, fuzzy
msgid "Standalone Tools"
msgstr "Ćńăáëćßá êïíóüëáò"
@@ -10956,26 +11489,26 @@ msgstr "ĆêôőđùôȚò"
msgid "Configuration Wizards"
msgstr "Ïäçăüò Ńęèìéóçò Äéêôęïő"
-#: ../../standalone/drakbug_.c:96
+#: ../../standalone/drakbug_.c:97
#, fuzzy
msgid "Application:"
msgstr "Đéóôïđïßçóç ôáőôüôçôáò"
-#: ../../standalone/drakbug_.c:97
+#: ../../standalone/drakbug_.c:98
#, fuzzy
msgid "Package: "
msgstr "ĆđéëïăȚ đáêĘôùí"
-#: ../../standalone/drakbug_.c:98
+#: ../../standalone/drakbug_.c:99
msgid "Kernel:"
msgstr ""
-#: ../../standalone/drakbug_.c:99
+#: ../../standalone/drakbug_.c:100
#, fuzzy
msgid "Release: "
msgstr "Đáńáêáëț đćńéìĘíćôć"
-#: ../../standalone/drakbug_.c:114
+#: ../../standalone/drakbug_.c:115
msgid ""
"\n"
"\n"
@@ -10987,21 +11520,21 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbug_.c:135
+#: ../../standalone/drakbug_.c:136
#, fuzzy
msgid "Report"
msgstr "đüńôá"
-#: ../../standalone/drakbug_.c:165
+#: ../../standalone/drakbug_.c:166
#, fuzzy
msgid "Not installed"
msgstr "žîïäïò"
-#: ../../standalone/drakbug_.c:182
+#: ../../standalone/drakbug_.c:183
msgid "connecting to Bugzilla wizard ..."
msgstr ""
-#: ../../standalone/drakbug_.c:189
+#: ../../standalone/drakbug_.c:190
#, fuzzy
msgid "No browser available! Please install one"
msgstr ""
@@ -11450,7 +11983,7 @@ msgstr "Óçìćßï óęíäćóçò"
#: ../../standalone/drakfont_.c:909
#, fuzzy
-msgid "Choose the applications that will support the fonts :"
+msgid "Choose the applications that will support the fonts:"
msgstr "ĆđéëĘîôć êáôáôìȚóćéò đńïò ìïńöïđïßçóç"
#: ../../standalone/drakfont_.c:918
@@ -11532,19 +12065,19 @@ msgstr "Äćí âńĘèçêć đńïóáńìïăĘáò äéêôęïő óôï óęóôçìÜ óáò!"
msgid "Post Uninstall"
msgstr "žîïäïò"
-#: ../../standalone/drakgw_.c:42 ../../standalone/drakgw_.c:195
+#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:188
msgid "Internet Connection Sharing"
msgstr "Ćđéìćńéóìüò óęíäćóçò Internet"
-#: ../../standalone/drakgw_.c:121
+#: ../../standalone/drakgw_.c:119
msgid "Sorry, we support only 2.4 kernels."
msgstr ""
-#: ../../standalone/drakgw_.c:133
+#: ../../standalone/drakgw_.c:130
msgid "Internet Connection Sharing currently enabled"
msgstr "Ćđéìćńéóìüò óęíäćóçò Internet ćíćńăïđïéçìĘíïò"
-#: ../../standalone/drakgw_.c:134
+#: ../../standalone/drakgw_.c:131
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -11556,31 +12089,31 @@ msgstr ""
"\n"
"Ôß èĘëćôć íá êÜíćôć;"
-#: ../../standalone/drakgw_.c:138
+#: ../../standalone/drakgw_.c:135
msgid "disable"
msgstr "áđćíćńăïđïßçóç"
-#: ../../standalone/drakgw_.c:138 ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:135 ../../standalone/drakgw_.c:160
msgid "dismiss"
msgstr "Üêőńï"
-#: ../../standalone/drakgw_.c:138 ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:135 ../../standalone/drakgw_.c:160
msgid "reconfigure"
msgstr "ćđáíáńęèìéóç"
-#: ../../standalone/drakgw_.c:141
+#: ../../standalone/drakgw_.c:138
msgid "Disabling servers..."
msgstr "Áđćíćńăïđïßçóç ćîőđçńćôçôțí..."
-#: ../../standalone/drakgw_.c:149
+#: ../../standalone/drakgw_.c:146
msgid "Internet connection sharing is now disabled."
msgstr "Ćđéìćńéóìüò óęíäćóçò Internet áđćíćńăïđïéçìĘíïò"
-#: ../../standalone/drakgw_.c:158
+#: ../../standalone/drakgw_.c:155
msgid "Internet Connection Sharing currently disabled"
msgstr "Ćđéìćńéóìüò óęíäćóçò Internet áđćíćńăïđïéçìĘíïò"
-#: ../../standalone/drakgw_.c:159
+#: ../../standalone/drakgw_.c:156
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
@@ -11592,19 +12125,19 @@ msgstr ""
"\n"
"Ôß èĘëćôć íá êÜíćôć;"
-#: ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:160
msgid "enable"
msgstr "ćíćńăïđïßçóç"
-#: ../../standalone/drakgw_.c:170
+#: ../../standalone/drakgw_.c:167
msgid "Enabling servers..."
msgstr "Ćíćńăïđïßçóç ćîőđçńćôçôțí..."
-#: ../../standalone/drakgw_.c:175
+#: ../../standalone/drakgw_.c:172
msgid "Internet connection sharing is now enabled."
msgstr "Ćđéìćńéóìüò óęíäćóçò Internet ćíćńăïđïéçìĘíïò"
-#: ../../standalone/drakgw_.c:196
+#: ../../standalone/drakgw_.c:189
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
"With that feature, other computers on your local network will be able to use "
@@ -11619,21 +12152,21 @@ msgstr ""
"Óçìćßùóç: ŚńćéÜæćóôć Ęíáí đńïóáńìïăĘá äéêôęïő Ęôóé țóôć íá äçìéïőńăȚóćôć Ęíá "
"ôïđéêü äßêôőï (LAN)."
-#: ../../standalone/drakgw_.c:222
+#: ../../standalone/drakgw_.c:215
#, c-format
msgid "Interface %s (using module %s)"
msgstr "ÄéćđéöÜíćéá %s (śńȚóç áńèńțìáôïò %s)"
-#: ../../standalone/drakgw_.c:223
+#: ../../standalone/drakgw_.c:216
#, c-format
msgid "Interface %s"
msgstr "ÄéćđéöÜíćéá %s"
-#: ../../standalone/drakgw_.c:231
+#: ../../standalone/drakgw_.c:224
msgid "No network adapter on your system!"
msgstr "Äćí âńĘèçêć đńïóáńìïăĘáò äéêôęïő óôï óęóôçìÜ óáò!"
-#: ../../standalone/drakgw_.c:232
+#: ../../standalone/drakgw_.c:225
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
@@ -11641,11 +12174,11 @@ msgstr ""
"Äćí âńĘèçêć đńïóáńìïăĘáò äéêôęïő Ethernet óôï óęóôçìÜ óáò. Đáńáêáëț "
"śńçóéìïđïéćßóôć ôï đńüăńáììá ńęèìéóçò őëéêïę."
-#: ../../standalone/drakgw_.c:238
+#: ../../standalone/drakgw_.c:231
msgid "Network interface"
msgstr "ÓőóêćőȚ äéêôęïő"
-#: ../../standalone/drakgw_.c:239
+#: ../../standalone/drakgw_.c:232
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -11660,7 +12193,7 @@ msgstr ""
"\n"
"Èá ńőèìéóôćß ôï Ôïđéêü óáò Äßêôőï ìć áőôüí ôïí đńïóáńìïăĘá."
-#: ../../standalone/drakgw_.c:248
+#: ../../standalone/drakgw_.c:241
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
@@ -11668,12 +12201,12 @@ msgstr ""
"Đáńáêáëț ćđéëĘîôć ôé đńïóáńìïăĘáò äéêôęïő èá óőíäćèćß\n"
"óôï ôïđéêü óáò äßêôőï."
-#: ../../standalone/drakgw_.c:266
+#: ../../standalone/drakgw_.c:259
#, fuzzy
msgid "Network interface already configured"
msgstr "Ç ïèüíç äćí Ęśćé ńőèìéóôćß áêüìç"
-#: ../../standalone/drakgw_.c:267
+#: ../../standalone/drakgw_.c:260
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -11683,17 +12216,17 @@ msgid ""
"You can do it manually but you need to know what you're doing."
msgstr ""
-#: ../../standalone/drakgw_.c:272
+#: ../../standalone/drakgw_.c:265
#, fuzzy
msgid "Automatic reconfiguration"
msgstr "Boot Ôęđïő Ńęèìéóç"
-#: ../../standalone/drakgw_.c:273
+#: ../../standalone/drakgw_.c:266
#, fuzzy
msgid "Show current interface configuration"
msgstr "Ńőèìßóćéò Äéáäéêôęïő (Internet)"
-#: ../../standalone/drakgw_.c:275
+#: ../../standalone/drakgw_.c:268
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -11704,7 +12237,7 @@ msgid ""
"Driver: %s"
msgstr ""
-#: ../../standalone/drakgw_.c:287
+#: ../../standalone/drakgw_.c:280
msgid ""
"I can keep your current configuration and assume you already set up a DHCP "
"server; in that case please verify I correctly read the C-Class Network that "
@@ -11716,55 +12249,43 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakgw_.c:292
+#: ../../standalone/drakgw_.c:285
msgid "C-Class Local Network"
msgstr ""
-#: ../../standalone/drakgw_.c:293
+#: ../../standalone/drakgw_.c:286
#, fuzzy
msgid "(This) DHCP Server IP"
msgstr "IP äéćęèőíóç ćîőđçńćôçôȚ CUPS:"
-#: ../../standalone/drakgw_.c:294
+#: ../../standalone/drakgw_.c:287
msgid "Re-configure interface and DHCP server"
msgstr ""
-#: ../../standalone/drakgw_.c:301
+#: ../../standalone/drakgw_.c:294
msgid "The Local Network did not finish with `.0', bailing out."
msgstr ""
-#: ../../standalone/drakgw_.c:312
+#: ../../standalone/drakgw_.c:305
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr ""
"ĐéèáíȚ ćđáíáśńçóéìïđïßçóç ôçò äéćęèőíóçò LAN óôçí ôńĘśïőóá ńęèìéóç ôïő %s!\n"
-#: ../../standalone/drakgw_.c:320
-msgid "Firewalling configuration detected!"
-msgstr "Áíéśíćęôçêć ńęèìéóç firewall!"
-
-#: ../../standalone/drakgw_.c:321
-msgid ""
-"Warning! An existing firewalling configuration has been detected. You may "
-"need some manual fix after installation."
-msgstr ""
-"ĐńïóïśȚ! Áíéśíćęôçêć őđÜńśïőóá ńęèìéóç firewall. șóùò śńćéáóôïęí ïńéóìĘíćò"
-"\"śćéńïêßíçôćò\" ńőèìßóćéò ìćôÜ ôçí ćăêáôÜóôáóç."
-
-#: ../../standalone/drakgw_.c:328
+#: ../../standalone/drakgw_.c:315
msgid "Configuring..."
msgstr "Ńęèìéóç..."
-#: ../../standalone/drakgw_.c:329
+#: ../../standalone/drakgw_.c:316
msgid "Configuring scripts, installing software, starting servers..."
msgstr "Ńęèìéóç, ćăêáôÜóôáóç ëïăéóìéêïę, ćêêßíçóç ćîőđçńćôçôțí..."
-#: ../../standalone/drakgw_.c:365
+#: ../../standalone/drakgw_.c:352
#, c-format
msgid "Problems installing package %s"
msgstr "Đńüâëçìá êáôÜ ôçí ćăêáôÜóôáóç ôïő đáêĘôïő %s"
-#: ../../standalone/drakgw_.c:549
+#: ../../standalone/drakgw_.c:485
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
@@ -11775,23 +12296,23 @@ msgstr ""
"őđïëïăéóôĘò óôï ôïđéêü óáò äßêôőï, ìć ôçí śńȚóç áőôüìáôçò ńęèìéóçò äéêôęïő "
"(DHCP)."
-#: ../../standalone/drakgw_.c:566
+#: ../../standalone/drakgw_.c:504
msgid "The setup has already been done, but it's currently disabled."
msgstr "Ç ńęèìéóç Ęśćé Țäç ăßíćé, áëëÜ áőôȚ ôç óôéăìȚ ćßíáé áđćíćńăïđïéçìĘíç."
-#: ../../standalone/drakgw_.c:567
+#: ../../standalone/drakgw_.c:505
msgid "The setup has already been done, and it's currently enabled."
msgstr "Ç ńęèìéóç Ęśćé Țäç ăßíćé, êáé áőôȚ ôç óôéăìȚ ćßíáé ćíćńăïđïéçìĘíç."
-#: ../../standalone/drakgw_.c:568
+#: ../../standalone/drakgw_.c:506
msgid "No Internet Connection Sharing has ever been configured."
msgstr "Ï Ćđéìćńéóìüò óęíäćóçò Internet äćí Ęśćé ńőèìéóôćß đïôĘ."
-#: ../../standalone/drakgw_.c:573
+#: ../../standalone/drakgw_.c:511
msgid "Internet connection sharing configuration"
msgstr "Ńęèìéóç ćđéìćńéóìïę óęíäćóçò Äéáäéêôęïő (internet)"
-#: ../../standalone/drakgw_.c:580
+#: ../../standalone/drakgw_.c:518
#, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -11806,6 +12327,158 @@ msgstr ""
"\n"
"ÊÜíôć êëßê óôï Ńęèìéóç ăéá íá îćêéíȚóćôć ôïí ïäçăü ćăêáôÜóôáóçò."
+#: ../../standalone/draksound_.c:46
+#, fuzzy
+msgid "No Sound Card detected!"
+msgstr "Äć óőíäĘèçêć"
+
+#: ../../standalone/draksound_.c:47
+msgid ""
+"No Sound Card has been detected on your machine. Please verify that a Linux-"
+"supported Sound Card is correctly plugged in.\n"
+"\n"
+"\n"
+"You can visit our hardware database at:\n"
+"\n"
+"\n"
+"http://www.linux-mandrake.com/en/hardware.php3"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:32
+msgid "package ImageMagick is required for correct working"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:76
+#, fuzzy
+msgid "first step creation"
+msgstr "äçìéïőńăßá äéóêĘôôáò ćêêßíçóçò"
+
+#: ../../standalone/draksplash_.c:77
+#, fuzzy
+msgid "final resolution"
+msgstr "ÁíÜëőóç"
+
+#: ../../standalone/draksplash_.c:78 ../../standalone/draksplash_.c:170
+#, fuzzy
+msgid "choose image file"
+msgstr "ĆđéëĘîôć đńÜîç"
+
+#: ../../standalone/draksplash_.c:79
+#, fuzzy
+msgid "Theme name"
+msgstr "Œíïìá đüńïő:"
+
+#: ../../standalone/draksplash_.c:81
+msgid "make bootsplash step 2"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:82
+#, fuzzy
+msgid "go to lilosplash configuration"
+msgstr "Ńőèìßóćéò ìćôÜ ôçí ćăêáôÜóôáóç"
+
+#: ../../standalone/draksplash_.c:83
+#, fuzzy
+msgid "quit"
+msgstr "žîïäïò"
+
+#: ../../standalone/draksplash_.c:84
+#, fuzzy
+msgid "save theme"
+msgstr "ĆăêáôÜóôáóç óőóôȚìáôïò"
+
+#: ../../standalone/draksplash_.c:85
+msgid "browse"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:98 ../../standalone/draksplash_.c:159
+#, fuzzy
+msgid "Configure bootsplash picture"
+msgstr "Ńęèìéóç őđçńćóéțí"
+
+#: ../../standalone/draksplash_.c:99
+msgid "x coordinate of text box in number of character"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:100
+msgid "y coordinate of text box in number of character"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:101
+msgid "text width"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:102
+msgid "text box height"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:103
+msgid "the progress bar x coordinate of its upper left corner"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:104
+msgid "the progress bar y coordinate of its upper left corner"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:105
+msgid "the width of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:106
+msgid "the heigth of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:107
+msgid "the color of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:119
+#, fuzzy
+msgid "go back"
+msgstr "Loopback"
+
+#: ../../standalone/draksplash_.c:120
+#, fuzzy
+msgid "preview"
+msgstr "óőóêćőȚ"
+
+#: ../../standalone/draksplash_.c:121
+#, fuzzy
+msgid "choose color"
+msgstr "ĆđéëĘîôć ïèüíç"
+
+#: ../../standalone/draksplash_.c:124
+msgid "Display logo on Console"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:125
+msgid "Make kernel message quiet by default"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:161 ../../standalone/draksplash_.c:330
+#, c-format
+msgid "This theme haven't yet any bootsplash in %s !"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:213
+msgid "saving Bootsplash theme..."
+msgstr ""
+
+#: ../../standalone/draksplash_.c:436
+#, fuzzy
+msgid "ProgressBar color selection"
+msgstr "ĆđéëïăȚ ìïíôĘëïő ćêôőđùôȚ"
+
+#: ../../standalone/draksplash_.c:454
+#, fuzzy
+msgid "You must choose an image file first!"
+msgstr "ÓőóêćőȚ ćêôőđùôȚ URI"
+
+#: ../../standalone/draksplash_.c:463
+#, fuzzy
+msgid "Generating preview ..."
+msgstr "Ćíôïđéóìüò óőóêćőțí..."
+
#: ../../standalone/drakxtv_.c:49
msgid ""
"XawTV isn't installed!\n"
@@ -11898,11 +12571,11 @@ msgid ""
msgstr ""
#: ../../standalone/drakxtv_.c:109
-msgid "TV norm :"
+msgid "TV norm:"
msgstr ""
#: ../../standalone/drakxtv_.c:110
-msgid "Area :"
+msgid "Area:"
msgstr ""
#: ../../standalone/drakxtv_.c:114
@@ -11978,7 +12651,7 @@ msgstr "Äćí ìđïńț íá îćêéíȚóù ôï live upgrade!!!\n"
msgid "The change is done, but to be effective you must logout"
msgstr ""
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:517
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:515
msgid "logdrake"
msgstr "logdrake"
@@ -12161,7 +12834,7 @@ msgstr "ĆîőđçńćôçôȚò"
#: ../../standalone/logdrake_.c:431
msgid ""
-"You will receive an alert if one of the selected service is no more running"
+"You will receive an alert if one of the selected services is no more running"
msgstr ""
#: ../../standalone/logdrake_.c:443
@@ -12183,19 +12856,19 @@ msgstr "Ńőèìßóćéò śńùìÜôùí"
msgid "Please enter your email address below "
msgstr "Đáńáêáëț đńïóđáèȚóôć îáíÜ"
-#: ../../standalone/logdrake_.c:499
+#: ../../standalone/logdrake_.c:497
msgid "Save as.."
msgstr "ÁđïèȚêćőóç Ùò"
-#: ../../standalone/mousedrake_.c:43
+#: ../../standalone/mousedrake_.c:45
msgid "Please, choose the type of your mouse."
msgstr "Đáńáêáëț ćđéëĘîôć ôęđï đïíôéêéïę."
-#: ../../standalone/mousedrake_.c:57
+#: ../../standalone/mousedrake_.c:58
msgid "Emulate third button?"
msgstr "Ćîïìïßùóç ôńßôïő đëȚêôńïő;"
-#: ../../standalone/printerdrake_.c:48
+#: ../../standalone/printerdrake_.c:57
#, fuzzy
msgid "Reading printer data ..."
msgstr "ÁíÜăíùóç âÜóçò ïäçățí CUPS"
@@ -12209,34 +12882,45 @@ msgstr "Ćíôïđéóìüò óőóêćőțí..."
msgid "Test ports"
msgstr "ÄïêéìȚ èőńțí"
-#: ../../standalone/scannerdrake_.c:52
+#: ../../standalone/scannerdrake_.c:53 ../../standalone/scannerdrake_.c:68
+#: ../../standalone/scannerdrake_.c:81
#, c-format
-msgid "%s found on %s, configure it ?"
+msgid "The %s is not supported by this version of Mandrake Linux."
msgstr ""
+#: ../../standalone/scannerdrake_.c:56
+#, fuzzy, c-format
+msgid "%s found on %s, configure it?"
+msgstr "Èá èĘëáôć íá ńőèìßóćôć Ęíáí ćêôőđùôȚ;"
+
#: ../../standalone/scannerdrake_.c:59
+#, c-format
+msgid "%s is not in the scanner database, configure it manually?"
+msgstr ""
+
+#: ../../standalone/scannerdrake_.c:65
#, fuzzy
msgid "Select a scanner"
msgstr "ĆđéëĘîôć êÜńôá ăńáöéêțí"
-#: ../../standalone/scannerdrake_.c:79
+#: ../../standalone/scannerdrake_.c:93
#, c-format
msgid "This %s scanner is unsupported"
msgstr ""
-#: ../../standalone/scannerdrake_.c:93
+#: ../../standalone/scannerdrake_.c:107
#, c-format
msgid ""
"Scannerdrake was not able to detect your %s scanner.\n"
"Please select the device where your scanner is plugged"
msgstr ""
-#: ../../standalone/scannerdrake_.c:95
+#: ../../standalone/scannerdrake_.c:109
#, fuzzy
msgid "choose device"
msgstr "ÓőóêćőȚ ćêêßíçóçò"
-#: ../../standalone/scannerdrake_.c:101
+#: ../../standalone/scannerdrake_.c:115
#, c-format
msgid ""
"This %s scanner must be configured by printerdrake.\n"
@@ -12244,7 +12928,7 @@ msgid ""
"section."
msgstr ""
-#: ../../standalone/scannerdrake_.c:106
+#: ../../standalone/scannerdrake_.c:120
#, c-format
msgid ""
"Your %s scanner has been configured.\n"
@@ -12252,48 +12936,18 @@ msgid ""
"applications menu."
msgstr ""
-#: ../../standalone/service_harddrake_.c:57
+#: ../../standalone/service_harddrake_.c:39
#, c-format
msgid "Some devices in the \"%s\" hardware class were removed:\n"
msgstr ""
-#: ../../standalone/service_harddrake_.c:61
+#: ../../standalone/service_harddrake_.c:43
#, c-format
msgid ""
"\n"
"Some devices in the %s class were added:\n"
msgstr ""
-#: ../../standalone/tinyfirewall_.c:30
-msgid "Firewalling Configuration"
-msgstr "Ńęèìéóç Firewalling"
-
-#: ../../standalone/tinyfirewall_.c:43
-msgid "Firewalling configuration"
-msgstr "Ńęèìéóç firewalling"
-
-#: ../../standalone/tinyfirewall_.c:78
-msgid ""
-"Firewalling\n"
-"\n"
-"You already have set up a firewall.\n"
-"Click on Configure to change or remove the firewall"
-msgstr ""
-"Firewalling\n"
-"\n"
-"žśćôć Țäç óôçììĘíï Ęíá firewall.\n"
-"ÊÜíôć êëßê óôï Ńęèìéóç ăéá íá áëëÜîćôć Ț íá äéáăńÜűćôć ôï firewall"
-
-#: ../../standalone/tinyfirewall_.c:82
-msgid ""
-"Firewalling\n"
-"\n"
-"Click on Configure to set up a standard firewall"
-msgstr ""
-"Firewalling\n"
-"\n"
-"ÊÜíôć êëßê óôï Ńęèìéóç ăéá íá óôȚóćôć Ęíá ôőđéêü firewall"
-
#: ../../steps.pm_.c:14
msgid "Choose your language"
msgstr "ĆđéëĘîôć ăëțóóá"
@@ -12367,236 +13021,7 @@ msgstr "ĆăêáôÜóôáóç óőóôȚìáôïò"
msgid "Exit install"
msgstr "žîïäïò"
-#: ../../tinyfirewall.pm_.c:9
-msgid ""
-"tinyfirewall configurator\n"
-"\n"
-"This configures a personal firewall for this Mandrake Linux machine.\n"
-"For a powerful dedicated firewall solution, please look to the\n"
-"specialized MandrakeSecurity Firewall distribution."
-msgstr ""
-"ńęèìéóç tinyfirewall\n"
-"\n"
-"Áőôü ńőèìßæćé ôï đńïóùđéêü óáò firewall ăéá áőôü ôï ìçśÜíçìá Mandrake "
-"Linux.\n"
-"Ăéá ìéá éóśőńȚ áöïóéùìĘíç ëęóç firewall, đáńáêáëț êïéôÜîôć óôçí\n"
-"ćéäéêćőìĘíç MandrakeSecurity Firewall äéáíïìȚ."
-
-#: ../../tinyfirewall.pm_.c:14
-msgid ""
-"We'll now ask you questions about which services you'd like to allow\n"
-"the Internet to connect to. Please think carefully about these\n"
-"questions, as your computer's security is important.\n"
-"\n"
-"Please, if you're not currently using one of these services, firewall\n"
-"it off. You can change this configuration anytime you like by\n"
-"re-running this application!"
-msgstr ""
-"Ôțńá èá óáò êÜíïőìć ćńùôȚóćéò ăéá ôï đïéĘò őđçńćóßćò èĘëćôć íá áöȚóćôć\n"
-"íá óőíäĘïíôáé óôï Internet. Đáńáêáëț óêćöôćßôć đńïóćêôéêÜ ăéá áőôĘò ôéò\n"
-"ćńùôȚóćéò, êáèțò ç áóöÜëćéá ôïő őđïëïăéóôȚ óáò ćßíáé óçìáíôéêȚ.\n"
-"\n"
-"Đáńáêáëț, áí ôçí ôńĘśïőóá óôéăìȚ äćí śńçóéìïđïéćßôć êÜđïéá áđü áőôĘò ôéò "
-"őđçńćóßćò,\n"
-"âăÜëôć ôçí áđü ôï firewall. Ìđïńćßôć íá áëëÜîćôć áőôĘò ôéò ńőèìßóćéò "
-"ïđïéáäȚđïôć\n"
-"óôéăìȚ èĘëćôć îáíáôńĘśïíôáò áőôȚí ôçí ćöáńìïăȚ!"
-
-#: ../../tinyfirewall.pm_.c:21
-msgid ""
-"Are you running a web server on this machine that you need the whole\n"
-"Internet to see? If you are running a webserver that only needs to be\n"
-"accessed by this machine, you can safely answer NO here.\n"
-"\n"
-msgstr ""
-"ÔńĘśćôć Ęíáí ćîőđçńćôçôȚ web óć áőôü ôï ìçśÜíçìá đïő śńćéÜæćóôć íá ôïí "
-"âëĘđćé\n"
-"ïëüêëçńï ôï internet; Áí ôńĘśćôć Ęíáí ćîőđńćôçôȚ web đïő ìüíï áőôü ôï "
-"ìçśÜíçìá\n"
-"śńćéÜæćôáé íá ôïí âëĘđćé, ôüôć ìđïńćßôć íá áđáíôȚóćôć ÏŚÉ ìć áóöÜëćéá ćäù.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:26
-msgid ""
-"Are you running a name server on this machine? If you didn't set one\n"
-"up to give away IP and zone information to the whole Internet, please\n"
-"answer no.\n"
-"\n"
-msgstr ""
-"ÔńĘśćôć name ćîőđçńćôçôȚ óć áőôü ôï ìçśÜíçìá; Áí äćí ńőèìßóáôć Ęíáí\n"
-"țóôć íá äßíćé IP êáé đëçńïöïńßćò æțíçò óć üëï ôï internet, đáńáêáëț\n"
-"áđáíôȚóôć üśé.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:31
-msgid ""
-"Do you want to allow incoming Secure Shell (ssh) connections? This\n"
-"is a telnet-replacement that you might use to login. If you're using\n"
-"telnet now, you should definitely switch to ssh. telnet is not\n"
-"encrypted -- so some attackers can steal your password if you use\n"
-"it. ssh is encrypted and doesn't allow for this eavesdropping."
-msgstr ""
-"Do you want to allow incoming Secure Shell (ssh) connections? This\n"
-"is a telnet-replacement that you might use to login. If you're using\n"
-"telnet now, you should definitely switch to ssh. telnet is not\n"
-"encrypted -- so some attackers can steal your password if you use\n"
-"it. ssh is encrypted and doesn't allow for this eavesdropping.äćí ćßíáé\n"
-"êńőđôïăńáöçìĘíï -- ïđüôć êÜđïéïé ôáńáîßćò ìđïńïęí íá êëĘűïőí ôïí êùäéêü\n"
-"đńüóâáóçò áí ôï śńçóéìïđïéćßôć. To ssh ćßíáé êńőđôïăńáöçìĘíï êáé äćí ôï "
-"ćđéôńĘđćé áőôü."
-
-#: ../../tinyfirewall.pm_.c:36
-msgid ""
-"Do you want to allow incoming telnet connections?\n"
-"This is horribly unsafe, as we explained in the previous screen. We\n"
-"strongly recommend answering No here and using ssh in place of\n"
-"telnet.\n"
-msgstr ""
-"ÈĘëćôć íá ćđéôńĘűćôć ćéóćńśüìćíćò óőíäĘóćéò telnet;\n"
-"Áőôü ćßíáé ôńáăéêÜ ìç áóöáëĘò, üđùò ćîçăȚóáìć óôçí đńïçăïęìćíç ïèüíç.\n"
-"Đńïôćßíïőìć íá áđáíôȚóćôć üśé ćäț êáé íá śńçóéìïđïéȚóćôć ôï ssh óôç èĘóç "
-"ôïő\n"
-"telnet.\n"
-
-#: ../../tinyfirewall.pm_.c:41
-msgid ""
-"Are you running an FTP server here that you need accessible to the\n"
-"Internet? If you are, we strongly recommend that you only use it for\n"
-"Anonymous transfers. Any passwords sent by FTP can be stolen by some\n"
-"attackers, since FTP also uses no encryption for transferring passwords.\n"
-msgstr ""
-"ÔńĘśćôć Ęíáí FTP ćîőđçńćôçôȚ đïő śńćéÜæćôáé íá ćßíáé đńïóâÜóéìïò óôï "
-"Internet;\n"
-"Ćáí íáé, ôüôć đńïôćßíïőìć íá ôï śńçóéìïđïéćßôć ăéá Áíțíőìćò ìćôáöïńĘò. "
-"ÏđïéäȚđïôć\n"
-"êùäéêïß đńüóâáóçò óôĘëíïíôáé áđü ôï FTP ìđïńïęí íá êëáđïęí áđü êÜđïéïőò "
-"ôáńáîßćò,\n"
-"áöïę ôï FTP ćđßóçò äćí śńçóéìïđïéćß êńőđôïăńÜöçóç ăéá ôçí ìćôáöïńÜ êùäéêțí "
-"đńüóâáóçò\n"
-
-#: ../../tinyfirewall.pm_.c:46
-msgid ""
-"Are you running a mail server here? If you're sending you \n"
-"messages through pine, mutt or any other text-based mail client,\n"
-"you probably are. Otherwise, you should firewall this off.\n"
-"\n"
-msgstr ""
-"ÔńĘśćôć Ęíáí ćîőđçńćôçôȚ ôáśőäńïìćßïő ćäț; Ćáí óôĘëíćôć ôá \n"
-"ìçíęìáôÜ óáò ìĘóù pine, mutt Ț Üëëïő đćëÜôç ôáśőäńïìćßïő áđü ôçí êïíóüëá,\n"
-"ôüôć đéèáíüí íá ôńĘśćôć. Áëëéțò èá đńĘđćé íá ôï đćńéïńßóćôć ìć firewall "
-"áőôü.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:51
-msgid ""
-"Are you running a POP or IMAP server here? This would\n"
-"be used to host non-web-based mail accounts for people via \n"
-"this machine.\n"
-"\n"
-msgstr ""
-"ÔńĘśćôć Ęíáí POP Ț IMAP ćîőđçńćôçôȚ ćäț; Áőôü śńçóéìïđïéćßôáé\n"
-"ăéá đáńïśȚ ëïăáńéáóìțí ôáśőäńïìćßïő ìç âáóéóìĘíïő óôï web ăéá áíèńțđïőò \n"
-"ìĘóù áőôïę ôïő ìçśáíȚìáôïò.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:56
-msgid ""
-"You appear to be running a 2.2 kernel. If your network IP\n"
-"is automatically set by a computer in your home or office \n"
-"(dynamically assigned), we need to allow for this. Is\n"
-"this the case?\n"
-msgstr ""
-"Öáßíćôáé đùò ôńĘśćôć Ęíáí 2.2 đőńȚíá. ĆÜí ç IP óáò\n"
-"ćßíáé äőíáìéêȚ, đńĘđćé íá ôï ćđéôńĘűïőìć áőôü. Ćßíáé áőôȚ \n"
-"ç đćńßđôùóȚ óáò;\n"
-
-#: ../../tinyfirewall.pm_.c:61
-msgid ""
-"Is your computer getting time syncronized to another computer?\n"
-"Mostly, this is used by medium-large Unix/Linux organizations\n"
-"to synchronize time for logging and such. If you're not part\n"
-"of a larger office and haven't heard of this, you probably \n"
-"aren't."
-msgstr ""
-"Óőăśńïíßæćôáé ç țńá ôïő őđïëïăéóôȚ óáò ìć Üëëïí őđïëïăéóôȚ;\n"
-"Đćńéóóüôćńï, áőôü śńçóéìïđïéćßôáé áđü ìćăáëïìćóáßïőò ïńăáíéóìïęò\n"
-"ìć Unix/Linux ăéá íá óőăśńïíßæïíôáé ôá logs êëđ. Ćáí äćí ćßóôć ìĘńïò\n"
-"ćíüò ìćăÜëïő ăńáöćßïő êáé äćí Ęśćôć áêïęóćé ăéá áőôü, ôüôć đéèáíüí \n"
-"íá ìçí éóśęćé áőôü."
-
-#: ../../tinyfirewall.pm_.c:66
-msgid ""
-"Configuration complete. May we write these changes to disk?\n"
-"\n"
-"\n"
-"\n"
-msgstr ""
-"Ç Ńęèìéóç ïëïêëçńțèçêć. Íá ăńáöôïęí áőôĘò ïé áëëáăĘò óôï äßóêï;\n"
-"\n"
-"\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:82
-#, c-format
-msgid "Can't open %s: %s\n"
-msgstr "Áäőíáìßá áíïßăìáôïò %s: %s\n"
-
-#: ../../tinyfirewall.pm_.c:84
-#, c-format
-msgid "Can't open %s for writing: %s\n"
-msgstr "ÓöÜëìá êáôÜ ôï Üíïéăìá ôïő %s ăéá ćăăńáöȚ: %s\n"
-
-#: ../../tinyfirewall.pm_.c:178
-msgid "No I don't need DHCP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:178
-msgid "Yes I need DHCP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:179
-msgid "No I don't need NTP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:179
-msgid "Yes I need NTP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:180 ../../tinyfirewall.pm_.c:184
-msgid "Don't Save"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:180 ../../tinyfirewall.pm_.c:184
-#: ../../tinyfirewall.pm_.c:204
-msgid "Save & Quit"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:195 ../../tinyfirewall.pm_.c:199
-#, fuzzy
-msgid "Firewall Configuration Wizard"
-msgstr "Ńęèìéóç Firewalling"
-
-#: ../../tinyfirewall.pm_.c:197
-msgid "No (firewall this off from the internet)"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:198
-msgid "Yes (allow this through the firewall)"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:230
-#, fuzzy
-msgid "Please Wait... Verifying installed packages"
-msgstr "Đáńáêáëț đćńéìĘíćôć, đńïćôïéìáóßá ćăêáôÜóôáóçò"
-
-#: ../../tinyfirewall.pm_.c:236
-#, c-format
-msgid ""
-"Failure installing the needed packages : %s and Bastille.\n"
-" Try to install them manually."
-msgstr ""
-
-#: ../../ugtk.pm_.c:619
+#: ../../ugtk.pm_.c:594
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
@@ -12726,6 +13151,10 @@ msgid "Graphical Environment"
msgstr "Ăńáöéêü ĐćńéâÜëëïí"
#: ../../share/compssUsers:999
+msgid "Development"
+msgstr "ÁíÜđôőîç"
+
+#: ../../share/compssUsers:999
msgid "Apache, Pro-ftpd"
msgstr "Apache, Pro-ftpd"
@@ -12835,96 +13264,202 @@ msgstr "ĐïëőìĘóá - ĆăăńáöȚ CD"
msgid "Scientific Workstation"
msgstr "Óôáèìüò Ćńăáóßáò Ćđéóôçìïíéêțí ćöáńìïățí"
-#~ msgid "$mode: $warning"
-#~ msgstr "$mode: $warning"
+#~ msgid "LBA (doesn't work on old BIOSes)"
+#~ msgstr "LBA (äćí ëćéôïőńăćß ìć đáëáéüôćńá BIOS)"
+
+#~ msgid "You don't have any partitions!"
+#~ msgstr "Äćí őđÜńśćé êáìßá êáôÜôìçóç!"
-#, fuzzy
#~ msgid ""
-#~ "This level is to be used with care. It makes your system more easy to "
-#~ "use,\n"
-#~ " but very sensitive: it must not be used for a machine "
-#~ "connected to others\n"
-#~ " or to the Internet. There is no password access."
+#~ "DiskDrake failed to read correctly the partition table.\n"
+#~ "Continue at your own risk!"
#~ msgstr ""
-#~ "Áőôü ôï ćđßđćäï đńĘđćé íá śńçóéìïđïéçèćß ìć đńïóïśȚ. ÊÜíćé ôï óęóôçìÜ "
-#~ "óáò\n"
-#~ "đéï ćőêïëüśńçóôï, áëëÜ đïëę ćőáßóèçôï. Äćí đńĘđćé íá śńçóéìïđïéçèćß óć "
-#~ "óęóôçìá\n"
-#~ "óőíäćäćìĘíï óôï Internet Ț LAN. Äćí őđÜńśïőí ëĘîćéò êëćéäéÜ."
+#~ "Ôï DiskDrake áđĘôőść íá äéáâÜóćé óùóôÜ ôïí đßíáêá êáôáôìȚóćùí.\n"
+#~ "Óőíćśßóôć ìć äéêȚ óáò ćőèęíç!"
-#, fuzzy
#~ msgid ""
-#~ "With this security level, the use of this system as a server becomes "
-#~ "possible.\n"
-#~ " The security is now high enough to use the system as a "
-#~ "server which can accept\n"
-#~ " connections from many clients. Note: if your machine is "
-#~ "only a client on the Internet, you should choose a lower level."
+#~ "I can't read your partition table, it's too corrupted for me :(\n"
+#~ "I'll try to go on blanking bad partitions"
#~ msgstr ""
-#~ "Ìć áőôü ôï ćđßđćäï áóöáëćßáò ćßíáé äőíáôȚ ç śńȚóç ôïő óőóôȚìáôïò óôï \n"
-#~ "Internet ùò ćîőđçńćôçôȚ. Ç áóöÜëćéá ćßíáé áńêćôÜ őűçëȚ țóôć íá äĘśćôáé\n"
-#~ "ôáőôüśńïíćò óőíäĘóćéò áđü đïëëïęò đćëÜôćò."
+#~ "Äćí ìđïńț íá äéáâÜóù ôïí đßíáêá êáôáôìȚóćùí, ćßíáé đïëę êáôćóôńáìĘíïò :(\n"
+#~ "Èá đńïóđáèȚóù íá óőíćśßóù áöáéńțíôáò ôéò ëáíèáóìĘíćò êáôáôìȚóćéò"
-#, fuzzy
-#~ msgid "Basic Options"
-#~ msgstr "ĆđéëïăĘò"
+#~ msgid "Firewalling Configuration"
+#~ msgstr "Ńęèìéóç Firewalling"
-#, fuzzy
-#~ msgid "Security Checks"
-#~ msgstr "ÁóöÜëćéá"
+#~ msgid "Firewalling configuration"
+#~ msgstr "Ńęèìéóç firewalling"
-#, fuzzy
-#~ msgid "Please choose your CD space"
-#~ msgstr "Đáńáêáëț ćđéëĘîôć äéáńęèìéóç đëçêôńïëïăßïő."
+#~ msgid ""
+#~ "Firewalling\n"
+#~ "\n"
+#~ "You already have set up a firewall.\n"
+#~ "Click on Configure to change or remove the firewall"
+#~ msgstr ""
+#~ "Firewalling\n"
+#~ "\n"
+#~ "žśćôć Țäç óôçììĘíï Ęíá firewall.\n"
+#~ "ÊÜíôć êëßê óôï Ńęèìéóç ăéá íá áëëÜîćôć Ț íá äéáăńÜűćôć ôï firewall"
-#, fuzzy
-#~ msgid "Please enter the cd writer speed"
-#~ msgstr "Đáńáêáëț äïêéìÜóôć ôï đïíôßêé"
+#~ msgid ""
+#~ "Firewalling\n"
+#~ "\n"
+#~ "Click on Configure to set up a standard firewall"
+#~ msgstr ""
+#~ "Firewalling\n"
+#~ "\n"
+#~ "ÊÜíôć êëßê óôï Ńęèìéóç ăéá íá óôȚóćôć Ęíá ôőđéêü firewall"
-#, fuzzy
-#~ msgid "Please check if you want to include install boot on your CD."
-#~ msgstr "Đáńáêáëț ćđéëĘîôć ôá đáêĘôá đïő èĘëćôć íá ćăêáôáóôȚóćôć"
+#~ msgid ""
+#~ "We'll now ask you questions about which services you'd like to allow\n"
+#~ "the Internet to connect to. Please think carefully about these\n"
+#~ "questions, as your computer's security is important.\n"
+#~ "\n"
+#~ "Please, if you're not currently using one of these services, firewall\n"
+#~ "it off. You can change this configuration anytime you like by\n"
+#~ "re-running this application!"
+#~ msgstr ""
+#~ "Ôțńá èá óáò êÜíïőìć ćńùôȚóćéò ăéá ôï đïéĘò őđçńćóßćò èĘëćôć íá áöȚóćôć\n"
+#~ "íá óőíäĘïíôáé óôï Internet. Đáńáêáëț óêćöôćßôć đńïóćêôéêÜ ăéá áőôĘò ôéò\n"
+#~ "ćńùôȚóćéò, êáèțò ç áóöÜëćéá ôïő őđïëïăéóôȚ óáò ćßíáé óçìáíôéêȚ.\n"
+#~ "\n"
+#~ "Đáńáêáëț, áí ôçí ôńĘśïőóá óôéăìȚ äćí śńçóéìïđïéćßôć êÜđïéá áđü áőôĘò ôéò "
+#~ "őđçńćóßćò,\n"
+#~ "âăÜëôć ôçí áđü ôï firewall. Ìđïńćßôć íá áëëÜîćôć áőôĘò ôéò ńőèìßóćéò "
+#~ "ïđïéáäȚđïôć\n"
+#~ "óôéăìȚ èĘëćôć îáíáôńĘśïíôáò áőôȚí ôçí ćöáńìïăȚ!"
-#~ msgid "Url should begin with 'ftp:'"
-#~ msgstr "Ôï Url đńĘđćé íá îćêéíÜ ìć'ftp:'"
+#~ msgid ""
+#~ "Are you running a web server on this machine that you need the whole\n"
+#~ "Internet to see? If you are running a webserver that only needs to be\n"
+#~ "accessed by this machine, you can safely answer NO here.\n"
+#~ "\n"
+#~ msgstr ""
+#~ "ÔńĘśćôć Ęíáí ćîőđçńćôçôȚ web óć áőôü ôï ìçśÜíçìá đïő śńćéÜæćóôć íá ôïí "
+#~ "âëĘđćé\n"
+#~ "ïëüêëçńï ôï internet; Áí ôńĘśćôć Ęíáí ćîőđńćôçôȚ web đïő ìüíï áőôü ôï "
+#~ "ìçśÜíçìá\n"
+#~ "śńćéÜæćôáé íá ôïí âëĘđćé, ôüôć ìđïńćßôć íá áđáíôȚóćôć ÏŚÉ ìć áóöÜëćéá "
+#~ "ćäù.\n"
+#~ "\n"
-#, fuzzy
#~ msgid ""
-#~ "Please check if you want to include\n"
-#~ " install boot on your CD."
-#~ msgstr "Đáńáêáëț ćđéëĘîôć ôá đáêĘôá đïő èĘëćôć íá ćăêáôáóôȚóćôć"
+#~ "Are you running a name server on this machine? If you didn't set one\n"
+#~ "up to give away IP and zone information to the whole Internet, please\n"
+#~ "answer no.\n"
+#~ "\n"
+#~ msgstr ""
+#~ "ÔńĘśćôć name ćîőđçńćôçôȚ óć áőôü ôï ìçśÜíçìá; Áí äćí ńőèìßóáôć Ęíáí\n"
+#~ "țóôć íá äßíćé IP êáé đëçńïöïńßćò æțíçò óć üëï ôï internet, đáńáêáëț\n"
+#~ "áđáíôȚóôć üśé.\n"
+#~ "\n"
-#, fuzzy
-#~ msgid "Windows PDC"
-#~ msgstr "Áöáßńćóç Windows(TM)"
+#~ msgid ""
+#~ "Do you want to allow incoming Secure Shell (ssh) connections? This\n"
+#~ "is a telnet-replacement that you might use to login. If you're using\n"
+#~ "telnet now, you should definitely switch to ssh. telnet is not\n"
+#~ "encrypted -- so some attackers can steal your password if you use\n"
+#~ "it. ssh is encrypted and doesn't allow for this eavesdropping."
+#~ msgstr ""
+#~ "Do you want to allow incoming Secure Shell (ssh) connections? This\n"
+#~ "is a telnet-replacement that you might use to login. If you're using\n"
+#~ "telnet now, you should definitely switch to ssh. telnet is not\n"
+#~ "encrypted -- so some attackers can steal your password if you use\n"
+#~ "it. ssh is encrypted and doesn't allow for this eavesdropping.äćí ćßíáé\n"
+#~ "êńőđôïăńáöçìĘíï -- ïđüôć êÜđïéïé ôáńáîßćò ìđïńïęí íá êëĘűïőí ôïí êùäéêü\n"
+#~ "đńüóâáóçò áí ôï śńçóéìïđïéćßôć. To ssh ćßíáé êńőđôïăńáöçìĘíï êáé äćí ôï "
+#~ "ćđéôńĘđćé áőôü."
-#, fuzzy
-#~ msgid "Tamil"
-#~ msgstr "Đßíáêáò"
+#~ msgid ""
+#~ "Do you want to allow incoming telnet connections?\n"
+#~ "This is horribly unsafe, as we explained in the previous screen. We\n"
+#~ "strongly recommend answering No here and using ssh in place of\n"
+#~ "telnet.\n"
+#~ msgstr ""
+#~ "ÈĘëćôć íá ćđéôńĘűćôć ćéóćńśüìćíćò óőíäĘóćéò telnet;\n"
+#~ "Áőôü ćßíáé ôńáăéêÜ ìç áóöáëĘò, üđùò ćîçăȚóáìć óôçí đńïçăïęìćíç ïèüíç.\n"
+#~ "Đńïôćßíïőìć íá áđáíôȚóćôć üśé ćäț êáé íá śńçóéìïđïéȚóćôć ôï ssh óôç èĘóç "
+#~ "ôïő\n"
+#~ "telnet.\n"
-#, fuzzy
-#~ msgid "PDC Server Name"
-#~ msgstr "ĆîőđçńćôçôȚò NTP"
+#~ msgid ""
+#~ "Are you running an FTP server here that you need accessible to the\n"
+#~ "Internet? If you are, we strongly recommend that you only use it for\n"
+#~ "Anonymous transfers. Any passwords sent by FTP can be stolen by some\n"
+#~ "attackers, since FTP also uses no encryption for transferring passwords.\n"
+#~ msgstr ""
+#~ "ÔńĘśćôć Ęíáí FTP ćîőđçńćôçôȚ đïő śńćéÜæćôáé íá ćßíáé đńïóâÜóéìïò óôï "
+#~ "Internet;\n"
+#~ "Ćáí íáé, ôüôć đńïôćßíïőìć íá ôï śńçóéìïđïéćßôć ăéá Áíțíőìćò ìćôáöïńĘò. "
+#~ "ÏđïéäȚđïôć\n"
+#~ "êùäéêïß đńüóâáóçò óôĘëíïíôáé áđü ôï FTP ìđïńïęí íá êëáđïęí áđü êÜđïéïőò "
+#~ "ôáńáîßćò,\n"
+#~ "áöïę ôï FTP ćđßóçò äćí śńçóéìïđïéćß êńőđôïăńÜöçóç ăéá ôçí ìćôáöïńÜ "
+#~ "êùäéêțí đńüóâáóçò\n"
-#, fuzzy
-#~ msgid "Set up printer manually"
-#~ msgstr "ÁđïìćìáêńőóìĘíïò ćêôőđùôȚò"
+#~ msgid ""
+#~ "Are you running a mail server here? If you're sending you \n"
+#~ "messages through pine, mutt or any other text-based mail client,\n"
+#~ "you probably are. Otherwise, you should firewall this off.\n"
+#~ "\n"
+#~ msgstr ""
+#~ "ÔńĘśćôć Ęíáí ćîőđçńćôçôȚ ôáśőäńïìćßïő ćäț; Ćáí óôĘëíćôć ôá \n"
+#~ "ìçíęìáôÜ óáò ìĘóù pine, mutt Ț Üëëïő đćëÜôç ôáśőäńïìćßïő áđü ôçí "
+#~ "êïíóüëá,\n"
+#~ "ôüôć đéèáíüí íá ôńĘśćôć. Áëëéțò èá đńĘđćé íá ôï đćńéïńßóćôć ìć firewall "
+#~ "áőôü.\n"
+#~ "\n"
-#, fuzzy
-#~ msgid "Installing HPOJ package..."
-#~ msgstr "ĆăêáôÜóôáóç đáêĘôïő %s"
+#~ msgid ""
+#~ "Are you running a POP or IMAP server here? This would\n"
+#~ "be used to host non-web-based mail accounts for people via \n"
+#~ "this machine.\n"
+#~ "\n"
+#~ msgstr ""
+#~ "ÔńĘśćôć Ęíáí POP Ț IMAP ćîőđçńćôçôȚ ćäț; Áőôü śńçóéìïđïéćßôáé\n"
+#~ "ăéá đáńïśȚ ëïăáńéáóìțí ôáśőäńïìćßïő ìç âáóéóìĘíïő óôï web ăéá áíèńțđïőò \n"
+#~ "ìĘóù áőôïę ôïő ìçśáíȚìáôïò.\n"
+#~ "\n"
-#, fuzzy
-#~ msgid "Installing SANE packages..."
-#~ msgstr "ĆăêáôÜóôáóç đáêĘôïő %s"
+#~ msgid ""
+#~ "You appear to be running a 2.2 kernel. If your network IP\n"
+#~ "is automatically set by a computer in your home or office \n"
+#~ "(dynamically assigned), we need to allow for this. Is\n"
+#~ "this the case?\n"
+#~ msgstr ""
+#~ "Öáßíćôáé đùò ôńĘśćôć Ęíáí 2.2 đőńȚíá. ĆÜí ç IP óáò\n"
+#~ "ćßíáé äőíáìéêȚ, đńĘđćé íá ôï ćđéôńĘűïőìć áőôü. Ćßíáé áőôȚ \n"
+#~ "ç đćńßđôùóȚ óáò;\n"
-#, fuzzy
-#~ msgid "Installing mtools packages..."
-#~ msgstr "ĆăêáôÜóôáóç đáêĘôïő %s"
+#~ msgid ""
+#~ "Is your computer getting time syncronized to another computer?\n"
+#~ "Mostly, this is used by medium-large Unix/Linux organizations\n"
+#~ "to synchronize time for logging and such. If you're not part\n"
+#~ "of a larger office and haven't heard of this, you probably \n"
+#~ "aren't."
+#~ msgstr ""
+#~ "Óőăśńïíßæćôáé ç țńá ôïő őđïëïăéóôȚ óáò ìć Üëëïí őđïëïăéóôȚ;\n"
+#~ "Đćńéóóüôćńï, áőôü śńçóéìïđïéćßôáé áđü ìćăáëïìćóáßïőò ïńăáíéóìïęò\n"
+#~ "ìć Unix/Linux ăéá íá óőăśńïíßæïíôáé ôá logs êëđ. Ćáí äćí ćßóôć ìĘńïò\n"
+#~ "ćíüò ìćăÜëïő ăńáöćßïő êáé äćí Ęśćôć áêïęóćé ăéá áőôü, ôüôć đéèáíüí \n"
+#~ "íá ìçí éóśęćé áőôü."
-#, fuzzy
-#~ msgid "Making printer port available for CUPS..."
-#~ msgstr "ÁíÜăíùóç âÜóçò ïäçățí CUPS"
+#~ msgid ""
+#~ "Configuration complete. May we write these changes to disk?\n"
+#~ "\n"
+#~ "\n"
+#~ "\n"
+#~ msgstr ""
+#~ "Ç Ńęèìéóç ïëïêëçńțèçêć. Íá ăńáöôïęí áőôĘò ïé áëëáăĘò óôï äßóêï;\n"
+#~ "\n"
+#~ "\n"
+#~ "\n"
+
+#~ msgid "Can't open %s for writing: %s\n"
+#~ msgstr "ÓöÜëìá êáôÜ ôï Üíïéăìá ôïő %s ăéá ćăăńáöȚ: %s\n"
+
+#~ msgid "Url should begin with 'ftp:'"
+#~ msgstr "Ôï Url đńĘđćé íá îćêéíÜ ìć'ftp:'"
#~ msgid "Control Center"
#~ msgstr "ÊĘíôńï ĆëĘăśïő"
@@ -13005,9 +13540,6 @@ msgstr "Óôáèìüò Ćńăáóßáò Ćđéóôçìïíéêțí ćöáńìïățí"
#~ msgid "Select a graphics card"
#~ msgstr "ĆđéëĘîôć êÜńôá ăńáöéêțí"
-#~ msgid "Warning: testing this graphics card may freeze your computer"
-#~ msgstr "ĐńïóïśȚ: Ç äïêéìȚ ćßíáé ćđéêßíäőíç óć áőôȚ ôçí êÜńôá ăńáöéêțí"
-
#~ msgid "Standard VGA, 640x480 at 60 Hz"
#~ msgstr "Standard VGA, 640x480 óôá 60 Hz"
diff --git a/perl-install/share/po/eo.po b/perl-install/share/po/eo.po
index 82e13b453..394b39761 100644
--- a/perl-install/share/po/eo.po
+++ b/perl-install/share/po/eo.po
@@ -4,8 +4,8 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: drakfloppy 0.43\n"
-"POT-Creation-Date: 2002-08-21 15:44+0200\n"
+"Project-Id-Version: DrakX\n"
+"POT-Creation-Date: 2002-09-02 20:14+0200\n"
"PO-Revision-Date: 2001-08-22 19:15-0500\n"
"Last-Translator: D. Dale Gulledge <dsplat@rochester.rr.com>\n"
"Language-Team: Esperanto <eo@li.org>\n"
@@ -49,45 +49,45 @@ msgstr "32 MB"
msgid "64 MB or more"
msgstr "64 MB aę pli"
-#: ../../Xconfig/card.pm_.c:201
+#: ../../Xconfig/card.pm_.c:203
msgid "Choose a X server"
msgstr "Elektu X servilon"
-#: ../../Xconfig/card.pm_.c:201
+#: ../../Xconfig/card.pm_.c:203
msgid "X server"
msgstr "X servilo"
-#: ../../Xconfig/card.pm_.c:228
+#: ../../Xconfig/card.pm_.c:230
msgid "Multi-head configuration"
msgstr "Plur-ekrana konfiguraŒo"
-#: ../../Xconfig/card.pm_.c:229
+#: ../../Xconfig/card.pm_.c:231
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
msgstr ""
-#: ../../Xconfig/card.pm_.c:284
+#: ../../Xconfig/card.pm_.c:286
msgid "Select the memory size of your graphics card"
msgstr "Elektu memorkapaciton de via grafika karto"
-#: ../../Xconfig/card.pm_.c:345
+#: ../../Xconfig/card.pm_.c:347
msgid "XFree configuration"
msgstr "XFree Konfigurado"
-#: ../../Xconfig/card.pm_.c:347
+#: ../../Xconfig/card.pm_.c:349
msgid "Which configuration of XFree do you want to have?"
msgstr "Kiun konfiguron de XFree vi deziras havi?"
-#: ../../Xconfig/card.pm_.c:379
+#: ../../Xconfig/card.pm_.c:381
msgid "Configure all heads independently"
msgstr ""
-#: ../../Xconfig/card.pm_.c:380
+#: ../../Xconfig/card.pm_.c:382
msgid "Use Xinerama extension"
msgstr ""
-#: ../../Xconfig/card.pm_.c:384
+#: ../../Xconfig/card.pm_.c:386
#, fuzzy, c-format
msgid "Configure only card \"%s\"%s"
msgstr "ISDN-a KonfiguraŒon"
@@ -98,13 +98,13 @@ msgstr "ISDN-a KonfiguraŒon"
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:435
+#: ../../Xconfig/card.pm_.c:410 ../../Xconfig/card.pm_.c:436
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s with 3D hardware acceleration"
msgstr "XFree %s kun 3D aparata akcelado"
-#: ../../Xconfig/card.pm_.c:412
+#: ../../Xconfig/card.pm_.c:413
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -113,17 +113,17 @@ msgstr ""
"Via karto povas havi 3D aparatan akceladon, sed nur kun XFree %s.\n"
"XFree %s subtenas vian karton kiu eble havas pli bonan subtenon en 2D."
-#: ../../Xconfig/card.pm_.c:414 ../../Xconfig/card.pm_.c:437
+#: ../../Xconfig/card.pm_.c:415 ../../Xconfig/card.pm_.c:438
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr "Vi povas havi 3D aparatan akceladan subtenon kun XFree %s."
-#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:443
+#: ../../Xconfig/card.pm_.c:423 ../../Xconfig/card.pm_.c:444
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s kun EKSPERIMENTA 3D aparata akcelado"
-#: ../../Xconfig/card.pm_.c:425
+#: ../../Xconfig/card.pm_.c:426
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -135,7 +135,7 @@ msgstr ""
"KOMPUTILON.\n"
"XFree %s subtenas vian karton kiu eble havas pli bonan subtenon en 2D."
-#: ../../Xconfig/card.pm_.c:428 ../../Xconfig/card.pm_.c:445
+#: ../../Xconfig/card.pm_.c:429 ../../Xconfig/card.pm_.c:446
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
@@ -144,53 +144,54 @@ msgstr ""
"Via karto povas havi 3D aparatan akceladon, sed nur kun XFree %s.\n"
"NOTU KE ÆI TIO ESTAS EKSPERIMENTA SUBTENO KAJ EBLE SVENIGOS VIAN KOMPUTILON."
-#: ../../Xconfig/card.pm_.c:451
+#: ../../Xconfig/card.pm_.c:452
msgid "Xpmac (installation display driver)"
msgstr ""
-#: ../../Xconfig/main.pm_.c:78 ../../Xconfig/main.pm_.c:79
-#: ../../Xconfig/monitor.pm_.c:94 ../../any.pm_.c:974
+#: ../../Xconfig/main.pm_.c:76 ../../Xconfig/main.pm_.c:77
+#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:977
msgid "Custom"
msgstr "Akomodata"
-#: ../../Xconfig/main.pm_.c:104
+#: ../../Xconfig/main.pm_.c:102
#, fuzzy
msgid "Graphic Card"
msgstr "Grafika karto"
-#: ../../Xconfig/main.pm_.c:107 ../../Xconfig/monitor.pm_.c:91
+#: ../../Xconfig/main.pm_.c:105 ../../Xconfig/monitor.pm_.c:93
msgid "Monitor"
msgstr "Ekrano"
-#: ../../Xconfig/main.pm_.c:110 ../../Xconfig/resolution_and_depth.pm_.c:209
+#: ../../Xconfig/main.pm_.c:108 ../../Xconfig/resolution_and_depth.pm_.c:209
msgid "Resolution"
msgstr "Distingivo"
-#: ../../Xconfig/main.pm_.c:114
+#: ../../Xconfig/main.pm_.c:113
msgid "Test"
msgstr ""
-#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:59
-#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/removable.pm_.c:25
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:63
+#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/removable.pm_.c:25
#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "Opcioj"
#: ../../Xconfig/main.pm_.c:121 ../../Xconfig/resolution_and_depth.pm_.c:268
-#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:281
+#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:275
#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
-#: ../../interactive.pm_.c:351 ../../interactive/http.pm_.c:104
+#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:104
#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
-#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:156
-#: ../../my_gtk.pm_.c:284 ../../my_gtk.pm_.c:307
-#: ../../standalone/drakbackup_.c:3324 ../../standalone/drakbackup_.c:3419
-#: ../../standalone/drakbackup_.c:3438
+#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:159
+#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310
+#: ../../standalone/drakbackup_.c:3972 ../../standalone/drakbackup_.c:4067
+#: ../../standalone/drakbackup_.c:4086
msgid "Ok"
msgstr "Jeso"
#: ../../Xconfig/main.pm_.c:121 ../../diskdrake/dav.pm_.c:24
-#: ../../printerdrake.pm_.c:2933 ../../standalone/logdrake_.c:224
+#: ../../harddrake/ui.pm_.c:98 ../../printerdrake.pm_.c:3155
+#: ../../standalone/logdrake_.c:224
msgid "Quit"
msgstr "Æesu"
@@ -207,28 +208,28 @@ msgstr ""
"\n"
"%s"
-#: ../../Xconfig/monitor.pm_.c:91
+#: ../../Xconfig/monitor.pm_.c:93
msgid "Choose a monitor"
msgstr "Elektu ekranon"
-#: ../../Xconfig/monitor.pm_.c:95
+#: ../../Xconfig/monitor.pm_.c:97
msgid "Plug'n Play"
msgstr ""
-#: ../../Xconfig/monitor.pm_.c:96 ../../mouse.pm_.c:45
+#: ../../Xconfig/monitor.pm_.c:98 ../../mouse.pm_.c:46
msgid "Generic"
msgstr "Genera"
-#: ../../Xconfig/monitor.pm_.c:97 ../../harddrake/ui.pm_.c:36
+#: ../../Xconfig/monitor.pm_.c:99 ../../harddrake/ui.pm_.c:37
#, fuzzy
msgid "Vendor"
msgstr "Malfaru"
-#: ../../Xconfig/monitor.pm_.c:107
+#: ../../Xconfig/monitor.pm_.c:109
msgid "Plug'n Play probing failed. Please choose a precise monitor"
msgstr ""
-#: ../../Xconfig/monitor.pm_.c:112
+#: ../../Xconfig/monitor.pm_.c:114
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -250,11 +251,11 @@ msgstr ""
"sinkronamplekson kiu estas preter la kapabloj de via ekrano: vi eble\n"
"difektus vian ekranon. Se vi dubas, elektu zorgeman opcion."
-#: ../../Xconfig/monitor.pm_.c:119
+#: ../../Xconfig/monitor.pm_.c:121
msgid "Horizontal refresh rate"
msgstr "Horizontala sinkronrapido (horizontal sync rate)"
-#: ../../Xconfig/monitor.pm_.c:120
+#: ../../Xconfig/monitor.pm_.c:122
msgid "Vertical refresh rate"
msgstr "Vertikala refrețigrapido (vertical refresh rate)"
@@ -291,36 +292,41 @@ msgstr "Elektu distingivon kaj kolorprofundon"
msgid "Graphics card: %s"
msgstr "Grafika karto: %s"
-#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1015
-#: ../../bootlook.pm_.c:334 ../../diskdrake/smbnfs_gtk.pm_.c:87
-#: ../../install_steps_gtk.pm_.c:412 ../../install_steps_gtk.pm_.c:470
-#: ../../install_steps_interactive.pm_.c:576 ../../interactive.pm_.c:142
-#: ../../interactive.pm_.c:351 ../../interactive/http.pm_.c:105
+#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1018
+#: ../../bootlook.pm_.c:338 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:406 ../../install_steps_gtk.pm_.c:464
+#: ../../install_steps_interactive.pm_.c:560 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:105
#: ../../interactive/newt.pm_.c:174 ../../interactive/stdio.pm_.c:39
-#: ../../interactive/stdio.pm_.c:143 ../../my_gtk.pm_.c:155
-#: ../../my_gtk.pm_.c:159 ../../my_gtk.pm_.c:284
-#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1990
-#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3278
-#: ../../standalone/drakbackup_.c:3311 ../../standalone/drakbackup_.c:3337
-#: ../../standalone/drakbackup_.c:3364 ../../standalone/drakbackup_.c:3391
-#: ../../standalone/drakbackup_.c:3451 ../../standalone/drakbackup_.c:3478
-#: ../../standalone/drakbackup_.c:3504 ../../standalone/drakconnect_.c:115
-#: ../../standalone/drakconnect_.c:147 ../../standalone/drakconnect_.c:289
-#: ../../standalone/drakconnect_.c:537 ../../standalone/drakconnect_.c:679
-#: ../../standalone/drakfloppy_.c:234 ../../standalone/drakfloppy_.c:383
-#: ../../standalone/drakfont_.c:970 ../../standalone/drakgw_.c:598
-#: ../../standalone/logdrake_.c:224 ../../standalone/logdrake_.c:528
-#: ../../standalone/tinyfirewall_.c:64
+#: ../../interactive/stdio.pm_.c:143 ../../my_gtk.pm_.c:158
+#: ../../my_gtk.pm_.c:162 ../../my_gtk.pm_.c:287
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:2124
+#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3926
+#: ../../standalone/drakbackup_.c:3959 ../../standalone/drakbackup_.c:3985
+#: ../../standalone/drakbackup_.c:4012 ../../standalone/drakbackup_.c:4039
+#: ../../standalone/drakbackup_.c:4099 ../../standalone/drakbackup_.c:4126
+#: ../../standalone/drakbackup_.c:4156 ../../standalone/drakbackup_.c:4182
+#: ../../standalone/drakconnect_.c:115 ../../standalone/drakconnect_.c:147
+#: ../../standalone/drakconnect_.c:289 ../../standalone/drakconnect_.c:537
+#: ../../standalone/drakconnect_.c:679 ../../standalone/drakfloppy_.c:234
+#: ../../standalone/drakfloppy_.c:383 ../../standalone/drakfont_.c:970
+#: ../../standalone/drakgw_.c:536 ../../standalone/logdrake_.c:224
+#: ../../standalone/logdrake_.c:526
msgid "Cancel"
msgstr "Nuligu"
-#: ../../Xconfig/test.pm_.c:26
+#: ../../Xconfig/test.pm_.c:30
+msgid "Test of the configuration"
+msgstr "Provu konfiguraŒon"
+
+#: ../../Xconfig/test.pm_.c:31
msgid "Do you want to test the configuration?"
msgstr "Æu vi deziras provi la konfiguraŒon?"
-#: ../../Xconfig/test.pm_.c:26
-msgid "Test of the configuration"
-msgstr "Provu konfiguraŒon"
+#: ../../Xconfig/test.pm_.c:31
+#, fuzzy
+msgid "Warning: testing this graphic card may freeze your computer"
+msgstr "Averto: provado de æi tiu grafika karto eble svenigos vian komputilon"
#: ../../Xconfig/various.pm_.c:29
#, c-format
@@ -456,26 +462,22 @@ msgstr ""
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:158 ../../any.pm_.c:190
+#: ../../any.pm_.c:159 ../../any.pm_.c:190
msgid "Bootloader main options"
msgstr "Startțargilo æefaj opcioj"
-#: ../../any.pm_.c:159 ../../any.pm_.c:191
+#: ../../any.pm_.c:160 ../../any.pm_.c:191
msgid "Bootloader to use"
msgstr "Startțargilo por uzi"
-#: ../../any.pm_.c:161
+#: ../../any.pm_.c:162
msgid "Bootloader installation"
msgstr "Startțargila instalado"
-#: ../../any.pm_.c:163 ../../any.pm_.c:193
+#: ../../any.pm_.c:164 ../../any.pm_.c:193
msgid "Boot device"
msgstr "Starta aparato"
-#: ../../any.pm_.c:164
-msgid "LBA (doesn't work on old BIOSes)"
-msgstr "LBA (ne funkcias kun malnovaj BIOSoj)"
-
#: ../../any.pm_.c:165
msgid "Compact"
msgstr "Kompakta"
@@ -492,16 +494,17 @@ msgstr "Grafika reűimo"
msgid "Delay before booting default image"
msgstr "Prokrastoperiodo antaę starti defaęltan sistemon"
-#: ../../any.pm_.c:170 ../../any.pm_.c:786
+#: ../../any.pm_.c:170 ../../any.pm_.c:788
#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1111 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:743 ../../printerdrake.pm_.c:858
-#: ../../standalone/drakconnect_.c:624 ../../standalone/drakconnect_.c:649
+#: ../../install_steps_interactive.pm_.c:1096 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:850 ../../printerdrake.pm_.c:965
+#: ../../standalone/drakbackup_.c:3528 ../../standalone/drakconnect_.c:624
+#: ../../standalone/drakconnect_.c:649
msgid "Password"
msgstr "Pasvorto"
-#: ../../any.pm_.c:171 ../../any.pm_.c:787
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../any.pm_.c:171 ../../any.pm_.c:789
+#: ../../install_steps_interactive.pm_.c:1097
msgid "Password (again)"
msgstr "Pasvorto (denove)"
@@ -535,14 +538,14 @@ msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr "Opcio ``Limigu komandliniajn opciojn'' ne estas utila sen pasvorto"
-#: ../../any.pm_.c:184 ../../any.pm_.c:762
-#: ../../diskdrake/interactive.pm_.c:1180
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../any.pm_.c:184 ../../any.pm_.c:764
+#: ../../diskdrake/interactive.pm_.c:1191
+#: ../../install_steps_interactive.pm_.c:1091
msgid "Please try again"
msgstr "Bonvole provu denove"
-#: ../../any.pm_.c:184 ../../any.pm_.c:762
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../any.pm_.c:184 ../../any.pm_.c:764
+#: ../../install_steps_interactive.pm_.c:1091
msgid "The passwords do not match"
msgstr "La pasvortoj ne egalas"
@@ -587,16 +590,16 @@ msgstr ""
"Jen la diversaj enskriboj.\n"
"Vi povas aldoni pli aę țanűi la ekzistantajn."
-#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1483
-#: ../../standalone/drakbackup_.c:1596 ../../standalone/drakfont_.c:1011
+#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1558
+#: ../../standalone/drakbackup_.c:1671 ../../standalone/drakfont_.c:1011
#: ../../standalone/drakfont_.c:1054
msgid "Add"
msgstr "Aldonu"
-#: ../../any.pm_.c:257 ../../any.pm_.c:774 ../../diskdrake/dav.pm_.c:60
+#: ../../any.pm_.c:257 ../../any.pm_.c:776 ../../diskdrake/dav.pm_.c:64
#: ../../diskdrake/hd_gtk.pm_.c:153 ../../diskdrake/removable.pm_.c:27
#: ../../diskdrake/smbnfs_gtk.pm_.c:88 ../../interactive/http.pm_.c:153
-#: ../../standalone/drakbackup_.c:2696
+#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2772
msgid "Done"
msgstr "Finata"
@@ -608,7 +611,7 @@ msgstr "Țanűu"
msgid "Which type of entry do you want to add?"
msgstr "Kiun specon de enskribo vi deziras aldoni"
-#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1630
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1705
msgid "Linux"
msgstr "Linukso"
@@ -703,13 +706,13 @@ msgstr "Æu vi havas alian?"
msgid "Do you have any %s interfaces?"
msgstr "Æu vi havas iun %s interfacon?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:821 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:283
+#: ../../any.pm_.c:660 ../../any.pm_.c:823 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:286
msgid "No"
msgstr "Ne"
-#: ../../any.pm_.c:660 ../../any.pm_.c:820 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:283
+#: ../../any.pm_.c:660 ../../any.pm_.c:822 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:286
msgid "Yes"
msgstr "Jes"
@@ -807,38 +810,46 @@ msgstr ""
msgid "access to administrative files"
msgstr ""
-#: ../../any.pm_.c:758
+#: ../../any.pm_.c:754
+msgid "access to network tools"
+msgstr ""
+
+#: ../../any.pm_.c:755
+msgid "access to compilation tools"
+msgstr ""
+
+#: ../../any.pm_.c:760
#, c-format
msgid "(already added %s)"
msgstr "(jam aldonis %s)"
-#: ../../any.pm_.c:763
+#: ../../any.pm_.c:765
msgid "This password is too simple"
msgstr "Æi tiu pasvorto estas tro simpla"
-#: ../../any.pm_.c:764
+#: ../../any.pm_.c:766
msgid "Please give a user name"
msgstr "Bonvole donu salutnomon"
-#: ../../any.pm_.c:765
+#: ../../any.pm_.c:767
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr "Salutnomo devas enhavi nur minusklojn, ciferojn, `-' kaj `_'"
-#: ../../any.pm_.c:766
+#: ../../any.pm_.c:768
#, fuzzy
msgid "The user name is too long"
msgstr "Æi tiu salutnomo estas jam aldonita"
-#: ../../any.pm_.c:767
+#: ../../any.pm_.c:769
msgid "This user name is already added"
msgstr "Æi tiu salutnomo estas jam aldonita"
-#: ../../any.pm_.c:771
+#: ../../any.pm_.c:773
msgid "Add user"
msgstr "Aldonu uzanto"
-#: ../../any.pm_.c:772
+#: ../../any.pm_.c:774
#, c-format
msgid ""
"Enter a user\n"
@@ -847,32 +858,32 @@ msgstr ""
"Enigu uzanton\n"
"%s"
-#: ../../any.pm_.c:773
+#: ../../any.pm_.c:775
msgid "Accept user"
msgstr "Akceptu uzanto"
-#: ../../any.pm_.c:784
+#: ../../any.pm_.c:786
msgid "Real name"
msgstr "Vera nomo"
-#: ../../any.pm_.c:785 ../../printerdrake.pm_.c:742
-#: ../../printerdrake.pm_.c:857
+#: ../../any.pm_.c:787 ../../printerdrake.pm_.c:849
+#: ../../printerdrake.pm_.c:964
msgid "User name"
msgstr "Salutnomo"
-#: ../../any.pm_.c:788
+#: ../../any.pm_.c:790
msgid "Shell"
msgstr "Țelo"
-#: ../../any.pm_.c:790
+#: ../../any.pm_.c:792
msgid "Icon"
msgstr "Piktogramo"
-#: ../../any.pm_.c:817
+#: ../../any.pm_.c:819
msgid "Autologin"
msgstr "Aętomata-enregistrado"
-#: ../../any.pm_.c:818
+#: ../../any.pm_.c:820
#, fuzzy
msgid ""
"I can set up your computer to automatically log on one user.\n"
@@ -881,20 +892,20 @@ msgstr ""
"Mi povas konfiguri vian komputilon por aętomate enregistri unu uzulon kiam\n"
"űi startas. Se vi ne deziras uzi æi tion, alklaku la `Nuligu' butonon."
-#: ../../any.pm_.c:822
+#: ../../any.pm_.c:824
msgid "Choose the default user:"
msgstr "Elektu la defaęltan uzulon:"
-#: ../../any.pm_.c:823
+#: ../../any.pm_.c:825
msgid "Choose the window manager to run:"
msgstr "Elektu la fenestro-administrilon por lanæi:"
-#: ../../any.pm_.c:838
+#: ../../any.pm_.c:840
#, fuzzy
msgid "Please choose a language to use."
msgstr "Bonvole, elektu lingvon por uzi."
-#: ../../any.pm_.c:840
+#: ../../any.pm_.c:842
msgid ""
"Mandrake Linux can support multiple languages. Select\n"
"the languages you would like to install. They will be available\n"
@@ -902,39 +913,39 @@ msgid ""
msgstr ""
"Vi povas elektu aliajn lingvojn kiujn estos uzeblaj malantaę la instalado"
-#: ../../any.pm_.c:854 ../../install_steps_interactive.pm_.c:708
+#: ../../any.pm_.c:856 ../../install_steps_interactive.pm_.c:692
#: ../../standalone/drakxtv_.c:73
msgid "All"
msgstr "Æiuj"
-#: ../../any.pm_.c:974
+#: ../../any.pm_.c:977
#, fuzzy
msgid "Allow all users"
msgstr "Aldonu uzulon"
-#: ../../any.pm_.c:974
+#: ../../any.pm_.c:977
#, fuzzy
msgid "No sharing"
msgstr "CUPS startas"
-#: ../../any.pm_.c:984 ../../standalone.pm_.c:57
+#: ../../any.pm_.c:987 ../../install_any.pm_.c:1183 ../../standalone.pm_.c:58
#, fuzzy, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr ""
"Æi tiu pakaŒo devus esti promociata.\n"
"Æu vi certas ke vi deziras malelekti űin?"
-#: ../../any.pm_.c:987
+#: ../../any.pm_.c:990
msgid ""
"You can export using NFS or Samba. Please select which you'd like to use."
msgstr ""
-#: ../../any.pm_.c:995 ../../standalone.pm_.c:61
+#: ../../any.pm_.c:998 ../../install_any.pm_.c:1188 ../../standalone.pm_.c:63
#, c-format
msgid "Mandatory package %s is missing"
msgstr ""
-#: ../../any.pm_.c:1001
+#: ../../any.pm_.c:1004
msgid ""
"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
@@ -943,42 +954,42 @@ msgid ""
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:1015
+#: ../../any.pm_.c:1018
msgid "Launch userdrake"
msgstr ""
-#: ../../any.pm_.c:1017
+#: ../../any.pm_.c:1020
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
msgstr ""
-#: ../../any.pm_.c:1068
+#: ../../any.pm_.c:1071
msgid "Welcome To Crackers"
msgstr "Bonvenon Al Rompistoj"
-#: ../../any.pm_.c:1069
+#: ../../any.pm_.c:1072
msgid "Poor"
msgstr "Malbona"
-#: ../../any.pm_.c:1070 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1073 ../../mouse.pm_.c:31
msgid "Standard"
msgstr "Laęnorma"
-#: ../../any.pm_.c:1071
+#: ../../any.pm_.c:1074
msgid "High"
msgstr "Alta"
-#: ../../any.pm_.c:1072
+#: ../../any.pm_.c:1075
#, fuzzy
msgid "Higher"
msgstr "Alta"
-#: ../../any.pm_.c:1073
+#: ../../any.pm_.c:1076
msgid "Paranoid"
msgstr "Paranoja"
-#: ../../any.pm_.c:1076
+#: ../../any.pm_.c:1079
msgid ""
"This level is to be used with care. It makes your system more easy to use,\n"
"but very sensitive: it must not be used for a machine connected to others\n"
@@ -988,7 +999,7 @@ msgstr ""
"por uzi, sed delikatega: vi devus neniam uzi űi surrete.\n"
"Űi ne havas pasvortojn."
-#: ../../any.pm_.c:1079
+#: ../../any.pm_.c:1082
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -996,7 +1007,7 @@ msgstr ""
"Pasvortoj nun estas ebligataj, sed uzado kiel reta komputilo estas ankoraę\n"
"ne rekomendita."
-#: ../../any.pm_.c:1080
+#: ../../any.pm_.c:1083
#, fuzzy
msgid ""
"This is the standard security recommended for a computer that will be used "
@@ -1005,13 +1016,13 @@ msgstr ""
"Æi tiu estas la normala sekureco rekomendata por komputilo kiu estos uzata\n"
"por konekti al la Interreto kiel kliento. Nun estas sekurecaj kontroloj."
-#: ../../any.pm_.c:1081
+#: ../../any.pm_.c:1084
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr ""
-#: ../../any.pm_.c:1082
+#: ../../any.pm_.c:1085
#, fuzzy
msgid ""
"With this security level, the use of this system as a server becomes "
@@ -1025,7 +1036,7 @@ msgstr ""
"La sekureco nun estas sufiæe alta por uzi la sistemon kiel servilo kiu\n"
"akceptas konektojn de multaj klientoj."
-#: ../../any.pm_.c:1085
+#: ../../any.pm_.c:1088
#, fuzzy
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
@@ -1034,32 +1045,32 @@ msgstr ""
"Ni uzas aspektojn de la kvara nivelo, sed nun la komputilo estas tute\n"
"malfermita. Sekurecaj aspektoj estas æe iliaj maksimumoj."
-#: ../../any.pm_.c:1091
+#: ../../any.pm_.c:1094
#, fuzzy
msgid "DrakSec Basic Options"
msgstr "Opcioj"
-#: ../../any.pm_.c:1092
+#: ../../any.pm_.c:1095
#, fuzzy
msgid "Please choose the desired security level"
msgstr "Elektu sekurnivelon?"
-#: ../../any.pm_.c:1095
+#: ../../any.pm_.c:1098
#, fuzzy
msgid "Security level"
msgstr "Elektas sekurnivelon"
-#: ../../any.pm_.c:1097
+#: ../../any.pm_.c:1100
#, fuzzy
msgid "Use libsafe for servers"
msgstr "Elektu opciojn por servilo"
-#: ../../any.pm_.c:1098
+#: ../../any.pm_.c:1101
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
-#: ../../any.pm_.c:1099
+#: ../../any.pm_.c:1102
msgid "Security Administrator (login or email)"
msgstr ""
@@ -1088,20 +1099,20 @@ msgstr ""
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:935
+#: ../../bootloader.pm_.c:932
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Bonvenon al GRUB la elektilo por mastrumaj sistemoj!"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:938
+#: ../../bootloader.pm_.c:935
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "Uzu la %c kaj %c klavoj por elekti kiun enskribon estas emfazata."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:941
+#: ../../bootloader.pm_.c:938
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr ""
"Premu la enenklavon por starti la elektatan mastruman sistemon, 'e' por\n"
@@ -1109,38 +1120,38 @@ msgstr ""
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:941
msgid "commands before booting, or 'c' for a command-line."
msgstr "ordonoj antaux startado, aux 'c' por uzi komandan linion."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:947
+#: ../../bootloader.pm_.c:944
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "La emfazata enskribo startos auxtomate post %d sekundoj."
-#: ../../bootloader.pm_.c:951
+#: ../../bootloader.pm_.c:948
msgid "not enough room in /boot"
msgstr "mankas sufiæe da spaco en /boot"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1051
+#: ../../bootloader.pm_.c:1048
msgid "Desktop"
msgstr "Desktop"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1053
+#: ../../bootloader.pm_.c:1050
msgid "Start Menu"
msgstr "Start Menu"
-#: ../../bootloader.pm_.c:1072
+#: ../../bootloader.pm_.c:1069
#, fuzzy, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "Kie vi deziras instali la startțargilon?"
-#: ../../bootlook.pm_.c:45
+#: ../../bootlook.pm_.c:45 ../../standalone/draksplash_.c:25
msgid "no help implemented yet.\n"
msgstr ""
@@ -1149,8 +1160,8 @@ msgstr ""
msgid "Boot Style Configuration"
msgstr "Post-instala konfigurado"
-#: ../../bootlook.pm_.c:78 ../../harddrake/ui.pm_.c:59
-#: ../../harddrake/ui.pm_.c:60 ../../standalone/drakfloppy_.c:81
+#: ../../bootlook.pm_.c:78 ../../harddrake/ui.pm_.c:62
+#: ../../harddrake/ui.pm_.c:63 ../../standalone/drakfloppy_.c:81
#: ../../standalone/logdrake_.c:101
msgid "/_File"
msgstr "/_Dosiero"
@@ -1160,7 +1171,7 @@ msgstr "/_Dosiero"
msgid "/File/_Quit"
msgstr "/Dosiero/_Foriru"
-#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:60
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:63
#: ../../standalone/drakfloppy_.c:82 ../../standalone/logdrake_.c:107
msgid "<control>Q"
msgstr "<stir>F"
@@ -1202,117 +1213,123 @@ msgstr "Instalu sistemon"
msgid "Display theme under console"
msgstr ""
-#: ../../bootlook.pm_.c:166
+#: ../../bootlook.pm_.c:145
+#, fuzzy
+msgid "Create new theme"
+msgstr "Kreu novan subdiskon"
+
+#: ../../bootlook.pm_.c:169
msgid "Can't create Bootsplash preview"
msgstr ""
-#: ../../bootlook.pm_.c:166 ../../bootlook.pm_.c:184 ../../bootlook.pm_.c:187
-#: ../../bootlook.pm_.c:190 ../../bootlook.pm_.c:220 ../../bootlook.pm_.c:222
-#: ../../bootlook.pm_.c:232 ../../bootlook.pm_.c:241 ../../bootlook.pm_.c:248
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:336
-#: ../../diskdrake/interactive.pm_.c:351 ../../diskdrake/interactive.pm_.c:464
-#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../bootlook.pm_.c:169 ../../bootlook.pm_.c:187 ../../bootlook.pm_.c:190
+#: ../../bootlook.pm_.c:193 ../../bootlook.pm_.c:223 ../../bootlook.pm_.c:225
+#: ../../bootlook.pm_.c:235 ../../bootlook.pm_.c:244 ../../bootlook.pm_.c:251
+#: ../../diskdrake/dav.pm_.c:73 ../../diskdrake/hd_gtk.pm_.c:116
+#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/interactive.pm_.c:355
+#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/interactive.pm_.c:474
+#: ../../diskdrake/smbnfs_gtk.pm_.c:45 ../../fsedit.pm_.c:239
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:365 ../../interactive/http.pm_.c:119
-#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:80
+#: ../../interactive/http.pm_.c:119 ../../interactive/http.pm_.c:120
+#: ../../standalone/draksplash_.c:32
msgid "Error"
msgstr "Eraro"
-#: ../../bootlook.pm_.c:183
+#: ../../bootlook.pm_.c:186
#, c-format
msgid "Backup %s to %s.old"
msgstr ""
-#: ../../bootlook.pm_.c:184
+#: ../../bootlook.pm_.c:187
msgid "unable to backup lilo message"
msgstr ""
-#: ../../bootlook.pm_.c:186
+#: ../../bootlook.pm_.c:189
#, c-format
msgid "Copy %s to %s"
msgstr ""
-#: ../../bootlook.pm_.c:187
+#: ../../bootlook.pm_.c:190
msgid "can't change lilo message"
msgstr ""
-#: ../../bootlook.pm_.c:190
+#: ../../bootlook.pm_.c:193
msgid "Lilo message not found"
msgstr ""
-#: ../../bootlook.pm_.c:220
+#: ../../bootlook.pm_.c:223
msgid "Can't write /etc/sysconfig/bootsplash."
msgstr ""
-#: ../../bootlook.pm_.c:220
+#: ../../bootlook.pm_.c:223
#, fuzzy, c-format
msgid "Write %s"
msgstr "XFree %s"
-#: ../../bootlook.pm_.c:222
+#: ../../bootlook.pm_.c:225
msgid ""
"Can't write /etc/sysconfig/bootsplash\n"
"File not found."
msgstr ""
-#: ../../bootlook.pm_.c:233
+#: ../../bootlook.pm_.c:236
#, c-format
msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
msgstr ""
-#: ../../bootlook.pm_.c:236
+#: ../../bootlook.pm_.c:239
#, c-format
-msgid "Make initrd 'mkinird -f /boot/initrd-%s.img %s'."
+msgid "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
msgstr ""
-#: ../../bootlook.pm_.c:242
+#: ../../bootlook.pm_.c:245
msgid ""
"Can't relaunch LiLo!\n"
"Launch \"lilo\" as root in command line to complete LiLo theme installation."
msgstr ""
-#: ../../bootlook.pm_.c:246
+#: ../../bootlook.pm_.c:249
msgid "Relaunch 'lilo'"
msgstr ""
-#: ../../bootlook.pm_.c:248
+#: ../../bootlook.pm_.c:251 ../../standalone/draksplash_.c:161
+#: ../../standalone/draksplash_.c:330 ../../standalone/draksplash_.c:454
#, fuzzy
msgid "Notice"
msgstr "agrabla(j)"
-#: ../../bootlook.pm_.c:249
+#: ../../bootlook.pm_.c:252
msgid "LiLo and Bootsplash themes installation successfull"
msgstr ""
-#: ../../bootlook.pm_.c:249
+#: ../../bootlook.pm_.c:252
#, fuzzy
msgid "Theme installation failed!"
msgstr "Elektu instalklason"
-#: ../../bootlook.pm_.c:258
+#: ../../bootlook.pm_.c:261
#, fuzzy, c-format
msgid ""
"You are currently using %s as your boot manager.\n"
"Click on Configure to launch the setup wizard."
msgstr "Disdividado de Interreta Konekto"
-#: ../../bootlook.pm_.c:260 ../../standalone/drakbackup_.c:2352
-#: ../../standalone/drakbackup_.c:2362 ../../standalone/drakbackup_.c:2372
-#: ../../standalone/drakbackup_.c:2380 ../../standalone/drakgw_.c:592
-#: ../../standalone/tinyfirewall_.c:58
+#: ../../bootlook.pm_.c:263 ../../standalone/drakbackup_.c:2427
+#: ../../standalone/drakbackup_.c:2437 ../../standalone/drakbackup_.c:2447
+#: ../../standalone/drakbackup_.c:2455 ../../standalone/drakgw_.c:530
msgid "Configure"
msgstr "Konfiguru"
-#: ../../bootlook.pm_.c:267
+#: ../../bootlook.pm_.c:270
#, fuzzy
msgid "Splash selection"
msgstr "Elektado de individuaj pakaŒoj"
-#: ../../bootlook.pm_.c:270
+#: ../../bootlook.pm_.c:273
msgid "Themes"
msgstr ""
-#: ../../bootlook.pm_.c:272
+#: ../../bootlook.pm_.c:275
msgid ""
"\n"
"Select a theme for\n"
@@ -1321,44 +1338,44 @@ msgid ""
"them separatly"
msgstr ""
-#: ../../bootlook.pm_.c:275
+#: ../../bootlook.pm_.c:278
msgid "Lilo screen"
msgstr ""
-#: ../../bootlook.pm_.c:279
+#: ../../bootlook.pm_.c:283
msgid "Bootsplash"
msgstr ""
-#: ../../bootlook.pm_.c:314
+#: ../../bootlook.pm_.c:318
msgid "System mode"
msgstr "Sistema modalo"
-#: ../../bootlook.pm_.c:316
+#: ../../bootlook.pm_.c:320
msgid "Launch the graphical environment when your system starts"
msgstr ""
-#: ../../bootlook.pm_.c:321
+#: ../../bootlook.pm_.c:325
msgid "No, I don't want autologin"
msgstr ""
-#: ../../bootlook.pm_.c:323
+#: ../../bootlook.pm_.c:327
msgid "Yes, I want autologin with this (user, desktop)"
msgstr ""
-#: ../../bootlook.pm_.c:333 ../../network/netconnect.pm_.c:101
+#: ../../bootlook.pm_.c:337 ../../network/netconnect.pm_.c:101
#: ../../standalone/drakTermServ_.c:173 ../../standalone/drakTermServ_.c:300
-#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:3513
-#: ../../standalone/drakbackup_.c:4290 ../../standalone/drakconnect_.c:108
+#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4191
+#: ../../standalone/drakbackup_.c:4952 ../../standalone/drakconnect_.c:108
#: ../../standalone/drakconnect_.c:140 ../../standalone/drakconnect_.c:296
#: ../../standalone/drakconnect_.c:435 ../../standalone/drakconnect_.c:521
#: ../../standalone/drakconnect_.c:564 ../../standalone/drakconnect_.c:667
#: ../../standalone/drakfloppy_.c:376 ../../standalone/drakfont_.c:612
#: ../../standalone/drakfont_.c:799 ../../standalone/drakfont_.c:876
-#: ../../standalone/drakfont_.c:963 ../../standalone/logdrake_.c:521
+#: ../../standalone/drakfont_.c:963 ../../standalone/logdrake_.c:519
msgid "OK"
msgstr "Jes"
-#: ../../bootlook.pm_.c:403
+#: ../../bootlook.pm_.c:407
#, c-format
msgid "can not open /etc/inittab for reading: %s"
msgstr ""
@@ -1465,49 +1482,54 @@ msgstr "seria"
msgid "United States"
msgstr ""
-#: ../../detect_devices.pm_.c:599 ../../detect_devices.pm_.c:641
-#: ../../detect_devices.pm_.c:803
-msgid "Unknown Model"
-msgstr ""
-
#: ../../diskdrake/dav.pm_.c:23
#, fuzzy
msgid "New"
msgstr "nova"
-#: ../../diskdrake/dav.pm_.c:57
+#: ../../diskdrake/dav.pm_.c:59 ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/smbnfs_gtk.pm_.c:81
+msgid "Unmount"
+msgstr "Malmuntu"
+
+#: ../../diskdrake/dav.pm_.c:60 ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/smbnfs_gtk.pm_.c:82
+msgid "Mount"
+msgstr "Muntu"
+
+#: ../../diskdrake/dav.pm_.c:61
msgid "Server"
msgstr "Servilo"
-#: ../../diskdrake/dav.pm_.c:58 ../../diskdrake/interactive.pm_.c:375
-#: ../../diskdrake/interactive.pm_.c:558 ../../diskdrake/interactive.pm_.c:585
+#: ../../diskdrake/dav.pm_.c:62 ../../diskdrake/interactive.pm_.c:379
+#: ../../diskdrake/interactive.pm_.c:568 ../../diskdrake/interactive.pm_.c:595
#: ../../diskdrake/removable.pm_.c:24 ../../diskdrake/removable_gtk.pm_.c:15
#: ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr "Surmetingo"
-#: ../../diskdrake/dav.pm_.c:68
+#: ../../diskdrake/dav.pm_.c:81
#, fuzzy
msgid "Please enter the WebDAV server URL"
msgstr "Bonvole, provu la muson"
-#: ../../diskdrake/dav.pm_.c:71
+#: ../../diskdrake/dav.pm_.c:84
#, fuzzy
msgid "The URL must begin with http:// or https://"
msgstr "Prokura servilo devus esti http://..."
-#: ../../diskdrake/dav.pm_.c:92
+#: ../../diskdrake/dav.pm_.c:105
#, fuzzy
msgid "Server: "
msgstr "Servilo"
-#: ../../diskdrake/dav.pm_.c:93 ../../diskdrake/interactive.pm_.c:435
-#: ../../diskdrake/interactive.pm_.c:1079
-#: ../../diskdrake/interactive.pm_.c:1153
+#: ../../diskdrake/dav.pm_.c:106 ../../diskdrake/interactive.pm_.c:440
+#: ../../diskdrake/interactive.pm_.c:1089
+#: ../../diskdrake/interactive.pm_.c:1164
msgid "Mount point: "
msgstr "Surmetingo: "
-#: ../../diskdrake/dav.pm_.c:94 ../../diskdrake/interactive.pm_.c:1159
+#: ../../diskdrake/dav.pm_.c:107 ../../diskdrake/interactive.pm_.c:1170
#, c-format
msgid "Options: %s"
msgstr "Opcioj: %s"
@@ -1516,8 +1538,9 @@ msgstr "Opcioj: %s"
msgid "Please make a backup of your data first"
msgstr "Bonvolu fari rezervan kopion de via dateno antaęe"
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:924
-#: ../../diskdrake/interactive.pm_.c:933 ../../diskdrake/interactive.pm_.c:999
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:934
+#: ../../diskdrake/interactive.pm_.c:943
+#: ../../diskdrake/interactive.pm_.c:1009
msgid "Read carefully!"
msgstr "Legu zorge"
@@ -1556,10 +1579,15 @@ msgid "Please click on a partition"
msgstr "Bonvolu klaki sur subdiskon"
#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
-#: ../../install_steps_gtk.pm_.c:471
+#: ../../install_steps_gtk.pm_.c:465
msgid "Details"
msgstr "Detaloj"
+#: ../../diskdrake/hd_gtk.pm_.c:252
+#, fuzzy
+msgid "No hard drives found"
+msgstr "Loka printilo"
+
#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Ext2"
msgstr "2a Etendata (Ext2)"
@@ -1585,13 +1613,13 @@ msgstr "SunOS"
msgid "Swap"
msgstr "Interțanűa"
-#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1105
msgid "Empty"
msgstr "Malplena"
-#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:331
-#: ../../install_steps_gtk.pm_.c:389 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1679
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:325
+#: ../../install_steps_gtk.pm_.c:383 ../../mouse.pm_.c:165
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1754
msgid "Other"
msgstr "Alia"
@@ -1599,12 +1627,12 @@ msgstr "Alia"
msgid "Filesystem types:"
msgstr "Specoj de dosiersistemoj:"
-#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:397
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:402
msgid "Create"
msgstr "Kreu"
-#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:376
-#: ../../diskdrake/interactive.pm_.c:521 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:380
+#: ../../diskdrake/interactive.pm_.c:531 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "Tipo"
@@ -1614,7 +1642,7 @@ msgstr "Tipo"
msgid "Use ``%s'' instead"
msgstr "Uzu ``%s'' anstataęe"
-#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:389
msgid "Delete"
msgstr "Forigu"
@@ -1622,7 +1650,7 @@ msgstr "Forigu"
msgid "Use ``Unmount'' first"
msgstr "Uzu ``Malmuntu'' antaęe"
-#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:513
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:518
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
@@ -1631,77 +1659,77 @@ msgstr ""
"estos\n"
"perdata"
-#: ../../diskdrake/interactive.pm_.c:173
+#: ../../diskdrake/interactive.pm_.c:174
#, fuzzy
msgid "Choose a partition"
msgstr "Elektu agon"
-#: ../../diskdrake/interactive.pm_.c:173
+#: ../../diskdrake/interactive.pm_.c:174
#, fuzzy
msgid "Choose another partition"
msgstr "Kreu novan subdiskon"
-#: ../../diskdrake/interactive.pm_.c:198
+#: ../../diskdrake/interactive.pm_.c:199
#, fuzzy
msgid "Exit"
msgstr "2a Etendata (Ext2)"
-#: ../../diskdrake/interactive.pm_.c:220
+#: ../../diskdrake/interactive.pm_.c:221
msgid "Toggle to expert mode"
msgstr "Țanűu al Spertula reűimo"
-#: ../../diskdrake/interactive.pm_.c:220
+#: ../../diskdrake/interactive.pm_.c:221
msgid "Toggle to normal mode"
msgstr "Țanűu al Normala reűimo"
-#: ../../diskdrake/interactive.pm_.c:220
+#: ../../diskdrake/interactive.pm_.c:221
msgid "Undo"
msgstr "Malfaru"
-#: ../../diskdrake/interactive.pm_.c:239
+#: ../../diskdrake/interactive.pm_.c:240
msgid "Continue anyway?"
msgstr "Æu mi devus daęri malgraęe?"
-#: ../../diskdrake/interactive.pm_.c:244
+#: ../../diskdrake/interactive.pm_.c:245
msgid "Quit without saving"
msgstr "Æu eliru sen konservi"
-#: ../../diskdrake/interactive.pm_.c:244
+#: ../../diskdrake/interactive.pm_.c:245
msgid "Quit without writing the partition table?"
msgstr "Æu eliru sen skribi la subdisktabelon?"
-#: ../../diskdrake/interactive.pm_.c:249
+#: ../../diskdrake/interactive.pm_.c:250
#, fuzzy
msgid "Do you want to save /etc/fstab modifications"
msgstr "Æu vi deziras provi la konfiguraŒon?"
-#: ../../diskdrake/interactive.pm_.c:261
+#: ../../diskdrake/interactive.pm_.c:263
msgid "Auto allocate"
msgstr "Aętomate disponigu"
-#: ../../diskdrake/interactive.pm_.c:261
+#: ../../diskdrake/interactive.pm_.c:263
msgid "Clear all"
msgstr "Forvițu æion"
-#: ../../diskdrake/interactive.pm_.c:261
+#: ../../diskdrake/interactive.pm_.c:263
#: ../../install_steps_interactive.pm_.c:214
msgid "More"
msgstr "Plu"
-#: ../../diskdrake/interactive.pm_.c:264
+#: ../../diskdrake/interactive.pm_.c:267
#, fuzzy
msgid "Hard drive information"
msgstr "Detektado de fiksdisko(j)"
-#: ../../diskdrake/interactive.pm_.c:294
+#: ../../diskdrake/interactive.pm_.c:298
msgid "All primary partitions are used"
msgstr "Æiuj el la subdiskoj estas uzata"
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:299
msgid "I can't add any more partition"
msgstr "Mi ne povas aldoni plu da subdiskoj"
-#: ../../diskdrake/interactive.pm_.c:296
+#: ../../diskdrake/interactive.pm_.c:300
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -1709,35 +1737,35 @@ msgstr ""
"Por havi plu da subdiskoj, bonvole forigu unu por povi krei etendigitan\n"
"subdiskon"
-#: ../../diskdrake/interactive.pm_.c:306
+#: ../../diskdrake/interactive.pm_.c:310
#, fuzzy
msgid "Save partition table"
msgstr "Skribu subdiskotabelon"
-#: ../../diskdrake/interactive.pm_.c:307
+#: ../../diskdrake/interactive.pm_.c:311
#, fuzzy
msgid "Restore partition table"
msgstr "Sava subdiskotabelo"
-#: ../../diskdrake/interactive.pm_.c:308
+#: ../../diskdrake/interactive.pm_.c:312
msgid "Rescue partition table"
msgstr "Sava subdiskotabelo"
-#: ../../diskdrake/interactive.pm_.c:310
+#: ../../diskdrake/interactive.pm_.c:314
#, fuzzy
msgid "Reload partition table"
msgstr "Sava subdiskotabelo"
-#: ../../diskdrake/interactive.pm_.c:315
+#: ../../diskdrake/interactive.pm_.c:319
#, fuzzy
msgid "Removable media automounting"
msgstr "Aętomata muntado de demetebla medio"
-#: ../../diskdrake/interactive.pm_.c:324 ../../diskdrake/interactive.pm_.c:344
+#: ../../diskdrake/interactive.pm_.c:328 ../../diskdrake/interactive.pm_.c:348
msgid "Select file"
msgstr "Elektu dosieron"
-#: ../../diskdrake/interactive.pm_.c:331
+#: ../../diskdrake/interactive.pm_.c:335
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1745,11 +1773,11 @@ msgstr ""
"La rezerva subdisktabelo ne estas la sama grandeco\n"
"Æu daęras tamen?"
-#: ../../diskdrake/interactive.pm_.c:345
+#: ../../diskdrake/interactive.pm_.c:349
msgid "Warning"
msgstr "Averto"
-#: ../../diskdrake/interactive.pm_.c:346
+#: ../../diskdrake/interactive.pm_.c:350
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1757,114 +1785,106 @@ msgstr ""
"Ențovu disketon en drajvo\n"
"Æiuj datenoj sur tiu disketo estos perdata"
-#: ../../diskdrake/interactive.pm_.c:357
+#: ../../diskdrake/interactive.pm_.c:361
msgid "Trying to rescue partition table"
msgstr "Provas savi subdisktabelon"
-#: ../../diskdrake/interactive.pm_.c:363
+#: ../../diskdrake/interactive.pm_.c:367
#, fuzzy
msgid "Detailed information"
msgstr "Montru informon"
-#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:652
+#: ../../diskdrake/interactive.pm_.c:382 ../../diskdrake/interactive.pm_.c:662
msgid "Resize"
msgstr "Regrandecigu"
-#: ../../diskdrake/interactive.pm_.c:379 ../../diskdrake/interactive.pm_.c:705
+#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/interactive.pm_.c:715
msgid "Move"
msgstr "Movu"
-#: ../../diskdrake/interactive.pm_.c:380
+#: ../../diskdrake/interactive.pm_.c:384
msgid "Format"
msgstr "Formatu"
-#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/smbnfs_gtk.pm_.c:82
-msgid "Mount"
-msgstr "Muntu"
-
-#: ../../diskdrake/interactive.pm_.c:382
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Add to RAID"
msgstr "Aldonu al RAID (Redundanca Aro de Malmultekostaj Diskoj)"
-#: ../../diskdrake/interactive.pm_.c:383
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Add to LVM"
msgstr "Aldonu al LVM (Redundanca Aro de Malmultekostaj Diskoj)"
-#: ../../diskdrake/interactive.pm_.c:384 ../../diskdrake/smbnfs_gtk.pm_.c:81
-msgid "Unmount"
-msgstr "Malmuntu"
-
-#: ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/interactive.pm_.c:390
msgid "Remove from RAID"
msgstr "Forigu de RAID (Redundanca Aro de Malmultekostaj Diskoj)"
-#: ../../diskdrake/interactive.pm_.c:387
+#: ../../diskdrake/interactive.pm_.c:391
msgid "Remove from LVM"
msgstr "Forigu de LVM (Redundanca Aro de Malmultekostaj Diskoj)"
-#: ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/interactive.pm_.c:392
msgid "Modify RAID"
msgstr "Țanűu RAID (Redundanca Aro de Malmultekostaj Diskoj)"
-#: ../../diskdrake/interactive.pm_.c:389
+#: ../../diskdrake/interactive.pm_.c:393
msgid "Use for loopback"
msgstr "Uzu por retrokonektado"
-#: ../../diskdrake/interactive.pm_.c:428
+#: ../../diskdrake/interactive.pm_.c:433
msgid "Create a new partition"
msgstr "Kreu novan subdiskon"
-#: ../../diskdrake/interactive.pm_.c:431
+#: ../../diskdrake/interactive.pm_.c:436
msgid "Start sector: "
msgstr "Komenca sektoro: "
-#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:805
+#: ../../diskdrake/interactive.pm_.c:438 ../../diskdrake/interactive.pm_.c:815
msgid "Size in MB: "
msgstr "Grandeco en MB: "
-#: ../../diskdrake/interactive.pm_.c:434 ../../diskdrake/interactive.pm_.c:806
+#: ../../diskdrake/interactive.pm_.c:439 ../../diskdrake/interactive.pm_.c:816
msgid "Filesystem type: "
msgstr "Speco de dosiersistemo: "
-#: ../../diskdrake/interactive.pm_.c:439
+#: ../../diskdrake/interactive.pm_.c:444
msgid "Preference: "
msgstr "Prefero: "
-#: ../../diskdrake/interactive.pm_.c:464
+#: ../../diskdrake/interactive.pm_.c:469
msgid ""
"You can't create a new partition\n"
"(since you reached the maximal number of primary partitions).\n"
"First remove a primary partition and create an extended partition."
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:494
+#: ../../diskdrake/interactive.pm_.c:499
#, fuzzy
msgid "Remove the loopback file?"
msgstr "Formatas retrokonektan dosieron %s"
-#: ../../diskdrake/interactive.pm_.c:519
+#: ../../diskdrake/interactive.pm_.c:529
msgid "Change partition type"
msgstr "Țanűu subdiskspecon"
-#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:530 ../../diskdrake/removable.pm_.c:48
msgid "Which filesystem do you want?"
msgstr "Kiun dosierosistemo vi deziras uzi?"
-#: ../../diskdrake/interactive.pm_.c:526
+#: ../../diskdrake/interactive.pm_.c:536
msgid "Switching from ext2 to ext3"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:556
+#: ../../diskdrake/interactive.pm_.c:566
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "Kie vi deziras munti retrokonektan dosieron %s?"
-#: ../../diskdrake/interactive.pm_.c:557
+#: ../../diskdrake/interactive.pm_.c:567
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Kie vi deziras munti aparato %s?"
-#: ../../diskdrake/interactive.pm_.c:563
+#: ../../diskdrake/interactive.pm_.c:573
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1872,144 +1892,144 @@ msgstr ""
"Ne povas malfiksi surmetingon æar æi tiu subdisko estas uzata por\n"
"retrokonektado. Unue forigu la retrokonektadon."
-#: ../../diskdrake/interactive.pm_.c:584
+#: ../../diskdrake/interactive.pm_.c:594
#, fuzzy, c-format
msgid "Where do you want to mount %s?"
msgstr "Kie vi deziras munti aparato %s?"
-#: ../../diskdrake/interactive.pm_.c:608
+#: ../../diskdrake/interactive.pm_.c:618
msgid "Computing FAT filesystem bounds"
msgstr "Kalkulas FAT dosiersistemajn limojn"
-#: ../../diskdrake/interactive.pm_.c:608 ../../diskdrake/interactive.pm_.c:667
-#: ../../install_interactive.pm_.c:131
+#: ../../diskdrake/interactive.pm_.c:618 ../../diskdrake/interactive.pm_.c:677
+#: ../../install_interactive.pm_.c:133
msgid "Resizing"
msgstr "Regrandecigas"
-#: ../../diskdrake/interactive.pm_.c:640
+#: ../../diskdrake/interactive.pm_.c:650
msgid "This partition is not resizeable"
msgstr "Æi tiu subdisko ne estas regrandecigebla"
-#: ../../diskdrake/interactive.pm_.c:645
+#: ../../diskdrake/interactive.pm_.c:655
msgid "All data on this partition should be backed-up"
msgstr "Æiuj datenoj en æi tiu subdisko devus esti rezervata"
-#: ../../diskdrake/interactive.pm_.c:647
+#: ../../diskdrake/interactive.pm_.c:657
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr ""
"Post vi regrandecigas subdiskon %s, æiuj datenoj en æi tiu subdisko estos\n"
"perdata"
-#: ../../diskdrake/interactive.pm_.c:652
+#: ../../diskdrake/interactive.pm_.c:662
msgid "Choose the new size"
msgstr "Elektu la novan grandecon"
-#: ../../diskdrake/interactive.pm_.c:653
+#: ../../diskdrake/interactive.pm_.c:663
#, fuzzy
msgid "New size in MB: "
msgstr "Grandeco en MB: "
-#: ../../diskdrake/interactive.pm_.c:706
+#: ../../diskdrake/interactive.pm_.c:716
msgid "Which disk do you want to move it to?"
msgstr "Al kiu disko vi deziras movi?"
-#: ../../diskdrake/interactive.pm_.c:707
+#: ../../diskdrake/interactive.pm_.c:717
msgid "Sector"
msgstr "Sektoro"
-#: ../../diskdrake/interactive.pm_.c:708
+#: ../../diskdrake/interactive.pm_.c:718
msgid "Which sector do you want to move it to?"
msgstr "Al kiu sektoro vi deziras movi?"
-#: ../../diskdrake/interactive.pm_.c:711
+#: ../../diskdrake/interactive.pm_.c:721
msgid "Moving"
msgstr "Movante"
-#: ../../diskdrake/interactive.pm_.c:711
+#: ../../diskdrake/interactive.pm_.c:721
msgid "Moving partition..."
msgstr "Movas subdisko..."
-#: ../../diskdrake/interactive.pm_.c:728
+#: ../../diskdrake/interactive.pm_.c:738
msgid "Choose an existing RAID to add to"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:729 ../../diskdrake/interactive.pm_.c:746
+#: ../../diskdrake/interactive.pm_.c:739 ../../diskdrake/interactive.pm_.c:756
msgid "new"
msgstr "nova"
-#: ../../diskdrake/interactive.pm_.c:744
+#: ../../diskdrake/interactive.pm_.c:754
msgid "Choose an existing LVM to add to"
msgstr ""
"Elektu ekzistantan RAID (Redundanca Aro de Malmultekostaj Diskoj) por\n"
"aldoni al"
-#: ../../diskdrake/interactive.pm_.c:749
+#: ../../diskdrake/interactive.pm_.c:759
msgid "LVM name?"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:790
+#: ../../diskdrake/interactive.pm_.c:800
msgid "This partition can't be used for loopback"
msgstr "Vi ne povas uzi æi tiun subdiskon por retrokonektado"
-#: ../../diskdrake/interactive.pm_.c:803
+#: ../../diskdrake/interactive.pm_.c:813
msgid "Loopback"
msgstr "Retrokonektado"
-#: ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:814
msgid "Loopback file name: "
msgstr "Retrokonekta dosieronomo: "
-#: ../../diskdrake/interactive.pm_.c:809
+#: ../../diskdrake/interactive.pm_.c:819
#, fuzzy
msgid "Give a file name"
msgstr "Vera nomo"
-#: ../../diskdrake/interactive.pm_.c:812
+#: ../../diskdrake/interactive.pm_.c:822
msgid "File already used by another loopback, choose another one"
msgstr "Alia retrokonektado jam uzas tiun dosieron, elektu alian"
-#: ../../diskdrake/interactive.pm_.c:813
+#: ../../diskdrake/interactive.pm_.c:823
msgid "File already exists. Use it?"
msgstr "Dosiero jam ekzistas. Æu vi deziras uzi űin?"
-#: ../../diskdrake/interactive.pm_.c:836
+#: ../../diskdrake/interactive.pm_.c:846
#, fuzzy
msgid "Mount options"
msgstr "Modulaj opcioj:"
-#: ../../diskdrake/interactive.pm_.c:843
+#: ../../diskdrake/interactive.pm_.c:853
msgid "Various"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:907 ../../standalone/drakfloppy_.c:103
+#: ../../diskdrake/interactive.pm_.c:917 ../../standalone/drakfloppy_.c:103
msgid "device"
msgstr "aparato"
-#: ../../diskdrake/interactive.pm_.c:908
+#: ../../diskdrake/interactive.pm_.c:918
msgid "level"
msgstr "nivelo"
-#: ../../diskdrake/interactive.pm_.c:909
+#: ../../diskdrake/interactive.pm_.c:919
msgid "chunk size"
msgstr "grandeco de pecoj"
-#: ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:934
msgid "Be careful: this operation is dangerous."
msgstr "Zorgu: æi tiu operacio estas danűera."
-#: ../../diskdrake/interactive.pm_.c:939
+#: ../../diskdrake/interactive.pm_.c:949
msgid "What type of partitioning?"
msgstr "Kiun specon de subdiskado?"
-#: ../../diskdrake/interactive.pm_.c:955
+#: ../../diskdrake/interactive.pm_.c:965
#, fuzzy, c-format
msgid "The package %s is needed. Install it?"
msgstr ""
"Æi tiu pakaŒo devus esti promociata.\n"
"Æu vi certas ke vi deziras malelekti űin?"
-#: ../../diskdrake/interactive.pm_.c:969
+#: ../../diskdrake/interactive.pm_.c:979
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -2021,7 +2041,7 @@ msgstr ""
"Aę vi uzos LILO kaj űi ne funkcios, aę vi ne uzos LILO kaj vi ne bezonas\n"
"/boot."
-#: ../../diskdrake/interactive.pm_.c:973
+#: ../../diskdrake/interactive.pm_.c:983
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -2033,7 +2053,7 @@ msgstr ""
"subdiskon. Se vi intencas uzi la LILO startadministranto, zorgu aldoni\n"
"/boot subdiskon."
-#: ../../diskdrake/interactive.pm_.c:979
+#: ../../diskdrake/interactive.pm_.c:989
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
@@ -2043,139 +2063,139 @@ msgstr ""
"Neniu startțargilo povas trakti tiun sen /boot subdisko.\n"
"Do zorgu aldoni /boot subdiskon."
-#: ../../diskdrake/interactive.pm_.c:999
+#: ../../diskdrake/interactive.pm_.c:1009
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "La subdisktabelo de drajvo %s estos skribata al disko!"
-#: ../../diskdrake/interactive.pm_.c:1003
+#: ../../diskdrake/interactive.pm_.c:1013
msgid "You'll need to reboot before the modification can take place"
msgstr "Vi bezonos restarti antaę ol la țanűo povas efektiviűi"
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1024
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr ""
"Post vi formatas la subdiskon %s, æiuj datenoj en æi tiu subdisko estos\n"
"perdata"
-#: ../../diskdrake/interactive.pm_.c:1016
+#: ../../diskdrake/interactive.pm_.c:1026
msgid "Formatting"
msgstr "Formatas"
-#: ../../diskdrake/interactive.pm_.c:1017
+#: ../../diskdrake/interactive.pm_.c:1027
#, c-format
msgid "Formatting loopback file %s"
msgstr "Formatas retrokonektan dosieron %s"
-#: ../../diskdrake/interactive.pm_.c:1018
-#: ../../install_steps_interactive.pm_.c:476
+#: ../../diskdrake/interactive.pm_.c:1028
+#: ../../install_steps_interactive.pm_.c:459
#, c-format
msgid "Formatting partition %s"
msgstr "Formatas subdiskon %s"
-#: ../../diskdrake/interactive.pm_.c:1029
+#: ../../diskdrake/interactive.pm_.c:1039
#, fuzzy
msgid "Hide files"
msgstr "mkraid malsukcesis"
-#: ../../diskdrake/interactive.pm_.c:1029
+#: ../../diskdrake/interactive.pm_.c:1039
#, fuzzy
msgid "Move files to the new partition"
msgstr "Mankas sufiæan da libera spaco por disponigi novajn subdiskojn"
-#: ../../diskdrake/interactive.pm_.c:1030
+#: ../../diskdrake/interactive.pm_.c:1040
#, c-format
msgid ""
"Directory %s already contains data\n"
"(%s)"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1041
+#: ../../diskdrake/interactive.pm_.c:1051
#, fuzzy
msgid "Moving files to the new partition"
msgstr "Mankas sufiæan da libera spaco por disponigi novajn subdiskojn"
-#: ../../diskdrake/interactive.pm_.c:1045
+#: ../../diskdrake/interactive.pm_.c:1055
#, c-format
msgid "Copying %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1049
+#: ../../diskdrake/interactive.pm_.c:1059
#, fuzzy, c-format
msgid "Removing %s"
msgstr "Distingivo: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1059
+#: ../../diskdrake/interactive.pm_.c:1069
#, c-format
msgid "partition %s is now known as %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1080
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1090
+#: ../../diskdrake/interactive.pm_.c:1149
msgid "Device: "
msgstr "Aparato: "
-#: ../../diskdrake/interactive.pm_.c:1081
+#: ../../diskdrake/interactive.pm_.c:1091
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "DOS-a diskingolitero: %s (nur konjekto)\n"
-#: ../../diskdrake/interactive.pm_.c:1085
-#: ../../diskdrake/interactive.pm_.c:1093
-#: ../../diskdrake/interactive.pm_.c:1157
+#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1103
+#: ../../diskdrake/interactive.pm_.c:1168
msgid "Type: "
msgstr "Speco: "
-#: ../../diskdrake/interactive.pm_.c:1089
+#: ../../diskdrake/interactive.pm_.c:1099
msgid "Name: "
msgstr "Nomo: "
-#: ../../diskdrake/interactive.pm_.c:1097
+#: ../../diskdrake/interactive.pm_.c:1107
#, c-format
msgid "Start: sector %s\n"
msgstr "Komenco: sektoro %s\n"
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1108
#, c-format
msgid "Size: %s"
msgstr "Grandeco: %s"
-#: ../../diskdrake/interactive.pm_.c:1100
+#: ../../diskdrake/interactive.pm_.c:1110
#, c-format
msgid ", %s sectors"
msgstr ", %s sektoroj"
-#: ../../diskdrake/interactive.pm_.c:1102
+#: ../../diskdrake/interactive.pm_.c:1112
#, fuzzy, c-format
msgid "Cylinder %d to %d\n"
msgstr "De cilindro %d al cilindro %d\n"
-#: ../../diskdrake/interactive.pm_.c:1103
+#: ../../diskdrake/interactive.pm_.c:1113
msgid "Formatted\n"
msgstr "Formatita\n"
-#: ../../diskdrake/interactive.pm_.c:1104
+#: ../../diskdrake/interactive.pm_.c:1114
msgid "Not formatted\n"
msgstr "Ne formatita\n"
-#: ../../diskdrake/interactive.pm_.c:1105
+#: ../../diskdrake/interactive.pm_.c:1115
msgid "Mounted\n"
msgstr "Muntita\n"
-#: ../../diskdrake/interactive.pm_.c:1106
+#: ../../diskdrake/interactive.pm_.c:1116
#, c-format
msgid "RAID md%s\n"
msgstr "RAID (Redundanca Aro de Malmultekostaj Diskoj) md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1108
+#: ../../diskdrake/interactive.pm_.c:1118
#, fuzzy, c-format
msgid ""
"Loopback file(s):\n"
" %s\n"
msgstr "Retrokonekta(j) dosiero(j): %s\n"
-#: ../../diskdrake/interactive.pm_.c:1109
+#: ../../diskdrake/interactive.pm_.c:1119
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -2183,27 +2203,27 @@ msgstr ""
"Subdisko startata defaęlte\n"
" (por MS-DOS starto, ne por \"lilo\")\n"
-#: ../../diskdrake/interactive.pm_.c:1111
+#: ../../diskdrake/interactive.pm_.c:1121
#, c-format
msgid "Level %s\n"
msgstr "Nivelo %s\n"
-#: ../../diskdrake/interactive.pm_.c:1112
+#: ../../diskdrake/interactive.pm_.c:1122
#, c-format
msgid "Chunk size %s\n"
msgstr "Grandeco de pecoj %s\n"
-#: ../../diskdrake/interactive.pm_.c:1113
+#: ../../diskdrake/interactive.pm_.c:1123
#, c-format
msgid "RAID-disks %s\n"
msgstr "RAID-aj (Redundanca Aro de Malmultekostaj Diskoj) diskoj %s\n"
-#: ../../diskdrake/interactive.pm_.c:1115
+#: ../../diskdrake/interactive.pm_.c:1125
#, c-format
msgid "Loopback file name: %s"
msgstr "Retrokonekta dosieronomo: %s"
-#: ../../diskdrake/interactive.pm_.c:1118
+#: ../../diskdrake/interactive.pm_.c:1128
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -2211,7 +2231,7 @@ msgid ""
"probably leave it alone.\n"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1121
+#: ../../diskdrake/interactive.pm_.c:1131
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2219,60 +2239,64 @@ msgid ""
"dual-booting your system.\n"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1140
+#: ../../diskdrake/interactive.pm_.c:1150
+msgid "Read-only"
+msgstr ""
+
+#: ../../diskdrake/interactive.pm_.c:1151
#, c-format
msgid "Size: %s\n"
msgstr "Grandeco: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1141
+#: ../../diskdrake/interactive.pm_.c:1152
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Geometrio: %s cilindroj, %s kapoj, %s sektoroj\n"
-#: ../../diskdrake/interactive.pm_.c:1142
+#: ../../diskdrake/interactive.pm_.c:1153
msgid "Info: "
msgstr "Informo: "
-#: ../../diskdrake/interactive.pm_.c:1143
+#: ../../diskdrake/interactive.pm_.c:1154
#, c-format
msgid "LVM-disks %s\n"
msgstr "LVM-aj (Redundanca Aro de Malmultekostaj Diskoj) diskoj %s\n"
-#: ../../diskdrake/interactive.pm_.c:1144
+#: ../../diskdrake/interactive.pm_.c:1155
#, c-format
msgid "Partition table type: %s\n"
msgstr "Subdiskotabelospeco: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1145
+#: ../../diskdrake/interactive.pm_.c:1156
#, fuzzy, c-format
msgid "on channel %d id %d\n"
msgstr "æe buso %d identigaŒo %d\n"
-#: ../../diskdrake/interactive.pm_.c:1175
+#: ../../diskdrake/interactive.pm_.c:1186
#, fuzzy
msgid "Filesystem encryption key"
msgstr "Speco de dosiersistemo: "
-#: ../../diskdrake/interactive.pm_.c:1176
+#: ../../diskdrake/interactive.pm_.c:1187
msgid "Choose your filesystem encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1179
+#: ../../diskdrake/interactive.pm_.c:1190
#, fuzzy, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr ""
"Æi tiu pasvorto ests tro simpla (űi devas esti almenaę %d signoj longa)"
-#: ../../diskdrake/interactive.pm_.c:1180
+#: ../../diskdrake/interactive.pm_.c:1191
#, fuzzy
msgid "The encryption keys do not match"
msgstr "La pasvortoj ne egalas"
-#: ../../diskdrake/interactive.pm_.c:1183
+#: ../../diskdrake/interactive.pm_.c:1194
msgid "Encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1184
+#: ../../diskdrake/interactive.pm_.c:1195
msgid "Encryption key (again)"
msgstr ""
@@ -2311,7 +2335,7 @@ msgid ""
"Please enter your username, password and domain name to access this host."
msgstr ""
-#: ../../diskdrake/smbnfs_gtk.pm_.c:178
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3527
#, fuzzy
msgid "Username"
msgstr "Salutnomo"
@@ -2326,23 +2350,23 @@ msgstr "NIS Domajno"
msgid "Search servers"
msgstr "DNA servilo"
-#: ../../fs.pm_.c:552 ../../fs.pm_.c:562 ../../fs.pm_.c:566 ../../fs.pm_.c:570
-#: ../../fs.pm_.c:574 ../../fs.pm_.c:578
+#: ../../fs.pm_.c:544 ../../fs.pm_.c:554 ../../fs.pm_.c:558 ../../fs.pm_.c:562
+#: ../../fs.pm_.c:566 ../../fs.pm_.c:570
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s formatado de %s malsukcesis"
-#: ../../fs.pm_.c:615
+#: ../../fs.pm_.c:607
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "ne scias kiel formati %s kiel speco %s"
-#: ../../fs.pm_.c:687 ../../fs.pm_.c:731
+#: ../../fs.pm_.c:681 ../../fs.pm_.c:724
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../fs.pm_.c:746 ../../partition_table.pm_.c:602
+#: ../../fs.pm_.c:739 ../../partition_table.pm_.c:598
#, c-format
msgid "error unmounting %s: %s"
msgstr "eraro dum malmunti %s: %s"
@@ -2359,265 +2383,327 @@ msgstr ""
msgid "server"
msgstr "servilo"
-#: ../../fsedit.pm_.c:472
+#: ../../fsedit.pm_.c:240
+#, fuzzy, c-format
+msgid ""
+"I can't read the partition table of device %s, it's too corrupted for me :(\n"
+"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
+"The other solution is to not allow DrakX to modify the partition table.\n"
+"(the error is %s)\n"
+"\n"
+"Do you agree to loose all the partitions?\n"
+msgstr ""
+"Mi ne povas legi vian subdisktabelon, űi estas tro difektita por mi :(\n"
+"Mi povas peni daęri per blankigi difektitajn subdiskojn (ÆIOM DA DATUMO\n"
+"pereos!). La alia solvo estas malpermesi al DrakX țanűi la subdisktabelon.\n"
+"(la eraro estas %s)\n"
+"\n"
+"Æu vi konsentas perdi æiujn subdiskojn?\n"
+
+#: ../../fsedit.pm_.c:501
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr "Vi ne povas uzi JFS por subdisko pli malgranda ol 16MB"
-#: ../../fsedit.pm_.c:473
+#: ../../fsedit.pm_.c:502
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr "Vi ne povas uzi ReiserFS por subdisko pli malgranda ol 32MB"
-#: ../../fsedit.pm_.c:492
+#: ../../fsedit.pm_.c:521
msgid "Mount points must begin with a leading /"
msgstr "Surmetingoj devas komenci kun antaęa /"
-#: ../../fsedit.pm_.c:493
+#: ../../fsedit.pm_.c:522
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Jam estas subdisko kun surmetingo æe %s\n"
-#: ../../fsedit.pm_.c:497
+#: ../../fsedit.pm_.c:526
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr ""
-#: ../../fsedit.pm_.c:499
+#: ../../fsedit.pm_.c:528
msgid "This directory should remain within the root filesystem"
msgstr "Æi tiu dosierujo devus resti interne de la radika dosierosistemo (/)"
-#: ../../fsedit.pm_.c:501
+#: ../../fsedit.pm_.c:530
#, fuzzy
msgid ""
"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
"point\n"
msgstr "Vi bezonas veran dosiersistemon (ext2, reiserfs) por tiu surmetingo\n"
-#: ../../fsedit.pm_.c:503
+#: ../../fsedit.pm_.c:532
#, fuzzy, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr "Vi bezonas veran dosiersistemon (ext2, reiserfs) por tiu surmetingo\n"
-#: ../../fsedit.pm_.c:570
+#: ../../fsedit.pm_.c:599
#, fuzzy
msgid "Not enough free space for auto-allocating"
msgstr "Mankas sufiæan da libera spaco por disponigi novajn subdiskojn"
-#: ../../fsedit.pm_.c:572
+#: ../../fsedit.pm_.c:601
msgid "Nothing to do"
msgstr ""
-#: ../../fsedit.pm_.c:665
+#: ../../fsedit.pm_.c:694
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Eraro dum malfermado de %s por skribi: %s"
-#: ../../fsedit.pm_.c:750
+#: ../../harddrake/sound.pm_.c:155
+msgid "No alternative driver"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:156
+#, c-format
+msgid "There's no known OSS/ALSA alternative driver for your sound card (%s)"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:158
+#, fuzzy
+msgid "Sound configuration"
+msgstr "LAN KonfiguraŒo"
+
+#: ../../harddrake/sound.pm_.c:159
+#, c-format
msgid ""
-"An error occurred - no valid devices were found on which to create new "
-"filesystems. Please check your hardware for the cause of this problem"
+"Here you can select an alternative driver (either OSS or ALSA) for your "
+"sound card (%s)"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:162
+#, fuzzy
+msgid "Driver:"
+msgstr "Pelilo"
+
+#: ../../harddrake/sound.pm_.c:173
+msgid "No known driver"
msgstr ""
-"Eraro okazis - neniuj validaj aparatoj estis trovata sur kiuj vi povas krei "
-"novajn dosiersistemojn. Bonvolu kontroli vian ekipaŒon por la kaęzo de æi "
-"tiu problemo."
-#: ../../fsedit.pm_.c:773
-msgid "You don't have any partitions!"
-msgstr "Vi ne havas iujn ajn subdiskojn!"
+#: ../../harddrake/sound.pm_.c:174
+#, c-format
+msgid "There's no known driver for your sound card (%s)"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:177
+msgid "Unkown driver"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:178
+#, c-format
+msgid ""
+"The \"%s\" driver for your sound card is unlisted\n"
+"\n"
+"Please send the output of the \"lspcidrake -v\" command to\n"
+"<install at mandrakesoft dot com>\n"
+"with subject: unlisted sound driver \"%s\""
+msgstr ""
-#: ../../harddrake/ui.pm_.c:15
+#: ../../harddrake/ui.pm_.c:16
#, fuzzy
msgid "Model"
msgstr "Muso"
-#: ../../harddrake/ui.pm_.c:15
+#: ../../harddrake/ui.pm_.c:16
#, fuzzy
msgid "hard disk model"
msgstr "Memoro de Karto (DMA)"
-#: ../../harddrake/ui.pm_.c:16
+#: ../../harddrake/ui.pm_.c:17
#, fuzzy
msgid "Channel"
msgstr "Nuligu"
-#: ../../harddrake/ui.pm_.c:16
+#: ../../harddrake/ui.pm_.c:17
msgid "EIDE/SCSI channel"
msgstr ""
-#: ../../harddrake/ui.pm_.c:18
+#: ../../harddrake/ui.pm_.c:19
msgid "Bus"
msgstr ""
-#: ../../harddrake/ui.pm_.c:19
+#: ../../harddrake/ui.pm_.c:20
msgid ""
"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
msgstr ""
-#: ../../harddrake/ui.pm_.c:20
+#: ../../harddrake/ui.pm_.c:21
#, fuzzy
msgid "Module"
msgstr "Muso"
-#: ../../harddrake/ui.pm_.c:20
+#: ../../harddrake/ui.pm_.c:21
msgid "the module of the GNU/Linux kernel that handle that device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:21
+#: ../../harddrake/ui.pm_.c:22
msgid "Media class"
msgstr ""
-#: ../../harddrake/ui.pm_.c:21
+#: ../../harddrake/ui.pm_.c:22
msgid "class of hardware device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:22 ../../printerdrake.pm_.c:1404
+#: ../../harddrake/ui.pm_.c:23 ../../printerdrake.pm_.c:1517
msgid "Description"
msgstr "Priskribo"
-#: ../../harddrake/ui.pm_.c:22
+#: ../../harddrake/ui.pm_.c:23
msgid "this field describe the device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:24
+#: ../../harddrake/ui.pm_.c:25
#, fuzzy
msgid "Bus identification"
msgstr "Aętentikigado"
-#: ../../harddrake/ui.pm_.c:25
+#: ../../harddrake/ui.pm_.c:26
msgid ""
-"- PCI and USB devices : this list the vendor, device, subvendor and "
-"subdevice PCI/USB ids"
+"- PCI and USB devices: this list the vendor, device, subvendor and subdevice "
+"PCI/USB ids"
msgstr ""
-#: ../../harddrake/ui.pm_.c:27
+#: ../../harddrake/ui.pm_.c:28
msgid "Location on the bus"
msgstr ""
-#: ../../harddrake/ui.pm_.c:28
+#: ../../harddrake/ui.pm_.c:29
msgid ""
"- pci devices: this gives the PCI slot, device and function of this card\n"
"- eide devices: the device is either a slave or a master device\n"
"- scsi devices: the scsi bus and the scsi device ids"
msgstr ""
-#: ../../harddrake/ui.pm_.c:31
+#: ../../harddrake/ui.pm_.c:32
#, fuzzy
msgid "Old device file"
msgstr "Elektu dosieron"
-#: ../../harddrake/ui.pm_.c:32
+#: ../../harddrake/ui.pm_.c:33
msgid "old static device name used in dev package"
msgstr ""
-#: ../../harddrake/ui.pm_.c:33
+#: ../../harddrake/ui.pm_.c:34
#, fuzzy
msgid "New devfs device"
msgstr "Prokura kluzaparato"
-#: ../../harddrake/ui.pm_.c:34
+#: ../../harddrake/ui.pm_.c:35
msgid "new dinamic device name generated by incore kernel devfs"
msgstr ""
-#: ../../harddrake/ui.pm_.c:35
+#: ../../harddrake/ui.pm_.c:36
#, fuzzy
msgid "Number of buttons"
msgstr "2 butonoj"
-#: ../../harddrake/ui.pm_.c:36
+#: ../../harddrake/ui.pm_.c:37
msgid "the vendor name of the device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:60
+#: ../../harddrake/ui.pm_.c:38
+#, fuzzy
+msgid "Alternative drivers"
+msgstr "Printas provpaűo(j)n..."
+
+#: ../../harddrake/ui.pm_.c:39
+msgid "the list of alternative drivers for this sound card"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:63
#, fuzzy
msgid "/_Quit"
msgstr "Æesu"
-#: ../../harddrake/ui.pm_.c:61 ../../harddrake/ui.pm_.c:62
-#: ../../harddrake/ui.pm_.c:68 ../../standalone/logdrake_.c:110
+#: ../../harddrake/ui.pm_.c:64 ../../harddrake/ui.pm_.c:65
+#: ../../harddrake/ui.pm_.c:71 ../../standalone/logdrake_.c:110
msgid "/_Help"
msgstr "/_Helpo"
-#: ../../harddrake/ui.pm_.c:62
+#: ../../harddrake/ui.pm_.c:65
#, fuzzy
msgid "/_Help..."
msgstr "/_Helpo"
-#: ../../harddrake/ui.pm_.c:63
+#: ../../harddrake/ui.pm_.c:66
msgid "Harddrake help"
msgstr ""
-#: ../../harddrake/ui.pm_.c:64
+#: ../../harddrake/ui.pm_.c:67
msgid ""
"Description of the fields:\n"
"\n"
msgstr ""
-#: ../../harddrake/ui.pm_.c:68
+#: ../../harddrake/ui.pm_.c:71
#, fuzzy
msgid "/_About..."
msgstr "/Helpo/_Pri..."
-#: ../../harddrake/ui.pm_.c:69
+#: ../../harddrake/ui.pm_.c:72
msgid "About Harddrake"
msgstr ""
-#: ../../harddrake/ui.pm_.c:70
+#: ../../harddrake/ui.pm_.c:73
msgid ""
"This is HardDrake, a Mandrake hardware configuration tool.\n"
"Version:"
msgstr ""
-#: ../../harddrake/ui.pm_.c:71
+#: ../../harddrake/ui.pm_.c:74
#, fuzzy
msgid "Author:"
msgstr "Aętomate esploru"
-#: ../../harddrake/ui.pm_.c:83
+#: ../../harddrake/ui.pm_.c:86
#, fuzzy
msgid "Harddrake2 version "
msgstr "Detektado de fiksdisko(j)"
-#: ../../harddrake/ui.pm_.c:91
+#: ../../harddrake/ui.pm_.c:103
#, fuzzy
msgid "Detected hardware"
msgstr "Vidu hardvaran informon"
-#: ../../harddrake/ui.pm_.c:92
+#: ../../harddrake/ui.pm_.c:105
#, fuzzy
-msgid "Configure module"
-msgstr "Konfiguru muson"
+msgid "Information"
+msgstr "Montru informon"
-#: ../../harddrake/ui.pm_.c:92
+#: ../../harddrake/ui.pm_.c:108
#, fuzzy
-msgid "Informations"
-msgstr "Montru informon"
+msgid "Configure module"
+msgstr "Konfiguru muson"
-#: ../../harddrake/ui.pm_.c:92
+#: ../../harddrake/ui.pm_.c:109
msgid "Run config tool"
msgstr ""
-#: ../../harddrake/ui.pm_.c:96
+#: ../../harddrake/ui.pm_.c:113
#, fuzzy
msgid "Detection in progress"
msgstr "Duobla surmetingo %s"
-#: ../../harddrake/ui.pm_.c:96 ../../interactive.pm_.c:388
+#: ../../harddrake/ui.pm_.c:113 ../../interactive.pm_.c:391
msgid "Please wait"
msgstr "Bonvole atendu"
-#: ../../harddrake/ui.pm_.c:139
+#: ../../harddrake/ui.pm_.c:156
msgid "primary"
msgstr ""
-#: ../../harddrake/ui.pm_.c:139
+#: ../../harddrake/ui.pm_.c:156
#, fuzzy
msgid "secondary"
msgstr "%d sekundoj"
-#: ../../harddrake/ui.pm_.c:176
+#: ../../harddrake/ui.pm_.c:197
msgid "You can configure each parameter of the module here."
msgstr ""
-#: ../../harddrake/ui.pm_.c:192
+#: ../../harddrake/ui.pm_.c:213
#, fuzzy, c-format
msgid "Running \"%s\" ..."
msgstr "Legas datumbason de CUPS peliloj..."
@@ -2650,16 +2736,16 @@ msgstr ""
#: ../../harddrake/v4l.pm_.c:213
#, fuzzy
-msgid "Card model :"
+msgid "Card model:"
msgstr "Memoro de Karto (DMA)"
#: ../../harddrake/v4l.pm_.c:214
#, fuzzy
-msgid "Tuner type :"
+msgid "Tuner type:"
msgstr "Țanűu subdiskspecon"
#: ../../harddrake/v4l.pm_.c:215
-msgid "Number of capture buffers :"
+msgid "Number of capture buffers:"
msgstr ""
#: ../../harddrake/v4l.pm_.c:215
@@ -2668,11 +2754,11 @@ msgstr ""
#: ../../harddrake/v4l.pm_.c:217
#, fuzzy
-msgid "PLL setting :"
+msgid "PLL setting:"
msgstr "Formatas"
#: ../../harddrake/v4l.pm_.c:218
-msgid "Radio support :"
+msgid "Radio support:"
msgstr ""
#: ../../harddrake/v4l.pm_.c:218
@@ -2684,22 +2770,22 @@ msgid ""
"GNU/Linux is a multiuser system, and this means that each user can have his\n"
"own preferences, his own files and so on. You can read the ``User Guide''\n"
"to learn more. But unlike \"root\", which is the administrator, the users\n"
-"you will add here will not be entitled to change anything except their own\n"
-"files and their own configuration. You will have to create at least one\n"
-"regular user for yourself. That account is where you should log in for\n"
-"routine use. Although it is very practical to log in as \"root\" everyday,\n"
-"it may also be very dangerous! The slightest mistake could mean that your\n"
-"system would not work any more. If you make a serious mistake as a regular\n"
-"user, you may only lose some information, but not the entire system.\n"
+"you add here will not be entitled to change anything except their own files\n"
+"and their own configuration. You will have to create at least one regular\n"
+"user for yourself. That account is where you should log in for routine use.\n"
+"Although it is very practical to log in as \"root\" everyday, it may also\n"
+"be very dangerous! The slightest mistake could mean that your system would\n"
+"not work any more. If you make a serious mistake as a regular user, you may\n"
+"only lose some information, but not the entire system.\n"
"\n"
"First, you have to enter your real name. This is not mandatory, of course -\n"
"as you can actually enter whatever you want. DrakX will then take the first\n"
"word you have entered in the box and will bring it over to the \"User\n"
"name\". This is the name this particular user will use to log onto the\n"
"system. You can change it. You then have to enter a password here. A\n"
-"non-privileged (regular) user's password is not as crucial as \"root\"' one\n"
-"from a security point of view, but that is no reason to neglect it: after\n"
-"all, your files are at risk.\n"
+"non-privileged (regular) user's password is not as crucial as the \"root\"'\n"
+"one from a security point of view, but that is no reason to neglect it:\n"
+"after all, your files are at risk.\n"
"\n"
"If you click on \"Accept user\", you can then add as many as you want. Add\n"
"a user for each one of your friends: your father or your sister, for\n"
@@ -2778,7 +2864,7 @@ msgid ""
"to have a graphical workstation!\n"
"\n"
"Moving the mouse cursor over a group name will display a short explanatory\n"
-"text about that group. If you deselect all groups when performing a regular\n"
+"text about that group. If you unselect all groups when performing a regular\n"
"installation (by opposition to an upgrade), a dialog will pop up proposing\n"
"different options for a minimal installation:\n"
"\n"
@@ -2804,10 +2890,10 @@ msgstr ""
#: ../../help.pm_.c:128
msgid ""
-"Finally, depending on whether or not you selected individual packages, you\n"
-"will be presented a tree containing all packages classified by groups and\n"
-"subgroups. While browsing the tree, you can select entire groups,\n"
-"subgroups, or individual packages.\n"
+"Finally, depending on whether or not you chose to be able to select\n"
+"individual packages, you will be presented a tree containing all packages\n"
+"classified by groups and subgroups. While browsing the tree, you can select\n"
+"entire groups, subgroups, or individual packages.\n"
"\n"
"Whenever you select a package on the tree, a description appears on the\n"
"right. When your selection is finished, click the \"Install\" button which\n"
@@ -2842,11 +2928,11 @@ msgstr ""
#: ../../help.pm_.c:164
msgid ""
-"You are now proposed to set up your Internet/network connection. If you\n"
-"wish to connect your computer to the Internet or to a local network, click\n"
-"\"OK\". The autodetection of network devices and modem will be launched. If\n"
-"this detection fails, uncheck the \"Use auto detection\" box next time. You\n"
-"may also choose not to configure the network, or do it later; in that case,\n"
+"You are now able to set up your Internet/network connection. If you wish to\n"
+"connect your computer to the Internet or to a local network, click \"OK\".\n"
+"The autodetection of network devices and modem will be launched. If this\n"
+"detection fails, uncheck the \"Use auto detection\" box next time. You may\n"
+"also choose not to configure the network, or do it later; in that case,\n"
"simply click the \"Cancel\" button.\n"
"\n"
"Available connections are: traditional modem, ISDN modem, ADSL connection,\n"
@@ -2894,7 +2980,7 @@ msgstr ""
msgid ""
"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
"local time according to the time zone you selected. It is however possible\n"
-"to deactivate this by deselecting \"Hardware clock set to GMT\" so that the\n"
+"to deactivate this by unselecting \"Hardware clock set to GMT\" so that the\n"
"hardware clock is the same as the system clock. This is useful when the\n"
"machine is hosting another operating system like Windows.\n"
"\n"
@@ -2925,24 +3011,12 @@ msgid ""
"If you can see the message during the test, and answer \"Yes\", then DrakX\n"
"will proceed to the next step. If you cannot see the message, it simply\n"
"means that the configuration was wrong and the test will automatically end\n"
-"after 10 seconds, restoring the screen."
-msgstr ""
-
-#: ../../help.pm_.c:237
-msgid ""
-"The first time you try the X configuration, you may not be very satisfied\n"
-"with its display (screen is too small, shifted left or right...). Hence,\n"
-"even if X starts up correctly, DrakX then asks you if the configuration\n"
-"suits you. It will also propose to change it by displaying a list of valid\n"
-"modes it could find, asking you to select one.\n"
-"\n"
-"As a last resort, if you still cannot get X to work, choose \"Change\n"
-"graphics card\", select \"Unlisted card\", and when prompted on which\n"
-"server, choose \"FBDev\". This is a failsafe option which works with any\n"
-"modern graphics card. Then choose \"Test again\" to be sure."
+"after 10 seconds, restoring the screen. Refer then to the Video\n"
+"configuration section of the user guide for more information on how to\n"
+"configure your display."
msgstr ""
-#: ../../help.pm_.c:249
+#: ../../help.pm_.c:239
msgid ""
"Finally, you will be asked whether you want to see the graphical interface\n"
"at boot. Note this question will be asked even if you chose not to test the\n"
@@ -2951,7 +3025,7 @@ msgid ""
"configured."
msgstr ""
-#: ../../help.pm_.c:256
+#: ../../help.pm_.c:246
msgid ""
"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
@@ -2971,13 +3045,13 @@ msgid ""
"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
"password, or any other reason.\n"
"\n"
-"When you click on this step, you will be asked to enter a disk inside the\n"
-"drive. The floppy disk you will insert must be empty or contain data which\n"
-"you do not need. You will not have to format it since DrakX will rewrite\n"
-"the whole disk."
+"If you say \"Yes\", you will be asked to enter a disk inside the drive. The\n"
+"floppy disk you will insert must be empty or contain data which you do not\n"
+"need. You will not have to format it since DrakX will rewrite the whole\n"
+"disk."
msgstr ""
-#: ../../help.pm_.c:280
+#: ../../help.pm_.c:270
msgid ""
"At this point, you need to choose where you want to install the Mandrake\n"
"Linux operating system on your hard drive. If your hard drive is empty or\n"
@@ -3010,7 +3084,9 @@ msgid ""
"\n"
" * \"Use existing partition\": the wizard has detected one or more existing\n"
"Linux partitions on your hard drive. If you want to use them, choose this\n"
-"option;\n"
+"option. You will then be asked to choose the mount points associated to\n"
+"each of the partitions. The legacy mount points are selected by default,\n"
+"and you should generally keep them.\n"
"\n"
" * \"Use the free space on the Windows; partition\": if Microsoft Windows\n"
"is installed on your hard drive and takes all the space available on it,\n"
@@ -3043,10 +3119,12 @@ msgid ""
" * \"Expert mode\": choose this option if you want to manually partition\n"
"your hard drive. Be careful - it is a powerful but dangerous choice. You\n"
"can very easily lose all your data. Hence, do not choose this unless you\n"
-"know what you are doing."
+"know what you are doing. To know how do use the DiskDrake utility used\n"
+"here, refer to the section ``Managing Your Partitions'' of the ````User\n"
+"Guide''''"
msgstr ""
-#: ../../help.pm_.c:347
+#: ../../help.pm_.c:341
msgid ""
"There you are. Installation is now complete and your GNU/Linux system is\n"
"ready to use. Just click \"OK\" to reboot the system. You can start\n"
@@ -3079,7 +3157,7 @@ msgid ""
"\"mformat a:\")"
msgstr ""
-#: ../../help.pm_.c:378
+#: ../../help.pm_.c:372
msgid ""
"Any partitions that have been newly defined must be formatted for use\n"
"(formatting means creating a filesystem).\n"
@@ -3107,7 +3185,7 @@ msgid ""
"for bad blocks on the disk."
msgstr ""
-#: ../../help.pm_.c:404
+#: ../../help.pm_.c:398
msgid ""
"Your new Mandrake Linux operating system is currently being installed.\n"
"Depending on the number of packages you will be installing and the speed of\n"
@@ -3117,12 +3195,12 @@ msgid ""
"Please be patient."
msgstr ""
-#: ../../help.pm_.c:412
+#: ../../help.pm_.c:406
msgid ""
"At the time you are installing Mandrake Linux, it is likely that some\n"
"packages have been updated since the initial release. Some bugs may have\n"
"been fixed, and security issues solved. To allow you to benefit from these\n"
-"updates, you are now proposed to download them from the Internet. Choose\n"
+"updates, you are now able to download them from the Internet. Choose\n"
"\"Yes\" if you have a working Internet connection, or \"No\" if you prefer\n"
"to install updated packages later.\n"
"\n"
@@ -3132,7 +3210,7 @@ msgid ""
"install the selected package(s), or \"Cancel\" to abort."
msgstr ""
-#: ../../help.pm_.c:425
+#: ../../help.pm_.c:419
msgid ""
"Before continuing, you should read carefully the terms of the license. It\n"
"covers the whole Mandrake Linux distribution, and if you do not agree with\n"
@@ -3141,19 +3219,19 @@ msgid ""
"\"Accept\" button."
msgstr ""
-#: ../../help.pm_.c:432
+#: ../../help.pm_.c:426
msgid ""
"At this point, it is time to choose the security level desired for the\n"
"machine. As a rule of thumb, the more exposed the machine is, and the more\n"
"the data stored in it is crucial, the higher the security level should be.\n"
"However, a higher security level is generally obtained at the expense of\n"
-"easiness of use. Refer to the \"msec\" chapter of the ``Reference Manual''\n"
-"to get more information about the meaning of these levels.\n"
+"ease of use. Refer to the \"msec\" chapter of the ``Reference Manual'' to\n"
+"get more information about the meaning of these levels.\n"
"\n"
"If you do not know what to choose, keep the default option."
msgstr ""
-#: ../../help.pm_.c:442
+#: ../../help.pm_.c:436
msgid ""
"At this point, you need to choose which partition(s) will be used for the\n"
"installation of your Mandrake Linux system. If partitions have already been\n"
@@ -3170,26 +3248,26 @@ msgid ""
" * \"Clear all\": this option deletes all partitions on the selected hard\n"
"drive;\n"
"\n"
-" * \"Auto allocate\": this option enables to automatically create \"Ext2\"\n"
-"and swap partitions in free space of your hard drive;\n"
+" * \"Auto allocate\": this option enables to automatically create ext3 and\n"
+"swap partitions in free space of your hard drive;\n"
"\n"
-" * \"More\": gives access to additional features:\n"
+"\"More\": gives access to additional features:\n"
"\n"
-" * \"Save partition table\": saves the partition table to a floppy.\n"
-"Useful for later partition-table recovery if necessary. It is strongly\n"
-"recommended to perform this step;\n"
+" * \"Save partition table\": saves the partition table to a floppy. Useful\n"
+"for later partition-table recovery if necessary. It is strongly recommended\n"
+"to perform this step;\n"
"\n"
-" * \"Restore partition table\": allows to restore a previously saved\n"
+" * \"Restore partition table\": allows to restore a previously saved\n"
"partition table from floppy disk;\n"
"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you\n"
-"can try to recover it using this option. Please be careful and remember\n"
-"that it can fail;\n"
+" * \"Rescue partition table\": if your partition table is damaged, you can\n"
+"try to recover it using this option. Please be careful and remember that it\n"
+"can fail;\n"
"\n"
-" * \"Reload partition table\": discards all changes and loads your\n"
-"initial partition table;\n"
+" * \"Reload partition table\": discards all changes and loads your initial\n"
+"partition table;\n"
"\n"
-" * \"Removable media automounting\": unchecking this option will force\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
"users to manually mount and unmount removable medias such as floppies and\n"
"CD-ROMs.\n"
"\n"
@@ -3217,7 +3295,7 @@ msgid ""
" * Ctrl-m to set the mount point.\n"
"\n"
"To get information about the different filesystem types available, please\n"
-"read the ext2fs chapter from the ``Reference Manual''.\n"
+"read the ext2FS chapter from the ``Reference Manual''.\n"
"\n"
"If you are installing on a PPC machine, you will want to create a small HFS\n"
"``bootstrap'' partition of at least 1MB, which will be used by the yaboot\n"
@@ -3226,7 +3304,7 @@ msgid ""
"emergency boot situations."
msgstr ""
-#: ../../help.pm_.c:513
+#: ../../help.pm_.c:507
msgid ""
"More than one Microsoft partition has been detected on your hard drive.\n"
"Please choose the one you want to resize in order to install your new\n"
@@ -3259,34 +3337,34 @@ msgid ""
"disk or partition is called \"C:\")."
msgstr ""
-#: ../../help.pm_.c:544
+#: ../../help.pm_.c:538
msgid "Please be patient. This operation can take several minutes."
msgstr ""
-#: ../../help.pm_.c:547
+#: ../../help.pm_.c:541
msgid ""
"DrakX now needs to know if you want to perform a default (\"Recommended\")\n"
"installation or if you want to have greater control (\"Expert\"). You can\n"
"also choose to do a new install or an upgrade of an existing Mandrake Linux\n"
"system:\n"
"\n"
-" * \"Install\": completely wipes out the old system. In fact, depending on\n"
-"what currently holds your machine, you will be able to keep some old (Linux\n"
-"or other) partitions unchanged;\n"
+" * \"Install\": completely wipes out the old system, however, depending on\n"
+"what is currently installed on your machine, you may be able to keep some\n"
+"old partitions (Linux or otherwise) unchanged;\n"
"\n"
" * \"Upgrade\": this installation class allows to simply update the\n"
"packages currently installed on your Mandrake Linux system. It keeps the\n"
"current partitions of your hard drives as well as user configurations. All\n"
-"other configuration steps remain available with respect to plain\n"
+"other configuration steps remain available, similar to a normal\n"
"installation;\n"
"\n"
-" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
-"existing Mandrake Linux system while keeping all system configurations\n"
-"unchanged. Adding new packages to the current installation is also\n"
-"possible.\n"
+" * \"Upgrade Packages Only\": this new installation class allows you to\n"
+"upgrade an existing Mandrake Linux system while keeping all system\n"
+"configurations unchanged. Adding new packages to the current installation\n"
+"is also possible.\n"
"\n"
-"Upgrades should work fine for Mandrake Linux systems starting from \"8.1\"\n"
-"release.\n"
+"Upgrades should work fine on Mandrake Linux systems containing version\n"
+"\"8.1\" or later.\n"
"\n"
"Depending on your knowledge of GNU/Linux, select one of the following\n"
"choices:\n"
@@ -3295,30 +3373,35 @@ msgid ""
"operating system. The installation will be very easy and you will only be\n"
"asked a few questions;\n"
"\n"
-" * Expert: if you have a good knowledge of GNU/Linux, you can choose this\n"
-"installation class. The expert installation will allow you to perform a\n"
-"highly-customized installation. Answering some of the questions can be\n"
-"difficult if you do not have a good knowledge of GNU/Linux, so do not\n"
-"choose this unless you know what you are doing."
+" * Expert: if you have a good understanding of GNU/Linux, you may wish to\n"
+"perform a highly customized installation. Some of the decisions you will\n"
+"have to make may be difficult if you do not have good knowledge of\n"
+"GNU/Linux, so it is not recommended that those without a fair amount of\n"
+"experience select this installation class."
msgstr ""
-#: ../../help.pm_.c:584
+#: ../../help.pm_.c:578
msgid ""
"Normally, DrakX selects the right keyboard for you (depending on the\n"
-"language you have chosen) and you won't even see this step. However, you\n"
-"might not have a keyboard that corresponds exactly to your language: for\n"
-"example, if you are an English speaking Swiss person, you may still want\n"
-"your keyboard to be a Swiss keyboard. Or if you speak English but are\n"
-"located in Quebec, you may find yourself in the same situation. In both\n"
-"cases, you will have to go back to this installation step and select an\n"
-"appropriate keyboard from the list.\n"
+"language you have chosen). However, you might not have a keyboard that\n"
+"corresponds exactly to your language: for example, if you are an English\n"
+"speaking Swiss person, you may still want your keyboard to be a Swiss\n"
+"keyboard. Or if you speak English but are located in Quebec, you may find\n"
+"yourself in the same situation. In both cases, you will have to go back to\n"
+"this installation step and select an appropriate keyboard from the list.\n"
"\n"
"Click on the \"More\" button to be presented with the complete list of\n"
-"supported keyboards."
+"supported keyboards.\n"
+"\n"
+"If you choose a keyboard layout based on a non-latin alphabet, you will be\n"
+"asked on next dialog to choose the key binding that will switch the\n"
+"keyboard layout between the latin and non latin layouts."
msgstr ""
-#: ../../help.pm_.c:597
+#: ../../help.pm_.c:594
msgid ""
+"The first step is to choose your preferred language.\n"
+"\n"
"Please choose your preferred language for installation and system usage.\n"
"\n"
"Clicking on the \"Advanced\" button will allow you to select other\n"
@@ -3332,7 +3415,7 @@ msgid ""
"additional locales, click the \"OK\" button to continue."
msgstr ""
-#: ../../help.pm_.c:610
+#: ../../help.pm_.c:609
msgid ""
"DrakX generally detects the number of buttons your mouse has. If not, it\n"
"assumes you have a two-button mouse and will set it up for third-button\n"
@@ -3345,10 +3428,17 @@ msgid ""
"If you choose a mouse other than the default, a test screen will be\n"
"displayed. Use the buttons and wheel to verify that the settings are\n"
"correct. If the mouse is not working well, press the space bar or [Return]\n"
-"to \"Cancel\" and choose again."
+"to \"Cancel\" and choose again.\n"
+"\n"
+"Wheel mouses are sometimes not automatically detected. You will need to\n"
+"manually select it in the list. Be sure to select the one corresponding to\n"
+"the correct port it is attached to. After you have pressed the \"OK\"\n"
+"button, a mouse image is displayed. You then need to move the wheel of your\n"
+"mouse to activate it correctly. Then test all buttons and movements are\n"
+"correct."
msgstr ""
-#: ../../help.pm_.c:624
+#: ../../help.pm_.c:630
#, fuzzy
msgid ""
"Please select the correct port. For example, the \"COM1\" port under\n"
@@ -3357,7 +3447,7 @@ msgstr ""
"Bonvolu elekti la űustan pordon. Ekzemple, la COM1-a\n"
"pordo sub MS Vindozo estas nomata ttyS0 sub GNU/Linukso."
-#: ../../help.pm_.c:628
+#: ../../help.pm_.c:634
msgid ""
"This is the most crucial decision point for the security of your GNU/Linux\n"
"system: you have to enter the \"root\" password. \"root\" is the system\n"
@@ -3387,15 +3477,15 @@ msgid ""
"In Expert mode, you will be asked if you will be connecting to an\n"
"authentication server, like NIS or LDAP.\n"
"\n"
-"If your network uses the LDAP (or NIS) protocol for authentication, select\n"
-"\"LDAP\" (or \"NIS\") as authentication. If you do not know, ask your\n"
-"network administrator.\n"
+"If your network uses either of the LDAP, NIS, or PDC Windows Domain\n"
+"authentication services, select the appropriate one as \"authentication\".\n"
+"If you do not know, ask your network administrator.\n"
"\n"
"If your computer is not connected to any administrated network, you will\n"
"want to choose \"Local files\" for authentication."
msgstr ""
-#: ../../help.pm_.c:664
+#: ../../help.pm_.c:670
msgid ""
"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
@@ -3434,8 +3524,12 @@ msgid ""
"options. !!\n"
"\n"
"Clicking the \"Advanced\" button in this dialog will offer many advanced\n"
-"options, which are reserved to the expert user.\n"
-"\n"
+"options, which are reserved for the expert user."
+msgstr ""
+
+#: ../../help.pm_.c:710
+#, fuzzy
+msgid ""
"After you have configured the general bootloader parameters, the list of\n"
"boot options which will be available at boot time will be displayed.\n"
"\n"
@@ -3443,17 +3537,7 @@ msgid ""
"automatically be added to the boot menu. Here, you can choose to fine-tune\n"
"the existing options. Select an entry and click \"Modify\" to modify or\n"
"remove it; \"Add\" creates a new entry; and \"Done\" goes on to the next\n"
-"installation step."
-msgstr ""
-
-#: ../../help.pm_.c:713
-#, fuzzy
-msgid ""
-"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
-"either GNU/Linux or any other operating system present on your computer.\n"
-"Normally, these other operating systems are correctly detected and\n"
-"installed. If this is not the case, you can add an entry by hand in this\n"
-"screen. Be careful to choose the correct parameters.\n"
+"installation step.\n"
"\n"
"You may also not want to give access to these other operating systems to\n"
"anyone. In which case, you can delete the corresponding entries. But then,\n"
@@ -3519,18 +3603,18 @@ msgstr ""
#: ../../help.pm_.c:759
#, fuzzy
msgid ""
-"DrakX now detects any IDE device present in your computer. It will also\n"
-"scan for one or more PCI SCSI card(s) on your system. If a SCSI card is\n"
+"DrakX now detects any IDE devices present in your computer. It will also\n"
+"scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
"found, DrakX will automatically install the appropriate driver.\n"
"\n"
"Because hardware detection does not always detect a piece of hardware,\n"
"DrakX will ask you to confirm if a PCI SCSI card is present. Click \"Yes\"\n"
"if you know that there is a SCSI card installed in your machine. You will\n"
-"be presented a list of SCSI cards to choose from. Click \"No\" if you have\n"
-"no SCSI hardware. If you are unsure, you can check the list of hardware\n"
-"detected in your machine by selecting \"See hardware info\" and clicking\n"
-"\"OK\". Examine the list of hardware and then click on the \"OK\" button to\n"
-"return to the SCSI interface question.\n"
+"be presented with a list of SCSI cards to choose from. Click \"No\" if you\n"
+"have no SCSI hardware. If you are unsure, you can check the list of\n"
+"hardware detected in your machine by selecting \"See hardware info\" and\n"
+"clicking \"OK\". Examine the list of hardware and then click on the \"OK\"\n"
+"button to return to the SCSI interface question.\n"
"\n"
"If you have to manually specify your adapter, DrakX will ask if you want to\n"
"specify options for it. You should allow DrakX to probe the hardware for\n"
@@ -3667,7 +3751,9 @@ msgid ""
"order to configure the clock according to the time zone you are in;\n"
"\n"
" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
-"configuration wizard;\n"
+"configuration wizard. Consult the corresponding chapter of the ``User\n"
+"Guide'' for more information on how to setup a new printer. The interface\n"
+"presented there is similar to the one used during installation;\n"
"\n"
" * \"Sound card\": if a sound card is detected on your system, it is\n"
"displayed here. No modification possible at installation time;\n"
@@ -3680,14 +3766,14 @@ msgid ""
"associated with it."
msgstr ""
-#: ../../help.pm_.c:894
+#: ../../help.pm_.c:896
msgid ""
"Choose the hard drive you want to erase in order to install your new\n"
"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
"and will not be recoverable!"
msgstr ""
-#: ../../help.pm_.c:899
+#: ../../help.pm_.c:901
msgid ""
"Click on \"OK\" if you want to delete all data and partitions present on\n"
"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
@@ -3711,7 +3797,7 @@ msgstr ""
msgid "You must also format %s"
msgstr ""
-#: ../../install_any.pm_.c:418
+#: ../../install_any.pm_.c:423
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -3726,30 +3812,48 @@ msgid ""
"Do you really want to install these servers?\n"
msgstr ""
-#: ../../install_any.pm_.c:453
+#: ../../install_any.pm_.c:441
+#, c-format
+msgid ""
+"The following packages will be removed to allow upgrading your system: %s\n"
+"\n"
+"\n"
+"Do you really want to remove these packages?\n"
+msgstr ""
+
+#: ../../install_any.pm_.c:471
msgid "Can't use broadcast with no NIS domain"
msgstr ""
-#: ../../install_any.pm_.c:841
+#: ../../install_any.pm_.c:862
#, fuzzy, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Ențovu disketon en drajvo %s"
-#: ../../install_any.pm_.c:845
+#: ../../install_any.pm_.c:866
msgid "This floppy is not FAT formatted"
msgstr ""
-#: ../../install_any.pm_.c:857
+#: ../../install_any.pm_.c:878
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
msgstr ""
-#: ../../install_any.pm_.c:880 ../../partition_table.pm_.c:771
+#: ../../install_any.pm_.c:901 ../../partition_table.pm_.c:767
#, c-format
msgid "Error reading file %s"
msgstr "Eraro legante dosiero %s"
+#: ../../install_any.pm_.c:1023
+msgid ""
+"An error occurred - no valid devices were found on which to create new "
+"filesystems. Please check your hardware for the cause of this problem"
+msgstr ""
+"Eraro okazis - neniuj validaj aparatoj estis trovata sur kiuj vi povas krei "
+"novajn dosiersistemojn. Bonvolu kontroli vian ekipaŒon por la kaęzo de æi "
+"tiu problemo."
+
#: ../../install_interactive.pm_.c:23
#, c-format
msgid ""
@@ -3784,61 +3888,61 @@ msgstr ""
"\n"
"Æu vi deziras daęri tamen?"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:168
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:169
#, fuzzy
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "Vi devas havi interțanűan subdiskon"
-#: ../../install_interactive.pm_.c:91
+#: ../../install_interactive.pm_.c:92
msgid "Use free space"
msgstr "Uzu liberan spacon"
-#: ../../install_interactive.pm_.c:93
+#: ../../install_interactive.pm_.c:94
msgid "Not enough free space to allocate new partitions"
msgstr "Mankas sufiæan da libera spaco por disponigi novajn subdiskojn"
-#: ../../install_interactive.pm_.c:101
+#: ../../install_interactive.pm_.c:102
msgid "Use existing partitions"
msgstr "Uzu ekzistantajn subdiskojn"
-#: ../../install_interactive.pm_.c:103
+#: ../../install_interactive.pm_.c:104
msgid "There is no existing partition to use"
msgstr "Ne ekzistas subdiskojn por uzi"
-#: ../../install_interactive.pm_.c:110
+#: ../../install_interactive.pm_.c:111
msgid "Use the Windows partition for loopback"
msgstr "Uzu la Vindoza subdiskon por retrokonektado"
-#: ../../install_interactive.pm_.c:113
+#: ../../install_interactive.pm_.c:114
#, fuzzy
msgid "Which partition do you want to use for Linux4Win?"
msgstr "Kiun subdiskon vi deziras uzi por meti Linux4Win?"
-#: ../../install_interactive.pm_.c:115
+#: ../../install_interactive.pm_.c:116
msgid "Choose the sizes"
msgstr "Elektu la grandecojn"
-#: ../../install_interactive.pm_.c:116
+#: ../../install_interactive.pm_.c:117
msgid "Root partition size in MB: "
msgstr "Radikosubdiska grandeco en MB: "
-#: ../../install_interactive.pm_.c:117
+#: ../../install_interactive.pm_.c:118
msgid "Swap partition size in MB: "
msgstr "Interțanűa subdiska grandeco en MB: "
-#: ../../install_interactive.pm_.c:126
+#: ../../install_interactive.pm_.c:128
msgid "Use the free space on the Windows partition"
msgstr "Uzu la liberan spacon sur la Vindoza subdisko"
-#: ../../install_interactive.pm_.c:129
+#: ../../install_interactive.pm_.c:131
msgid "Which partition do you want to resize?"
msgstr "Kiun subdiskon vi deziras regrandecigi?"
-#: ../../install_interactive.pm_.c:131
+#: ../../install_interactive.pm_.c:133
msgid "Resizing Windows partition"
msgstr "Kalkulas Vindozajn dosiersistemajn limojn"
-#: ../../install_interactive.pm_.c:134
+#: ../../install_interactive.pm_.c:136
#, c-format
msgid ""
"The FAT resizer is unable to handle your partition, \n"
@@ -3847,7 +3951,7 @@ msgstr ""
"La regrandecigilo por la FAT (Dosiero-Atingo-Tablo) ne povas trakti\n"
"vian subdiskon, la sekvanta eraro okazis: %s"
-#: ../../install_interactive.pm_.c:137
+#: ../../install_interactive.pm_.c:139
msgid ""
"Your Windows partition is too fragmented. Please reboot your computer under "
"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
@@ -3855,7 +3959,7 @@ msgid ""
msgstr ""
"Via Vindoza subdisko estas tro fragmentigata, bonvole uzu ``defrag'' antaęe"
-#: ../../install_interactive.pm_.c:138
+#: ../../install_interactive.pm_.c:140
#, fuzzy
msgid ""
"WARNING!\n"
@@ -3877,21 +3981,21 @@ msgstr ""
"instaladon. Ankaę vi devus fari rezervan kopion de via dateno.\n"
"Kiam vi estas certa, klaku \"Jeso\"."
-#: ../../install_interactive.pm_.c:148
+#: ../../install_interactive.pm_.c:150
msgid "Which size do you want to keep for Windows on"
msgstr "Kiun grandecon vi deziras teni por Vindozo?"
-#: ../../install_interactive.pm_.c:149
+#: ../../install_interactive.pm_.c:151
#, c-format
msgid "partition %s"
msgstr "subdisko: %s"
-#: ../../install_interactive.pm_.c:156
+#: ../../install_interactive.pm_.c:158
#, c-format
msgid "FAT resizing failed: %s"
msgstr "Regrandeciűo de FAT malsukcesis: %s"
-#: ../../install_interactive.pm_.c:171
+#: ../../install_interactive.pm_.c:173
msgid ""
"There is no FAT partition to resize or to use as loopback (or not enough "
"space left)"
@@ -3899,34 +4003,34 @@ msgstr ""
"Ne ekzistas FAT-ajn (Dosiero-Atingo-Tablo) subdiskojn por regrandecigi\n"
"aę uzi kiel retrokonektaj subdiskoj (aę ne estas sufiæa da spaco)"
-#: ../../install_interactive.pm_.c:177
+#: ../../install_interactive.pm_.c:179
msgid "Erase entire disk"
msgstr "Forvițu la tutan diskon"
-#: ../../install_interactive.pm_.c:177
+#: ../../install_interactive.pm_.c:179
msgid "Remove Windows(TM)"
msgstr "Forigu Vindozon"
-#: ../../install_interactive.pm_.c:180
+#: ../../install_interactive.pm_.c:182
msgid "You have more than one hard drive, which one do you install linux on?"
msgstr "Vi havas pli ol unu fiksdisko, sur kiu vi deziras instali Linukson?"
-#: ../../install_interactive.pm_.c:183
+#: ../../install_interactive.pm_.c:185
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr ""
"Æiuj ekzistantaj subdiskoj kaj iliaj datenoj estos perdata sur drajvo %s"
-#: ../../install_interactive.pm_.c:191
+#: ../../install_interactive.pm_.c:193
#, fuzzy
msgid "Custom disk partitioning"
msgstr "Uzu ekzistantajn subdiskojn"
-#: ../../install_interactive.pm_.c:195
+#: ../../install_interactive.pm_.c:197
msgid "Use fdisk"
msgstr "Uzu fdisk"
-#: ../../install_interactive.pm_.c:198
+#: ../../install_interactive.pm_.c:200
#, c-format
msgid ""
"You can now partition %s.\n"
@@ -3935,30 +4039,30 @@ msgstr ""
"Nun vi povas dispartigi %s.\n"
"Kiam vi finiűos, ne forgesu savi kun `w'."
-#: ../../install_interactive.pm_.c:227
+#: ../../install_interactive.pm_.c:229
#, fuzzy
msgid "You don't have enough free space on your Windows partition"
msgstr "Uzu la liberan spacon sur la Vindoza subdisko"
-#: ../../install_interactive.pm_.c:243
+#: ../../install_interactive.pm_.c:245
#, fuzzy
msgid "I can't find any room for installing"
msgstr "Mi ne povas aldoni plu da subdiskoj"
-#: ../../install_interactive.pm_.c:246
+#: ../../install_interactive.pm_.c:248
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr "La Dispartigsoræilo de DrakX trovis æi tiujn solvojn:"
-#: ../../install_interactive.pm_.c:250
+#: ../../install_interactive.pm_.c:252
#, c-format
msgid "Partitioning failed: %s"
msgstr "Dispartigado malsukcesis: %s"
-#: ../../install_interactive.pm_.c:260
+#: ../../install_interactive.pm_.c:262
msgid "Bringing up the network"
msgstr "Startado de la reto"
-#: ../../install_interactive.pm_.c:265
+#: ../../install_interactive.pm_.c:267
msgid "Bringing down the network"
msgstr "Haltas de la reto"
@@ -3970,12 +4074,12 @@ msgstr ""
"Eraro okazis, sed mi ne scias kiel trakti űin bone.\n"
"Daęri je via propra risko."
-#: ../../install_steps.pm_.c:210
+#: ../../install_steps.pm_.c:211
#, c-format
msgid "Duplicate mount point %s"
msgstr "Duobla surmetingo %s"
-#: ../../install_steps.pm_.c:379
+#: ../../install_steps.pm_.c:380
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -3987,12 +4091,12 @@ msgstr ""
"Kontrolu la KDROM sur instalata komputilo per\n"
"\"rpm -qpl Mandrake/RPMS/*.rpm\"\n"
-#: ../../install_steps.pm_.c:451
+#: ../../install_steps.pm_.c:452
#, c-format
msgid "Welcome to %s"
msgstr "Bonvenon al %s"
-#: ../../install_steps.pm_.c:530 ../../install_steps.pm_.c:770
+#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:772
msgid "No floppy drive available"
msgstr "Neniu disketilo havebla"
@@ -4023,71 +4127,71 @@ msgstr "Instalklaso"
msgid "Please choose one of the following classes of installation:"
msgstr "Bonvole, elektu unu el la sekvantaj specoj de instalado:"
-#: ../../install_steps_gtk.pm_.c:243 ../../install_steps_interactive.pm_.c:694
+#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:678
msgid "Package Group Selection"
msgstr "Elektado de PakaŒaj Grupoj"
-#: ../../install_steps_gtk.pm_.c:276 ../../install_steps_interactive.pm_.c:709
+#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:693
msgid "Individual package selection"
msgstr "Elektado de individuaj pakaŒoj"
-#: ../../install_steps_gtk.pm_.c:299 ../../install_steps_interactive.pm_.c:633
+#: ../../install_steps_gtk.pm_.c:293 ../../install_steps_interactive.pm_.c:617
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Tuta grandeco: %d / %d MB"
-#: ../../install_steps_gtk.pm_.c:341
+#: ../../install_steps_gtk.pm_.c:335
msgid "Bad package"
msgstr "Malbona pakaŒo"
-#: ../../install_steps_gtk.pm_.c:342
+#: ../../install_steps_gtk.pm_.c:336
#, c-format
msgid "Name: %s\n"
msgstr "Nomo: %s\n"
-#: ../../install_steps_gtk.pm_.c:343
+#: ../../install_steps_gtk.pm_.c:337
#, c-format
msgid "Version: %s\n"
msgstr "Versio: %s\n"
-#: ../../install_steps_gtk.pm_.c:344
+#: ../../install_steps_gtk.pm_.c:338
#, c-format
msgid "Size: %d KB\n"
msgstr "Grandeco: %d KB\n"
-#: ../../install_steps_gtk.pm_.c:345
+#: ../../install_steps_gtk.pm_.c:339
#, c-format
msgid "Importance: %s\n"
msgstr "Graveco: %s\n"
-#: ../../install_steps_gtk.pm_.c:367
+#: ../../install_steps_gtk.pm_.c:361
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr ""
"Vi ne povas elekti æi tiun pakaŒon æar ne estas sufiæe da spaco por instali\n"
"űin."
-#: ../../install_steps_gtk.pm_.c:372
+#: ../../install_steps_gtk.pm_.c:366
msgid "The following packages are going to be installed"
msgstr "La sekvaj pakaŒoj estos instalataj"
-#: ../../install_steps_gtk.pm_.c:373
+#: ../../install_steps_gtk.pm_.c:367
msgid "The following packages are going to be removed"
msgstr "La sekvaj pakaŒoj estos malinstalataj"
-#: ../../install_steps_gtk.pm_.c:385
+#: ../../install_steps_gtk.pm_.c:379
msgid "You can't select/unselect this package"
msgstr "Vi ne povas elektu/malelektu æi tiun pakaŒon"
-#: ../../install_steps_gtk.pm_.c:397
+#: ../../install_steps_gtk.pm_.c:391
msgid "This is a mandatory package, it can't be unselected"
msgstr "Æi tiu estas deviga pakaŒo, vi ne povas malelekti űin"
-#: ../../install_steps_gtk.pm_.c:399
+#: ../../install_steps_gtk.pm_.c:393
msgid "You can't unselect this package. It is already installed"
msgstr "Vi ne povas malelekti æi tiun pakaŒon. Űi estas jam instalita."
-#: ../../install_steps_gtk.pm_.c:402
+#: ../../install_steps_gtk.pm_.c:396
msgid ""
"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
@@ -4095,77 +4199,77 @@ msgstr ""
"Æi tiu pakaŒo devus esti promociata.\n"
"Æu vi certas ke vi deziras malelekti űin?"
-#: ../../install_steps_gtk.pm_.c:405
+#: ../../install_steps_gtk.pm_.c:399
msgid "You can't unselect this package. It must be upgraded"
msgstr "Vi ne povas malelekti æi tiun pakaŒon. Űi devus esti promociata."
-#: ../../install_steps_gtk.pm_.c:410
+#: ../../install_steps_gtk.pm_.c:404
msgid "Show automatically selected packages"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:411 ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_gtk.pm_.c:405 ../../install_steps_interactive.pm_.c:255
#: ../../install_steps_interactive.pm_.c:259
-#: ../../standalone/drakbackup_.c:3600
+#: ../../standalone/drakbackup_.c:4257
msgid "Install"
msgstr "Instalu"
-#: ../../install_steps_gtk.pm_.c:414
+#: ../../install_steps_gtk.pm_.c:408
msgid "Load/Save on floppy"
msgstr "Țargu/Konservu sur disketo"
-#: ../../install_steps_gtk.pm_.c:415
+#: ../../install_steps_gtk.pm_.c:409
#, fuzzy
msgid "Updating package selection"
msgstr "Elektado de individuaj pakaŒoj"
-#: ../../install_steps_gtk.pm_.c:420
+#: ../../install_steps_gtk.pm_.c:414
#, fuzzy
msgid "Minimal install"
msgstr "Eliru instalprogramon"
-#: ../../install_steps_gtk.pm_.c:435 ../../install_steps_interactive.pm_.c:538
+#: ../../install_steps_gtk.pm_.c:429 ../../install_steps_interactive.pm_.c:522
msgid "Choose the packages you want to install"
msgstr "Elektu la pakaŒojn kiuj vi deziras instali"
-#: ../../install_steps_gtk.pm_.c:451 ../../install_steps_interactive.pm_.c:778
+#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:762
msgid "Installing"
msgstr "Instalanta"
-#: ../../install_steps_gtk.pm_.c:457
+#: ../../install_steps_gtk.pm_.c:451
msgid "Estimating"
msgstr "Taksas"
-#: ../../install_steps_gtk.pm_.c:464
+#: ../../install_steps_gtk.pm_.c:458
msgid "Time remaining "
msgstr "Tempo restanta "
-#: ../../install_steps_gtk.pm_.c:476
+#: ../../install_steps_gtk.pm_.c:470
#, fuzzy
msgid "Please wait, preparing installation..."
msgstr "Preparas instaladon"
-#: ../../install_steps_gtk.pm_.c:560
+#: ../../install_steps_gtk.pm_.c:554
#, c-format
msgid "%d packages"
msgstr "%d pakaŒoj"
-#: ../../install_steps_gtk.pm_.c:565
+#: ../../install_steps_gtk.pm_.c:559
#, c-format
msgid "Installing package %s"
msgstr "Instalanta pakaŒo %s"
-#: ../../install_steps_gtk.pm_.c:602 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:802
+#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:786
#: ../../standalone/drakautoinst_.c:202
msgid "Accept"
msgstr "Akceptu"
-#: ../../install_steps_gtk.pm_.c:602 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:802
+#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:786
msgid "Refuse"
msgstr "Malakceptu"
-#: ../../install_steps_gtk.pm_.c:603 ../../install_steps_interactive.pm_.c:803
+#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:787
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4181,17 +4285,17 @@ msgstr ""
"kiam vi finos.\n"
"Se vi ne havas űin, klaku \"Nuligu\" por eviti la instaladon de æi tiu KDROM."
-#: ../../install_steps_gtk.pm_.c:617 ../../install_steps_gtk.pm_.c:621
-#: ../../install_steps_interactive.pm_.c:815
-#: ../../install_steps_interactive.pm_.c:819
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_gtk.pm_.c:615
+#: ../../install_steps_interactive.pm_.c:799
+#: ../../install_steps_interactive.pm_.c:803
msgid "Go on anyway?"
msgstr "Æu vi deziras daęri tamen?"
-#: ../../install_steps_gtk.pm_.c:617 ../../install_steps_interactive.pm_.c:815
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:799
msgid "There was an error ordering packages:"
msgstr "Estis eraro ordigi pakaŒojn:"
-#: ../../install_steps_gtk.pm_.c:621 ../../install_steps_interactive.pm_.c:819
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:803
msgid "There was an error installing packages:"
msgstr "Estis eraro dum instalado de pakaŒoj:"
@@ -4366,7 +4470,7 @@ msgid "Are you sure you refuse the licence?"
msgstr ""
#: ../../install_steps_interactive.pm_.c:211
-#: ../../install_steps_interactive.pm_.c:1038
+#: ../../install_steps_interactive.pm_.c:1023
#: ../../standalone/keyboarddrake_.c:31
msgid "Keyboard"
msgstr "Klavaro"
@@ -4418,11 +4522,11 @@ msgstr "Elektado de individuaj pakaŒoj"
msgid "Please choose the type of your mouse."
msgstr "Bonvole, elektu la specon de via muso."
-#: ../../install_steps_interactive.pm_.c:281 ../../standalone/mousedrake_.c:59
+#: ../../install_steps_interactive.pm_.c:281 ../../standalone/mousedrake_.c:60
msgid "Mouse Port"
msgstr "Muspordo"
-#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:61
msgid "Please choose on which serial port your mouse is connected to."
msgstr "Bonvole, elektu al kiu seria pordo estas via muso konektata."
@@ -4454,113 +4558,88 @@ msgstr "Konfiguras IDE"
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:336
+#: ../../install_steps_interactive.pm_.c:338
msgid "No partition available"
msgstr "neniuj haveblaj subdiskoj"
-#: ../../install_steps_interactive.pm_.c:339
+#: ../../install_steps_interactive.pm_.c:341
msgid "Scanning partitions to find mount points"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:347
+#: ../../install_steps_interactive.pm_.c:349
msgid "Choose the mount points"
msgstr "Elektu surmetingojn"
-#: ../../install_steps_interactive.pm_.c:366
-#, c-format
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to not allow DrakX to modify the partition table.\n"
-"(the error is %s)\n"
-"\n"
-"Do you agree to loose all the partitions?\n"
-msgstr ""
-"Mi ne povas legi vian subdisktabelon, űi estas tro difektita por mi :(\n"
-"Mi povas peni daęri per blankigi difektitajn subdiskojn (ÆIOM DA DATUMO\n"
-"pereos!). La alia solvo estas malpermesi al DrakX țanűi la subdisktabelon.\n"
-"(la eraro estas %s)\n"
-"\n"
-"Æu vi konsentas perdi æiujn subdiskojn?\n"
-
#: ../../install_steps_interactive.pm_.c:379
msgid ""
-"DiskDrake failed to read correctly the partition table.\n"
-"Continue at your own risk!"
-msgstr ""
-"DiskDrake malsukcesis űuste legi la subdisktabelon.\n"
-"Daęri je via propra risko!"
-
-#: ../../install_steps_interactive.pm_.c:396
-msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:405
+#: ../../install_steps_interactive.pm_.c:388
#, fuzzy
msgid "No root partition found to perform an upgrade"
msgstr "Elektu la subdiskoj kiuj vi deziras formati"
-#: ../../install_steps_interactive.pm_.c:406
+#: ../../install_steps_interactive.pm_.c:389
msgid "Root Partition"
msgstr "Radikosubdisko"
-#: ../../install_steps_interactive.pm_.c:407
+#: ../../install_steps_interactive.pm_.c:390
msgid "What is the root partition (/) of your system?"
msgstr "Kiu estas la radikosubdisko (/) æe via sistemo?"
-#: ../../install_steps_interactive.pm_.c:421
+#: ../../install_steps_interactive.pm_.c:404
msgid "You need to reboot for the partition table modifications to take place"
msgstr "Vi bezonas restarti por la țanűoj al la subdisktabelo efektivigi"
-#: ../../install_steps_interactive.pm_.c:445
+#: ../../install_steps_interactive.pm_.c:428
msgid "Choose the partitions you want to format"
msgstr "Elektu la subdiskoj kiuj vi deziras formati"
-#: ../../install_steps_interactive.pm_.c:446
+#: ../../install_steps_interactive.pm_.c:429
msgid "Check bad blocks?"
msgstr "Æu kontrolas malbonajn blokojn?"
-#: ../../install_steps_interactive.pm_.c:473
+#: ../../install_steps_interactive.pm_.c:456
msgid "Formatting partitions"
msgstr "Formatas subdiskojn"
-#: ../../install_steps_interactive.pm_.c:475
+#: ../../install_steps_interactive.pm_.c:458
#, c-format
msgid "Creating and formatting file %s"
msgstr "Kreas kaj formatas dosieron %s"
-#: ../../install_steps_interactive.pm_.c:480
+#: ../../install_steps_interactive.pm_.c:463
#, c-format
msgid ""
"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
"you can loose data)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:482
+#: ../../install_steps_interactive.pm_.c:465
msgid "Not enough swap space to fulfill installation, please add some"
msgstr "Nesufiæa interțanűospaco por plenumi instalado, bonvolu aldoni iom"
-#: ../../install_steps_interactive.pm_.c:489
+#: ../../install_steps_interactive.pm_.c:472
#, fuzzy
msgid "Looking for available packages and rebuilding rpm database..."
msgstr "Seræas haveblajn pakaŒojn"
-#: ../../install_steps_interactive.pm_.c:490
+#: ../../install_steps_interactive.pm_.c:473
msgid "Looking for available packages..."
msgstr "Seræas haveblajn pakaŒojn"
-#: ../../install_steps_interactive.pm_.c:493
+#: ../../install_steps_interactive.pm_.c:476
#, fuzzy
msgid "Looking at packages already installed..."
msgstr "Vi ne povas malelekti æi tiun pakaŒon. Űi estas jam instalita."
-#: ../../install_steps_interactive.pm_.c:497
+#: ../../install_steps_interactive.pm_.c:480
msgid "Finding packages to upgrade..."
msgstr "Trovadas pakaŒojn por promocii"
-#: ../../install_steps_interactive.pm_.c:515
+#: ../../install_steps_interactive.pm_.c:498
#, c-format
msgid ""
"Your system does not have enough space left for installation or upgrade (%d "
@@ -4568,60 +4647,60 @@ msgid ""
msgstr ""
"Via komputilo ne havas sufiæe da spaco por instalado aę promocio (%d > %d)."
-#: ../../install_steps_interactive.pm_.c:550
+#: ../../install_steps_interactive.pm_.c:534
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:553
+#: ../../install_steps_interactive.pm_.c:537
msgid "Load from floppy"
msgstr "Țargu de disketo"
-#: ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_interactive.pm_.c:539
msgid "Loading from floppy"
msgstr "Țargas de disketo"
-#: ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_interactive.pm_.c:539
msgid "Package selection"
msgstr "Elektado de PakaŒoj"
-#: ../../install_steps_interactive.pm_.c:560
+#: ../../install_steps_interactive.pm_.c:544
#, fuzzy
msgid "Insert a floppy containing package selection"
msgstr "Ențovu disketon en drajvo %s"
-#: ../../install_steps_interactive.pm_.c:572
+#: ../../install_steps_interactive.pm_.c:556
msgid "Save on floppy"
msgstr "Konservu sur disketo"
-#: ../../install_steps_interactive.pm_.c:646
+#: ../../install_steps_interactive.pm_.c:630
msgid "Selected size is larger than available space"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:660
+#: ../../install_steps_interactive.pm_.c:644
msgid "Type of install"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:661
+#: ../../install_steps_interactive.pm_.c:645
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:664
+#: ../../install_steps_interactive.pm_.c:648
msgid "With X"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:666
+#: ../../install_steps_interactive.pm_.c:650
msgid "With basic documentation (recommended!)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:667
+#: ../../install_steps_interactive.pm_.c:651
msgid "Truly minimal install (especially no urpmi)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:752
+#: ../../install_steps_interactive.pm_.c:736
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -4632,16 +4711,16 @@ msgstr ""
"Se vi mankas nur iujn de la KDROM-oj, malelektu ilin, kaj poste klaku \"Jes"
"\"."
-#: ../../install_steps_interactive.pm_.c:757
+#: ../../install_steps_interactive.pm_.c:741
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "KDROM etikedata \"%s\""
-#: ../../install_steps_interactive.pm_.c:778
+#: ../../install_steps_interactive.pm_.c:762
msgid "Preparing installation"
msgstr "Preparas instaladon"
-#: ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:771
#, c-format
msgid ""
"Installing package %s\n"
@@ -4650,21 +4729,21 @@ msgstr ""
"Instalas pakaŒo %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:833
+#: ../../install_steps_interactive.pm_.c:817
msgid "Post-install configuration"
msgstr "Post-instala konfigurado"
-#: ../../install_steps_interactive.pm_.c:839
+#: ../../install_steps_interactive.pm_.c:823
#, fuzzy, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Ențovu disketon en drajvo %s"
-#: ../../install_steps_interactive.pm_.c:845
+#: ../../install_steps_interactive.pm_.c:829
#, fuzzy, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Ențovu malplenan disketon en drajvo %s"
-#: ../../install_steps_interactive.pm_.c:865
+#: ../../install_steps_interactive.pm_.c:849
msgid ""
"You now have the opportunity to download encryption software.\n"
"\n"
@@ -4731,7 +4810,7 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:904
+#: ../../install_steps_interactive.pm_.c:888
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
"have been released after the distribution was released. They may\n"
@@ -4743,159 +4822,159 @@ msgid ""
"Do you want to install the updates ?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:919
+#: ../../install_steps_interactive.pm_.c:903
#, fuzzy
msgid ""
"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr "Kontaktu la spegulon por havigi la liston de havebla pakaŒoj"
-#: ../../install_steps_interactive.pm_.c:924
+#: ../../install_steps_interactive.pm_.c:908
msgid "Choose a mirror from which to get the packages"
msgstr "Elektu spegulon de kiu havigi la pakaŒojn"
-#: ../../install_steps_interactive.pm_.c:933
+#: ../../install_steps_interactive.pm_.c:917
msgid "Contacting the mirror to get the list of available packages..."
msgstr "Kontaktu la spegulon por havigi la liston de havebla pakaŒoj"
-#: ../../install_steps_interactive.pm_.c:960
+#: ../../install_steps_interactive.pm_.c:945
msgid "Which is your timezone?"
msgstr "kio estas vian horzonon?"
-#: ../../install_steps_interactive.pm_.c:965
+#: ../../install_steps_interactive.pm_.c:950
#, fuzzy
msgid "Hardware clock set to GMT"
msgstr "Æu via hardvara horloűo estas űustigata en GMT?"
-#: ../../install_steps_interactive.pm_.c:966
+#: ../../install_steps_interactive.pm_.c:951
msgid "Automatic time synchronization (using NTP)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:973
+#: ../../install_steps_interactive.pm_.c:958
msgid "NTP Server"
msgstr "NTP Servilo"
-#: ../../install_steps_interactive.pm_.c:1007
-#: ../../install_steps_interactive.pm_.c:1015
+#: ../../install_steps_interactive.pm_.c:992
+#: ../../install_steps_interactive.pm_.c:1000
msgid "Remote CUPS server"
msgstr "Malproksima CUPS-a servilo"
-#: ../../install_steps_interactive.pm_.c:1008
+#: ../../install_steps_interactive.pm_.c:993
msgid "No printer"
msgstr "Neniu printilo"
-#: ../../install_steps_interactive.pm_.c:1025
+#: ../../install_steps_interactive.pm_.c:1010
#, fuzzy
msgid "Do you have an ISA sound card?"
msgstr "Æu vi havas alian?"
-#: ../../install_steps_interactive.pm_.c:1027
+#: ../../install_steps_interactive.pm_.c:1012
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1029
+#: ../../install_steps_interactive.pm_.c:1014
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1034 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1019 ../../steps.pm_.c:27
msgid "Summary"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1037
+#: ../../install_steps_interactive.pm_.c:1022
msgid "Mouse"
msgstr "Muso"
-#: ../../install_steps_interactive.pm_.c:1039
+#: ../../install_steps_interactive.pm_.c:1024
msgid "Timezone"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1040 ../../printerdrake.pm_.c:2728
-#: ../../printerdrake.pm_.c:2814
+#: ../../install_steps_interactive.pm_.c:1025 ../../printerdrake.pm_.c:2937
+#: ../../printerdrake.pm_.c:3026
msgid "Printer"
msgstr "Printilo"
-#: ../../install_steps_interactive.pm_.c:1042
+#: ../../install_steps_interactive.pm_.c:1027
msgid "ISDN card"
msgstr "ISDN-karto"
-#: ../../install_steps_interactive.pm_.c:1045
-#: ../../install_steps_interactive.pm_.c:1047
+#: ../../install_steps_interactive.pm_.c:1030
+#: ../../install_steps_interactive.pm_.c:1032
msgid "Sound card"
msgstr "Sonkarto"
-#: ../../install_steps_interactive.pm_.c:1049
+#: ../../install_steps_interactive.pm_.c:1034
msgid "TV card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1089
-#: ../../install_steps_interactive.pm_.c:1114
-#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1074
+#: ../../install_steps_interactive.pm_.c:1099
+#: ../../install_steps_interactive.pm_.c:1103
msgid "LDAP"
msgstr "LDAP"
-#: ../../install_steps_interactive.pm_.c:1090
-#: ../../install_steps_interactive.pm_.c:1114
-#: ../../install_steps_interactive.pm_.c:1127
+#: ../../install_steps_interactive.pm_.c:1075
+#: ../../install_steps_interactive.pm_.c:1099
+#: ../../install_steps_interactive.pm_.c:1112
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1091
-#: ../../install_steps_interactive.pm_.c:1114
-#: ../../install_steps_interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1141
+#: ../../install_steps_interactive.pm_.c:1076
+#: ../../install_steps_interactive.pm_.c:1099
+#: ../../install_steps_interactive.pm_.c:1120
+#: ../../install_steps_interactive.pm_.c:1126
#, fuzzy
msgid "Windows Domain"
msgstr "NIS Domajno"
-#: ../../install_steps_interactive.pm_.c:1092
-#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1077
+#: ../../install_steps_interactive.pm_.c:1099
msgid "Local files"
msgstr "Lokaj dosieroj"
-#: ../../install_steps_interactive.pm_.c:1101
-#: ../../install_steps_interactive.pm_.c:1102 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1086
+#: ../../install_steps_interactive.pm_.c:1087 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Difinu pasvorton de root"
-#: ../../install_steps_interactive.pm_.c:1103
+#: ../../install_steps_interactive.pm_.c:1088
msgid "No password"
msgstr "Neniu pasvorto"
-#: ../../install_steps_interactive.pm_.c:1108
+#: ../../install_steps_interactive.pm_.c:1093
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr ""
"Æi tiu pasvorto ests tro simpla (űi devas esti almenaę %d signoj longa)"
-#: ../../install_steps_interactive.pm_.c:1114 ../../network/modem.pm_.c:49
+#: ../../install_steps_interactive.pm_.c:1099 ../../network/modem.pm_.c:49
#: ../../standalone/drakconnect_.c:625 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Aętentikigado"
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1107
msgid "Authentication LDAP"
msgstr "Aętentikiga LDAP"
-#: ../../install_steps_interactive.pm_.c:1123
+#: ../../install_steps_interactive.pm_.c:1108
msgid "LDAP Base dn"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1124
+#: ../../install_steps_interactive.pm_.c:1109
msgid "LDAP Server"
msgstr "LDAP Servilo"
-#: ../../install_steps_interactive.pm_.c:1130
+#: ../../install_steps_interactive.pm_.c:1115
msgid "Authentication NIS"
msgstr "Aętentikiga NIS"
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1116
msgid "NIS Domain"
msgstr "NIS Domajno"
-#: ../../install_steps_interactive.pm_.c:1132
+#: ../../install_steps_interactive.pm_.c:1117
msgid "NIS Server"
msgstr "NIS Servilo"
-#: ../../install_steps_interactive.pm_.c:1138
+#: ../../install_steps_interactive.pm_.c:1123
msgid ""
"For this to work for a W2K PDC, you will probably need to have the admin "
"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
@@ -4911,21 +4990,21 @@ msgid ""
"good."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1140
+#: ../../install_steps_interactive.pm_.c:1125
#, fuzzy
msgid "Authentication Windows Domain"
msgstr "Aętentikiga LDAP"
-#: ../../install_steps_interactive.pm_.c:1142
+#: ../../install_steps_interactive.pm_.c:1127
#, fuzzy
msgid "Domain Admin User Name"
msgstr "Domajna nomo"
-#: ../../install_steps_interactive.pm_.c:1143
+#: ../../install_steps_interactive.pm_.c:1128
msgid "Domain Admin Password"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1178
+#: ../../install_steps_interactive.pm_.c:1163
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
"depending on the normal bootloader. This is useful if you don't want to "
@@ -4953,19 +5032,19 @@ msgstr ""
"Se vi deziras krei startdisketon por via sistemo, ențovu disketon en la\n"
"unua drajvo kaj klaku \"JES\"."
-#: ../../install_steps_interactive.pm_.c:1194
+#: ../../install_steps_interactive.pm_.c:1179
msgid "First floppy drive"
msgstr "Unua disketa drajvo"
-#: ../../install_steps_interactive.pm_.c:1195
+#: ../../install_steps_interactive.pm_.c:1180
msgid "Second floppy drive"
msgstr "Dua disketa drajvo"
-#: ../../install_steps_interactive.pm_.c:1196 ../../printerdrake.pm_.c:2277
+#: ../../install_steps_interactive.pm_.c:1181 ../../printerdrake.pm_.c:2470
msgid "Skip"
msgstr "Ellasu"
-#: ../../install_steps_interactive.pm_.c:1201
+#: ../../install_steps_interactive.pm_.c:1186
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -4989,7 +5068,7 @@ msgstr ""
"sistemaj paneoj. Æu vi deziras krei startdisketo por via sistemo?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1207
+#: ../../install_steps_interactive.pm_.c:1192
msgid ""
"\n"
"\n"
@@ -4998,28 +5077,28 @@ msgid ""
"because XFS needs a very large driver)."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1215
+#: ../../install_steps_interactive.pm_.c:1200
msgid "Sorry, no floppy drive available"
msgstr "Bedaęrinde, neniu disketdrajvo havebla"
-#: ../../install_steps_interactive.pm_.c:1219
+#: ../../install_steps_interactive.pm_.c:1204
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "Elektu la disketdrajvo vi deziras uzi por krei la startdisketon"
-#: ../../install_steps_interactive.pm_.c:1223
+#: ../../install_steps_interactive.pm_.c:1208
#, fuzzy, c-format
msgid "Insert a floppy in %s"
msgstr "Ențovu disketon en drajvo %s"
-#: ../../install_steps_interactive.pm_.c:1226
+#: ../../install_steps_interactive.pm_.c:1211
msgid "Creating bootdisk..."
msgstr "Kreas startdisketon"
-#: ../../install_steps_interactive.pm_.c:1233
+#: ../../install_steps_interactive.pm_.c:1218
msgid "Preparing bootloader..."
msgstr "Preparas startțargilon"
-#: ../../install_steps_interactive.pm_.c:1244
+#: ../../install_steps_interactive.pm_.c:1229
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5027,11 +5106,11 @@ msgid ""
" need to use BootX to boot your machine"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1250
+#: ../../install_steps_interactive.pm_.c:1235
msgid "Do you want to use aboot?"
msgstr "Æu vi deziras uzi aboot-on?"
-#: ../../install_steps_interactive.pm_.c:1253
+#: ../../install_steps_interactive.pm_.c:1238
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -5039,16 +5118,16 @@ msgstr ""
"Eraro daęre mi instalis \"aboot\",\n"
"Æu mi devus provi perforte instali eæ se tio detruas la unuan subdiskon?"
-#: ../../install_steps_interactive.pm_.c:1260
+#: ../../install_steps_interactive.pm_.c:1245
#, fuzzy
msgid "Installing bootloader"
msgstr "Instalu restart-țargilon"
-#: ../../install_steps_interactive.pm_.c:1266
+#: ../../install_steps_interactive.pm_.c:1251
msgid "Installation of bootloader failed. The following error occured:"
msgstr "Instalado de startțargilo malsukcesis. La sekvanta eraro okazis:"
-#: ../../install_steps_interactive.pm_.c:1274
+#: ../../install_steps_interactive.pm_.c:1259
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -5059,24 +5138,24 @@ msgid ""
"At your next boot you should see the bootloader prompt."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1308
+#: ../../install_steps_interactive.pm_.c:1293
#: ../../standalone/drakautoinst_.c:79
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Ențovu malplenan disketon en drajvo %s"
-#: ../../install_steps_interactive.pm_.c:1312
+#: ../../install_steps_interactive.pm_.c:1297
msgid "Creating auto install floppy..."
msgstr "Kreas aętoinstalan disketon"
-#: ../../install_steps_interactive.pm_.c:1323
+#: ../../install_steps_interactive.pm_.c:1308
msgid ""
"Some steps are not completed.\n"
"\n"
"Do you really want to quit now?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1334
+#: ../../install_steps_interactive.pm_.c:1319
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
@@ -5095,15 +5174,15 @@ msgid ""
"install chapter of the Official Mandrake Linux User's Guide."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1347
+#: ../../install_steps_interactive.pm_.c:1332
msgid "http://www.mandrakelinux.com/en/90errata.php3"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1352
+#: ../../install_steps_interactive.pm_.c:1337
msgid "Generate auto install floppy"
msgstr "Kreu aętoinstalan disketon"
-#: ../../install_steps_interactive.pm_.c:1354
+#: ../../install_steps_interactive.pm_.c:1339
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -5112,15 +5191,15 @@ msgid ""
"You may prefer to replay the installation.\n"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1359
+#: ../../install_steps_interactive.pm_.c:1344
msgid "Automated"
msgstr "Aętomata"
-#: ../../install_steps_interactive.pm_.c:1359
+#: ../../install_steps_interactive.pm_.c:1344
msgid "Replay"
msgstr "Reludu"
-#: ../../install_steps_interactive.pm_.c:1362
+#: ../../install_steps_interactive.pm_.c:1347
#, fuzzy
msgid "Save packages selection"
msgstr "Elektado de individuaj pakaŒoj"
@@ -5130,7 +5209,8 @@ msgstr "Elektado de individuaj pakaŒoj"
msgid "Mandrake Linux Installation %s"
msgstr "Linuks-Mandrejka Instalado %s"
-#: ../../install_steps_newt.pm_.c:34
+#. -PO This string must fit in a 80-char wide text screen
+#: ../../install_steps_newt.pm_.c:35
msgid ""
" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
msgstr " <Tabo>/<Alt-Tabo> inter eroj | <Spaco> elektas | <F12> sekva ekrano "
@@ -5148,22 +5228,22 @@ msgstr ""
msgid "Choose a file"
msgstr "Elektu agon"
-#: ../../interactive.pm_.c:317
+#: ../../interactive.pm_.c:320
msgid "Advanced"
msgstr ""
-#: ../../interactive.pm_.c:318
+#: ../../interactive.pm_.c:321
msgid "Basic"
msgstr ""
-#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:155
-#: ../../printerdrake.pm_.c:1990
+#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:158
+#: ../../printerdrake.pm_.c:2124
msgid "<- Previous"
msgstr "<- Antaęa"
#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
-#: ../../standalone/drakbackup_.c:3464 ../../standalone/drakbackup_.c:3491
-#: ../../standalone/drakbackup_.c:3517
+#: ../../standalone/drakbackup_.c:4112 ../../standalone/drakbackup_.c:4139
+#: ../../standalone/drakbackup_.c:4169 ../../standalone/drakbackup_.c:4195
#, fuzzy
msgid "Next"
msgstr "Sekvanta ->"
@@ -5231,382 +5311,382 @@ msgstr ""
msgid "Re-submit"
msgstr ""
-#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:152 ../../keyboard.pm_.c:187
msgid "Czech (QWERTZ)"
msgstr "Æe¶a (QWERTZ)"
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:153 ../../keyboard.pm_.c:189
msgid "German"
msgstr "Germana"
-#: ../../keyboard.pm_.c:175
+#: ../../keyboard.pm_.c:154
msgid "Dvorak"
msgstr "Dvorak-a"
-#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:218
+#: ../../keyboard.pm_.c:155 ../../keyboard.pm_.c:197
msgid "Spanish"
msgstr "Hispana"
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:156 ../../keyboard.pm_.c:198
msgid "Finnish"
msgstr "Finna"
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:220
+#: ../../keyboard.pm_.c:157 ../../keyboard.pm_.c:199
msgid "French"
msgstr "Franca"
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:158 ../../keyboard.pm_.c:231
msgid "Norwegian"
msgstr "Norvega"
-#: ../../keyboard.pm_.c:180
+#: ../../keyboard.pm_.c:159
msgid "Polish"
msgstr "Pola"
-#: ../../keyboard.pm_.c:181 ../../keyboard.pm_.c:260
+#: ../../keyboard.pm_.c:160 ../../keyboard.pm_.c:239
msgid "Russian"
msgstr "Rusa"
-#: ../../keyboard.pm_.c:183 ../../keyboard.pm_.c:262
+#: ../../keyboard.pm_.c:162 ../../keyboard.pm_.c:241
msgid "Swedish"
msgstr "Sveda"
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:278
+#: ../../keyboard.pm_.c:163 ../../keyboard.pm_.c:257
msgid "UK keyboard"
msgstr "Unuiűinta Regna klavaro"
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:279
+#: ../../keyboard.pm_.c:164 ../../keyboard.pm_.c:258
msgid "US keyboard"
msgstr "Usona klavaro"
-#: ../../keyboard.pm_.c:187
+#: ../../keyboard.pm_.c:166
msgid "Albanian"
msgstr "Albana"
-#: ../../keyboard.pm_.c:188
+#: ../../keyboard.pm_.c:167
msgid "Armenian (old)"
msgstr "Armena (malnova)"
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:168
msgid "Armenian (typewriter)"
msgstr "Armena (skribmațina)"
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:169
msgid "Armenian (phonetic)"
msgstr "Armena (fonetika)"
-#: ../../keyboard.pm_.c:195
+#: ../../keyboard.pm_.c:174
msgid "Azerbaidjani (latin)"
msgstr "Azerbajűana (latina)"
-#: ../../keyboard.pm_.c:197
+#: ../../keyboard.pm_.c:176
msgid "Belgian"
msgstr "Belga"
-#: ../../keyboard.pm_.c:198
+#: ../../keyboard.pm_.c:177
#, fuzzy
msgid "Bengali"
msgstr "ebligu"
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:178
#, fuzzy
msgid "Bulgarian (phonetic)"
msgstr "Armena (fonetika)"
-#: ../../keyboard.pm_.c:200
+#: ../../keyboard.pm_.c:179
#, fuzzy
msgid "Bulgarian (BDS)"
msgstr "Bulgara"
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:180
msgid "Brazilian (ABNT-2)"
msgstr "Brazila (ABNT-2)"
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:183
#, fuzzy
msgid "Bosnian"
msgstr "Estona"
-#: ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:184
msgid "Belarusian"
msgstr "Belarusa"
-#: ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:185
msgid "Swiss (German layout)"
msgstr "Svisa (germana aranűo)"
-#: ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:186
msgid "Swiss (French layout)"
msgstr "Svisa (franca aranűo)"
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:188
msgid "Czech (QWERTY)"
msgstr "Æe¶a (QWERTY)"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:190
msgid "German (no dead keys)"
msgstr "Germana (neniom da mortaj klavoj)"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:191
msgid "Devanagari"
msgstr ""
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:192
msgid "Danish"
msgstr "Dana"
-#: ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:193
msgid "Dvorak (US)"
msgstr "Dvorak-a (US)"
-#: ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:194
msgid "Dvorak (Norwegian)"
msgstr "Dvorak-a (Norvega)"
-#: ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:195
#, fuzzy
msgid "Dvorak (Swedish)"
msgstr "Dvorak-a (US)"
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:196
msgid "Estonian"
msgstr "Estona"
-#: ../../keyboard.pm_.c:221
+#: ../../keyboard.pm_.c:200
msgid "Georgian (\"Russian\" layout)"
msgstr "Kartvela (\"Rusa\" aranűo)"
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:201
msgid "Georgian (\"Latin\" layout)"
msgstr "Kartvela (\"Latina\" aranűo)"
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:202
msgid "Greek"
msgstr "Greka"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:203
msgid "Gujarati"
msgstr ""
-#: ../../keyboard.pm_.c:225
+#: ../../keyboard.pm_.c:204
msgid "Gurmukhi"
msgstr ""
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:205
msgid "Hungarian"
msgstr "Hungara"
-#: ../../keyboard.pm_.c:227
+#: ../../keyboard.pm_.c:206
msgid "Croatian"
msgstr "Kroata"
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:207
msgid "Israeli"
msgstr "Israela"
-#: ../../keyboard.pm_.c:229
+#: ../../keyboard.pm_.c:208
msgid "Israeli (Phonetic)"
msgstr "Israela (fonetika)"
-#: ../../keyboard.pm_.c:230
+#: ../../keyboard.pm_.c:209
msgid "Iranian"
msgstr "Irana"
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:210
msgid "Icelandic"
msgstr "Islanda"
-#: ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:211
msgid "Italian"
msgstr "Itala"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:212
msgid "Inuktitut"
msgstr ""
-#: ../../keyboard.pm_.c:234
+#: ../../keyboard.pm_.c:213
msgid "Japanese 106 keys"
msgstr "Japana 106 klavoj"
-#: ../../keyboard.pm_.c:237
+#: ../../keyboard.pm_.c:216
msgid "Korean keyboard"
msgstr "Korea klavaro"
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:217
msgid "Latin American"
msgstr "Latinamerika"
-#: ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:218
#, fuzzy
msgid "Laotian"
msgstr "Loko"
-#: ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:219
msgid "Lithuanian AZERTY (old)"
msgstr "Litova AZERTY-a (malnova)"
-#: ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:221
msgid "Lithuanian AZERTY (new)"
msgstr "Litova AZERTY-a (nova)"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:222
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Litova \"numero-vica\" QWERTY-a"
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:223
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "Litova \"fonetika\" QWERTY-a"
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:224
#, fuzzy
msgid "Latvian"
msgstr "Loko"
-#: ../../keyboard.pm_.c:246
+#: ../../keyboard.pm_.c:225
msgid "Macedonian"
msgstr "Macedona"
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:226
msgid "Myanmar (Burmese)"
msgstr ""
-#: ../../keyboard.pm_.c:248
+#: ../../keyboard.pm_.c:227
#, fuzzy
msgid "Mongolian (cyrillic)"
msgstr "Azerbajűana (cirila)"
-#: ../../keyboard.pm_.c:249
+#: ../../keyboard.pm_.c:228
msgid "Maltese (UK)"
msgstr ""
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:229
msgid "Maltese (US)"
msgstr ""
-#: ../../keyboard.pm_.c:251
+#: ../../keyboard.pm_.c:230
msgid "Dutch"
msgstr "Nederlanda"
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:232
msgid "Polish (qwerty layout)"
msgstr "Pola (qwerty aranűo)"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:233
msgid "Polish (qwertz layout)"
msgstr "Pola (qwertz aranűo)"
-#: ../../keyboard.pm_.c:255
+#: ../../keyboard.pm_.c:234
msgid "Portuguese"
msgstr "Portugala"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:235
msgid "Canadian (Quebec)"
msgstr "Kanada (Kebeka)"
-#: ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:237
msgid "Romanian (qwertz)"
msgstr "Rumana (qwertz-a)"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:238
msgid "Romanian (qwerty)"
msgstr "Rumana (qwerty-a)"
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:240
msgid "Russian (Yawerty)"
msgstr "Rusa (Yawerty-a)"
-#: ../../keyboard.pm_.c:263
+#: ../../keyboard.pm_.c:242
msgid "Slovenian"
msgstr "Slovena"
-#: ../../keyboard.pm_.c:264
+#: ../../keyboard.pm_.c:243
msgid "Slovakian (QWERTZ)"
msgstr "Slovaka (QWERTZ)"
-#: ../../keyboard.pm_.c:265
+#: ../../keyboard.pm_.c:244
msgid "Slovakian (QWERTY)"
msgstr "Slovaka (QWERTY)"
-#: ../../keyboard.pm_.c:267
+#: ../../keyboard.pm_.c:246
#, fuzzy
msgid "Serbian (cyrillic)"
msgstr "Azerbajűana (cirila)"
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:248
msgid "Tamil (Unicode)"
msgstr ""
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:249
msgid "Tamil (TSCII)"
msgstr ""
-#: ../../keyboard.pm_.c:271
+#: ../../keyboard.pm_.c:250
msgid "Thai keyboard"
msgstr "Taja klavaro"
-#: ../../keyboard.pm_.c:273
+#: ../../keyboard.pm_.c:252
#, fuzzy
msgid "Tajik keyboard"
msgstr "Taja klavaro"
-#: ../../keyboard.pm_.c:274
+#: ../../keyboard.pm_.c:253
msgid "Turkish (traditional \"F\" model)"
msgstr "Turka (tradicia \"F\" modelo)"
-#: ../../keyboard.pm_.c:275
+#: ../../keyboard.pm_.c:254
msgid "Turkish (modern \"Q\" model)"
msgstr "Turka (moderna \"Q\" modelo)"
-#: ../../keyboard.pm_.c:277
+#: ../../keyboard.pm_.c:256
msgid "Ukrainian"
msgstr "Ukrajna"
-#: ../../keyboard.pm_.c:280
+#: ../../keyboard.pm_.c:259
msgid "US keyboard (international)"
msgstr "Usona klavaro (internacia)"
-#: ../../keyboard.pm_.c:281
+#: ../../keyboard.pm_.c:260
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "Vjetnama \"numero-vica\" QWERTY-a"
-#: ../../keyboard.pm_.c:282
+#: ../../keyboard.pm_.c:261
#, fuzzy
msgid "Yugoslavian (latin)"
msgstr "Jugoslava (latina/cirila)"
-#: ../../keyboard.pm_.c:289
+#: ../../keyboard.pm_.c:268
msgid "Right Alt key"
msgstr ""
-#: ../../keyboard.pm_.c:290
+#: ../../keyboard.pm_.c:269
msgid "Both Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:291
+#: ../../keyboard.pm_.c:270
msgid "Control and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:292
+#: ../../keyboard.pm_.c:271
msgid "CapsLock key"
msgstr ""
-#: ../../keyboard.pm_.c:293
+#: ../../keyboard.pm_.c:272
msgid "Ctrl and Alt keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:294
+#: ../../keyboard.pm_.c:273
msgid "Alt and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:295
+#: ../../keyboard.pm_.c:274
msgid "\"Menu\" key"
msgstr ""
-#: ../../keyboard.pm_.c:296
+#: ../../keyboard.pm_.c:275
msgid "Left \"Windows\" key"
msgstr ""
-#: ../../keyboard.pm_.c:297
+#: ../../keyboard.pm_.c:276
msgid "Right \"Windows\" key"
msgstr ""
@@ -5664,11 +5744,11 @@ msgstr "Nespecifa PS2 RadoMuso"
msgid "GlidePoint"
msgstr "GlidePoint"
-#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:63
+#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:65
msgid "Kensington Thinking Mouse"
msgstr "Kensington Thinking Mouse"
-#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:59
+#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:61
msgid "Genius NetMouse"
msgstr "Genius NetMouse"
@@ -5676,117 +5756,126 @@ msgstr "Genius NetMouse"
msgid "Genius NetScroll"
msgstr "Genius NetScroll"
-#: ../../mouse.pm_.c:43 ../../mouse.pm_.c:68
+#: ../../mouse.pm_.c:39 ../../mouse.pm_.c:48
+#, fuzzy
+msgid "Microsoft Explorer"
+msgstr "Mikrosofta IntelliMouse"
+
+#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:70
msgid "1 button"
msgstr "1 butona"
-#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:51
+#: ../../mouse.pm_.c:45 ../../mouse.pm_.c:53
msgid "Generic 2 Button Mouse"
msgstr "Nespecifa 2 Butona Muso"
-#: ../../mouse.pm_.c:46
+#: ../../mouse.pm_.c:47
msgid "Wheel"
msgstr "Rado"
-#: ../../mouse.pm_.c:49
+#: ../../mouse.pm_.c:51
msgid "serial"
msgstr "seria"
-#: ../../mouse.pm_.c:52
+#: ../../mouse.pm_.c:54
msgid "Generic 3 Button Mouse"
msgstr "Nespecifa 3 Butona Muso"
-#: ../../mouse.pm_.c:53
+#: ../../mouse.pm_.c:55
msgid "Microsoft IntelliMouse"
msgstr "Mikrosofta IntelliMouse"
-#: ../../mouse.pm_.c:54
+#: ../../mouse.pm_.c:56
msgid "Logitech MouseMan"
msgstr "Loűiteka MouseMan"
-#: ../../mouse.pm_.c:55
+#: ../../mouse.pm_.c:57
msgid "Mouse Systems"
msgstr "Mouse Systems"
-#: ../../mouse.pm_.c:57
+#: ../../mouse.pm_.c:59
msgid "Logitech CC Series"
msgstr "Loűiteka CC serio"
-#: ../../mouse.pm_.c:58
+#: ../../mouse.pm_.c:60
msgid "Logitech MouseMan+/FirstMouse+"
msgstr "Loűiteka MouseMan+/FirstMouse+"
-#: ../../mouse.pm_.c:60
+#: ../../mouse.pm_.c:62
msgid "MM Series"
msgstr "MM Serio"
-#: ../../mouse.pm_.c:61
+#: ../../mouse.pm_.c:63
msgid "MM HitTablet"
msgstr "MM HitTablet"
-#: ../../mouse.pm_.c:62
+#: ../../mouse.pm_.c:64
msgid "Logitech Mouse (serial, old C7 type)"
msgstr "Loűiteka Muso (seria, malnova C7 speco)"
-#: ../../mouse.pm_.c:66
+#: ../../mouse.pm_.c:68
#, fuzzy
msgid "busmouse"
msgstr "Neniu Muso"
-#: ../../mouse.pm_.c:69
+#: ../../mouse.pm_.c:71
msgid "2 buttons"
msgstr "2 butonoj"
-#: ../../mouse.pm_.c:70
+#: ../../mouse.pm_.c:72
msgid "3 buttons"
msgstr "3 butonoj"
-#: ../../mouse.pm_.c:73
+#: ../../mouse.pm_.c:75
msgid "none"
msgstr "neniu"
-#: ../../mouse.pm_.c:75
+#: ../../mouse.pm_.c:77
msgid "No mouse"
msgstr "Neniu Muso"
-#: ../../mouse.pm_.c:445
+#: ../../mouse.pm_.c:482
msgid "Please test the mouse"
msgstr "Bonvole, provu la muson"
-#: ../../mouse.pm_.c:446
+#: ../../mouse.pm_.c:483
#, fuzzy
msgid "To activate the mouse,"
msgstr "Bonvole, provu la muson"
-#: ../../mouse.pm_.c:447
+#: ../../mouse.pm_.c:484
msgid "MOVE YOUR WHEEL!"
msgstr "MOVU VIAN RADON!"
-#: ../../my_gtk.pm_.c:156
+#: ../../my_gtk.pm_.c:64
+msgid "-adobe-utopia-regular-r-*-*-25-*-*-*-p-*-iso8859-*,*-r-*"
+msgstr ""
+
+#: ../../my_gtk.pm_.c:159
msgid "Finish"
msgstr "Finu"
-#: ../../my_gtk.pm_.c:156 ../../printerdrake.pm_.c:1992
+#: ../../my_gtk.pm_.c:159 ../../printerdrake.pm_.c:2126
msgid "Next ->"
msgstr "Sekvanta ->"
-#: ../../my_gtk.pm_.c:284
+#: ../../my_gtk.pm_.c:287
msgid "Is this correct?"
msgstr "Æu tio æi pravas?"
-#: ../../my_gtk.pm_.c:356 ../../services.pm_.c:222
+#: ../../my_gtk.pm_.c:359 ../../services.pm_.c:222
msgid "Info"
msgstr "Informo"
-#: ../../my_gtk.pm_.c:377
+#: ../../my_gtk.pm_.c:380
msgid "Expand Tree"
msgstr "Etendu Arbon"
-#: ../../my_gtk.pm_.c:378
+#: ../../my_gtk.pm_.c:381
msgid "Collapse Tree"
msgstr "Maletendu Arbon"
-#: ../../my_gtk.pm_.c:379
+#: ../../my_gtk.pm_.c:382
msgid "Toggle between flat and group sorted"
msgstr "Țanűu inter ebena kaj ordigita je grupoj"
@@ -5825,6 +5914,68 @@ msgstr "uzu pppoe"
msgid "use pptp"
msgstr "uzu pptp"
+#: ../../network/drakfirewall.pm_.c:12
+#, fuzzy
+msgid "Web Server"
+msgstr "Servilo"
+
+#: ../../network/drakfirewall.pm_.c:17
+#, fuzzy
+msgid "Domain Name Server"
+msgstr "Domajna nomo"
+
+#: ../../network/drakfirewall.pm_.c:32
+#, fuzzy
+msgid "Mail Server"
+msgstr "Datumbazoj"
+
+#: ../../network/drakfirewall.pm_.c:37
+#, fuzzy
+msgid "POP and IMAP Server"
+msgstr "LDAP Servilo"
+
+#: ../../network/drakfirewall.pm_.c:111
+#, fuzzy
+msgid "No network card"
+msgstr "neniu retkarto trovita"
+
+#: ../../network/drakfirewall.pm_.c:129
+msgid ""
+"drakfirewall configurator\n"
+"\n"
+"This configures a personal firewall for this Mandrake Linux machine.\n"
+"For a powerful dedicated firewall solution, please look to the\n"
+"specialized MandrakeSecurity Firewall distribution."
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:147
+msgid "Which services would you like to allow the Internet to connect to?"
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:148
+msgid ""
+"You can enter miscellaneous ports. \n"
+"Valid examples are: 139/tcp 139/udp.\n"
+"Have a look at /etc/services for information."
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:154
+#, c-format
+msgid ""
+"Invalid port given: %s.\n"
+"The proper format is \"port/tcp\" or \"port/udp\", \n"
+"where port is between 1 and 65535."
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:162
+msgid "Everything (no firewall)"
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:164
+#, fuzzy
+msgid "Other ports"
+msgstr "Provu pordojn"
+
#: ../../network/ethernet.pm_.c:37
msgid ""
"Which dhcp client do you want to use?\n"
@@ -5842,7 +5993,7 @@ msgstr ""
"Mi ne detektas eterretan retadaptilom sur via sistemo. Bonvole lanæu la\n"
"aparatokonfigurilon."
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:247
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:240
msgid "Choose the network interface"
msgstr "Elektu la retan interfacon"
@@ -5856,7 +6007,7 @@ msgstr ""
msgid "no network card found"
msgstr "neniu retkarto trovita"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:366
msgid "Configuring network"
msgstr "Konfiguras reto"
@@ -5872,7 +6023,7 @@ msgstr ""
"Via poțtejo devus esti plene specifita poțtejo,\n"
"ekzemple ``miakomputilo.mialaborejo.miafirmao.com''."
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:370
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:371
msgid "Host name"
msgstr "Poțtejo"
@@ -6164,13 +6315,13 @@ msgstr "Elektu la defaęltan uzulon:"
msgid "Use auto detection"
msgstr ""
-#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2930
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:3151
#: ../../standalone/drakconnect_.c:274 ../../standalone/drakconnect_.c:277
#: ../../standalone/drakfloppy_.c:145
msgid "Expert Mode"
msgstr "Spertuloreűimo"
-#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:283
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:386
msgid "Detecting devices..."
msgstr "Detektas aparatojn..."
@@ -6334,11 +6485,11 @@ msgstr "Aętomata IP"
msgid "Start at boot"
msgstr "Kreu prațargdisketon"
-#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:753
+#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:860
msgid "IP address should be in format 1.2.3.4"
msgstr "IP-adreso devus esti en la notacio 1.2.3.4"
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:367
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -6350,43 +6501,55 @@ msgstr ""
"ekzemple ``miakomputilo.mialaborejo.miafirmao.com''.\n"
"Vi ankaę povas enigi la IP-adreson de la prokura kluzo se via havas unu."
-#: ../../network/network.pm_.c:371
+#: ../../network/network.pm_.c:372
msgid "DNS server"
msgstr "DNA servilo"
-#: ../../network/network.pm_.c:372
+#: ../../network/network.pm_.c:373
#, c-format
msgid "Gateway (e.g. %s)"
msgstr ""
-#: ../../network/network.pm_.c:374
+#: ../../network/network.pm_.c:375
msgid "Gateway device"
msgstr "Prokura kluzaparato"
-#: ../../network/network.pm_.c:386
+#: ../../network/network.pm_.c:387
msgid "Proxies configuration"
msgstr "Konfigurado de prokuraj serviloj"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:388
msgid "HTTP proxy"
msgstr "HTTP prokura servilo"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:389
msgid "FTP proxy"
msgstr "FTP prokura servilo"
-#: ../../network/network.pm_.c:389
+#: ../../network/network.pm_.c:390
msgid "Track network card id (useful for laptops)"
msgstr ""
-#: ../../network/network.pm_.c:392
+#: ../../network/network.pm_.c:393
msgid "Proxy should be http://..."
msgstr "Prokura servilo devus esti http://..."
-#: ../../network/network.pm_.c:393
+#: ../../network/network.pm_.c:394
msgid "Proxy should be ftp://..."
msgstr "Prokura servilo devus esti ftp://..."
+#: ../../network/shorewall.pm_.c:24
+msgid "Firewalling configuration detected!"
+msgstr "KonfiguraŒo de barilo detektata!"
+
+#: ../../network/shorewall.pm_.c:25
+msgid ""
+"Warning! An existing firewalling configuration has been detected. You may "
+"need some manual fix after installation."
+msgstr ""
+"Averto. Ekzistanta konfiguraŒo de barilo detektata. Vi eble devas permane\n"
+"fiksi űin poste de la instalado."
+
#: ../../network/tools.pm_.c:41
msgid "Internet configuration"
msgstr "Interreta Konfigurado"
@@ -6496,15 +6659,15 @@ msgstr "Konta Pasvorto"
msgid "United Kingdom"
msgstr ""
-#: ../../partition_table.pm_.c:606
+#: ../../partition_table.pm_.c:602
msgid "mount failed: "
msgstr "muntado malsukcesis: "
-#: ../../partition_table.pm_.c:670
+#: ../../partition_table.pm_.c:666
msgid "Extended partition not supported on this platform"
msgstr "Æi tiu platformo ne subtenas etendatajn subdiskojn"
-#: ../../partition_table.pm_.c:688
+#: ../../partition_table.pm_.c:684
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
@@ -6514,21 +6677,21 @@ msgstr ""
"La sola solvo estas movi viajn æefajn subdiskojn por situigi la truon\n"
"apud la etendataj subdiskoj."
-#: ../../partition_table.pm_.c:778
+#: ../../partition_table.pm_.c:774
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "Restaęris el dosiero %s malsukcesis: %s"
-#: ../../partition_table.pm_.c:780
+#: ../../partition_table.pm_.c:776
msgid "Bad backup file"
msgstr "Malbona rezerva dosiero"
-#: ../../partition_table.pm_.c:802
+#: ../../partition_table.pm_.c:798
#, c-format
msgid "Error writing to file %s"
msgstr "Eraro skribante al dosiero %s"
-#: ../../partition_table/raw.pm_.c:187
+#: ../../partition_table/raw.pm_.c:189
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
@@ -6571,157 +6734,161 @@ msgstr ""
msgid "PDQ - Print, Don't Queue"
msgstr ""
-#: ../../printer.pm_.c:35 ../../printer.pm_.c:854
+#: ../../printer.pm_.c:34 ../../printer.pm_.c:1125
msgid "CUPS"
msgstr ""
-#: ../../printer.pm_.c:36
+#: ../../printer.pm_.c:35
msgid "LPRng"
msgstr ""
-#: ../../printer.pm_.c:37
+#: ../../printer.pm_.c:36
msgid "LPD"
msgstr ""
-#: ../../printer.pm_.c:38
+#: ../../printer.pm_.c:37
msgid "PDQ"
msgstr ""
-#: ../../printer.pm_.c:50
+#: ../../printer.pm_.c:49
msgid "Local printer"
msgstr "Loka printilo"
-#: ../../printer.pm_.c:51
+#: ../../printer.pm_.c:50
msgid "Remote printer"
msgstr "Malproksima printilo"
-#: ../../printer.pm_.c:52
+#: ../../printer.pm_.c:51
#, fuzzy
msgid "Printer on remote CUPS server"
msgstr "Malproksima CUPS-a servilo"
-#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:776
+#: ../../printer.pm_.c:52 ../../printerdrake.pm_.c:883
#, fuzzy
msgid "Printer on remote lpd server"
msgstr "Malproksimaj lpd servilo"
-#: ../../printer.pm_.c:54
+#: ../../printer.pm_.c:53
msgid "Network printer (TCP/Socket)"
msgstr "Reta Printilo (TCP/ingo)"
-#: ../../printer.pm_.c:55
+#: ../../printer.pm_.c:54
#, fuzzy
msgid "Printer on SMB/Windows 95/98/NT server"
msgstr "SMB/Vindozo 95/98/NT"
-#: ../../printer.pm_.c:56
+#: ../../printer.pm_.c:55
#, fuzzy
msgid "Printer on NetWare server"
msgstr "Printservilo"
-#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:780
+#: ../../printer.pm_.c:56 ../../printerdrake.pm_.c:887
#, fuzzy
msgid "Enter a printer device URI"
msgstr "Printila Aparato URI"
-#: ../../printer.pm_.c:58
+#: ../../printer.pm_.c:57
msgid "Pipe job into a command"
msgstr ""
-#: ../../printer.pm_.c:487 ../../printer.pm_.c:678 ../../printer.pm_.c:1000
-#: ../../printerdrake.pm_.c:2070 ../../printerdrake.pm_.c:3189
+#: ../../printer.pm_.c:324 ../../printer.pm_.c:366 ../../printer.pm_.c:533
+msgid "Unknown Model"
+msgstr ""
+
+#: ../../printer.pm_.c:735 ../../printer.pm_.c:926 ../../printer.pm_.c:1318
+#: ../../printerdrake.pm_.c:2260 ../../printerdrake.pm_.c:3414
msgid "Unknown model"
msgstr ""
-#: ../../printer.pm_.c:515
+#: ../../printer.pm_.c:763
#, fuzzy
msgid "Local Printers"
msgstr "Loka printilo"
-#: ../../printer.pm_.c:517 ../../printer.pm_.c:855
+#: ../../printer.pm_.c:765 ../../printer.pm_.c:1126
#, fuzzy
msgid "Remote Printers"
msgstr "Malproksima printilo"
-#: ../../printer.pm_.c:524 ../../printerdrake.pm_.c:301
+#: ../../printer.pm_.c:772 ../../printerdrake.pm_.c:404
#, c-format
msgid " on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:527 ../../printerdrake.pm_.c:303
+#: ../../printer.pm_.c:775 ../../printerdrake.pm_.c:406
#, c-format
msgid ", USB printer \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:532
+#: ../../printer.pm_.c:780
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:535
+#: ../../printer.pm_.c:783
msgid ", multi-function device on USB"
msgstr ""
-#: ../../printer.pm_.c:537
+#: ../../printer.pm_.c:785
msgid ", multi-function device on HP JetDirect"
msgstr ""
-#: ../../printer.pm_.c:539
+#: ../../printer.pm_.c:787
msgid ", multi-function device"
msgstr ""
-#: ../../printer.pm_.c:542
+#: ../../printer.pm_.c:790
#, fuzzy, c-format
msgid ", printing to %s"
msgstr "Eraro skribante al dosiero %s"
-#: ../../printer.pm_.c:544
+#: ../../printer.pm_.c:792
#, c-format
msgid " on LPD server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:546
+#: ../../printer.pm_.c:794
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ""
-#: ../../printer.pm_.c:550
+#: ../../printer.pm_.c:798
#, c-format
msgid " on SMB/Windows server \"%s\", share \"%s\""
msgstr ""
-#: ../../printer.pm_.c:554
+#: ../../printer.pm_.c:802
#, c-format
msgid " on Novell server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:556
+#: ../../printer.pm_.c:804
#, c-format
msgid ", using command %s"
msgstr ""
-#: ../../printer.pm_.c:675 ../../printerdrake.pm_.c:1540
+#: ../../printer.pm_.c:923 ../../printerdrake.pm_.c:1656
msgid "Raw printer (No driver)"
msgstr ""
-#: ../../printer.pm_.c:824
+#: ../../printer.pm_.c:1095
#, fuzzy, c-format
msgid "(on %s)"
msgstr "(modulo %s)"
-#: ../../printer.pm_.c:826
+#: ../../printer.pm_.c:1097
msgid "(on this machine)"
msgstr ""
-#: ../../printer.pm_.c:851
+#: ../../printer.pm_.c:1122
#, fuzzy, c-format
msgid "On CUPS server \"%s\""
msgstr "IP de SMB servilo"
-#: ../../printer.pm_.c:857 ../../printerdrake.pm_.c:2851
-#: ../../printerdrake.pm_.c:2862 ../../printerdrake.pm_.c:3078
-#: ../../printerdrake.pm_.c:3130 ../../printerdrake.pm_.c:3156
-#: ../../printerdrake.pm_.c:3326 ../../printerdrake.pm_.c:3328
+#: ../../printer.pm_.c:1128 ../../printerdrake.pm_.c:3071
+#: ../../printerdrake.pm_.c:3082 ../../printerdrake.pm_.c:3303
+#: ../../printerdrake.pm_.c:3355 ../../printerdrake.pm_.c:3381
+#: ../../printerdrake.pm_.c:3556 ../../printerdrake.pm_.c:3558
msgid " (Default)"
msgstr " (Defaęlta)"
@@ -6748,12 +6915,12 @@ msgstr ""
msgid "Printer auto-detection (Local, TCP/Socket, and SMB printers)"
msgstr ""
-#: ../../printerdrake.pm_.c:84 ../../printerdrake.pm_.c:2914
+#: ../../printerdrake.pm_.c:84 ../../printerdrake.pm_.c:3135
#, fuzzy
msgid "CUPS configuration"
msgstr "LAN KonfiguraŒo"
-#: ../../printerdrake.pm_.c:85 ../../printerdrake.pm_.c:2915
+#: ../../printerdrake.pm_.c:85 ../../printerdrake.pm_.c:3136
#, fuzzy
msgid "Specify CUPS server"
msgstr "Malproksima CUPS-a servilo"
@@ -6784,7 +6951,7 @@ msgstr ""
msgid "The IP address should look like 192.168.1.20"
msgstr "IP-adreso devus esti en la notacio 1.2.3.4"
-#: ../../printerdrake.pm_.c:95 ../../printerdrake.pm_.c:987
+#: ../../printerdrake.pm_.c:95 ../../printerdrake.pm_.c:1094
msgid "The port number should be an integer!"
msgstr ""
@@ -6793,7 +6960,7 @@ msgstr ""
msgid "CUPS server IP"
msgstr "IP de SMB servilo"
-#: ../../printerdrake.pm_.c:103 ../../printerdrake.pm_.c:1007
+#: ../../printerdrake.pm_.c:103 ../../printerdrake.pm_.c:1114
msgid "Port"
msgstr "Pordo"
@@ -6802,13 +6969,130 @@ msgstr "Pordo"
msgid "Automatic CUPS configuration"
msgstr "Post-instala konfigurado"
-#: ../../printerdrake.pm_.c:183 ../../printerdrake.pm_.c:192
-#: ../../printerdrake.pm_.c:2897 ../../printerdrake.pm_.c:3017
+#: ../../printerdrake.pm_.c:177 ../../printerdrake.pm_.c:247
+#: ../../printerdrake.pm_.c:1529 ../../printerdrake.pm_.c:1533
+#: ../../printerdrake.pm_.c:1651 ../../printerdrake.pm_.c:2203
+#: ../../printerdrake.pm_.c:2356 ../../printerdrake.pm_.c:2415
+#: ../../printerdrake.pm_.c:2488 ../../printerdrake.pm_.c:2509
+#: ../../printerdrake.pm_.c:2699 ../../printerdrake.pm_.c:2740
+#: ../../printerdrake.pm_.c:2745 ../../printerdrake.pm_.c:2779
+#: ../../printerdrake.pm_.c:2784 ../../printerdrake.pm_.c:2821
+#: ../../printerdrake.pm_.c:2874 ../../printerdrake.pm_.c:2894
+#: ../../printerdrake.pm_.c:2908 ../../printerdrake.pm_.c:2942
+#: ../../printerdrake.pm_.c:2988 ../../printerdrake.pm_.c:3006
+#: ../../printerdrake.pm_.c:3095 ../../printerdrake.pm_.c:3169
+#: ../../printerdrake.pm_.c:3471 ../../printerdrake.pm_.c:3526
+#: ../../printerdrake.pm_.c:3579 ../../standalone/printerdrake_.c:57
+#, fuzzy
+msgid "Printerdrake"
+msgstr "Printilo"
+
+#: ../../printerdrake.pm_.c:178
+#, fuzzy
+msgid "Checking your system..."
+msgstr "Kiun printsistemo vi deziras uzi?"
+
+#: ../../printerdrake.pm_.c:186
+msgid ""
+"There are no printers found which are directly connected to your machine"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:198
+#, fuzzy
+msgid ""
+"The following printers\n"
+"\n"
+msgstr "La sekvaj pakaŒoj estos malinstalataj"
+
+#: ../../printerdrake.pm_.c:199
+#, fuzzy
+msgid ""
+"The following printer\n"
+"\n"
+msgstr "La sekvaj pakaŒoj estos malinstalataj"
+
+#: ../../printerdrake.pm_.c:201
+msgid ""
+"\n"
+"and one unknown printer are "
+msgstr ""
+
+#: ../../printerdrake.pm_.c:203
+#, c-format
+msgid ""
+"\n"
+"and %d unknown printers are "
+msgstr ""
+
+#: ../../printerdrake.pm_.c:207
+msgid ""
+"\n"
+"are "
+msgstr ""
+
+#: ../../printerdrake.pm_.c:208
+msgid ""
+"\n"
+"is "
+msgstr ""
+
+#: ../../printerdrake.pm_.c:210
+#, fuzzy
+msgid "directly connected to your system"
+msgstr "Via komputilo ne havas retadaptilon!"
+
+#: ../../printerdrake.pm_.c:213
+msgid ""
+"\n"
+"There is one unknown printer directly connected to your system"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:215
+#, c-format
+msgid ""
+"\n"
+"There are %d unknown printers directly connected to your system"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:221
+#, fuzzy
+msgid " (Make sure that all your printers are connected and turned on).\n"
+msgstr "Bonvole, elektu al kiu seria pordo estas via modemo konektata?"
+
+#: ../../printerdrake.pm_.c:235
+msgid ""
+"Do you want to enable printing on the printers mentioned above or on "
+"printers in the local network?\n"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:236
+#, fuzzy
+msgid "Do you want to enable printing on printers in the local network?\n"
+msgstr "Æu vi deziras provi printado?"
+
+#: ../../printerdrake.pm_.c:238
+#, fuzzy
+msgid "Do you want to enable printing on the printers mentioned above?\n"
+msgstr "Æu vi deziras starti vian konektaŒon je startado de la sistemo?"
+
+#: ../../printerdrake.pm_.c:239
+msgid "Are you sure that you want to set up printing on this machine?\n"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:240
+#, c-format
+msgid ""
+"NOTE: Depending on the printer model and the printing system up to %d MB of "
+"additional software will be installed."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:269 ../../printerdrake.pm_.c:278
+#: ../../printerdrake.pm_.c:3117 ../../printerdrake.pm_.c:3242
#, fuzzy
msgid "Add a new printer"
msgstr "Neniu printilo"
-#: ../../printerdrake.pm_.c:184
+#: ../../printerdrake.pm_.c:270
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -6821,7 +7105,7 @@ msgid ""
"connection types."
msgstr ""
-#: ../../printerdrake.pm_.c:193
+#: ../../printerdrake.pm_.c:280
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -6830,7 +7114,7 @@ msgid ""
"computer, connected directly to the network or to a remote Windows machine.\n"
"\n"
"If you have printer(s) connected to this machine, Please plug it/them in on "
-"this computer and turn it/them on so that they can be auto-detected. Also "
+"this computer and turn it/them on so that it/they can be auto-detected. Also "
"your network printer(s) and you Windows machines must be connected and "
"turned on.\n"
"\n"
@@ -6843,7 +7127,22 @@ msgid ""
"want to set up your printer(s) now."
msgstr ""
-#: ../../printerdrake.pm_.c:202
+#: ../../printerdrake.pm_.c:289 ../../printerdrake.pm_.c:306
+msgid ""
+"\n"
+"Welcome to the Printer Setup Wizard\n"
+"\n"
+"This wizard will help you to install your printer(s) connected to this "
+"computer.\n"
+"\n"
+"If you have printer(s) connected to this machine, Please plug it/them in on "
+"this computer and turn it/them on so that it/they can be auto-detected.\n"
+"\n"
+" Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
+"want to set up your printer(s) now."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:297
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -6852,7 +7151,7 @@ msgid ""
"computer or connected directly to the network.\n"
"\n"
"If you have printer(s) connected to this machine, Please plug it/them in on "
-"this computer and turn it/them on so that they can be auto-detected. Also "
+"this computer and turn it/them on so that it/they can be auto-detected. Also "
"your network printer(s) must be connected and turned on.\n"
"\n"
"Note that auto-detecting printers on the network takes longer than the auto-"
@@ -6863,26 +7162,26 @@ msgid ""
"want to set up your printer(s) now."
msgstr ""
-#: ../../printerdrake.pm_.c:213
+#: ../../printerdrake.pm_.c:315
#, fuzzy
msgid "Auto-detect printers connected to this machine"
msgstr "Malproksima printilo"
-#: ../../printerdrake.pm_.c:215
+#: ../../printerdrake.pm_.c:318
msgid "Auto-detect printers connected directly to the local network"
msgstr ""
-#: ../../printerdrake.pm_.c:218
+#: ../../printerdrake.pm_.c:321
msgid "Auto-detect printers connected to machines running Microsoft Windows"
msgstr ""
-#: ../../printerdrake.pm_.c:245 ../../printerdrake.pm_.c:459
-#: ../../printerdrake.pm_.c:484
+#: ../../printerdrake.pm_.c:348 ../../printerdrake.pm_.c:562
+#: ../../printerdrake.pm_.c:587
#, fuzzy
msgid "Local Printer"
msgstr "Loka printilo"
-#: ../../printerdrake.pm_.c:246
+#: ../../printerdrake.pm_.c:349
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -6896,50 +7195,50 @@ msgid ""
"Center."
msgstr ""
-#: ../../printerdrake.pm_.c:283 ../../printerdrake.pm_.c:474
-#: ../../printerdrake.pm_.c:683 ../../printerdrake.pm_.c:923
+#: ../../printerdrake.pm_.c:386 ../../printerdrake.pm_.c:577
+#: ../../printerdrake.pm_.c:790 ../../printerdrake.pm_.c:1030
#, fuzzy
msgid "Printer auto-detection"
msgstr "Malproksima printilo"
-#: ../../printerdrake.pm_.c:305
+#: ../../printerdrake.pm_.c:408
#, c-format
msgid ", network printer \"%s\", port %s"
msgstr ""
-#: ../../printerdrake.pm_.c:307
+#: ../../printerdrake.pm_.c:410
#, fuzzy, c-format
msgid ", printer \"%s\" on SMB/Windows server \"%s\""
msgstr "SMB/Vindozo 95/98/NT"
-#: ../../printerdrake.pm_.c:313
+#: ../../printerdrake.pm_.c:416
#, fuzzy, c-format
msgid "Detected %s"
msgstr "Duobla surmetingo %s"
-#: ../../printerdrake.pm_.c:317 ../../printerdrake.pm_.c:348
-#: ../../printerdrake.pm_.c:367
+#: ../../printerdrake.pm_.c:420 ../../printerdrake.pm_.c:451
+#: ../../printerdrake.pm_.c:470
#, c-format
msgid "Printer on parallel port \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:319 ../../printerdrake.pm_.c:350
-#: ../../printerdrake.pm_.c:372
+#: ../../printerdrake.pm_.c:422 ../../printerdrake.pm_.c:453
+#: ../../printerdrake.pm_.c:475
#, c-format
msgid "USB printer \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:321
+#: ../../printerdrake.pm_.c:424
#, fuzzy, c-format
msgid "Network printer \"%s\", port %s"
msgstr "Reta Printilo (TCP/ingo)"
-#: ../../printerdrake.pm_.c:323
+#: ../../printerdrake.pm_.c:426
#, fuzzy, c-format
msgid "Printer \"%s\" on SMB/Windows server \"%s\""
msgstr "SMB/Vindozo 95/98/NT"
-#: ../../printerdrake.pm_.c:460
+#: ../../printerdrake.pm_.c:563
msgid ""
"No local printer found! To manually install a printer enter a device name/"
"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
@@ -6947,34 +7246,34 @@ msgid ""
"printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:464
+#: ../../printerdrake.pm_.c:567
#, fuzzy
msgid "You must enter a device or file name!"
msgstr "Printila Aparato URI"
-#: ../../printerdrake.pm_.c:475
+#: ../../printerdrake.pm_.c:578
#, fuzzy
msgid "No printer found!"
msgstr "Loka printilo"
-#: ../../printerdrake.pm_.c:485
+#: ../../printerdrake.pm_.c:588
#, fuzzy
msgid "Available printers"
msgstr "Loka printilo"
-#: ../../printerdrake.pm_.c:489
+#: ../../printerdrake.pm_.c:592
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:490
+#: ../../printerdrake.pm_.c:593
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up or enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:492
+#: ../../printerdrake.pm_.c:595
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
@@ -6982,7 +7281,7 @@ msgid ""
"configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:493
+#: ../../printerdrake.pm_.c:596
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
@@ -6990,38 +7289,38 @@ msgid ""
"customized printer configuration, turn on \"Manual configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:495
+#: ../../printerdrake.pm_.c:598
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:496
+#: ../../printerdrake.pm_.c:599
#, fuzzy
msgid "Please choose the port where your printer is connected to."
msgstr "Bonvole, elektu al kiu seria pordo estas via modemo konektata?"
-#: ../../printerdrake.pm_.c:498
+#: ../../printerdrake.pm_.c:601
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:503
+#: ../../printerdrake.pm_.c:606
#, fuzzy
msgid "You must choose/enter a printer/device!"
msgstr "Printila Aparato URI"
-#: ../../printerdrake.pm_.c:523
+#: ../../printerdrake.pm_.c:626
#, fuzzy
msgid "Manual configuration"
msgstr "Interreta Konfigurado"
-#: ../../printerdrake.pm_.c:577
+#: ../../printerdrake.pm_.c:680
msgid "Remote lpd Printer Options"
msgstr "Malproksimaj lpd Printilaj Opcioj"
-#: ../../printerdrake.pm_.c:578
+#: ../../printerdrake.pm_.c:681
#, fuzzy
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
@@ -7031,51 +7330,51 @@ msgstr ""
"printservilo kaj la printviconomon æe tiu servilo en kiun taskoj devus\n"
"esti metata."
-#: ../../printerdrake.pm_.c:579
+#: ../../printerdrake.pm_.c:682
#, fuzzy
msgid "Remote host name"
msgstr "Malproksima poțtejo"
-#: ../../printerdrake.pm_.c:580
+#: ../../printerdrake.pm_.c:683
#, fuzzy
msgid "Remote printer name"
msgstr "Malproksima printilo"
-#: ../../printerdrake.pm_.c:583
+#: ../../printerdrake.pm_.c:686
#, fuzzy
msgid "Remote host name missing!"
msgstr "Malproksima poțtejo"
-#: ../../printerdrake.pm_.c:587
+#: ../../printerdrake.pm_.c:690
#, fuzzy
msgid "Remote printer name missing!"
msgstr "Malproksima poțtejo"
-#: ../../printerdrake.pm_.c:609 ../../printerdrake.pm_.c:1119
+#: ../../printerdrake.pm_.c:712 ../../printerdrake.pm_.c:1225
#, fuzzy, c-format
msgid "Detected model: %s %s"
msgstr "Duobla surmetingo %s"
-#: ../../printerdrake.pm_.c:683 ../../printerdrake.pm_.c:923
+#: ../../printerdrake.pm_.c:790 ../../printerdrake.pm_.c:1030
#, fuzzy
msgid "Scanning network..."
msgstr "Startas vian konektaŒon..."
-#: ../../printerdrake.pm_.c:692 ../../printerdrake.pm_.c:713
+#: ../../printerdrake.pm_.c:799 ../../printerdrake.pm_.c:820
#, c-format
msgid ", printer \"%s\" on server \"%s\""
msgstr ""
-#: ../../printerdrake.pm_.c:695 ../../printerdrake.pm_.c:716
+#: ../../printerdrake.pm_.c:802 ../../printerdrake.pm_.c:823
#, fuzzy, c-format
msgid "Printer \"%s\" on server \"%s\""
msgstr "Haltas de la reto"
-#: ../../printerdrake.pm_.c:736
+#: ../../printerdrake.pm_.c:843
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "SMB (Vindozo 9x/NT) Printilaj Opcioj"
-#: ../../printerdrake.pm_.c:737
+#: ../../printerdrake.pm_.c:844
#, fuzzy
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
@@ -7090,46 +7389,46 @@ msgstr ""
"aldone al la opuzan nomon de la printilo vi deziras atingi kaj iun ajn\n"
"taęgan salutnomon, pasvorton, kaj laborgrupan informon."
-#: ../../printerdrake.pm_.c:738
+#: ../../printerdrake.pm_.c:845
msgid ""
" If the desired printer was auto-detected, simply choose it from the list "
"and then add user name, password, and/or workgroup if needed."
msgstr ""
-#: ../../printerdrake.pm_.c:739
+#: ../../printerdrake.pm_.c:846
msgid "SMB server host"
msgstr "Poțtejo de SMB servilo"
-#: ../../printerdrake.pm_.c:740
+#: ../../printerdrake.pm_.c:847
msgid "SMB server IP"
msgstr "IP de SMB servilo"
-#: ../../printerdrake.pm_.c:741
+#: ../../printerdrake.pm_.c:848
msgid "Share name"
msgstr "Opuza nomo"
-#: ../../printerdrake.pm_.c:744
+#: ../../printerdrake.pm_.c:851
msgid "Workgroup"
msgstr "Laborgrupo"
-#: ../../printerdrake.pm_.c:746
+#: ../../printerdrake.pm_.c:853
#, fuzzy
msgid "Auto-detected"
msgstr "Malproksima printilo"
-#: ../../printerdrake.pm_.c:757
+#: ../../printerdrake.pm_.c:864
msgid "Either the server name or the server's IP must be given!"
msgstr ""
-#: ../../printerdrake.pm_.c:761
+#: ../../printerdrake.pm_.c:868
msgid "Samba share name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:767
+#: ../../printerdrake.pm_.c:874
msgid "SECURITY WARNING!"
msgstr ""
-#: ../../printerdrake.pm_.c:768
+#: ../../printerdrake.pm_.c:875
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -7153,7 +7452,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:778
+#: ../../printerdrake.pm_.c:885
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -7162,7 +7461,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:781
+#: ../../printerdrake.pm_.c:888
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
@@ -7170,11 +7469,11 @@ msgid ""
"Do you really want to continue setting up this printer as you are doing now?"
msgstr ""
-#: ../../printerdrake.pm_.c:853
+#: ../../printerdrake.pm_.c:960
msgid "NetWare Printer Options"
msgstr "NetWare Printilaj Opcioj"
-#: ../../printerdrake.pm_.c:854
+#: ../../printerdrake.pm_.c:961
#, fuzzy
msgid ""
"To print on a NetWare printer, you need to provide the NetWare print server "
@@ -7187,44 +7486,44 @@ msgstr ""
"printvican nomon por la printilo vi deziras atingi kaj iun ajn taęgan\n"
"salutnomon kaj pasvorton."
-#: ../../printerdrake.pm_.c:855
+#: ../../printerdrake.pm_.c:962
msgid "Printer Server"
msgstr "Printservilo"
-#: ../../printerdrake.pm_.c:856
+#: ../../printerdrake.pm_.c:963
msgid "Print Queue Name"
msgstr "Printvica Nomo"
-#: ../../printerdrake.pm_.c:861
+#: ../../printerdrake.pm_.c:968
msgid "NCP server name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:865
+#: ../../printerdrake.pm_.c:972
msgid "NCP queue name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:932 ../../printerdrake.pm_.c:952
+#: ../../printerdrake.pm_.c:1039 ../../printerdrake.pm_.c:1059
#, c-format
msgid ", host \"%s\", port %s"
msgstr ""
-#: ../../printerdrake.pm_.c:935 ../../printerdrake.pm_.c:955
+#: ../../printerdrake.pm_.c:1042 ../../printerdrake.pm_.c:1062
#, c-format
msgid "Host \"%s\", port %s"
msgstr ""
-#: ../../printerdrake.pm_.c:975
+#: ../../printerdrake.pm_.c:1082
#, fuzzy
msgid "TCP/Socket Printer Options"
msgstr "Ing-Printilaj Opcioj"
-#: ../../printerdrake.pm_.c:977
+#: ../../printerdrake.pm_.c:1084
msgid ""
"Choose one of the auto-detected printers from the list or enter the hostname "
"or IP and the optional port number (default is 9100) into the input fields."
msgstr ""
-#: ../../printerdrake.pm_.c:978
+#: ../../printerdrake.pm_.c:1085
#, fuzzy
msgid ""
"To print to a TCP or socket printer, you need to provide the host name or IP "
@@ -7235,61 +7534,61 @@ msgstr ""
"Por printi al inga printilo, vi bezonas provizi la\n"
"poțtejon de la printilo kaj opcie la pordnumeron."
-#: ../../printerdrake.pm_.c:983
+#: ../../printerdrake.pm_.c:1090
#, fuzzy
msgid "Printer host name or IP missing!"
msgstr "Printilaj Poțtejo"
-#: ../../printerdrake.pm_.c:1005
+#: ../../printerdrake.pm_.c:1112
#, fuzzy
msgid "Printer host name or IP"
msgstr "Printilaj Poțtejo"
-#: ../../printerdrake.pm_.c:1054 ../../printerdrake.pm_.c:1056
+#: ../../printerdrake.pm_.c:1160 ../../printerdrake.pm_.c:1162
msgid "Printer Device URI"
msgstr "Printila Aparato URI"
-#: ../../printerdrake.pm_.c:1055
+#: ../../printerdrake.pm_.c:1161
msgid ""
"You can specify directly the URI to access the printer. The URI must fulfill "
"either the CUPS or the Foomatic specifications. Note that not all URI types "
"are supported by all the spoolers."
msgstr ""
-#: ../../printerdrake.pm_.c:1070
+#: ../../printerdrake.pm_.c:1176
msgid "A valid URI must be entered!"
msgstr ""
-#: ../../printerdrake.pm_.c:1402
+#: ../../printerdrake.pm_.c:1515
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
"Location fields do not need to be filled in. They are comments for the users."
msgstr ""
-#: ../../printerdrake.pm_.c:1403
+#: ../../printerdrake.pm_.c:1516
msgid "Name of printer"
msgstr "Nomo de printilo"
-#: ../../printerdrake.pm_.c:1405
+#: ../../printerdrake.pm_.c:1518
msgid "Location"
msgstr "Loko"
-#: ../../printerdrake.pm_.c:1416 ../../printerdrake.pm_.c:1536
+#: ../../printerdrake.pm_.c:1530 ../../printerdrake.pm_.c:1652
#, fuzzy
msgid "Reading printer database..."
msgstr "Legas datumbason de CUPS peliloj..."
-#: ../../printerdrake.pm_.c:1419
+#: ../../printerdrake.pm_.c:1534
#, fuzzy
msgid "Preparing printer database..."
msgstr "Legas datumbason de CUPS peliloj..."
-#: ../../printerdrake.pm_.c:1516
+#: ../../printerdrake.pm_.c:1631
#, fuzzy
msgid "Your printer model"
msgstr "Malproksima printilo"
-#: ../../printerdrake.pm_.c:1517
+#: ../../printerdrake.pm_.c:1632
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -7304,28 +7603,28 @@ msgid ""
"%s"
msgstr ""
-#: ../../printerdrake.pm_.c:1522 ../../printerdrake.pm_.c:1525
+#: ../../printerdrake.pm_.c:1637 ../../printerdrake.pm_.c:1640
#, fuzzy
msgid "The model is correct"
msgstr "Æu tio æi pravas?"
-#: ../../printerdrake.pm_.c:1523 ../../printerdrake.pm_.c:1524
-#: ../../printerdrake.pm_.c:1527
+#: ../../printerdrake.pm_.c:1638 ../../printerdrake.pm_.c:1639
+#: ../../printerdrake.pm_.c:1642
#, fuzzy
msgid "Select model manually"
msgstr "Malproksima printilo"
-#: ../../printerdrake.pm_.c:1543
+#: ../../printerdrake.pm_.c:1659
#, fuzzy
msgid "Printer model selection"
msgstr "Printilan Konekton"
-#: ../../printerdrake.pm_.c:1544
+#: ../../printerdrake.pm_.c:1660
#, fuzzy
msgid "Which printer model do you have?"
msgstr "Kiun specon de printilo vi havas?"
-#: ../../printerdrake.pm_.c:1545
+#: ../../printerdrake.pm_.c:1661
msgid ""
"\n"
"\n"
@@ -7334,18 +7633,18 @@ msgid ""
"standing on a wrong model or on \"Raw printer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1548
+#: ../../printerdrake.pm_.c:1664
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
msgstr ""
-#: ../../printerdrake.pm_.c:1624
+#: ../../printerdrake.pm_.c:1741
#, fuzzy
msgid "OKI winprinter configuration"
msgstr "Interreta Konfigurado"
-#: ../../printerdrake.pm_.c:1625
+#: ../../printerdrake.pm_.c:1742
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -7355,12 +7654,12 @@ msgid ""
"not work. Your connection type setting will be ignored by the driver."
msgstr ""
-#: ../../printerdrake.pm_.c:1668 ../../printerdrake.pm_.c:1695
+#: ../../printerdrake.pm_.c:1785 ../../printerdrake.pm_.c:1812
#, fuzzy
msgid "Lexmark inkjet configuration"
msgstr "Interreta Konfigurado"
-#: ../../printerdrake.pm_.c:1669
+#: ../../printerdrake.pm_.c:1786
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
"no printers on remote machines or print server boxes. Please connect your "
@@ -7368,20 +7667,46 @@ msgid ""
"to."
msgstr ""
-#: ../../printerdrake.pm_.c:1696
+#: ../../printerdrake.pm_.c:1813
msgid ""
"To be able to print with your Lexmark inkjet and this configuration, you "
"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
-"com/). Go to the US site and click on the \"Drivers\" button. Then choose "
-"your model and afterwards \"Linux\" as operating system. The drivers come as "
-"RPM packages or shell scripts with interactive graphical installation. You "
-"do not need to do this configuration by the graphical frontends. Cancel "
-"directly after the license agreement. Then print printhead alignment pages "
-"with \"lexmarkmaintain\" and adjust the head alignment settings with this "
-"program."
+"com/). Click on the \"Drivers\" link. Then choose your model and afterwards "
+"\"Linux\" as operating system. The drivers come as RPM packages or shell "
+"scripts with interactive graphical installation. You do not need to do this "
+"configuration by the graphical frontends. Cancel directly after the license "
+"agreement. Then print printhead alignment pages with \"lexmarkmaintain\" and "
+"adjust the head alignment settings with this program."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:1816
+msgid "GDI Laser Printer using the Zenographics ZJ-Stream Format"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:1817
+msgid ""
+"Your printer belongs to the group of GDI laser printers (winprinters) sold "
+"by different manufacturers which uses the Zenographics ZJ-stream raster "
+"format for the data sent to the printer. The driver for these printers is "
+"still in a very early development stage and so it will perhaps not always "
+"work properly. Especially it is possible that the printer only works when "
+"you choose the A4 paper size.\n"
+"\n"
+"Some of these printers, as the HP LaserJet 1000, for which this driver was "
+"originally created, need their firmware to be uploaded to them after they "
+"are turned on. In the case of the HP LaserJet 1000 you have to search the "
+"printer's Windows driver CD or your Windows partition for the file "
+"\"sihp1000.img\" and upload the file to the printer with one of the "
+"following commands:\n"
+"\n"
+" lpr -o raw sihp1000.img\n"
+" cat sihp1000.img > /dev/usb/lp0\n"
+"\n"
+"The first command can be given by any normal user, the second must be given "
+"as root. After having done so you can print normally.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1912
+#: ../../printerdrake.pm_.c:2040
msgid ""
"Printer default settings\n"
"\n"
@@ -7391,34 +7716,34 @@ msgid ""
"printout quality/resolution printing can get substantially slower."
msgstr ""
-#: ../../printerdrake.pm_.c:1921
+#: ../../printerdrake.pm_.c:2049
#, c-format
msgid "Option %s must be an integer number!"
msgstr ""
-#: ../../printerdrake.pm_.c:1925
+#: ../../printerdrake.pm_.c:2053
#, c-format
msgid "Option %s must be a number!"
msgstr ""
-#: ../../printerdrake.pm_.c:1930
+#: ../../printerdrake.pm_.c:2058
#, c-format
msgid "Option %s out of range!"
msgstr ""
-#: ../../printerdrake.pm_.c:1969
+#: ../../printerdrake.pm_.c:2097
#, fuzzy, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
"as the default printer?"
msgstr "Æu vi deziras provi printado?"
-#: ../../printerdrake.pm_.c:1986
+#: ../../printerdrake.pm_.c:2120
#, fuzzy
msgid "Test pages"
msgstr "Provu pordojn"
-#: ../../printerdrake.pm_.c:1987
+#: ../../printerdrake.pm_.c:2121
msgid ""
"Please select the test pages you want to print.\n"
"Note: the photo test page can take a rather long time to get printed and on "
@@ -7426,45 +7751,45 @@ msgid ""
"it is enough to print the standard test page."
msgstr ""
-#: ../../printerdrake.pm_.c:1991
+#: ../../printerdrake.pm_.c:2125
#, fuzzy
msgid "No test pages"
msgstr "Jes, printu ambaę de la provpaűojn"
-#: ../../printerdrake.pm_.c:1992
+#: ../../printerdrake.pm_.c:2126
#, fuzzy
msgid "Print"
msgstr "Printilo"
-#: ../../printerdrake.pm_.c:1994
+#: ../../printerdrake.pm_.c:2183
#, fuzzy
msgid "Standard test page"
msgstr "Laęnorma"
-#: ../../printerdrake.pm_.c:1997
+#: ../../printerdrake.pm_.c:2186
msgid "Alternative test page (Letter)"
msgstr ""
-#: ../../printerdrake.pm_.c:2000
+#: ../../printerdrake.pm_.c:2189
#, fuzzy
msgid "Alternative test page (A4)"
msgstr "Printas provpaűo(j)n..."
-#: ../../printerdrake.pm_.c:2002
+#: ../../printerdrake.pm_.c:2191
#, fuzzy
msgid "Photo test page"
msgstr "Printas provpaűo(j)n..."
-#: ../../printerdrake.pm_.c:2006
+#: ../../printerdrake.pm_.c:2195
#, fuzzy
msgid "Do not print any test page"
msgstr "Printas provpaűo(j)n..."
-#: ../../printerdrake.pm_.c:2014 ../../printerdrake.pm_.c:2166
+#: ../../printerdrake.pm_.c:2204 ../../printerdrake.pm_.c:2357
msgid "Printing test page(s)..."
msgstr "Printas provpaűo(j)n..."
-#: ../../printerdrake.pm_.c:2039
+#: ../../printerdrake.pm_.c:2229
#, fuzzy, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -7480,7 +7805,7 @@ msgstr ""
"\n"
"Æu űi űuste funkcias?"
-#: ../../printerdrake.pm_.c:2043
+#: ../../printerdrake.pm_.c:2233
#, fuzzy
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -7490,16 +7815,16 @@ msgstr ""
"Æi tiu eble postulas iom da tempo antaę ol la printilo komencas.\n"
"Æu űi űuste funkcias?"
-#: ../../printerdrake.pm_.c:2050
+#: ../../printerdrake.pm_.c:2240
msgid "Did it work properly?"
msgstr ""
-#: ../../printerdrake.pm_.c:2072 ../../printerdrake.pm_.c:3191
+#: ../../printerdrake.pm_.c:2262 ../../printerdrake.pm_.c:3416
#, fuzzy
msgid "Raw printer"
msgstr "Neniu printilo"
-#: ../../printerdrake.pm_.c:2098
+#: ../../printerdrake.pm_.c:2288
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -7508,15 +7833,15 @@ msgid ""
"to modify the option settings easily.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2100
+#: ../../printerdrake.pm_.c:2290
msgid ""
"These commands you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications, but here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2103 ../../printerdrake.pm_.c:2120
-#: ../../printerdrake.pm_.c:2130
+#: ../../printerdrake.pm_.c:2293 ../../printerdrake.pm_.c:2310
+#: ../../printerdrake.pm_.c:2320
#, c-format
msgid ""
"\n"
@@ -7525,7 +7850,7 @@ msgid ""
"line, e. g. \"%s <file>\". "
msgstr ""
-#: ../../printerdrake.pm_.c:2106 ../../printerdrake.pm_.c:2146
+#: ../../printerdrake.pm_.c:2296 ../../printerdrake.pm_.c:2336
#, c-format
msgid ""
"To know about the options available for the current printer read either the "
@@ -7533,41 +7858,41 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2110
+#: ../../printerdrake.pm_.c:2300
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2115 ../../printerdrake.pm_.c:2125
+#: ../../printerdrake.pm_.c:2305 ../../printerdrake.pm_.c:2315
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2117 ../../printerdrake.pm_.c:2127
-#: ../../printerdrake.pm_.c:2137
+#: ../../printerdrake.pm_.c:2307 ../../printerdrake.pm_.c:2317
+#: ../../printerdrake.pm_.c:2327
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2122 ../../printerdrake.pm_.c:2132
+#: ../../printerdrake.pm_.c:2312 ../../printerdrake.pm_.c:2322
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
msgstr ""
-#: ../../printerdrake.pm_.c:2135
+#: ../../printerdrake.pm_.c:2325
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\" or \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2139
+#: ../../printerdrake.pm_.c:2329
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -7577,7 +7902,7 @@ msgid ""
"jams.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2143
+#: ../../printerdrake.pm_.c:2333
#, c-format
msgid ""
"\n"
@@ -7586,41 +7911,41 @@ msgid ""
"line, e. g. \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2153
+#: ../../printerdrake.pm_.c:2343
#, fuzzy, c-format
msgid "Printing/Scanning/Photo Cards on \"%s\""
msgstr "Haltas de la reto"
-#: ../../printerdrake.pm_.c:2154
+#: ../../printerdrake.pm_.c:2344
#, fuzzy, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "Haltas de la reto"
-#: ../../printerdrake.pm_.c:2156
+#: ../../printerdrake.pm_.c:2346
#, fuzzy, c-format
msgid "Printing/Photo Card Access on \"%s\""
msgstr "Haltas de la reto"
-#: ../../printerdrake.pm_.c:2157
+#: ../../printerdrake.pm_.c:2347
#, fuzzy, c-format
msgid "Printing on the printer \"%s\""
msgstr "Haltas de la reto"
-#: ../../printerdrake.pm_.c:2160 ../../printerdrake.pm_.c:2163
-#: ../../printerdrake.pm_.c:2164 ../../printerdrake.pm_.c:2165
-#: ../../printerdrake.pm_.c:3175 ../../standalone/drakTermServ_.c:248
-#: ../../standalone/drakbackup_.c:1485 ../../standalone/drakbackup_.c:3530
-#: ../../standalone/drakbug_.c:129 ../../standalone/drakfont_.c:705
+#: ../../printerdrake.pm_.c:2350 ../../printerdrake.pm_.c:2353
+#: ../../printerdrake.pm_.c:2354 ../../printerdrake.pm_.c:2355
+#: ../../printerdrake.pm_.c:3400 ../../standalone/drakTermServ_.c:248
+#: ../../standalone/drakbackup_.c:1560 ../../standalone/drakbackup_.c:4208
+#: ../../standalone/drakbug_.c:130 ../../standalone/drakfont_.c:705
#: ../../standalone/drakfont_.c:1014
msgid "Close"
msgstr "Malfermu"
-#: ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2353
#, fuzzy
msgid "Print option list"
msgstr "Printilaj opcioj"
-#: ../../printerdrake.pm_.c:2182
+#: ../../printerdrake.pm_.c:2373
#, c-format
msgid ""
"Your multi-function device was configured automatically to be able to scan. "
@@ -7634,7 +7959,7 @@ msgid ""
"Do not use \"scannerdrake\" for this device!"
msgstr ""
-#: ../../printerdrake.pm_.c:2202
+#: ../../printerdrake.pm_.c:2394
msgid ""
"Your printer was configured automatically to give you access to the photo "
"card drives from your PC. Now you can access your photo cards using the "
@@ -7647,19 +7972,19 @@ msgid ""
"of the file lists."
msgstr ""
-#: ../../printerdrake.pm_.c:2223 ../../printerdrake.pm_.c:2673
-#: ../../printerdrake.pm_.c:2945
+#: ../../printerdrake.pm_.c:2416 ../../printerdrake.pm_.c:2875
+#: ../../printerdrake.pm_.c:3170
#, fuzzy
msgid "Reading printer data..."
msgstr "Legas datumbason de CUPS peliloj..."
-#: ../../printerdrake.pm_.c:2243 ../../printerdrake.pm_.c:2271
-#: ../../printerdrake.pm_.c:2306
+#: ../../printerdrake.pm_.c:2436 ../../printerdrake.pm_.c:2464
+#: ../../printerdrake.pm_.c:2499
#, fuzzy
msgid "Transfer printer configuration"
msgstr "Interreta Konfigurado"
-#: ../../printerdrake.pm_.c:2244
+#: ../../printerdrake.pm_.c:2437
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -7669,51 +7994,51 @@ msgid ""
"Not all queues can be transferred due to the following reasons:\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2247
+#: ../../printerdrake.pm_.c:2440
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2249
+#: ../../printerdrake.pm_.c:2442
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2251
+#: ../../printerdrake.pm_.c:2444
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2253
+#: ../../printerdrake.pm_.c:2446
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:2254
+#: ../../printerdrake.pm_.c:2447
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
"or with native CUPS drivers cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:2255
+#: ../../printerdrake.pm_.c:2448
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
"\"Transfer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:2258
+#: ../../printerdrake.pm_.c:2451
msgid "Do not transfer printers"
msgstr ""
-#: ../../printerdrake.pm_.c:2259 ../../printerdrake.pm_.c:2276
+#: ../../printerdrake.pm_.c:2452 ../../printerdrake.pm_.c:2469
msgid "Transfer"
msgstr ""
-#: ../../printerdrake.pm_.c:2272
+#: ../../printerdrake.pm_.c:2465
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -7721,61 +8046,61 @@ msgid ""
"You can also type a new name or skip this printer."
msgstr ""
-#: ../../printerdrake.pm_.c:2280
+#: ../../printerdrake.pm_.c:2473
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr ""
-#: ../../printerdrake.pm_.c:2285
+#: ../../printerdrake.pm_.c:2478
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
"do you really want to overwrite its configuration?"
msgstr ""
-#: ../../printerdrake.pm_.c:2293
+#: ../../printerdrake.pm_.c:2486
#, fuzzy
msgid "New printer name"
msgstr "Neniu printilo"
-#: ../../printerdrake.pm_.c:2296
+#: ../../printerdrake.pm_.c:2489
#, c-format
msgid "Transferring %s..."
msgstr ""
-#: ../../printerdrake.pm_.c:2307
+#: ../../printerdrake.pm_.c:2500
#, c-format
msgid ""
"You have transferred your former default printer (\"%s\"), Should it be also "
"the default printer under the new printing system %s?"
msgstr ""
-#: ../../printerdrake.pm_.c:2316
+#: ../../printerdrake.pm_.c:2510
#, fuzzy
msgid "Refreshing printer data..."
msgstr "Legas datumbason de CUPS peliloj..."
-#: ../../printerdrake.pm_.c:2324 ../../printerdrake.pm_.c:2395
-#: ../../printerdrake.pm_.c:2407
+#: ../../printerdrake.pm_.c:2518 ../../printerdrake.pm_.c:2590
+#: ../../printerdrake.pm_.c:2602
msgid "Configuration of a remote printer"
msgstr ""
-#: ../../printerdrake.pm_.c:2325
+#: ../../printerdrake.pm_.c:2519
#, fuzzy
msgid "Starting network..."
msgstr "Startas vian konektaŒon..."
-#: ../../printerdrake.pm_.c:2359 ../../printerdrake.pm_.c:2363
-#: ../../printerdrake.pm_.c:2365
+#: ../../printerdrake.pm_.c:2554 ../../printerdrake.pm_.c:2558
+#: ../../printerdrake.pm_.c:2560
#, fuzzy
msgid "Configure the network now"
msgstr "Konfiguru retumon"
-#: ../../printerdrake.pm_.c:2360
+#: ../../printerdrake.pm_.c:2555
#, fuzzy
msgid "Network functionality not configured"
msgstr "Ekrano ne estas konfigurata"
-#: ../../printerdrake.pm_.c:2361
+#: ../../printerdrake.pm_.c:2556
msgid ""
"You are going to configure a remote printer. This needs working network "
"access, but your network is not configured yet. If you go on without network "
@@ -7783,12 +8108,12 @@ msgid ""
"configuring now. How do you want to proceed?"
msgstr ""
-#: ../../printerdrake.pm_.c:2364
+#: ../../printerdrake.pm_.c:2559
#, fuzzy
msgid "Go on without configuring the network"
msgstr "Konfiguras reto"
-#: ../../printerdrake.pm_.c:2397
+#: ../../printerdrake.pm_.c:2592
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -7798,34 +8123,34 @@ msgid ""
"\"Printer\""
msgstr ""
-#: ../../printerdrake.pm_.c:2398
+#: ../../printerdrake.pm_.c:2593
msgid ""
"The network access was not running and could not be started. Please check "
"your configuration and your hardware. Then try to configure your remote "
"printer again."
msgstr ""
-#: ../../printerdrake.pm_.c:2408
+#: ../../printerdrake.pm_.c:2603
#, fuzzy
msgid "Restarting printing system..."
msgstr "Kiun printsistemo vi deziras uzi?"
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2641
#, fuzzy
msgid "high"
msgstr "Alta"
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2641
#, fuzzy
msgid "paranoid"
msgstr "Paranoja"
-#: ../../printerdrake.pm_.c:2447
+#: ../../printerdrake.pm_.c:2642
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr ""
-#: ../../printerdrake.pm_.c:2448
+#: ../../printerdrake.pm_.c:2643
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -7840,12 +8165,12 @@ msgid ""
"Do you really want to configure printing on this machine?"
msgstr ""
-#: ../../printerdrake.pm_.c:2480
+#: ../../printerdrake.pm_.c:2675
#, fuzzy
msgid "Starting the printing system at boot time"
msgstr "Kiun printsistemo vi deziras uzi?"
-#: ../../printerdrake.pm_.c:2481
+#: ../../printerdrake.pm_.c:2676
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -7859,81 +8184,76 @@ msgid ""
"again?"
msgstr ""
-#: ../../printerdrake.pm_.c:2504 ../../printerdrake.pm_.c:2544
-#: ../../printerdrake.pm_.c:2581 ../../printerdrake.pm_.c:2621
-#: ../../printerdrake.pm_.c:2733
+#: ../../printerdrake.pm_.c:2700 ../../printerdrake.pm_.c:2741
+#: ../../printerdrake.pm_.c:2780 ../../printerdrake.pm_.c:2822
+#: ../../printerdrake.pm_.c:2943
msgid "Checking installed software..."
msgstr ""
-#: ../../printerdrake.pm_.c:2548
+#: ../../printerdrake.pm_.c:2746
msgid "Removing LPRng..."
msgstr ""
-#: ../../printerdrake.pm_.c:2585
+#: ../../printerdrake.pm_.c:2785
msgid "Removing LPD..."
msgstr ""
-#: ../../printerdrake.pm_.c:2657
+#: ../../printerdrake.pm_.c:2858
#, fuzzy
msgid "Select Printer Spooler"
msgstr "Elektu Printilan Konekton"
-#: ../../printerdrake.pm_.c:2658
+#: ../../printerdrake.pm_.c:2859
#, fuzzy
msgid "Which printing system (spooler) do you want to use?"
msgstr "Kiun printsistemo vi deziras uzi?"
-#: ../../printerdrake.pm_.c:2691
+#: ../../printerdrake.pm_.c:2895
#, fuzzy, c-format
msgid "Configuring printer \"%s\"..."
msgstr "Konfiguru Printilon"
-#: ../../printerdrake.pm_.c:2704
+#: ../../printerdrake.pm_.c:2909
#, fuzzy
msgid "Installing Foomatic..."
msgstr "Instalanta pakaŒo %s"
-#: ../../printerdrake.pm_.c:2769 ../../printerdrake.pm_.c:2808
-#: ../../printerdrake.pm_.c:3192 ../../printerdrake.pm_.c:3262
+#: ../../printerdrake.pm_.c:2979 ../../printerdrake.pm_.c:3020
+#: ../../printerdrake.pm_.c:3417 ../../printerdrake.pm_.c:3490
msgid "Printer options"
msgstr "Printilaj opcioj"
-#: ../../printerdrake.pm_.c:2778
+#: ../../printerdrake.pm_.c:2989
#, fuzzy
-msgid "Preparing PrinterDrake..."
+msgid "Preparing Printerdrake..."
msgstr "Legas datumbason de CUPS peliloj..."
-#: ../../printerdrake.pm_.c:2795 ../../printerdrake.pm_.c:3349
+#: ../../printerdrake.pm_.c:3007 ../../printerdrake.pm_.c:3580
#, fuzzy
msgid "Configuring applications..."
msgstr "Konfiguru Printilon"
-#: ../../printerdrake.pm_.c:2815
+#: ../../printerdrake.pm_.c:3027
#, fuzzy
msgid "Would you like to configure printing?"
msgstr "Æu vi deziras konfiguri printilon?"
-#: ../../printerdrake.pm_.c:2827
+#: ../../printerdrake.pm_.c:3039
msgid "Printing system: "
msgstr ""
-#: ../../printerdrake.pm_.c:2875
-#, fuzzy
-msgid "Printerdrake"
-msgstr "Printilo"
-
-#: ../../printerdrake.pm_.c:2879
+#: ../../printerdrake.pm_.c:3099
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; to view information about it; "
"or to make a printer on a remote CUPS server available for Star Office/"
-"OpenOffice.org."
+"OpenOffice.org/GIMP."
msgstr ""
"Jen la sekvantaj printvicoj.\n"
"Vi povas aldoni pli aę țanűi la ekzistantajn."
-#: ../../printerdrake.pm_.c:2880
+#: ../../printerdrake.pm_.c:3100
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
@@ -7943,137 +8263,139 @@ msgstr ""
"Jen la sekvantaj printvicoj.\n"
"Vi povas aldoni pli aę țanűi la ekzistantajn."
-#: ../../printerdrake.pm_.c:2906
+#: ../../printerdrake.pm_.c:3127
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr ""
-#: ../../printerdrake.pm_.c:2924
+#: ../../printerdrake.pm_.c:3145
#, fuzzy
msgid "Change the printing system"
msgstr "Konfiguru retumon"
-#: ../../printerdrake.pm_.c:2929 ../../standalone/drakconnect_.c:277
+#: ../../printerdrake.pm_.c:3150 ../../standalone/drakconnect_.c:277
msgid "Normal Mode"
msgstr "Normala Modalo"
-#: ../../printerdrake.pm_.c:3085 ../../printerdrake.pm_.c:3135
-#: ../../printerdrake.pm_.c:3343
+#: ../../printerdrake.pm_.c:3310 ../../printerdrake.pm_.c:3360
+#: ../../printerdrake.pm_.c:3573
#, fuzzy
msgid "Do you want to configure another printer?"
msgstr "Æu vi deziras provi la konfiguraŒon?"
-#: ../../printerdrake.pm_.c:3170
+#: ../../printerdrake.pm_.c:3395
#, fuzzy
msgid "Modify printer configuration"
msgstr "Interreta Konfigurado"
-#: ../../printerdrake.pm_.c:3172
+#: ../../printerdrake.pm_.c:3397
#, fuzzy, c-format
msgid ""
"Printer %s\n"
"What do you want to modify on this printer?"
msgstr "Æu vi deziras provi la konfiguraŒon?"
-#: ../../printerdrake.pm_.c:3176
+#: ../../printerdrake.pm_.c:3401
msgid "Do it!"
msgstr ""
-#: ../../printerdrake.pm_.c:3181 ../../printerdrake.pm_.c:3236
+#: ../../printerdrake.pm_.c:3406 ../../printerdrake.pm_.c:3461
#, fuzzy
msgid "Printer connection type"
msgstr "Disdividado de Interreta Konekto"
-#: ../../printerdrake.pm_.c:3182 ../../printerdrake.pm_.c:3240
+#: ../../printerdrake.pm_.c:3407 ../../printerdrake.pm_.c:3465
#, fuzzy
msgid "Printer name, description, location"
msgstr "Printilan Konekton"
-#: ../../printerdrake.pm_.c:3184 ../../printerdrake.pm_.c:3255
+#: ../../printerdrake.pm_.c:3409 ../../printerdrake.pm_.c:3483
msgid "Printer manufacturer, model, driver"
msgstr ""
-#: ../../printerdrake.pm_.c:3185 ../../printerdrake.pm_.c:3256
+#: ../../printerdrake.pm_.c:3410 ../../printerdrake.pm_.c:3484
msgid "Printer manufacturer, model"
msgstr ""
-#: ../../printerdrake.pm_.c:3194 ../../printerdrake.pm_.c:3266
+#: ../../printerdrake.pm_.c:3419 ../../printerdrake.pm_.c:3494
msgid "Set this printer as the default"
msgstr ""
-#: ../../printerdrake.pm_.c:3196 ../../printerdrake.pm_.c:3271
-msgid "Add this printer to Star Office/OpenOffice.org"
+#: ../../printerdrake.pm_.c:3421 ../../printerdrake.pm_.c:3499
+msgid "Add this printer to Star Office/OpenOffice.org/GIMP"
msgstr ""
-#: ../../printerdrake.pm_.c:3197 ../../printerdrake.pm_.c:3280
-msgid "Remove this printer from Star Office/OpenOffice.org"
+#: ../../printerdrake.pm_.c:3422 ../../printerdrake.pm_.c:3508
+msgid "Remove this printer from Star Office/OpenOffice.org/GIMP"
msgstr ""
-#: ../../printerdrake.pm_.c:3198 ../../printerdrake.pm_.c:3289
+#: ../../printerdrake.pm_.c:3423 ../../printerdrake.pm_.c:3517
#, fuzzy
msgid "Print test pages"
msgstr "Printas provpaűo(j)n..."
-#: ../../printerdrake.pm_.c:3199 ../../printerdrake.pm_.c:3291
+#: ../../printerdrake.pm_.c:3424 ../../printerdrake.pm_.c:3519
#, fuzzy
msgid "Know how to use this printer"
msgstr "Æu vi deziras provi la konfiguraŒon?"
-#: ../../printerdrake.pm_.c:3201 ../../printerdrake.pm_.c:3293
+#: ../../printerdrake.pm_.c:3426 ../../printerdrake.pm_.c:3521
#, fuzzy
msgid "Remove printer"
msgstr "Malproksima printilo"
-#: ../../printerdrake.pm_.c:3245
+#: ../../printerdrake.pm_.c:3472
#, fuzzy, c-format
msgid "Removing old printer \"%s\"..."
msgstr "Legas datumbason de CUPS peliloj..."
-#: ../../printerdrake.pm_.c:3269
+#: ../../printerdrake.pm_.c:3497
#, fuzzy
msgid "Default printer"
msgstr "Loka printilo"
-#: ../../printerdrake.pm_.c:3270
+#: ../../printerdrake.pm_.c:3498
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr ""
-#: ../../printerdrake.pm_.c:3274 ../../printerdrake.pm_.c:3277
-msgid "Adding printer to Star Office/OpenOffice.org"
+#: ../../printerdrake.pm_.c:3502 ../../printerdrake.pm_.c:3505
+msgid "Adding printer to Star Office/OpenOffice.org/GIMP"
msgstr ""
-#: ../../printerdrake.pm_.c:3275
+#: ../../printerdrake.pm_.c:3503
#, c-format
msgid ""
-"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
+"The printer \"%s\" was successfully added to Star Office/OpenOffice.org/GIMP."
msgstr ""
-#: ../../printerdrake.pm_.c:3278
+#: ../../printerdrake.pm_.c:3506
#, c-format
-msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
+msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org/GIMP."
msgstr ""
-#: ../../printerdrake.pm_.c:3283 ../../printerdrake.pm_.c:3286
-msgid "Removing printer from Star Office/OpenOffice.org"
+#: ../../printerdrake.pm_.c:3511 ../../printerdrake.pm_.c:3514
+msgid "Removing printer from Star Office/OpenOffice.org/GIMP"
msgstr ""
-#: ../../printerdrake.pm_.c:3284
+#: ../../printerdrake.pm_.c:3512
#, c-format
msgid ""
-"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
+"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org/"
+"GIMP."
msgstr ""
-#: ../../printerdrake.pm_.c:3287
+#: ../../printerdrake.pm_.c:3515
#, c-format
-msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
+msgid ""
+"Failed to remove the printer \"%s\" from Star Office/OpenOffice.org/GIMP."
msgstr ""
-#: ../../printerdrake.pm_.c:3295
+#: ../../printerdrake.pm_.c:3523
#, fuzzy, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr "Æu vi deziras provi la konfiguraŒon?"
-#: ../../printerdrake.pm_.c:3297
+#: ../../printerdrake.pm_.c:3527
#, fuzzy, c-format
msgid "Removing printer \"%s\"..."
msgstr "Legas datumbason de CUPS peliloj..."
@@ -8468,7 +8790,7 @@ msgstr "Interreto"
msgid "File sharing"
msgstr ""
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1669
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1744
#, fuzzy
msgid "System"
msgstr "Sistema modalo"
@@ -8528,193 +8850,229 @@ msgstr "Stato:"
msgid "Stop"
msgstr "Sektoro"
-#: ../../share/advertising/00-thanks.pl_.c:9
-msgid "Thank you for choosing Mandrake Linux 8.2"
+#: ../../share/advertising/01-thanks.pl_.c:9
+msgid "Thank you for choosing Mandrake Linux 9.0"
msgstr ""
-#: ../../share/advertising/00-thanks.pl_.c:10
+#: ../../share/advertising/01-thanks.pl_.c:10
msgid "Welcome to the Open Source world"
msgstr ""
-#: ../../share/advertising/00-thanks.pl_.c:11
+#: ../../share/advertising/01-thanks.pl_.c:11
msgid ""
"The success of MandrakeSoft is based upon the principle of Free Software. "
"Your new operating system is the result of collaborative work on the part of "
"the worldwide Linux Community"
msgstr ""
-#: ../../share/advertising/01-gnu.pl_.c:9
+#: ../../share/advertising/02-community.pl_.c:9
#, fuzzy
-msgid "Join the Free Software world"
+msgid "Get involved in the Free Software world"
msgstr "La cetero de la mondo"
-#: ../../share/advertising/01-gnu.pl_.c:10
+#: ../../share/advertising/02-community.pl_.c:10
+msgid "Want to know more about the Open Source community?"
+msgstr ""
+
+#: ../../share/advertising/02-community.pl_.c:11
msgid ""
-"Get to know the Open Source community and become a member. Learn, teach, and "
-"help others by joining the many discussion forums that you will find in our "
-"\"Community\" webpages"
+"To share your own knowledge and help build Linux tools, join the discussions "
+"forum you'll find on our \"Community\" webpages"
msgstr ""
-#: ../../share/advertising/02-internet.pl_.c:9
+#: ../../share/advertising/03-internet.pl_.c:9
#, fuzzy
-msgid "Internet and Messaging"
-msgstr "Interreto"
+msgid "Get the most from the Internet"
+msgstr "Konektu al la Interreto"
-#: ../../share/advertising/02-internet.pl_.c:10
+#: ../../share/advertising/03-internet.pl_.c:10
msgid ""
-"Mandrake Linux 8.2 provides the best software to access everything the "
-"Internet has to offer: Surf the web & view animations with Mozilla and "
-"Konqueror, exchange email & organize your personal information with "
-"Evolution and Kmail, and much more"
+"Mandrake Linux 9.0 has selected the best software for you. Surf the Web and "
+"view animations with Mozilla and Konqueror, or read your mail and handle "
+"your personal information with Evolution and Kmail"
msgstr ""
-#: ../../share/advertising/03-graphic.pl_.c:9
-#, fuzzy
-msgid "Multimedia and Graphics"
-msgstr "Plurmedia - Grafiko"
+#: ../../share/advertising/04-multimedia.pl_.c:9
+msgid "Discover the most up-to-date graphics and multimedia tools!"
+msgstr ""
+
+#: ../../share/advertising/04-multimedia.pl_.c:10
+msgid "Push multimedia to its limits!"
+msgstr ""
-#: ../../share/advertising/03-graphic.pl_.c:10
+#: ../../share/advertising/04-multimedia.pl_.c:11
msgid ""
-"Mandrake Linux 8.2 lets you push your multimedia computer to its limits! Use "
-"the latest software to play music and audio files, edit and organize your "
-"images and photos, watch TV and videos, and much more"
+"Mandrake Linux 9.0 enables you to use the very latest software to play audio "
+"files, edit and handle your images or photos, and play videos"
msgstr ""
-#: ../../share/advertising/04-develop.pl_.c:9
-#, fuzzy
-msgid "Development"
-msgstr "Programisto"
+#: ../../share/advertising/05-games.pl_.c:9
+msgid "Games"
+msgstr "Ludoj"
-#: ../../share/advertising/04-develop.pl_.c:10
+#: ../../share/advertising/05-games.pl_.c:10
msgid ""
-"Mandrake Linux 8.2 is the ultimate development platform. Discover the power "
-"of the GNU gcc compiler as well as the best Open Source development "
-"environments"
+"Mandrake Linux 9.0 provides the best Open Source games - arcade, action, "
+"cards, sports, strategy..."
msgstr ""
-#: ../../share/advertising/05-contcenter.pl_.c:9
-#: ../../standalone/drakbug_.c:69
+#: ../../share/advertising/06-mcc.pl_.c:9 ../../standalone/drakbug_.c:69
#, fuzzy
msgid "Mandrake Control Center"
msgstr "Konekti al la interreto"
-#: ../../share/advertising/05-contcenter.pl_.c:10
+#: ../../share/advertising/06-mcc.pl_.c:10
msgid ""
-"The Mandrake Linux 8.2 Control Center is a one-stop location for fully "
-"customizing and configuring your Mandrake system"
+"Mandrake Linux 9.0 provides a powerful tool to fully customize and configure "
+"your machine"
msgstr ""
-#: ../../share/advertising/06-user.pl_.c:9
+#: ../../share/advertising/07-desktop.pl_.c:9
#, fuzzy
msgid "User interfaces"
msgstr "Reta interfaco"
-#: ../../share/advertising/06-user.pl_.c:10
+#: ../../share/advertising/07-desktop.pl_.c:10
msgid ""
-"Mandrake Linux 8.2 provides 11 different graphical desktop environments and "
-"window managers to choose from including GNOME 1.4, KDE 2.2.2, Window Maker "
-"0.8, and the rest"
+"Mandrake Linux 9.0 provides 11 user interfaces which can be fully modified: "
+"KDE 3, Gnome 2, WindowMaker..."
msgstr ""
-#: ../../share/advertising/07-server.pl_.c:9
+#: ../../share/advertising/08-development.pl_.c:9
#, fuzzy
-msgid "Server Software"
-msgstr "Poțtejo de SMB servilo"
+msgid "Development simplified"
+msgstr "Programisto"
-#: ../../share/advertising/07-server.pl_.c:10
+#: ../../share/advertising/08-development.pl_.c:10
+msgid "Mandrake Linux 9.0 is the ultimate development platform"
+msgstr ""
+
+#: ../../share/advertising/08-development.pl_.c:11
msgid ""
-"Transform your machine into a powerful server with just a few clicks of the "
-"mouse: Web server, email, firewall, router, file and print server, ..."
+"Use the full power of the GNU gcc 3 compiler as well as the best Open Source "
+"development environments"
msgstr ""
-#: ../../share/advertising/08-games.pl_.c:9
-msgid "Games"
-msgstr "Ludoj"
+#: ../../share/advertising/09-server.pl_.c:9
+msgid "Turn your machine into a reliable server"
+msgstr ""
-#: ../../share/advertising/08-games.pl_.c:10
+#: ../../share/advertising/09-server.pl_.c:10
msgid ""
-"Mandrake Linux 8.2 provides the best Open Source games - arcade, action, "
-"cards, sports, strategy, ..."
+"Transform your machine into a powerful server in a few clicks of your mouse: "
+"Web server, mail, firewall, router, file and print server..."
msgstr ""
-#: ../../share/advertising/09-MDKcampus.pl_.c:9
-msgid "MandrakeCampus"
+#: ../../share/advertising/10-mnf.pl_.c:9
+msgid "Optimize your security"
msgstr ""
-#: ../../share/advertising/09-MDKcampus.pl_.c:10
+#: ../../share/advertising/10-mnf.pl_.c:10
msgid ""
-"Would you like to learn Linux simply, quickly, and for free? MandrakeSoft "
-"provides free Linux training, as well as a way to test your progress, at "
-"MandrakeCampus -- our online training center"
+"The MandrakeSecurity range includes the Multi Network Firewall product (M.N."
+"F.)"
msgstr ""
-#: ../../share/advertising/10-MDKexpert.pl_.c:9
-#, fuzzy
-msgid "MandrakeExpert"
-msgstr "Spertulo"
+#: ../../share/advertising/10-mnf.pl_.c:11
+msgid ""
+"This firewall product includes network features which allow you to fulfill "
+"all your security needs"
+msgstr ""
-#: ../../share/advertising/10-MDKexpert.pl_.c:10
+#: ../../share/advertising/10-mnf.pl_.c:12
+msgid "This product is available on MandrakeStore website"
+msgstr ""
+
+#: ../../share/advertising/11-mdkstore.pl_.c:9
+msgid "The official MandrakeSoft store"
+msgstr ""
+
+#: ../../share/advertising/11-mdkstore.pl_.c:10
msgid ""
-"Quality support from the Linux Community, and from MandrakeSoft, is just "
-"around the corner. And if you're already a Linux veteran, become an \"Expert"
-"\" and share your knowledge at our support website"
+"Our full range of Linux solutions, as well as special offers on products and "
+"'goodies', are available online at our e-store"
msgstr ""
-#: ../../share/advertising/11-consul.pl_.c:9
-msgid "MandrakeConsulting"
+#: ../../share/advertising/12-mdkstore.pl_.c:9
+msgid "Strategic partners"
msgstr ""
-#: ../../share/advertising/11-consul.pl_.c:10
+#: ../../share/advertising/12-mdkstore.pl_.c:10
msgid ""
-"For all of your IT projects, our consultants are ready to analyze your "
-"requirements and offer a customized solution. Benefit from MandrakeSoft's "
-"vast experience as a Linux producer to provide a true IT alternative for "
-"your business organization"
+"MandrakeSoft works alongside a selection of companies offering professional "
+"solutions compatible with Mandrake Linux; a list of these partners is "
+"available on the MandrakeStore"
msgstr ""
-#: ../../share/advertising/12-MDKstore.pl_.c:9
-msgid "MandrakeStore"
+#: ../../share/advertising/13-mdkcampus.pl_.c:9
+msgid "Discover MandrakeSoft's training catalogue Linux-Campus"
msgstr ""
-#: ../../share/advertising/12-MDKstore.pl_.c:10
+#: ../../share/advertising/13-mdkcampus.pl_.c:10
msgid ""
-"A full range of Linux solutions, as well as special offers on products and "
-"'goodies', are available online at our e-store"
+"The training program has been create to respond to the needs of both users "
+"and experts (Network and System administrations)"
+msgstr ""
+
+#: ../../share/advertising/13-mdkcampus.pl_.c:11
+msgid "Certify yourself on Linux"
+msgstr ""
+
+#: ../../share/advertising/13-mdkcampus.pl_.c:12
+msgid ""
+"Whether you choose to teach yourself online or via our network of training "
+"partners, the Linux-Campus catalogue prepares you for the acknowledged LPI "
+"certification program (worldwide professional technical certification)"
+msgstr ""
+
+#: ../../share/advertising/14-mdkexpert.pl_.c:9
+#, fuzzy
+msgid "Become a MandrakeExpert"
+msgstr "Spertulo"
+
+#: ../../share/advertising/14-mdkexpert.pl_.c:10
+msgid ""
+"Find the solutions to your problems via MandrakeSoft's online support "
+"platform"
msgstr ""
-#: ../../share/advertising/13-Nvert.pl_.c:9
+#: ../../share/advertising/14-mdkexpert.pl_.c:11
msgid ""
-"For more information on MandrakeSoft's Professional Services and commercial "
-"offerings, please see the following web page:"
+"Join the MandrakeSoft support teams and the Linux Community online to share "
+"your knowledge and help others by becoming a recognized Expert on the online "
+"technical support website:"
+msgstr ""
+
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:9
+#, fuzzy
+msgid "MandrakeExpert Corporate"
+msgstr "Spertulo"
+
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:10
+msgid "An online platform to respond to company's specific support needs"
msgstr ""
-#: ../../share/advertising/13-Nvert.pl_.c:11
-msgid "http://www.mandrakesoft.com/sales/contact"
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:11
+msgid ""
+"All incidents will be followed up by a single qualified MandrakeSoft "
+"technical expert."
msgstr ""
-#: ../../standalone.pm_.c:40
+#: ../../standalone.pm_.c:41
#, fuzzy
msgid "Installing packages..."
msgstr "Instalanta pakaŒo %s"
-#: ../../standalone/XFdrake_.c:143
+#: ../../standalone/XFdrake_.c:145
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr ""
"Bonvole adiaęu kaj sekve uzu Kontrol-Alt-Retropațo (Ctrl-Alt-Backspace)."
-#: ../../standalone/XFdrake_.c:147
+#: ../../standalone/XFdrake_.c:149
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "Bonvolu resaluti en %s-n por aktivigi la țanűojn."
-#: ../../standalone/diskdrake_.c:81
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I'll try to go on blanking bad partitions"
-msgstr ""
-"Mi ne povas legi vian subdisktabelon, űi estas tro difektita por mi :(\n"
-"Mi penos daęri per blankigi difektitajn subdiskojn"
-
#: ../../standalone/drakTermServ_.c:188
#, fuzzy
msgid "Mandrake Terminal Server Configuration"
@@ -8757,12 +9115,13 @@ msgstr "Aldonu uzanto"
msgid "Add/Del Clients"
msgstr ""
-#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3282
-#: ../../standalone/drakbackup_.c:3315 ../../standalone/drakbackup_.c:3341
-#: ../../standalone/drakbackup_.c:3368 ../../standalone/drakbackup_.c:3395
-#: ../../standalone/drakbackup_.c:3434 ../../standalone/drakbackup_.c:3455
-#: ../../standalone/drakbackup_.c:3482 ../../standalone/drakbackup_.c:3508
-#: ../../standalone/drakbackup_.c:3533 ../../standalone/drakfont_.c:700
+#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3930
+#: ../../standalone/drakbackup_.c:3963 ../../standalone/drakbackup_.c:3989
+#: ../../standalone/drakbackup_.c:4016 ../../standalone/drakbackup_.c:4043
+#: ../../standalone/drakbackup_.c:4082 ../../standalone/drakbackup_.c:4103
+#: ../../standalone/drakbackup_.c:4130 ../../standalone/drakbackup_.c:4160
+#: ../../standalone/drakbackup_.c:4186 ../../standalone/drakbackup_.c:4211
+#: ../../standalone/drakfont_.c:700
#, fuzzy
msgid "Help"
msgstr "/_Helpo"
@@ -8922,8 +9281,8 @@ msgid ""
"The parameters of the auto-install are available in the sections on the left"
msgstr ""
-#: ../../standalone/drakautoinst_.c:239 ../../standalone/drakgw_.c:548
-#: ../../standalone/scannerdrake_.c:105
+#: ../../standalone/drakautoinst_.c:239 ../../standalone/drakgw_.c:484
+#: ../../standalone/scannerdrake_.c:119
msgid "Congratulations!"
msgstr "Gratulojn!"
@@ -8948,27 +9307,31 @@ msgstr "Aldonu uzulon"
msgid "Remove the last item"
msgstr "Formatas retrokonektan dosieron %s"
-#: ../../standalone/drakbackup_.c:625
+#: ../../standalone/drakbackup_.c:619
msgid "Cron not available yet as non-root"
msgstr ""
-#: ../../standalone/drakbackup_.c:731
+#: ../../standalone/drakbackup_.c:725
msgid "WARNING"
msgstr ""
-#: ../../standalone/drakbackup_.c:732
+#: ../../standalone/drakbackup_.c:726
#, fuzzy
msgid "FATAL"
msgstr "Dosierlokigtabelo (FAT)"
-#: ../../standalone/drakbackup_.c:744
+#: ../../standalone/drakbackup_.c:727
+msgid "INFO"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:739
msgid ""
"\n"
" DrakBackup Report \n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:745
+#: ../../standalone/drakbackup_.c:740
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -8976,7 +9339,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:749
+#: ../../standalone/drakbackup_.c:744
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -8984,13 +9347,20 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:770 ../../standalone/drakbackup_.c:840
-#: ../../standalone/drakbackup_.c:894
+#: ../../standalone/drakbackup_.c:765 ../../standalone/drakbackup_.c:835
+#: ../../standalone/drakbackup_.c:889
#, fuzzy
msgid "Total progess"
msgstr "Provu pordojn"
-#: ../../standalone/drakbackup_.c:822
+#: ../../standalone/drakbackup_.c:788
+msgid ""
+"Sorry, perl-Expect is not installed/enabled. To use\n"
+"this feature, install perl-Expect and comment lines 772-774,\n"
+" as well as 788,789. Then uncomment line 787."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:817
#, c-format
msgid ""
"%s exists, delete?\n"
@@ -8999,16 +9369,41 @@ msgid ""
" need to purge the entry from authorized_keys on the server."
msgstr ""
-#: ../../standalone/drakbackup_.c:831
+#: ../../standalone/drakbackup_.c:826
msgid "This may take a moment to generate the keys."
msgstr ""
-#: ../../standalone/drakbackup_.c:838
+#: ../../standalone/drakbackup_.c:833
#, c-format
msgid "ERROR: Cannot spawn %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:865
+#: ../../standalone/drakbackup_.c:850
+#, c-format
+msgid "No password prompt on %s at port %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:851
+#, fuzzy, c-format
+msgid "Bad password on %s"
+msgstr "Neniu pasvorto"
+
+#: ../../standalone/drakbackup_.c:852
+#, c-format
+msgid "Permission denied transferring %s to %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:853
+#, fuzzy, c-format
+msgid "Can't find %s on %s"
+msgstr "Ne povis malfermi %s por skribi: %s\n"
+
+#: ../../standalone/drakbackup_.c:856
+#, c-format
+msgid "%s not responding"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:860
#, c-format
msgid ""
"Transfer successful\n"
@@ -9019,63 +9414,68 @@ msgid ""
"without being prompted for a password."
msgstr ""
-#: ../../standalone/drakbackup_.c:908
+#: ../../standalone/drakbackup_.c:903
msgid "WebDAV remote site already in sync!"
msgstr ""
-#: ../../standalone/drakbackup_.c:912
+#: ../../standalone/drakbackup_.c:907
msgid "WebDAV transfer failed!"
msgstr ""
-#: ../../standalone/drakbackup_.c:934
+#: ../../standalone/drakbackup_.c:928
msgid "No CDR/DVDR in drive!"
msgstr ""
-#: ../../standalone/drakbackup_.c:938
+#: ../../standalone/drakbackup_.c:932
msgid "Does not appear to be recordable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:942
+#: ../../standalone/drakbackup_.c:936
msgid "Not erasable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:981
+#: ../../standalone/drakbackup_.c:975
msgid "This may take a moment to erase the media."
msgstr ""
-#: ../../standalone/drakbackup_.c:1045
+#: ../../standalone/drakbackup_.c:1060
msgid "Permission problem accessing CD."
msgstr ""
-#: ../../standalone/drakbackup_.c:1144 ../../standalone/drakbackup_.c:1193
+#: ../../standalone/drakbackup_.c:1087
+#, c-format
+msgid "No tape in %s!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1199 ../../standalone/drakbackup_.c:1248
msgid "Backup system files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:1194 ../../standalone/drakbackup_.c:1261
+#: ../../standalone/drakbackup_.c:1249 ../../standalone/drakbackup_.c:1316
#, fuzzy
msgid "Hard Disk Backup files..."
msgstr "Malbona rezerva dosiero"
-#: ../../standalone/drakbackup_.c:1206
+#: ../../standalone/drakbackup_.c:1261
#, fuzzy
msgid "Backup User files..."
msgstr "Malbona rezerva dosiero"
-#: ../../standalone/drakbackup_.c:1207
+#: ../../standalone/drakbackup_.c:1262
msgid "Hard Disk Backup Progress..."
msgstr ""
-#: ../../standalone/drakbackup_.c:1260
+#: ../../standalone/drakbackup_.c:1315
#, fuzzy
msgid "Backup Other files..."
msgstr "Malbona rezerva dosiero"
-#: ../../standalone/drakbackup_.c:1266
+#: ../../standalone/drakbackup_.c:1321
#, fuzzy
msgid "No changes to backup!"
msgstr "Malbona rezerva dosiero"
-#: ../../standalone/drakbackup_.c:1282 ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1337 ../../standalone/drakbackup_.c:1360
#, c-format
msgid ""
"\n"
@@ -9083,800 +9483,923 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1289
+#: ../../standalone/drakbackup_.c:1344
#, c-format
msgid ""
-"file list sent by FTP : %s\n"
+"file list sent by FTP: %s\n"
" "
msgstr ""
-#: ../../standalone/drakbackup_.c:1292
+#: ../../standalone/drakbackup_.c:1347
msgid ""
"\n"
" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1310
+#: ../../standalone/drakbackup_.c:1365
msgid ""
"\n"
"Drakbackup activities via CD:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1315
+#: ../../standalone/drakbackup_.c:1370
msgid ""
"\n"
"Drakbackup activities via tape:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1324
+#: ../../standalone/drakbackup_.c:1379
#, fuzzy
msgid " Error during mail sending. \n"
msgstr "Eraro legante dosiero %s"
-#: ../../standalone/drakbackup_.c:1346
+#: ../../standalone/drakbackup_.c:1404
msgid "Can't create catalog!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1459 ../../standalone/drakbackup_.c:1470
-#: ../../standalone/drakbackup_.c:1481 ../../standalone/drakfont_.c:1004
+#: ../../standalone/drakbackup_.c:1517 ../../standalone/drakbackup_.c:1528
+#: ../../standalone/drakfont_.c:1004
#, fuzzy
msgid "File Selection"
msgstr "Elektado de PakaŒoj"
-#: ../../standalone/drakbackup_.c:1486
+#: ../../standalone/drakbackup_.c:1556
msgid "Select the files or directories and click on 'Add'"
msgstr ""
-#: ../../standalone/drakbackup_.c:1525
+#: ../../standalone/drakbackup_.c:1600
msgid ""
"\n"
"Please check all options that you need.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1526
+#: ../../standalone/drakbackup_.c:1601
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1527
+#: ../../standalone/drakbackup_.c:1602
#, fuzzy
msgid "Backup your System files. (/etc directory)"
msgstr "Malbona rezerva dosiero"
-#: ../../standalone/drakbackup_.c:1528
+#: ../../standalone/drakbackup_.c:1603
msgid "Use incremental backup (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1529
+#: ../../standalone/drakbackup_.c:1604
msgid "Do not include critical files (passwd, group, fstab)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1530
+#: ../../standalone/drakbackup_.c:1605
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr ""
-#: ../../standalone/drakbackup_.c:1547
+#: ../../standalone/drakbackup_.c:1622
#, fuzzy
msgid "Please check all users that you want to include in your backup."
msgstr "Bonvole, elektu la pakaŒojn kiujn vi deziras instali."
-#: ../../standalone/drakbackup_.c:1574
+#: ../../standalone/drakbackup_.c:1649
msgid "Do not include the browser cache"
msgstr ""
-#: ../../standalone/drakbackup_.c:1575 ../../standalone/drakbackup_.c:1599
+#: ../../standalone/drakbackup_.c:1650 ../../standalone/drakbackup_.c:1674
msgid "Use Incremental Backups (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1597 ../../standalone/drakfont_.c:1058
+#: ../../standalone/drakbackup_.c:1672 ../../standalone/drakfont_.c:1058
#, fuzzy
msgid "Remove Selected"
msgstr "Malinstalu printvicon"
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:1710
#, fuzzy
msgid "Windows (FAT32)"
msgstr "Forigu Vindozon"
-#: ../../standalone/drakbackup_.c:1674
+#: ../../standalone/drakbackup_.c:1749
#, fuzzy
msgid "Users"
msgstr "Salutnomo"
-#: ../../standalone/drakbackup_.c:1700
+#: ../../standalone/drakbackup_.c:1775
#, fuzzy
msgid "Use network connection to backup"
msgstr "Malbona rezerva dosiero"
-#: ../../standalone/drakbackup_.c:1706
+#: ../../standalone/drakbackup_.c:1777
+msgid "Net Method:"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1781
msgid "Use Expect for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1707
+#: ../../standalone/drakbackup_.c:1782
msgid ""
"Create/Transfer\n"
"backup keys for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1708
+#: ../../standalone/drakbackup_.c:1783
msgid ""
" Transfer \n"
"Now"
msgstr ""
-#: ../../standalone/drakbackup_.c:1709
+#: ../../standalone/drakbackup_.c:1784
msgid "Keys in place already"
msgstr ""
-#: ../../standalone/drakbackup_.c:1713
+#: ../../standalone/drakbackup_.c:1788
#, fuzzy
msgid "Please enter the host name or IP."
msgstr "Bonvole, provu la muson"
-#: ../../standalone/drakbackup_.c:1718
+#: ../../standalone/drakbackup_.c:1793
msgid ""
"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
-#: ../../standalone/drakbackup_.c:1723
+#: ../../standalone/drakbackup_.c:1798
#, fuzzy
msgid "Please enter your login"
msgstr "Bonvole provu denove"
-#: ../../standalone/drakbackup_.c:1728
+#: ../../standalone/drakbackup_.c:1803
#, fuzzy
msgid "Please enter your password"
msgstr "Bonvole provu denove"
-#: ../../standalone/drakbackup_.c:1734
+#: ../../standalone/drakbackup_.c:1809
#, fuzzy
msgid "Remember this password"
msgstr "Neniu pasvorto"
-#: ../../standalone/drakbackup_.c:1745
+#: ../../standalone/drakbackup_.c:1820
msgid "Need hostname, username and password!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1841
+#: ../../standalone/drakbackup_.c:1915
msgid "Use CD/DVDROM to backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1844
+#: ../../standalone/drakbackup_.c:1918
msgid ""
"Please choose your CD/DVD device\n"
"(Press Enter to propogate settings to other fields.\n"
"This field isn't necessary, only a tool to fill in the form.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1849
+#: ../../standalone/drakbackup_.c:1923
#, fuzzy
msgid "Please choose your CD/DVD media size"
msgstr "Bonvole, elektu vian klavaran aranűon."
-#: ../../standalone/drakbackup_.c:1855
+#: ../../standalone/drakbackup_.c:1929
#, fuzzy
msgid "Please check for multisession CD"
msgstr "Bonvolu klaki sur subdiskon"
-#: ../../standalone/drakbackup_.c:1861
+#: ../../standalone/drakbackup_.c:1935
#, fuzzy
msgid "Please check if you are using CDRW media"
msgstr "Bonvolu klaki sur subdiskon"
-#: ../../standalone/drakbackup_.c:1867
+#: ../../standalone/drakbackup_.c:1941
#, fuzzy
msgid "Please check if you want to erase your RW media (1st Session)"
msgstr "Bonvolu klaki sur subdiskon"
-#: ../../standalone/drakbackup_.c:1868
+#: ../../standalone/drakbackup_.c:1942
msgid " Erase Now "
msgstr ""
-#: ../../standalone/drakbackup_.c:1874
+#: ../../standalone/drakbackup_.c:1948
#, fuzzy
msgid "Please check if you are using a DVDR device"
msgstr "Bonvolu klaki sur subdiskon"
-#: ../../standalone/drakbackup_.c:1880
+#: ../../standalone/drakbackup_.c:1954
#, fuzzy
msgid "Please check if you are using a DVDRAM device"
msgstr "Bonvolu klaki sur subdiskon"
-#: ../../standalone/drakbackup_.c:1893
+#: ../../standalone/drakbackup_.c:1967
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
msgstr ""
-#: ../../standalone/drakbackup_.c:1926
+#: ../../standalone/drakbackup_.c:2000
#, fuzzy
msgid "No CD device defined!"
msgstr "Elektu dosieron"
-#: ../../standalone/drakbackup_.c:1974
+#: ../../standalone/drakbackup_.c:2048
#, fuzzy
msgid "Use tape to backup"
msgstr "Malbona rezerva dosiero"
-#: ../../standalone/drakbackup_.c:1977
+#: ../../standalone/drakbackup_.c:2051
msgid "Please enter the device name to use for backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1983
+#: ../../standalone/drakbackup_.c:2057
#, fuzzy
msgid "Please check if you want to use the non-rewinding device."
msgstr "Bonvole, elektu la pakaŒojn kiujn vi deziras instali."
-#: ../../standalone/drakbackup_.c:1989
+#: ../../standalone/drakbackup_.c:2063
#, fuzzy
msgid "Please check if you want to erase your tape before the backup."
msgstr "Bonvole, elektu la pakaŒojn kiujn vi deziras instali."
-#: ../../standalone/drakbackup_.c:1995
+#: ../../standalone/drakbackup_.c:2069
#, fuzzy
msgid "Please check if you want to eject your tape after the backup."
msgstr "Bonvole, elektu la pakaŒojn kiujn vi deziras instali."
-#: ../../standalone/drakbackup_.c:2001 ../../standalone/drakbackup_.c:2074
-#: ../../standalone/drakbackup_.c:3025
+#: ../../standalone/drakbackup_.c:2075 ../../standalone/drakbackup_.c:2149
+#: ../../standalone/drakbackup_.c:3116
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:2066
+#: ../../standalone/drakbackup_.c:2140
#, fuzzy
msgid "Please enter the directory to save to:"
msgstr "Bonvole, provu la muson"
-#: ../../standalone/drakbackup_.c:2080 ../../standalone/drakbackup_.c:3031
+#: ../../standalone/drakbackup_.c:2155 ../../standalone/drakbackup_.c:3122
#, fuzzy
msgid "Use quota for backup files."
msgstr "Malbona rezerva dosiero"
-#: ../../standalone/drakbackup_.c:2146
+#: ../../standalone/drakbackup_.c:2221
#, fuzzy
msgid "Network"
msgstr "Reta interfaco"
-#: ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:2226
msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2156
+#: ../../standalone/drakbackup_.c:2231
msgid "HardDrive / NFS"
msgstr ""
-#: ../../standalone/drakbackup_.c:2161
+#: ../../standalone/drakbackup_.c:2236
#, fuzzy
msgid "Tape"
msgstr "Tipo"
-#: ../../standalone/drakbackup_.c:2175 ../../standalone/drakbackup_.c:2179
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2250 ../../standalone/drakbackup_.c:2254
+#: ../../standalone/drakbackup_.c:2258
msgid "hourly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2176 ../../standalone/drakbackup_.c:2180
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2251 ../../standalone/drakbackup_.c:2255
+#: ../../standalone/drakbackup_.c:2258
msgid "daily"
msgstr ""
-#: ../../standalone/drakbackup_.c:2177 ../../standalone/drakbackup_.c:2181
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2252 ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2258
msgid "weekly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2178 ../../standalone/drakbackup_.c:2182
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2253 ../../standalone/drakbackup_.c:2257
+#: ../../standalone/drakbackup_.c:2258
msgid "monthly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2196
+#: ../../standalone/drakbackup_.c:2271
#, fuzzy
msgid "Use daemon"
msgstr "Salutnomo"
-#: ../../standalone/drakbackup_.c:2201
+#: ../../standalone/drakbackup_.c:2276
#, fuzzy
msgid ""
"Please choose the time \n"
"interval between each backup"
msgstr "Bonvole, elektu la pakaŒojn kiujn vi deziras instali."
-#: ../../standalone/drakbackup_.c:2207
+#: ../../standalone/drakbackup_.c:2282
#, fuzzy
msgid ""
"Please choose the\n"
"media for backup."
msgstr "Bonvole, elektu lingvon por uzi."
-#: ../../standalone/drakbackup_.c:2214
+#: ../../standalone/drakbackup_.c:2289
msgid ""
"Please be sure that the cron daemon is included in your services. \n"
"\n"
"Note that currently all 'net' medias also use the hard drive."
msgstr ""
-#: ../../standalone/drakbackup_.c:2251
-msgid "Send mail report after each backup to :"
+#: ../../standalone/drakbackup_.c:2326
+msgid "Send mail report after each backup to:"
msgstr ""
-#: ../../standalone/drakbackup_.c:2257
+#: ../../standalone/drakbackup_.c:2332
msgid "Delete Hard Drive tar files after backup to other media."
msgstr ""
-#: ../../standalone/drakbackup_.c:2296
+#: ../../standalone/drakbackup_.c:2371
msgid "What"
msgstr ""
-#: ../../standalone/drakbackup_.c:2301
+#: ../../standalone/drakbackup_.c:2376
#, fuzzy
msgid "Where"
msgstr "Rado"
-#: ../../standalone/drakbackup_.c:2306
+#: ../../standalone/drakbackup_.c:2381
#, fuzzy
msgid "When"
msgstr "Rado"
-#: ../../standalone/drakbackup_.c:2311
+#: ../../standalone/drakbackup_.c:2386
#, fuzzy
msgid "More Options"
msgstr "Modulaj opcioj:"
-#: ../../standalone/drakbackup_.c:2330 ../../standalone/drakbackup_.c:3873
+#: ../../standalone/drakbackup_.c:2405 ../../standalone/drakbackup_.c:4530
#, fuzzy
msgid "Drakbackup Configuration"
msgstr "Reta KonfiguraŒo"
-#: ../../standalone/drakbackup_.c:2348
+#: ../../standalone/drakbackup_.c:2423
#, fuzzy
msgid "Please choose where you want to backup"
msgstr "Bonvole, elektu la pakaŒojn kiujn vi deziras instali."
-#: ../../standalone/drakbackup_.c:2350
+#: ../../standalone/drakbackup_.c:2425
msgid "on Hard Drive"
msgstr ""
-#: ../../standalone/drakbackup_.c:2360
+#: ../../standalone/drakbackup_.c:2435
msgid "across Network"
msgstr ""
-#: ../../standalone/drakbackup_.c:2370
+#: ../../standalone/drakbackup_.c:2445
msgid "on CDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2378
+#: ../../standalone/drakbackup_.c:2453
msgid "on Tape Device"
msgstr ""
-#: ../../standalone/drakbackup_.c:2421
+#: ../../standalone/drakbackup_.c:2496
#, fuzzy
msgid "Please choose what you want to backup"
msgstr "Bonvole, elektu la pakaŒojn kiujn vi deziras instali."
-#: ../../standalone/drakbackup_.c:2422
+#: ../../standalone/drakbackup_.c:2497
#, fuzzy
msgid "Backup system"
msgstr "Dosiersistemo konfiguro"
-#: ../../standalone/drakbackup_.c:2423
+#: ../../standalone/drakbackup_.c:2498
msgid "Backup Users"
msgstr ""
-#: ../../standalone/drakbackup_.c:2426
+#: ../../standalone/drakbackup_.c:2501
msgid "Select user manually"
msgstr ""
-#: ../../standalone/drakbackup_.c:2508
+#: ../../standalone/drakbackup_.c:2584
msgid ""
"\n"
"Backup Sources: \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2509
+#: ../../standalone/drakbackup_.c:2585
msgid ""
"\n"
"- System Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2511
+#: ../../standalone/drakbackup_.c:2587
msgid ""
"\n"
"- User Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2513
+#: ../../standalone/drakbackup_.c:2589
msgid ""
"\n"
"- Other Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2515
+#: ../../standalone/drakbackup_.c:2591
#, c-format
msgid ""
"\n"
-"- Save on Hard drive on path : %s\n"
+"- Save on Hard drive on path: %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2518
+#: ../../standalone/drakbackup_.c:2594
msgid ""
"\n"
"- Delete hard drive tar files after backup.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2524
+#: ../../standalone/drakbackup_.c:2600
msgid ""
"\n"
"- Burn to CD"
msgstr ""
-#: ../../standalone/drakbackup_.c:2525
+#: ../../standalone/drakbackup_.c:2601
msgid "RW"
msgstr ""
-#: ../../standalone/drakbackup_.c:2526
+#: ../../standalone/drakbackup_.c:2602
#, fuzzy, c-format
-msgid " on device : %s"
+msgid " on device: %s"
msgstr "Musaparato: %s\n"
-#: ../../standalone/drakbackup_.c:2527
+#: ../../standalone/drakbackup_.c:2603
msgid " (multi-session)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2528
+#: ../../standalone/drakbackup_.c:2604
#, c-format
msgid ""
"\n"
-"- Save to Tape on device : %s"
+"- Save to Tape on device: %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2529
+#: ../../standalone/drakbackup_.c:2605
#, c-format
msgid "\t\tErase=%s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2532
+#: ../../standalone/drakbackup_.c:2608
#, c-format
msgid ""
"\n"
-"- Save via %s on host : %s\n"
+"- Save via %s on host: %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2533
+#: ../../standalone/drakbackup_.c:2609
#, c-format
msgid ""
"\t\t user name: %s\n"
"\t\t on path: %s \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2534
+#: ../../standalone/drakbackup_.c:2610
#, fuzzy
msgid ""
"\n"
"- Options:\n"
msgstr "Opcioj"
-#: ../../standalone/drakbackup_.c:2535
+#: ../../standalone/drakbackup_.c:2611
msgid "\tDo not include System Files\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2538
+#: ../../standalone/drakbackup_.c:2614
msgid "\tBackups use tar and bzip2\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2540
+#: ../../standalone/drakbackup_.c:2616
msgid "\tBackups use tar and gzip\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2543
+#: ../../standalone/drakbackup_.c:2619
#, c-format
msgid ""
"\n"
-"- Daemon (%s) include :\n"
+"- Daemon (%s) include:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2544
+#: ../../standalone/drakbackup_.c:2620
msgid "\t-Hard drive.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2545
+#: ../../standalone/drakbackup_.c:2621
msgid "\t-CDROM.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2546
+#: ../../standalone/drakbackup_.c:2622
msgid "\t-Tape \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2547
+#: ../../standalone/drakbackup_.c:2623
msgid "\t-Network by FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2548
+#: ../../standalone/drakbackup_.c:2624
msgid "\t-Network by SSH.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2549
+#: ../../standalone/drakbackup_.c:2625
msgid "\t-Network by rsync.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2550
+#: ../../standalone/drakbackup_.c:2626
msgid "\t-Network by webdav.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2552
+#: ../../standalone/drakbackup_.c:2628
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2558
+#: ../../standalone/drakbackup_.c:2634
msgid ""
"List of data to restore:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2725
+#: ../../standalone/drakbackup_.c:2801
msgid ""
"List of data corrupted:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2727
+#: ../../standalone/drakbackup_.c:2803
#, fuzzy
msgid "Please uncheck or remove it on next time."
msgstr "Bonvole, elektu al kiu seria pordo estas via modemo konektata?"
-#: ../../standalone/drakbackup_.c:2737
+#: ../../standalone/drakbackup_.c:2813
msgid "Backup files are corrupted"
msgstr ""
-#: ../../standalone/drakbackup_.c:2758
+#: ../../standalone/drakbackup_.c:2834
msgid " All of your selected data have been "
msgstr ""
-#: ../../standalone/drakbackup_.c:2759
+#: ../../standalone/drakbackup_.c:2835
#, c-format
msgid " Successfuly Restored on %s "
msgstr ""
-#: ../../standalone/drakbackup_.c:2877
+#: ../../standalone/drakbackup_.c:2953
#, fuzzy
msgid " Restore Configuration "
msgstr "Reta KonfiguraŒo"
-#: ../../standalone/drakbackup_.c:2895
+#: ../../standalone/drakbackup_.c:2971
msgid "OK to restore the other files."
msgstr ""
-#: ../../standalone/drakbackup_.c:2912
+#: ../../standalone/drakbackup_.c:2988
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2975
+#: ../../standalone/drakbackup_.c:3066
#, fuzzy
msgid "Backup the system files before:"
msgstr "Malbona rezerva dosiero"
-#: ../../standalone/drakbackup_.c:2977
+#: ../../standalone/drakbackup_.c:3068
#, fuzzy
msgid "please choose the date to restore"
msgstr "Bonvole, elektu la specon de via muso."
-#: ../../standalone/drakbackup_.c:3014
+#: ../../standalone/drakbackup_.c:3105
#, fuzzy
msgid "Use Hard Disk to backup"
msgstr "Malbona rezerva dosiero"
-#: ../../standalone/drakbackup_.c:3017
+#: ../../standalone/drakbackup_.c:3108
#, fuzzy
msgid "Please enter the directory to save:"
msgstr "Bonvole, provu la muson"
-#: ../../standalone/drakbackup_.c:3060
+#: ../../standalone/drakbackup_.c:3151
#, fuzzy
msgid "FTP Connection"
msgstr "LAN KonfiguraŒo"
-#: ../../standalone/drakbackup_.c:3067
+#: ../../standalone/drakbackup_.c:3158
#, fuzzy
msgid "Secure Connection"
msgstr "Elektu Printilan Konekton"
-#: ../../standalone/drakbackup_.c:3093
+#: ../../standalone/drakbackup_.c:3184
#, fuzzy
msgid "Restore from Hard Disk."
msgstr "Restaęru de disketo"
-#: ../../standalone/drakbackup_.c:3095
+#: ../../standalone/drakbackup_.c:3186
msgid "Please enter the directory where backups are stored"
msgstr ""
-#: ../../standalone/drakbackup_.c:3157
+#: ../../standalone/drakbackup_.c:3254
#, fuzzy
msgid "Select another media to restore from"
msgstr "Bonvole, elektu la specon de via muso."
-#: ../../standalone/drakbackup_.c:3159
+#: ../../standalone/drakbackup_.c:3256
#, fuzzy
msgid "Other Media"
msgstr "Alia"
-#: ../../standalone/drakbackup_.c:3164
+#: ../../standalone/drakbackup_.c:3261
#, fuzzy
msgid "Restore system"
msgstr "Instalu sistemon"
-#: ../../standalone/drakbackup_.c:3165
+#: ../../standalone/drakbackup_.c:3262
#, fuzzy
msgid "Restore Users"
msgstr "Restaęru de dosiero"
-#: ../../standalone/drakbackup_.c:3166
+#: ../../standalone/drakbackup_.c:3263
#, fuzzy
msgid "Restore Other"
msgstr "Restaęru de dosiero"
-#: ../../standalone/drakbackup_.c:3168
+#: ../../standalone/drakbackup_.c:3265
#, fuzzy
msgid "select path to restore (instead of /)"
msgstr "Bonvole, elektu la specon de via muso."
-#: ../../standalone/drakbackup_.c:3172
+#: ../../standalone/drakbackup_.c:3269
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:3174
+#: ../../standalone/drakbackup_.c:3271
msgid "Remove user directories before restore."
msgstr ""
-#: ../../standalone/drakbackup_.c:3232
+#: ../../standalone/drakbackup_.c:3384
+msgid ""
+"Restore Selected\n"
+"Catalog Entry"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3394
+#, fuzzy
+msgid ""
+"Restore Selected\n"
+"Files"
+msgstr "Malinstalu printvicon"
+
+#: ../../standalone/drakbackup_.c:3411
+#, fuzzy
+msgid ""
+"Change\n"
+"Restore Path"
+msgstr "Restaęru de dosiero"
+
+#: ../../standalone/drakbackup_.c:3477
+#, c-format
+msgid "Backup files not found at %s."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3490
+#, c-format
+msgid ""
+"Insert the CD with volume label %s\n"
+" in the CD drive under mount point /mnt/cdrom"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3490
+#, fuzzy
+msgid "Restore From CD"
+msgstr "Restaęru de disketo"
+
+#: ../../standalone/drakbackup_.c:3492
+#, c-format
+msgid "Not the correct CD label. Disk is labelled %s."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3502
+#, c-format
+msgid ""
+"Insert the tape with volume label %s\n"
+" in the tape drive device %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3502
+#, fuzzy
+msgid "Restore From Tape"
+msgstr "Sava subdiskotabelo"
+
+#: ../../standalone/drakbackup_.c:3504
+#, c-format
+msgid "Not the correct tape label. Tape is labelled %s."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3524
+#, fuzzy
+msgid "Restore Via Network"
+msgstr "Restaęru de dosiero"
+
+#: ../../standalone/drakbackup_.c:3524
+#, c-format
+msgid "Restore Via Network Protocol: %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3525
+#, fuzzy
+msgid "Host Name"
+msgstr "Poțtejo"
+
+#: ../../standalone/drakbackup_.c:3526
+msgid "Host Path or Module"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3533
+#, fuzzy
+msgid "Password required"
+msgstr "Pasvorto"
+
+#: ../../standalone/drakbackup_.c:3539
+#, fuzzy
+msgid "Username required"
+msgstr "Salutnomo"
+
+#: ../../standalone/drakbackup_.c:3542
+#, fuzzy
+msgid "Hostname required"
+msgstr "Poțtejo: "
+
+#: ../../standalone/drakbackup_.c:3547
+msgid "Path or Module required"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3560
+msgid "Files Restored..."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3563
+#, fuzzy
+msgid "Restore Failed..."
+msgstr "Restaęru de dosiero"
+
+#: ../../standalone/drakbackup_.c:3801
msgid "Restore all backups"
msgstr ""
-#: ../../standalone/drakbackup_.c:3241
+#: ../../standalone/drakbackup_.c:3810
#, fuzzy
msgid "Custom Restore"
msgstr "Akomodata"
-#: ../../standalone/drakbackup_.c:3287 ../../standalone/drakbackup_.c:3320
-#: ../../standalone/drakbackup_.c:3346 ../../standalone/drakbackup_.c:3373
-#: ../../standalone/drakbackup_.c:3400 ../../standalone/drakbackup_.c:3460
-#: ../../standalone/drakbackup_.c:3487 ../../standalone/drakbackup_.c:3513
+#: ../../standalone/drakbackup_.c:3856
+msgid "CD in place - continue."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3862
+msgid "Browse to new restore repository."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3865
+#, fuzzy
+msgid "Restore From Catalog"
+msgstr "Sava subdiskotabelo"
+
+#: ../../standalone/drakbackup_.c:3893
+#, fuzzy
+msgid "Restore Progress"
+msgstr "Restaęru de dosiero"
+
+#: ../../standalone/drakbackup_.c:3935 ../../standalone/drakbackup_.c:3968
+#: ../../standalone/drakbackup_.c:3994 ../../standalone/drakbackup_.c:4021
+#: ../../standalone/drakbackup_.c:4048 ../../standalone/drakbackup_.c:4108
+#: ../../standalone/drakbackup_.c:4135 ../../standalone/drakbackup_.c:4165
+#: ../../standalone/drakbackup_.c:4191
#, fuzzy
msgid "Previous"
msgstr "<- Antaęa"
-#: ../../standalone/drakbackup_.c:3291 ../../standalone/drakbackup_.c:3377
+#: ../../standalone/drakbackup_.c:3939 ../../standalone/drakbackup_.c:4025
#: ../../standalone/logdrake_.c:223
#, fuzzy
msgid "Save"
msgstr "Stato:"
-#: ../../standalone/drakbackup_.c:3350
+#: ../../standalone/drakbackup_.c:3998
#, fuzzy
msgid "Build Backup"
msgstr "Malbona rezerva dosiero"
-#: ../../standalone/drakbackup_.c:3404 ../../standalone/drakbackup_.c:3974
+#: ../../standalone/drakbackup_.c:4052 ../../standalone/drakbackup_.c:4632
#, fuzzy
msgid "Restore"
msgstr "Restaęru de dosiero"
-#: ../../standalone/drakbackup_.c:3553
+#: ../../standalone/drakbackup_.c:4231
msgid ""
-"Please Build backup before to restore it...\n"
-" or verify that your path to save is correct."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3574
-msgid ""
-"Error during sendmail\n"
-" your report mail was not sent\n"
+"Error during sendmail.\n"
+" Your report mail was not sent.\n"
" Please configure sendmail"
msgstr ""
-#: ../../standalone/drakbackup_.c:3598
+#: ../../standalone/drakbackup_.c:4255
#, fuzzy
msgid ""
"The following packages need to be installed:\n"
" @list_of_rpm_to_install"
msgstr "La sekvaj pakaŒoj estos instalataj"
-#: ../../standalone/drakbackup_.c:3621
+#: ../../standalone/drakbackup_.c:4278
msgid ""
"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
-#: ../../standalone/drakbackup_.c:3644
+#: ../../standalone/drakbackup_.c:4301
#, fuzzy
msgid "Please select data to restore..."
msgstr "Bonvole, elektu lingvon por uzi."
-#: ../../standalone/drakbackup_.c:3665
+#: ../../standalone/drakbackup_.c:4322
#, fuzzy
msgid "Please select media for backup..."
msgstr "Bonvole, elektu lingvon por uzi."
-#: ../../standalone/drakbackup_.c:3687
+#: ../../standalone/drakbackup_.c:4344
#, fuzzy
msgid "Please select data to backup..."
msgstr "Bonvole, elektu lingvon por uzi."
-#: ../../standalone/drakbackup_.c:3709
+#: ../../standalone/drakbackup_.c:4366
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
msgstr ""
-#: ../../standalone/drakbackup_.c:3730
+#: ../../standalone/drakbackup_.c:4387
msgid "Under Devel ... please wait."
msgstr ""
-#: ../../standalone/drakbackup_.c:3811
+#: ../../standalone/drakbackup_.c:4468
#, fuzzy
msgid "Backup system files"
msgstr "Malbona rezerva dosiero"
-#: ../../standalone/drakbackup_.c:3813
+#: ../../standalone/drakbackup_.c:4470
#, fuzzy
msgid "Backup user files"
msgstr "Malbona rezerva dosiero"
-#: ../../standalone/drakbackup_.c:3815
+#: ../../standalone/drakbackup_.c:4472
#, fuzzy
msgid "Backup other files"
msgstr "Malbona rezerva dosiero"
-#: ../../standalone/drakbackup_.c:3817 ../../standalone/drakbackup_.c:3850
+#: ../../standalone/drakbackup_.c:4474 ../../standalone/drakbackup_.c:4507
msgid "Total Progress"
msgstr ""
-#: ../../standalone/drakbackup_.c:3841
+#: ../../standalone/drakbackup_.c:4498
msgid "files sending by FTP"
msgstr ""
-#: ../../standalone/drakbackup_.c:3845
+#: ../../standalone/drakbackup_.c:4502
#, fuzzy
msgid "Sending files..."
msgstr "Konservu en dosiero"
-#: ../../standalone/drakbackup_.c:3931
+#: ../../standalone/drakbackup_.c:4588
#, fuzzy
msgid "Backup Now from configuration file"
msgstr "Reta KonfiguraŒo"
-#: ../../standalone/drakbackup_.c:3936
+#: ../../standalone/drakbackup_.c:4593
#, fuzzy
msgid "View Backup Configuration."
msgstr "Reta KonfiguraŒo"
-#: ../../standalone/drakbackup_.c:3956
+#: ../../standalone/drakbackup_.c:4614
#, fuzzy
msgid "Wizard Configuration"
msgstr "LAN KonfiguraŒo"
-#: ../../standalone/drakbackup_.c:3961
+#: ../../standalone/drakbackup_.c:4619
#, fuzzy
msgid "Advanced Configuration"
msgstr "LAN KonfiguraŒo"
-#: ../../standalone/drakbackup_.c:3966
+#: ../../standalone/drakbackup_.c:4624
#, fuzzy
msgid "Backup Now"
msgstr "Dosiersistemo konfiguro"
-#: ../../standalone/drakbackup_.c:3996
+#: ../../standalone/drakbackup_.c:4658
msgid "Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:4045
+#: ../../standalone/drakbackup_.c:4707
msgid ""
"options description:\n"
"\n"
@@ -9908,7 +10431,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4075
+#: ../../standalone/drakbackup_.c:4737
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -9917,7 +10440,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4083
+#: ../../standalone/drakbackup_.c:4745
msgid ""
"options description:\n"
"\n"
@@ -9958,45 +10481,45 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4122
+#: ../../standalone/drakbackup_.c:4784
msgid ""
"restore description:\n"
" \n"
-"Only the most recent date will be used ,because with incremental \n"
-"backups it is necesarry to restore one by one each older backups.\n"
+"Only the most recent date will be used, because with incremental \n"
+"backups it is necessary to restore one by one each older backup.\n"
"\n"
-"So if you don't like to restore a user please unselect all his\n"
-"check box.\n"
+"So if you don't want to restore a user please unselect all their\n"
+"check boxes.\n"
"\n"
-"Otherwise, you are able to select only one of this\n"
+"Otherwise, you are able to select only one of these.\n"
"\n"
" - Incremental Backups:\n"
"\n"
"\tThe incremental backup is the most powerful \n"
-"\toption to use backup, this option allow you \n"
-"\tto backup all your data the first time, and \n"
-"\tonly the changed after.\n"
-"\tSo you will be able during the restore\n"
+"\toption to use. This option allows you to \n"
+"\tbackup all of your data the first time, and \n"
+"\tonly the changed data after.\n"
+"\tSo you will be able, during the restore\n"
"\tstep, to restore your data from a specified\n"
"\tdate.\n"
-"\tIf you have not selected this options all\n"
+"\tIf you have not selected this option all\n"
"\told backups are deleted before each backup. \n"
"\n"
"\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4148 ../../standalone/drakbackup_.c:4225
+#: ../../standalone/drakbackup_.c:4810 ../../standalone/drakbackup_.c:4887
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
-#: ../../standalone/drakbackup_.c:4150 ../../standalone/drakbackup_.c:4227
+#: ../../standalone/drakbackup_.c:4812 ../../standalone/drakbackup_.c:4889
msgid ""
" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
-#: ../../standalone/drakbackup_.c:4152 ../../standalone/drakbackup_.c:4229
+#: ../../standalone/drakbackup_.c:4814 ../../standalone/drakbackup_.c:4891
msgid ""
" This program is free software; you can redistribute it and/or modify\n"
" it under the terms of the GNU General Public License as published by\n"
@@ -10013,7 +10536,7 @@ msgid ""
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
msgstr ""
-#: ../../standalone/drakbackup_.c:4166
+#: ../../standalone/drakbackup_.c:4828
msgid ""
"Description:\n"
"\n"
@@ -10053,7 +10576,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4204
+#: ../../standalone/drakbackup_.c:4866
msgid ""
"options description:\n"
"\n"
@@ -10064,7 +10587,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4213
+#: ../../standalone/drakbackup_.c:4875
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -10077,7 +10600,7 @@ msgid ""
"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4243
+#: ../../standalone/drakbackup_.c:4905
msgid ""
"Description:\n"
"\n"
@@ -10158,9 +10681,9 @@ msgstr ""
msgid "Synchronization tool"
msgstr ""
-#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:85
-#: ../../standalone/drakbug_.c:150 ../../standalone/drakbug_.c:152
-#: ../../standalone/drakbug_.c:156
+#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:86
+#: ../../standalone/drakbug_.c:151 ../../standalone/drakbug_.c:153
+#: ../../standalone/drakbug_.c:157
msgid "Standalone Tools"
msgstr ""
@@ -10211,26 +10734,26 @@ msgstr "Printilo"
msgid "Configuration Wizards"
msgstr "ISDN-a KonfiguraŒon"
-#: ../../standalone/drakbug_.c:96
+#: ../../standalone/drakbug_.c:97
#, fuzzy
msgid "Application:"
msgstr "Aętentikigado"
-#: ../../standalone/drakbug_.c:97
+#: ../../standalone/drakbug_.c:98
#, fuzzy
msgid "Package: "
msgstr "Elektado de PakaŒoj"
-#: ../../standalone/drakbug_.c:98
+#: ../../standalone/drakbug_.c:99
msgid "Kernel:"
msgstr ""
-#: ../../standalone/drakbug_.c:99
+#: ../../standalone/drakbug_.c:100
#, fuzzy
msgid "Release: "
msgstr "Bonvole atendu"
-#: ../../standalone/drakbug_.c:114
+#: ../../standalone/drakbug_.c:115
msgid ""
"\n"
"\n"
@@ -10242,21 +10765,21 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbug_.c:135
+#: ../../standalone/drakbug_.c:136
#, fuzzy
msgid "Report"
msgstr "porto"
-#: ../../standalone/drakbug_.c:165
+#: ../../standalone/drakbug_.c:166
#, fuzzy
msgid "Not installed"
msgstr "Eliru instalprogramon"
-#: ../../standalone/drakbug_.c:182
+#: ../../standalone/drakbug_.c:183
msgid "connecting to Bugzilla wizard ..."
msgstr ""
-#: ../../standalone/drakbug_.c:189
+#: ../../standalone/drakbug_.c:190
#, fuzzy
msgid "No browser available! Please install one"
msgstr ""
@@ -10711,7 +11234,7 @@ msgstr "Surmetingo"
#: ../../standalone/drakfont_.c:909
#, fuzzy
-msgid "Choose the applications that will support the fonts :"
+msgid "Choose the applications that will support the fonts:"
msgstr "Elektu la subdiskoj kiuj vi deziras formati"
#: ../../standalone/drakfont_.c:918
@@ -10792,19 +11315,19 @@ msgstr "Via komputilo ne havas retadaptilon!"
msgid "Post Uninstall"
msgstr "Eliru instalprogramon"
-#: ../../standalone/drakgw_.c:42 ../../standalone/drakgw_.c:195
+#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:188
msgid "Internet Connection Sharing"
msgstr "Disdividado de Interreta Konekto"
-#: ../../standalone/drakgw_.c:121
+#: ../../standalone/drakgw_.c:119
msgid "Sorry, we support only 2.4 kernels."
msgstr ""
-#: ../../standalone/drakgw_.c:133
+#: ../../standalone/drakgw_.c:130
msgid "Internet Connection Sharing currently enabled"
msgstr "Disdividado de Interreta Konekto nuntempe kapabligata"
-#: ../../standalone/drakgw_.c:134
+#: ../../standalone/drakgw_.c:131
#, fuzzy
msgid ""
"The setup of Internet connection sharing has already been done.\n"
@@ -10814,33 +11337,33 @@ msgid ""
msgstr ""
"La konfigurado de la disdividado de la Interreta konekto jam estas farita.\n"
-#: ../../standalone/drakgw_.c:138
+#: ../../standalone/drakgw_.c:135
msgid "disable"
msgstr "malebligu"
-#: ../../standalone/drakgw_.c:138 ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:135 ../../standalone/drakgw_.c:160
msgid "dismiss"
msgstr "forsendu"
-#: ../../standalone/drakgw_.c:138 ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:135 ../../standalone/drakgw_.c:160
msgid "reconfigure"
msgstr "rekonfiguru"
-#: ../../standalone/drakgw_.c:141
+#: ../../standalone/drakgw_.c:138
#, fuzzy
msgid "Disabling servers..."
msgstr "Detektas aparatojn..."
-#: ../../standalone/drakgw_.c:149
+#: ../../standalone/drakgw_.c:146
#, fuzzy
msgid "Internet connection sharing is now disabled."
msgstr "Disdividado de Interreta Konekto nuntempe malkapabligata"
-#: ../../standalone/drakgw_.c:158
+#: ../../standalone/drakgw_.c:155
msgid "Internet Connection Sharing currently disabled"
msgstr "Disdividado de Interreta Konekto nuntempe malkapabligata"
-#: ../../standalone/drakgw_.c:159
+#: ../../standalone/drakgw_.c:156
#, fuzzy
msgid ""
"The setup of Internet connection sharing has already been done.\n"
@@ -10850,20 +11373,20 @@ msgid ""
msgstr ""
"La konfigurado de la disdividado de la Interreta konekto jam estas farita.\n"
-#: ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:160
msgid "enable"
msgstr "ebligu"
-#: ../../standalone/drakgw_.c:170
+#: ../../standalone/drakgw_.c:167
msgid "Enabling servers..."
msgstr ""
-#: ../../standalone/drakgw_.c:175
+#: ../../standalone/drakgw_.c:172
#, fuzzy
msgid "Internet connection sharing is now enabled."
msgstr "Disdividado de Interreta Konekto nuntempe kapabligata"
-#: ../../standalone/drakgw_.c:196
+#: ../../standalone/drakgw_.c:189
#, fuzzy
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
@@ -10879,21 +11402,21 @@ msgstr ""
"\n"
"Æu vi deziras konfiguri Disdividadon de Interreta Konekto?\n"
-#: ../../standalone/drakgw_.c:222
+#: ../../standalone/drakgw_.c:215
#, c-format
msgid "Interface %s (using module %s)"
msgstr ""
-#: ../../standalone/drakgw_.c:223
+#: ../../standalone/drakgw_.c:216
#, c-format
msgid "Interface %s"
msgstr "Interfaco %s"
-#: ../../standalone/drakgw_.c:231
+#: ../../standalone/drakgw_.c:224
msgid "No network adapter on your system!"
msgstr "Via komputilo ne havas retadaptilon!"
-#: ../../standalone/drakgw_.c:232
+#: ../../standalone/drakgw_.c:225
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
@@ -10901,11 +11424,11 @@ msgstr ""
"Mi ne detektas eterretan retadaptilom sur via sistemo. Bonvole lanæu la\n"
"aparatokonfigurilon."
-#: ../../standalone/drakgw_.c:238
+#: ../../standalone/drakgw_.c:231
msgid "Network interface"
msgstr "Reta interfaco"
-#: ../../standalone/drakgw_.c:239
+#: ../../standalone/drakgw_.c:232
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -10920,19 +11443,19 @@ msgstr ""
"\n"
"Æu vi deziras konfiguri vian Lokan Reton (LAN) kun æi tiu adaptilo?"
-#: ../../standalone/drakgw_.c:248
+#: ../../standalone/drakgw_.c:241
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
msgstr ""
"Bonvole elektu kiun retadaptilon estos konektata al via Loka Reto (LAN)."
-#: ../../standalone/drakgw_.c:266
+#: ../../standalone/drakgw_.c:259
#, fuzzy
msgid "Network interface already configured"
msgstr "Ekrano ne estas konfigurata"
-#: ../../standalone/drakgw_.c:267
+#: ../../standalone/drakgw_.c:260
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -10942,17 +11465,17 @@ msgid ""
"You can do it manually but you need to know what you're doing."
msgstr ""
-#: ../../standalone/drakgw_.c:272
+#: ../../standalone/drakgw_.c:265
#, fuzzy
msgid "Automatic reconfiguration"
msgstr "Post-instala konfigurado"
-#: ../../standalone/drakgw_.c:273
+#: ../../standalone/drakgw_.c:266
#, fuzzy
msgid "Show current interface configuration"
msgstr "Interreta Konfigurado"
-#: ../../standalone/drakgw_.c:275
+#: ../../standalone/drakgw_.c:268
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -10963,7 +11486,7 @@ msgid ""
"Driver: %s"
msgstr ""
-#: ../../standalone/drakgw_.c:287
+#: ../../standalone/drakgw_.c:280
msgid ""
"I can keep your current configuration and assume you already set up a DHCP "
"server; in that case please verify I correctly read the C-Class Network that "
@@ -10975,84 +11498,72 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakgw_.c:292
+#: ../../standalone/drakgw_.c:285
msgid "C-Class Local Network"
msgstr ""
-#: ../../standalone/drakgw_.c:293
+#: ../../standalone/drakgw_.c:286
#, fuzzy
msgid "(This) DHCP Server IP"
msgstr "IP de SMB servilo"
-#: ../../standalone/drakgw_.c:294
+#: ../../standalone/drakgw_.c:287
msgid "Re-configure interface and DHCP server"
msgstr ""
-#: ../../standalone/drakgw_.c:301
+#: ../../standalone/drakgw_.c:294
msgid "The Local Network did not finish with `.0', bailing out."
msgstr ""
-#: ../../standalone/drakgw_.c:312
+#: ../../standalone/drakgw_.c:305
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr "Ebla konflikto pri Loka-Reta adreso trovata en nuna konfiguro de %s!\n"
-#: ../../standalone/drakgw_.c:320
-msgid "Firewalling configuration detected!"
-msgstr "KonfiguraŒo de barilo detektata!"
-
-#: ../../standalone/drakgw_.c:321
-msgid ""
-"Warning! An existing firewalling configuration has been detected. You may "
-"need some manual fix after installation."
-msgstr ""
-"Averto. Ekzistanta konfiguraŒo de barilo detektata. Vi eble devas permane\n"
-"fiksi űin poste de la instalado."
-
-#: ../../standalone/drakgw_.c:328
+#: ../../standalone/drakgw_.c:315
msgid "Configuring..."
msgstr "Mi konfiguras..."
-#: ../../standalone/drakgw_.c:329
+#: ../../standalone/drakgw_.c:316
msgid "Configuring scripts, installing software, starting servers..."
msgstr ""
"Mi konfiguras komandodosierojn, instalas programojn, startas servilojn..."
-#: ../../standalone/drakgw_.c:365
+#: ../../standalone/drakgw_.c:352
#, c-format
msgid "Problems installing package %s"
msgstr "Problemoj instalante pakaŒon %s"
-#: ../../standalone/drakgw_.c:549
+#: ../../standalone/drakgw_.c:485
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
"Area Network, using automatic network configuration (DHCP)."
msgstr ""
-#: ../../standalone/drakgw_.c:566
+#: ../../standalone/drakgw_.c:504
#, fuzzy
msgid "The setup has already been done, but it's currently disabled."
msgstr ""
"La konfigurado de la disdividado de la Interreta konekto jam estas farita.\n"
-#: ../../standalone/drakgw_.c:567
+#: ../../standalone/drakgw_.c:505
#, fuzzy
msgid "The setup has already been done, and it's currently enabled."
msgstr ""
"La konfigurado de la disdividado de la Interreta konekto jam estas farita.\n"
-#: ../../standalone/drakgw_.c:568
+#: ../../standalone/drakgw_.c:506
#, fuzzy
msgid "No Internet Connection Sharing has ever been configured."
msgstr "Disdividado de Interreta Konekto nuntempe kapabligata"
-#: ../../standalone/drakgw_.c:573
+#: ../../standalone/drakgw_.c:511
#, fuzzy
msgid "Internet connection sharing configuration"
msgstr "Interreta konektaŒo kaj konfiguro"
-#: ../../standalone/drakgw_.c:580
+#: ../../standalone/drakgw_.c:518
#, fuzzy, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -11062,6 +11573,158 @@ msgid ""
"Click on Configure to launch the setup wizard."
msgstr "Disdividado de Interreta Konekto"
+#: ../../standalone/draksound_.c:46
+#, fuzzy
+msgid "No Sound Card detected!"
+msgstr "Ne konektita"
+
+#: ../../standalone/draksound_.c:47
+msgid ""
+"No Sound Card has been detected on your machine. Please verify that a Linux-"
+"supported Sound Card is correctly plugged in.\n"
+"\n"
+"\n"
+"You can visit our hardware database at:\n"
+"\n"
+"\n"
+"http://www.linux-mandrake.com/en/hardware.php3"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:32
+msgid "package ImageMagick is required for correct working"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:76
+#, fuzzy
+msgid "first step creation"
+msgstr "Startdiskokreado"
+
+#: ../../standalone/draksplash_.c:77
+#, fuzzy
+msgid "final resolution"
+msgstr "Distingivo"
+
+#: ../../standalone/draksplash_.c:78 ../../standalone/draksplash_.c:170
+#, fuzzy
+msgid "choose image file"
+msgstr "Elektu agon"
+
+#: ../../standalone/draksplash_.c:79
+#, fuzzy
+msgid "Theme name"
+msgstr "Opuza nomo"
+
+#: ../../standalone/draksplash_.c:81
+msgid "make bootsplash step 2"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:82
+#, fuzzy
+msgid "go to lilosplash configuration"
+msgstr "Post-instala konfigurado"
+
+#: ../../standalone/draksplash_.c:83
+#, fuzzy
+msgid "quit"
+msgstr "Æesu"
+
+#: ../../standalone/draksplash_.c:84
+#, fuzzy
+msgid "save theme"
+msgstr "Instalu sistemon"
+
+#: ../../standalone/draksplash_.c:85
+msgid "browse"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:98 ../../standalone/draksplash_.c:159
+#, fuzzy
+msgid "Configure bootsplash picture"
+msgstr "Konfiguru servojn"
+
+#: ../../standalone/draksplash_.c:99
+msgid "x coordinate of text box in number of character"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:100
+msgid "y coordinate of text box in number of character"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:101
+msgid "text width"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:102
+msgid "text box height"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:103
+msgid "the progress bar x coordinate of its upper left corner"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:104
+msgid "the progress bar y coordinate of its upper left corner"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:105
+msgid "the width of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:106
+msgid "the heigth of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:107
+msgid "the color of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:119
+#, fuzzy
+msgid "go back"
+msgstr "Retrokonektado"
+
+#: ../../standalone/draksplash_.c:120
+#, fuzzy
+msgid "preview"
+msgstr "aparato"
+
+#: ../../standalone/draksplash_.c:121
+#, fuzzy
+msgid "choose color"
+msgstr "Elektu ekranon"
+
+#: ../../standalone/draksplash_.c:124
+msgid "Display logo on Console"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:125
+msgid "Make kernel message quiet by default"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:161 ../../standalone/draksplash_.c:330
+#, c-format
+msgid "This theme haven't yet any bootsplash in %s !"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:213
+msgid "saving Bootsplash theme..."
+msgstr ""
+
+#: ../../standalone/draksplash_.c:436
+#, fuzzy
+msgid "ProgressBar color selection"
+msgstr "Printilan Konekton"
+
+#: ../../standalone/draksplash_.c:454
+#, fuzzy
+msgid "You must choose an image file first!"
+msgstr "Printila Aparato URI"
+
+#: ../../standalone/draksplash_.c:463
+#, fuzzy
+msgid "Generating preview ..."
+msgstr "Detektas aparatojn..."
+
#: ../../standalone/drakxtv_.c:49
msgid ""
"XawTV isn't installed!\n"
@@ -11154,11 +11817,11 @@ msgid ""
msgstr ""
#: ../../standalone/drakxtv_.c:109
-msgid "TV norm :"
+msgid "TV norm:"
msgstr ""
#: ../../standalone/drakxtv_.c:110
-msgid "Area :"
+msgid "Area:"
msgstr ""
#: ../../standalone/drakxtv_.c:114
@@ -11239,7 +11902,7 @@ msgstr ""
msgid "The change is done, but to be effective you must logout"
msgstr ""
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:517
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:515
msgid "logdrake"
msgstr "logdrake"
@@ -11418,7 +12081,7 @@ msgstr "Servilo"
#: ../../standalone/logdrake_.c:431
msgid ""
-"You will receive an alert if one of the selected service is no more running"
+"You will receive an alert if one of the selected services is no more running"
msgstr ""
#: ../../standalone/logdrake_.c:443
@@ -11440,19 +12103,19 @@ msgstr "Interreta Konfigurado"
msgid "Please enter your email address below "
msgstr "Bonvole provu denove"
-#: ../../standalone/logdrake_.c:499
+#: ../../standalone/logdrake_.c:497
msgid "Save as.."
msgstr "Savu Kiel..."
-#: ../../standalone/mousedrake_.c:43
+#: ../../standalone/mousedrake_.c:45
msgid "Please, choose the type of your mouse."
msgstr "Bonvole, elektu la specon de via muso."
-#: ../../standalone/mousedrake_.c:57
+#: ../../standalone/mousedrake_.c:58
msgid "Emulate third button?"
msgstr "Æu vi deziras emuli trian musbutonon?"
-#: ../../standalone/printerdrake_.c:48
+#: ../../standalone/printerdrake_.c:57
#, fuzzy
msgid "Reading printer data ..."
msgstr "Legas datumbason de CUPS peliloj..."
@@ -11466,34 +12129,45 @@ msgstr "Detektas aparatojn..."
msgid "Test ports"
msgstr "Provu pordojn"
-#: ../../standalone/scannerdrake_.c:52
+#: ../../standalone/scannerdrake_.c:53 ../../standalone/scannerdrake_.c:68
+#: ../../standalone/scannerdrake_.c:81
#, c-format
-msgid "%s found on %s, configure it ?"
+msgid "The %s is not supported by this version of Mandrake Linux."
msgstr ""
+#: ../../standalone/scannerdrake_.c:56
+#, fuzzy, c-format
+msgid "%s found on %s, configure it?"
+msgstr "Æu vi deziras konfiguri printilon?"
+
#: ../../standalone/scannerdrake_.c:59
+#, c-format
+msgid "%s is not in the scanner database, configure it manually?"
+msgstr ""
+
+#: ../../standalone/scannerdrake_.c:65
#, fuzzy
msgid "Select a scanner"
msgstr "Elektu grafikan karton"
-#: ../../standalone/scannerdrake_.c:79
+#: ../../standalone/scannerdrake_.c:93
#, c-format
msgid "This %s scanner is unsupported"
msgstr ""
-#: ../../standalone/scannerdrake_.c:93
+#: ../../standalone/scannerdrake_.c:107
#, c-format
msgid ""
"Scannerdrake was not able to detect your %s scanner.\n"
"Please select the device where your scanner is plugged"
msgstr ""
-#: ../../standalone/scannerdrake_.c:95
+#: ../../standalone/scannerdrake_.c:109
#, fuzzy
msgid "choose device"
msgstr "Starta aparato"
-#: ../../standalone/scannerdrake_.c:101
+#: ../../standalone/scannerdrake_.c:115
#, c-format
msgid ""
"This %s scanner must be configured by printerdrake.\n"
@@ -11501,7 +12175,7 @@ msgid ""
"section."
msgstr ""
-#: ../../standalone/scannerdrake_.c:106
+#: ../../standalone/scannerdrake_.c:120
#, c-format
msgid ""
"Your %s scanner has been configured.\n"
@@ -11509,41 +12183,18 @@ msgid ""
"applications menu."
msgstr ""
-#: ../../standalone/service_harddrake_.c:57
+#: ../../standalone/service_harddrake_.c:39
#, c-format
msgid "Some devices in the \"%s\" hardware class were removed:\n"
msgstr ""
-#: ../../standalone/service_harddrake_.c:61
+#: ../../standalone/service_harddrake_.c:43
#, c-format
msgid ""
"\n"
"Some devices in the %s class were added:\n"
msgstr ""
-#: ../../standalone/tinyfirewall_.c:30
-msgid "Firewalling Configuration"
-msgstr "KonfiguraŒo de barilo"
-
-#: ../../standalone/tinyfirewall_.c:43
-msgid "Firewalling configuration"
-msgstr "KonfiguraŒo de barilo"
-
-#: ../../standalone/tinyfirewall_.c:78
-msgid ""
-"Firewalling\n"
-"\n"
-"You already have set up a firewall.\n"
-"Click on Configure to change or remove the firewall"
-msgstr ""
-
-#: ../../standalone/tinyfirewall_.c:82
-msgid ""
-"Firewalling\n"
-"\n"
-"Click on Configure to set up a standard firewall"
-msgstr ""
-
#: ../../steps.pm_.c:14
msgid "Choose your language"
msgstr "Elektu vian lingvon"
@@ -11617,169 +12268,7 @@ msgstr "Instalu sistemon"
msgid "Exit install"
msgstr "Eliru instalprogramon"
-#: ../../tinyfirewall.pm_.c:9
-msgid ""
-"tinyfirewall configurator\n"
-"\n"
-"This configures a personal firewall for this Mandrake Linux machine.\n"
-"For a powerful dedicated firewall solution, please look to the\n"
-"specialized MandrakeSecurity Firewall distribution."
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:14
-msgid ""
-"We'll now ask you questions about which services you'd like to allow\n"
-"the Internet to connect to. Please think carefully about these\n"
-"questions, as your computer's security is important.\n"
-"\n"
-"Please, if you're not currently using one of these services, firewall\n"
-"it off. You can change this configuration anytime you like by\n"
-"re-running this application!"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:21
-msgid ""
-"Are you running a web server on this machine that you need the whole\n"
-"Internet to see? If you are running a webserver that only needs to be\n"
-"accessed by this machine, you can safely answer NO here.\n"
-"\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:26
-msgid ""
-"Are you running a name server on this machine? If you didn't set one\n"
-"up to give away IP and zone information to the whole Internet, please\n"
-"answer no.\n"
-"\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:31
-msgid ""
-"Do you want to allow incoming Secure Shell (ssh) connections? This\n"
-"is a telnet-replacement that you might use to login. If you're using\n"
-"telnet now, you should definitely switch to ssh. telnet is not\n"
-"encrypted -- so some attackers can steal your password if you use\n"
-"it. ssh is encrypted and doesn't allow for this eavesdropping."
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:36
-msgid ""
-"Do you want to allow incoming telnet connections?\n"
-"This is horribly unsafe, as we explained in the previous screen. We\n"
-"strongly recommend answering No here and using ssh in place of\n"
-"telnet.\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:41
-msgid ""
-"Are you running an FTP server here that you need accessible to the\n"
-"Internet? If you are, we strongly recommend that you only use it for\n"
-"Anonymous transfers. Any passwords sent by FTP can be stolen by some\n"
-"attackers, since FTP also uses no encryption for transferring passwords.\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:46
-msgid ""
-"Are you running a mail server here? If you're sending you \n"
-"messages through pine, mutt or any other text-based mail client,\n"
-"you probably are. Otherwise, you should firewall this off.\n"
-"\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:51
-msgid ""
-"Are you running a POP or IMAP server here? This would\n"
-"be used to host non-web-based mail accounts for people via \n"
-"this machine.\n"
-"\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:56
-msgid ""
-"You appear to be running a 2.2 kernel. If your network IP\n"
-"is automatically set by a computer in your home or office \n"
-"(dynamically assigned), we need to allow for this. Is\n"
-"this the case?\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:61
-msgid ""
-"Is your computer getting time syncronized to another computer?\n"
-"Mostly, this is used by medium-large Unix/Linux organizations\n"
-"to synchronize time for logging and such. If you're not part\n"
-"of a larger office and haven't heard of this, you probably \n"
-"aren't."
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:66
-msgid ""
-"Configuration complete. May we write these changes to disk?\n"
-"\n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:82
-#, c-format
-msgid "Can't open %s: %s\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:84
-#, c-format
-msgid "Can't open %s for writing: %s\n"
-msgstr "Ne povis malfermi %s por skribi: %s\n"
-
-#: ../../tinyfirewall.pm_.c:178
-msgid "No I don't need DHCP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:178
-msgid "Yes I need DHCP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:179
-msgid "No I don't need NTP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:179
-msgid "Yes I need NTP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:180 ../../tinyfirewall.pm_.c:184
-msgid "Don't Save"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:180 ../../tinyfirewall.pm_.c:184
-#: ../../tinyfirewall.pm_.c:204
-msgid "Save & Quit"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:195 ../../tinyfirewall.pm_.c:199
-#, fuzzy
-msgid "Firewall Configuration Wizard"
-msgstr "KonfiguraŒo de barilo"
-
-#: ../../tinyfirewall.pm_.c:197
-msgid "No (firewall this off from the internet)"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:198
-msgid "Yes (allow this through the firewall)"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:230
-#, fuzzy
-msgid "Please Wait... Verifying installed packages"
-msgstr "Preparas instaladon"
-
-#: ../../tinyfirewall.pm_.c:236
-#, c-format
-msgid ""
-"Failure installing the needed packages : %s and Bastille.\n"
-" Try to install them manually."
-msgstr ""
-
-#: ../../ugtk.pm_.c:619
+#: ../../ugtk.pm_.c:594
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr ""
@@ -11914,6 +12403,11 @@ msgid "Graphical Environment"
msgstr ""
#: ../../share/compssUsers:999
+#, fuzzy
+msgid "Development"
+msgstr "Programisto"
+
+#: ../../share/compssUsers:999
msgid "Apache, Pro-ftpd"
msgstr ""
@@ -12026,99 +12520,31 @@ msgstr "Plurmedia - KD-ROM Kreado"
msgid "Scientific Workstation"
msgstr "Laborstacio"
-#~ msgid "$mode: $warning"
-#~ msgstr "$mode: $warning"
+#~ msgid "LBA (doesn't work on old BIOSes)"
+#~ msgstr "LBA (ne funkcias kun malnovaj BIOSoj)"
-#, fuzzy
-#~ msgid ""
-#~ "This level is to be used with care. It makes your system more easy to "
-#~ "use,\n"
-#~ " but very sensitive: it must not be used for a machine "
-#~ "connected to others\n"
-#~ " or to the Internet. There is no password access."
-#~ msgstr ""
-#~ "vi devus uzi æi tiun nivelon zorge. Űi faras vian komputilon pli facila\n"
-#~ "por uzi, sed delikatega: vi devus neniam uzi űi surrete.\n"
-#~ "Űi ne havas pasvortojn."
+#~ msgid "You don't have any partitions!"
+#~ msgstr "Vi ne havas iujn ajn subdiskojn!"
-#, fuzzy
#~ msgid ""
-#~ "With this security level, the use of this system as a server becomes "
-#~ "possible.\n"
-#~ " The security is now high enough to use the system as a "
-#~ "server which can accept\n"
-#~ " connections from many clients. Note: if your machine is "
-#~ "only a client on the Internet, you should choose a lower level."
+#~ "DiskDrake failed to read correctly the partition table.\n"
+#~ "Continue at your own risk!"
#~ msgstr ""
-#~ "Kun æi tiu sekurnivelo, uzado de æi tiu komputilo kiel servilo ebliűas.\n"
-#~ "La sekureco nun estas sufiæe alta por uzi la sistemon kiel servilo kiu\n"
-#~ "akceptas konektojn de multaj klientoj."
-
-#, fuzzy
-#~ msgid "Basic Options"
-#~ msgstr "Opcioj"
+#~ "DiskDrake malsukcesis űuste legi la subdisktabelon.\n"
+#~ "Daęri je via propra risko!"
-#, fuzzy
-#~ msgid "Security Checks"
-#~ msgstr "Elektas sekurnivelon"
-
-#, fuzzy
-#~ msgid "Please choose your CD space"
-#~ msgstr "Bonvole, elektu vian klavaran aranűon."
-
-#, fuzzy
-#~ msgid "Please enter the cd writer speed"
-#~ msgstr "Bonvole, provu la muson"
-
-#, fuzzy
-#~ msgid "Please check if you want to include install boot on your CD."
-#~ msgstr "Bonvole, elektu la pakaŒojn kiujn vi deziras instali."
-
-#, fuzzy
-#~ msgid "Url should begin with 'ftp:'"
-#~ msgstr "Prokura servilo devus esti ftp://..."
-
-#, fuzzy
#~ msgid ""
-#~ "Please check if you want to include\n"
-#~ " install boot on your CD."
-#~ msgstr "Bonvole, elektu la pakaŒojn kiujn vi deziras instali."
-
-#, fuzzy
-#~ msgid "Windows PDC"
-#~ msgstr "Forigu Vindozon"
-
-#, fuzzy
-#~ msgid "Tamil"
-#~ msgstr "Tabelo"
-
-#, fuzzy
-#~ msgid "PDC Server Name"
-#~ msgstr "NTP Servilo"
-
-#, fuzzy
-#~ msgid "Set up printer manually"
-#~ msgstr "Malproksima printilo"
-
-#, fuzzy
-#~ msgid "Installing HPOJ package..."
-#~ msgstr "Instalanta pakaŒo %s"
-
-#, fuzzy
-#~ msgid "Installing SANE packages..."
-#~ msgstr "Instalanta pakaŒo %s"
+#~ "I can't read your partition table, it's too corrupted for me :(\n"
+#~ "I'll try to go on blanking bad partitions"
+#~ msgstr ""
+#~ "Mi ne povas legi vian subdisktabelon, űi estas tro difektita por mi :(\n"
+#~ "Mi penos daęri per blankigi difektitajn subdiskojn"
-#, fuzzy
-#~ msgid "Installing mtools packages..."
-#~ msgstr "Instalanta pakaŒo %s"
+#~ msgid "Firewalling Configuration"
+#~ msgstr "KonfiguraŒo de barilo"
-#, fuzzy
-#~ msgid "Making printer port available for CUPS..."
-#~ msgstr "Legas datumbason de CUPS peliloj..."
-
-#, fuzzy
-#~ msgid "Control Center"
-#~ msgstr "Konekti al la interreto"
+#~ msgid "Firewalling configuration"
+#~ msgstr "KonfiguraŒo de barilo"
#~ msgid "Choose the tool you want to use"
#~ msgstr "Elektu la ilon kiun vi deziras instali"
@@ -12193,10 +12619,6 @@ msgstr "Laborstacio"
#~ msgid "Select a graphics card"
#~ msgstr "Elektu grafikan karton"
-#~ msgid "Warning: testing this graphics card may freeze your computer"
-#~ msgstr ""
-#~ "Averto: provado de æi tiu grafika karto eble svenigos vian komputilon"
-
#~ msgid "Standard VGA, 640x480 at 60 Hz"
#~ msgstr "Normala VGA, 640x480 æe 60 hercoj (Hz)"
diff --git a/perl-install/share/po/es.po b/perl-install/share/po/es.po
index 3cd1e2a93..9aea0b46b 100644
--- a/perl-install/share/po/es.po
+++ b/perl-install/share/po/es.po
@@ -5,8 +5,8 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX\n"
-"POT-Creation-Date: 2002-08-21 15:44+0200\n"
-"PO-Revision-Date: 2002-08-21 12:50-0300\n"
+"POT-Creation-Date: 2002-09-02 20:14+0200\n"
+"PO-Revision-Date: 2002-09-01 18:06-0300\n"
"Last-Translator: Fabian Mandelbaum <fabman@mandrakesoft.com>\n"
"Language-Team: SPANISH <es@li.org>\n"
"MIME-Version: 1.0\n"
@@ -49,19 +49,19 @@ msgstr "32 MB"
msgid "64 MB or more"
msgstr "64 MB o mĂĄs"
-#: ../../Xconfig/card.pm_.c:201
+#: ../../Xconfig/card.pm_.c:203
msgid "Choose a X server"
msgstr "Elija un servidor X"
-#: ../../Xconfig/card.pm_.c:201
+#: ../../Xconfig/card.pm_.c:203
msgid "X server"
msgstr "Servidor X"
-#: ../../Xconfig/card.pm_.c:228
+#: ../../Xconfig/card.pm_.c:230
msgid "Multi-head configuration"
msgstr "ConfiguraciĂłn multi-monitor"
-#: ../../Xconfig/card.pm_.c:229
+#: ../../Xconfig/card.pm_.c:231
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
@@ -69,27 +69,27 @@ msgstr ""
"Su sistema soporta configuraciĂłn multi-monitor.\n"
"¿Qué desea hacer?"
-#: ../../Xconfig/card.pm_.c:284
+#: ../../Xconfig/card.pm_.c:286
msgid "Select the memory size of your graphics card"
msgstr "Seleccione la cantidad de memoria de su tarjeta grĂĄfica"
-#: ../../Xconfig/card.pm_.c:345
+#: ../../Xconfig/card.pm_.c:347
msgid "XFree configuration"
msgstr "ConfiguraciĂłn de XFree"
-#: ../../Xconfig/card.pm_.c:347
+#: ../../Xconfig/card.pm_.c:349
msgid "Which configuration of XFree do you want to have?"
msgstr "¿Qué tipo de configuración de XFree desea tener?"
-#: ../../Xconfig/card.pm_.c:379
+#: ../../Xconfig/card.pm_.c:381
msgid "Configure all heads independently"
msgstr "Configurar los monitores independientemente"
-#: ../../Xconfig/card.pm_.c:380
+#: ../../Xconfig/card.pm_.c:382
msgid "Use Xinerama extension"
msgstr "Usar extensiĂłn Xinerama"
-#: ../../Xconfig/card.pm_.c:384
+#: ../../Xconfig/card.pm_.c:386
#, c-format
msgid "Configure only card \"%s\"%s"
msgstr "Configurar sĂłlo la tarjeta \"%s\"%s"
@@ -100,13 +100,13 @@ msgstr "Configurar sĂłlo la tarjeta \"%s\"%s"
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:435
+#: ../../Xconfig/card.pm_.c:410 ../../Xconfig/card.pm_.c:436
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s with 3D hardware acceleration"
msgstr "XFree %s con aceleraciĂłn 3D por hardware"
-#: ../../Xconfig/card.pm_.c:412
+#: ../../Xconfig/card.pm_.c:413
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -115,17 +115,17 @@ msgstr ""
"Su tarjeta puede admitir aceleraciĂłn 3D pero sĂłlo con XFree %s.\n"
"XFree %s admite su tarjeta y puede tener mejor comportamiento en 2D."
-#: ../../Xconfig/card.pm_.c:414 ../../Xconfig/card.pm_.c:437
+#: ../../Xconfig/card.pm_.c:415 ../../Xconfig/card.pm_.c:438
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr "Su tarjeta puede admitir aceleraciĂłn 3D por hardware con XFree %s."
-#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:443
+#: ../../Xconfig/card.pm_.c:423 ../../Xconfig/card.pm_.c:444
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s con aceleraciĂłn 3D EXPERIMENTAL por hardware"
-#: ../../Xconfig/card.pm_.c:425
+#: ../../Xconfig/card.pm_.c:426
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -136,7 +136,7 @@ msgstr ""
"ADVIERTA QUE ESTO ES EXPERIMENTAL Y PUEDE COLGAR SU ORDENADOR.\n"
"XFree %s admite su tarjeta y puede tener un mejor comportamiento en 2D."
-#: ../../Xconfig/card.pm_.c:428 ../../Xconfig/card.pm_.c:445
+#: ../../Xconfig/card.pm_.c:429 ../../Xconfig/card.pm_.c:446
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
@@ -145,52 +145,53 @@ msgstr ""
"Su tarjeta puede admitir aceleraciĂłn 3D por hardware con XFree %s,\n"
"ADVIERTA QUE ESTO ES EXPERIMENTAL Y PUEDE COLGAR SU ORDENADOR."
-#: ../../Xconfig/card.pm_.c:451
+#: ../../Xconfig/card.pm_.c:452
msgid "Xpmac (installation display driver)"
msgstr "Xpmac (instalaciĂłn del controlador de la pantalla)"
-#: ../../Xconfig/main.pm_.c:78 ../../Xconfig/main.pm_.c:79
-#: ../../Xconfig/monitor.pm_.c:94 ../../any.pm_.c:974
+#: ../../Xconfig/main.pm_.c:76 ../../Xconfig/main.pm_.c:77
+#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:977
msgid "Custom"
msgstr "Personalizada"
-#: ../../Xconfig/main.pm_.c:104
+#: ../../Xconfig/main.pm_.c:102
msgid "Graphic Card"
msgstr "Tarjeta grĂĄfica"
-#: ../../Xconfig/main.pm_.c:107 ../../Xconfig/monitor.pm_.c:91
+#: ../../Xconfig/main.pm_.c:105 ../../Xconfig/monitor.pm_.c:93
msgid "Monitor"
msgstr "Monitor"
-#: ../../Xconfig/main.pm_.c:110 ../../Xconfig/resolution_and_depth.pm_.c:209
+#: ../../Xconfig/main.pm_.c:108 ../../Xconfig/resolution_and_depth.pm_.c:209
msgid "Resolution"
msgstr "ResoluciĂłn"
-#: ../../Xconfig/main.pm_.c:114
+#: ../../Xconfig/main.pm_.c:113
msgid "Test"
msgstr "Probar"
-#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:59
-#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/removable.pm_.c:25
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:63
+#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/removable.pm_.c:25
#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "Opciones"
#: ../../Xconfig/main.pm_.c:121 ../../Xconfig/resolution_and_depth.pm_.c:268
-#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:281
+#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:275
#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
-#: ../../interactive.pm_.c:351 ../../interactive/http.pm_.c:104
+#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:104
#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
-#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:156
-#: ../../my_gtk.pm_.c:284 ../../my_gtk.pm_.c:307
-#: ../../standalone/drakbackup_.c:3324 ../../standalone/drakbackup_.c:3419
-#: ../../standalone/drakbackup_.c:3438
+#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:159
+#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310
+#: ../../standalone/drakbackup_.c:3972 ../../standalone/drakbackup_.c:4067
+#: ../../standalone/drakbackup_.c:4086
msgid "Ok"
msgstr "Aceptar"
#: ../../Xconfig/main.pm_.c:121 ../../diskdrake/dav.pm_.c:24
-#: ../../printerdrake.pm_.c:2933 ../../standalone/logdrake_.c:224
+#: ../../harddrake/ui.pm_.c:98 ../../printerdrake.pm_.c:3155
+#: ../../standalone/logdrake_.c:224
msgid "Quit"
msgstr "Salir"
@@ -207,27 +208,27 @@ msgstr ""
"\n"
"%s"
-#: ../../Xconfig/monitor.pm_.c:91
+#: ../../Xconfig/monitor.pm_.c:93
msgid "Choose a monitor"
msgstr "Elija un monitor"
-#: ../../Xconfig/monitor.pm_.c:95
+#: ../../Xconfig/monitor.pm_.c:97
msgid "Plug'n Play"
msgstr "Plug'n Play"
-#: ../../Xconfig/monitor.pm_.c:96 ../../mouse.pm_.c:45
+#: ../../Xconfig/monitor.pm_.c:98 ../../mouse.pm_.c:46
msgid "Generic"
msgstr "Genérico"
-#: ../../Xconfig/monitor.pm_.c:97 ../../harddrake/ui.pm_.c:36
+#: ../../Xconfig/monitor.pm_.c:99 ../../harddrake/ui.pm_.c:37
msgid "Vendor"
msgstr "Fabricante"
-#: ../../Xconfig/monitor.pm_.c:107
+#: ../../Xconfig/monitor.pm_.c:109
msgid "Plug'n Play probing failed. Please choose a precise monitor"
msgstr "FallĂł la prueba Plug'n Play. Por favor, elija un monitor especĂ­fico"
-#: ../../Xconfig/monitor.pm_.c:112
+#: ../../Xconfig/monitor.pm_.c:114
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -251,11 +252,11 @@ msgstr ""
"puede dañar su monitor.\n"
" En caso de duda, elija una configuraciĂłn conservadora."
-#: ../../Xconfig/monitor.pm_.c:119
+#: ../../Xconfig/monitor.pm_.c:121
msgid "Horizontal refresh rate"
msgstr "Frecuencia de barrido horizontal"
-#: ../../Xconfig/monitor.pm_.c:120
+#: ../../Xconfig/monitor.pm_.c:122
msgid "Vertical refresh rate"
msgstr "Frecuencia de barrido vertical"
@@ -292,36 +293,40 @@ msgstr "Elija la resoluciĂłn y la profundidad de colores"
msgid "Graphics card: %s"
msgstr "Tarjeta grĂĄfica: %s"
-#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1015
-#: ../../bootlook.pm_.c:334 ../../diskdrake/smbnfs_gtk.pm_.c:87
-#: ../../install_steps_gtk.pm_.c:412 ../../install_steps_gtk.pm_.c:470
-#: ../../install_steps_interactive.pm_.c:576 ../../interactive.pm_.c:142
-#: ../../interactive.pm_.c:351 ../../interactive/http.pm_.c:105
+#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1018
+#: ../../bootlook.pm_.c:338 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:406 ../../install_steps_gtk.pm_.c:464
+#: ../../install_steps_interactive.pm_.c:560 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:105
#: ../../interactive/newt.pm_.c:174 ../../interactive/stdio.pm_.c:39
-#: ../../interactive/stdio.pm_.c:143 ../../my_gtk.pm_.c:155
-#: ../../my_gtk.pm_.c:159 ../../my_gtk.pm_.c:284
-#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1990
-#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3278
-#: ../../standalone/drakbackup_.c:3311 ../../standalone/drakbackup_.c:3337
-#: ../../standalone/drakbackup_.c:3364 ../../standalone/drakbackup_.c:3391
-#: ../../standalone/drakbackup_.c:3451 ../../standalone/drakbackup_.c:3478
-#: ../../standalone/drakbackup_.c:3504 ../../standalone/drakconnect_.c:115
-#: ../../standalone/drakconnect_.c:147 ../../standalone/drakconnect_.c:289
-#: ../../standalone/drakconnect_.c:537 ../../standalone/drakconnect_.c:679
-#: ../../standalone/drakfloppy_.c:234 ../../standalone/drakfloppy_.c:383
-#: ../../standalone/drakfont_.c:970 ../../standalone/drakgw_.c:598
-#: ../../standalone/logdrake_.c:224 ../../standalone/logdrake_.c:528
-#: ../../standalone/tinyfirewall_.c:64
+#: ../../interactive/stdio.pm_.c:143 ../../my_gtk.pm_.c:158
+#: ../../my_gtk.pm_.c:162 ../../my_gtk.pm_.c:287
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:2124
+#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3926
+#: ../../standalone/drakbackup_.c:3959 ../../standalone/drakbackup_.c:3985
+#: ../../standalone/drakbackup_.c:4012 ../../standalone/drakbackup_.c:4039
+#: ../../standalone/drakbackup_.c:4099 ../../standalone/drakbackup_.c:4126
+#: ../../standalone/drakbackup_.c:4156 ../../standalone/drakbackup_.c:4182
+#: ../../standalone/drakconnect_.c:115 ../../standalone/drakconnect_.c:147
+#: ../../standalone/drakconnect_.c:289 ../../standalone/drakconnect_.c:537
+#: ../../standalone/drakconnect_.c:679 ../../standalone/drakfloppy_.c:234
+#: ../../standalone/drakfloppy_.c:383 ../../standalone/drakfont_.c:970
+#: ../../standalone/drakgw_.c:536 ../../standalone/logdrake_.c:224
+#: ../../standalone/logdrake_.c:526
msgid "Cancel"
msgstr "Cancelar"
-#: ../../Xconfig/test.pm_.c:26
+#: ../../Xconfig/test.pm_.c:30
+msgid "Test of the configuration"
+msgstr "Probar la configuraciĂłn"
+
+#: ../../Xconfig/test.pm_.c:31
msgid "Do you want to test the configuration?"
msgstr "ÂżDesea probar la configuraciĂłn?"
-#: ../../Xconfig/test.pm_.c:26
-msgid "Test of the configuration"
-msgstr "Probar la configuraciĂłn"
+#: ../../Xconfig/test.pm_.c:31
+msgid "Warning: testing this graphic card may freeze your computer"
+msgstr "Advertencia: probar esta tarjeta de vĂ­deo puede colgar su computadora"
#: ../../Xconfig/various.pm_.c:29
#, c-format
@@ -464,26 +469,22 @@ msgstr "Arrancar desde DOS/Windows (loadlin)"
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:158 ../../any.pm_.c:190
+#: ../../any.pm_.c:159 ../../any.pm_.c:190
msgid "Bootloader main options"
msgstr "Opciones principales del cargador de arranque"
-#: ../../any.pm_.c:159 ../../any.pm_.c:191
+#: ../../any.pm_.c:160 ../../any.pm_.c:191
msgid "Bootloader to use"
msgstr "Cargador de arranque a usar"
-#: ../../any.pm_.c:161
+#: ../../any.pm_.c:162
msgid "Bootloader installation"
msgstr "InstalaciĂłn del cargador de arranque"
-#: ../../any.pm_.c:163 ../../any.pm_.c:193
+#: ../../any.pm_.c:164 ../../any.pm_.c:193
msgid "Boot device"
msgstr "Dispositivo de arranque"
-#: ../../any.pm_.c:164
-msgid "LBA (doesn't work on old BIOSes)"
-msgstr "LBA (no funciona con BIOS antiguos)"
-
#: ../../any.pm_.c:165
msgid "Compact"
msgstr "Compacto"
@@ -500,16 +501,17 @@ msgstr "Modo de vĂ­deo"
msgid "Delay before booting default image"
msgstr "Demora antes de arrancar la imagen predeterminada"
-#: ../../any.pm_.c:170 ../../any.pm_.c:786
+#: ../../any.pm_.c:170 ../../any.pm_.c:788
#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1111 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:743 ../../printerdrake.pm_.c:858
-#: ../../standalone/drakconnect_.c:624 ../../standalone/drakconnect_.c:649
+#: ../../install_steps_interactive.pm_.c:1096 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:850 ../../printerdrake.pm_.c:965
+#: ../../standalone/drakbackup_.c:3528 ../../standalone/drakconnect_.c:624
+#: ../../standalone/drakconnect_.c:649
msgid "Password"
msgstr "Contraseña"
-#: ../../any.pm_.c:171 ../../any.pm_.c:787
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../any.pm_.c:171 ../../any.pm_.c:789
+#: ../../install_steps_interactive.pm_.c:1097
msgid "Password (again)"
msgstr "Contraseña (de nuevo)"
@@ -545,14 +547,14 @@ msgstr ""
"La opciĂłn \"Restringir las opciones de la lĂ­nea de comandos\"\n"
"no tiene sentido sin contraseña"
-#: ../../any.pm_.c:184 ../../any.pm_.c:762
-#: ../../diskdrake/interactive.pm_.c:1180
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../any.pm_.c:184 ../../any.pm_.c:764
+#: ../../diskdrake/interactive.pm_.c:1191
+#: ../../install_steps_interactive.pm_.c:1091
msgid "Please try again"
msgstr "Vuelva a intentarlo, por favor"
-#: ../../any.pm_.c:184 ../../any.pm_.c:762
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../any.pm_.c:184 ../../any.pm_.c:764
+#: ../../install_steps_interactive.pm_.c:1091
msgid "The passwords do not match"
msgstr "Las contraseñas no coinciden"
@@ -602,16 +604,16 @@ msgstr ""
"AquĂ­ estĂĄn las diferentes entradas.\n"
"Puede añadir otras o cambiar las que ya existen."
-#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1483
-#: ../../standalone/drakbackup_.c:1596 ../../standalone/drakfont_.c:1011
+#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1558
+#: ../../standalone/drakbackup_.c:1671 ../../standalone/drakfont_.c:1011
#: ../../standalone/drakfont_.c:1054
msgid "Add"
msgstr "Agregar"
-#: ../../any.pm_.c:257 ../../any.pm_.c:774 ../../diskdrake/dav.pm_.c:60
+#: ../../any.pm_.c:257 ../../any.pm_.c:776 ../../diskdrake/dav.pm_.c:64
#: ../../diskdrake/hd_gtk.pm_.c:153 ../../diskdrake/removable.pm_.c:27
#: ../../diskdrake/smbnfs_gtk.pm_.c:88 ../../interactive/http.pm_.c:153
-#: ../../standalone/drakbackup_.c:2696
+#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2772
msgid "Done"
msgstr "Hecho"
@@ -623,7 +625,7 @@ msgstr "Modificar"
msgid "Which type of entry do you want to add?"
msgstr "¿Qué tipo de entrada desea añadir?"
-#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1630
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1705
msgid "Linux"
msgstr "Linux"
@@ -717,13 +719,13 @@ msgstr "ÂżTiene alguna otra?"
msgid "Do you have any %s interfaces?"
msgstr "ÂżTiene alguna interfaz %s?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:821 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:283
+#: ../../any.pm_.c:660 ../../any.pm_.c:823 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:286
msgid "No"
msgstr "No"
-#: ../../any.pm_.c:660 ../../any.pm_.c:820 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:283
+#: ../../any.pm_.c:660 ../../any.pm_.c:822 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:286
msgid "Yes"
msgstr "SĂ­"
@@ -825,38 +827,46 @@ msgstr "permitir \"su\""
msgid "access to administrative files"
msgstr "acceso a archivos administrativos"
-#: ../../any.pm_.c:758
+#: ../../any.pm_.c:754
+msgid "access to network tools"
+msgstr "acceso a herramientas de red"
+
+#: ../../any.pm_.c:755
+msgid "access to compilation tools"
+msgstr "acceso a herramientas de compilaciĂłn"
+
+#: ../../any.pm_.c:760
#, c-format
msgid "(already added %s)"
msgstr "(%s ya fue añadido)"
-#: ../../any.pm_.c:763
+#: ../../any.pm_.c:765
msgid "This password is too simple"
msgstr "Esta contraseña es demasiado sencilla"
-#: ../../any.pm_.c:764
+#: ../../any.pm_.c:766
msgid "Please give a user name"
msgstr "Introduzca el nombre de usuario"
-#: ../../any.pm_.c:765
+#: ../../any.pm_.c:767
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
"El nombre de usuario (login) sĂłlo debe contener letras, nĂșmeros, `-' y `_'"
-#: ../../any.pm_.c:766
+#: ../../any.pm_.c:768
msgid "The user name is too long"
msgstr "El nombre de usuario es muy largo"
-#: ../../any.pm_.c:767
+#: ../../any.pm_.c:769
msgid "This user name is already added"
msgstr "Este nombre de usuario ya fue añadido"
-#: ../../any.pm_.c:771
+#: ../../any.pm_.c:773
msgid "Add user"
msgstr "Añadir un usuario"
-#: ../../any.pm_.c:772
+#: ../../any.pm_.c:774
#, c-format
msgid ""
"Enter a user\n"
@@ -865,32 +875,32 @@ msgstr ""
"Introduzca un usuario\n"
"%s"
-#: ../../any.pm_.c:773
+#: ../../any.pm_.c:775
msgid "Accept user"
msgstr "Aceptar el usuario"
-#: ../../any.pm_.c:784
+#: ../../any.pm_.c:786
msgid "Real name"
msgstr "Nombre y apellidos"
-#: ../../any.pm_.c:785 ../../printerdrake.pm_.c:742
-#: ../../printerdrake.pm_.c:857
+#: ../../any.pm_.c:787 ../../printerdrake.pm_.c:849
+#: ../../printerdrake.pm_.c:964
msgid "User name"
msgstr "Nombre del usuario"
-#: ../../any.pm_.c:788
+#: ../../any.pm_.c:790
msgid "Shell"
msgstr "Shell"
-#: ../../any.pm_.c:790
+#: ../../any.pm_.c:792
msgid "Icon"
msgstr "Icono"
-#: ../../any.pm_.c:817
+#: ../../any.pm_.c:819
msgid "Autologin"
msgstr "Entrada automĂĄtica"
-#: ../../any.pm_.c:818
+#: ../../any.pm_.c:820
msgid ""
"I can set up your computer to automatically log on one user.\n"
"Do you want to use this feature?"
@@ -898,19 +908,19 @@ msgstr ""
"Puede configurar su computadora para que entre automĂĄticamente\n"
"en sesiĂłn con un usuario dado al arrancar. ÂżDesea esa funcionalidad?"
-#: ../../any.pm_.c:822
+#: ../../any.pm_.c:824
msgid "Choose the default user:"
msgstr "Elija el usuario predeterminado:"
-#: ../../any.pm_.c:823
+#: ../../any.pm_.c:825
msgid "Choose the window manager to run:"
msgstr "Elija el gestor de ventanas a ejecutar:"
-#: ../../any.pm_.c:838
+#: ../../any.pm_.c:840
msgid "Please choose a language to use."
msgstr "Por favor, elija el idioma a usar."
-#: ../../any.pm_.c:840
+#: ../../any.pm_.c:842
msgid ""
"Mandrake Linux can support multiple languages. Select\n"
"the languages you would like to install. They will be available\n"
@@ -918,35 +928,35 @@ msgid ""
msgstr ""
"Puede elegir otros idiomas, que estarån disponibles después de la instalación"
-#: ../../any.pm_.c:854 ../../install_steps_interactive.pm_.c:708
+#: ../../any.pm_.c:856 ../../install_steps_interactive.pm_.c:692
#: ../../standalone/drakxtv_.c:73
msgid "All"
msgstr "Todo"
-#: ../../any.pm_.c:974
+#: ../../any.pm_.c:977
msgid "Allow all users"
msgstr "Permitir a todos los usuarios"
-#: ../../any.pm_.c:974
+#: ../../any.pm_.c:977
msgid "No sharing"
msgstr "No compartir"
-#: ../../any.pm_.c:984 ../../standalone.pm_.c:57
+#: ../../any.pm_.c:987 ../../install_any.pm_.c:1183 ../../standalone.pm_.c:58
#, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "Se necesita instalar el paquete %s. ÂżQuiere instalarlo?"
-#: ../../any.pm_.c:987
+#: ../../any.pm_.c:990
msgid ""
"You can export using NFS or Samba. Please select which you'd like to use."
msgstr "Puede exportar usando NFS o Samba. ÂżCuĂĄl elige"
-#: ../../any.pm_.c:995 ../../standalone.pm_.c:61
+#: ../../any.pm_.c:998 ../../install_any.pm_.c:1188 ../../standalone.pm_.c:63
#, c-format
msgid "Mandatory package %s is missing"
msgstr "Falta el paquete obligatorio %s"
-#: ../../any.pm_.c:1001
+#: ../../any.pm_.c:1004
msgid ""
"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
@@ -960,11 +970,11 @@ msgstr ""
"\n"
"\"Personalizar\" permite una granularidad por usuario.\n"
-#: ../../any.pm_.c:1015
+#: ../../any.pm_.c:1018
msgid "Launch userdrake"
msgstr "Lanzar userdrake"
-#: ../../any.pm_.c:1017
+#: ../../any.pm_.c:1020
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
@@ -972,31 +982,31 @@ msgstr ""
"La comparticiĂłn por usuario utiliza el grupo \"fileshare\". \n"
"Puede utilizar userdrake para añadir un usuario a este grupo."
-#: ../../any.pm_.c:1068
+#: ../../any.pm_.c:1071
msgid "Welcome To Crackers"
msgstr "Bienvenidos, crackers"
-#: ../../any.pm_.c:1069
+#: ../../any.pm_.c:1072
msgid "Poor"
msgstr "Pobre"
-#: ../../any.pm_.c:1070 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1073 ../../mouse.pm_.c:31
msgid "Standard"
msgstr "EstĂĄndar"
-#: ../../any.pm_.c:1071
+#: ../../any.pm_.c:1074
msgid "High"
msgstr "Alta"
-#: ../../any.pm_.c:1072
+#: ../../any.pm_.c:1075
msgid "Higher"
msgstr "MĂĄs alta"
-#: ../../any.pm_.c:1073
+#: ../../any.pm_.c:1076
msgid "Paranoid"
msgstr "Paranoica"
-#: ../../any.pm_.c:1076
+#: ../../any.pm_.c:1079
msgid ""
"This level is to be used with care. It makes your system more easy to use,\n"
"but very sensitive: it must not be used for a machine connected to others\n"
@@ -1006,7 +1016,7 @@ msgstr ""
"usar, pero también mucho mås vulnerable: no debe usarse para una måquina\n"
"conectada en red con otras o a Internet. No hay contraseñas de acceso."
-#: ../../any.pm_.c:1079
+#: ../../any.pm_.c:1082
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -1014,7 +1024,7 @@ msgstr ""
"Las contraseñas estån activadas, pero tampoco se recomienda usar este\n"
"nivel para un ordenador conectado a una red."
-#: ../../any.pm_.c:1080
+#: ../../any.pm_.c:1083
msgid ""
"This is the standard security recommended for a computer that will be used "
"to connect to the Internet as a client."
@@ -1022,7 +1032,7 @@ msgstr ""
"Éste es el nivel de seguridad estándar recomendado para una máquina que se\n"
"utilizarĂĄ para conectarse a la Internet como cliente."
-#: ../../any.pm_.c:1081
+#: ../../any.pm_.c:1084
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
@@ -1030,7 +1040,7 @@ msgstr ""
"Ya hay algunas restricciones, y todas las noches se corren mĂĄs "
"verificaciones automĂĄticas."
-#: ../../any.pm_.c:1082
+#: ../../any.pm_.c:1085
msgid ""
"With this security level, the use of this system as a server becomes "
"possible.\n"
@@ -1045,7 +1055,7 @@ msgstr ""
"servidor que acepte conexiones de mĂșltiples clientes. Nota: si su mĂĄquina "
"sĂłlo es un cliente en la Internet, mejor deberĂ­a elegir un nivel inferior."
-#: ../../any.pm_.c:1085
+#: ../../any.pm_.c:1088
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
"security features are at their maximum."
@@ -1053,30 +1063,30 @@ msgstr ""
"Basado en el nivel anterior, pero el sistema estĂĄ completamente cerrado.\n"
"Las caracterĂ­sticas de seguridad estĂĄn al mĂĄximo."
-#: ../../any.pm_.c:1091
+#: ../../any.pm_.c:1094
msgid "DrakSec Basic Options"
msgstr "Opciones bĂĄsicas de DrakSec"
-#: ../../any.pm_.c:1092
+#: ../../any.pm_.c:1095
msgid "Please choose the desired security level"
msgstr "Por favor, elija el nivel de seguridad deseado"
-#: ../../any.pm_.c:1095
+#: ../../any.pm_.c:1098
msgid "Security level"
msgstr "Nivel de seguridad"
-#: ../../any.pm_.c:1097
+#: ../../any.pm_.c:1100
msgid "Use libsafe for servers"
msgstr "Utilizar libsafe para los servidores"
-#: ../../any.pm_.c:1098
+#: ../../any.pm_.c:1101
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
"Una biblioteca que le defiende ante ataques de desbordamiento de bĂșfer y "
"ataques con cadenas de formato."
-#: ../../any.pm_.c:1099
+#: ../../any.pm_.c:1102
msgid "Security Administrator (login or email)"
msgstr "Administrador de la seguridad (login o correo electrĂłnico)"
@@ -1108,57 +1118,57 @@ msgstr ""
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:935
+#: ../../bootloader.pm_.c:932
msgid "Welcome to GRUB the operating system chooser!"
msgstr "ÂĄBienvenido a GRUB, el selector de SO de arranque!"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:938
+#: ../../bootloader.pm_.c:935
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "Use las teclas %c y %c para seleccionar una entrada."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:941
+#: ../../bootloader.pm_.c:938
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Pulse intro para iniciar el SO elegido, pulse 'e' para editar"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:941
msgid "commands before booting, or 'c' for a command-line."
msgstr "los comandos antes de iniciar, o pulse 'c' para una linea de comandos."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:947
+#: ../../bootloader.pm_.c:944
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "Se va a iniciar la entrada resaltada en %d segundos."
-#: ../../bootloader.pm_.c:951
+#: ../../bootloader.pm_.c:948
msgid "not enough room in /boot"
msgstr "no hay espacio suficiente en /boot"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1051
+#: ../../bootloader.pm_.c:1048
msgid "Desktop"
msgstr "Escritorio"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1053
+#: ../../bootloader.pm_.c:1050
msgid "Start Menu"
msgstr "MenĂș inicio"
-#: ../../bootloader.pm_.c:1072
+#: ../../bootloader.pm_.c:1069
#, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "No puede instalar el cargador de arranque en una particiĂłn %s\n"
-#: ../../bootlook.pm_.c:45
+#: ../../bootlook.pm_.c:45 ../../standalone/draksplash_.c:25
msgid "no help implemented yet.\n"
msgstr "todavĂ­a no estĂĄ implementada la ayuda.\n"
@@ -1166,8 +1176,8 @@ msgstr "todavĂ­a no estĂĄ implementada la ayuda.\n"
msgid "Boot Style Configuration"
msgstr "ConfiguraciĂłn del estilo de arranque"
-#: ../../bootlook.pm_.c:78 ../../harddrake/ui.pm_.c:59
-#: ../../harddrake/ui.pm_.c:60 ../../standalone/drakfloppy_.c:81
+#: ../../bootlook.pm_.c:78 ../../harddrake/ui.pm_.c:62
+#: ../../harddrake/ui.pm_.c:63 ../../standalone/drakfloppy_.c:81
#: ../../standalone/logdrake_.c:101
msgid "/_File"
msgstr "/_Archivo"
@@ -1177,7 +1187,7 @@ msgstr "/_Archivo"
msgid "/File/_Quit"
msgstr "/Archivo/_Salir"
-#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:60
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:63
#: ../../standalone/drakfloppy_.c:82 ../../standalone/logdrake_.c:107
msgid "<control>Q"
msgstr "<control>S"
@@ -1218,54 +1228,59 @@ msgstr "Instalar temas"
msgid "Display theme under console"
msgstr "Mostrar tema bajo la consola"
-#: ../../bootlook.pm_.c:166
+#: ../../bootlook.pm_.c:145
+msgid "Create new theme"
+msgstr "Crear un tema nuevo"
+
+#: ../../bootlook.pm_.c:169
msgid "Can't create Bootsplash preview"
msgstr "No se puede crear previsualizaciĂłn de Bootsplash"
-#: ../../bootlook.pm_.c:166 ../../bootlook.pm_.c:184 ../../bootlook.pm_.c:187
-#: ../../bootlook.pm_.c:190 ../../bootlook.pm_.c:220 ../../bootlook.pm_.c:222
-#: ../../bootlook.pm_.c:232 ../../bootlook.pm_.c:241 ../../bootlook.pm_.c:248
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:336
-#: ../../diskdrake/interactive.pm_.c:351 ../../diskdrake/interactive.pm_.c:464
-#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../bootlook.pm_.c:169 ../../bootlook.pm_.c:187 ../../bootlook.pm_.c:190
+#: ../../bootlook.pm_.c:193 ../../bootlook.pm_.c:223 ../../bootlook.pm_.c:225
+#: ../../bootlook.pm_.c:235 ../../bootlook.pm_.c:244 ../../bootlook.pm_.c:251
+#: ../../diskdrake/dav.pm_.c:73 ../../diskdrake/hd_gtk.pm_.c:116
+#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/interactive.pm_.c:355
+#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/interactive.pm_.c:474
+#: ../../diskdrake/smbnfs_gtk.pm_.c:45 ../../fsedit.pm_.c:239
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:365 ../../interactive/http.pm_.c:119
-#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:80
+#: ../../interactive/http.pm_.c:119 ../../interactive/http.pm_.c:120
+#: ../../standalone/draksplash_.c:32
msgid "Error"
msgstr "Error"
-#: ../../bootlook.pm_.c:183
+#: ../../bootlook.pm_.c:186
#, c-format
msgid "Backup %s to %s.old"
msgstr "Copiar %s a %s.old"
-#: ../../bootlook.pm_.c:184
+#: ../../bootlook.pm_.c:187
msgid "unable to backup lilo message"
msgstr "no se puede hacer copia de respaldo del mensaje de LiLo"
-#: ../../bootlook.pm_.c:186
+#: ../../bootlook.pm_.c:189
#, c-format
msgid "Copy %s to %s"
msgstr "Copiar %s a %s"
-#: ../../bootlook.pm_.c:187
+#: ../../bootlook.pm_.c:190
msgid "can't change lilo message"
msgstr "no se puede cambiar el mensaje de LiLo"
-#: ../../bootlook.pm_.c:190
+#: ../../bootlook.pm_.c:193
msgid "Lilo message not found"
msgstr "no se encuentra el mensaje de LiLo"
-#: ../../bootlook.pm_.c:220
+#: ../../bootlook.pm_.c:223
msgid "Can't write /etc/sysconfig/bootsplash."
msgstr "No se puede escribir /etc/sysconfig/bootsplash."
-#: ../../bootlook.pm_.c:220
+#: ../../bootlook.pm_.c:223
#, c-format
msgid "Write %s"
msgstr "Escribir %s"
-#: ../../bootlook.pm_.c:222
+#: ../../bootlook.pm_.c:225
msgid ""
"Can't write /etc/sysconfig/bootsplash\n"
"File not found."
@@ -1273,17 +1288,17 @@ msgstr ""
"No se puede escribir /etc/sysconfig/bootsplash\n"
"No se encuentra el archivo."
-#: ../../bootlook.pm_.c:233
+#: ../../bootlook.pm_.c:236
#, c-format
msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
msgstr "No se puede ejecutar mkinitrd -f /boot/initrd-%s.img %s."
-#: ../../bootlook.pm_.c:236
+#: ../../bootlook.pm_.c:239
#, c-format
-msgid "Make initrd 'mkinird -f /boot/initrd-%s.img %s'."
+msgid "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
msgstr "Construir initrd mkinitrd -f /boot/initrd-%s.img %s."
-#: ../../bootlook.pm_.c:242
+#: ../../bootlook.pm_.c:245
msgid ""
"Can't relaunch LiLo!\n"
"Launch \"lilo\" as root in command line to complete LiLo theme installation."
@@ -1292,23 +1307,24 @@ msgstr ""
"Ejecute \"lilo\" como root en la lĂ­nea de comandos para completar la "
"instalaciĂłn del tema de LiLo."
-#: ../../bootlook.pm_.c:246
+#: ../../bootlook.pm_.c:249
msgid "Relaunch 'lilo'"
msgstr "Volver a ejecutar 'lilo'"
-#: ../../bootlook.pm_.c:248
+#: ../../bootlook.pm_.c:251 ../../standalone/draksplash_.c:161
+#: ../../standalone/draksplash_.c:330 ../../standalone/draksplash_.c:454
msgid "Notice"
msgstr "Nota"
-#: ../../bootlook.pm_.c:249
+#: ../../bootlook.pm_.c:252
msgid "LiLo and Bootsplash themes installation successfull"
msgstr "InstalaciĂłn satisfactoria de LiLo y temas de Bootsplash"
-#: ../../bootlook.pm_.c:249
+#: ../../bootlook.pm_.c:252
msgid "Theme installation failed!"
msgstr "ÂĄFallĂł la instalaciĂłn de los temas!"
-#: ../../bootlook.pm_.c:258
+#: ../../bootlook.pm_.c:261
#, c-format
msgid ""
"You are currently using %s as your boot manager.\n"
@@ -1317,22 +1333,21 @@ msgstr ""
"En este momento estĂĄ usando %s como gestor de arranque.\n"
"Haga click sobre configurar para lanzar el asistente de configuraciĂłn."
-#: ../../bootlook.pm_.c:260 ../../standalone/drakbackup_.c:2352
-#: ../../standalone/drakbackup_.c:2362 ../../standalone/drakbackup_.c:2372
-#: ../../standalone/drakbackup_.c:2380 ../../standalone/drakgw_.c:592
-#: ../../standalone/tinyfirewall_.c:58
+#: ../../bootlook.pm_.c:263 ../../standalone/drakbackup_.c:2427
+#: ../../standalone/drakbackup_.c:2437 ../../standalone/drakbackup_.c:2447
+#: ../../standalone/drakbackup_.c:2455 ../../standalone/drakgw_.c:530
msgid "Configure"
msgstr "Configurar"
-#: ../../bootlook.pm_.c:267
+#: ../../bootlook.pm_.c:270
msgid "Splash selection"
msgstr "SelecciĂłn de Splash"
-#: ../../bootlook.pm_.c:270
+#: ../../bootlook.pm_.c:273
msgid "Themes"
msgstr "Temas"
-#: ../../bootlook.pm_.c:272
+#: ../../bootlook.pm_.c:275
msgid ""
"\n"
"Select a theme for\n"
@@ -1346,44 +1361,44 @@ msgstr ""
"puede elegirlos\n"
"por separado"
-#: ../../bootlook.pm_.c:275
+#: ../../bootlook.pm_.c:278
msgid "Lilo screen"
msgstr "Pantalla de LiLo"
-#: ../../bootlook.pm_.c:279
+#: ../../bootlook.pm_.c:283
msgid "Bootsplash"
msgstr "Bootsplash"
-#: ../../bootlook.pm_.c:314
+#: ../../bootlook.pm_.c:318
msgid "System mode"
msgstr "Modo del sistema"
-#: ../../bootlook.pm_.c:316
+#: ../../bootlook.pm_.c:320
msgid "Launch the graphical environment when your system starts"
msgstr "Lanzar el sistema X-Window al comenzar"
-#: ../../bootlook.pm_.c:321
+#: ../../bootlook.pm_.c:325
msgid "No, I don't want autologin"
msgstr "No, no deseo entrada automĂĄtica"
-#: ../../bootlook.pm_.c:323
+#: ../../bootlook.pm_.c:327
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "SĂ­, deseo entrada automĂĄtica con este (usuario, escritorio)"
-#: ../../bootlook.pm_.c:333 ../../network/netconnect.pm_.c:101
+#: ../../bootlook.pm_.c:337 ../../network/netconnect.pm_.c:101
#: ../../standalone/drakTermServ_.c:173 ../../standalone/drakTermServ_.c:300
-#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:3513
-#: ../../standalone/drakbackup_.c:4290 ../../standalone/drakconnect_.c:108
+#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4191
+#: ../../standalone/drakbackup_.c:4952 ../../standalone/drakconnect_.c:108
#: ../../standalone/drakconnect_.c:140 ../../standalone/drakconnect_.c:296
#: ../../standalone/drakconnect_.c:435 ../../standalone/drakconnect_.c:521
#: ../../standalone/drakconnect_.c:564 ../../standalone/drakconnect_.c:667
#: ../../standalone/drakfloppy_.c:376 ../../standalone/drakfont_.c:612
#: ../../standalone/drakfont_.c:799 ../../standalone/drakfont_.c:876
-#: ../../standalone/drakfont_.c:963 ../../standalone/logdrake_.c:521
+#: ../../standalone/drakfont_.c:963 ../../standalone/logdrake_.c:519
msgid "OK"
msgstr "Aceptar"
-#: ../../bootlook.pm_.c:403
+#: ../../bootlook.pm_.c:407
#, c-format
msgid "can not open /etc/inittab for reading: %s"
msgstr "ÂĄno se puede abrir /etc/inittab para lectura: %s !"
@@ -1482,45 +1497,50 @@ msgstr "Austria"
msgid "United States"
msgstr "Estados Unidos"
-#: ../../detect_devices.pm_.c:599 ../../detect_devices.pm_.c:641
-#: ../../detect_devices.pm_.c:803
-msgid "Unknown Model"
-msgstr "Modelo desconocido"
-
#: ../../diskdrake/dav.pm_.c:23
msgid "New"
msgstr "Nuevo"
-#: ../../diskdrake/dav.pm_.c:57
+#: ../../diskdrake/dav.pm_.c:59 ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/smbnfs_gtk.pm_.c:81
+msgid "Unmount"
+msgstr "Desmontar"
+
+#: ../../diskdrake/dav.pm_.c:60 ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/smbnfs_gtk.pm_.c:82
+msgid "Mount"
+msgstr "Montar"
+
+#: ../../diskdrake/dav.pm_.c:61
msgid "Server"
msgstr "Servidor"
-#: ../../diskdrake/dav.pm_.c:58 ../../diskdrake/interactive.pm_.c:375
-#: ../../diskdrake/interactive.pm_.c:558 ../../diskdrake/interactive.pm_.c:585
+#: ../../diskdrake/dav.pm_.c:62 ../../diskdrake/interactive.pm_.c:379
+#: ../../diskdrake/interactive.pm_.c:568 ../../diskdrake/interactive.pm_.c:595
#: ../../diskdrake/removable.pm_.c:24 ../../diskdrake/removable_gtk.pm_.c:15
#: ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr "Punto de montaje"
-#: ../../diskdrake/dav.pm_.c:68
+#: ../../diskdrake/dav.pm_.c:81
msgid "Please enter the WebDAV server URL"
msgstr "Por favor, ingrese la URL del servidor WebDAV"
-#: ../../diskdrake/dav.pm_.c:71
+#: ../../diskdrake/dav.pm_.c:84
msgid "The URL must begin with http:// or https://"
msgstr "La URL deberĂ­a empezar con http:// o https://"
-#: ../../diskdrake/dav.pm_.c:92
+#: ../../diskdrake/dav.pm_.c:105
msgid "Server: "
msgstr "Servidor: "
-#: ../../diskdrake/dav.pm_.c:93 ../../diskdrake/interactive.pm_.c:435
-#: ../../diskdrake/interactive.pm_.c:1079
-#: ../../diskdrake/interactive.pm_.c:1153
+#: ../../diskdrake/dav.pm_.c:106 ../../diskdrake/interactive.pm_.c:440
+#: ../../diskdrake/interactive.pm_.c:1089
+#: ../../diskdrake/interactive.pm_.c:1164
msgid "Mount point: "
msgstr "Punto de montaje: "
-#: ../../diskdrake/dav.pm_.c:94 ../../diskdrake/interactive.pm_.c:1159
+#: ../../diskdrake/dav.pm_.c:107 ../../diskdrake/interactive.pm_.c:1170
#, c-format
msgid "Options: %s"
msgstr "Opciones: %s"
@@ -1529,8 +1549,9 @@ msgstr "Opciones: %s"
msgid "Please make a backup of your data first"
msgstr "Por favor, haga primero una copia de seguridad de sus datos"
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:924
-#: ../../diskdrake/interactive.pm_.c:933 ../../diskdrake/interactive.pm_.c:999
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:934
+#: ../../diskdrake/interactive.pm_.c:943
+#: ../../diskdrake/interactive.pm_.c:1009
msgid "Read carefully!"
msgstr "ÂĄLea con cuidado!"
@@ -1568,10 +1589,14 @@ msgid "Please click on a partition"
msgstr "Por favor, haga clic sobre una particiĂłn"
#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
-#: ../../install_steps_gtk.pm_.c:471
+#: ../../install_steps_gtk.pm_.c:465
msgid "Details"
msgstr "Detalles"
+#: ../../diskdrake/hd_gtk.pm_.c:252
+msgid "No hard drives found"
+msgstr "ÂĄNo se encontraron discos rĂ­gidos!"
+
#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Ext2"
msgstr "Ext2"
@@ -1596,13 +1621,13 @@ msgstr "SunOS"
msgid "Swap"
msgstr "Intercambio"
-#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1105
msgid "Empty"
msgstr "VacĂ­o"
-#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:331
-#: ../../install_steps_gtk.pm_.c:389 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1679
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:325
+#: ../../install_steps_gtk.pm_.c:383 ../../mouse.pm_.c:165
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1754
msgid "Other"
msgstr "Otros"
@@ -1610,12 +1635,12 @@ msgstr "Otros"
msgid "Filesystem types:"
msgstr "Tipos de sistemas de archivos:"
-#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:397
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:402
msgid "Create"
msgstr "Crear"
-#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:376
-#: ../../diskdrake/interactive.pm_.c:521 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:380
+#: ../../diskdrake/interactive.pm_.c:531 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "Tipo"
@@ -1625,7 +1650,7 @@ msgstr "Tipo"
msgid "Use ``%s'' instead"
msgstr "Use \"%s\" en su lugar"
-#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:389
msgid "Delete"
msgstr "Borrar"
@@ -1633,79 +1658,79 @@ msgstr "Borrar"
msgid "Use ``Unmount'' first"
msgstr "Use \"Desmontar\" primero"
-#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:513
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:518
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
msgstr ""
"Se perderån todos los datos de la partición %s después de cambiar su tipo"
-#: ../../diskdrake/interactive.pm_.c:173
+#: ../../diskdrake/interactive.pm_.c:174
msgid "Choose a partition"
msgstr "Elija una particiĂłn"
-#: ../../diskdrake/interactive.pm_.c:173
+#: ../../diskdrake/interactive.pm_.c:174
msgid "Choose another partition"
msgstr "Elija otra particiĂłn"
-#: ../../diskdrake/interactive.pm_.c:198
+#: ../../diskdrake/interactive.pm_.c:199
msgid "Exit"
msgstr "Salir"
-#: ../../diskdrake/interactive.pm_.c:220
+#: ../../diskdrake/interactive.pm_.c:221
msgid "Toggle to expert mode"
msgstr "Cambiar al modo experto"
-#: ../../diskdrake/interactive.pm_.c:220
+#: ../../diskdrake/interactive.pm_.c:221
msgid "Toggle to normal mode"
msgstr "Cambiar al modo normal"
-#: ../../diskdrake/interactive.pm_.c:220
+#: ../../diskdrake/interactive.pm_.c:221
msgid "Undo"
msgstr "Deshacer"
-#: ../../diskdrake/interactive.pm_.c:239
+#: ../../diskdrake/interactive.pm_.c:240
msgid "Continue anyway?"
msgstr "ÂżSeguir adelante?"
-#: ../../diskdrake/interactive.pm_.c:244
+#: ../../diskdrake/interactive.pm_.c:245
msgid "Quit without saving"
msgstr "Salir sin grabar"
-#: ../../diskdrake/interactive.pm_.c:244
+#: ../../diskdrake/interactive.pm_.c:245
msgid "Quit without writing the partition table?"
msgstr "ÂżSalir del programa sin grabar la tabla de particiones?"
-#: ../../diskdrake/interactive.pm_.c:249
+#: ../../diskdrake/interactive.pm_.c:250
msgid "Do you want to save /etc/fstab modifications"
msgstr "ÂżDesea guardar las modificaciones en /etc/fstab?"
-#: ../../diskdrake/interactive.pm_.c:261
+#: ../../diskdrake/interactive.pm_.c:263
msgid "Auto allocate"
msgstr "AsignaciĂłn automĂĄtica"
-#: ../../diskdrake/interactive.pm_.c:261
+#: ../../diskdrake/interactive.pm_.c:263
msgid "Clear all"
msgstr "Borrar todas"
-#: ../../diskdrake/interactive.pm_.c:261
+#: ../../diskdrake/interactive.pm_.c:263
#: ../../install_steps_interactive.pm_.c:214
msgid "More"
msgstr "MĂĄs"
-#: ../../diskdrake/interactive.pm_.c:264
+#: ../../diskdrake/interactive.pm_.c:267
msgid "Hard drive information"
msgstr "InformaciĂłn del disco rĂ­gido"
-#: ../../diskdrake/interactive.pm_.c:294
+#: ../../diskdrake/interactive.pm_.c:298
msgid "All primary partitions are used"
msgstr "Todas las particiones primarias estĂĄn usadas"
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:299
msgid "I can't add any more partition"
msgstr "No se pueden agregar mĂĄs particiones"
-#: ../../diskdrake/interactive.pm_.c:296
+#: ../../diskdrake/interactive.pm_.c:300
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -1713,31 +1738,31 @@ msgstr ""
"Por favor, para tener mĂĄs particiones borre alguna para poder crear una "
"particiĂłn extendida"
-#: ../../diskdrake/interactive.pm_.c:306
+#: ../../diskdrake/interactive.pm_.c:310
msgid "Save partition table"
msgstr "Guardar la tabla de particiones"
-#: ../../diskdrake/interactive.pm_.c:307
+#: ../../diskdrake/interactive.pm_.c:311
msgid "Restore partition table"
msgstr "Restaurar la tabla de particiones"
-#: ../../diskdrake/interactive.pm_.c:308
+#: ../../diskdrake/interactive.pm_.c:312
msgid "Rescue partition table"
msgstr "Rescatar la tabla de particiones"
-#: ../../diskdrake/interactive.pm_.c:310
+#: ../../diskdrake/interactive.pm_.c:314
msgid "Reload partition table"
msgstr "Volver a cargar la tabla de particiones"
-#: ../../diskdrake/interactive.pm_.c:315
+#: ../../diskdrake/interactive.pm_.c:319
msgid "Removable media automounting"
msgstr "Montaje automĂĄtico de dispositivos extraĂ­bles"
-#: ../../diskdrake/interactive.pm_.c:324 ../../diskdrake/interactive.pm_.c:344
+#: ../../diskdrake/interactive.pm_.c:328 ../../diskdrake/interactive.pm_.c:348
msgid "Select file"
msgstr "Elija un archivo"
-#: ../../diskdrake/interactive.pm_.c:331
+#: ../../diskdrake/interactive.pm_.c:335
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1745,11 +1770,11 @@ msgstr ""
"La tabla de particiones de respaldo no tiene\n"
"el mismo tamaño. ¿Desea continuar de todas formas?"
-#: ../../diskdrake/interactive.pm_.c:345
+#: ../../diskdrake/interactive.pm_.c:349
msgid "Warning"
msgstr "Advertencia"
-#: ../../diskdrake/interactive.pm_.c:346
+#: ../../diskdrake/interactive.pm_.c:350
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1757,79 +1782,71 @@ msgstr ""
"Inserte un disquete en la unidad\n"
"Se perderĂĄn todos los datos del disquete"
-#: ../../diskdrake/interactive.pm_.c:357
+#: ../../diskdrake/interactive.pm_.c:361
msgid "Trying to rescue partition table"
msgstr "Tratando de rescatar la tabla de particiones"
-#: ../../diskdrake/interactive.pm_.c:363
+#: ../../diskdrake/interactive.pm_.c:367
msgid "Detailed information"
msgstr "InformaciĂłn detallada"
-#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:652
+#: ../../diskdrake/interactive.pm_.c:382 ../../diskdrake/interactive.pm_.c:662
msgid "Resize"
msgstr "Redimensionar"
-#: ../../diskdrake/interactive.pm_.c:379 ../../diskdrake/interactive.pm_.c:705
+#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/interactive.pm_.c:715
msgid "Move"
msgstr "Desplazar"
-#: ../../diskdrake/interactive.pm_.c:380
+#: ../../diskdrake/interactive.pm_.c:384
msgid "Format"
msgstr "Formatear"
-#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/smbnfs_gtk.pm_.c:82
-msgid "Mount"
-msgstr "Montar"
-
-#: ../../diskdrake/interactive.pm_.c:382
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Add to RAID"
msgstr "Añadir al RAID"
-#: ../../diskdrake/interactive.pm_.c:383
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Add to LVM"
msgstr "Añadir al LVM"
-#: ../../diskdrake/interactive.pm_.c:384 ../../diskdrake/smbnfs_gtk.pm_.c:81
-msgid "Unmount"
-msgstr "Desmontar"
-
-#: ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/interactive.pm_.c:390
msgid "Remove from RAID"
msgstr "Quitar del RAID"
-#: ../../diskdrake/interactive.pm_.c:387
+#: ../../diskdrake/interactive.pm_.c:391
msgid "Remove from LVM"
msgstr "Quitar del LVM"
-#: ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/interactive.pm_.c:392
msgid "Modify RAID"
msgstr "Modificar el RAID"
-#: ../../diskdrake/interactive.pm_.c:389
+#: ../../diskdrake/interactive.pm_.c:393
msgid "Use for loopback"
msgstr "Usar para loopback"
-#: ../../diskdrake/interactive.pm_.c:428
+#: ../../diskdrake/interactive.pm_.c:433
msgid "Create a new partition"
msgstr "Crear una particiĂłn nueva"
-#: ../../diskdrake/interactive.pm_.c:431
+#: ../../diskdrake/interactive.pm_.c:436
msgid "Start sector: "
msgstr "Sector de comienzo: "
-#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:805
+#: ../../diskdrake/interactive.pm_.c:438 ../../diskdrake/interactive.pm_.c:815
msgid "Size in MB: "
msgstr "Tamaño en MB: "
-#: ../../diskdrake/interactive.pm_.c:434 ../../diskdrake/interactive.pm_.c:806
+#: ../../diskdrake/interactive.pm_.c:439 ../../diskdrake/interactive.pm_.c:816
msgid "Filesystem type: "
msgstr "Tipo de sistema de. archivos: "
-#: ../../diskdrake/interactive.pm_.c:439
+#: ../../diskdrake/interactive.pm_.c:444
msgid "Preference: "
msgstr "Preferencia: "
-#: ../../diskdrake/interactive.pm_.c:464
+#: ../../diskdrake/interactive.pm_.c:469
msgid ""
"You can't create a new partition\n"
"(since you reached the maximal number of primary partitions).\n"
@@ -1839,33 +1856,33 @@ msgstr ""
"(debido a que alcanzĂł la cantidad mĂĄxima de particiones primarias).\n"
"Primero debe quitar una particiĂłn primaria y crear una particiĂłn extendida."
-#: ../../diskdrake/interactive.pm_.c:494
+#: ../../diskdrake/interactive.pm_.c:499
msgid "Remove the loopback file?"
msgstr "ÂżBorrar el archivo de loopback?"
-#: ../../diskdrake/interactive.pm_.c:519
+#: ../../diskdrake/interactive.pm_.c:529
msgid "Change partition type"
msgstr "Cambiar el tipo de particiĂłn"
-#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:530 ../../diskdrake/removable.pm_.c:48
msgid "Which filesystem do you want?"
msgstr "¿Qué sistema de archivos desea?"
-#: ../../diskdrake/interactive.pm_.c:526
+#: ../../diskdrake/interactive.pm_.c:536
msgid "Switching from ext2 to ext3"
msgstr "Cambiando de ext2 a ext3"
-#: ../../diskdrake/interactive.pm_.c:556
+#: ../../diskdrake/interactive.pm_.c:566
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "ÂżDonde desea montar el archivo de loopback %s?"
-#: ../../diskdrake/interactive.pm_.c:557
+#: ../../diskdrake/interactive.pm_.c:567
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "ÂżDĂłnde desea montar el dispositivo %s?"
-#: ../../diskdrake/interactive.pm_.c:563
+#: ../../diskdrake/interactive.pm_.c:573
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1874,138 +1891,138 @@ msgstr ""
"se usa para un montaje en loopback.\n"
"Quite el montaje de loopback primero"
-#: ../../diskdrake/interactive.pm_.c:584
+#: ../../diskdrake/interactive.pm_.c:594
#, c-format
msgid "Where do you want to mount %s?"
msgstr "ÂżDĂłnde desea montar a %s?"
-#: ../../diskdrake/interactive.pm_.c:608
+#: ../../diskdrake/interactive.pm_.c:618
msgid "Computing FAT filesystem bounds"
msgstr "Calculando los lĂ­mites del sistema de archivos FAT"
-#: ../../diskdrake/interactive.pm_.c:608 ../../diskdrake/interactive.pm_.c:667
-#: ../../install_interactive.pm_.c:131
+#: ../../diskdrake/interactive.pm_.c:618 ../../diskdrake/interactive.pm_.c:677
+#: ../../install_interactive.pm_.c:133
msgid "Resizing"
msgstr "Redimensionando"
-#: ../../diskdrake/interactive.pm_.c:640
+#: ../../diskdrake/interactive.pm_.c:650
msgid "This partition is not resizeable"
msgstr "Esta particiĂłn no es redimensionable"
-#: ../../diskdrake/interactive.pm_.c:645
+#: ../../diskdrake/interactive.pm_.c:655
msgid "All data on this partition should be backed-up"
msgstr ""
"DeberĂ­a hacer una copia de seguridad de todos los datos de esta particiĂłn"
-#: ../../diskdrake/interactive.pm_.c:647
+#: ../../diskdrake/interactive.pm_.c:657
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr "Se perderån todos los datos de la partición %s tras cambiar su tamaño"
-#: ../../diskdrake/interactive.pm_.c:652
+#: ../../diskdrake/interactive.pm_.c:662
msgid "Choose the new size"
msgstr "Eligiendo el tamaño nuevo"
-#: ../../diskdrake/interactive.pm_.c:653
+#: ../../diskdrake/interactive.pm_.c:663
msgid "New size in MB: "
msgstr "Tamaño nuevo en MB: "
-#: ../../diskdrake/interactive.pm_.c:706
+#: ../../diskdrake/interactive.pm_.c:716
msgid "Which disk do you want to move it to?"
msgstr "¿A qué disco desea desplazarla?"
-#: ../../diskdrake/interactive.pm_.c:707
+#: ../../diskdrake/interactive.pm_.c:717
msgid "Sector"
msgstr "Sector"
-#: ../../diskdrake/interactive.pm_.c:708
+#: ../../diskdrake/interactive.pm_.c:718
msgid "Which sector do you want to move it to?"
msgstr "¿A qué sector desea desplazarla?"
-#: ../../diskdrake/interactive.pm_.c:711
+#: ../../diskdrake/interactive.pm_.c:721
msgid "Moving"
msgstr "Desplazando"
-#: ../../diskdrake/interactive.pm_.c:711
+#: ../../diskdrake/interactive.pm_.c:721
msgid "Moving partition..."
msgstr "Desplazando una particiĂłn..."
-#: ../../diskdrake/interactive.pm_.c:728
+#: ../../diskdrake/interactive.pm_.c:738
msgid "Choose an existing RAID to add to"
msgstr "Elegir un RAID existente al que añadir"
-#: ../../diskdrake/interactive.pm_.c:729 ../../diskdrake/interactive.pm_.c:746
+#: ../../diskdrake/interactive.pm_.c:739 ../../diskdrake/interactive.pm_.c:756
msgid "new"
msgstr "nuevo"
-#: ../../diskdrake/interactive.pm_.c:744
+#: ../../diskdrake/interactive.pm_.c:754
msgid "Choose an existing LVM to add to"
msgstr "Elegir un LVM existente al que añadir"
-#: ../../diskdrake/interactive.pm_.c:749
+#: ../../diskdrake/interactive.pm_.c:759
msgid "LVM name?"
msgstr "Âżnombre de LVM?"
-#: ../../diskdrake/interactive.pm_.c:790
+#: ../../diskdrake/interactive.pm_.c:800
msgid "This partition can't be used for loopback"
msgstr "Esta particiĂłn no puede usarse para el loopback"
-#: ../../diskdrake/interactive.pm_.c:803
+#: ../../diskdrake/interactive.pm_.c:813
msgid "Loopback"
msgstr "Loopback"
-#: ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:814
msgid "Loopback file name: "
msgstr "Nombre del archivo de loopback: "
-#: ../../diskdrake/interactive.pm_.c:809
+#: ../../diskdrake/interactive.pm_.c:819
msgid "Give a file name"
msgstr "Indique el nombre de un archivo"
-#: ../../diskdrake/interactive.pm_.c:812
+#: ../../diskdrake/interactive.pm_.c:822
msgid "File already used by another loopback, choose another one"
msgstr ""
"El archivo ya lo utiliza otro dispositivo loopback.\n"
"Elija otro archivo, por favor"
-#: ../../diskdrake/interactive.pm_.c:813
+#: ../../diskdrake/interactive.pm_.c:823
msgid "File already exists. Use it?"
msgstr "El archivo ya existe. ÂżDesea usarlo?"
-#: ../../diskdrake/interactive.pm_.c:836
+#: ../../diskdrake/interactive.pm_.c:846
msgid "Mount options"
msgstr "Opciones de montaje"
-#: ../../diskdrake/interactive.pm_.c:843
+#: ../../diskdrake/interactive.pm_.c:853
msgid "Various"
msgstr "Varios"
-#: ../../diskdrake/interactive.pm_.c:907 ../../standalone/drakfloppy_.c:103
+#: ../../diskdrake/interactive.pm_.c:917 ../../standalone/drakfloppy_.c:103
msgid "device"
msgstr "dispositivo"
-#: ../../diskdrake/interactive.pm_.c:908
+#: ../../diskdrake/interactive.pm_.c:918
msgid "level"
msgstr "nivel"
-#: ../../diskdrake/interactive.pm_.c:909
+#: ../../diskdrake/interactive.pm_.c:919
msgid "chunk size"
msgstr "tamaño de los bloques"
-#: ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:934
msgid "Be careful: this operation is dangerous."
msgstr "Cuidado: esta operaciĂłn es peligrosa."
-#: ../../diskdrake/interactive.pm_.c:939
+#: ../../diskdrake/interactive.pm_.c:949
msgid "What type of partitioning?"
msgstr "¿Qué tipo de particionamiento?"
-#: ../../diskdrake/interactive.pm_.c:955
+#: ../../diskdrake/interactive.pm_.c:965
#, c-format
msgid "The package %s is needed. Install it?"
msgstr "Se necesita el paquete %s. ÂżDesea instalarlo?"
-#: ../../diskdrake/interactive.pm_.c:969
+#: ../../diskdrake/interactive.pm_.c:979
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -2017,7 +2034,7 @@ msgstr ""
"que\n"
"no funcione), o bien no utiliza LILO (y entonces no necesita /boot)"
-#: ../../diskdrake/interactive.pm_.c:973
+#: ../../diskdrake/interactive.pm_.c:983
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -2029,7 +2046,7 @@ msgstr ""
"Si piensa usar el cargador de arranque LILO, tenga en cuenta que tiene\n"
"que añadir una partición /boot"
-#: ../../diskdrake/interactive.pm_.c:979
+#: ../../diskdrake/interactive.pm_.c:989
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
@@ -2039,44 +2056,44 @@ msgstr ""
"NingĂșn cargador de arranque es capaz de manejarlo sin una particiĂłn /boot.\n"
"Así que tenga en cuenta que tiene que añadir una partición /boot."
-#: ../../diskdrake/interactive.pm_.c:999
+#: ../../diskdrake/interactive.pm_.c:1009
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "ÂĄSe escribirĂĄ al disco la tabla de particiones de la unidad %s!"
-#: ../../diskdrake/interactive.pm_.c:1003
+#: ../../diskdrake/interactive.pm_.c:1013
msgid "You'll need to reboot before the modification can take place"
msgstr "Necesita reiniciar el equipo para que la modificaciĂłn tenga efecto"
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1024
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr "Se perderån todos los datos de la partición %s después de formatearla"
-#: ../../diskdrake/interactive.pm_.c:1016
+#: ../../diskdrake/interactive.pm_.c:1026
msgid "Formatting"
msgstr "Formateando"
-#: ../../diskdrake/interactive.pm_.c:1017
+#: ../../diskdrake/interactive.pm_.c:1027
#, c-format
msgid "Formatting loopback file %s"
msgstr "Formateando el archivo de loopback %s"
-#: ../../diskdrake/interactive.pm_.c:1018
-#: ../../install_steps_interactive.pm_.c:476
+#: ../../diskdrake/interactive.pm_.c:1028
+#: ../../install_steps_interactive.pm_.c:459
#, c-format
msgid "Formatting partition %s"
msgstr "Formateando la particiĂłn %s"
-#: ../../diskdrake/interactive.pm_.c:1029
+#: ../../diskdrake/interactive.pm_.c:1039
msgid "Hide files"
msgstr "Ocultar archivos"
-#: ../../diskdrake/interactive.pm_.c:1029
+#: ../../diskdrake/interactive.pm_.c:1039
msgid "Move files to the new partition"
msgstr "Mover los archivos a la nueva particiĂłn"
-#: ../../diskdrake/interactive.pm_.c:1030
+#: ../../diskdrake/interactive.pm_.c:1040
#, c-format
msgid ""
"Directory %s already contains data\n"
@@ -2085,83 +2102,83 @@ msgstr ""
"El directorio %s ya tiene algunos datos\n"
"(%s)"
-#: ../../diskdrake/interactive.pm_.c:1041
+#: ../../diskdrake/interactive.pm_.c:1051
msgid "Moving files to the new partition"
msgstr "Moviendo los archivos a la nueva particiĂłn"
-#: ../../diskdrake/interactive.pm_.c:1045
+#: ../../diskdrake/interactive.pm_.c:1055
#, c-format
msgid "Copying %s"
msgstr "Copiando %s"
-#: ../../diskdrake/interactive.pm_.c:1049
+#: ../../diskdrake/interactive.pm_.c:1059
#, c-format
msgid "Removing %s"
msgstr "Borrando %s"
-#: ../../diskdrake/interactive.pm_.c:1059
+#: ../../diskdrake/interactive.pm_.c:1069
#, c-format
msgid "partition %s is now known as %s"
msgstr "la particiĂłn %s ahora se conoce como %s"
-#: ../../diskdrake/interactive.pm_.c:1080
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1090
+#: ../../diskdrake/interactive.pm_.c:1149
msgid "Device: "
msgstr "Dispositivo: "
-#: ../../diskdrake/interactive.pm_.c:1081
+#: ../../diskdrake/interactive.pm_.c:1091
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "Letra DOS: %s (simplemente una adivinanza)\n"
-#: ../../diskdrake/interactive.pm_.c:1085
-#: ../../diskdrake/interactive.pm_.c:1093
-#: ../../diskdrake/interactive.pm_.c:1157
+#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1103
+#: ../../diskdrake/interactive.pm_.c:1168
msgid "Type: "
msgstr "Tipo: "
-#: ../../diskdrake/interactive.pm_.c:1089
+#: ../../diskdrake/interactive.pm_.c:1099
msgid "Name: "
msgstr "Nombre: "
-#: ../../diskdrake/interactive.pm_.c:1097
+#: ../../diskdrake/interactive.pm_.c:1107
#, c-format
msgid "Start: sector %s\n"
msgstr "Comienzo: sector %s\n"
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1108
#, c-format
msgid "Size: %s"
msgstr "Tamaño: %s"
-#: ../../diskdrake/interactive.pm_.c:1100
+#: ../../diskdrake/interactive.pm_.c:1110
#, c-format
msgid ", %s sectors"
msgstr ", %s sectores"
-#: ../../diskdrake/interactive.pm_.c:1102
+#: ../../diskdrake/interactive.pm_.c:1112
#, c-format
msgid "Cylinder %d to %d\n"
msgstr "Cilindros %d a %d\n"
-#: ../../diskdrake/interactive.pm_.c:1103
+#: ../../diskdrake/interactive.pm_.c:1113
msgid "Formatted\n"
msgstr "Formateado\n"
-#: ../../diskdrake/interactive.pm_.c:1104
+#: ../../diskdrake/interactive.pm_.c:1114
msgid "Not formatted\n"
msgstr "No formateado\n"
-#: ../../diskdrake/interactive.pm_.c:1105
+#: ../../diskdrake/interactive.pm_.c:1115
msgid "Mounted\n"
msgstr "Montado\n"
-#: ../../diskdrake/interactive.pm_.c:1106
+#: ../../diskdrake/interactive.pm_.c:1116
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1108
+#: ../../diskdrake/interactive.pm_.c:1118
#, c-format
msgid ""
"Loopback file(s):\n"
@@ -2170,7 +2187,7 @@ msgstr ""
"Archivo(s) de loopback:\n"
" %s\n"
-#: ../../diskdrake/interactive.pm_.c:1109
+#: ../../diskdrake/interactive.pm_.c:1119
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -2178,27 +2195,27 @@ msgstr ""
"ParticiĂłn predeterminada de arranque\n"
" (para arranque de MS-DOS, no para lilo)\n"
-#: ../../diskdrake/interactive.pm_.c:1111
+#: ../../diskdrake/interactive.pm_.c:1121
#, c-format
msgid "Level %s\n"
msgstr "Nivel %s\n"
-#: ../../diskdrake/interactive.pm_.c:1112
+#: ../../diskdrake/interactive.pm_.c:1122
#, c-format
msgid "Chunk size %s\n"
msgstr "Tamaño de los bloques %s\n"
-#: ../../diskdrake/interactive.pm_.c:1113
+#: ../../diskdrake/interactive.pm_.c:1123
#, c-format
msgid "RAID-disks %s\n"
msgstr "Discos-RAID %s\n"
-#: ../../diskdrake/interactive.pm_.c:1115
+#: ../../diskdrake/interactive.pm_.c:1125
#, c-format
msgid "Loopback file name: %s"
msgstr "Nombre del archivo de loopback: %s"
-#: ../../diskdrake/interactive.pm_.c:1118
+#: ../../diskdrake/interactive.pm_.c:1128
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -2210,7 +2227,7 @@ msgstr ""
"una particiĂłn de Controlador, probablemente\n"
"deberĂ­a dejarla como estĂĄ.\n"
-#: ../../diskdrake/interactive.pm_.c:1121
+#: ../../diskdrake/interactive.pm_.c:1131
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2222,59 +2239,63 @@ msgstr ""
"es para el arranque\n"
"dual de su sistema.\n"
-#: ../../diskdrake/interactive.pm_.c:1140
+#: ../../diskdrake/interactive.pm_.c:1150
+msgid "Read-only"
+msgstr "SĂłlo lectura"
+
+#: ../../diskdrake/interactive.pm_.c:1151
#, c-format
msgid "Size: %s\n"
msgstr "Tamaño: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1141
+#: ../../diskdrake/interactive.pm_.c:1152
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "GeometrĂ­a: %s cilindros, %s cabezas, %s sectores\n"
-#: ../../diskdrake/interactive.pm_.c:1142
+#: ../../diskdrake/interactive.pm_.c:1153
msgid "Info: "
msgstr "Info: "
-#: ../../diskdrake/interactive.pm_.c:1143
+#: ../../diskdrake/interactive.pm_.c:1154
#, c-format
msgid "LVM-disks %s\n"
msgstr "Discos-LVM %s\n"
-#: ../../diskdrake/interactive.pm_.c:1144
+#: ../../diskdrake/interactive.pm_.c:1155
#, c-format
msgid "Partition table type: %s\n"
msgstr "Tipo de la tabla de particiones: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1145
+#: ../../diskdrake/interactive.pm_.c:1156
#, c-format
msgid "on channel %d id %d\n"
msgstr "en el canal %d id %d\n"
-#: ../../diskdrake/interactive.pm_.c:1175
+#: ../../diskdrake/interactive.pm_.c:1186
msgid "Filesystem encryption key"
msgstr "Clave de cifrado del sistema de archivos"
-#: ../../diskdrake/interactive.pm_.c:1176
+#: ../../diskdrake/interactive.pm_.c:1187
msgid "Choose your filesystem encryption key"
msgstr "Elija la clave de cifrado de su sistema de archivos"
-#: ../../diskdrake/interactive.pm_.c:1179
+#: ../../diskdrake/interactive.pm_.c:1190
#, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr ""
"Esta clave de cifrado es demasiado simple\n"
"(tiene que tener por lo menos una longitud de %d caracteres)"
-#: ../../diskdrake/interactive.pm_.c:1180
+#: ../../diskdrake/interactive.pm_.c:1191
msgid "The encryption keys do not match"
msgstr "Las claves de cifrado no coinciden"
-#: ../../diskdrake/interactive.pm_.c:1183
+#: ../../diskdrake/interactive.pm_.c:1194
msgid "Encryption key"
msgstr "Clave de cifrado"
-#: ../../diskdrake/interactive.pm_.c:1184
+#: ../../diskdrake/interactive.pm_.c:1195
msgid "Encryption key (again)"
msgstr "Clave de cifrado (otra vez)"
@@ -2312,7 +2333,7 @@ msgstr ""
"Por favor, ingrese su nombre de usuario, contraseña y nombre de dominio para "
"acceder a este host."
-#: ../../diskdrake/smbnfs_gtk.pm_.c:178
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3527
msgid "Username"
msgstr "Nombre de usuario"
@@ -2324,23 +2345,23 @@ msgstr "Dominio"
msgid "Search servers"
msgstr "Buscar servidores"
-#: ../../fs.pm_.c:552 ../../fs.pm_.c:562 ../../fs.pm_.c:566 ../../fs.pm_.c:570
-#: ../../fs.pm_.c:574 ../../fs.pm_.c:578
+#: ../../fs.pm_.c:544 ../../fs.pm_.c:554 ../../fs.pm_.c:558 ../../fs.pm_.c:562
+#: ../../fs.pm_.c:566 ../../fs.pm_.c:570
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s formateo de %s fallĂł"
-#: ../../fs.pm_.c:615
+#: ../../fs.pm_.c:607
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "No sé cómo formatear %s en el tipo %s"
-#: ../../fs.pm_.c:687 ../../fs.pm_.c:731
+#: ../../fs.pm_.c:681 ../../fs.pm_.c:724
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr "fallĂł el montaje de la particiĂłn %s en el directorio %s"
-#: ../../fs.pm_.c:746 ../../partition_table.pm_.c:602
+#: ../../fs.pm_.c:739 ../../partition_table.pm_.c:598
#, c-format
msgid "error unmounting %s: %s"
msgstr "error desmontando %s: %s"
@@ -2357,33 +2378,52 @@ msgstr "con /usr"
msgid "server"
msgstr "servidor"
-#: ../../fsedit.pm_.c:472
+#: ../../fsedit.pm_.c:240
+#, c-format
+msgid ""
+"I can't read the partition table of device %s, it's too corrupted for me :(\n"
+"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
+"The other solution is to not allow DrakX to modify the partition table.\n"
+"(the error is %s)\n"
+"\n"
+"Do you agree to loose all the partitions?\n"
+msgstr ""
+"No se puede leer la tabla de particiones de %s, estĂĄ demasiado corrupta :(\n"
+"Se puede seguir, borrando las particiones malas (ÂĄperderĂĄ TODOS LOS "
+"DATOS!).\n"
+"La otra soluciĂłn es no permitir que DrakX modifique la tabla de "
+"particiones.\n"
+"(el error es %s)\n"
+"\n"
+"ÂżEstĂĄ de acuerdo en perder todas las particiones?\n"
+
+#: ../../fsedit.pm_.c:501
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr "No se puede usar JFS para particiones menores de 32MB"
-#: ../../fsedit.pm_.c:473
+#: ../../fsedit.pm_.c:502
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr "No se puede usar ReiserFS para particiones menores de 32MB"
-#: ../../fsedit.pm_.c:492
+#: ../../fsedit.pm_.c:521
msgid "Mount points must begin with a leading /"
msgstr "Los puntos de montaje deben comenzar con una /"
-#: ../../fsedit.pm_.c:493
+#: ../../fsedit.pm_.c:522
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Ya existe una particiĂłn con el punto de montaje %s\n"
-#: ../../fsedit.pm_.c:497
+#: ../../fsedit.pm_.c:526
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr "No puede usar un Volumen LĂłgico LVM para el punto de montaje %s"
-#: ../../fsedit.pm_.c:499
+#: ../../fsedit.pm_.c:528
msgid "This directory should remain within the root filesystem"
msgstr "Este directorio deberĂ­a permanecer dentro del sistema de archivos raĂ­z"
-#: ../../fsedit.pm_.c:501
+#: ../../fsedit.pm_.c:530
msgid ""
"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
"point\n"
@@ -2391,106 +2431,149 @@ msgstr ""
"Necesita un sistema de archivos verdadero (ext2/ext3, reiserfs, xfs o jfs) "
"para este punto de montaje\n"
-#: ../../fsedit.pm_.c:503
+#: ../../fsedit.pm_.c:532
#, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr ""
"No puede usar un sistema de archivos cifrado para el punto de montaje %s"
-#: ../../fsedit.pm_.c:570
+#: ../../fsedit.pm_.c:599
msgid "Not enough free space for auto-allocating"
msgstr "No hay espacio libre suficiente para la asignaciĂłn automĂĄtica"
-#: ../../fsedit.pm_.c:572
+#: ../../fsedit.pm_.c:601
msgid "Nothing to do"
msgstr "Nada para hacer"
-#: ../../fsedit.pm_.c:665
+#: ../../fsedit.pm_.c:694
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Error al abrir %s para escribir: %s"
-#: ../../fsedit.pm_.c:750
+#: ../../harddrake/sound.pm_.c:155
+msgid "No alternative driver"
+msgstr "No hay controlador alternativo"
+
+#: ../../harddrake/sound.pm_.c:156
+#, c-format
+msgid "There's no known OSS/ALSA alternative driver for your sound card (%s)"
+msgstr ""
+"No hay contrlador alternativo OSS/ALSA conocido para su tarjeta de sonido (%"
+"s)"
+
+#: ../../harddrake/sound.pm_.c:158
+msgid "Sound configuration"
+msgstr "ConfiguraciĂłn de sonido"
+
+#: ../../harddrake/sound.pm_.c:159
+#, c-format
msgid ""
-"An error occurred - no valid devices were found on which to create new "
-"filesystems. Please check your hardware for the cause of this problem"
+"Here you can select an alternative driver (either OSS or ALSA) for your "
+"sound card (%s)"
msgstr ""
-"OcurriĂł un error - no se encontrĂł ningĂșn dispositivo vĂĄlido para crear los "
-"nuevos sistemas de archivos. Por favor, verifique su equipo para saber la "
-"razĂłn de este fallo"
+"AquĂ­ puede seleccionar un controlador alternativo (OSS o ALSA) para su "
+"tarjeta de sonido (%s)"
+
+#: ../../harddrake/sound.pm_.c:162
+msgid "Driver:"
+msgstr "Controlador:"
-#: ../../fsedit.pm_.c:773
-msgid "You don't have any partitions!"
-msgstr "ÂĄNo tiene ninguna particiĂłn!"
+#: ../../harddrake/sound.pm_.c:173
+msgid "No known driver"
+msgstr "No hay controlador conocido"
+
+#: ../../harddrake/sound.pm_.c:174
+#, c-format
+msgid "There's no known driver for your sound card (%s)"
+msgstr "No hay un controlador conocido para su tarjeta de sonido (%s)"
-#: ../../harddrake/ui.pm_.c:15
+#: ../../harddrake/sound.pm_.c:177
+msgid "Unkown driver"
+msgstr "Controlador desconocido"
+
+#: ../../harddrake/sound.pm_.c:178
+#, fuzzy, c-format
+msgid ""
+"The \"%s\" driver for your sound card is unlisted\n"
+"\n"
+"Please send the output of the \"lspcidrake -v\" command to\n"
+"<install at mandrakesoft dot com>\n"
+"with subject: unlisted sound driver \"%s\""
+msgstr ""
+"No estĂĄ listado el contrlador \"%s\" para su tarjeta de sonido\n"
+"\n"
+"Por favor, envĂ­e la salida del comando \"lspcidrake -v\" a\n"
+"Thierry Vignaud <tvignaud at mandrakesoft dot com>\n"
+"con el tema: unlisted sound driver"
+
+#: ../../harddrake/ui.pm_.c:16
msgid "Model"
msgstr "Modelo"
-#: ../../harddrake/ui.pm_.c:15
+#: ../../harddrake/ui.pm_.c:16
msgid "hard disk model"
msgstr "modelo de disco rĂ­gido"
-#: ../../harddrake/ui.pm_.c:16
+#: ../../harddrake/ui.pm_.c:17
msgid "Channel"
msgstr "Canal"
-#: ../../harddrake/ui.pm_.c:16
+#: ../../harddrake/ui.pm_.c:17
msgid "EIDE/SCSI channel"
msgstr "canal EIDE/SCSI"
-#: ../../harddrake/ui.pm_.c:18
+#: ../../harddrake/ui.pm_.c:19
msgid "Bus"
msgstr "Bus"
-#: ../../harddrake/ui.pm_.c:19
+#: ../../harddrake/ui.pm_.c:20
msgid ""
"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
msgstr ""
"esto es el bus fĂ­sico sobre el cual se conecta el dispositivo (ej.: PCI, "
"USB, ...)"
-#: ../../harddrake/ui.pm_.c:20
+#: ../../harddrake/ui.pm_.c:21
msgid "Module"
msgstr "MĂłdulo"
-#: ../../harddrake/ui.pm_.c:20
+#: ../../harddrake/ui.pm_.c:21
msgid "the module of the GNU/Linux kernel that handle that device"
msgstr "el mĂłdulo del nĂșcleo GNU/Linux que maneja ese dispositivo"
-#: ../../harddrake/ui.pm_.c:21
+#: ../../harddrake/ui.pm_.c:22
msgid "Media class"
msgstr "Clase de medio"
-#: ../../harddrake/ui.pm_.c:21
+#: ../../harddrake/ui.pm_.c:22
msgid "class of hardware device"
msgstr "clase de dispositivo de hardware"
-#: ../../harddrake/ui.pm_.c:22 ../../printerdrake.pm_.c:1404
+#: ../../harddrake/ui.pm_.c:23 ../../printerdrake.pm_.c:1517
msgid "Description"
msgstr "DescripciĂłn"
-#: ../../harddrake/ui.pm_.c:22
+#: ../../harddrake/ui.pm_.c:23
msgid "this field describe the device"
msgstr "este campo describe al dispositivo"
-#: ../../harddrake/ui.pm_.c:24
+#: ../../harddrake/ui.pm_.c:25
msgid "Bus identification"
msgstr "IdentificaciĂłn del bus"
-#: ../../harddrake/ui.pm_.c:25
+#: ../../harddrake/ui.pm_.c:26
msgid ""
-"- PCI and USB devices : this list the vendor, device, subvendor and "
-"subdevice PCI/USB ids"
+"- PCI and USB devices: this list the vendor, device, subvendor and subdevice "
+"PCI/USB ids"
msgstr ""
"- Dispositivos PCI y USB : esto lista el fabricante, dispositivo, "
"subfabricante e id de subdispositivo PCI/USB"
-#: ../../harddrake/ui.pm_.c:27
+#: ../../harddrake/ui.pm_.c:28
msgid "Location on the bus"
msgstr "UbicaciĂłn en el bus"
-#: ../../harddrake/ui.pm_.c:28
+#: ../../harddrake/ui.pm_.c:29
msgid ""
"- pci devices: this gives the PCI slot, device and function of this card\n"
"- eide devices: the device is either a slave or a master device\n"
@@ -2500,49 +2583,61 @@ msgstr ""
"- dispositivos EIDE: el dispositivo es o bien uno maestro o uno esclavo\n"
"- dispositivos SCSI: el bus SCSI y los id de dispositivo SCSI"
-#: ../../harddrake/ui.pm_.c:31
+#: ../../harddrake/ui.pm_.c:32
msgid "Old device file"
msgstr "Archivo de dispositivo antiguo"
-#: ../../harddrake/ui.pm_.c:32
+#: ../../harddrake/ui.pm_.c:33
msgid "old static device name used in dev package"
msgstr "nombre antiguo de dispositivo estĂĄtico utilizado en el paquete dev"
-#: ../../harddrake/ui.pm_.c:33
+#: ../../harddrake/ui.pm_.c:34
msgid "New devfs device"
msgstr "Dispositivo devfs nuevo"
-#: ../../harddrake/ui.pm_.c:34
+#: ../../harddrake/ui.pm_.c:35
msgid "new dinamic device name generated by incore kernel devfs"
msgstr ""
"dispositivo dinĂĄmico nuevo generado por el devfs incorporado del nĂșcleo"
-#: ../../harddrake/ui.pm_.c:35
+#: ../../harddrake/ui.pm_.c:36
msgid "Number of buttons"
msgstr "Cantidad de botones"
-#: ../../harddrake/ui.pm_.c:36
+#: ../../harddrake/ui.pm_.c:37
msgid "the vendor name of the device"
msgstr "el nombre del fabricante del dispositivo"
-#: ../../harddrake/ui.pm_.c:60
+#: ../../harddrake/ui.pm_.c:38
+#, fuzzy
+msgid "Alternative drivers"
+msgstr "No hay controlador alternativo"
+
+#: ../../harddrake/ui.pm_.c:39
+#, fuzzy
+msgid "the list of alternative drivers for this sound card"
+msgstr ""
+"No hay contrlador alternativo OSS/ALSA conocido para su tarjeta de sonido (%"
+"s)"
+
+#: ../../harddrake/ui.pm_.c:63
msgid "/_Quit"
msgstr "/_Salir"
-#: ../../harddrake/ui.pm_.c:61 ../../harddrake/ui.pm_.c:62
-#: ../../harddrake/ui.pm_.c:68 ../../standalone/logdrake_.c:110
+#: ../../harddrake/ui.pm_.c:64 ../../harddrake/ui.pm_.c:65
+#: ../../harddrake/ui.pm_.c:71 ../../standalone/logdrake_.c:110
msgid "/_Help"
msgstr "/A_yuda"
-#: ../../harddrake/ui.pm_.c:62
+#: ../../harddrake/ui.pm_.c:65
msgid "/_Help..."
msgstr "/A_yuda..."
-#: ../../harddrake/ui.pm_.c:63
+#: ../../harddrake/ui.pm_.c:66
msgid "Harddrake help"
msgstr "Ayuda de Harddrake"
-#: ../../harddrake/ui.pm_.c:64
+#: ../../harddrake/ui.pm_.c:67
msgid ""
"Description of the fields:\n"
"\n"
@@ -2550,15 +2645,15 @@ msgstr ""
"DescripciĂłn de los campos:\n"
"\n"
-#: ../../harddrake/ui.pm_.c:68
+#: ../../harddrake/ui.pm_.c:71
msgid "/_About..."
msgstr "/_Acerca..."
-#: ../../harddrake/ui.pm_.c:69
+#: ../../harddrake/ui.pm_.c:72
msgid "About Harddrake"
msgstr "Acerca de Harddrake"
-#: ../../harddrake/ui.pm_.c:70
+#: ../../harddrake/ui.pm_.c:73
msgid ""
"This is HardDrake, a Mandrake hardware configuration tool.\n"
"Version:"
@@ -2567,51 +2662,51 @@ msgstr ""
"Mandrake.\n"
"VersiĂłn:"
-#: ../../harddrake/ui.pm_.c:71
+#: ../../harddrake/ui.pm_.c:74
msgid "Author:"
msgstr "Autor:"
-#: ../../harddrake/ui.pm_.c:83
+#: ../../harddrake/ui.pm_.c:86
msgid "Harddrake2 version "
msgstr "Harddrake2 versiĂłn"
-#: ../../harddrake/ui.pm_.c:91
+#: ../../harddrake/ui.pm_.c:103
msgid "Detected hardware"
msgstr "Hardware detectado"
-#: ../../harddrake/ui.pm_.c:92
+#: ../../harddrake/ui.pm_.c:105
+msgid "Information"
+msgstr "InformaciĂłn"
+
+#: ../../harddrake/ui.pm_.c:108
msgid "Configure module"
msgstr "Configurar mĂłdulo"
-#: ../../harddrake/ui.pm_.c:92
-msgid "Informations"
-msgstr "InformaciĂłn"
-
-#: ../../harddrake/ui.pm_.c:92
+#: ../../harddrake/ui.pm_.c:109
msgid "Run config tool"
msgstr "Ejecutar herramienta de configuraciĂłn"
-#: ../../harddrake/ui.pm_.c:96
+#: ../../harddrake/ui.pm_.c:113
msgid "Detection in progress"
msgstr "DetecciĂłn en progreso"
-#: ../../harddrake/ui.pm_.c:96 ../../interactive.pm_.c:388
+#: ../../harddrake/ui.pm_.c:113 ../../interactive.pm_.c:391
msgid "Please wait"
msgstr "Espere, por favor"
-#: ../../harddrake/ui.pm_.c:139
+#: ../../harddrake/ui.pm_.c:156
msgid "primary"
msgstr "primario"
-#: ../../harddrake/ui.pm_.c:139
+#: ../../harddrake/ui.pm_.c:156
msgid "secondary"
msgstr "secundario"
-#: ../../harddrake/ui.pm_.c:176
+#: ../../harddrake/ui.pm_.c:197
msgid "You can configure each parameter of the module here."
msgstr "AquĂ­ puede configurar cada parĂĄmetro del mĂłdulo."
-#: ../../harddrake/ui.pm_.c:192
+#: ../../harddrake/ui.pm_.c:213
#, c-format
msgid "Running \"%s\" ..."
msgstr "Ejecutando \"%s\" ..."
@@ -2646,15 +2741,15 @@ msgstr ""
"su tarjeta de TV si lo necesita."
#: ../../harddrake/v4l.pm_.c:213
-msgid "Card model :"
+msgid "Card model:"
msgstr "Modelo de la tarjeta :"
#: ../../harddrake/v4l.pm_.c:214
-msgid "Tuner type :"
+msgid "Tuner type:"
msgstr "Tipo de sintonizador :"
#: ../../harddrake/v4l.pm_.c:215
-msgid "Number of capture buffers :"
+msgid "Number of capture buffers:"
msgstr "Cantidad de bĂșferes de captura :"
#: ../../harddrake/v4l.pm_.c:215
@@ -2662,11 +2757,11 @@ msgid "number of capture buffers for mmap'ed capture"
msgstr "Cantidad de bĂșferes de captura para la captura con mmap"
#: ../../harddrake/v4l.pm_.c:217
-msgid "PLL setting :"
+msgid "PLL setting:"
msgstr "ConfiguraciĂłn del PLL :"
#: ../../harddrake/v4l.pm_.c:218
-msgid "Radio support :"
+msgid "Radio support:"
msgstr "Soporte para radio :"
#: ../../harddrake/v4l.pm_.c:218
@@ -2674,28 +2769,28 @@ msgid "enable radio support"
msgstr "habilitar el soporte para radio"
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/es/drakx-help.xml
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
#: ../../help.pm_.c:13
msgid ""
"GNU/Linux is a multiuser system, and this means that each user can have his\n"
"own preferences, his own files and so on. You can read the ``User Guide''\n"
"to learn more. But unlike \"root\", which is the administrator, the users\n"
-"you will add here will not be entitled to change anything except their own\n"
-"files and their own configuration. You will have to create at least one\n"
-"regular user for yourself. That account is where you should log in for\n"
-"routine use. Although it is very practical to log in as \"root\" everyday,\n"
-"it may also be very dangerous! The slightest mistake could mean that your\n"
-"system would not work any more. If you make a serious mistake as a regular\n"
-"user, you may only lose some information, but not the entire system.\n"
+"you add here will not be entitled to change anything except their own files\n"
+"and their own configuration. You will have to create at least one regular\n"
+"user for yourself. That account is where you should log in for routine use.\n"
+"Although it is very practical to log in as \"root\" everyday, it may also\n"
+"be very dangerous! The slightest mistake could mean that your system would\n"
+"not work any more. If you make a serious mistake as a regular user, you may\n"
+"only lose some information, but not the entire system.\n"
"\n"
"First, you have to enter your real name. This is not mandatory, of course -\n"
"as you can actually enter whatever you want. DrakX will then take the first\n"
"word you have entered in the box and will bring it over to the \"User\n"
"name\". This is the name this particular user will use to log onto the\n"
"system. You can change it. You then have to enter a password here. A\n"
-"non-privileged (regular) user's password is not as crucial as \"root\"' one\n"
-"from a security point of view, but that is no reason to neglect it: after\n"
-"all, your files are at risk.\n"
+"non-privileged (regular) user's password is not as crucial as the \"root\"'\n"
+"one from a security point of view, but that is no reason to neglect it:\n"
+"after all, your files are at risk.\n"
"\n"
"If you click on \"Accept user\", you can then add as many as you want. Add\n"
"a user for each one of your friends: your father or your sister, for\n"
@@ -2711,7 +2806,7 @@ msgstr ""
"aquĂ­ no podrĂĄn cambiar nada excepto su configuraciĂłn y sus archivos\n"
"propios. TendrĂĄ que crear al menos un usuario no privilegiado para Usted\n"
"mismo. Esa cuenta es donde deberĂ­a conectarse para el uso diario. Aunque es\n"
-"muy prĂĄctico ingresar como \"root\" diariamente, ÂĄtambien puede ser muy\n"
+"muy pråctico ingresar como \"root\" diariamente, ¥también puede ser muy\n"
"peligroso! El error mĂĄs leve podrĂ­a significar que su sistema deje de\n"
"funcionar. Si comete un error serio como usuario no privilegiado, sĂłlo\n"
"puede llegar a perder algo de informaciĂłn, pero no todo el sistema.\n"
@@ -2723,7 +2818,7 @@ msgstr ""
"ingresar al sistema. Lo puede cambiar. Luego tendrĂĄ que ingresar una\n"
"contraseña aquí. La contraseña de un usuario no privilegiado (regular) no\n"
"es tan crucial como la de \"root\" desde el punto de vista de la seguridad,\n"
-"pero esto no es razĂłn alguna para obviarla - despues de todo, son sus\n"
+"pero esto no es razón alguna para obviarla: después de todo, son sus\n"
"archivos los que estĂĄn en riesgo.\n"
"\n"
"Si hace clic sobre \"Aceptar usuario\", entonces puede agregar tantos como\n"
@@ -2735,7 +2830,7 @@ msgstr ""
"predeterminado para ese usuario (bash por defecto)."
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/es/drakx-help.xml
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
#: ../../help.pm_.c:41
msgid ""
"Listed above are the existing Linux partitions detected on your hard drive.\n"
@@ -2773,7 +2868,7 @@ msgstr ""
"mismas son buenas para las instalaciones mĂĄs comunes. Si hace cambios, al\n"
"menos debe definir una particiĂłn raĂ­z (\"/\"). No elija una particiĂłn muy\n"
"pequeña o no podrå instalar software suficiente. Si desea almacenar sus\n"
-"datos en una particiĂłn separada, tambien puede necesitar crear una\n"
+"datos en una partición separada, también puede necesitar crear una\n"
"particiĂłn para \"/home\" (sĂłlo es posible si tiene mĂĄs de una particiĂłn\n"
"Linux disponible).\n"
"\n"
@@ -2804,19 +2899,19 @@ msgstr ""
"significa \"segunda SCSI ID menor\", etc."
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/es/drakx-help.xml
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
#: ../../help.pm_.c:72
msgid ""
"The Mandrake Linux installation is spread out over several CD-ROMs. DrakX\n"
"knows if a selected package is located on another CD-ROM and will eject the\n"
"current CD and ask you to insert a different one as required."
msgstr ""
-"La instalaciĂłn Mandrake Linux se divide en varios CD-ROMs. DrakX sabe si un\n"
-"paquete seleccionado se encuentra en otro CD y expulsarĂĄ el CD corriente y\n"
-"le pedirĂĄ que inserte uno diferente cuando sea necesario."
+"La instalaciĂłn de Mandrake Linux se divide en varios CD-ROMs. DrakX sabe si\n"
+"un paquete seleccionado se encuentra en otro CD y expulsarĂĄ el CD corriente\n"
+"y le pedirĂĄ que inserte uno diferente cuando sea necesario."
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/es/drakx-help.xml
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
#: ../../help.pm_.c:77
msgid ""
"It is now time to specify which programs you wish to install on your\n"
@@ -2846,7 +2941,7 @@ msgid ""
"to have a graphical workstation!\n"
"\n"
"Moving the mouse cursor over a group name will display a short explanatory\n"
-"text about that group. If you deselect all groups when performing a regular\n"
+"text about that group. If you unselect all groups when performing a regular\n"
"installation (by opposition to an upgrade), a dialog will pop up proposing\n"
"different options for a minimal installation:\n"
"\n"
@@ -2877,7 +2972,7 @@ msgstr ""
"pedirĂĄ que especifique los CDs que tiene (sĂłlo en modo Experto). Verifique\n"
"las etiquetas de los CDs y marque las casillas que corresponden a los que\n"
"tiene disponibles para la instalaciĂłn. Haga clic sobre \"Aceptar\" cuando\n"
-"este listo para continuar.\n"
+"esté listo para continuar.\n"
"\n"
"Los paquetes se ordenan en grupos que corresponden a un uso particular de\n"
"su mĂĄquina. Los grupos en sĂ­ mismos estĂĄn clasificados en cuatro secciones:\n"
@@ -2921,13 +3016,13 @@ msgstr ""
"para reparar o actualizar un sistema existente."
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/es/drakx-help.xml
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
#: ../../help.pm_.c:128
msgid ""
-"Finally, depending on whether or not you selected individual packages, you\n"
-"will be presented a tree containing all packages classified by groups and\n"
-"subgroups. While browsing the tree, you can select entire groups,\n"
-"subgroups, or individual packages.\n"
+"Finally, depending on whether or not you chose to be able to select\n"
+"individual packages, you will be presented a tree containing all packages\n"
+"classified by groups and subgroups. While browsing the tree, you can select\n"
+"entire groups, subgroups, or individual packages.\n"
"\n"
"Whenever you select a package on the tree, a description appears on the\n"
"right. When your selection is finished, click the \"Install\" button which\n"
@@ -2972,7 +3067,7 @@ msgstr ""
"se deben instalar, el proceso puede tardar un rato en completarse. En la\n"
"pantalla se muestra una estimaciĂłn del tiempo necesario para completar la\n"
"instalaciĂłn para ayudarlo a considerar si tiene tiempo suficiente par\n"
-"disfrutar una taza de cafe.\n"
+"disfrutar una taza de café.\n"
"\n"
"!! Si ha sido seleccionado un paquete de servidor ya sea intencionalmente o\n"
"porque era parte de un grupo completo, se le pedirĂĄ que confirme que\n"
@@ -2999,14 +3094,14 @@ msgstr ""
"informaciĂłn sobre como crear dicho disquete."
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/es/drakx-help.xml
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
#: ../../help.pm_.c:164
msgid ""
-"You are now proposed to set up your Internet/network connection. If you\n"
-"wish to connect your computer to the Internet or to a local network, click\n"
-"\"OK\". The autodetection of network devices and modem will be launched. If\n"
-"this detection fails, uncheck the \"Use auto detection\" box next time. You\n"
-"may also choose not to configure the network, or do it later; in that case,\n"
+"You are now able to set up your Internet/network connection. If you wish to\n"
+"connect your computer to the Internet or to a local network, click \"OK\".\n"
+"The autodetection of network devices and modem will be launched. If this\n"
+"detection fails, uncheck the \"Use auto detection\" box next time. You may\n"
+"also choose not to configure the network, or do it later; in that case,\n"
"simply click the \"Cancel\" button.\n"
"\n"
"Available connections are: traditional modem, ISDN modem, ADSL connection,\n"
@@ -3027,7 +3122,7 @@ msgstr ""
"conectar su computadora a la Internet o a una red de ĂĄrea local, haga clic\n"
"sobre \"Aceptar\". Se lanzarĂĄ la detecciĂłn automĂĄtica de dispositivos de\n"
"red y mĂłdems. Si esta detecciĂłn falla, quite la marca de la casilla \"Usar\n"
-"detecciĂłn automĂĄtica\" la prĂłxima vez. Tambien puede elegir no configurar\n"
+"detección automåtica\" la próxima vez. También puede elegir no configurar\n"
"la red, o hacerlo mĂĄs tarde; en ese caso simplemente haga clic sobre el\n"
"botĂłn \"Cancelar\".\n"
"\n"
@@ -3041,14 +3136,14 @@ msgstr ""
"\n"
"Puede consultar el capĂ­tulo de \"GuĂ­a del Usuario\" sobre las conexiones a\n"
"la Internet para detalles acerca de la configuraciĂłn, o simplemente esperar\n"
-"hasta que su sistema este instalado y usar el programa que se describe aquĂ­\n"
+"hasta que su sistema esté instalado y usar el programa que se describe aquí\n"
"para configurar su conexiĂłn.\n"
"\n"
"Si desea configurar la red mĂĄs tarde, luego de la instalaciĂłn, o si ha\n"
"finalizado de configurar su conexiĂłn de red, haga clic sobre \"Cancelar\"."
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/es/drakx-help.xml
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
#: ../../help.pm_.c:186
msgid ""
"You may now choose which services you wish to start at boot time.\n"
@@ -3085,12 +3180,12 @@ msgstr ""
"realmente necesita. !!"
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/es/drakx-help.xml
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
#: ../../help.pm_.c:203
msgid ""
"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
"local time according to the time zone you selected. It is however possible\n"
-"to deactivate this by deselecting \"Hardware clock set to GMT\" so that the\n"
+"to deactivate this by unselecting \"Hardware clock set to GMT\" so that the\n"
"hardware clock is the same as the system clock. This is useful when the\n"
"machine is hosting another operating system like Windows.\n"
"\n"
@@ -3117,7 +3212,7 @@ msgstr ""
"red local."
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/es/drakx-help.xml
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
#: ../../help.pm_.c:217
msgid ""
"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
@@ -3137,7 +3232,9 @@ msgid ""
"If you can see the message during the test, and answer \"Yes\", then DrakX\n"
"will proceed to the next step. If you cannot see the message, it simply\n"
"means that the configuration was wrong and the test will automatically end\n"
-"after 10 seconds, restoring the screen."
+"after 10 seconds, restoring the screen. Refer then to the Video\n"
+"configuration section of the user guide for more information on how to\n"
+"configure your display."
msgstr ""
"X (por X Window System) es el corazĂłn de la interfaz grĂĄfica de GNU/Linux\n"
"en el que se apoyan todos los entornos grĂĄficos (KDE, GNOME, AfterStep,\n"
@@ -3153,42 +3250,14 @@ msgstr ""
"asistente de configuraciĂłn de X. Para mĂĄs informaciĂłn sobre este asistente\n"
"vea la secciĂłn correspondiente del manual.\n"
"\n"
-"Si puede ver el mensaje y responde \"SĂ­\", entonces DrakX continuarĂĄ con el\n"
-"paso siguiente. Si no puede ver el mensaje, simplemente significa que la\n"
-"configuraciĂłn no era la correcta y la prueba terminarĂĄ automĂĄticamente\n"
-"luego de 10 segundos, restaurando la pantalla."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/es/drakx-help.xml
-#: ../../help.pm_.c:237
-msgid ""
-"The first time you try the X configuration, you may not be very satisfied\n"
-"with its display (screen is too small, shifted left or right...). Hence,\n"
-"even if X starts up correctly, DrakX then asks you if the configuration\n"
-"suits you. It will also propose to change it by displaying a list of valid\n"
-"modes it could find, asking you to select one.\n"
-"\n"
-"As a last resort, if you still cannot get X to work, choose \"Change\n"
-"graphics card\", select \"Unlisted card\", and when prompted on which\n"
-"server, choose \"FBDev\". This is a failsafe option which works with any\n"
-"modern graphics card. Then choose \"Test again\" to be sure."
-msgstr ""
-"La primera vez que intenta la configuraciĂłn de X Usted puede no estar muy\n"
-"satisfecho con el resultado (la pantalla es muy pequeña, estå corrida hacia\n"
-"la izquierda o hacia la derecha...). Es por esto que, incluso si X arranca\n"
-"correctamente, DrakX le preguntarĂĄ si la configuraciĂłn le conviene. Tambien\n"
-"propondrĂĄ cambiarla mostrando una lista de modos vĂĄlidos que pudo\n"
-"encontrar, y le pedirĂĄ que seleccione alguno.\n"
-"\n"
-"Como Ășltimo recurso, si todavĂ­a no puede hacer que X funcione, elija\n"
-"\"Cambiar la tarjeta grĂĄfica\", seleccione \"Tarjeta no listada\", y cuando\n"
-"se le pregunte acerca de que servidor desea elija \"FBDev\". Esta es una\n"
-"opciĂłn a prueba de fallos que funciona con cualquier tarjeta grĂĄfica\n"
-"moderna. Luego elija \"Probar nuevamente\" para estar seguro que funciona."
+"Si puede ver el mensaje durante la prueba, y responde \"SĂ­\", entonces\n"
+"DrakX continuarĂĄ con el paso siguiente. Si no puede ver el mensaje,\n"
+"simplemente significa que la configuraciĂłn no era la correcta y la prueba\n"
+"terminarĂĄ automĂĄticamente luego de 10 segundos, restaurando la pantalla.\n"
+"Consulte la secciĂłn de configuraciĂłn de vĂ­deo de la guĂ­a del usuario para\n"
+"mĂĄs informaciĂłn sobre como configurar su pantalla."
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/es/drakx-help.xml
-#: ../../help.pm_.c:249
+#: ../../help.pm_.c:239
msgid ""
"Finally, you will be asked whether you want to see the graphical interface\n"
"at boot. Note this question will be asked even if you chose not to test the\n"
@@ -3196,15 +3265,10 @@ msgid ""
"act as a server, or if you were not successful in getting the display\n"
"configured."
msgstr ""
-"Finalmente, se le preguntarĂĄ si desea ver la interfaz grĂĄfica en el\n"
-"arranque. Note que esta pregunta se le formula incluso si eligiĂł no probar\n"
-"la configuraciĂłn. Obviamente, querrĂĄ responder \"No\" si su mĂĄquina va a\n"
-"actuar como un servidor, o si no tuvo exito con la configuraciĂłn de la\n"
-"pantalla."
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/es/drakx-help.xml
-#: ../../help.pm_.c:256
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
+#: ../../help.pm_.c:246
msgid ""
"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
@@ -3224,10 +3288,10 @@ msgid ""
"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
"password, or any other reason.\n"
"\n"
-"When you click on this step, you will be asked to enter a disk inside the\n"
-"drive. The floppy disk you will insert must be empty or contain data which\n"
-"you do not need. You will not have to format it since DrakX will rewrite\n"
-"the whole disk."
+"If you say \"Yes\", you will be asked to enter a disk inside the drive. The\n"
+"floppy disk you will insert must be empty or contain data which you do not\n"
+"need. You will not have to format it since DrakX will rewrite the whole\n"
+"disk."
msgstr ""
"El CD-ROM de Mandrake Linux tiene un modo de rescate incorporado. Usted\n"
"puede acceder al mismo arrancando desde el CD-ROM, presionando la tecla\n"
@@ -3236,7 +3300,7 @@ msgstr ""
"recurrir a este paso al menos en dos situaciones:\n"
"\n"
" * cuando instala el cargador de arranque, DrakX sobreescribirĂĄ el sector\n"
-"de arranque (MBR) de su disco principal (a menos que este utilizando otro\n"
+"de arranque (MBR) de su disco principal (a menos que esté utilizando otro\n"
"administrador de arranque) de forma tal que pueda iniciar o bien Windows o\n"
"bien GNU/Linux (asumiendo que tiene Windows en su sistema). Si necesita\n"
"volver a instalar Windows, el proceso de instalaciĂłn de Microsoft\n"
@@ -3249,14 +3313,14 @@ msgstr ""
"sistema que colapsĂł debido a una falla de energĂ­a, un error de tecleo\n"
"infortunado, un error en una contraseña, o cualquier otro motivo.\n"
"\n"
-"Cuando haga clic sobre este paso se le pedirĂĄ que inserte un disquete\n"
-"dentro de la disquetera. El disquete que insertarĂĄ debe estar vacĂ­o o\n"
-"contener datos que no necesite. No tendrĂĄ que formatearlo ya que DrakX\n"
-"sobreescribirĂĄ el disquete por completo."
+"Si dice \"SĂ­\", se le pedirĂĄ que inserte un disquete dentro de la\n"
+"disquetera. El disquete que inserte debe estar vacĂ­o o contener datos que\n"
+"no necesite. No tendrĂĄ que formatearlo ya que DrakX sobreescribirĂĄ el\n"
+"disquete por completo."
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/es/drakx-help.xml
-#: ../../help.pm_.c:280
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
+#: ../../help.pm_.c:270
msgid ""
"At this point, you need to choose where you want to install the Mandrake\n"
"Linux operating system on your hard drive. If your hard drive is empty or\n"
@@ -3289,7 +3353,9 @@ msgid ""
"\n"
" * \"Use existing partition\": the wizard has detected one or more existing\n"
"Linux partitions on your hard drive. If you want to use them, choose this\n"
-"option;\n"
+"option. You will then be asked to choose the mount points associated to\n"
+"each of the partitions. The legacy mount points are selected by default,\n"
+"and you should generally keep them.\n"
"\n"
" * \"Use the free space on the Windows; partition\": if Microsoft Windows\n"
"is installed on your hard drive and takes all the space available on it,\n"
@@ -3322,7 +3388,9 @@ msgid ""
" * \"Expert mode\": choose this option if you want to manually partition\n"
"your hard drive. Be careful - it is a powerful but dangerous choice. You\n"
"can very easily lose all your data. Hence, do not choose this unless you\n"
-"know what you are doing."
+"know what you are doing. To know how do use the DiskDrake utility used\n"
+"here, refer to the section ``Managing Your Partitions'' of the ````User\n"
+"Guide''''"
msgstr ""
"Ahora necesita elegir el lugar de su disco rĂ­gido donde se instalarĂĄ su\n"
"sistema operativo Mandrake Linux. Si su disco rĂ­gido estĂĄ vacĂ­o o si un\n"
@@ -3357,7 +3425,9 @@ msgstr ""
"\n"
" * \"Usar particiĂłn existente\": el asistente ha detectado una o mĂĄs\n"
"particiones Linux existentes en su disco rĂ­gido. Si desea utilizarlas,\n"
-"elija esta opciĂłn.\n"
+"elija esta opciĂłn. Si lo hace se le pedirĂĄ que elija los puntos de montaje\n"
+"asociados a cada una de las particiones. Los puntos de montaje legados se\n"
+"seleccionan automĂĄticamente, y por lo general deberĂ­a mantenerlos.\n"
"\n"
" * \"Usar el espacio libre en la particiĂłn Windows\": si Microsoft Windows\n"
"estĂĄ instalado en su disco rĂ­gido y ocupa todo el espacio disponible en el\n"
@@ -3365,12 +3435,12 @@ msgstr ""
"hacerlo, puede borrar su particiĂłn y datos Microsoft Windows (vea las\n"
"soluciones \"Borrar el disco completo\" o \"Modo experto\") o cambie el\n"
"tamaño de su partición Windows. El cambio de tamaño se puede realizar sin\n"
-"la perdida de datos, siempre y cuando Usted ha desfragmentado con\n"
-"anterioridad la particiĂłn Windows. Tambien se recomienda hacer una copia de\n"
+"la pérdida de datos, siempre y cuando Usted ha desfragmentado con\n"
+"anterioridad la partición Windows. También se recomienda hacer una copia de\n"
"respaldo de sus datos.. Se recomienda esta soluciĂłn si desea utilizar tanto\n"
"Mandrake Linux como Microsoft Windows en la misma computadora.\n"
"\n"
-" Antes de elegir esta opciĂłn, por favor comprenda que despues de este\n"
+" Antes de elegir esta opción, por favor comprenda que después de este\n"
"procedimiento, el tamaño de su partición Microsoft Windows serå mås pequeño\n"
"que ahora. TendrĂĄ menos espacio bajo Microsoft Windows para almacenar sus\n"
"datos o instalar software nuevo.\n"
@@ -3378,7 +3448,7 @@ msgstr ""
" * \"Borrar el disco entero\": si desea borrar todos los datos y todas las\n"
"particiones presentes en su disco rĂ­gido y reemplazarlas con su nuevo\n"
"sistema Mandrake Linux, elija esta opciĂłn. Tenga cuidado con esta soluciĂłn\n"
-"ya que no podrĂĄ revertir su elecciĂłn despues de confirmarla.\n"
+"ya que no podrå revertir su elección después de confirmarla.\n"
"\n"
" !! Si elige esta opciĂłn, se perderĂĄn todos los datos en su disco. !!\n"
"\n"
@@ -3391,11 +3461,13 @@ msgstr ""
" * \"Modo experto\": elija esta opciĂłn si desea particionar manualmente su\n"
"disco rĂ­gido. Tenga cuidado - esta es una elecciĂłn potente pero peligrosa.\n"
"Puede perder todos sus datos con facilidad. Por lo tanto, no elija esta\n"
-"opciĂłn a menos que sepa lo que estĂĄ haciendo."
+"opciĂłn a menos que sepa lo que estĂĄ haciendo. Para saber como utilizar el\n"
+"utilitario DiskDrake que se utiliza aquĂ­, consulte la secciĂłn \"Administrar\n"
+"sus particiones\" de la \"\"GuĂ­a del Usuario\"\"."
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/es/drakx-help.xml
-#: ../../help.pm_.c:347
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
+#: ../../help.pm_.c:341
msgid ""
"There you are. Installation is now complete and your GNU/Linux system is\n"
"ready to use. Just click \"OK\" to reboot the system. You can start\n"
@@ -3427,7 +3499,7 @@ msgid ""
"(*) You need a FAT-formatted floppy (to create one under GNU/Linux, type\n"
"\"mformat a:\")"
msgstr ""
-"AquĂ­ tiene. Ahora la instalaciĂłn estĂĄ completa y su sistema GNU/Linux estĂĄ\n"
+"Ya estĂĄ. Ahora la instalaciĂłn estĂĄ completa y su sistema GNU/Linux estĂĄ\n"
"listo para ser utilizado. Simplemente haga clic sobre \"Aceptar\" para\n"
"volver a arrancar el sistema. Puede iniciar GNU/Linux o Windows, cualquiera\n"
"que prefiera (si estĂĄ usando el arranque dual) tan pronto como su mĂĄquina\n"
@@ -3439,9 +3511,9 @@ msgstr ""
" * \"Generar un disquete de instalaciĂłn automĂĄtica\": para crear un\n"
"disquete de instalaciĂłn que realizarĂĄ una instalaciĂłn completa sin la\n"
"asistencia de un operador, similar a la instalaciĂłn que ha configurado\n"
-"recien.\n"
+"recién.\n"
"\n"
-" Note que hay dos opciones diferentes disponibles despues de hacer clic\n"
+" Note que hay dos opciones diferentes disponibles después de hacer clic\n"
"sobre el botĂłn:\n"
"\n"
" * \"Reproducir\" . Esta es una instalaciĂłn parcialmente automatizada ya\n"
@@ -3451,7 +3523,7 @@ msgstr ""
"rĂ­gido se sobreescribe por completo, y se pierden todos los datos.\n"
"\n"
" Esta caracterĂ­stica es muy Ăștil cuando se instala una cantidad grande de\n"
-"mĂĄquinas similares. Vea la secciĂłn Auto install (en ingles) en nuestro\n"
+"måquinas similares. Vea la sección Auto install (en inglés) en nuestro\n"
"sitio web.\n"
"\n"
" * \"Guardar selecciĂłn de paquetes\"(*): guarda la selecciĂłn de paquetes\n"
@@ -3463,8 +3535,8 @@ msgstr ""
"teclee \"mformat a:\")"
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/es/drakx-help.xml
-#: ../../help.pm_.c:378
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
+#: ../../help.pm_.c:372
msgid ""
"Any partitions that have been newly defined must be formatted for use\n"
"(formatting means creating a filesystem).\n"
@@ -3496,7 +3568,7 @@ msgstr ""
"\n"
"Puede desear volver a formatear algunas particiones ya existentes para\n"
"borrar cualquier dato que pudieran contener. Si asĂ­ lo desea, por favor\n"
-"seleccione tambien dichas particiones.\n"
+"seleccione también dichas particiones.\n"
"\n"
"Por favor note que no es necesario volver a formatear todas las particiones\n"
"pre-existentes. Debe volver a formatear las particiones que contienen el\n"
@@ -3504,11 +3576,11 @@ msgstr ""
"volver a formatear particiones que contienen datos que desea preservar\n"
"(tĂ­picamente \"/home\").\n"
"\n"
-"Tenga sumo cuidado cuando selecciona las particiones. Despues de formatear,\n"
+"Tenga sumo cuidado cuando selecciona las particiones. Después de formatear,\n"
"se borrarĂĄn todos los datos en las particiones seleccionadas y no podrĂĄ\n"
"recuperarlos en absoluto.\n"
"\n"
-"Haga clic sobre \"Aceptar\" cuando este listo para formatear las\n"
+"Haga clic sobre \"Aceptar\" cuando esté listo para formatear las\n"
"particiones.\n"
"\n"
"Haga clic sobre \"Cancelar\" si desea elegir otra particiĂłn para la\n"
@@ -3518,8 +3590,8 @@ msgstr ""
"que se buscarĂĄn bloques defectuosos en el disco."
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/es/drakx-help.xml
-#: ../../help.pm_.c:404
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
+#: ../../help.pm_.c:398
msgid ""
"Your new Mandrake Linux operating system is currently being installed.\n"
"Depending on the number of packages you will be installing and the speed of\n"
@@ -3536,13 +3608,13 @@ msgstr ""
"Por favor, tenga paciencia."
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/es/drakx-help.xml
-#: ../../help.pm_.c:412
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
+#: ../../help.pm_.c:406
msgid ""
"At the time you are installing Mandrake Linux, it is likely that some\n"
"packages have been updated since the initial release. Some bugs may have\n"
"been fixed, and security issues solved. To allow you to benefit from these\n"
-"updates, you are now proposed to download them from the Internet. Choose\n"
+"updates, you are now able to download them from the Internet. Choose\n"
"\"Yes\" if you have a working Internet connection, or \"No\" if you prefer\n"
"to install updated packages later.\n"
"\n"
@@ -3551,13 +3623,13 @@ msgid ""
"appears: review the selection, and press \"Install\" to retrieve and\n"
"install the selected package(s), or \"Cancel\" to abort."
msgstr ""
-"Puede ser que cuando estĂĄ instalando Mandrake Linux algunos paquetes se\n"
-"hayan actualizado desde la publicaciĂłn inicial. Se pueden haber corregido\n"
-"algunos errores, y solucionado problemas de seguridad. Para permitir que\n"
-"Usted se beneficie de estas actualizaciones, ahora se le propone\n"
-"transferirlas desde la Internet. Elija \"SĂ­\" si tiene funcionando una\n"
-"conexiĂłn con la Internet, o \"No\" si prefiere instalar los paquetes\n"
-"actualizados mĂĄs tarde.\n"
+"Es probable que cuando instale Mandrake Linux algunos paquetes se hayan\n"
+"actualizado desde la publicaciĂłn inicial. Se pueden haber corregido algunos\n"
+"errores, y solucionado problemas de seguridad. Para permitir que Usted se\n"
+"beneficie de estas actualizaciones, ahora se le propone transferirlas desde\n"
+"la Internet. Elija \"SĂ­\" si tiene funcionando una conexiĂłn con la\n"
+"Internet, o \"No\" si prefiere instalar los paquetes actualizados mĂĄs\n"
+"tarde.\n"
"\n"
"Si elije \"SĂ­\" se muestra una lista de lugares desde los que se pueden\n"
"obtener las actualizaciones. Elija el mĂĄs cercano a Usted. Luego aparece un\n"
@@ -3566,8 +3638,8 @@ msgstr ""
"abortar."
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/es/drakx-help.xml
-#: ../../help.pm_.c:425
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
+#: ../../help.pm_.c:419
msgid ""
"Before continuing, you should read carefully the terms of the license. It\n"
"covers the whole Mandrake Linux distribution, and if you do not agree with\n"
@@ -3575,22 +3647,22 @@ msgid ""
"terminate the installation. To continue with the installation, click on the\n"
"\"Accept\" button."
msgstr ""
-"Antes de continuar, deberĂ­a leer cuidadosamente los terminos de la\n"
-"licencia. Los mismos cubren a toda la distribuciĂłn Mandrake Linux, y si\n"
-"Usted no estĂĄ de acuerdo con todos los terminos en la misma, haga clic\n"
-"sobre el botĂłn \"Rechazar\". Esto terminarĂĄ la instalaciĂłn inmediatamente.\n"
-"Para continuar con la instalaciĂłn, haga clic sobre el botĂłn \"Aceptar\"."
+"Antes de continuar, debería leer cuidadosamente los términos de la\n"
+"licencia. La misma cubre a toda la distribuciĂłn Mandrake Linux, y si Usted\n"
+"no estå de acuerdo con todos los términos en ella, haga clic sobre el botón\n"
+"\"Rechazar\". Esto terminarĂĄ la instalaciĂłn de inmediato. Para continuar\n"
+"con la instalaciĂłn, haga clic sobre el botĂłn \"Aceptar\"."
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/es/drakx-help.xml
-#: ../../help.pm_.c:432
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
+#: ../../help.pm_.c:426
msgid ""
"At this point, it is time to choose the security level desired for the\n"
"machine. As a rule of thumb, the more exposed the machine is, and the more\n"
"the data stored in it is crucial, the higher the security level should be.\n"
"However, a higher security level is generally obtained at the expense of\n"
-"easiness of use. Refer to the \"msec\" chapter of the ``Reference Manual''\n"
-"to get more information about the meaning of these levels.\n"
+"ease of use. Refer to the \"msec\" chapter of the ``Reference Manual'' to\n"
+"get more information about the meaning of these levels.\n"
"\n"
"If you do not know what to choose, keep the default option."
msgstr ""
@@ -3605,8 +3677,8 @@ msgstr ""
"Si no sabe que elegir, mantenga la opciĂłn predeterminada."
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/es/drakx-help.xml
-#: ../../help.pm_.c:442
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
+#: ../../help.pm_.c:436
msgid ""
"At this point, you need to choose which partition(s) will be used for the\n"
"installation of your Mandrake Linux system. If partitions have already been\n"
@@ -3623,26 +3695,26 @@ msgid ""
" * \"Clear all\": this option deletes all partitions on the selected hard\n"
"drive;\n"
"\n"
-" * \"Auto allocate\": this option enables to automatically create \"Ext2\"\n"
-"and swap partitions in free space of your hard drive;\n"
+" * \"Auto allocate\": this option enables to automatically create ext3 and\n"
+"swap partitions in free space of your hard drive;\n"
"\n"
-" * \"More\": gives access to additional features:\n"
+"\"More\": gives access to additional features:\n"
"\n"
-" * \"Save partition table\": saves the partition table to a floppy.\n"
-"Useful for later partition-table recovery if necessary. It is strongly\n"
-"recommended to perform this step;\n"
+" * \"Save partition table\": saves the partition table to a floppy. Useful\n"
+"for later partition-table recovery if necessary. It is strongly recommended\n"
+"to perform this step;\n"
"\n"
-" * \"Restore partition table\": allows to restore a previously saved\n"
+" * \"Restore partition table\": allows to restore a previously saved\n"
"partition table from floppy disk;\n"
"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you\n"
-"can try to recover it using this option. Please be careful and remember\n"
-"that it can fail;\n"
+" * \"Rescue partition table\": if your partition table is damaged, you can\n"
+"try to recover it using this option. Please be careful and remember that it\n"
+"can fail;\n"
"\n"
-" * \"Reload partition table\": discards all changes and loads your\n"
-"initial partition table;\n"
+" * \"Reload partition table\": discards all changes and loads your initial\n"
+"partition table;\n"
"\n"
-" * \"Removable media automounting\": unchecking this option will force\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
"users to manually mount and unmount removable medias such as floppies and\n"
"CD-ROMs.\n"
"\n"
@@ -3670,7 +3742,7 @@ msgid ""
" * Ctrl-m to set the mount point.\n"
"\n"
"To get information about the different filesystem types available, please\n"
-"read the ext2fs chapter from the ``Reference Manual''.\n"
+"read the ext2FS chapter from the ``Reference Manual''.\n"
"\n"
"If you are installing on a PPC machine, you will want to create a small HFS\n"
"``bootstrap'' partition of at least 1MB, which will be used by the yaboot\n"
@@ -3678,10 +3750,10 @@ msgid ""
"may find it a useful place to store a spare kernel and ramdisk images for\n"
"emergency boot situations."
msgstr ""
-"Ahora necesita elegir que particiones se utilizarĂĄn para la instalaciĂłn de\n"
+"Ahora necesita elegir qué particiones se utilizarån para la instalación de\n"
"su sistema Mandrake Linux. Si las particiones ya han sido definidas, ya sea\n"
"por una instalaciĂłn previa de GNU/Linux o con otra herramienta de\n"
-"particionado, puede utilizarlas. En caso contrario se deben definir\n"
+"particionado, puede utilizarlas. De lo contrario, se deben definir\n"
"particiones en el disco rĂ­gido.\n"
"\n"
"Para crear particiones, primero debe seleccionar un disco rĂ­gido. Puede\n"
@@ -3695,12 +3767,8 @@ msgstr ""
" * \"Borrar todo\": esta opciĂłn borra todas las particiones sobre el disco\n"
"seleccionado.\n"
"\n"
-" * \"AsignaciĂłn automĂĄtica\": esta opciĂłn le permite crear particiones\n"
-"\"Ext2\" y swap automĂĄticamente en el espacio libre de su disco rĂ­gido.\n"
-"\n"
-" * \"Rescatar tabla de particiones\": si su tabla de particiones estĂĄ\n"
-"dañada, puede intentar recuperarla usando esta opción. Por favor, tenga\n"
-"cuidado y recuerde que puede fallar.\n"
+" * \"AsignaciĂłn automĂĄtica\": esta opciĂłn le permite crear particiones ext3\n"
+"y swap automĂĄticamente en el espacio libre de su disco rĂ­gido.\n"
"\n"
" * \"MĂĄs\": le da acceso a caracterĂ­sticas adicionales:\n"
"\n"
@@ -3735,7 +3803,7 @@ msgstr ""
"guardarĂĄ sus cambios en el disco.\n"
"\n"
"Nota: todas las opciones son accesibles por medio del teclado. Navegue a\n"
-"traves de las particiones usando [Tab] y las flechas [Arriba/Abajo].\n"
+"través de las particiones usando [Tab] y las flechas [Arriba/Abajo].\n"
"\n"
"Cuando se selecciona una particiĂłn, puede utilizar:\n"
"\n"
@@ -3747,7 +3815,7 @@ msgstr ""
" * Ctrl-m para configurar el punto de montaje.\n"
"\n"
"Para obtener informaciĂłn sobre los distintos tipos de sistemas de archivos\n"
-"disponibles, por favor lea el capĂ­tulo acerca de ext2fs del \"Manual de\n"
+"disponibles, por favor lea el capĂ­tulo acerca de ext2FS del \"Manual de\n"
"Referencia\".\n"
"\n"
"Si estå instalando en una måquina PPC, querrå crear una pequeña partición\n"
@@ -3757,8 +3825,8 @@ msgstr ""
"alternativos para arrancar en situaciones de emergencia."
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/es/drakx-help.xml
-#: ../../help.pm_.c:513
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
+#: ../../help.pm_.c:507
msgid ""
"More than one Microsoft partition has been detected on your hard drive.\n"
"Please choose the one you want to resize in order to install your new\n"
@@ -3825,37 +3893,37 @@ msgstr ""
"primer disco o particiĂłn se denomina \"C:\")."
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/es/drakx-help.xml
-#: ../../help.pm_.c:544
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
+#: ../../help.pm_.c:538
msgid "Please be patient. This operation can take several minutes."
msgstr "Por favor, tenga paciencia. Esta operaciĂłn puede tomar varios minutos."
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/es/drakx-help.xml
-#: ../../help.pm_.c:547
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
+#: ../../help.pm_.c:541
msgid ""
"DrakX now needs to know if you want to perform a default (\"Recommended\")\n"
"installation or if you want to have greater control (\"Expert\"). You can\n"
"also choose to do a new install or an upgrade of an existing Mandrake Linux\n"
"system:\n"
"\n"
-" * \"Install\": completely wipes out the old system. In fact, depending on\n"
-"what currently holds your machine, you will be able to keep some old (Linux\n"
-"or other) partitions unchanged;\n"
+" * \"Install\": completely wipes out the old system, however, depending on\n"
+"what is currently installed on your machine, you may be able to keep some\n"
+"old partitions (Linux or otherwise) unchanged;\n"
"\n"
" * \"Upgrade\": this installation class allows to simply update the\n"
"packages currently installed on your Mandrake Linux system. It keeps the\n"
"current partitions of your hard drives as well as user configurations. All\n"
-"other configuration steps remain available with respect to plain\n"
+"other configuration steps remain available, similar to a normal\n"
"installation;\n"
"\n"
-" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
-"existing Mandrake Linux system while keeping all system configurations\n"
-"unchanged. Adding new packages to the current installation is also\n"
-"possible.\n"
+" * \"Upgrade Packages Only\": this new installation class allows you to\n"
+"upgrade an existing Mandrake Linux system while keeping all system\n"
+"configurations unchanged. Adding new packages to the current installation\n"
+"is also possible.\n"
"\n"
-"Upgrades should work fine for Mandrake Linux systems starting from \"8.1\"\n"
-"release.\n"
+"Upgrades should work fine on Mandrake Linux systems containing version\n"
+"\"8.1\" or later.\n"
"\n"
"Depending on your knowledge of GNU/Linux, select one of the following\n"
"choices:\n"
@@ -3864,79 +3932,95 @@ msgid ""
"operating system. The installation will be very easy and you will only be\n"
"asked a few questions;\n"
"\n"
-" * Expert: if you have a good knowledge of GNU/Linux, you can choose this\n"
-"installation class. The expert installation will allow you to perform a\n"
-"highly-customized installation. Answering some of the questions can be\n"
-"difficult if you do not have a good knowledge of GNU/Linux, so do not\n"
-"choose this unless you know what you are doing."
+" * Expert: if you have a good understanding of GNU/Linux, you may wish to\n"
+"perform a highly customized installation. Some of the decisions you will\n"
+"have to make may be difficult if you do not have good knowledge of\n"
+"GNU/Linux, so it is not recommended that those without a fair amount of\n"
+"experience select this installation class."
msgstr ""
"DrakX ahora necesita saber si desea realizar una instalaciĂłn por defecto\n"
-"(\"Recomendada\") o si desea tener un control mayor (\"Experto\"). Tambien\n"
+"(\"Recomendada\") o si desea tener un control mayor (\"Experto\"). También\n"
"puede elegir realizar una instalaciĂłn nueva o una actualizaciĂłn de un\n"
"sistema Mandrake Linux existente:\n"
"\n"
-" * \"Instalar\": el sistema anterior se borrarĂĄ por completo. De hecho,\n"
+" * \"Instalar\": el sistema anterior se borrarĂĄ por completo, sin embargo,\n"
"dependiendo de lo que su mĂĄquina contiene actualmente, podrĂĄ mantener\n"
"algunas particiones antiguas (Linux u otras) sin cambios;\n"
"\n"
" * \"ActualizaciĂłn\": esta clase de instalaciĂłn le permite simplemente\n"
"actualizar los paquetes que en este momento estĂĄn instalados en su sistema\n"
"Mandrake Linux. La misma mantiene las particiones corrientes de sus discos\n"
-"asĂ­ como tambien las configuraciones de usuarios. Todos los otros pasos de\n"
-"instalaciĂłn permanecen disponibles con respecto a la instalaciĂłn simple;\n"
+"así como también las configuraciones de usuarios. Todos los otros pasos de\n"
+"instalaciĂłn permanecen disponibles, de manera similar a lo que ocurre con\n"
+"una instalaciĂłn normal;\n"
"\n"
-" * \"SĂłlo actualizar paquetes\": esta clase completamente nueva le permite\n"
-"actualizar un sistema Mandrake Linux existente a la vez que mantiene todas\n"
-"las configuraciones del sistema sin cambios. Tambien es posible añadir\n"
+" * \"SĂłlo actualizar paquetes\": esta clase nueva de instalaciĂłn le permite\n"
+"actualizar un sistema Mandrake Linux existente a la vez que mantiene sin\n"
+"cambios todas las configuraciones del sistema. También es posible añadir\n"
"paquetes nuevos a la instalaciĂłn corriente.\n"
"\n"
"Las actualizaciones deberĂ­an funcionar sin problemas para los sistemas\n"
-"Mandrake Linux comenzando desde la versiĂłn \"8.1\".\n"
+"Mandrake Linux que contienen la versiĂłn \"8.1\" o una posterior.\n"
"\n"
-"Dependiendo de su conocimiento de GNU/Linux, por favor elija una de los\n"
-"opciones siguientes:\n"
+"Dependiendo de su conocimiento de GNU/Linux, elija una de las opciones\n"
+"siguientes:\n"
"\n"
" * Recomendada: elija esta si nunca ha instalado un sistema operativo\n"
"GNU/Linux. La instalaciĂłn serĂĄ muy fĂĄcil y sĂłlo se le formularĂĄn unas pocas\n"
"preguntas;\n"
"\n"
-" * Experto: si tiene un conocimiento bueno de GNU/Linux, puede elegir esta\n"
-"clase de instalaciĂłn. La instalaciĂłn experta le permitirĂĄ realizar una\n"
-"instalaciĂłn altamente personalizada. Contestar a algunas de las preguntas\n"
-"puede ser difĂ­cil si no tiene un buen conocimiento de GNU/Linux, entonces\n"
-"no elija esto a menos que sepa lo que estĂĄ haciendo."
+" * Experto: si tiene un conocimiento bueno de GNU/Linux, puede que desee\n"
+"realizar una instalaciĂłn altamente personalizada. Algunas de las decisiones\n"
+"que tendrĂĄ que realizar pueden resultar difĂ­ciles si no tiene un buen\n"
+"conocimiento de GNU/Linux, por lo tanto, no se recomienda que aquellos sin\n"
+"una cantidad importante de experiencia elijan esta clase de instalaciĂłn.\n"
+"\n"
+"Este manual documentarĂĄ la instalaciĂłn completa de tipo \"Experto\" Si\n"
+"elige la clase de instalaciĂłn \"Recomendada\", simplemente ignore los pasos\n"
+"que se presentan aquĂ­ que sĂłlo se aplican a la clase de instalaciĂłn\n"
+"\"Experto\"."
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/es/drakx-help.xml
-#: ../../help.pm_.c:584
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
+#: ../../help.pm_.c:578
msgid ""
"Normally, DrakX selects the right keyboard for you (depending on the\n"
-"language you have chosen) and you won't even see this step. However, you\n"
-"might not have a keyboard that corresponds exactly to your language: for\n"
-"example, if you are an English speaking Swiss person, you may still want\n"
-"your keyboard to be a Swiss keyboard. Or if you speak English but are\n"
-"located in Quebec, you may find yourself in the same situation. In both\n"
-"cases, you will have to go back to this installation step and select an\n"
-"appropriate keyboard from the list.\n"
+"language you have chosen). However, you might not have a keyboard that\n"
+"corresponds exactly to your language: for example, if you are an English\n"
+"speaking Swiss person, you may still want your keyboard to be a Swiss\n"
+"keyboard. Or if you speak English but are located in Quebec, you may find\n"
+"yourself in the same situation. In both cases, you will have to go back to\n"
+"this installation step and select an appropriate keyboard from the list.\n"
"\n"
"Click on the \"More\" button to be presented with the complete list of\n"
-"supported keyboards."
+"supported keyboards.\n"
+"\n"
+"If you choose a keyboard layout based on a non-latin alphabet, you will be\n"
+"asked on next dialog to choose the key binding that will switch the\n"
+"keyboard layout between the latin and non latin layouts."
msgstr ""
"Normalmente, DrakX selecciona el teclado adecuado para Usted (dependiendo\n"
"del idioma que eligiĂł) y Usted ni siquiera verĂĄ este paso. Sin embargo,\n"
"podrĂ­a no tener un teclado que se corresponde exactamente con su idioma:\n"
-"por ejemplo, si Usted es una persona hispano-parlante que estĂĄ en Argentina\n"
-"o Mejico, su teclado serĂĄ un teclado Latinoamericano, pero si estĂĄ en\n"
-"España serå uno Español. En ambos casos, Usted tendrå que volver a este\n"
-"paso de la instalaciĂłn y elegir un teclado apropiado de la lista.\n"
+"por ejemplo, si Usted es un argentino que habla inglés, todavía podría\n"
+"desear que su teclado sea un teclado Latinoamericano. O si habla castellano\n"
+"pero estĂĄ en Inglaterra puede estar en la misma situaciĂłn. En ambos casos,\n"
+"Usted tendrĂĄ que volver a este paso de la instalaciĂłn y elegir un teclado\n"
+"apropiado de la lista.\n"
"\n"
"Haga clic sobre el botĂłn \"MĂĄs\" para que se le presente la lista completa\n"
-"de los teclados soportados."
+"de los teclados soportados.\n"
+"\n"
+"Si eligiĂł una distribuciĂłn de teclado basada en un alfabeto no latino, en\n"
+"el prĂłximo diĂĄlogo se le pedirĂĄ que elija la combinaciĂłn de teclas que\n"
+"cambiarĂĄ la distribuciĂłn del teclado entre la latina y la no latina."
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/es/drakx-help.xml
-#: ../../help.pm_.c:597
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
+#: ../../help.pm_.c:594
msgid ""
+"The first step is to choose your preferred language.\n"
+"\n"
"Please choose your preferred language for installation and system usage.\n"
"\n"
"Clicking on the \"Advanced\" button will allow you to select other\n"
@@ -3949,6 +4033,9 @@ msgid ""
"Note that multiple languages may be installed. Once you have selected any\n"
"additional locales, click the \"OK\" button to continue."
msgstr ""
+"El primer paso es elegir el idioma de instalaciĂłn. En el ejemplo se elige\n"
+"\"Spanish (Argentina)\"(*).\n"
+"\n"
"Por favor, elija su idioma preferido para la instalaciĂłn y el uso del\n"
"sistema.\n"
"\n"
@@ -3958,15 +4045,17 @@ msgstr ""
"aplicaciones. Por ejemplo, si albergarĂĄ a gente de Francia en su mĂĄquina,\n"
"seleccione Español como idioma principal en la vista de årbol y en la\n"
"secciĂłn avanzada haga clic sobre la estrella gris que corresponde a\n"
-"\"Frances|Francia\".\n"
+"\"Francés|Francia\".\n"
"\n"
"Note que se pueden instalar mĂșltiples idiomas. Una vez que ha seleccionado\n"
"cualquier idioma adicional haga clic sobre el botĂłn \"Aceptar\" para\n"
-"continuar."
+"continuar.\n"
+"\n"
+"(*) Ya que de ahĂ­ viene el traductor [:-)]"
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/es/drakx-help.xml
-#: ../../help.pm_.c:610
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
+#: ../../help.pm_.c:609
msgid ""
"DrakX generally detects the number of buttons your mouse has. If not, it\n"
"assumes you have a two-button mouse and will set it up for third-button\n"
@@ -3979,7 +4068,14 @@ msgid ""
"If you choose a mouse other than the default, a test screen will be\n"
"displayed. Use the buttons and wheel to verify that the settings are\n"
"correct. If the mouse is not working well, press the space bar or [Return]\n"
-"to \"Cancel\" and choose again."
+"to \"Cancel\" and choose again.\n"
+"\n"
+"Wheel mouses are sometimes not automatically detected. You will need to\n"
+"manually select it in the list. Be sure to select the one corresponding to\n"
+"the correct port it is attached to. After you have pressed the \"OK\"\n"
+"button, a mouse image is displayed. You then need to move the wheel of your\n"
+"mouse to activate it correctly. Then test all buttons and movements are\n"
+"correct."
msgstr ""
"DrakX generalmente detecta la cantidad de botones que tiene su ratĂłn. Si\n"
"no, asume que Usted tiene un ratĂłn de dos botones y lo configurarĂĄ para que\n"
@@ -3992,11 +4088,18 @@ msgstr ""
"Si elije un ratĂłn distinto al predeterminado, se le presentarĂĄ una pantalla\n"
"de prueba. Use los botones y la rueda para verificar que la configuraciĂłn\n"
"es correcta. Si el ratĂłn no estĂĄ funcionando correctamente, presione la\n"
-"barra espaciadora o [Intro] para \"Cancelar\" y vuelva a elegir."
+"barra espaciadora o [Intro] para \"Cancelar\" y vuelva a elegir.\n"
+"\n"
+"Los ratones con rueda a veces no se detectan automĂĄticamente. NecesitarĂĄ\n"
+"seleccionarlo manualemente en la lista. Debe asegurarse de seleccionar el\n"
+"correspondiente en el puerto correcto al cual estĂĄ conectado. Luego que ha\n"
+"presionado el botĂłn \"Aceptar\", se muestra una imagen de un ratĂłn. Debe\n"
+"mover la rueda de su ratĂłn para activarlo correctamente. Luego, pruebe\n"
+"todos los botones y que el movimiento es correcto en todas direcciones."
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/es/drakx-help.xml
-#: ../../help.pm_.c:624
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
+#: ../../help.pm_.c:630
msgid ""
"Please select the correct port. For example, the \"COM1\" port under\n"
"Windows is named \"ttyS0\" under GNU/Linux."
@@ -4005,8 +4108,8 @@ msgstr ""
"bajo Windows se denomina \"ttyS0\" bajo GNU/Linux."
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/es/drakx-help.xml
-#: ../../help.pm_.c:628
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
+#: ../../help.pm_.c:634
msgid ""
"This is the most crucial decision point for the security of your GNU/Linux\n"
"system: you have to enter the \"root\" password. \"root\" is the system\n"
@@ -4036,9 +4139,9 @@ msgid ""
"In Expert mode, you will be asked if you will be connecting to an\n"
"authentication server, like NIS or LDAP.\n"
"\n"
-"If your network uses the LDAP (or NIS) protocol for authentication, select\n"
-"\"LDAP\" (or \"NIS\") as authentication. If you do not know, ask your\n"
-"network administrator.\n"
+"If your network uses either of the LDAP, NIS, or PDC Windows Domain\n"
+"authentication services, select the appropriate one as \"authentication\".\n"
+"If you do not know, ask your network administrator.\n"
"\n"
"If your computer is not connected to any administrated network, you will\n"
"want to choose \"Local files\" for authentication."
@@ -4058,7 +4161,7 @@ msgstr ""
"accediendo a las mismas sin el cuidado suficiente. Es por esto que es\n"
"importante que sea difĂ­cil convertirse en \"root\".\n"
"\n"
-"La contraseña debería ser una mezcla de caracteres alfanumericos y tener al\n"
+"La contraseña debería ser una mezcla de caracteres alfanuméricos y tener al\n"
"menos una longitud de 8 caracteres. Nunca escriba la contraseña de \"root\"\n"
"- eso hace que sea muy fĂĄcil comprometer a un sistema.\n"
"\n"
@@ -4074,16 +4177,16 @@ msgstr ""
"En modo experto, se le preguntarĂĄ si se conectarĂĄ a un servidor de\n"
"autenticaciĂłn, por ejemplo NIS o LDAP.\n"
"\n"
-"Si su red usa el protocolo LDAP (o NIS) para la autenticaciĂłn, seleccione\n"
-"\"LDAP\" (o \"NIS\") como autenticaciĂłn. Si no sabe, pregunte al\n"
-"administrador de su red.\n"
+"Si su red usa los protocolos LDAP, NIS, o PDC Dominio de Windows para la\n"
+"autenticaciĂłn, seleccione el botĂłn apropiado como \"autenticaciĂłn\". Si no\n"
+"sabe, pregunte al administrador de su red.\n"
"\n"
"Si su computadora no estĂĄ conectada a alguna red administrada, querrĂĄ\n"
"elegir \"Archivos locales\" para la autenticaciĂłn."
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/es/drakx-help.xml
-#: ../../help.pm_.c:664
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
+#: ../../help.pm_.c:670
msgid ""
"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
@@ -4122,16 +4225,7 @@ msgid ""
"options. !!\n"
"\n"
"Clicking the \"Advanced\" button in this dialog will offer many advanced\n"
-"options, which are reserved to the expert user.\n"
-"\n"
-"After you have configured the general bootloader parameters, the list of\n"
-"boot options which will be available at boot time will be displayed.\n"
-"\n"
-"If there is another operating system installed on your machine, it will\n"
-"automatically be added to the boot menu. Here, you can choose to fine-tune\n"
-"the existing options. Select an entry and click \"Modify\" to modify or\n"
-"remove it; \"Add\" creates a new entry; and \"Done\" goes on to the next\n"
-"installation step."
+"options, which are reserved for the expert user."
msgstr ""
"LILO y grub son cargadores de arranque para GNU/Linux. Normalmente, esta\n"
"etapa estĂĄ completamente automatizada. De hecho, DrakX analiza el sector de\n"
@@ -4144,7 +4238,7 @@ msgstr ""
" * si encuentra un sector de arranque de grub o LILO, lo reemplazarĂĄ con\n"
"uno nuevo;\n"
"\n"
-"En caso de duda, DrakX mostrarĂĄ un diĂĄlogo con varias opciones.\n"
+"En caso de duda, DrakX mostrarĂĄ un diĂĄlogo con varias opciones:\n"
"\n"
" * \"Cargador de arranque a usar\": tiene tres opciones:\n"
"\n"
@@ -4168,12 +4262,29 @@ msgstr ""
"\n"
"!! Tenga presente que si no elige instalar un cargador de arranque\n"
"(seleccionando \"Cancelar\"), ÂĄDebe asegurarse que tiene una forma de\n"
-"arrancar a su sistema Mandrake Linux! Tambien debe asegurarse que sabe lo\n"
+"arrancar a su sistema Mandrake Linux! También debe asegurarse que sabe lo\n"
"que hace antes de cambiar cualquier opciĂłn. !!\n"
"\n"
"Haciendo clic sobre el botĂłn \"Avanzadas\" en este diĂĄlogo se le ofrecerĂĄn\n"
-"muchas opciones avanzadas que estĂĄn reservadas para el usuario experto.\n"
+"muchas opciones avanzadas que estĂĄn reservadas para el usuario experto."
+
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
+#: ../../help.pm_.c:710
+msgid ""
+"After you have configured the general bootloader parameters, the list of\n"
+"boot options which will be available at boot time will be displayed.\n"
"\n"
+"If there is another operating system installed on your machine, it will\n"
+"automatically be added to the boot menu. Here, you can choose to fine-tune\n"
+"the existing options. Select an entry and click \"Modify\" to modify or\n"
+"remove it; \"Add\" creates a new entry; and \"Done\" goes on to the next\n"
+"installation step.\n"
+"\n"
+"You may also not want to give access to these other operating systems to\n"
+"anyone. In which case, you can delete the corresponding entries. But then,\n"
+"you will need a boot disk in order to boot those other operating systems!"
+msgstr ""
"Luego que haya configurado los parĂĄmetros generales del cargador de\n"
"arranque se mostrarĂĄ la lista de opciones de arranque que estarĂĄn\n"
"disponibles al momento de arrancar.\n"
@@ -4182,35 +4293,15 @@ msgstr ""
"automĂĄticamente al menĂș de arranque. AquĂ­ puede elegir ajustar las opciones\n"
"existentes. Seleccione una entrada y haga clic sobre \"Modificar\" para\n"
"cambiar los paråmetros de la misma o quitarla; \"Añadir\" crea una entrada\n"
-"nueva; y \"Hecho\" va al paso de instalaciĂłn siguiente."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/es/drakx-help.xml
-#: ../../help.pm_.c:713
-msgid ""
-"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
-"either GNU/Linux or any other operating system present on your computer.\n"
-"Normally, these other operating systems are correctly detected and\n"
-"installed. If this is not the case, you can add an entry by hand in this\n"
-"screen. Be careful to choose the correct parameters.\n"
+"nueva; y \"Hecho\" avanza al paso de instalaciĂłn siguiente.\n"
"\n"
-"You may also not want to give access to these other operating systems to\n"
-"anyone. In which case, you can delete the corresponding entries. But then,\n"
-"you will need a boot disk in order to boot those other operating systems!"
-msgstr ""
-"LILO (el LInux LOader) y grub son cargadores de arranque: permiten arrancar\n"
-"ya sea GNU/Linux como cualquier otro sistema operativo presente en su\n"
-"computadora. Normalmente, estos otros sistemas operativos se detectan e\n"
-"instalan correctamente. Si este no es el caso, puede añadir una entrada a\n"
-"mano en esta pantalla. Tenga cuidado de elegir los parĂĄmetros correctos.\n"
-"\n"
-"Tambien puede no desear dar acceso a estos otros sistemas operativos a\n"
-"cualquiera. En ese caso, puede borrar las entradas correspondientes. Pero\n"
-"entonces, ÂĄnecesitarĂĄ un disquete de arranque para poder arrancar esos\n"
+"También, puede ser que no desee dar acceso a los otros sistemas operativos\n"
+"a terceros. En este caso, puede borrar las entradas correspondientes. ÂĄPero\n"
+"entonces, Usted necesitarĂĄ un disquete de arranque para poder arrancar esos\n"
"otros sistemas operativos!"
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/es/drakx-help.xml
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
#: ../../help.pm_.c:724
msgid ""
"You must indicate where you wish to place the information required to boot\n"
@@ -4226,7 +4317,7 @@ msgstr ""
"del disco (MBR)\"."
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/es/drakx-help.xml
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
#: ../../help.pm_.c:731
msgid ""
"Here, we select a printing system for your computer. Other OSs may offer\n"
@@ -4264,12 +4355,12 @@ msgstr ""
"elecciĂłn si Usted tiene una conexiĂłn directa a su impresora y desea evitar\n"
"el pĂĄnico de los papeles trabados, y no tiene impresora en red alguna.\n"
"ManejarĂĄ sĂłlo casos de red muy simples y es algo lento para las redes.\n"
-"Elija \"pdq\" si esta es su luna de miel con GNU/Linux. Despues de la\n"
+"Elija \"pdq\" si esta es su luna de miel con GNU/Linux. Después de la\n"
"instalaciĂłn puede cambiar sus elecciones ejecutando PrinterDrake desde el\n"
"Centro de Control Mandrake y eligiendo el modo experto.\n"
"\n"
" * \"CUPS\" - \"Common Unix Printing System\" (Sistema de ImpresiĂłn ComĂșn\n"
-"de Unix) es excelente imprimiendo en su impresora local y tambien en la\n"
+"de Unix) es excelente imprimiendo en su impresora local y también en la\n"
"otra punta del planeta. Es simple y puede actuar como servidor o cliente\n"
"para el sistema de impresiĂłn antiguo \"lpd\", por lo que es compatible con\n"
"los sistemas anteriores. Puede hacer muchas cosas, pero la configuraciĂłn\n"
@@ -4287,21 +4378,21 @@ msgstr ""
"redes."
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/es/drakx-help.xml
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
#: ../../help.pm_.c:759
msgid ""
-"DrakX now detects any IDE device present in your computer. It will also\n"
-"scan for one or more PCI SCSI card(s) on your system. If a SCSI card is\n"
+"DrakX now detects any IDE devices present in your computer. It will also\n"
+"scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
"found, DrakX will automatically install the appropriate driver.\n"
"\n"
"Because hardware detection does not always detect a piece of hardware,\n"
"DrakX will ask you to confirm if a PCI SCSI card is present. Click \"Yes\"\n"
"if you know that there is a SCSI card installed in your machine. You will\n"
-"be presented a list of SCSI cards to choose from. Click \"No\" if you have\n"
-"no SCSI hardware. If you are unsure, you can check the list of hardware\n"
-"detected in your machine by selecting \"See hardware info\" and clicking\n"
-"\"OK\". Examine the list of hardware and then click on the \"OK\" button to\n"
-"return to the SCSI interface question.\n"
+"be presented with a list of SCSI cards to choose from. Click \"No\" if you\n"
+"have no SCSI hardware. If you are unsure, you can check the list of\n"
+"hardware detected in your machine by selecting \"See hardware info\" and\n"
+"clicking \"OK\". Examine the list of hardware and then click on the \"OK\"\n"
+"button to return to the SCSI interface question.\n"
"\n"
"If you have to manually specify your adapter, DrakX will ask if you want to\n"
"specify options for it. You should allow DrakX to probe the hardware for\n"
@@ -4317,7 +4408,7 @@ msgid ""
"Windows on your system)."
msgstr ""
"DrakX ahora detecta cualquier dispositivo IDE presente en su computadora.\n"
-"Tambien buscarĂĄ una o mĂĄs tarjetas SCSI PCI en su sistema. Si se encuentra\n"
+"También buscarå una o mås tarjetas SCSI PCI en su sistema. Si se encuentra\n"
"una tarjeta SCSI DrakX instalarĂĄ el controlador apropiado automĂĄticamente.\n"
"\n"
"Debido a que la detecciĂłn de hardware a veces no detectarĂĄ alguna pieza de\n"
@@ -4344,7 +4435,7 @@ msgstr ""
"(si utilizaba este hardware con Windows en su sistema)."
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/es/drakx-help.xml
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
#: ../../help.pm_.c:786
msgid ""
"You can add additional entries for yaboot, either for other operating\n"
@@ -4416,13 +4507,13 @@ msgstr ""
"botones 2do y 3ro del ratĂłn que por lo general no tienen los ratones\n"
"estĂĄndar de Apple. Algunos ejemplos son los siguientes:\n"
"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111\n"
+" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111\n"
"hda=autotune\n"
"\n"
-" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
+" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
"\n"
" * Initrd: esta opciĂłn se puede usar o bien para cargar los mĂłdulos\n"
-"iniciales, antes que este disponible el dispositivo de arranque, o bien\n"
+"iniciales, antes que esté disponible el dispositivo de arranque, o bien\n"
"cargar una imagen de ramdisk para una situaciĂłn de arranque de emergencia.\n"
"\n"
" * Tamaño de Initrd: generalmente el tamaño por defecto del ramdisk es 4096\n"
@@ -4439,11 +4530,11 @@ msgstr ""
"\n"
" * Predeterminada: selecciona a esta entrada como la opciĂłn Linux por\n"
"defecto, que se puede elegir simplemente presionando [Intro] en el prompt\n"
-"de Yaboot. Esta entrada tambien se marcarĂĄ con un \"*\", si presiona [Tab]\n"
+"de Yaboot. Esta entrada también se marcarå con un \"*\", si presiona [Tab]\n"
"para ver las selecciones del arranque."
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/es/drakx-help.xml
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
#: ../../help.pm_.c:833
msgid ""
"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
@@ -4497,7 +4588,7 @@ msgstr ""
"entre CD, arranque OF, MacOS o Linux.\n"
"\n"
" * Demora de arranque del nĂșcleo: esta demora es similar a la demora de\n"
-"arranque de LILO. Luego de seleccionar Linux, tendrĂĄ esta demora en decimas\n"
+"arranque de LILO. Luego de seleccionar Linux, tendrå esta demora en décimas\n"
"de segundo antes que se seleccione su descripciĂłn del nĂșcleo\n"
"predeterminada.\n"
"\n"
@@ -4507,11 +4598,11 @@ msgstr ""
" * ÂżHabilitar arranque OF?: marcando esta opciĂłn Usted puede elegir \"N\"\n"
"para Open Firmware en el primer prompt de arranque.\n"
"\n"
-" * SO predeterminado: puede seleccionar que sistema operativo arrancarĂĄ por\n"
+" * SO predeterminado: puede seleccionar qué sistema operativo arrancarå por\n"
"defecto cuando expira la demora de Open Firmware."
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/es/drakx-help.xml
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
#: ../../help.pm_.c:865
msgid ""
"Here are presented various parameters concerning your machine. Depending on\n"
@@ -4530,7 +4621,9 @@ msgid ""
"order to configure the clock according to the time zone you are in;\n"
"\n"
" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
-"configuration wizard;\n"
+"configuration wizard. Consult the corresponding chapter of the ``User\n"
+"Guide'' for more information on how to setup a new printer. The interface\n"
+"presented there is similar to the one used during installation;\n"
"\n"
" * \"Sound card\": if a sound card is detected on your system, it is\n"
"displayed here. No modification possible at installation time;\n"
@@ -4560,7 +4653,10 @@ msgstr ""
"horario en el que se encuentre.\n"
"\n"
" * \"Impresora\": al hacer clic sobre el botĂłn \"Sin impresora\" se abrirĂĄ\n"
-"el asistente de configuraciĂłn de la impresora.\n"
+"el asistente de configuraciĂłn de la impresora. Consulte el capĂ­tulo\n"
+"correspondiente de la \"GuĂ­a del Usuario\" para mĂĄs informaciĂłn sobre como\n"
+"configurar una impresora nueva. La interfaz presentada allĂ­ es similar a la\n"
+"utilizada durante la instalaciĂłn.\n"
"\n"
" * \"Tarjeta de sonido\": si se detecta una tarjeta de sonido en su\n"
"sistema, la misma se muestra aquĂ­. Durante la instalaciĂłn no es posible\n"
@@ -4575,8 +4671,8 @@ msgstr ""
"parĂĄmetros asociados a la misma."
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/es/drakx-help.xml
-#: ../../help.pm_.c:894
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
+#: ../../help.pm_.c:896
msgid ""
"Choose the hard drive you want to erase in order to install your new\n"
"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
@@ -4587,8 +4683,8 @@ msgstr ""
"misma y no se podrĂĄn recuperar!."
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/es/drakx-help.xml
-#: ../../help.pm_.c:899
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
+#: ../../help.pm_.c:901
msgid ""
"Click on \"OK\" if you want to delete all data and partitions present on\n"
"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
@@ -4623,7 +4719,7 @@ msgstr ""
msgid "You must also format %s"
msgstr "TĂș tambiĂ©n debes formatear %s"
-#: ../../install_any.pm_.c:418
+#: ../../install_any.pm_.c:423
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -4648,20 +4744,33 @@ msgstr ""
"\n"
"ÂżRealmente desea instalar estos servidores?\n"
-#: ../../install_any.pm_.c:453
+#: ../../install_any.pm_.c:441
+#, c-format
+msgid ""
+"The following packages will be removed to allow upgrading your system: %s\n"
+"\n"
+"\n"
+"Do you really want to remove these packages?\n"
+msgstr ""
+"Se quitarĂĄn los paquetes siguientes para permitir actualizar su sistema: %s\n"
+"\n"
+"\n"
+"ÂżRealmente desea quitar estos paquetes?\n"
+
+#: ../../install_any.pm_.c:471
msgid "Can't use broadcast with no NIS domain"
msgstr "No se puede usar difusiĂłn sin un dominio NIS"
-#: ../../install_any.pm_.c:841
+#: ../../install_any.pm_.c:862
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Inserte un disquete formateado con FAT en la disquetera %s"
-#: ../../install_any.pm_.c:845
+#: ../../install_any.pm_.c:866
msgid "This floppy is not FAT formatted"
msgstr "Este disquete no estĂĄ formateado con FAT"
-#: ../../install_any.pm_.c:857
+#: ../../install_any.pm_.c:878
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -4669,11 +4778,20 @@ msgstr ""
"Para utilizar esta selecciĂłn de paquetes salvada, arranque la instalaciĂłn "
"con \"linux defcfg=floppy\""
-#: ../../install_any.pm_.c:880 ../../partition_table.pm_.c:771
+#: ../../install_any.pm_.c:901 ../../partition_table.pm_.c:767
#, c-format
msgid "Error reading file %s"
msgstr "Error al leer el archivo %s"
+#: ../../install_any.pm_.c:1023
+msgid ""
+"An error occurred - no valid devices were found on which to create new "
+"filesystems. Please check your hardware for the cause of this problem"
+msgstr ""
+"OcurriĂł un error - no se encontrĂł ningĂșn dispositivo vĂĄlido para crear los "
+"nuevos sistemas de archivos. Por favor, verifique su equipo para saber la "
+"razĂłn de este fallo"
+
#: ../../install_interactive.pm_.c:23
#, c-format
msgid ""
@@ -4708,59 +4826,59 @@ msgstr ""
"\n"
"ÂżDesea continuar de todas formas?"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:168
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:169
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "Debe tener una particiĂłn FAT montada en /boot/efi"
-#: ../../install_interactive.pm_.c:91
+#: ../../install_interactive.pm_.c:92
msgid "Use free space"
msgstr "Usar el espacio libre"
-#: ../../install_interactive.pm_.c:93
+#: ../../install_interactive.pm_.c:94
msgid "Not enough free space to allocate new partitions"
msgstr "No hay espacio libre suficiente para asignar las particiones nuevas"
-#: ../../install_interactive.pm_.c:101
+#: ../../install_interactive.pm_.c:102
msgid "Use existing partitions"
msgstr "Usar la particiĂłn existente"
-#: ../../install_interactive.pm_.c:103
+#: ../../install_interactive.pm_.c:104
msgid "There is no existing partition to use"
msgstr "No hay ninguna particiĂłn existente para usar"
-#: ../../install_interactive.pm_.c:110
+#: ../../install_interactive.pm_.c:111
msgid "Use the Windows partition for loopback"
msgstr "Usar la particiĂłn de Windows para loopback"
-#: ../../install_interactive.pm_.c:113
+#: ../../install_interactive.pm_.c:114
msgid "Which partition do you want to use for Linux4Win?"
msgstr "¿Qué partición desea usar para Linux4Win?"
-#: ../../install_interactive.pm_.c:115
+#: ../../install_interactive.pm_.c:116
msgid "Choose the sizes"
msgstr "Elija los tamaños"
-#: ../../install_interactive.pm_.c:116
+#: ../../install_interactive.pm_.c:117
msgid "Root partition size in MB: "
msgstr "Tamaño de la partición raíz en MB: "
-#: ../../install_interactive.pm_.c:117
+#: ../../install_interactive.pm_.c:118
msgid "Swap partition size in MB: "
msgstr "Tamaño de la partición de intercambio en MB: "
-#: ../../install_interactive.pm_.c:126
+#: ../../install_interactive.pm_.c:128
msgid "Use the free space on the Windows partition"
msgstr "Usar el espacio libre de la particiĂłn Windows"
-#: ../../install_interactive.pm_.c:129
+#: ../../install_interactive.pm_.c:131
msgid "Which partition do you want to resize?"
msgstr "¿A qué partición desea cambiarle el tamaño?"
-#: ../../install_interactive.pm_.c:131
+#: ../../install_interactive.pm_.c:133
msgid "Resizing Windows partition"
msgstr "Calculando los lĂ­mites del sistema de archivos Windows"
-#: ../../install_interactive.pm_.c:134
+#: ../../install_interactive.pm_.c:136
#, c-format
msgid ""
"The FAT resizer is unable to handle your partition, \n"
@@ -4769,7 +4887,7 @@ msgstr ""
"El redimensionador de tamaño de la FAT no puede gestionar su partición, \n"
"ocurriĂł el error siguiente: %s"
-#: ../../install_interactive.pm_.c:137
+#: ../../install_interactive.pm_.c:139
msgid ""
"Your Windows partition is too fragmented. Please reboot your computer under "
"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
@@ -4778,7 +4896,7 @@ msgstr ""
"Su particiĂłn Windows estĂĄ muy fragmentada, por favor primero ejecute \"defrag"
"\""
-#: ../../install_interactive.pm_.c:138
+#: ../../install_interactive.pm_.c:140
msgid ""
"WARNING!\n"
"\n"
@@ -4800,21 +4918,21 @@ msgstr ""
" seguridad de sus datos.\n"
"Cuando esté seguro, pulse sobre Aceptar."
-#: ../../install_interactive.pm_.c:148
+#: ../../install_interactive.pm_.c:150
msgid "Which size do you want to keep for Windows on"
msgstr "¿Qué tamaño desea conservar para windows en la"
-#: ../../install_interactive.pm_.c:149
+#: ../../install_interactive.pm_.c:151
#, c-format
msgid "partition %s"
msgstr "particiĂłn %s"
-#: ../../install_interactive.pm_.c:156
+#: ../../install_interactive.pm_.c:158
#, c-format
msgid "FAT resizing failed: %s"
msgstr "FallĂł el redimensionado de la FAT: %s"
-#: ../../install_interactive.pm_.c:171
+#: ../../install_interactive.pm_.c:173
msgid ""
"There is no FAT partition to resize or to use as loopback (or not enough "
"space left)"
@@ -4822,32 +4940,32 @@ msgstr ""
"No hay particiones FAT para redimensionar o para usar como loopback (o no "
"queda espacio suficiente)"
-#: ../../install_interactive.pm_.c:177
+#: ../../install_interactive.pm_.c:179
msgid "Erase entire disk"
msgstr "Borrar el disco entero"
-#: ../../install_interactive.pm_.c:177
+#: ../../install_interactive.pm_.c:179
msgid "Remove Windows(TM)"
msgstr "Quitar Windows(TM)"
-#: ../../install_interactive.pm_.c:180
+#: ../../install_interactive.pm_.c:182
msgid "You have more than one hard drive, which one do you install linux on?"
msgstr "Tiene mĂĄs de un disco rĂ­gido, Âżsobre cuĂĄl desea instalar Linux?"
-#: ../../install_interactive.pm_.c:183
+#: ../../install_interactive.pm_.c:185
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr "Se perderĂĄn TODAS las particiones y sus datos en la unidad %s"
-#: ../../install_interactive.pm_.c:191
+#: ../../install_interactive.pm_.c:193
msgid "Custom disk partitioning"
msgstr "Particionamiento de disco personalizado"
-#: ../../install_interactive.pm_.c:195
+#: ../../install_interactive.pm_.c:197
msgid "Use fdisk"
msgstr "Usar fdisk"
-#: ../../install_interactive.pm_.c:198
+#: ../../install_interactive.pm_.c:200
#, c-format
msgid ""
"You can now partition %s.\n"
@@ -4856,29 +4974,29 @@ msgstr ""
"Ahora puede particionar %s.\n"
"Cuando haya terminado, no se olvide de guardar usando 'w'"
-#: ../../install_interactive.pm_.c:227
+#: ../../install_interactive.pm_.c:229
msgid "You don't have enough free space on your Windows partition"
msgstr "No queda espacio libre suficiente en la particiĂłn de Windows"
-#: ../../install_interactive.pm_.c:243
+#: ../../install_interactive.pm_.c:245
msgid "I can't find any room for installing"
msgstr "No se puede encontrar nada de espacio para instalar"
-#: ../../install_interactive.pm_.c:246
+#: ../../install_interactive.pm_.c:248
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr ""
"El asistente de particionamiento de DrakX encontrĂł las siguientes soluciones:"
-#: ../../install_interactive.pm_.c:250
+#: ../../install_interactive.pm_.c:252
#, c-format
msgid "Partitioning failed: %s"
msgstr "FallĂł el particionamiento: %s"
-#: ../../install_interactive.pm_.c:260
+#: ../../install_interactive.pm_.c:262
msgid "Bringing up the network"
msgstr "Levantando la red"
-#: ../../install_interactive.pm_.c:265
+#: ../../install_interactive.pm_.c:267
msgid "Bringing down the network"
msgstr "Bajando la red"
@@ -4890,12 +5008,12 @@ msgstr ""
"OcurriĂł un error y no se puede gestionar de forma adecuada.\n"
"ContinĂșe bajo su propio riesgo."
-#: ../../install_steps.pm_.c:210
+#: ../../install_steps.pm_.c:211
#, c-format
msgid "Duplicate mount point %s"
msgstr "Punto de montaje %s duplicado"
-#: ../../install_steps.pm_.c:379
+#: ../../install_steps.pm_.c:380
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -4907,12 +5025,12 @@ msgstr ""
"Compruebe el CD de instalaciĂłn en un sistema ya existente con el comando:\n"
" rpm -qpl Mandrake/RPMS/*.rpm\n"
-#: ../../install_steps.pm_.c:451
+#: ../../install_steps.pm_.c:452
#, c-format
msgid "Welcome to %s"
msgstr "Bienvenido a %s"
-#: ../../install_steps.pm_.c:530 ../../install_steps.pm_.c:770
+#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:772
msgid "No floppy drive available"
msgstr "Ninguna disquetera disponible"
@@ -4941,71 +5059,71 @@ msgstr "Tipo de instalaciĂłn"
msgid "Please choose one of the following classes of installation:"
msgstr "Por favor, elija uno de los siguentes tipos de instalaciĂłn:"
-#: ../../install_steps_gtk.pm_.c:243 ../../install_steps_interactive.pm_.c:694
+#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:678
msgid "Package Group Selection"
msgstr "SelecciĂłn de grupos de paquetes"
-#: ../../install_steps_gtk.pm_.c:276 ../../install_steps_interactive.pm_.c:709
+#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:693
msgid "Individual package selection"
msgstr "SelecciĂłn de paquetes individuales"
-#: ../../install_steps_gtk.pm_.c:299 ../../install_steps_interactive.pm_.c:633
+#: ../../install_steps_gtk.pm_.c:293 ../../install_steps_interactive.pm_.c:617
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Tamaño total: %d / %d MB"
-#: ../../install_steps_gtk.pm_.c:341
+#: ../../install_steps_gtk.pm_.c:335
msgid "Bad package"
msgstr "Paquete incorrecto"
-#: ../../install_steps_gtk.pm_.c:342
+#: ../../install_steps_gtk.pm_.c:336
#, c-format
msgid "Name: %s\n"
msgstr "Nombre: %s\n"
-#: ../../install_steps_gtk.pm_.c:343
+#: ../../install_steps_gtk.pm_.c:337
#, c-format
msgid "Version: %s\n"
msgstr "VersiĂłn: %s\n"
-#: ../../install_steps_gtk.pm_.c:344
+#: ../../install_steps_gtk.pm_.c:338
#, c-format
msgid "Size: %d KB\n"
msgstr "Tamaño: %d KB\n"
-#: ../../install_steps_gtk.pm_.c:345
+#: ../../install_steps_gtk.pm_.c:339
#, c-format
msgid "Importance: %s\n"
msgstr "Importancia: %s\n"
-#: ../../install_steps_gtk.pm_.c:367
+#: ../../install_steps_gtk.pm_.c:361
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr ""
"No puede seleccionar este paquete porque no hay espacio suficiente para "
"instalarlo"
-#: ../../install_steps_gtk.pm_.c:372
+#: ../../install_steps_gtk.pm_.c:366
msgid "The following packages are going to be installed"
msgstr "Se van a instalar los siguientes paquetes"
-#: ../../install_steps_gtk.pm_.c:373
+#: ../../install_steps_gtk.pm_.c:367
msgid "The following packages are going to be removed"
msgstr "Se van a quitar los siguientes paquetes"
-#: ../../install_steps_gtk.pm_.c:385
+#: ../../install_steps_gtk.pm_.c:379
msgid "You can't select/unselect this package"
msgstr "No puede seleccionar/deseleccionar este paquete"
-#: ../../install_steps_gtk.pm_.c:397
+#: ../../install_steps_gtk.pm_.c:391
msgid "This is a mandatory package, it can't be unselected"
msgstr "Este es un paquete obligatorio, no puede desmarcarlo"
-#: ../../install_steps_gtk.pm_.c:399
+#: ../../install_steps_gtk.pm_.c:393
msgid "You can't unselect this package. It is already installed"
msgstr "No puede desmarcar este paquete. Ya estĂĄ instalado"
-#: ../../install_steps_gtk.pm_.c:402
+#: ../../install_steps_gtk.pm_.c:396
msgid ""
"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
@@ -5013,74 +5131,74 @@ msgstr ""
"Se debe actualizar este paquete\n"
"ÂżEstĂĄ seguro que quiere desmarcarlo?"
-#: ../../install_steps_gtk.pm_.c:405
+#: ../../install_steps_gtk.pm_.c:399
msgid "You can't unselect this package. It must be upgraded"
msgstr "No puede desmarcar este paquete. Debe ser actualizado"
-#: ../../install_steps_gtk.pm_.c:410
+#: ../../install_steps_gtk.pm_.c:404
msgid "Show automatically selected packages"
msgstr "Mostrar los paquetes seleccionados automĂĄticamente"
-#: ../../install_steps_gtk.pm_.c:411 ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_gtk.pm_.c:405 ../../install_steps_interactive.pm_.c:255
#: ../../install_steps_interactive.pm_.c:259
-#: ../../standalone/drakbackup_.c:3600
+#: ../../standalone/drakbackup_.c:4257
msgid "Install"
msgstr "Instalar"
-#: ../../install_steps_gtk.pm_.c:414
+#: ../../install_steps_gtk.pm_.c:408
msgid "Load/Save on floppy"
msgstr "Cargar/Guardar en un disquete"
-#: ../../install_steps_gtk.pm_.c:415
+#: ../../install_steps_gtk.pm_.c:409
msgid "Updating package selection"
msgstr "Actualizando la selecciĂłn de paquetes"
-#: ../../install_steps_gtk.pm_.c:420
+#: ../../install_steps_gtk.pm_.c:414
msgid "Minimal install"
msgstr "InstalaciĂłn mĂ­nima"
-#: ../../install_steps_gtk.pm_.c:435 ../../install_steps_interactive.pm_.c:538
+#: ../../install_steps_gtk.pm_.c:429 ../../install_steps_interactive.pm_.c:522
msgid "Choose the packages you want to install"
msgstr "Elija los paquetes que desea instalar"
-#: ../../install_steps_gtk.pm_.c:451 ../../install_steps_interactive.pm_.c:778
+#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:762
msgid "Installing"
msgstr "Instalando"
-#: ../../install_steps_gtk.pm_.c:457
+#: ../../install_steps_gtk.pm_.c:451
msgid "Estimating"
msgstr "Estimando"
-#: ../../install_steps_gtk.pm_.c:464
+#: ../../install_steps_gtk.pm_.c:458
msgid "Time remaining "
msgstr "Tiempo restante "
-#: ../../install_steps_gtk.pm_.c:476
+#: ../../install_steps_gtk.pm_.c:470
msgid "Please wait, preparing installation..."
msgstr "Preparando la instalaciĂłn. Espere, por favor"
-#: ../../install_steps_gtk.pm_.c:560
+#: ../../install_steps_gtk.pm_.c:554
#, c-format
msgid "%d packages"
msgstr "%d paquetes"
-#: ../../install_steps_gtk.pm_.c:565
+#: ../../install_steps_gtk.pm_.c:559
#, c-format
msgid "Installing package %s"
msgstr "Instalando el paquete %s"
-#: ../../install_steps_gtk.pm_.c:602 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:802
+#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:786
#: ../../standalone/drakautoinst_.c:202
msgid "Accept"
msgstr "Aceptar"
-#: ../../install_steps_gtk.pm_.c:602 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:802
+#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:786
msgid "Refuse"
msgstr "Rechazar"
-#: ../../install_steps_gtk.pm_.c:603 ../../install_steps_interactive.pm_.c:803
+#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:787
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -5096,17 +5214,17 @@ msgstr ""
"Si no lo posee, pulse Cancelar para cancelar la instalaciĂłn desde este CD-"
"ROM."
-#: ../../install_steps_gtk.pm_.c:617 ../../install_steps_gtk.pm_.c:621
-#: ../../install_steps_interactive.pm_.c:815
-#: ../../install_steps_interactive.pm_.c:819
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_gtk.pm_.c:615
+#: ../../install_steps_interactive.pm_.c:799
+#: ../../install_steps_interactive.pm_.c:803
msgid "Go on anyway?"
msgstr "ÂżSeguir adelante?"
-#: ../../install_steps_gtk.pm_.c:617 ../../install_steps_interactive.pm_.c:815
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:799
msgid "There was an error ordering packages:"
msgstr "Hubo un error al ordenar los paquetes:"
-#: ../../install_steps_gtk.pm_.c:621 ../../install_steps_interactive.pm_.c:819
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:803
msgid "There was an error installing packages:"
msgstr "Hubo un error al instalar los paquetes:"
@@ -5428,7 +5546,7 @@ msgid "Are you sure you refuse the licence?"
msgstr "ÂżEstĂĄ seguro que desea rechazar la licencia?"
#: ../../install_steps_interactive.pm_.c:211
-#: ../../install_steps_interactive.pm_.c:1038
+#: ../../install_steps_interactive.pm_.c:1023
#: ../../standalone/keyboarddrake_.c:31
msgid "Keyboard"
msgstr "Teclado"
@@ -5476,11 +5594,11 @@ msgstr "SĂłlo actualizar los paquetes."
msgid "Please choose the type of your mouse."
msgstr "Por favor, seleccione el tipo de su ratĂłn."
-#: ../../install_steps_interactive.pm_.c:281 ../../standalone/mousedrake_.c:59
+#: ../../install_steps_interactive.pm_.c:281 ../../standalone/mousedrake_.c:60
msgid "Mouse Port"
msgstr "Puerto del ratĂłn"
-#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:61
msgid "Please choose on which serial port your mouse is connected to."
msgstr "Seleccione el puerto serie al que estĂĄ conectado el ratĂłn, por favor."
@@ -5512,89 +5630,62 @@ msgstr "Configurando dispositivos IDE"
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:336
+#: ../../install_steps_interactive.pm_.c:338
msgid "No partition available"
msgstr "no hay particiones disponibles"
-#: ../../install_steps_interactive.pm_.c:339
+#: ../../install_steps_interactive.pm_.c:341
msgid "Scanning partitions to find mount points"
msgstr "Rastreando las particiones para encontrar los puntos de montaje"
-#: ../../install_steps_interactive.pm_.c:347
+#: ../../install_steps_interactive.pm_.c:349
msgid "Choose the mount points"
msgstr "Seleccione los puntos de montaje"
-#: ../../install_steps_interactive.pm_.c:366
-#, c-format
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to not allow DrakX to modify the partition table.\n"
-"(the error is %s)\n"
-"\n"
-"Do you agree to loose all the partitions?\n"
-msgstr ""
-"No se puede leer su tabla de particiones, estĂĄ demasiado deteriorada :(\n"
-"Se intentarĂĄ seguir y vaciar las particiones malas (ÂĄse perderĂĄn TODOS LOS "
-"DATOS!).\n"
-"La otra soluciĂłn es no permitir que DrakX modifique la tabla de "
-"particiones.\n"
-"(el error es %s)\n"
-"\n"
-"ÂżEstĂĄ de acuerdo en perder todas las particiones?\n"
-
#: ../../install_steps_interactive.pm_.c:379
msgid ""
-"DiskDrake failed to read correctly the partition table.\n"
-"Continue at your own risk!"
-msgstr ""
-"DiskDrake no pudo leer correctamente la tabla de particiones.\n"
-"ÂĄContinĂșe bajo su propio riesgo!"
-
-#: ../../install_steps_interactive.pm_.c:396
-msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
msgstr ""
"ÂĄNo hay 1MB de espacio para bootstrap! La instalaciĂłn continuarĂĄ, pero para "
"arrancar su sistema, necesitarĂĄ crear la particiĂłn bootstrap en DiskDrake"
-#: ../../install_steps_interactive.pm_.c:405
+#: ../../install_steps_interactive.pm_.c:388
msgid "No root partition found to perform an upgrade"
msgstr "No se encontrĂł particiĂłn raĂ­z para efectuar la actualizaciĂłn"
-#: ../../install_steps_interactive.pm_.c:406
+#: ../../install_steps_interactive.pm_.c:389
msgid "Root Partition"
msgstr "ParticiĂłn raĂ­z"
-#: ../../install_steps_interactive.pm_.c:407
+#: ../../install_steps_interactive.pm_.c:390
msgid "What is the root partition (/) of your system?"
msgstr "ÂżCual es la particiĂłn raĂ­z (/) de su sistema?"
-#: ../../install_steps_interactive.pm_.c:421
+#: ../../install_steps_interactive.pm_.c:404
msgid "You need to reboot for the partition table modifications to take place"
msgstr ""
"Necesita reiniciar el equipo para que se efectĂșe la modificaciĂłn de la tabla "
"de particiones"
-#: ../../install_steps_interactive.pm_.c:445
+#: ../../install_steps_interactive.pm_.c:428
msgid "Choose the partitions you want to format"
msgstr "Elija las particiones que desea formatear"
-#: ../../install_steps_interactive.pm_.c:446
+#: ../../install_steps_interactive.pm_.c:429
msgid "Check bad blocks?"
msgstr "ÂżVerificar el disco en busca de bloques malos?"
-#: ../../install_steps_interactive.pm_.c:473
+#: ../../install_steps_interactive.pm_.c:456
msgid "Formatting partitions"
msgstr "Formateando las particiones"
-#: ../../install_steps_interactive.pm_.c:475
+#: ../../install_steps_interactive.pm_.c:458
#, c-format
msgid "Creating and formatting file %s"
msgstr "Creando y formateando el archivo %s"
-#: ../../install_steps_interactive.pm_.c:480
+#: ../../install_steps_interactive.pm_.c:463
#, c-format
msgid ""
"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
@@ -5603,30 +5694,30 @@ msgstr ""
"FallĂł la verificaciĂłn del sistema de archivos %s. ÂżDesea reparar los "
"errores? (cuidado, puede perder datos)"
-#: ../../install_steps_interactive.pm_.c:482
+#: ../../install_steps_interactive.pm_.c:465
msgid "Not enough swap space to fulfill installation, please add some"
msgstr ""
"Espacio de intercambio insuficiente para completar la instalación, añada un "
"poco mĂĄs"
-#: ../../install_steps_interactive.pm_.c:489
+#: ../../install_steps_interactive.pm_.c:472
msgid "Looking for available packages and rebuilding rpm database..."
msgstr ""
"Buscando los paquetes disponibles y reconstruyendo la base de datos de RPM..."
-#: ../../install_steps_interactive.pm_.c:490
+#: ../../install_steps_interactive.pm_.c:473
msgid "Looking for available packages..."
msgstr "Buscando los paquetes disponibles..."
-#: ../../install_steps_interactive.pm_.c:493
+#: ../../install_steps_interactive.pm_.c:476
msgid "Looking at packages already installed..."
msgstr "Buscando paquetes ya instalados..."
-#: ../../install_steps_interactive.pm_.c:497
+#: ../../install_steps_interactive.pm_.c:480
msgid "Finding packages to upgrade..."
msgstr "Encontrando los paquetes a actualizar..."
-#: ../../install_steps_interactive.pm_.c:515
+#: ../../install_steps_interactive.pm_.c:498
#, c-format
msgid ""
"Your system does not have enough space left for installation or upgrade (%d "
@@ -5634,7 +5725,7 @@ msgid ""
msgstr ""
"Su sistema no tiene espacio suficiente para instalar o actualizar (%d > %d)"
-#: ../../install_steps_interactive.pm_.c:550
+#: ../../install_steps_interactive.pm_.c:534
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
@@ -5644,35 +5735,35 @@ msgstr ""
"El formato es el mismo que los disquetes generados para la instalaciĂłn "
"automĂĄtica."
-#: ../../install_steps_interactive.pm_.c:553
+#: ../../install_steps_interactive.pm_.c:537
msgid "Load from floppy"
msgstr "Cargar desde un disquete"
-#: ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_interactive.pm_.c:539
msgid "Loading from floppy"
msgstr "Cargando desde un disquete"
-#: ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_interactive.pm_.c:539
msgid "Package selection"
msgstr "SelecciĂłn de paquetes"
-#: ../../install_steps_interactive.pm_.c:560
+#: ../../install_steps_interactive.pm_.c:544
msgid "Insert a floppy containing package selection"
msgstr "Introduzca un disquete que contenga la selecciĂłn de paquetes"
-#: ../../install_steps_interactive.pm_.c:572
+#: ../../install_steps_interactive.pm_.c:556
msgid "Save on floppy"
msgstr "Guardar en un disquete"
-#: ../../install_steps_interactive.pm_.c:646
+#: ../../install_steps_interactive.pm_.c:630
msgid "Selected size is larger than available space"
msgstr "El tamaño seleccionado es mayor que el disponible"
-#: ../../install_steps_interactive.pm_.c:660
+#: ../../install_steps_interactive.pm_.c:644
msgid "Type of install"
msgstr "Tipo de instalaciĂłn."
-#: ../../install_steps_interactive.pm_.c:661
+#: ../../install_steps_interactive.pm_.c:645
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
@@ -5680,19 +5771,19 @@ msgstr ""
"No ha seleccionado ningĂșn grupo de paquetes\n"
"Elija por favor la mĂ­nima instalaciĂłn que quiera."
-#: ../../install_steps_interactive.pm_.c:664
+#: ../../install_steps_interactive.pm_.c:648
msgid "With X"
msgstr "Con X"
-#: ../../install_steps_interactive.pm_.c:666
+#: ../../install_steps_interactive.pm_.c:650
msgid "With basic documentation (recommended!)"
msgstr "Con documentaciĂłn bĂĄsica (ÂĄrecomendado!)"
-#: ../../install_steps_interactive.pm_.c:667
+#: ../../install_steps_interactive.pm_.c:651
msgid "Truly minimal install (especially no urpmi)"
msgstr "InstalaciĂłn mĂ­nima \"en serio\" (especialmente sin urpmi)"
-#: ../../install_steps_interactive.pm_.c:752
+#: ../../install_steps_interactive.pm_.c:736
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -5702,16 +5793,16 @@ msgstr ""
"Si no tiene ningĂșn CD, haga clic sobre \"Cancelar\".\n"
"Si sĂłlo le faltan algunos CDs, desmĂĄrquelos y haga clic sobre \"Aceptar\"."
-#: ../../install_steps_interactive.pm_.c:757
+#: ../../install_steps_interactive.pm_.c:741
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "CD-ROM etiquetado como \"%s\""
-#: ../../install_steps_interactive.pm_.c:778
+#: ../../install_steps_interactive.pm_.c:762
msgid "Preparing installation"
msgstr "Preparando la instalaciĂłn"
-#: ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:771
#, c-format
msgid ""
"Installing package %s\n"
@@ -5720,21 +5811,21 @@ msgstr ""
"Instalando el paquete %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:833
+#: ../../install_steps_interactive.pm_.c:817
msgid "Post-install configuration"
msgstr "ConfiguraciĂłn posterior a la instalaciĂłn"
-#: ../../install_steps_interactive.pm_.c:839
+#: ../../install_steps_interactive.pm_.c:823
#, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Por favor, inserte el disquete de arranque en la unidad %s"
-#: ../../install_steps_interactive.pm_.c:845
+#: ../../install_steps_interactive.pm_.c:829
#, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Por favor, inserte el disquete de mĂłdulos actualizados en la unidad %s"
-#: ../../install_steps_interactive.pm_.c:865
+#: ../../install_steps_interactive.pm_.c:849
msgid ""
"You now have the opportunity to download encryption software.\n"
"\n"
@@ -5809,7 +5900,7 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:904
+#: ../../install_steps_interactive.pm_.c:888
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
"have been released after the distribution was released. They may\n"
@@ -5829,163 +5920,163 @@ msgstr ""
"\n"
"ÂżDesea instalar las actualizaciones?"
-#: ../../install_steps_interactive.pm_.c:919
+#: ../../install_steps_interactive.pm_.c:903
msgid ""
"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr ""
"Contactando con el sitio web de Mandrake Linux para obtener la lista de las "
"réplicas disponibles"
-#: ../../install_steps_interactive.pm_.c:924
+#: ../../install_steps_interactive.pm_.c:908
msgid "Choose a mirror from which to get the packages"
msgstr "Elija un sitio de réplica del cual obtener los paquetes"
-#: ../../install_steps_interactive.pm_.c:933
+#: ../../install_steps_interactive.pm_.c:917
msgid "Contacting the mirror to get the list of available packages..."
msgstr ""
"Contactando con el sitio de réplica para obtener la lista de los paquetes "
"disponibles..."
-#: ../../install_steps_interactive.pm_.c:960
+#: ../../install_steps_interactive.pm_.c:945
msgid "Which is your timezone?"
msgstr "ÂżCuĂĄl es su huso horario?"
-#: ../../install_steps_interactive.pm_.c:965
+#: ../../install_steps_interactive.pm_.c:950
msgid "Hardware clock set to GMT"
msgstr "Reloj interno puesto a GMT"
-#: ../../install_steps_interactive.pm_.c:966
+#: ../../install_steps_interactive.pm_.c:951
msgid "Automatic time synchronization (using NTP)"
msgstr "SincronizaciĂłn automĂĄtica de hora (usando NTP)"
-#: ../../install_steps_interactive.pm_.c:973
+#: ../../install_steps_interactive.pm_.c:958
msgid "NTP Server"
msgstr "Servidor NTP"
-#: ../../install_steps_interactive.pm_.c:1007
-#: ../../install_steps_interactive.pm_.c:1015
+#: ../../install_steps_interactive.pm_.c:992
+#: ../../install_steps_interactive.pm_.c:1000
msgid "Remote CUPS server"
msgstr "Servidor CUPS remoto"
-#: ../../install_steps_interactive.pm_.c:1008
+#: ../../install_steps_interactive.pm_.c:993
msgid "No printer"
msgstr "Sin impresora"
-#: ../../install_steps_interactive.pm_.c:1025
+#: ../../install_steps_interactive.pm_.c:1010
msgid "Do you have an ISA sound card?"
msgstr "ÂżTiene una tarjeta de sonido ISA?"
-#: ../../install_steps_interactive.pm_.c:1027
+#: ../../install_steps_interactive.pm_.c:1012
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
"Use \"sndconfig\" luego de la instalaciĂłn para configurar su tarjeta de "
"sonido"
-#: ../../install_steps_interactive.pm_.c:1029
+#: ../../install_steps_interactive.pm_.c:1014
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
"No se detectĂł tarjeta de sonido. Pruebe \"harddrake\" luego de la instalaciĂłn"
-#: ../../install_steps_interactive.pm_.c:1034 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1019 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Resumen"
-#: ../../install_steps_interactive.pm_.c:1037
+#: ../../install_steps_interactive.pm_.c:1022
msgid "Mouse"
msgstr "RatĂłn"
-#: ../../install_steps_interactive.pm_.c:1039
+#: ../../install_steps_interactive.pm_.c:1024
msgid "Timezone"
msgstr "Huso horario"
-#: ../../install_steps_interactive.pm_.c:1040 ../../printerdrake.pm_.c:2728
-#: ../../printerdrake.pm_.c:2814
+#: ../../install_steps_interactive.pm_.c:1025 ../../printerdrake.pm_.c:2937
+#: ../../printerdrake.pm_.c:3026
msgid "Printer"
msgstr "Impresora"
-#: ../../install_steps_interactive.pm_.c:1042
+#: ../../install_steps_interactive.pm_.c:1027
msgid "ISDN card"
msgstr "Tarjeta RDSI"
-#: ../../install_steps_interactive.pm_.c:1045
-#: ../../install_steps_interactive.pm_.c:1047
+#: ../../install_steps_interactive.pm_.c:1030
+#: ../../install_steps_interactive.pm_.c:1032
msgid "Sound card"
msgstr "Tarjeta de sonido"
-#: ../../install_steps_interactive.pm_.c:1049
+#: ../../install_steps_interactive.pm_.c:1034
msgid "TV card"
msgstr "Tarjeta de TV"
-#: ../../install_steps_interactive.pm_.c:1089
-#: ../../install_steps_interactive.pm_.c:1114
-#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1074
+#: ../../install_steps_interactive.pm_.c:1099
+#: ../../install_steps_interactive.pm_.c:1103
msgid "LDAP"
msgstr "LDAP"
-#: ../../install_steps_interactive.pm_.c:1090
-#: ../../install_steps_interactive.pm_.c:1114
-#: ../../install_steps_interactive.pm_.c:1127
+#: ../../install_steps_interactive.pm_.c:1075
+#: ../../install_steps_interactive.pm_.c:1099
+#: ../../install_steps_interactive.pm_.c:1112
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1091
-#: ../../install_steps_interactive.pm_.c:1114
-#: ../../install_steps_interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1141
+#: ../../install_steps_interactive.pm_.c:1076
+#: ../../install_steps_interactive.pm_.c:1099
+#: ../../install_steps_interactive.pm_.c:1120
+#: ../../install_steps_interactive.pm_.c:1126
msgid "Windows Domain"
msgstr "Dominio Windows"
-#: ../../install_steps_interactive.pm_.c:1092
-#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1077
+#: ../../install_steps_interactive.pm_.c:1099
msgid "Local files"
msgstr "Archivos locales"
-#: ../../install_steps_interactive.pm_.c:1101
-#: ../../install_steps_interactive.pm_.c:1102 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1086
+#: ../../install_steps_interactive.pm_.c:1087 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Contraseña de root"
-#: ../../install_steps_interactive.pm_.c:1103
+#: ../../install_steps_interactive.pm_.c:1088
msgid "No password"
msgstr "Sin contraseña"
-#: ../../install_steps_interactive.pm_.c:1108
+#: ../../install_steps_interactive.pm_.c:1093
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr ""
"Esta contraseña es demasiado simple\n"
"(tiene que tener por lo menos una longitud de %d caracteres)"
-#: ../../install_steps_interactive.pm_.c:1114 ../../network/modem.pm_.c:49
+#: ../../install_steps_interactive.pm_.c:1099 ../../network/modem.pm_.c:49
#: ../../standalone/drakconnect_.c:625 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "AutentificaciĂłn"
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1107
msgid "Authentication LDAP"
msgstr "AutentificaciĂłn LDAP"
-#: ../../install_steps_interactive.pm_.c:1123
+#: ../../install_steps_interactive.pm_.c:1108
msgid "LDAP Base dn"
msgstr "LDAP Base dn"
-#: ../../install_steps_interactive.pm_.c:1124
+#: ../../install_steps_interactive.pm_.c:1109
msgid "LDAP Server"
msgstr "Servidor LDAP"
-#: ../../install_steps_interactive.pm_.c:1130
+#: ../../install_steps_interactive.pm_.c:1115
msgid "Authentication NIS"
msgstr "AutentificaciĂłn NIS"
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1116
msgid "NIS Domain"
msgstr "Dominio NIS"
-#: ../../install_steps_interactive.pm_.c:1132
+#: ../../install_steps_interactive.pm_.c:1117
msgid "NIS Server"
msgstr "Servidor NIS"
-#: ../../install_steps_interactive.pm_.c:1138
+#: ../../install_steps_interactive.pm_.c:1123
msgid ""
"For this to work for a W2K PDC, you will probably need to have the admin "
"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
@@ -6013,19 +6104,19 @@ msgstr ""
"del arranque del sistema.\n"
"El comando 'wbinfo -t' probarĂĄ si sus secretos de autenticaciĂłn son buenos."
-#: ../../install_steps_interactive.pm_.c:1140
+#: ../../install_steps_interactive.pm_.c:1125
msgid "Authentication Windows Domain"
msgstr "Dominio de AutenticaciĂłn de Windows"
-#: ../../install_steps_interactive.pm_.c:1142
+#: ../../install_steps_interactive.pm_.c:1127
msgid "Domain Admin User Name"
msgstr "Nombre de usuario del Administrador del Dominio"
-#: ../../install_steps_interactive.pm_.c:1143
+#: ../../install_steps_interactive.pm_.c:1128
msgid "Domain Admin Password"
msgstr "Contraseña del Administrador del Dominio"
-#: ../../install_steps_interactive.pm_.c:1178
+#: ../../install_steps_interactive.pm_.c:1163
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
"depending on the normal bootloader. This is useful if you don't want to "
@@ -6056,19 +6147,19 @@ msgstr ""
"Si desea crear un disquete de arranque para su sistema, inserte un disquete\n"
"en la primer disquetera y presione \"Aceptar\"."
-#: ../../install_steps_interactive.pm_.c:1194
+#: ../../install_steps_interactive.pm_.c:1179
msgid "First floppy drive"
msgstr "Primera disquetera"
-#: ../../install_steps_interactive.pm_.c:1195
+#: ../../install_steps_interactive.pm_.c:1180
msgid "Second floppy drive"
msgstr "Segunda disquetera"
-#: ../../install_steps_interactive.pm_.c:1196 ../../printerdrake.pm_.c:2277
+#: ../../install_steps_interactive.pm_.c:1181 ../../printerdrake.pm_.c:2470
msgid "Skip"
msgstr "Omitir"
-#: ../../install_steps_interactive.pm_.c:1201
+#: ../../install_steps_interactive.pm_.c:1186
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -6095,7 +6186,7 @@ msgstr ""
"grave del sistema. ÂżDesea crear un disquete de arranque para su sistema?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1207
+#: ../../install_steps_interactive.pm_.c:1192
msgid ""
"\n"
"\n"
@@ -6110,28 +6201,28 @@ msgstr ""
"fallar\n"
"porque XFS necesita un controlador muy grande)."
-#: ../../install_steps_interactive.pm_.c:1215
+#: ../../install_steps_interactive.pm_.c:1200
msgid "Sorry, no floppy drive available"
msgstr "Disculpe, pero no hay ninguna disquetera disponible"
-#: ../../install_steps_interactive.pm_.c:1219
+#: ../../install_steps_interactive.pm_.c:1204
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "Elija la disquetera que desea usar para crear el disco de arranque"
-#: ../../install_steps_interactive.pm_.c:1223
+#: ../../install_steps_interactive.pm_.c:1208
#, c-format
msgid "Insert a floppy in %s"
msgstr "Inserte un disquete en %s"
-#: ../../install_steps_interactive.pm_.c:1226
+#: ../../install_steps_interactive.pm_.c:1211
msgid "Creating bootdisk..."
msgstr "Creando el disquete de arranque"
-#: ../../install_steps_interactive.pm_.c:1233
+#: ../../install_steps_interactive.pm_.c:1218
msgid "Preparing bootloader..."
msgstr "Preparando el cargador de arranque"
-#: ../../install_steps_interactive.pm_.c:1244
+#: ../../install_steps_interactive.pm_.c:1229
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -6143,11 +6234,11 @@ msgstr ""
"La instalaciĂłn continuarĂĄ, pero necesitarĂĄ\n"
"utilizar BootX para arrancar su mĂĄquina."
-#: ../../install_steps_interactive.pm_.c:1250
+#: ../../install_steps_interactive.pm_.c:1235
msgid "Do you want to use aboot?"
msgstr "ÂżDesea usar aboot?"
-#: ../../install_steps_interactive.pm_.c:1253
+#: ../../install_steps_interactive.pm_.c:1238
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -6156,16 +6247,16 @@ msgstr ""
"Âżdesea forzar la instalaciĂłn incluso si ello implicara la destrucciĂłn de la "
"primera particiĂłn?"
-#: ../../install_steps_interactive.pm_.c:1260
+#: ../../install_steps_interactive.pm_.c:1245
msgid "Installing bootloader"
msgstr "Instalando cargador de arranque"
-#: ../../install_steps_interactive.pm_.c:1266
+#: ../../install_steps_interactive.pm_.c:1251
msgid "Installation of bootloader failed. The following error occured:"
msgstr ""
"FallĂł la instalaciĂłn del cargador de arranque. OcurriĂł el siguiente error:"
-#: ../../install_steps_interactive.pm_.c:1274
+#: ../../install_steps_interactive.pm_.c:1259
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -6183,17 +6274,17 @@ msgstr ""
" Luego escriba: shut-down\n"
"La prĂłxima vez que arranque deberĂ­a ver el prompt del cargador de arranque."
-#: ../../install_steps_interactive.pm_.c:1308
+#: ../../install_steps_interactive.pm_.c:1293
#: ../../standalone/drakautoinst_.c:79
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Inserte un disquete en blanco en la unidad %s"
-#: ../../install_steps_interactive.pm_.c:1312
+#: ../../install_steps_interactive.pm_.c:1297
msgid "Creating auto install floppy..."
msgstr "Creando el disquete de instalaciĂłn automĂĄtica"
-#: ../../install_steps_interactive.pm_.c:1323
+#: ../../install_steps_interactive.pm_.c:1308
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -6203,7 +6294,7 @@ msgstr ""
"\n"
"ÂżRealmente desea salir ahora?"
-#: ../../install_steps_interactive.pm_.c:1334
+#: ../../install_steps_interactive.pm_.c:1319
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
@@ -6235,15 +6326,15 @@ msgstr ""
"configuraciĂłn tras la instalaciĂłn de la guĂ­a de usuario oficial de Mandrake "
"Linux."
-#: ../../install_steps_interactive.pm_.c:1347
+#: ../../install_steps_interactive.pm_.c:1332
msgid "http://www.mandrakelinux.com/en/90errata.php3"
msgstr "http://www.mandrakelinux.com/en/90errata.php3"
-#: ../../install_steps_interactive.pm_.c:1352
+#: ../../install_steps_interactive.pm_.c:1337
msgid "Generate auto install floppy"
msgstr "Generar un disquete de instalaciĂłn automĂĄtica"
-#: ../../install_steps_interactive.pm_.c:1354
+#: ../../install_steps_interactive.pm_.c:1339
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -6257,15 +6348,15 @@ msgstr ""
"\n"
"Puede preferir reproducir la instalaciĂłn.\n"
-#: ../../install_steps_interactive.pm_.c:1359
+#: ../../install_steps_interactive.pm_.c:1344
msgid "Automated"
msgstr "Automatizada"
-#: ../../install_steps_interactive.pm_.c:1359
+#: ../../install_steps_interactive.pm_.c:1344
msgid "Replay"
msgstr "Reproducir"
-#: ../../install_steps_interactive.pm_.c:1362
+#: ../../install_steps_interactive.pm_.c:1347
msgid "Save packages selection"
msgstr "Guardar la selecciĂłn de paquetes"
@@ -6274,7 +6365,8 @@ msgstr "Guardar la selecciĂłn de paquetes"
msgid "Mandrake Linux Installation %s"
msgstr "InstalaciĂłn %s de Mandrake Linux"
-#: ../../install_steps_newt.pm_.c:34
+#. -PO This string must fit in a 80-char wide text screen
+#: ../../install_steps_newt.pm_.c:35
msgid ""
" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
msgstr ""
@@ -6293,22 +6385,22 @@ msgstr "falta \"consolehelper\""
msgid "Choose a file"
msgstr "Elija un archivo"
-#: ../../interactive.pm_.c:317
+#: ../../interactive.pm_.c:320
msgid "Advanced"
msgstr "Avanzada"
-#: ../../interactive.pm_.c:318
+#: ../../interactive.pm_.c:321
msgid "Basic"
msgstr "BĂĄsico"
-#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:155
-#: ../../printerdrake.pm_.c:1990
+#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:158
+#: ../../printerdrake.pm_.c:2124
msgid "<- Previous"
msgstr "<- Anterior"
#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
-#: ../../standalone/drakbackup_.c:3464 ../../standalone/drakbackup_.c:3491
-#: ../../standalone/drakbackup_.c:3517
+#: ../../standalone/drakbackup_.c:4112 ../../standalone/drakbackup_.c:4139
+#: ../../standalone/drakbackup_.c:4169 ../../standalone/drakbackup_.c:4195
msgid "Next"
msgstr "Siguiente"
@@ -6381,372 +6473,371 @@ msgstr ""
msgid "Re-submit"
msgstr "Reenviar"
-#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:152 ../../keyboard.pm_.c:187
msgid "Czech (QWERTZ)"
msgstr "Checo (QWERTZ)"
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:153 ../../keyboard.pm_.c:189
msgid "German"
msgstr "AlemĂĄn"
-#: ../../keyboard.pm_.c:175
+#: ../../keyboard.pm_.c:154
msgid "Dvorak"
msgstr "Dvorak"
-#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:218
+#: ../../keyboard.pm_.c:155 ../../keyboard.pm_.c:197
msgid "Spanish"
msgstr "Español"
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:156 ../../keyboard.pm_.c:198
msgid "Finnish"
msgstr "Finlandés"
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:220
+#: ../../keyboard.pm_.c:157 ../../keyboard.pm_.c:199
msgid "French"
msgstr "Francés"
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:158 ../../keyboard.pm_.c:231
msgid "Norwegian"
msgstr "Noruego"
-#: ../../keyboard.pm_.c:180
+#: ../../keyboard.pm_.c:159
msgid "Polish"
msgstr "Polaco"
-#: ../../keyboard.pm_.c:181 ../../keyboard.pm_.c:260
+#: ../../keyboard.pm_.c:160 ../../keyboard.pm_.c:239
msgid "Russian"
msgstr "Ruso"
-#: ../../keyboard.pm_.c:183 ../../keyboard.pm_.c:262
+#: ../../keyboard.pm_.c:162 ../../keyboard.pm_.c:241
msgid "Swedish"
msgstr "Sueco"
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:278
+#: ../../keyboard.pm_.c:163 ../../keyboard.pm_.c:257
msgid "UK keyboard"
msgstr "BritĂĄnico"
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:279
+#: ../../keyboard.pm_.c:164 ../../keyboard.pm_.c:258
msgid "US keyboard"
msgstr "Estadounidense"
-#: ../../keyboard.pm_.c:187
+#: ../../keyboard.pm_.c:166
msgid "Albanian"
msgstr "Albano"
-#: ../../keyboard.pm_.c:188
+#: ../../keyboard.pm_.c:167
msgid "Armenian (old)"
msgstr "Armenio (antiguo)"
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:168
msgid "Armenian (typewriter)"
msgstr "Armenio (nuevo)"
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:169
msgid "Armenian (phonetic)"
msgstr "Armenio (fonético)"
-#: ../../keyboard.pm_.c:195
+#: ../../keyboard.pm_.c:174
msgid "Azerbaidjani (latin)"
msgstr "AzerbadjĂĄn (latĂ­n)"
-#: ../../keyboard.pm_.c:197
+#: ../../keyboard.pm_.c:176
msgid "Belgian"
msgstr "Belga"
-#: ../../keyboard.pm_.c:198
+#: ../../keyboard.pm_.c:177
msgid "Bengali"
msgstr "Indio (BengalĂ­)"
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:178
msgid "Bulgarian (phonetic)"
msgstr "BĂșlgaro (fonĂ©tico)"
-#: ../../keyboard.pm_.c:200
+#: ../../keyboard.pm_.c:179
msgid "Bulgarian (BDS)"
msgstr "BĂșlgaro (BDS)"
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:180
msgid "Brazilian (ABNT-2)"
msgstr "Brasileño (ABNT-2)"
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:183
msgid "Bosnian"
msgstr "Bosnio"
-#: ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:184
msgid "Belarusian"
msgstr "Bielorruso"
-#: ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:185
msgid "Swiss (German layout)"
msgstr "Suizo (germĂĄnico)"
-#: ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:186
msgid "Swiss (French layout)"
msgstr "Suizo (francés)"
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:188
msgid "Czech (QWERTY)"
msgstr "Checo (QWERTY)"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:190
msgid "German (no dead keys)"
msgstr "AlemĂĄn (sin teclas muertas)"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:191
msgid "Devanagari"
-msgstr "Indio (Devanagari)"
+msgstr "Indio (Devanagari)"
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:192
msgid "Danish"
msgstr "Danés"
-#: ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:193
msgid "Dvorak (US)"
msgstr "Dvorak (US)"
-#: ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:194
msgid "Dvorak (Norwegian)"
msgstr "Dvorak (Noruego)"
-#: ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:195
msgid "Dvorak (Swedish)"
msgstr "Dvorak (Sueco)"
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:196
msgid "Estonian"
msgstr "Estonio"
-#: ../../keyboard.pm_.c:221
+#: ../../keyboard.pm_.c:200
msgid "Georgian (\"Russian\" layout)"
msgstr "Georgiano (estilo \"ruso\")"
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:201
msgid "Georgian (\"Latin\" layout)"
msgstr "Georgiano (estilo \"latĂ­n\")"
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:202
msgid "Greek"
msgstr "Griego"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:203
msgid "Gujarati"
msgstr "Indio (Gujarati)"
-#: ../../keyboard.pm_.c:225
+#: ../../keyboard.pm_.c:204
msgid "Gurmukhi"
msgstr "Indio (Gurmukhi)"
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:205
msgid "Hungarian"
msgstr "HĂșngaro"
-#: ../../keyboard.pm_.c:227
+#: ../../keyboard.pm_.c:206
msgid "Croatian"
msgstr "Croata"
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:207
msgid "Israeli"
msgstr "IsraelĂ­"
-#: ../../keyboard.pm_.c:229
+#: ../../keyboard.pm_.c:208
msgid "Israeli (Phonetic)"
msgstr "Israelí (fonético)"
-#: ../../keyboard.pm_.c:230
+#: ../../keyboard.pm_.c:209
msgid "Iranian"
msgstr "IranĂ­"
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:210
msgid "Icelandic"
msgstr "Islandés"
-#: ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:211
msgid "Italian"
msgstr "Italiano"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:212
msgid "Inuktitut"
msgstr "Inuktitut"
-#: ../../keyboard.pm_.c:234
+#: ../../keyboard.pm_.c:213
msgid "Japanese 106 keys"
msgstr "Japonés de 106 teclas"
-#: ../../keyboard.pm_.c:237
+#: ../../keyboard.pm_.c:216
msgid "Korean keyboard"
msgstr "Coreano"
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:217
msgid "Latin American"
msgstr "Latinoamericano"
-#: ../../keyboard.pm_.c:239
-#, fuzzy
+#: ../../keyboard.pm_.c:218
msgid "Laotian"
-msgstr "LetĂłn"
+msgstr "Laosiano"
-#: ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:219
msgid "Lithuanian AZERTY (old)"
msgstr "Lituano AZERTY (antiguo)"
-#: ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:221
msgid "Lithuanian AZERTY (new)"
msgstr "Lituano AZERTY (nuevo)"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:222
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Lituano \"numérico\" QWERTY"
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:223
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "Lituano \"fonético\" QWERTY"
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:224
msgid "Latvian"
msgstr "LetĂłn"
-#: ../../keyboard.pm_.c:246
+#: ../../keyboard.pm_.c:225
msgid "Macedonian"
msgstr "Macedonio"
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:226
msgid "Myanmar (Burmese)"
-msgstr ""
+msgstr "Myanmar (Birmano)"
-#: ../../keyboard.pm_.c:248
+#: ../../keyboard.pm_.c:227
msgid "Mongolian (cyrillic)"
msgstr "Mongol (cirĂ­lico)"
-#: ../../keyboard.pm_.c:249
+#: ../../keyboard.pm_.c:228
msgid "Maltese (UK)"
-msgstr ""
+msgstr "Maltés (Reino Unido)"
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:229
msgid "Maltese (US)"
-msgstr ""
+msgstr "Maltés (EE.UU.)"
-#: ../../keyboard.pm_.c:251
+#: ../../keyboard.pm_.c:230
msgid "Dutch"
msgstr "Holandés"
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:232
msgid "Polish (qwerty layout)"
msgstr "Polaco (distribuciĂłn qwerty)"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:233
msgid "Polish (qwertz layout)"
msgstr "Polaco (distribuciĂłn qwertz)"
-#: ../../keyboard.pm_.c:255
+#: ../../keyboard.pm_.c:234
msgid "Portuguese"
msgstr "Portugués"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:235
msgid "Canadian (Quebec)"
msgstr "Canadiense (Quebec)"
-#: ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:237
msgid "Romanian (qwertz)"
msgstr "Rumano (qwertz)"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:238
msgid "Romanian (qwerty)"
msgstr "Rumano (qwerty)"
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:240
msgid "Russian (Yawerty)"
msgstr "Ruso (Yawerty)"
-#: ../../keyboard.pm_.c:263
+#: ../../keyboard.pm_.c:242
msgid "Slovenian"
msgstr "Esloveno"
-#: ../../keyboard.pm_.c:264
+#: ../../keyboard.pm_.c:243
msgid "Slovakian (QWERTZ)"
msgstr "Eslovaco (QWERTZ)"
-#: ../../keyboard.pm_.c:265
+#: ../../keyboard.pm_.c:244
msgid "Slovakian (QWERTY)"
msgstr "Eslovaco (QWERTY)"
-#: ../../keyboard.pm_.c:267
+#: ../../keyboard.pm_.c:246
msgid "Serbian (cyrillic)"
msgstr "Serbio (cirĂ­lico)"
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:248
msgid "Tamil (Unicode)"
msgstr "Tamil (Unicode)"
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:249
msgid "Tamil (TSCII)"
msgstr "Tamil (TSCII)"
-#: ../../keyboard.pm_.c:271
+#: ../../keyboard.pm_.c:250
msgid "Thai keyboard"
msgstr "Teclado tailandés"
-#: ../../keyboard.pm_.c:273
+#: ../../keyboard.pm_.c:252
msgid "Tajik keyboard"
msgstr "Teclado tajik"
-#: ../../keyboard.pm_.c:274
+#: ../../keyboard.pm_.c:253
msgid "Turkish (traditional \"F\" model)"
msgstr "Turco (modelo \"F\" tradicional)"
-#: ../../keyboard.pm_.c:275
+#: ../../keyboard.pm_.c:254
msgid "Turkish (modern \"Q\" model)"
msgstr "Turco (modelo \"Q\" moderno)"
-#: ../../keyboard.pm_.c:277
+#: ../../keyboard.pm_.c:256
msgid "Ukrainian"
msgstr "Ucraniano"
-#: ../../keyboard.pm_.c:280
+#: ../../keyboard.pm_.c:259
msgid "US keyboard (international)"
msgstr "Estadounidense (internacional)"
-#: ../../keyboard.pm_.c:281
+#: ../../keyboard.pm_.c:260
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "Vietnamita \"numérico\" QWERTY"
-#: ../../keyboard.pm_.c:282
+#: ../../keyboard.pm_.c:261
msgid "Yugoslavian (latin)"
msgstr "Yugoslavo (latĂ­n)"
-#: ../../keyboard.pm_.c:289
+#: ../../keyboard.pm_.c:268
msgid "Right Alt key"
msgstr "Tecla Alt derecha"
-#: ../../keyboard.pm_.c:290
+#: ../../keyboard.pm_.c:269
msgid "Both Shift keys simultaneously"
msgstr "Ambas teclas Shift simultĂĄneamente"
-#: ../../keyboard.pm_.c:291
+#: ../../keyboard.pm_.c:270
msgid "Control and Shift keys simultaneously"
msgstr "Las teclas Control y Shift simultĂĄneamente"
-#: ../../keyboard.pm_.c:292
+#: ../../keyboard.pm_.c:271
msgid "CapsLock key"
msgstr "Tecla CapsLock"
-#: ../../keyboard.pm_.c:293
+#: ../../keyboard.pm_.c:272
msgid "Ctrl and Alt keys simultaneously"
msgstr "Las teclas Ctrl y Alt simultĂĄneamente"
-#: ../../keyboard.pm_.c:294
+#: ../../keyboard.pm_.c:273
msgid "Alt and Shift keys simultaneously"
msgstr "Las teclas Alt y Shift simultĂĄneamente"
-#: ../../keyboard.pm_.c:295
+#: ../../keyboard.pm_.c:274
msgid "\"Menu\" key"
msgstr "La tecla \"MenĂș\""
-#: ../../keyboard.pm_.c:296
+#: ../../keyboard.pm_.c:275
msgid "Left \"Windows\" key"
msgstr "Tecla \"Windows\" de la izquierda"
-#: ../../keyboard.pm_.c:297
+#: ../../keyboard.pm_.c:276
msgid "Right \"Windows\" key"
msgstr "Tecla \"Windows\" de la derecha"
@@ -6804,11 +6895,11 @@ msgstr "Ratón genérico PS2 con rueda"
msgid "GlidePoint"
msgstr "GlidePoint"
-#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:63
+#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:65
msgid "Kensington Thinking Mouse"
msgstr "Kensington Thinking Mouse"
-#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:59
+#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:61
msgid "Genius NetMouse"
msgstr "Genius NetMouse"
@@ -6816,115 +6907,123 @@ msgstr "Genius NetMouse"
msgid "Genius NetScroll"
msgstr "Genius NetScroll"
-#: ../../mouse.pm_.c:43 ../../mouse.pm_.c:68
+#: ../../mouse.pm_.c:39 ../../mouse.pm_.c:48
+msgid "Microsoft Explorer"
+msgstr "Microsoft Explorer"
+
+#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:70
msgid "1 button"
msgstr "1 botĂłn"
-#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:51
+#: ../../mouse.pm_.c:45 ../../mouse.pm_.c:53
msgid "Generic 2 Button Mouse"
msgstr "Ratón de 2 botones genérico"
-#: ../../mouse.pm_.c:46
+#: ../../mouse.pm_.c:47
msgid "Wheel"
msgstr "Rueda"
-#: ../../mouse.pm_.c:49
+#: ../../mouse.pm_.c:51
msgid "serial"
msgstr "serie"
-#: ../../mouse.pm_.c:52
+#: ../../mouse.pm_.c:54
msgid "Generic 3 Button Mouse"
msgstr "Ratón de 3 botones genérico"
-#: ../../mouse.pm_.c:53
+#: ../../mouse.pm_.c:55
msgid "Microsoft IntelliMouse"
msgstr "Microsoft IntelliMouse"
-#: ../../mouse.pm_.c:54
+#: ../../mouse.pm_.c:56
msgid "Logitech MouseMan"
msgstr "Logitech MouseMan"
-#: ../../mouse.pm_.c:55
+#: ../../mouse.pm_.c:57
msgid "Mouse Systems"
msgstr "Mouse Systems"
-#: ../../mouse.pm_.c:57
+#: ../../mouse.pm_.c:59
msgid "Logitech CC Series"
msgstr "Logitech CC Series"
-#: ../../mouse.pm_.c:58
+#: ../../mouse.pm_.c:60
msgid "Logitech MouseMan+/FirstMouse+"
msgstr "Logitech MouseMan+/FirstMouse+"
-#: ../../mouse.pm_.c:60
+#: ../../mouse.pm_.c:62
msgid "MM Series"
msgstr "MM Series"
-#: ../../mouse.pm_.c:61
+#: ../../mouse.pm_.c:63
msgid "MM HitTablet"
msgstr "MM HitTablet"
-#: ../../mouse.pm_.c:62
+#: ../../mouse.pm_.c:64
msgid "Logitech Mouse (serial, old C7 type)"
msgstr "RatĂłn Logitech (serie, antiguo tipo C7)"
-#: ../../mouse.pm_.c:66
+#: ../../mouse.pm_.c:68
msgid "busmouse"
msgstr "ratĂłn bus"
-#: ../../mouse.pm_.c:69
+#: ../../mouse.pm_.c:71
msgid "2 buttons"
msgstr "2 botones"
-#: ../../mouse.pm_.c:70
+#: ../../mouse.pm_.c:72
msgid "3 buttons"
msgstr "3 botones"
-#: ../../mouse.pm_.c:73
+#: ../../mouse.pm_.c:75
msgid "none"
msgstr "ninguno"
-#: ../../mouse.pm_.c:75
+#: ../../mouse.pm_.c:77
msgid "No mouse"
msgstr "Sin ratĂłn"
-#: ../../mouse.pm_.c:445
+#: ../../mouse.pm_.c:482
msgid "Please test the mouse"
msgstr "Pruebe su ratĂłn, por favor."
-#: ../../mouse.pm_.c:446
+#: ../../mouse.pm_.c:483
msgid "To activate the mouse,"
msgstr "Para activar el ratĂłn,"
-#: ../../mouse.pm_.c:447
+#: ../../mouse.pm_.c:484
msgid "MOVE YOUR WHEEL!"
msgstr "ÂĄMUEVA SU RUEDA!"
-#: ../../my_gtk.pm_.c:156
+#: ../../my_gtk.pm_.c:64
+msgid "-adobe-utopia-regular-r-*-*-25-*-*-*-p-*-iso8859-*,*-r-*"
+msgstr "-adobe-utopia-regular-r-*-*-25-*-*-*-p-*-iso8859-*,*-r-*"
+
+#: ../../my_gtk.pm_.c:159
msgid "Finish"
msgstr "Finalizar"
-#: ../../my_gtk.pm_.c:156 ../../printerdrake.pm_.c:1992
+#: ../../my_gtk.pm_.c:159 ../../printerdrake.pm_.c:2126
msgid "Next ->"
msgstr "Siguiente ->"
-#: ../../my_gtk.pm_.c:284
+#: ../../my_gtk.pm_.c:287
msgid "Is this correct?"
msgstr "ÂżEs correcto?"
-#: ../../my_gtk.pm_.c:356 ../../services.pm_.c:222
+#: ../../my_gtk.pm_.c:359 ../../services.pm_.c:222
msgid "Info"
msgstr "Info"
-#: ../../my_gtk.pm_.c:377
+#: ../../my_gtk.pm_.c:380
msgid "Expand Tree"
msgstr "Expandir el ĂĄrbol"
-#: ../../my_gtk.pm_.c:378
+#: ../../my_gtk.pm_.c:381
msgid "Collapse Tree"
msgstr "Contraer el ĂĄrbol"
-#: ../../my_gtk.pm_.c:379
+#: ../../my_gtk.pm_.c:382
msgid "Toggle between flat and group sorted"
msgstr "Cambiar entre vista plana y ordenada por grupos"
@@ -6962,6 +7061,75 @@ msgstr "usar pppoe"
msgid "use pptp"
msgstr "usar pptp"
+#: ../../network/drakfirewall.pm_.c:12
+msgid "Web Server"
+msgstr "Servidor web"
+
+#: ../../network/drakfirewall.pm_.c:17
+msgid "Domain Name Server"
+msgstr "Servidor de nombres de dominio"
+
+#: ../../network/drakfirewall.pm_.c:32
+msgid "Mail Server"
+msgstr "Servidor de correo"
+
+#: ../../network/drakfirewall.pm_.c:37
+msgid "POP and IMAP Server"
+msgstr "Servidor POP e IMAP"
+
+#: ../../network/drakfirewall.pm_.c:111
+msgid "No network card"
+msgstr "Sin tarjeta de red"
+
+#: ../../network/drakfirewall.pm_.c:129
+#, fuzzy
+msgid ""
+"drakfirewall configurator\n"
+"\n"
+"This configures a personal firewall for this Mandrake Linux machine.\n"
+"For a powerful dedicated firewall solution, please look to the\n"
+"specialized MandrakeSecurity Firewall distribution."
+msgstr ""
+"configurador de tinyfirewall\n"
+"\n"
+"Esto configura un cortafuegos personal para esta mĂĄquina Mandrake Linux.\n"
+"Para una soluciĂłn potente de cortafuegos dedicada, por favor eche un "
+"vistazo\n"
+"a la distribuciĂłn especializada MandrakeSecurity Firewall."
+
+#: ../../network/drakfirewall.pm_.c:147
+msgid "Which services would you like to allow the Internet to connect to?"
+msgstr "¿A qué servicios desearía permitir conectarse desde la Internet?"
+
+#: ../../network/drakfirewall.pm_.c:148
+msgid ""
+"You can enter miscellaneous ports. \n"
+"Valid examples are: 139/tcp 139/udp.\n"
+"Have a look at /etc/services for information."
+msgstr ""
+"Puede ingresar otros puertos. \n"
+"Por ejemplo: 139/tcp 139/udp.\n"
+"Consulte /etc/services para mĂĄs informaciĂłn."
+
+#: ../../network/drakfirewall.pm_.c:154
+#, c-format
+msgid ""
+"Invalid port given: %s.\n"
+"The proper format is \"port/tcp\" or \"port/udp\", \n"
+"where port is between 1 and 65535."
+msgstr ""
+"Puerto no vĂĄlido: %s.\n"
+"El formato adecuado es \"puerto/tcp\" o \"puerto/udp\", \n"
+"donde puerto es un nĂșmero entre 1 y 65535."
+
+#: ../../network/drakfirewall.pm_.c:162
+msgid "Everything (no firewall)"
+msgstr "Todo (sin cortafuegos)"
+
+#: ../../network/drakfirewall.pm_.c:164
+msgid "Other ports"
+msgstr "Otros puertos"
+
#: ../../network/ethernet.pm_.c:37
msgid ""
"Which dhcp client do you want to use?\n"
@@ -6978,7 +7146,7 @@ msgstr ""
"No se ha detectado ningĂșn adaptador de red ethernet en su sistema.\n"
"No se puede configurar este tipo de conexiĂłn."
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:247
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:240
msgid "Choose the network interface"
msgstr "Elija la interfaz de red"
@@ -6993,7 +7161,7 @@ msgstr ""
msgid "no network card found"
msgstr "no se encontrĂł ninguna tarjeta de red"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:366
msgid "Configuring network"
msgstr "Configurando la red"
@@ -7010,7 +7178,7 @@ msgstr ""
"completamente,\n"
"como \"mimaquina.milabo.micompa.com\"."
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:370
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:371
msgid "Host name"
msgstr "Nombre de la mĂĄquina"
@@ -7316,13 +7484,13 @@ msgstr "Elija el perfil a configurar"
msgid "Use auto detection"
msgstr "Usar detecciĂłn automĂĄtica"
-#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2930
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:3151
#: ../../standalone/drakconnect_.c:274 ../../standalone/drakconnect_.c:277
#: ../../standalone/drakfloppy_.c:145
msgid "Expert Mode"
msgstr "Modo experto"
-#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:283
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:386
msgid "Detecting devices..."
msgstr "Detectando los dispositivos..."
@@ -7491,11 +7659,11 @@ msgstr "DirecciĂłn IP automĂĄtica"
msgid "Start at boot"
msgstr "Iniciar al arrancar"
-#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:753
+#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:860
msgid "IP address should be in format 1.2.3.4"
msgstr "Las direcciones IP deben estar en el formato 1.2.3.4"
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:367
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -7508,43 +7676,55 @@ msgstr ""
"como \"mimaquina.milabo.micompa.com\".También puede introducir la dirección "
"IP de la pasarela si tiene una"
-#: ../../network/network.pm_.c:371
+#: ../../network/network.pm_.c:372
msgid "DNS server"
msgstr "Servidor DNS"
-#: ../../network/network.pm_.c:372
+#: ../../network/network.pm_.c:373
#, c-format
msgid "Gateway (e.g. %s)"
msgstr "Pasarela de red (ej %s)"
-#: ../../network/network.pm_.c:374
+#: ../../network/network.pm_.c:375
msgid "Gateway device"
msgstr "Dispositivo de pasarela de red"
-#: ../../network/network.pm_.c:386
+#: ../../network/network.pm_.c:387
msgid "Proxies configuration"
msgstr "ConfiguraciĂłn de los proxies"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:388
msgid "HTTP proxy"
msgstr "Proxy HTTP"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:389
msgid "FTP proxy"
msgstr "Proxy FTP"
-#: ../../network/network.pm_.c:389
+#: ../../network/network.pm_.c:390
msgid "Track network card id (useful for laptops)"
msgstr "Id tarjeta de red (Ăștil para portĂĄtiles)"
-#: ../../network/network.pm_.c:392
+#: ../../network/network.pm_.c:393
msgid "Proxy should be http://..."
msgstr "El nombre del proxy debe ser http://..."
-#: ../../network/network.pm_.c:393
+#: ../../network/network.pm_.c:394
msgid "Proxy should be ftp://..."
msgstr "El nombre del proxy debe ser ftp://..."
+#: ../../network/shorewall.pm_.c:24
+msgid "Firewalling configuration detected!"
+msgstr "ÂĄSe detectĂł la configuraciĂłn del cortafuegos!"
+
+#: ../../network/shorewall.pm_.c:25
+msgid ""
+"Warning! An existing firewalling configuration has been detected. You may "
+"need some manual fix after installation."
+msgstr ""
+"ÂĄAtenciĂłn! Se ha detectado la configuraciĂłn del cortafuegos existente. Puede "
+"que necesite algĂșn ajuste manual tras la instalaciĂłn."
+
#: ../../network/tools.pm_.c:41
msgid "Internet configuration"
msgstr "ConfiguraciĂłn de Internet"
@@ -7650,15 +7830,15 @@ msgstr "Contraseña de la cuenta"
msgid "United Kingdom"
msgstr "Reino Unido"
-#: ../../partition_table.pm_.c:606
+#: ../../partition_table.pm_.c:602
msgid "mount failed: "
msgstr "mount fallĂł: "
-#: ../../partition_table.pm_.c:670
+#: ../../partition_table.pm_.c:666
msgid "Extended partition not supported on this platform"
msgstr "La particiĂłn extendida no estĂĄ disponible en esta plataforma"
-#: ../../partition_table.pm_.c:688
+#: ../../partition_table.pm_.c:684
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
@@ -7668,21 +7848,21 @@ msgstr ""
"La Ășnica soluciĂłn es desplazar sus particiones primarias para que el hueco "
"esté después de las particiones extendidas"
-#: ../../partition_table.pm_.c:778
+#: ../../partition_table.pm_.c:774
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "FallĂł la restauraciĂłn a partir del archivo %s: %s"
-#: ../../partition_table.pm_.c:780
+#: ../../partition_table.pm_.c:776
msgid "Bad backup file"
msgstr "Archivo de respaldo incorrecto"
-#: ../../partition_table.pm_.c:802
+#: ../../partition_table.pm_.c:798
#, c-format
msgid "Error writing to file %s"
msgstr "Error al escribir en el archivo %s"
-#: ../../partition_table/raw.pm_.c:187
+#: ../../partition_table/raw.pm_.c:189
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
@@ -7730,150 +7910,154 @@ msgstr "LPD - Line Printer Daemon (Demonio de impresora de lĂ­neas)"
msgid "PDQ - Print, Don't Queue"
msgstr "PDQ - Print, Don't Queue (Imprimir, no encolar)"
-#: ../../printer.pm_.c:35 ../../printer.pm_.c:854
+#: ../../printer.pm_.c:34 ../../printer.pm_.c:1125
msgid "CUPS"
msgstr "CUPS"
-#: ../../printer.pm_.c:36
+#: ../../printer.pm_.c:35
msgid "LPRng"
msgstr "LPRng"
-#: ../../printer.pm_.c:37
+#: ../../printer.pm_.c:36
msgid "LPD"
msgstr "LPD"
-#: ../../printer.pm_.c:38
+#: ../../printer.pm_.c:37
msgid "PDQ"
msgstr "PDQ"
-#: ../../printer.pm_.c:50
+#: ../../printer.pm_.c:49
msgid "Local printer"
msgstr "Impresora local"
-#: ../../printer.pm_.c:51
+#: ../../printer.pm_.c:50
msgid "Remote printer"
msgstr "Impresora remota"
-#: ../../printer.pm_.c:52
+#: ../../printer.pm_.c:51
msgid "Printer on remote CUPS server"
msgstr "Impresora en un servidor CUPS remoto"
-#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:776
+#: ../../printer.pm_.c:52 ../../printerdrake.pm_.c:883
msgid "Printer on remote lpd server"
msgstr "Impresora en un servidor lpd remoto"
-#: ../../printer.pm_.c:54
+#: ../../printer.pm_.c:53
msgid "Network printer (TCP/Socket)"
msgstr "Impresora de red (TCP/Socket)"
-#: ../../printer.pm_.c:55
+#: ../../printer.pm_.c:54
msgid "Printer on SMB/Windows 95/98/NT server"
msgstr "Impresora en un servidor SMB/Windows 95/98/NT"
-#: ../../printer.pm_.c:56
+#: ../../printer.pm_.c:55
msgid "Printer on NetWare server"
msgstr "Impresora en un servidor NetWare"
-#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:780
+#: ../../printer.pm_.c:56 ../../printerdrake.pm_.c:887
msgid "Enter a printer device URI"
msgstr "Introduzca el URI del dispositivo de impresiĂłn"
-#: ../../printer.pm_.c:58
+#: ../../printer.pm_.c:57
msgid "Pipe job into a command"
msgstr "Filtrar el trabajo en un comando"
-#: ../../printer.pm_.c:487 ../../printer.pm_.c:678 ../../printer.pm_.c:1000
-#: ../../printerdrake.pm_.c:2070 ../../printerdrake.pm_.c:3189
+#: ../../printer.pm_.c:324 ../../printer.pm_.c:366 ../../printer.pm_.c:533
+msgid "Unknown Model"
+msgstr "Modelo desconocido"
+
+#: ../../printer.pm_.c:735 ../../printer.pm_.c:926 ../../printer.pm_.c:1318
+#: ../../printerdrake.pm_.c:2260 ../../printerdrake.pm_.c:3414
msgid "Unknown model"
msgstr "Modelo desconocido"
-#: ../../printer.pm_.c:515
+#: ../../printer.pm_.c:763
msgid "Local Printers"
msgstr "Impresoras locales"
-#: ../../printer.pm_.c:517 ../../printer.pm_.c:855
+#: ../../printer.pm_.c:765 ../../printer.pm_.c:1126
msgid "Remote Printers"
msgstr "Impresoras remotas"
-#: ../../printer.pm_.c:524 ../../printerdrake.pm_.c:301
+#: ../../printer.pm_.c:772 ../../printerdrake.pm_.c:404
#, c-format
msgid " on parallel port \\/*%s"
msgstr " en el puerto paralelo \\/*%s"
-#: ../../printer.pm_.c:527 ../../printerdrake.pm_.c:303
+#: ../../printer.pm_.c:775 ../../printerdrake.pm_.c:406
#, c-format
msgid ", USB printer \\/*%s"
msgstr ", impresora USB \\/*%s"
-#: ../../printer.pm_.c:532
+#: ../../printer.pm_.c:780
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ", dispositivo multifunciĂłn en puerto paralelo \\/*%s"
-#: ../../printer.pm_.c:535
+#: ../../printer.pm_.c:783
msgid ", multi-function device on USB"
msgstr ", dispositivo multi-funciĂłn en USB"
-#: ../../printer.pm_.c:537
+#: ../../printer.pm_.c:785
msgid ", multi-function device on HP JetDirect"
msgstr ", dispositivo multifunciĂłn en HP JetDirect"
-#: ../../printer.pm_.c:539
+#: ../../printer.pm_.c:787
msgid ", multi-function device"
msgstr ", dispositivo multifunciĂłn"
-#: ../../printer.pm_.c:542
+#: ../../printer.pm_.c:790
#, c-format
msgid ", printing to %s"
msgstr ", imprimiendo en %s"
-#: ../../printer.pm_.c:544
+#: ../../printer.pm_.c:792
#, c-format
msgid " on LPD server \"%s\", printer \"%s\""
msgstr " en servidor LPD \"%s\", impresora \"%s\""
-#: ../../printer.pm_.c:546
+#: ../../printer.pm_.c:794
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ", host TCP/IP \"%s\", puerto %s"
-#: ../../printer.pm_.c:550
+#: ../../printer.pm_.c:798
#, c-format
msgid " on SMB/Windows server \"%s\", share \"%s\""
msgstr " en servidor SMB/Windows \"%s\", compartida como \"%s\""
-#: ../../printer.pm_.c:554
+#: ../../printer.pm_.c:802
#, c-format
msgid " on Novell server \"%s\", printer \"%s\""
msgstr " en servidor Novell \"%s\", impresora \"%s\""
-#: ../../printer.pm_.c:556
+#: ../../printer.pm_.c:804
#, c-format
msgid ", using command %s"
msgstr ", usando comando %s"
-#: ../../printer.pm_.c:675 ../../printerdrake.pm_.c:1540
+#: ../../printer.pm_.c:923 ../../printerdrake.pm_.c:1656
msgid "Raw printer (No driver)"
msgstr "Impresora \"en crudo\" (sin controlador)"
-#: ../../printer.pm_.c:824
+#: ../../printer.pm_.c:1095
#, c-format
msgid "(on %s)"
msgstr "(en %s)"
-#: ../../printer.pm_.c:826
+#: ../../printer.pm_.c:1097
msgid "(on this machine)"
msgstr "(en esta mĂĄquina)"
-#: ../../printer.pm_.c:851
+#: ../../printer.pm_.c:1122
#, c-format
msgid "On CUPS server \"%s\""
msgstr "En servidor CUPS \"%s\""
-#: ../../printer.pm_.c:857 ../../printerdrake.pm_.c:2851
-#: ../../printerdrake.pm_.c:2862 ../../printerdrake.pm_.c:3078
-#: ../../printerdrake.pm_.c:3130 ../../printerdrake.pm_.c:3156
-#: ../../printerdrake.pm_.c:3326 ../../printerdrake.pm_.c:3328
+#: ../../printer.pm_.c:1128 ../../printerdrake.pm_.c:3071
+#: ../../printerdrake.pm_.c:3082 ../../printerdrake.pm_.c:3303
+#: ../../printerdrake.pm_.c:3355 ../../printerdrake.pm_.c:3381
+#: ../../printerdrake.pm_.c:3556 ../../printerdrake.pm_.c:3558
msgid " (Default)"
msgstr " (Por defecto)"
@@ -7900,11 +8084,11 @@ msgid "Printer auto-detection (Local, TCP/Socket, and SMB printers)"
msgstr ""
"DetecciĂłn automĂĄtica de impresora (Impresoras locales, TCP/Socket, y SMB)"
-#: ../../printerdrake.pm_.c:84 ../../printerdrake.pm_.c:2914
+#: ../../printerdrake.pm_.c:84 ../../printerdrake.pm_.c:3135
msgid "CUPS configuration"
msgstr "ConfiguraciĂłn de CUPS"
-#: ../../printerdrake.pm_.c:85 ../../printerdrake.pm_.c:2915
+#: ../../printerdrake.pm_.c:85 ../../printerdrake.pm_.c:3136
msgid "Specify CUPS server"
msgstr "Especificar servidor CUPS"
@@ -7948,7 +8132,7 @@ msgstr ""
msgid "The IP address should look like 192.168.1.20"
msgstr "Las direcciones IP deberĂ­an parecerse a 192.168.1.20"
-#: ../../printerdrake.pm_.c:95 ../../printerdrake.pm_.c:987
+#: ../../printerdrake.pm_.c:95 ../../printerdrake.pm_.c:1094
msgid "The port number should be an integer!"
msgstr "ÂĄEl nĂșmero de puerto debe ser un nĂșmero entero!"
@@ -7956,7 +8140,7 @@ msgstr "ÂĄEl nĂșmero de puerto debe ser un nĂșmero entero!"
msgid "CUPS server IP"
msgstr "IP del servidor CUPS"
-#: ../../printerdrake.pm_.c:103 ../../printerdrake.pm_.c:1007
+#: ../../printerdrake.pm_.c:103 ../../printerdrake.pm_.c:1114
msgid "Port"
msgstr "Puerto"
@@ -7964,12 +8148,142 @@ msgstr "Puerto"
msgid "Automatic CUPS configuration"
msgstr "ConfiguraciĂłn automĂĄtica de CUPS"
-#: ../../printerdrake.pm_.c:183 ../../printerdrake.pm_.c:192
-#: ../../printerdrake.pm_.c:2897 ../../printerdrake.pm_.c:3017
+#: ../../printerdrake.pm_.c:177 ../../printerdrake.pm_.c:247
+#: ../../printerdrake.pm_.c:1529 ../../printerdrake.pm_.c:1533
+#: ../../printerdrake.pm_.c:1651 ../../printerdrake.pm_.c:2203
+#: ../../printerdrake.pm_.c:2356 ../../printerdrake.pm_.c:2415
+#: ../../printerdrake.pm_.c:2488 ../../printerdrake.pm_.c:2509
+#: ../../printerdrake.pm_.c:2699 ../../printerdrake.pm_.c:2740
+#: ../../printerdrake.pm_.c:2745 ../../printerdrake.pm_.c:2779
+#: ../../printerdrake.pm_.c:2784 ../../printerdrake.pm_.c:2821
+#: ../../printerdrake.pm_.c:2874 ../../printerdrake.pm_.c:2894
+#: ../../printerdrake.pm_.c:2908 ../../printerdrake.pm_.c:2942
+#: ../../printerdrake.pm_.c:2988 ../../printerdrake.pm_.c:3006
+#: ../../printerdrake.pm_.c:3095 ../../printerdrake.pm_.c:3169
+#: ../../printerdrake.pm_.c:3471 ../../printerdrake.pm_.c:3526
+#: ../../printerdrake.pm_.c:3579 ../../standalone/printerdrake_.c:57
+msgid "Printerdrake"
+msgstr "Printerdrake"
+
+#: ../../printerdrake.pm_.c:178
+msgid "Checking your system..."
+msgstr "Verificando su sistema..."
+
+#: ../../printerdrake.pm_.c:186
+msgid ""
+"There are no printers found which are directly connected to your machine"
+msgstr "No se encontraron impresoras conectadas directamente a su mĂĄquina"
+
+#: ../../printerdrake.pm_.c:198
+msgid ""
+"The following printers\n"
+"\n"
+msgstr ""
+"Las impresoras siguientes\n"
+"\n"
+
+#: ../../printerdrake.pm_.c:199
+msgid ""
+"The following printer\n"
+"\n"
+msgstr ""
+"La impresora siguiente\n"
+"\n"
+
+#: ../../printerdrake.pm_.c:201
+msgid ""
+"\n"
+"and one unknown printer are "
+msgstr ""
+"\n"
+"y una impresora desconocida estĂĄn "
+
+#: ../../printerdrake.pm_.c:203
+#, c-format
+msgid ""
+"\n"
+"and %d unknown printers are "
+msgstr ""
+"\n"
+"y %d impresoras desconocidas estĂĄn "
+
+#: ../../printerdrake.pm_.c:207
+msgid ""
+"\n"
+"are "
+msgstr ""
+"\n"
+"estĂĄn "
+
+#: ../../printerdrake.pm_.c:208
+msgid ""
+"\n"
+"is "
+msgstr ""
+"\n"
+"estĂĄ "
+
+#: ../../printerdrake.pm_.c:210
+msgid "directly connected to your system"
+msgstr "conectada directamente a su sistema"
+
+#: ../../printerdrake.pm_.c:213
+msgid ""
+"\n"
+"There is one unknown printer directly connected to your system"
+msgstr ""
+"\n"
+"Hay una impresaora desconocida conectada directamente a su sistema"
+
+#: ../../printerdrake.pm_.c:215
+#, c-format
+msgid ""
+"\n"
+"There are %d unknown printers directly connected to your system"
+msgstr ""
+"\n"
+"Hay %d impresoras desconocidas conectadas directamente a su sistema"
+
+#: ../../printerdrake.pm_.c:221
+msgid " (Make sure that all your printers are connected and turned on).\n"
+msgstr ""
+"(Debe asegurarse que todas sus impresoras estĂĄn conectadas y encendidas).\n"
+
+#: ../../printerdrake.pm_.c:235
+msgid ""
+"Do you want to enable printing on the printers mentioned above or on "
+"printers in the local network?\n"
+msgstr ""
+"ÂżDesea habilitar la impresiĂłn en las impresoras mencionadas arriba o en las "
+"impresoras en la red local?\n"
+
+#: ../../printerdrake.pm_.c:236
+msgid "Do you want to enable printing on printers in the local network?\n"
+msgstr "ÂżDesea habilitar la impresiĂłn en las impresoras en la red local?\n"
+
+#: ../../printerdrake.pm_.c:238
+msgid "Do you want to enable printing on the printers mentioned above?\n"
+msgstr "ÂżDesea habilitar la impresiĂłn en las impresoras mencionadas arriba?\n"
+
+#: ../../printerdrake.pm_.c:239
+msgid "Are you sure that you want to set up printing on this machine?\n"
+msgstr "ÂżEstĂĄ seguro que desea configurar la impresiĂłn en esta mĂĄquina?\n"
+
+#: ../../printerdrake.pm_.c:240
+#, c-format
+msgid ""
+"NOTE: Depending on the printer model and the printing system up to %d MB of "
+"additional software will be installed."
+msgstr ""
+"NOTA: Dependiendo del modelo de la impresora y del sistema de impresiĂłn, se "
+"instalarĂĄn hasta %d MB de software adicional."
+
+#: ../../printerdrake.pm_.c:269 ../../printerdrake.pm_.c:278
+#: ../../printerdrake.pm_.c:3117 ../../printerdrake.pm_.c:3242
msgid "Add a new printer"
msgstr "Añadir una impresora nueva"
-#: ../../printerdrake.pm_.c:184
+#: ../../printerdrake.pm_.c:270
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7991,7 +8305,7 @@ msgstr ""
"darle acceso a los controladores de todas las impresoras disponibles, "
"opciones del controlador y tipos de conexiĂłn de impresoras."
-#: ../../printerdrake.pm_.c:193
+#: ../../printerdrake.pm_.c:280
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -8000,7 +8314,7 @@ msgid ""
"computer, connected directly to the network or to a remote Windows machine.\n"
"\n"
"If you have printer(s) connected to this machine, Please plug it/them in on "
-"this computer and turn it/them on so that they can be auto-detected. Also "
+"this computer and turn it/them on so that it/they can be auto-detected. Also "
"your network printer(s) and you Windows machines must be connected and "
"turned on.\n"
"\n"
@@ -8031,7 +8345,34 @@ msgstr ""
"Haga clic sobre \"Siguiente\" cuando esté listo, o sobre \"Cancelar\" si "
"Usted no desea configurar sus impresoras ahora."
-#: ../../printerdrake.pm_.c:202
+#: ../../printerdrake.pm_.c:289 ../../printerdrake.pm_.c:306
+msgid ""
+"\n"
+"Welcome to the Printer Setup Wizard\n"
+"\n"
+"This wizard will help you to install your printer(s) connected to this "
+"computer.\n"
+"\n"
+"If you have printer(s) connected to this machine, Please plug it/them in on "
+"this computer and turn it/them on so that it/they can be auto-detected.\n"
+"\n"
+" Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
+"want to set up your printer(s) now."
+msgstr ""
+"\n"
+"Bienvenido al Asistente de configuraciĂłn de Impresoras\n"
+"\n"
+"Este asistente lo ayudarĂĄ a instalar sus impresoras conectadas a esta "
+"computadora o conectadas directamente a esta computadora.\n"
+"\n"
+"Si tiene impresoras conectadas a esta måquina, por favor enciéndalas para "
+"que se puedan detectar automåticamnte. También deberían estar conectadas y "
+"encendidas sus impresoras de red.\n"
+"\n"
+"Haga clic sobre \"Siguiente\" cuando esté listo, o sobre \"Cancelar\" si "
+"Usted no desea configurar sus impresoras ahora."
+
+#: ../../printerdrake.pm_.c:297
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -8040,7 +8381,7 @@ msgid ""
"computer or connected directly to the network.\n"
"\n"
"If you have printer(s) connected to this machine, Please plug it/them in on "
-"this computer and turn it/them on so that they can be auto-detected. Also "
+"this computer and turn it/them on so that it/they can be auto-detected. Also "
"your network printer(s) must be connected and turned on.\n"
"\n"
"Note that auto-detecting printers on the network takes longer than the auto-"
@@ -8068,28 +8409,28 @@ msgstr ""
"Haga clic sobre \"Siguiente\" cuando esté listo, o sobre \"Cancelar\" si "
"Usted no desea configurar sus impresoras ahora."
-#: ../../printerdrake.pm_.c:213
+#: ../../printerdrake.pm_.c:315
msgid "Auto-detect printers connected to this machine"
msgstr "Detectar automĂĄticamente las impresoras conectadas a esta mĂĄquina"
-#: ../../printerdrake.pm_.c:215
+#: ../../printerdrake.pm_.c:318
msgid "Auto-detect printers connected directly to the local network"
msgstr ""
"Detectar automĂĄticamente las impresoras conectadas directamente a la red "
"local"
-#: ../../printerdrake.pm_.c:218
+#: ../../printerdrake.pm_.c:321
msgid "Auto-detect printers connected to machines running Microsoft Windows"
msgstr ""
"Detectar automĂĄticamente las impersoras conectadas a mĂĄquinas que corren "
"Microsoft Windows"
-#: ../../printerdrake.pm_.c:245 ../../printerdrake.pm_.c:459
-#: ../../printerdrake.pm_.c:484
+#: ../../printerdrake.pm_.c:348 ../../printerdrake.pm_.c:562
+#: ../../printerdrake.pm_.c:587
msgid "Local Printer"
msgstr "Impresora local"
-#: ../../printerdrake.pm_.c:246
+#: ../../printerdrake.pm_.c:349
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -8113,49 +8454,49 @@ msgstr ""
"de impresiĂłn, ...), seleccione \"Impresora\" en la secciĂłn de \"Hardware\" "
"del Centro de control de Mandrake."
-#: ../../printerdrake.pm_.c:283 ../../printerdrake.pm_.c:474
-#: ../../printerdrake.pm_.c:683 ../../printerdrake.pm_.c:923
+#: ../../printerdrake.pm_.c:386 ../../printerdrake.pm_.c:577
+#: ../../printerdrake.pm_.c:790 ../../printerdrake.pm_.c:1030
msgid "Printer auto-detection"
msgstr "DetecciĂłn automĂĄtica de impresoras"
-#: ../../printerdrake.pm_.c:305
+#: ../../printerdrake.pm_.c:408
#, c-format
msgid ", network printer \"%s\", port %s"
msgstr ", impresora de red \"%s\", puerto %s"
-#: ../../printerdrake.pm_.c:307
+#: ../../printerdrake.pm_.c:410
#, c-format
msgid ", printer \"%s\" on SMB/Windows server \"%s\""
msgstr ", impresora \"%s\" en el servidor SMB/Windows \"%s\""
-#: ../../printerdrake.pm_.c:313
+#: ../../printerdrake.pm_.c:416
#, c-format
msgid "Detected %s"
msgstr "Detectada %s"
-#: ../../printerdrake.pm_.c:317 ../../printerdrake.pm_.c:348
-#: ../../printerdrake.pm_.c:367
+#: ../../printerdrake.pm_.c:420 ../../printerdrake.pm_.c:451
+#: ../../printerdrake.pm_.c:470
#, c-format
msgid "Printer on parallel port \\/*%s"
msgstr "Impresora en puerto paralelo \\/*%s"
-#: ../../printerdrake.pm_.c:319 ../../printerdrake.pm_.c:350
-#: ../../printerdrake.pm_.c:372
+#: ../../printerdrake.pm_.c:422 ../../printerdrake.pm_.c:453
+#: ../../printerdrake.pm_.c:475
#, c-format
msgid "USB printer \\/*%s"
msgstr "Impresora USB \\/*%s"
-#: ../../printerdrake.pm_.c:321
+#: ../../printerdrake.pm_.c:424
#, c-format
msgid "Network printer \"%s\", port %s"
msgstr "Impresora de red \"%s\", puerto %s"
-#: ../../printerdrake.pm_.c:323
+#: ../../printerdrake.pm_.c:426
#, c-format
msgid "Printer \"%s\" on SMB/Windows server \"%s\""
msgstr "Impresora \"%s\" en el servidor SMB/Windows \"%s\""
-#: ../../printerdrake.pm_.c:460
+#: ../../printerdrake.pm_.c:563
msgid ""
"No local printer found! To manually install a printer enter a device name/"
"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
@@ -8167,19 +8508,19 @@ msgstr ""
"(Puertos paralelos: /dev/lp0, /dev/lp1, ..., equivalen a LPT1:, LPT2, ..., "
"1ÂȘ impresora USB: /dev/usb/lp0, 2ÂȘ impresora USB: /dev/usb/lp1, ...)."
-#: ../../printerdrake.pm_.c:464
+#: ../../printerdrake.pm_.c:567
msgid "You must enter a device or file name!"
msgstr "Debe introducir un dispositivo un un nombre de archivo"
-#: ../../printerdrake.pm_.c:475
+#: ../../printerdrake.pm_.c:578
msgid "No printer found!"
msgstr "ÂĄNo se encontrĂł impresora alguna!"
-#: ../../printerdrake.pm_.c:485
+#: ../../printerdrake.pm_.c:588
msgid "Available printers"
msgstr "Impresoras disponibles"
-#: ../../printerdrake.pm_.c:489
+#: ../../printerdrake.pm_.c:592
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
@@ -8188,7 +8529,7 @@ msgstr ""
"quiere configurar, introduzca en la lĂ­nea de entrada un nombre de "
"dispositivo/nombre de archivo en la lĂ­nea de entrada"
-#: ../../printerdrake.pm_.c:490
+#: ../../printerdrake.pm_.c:593
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up or enter a device name/file name in the input line"
@@ -8197,7 +8538,7 @@ msgstr ""
"favor, seleccione la impresora que quiere configurar o introduzca un nombre "
"de dispositivo/nombre de archivo en la lĂ­nea de entrada"
-#: ../../printerdrake.pm_.c:492
+#: ../../printerdrake.pm_.c:595
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
@@ -8209,7 +8550,7 @@ msgstr ""
"detectĂł correctamente o si prefiere una configuraciĂłn personalizada, active "
"la \"ConfiguraciĂłn manual\"."
-#: ../../printerdrake.pm_.c:493
+#: ../../printerdrake.pm_.c:596
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
@@ -8222,7 +8563,7 @@ msgstr ""
"detectĂł correctamente o si prefiere una configuraciĂłn personalizada, active "
"la \"ConfiguraciĂłn manual\"."
-#: ../../printerdrake.pm_.c:495
+#: ../../printerdrake.pm_.c:598
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
@@ -8230,11 +8571,11 @@ msgstr ""
"Por favor, elija el puerto donde estĂĄ conectada su impresora o ingrese el "
"nombre de un dispositivo o archivo en la lĂ­nea de entrada"
-#: ../../printerdrake.pm_.c:496
+#: ../../printerdrake.pm_.c:599
msgid "Please choose the port where your printer is connected to."
msgstr "Por favor, elija el puerto al que estĂĄ conectado su impresora."
-#: ../../printerdrake.pm_.c:498
+#: ../../printerdrake.pm_.c:601
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
@@ -8242,19 +8583,19 @@ msgstr ""
"(Puertos paralelo: /dev/lp0, /dev/lp1, ..., equivalen a LPT1:, LPT2, ..., "
"1er impresora USB: /dev/usb/lp0, 2da impresora USB: /dev/usb/lp1, ...) "
-#: ../../printerdrake.pm_.c:503
+#: ../../printerdrake.pm_.c:606
msgid "You must choose/enter a printer/device!"
msgstr "ÂĄDebe elegir/ingresar una impresora o un dispositivo!"
-#: ../../printerdrake.pm_.c:523
+#: ../../printerdrake.pm_.c:626
msgid "Manual configuration"
msgstr "ConfiguraciĂłn manual"
-#: ../../printerdrake.pm_.c:577
+#: ../../printerdrake.pm_.c:680
msgid "Remote lpd Printer Options"
msgstr "Opciones de la impresora remota lpd"
-#: ../../printerdrake.pm_.c:578
+#: ../../printerdrake.pm_.c:681
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
"server and the printer name on that server."
@@ -8262,46 +8603,46 @@ msgstr ""
"Para utilizar impresora LPD remota, necesita proporcionar el nombre de host "
"del servidor de impresiĂłn y el nombre de la impresora en ese servidor."
-#: ../../printerdrake.pm_.c:579
+#: ../../printerdrake.pm_.c:682
msgid "Remote host name"
msgstr "Nombre de host del servidor remoto"
-#: ../../printerdrake.pm_.c:580
+#: ../../printerdrake.pm_.c:683
msgid "Remote printer name"
msgstr "Nombre de la impresora remota"
-#: ../../printerdrake.pm_.c:583
+#: ../../printerdrake.pm_.c:686
msgid "Remote host name missing!"
msgstr "ÂĄFalta el nombre del host remoto!"
-#: ../../printerdrake.pm_.c:587
+#: ../../printerdrake.pm_.c:690
msgid "Remote printer name missing!"
msgstr "ÂĄFalta el nombre de la impresora remota!"
-#: ../../printerdrake.pm_.c:609 ../../printerdrake.pm_.c:1119
+#: ../../printerdrake.pm_.c:712 ../../printerdrake.pm_.c:1225
#, c-format
msgid "Detected model: %s %s"
msgstr "Modelo detectado: %s %s"
-#: ../../printerdrake.pm_.c:683 ../../printerdrake.pm_.c:923
+#: ../../printerdrake.pm_.c:790 ../../printerdrake.pm_.c:1030
msgid "Scanning network..."
msgstr "Buscando en la red ..."
-#: ../../printerdrake.pm_.c:692 ../../printerdrake.pm_.c:713
+#: ../../printerdrake.pm_.c:799 ../../printerdrake.pm_.c:820
#, c-format
msgid ", printer \"%s\" on server \"%s\""
msgstr ", impresora \"%s\" en el servidor \"%s\""
-#: ../../printerdrake.pm_.c:695 ../../printerdrake.pm_.c:716
+#: ../../printerdrake.pm_.c:802 ../../printerdrake.pm_.c:823
#, c-format
msgid "Printer \"%s\" on server \"%s\""
msgstr "Impresora \"%s\" en el servidor \"%s\""
-#: ../../printerdrake.pm_.c:736
+#: ../../printerdrake.pm_.c:843
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "Opciones de la impresora SMB (Windows 9x/NT)"
-#: ../../printerdrake.pm_.c:737
+#: ../../printerdrake.pm_.c:844
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
"may be different from its TCP/IP hostname!) and possibly the IP address of "
@@ -8315,7 +8656,7 @@ msgstr ""
"cualquier otra información del nombre de usuario, contraseña y grupo de "
"trabajo que haga falta."
-#: ../../printerdrake.pm_.c:738
+#: ../../printerdrake.pm_.c:845
msgid ""
" If the desired printer was auto-detected, simply choose it from the list "
"and then add user name, password, and/or workgroup if needed."
@@ -8324,39 +8665,39 @@ msgstr ""
"la lista y luego agregue el nombre de usuario, contraseña, y/o grupo de "
"trabajo si es necesario."
-#: ../../printerdrake.pm_.c:739
+#: ../../printerdrake.pm_.c:846
msgid "SMB server host"
msgstr "MĂĄquina del servidor SMB"
-#: ../../printerdrake.pm_.c:740
+#: ../../printerdrake.pm_.c:847
msgid "SMB server IP"
msgstr "IP del servidor SMB"
-#: ../../printerdrake.pm_.c:741
+#: ../../printerdrake.pm_.c:848
msgid "Share name"
msgstr "Nombre del recurso compartido"
-#: ../../printerdrake.pm_.c:744
+#: ../../printerdrake.pm_.c:851
msgid "Workgroup"
msgstr "Grupo de trabajo"
-#: ../../printerdrake.pm_.c:746
+#: ../../printerdrake.pm_.c:853
msgid "Auto-detected"
msgstr "Detectada automĂĄticamente"
-#: ../../printerdrake.pm_.c:757
+#: ../../printerdrake.pm_.c:864
msgid "Either the server name or the server's IP must be given!"
msgstr "ÂĄDebe indicar el nombre o la direcciĂłn IP del servidor!"
-#: ../../printerdrake.pm_.c:761
+#: ../../printerdrake.pm_.c:868
msgid "Samba share name missing!"
msgstr "ÂĄNo se encuentra el nombre del recurso compartido de Samba!"
-#: ../../printerdrake.pm_.c:767
+#: ../../printerdrake.pm_.c:874
msgid "SECURITY WARNING!"
msgstr "ÂĄADVERTENCIA DE SEGURIDAD!"
-#: ../../printerdrake.pm_.c:768
+#: ../../printerdrake.pm_.c:875
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -8400,7 +8741,7 @@ msgstr ""
"conexiĂłn \"%s\" en PrinterDrake.\n"
"\n"
-#: ../../printerdrake.pm_.c:778
+#: ../../printerdrake.pm_.c:885
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -8413,7 +8754,7 @@ msgstr ""
"conexiĂłn \"%s\" en PrinterDrake.\n"
"\n"
-#: ../../printerdrake.pm_.c:781
+#: ../../printerdrake.pm_.c:888
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
@@ -8425,11 +8766,11 @@ msgstr ""
"\n"
"ÂżRealmente desea continuar configurando esta impresora como lo estĂĄ haciendo?"
-#: ../../printerdrake.pm_.c:853
+#: ../../printerdrake.pm_.c:960
msgid "NetWare Printer Options"
msgstr "Opciones de la impresora NetWare"
-#: ../../printerdrake.pm_.c:854
+#: ../../printerdrake.pm_.c:961
msgid ""
"To print on a NetWare printer, you need to provide the NetWare print server "
"name (Note! it may be different from its TCP/IP hostname!) as well as the "
@@ -8441,37 +8782,37 @@ msgstr ""
"de la mĂĄquina en TCP/IP) asĂ­ como el nombre de la cola de impresiĂłn que "
"desea usar y el nombre de usuario y la contraseña apropiados."
-#: ../../printerdrake.pm_.c:855
+#: ../../printerdrake.pm_.c:962
msgid "Printer Server"
msgstr "Servidor de impresiĂłn"
-#: ../../printerdrake.pm_.c:856
+#: ../../printerdrake.pm_.c:963
msgid "Print Queue Name"
msgstr "Nombre de la cola de impresiĂłn"
-#: ../../printerdrake.pm_.c:861
+#: ../../printerdrake.pm_.c:968
msgid "NCP server name missing!"
msgstr "ÂĄNo se encuentra el nombre del servidor NCP!"
-#: ../../printerdrake.pm_.c:865
+#: ../../printerdrake.pm_.c:972
msgid "NCP queue name missing!"
msgstr "ÂĄNo se encuentra la cola del servidor NCP!"
-#: ../../printerdrake.pm_.c:932 ../../printerdrake.pm_.c:952
+#: ../../printerdrake.pm_.c:1039 ../../printerdrake.pm_.c:1059
#, c-format
msgid ", host \"%s\", port %s"
msgstr ", host \"%s\", puerto %s"
-#: ../../printerdrake.pm_.c:935 ../../printerdrake.pm_.c:955
+#: ../../printerdrake.pm_.c:1042 ../../printerdrake.pm_.c:1062
#, c-format
msgid "Host \"%s\", port %s"
msgstr "Host \"%s\", puerto %s"
-#: ../../printerdrake.pm_.c:975
+#: ../../printerdrake.pm_.c:1082
msgid "TCP/Socket Printer Options"
msgstr "Opciones de la impresora por socket/TCP"
-#: ../../printerdrake.pm_.c:977
+#: ../../printerdrake.pm_.c:1084
msgid ""
"Choose one of the auto-detected printers from the list or enter the hostname "
"or IP and the optional port number (default is 9100) into the input fields."
@@ -8480,7 +8821,7 @@ msgstr ""
"el nombre del host o la IP y el nĂșmero de puerto opcional (9100, por "
"defecto) en los campos."
-#: ../../printerdrake.pm_.c:978
+#: ../../printerdrake.pm_.c:1085
msgid ""
"To print to a TCP or socket printer, you need to provide the host name or IP "
"of the printer and optionally the port number (default is 9100). On HP "
@@ -8493,19 +8834,19 @@ msgstr ""
"por lo general es 9100, en otros servidores puede variar. Consulte el manual "
"de su hardware."
-#: ../../printerdrake.pm_.c:983
+#: ../../printerdrake.pm_.c:1090
msgid "Printer host name or IP missing!"
msgstr "ÂĄFalta el nombre de host o la IP de la impresora!"
-#: ../../printerdrake.pm_.c:1005
+#: ../../printerdrake.pm_.c:1112
msgid "Printer host name or IP"
msgstr "Nombre de host o IP de la impresora"
-#: ../../printerdrake.pm_.c:1054 ../../printerdrake.pm_.c:1056
+#: ../../printerdrake.pm_.c:1160 ../../printerdrake.pm_.c:1162
msgid "Printer Device URI"
msgstr "URI del dispositivo de impresiĂłn"
-#: ../../printerdrake.pm_.c:1055
+#: ../../printerdrake.pm_.c:1161
msgid ""
"You can specify directly the URI to access the printer. The URI must fulfill "
"either the CUPS or the Foomatic specifications. Note that not all URI types "
@@ -8515,11 +8856,11 @@ msgstr ""
"debe cumplir con las especificaciones Foomatic o CUPS. Recuerde que no todos "
"los sistemas de impresiĂłn admiten URIs."
-#: ../../printerdrake.pm_.c:1070
+#: ../../printerdrake.pm_.c:1176
msgid "A valid URI must be entered!"
msgstr "ÂĄDebe introducir un URI vĂĄlido!"
-#: ../../printerdrake.pm_.c:1402
+#: ../../printerdrake.pm_.c:1515
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
"Location fields do not need to be filled in. They are comments for the users."
@@ -8528,27 +8869,27 @@ msgstr ""
"qué rellenar los campos Descripción ni Ubicación. Son comentarios para los "
"usuarios."
-#: ../../printerdrake.pm_.c:1403
+#: ../../printerdrake.pm_.c:1516
msgid "Name of printer"
msgstr "Nombre de la impresora"
-#: ../../printerdrake.pm_.c:1405
+#: ../../printerdrake.pm_.c:1518
msgid "Location"
msgstr "UbicaciĂłn"
-#: ../../printerdrake.pm_.c:1416 ../../printerdrake.pm_.c:1536
+#: ../../printerdrake.pm_.c:1530 ../../printerdrake.pm_.c:1652
msgid "Reading printer database..."
msgstr "Leyendo base de datos de impresoras ..."
-#: ../../printerdrake.pm_.c:1419
+#: ../../printerdrake.pm_.c:1534
msgid "Preparing printer database..."
msgstr "Preparando base de datos de impresoras ..."
-#: ../../printerdrake.pm_.c:1516
+#: ../../printerdrake.pm_.c:1631
msgid "Your printer model"
msgstr "El modelo de su impresora"
-#: ../../printerdrake.pm_.c:1517
+#: ../../printerdrake.pm_.c:1632
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -8575,24 +8916,24 @@ msgstr ""
"\n"
"%s"
-#: ../../printerdrake.pm_.c:1522 ../../printerdrake.pm_.c:1525
+#: ../../printerdrake.pm_.c:1637 ../../printerdrake.pm_.c:1640
msgid "The model is correct"
msgstr "El modelo es correcto"
-#: ../../printerdrake.pm_.c:1523 ../../printerdrake.pm_.c:1524
-#: ../../printerdrake.pm_.c:1527
+#: ../../printerdrake.pm_.c:1638 ../../printerdrake.pm_.c:1639
+#: ../../printerdrake.pm_.c:1642
msgid "Select model manually"
msgstr "Seleccionar el modelo manualmente"
-#: ../../printerdrake.pm_.c:1543
+#: ../../printerdrake.pm_.c:1659
msgid "Printer model selection"
msgstr "SelecciĂłn del modelo de impresora"
-#: ../../printerdrake.pm_.c:1544
+#: ../../printerdrake.pm_.c:1660
msgid "Which printer model do you have?"
msgstr "¿Qué modelo de impresora tiene?"
-#: ../../printerdrake.pm_.c:1545
+#: ../../printerdrake.pm_.c:1661
msgid ""
"\n"
"\n"
@@ -8607,7 +8948,7 @@ msgstr ""
"si el cursor estĂĄ sobre un modelo equivocado o si estĂĄ en \"Impresora en "
"crudo\"."
-#: ../../printerdrake.pm_.c:1548
+#: ../../printerdrake.pm_.c:1664
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
@@ -8615,11 +8956,11 @@ msgstr ""
"Si no se lista su impresora, elija una compatible (vea el manual de la "
"misma) o una simliar."
-#: ../../printerdrake.pm_.c:1624
+#: ../../printerdrake.pm_.c:1741
msgid "OKI winprinter configuration"
msgstr "ConfiguraciĂłn de impresora de windows OKI"
-#: ../../printerdrake.pm_.c:1625
+#: ../../printerdrake.pm_.c:1742
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -8636,11 +8977,11 @@ msgstr ""
"impresora no funcionarĂĄ. El controlador ignorarĂĄ la configuraciĂłn del tipo "
"de conexiĂłn."
-#: ../../printerdrake.pm_.c:1668 ../../printerdrake.pm_.c:1695
+#: ../../printerdrake.pm_.c:1785 ../../printerdrake.pm_.c:1812
msgid "Lexmark inkjet configuration"
msgstr "ConfiguraciĂłn de impresora de inyecciĂłn de tinta Lexmark"
-#: ../../printerdrake.pm_.c:1669
+#: ../../printerdrake.pm_.c:1786
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
"no printers on remote machines or print server boxes. Please connect your "
@@ -8652,17 +8993,17 @@ msgstr ""
"de impresiĂłn. Por favor, conecte su impresora a un puerto local o "
"configĂșrelo en la mĂĄquina a la que estĂĄ conectada."
-#: ../../printerdrake.pm_.c:1696
+#: ../../printerdrake.pm_.c:1813
+#, fuzzy
msgid ""
"To be able to print with your Lexmark inkjet and this configuration, you "
"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
-"com/). Go to the US site and click on the \"Drivers\" button. Then choose "
-"your model and afterwards \"Linux\" as operating system. The drivers come as "
-"RPM packages or shell scripts with interactive graphical installation. You "
-"do not need to do this configuration by the graphical frontends. Cancel "
-"directly after the license agreement. Then print printhead alignment pages "
-"with \"lexmarkmaintain\" and adjust the head alignment settings with this "
-"program."
+"com/). Click on the \"Drivers\" link. Then choose your model and afterwards "
+"\"Linux\" as operating system. The drivers come as RPM packages or shell "
+"scripts with interactive graphical installation. You do not need to do this "
+"configuration by the graphical frontends. Cancel directly after the license "
+"agreement. Then print printhead alignment pages with \"lexmarkmaintain\" and "
+"adjust the head alignment settings with this program."
msgstr ""
"Para permitir imprimir con su impresora de inyecciĂłn de tinta Lexmark y esta "
"configuraciĂłn, necesita los controladores de impresoras de inyecciĂłn de "
@@ -8675,7 +9016,34 @@ msgstr ""
"pĂĄginas alineadas con la cabeza de impresiĂłn \"lexmarkmaintain\" y ajuste la "
"configuraciĂłn de la alineaciĂłn de la cabeza con este programa."
-#: ../../printerdrake.pm_.c:1912
+#: ../../printerdrake.pm_.c:1816
+msgid "GDI Laser Printer using the Zenographics ZJ-Stream Format"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:1817
+msgid ""
+"Your printer belongs to the group of GDI laser printers (winprinters) sold "
+"by different manufacturers which uses the Zenographics ZJ-stream raster "
+"format for the data sent to the printer. The driver for these printers is "
+"still in a very early development stage and so it will perhaps not always "
+"work properly. Especially it is possible that the printer only works when "
+"you choose the A4 paper size.\n"
+"\n"
+"Some of these printers, as the HP LaserJet 1000, for which this driver was "
+"originally created, need their firmware to be uploaded to them after they "
+"are turned on. In the case of the HP LaserJet 1000 you have to search the "
+"printer's Windows driver CD or your Windows partition for the file "
+"\"sihp1000.img\" and upload the file to the printer with one of the "
+"following commands:\n"
+"\n"
+" lpr -o raw sihp1000.img\n"
+" cat sihp1000.img > /dev/usb/lp0\n"
+"\n"
+"The first command can be given by any normal user, the second must be given "
+"as root. After having done so you can print normally.\n"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:2040
msgid ""
"Printer default settings\n"
"\n"
@@ -8692,22 +9060,22 @@ msgstr ""
"configurados correctamente. Note que una calidad de impresiĂłn o resoluciĂłn "
"extremadamente alta puede ser bastante lenta."
-#: ../../printerdrake.pm_.c:1921
+#: ../../printerdrake.pm_.c:2049
#, c-format
msgid "Option %s must be an integer number!"
msgstr "ÂĄLa opciĂłn %s debe ser un nĂșmero entero!"
-#: ../../printerdrake.pm_.c:1925
+#: ../../printerdrake.pm_.c:2053
#, c-format
msgid "Option %s must be a number!"
msgstr "ÂĄLa opciĂłn %s debe ser un nĂșmero!"
-#: ../../printerdrake.pm_.c:1930
+#: ../../printerdrake.pm_.c:2058
#, c-format
msgid "Option %s out of range!"
msgstr "ÂĄLa opciĂłn %s estĂĄ fuera de rango"
-#: ../../printerdrake.pm_.c:1969
+#: ../../printerdrake.pm_.c:2097
#, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
@@ -8716,11 +9084,11 @@ msgstr ""
"ÂżQuiere configurar esta impresora (\"%s\")\n"
"como la impresora predeterminada?"
-#: ../../printerdrake.pm_.c:1986
+#: ../../printerdrake.pm_.c:2120
msgid "Test pages"
msgstr "PĂĄginas de prueba"
-#: ../../printerdrake.pm_.c:1987
+#: ../../printerdrake.pm_.c:2121
msgid ""
"Please select the test pages you want to print.\n"
"Note: the photo test page can take a rather long time to get printed and on "
@@ -8732,39 +9100,39 @@ msgstr ""
"incluso en impresoras lĂĄser con muy poca memoria puede que no salga. En la "
"mayorĂ­a de los casos, basta con imprimir la pĂĄgina de prueba estĂĄndar."
-#: ../../printerdrake.pm_.c:1991
+#: ../../printerdrake.pm_.c:2125
msgid "No test pages"
msgstr "No hay pĂĄginas de prueba"
-#: ../../printerdrake.pm_.c:1992
+#: ../../printerdrake.pm_.c:2126
msgid "Print"
msgstr "Imprimir"
-#: ../../printerdrake.pm_.c:1994
+#: ../../printerdrake.pm_.c:2183
msgid "Standard test page"
msgstr "PĂĄgina de prueba estĂĄndar"
-#: ../../printerdrake.pm_.c:1997
+#: ../../printerdrake.pm_.c:2186
msgid "Alternative test page (Letter)"
msgstr "PĂĄgina de prueba alternativa (Letter)"
-#: ../../printerdrake.pm_.c:2000
+#: ../../printerdrake.pm_.c:2189
msgid "Alternative test page (A4)"
msgstr "PĂĄgina de prueba alternativa (A4)"
-#: ../../printerdrake.pm_.c:2002
+#: ../../printerdrake.pm_.c:2191
msgid "Photo test page"
msgstr "PĂĄgina de prueba de foto"
-#: ../../printerdrake.pm_.c:2006
+#: ../../printerdrake.pm_.c:2195
msgid "Do not print any test page"
msgstr "No imprimir ninguna pĂĄgina de prueba"
-#: ../../printerdrake.pm_.c:2014 ../../printerdrake.pm_.c:2166
+#: ../../printerdrake.pm_.c:2204 ../../printerdrake.pm_.c:2357
msgid "Printing test page(s)..."
msgstr "Imprimir la(s) pĂĄgina(s) de prueba..."
-#: ../../printerdrake.pm_.c:2039
+#: ../../printerdrake.pm_.c:2229
#, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -8779,7 +9147,7 @@ msgstr ""
"%s\n"
"\n"
-#: ../../printerdrake.pm_.c:2043
+#: ../../printerdrake.pm_.c:2233
msgid ""
"Test page(s) have been sent to the printer.\n"
"It may take some time before the printer starts.\n"
@@ -8787,15 +9155,15 @@ msgstr ""
"La(s) pĂĄgina(s) de prueba se enviaron al demonio de impresiĂłn.\n"
"Puede que pase algo de tiempo antes de que comience la impresiĂłn.\n"
-#: ../../printerdrake.pm_.c:2050
+#: ../../printerdrake.pm_.c:2240
msgid "Did it work properly?"
msgstr "ÂżFuncionĂł adecuadamente?"
-#: ../../printerdrake.pm_.c:2072 ../../printerdrake.pm_.c:3191
+#: ../../printerdrake.pm_.c:2262 ../../printerdrake.pm_.c:3416
msgid "Raw printer"
msgstr "Impresora en crudo"
-#: ../../printerdrake.pm_.c:2098
+#: ../../printerdrake.pm_.c:2288
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -8809,7 +9177,7 @@ msgstr ""
"permiten seleccionar la impresora y modificar las opciones de configuraciĂłn "
"fĂĄcilmente.\n"
-#: ../../printerdrake.pm_.c:2100
+#: ../../printerdrake.pm_.c:2290
msgid ""
"These commands you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications, but here do not supply the file name "
@@ -8820,8 +9188,8 @@ msgstr ""
"nombre del archivo porque el archivo a imprimir lo proporciona la "
"aplicaciĂłn.\n"
-#: ../../printerdrake.pm_.c:2103 ../../printerdrake.pm_.c:2120
-#: ../../printerdrake.pm_.c:2130
+#: ../../printerdrake.pm_.c:2293 ../../printerdrake.pm_.c:2310
+#: ../../printerdrake.pm_.c:2320
#, c-format
msgid ""
"\n"
@@ -8835,7 +9203,7 @@ msgstr ""
"configuraciones deseadas a la lĂ­nea de comando, por ejemplo \"%s <archivo>"
"\". "
-#: ../../printerdrake.pm_.c:2106 ../../printerdrake.pm_.c:2146
+#: ../../printerdrake.pm_.c:2296 ../../printerdrake.pm_.c:2336
#, c-format
msgid ""
"To know about the options available for the current printer read either the "
@@ -8846,7 +9214,7 @@ msgstr ""
"lista que se muestra debajo o haga clic sobre el botĂłn \"Imprimir lista de "
"opciones\".%s%s\n"
-#: ../../printerdrake.pm_.c:2110
+#: ../../printerdrake.pm_.c:2300
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
@@ -8854,7 +9222,7 @@ msgstr ""
"AquĂ­ tiene una lista de las opciones disponibles para la impresora actual:\n"
"\n"
-#: ../../printerdrake.pm_.c:2115 ../../printerdrake.pm_.c:2125
+#: ../../printerdrake.pm_.c:2305 ../../printerdrake.pm_.c:2315
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
@@ -8863,8 +9231,8 @@ msgstr ""
"Para imprimir un archivo desde la lĂ­nea de comando (ventana de terminal) use "
"el comando \"%s <archivo>\".\n"
-#: ../../printerdrake.pm_.c:2117 ../../printerdrake.pm_.c:2127
-#: ../../printerdrake.pm_.c:2137
+#: ../../printerdrake.pm_.c:2307 ../../printerdrake.pm_.c:2317
+#: ../../printerdrake.pm_.c:2327
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
@@ -8875,7 +9243,7 @@ msgstr ""
"del archivo porque el nombre del archivo a imprimir lo proporciona la "
"aplicaciĂłn.\n"
-#: ../../printerdrake.pm_.c:2122 ../../printerdrake.pm_.c:2132
+#: ../../printerdrake.pm_.c:2312 ../../printerdrake.pm_.c:2322
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
@@ -8883,7 +9251,7 @@ msgstr ""
"Para obtener una lista de las opciones disponibles para la impresora actual, "
"haga clic en el botĂłn \"Imprimir lista de opciones\"."
-#: ../../printerdrake.pm_.c:2135
+#: ../../printerdrake.pm_.c:2325
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
@@ -8892,7 +9260,7 @@ msgstr ""
"Para imprimir un archivo desde la lĂ­nea de comando (ventana de terminal) use "
"el comando \"%s <archivo>\" o \"%s <archivo>\".\n"
-#: ../../printerdrake.pm_.c:2139
+#: ../../printerdrake.pm_.c:2329
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -8908,7 +9276,7 @@ msgstr ""
"detiene todos los trabajos de impresiĂłn inmediatamente cuando hace clic en "
"Ă©l. Esto es Ăștil, por ejemplo, para atascos de papel.\n"
-#: ../../printerdrake.pm_.c:2143
+#: ../../printerdrake.pm_.c:2333
#, c-format
msgid ""
"\n"
@@ -8921,40 +9289,40 @@ msgstr ""
"configuración para un trabajo de impresión particular. Simplemente añada las "
"opciones deseadas a la lĂ­nea de comando, por ejemplo \"%s <archivo>\".\n"
-#: ../../printerdrake.pm_.c:2153
+#: ../../printerdrake.pm_.c:2343
#, c-format
msgid "Printing/Scanning/Photo Cards on \"%s\""
msgstr "Tarjetas de Impresora/Escaner/Foto en \"%s\""
-#: ../../printerdrake.pm_.c:2154
+#: ../../printerdrake.pm_.c:2344
#, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "Imprimiendo/Escaneando en \"%s\""
-#: ../../printerdrake.pm_.c:2156
+#: ../../printerdrake.pm_.c:2346
#, c-format
msgid "Printing/Photo Card Access on \"%s\""
msgstr "Acceso de tarjetas de Impresora/Foto en \"%s\""
-#: ../../printerdrake.pm_.c:2157
+#: ../../printerdrake.pm_.c:2347
#, c-format
msgid "Printing on the printer \"%s\""
msgstr "Imprimiendo en la impresora \"%s\""
-#: ../../printerdrake.pm_.c:2160 ../../printerdrake.pm_.c:2163
-#: ../../printerdrake.pm_.c:2164 ../../printerdrake.pm_.c:2165
-#: ../../printerdrake.pm_.c:3175 ../../standalone/drakTermServ_.c:248
-#: ../../standalone/drakbackup_.c:1485 ../../standalone/drakbackup_.c:3530
-#: ../../standalone/drakbug_.c:129 ../../standalone/drakfont_.c:705
+#: ../../printerdrake.pm_.c:2350 ../../printerdrake.pm_.c:2353
+#: ../../printerdrake.pm_.c:2354 ../../printerdrake.pm_.c:2355
+#: ../../printerdrake.pm_.c:3400 ../../standalone/drakTermServ_.c:248
+#: ../../standalone/drakbackup_.c:1560 ../../standalone/drakbackup_.c:4208
+#: ../../standalone/drakbug_.c:130 ../../standalone/drakfont_.c:705
#: ../../standalone/drakfont_.c:1014
msgid "Close"
msgstr "Cerrar"
-#: ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2353
msgid "Print option list"
msgstr "Imprimir lista de opciones"
-#: ../../printerdrake.pm_.c:2182
+#: ../../printerdrake.pm_.c:2373
#, c-format
msgid ""
"Your multi-function device was configured automatically to be able to scan. "
@@ -8977,7 +9345,7 @@ msgstr ""
"\n"
"ÂĄNo utilice \"scannerdrake\" para este dispositivo!"
-#: ../../printerdrake.pm_.c:2202
+#: ../../printerdrake.pm_.c:2394
msgid ""
"Your printer was configured automatically to give you access to the photo "
"card drives from your PC. Now you can access your photo cards using the "
@@ -9000,17 +9368,17 @@ msgstr ""
"cambiar entre las letras de unidad con el campo en la esquina superior "
"derecha de la lista de archivos."
-#: ../../printerdrake.pm_.c:2223 ../../printerdrake.pm_.c:2673
-#: ../../printerdrake.pm_.c:2945
+#: ../../printerdrake.pm_.c:2416 ../../printerdrake.pm_.c:2875
+#: ../../printerdrake.pm_.c:3170
msgid "Reading printer data..."
msgstr "Leyendo los datos de la impresora ..."
-#: ../../printerdrake.pm_.c:2243 ../../printerdrake.pm_.c:2271
-#: ../../printerdrake.pm_.c:2306
+#: ../../printerdrake.pm_.c:2436 ../../printerdrake.pm_.c:2464
+#: ../../printerdrake.pm_.c:2499
msgid "Transfer printer configuration"
msgstr "Transferir configuraciĂłn de la impresora"
-#: ../../printerdrake.pm_.c:2244
+#: ../../printerdrake.pm_.c:2437
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -9026,7 +9394,7 @@ msgstr ""
"transfieren.\n"
"Debido a las siguientes razones no todas las colas se pueden transferir:\n"
-#: ../../printerdrake.pm_.c:2247
+#: ../../printerdrake.pm_.c:2440
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
@@ -9034,7 +9402,7 @@ msgstr ""
"CUPS no soporta impresoras en servidores Novell o impresoras que envĂ­an los "
"datos en un comando formado libremente.\n"
-#: ../../printerdrake.pm_.c:2249
+#: ../../printerdrake.pm_.c:2442
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
@@ -9042,11 +9410,11 @@ msgstr ""
"PDQ sĂłlo soporta impresoras locales, impresoras LPD remotas, e impresoras "
"Socket/TCP.\n"
-#: ../../printerdrake.pm_.c:2251
+#: ../../printerdrake.pm_.c:2444
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr "LPD y LPRng no soportan impresoras IPP.\n"
-#: ../../printerdrake.pm_.c:2253
+#: ../../printerdrake.pm_.c:2446
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
@@ -9054,7 +9422,7 @@ msgstr ""
"AdemĂĄs, las colas no creadas con este programa o con \"foomatic-configure\" "
"no se pueden transferir."
-#: ../../printerdrake.pm_.c:2254
+#: ../../printerdrake.pm_.c:2447
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
@@ -9064,7 +9432,7 @@ msgstr ""
"Tampoco se pueden transferir las impresoras configuradas con los archivos "
"PPD provistos por sus fabricantes o con controladores CUPS nativos."
-#: ../../printerdrake.pm_.c:2255
+#: ../../printerdrake.pm_.c:2448
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
@@ -9074,15 +9442,15 @@ msgstr ""
"Marque las impresoras que desea transferir y haga clic \n"
"sobre \"Transferir\"."
-#: ../../printerdrake.pm_.c:2258
+#: ../../printerdrake.pm_.c:2451
msgid "Do not transfer printers"
msgstr "No transferir impresoras"
-#: ../../printerdrake.pm_.c:2259 ../../printerdrake.pm_.c:2276
+#: ../../printerdrake.pm_.c:2452 ../../printerdrake.pm_.c:2469
msgid "Transfer"
msgstr "Transferir"
-#: ../../printerdrake.pm_.c:2272
+#: ../../printerdrake.pm_.c:2465
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -9093,13 +9461,13 @@ msgstr ""
"Haga clic sobre \"Transferir\" para sobre-escribirla.\n"
"También puede ingresar un nombre nuevo o saltear esta impresora."
-#: ../../printerdrake.pm_.c:2280
+#: ../../printerdrake.pm_.c:2473
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr ""
"El nombre de la impresora sĂłlo deberĂ­a contener letras, nĂșmeros y el guiĂłn "
"bajo"
-#: ../../printerdrake.pm_.c:2285
+#: ../../printerdrake.pm_.c:2478
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
@@ -9108,16 +9476,16 @@ msgstr ""
"La impresora \"%s\" ya existe,\n"
"Âżrealmente desea sobre-escribir la configuraciĂłn de la misma?"
-#: ../../printerdrake.pm_.c:2293
+#: ../../printerdrake.pm_.c:2486
msgid "New printer name"
msgstr "Nuevo nombre de la impresora"
-#: ../../printerdrake.pm_.c:2296
+#: ../../printerdrake.pm_.c:2489
#, c-format
msgid "Transferring %s..."
msgstr "Transfiriendo %s ..."
-#: ../../printerdrake.pm_.c:2307
+#: ../../printerdrake.pm_.c:2500
#, c-format
msgid ""
"You have transferred your former default printer (\"%s\"), Should it be also "
@@ -9126,29 +9494,29 @@ msgstr ""
"Ha transferido su impresora por defecto anterior (\"%s\"), ÂżDeberĂ­a ser "
"también la impresora por defecto bajo el nuevo sistema de impresión %s?"
-#: ../../printerdrake.pm_.c:2316
+#: ../../printerdrake.pm_.c:2510
msgid "Refreshing printer data..."
msgstr "Refrescando datos de impresora ..."
-#: ../../printerdrake.pm_.c:2324 ../../printerdrake.pm_.c:2395
-#: ../../printerdrake.pm_.c:2407
+#: ../../printerdrake.pm_.c:2518 ../../printerdrake.pm_.c:2590
+#: ../../printerdrake.pm_.c:2602
msgid "Configuration of a remote printer"
msgstr "ConfiguraciĂłn de una impresora remota"
-#: ../../printerdrake.pm_.c:2325
+#: ../../printerdrake.pm_.c:2519
msgid "Starting network..."
msgstr "Iniciando la red ..."
-#: ../../printerdrake.pm_.c:2359 ../../printerdrake.pm_.c:2363
-#: ../../printerdrake.pm_.c:2365
+#: ../../printerdrake.pm_.c:2554 ../../printerdrake.pm_.c:2558
+#: ../../printerdrake.pm_.c:2560
msgid "Configure the network now"
msgstr "Configurar la red ahora"
-#: ../../printerdrake.pm_.c:2360
+#: ../../printerdrake.pm_.c:2555
msgid "Network functionality not configured"
msgstr "Funcionalidad de red no configurada"
-#: ../../printerdrake.pm_.c:2361
+#: ../../printerdrake.pm_.c:2556
msgid ""
"You are going to configure a remote printer. This needs working network "
"access, but your network is not configured yet. If you go on without network "
@@ -9160,11 +9528,11 @@ msgstr ""
"configuraciĂłn de red, no podrĂĄ utilizar la impresoara que estĂĄ configurando "
"ahora. ÂżCĂłmo desea proceder?"
-#: ../../printerdrake.pm_.c:2364
+#: ../../printerdrake.pm_.c:2559
msgid "Go on without configuring the network"
msgstr "Continuar sin configurar la red"
-#: ../../printerdrake.pm_.c:2397
+#: ../../printerdrake.pm_.c:2592
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -9180,7 +9548,7 @@ msgstr ""
"impresora, también utilizando el Centro de Control de Mandrake, sección "
"\"Hardware\"/\"Impresora\"."
-#: ../../printerdrake.pm_.c:2398
+#: ../../printerdrake.pm_.c:2593
msgid ""
"The network access was not running and could not be started. Please check "
"your configuration and your hardware. Then try to configure your remote "
@@ -9190,24 +9558,24 @@ msgstr ""
"verifique su configuraciĂłn y su hardware. Luego, intente configurar su "
"impresora remota de nuevo."
-#: ../../printerdrake.pm_.c:2408
+#: ../../printerdrake.pm_.c:2603
msgid "Restarting printing system..."
msgstr "Reiniciando el sistema de impresiĂłn ..."
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2641
msgid "high"
msgstr "Alta"
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2641
msgid "paranoid"
msgstr "Paranoica"
-#: ../../printerdrake.pm_.c:2447
+#: ../../printerdrake.pm_.c:2642
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr "Instalando un sistema de impresiĂłn en el nivel de seguridad %s"
-#: ../../printerdrake.pm_.c:2448
+#: ../../printerdrake.pm_.c:2643
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -9232,11 +9600,11 @@ msgstr ""
"\n"
"ÂżSeguro que desea configurar la impresiĂłn para esta mĂĄquina?"
-#: ../../printerdrake.pm_.c:2480
+#: ../../printerdrake.pm_.c:2675
msgid "Starting the printing system at boot time"
msgstr "Iniciar el sistema de impresiĂłn al arrancar"
-#: ../../printerdrake.pm_.c:2481
+#: ../../printerdrake.pm_.c:2676
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -9259,75 +9627,71 @@ msgstr ""
"ÂżDesea volver a activar el inicio automĂĄtico de la impresiĂłn cuando el "
"sistema se vuelva a encender?"
-#: ../../printerdrake.pm_.c:2504 ../../printerdrake.pm_.c:2544
-#: ../../printerdrake.pm_.c:2581 ../../printerdrake.pm_.c:2621
-#: ../../printerdrake.pm_.c:2733
+#: ../../printerdrake.pm_.c:2700 ../../printerdrake.pm_.c:2741
+#: ../../printerdrake.pm_.c:2780 ../../printerdrake.pm_.c:2822
+#: ../../printerdrake.pm_.c:2943
msgid "Checking installed software..."
msgstr "Verificando software instalado..."
-#: ../../printerdrake.pm_.c:2548
+#: ../../printerdrake.pm_.c:2746
msgid "Removing LPRng..."
msgstr "Quitando LPRng..."
-#: ../../printerdrake.pm_.c:2585
+#: ../../printerdrake.pm_.c:2785
msgid "Removing LPD..."
msgstr "Quitando LPD..."
-#: ../../printerdrake.pm_.c:2657
+#: ../../printerdrake.pm_.c:2858
msgid "Select Printer Spooler"
msgstr "Seleccione sistema de impresiĂłn (spooler)"
-#: ../../printerdrake.pm_.c:2658
+#: ../../printerdrake.pm_.c:2859
msgid "Which printing system (spooler) do you want to use?"
msgstr "¿Qué sistema de impresión (spooler) desea usar?"
-#: ../../printerdrake.pm_.c:2691
+#: ../../printerdrake.pm_.c:2895
#, c-format
msgid "Configuring printer \"%s\"..."
msgstr "Configurando la impresora \"%s\" ..."
-#: ../../printerdrake.pm_.c:2704
+#: ../../printerdrake.pm_.c:2909
msgid "Installing Foomatic..."
msgstr "Instalando Foomatic ..."
-#: ../../printerdrake.pm_.c:2769 ../../printerdrake.pm_.c:2808
-#: ../../printerdrake.pm_.c:3192 ../../printerdrake.pm_.c:3262
+#: ../../printerdrake.pm_.c:2979 ../../printerdrake.pm_.c:3020
+#: ../../printerdrake.pm_.c:3417 ../../printerdrake.pm_.c:3490
msgid "Printer options"
msgstr "Opciones de la impresora"
-#: ../../printerdrake.pm_.c:2778
-msgid "Preparing PrinterDrake..."
-msgstr "Preparando PrinterDrake ..."
+#: ../../printerdrake.pm_.c:2989
+msgid "Preparing Printerdrake..."
+msgstr "Preparando a Printerdrake ..."
-#: ../../printerdrake.pm_.c:2795 ../../printerdrake.pm_.c:3349
+#: ../../printerdrake.pm_.c:3007 ../../printerdrake.pm_.c:3580
msgid "Configuring applications..."
msgstr "Configurando las aplicaciones..."
-#: ../../printerdrake.pm_.c:2815
+#: ../../printerdrake.pm_.c:3027
msgid "Would you like to configure printing?"
msgstr "ÂżDesea configurar la impresiĂłn?"
-#: ../../printerdrake.pm_.c:2827
+#: ../../printerdrake.pm_.c:3039
msgid "Printing system: "
msgstr "Sistema de impresiĂłn: "
-#: ../../printerdrake.pm_.c:2875
-msgid "Printerdrake"
-msgstr "Printerdrake"
-
-#: ../../printerdrake.pm_.c:2879
+#: ../../printerdrake.pm_.c:3099
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; to view information about it; "
"or to make a printer on a remote CUPS server available for Star Office/"
-"OpenOffice.org."
+"OpenOffice.org/GIMP."
msgstr ""
"EstĂĄn configuradas las impresoras siguientes. Haga doble clic sobre una para "
"cambiar sus parĂĄmetros; para hacerla la predeterminada; para ver informaciĂłn "
"acerca de la misma o para hacer que una impresora en un servidor CUPS remoto "
-"esté disponible para Star Office/OpenOffice.org."
+"esté disponible para Star Office/OpenOffice.org/GIMP."
-#: ../../printerdrake.pm_.c:2880
+#: ../../printerdrake.pm_.c:3100
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; or to view information about "
@@ -9337,30 +9701,30 @@ msgstr ""
"ellas para modificarla, para configurarla como predeterminada, o para "
"obtener informaciĂłn sobre la misma."
-#: ../../printerdrake.pm_.c:2906
+#: ../../printerdrake.pm_.c:3127
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr ""
"Refrescar la lista de impresoras (para visualizar todas las impresoras CUPS "
"remotas)"
-#: ../../printerdrake.pm_.c:2924
+#: ../../printerdrake.pm_.c:3145
msgid "Change the printing system"
msgstr "Cambiar el sistema de impresiĂłn"
-#: ../../printerdrake.pm_.c:2929 ../../standalone/drakconnect_.c:277
+#: ../../printerdrake.pm_.c:3150 ../../standalone/drakconnect_.c:277
msgid "Normal Mode"
msgstr "Modo normal"
-#: ../../printerdrake.pm_.c:3085 ../../printerdrake.pm_.c:3135
-#: ../../printerdrake.pm_.c:3343
+#: ../../printerdrake.pm_.c:3310 ../../printerdrake.pm_.c:3360
+#: ../../printerdrake.pm_.c:3573
msgid "Do you want to configure another printer?"
msgstr "ÂżDesea configurar otra impresora?"
-#: ../../printerdrake.pm_.c:3170
+#: ../../printerdrake.pm_.c:3395
msgid "Modify printer configuration"
msgstr "Modificar configuraciĂłn de la impresora"
-#: ../../printerdrake.pm_.c:3172
+#: ../../printerdrake.pm_.c:3397
#, c-format
msgid ""
"Printer %s\n"
@@ -9369,104 +9733,108 @@ msgstr ""
"Impresora %s\n"
"¿Qué desea modificar de esta impresora?"
-#: ../../printerdrake.pm_.c:3176
+#: ../../printerdrake.pm_.c:3401
msgid "Do it!"
msgstr "ÂĄHacerlo!"
-#: ../../printerdrake.pm_.c:3181 ../../printerdrake.pm_.c:3236
+#: ../../printerdrake.pm_.c:3406 ../../printerdrake.pm_.c:3461
msgid "Printer connection type"
msgstr "Tipo de conexiĂłn de la impresora"
-#: ../../printerdrake.pm_.c:3182 ../../printerdrake.pm_.c:3240
+#: ../../printerdrake.pm_.c:3407 ../../printerdrake.pm_.c:3465
msgid "Printer name, description, location"
msgstr "Nombre de la impresora, descripciĂłn, ubicaciĂłn"
-#: ../../printerdrake.pm_.c:3184 ../../printerdrake.pm_.c:3255
+#: ../../printerdrake.pm_.c:3409 ../../printerdrake.pm_.c:3483
msgid "Printer manufacturer, model, driver"
msgstr "Fabricante de la impresora, modelo, controlador"
-#: ../../printerdrake.pm_.c:3185 ../../printerdrake.pm_.c:3256
+#: ../../printerdrake.pm_.c:3410 ../../printerdrake.pm_.c:3484
msgid "Printer manufacturer, model"
msgstr "Fabricante de la impresora, modelo"
-#: ../../printerdrake.pm_.c:3194 ../../printerdrake.pm_.c:3266
+#: ../../printerdrake.pm_.c:3419 ../../printerdrake.pm_.c:3494
msgid "Set this printer as the default"
msgstr "Poner esta impresora como predeterminada"
-#: ../../printerdrake.pm_.c:3196 ../../printerdrake.pm_.c:3271
-msgid "Add this printer to Star Office/OpenOffice.org"
-msgstr "Agregar esta impresora a Star Office/OpenOffice.org"
+#: ../../printerdrake.pm_.c:3421 ../../printerdrake.pm_.c:3499
+msgid "Add this printer to Star Office/OpenOffice.org/GIMP"
+msgstr "Agregar esta impresora a Star Office/OpenOffice.org/GIMP"
-#: ../../printerdrake.pm_.c:3197 ../../printerdrake.pm_.c:3280
-msgid "Remove this printer from Star Office/OpenOffice.org"
-msgstr "Quitar esta impresora de Star Office/OpenOffice.org"
+#: ../../printerdrake.pm_.c:3422 ../../printerdrake.pm_.c:3508
+msgid "Remove this printer from Star Office/OpenOffice.org/GIMP"
+msgstr "Quitar esta impresora de Star Office/OpenOffice.org/GIMP"
-#: ../../printerdrake.pm_.c:3198 ../../printerdrake.pm_.c:3289
+#: ../../printerdrake.pm_.c:3423 ../../printerdrake.pm_.c:3517
msgid "Print test pages"
msgstr "Imprimir la(s) pĂĄgina(s) de prueba"
-#: ../../printerdrake.pm_.c:3199 ../../printerdrake.pm_.c:3291
+#: ../../printerdrake.pm_.c:3424 ../../printerdrake.pm_.c:3519
msgid "Know how to use this printer"
msgstr "Se sabe cĂłmo usar esta impresora"
-#: ../../printerdrake.pm_.c:3201 ../../printerdrake.pm_.c:3293
+#: ../../printerdrake.pm_.c:3426 ../../printerdrake.pm_.c:3521
msgid "Remove printer"
msgstr "Borrar impresora"
-#: ../../printerdrake.pm_.c:3245
+#: ../../printerdrake.pm_.c:3472
#, c-format
msgid "Removing old printer \"%s\"..."
msgstr "Quitando la impresora antigua \"%s\" ..."
-#: ../../printerdrake.pm_.c:3269
+#: ../../printerdrake.pm_.c:3497
msgid "Default printer"
msgstr "Impresora predeterminada"
-#: ../../printerdrake.pm_.c:3270
+#: ../../printerdrake.pm_.c:3498
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr "La impresora \"%s\" ahora es la impresora predeterminada."
-#: ../../printerdrake.pm_.c:3274 ../../printerdrake.pm_.c:3277
-msgid "Adding printer to Star Office/OpenOffice.org"
-msgstr "Agregando impresora a Star Office/OpenOffice.org"
+#: ../../printerdrake.pm_.c:3502 ../../printerdrake.pm_.c:3505
+msgid "Adding printer to Star Office/OpenOffice.org/GIMP"
+msgstr "Agregando impresora a Star Office/OpenOffice.org/GIMP"
-#: ../../printerdrake.pm_.c:3275
+#: ../../printerdrake.pm_.c:3503
#, c-format
msgid ""
-"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
+"The printer \"%s\" was successfully added to Star Office/OpenOffice.org/GIMP."
msgstr ""
"La impresora \"%s\" se agregĂł satisfactoriamente a Star Office/OpenOffice."
"org."
-#: ../../printerdrake.pm_.c:3278
+#: ../../printerdrake.pm_.c:3506
#, c-format
-msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
-msgstr "No se pudo agregar la impresora \"%s\" a Star Office/OpenOffice.org."
+msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org/GIMP."
+msgstr ""
+"No se pudo agregar la impresora \"%s\" a Star Office/OpenOffice.org/GIMP."
-#: ../../printerdrake.pm_.c:3283 ../../printerdrake.pm_.c:3286
-msgid "Removing printer from Star Office/OpenOffice.org"
-msgstr "Quitando la impresora de Star Office/OpenOffice.org"
+#: ../../printerdrake.pm_.c:3511 ../../printerdrake.pm_.c:3514
+msgid "Removing printer from Star Office/OpenOffice.org/GIMP"
+msgstr "Quitando la impresora de Star Office/OpenOffice.org/GIMP"
-#: ../../printerdrake.pm_.c:3284
+#: ../../printerdrake.pm_.c:3512
#, c-format
msgid ""
-"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
+"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org/"
+"GIMP."
msgstr ""
"La impresora \"%s\" se quitĂł satisfactoriamnete de Star Office/OpenOffice."
"org."
-#: ../../printerdrake.pm_.c:3287
+#: ../../printerdrake.pm_.c:3515
#, c-format
-msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
-msgstr "No se pudo quitar la impresora \"%s\" de Star Office/OpenOffice.org."
+msgid ""
+"Failed to remove the printer \"%s\" from Star Office/OpenOffice.org/GIMP."
+msgstr ""
+"No se pudo quitar la impresora \"%s\" de Star Office/OpenOffice.org/GIMP."
-#: ../../printerdrake.pm_.c:3295
+#: ../../printerdrake.pm_.c:3523
#, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr "ÂżSeguro que quiere borrar la impresora \"%s\"?"
-#: ../../printerdrake.pm_.c:3297
+#: ../../printerdrake.pm_.c:3527
#, c-format
msgid "Removing printer \"%s\"..."
msgstr "Quitando la impresora \"%s\" ..."
@@ -9890,7 +10258,7 @@ msgstr "Internet"
msgid "File sharing"
msgstr "Compartir archivos"
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1669
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1744
msgid "System"
msgstr "Sistema"
@@ -9943,15 +10311,17 @@ msgstr "Iniciar"
msgid "Stop"
msgstr "Parar"
-#: ../../share/advertising/00-thanks.pl_.c:9
-msgid "Thank you for choosing Mandrake Linux 8.2"
-msgstr "Gracias por elegir Mandrake Linux 8.2"
+#: ../../share/advertising/01-thanks.pl_.c:9
+msgid "Thank you for choosing Mandrake Linux 9.0"
+msgstr "Gracias por elegir Mandrake Linux 9.0"
-#: ../../share/advertising/00-thanks.pl_.c:10
+#: ../../share/advertising/01-thanks.pl_.c:10
+#, fuzzy
msgid "Welcome to the Open Source world"
msgstr "Bienvenido al mundo del CĂłdigo Abierto (Open Source)"
-#: ../../share/advertising/00-thanks.pl_.c:11
+#: ../../share/advertising/01-thanks.pl_.c:11
+#, fuzzy
msgid ""
"The success of MandrakeSoft is based upon the principle of Free Software. "
"Your new operating system is the result of collaborative work on the part of "
@@ -9961,209 +10331,258 @@ msgstr ""
"sistema operativo es el resultado del trabajo colaborativo de parte de la "
"Comunidad Linux mundial"
-#: ../../share/advertising/01-gnu.pl_.c:9
-msgid "Join the Free Software world"
+#: ../../share/advertising/02-community.pl_.c:9
+#, fuzzy
+msgid "Get involved in the Free Software world"
msgstr "Únase al mundo del Software Libre"
-#: ../../share/advertising/01-gnu.pl_.c:10
+#: ../../share/advertising/02-community.pl_.c:10
+msgid "Want to know more about the Open Source community?"
+msgstr "ÂżDesea saber mĂĄs acerca de la comunidad de CĂłdigo Abierto?"
+
+#: ../../share/advertising/02-community.pl_.c:11
+#, fuzzy
msgid ""
-"Get to know the Open Source community and become a member. Learn, teach, and "
-"help others by joining the many discussion forums that you will find in our "
-"\"Community\" webpages"
+"To share your own knowledge and help build Linux tools, join the discussions "
+"forum you'll find on our \"Community\" webpages"
msgstr ""
"Conozca a la comunidad Open Source y sea un miembro. Aprenda, enseñe, y "
"ayude a otros uniéndose a los foros de discusión que encontrarå en nuestras "
"pĂĄginas web para la \"Comunidad\""
-#: ../../share/advertising/02-internet.pl_.c:9
-msgid "Internet and Messaging"
-msgstr "Internet y MensajerĂ­a"
+#: ../../share/advertising/03-internet.pl_.c:9
+msgid "Get the most from the Internet"
+msgstr "Aprovechar al mĂĄximo la Internet"
-#: ../../share/advertising/02-internet.pl_.c:10
+#: ../../share/advertising/03-internet.pl_.c:10
+#, fuzzy
msgid ""
-"Mandrake Linux 8.2 provides the best software to access everything the "
-"Internet has to offer: Surf the web & view animations with Mozilla and "
-"Konqueror, exchange email & organize your personal information with "
-"Evolution and Kmail, and much more"
+"Mandrake Linux 9.0 has selected the best software for you. Surf the Web and "
+"view animations with Mozilla and Konqueror, or read your mail and handle "
+"your personal information with Evolution and Kmail"
msgstr ""
-"Mandrake Linux 8.2 le brinda la mejor selecciĂłn de software para acceder a "
+"Mandrake Linux 9.0 le brinda la mejor selecciĂłn de software para acceder a "
"todo lo que tiene para ofrecer la Internet: Navegue la web y vea animaciones "
"con Mozilla y Konqueror, intercambie correo-e y organice su informaciĂłn "
"personal con Evolution y KMail, y mucho mĂĄs"
-#: ../../share/advertising/03-graphic.pl_.c:9
-msgid "Multimedia and Graphics"
-msgstr "Multimedios y GrĂĄficos"
+#: ../../share/advertising/04-multimedia.pl_.c:9
+#, fuzzy
+msgid "Discover the most up-to-date graphics and multimedia tools!"
+msgstr "ÂĄDescubra las herramientas grĂĄficas y multimedios mĂĄs actualizadas!"
+
+#: ../../share/advertising/04-multimedia.pl_.c:10
+msgid "Push multimedia to its limits!"
+msgstr "ÂĄLleve los multimedios al lĂ­mite!"
-#: ../../share/advertising/03-graphic.pl_.c:10
+#: ../../share/advertising/04-multimedia.pl_.c:11
+#, fuzzy
msgid ""
-"Mandrake Linux 8.2 lets you push your multimedia computer to its limits! Use "
-"the latest software to play music and audio files, edit and organize your "
-"images and photos, watch TV and videos, and much more"
+"Mandrake Linux 9.0 enables you to use the very latest software to play audio "
+"files, edit and handle your images or photos, and play videos"
msgstr ""
-"ÂĄMandrake Linux 8.2 le permitirĂĄ llevar a su computadora multimedios al "
-"lĂ­mite! Use el Ășltimo software para reproducir mĂșsica y archivos de audio, "
-"edite y organice sus imĂĄgenes y fotos, mire TV y reproduzca vĂ­deos, y mucho "
-"mĂĄs"
+"Mandrake Linux 9.0 le permite utilizar el Ășltimo software para reproducir "
+"archivos de audio, editar y organizar sus imĂĄgenes o fotos, y reproduzcir "
+"vĂ­deos."
-#: ../../share/advertising/04-develop.pl_.c:9
-msgid "Development"
-msgstr "Desarrollo"
+#: ../../share/advertising/05-games.pl_.c:9
+msgid "Games"
+msgstr "Juegos"
-#: ../../share/advertising/04-develop.pl_.c:10
+#: ../../share/advertising/05-games.pl_.c:10
msgid ""
-"Mandrake Linux 8.2 is the ultimate development platform. Discover the power "
-"of the GNU gcc compiler as well as the best Open Source development "
-"environments"
+"Mandrake Linux 9.0 provides the best Open Source games - arcade, action, "
+"cards, sports, strategy..."
msgstr ""
-"Mandrake Linux 8.2 es la plataforma de desarrollo definitiva. Descubra el "
-"poder del compilador GNU gcc así como también los mejores entornos de "
-"desarrollo de CĂłdigo Abierto"
+"Mandrake Linux 9.0 brinda lo mejor en juegos de CĂłdigo Abierto - arcade, "
+"acciĂłn, naipes, deportes, estrategia, ..."
-#: ../../share/advertising/05-contcenter.pl_.c:9
-#: ../../standalone/drakbug_.c:69
+#: ../../share/advertising/06-mcc.pl_.c:9 ../../standalone/drakbug_.c:69
msgid "Mandrake Control Center"
msgstr "Centro de control de Mandrake"
-#: ../../share/advertising/05-contcenter.pl_.c:10
+#: ../../share/advertising/06-mcc.pl_.c:10
msgid ""
-"The Mandrake Linux 8.2 Control Center is a one-stop location for fully "
-"customizing and configuring your Mandrake system"
+"Mandrake Linux 9.0 provides a powerful tool to fully customize and configure "
+"your machine"
msgstr ""
-"El Centro de Control de Mandrake Linux 8.2 es un lugar Ășnico para "
-"personalizar y configurar su sistema Mandrake por completo"
+"Mandrake Linux 9.0 brinda una herramienta potente para personalizar y "
+"configurar su mĂĄquina por completo."
-#: ../../share/advertising/06-user.pl_.c:9
+#: ../../share/advertising/07-desktop.pl_.c:9
msgid "User interfaces"
msgstr "Interfaces de usuario"
-#: ../../share/advertising/06-user.pl_.c:10
+#: ../../share/advertising/07-desktop.pl_.c:10
msgid ""
-"Mandrake Linux 8.2 provides 11 different graphical desktop environments and "
-"window managers to choose from including GNOME 1.4, KDE 2.2.2, Window Maker "
-"0.8, and the rest"
+"Mandrake Linux 9.0 provides 11 user interfaces which can be fully modified: "
+"KDE 3, Gnome 2, WindowMaker..."
msgstr ""
-"Mandrake Linux 8.2 brinda 11 entornos de escritorio grĂĄficos y "
-"administradores de ventanas distintos para elegir, incluyendo a GNOME 1.4, "
-"KDE 2.2.2, Window Maker 0.8, y otros"
+"Mandrake Linux 9.0 brinda 11 interfaces de usuario que se pueden modificar "
+"por completo: KDE3, Gnome 2, WindowMaker..."
+
+#: ../../share/advertising/08-development.pl_.c:9
+msgid "Development simplified"
+msgstr "Desarrollo simplificado"
-#: ../../share/advertising/07-server.pl_.c:9
-msgid "Server Software"
-msgstr "Software de servidor"
+#: ../../share/advertising/08-development.pl_.c:10
+msgid "Mandrake Linux 9.0 is the ultimate development platform"
+msgstr "Mandrake Linux 9.0 es la mejor plataforma de desarrollo."
-#: ../../share/advertising/07-server.pl_.c:10
+#: ../../share/advertising/08-development.pl_.c:11
msgid ""
-"Transform your machine into a powerful server with just a few clicks of the "
-"mouse: Web server, email, firewall, router, file and print server, ..."
+"Use the full power of the GNU gcc 3 compiler as well as the best Open Source "
+"development environments"
+msgstr ""
+"Utilice el poder del compilador GNU gcc 3 así como también los mejores "
+"entornos de desarrollo de CĂłdigo Abierto."
+
+#: ../../share/advertising/09-server.pl_.c:9
+msgid "Turn your machine into a reliable server"
+msgstr "Convierta su mĂĄquina en un servidor confiable."
+
+#: ../../share/advertising/09-server.pl_.c:10
+msgid ""
+"Transform your machine into a powerful server in a few clicks of your mouse: "
+"Web server, mail, firewall, router, file and print server..."
msgstr ""
"Transforme su mĂĄquina en un servidor potente con unos pocos clic del ratĂłn: "
"servidor web, de correo, cortafuegos, router, servidor de archivos e "
"impresoras, ..."
-#: ../../share/advertising/08-games.pl_.c:9
-msgid "Games"
-msgstr "Juegos"
+#: ../../share/advertising/10-mnf.pl_.c:9
+msgid "Optimize your security"
+msgstr "Optimice su seguridad"
-#: ../../share/advertising/08-games.pl_.c:10
+#: ../../share/advertising/10-mnf.pl_.c:10
msgid ""
-"Mandrake Linux 8.2 provides the best Open Source games - arcade, action, "
-"cards, sports, strategy, ..."
+"The MandrakeSecurity range includes the Multi Network Firewall product (M.N."
+"F.)"
msgstr ""
-"Mandrake Linux 8.2 brinda lo mejor en juegos de CĂłdigo Abierto - arcade, "
-"acciĂłn, naipes, deportes, estrategia, ..."
+"MandrakeSecurity ofrece un rango que incluye el producto Multi Network "
+"Firewall (M.N.F.)."
+
+#: ../../share/advertising/10-mnf.pl_.c:11
+msgid ""
+"This firewall product includes network features which allow you to fulfill "
+"all your security needs"
+msgstr ""
+"Este producto cortafuegos incluye caracterĂ­sticas de red que le permiten "
+"satisfacer todas sus necesidades de seguridad"
+
+#: ../../share/advertising/10-mnf.pl_.c:12
+msgid "This product is available on MandrakeStore website"
+msgstr "Este producto estĂĄ disponible en el sitio web MandrakeStore"
+
+#: ../../share/advertising/11-mdkstore.pl_.c:9
+msgid "The official MandrakeSoft store"
+msgstr "La tienda oficial de MandrakeSoft"
-#: ../../share/advertising/09-MDKcampus.pl_.c:9
-msgid "MandrakeCampus"
-msgstr "MandrakeCampus"
+#: ../../share/advertising/11-mdkstore.pl_.c:10
+msgid ""
+"Our full range of Linux solutions, as well as special offers on products and "
+"'goodies', are available online at our e-store"
+msgstr ""
+"Nuestro rango completo de soluciones Linux, así como también ofertas "
+"especiales sobre productos y 'cositas', estĂĄn disponibles en lĂ­nea en "
+"nuestra tienda electrĂłnica."
+
+#: ../../share/advertising/12-mdkstore.pl_.c:9
+msgid "Strategic partners"
+msgstr "Socios estratégicos"
-#: ../../share/advertising/09-MDKcampus.pl_.c:10
+#: ../../share/advertising/12-mdkstore.pl_.c:10
msgid ""
-"Would you like to learn Linux simply, quickly, and for free? MandrakeSoft "
-"provides free Linux training, as well as a way to test your progress, at "
-"MandrakeCampus -- our online training center"
+"MandrakeSoft works alongside a selection of companies offering professional "
+"solutions compatible with Mandrake Linux; a list of these partners is "
+"available on the MandrakeStore"
msgstr ""
-"ÂżDesea aprender Linux de manera simple, rĂĄpida, y gratis? MandrakeSoft le "
-"proporciona entrenamiento libre en Linux, así como también una manera de "
-"probar su progreso, en MandrakeCampus -- nuestro centro de entrenamiento en "
-"lĂ­nea"
+"MandrakeSoft trabaja junto a una selección de compañías que ofrecen "
+"soluciones profesionales compatibles con Mandrake Linux. En MandrakeStore "
+"estĂĄ disponible una lista de dichos socios."
-#: ../../share/advertising/10-MDKexpert.pl_.c:9
-msgid "MandrakeExpert"
-msgstr "MandrakeExpert"
+#: ../../share/advertising/13-mdkcampus.pl_.c:9
+msgid "Discover MandrakeSoft's training catalogue Linux-Campus"
+msgstr "Descubra el catĂĄlogo Linux-Campus de entrenamiento de MandrakeSoft"
-#: ../../share/advertising/10-MDKexpert.pl_.c:10
+#: ../../share/advertising/13-mdkcampus.pl_.c:10
msgid ""
-"Quality support from the Linux Community, and from MandrakeSoft, is just "
-"around the corner. And if you're already a Linux veteran, become an \"Expert"
-"\" and share your knowledge at our support website"
+"The training program has been create to respond to the needs of both users "
+"and experts (Network and System administrations)"
msgstr ""
-"El soporte de calidad de la Comunidad Linux, y de MandrakeSoft, estĂĄ "
-"simplemente a la vuelta de la esquina. y si ya es un veterano de Linux, "
-"conviértase en \"Experto\" y comparta su conocimiento en nuestro sitio web "
-"de soporte"
+"El programa de entrenamiento ha sido creado para responder a las necesidades "
+"tanto de los usuarios como de los expertos (AdministraciĂłn de sistemas y "
+"redes)"
-#: ../../share/advertising/11-consul.pl_.c:9
-msgid "MandrakeConsulting"
-msgstr "MandrakeConsulting"
+#: ../../share/advertising/13-mdkcampus.pl_.c:11
+msgid "Certify yourself on Linux"
+msgstr "CertifĂ­quese en Linux."
-#: ../../share/advertising/11-consul.pl_.c:10
+#: ../../share/advertising/13-mdkcampus.pl_.c:12
msgid ""
-"For all of your IT projects, our consultants are ready to analyze your "
-"requirements and offer a customized solution. Benefit from MandrakeSoft's "
-"vast experience as a Linux producer to provide a true IT alternative for "
-"your business organization"
+"Whether you choose to teach yourself online or via our network of training "
+"partners, the Linux-Campus catalogue prepares you for the acknowledged LPI "
+"certification program (worldwide professional technical certification)"
msgstr ""
-"Nuestros consultores estĂĄn listos para analizar sus necesidades y ofrecerle "
-"una soluciĂłn persoanlizada para todos sus proyectos de IT. Aproveche la "
-"vasta experiencia de MandrakeSoft como productor de Linux para brindar una "
-"alternativa IT verdadera para su organizaciĂłn de negocios"
+"Ya sea si elige enseñarse a sí mismo en línea o a través de nuestra red de "
+"socios de entrenamiento, el catĂĄlogo Linux-Campus lo prepara para el "
+"reconocido programa de certificación LPT (certificación técnica profesional "
+"a nivel mundial)."
-#: ../../share/advertising/12-MDKstore.pl_.c:9
-msgid "MandrakeStore"
-msgstr "MandrakeStore"
+#: ../../share/advertising/14-mdkexpert.pl_.c:9
+msgid "Become a MandrakeExpert"
+msgstr "Conviértase en un MandrakeExpert"
-#: ../../share/advertising/12-MDKstore.pl_.c:10
+#: ../../share/advertising/14-mdkexpert.pl_.c:10
msgid ""
-"A full range of Linux solutions, as well as special offers on products and "
-"'goodies', are available online at our e-store"
+"Find the solutions to your problems via MandrakeSoft's online support "
+"platform"
msgstr ""
-"En nuestra tienda electrĂłnica en lĂ­nea estĂĄn disponibles el rango completo "
-"de soluciones Linux, así como también ofertas especiales sobre los productos "
-"y otras \"cositas\""
+"Encuentre las soluciones a sus problemas por medio de la plataforma de "
+"soporte en lĂ­nea de MandrakeSoft."
-#: ../../share/advertising/13-Nvert.pl_.c:9
+#: ../../share/advertising/14-mdkexpert.pl_.c:11
+#, fuzzy
msgid ""
-"For more information on MandrakeSoft's Professional Services and commercial "
-"offerings, please see the following web page:"
+"Join the MandrakeSoft support teams and the Linux Community online to share "
+"your knowledge and help others by becoming a recognized Expert on the online "
+"technical support website:"
+msgstr ""
+"unase a los equipos de soporte de Mandrakesoft y de la Comunidad Linux en "
+"línea para compartir su conocimiento y ayudar a otros convirtiéndose en un "
+"Experto reconocido en el sitio web de soporte técnico en línea:"
+
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:9
+msgid "MandrakeExpert Corporate"
+msgstr "MandrakeExpert Corporativo"
+
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:10
+msgid "An online platform to respond to company's specific support needs"
msgstr ""
-"Para mĂĄs informaciĂłn sobre los Servicios Profesionales de MandrakeSoft y las "
-"ofertas comerciales, por favor vea la pĂĄgina web siguiente:"
+"Una plataforma en lĂ­nea para responder a las necesidades especĂ­ficas de "
+"soporte de la compañía."
-#: ../../share/advertising/13-Nvert.pl_.c:11
-msgid "http://www.mandrakesoft.com/sales/contact"
-msgstr "http://www.mandrakesoft.com/sales/contact"
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:11
+msgid ""
+"All incidents will be followed up by a single qualified MandrakeSoft "
+"technical expert."
+msgstr ""
+"Todos los incidentes estarĂĄn seguidos por un Ășnico experto tĂ©cnico "
+"calificado de MandrakeSoft."
-#: ../../standalone.pm_.c:40
+#: ../../standalone.pm_.c:41
msgid "Installing packages..."
msgstr "Instalando paquetes..."
-#: ../../standalone/XFdrake_.c:143
+#: ../../standalone/XFdrake_.c:145
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "Por favor salga de la sesiĂłn y luego pulse Ctrl-Alt-BackSpace"
-#: ../../standalone/XFdrake_.c:147
+#: ../../standalone/XFdrake_.c:149
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "Abra de nuevo una sesiĂłn %s para activar los cambios"
-#: ../../standalone/diskdrake_.c:81
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I'll try to go on blanking bad partitions"
-msgstr ""
-"No se puede leer su tabla de particiones, estĂĄ demasiado deteriorada :-(\n"
-"Se intentarĂĄ ir poniendo en blanco las particiones malas"
-
#: ../../standalone/drakTermServ_.c:188
msgid "Mandrake Terminal Server Configuration"
msgstr "ConfiguraciĂłn del Servidor de Terminales de Mandrake"
@@ -10200,12 +10619,13 @@ msgstr "Añadir/Quitar usuarios"
msgid "Add/Del Clients"
msgstr "Añadir/Quitar clientes"
-#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3282
-#: ../../standalone/drakbackup_.c:3315 ../../standalone/drakbackup_.c:3341
-#: ../../standalone/drakbackup_.c:3368 ../../standalone/drakbackup_.c:3395
-#: ../../standalone/drakbackup_.c:3434 ../../standalone/drakbackup_.c:3455
-#: ../../standalone/drakbackup_.c:3482 ../../standalone/drakbackup_.c:3508
-#: ../../standalone/drakbackup_.c:3533 ../../standalone/drakfont_.c:700
+#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3930
+#: ../../standalone/drakbackup_.c:3963 ../../standalone/drakbackup_.c:3989
+#: ../../standalone/drakbackup_.c:4016 ../../standalone/drakbackup_.c:4043
+#: ../../standalone/drakbackup_.c:4082 ../../standalone/drakbackup_.c:4103
+#: ../../standalone/drakbackup_.c:4130 ../../standalone/drakbackup_.c:4160
+#: ../../standalone/drakbackup_.c:4186 ../../standalone/drakbackup_.c:4211
+#: ../../standalone/drakfont_.c:700
msgid "Help"
msgstr "Ayuda"
@@ -10371,8 +10791,8 @@ msgstr ""
"Los parĂĄmetros de la instalaciĂłn automĂĄticas estĂĄn disponibles en las "
"secciones de la izquierda"
-#: ../../standalone/drakautoinst_.c:239 ../../standalone/drakgw_.c:548
-#: ../../standalone/scannerdrake_.c:105
+#: ../../standalone/drakautoinst_.c:239 ../../standalone/drakgw_.c:484
+#: ../../standalone/scannerdrake_.c:119
msgid "Congratulations!"
msgstr "ÂĄFelicidades!"
@@ -10396,20 +10816,23 @@ msgstr "Añadir un elemento"
msgid "Remove the last item"
msgstr "Borrar el Ășltimo elemento"
-#: ../../standalone/drakbackup_.c:625
+#: ../../standalone/drakbackup_.c:619
msgid "Cron not available yet as non-root"
-msgstr ""
+msgstr "Cron todavĂ­a no estĂĄ disponible como no-root"
-#: ../../standalone/drakbackup_.c:731
+#: ../../standalone/drakbackup_.c:725
msgid "WARNING"
msgstr "ATENCIÓN"
-#: ../../standalone/drakbackup_.c:732
-#, fuzzy
+#: ../../standalone/drakbackup_.c:726
msgid "FATAL"
-msgstr "FAT"
+msgstr "FATAL"
-#: ../../standalone/drakbackup_.c:744
+#: ../../standalone/drakbackup_.c:727
+msgid "INFO"
+msgstr "INFO"
+
+#: ../../standalone/drakbackup_.c:739
msgid ""
"\n"
" DrakBackup Report \n"
@@ -10419,7 +10842,7 @@ msgstr ""
" Reporte de DrakBackup \n"
"\n"
-#: ../../standalone/drakbackup_.c:745
+#: ../../standalone/drakbackup_.c:740
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -10431,7 +10854,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:749
+#: ../../standalone/drakbackup_.c:744
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -10443,12 +10866,22 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:770 ../../standalone/drakbackup_.c:840
-#: ../../standalone/drakbackup_.c:894
+#: ../../standalone/drakbackup_.c:765 ../../standalone/drakbackup_.c:835
+#: ../../standalone/drakbackup_.c:889
msgid "Total progess"
msgstr "Progreso total"
-#: ../../standalone/drakbackup_.c:822
+#: ../../standalone/drakbackup_.c:788
+msgid ""
+"Sorry, perl-Expect is not installed/enabled. To use\n"
+"this feature, install perl-Expect and comment lines 772-774,\n"
+" as well as 788,789. Then uncomment line 787."
+msgstr ""
+"Lo siento, no estĂĄ instalado/habilitado perl-Expect. Para usar\n"
+"esta caracterĂ­stica, instale perl-Expect y comente las lĂ­neas 772-774,\n"
+" así como también 788,789. Luego quite el comentario a la línea 787."
+
+#: ../../standalone/drakbackup_.c:817
#, c-format
msgid ""
"%s exists, delete?\n"
@@ -10461,16 +10894,41 @@ msgstr ""
"Advertencia: Si ya realizĂł este proceso probablemente deba\n"
" purgar la entrada de authorized_keys en el servidor."
-#: ../../standalone/drakbackup_.c:831
+#: ../../standalone/drakbackup_.c:826
msgid "This may take a moment to generate the keys."
msgstr "La generaciĂłn de claves puede tardar unos momentos."
-#: ../../standalone/drakbackup_.c:838
+#: ../../standalone/drakbackup_.c:833
#, c-format
msgid "ERROR: Cannot spawn %s."
msgstr "ERROR: No se puede lanzar %s."
-#: ../../standalone/drakbackup_.c:865
+#: ../../standalone/drakbackup_.c:850
+#, c-format
+msgid "No password prompt on %s at port %s"
+msgstr "Sin pedido de contraseña en %s en el puerto %s"
+
+#: ../../standalone/drakbackup_.c:851
+#, c-format
+msgid "Bad password on %s"
+msgstr "Contraseña incorrecta en %s"
+
+#: ../../standalone/drakbackup_.c:852
+#, c-format
+msgid "Permission denied transferring %s to %s"
+msgstr "Permiso denegado transfiriendo %s a %s"
+
+#: ../../standalone/drakbackup_.c:853
+#, c-format
+msgid "Can't find %s on %s"
+msgstr "No puedo encontrar %s en %s"
+
+#: ../../standalone/drakbackup_.c:856
+#, c-format
+msgid "%s not responding"
+msgstr "%s no responde"
+
+#: ../../standalone/drakbackup_.c:860
#, c-format
msgid ""
"Transfer successful\n"
@@ -10487,60 +10945,64 @@ msgstr ""
"\n"
"sin que se le pida una contraseña."
-#: ../../standalone/drakbackup_.c:908
+#: ../../standalone/drakbackup_.c:903
msgid "WebDAV remote site already in sync!"
-msgstr ""
+msgstr "ÂĄEl sitio WebDAV remoto ya estĂĄ sincronizado!"
-#: ../../standalone/drakbackup_.c:912
+#: ../../standalone/drakbackup_.c:907
msgid "WebDAV transfer failed!"
-msgstr ""
+msgstr "ÂĄFallĂł la transferencia WebDAV!"
-#: ../../standalone/drakbackup_.c:934
+#: ../../standalone/drakbackup_.c:928
msgid "No CDR/DVDR in drive!"
-msgstr ""
+msgstr "ÂĄNo hay CDR/DVDR en la unidad!"
-#: ../../standalone/drakbackup_.c:938
+#: ../../standalone/drakbackup_.c:932
msgid "Does not appear to be recordable media!"
-msgstr ""
+msgstr "ÂĄNo parece ser un soporte grabable!"
-#: ../../standalone/drakbackup_.c:942
+#: ../../standalone/drakbackup_.c:936
msgid "Not erasable media!"
-msgstr ""
+msgstr "ÂĄNo es un soporte borrable!"
-#: ../../standalone/drakbackup_.c:981
+#: ../../standalone/drakbackup_.c:975
msgid "This may take a moment to erase the media."
msgstr "Borrar el soporte puede tardar unos momentos."
-#: ../../standalone/drakbackup_.c:1045
+#: ../../standalone/drakbackup_.c:1060
msgid "Permission problem accessing CD."
-msgstr ""
+msgstr "Problema de permisos al acceder al CD."
+
+#: ../../standalone/drakbackup_.c:1087
+#, c-format
+msgid "No tape in %s!"
+msgstr "ÂĄNo hay cinta en %s!"
-#: ../../standalone/drakbackup_.c:1144 ../../standalone/drakbackup_.c:1193
+#: ../../standalone/drakbackup_.c:1199 ../../standalone/drakbackup_.c:1248
msgid "Backup system files..."
msgstr "Respaldar archivos del sistema..."
-#: ../../standalone/drakbackup_.c:1194 ../../standalone/drakbackup_.c:1261
+#: ../../standalone/drakbackup_.c:1249 ../../standalone/drakbackup_.c:1316
msgid "Hard Disk Backup files..."
msgstr "Respaldar archivos del disco rĂ­gido..."
-#: ../../standalone/drakbackup_.c:1206
+#: ../../standalone/drakbackup_.c:1261
msgid "Backup User files..."
msgstr "Respaldar archivos de usuario..."
-#: ../../standalone/drakbackup_.c:1207
+#: ../../standalone/drakbackup_.c:1262
msgid "Hard Disk Backup Progress..."
msgstr "Progreso de respaldo del disco rĂ­gido..."
-#: ../../standalone/drakbackup_.c:1260
+#: ../../standalone/drakbackup_.c:1315
msgid "Backup Other files..."
msgstr "Respaldar otros archivos..."
-#: ../../standalone/drakbackup_.c:1266
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1321
msgid "No changes to backup!"
-msgstr "Usar cinta para realizar respaldo"
+msgstr "ÂĄNo hay cambios para realizar respaldo!"
-#: ../../standalone/drakbackup_.c:1282 ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1337 ../../standalone/drakbackup_.c:1360
#, c-format
msgid ""
"\n"
@@ -10551,16 +11013,16 @@ msgstr ""
"Actividades de Drakbackup por medio de %s:\n"
"\n"
-#: ../../standalone/drakbackup_.c:1289
+#: ../../standalone/drakbackup_.c:1344
#, c-format
msgid ""
-"file list sent by FTP : %s\n"
+"file list sent by FTP: %s\n"
" "
msgstr ""
"lista de archivos envĂ­ada por FTP: %s\n"
" "
-#: ../../standalone/drakbackup_.c:1292
+#: ../../standalone/drakbackup_.c:1347
msgid ""
"\n"
" FTP connection problem: It was not possible to send your backup files by "
@@ -10570,7 +11032,7 @@ msgstr ""
" Problema en la conexiĂłn FTP: No fue posible enviar sus archivos de copia de "
"respaldo por FTP.\n"
-#: ../../standalone/drakbackup_.c:1310
+#: ../../standalone/drakbackup_.c:1365
msgid ""
"\n"
"Drakbackup activities via CD:\n"
@@ -10580,7 +11042,7 @@ msgstr ""
"Actividades de Drakbackup por medio de CD:\n"
"\n"
-#: ../../standalone/drakbackup_.c:1315
+#: ../../standalone/drakbackup_.c:1370
msgid ""
"\n"
"Drakbackup activities via tape:\n"
@@ -10590,24 +11052,24 @@ msgstr ""
"Actividades de Drakbackup por medio de cinta:\n"
"\n"
-#: ../../standalone/drakbackup_.c:1324
+#: ../../standalone/drakbackup_.c:1379
msgid " Error during mail sending. \n"
msgstr " Error durante el envĂ­o de correo. \n"
-#: ../../standalone/drakbackup_.c:1346
+#: ../../standalone/drakbackup_.c:1404
msgid "Can't create catalog!"
-msgstr ""
+msgstr "ÂĄNo se puede crear catĂĄlogo!"
-#: ../../standalone/drakbackup_.c:1459 ../../standalone/drakbackup_.c:1470
-#: ../../standalone/drakbackup_.c:1481 ../../standalone/drakfont_.c:1004
+#: ../../standalone/drakbackup_.c:1517 ../../standalone/drakbackup_.c:1528
+#: ../../standalone/drakfont_.c:1004
msgid "File Selection"
msgstr "SelecciĂłn de archivos."
-#: ../../standalone/drakbackup_.c:1486
+#: ../../standalone/drakbackup_.c:1556
msgid "Select the files or directories and click on 'Add'"
msgstr "Seleccione los archivos o directorios y haga clic sobre 'Agregar'"
-#: ../../standalone/drakbackup_.c:1525
+#: ../../standalone/drakbackup_.c:1600
msgid ""
"\n"
"Please check all options that you need.\n"
@@ -10615,26 +11077,26 @@ msgstr ""
"\n"
"Por favor, marque todas las opciones que necesita.\n"
-#: ../../standalone/drakbackup_.c:1526
+#: ../../standalone/drakbackup_.c:1601
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
"Estas opciones pueden respaldar y restaurar todos los archivos en el "
"directorio /etc.\n"
-#: ../../standalone/drakbackup_.c:1527
+#: ../../standalone/drakbackup_.c:1602
msgid "Backup your System files. (/etc directory)"
msgstr "Respaldar sus archivos del sistema. (directorio /etc)"
-#: ../../standalone/drakbackup_.c:1528
+#: ../../standalone/drakbackup_.c:1603
msgid "Use incremental backup (do not replace old backups)"
msgstr "Usar repaldo incremental (no reemplazar respaldos antiguos)"
-#: ../../standalone/drakbackup_.c:1529
+#: ../../standalone/drakbackup_.c:1604
msgid "Do not include critical files (passwd, group, fstab)"
msgstr "No incluir archivos crĂ­ticos (passwd, group, fstab)"
-#: ../../standalone/drakbackup_.c:1530
+#: ../../standalone/drakbackup_.c:1605
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
@@ -10642,41 +11104,45 @@ msgstr ""
"Con esta opciĂłn podrĂĄ restaurar cualquier versiĂłn de su\n"
"directorio /etc."
-#: ../../standalone/drakbackup_.c:1547
+#: ../../standalone/drakbackup_.c:1622
msgid "Please check all users that you want to include in your backup."
msgstr ""
"Por favor, marque a todos los usuarios que desa incluir en la copia de "
"respaldo"
-#: ../../standalone/drakbackup_.c:1574
+#: ../../standalone/drakbackup_.c:1649
msgid "Do not include the browser cache"
msgstr "No incluir el cache del navegador"
-#: ../../standalone/drakbackup_.c:1575 ../../standalone/drakbackup_.c:1599
+#: ../../standalone/drakbackup_.c:1650 ../../standalone/drakbackup_.c:1674
msgid "Use Incremental Backups (do not replace old backups)"
msgstr "Usar respaldos incrementales (no reemplazar respaldos antiguos)"
-#: ../../standalone/drakbackup_.c:1597 ../../standalone/drakfont_.c:1058
+#: ../../standalone/drakbackup_.c:1672 ../../standalone/drakfont_.c:1058
msgid "Remove Selected"
msgstr "Quitar los seleccionados."
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:1710
msgid "Windows (FAT32)"
msgstr "Windows (FAT32)"
-#: ../../standalone/drakbackup_.c:1674
+#: ../../standalone/drakbackup_.c:1749
msgid "Users"
msgstr "Usuarios"
-#: ../../standalone/drakbackup_.c:1700
+#: ../../standalone/drakbackup_.c:1775
msgid "Use network connection to backup"
msgstr "Usar conexiĂłn de red para realizar copia de respaldo"
-#: ../../standalone/drakbackup_.c:1706
+#: ../../standalone/drakbackup_.c:1777
+msgid "Net Method:"
+msgstr "MĂ©todo de red:"
+
+#: ../../standalone/drakbackup_.c:1781
msgid "Use Expect for SSH"
msgstr "Usar Expect para SSH"
-#: ../../standalone/drakbackup_.c:1707
+#: ../../standalone/drakbackup_.c:1782
msgid ""
"Create/Transfer\n"
"backup keys for SSH"
@@ -10684,7 +11150,7 @@ msgstr ""
"Crear/Transferir\n"
"claves de respaldo para SSH"
-#: ../../standalone/drakbackup_.c:1708
+#: ../../standalone/drakbackup_.c:1783
msgid ""
" Transfer \n"
"Now"
@@ -10692,15 +11158,15 @@ msgstr ""
"Transferir \n"
"Ahora"
-#: ../../standalone/drakbackup_.c:1709
+#: ../../standalone/drakbackup_.c:1784
msgid "Keys in place already"
msgstr "Las claves ya estĂĄn en su lugar"
-#: ../../standalone/drakbackup_.c:1713
+#: ../../standalone/drakbackup_.c:1788
msgid "Please enter the host name or IP."
msgstr "Por favor, ingrese el nombre o la IP del host"
-#: ../../standalone/drakbackup_.c:1718
+#: ../../standalone/drakbackup_.c:1793
msgid ""
"Please enter the directory (or module) to\n"
" put the backup on this host."
@@ -10708,27 +11174,27 @@ msgstr ""
"Por favor, ingrese el directorio (o mĂłdulo) para\n"
" poner la copia de respaldo en este host."
-#: ../../standalone/drakbackup_.c:1723
+#: ../../standalone/drakbackup_.c:1798
msgid "Please enter your login"
msgstr "Por favor, ingrese su nombre de usuario (login)"
-#: ../../standalone/drakbackup_.c:1728
+#: ../../standalone/drakbackup_.c:1803
msgid "Please enter your password"
msgstr "Por favor, ingrese su contraseña"
-#: ../../standalone/drakbackup_.c:1734
+#: ../../standalone/drakbackup_.c:1809
msgid "Remember this password"
msgstr "Recordar esta contraseña"
-#: ../../standalone/drakbackup_.c:1745
+#: ../../standalone/drakbackup_.c:1820
msgid "Need hostname, username and password!"
msgstr "¥Necesita el nombre del host, el nombre de usuario y la contraseña!"
-#: ../../standalone/drakbackup_.c:1841
+#: ../../standalone/drakbackup_.c:1915
msgid "Use CD/DVDROM to backup"
msgstr "Usar CD/DVDROM para la copia de respaldo"
-#: ../../standalone/drakbackup_.c:1844
+#: ../../standalone/drakbackup_.c:1918
msgid ""
"Please choose your CD/DVD device\n"
"(Press Enter to propogate settings to other fields.\n"
@@ -10739,35 +11205,35 @@ msgstr ""
"Este campo no es necesario, sĂłlo una herramienta para completar el "
"formulario.)"
-#: ../../standalone/drakbackup_.c:1849
+#: ../../standalone/drakbackup_.c:1923
msgid "Please choose your CD/DVD media size"
msgstr "Por favor, elija el tamaño de su CD/DVD"
-#: ../../standalone/drakbackup_.c:1855
+#: ../../standalone/drakbackup_.c:1929
msgid "Please check for multisession CD"
msgstr "Por favor, marque para CD multi-sesiĂłn"
-#: ../../standalone/drakbackup_.c:1861
+#: ../../standalone/drakbackup_.c:1935
msgid "Please check if you are using CDRW media"
msgstr "Por favor, marque si estĂĄ utilizando un soporte CDRW"
-#: ../../standalone/drakbackup_.c:1867
+#: ../../standalone/drakbackup_.c:1941
msgid "Please check if you want to erase your RW media (1st Session)"
msgstr "Por favor, marque si desea borrar su soporte regrabable (1er. sesiĂłn)"
-#: ../../standalone/drakbackup_.c:1868
+#: ../../standalone/drakbackup_.c:1942
msgid " Erase Now "
msgstr " Borrar Ahora "
-#: ../../standalone/drakbackup_.c:1874
+#: ../../standalone/drakbackup_.c:1948
msgid "Please check if you are using a DVDR device"
msgstr "Por favor, marque si estĂĄ utilizando un dispositivo DVDR"
-#: ../../standalone/drakbackup_.c:1880
+#: ../../standalone/drakbackup_.c:1954
msgid "Please check if you are using a DVDRAM device"
msgstr "Por favor, marque si estĂĄ utilizando un dispositivo DVDRAM"
-#: ../../standalone/drakbackup_.c:1893
+#: ../../standalone/drakbackup_.c:1967
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
@@ -10775,34 +11241,34 @@ msgstr ""
"Por favor, ingrese el nombre del dispositivo de\n"
" su grabadora de CD, ej: 0,1,0"
-#: ../../standalone/drakbackup_.c:1926
+#: ../../standalone/drakbackup_.c:2000
msgid "No CD device defined!"
msgstr "ÂĄNo se definiĂł dispositivo de CD!"
-#: ../../standalone/drakbackup_.c:1974
+#: ../../standalone/drakbackup_.c:2048
msgid "Use tape to backup"
msgstr "Usar cinta para realizar respaldo"
-#: ../../standalone/drakbackup_.c:1977
+#: ../../standalone/drakbackup_.c:2051
msgid "Please enter the device name to use for backup"
msgstr ""
"Por favor, ingrese el nombre del dispositivo a utilizar para el respaldo"
-#: ../../standalone/drakbackup_.c:1983
+#: ../../standalone/drakbackup_.c:2057
msgid "Please check if you want to use the non-rewinding device."
msgstr "Por favor, marque si desea utilizar un dispositivo que no rebobina."
-#: ../../standalone/drakbackup_.c:1989
+#: ../../standalone/drakbackup_.c:2063
msgid "Please check if you want to erase your tape before the backup."
msgstr "Por favor, marque si primero desea borrar su cinta."
-#: ../../standalone/drakbackup_.c:1995
+#: ../../standalone/drakbackup_.c:2069
msgid "Please check if you want to eject your tape after the backup."
msgstr ""
"Por favor, marque si desea expulsar su cinta luego de la copia de seguridad."
-#: ../../standalone/drakbackup_.c:2001 ../../standalone/drakbackup_.c:2074
-#: ../../standalone/drakbackup_.c:3025
+#: ../../standalone/drakbackup_.c:2075 ../../standalone/drakbackup_.c:2149
+#: ../../standalone/drakbackup_.c:3116
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
@@ -10810,55 +11276,55 @@ msgstr ""
"Por favor, ingrese el tamaño måximo\n"
" permitido para Drakbackup"
-#: ../../standalone/drakbackup_.c:2066
+#: ../../standalone/drakbackup_.c:2140
msgid "Please enter the directory to save to:"
msgstr "Por favor, ingrese el directorio donde guardar:"
-#: ../../standalone/drakbackup_.c:2080 ../../standalone/drakbackup_.c:3031
+#: ../../standalone/drakbackup_.c:2155 ../../standalone/drakbackup_.c:3122
msgid "Use quota for backup files."
msgstr "Usar cuota para archivos de respaldo"
-#: ../../standalone/drakbackup_.c:2146
+#: ../../standalone/drakbackup_.c:2221
msgid "Network"
msgstr "Red"
-#: ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:2226
msgid "CDROM / DVDROM"
msgstr "CDROM / DVDROM"
-#: ../../standalone/drakbackup_.c:2156
+#: ../../standalone/drakbackup_.c:2231
msgid "HardDrive / NFS"
msgstr "Disco rĂ­gido / NFS"
-#: ../../standalone/drakbackup_.c:2161
+#: ../../standalone/drakbackup_.c:2236
msgid "Tape"
msgstr "Cinta"
-#: ../../standalone/drakbackup_.c:2175 ../../standalone/drakbackup_.c:2179
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2250 ../../standalone/drakbackup_.c:2254
+#: ../../standalone/drakbackup_.c:2258
msgid "hourly"
msgstr "cada hora"
-#: ../../standalone/drakbackup_.c:2176 ../../standalone/drakbackup_.c:2180
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2251 ../../standalone/drakbackup_.c:2255
+#: ../../standalone/drakbackup_.c:2258
msgid "daily"
msgstr "cada dĂ­a"
-#: ../../standalone/drakbackup_.c:2177 ../../standalone/drakbackup_.c:2181
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2252 ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2258
msgid "weekly"
msgstr "cada semana"
-#: ../../standalone/drakbackup_.c:2178 ../../standalone/drakbackup_.c:2182
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2253 ../../standalone/drakbackup_.c:2257
+#: ../../standalone/drakbackup_.c:2258
msgid "monthly"
msgstr "cada mes"
-#: ../../standalone/drakbackup_.c:2196
+#: ../../standalone/drakbackup_.c:2271
msgid "Use daemon"
msgstr "Usar servidor"
-#: ../../standalone/drakbackup_.c:2201
+#: ../../standalone/drakbackup_.c:2276
msgid ""
"Please choose the time \n"
"interval between each backup"
@@ -10866,7 +11332,7 @@ msgstr ""
"Por favor, elija el intervalo de\n"
" tiempo entre cada copia de respaldo"
-#: ../../standalone/drakbackup_.c:2207
+#: ../../standalone/drakbackup_.c:2282
msgid ""
"Please choose the\n"
"media for backup."
@@ -10874,7 +11340,7 @@ msgstr ""
"Por favor, elija el soporte\n"
"para la copia de respaldo."
-#: ../../standalone/drakbackup_.c:2214
+#: ../../standalone/drakbackup_.c:2289
msgid ""
"Please be sure that the cron daemon is included in your services. \n"
"\n"
@@ -10885,71 +11351,71 @@ msgstr ""
"\n"
"Note que, por ahora, todos los soportes de \"red\" también utilizan el disco."
-#: ../../standalone/drakbackup_.c:2251
-msgid "Send mail report after each backup to :"
+#: ../../standalone/drakbackup_.c:2326
+msgid "Send mail report after each backup to:"
msgstr "Enviar reporte por correo-e luego de cada respaldo a :"
-#: ../../standalone/drakbackup_.c:2257
+#: ../../standalone/drakbackup_.c:2332
msgid "Delete Hard Drive tar files after backup to other media."
msgstr "Borrar los archivos tar del disco luego de respaldar a otro soporte."
-#: ../../standalone/drakbackup_.c:2296
+#: ../../standalone/drakbackup_.c:2371
msgid "What"
msgstr "Qué"
-#: ../../standalone/drakbackup_.c:2301
+#: ../../standalone/drakbackup_.c:2376
msgid "Where"
msgstr "DĂłnde"
-#: ../../standalone/drakbackup_.c:2306
+#: ../../standalone/drakbackup_.c:2381
msgid "When"
msgstr "CuĂĄndo"
-#: ../../standalone/drakbackup_.c:2311
+#: ../../standalone/drakbackup_.c:2386
msgid "More Options"
msgstr "MĂĄs opciones"
-#: ../../standalone/drakbackup_.c:2330 ../../standalone/drakbackup_.c:3873
+#: ../../standalone/drakbackup_.c:2405 ../../standalone/drakbackup_.c:4530
msgid "Drakbackup Configuration"
msgstr "ConfiguraciĂłn de Drakbackup"
-#: ../../standalone/drakbackup_.c:2348
+#: ../../standalone/drakbackup_.c:2423
msgid "Please choose where you want to backup"
msgstr "Por favor, elija dĂłnde desea realizar la copia de respaldo"
-#: ../../standalone/drakbackup_.c:2350
+#: ../../standalone/drakbackup_.c:2425
msgid "on Hard Drive"
msgstr "en disco rĂ­gido"
-#: ../../standalone/drakbackup_.c:2360
+#: ../../standalone/drakbackup_.c:2435
msgid "across Network"
msgstr "a través de la red"
-#: ../../standalone/drakbackup_.c:2370
+#: ../../standalone/drakbackup_.c:2445
msgid "on CDROM"
msgstr "en CDROM"
-#: ../../standalone/drakbackup_.c:2378
+#: ../../standalone/drakbackup_.c:2453
msgid "on Tape Device"
msgstr "en Dispositivo de Cinta"
-#: ../../standalone/drakbackup_.c:2421
+#: ../../standalone/drakbackup_.c:2496
msgid "Please choose what you want to backup"
msgstr "Por favor, elija qué desea respaldar"
-#: ../../standalone/drakbackup_.c:2422
+#: ../../standalone/drakbackup_.c:2497
msgid "Backup system"
msgstr "Respaldar el sistema"
-#: ../../standalone/drakbackup_.c:2423
+#: ../../standalone/drakbackup_.c:2498
msgid "Backup Users"
msgstr "Respaldar usuarios"
-#: ../../standalone/drakbackup_.c:2426
+#: ../../standalone/drakbackup_.c:2501
msgid "Select user manually"
msgstr "Seleccionar manualmente el usuario"
-#: ../../standalone/drakbackup_.c:2508
+#: ../../standalone/drakbackup_.c:2584
msgid ""
"\n"
"Backup Sources: \n"
@@ -10957,7 +11423,7 @@ msgstr ""
"\n"
"Fuentes de respaldo: \n"
-#: ../../standalone/drakbackup_.c:2509
+#: ../../standalone/drakbackup_.c:2585
msgid ""
"\n"
"- System Files:\n"
@@ -10965,7 +11431,7 @@ msgstr ""
"\n"
"- Archivos del sistema:\n"
-#: ../../standalone/drakbackup_.c:2511
+#: ../../standalone/drakbackup_.c:2587
msgid ""
"\n"
"- User Files:\n"
@@ -10973,7 +11439,7 @@ msgstr ""
"\n"
"- Archivos de usuario:\n"
-#: ../../standalone/drakbackup_.c:2513
+#: ../../standalone/drakbackup_.c:2589
msgid ""
"\n"
"- Other Files:\n"
@@ -10981,16 +11447,16 @@ msgstr ""
"\n"
"- Otros archivos:\n"
-#: ../../standalone/drakbackup_.c:2515
+#: ../../standalone/drakbackup_.c:2591
#, c-format
msgid ""
"\n"
-"- Save on Hard drive on path : %s\n"
+"- Save on Hard drive on path: %s\n"
msgstr ""
"\n"
-"- Guardar en el disco en la ruta : %s\n"
+"- Guardar en el disco en la ruta: %s\n"
-#: ../../standalone/drakbackup_.c:2518
+#: ../../standalone/drakbackup_.c:2594
msgid ""
"\n"
"- Delete hard drive tar files after backup.\n"
@@ -10998,7 +11464,7 @@ msgstr ""
"\n"
"- Borrar los archivos tar del disco luego de la copia de respaldo.\n"
-#: ../../standalone/drakbackup_.c:2524
+#: ../../standalone/drakbackup_.c:2600
msgid ""
"\n"
"- Burn to CD"
@@ -11006,43 +11472,43 @@ msgstr ""
"\n"
"- Grabar en CD"
-#: ../../standalone/drakbackup_.c:2525
+#: ../../standalone/drakbackup_.c:2601
msgid "RW"
msgstr "RW"
-#: ../../standalone/drakbackup_.c:2526
+#: ../../standalone/drakbackup_.c:2602
#, c-format
-msgid " on device : %s"
+msgid " on device: %s"
msgstr " en el dispositivo: %s"
-#: ../../standalone/drakbackup_.c:2527
+#: ../../standalone/drakbackup_.c:2603
msgid " (multi-session)"
msgstr " (multi-sesiĂłn)"
-#: ../../standalone/drakbackup_.c:2528
+#: ../../standalone/drakbackup_.c:2604
#, c-format
msgid ""
"\n"
-"- Save to Tape on device : %s"
+"- Save to Tape on device: %s"
msgstr ""
"\n"
"- Guardar en cinta en el dispositivo: %s"
-#: ../../standalone/drakbackup_.c:2529
+#: ../../standalone/drakbackup_.c:2605
#, c-format
msgid "\t\tErase=%s"
msgstr "\t\tErase=%s"
-#: ../../standalone/drakbackup_.c:2532
+#: ../../standalone/drakbackup_.c:2608
#, c-format
msgid ""
"\n"
-"- Save via %s on host : %s\n"
+"- Save via %s on host: %s\n"
msgstr ""
"\n"
-"- Guardar usando %s en el host : %s\n"
+"- Guardar usando %s en el host: %s\n"
-#: ../../standalone/drakbackup_.c:2533
+#: ../../standalone/drakbackup_.c:2609
#, c-format
msgid ""
"\t\t user name: %s\n"
@@ -11051,7 +11517,7 @@ msgstr ""
"\t\t nombre de usuario: %s\n"
"\t\t en ruta: %s \n"
-#: ../../standalone/drakbackup_.c:2534
+#: ../../standalone/drakbackup_.c:2610
msgid ""
"\n"
"- Options:\n"
@@ -11059,61 +11525,61 @@ msgstr ""
"\n"
"- Opciones:\n"
-#: ../../standalone/drakbackup_.c:2535
+#: ../../standalone/drakbackup_.c:2611
msgid "\tDo not include System Files\n"
msgstr "\tNo incluir archivos del sistema\n"
-#: ../../standalone/drakbackup_.c:2538
+#: ../../standalone/drakbackup_.c:2614
msgid "\tBackups use tar and bzip2\n"
msgstr "\tRespaldar usando tar y bzip2\n"
-#: ../../standalone/drakbackup_.c:2540
+#: ../../standalone/drakbackup_.c:2616
msgid "\tBackups use tar and gzip\n"
msgstr "\tRespaldar usando tar y gzip\n"
-#: ../../standalone/drakbackup_.c:2543
+#: ../../standalone/drakbackup_.c:2619
#, c-format
msgid ""
"\n"
-"- Daemon (%s) include :\n"
+"- Daemon (%s) include:\n"
msgstr ""
"\n"
"- Servidor (%s) incluye :\n"
-#: ../../standalone/drakbackup_.c:2544
+#: ../../standalone/drakbackup_.c:2620
msgid "\t-Hard drive.\n"
msgstr "\t-Disco rĂ­gido.\n"
-#: ../../standalone/drakbackup_.c:2545
+#: ../../standalone/drakbackup_.c:2621
msgid "\t-CDROM.\n"
msgstr "\t-CDROM.\n"
-#: ../../standalone/drakbackup_.c:2546
+#: ../../standalone/drakbackup_.c:2622
msgid "\t-Tape \n"
msgstr "\t-Tape \n"
-#: ../../standalone/drakbackup_.c:2547
+#: ../../standalone/drakbackup_.c:2623
msgid "\t-Network by FTP.\n"
msgstr "\t-Red por FTP.\n"
-#: ../../standalone/drakbackup_.c:2548
+#: ../../standalone/drakbackup_.c:2624
msgid "\t-Network by SSH.\n"
msgstr "\t-Red por SSH.\n"
-#: ../../standalone/drakbackup_.c:2549
+#: ../../standalone/drakbackup_.c:2625
msgid "\t-Network by rsync.\n"
msgstr "\t-Red por rsync.\n"
-#: ../../standalone/drakbackup_.c:2550
+#: ../../standalone/drakbackup_.c:2626
msgid "\t-Network by webdav.\n"
msgstr "\t-Red por webdav.\n"
-#: ../../standalone/drakbackup_.c:2552
+#: ../../standalone/drakbackup_.c:2628
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
"Sin configuraciĂłn, por favor haga clic sobre el Asistente o Avanzado.\n"
-#: ../../standalone/drakbackup_.c:2558
+#: ../../standalone/drakbackup_.c:2634
msgid ""
"List of data to restore:\n"
"\n"
@@ -11121,7 +11587,7 @@ msgstr ""
"Lista de datos a restaurar:\n"
"\n"
-#: ../../standalone/drakbackup_.c:2725
+#: ../../standalone/drakbackup_.c:2801
msgid ""
"List of data corrupted:\n"
"\n"
@@ -11129,151 +11595,266 @@ msgstr ""
"Lista de datos corruptos:\n"
"\n"
-#: ../../standalone/drakbackup_.c:2727
+#: ../../standalone/drakbackup_.c:2803
msgid "Please uncheck or remove it on next time."
msgstr "Por favor, desmarque o quĂ­telo la prĂłxima vez."
-#: ../../standalone/drakbackup_.c:2737
+#: ../../standalone/drakbackup_.c:2813
msgid "Backup files are corrupted"
msgstr "Los archivos de respaldo estĂĄn corruptos"
-#: ../../standalone/drakbackup_.c:2758
+#: ../../standalone/drakbackup_.c:2834
msgid " All of your selected data have been "
msgstr " Todos los datos seleccionados han sido "
-#: ../../standalone/drakbackup_.c:2759
+#: ../../standalone/drakbackup_.c:2835
#, c-format
msgid " Successfuly Restored on %s "
msgstr " Recuperados satisfactoriamente en %s"
-#: ../../standalone/drakbackup_.c:2877
+#: ../../standalone/drakbackup_.c:2953
msgid " Restore Configuration "
msgstr " ConfiguraciĂłn de la restauraciĂłn"
-#: ../../standalone/drakbackup_.c:2895
+#: ../../standalone/drakbackup_.c:2971
msgid "OK to restore the other files."
msgstr "Se pueden restaurar los otros archivos."
-#: ../../standalone/drakbackup_.c:2912
+#: ../../standalone/drakbackup_.c:2988
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
"Lista de usuarios a restaurar (sĂłlo importa la fecha mĂĄs reciente por "
"usuario)"
-#: ../../standalone/drakbackup_.c:2975
+#: ../../standalone/drakbackup_.c:3066
msgid "Backup the system files before:"
msgstr "Respaldar los archivos del sistema anteriores a:"
-#: ../../standalone/drakbackup_.c:2977
+#: ../../standalone/drakbackup_.c:3068
msgid "please choose the date to restore"
msgstr "Por favor, elija la fecha para restaurar"
-#: ../../standalone/drakbackup_.c:3014
+#: ../../standalone/drakbackup_.c:3105
msgid "Use Hard Disk to backup"
msgstr "Usar el disco rĂ­gido para copia de respaldo"
-#: ../../standalone/drakbackup_.c:3017
+#: ../../standalone/drakbackup_.c:3108
msgid "Please enter the directory to save:"
msgstr "Por favor, ingrese el directorio a guardar:"
-#: ../../standalone/drakbackup_.c:3060
+#: ../../standalone/drakbackup_.c:3151
msgid "FTP Connection"
msgstr "ConexiĂłn FTP"
-#: ../../standalone/drakbackup_.c:3067
+#: ../../standalone/drakbackup_.c:3158
msgid "Secure Connection"
msgstr "ConexiĂłn segura"
-#: ../../standalone/drakbackup_.c:3093
+#: ../../standalone/drakbackup_.c:3184
msgid "Restore from Hard Disk."
msgstr "Restaurar desde el disco rĂ­gido."
-#: ../../standalone/drakbackup_.c:3095
+#: ../../standalone/drakbackup_.c:3186
msgid "Please enter the directory where backups are stored"
msgstr ""
"Por favor, ingrese el directorio donde se almacenan las copias de respaldo"
-#: ../../standalone/drakbackup_.c:3157
+#: ../../standalone/drakbackup_.c:3254
msgid "Select another media to restore from"
msgstr "Elija otro soporte desde el cual restaurar"
-#: ../../standalone/drakbackup_.c:3159
+#: ../../standalone/drakbackup_.c:3256
msgid "Other Media"
msgstr "Otros soportes"
-#: ../../standalone/drakbackup_.c:3164
+#: ../../standalone/drakbackup_.c:3261
msgid "Restore system"
msgstr "Restaurar archivos del sistema"
-#: ../../standalone/drakbackup_.c:3165
+#: ../../standalone/drakbackup_.c:3262
msgid "Restore Users"
msgstr "Restaurar usuarios"
-#: ../../standalone/drakbackup_.c:3166
+#: ../../standalone/drakbackup_.c:3263
msgid "Restore Other"
msgstr "Restaurar otros"
-#: ../../standalone/drakbackup_.c:3168
+#: ../../standalone/drakbackup_.c:3265
msgid "select path to restore (instead of /)"
msgstr "seleccione la ruta para restaurar (en vez de /)"
-#: ../../standalone/drakbackup_.c:3172
+#: ../../standalone/drakbackup_.c:3269
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
"Realizar respaldo nuevo antes de restaurar (sĂłlo para respaldos "
"incrementales)"
-#: ../../standalone/drakbackup_.c:3174
+#: ../../standalone/drakbackup_.c:3271
msgid "Remove user directories before restore."
msgstr "Borrar directorios de los usuarios antes de restaurar."
-#: ../../standalone/drakbackup_.c:3232
+#: ../../standalone/drakbackup_.c:3384
+msgid ""
+"Restore Selected\n"
+"Catalog Entry"
+msgstr ""
+"Restaurar entrada\n"
+"del CatĂĄlogo seleccionada"
+
+#: ../../standalone/drakbackup_.c:3394
+msgid ""
+"Restore Selected\n"
+"Files"
+msgstr ""
+"Restaurar los archivos\n"
+"seleccionados"
+
+#: ../../standalone/drakbackup_.c:3411
+msgid ""
+"Change\n"
+"Restore Path"
+msgstr ""
+"Cambiar la\n"
+"ruta de restauraciĂłn"
+
+#: ../../standalone/drakbackup_.c:3477
+#, c-format
+msgid "Backup files not found at %s."
+msgstr "Copiar archivos no encontrados en %s."
+
+#: ../../standalone/drakbackup_.c:3490
+#, c-format
+msgid ""
+"Insert the CD with volume label %s\n"
+" in the CD drive under mount point /mnt/cdrom"
+msgstr ""
+"Inserte el CD con la etiqueta de volumen %s\n"
+" en la unidad de CD bajo el punto de montaje /mnt/cdrom"
+
+#: ../../standalone/drakbackup_.c:3490
+msgid "Restore From CD"
+msgstr "Restaurar desde CD"
+
+#: ../../standalone/drakbackup_.c:3492
+#, c-format
+msgid "Not the correct CD label. Disk is labelled %s."
+msgstr "No es el CD correcto. El disco estĂĄ etiquetado %s."
+
+#: ../../standalone/drakbackup_.c:3502
+#, c-format
+msgid ""
+"Insert the tape with volume label %s\n"
+" in the tape drive device %s"
+msgstr ""
+"Inserte la cinta con la etiqueta de volumen %s\n"
+" en la unidad de cinta %s"
+
+#: ../../standalone/drakbackup_.c:3502
+msgid "Restore From Tape"
+msgstr "Restaurar desde cinta"
+
+#: ../../standalone/drakbackup_.c:3504
+#, c-format
+msgid "Not the correct tape label. Tape is labelled %s."
+msgstr "No es la cinta adecuada. La cinta estĂĄ etiquetada %s."
+
+#: ../../standalone/drakbackup_.c:3524
+msgid "Restore Via Network"
+msgstr "Restaurar por medio de la red"
+
+#: ../../standalone/drakbackup_.c:3524
+#, c-format
+msgid "Restore Via Network Protocol: %s"
+msgstr "Restaurar por medio del protocolo de red: %s"
+
+#: ../../standalone/drakbackup_.c:3525
+msgid "Host Name"
+msgstr "Nombre del host"
+
+#: ../../standalone/drakbackup_.c:3526
+msgid "Host Path or Module"
+msgstr "Ruta del host o mĂłdulo"
+
+#: ../../standalone/drakbackup_.c:3533
+msgid "Password required"
+msgstr "Se necesita contraseña"
+
+#: ../../standalone/drakbackup_.c:3539
+msgid "Username required"
+msgstr "Se necesita nombre de usuario"
+
+#: ../../standalone/drakbackup_.c:3542
+msgid "Hostname required"
+msgstr "Se necesita nombre del host"
+
+#: ../../standalone/drakbackup_.c:3547
+msgid "Path or Module required"
+msgstr "Se necesita Ruta o MĂłdulo"
+
+#: ../../standalone/drakbackup_.c:3560
+msgid "Files Restored..."
+msgstr "Archivos restaurados..."
+
+#: ../../standalone/drakbackup_.c:3563
+msgid "Restore Failed..."
+msgstr "FallĂł la restauraciĂłn..."
+
+#: ../../standalone/drakbackup_.c:3801
msgid "Restore all backups"
msgstr "Restaurar todas las copias de respaldo"
-#: ../../standalone/drakbackup_.c:3241
+#: ../../standalone/drakbackup_.c:3810
msgid "Custom Restore"
msgstr "RestauraciĂłn personalizada"
-#: ../../standalone/drakbackup_.c:3287 ../../standalone/drakbackup_.c:3320
-#: ../../standalone/drakbackup_.c:3346 ../../standalone/drakbackup_.c:3373
-#: ../../standalone/drakbackup_.c:3400 ../../standalone/drakbackup_.c:3460
-#: ../../standalone/drakbackup_.c:3487 ../../standalone/drakbackup_.c:3513
+#: ../../standalone/drakbackup_.c:3856
+msgid "CD in place - continue."
+msgstr "CD en su lugar - continuar."
+
+#: ../../standalone/drakbackup_.c:3862
+msgid "Browse to new restore repository."
+msgstr "Examinar un repositorio de restauraciĂłn nuevo."
+
+#: ../../standalone/drakbackup_.c:3865
+msgid "Restore From Catalog"
+msgstr "Restaurar desde CatĂĄlogo"
+
+#: ../../standalone/drakbackup_.c:3893
+msgid "Restore Progress"
+msgstr "Progreso de restauraciĂłn"
+
+#: ../../standalone/drakbackup_.c:3935 ../../standalone/drakbackup_.c:3968
+#: ../../standalone/drakbackup_.c:3994 ../../standalone/drakbackup_.c:4021
+#: ../../standalone/drakbackup_.c:4048 ../../standalone/drakbackup_.c:4108
+#: ../../standalone/drakbackup_.c:4135 ../../standalone/drakbackup_.c:4165
+#: ../../standalone/drakbackup_.c:4191
msgid "Previous"
msgstr "Anterior"
-#: ../../standalone/drakbackup_.c:3291 ../../standalone/drakbackup_.c:3377
+#: ../../standalone/drakbackup_.c:3939 ../../standalone/drakbackup_.c:4025
#: ../../standalone/logdrake_.c:223
msgid "Save"
msgstr "Guardar"
-#: ../../standalone/drakbackup_.c:3350
+#: ../../standalone/drakbackup_.c:3998
msgid "Build Backup"
msgstr "Realizar copia de respaldo"
-#: ../../standalone/drakbackup_.c:3404 ../../standalone/drakbackup_.c:3974
+#: ../../standalone/drakbackup_.c:4052 ../../standalone/drakbackup_.c:4632
msgid "Restore"
msgstr "Restaurar"
-#: ../../standalone/drakbackup_.c:3553
-msgid ""
-"Please Build backup before to restore it...\n"
-" or verify that your path to save is correct."
-msgstr ""
-"Por favor, realize la copia de respaldo antes de restaurarla...\n"
-" o verifique que la ruta para almacenar es correcta."
-
-#: ../../standalone/drakbackup_.c:3574
+#: ../../standalone/drakbackup_.c:4231
msgid ""
-"Error during sendmail\n"
-" your report mail was not sent\n"
+"Error during sendmail.\n"
+" Your report mail was not sent.\n"
" Please configure sendmail"
msgstr ""
-"Error enviando correo con sendmail\n"
-" su correo-e de reporte no se enviĂł\n"
+"Error enviando correo con sendmail.\n"
+" Su correo-e de reporte no se enviĂł.\n"
" Por favor, configure a sendmail"
-#: ../../standalone/drakbackup_.c:3598
+#: ../../standalone/drakbackup_.c:4255
msgid ""
"The following packages need to be installed:\n"
" @list_of_rpm_to_install"
@@ -11281,7 +11862,7 @@ msgstr ""
"Deben estar instalados los paquetes siguientes:\n"
" @list_of_rpm_to_install"
-#: ../../standalone/drakbackup_.c:3621
+#: ../../standalone/drakbackup_.c:4278
msgid ""
"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
@@ -11289,19 +11870,19 @@ msgstr ""
"Error enviando el archivo por FTP.\n"
" Por favor, corrija su configuraciĂłn de FTP."
-#: ../../standalone/drakbackup_.c:3644
+#: ../../standalone/drakbackup_.c:4301
msgid "Please select data to restore..."
msgstr "Por favor, seleccione los datos a restaurar..."
-#: ../../standalone/drakbackup_.c:3665
+#: ../../standalone/drakbackup_.c:4322
msgid "Please select media for backup..."
msgstr "Por favor, seleccione el soporte para la copia de respaldo..."
-#: ../../standalone/drakbackup_.c:3687
+#: ../../standalone/drakbackup_.c:4344
msgid "Please select data to backup..."
msgstr "Por favor, elija los datos a respaldar..."
-#: ../../standalone/drakbackup_.c:3709
+#: ../../standalone/drakbackup_.c:4366
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
@@ -11309,59 +11890,59 @@ msgstr ""
"No se econtrĂł el archivo de configuraciĂłn,\n"
" por favor haga clic sobre Asistente o Avanzado."
-#: ../../standalone/drakbackup_.c:3730
+#: ../../standalone/drakbackup_.c:4387
msgid "Under Devel ... please wait."
msgstr "En desarrollo ... por favor, espere."
-#: ../../standalone/drakbackup_.c:3811
+#: ../../standalone/drakbackup_.c:4468
msgid "Backup system files"
msgstr "Respaldar archivos del sistema"
-#: ../../standalone/drakbackup_.c:3813
+#: ../../standalone/drakbackup_.c:4470
msgid "Backup user files"
msgstr "Respaldar archivos de usuarios"
-#: ../../standalone/drakbackup_.c:3815
+#: ../../standalone/drakbackup_.c:4472
msgid "Backup other files"
msgstr "Respaldar otros archivos"
-#: ../../standalone/drakbackup_.c:3817 ../../standalone/drakbackup_.c:3850
+#: ../../standalone/drakbackup_.c:4474 ../../standalone/drakbackup_.c:4507
msgid "Total Progress"
msgstr "Progreso total"
-#: ../../standalone/drakbackup_.c:3841
+#: ../../standalone/drakbackup_.c:4498
msgid "files sending by FTP"
msgstr "EnvĂ­o de archivos por FTP"
-#: ../../standalone/drakbackup_.c:3845
+#: ../../standalone/drakbackup_.c:4502
msgid "Sending files..."
msgstr "Enviando archivos..."
-#: ../../standalone/drakbackup_.c:3931
+#: ../../standalone/drakbackup_.c:4588
msgid "Backup Now from configuration file"
msgstr "Respaldar Ahora desde archivo de configuraciĂłn"
-#: ../../standalone/drakbackup_.c:3936
+#: ../../standalone/drakbackup_.c:4593
msgid "View Backup Configuration."
msgstr "Ver configuraciĂłn del respaldo"
-#: ../../standalone/drakbackup_.c:3956
+#: ../../standalone/drakbackup_.c:4614
msgid "Wizard Configuration"
msgstr "ConfiguraciĂłn del Asistente"
-#: ../../standalone/drakbackup_.c:3961
+#: ../../standalone/drakbackup_.c:4619
msgid "Advanced Configuration"
msgstr "ConfiguraciĂłn avanzada"
-#: ../../standalone/drakbackup_.c:3966
+#: ../../standalone/drakbackup_.c:4624
msgid "Backup Now"
msgstr "Respaldar Ahora"
-#: ../../standalone/drakbackup_.c:3996
+#: ../../standalone/drakbackup_.c:4658
msgid "Drakbackup"
msgstr "Drakbackup"
-#: ../../standalone/drakbackup_.c:4045
+#: ../../standalone/drakbackup_.c:4707
msgid ""
"options description:\n"
"\n"
@@ -11421,7 +12002,7 @@ msgstr ""
" \n"
"\n"
-#: ../../standalone/drakbackup_.c:4075
+#: ../../standalone/drakbackup_.c:4737
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -11435,7 +12016,7 @@ msgstr ""
" que configurar myhostname o mydomain en /etc/postfix/main.cf\n"
"\n"
-#: ../../standalone/drakbackup_.c:4083
+#: ../../standalone/drakbackup_.c:4745
msgid ""
"options description:\n"
"\n"
@@ -11512,28 +12093,28 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:4122
+#: ../../standalone/drakbackup_.c:4784
msgid ""
"restore description:\n"
" \n"
-"Only the most recent date will be used ,because with incremental \n"
-"backups it is necesarry to restore one by one each older backups.\n"
+"Only the most recent date will be used, because with incremental \n"
+"backups it is necessary to restore one by one each older backup.\n"
"\n"
-"So if you don't like to restore a user please unselect all his\n"
-"check box.\n"
+"So if you don't want to restore a user please unselect all their\n"
+"check boxes.\n"
"\n"
-"Otherwise, you are able to select only one of this\n"
+"Otherwise, you are able to select only one of these.\n"
"\n"
" - Incremental Backups:\n"
"\n"
"\tThe incremental backup is the most powerful \n"
-"\toption to use backup, this option allow you \n"
-"\tto backup all your data the first time, and \n"
-"\tonly the changed after.\n"
-"\tSo you will be able during the restore\n"
+"\toption to use. This option allows you to \n"
+"\tbackup all of your data the first time, and \n"
+"\tonly the changed data after.\n"
+"\tSo you will be able, during the restore\n"
"\tstep, to restore your data from a specified\n"
"\tdate.\n"
-"\tIf you have not selected this options all\n"
+"\tIf you have not selected this option all\n"
"\told backups are deleted before each backup. \n"
"\n"
"\n"
@@ -11541,11 +12122,11 @@ msgid ""
msgstr ""
"descripciĂłn de la restauraciĂłn:\n"
" \n"
-"SĂłlo se utilizarĂĄ la fecha mĂĄs reciente, ya que con respaldos\n"
-"incrementales sĂłlo es necesario restaurar de uno de los antiguos.\n"
+"SĂłlo se utilizarĂĄ la fecha mĂĄs reciente, ya que con respaldos \n"
+"incrementales sĂłlo es necesario restaurar uno a uno los antiguos.\n"
"\n"
"Por lo tanto, si no desea restaurar un usuario, por favor desmarque\n"
-"su casilla.\n"
+"todas las casillas de los mismos.\n"
"\n"
"En caso contrario, sĂłlo puede seleccionar alguno de Ă©stos\n"
"\n"
@@ -11562,20 +12143,20 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:4148 ../../standalone/drakbackup_.c:4225
+#: ../../standalone/drakbackup_.c:4810 ../../standalone/drakbackup_.c:4887
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
" Copyright (C) 2001 MandrakeSoft por DUPONT Sebastien <dupont_s\\@epita.fr>"
-#: ../../standalone/drakbackup_.c:4150 ../../standalone/drakbackup_.c:4227
+#: ../../standalone/drakbackup_.c:4812 ../../standalone/drakbackup_.c:4889
msgid ""
" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
" actualizaciones 2002 MandrakeSoft por Stew Benedict <sbenedict"
"\\@mandrakesoft.com>"
-#: ../../standalone/drakbackup_.c:4152 ../../standalone/drakbackup_.c:4229
+#: ../../standalone/drakbackup_.c:4814 ../../standalone/drakbackup_.c:4891
msgid ""
" This program is free software; you can redistribute it and/or modify\n"
" it under the terms of the GNU General Public License as published by\n"
@@ -11605,7 +12186,7 @@ msgstr ""
" along with this program; if not, write to the Free Software\n"
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
-#: ../../standalone/drakbackup_.c:4166
+#: ../../standalone/drakbackup_.c:4828
msgid ""
"Description:\n"
"\n"
@@ -11699,7 +12280,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:4204
+#: ../../standalone/drakbackup_.c:4866
msgid ""
"options description:\n"
"\n"
@@ -11717,7 +12298,7 @@ msgstr ""
"antes de enviarlo al servidor.\n"
"\n"
-#: ../../standalone/drakbackup_.c:4213
+#: ../../standalone/drakbackup_.c:4875
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -11739,7 +12320,7 @@ msgstr ""
"Es importante ser cuidadoso y no modificar los archivos de\n"
"datos de respaldo a mano.\n"
-#: ../../standalone/drakbackup_.c:4243
+#: ../../standalone/drakbackup_.c:4905
msgid ""
"Description:\n"
"\n"
@@ -11868,9 +12449,9 @@ msgstr "Aisstente Inicial"
msgid "Synchronization tool"
msgstr "Herramienta de sincronizaciĂłn"
-#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:85
-#: ../../standalone/drakbug_.c:150 ../../standalone/drakbug_.c:152
-#: ../../standalone/drakbug_.c:156
+#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:86
+#: ../../standalone/drakbug_.c:151 ../../standalone/drakbug_.c:153
+#: ../../standalone/drakbug_.c:157
msgid "Standalone Tools"
msgstr "Herramientas 'standalone'"
@@ -11914,23 +12495,23 @@ msgstr "Userdrake"
msgid "Configuration Wizards"
msgstr "Asistentes de configuraciĂłn"
-#: ../../standalone/drakbug_.c:96
+#: ../../standalone/drakbug_.c:97
msgid "Application:"
msgstr "AplicaciĂłn:"
-#: ../../standalone/drakbug_.c:97
+#: ../../standalone/drakbug_.c:98
msgid "Package: "
msgstr "Paquete:"
-#: ../../standalone/drakbug_.c:98
+#: ../../standalone/drakbug_.c:99
msgid "Kernel:"
msgstr "NĂșcleo:"
-#: ../../standalone/drakbug_.c:99
+#: ../../standalone/drakbug_.c:100
msgid "Release: "
msgstr "VersiĂłn:"
-#: ../../standalone/drakbug_.c:114
+#: ../../standalone/drakbug_.c:115
msgid ""
"\n"
"\n"
@@ -11949,19 +12530,19 @@ msgstr ""
"muestra arriba serĂĄ transferida a ese servidor\n"
"\n"
-#: ../../standalone/drakbug_.c:135
+#: ../../standalone/drakbug_.c:136
msgid "Report"
msgstr "Reporte"
-#: ../../standalone/drakbug_.c:165
+#: ../../standalone/drakbug_.c:166
msgid "Not installed"
msgstr "No instalado"
-#: ../../standalone/drakbug_.c:182
+#: ../../standalone/drakbug_.c:183
msgid "connecting to Bugzilla wizard ..."
msgstr "conectando con el asistente Bugzilla..."
-#: ../../standalone/drakbug_.c:189
+#: ../../standalone/drakbug_.c:190
msgid "No browser available! Please install one"
msgstr "ÂĄNo hay un navegador disponible! Por favor, instale uno"
@@ -12410,7 +12991,7 @@ msgid "Font List"
msgstr "Lista de tipografĂ­as"
#: ../../standalone/drakfont_.c:909
-msgid "Choose the applications that will support the fonts :"
+msgid "Choose the applications that will support the fonts:"
msgstr "Elija las aplicaciones que soportarĂĄn las tipografĂ­as:"
#: ../../standalone/drakfont_.c:918
@@ -12482,19 +13063,19 @@ msgstr "Quitar tipografĂ­as de su sistema"
msgid "Post Uninstall"
msgstr "Post-desinstalaciĂłn"
-#: ../../standalone/drakgw_.c:42 ../../standalone/drakgw_.c:195
+#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:188
msgid "Internet Connection Sharing"
msgstr "Compartir la conexiĂłn a Internet"
-#: ../../standalone/drakgw_.c:121
+#: ../../standalone/drakgw_.c:119
msgid "Sorry, we support only 2.4 kernels."
msgstr "Lo siento, sĂłlo se soportan los nĂșcleos 2.4."
-#: ../../standalone/drakgw_.c:133
+#: ../../standalone/drakgw_.c:130
msgid "Internet Connection Sharing currently enabled"
msgstr "Ahora, la conexiĂłn compartida a Internet estĂĄ activada ahora"
-#: ../../standalone/drakgw_.c:134
+#: ../../standalone/drakgw_.c:131
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -12506,31 +13087,31 @@ msgstr ""
"\n"
"¿Qué desea hacer?"
-#: ../../standalone/drakgw_.c:138
+#: ../../standalone/drakgw_.c:135
msgid "disable"
msgstr "desactivar"
-#: ../../standalone/drakgw_.c:138 ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:135 ../../standalone/drakgw_.c:160
msgid "dismiss"
msgstr "rechazar"
-#: ../../standalone/drakgw_.c:138 ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:135 ../../standalone/drakgw_.c:160
msgid "reconfigure"
msgstr "reconfigurar"
-#: ../../standalone/drakgw_.c:141
+#: ../../standalone/drakgw_.c:138
msgid "Disabling servers..."
msgstr "Desactivando los servidores..."
-#: ../../standalone/drakgw_.c:149
+#: ../../standalone/drakgw_.c:146
msgid "Internet connection sharing is now disabled."
msgstr "Ahora, la conexiĂłn compartida a Internet estĂĄ inactiva."
-#: ../../standalone/drakgw_.c:158
+#: ../../standalone/drakgw_.c:155
msgid "Internet Connection Sharing currently disabled"
msgstr "Ahora, la conexiĂłn compartida a Internet estĂĄ desactivada"
-#: ../../standalone/drakgw_.c:159
+#: ../../standalone/drakgw_.c:156
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
@@ -12542,19 +13123,19 @@ msgstr ""
"\n"
"¿Qué desea hacer?"
-#: ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:160
msgid "enable"
msgstr "activar"
-#: ../../standalone/drakgw_.c:170
+#: ../../standalone/drakgw_.c:167
msgid "Enabling servers..."
msgstr "Activando los servidores..."
-#: ../../standalone/drakgw_.c:175
+#: ../../standalone/drakgw_.c:172
msgid "Internet connection sharing is now enabled."
msgstr "Ahora, la conexiĂłn compartida a Internet estĂĄ activa."
-#: ../../standalone/drakgw_.c:196
+#: ../../standalone/drakgw_.c:189
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
"With that feature, other computers on your local network will be able to use "
@@ -12570,21 +13151,21 @@ msgstr ""
"Aviso: necesita un adaptador de red dedicado para configurar una red de ĂĄrea "
"local (LAN)."
-#: ../../standalone/drakgw_.c:222
+#: ../../standalone/drakgw_.c:215
#, c-format
msgid "Interface %s (using module %s)"
msgstr "Interfaz %s (usando el mĂłdulo %s)"
-#: ../../standalone/drakgw_.c:223
+#: ../../standalone/drakgw_.c:216
#, c-format
msgid "Interface %s"
msgstr "Interfaz %s"
-#: ../../standalone/drakgw_.c:231
+#: ../../standalone/drakgw_.c:224
msgid "No network adapter on your system!"
msgstr "ÂĄNo hay ningĂșn adaptador de red en su sistema!"
-#: ../../standalone/drakgw_.c:232
+#: ../../standalone/drakgw_.c:225
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
@@ -12592,11 +13173,11 @@ msgstr ""
"No se ha detectado ningĂșn adaptador de red en su sistema. Por favor, ejecute "
"la herramienta de configuraciĂłn del hardware."
-#: ../../standalone/drakgw_.c:238
+#: ../../standalone/drakgw_.c:231
msgid "Network interface"
msgstr "Interfaz de red"
-#: ../../standalone/drakgw_.c:239
+#: ../../standalone/drakgw_.c:232
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -12611,7 +13192,7 @@ msgstr ""
"\n"
"Se va a configurar su red de ĂĄrea local con ese adaptador."
-#: ../../standalone/drakgw_.c:248
+#: ../../standalone/drakgw_.c:241
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
@@ -12619,11 +13200,11 @@ msgstr ""
"Por favor, elija qué adaptador de red estarå conectado a su red de årea "
"local."
-#: ../../standalone/drakgw_.c:266
+#: ../../standalone/drakgw_.c:259
msgid "Network interface already configured"
msgstr "Interfaz de red ya configurada"
-#: ../../standalone/drakgw_.c:267
+#: ../../standalone/drakgw_.c:260
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -12638,15 +13219,15 @@ msgstr ""
"\n"
"Puede hacerlo manualmente pero necesita saber lo que estĂĄ haciendo."
-#: ../../standalone/drakgw_.c:272
+#: ../../standalone/drakgw_.c:265
msgid "Automatic reconfiguration"
msgstr "Volver a configurar automĂĄticamente"
-#: ../../standalone/drakgw_.c:273
+#: ../../standalone/drakgw_.c:266
msgid "Show current interface configuration"
msgstr "Mostrar la configuraciĂłn corriente de la interfaz"
-#: ../../standalone/drakgw_.c:275
+#: ../../standalone/drakgw_.c:268
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -12663,7 +13244,7 @@ msgstr ""
"Atributo IP: %s\n"
"Controlador: %s"
-#: ../../standalone/drakgw_.c:287
+#: ../../standalone/drakgw_.c:280
msgid ""
"I can keep your current configuration and assume you already set up a DHCP "
"server; in that case please verify I correctly read the C-Class Network that "
@@ -12683,56 +13264,44 @@ msgstr ""
"un servidor DHCP por Ud.\n"
"\n"
-#: ../../standalone/drakgw_.c:292
+#: ../../standalone/drakgw_.c:285
msgid "C-Class Local Network"
msgstr "Red Local Clase C"
-#: ../../standalone/drakgw_.c:293
+#: ../../standalone/drakgw_.c:286
msgid "(This) DHCP Server IP"
msgstr "IP de (este) servidor DHCP"
-#: ../../standalone/drakgw_.c:294
+#: ../../standalone/drakgw_.c:287
msgid "Re-configure interface and DHCP server"
msgstr "Volver a configurar la interfaz y el servidor DHCP"
-#: ../../standalone/drakgw_.c:301
+#: ../../standalone/drakgw_.c:294
msgid "The Local Network did not finish with `.0', bailing out."
msgstr "La red local no finalizĂł con `.0', saliendo."
-#: ../../standalone/drakgw_.c:312
+#: ../../standalone/drakgw_.c:305
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr ""
"ÂĄSe encontrĂł un conflicto potencial de direcciones LAN en la configuraciĂłn "
"de %s!\n"
-#: ../../standalone/drakgw_.c:320
-msgid "Firewalling configuration detected!"
-msgstr "ÂĄSe detectĂł la configuraciĂłn del cortafuegos!"
-
-#: ../../standalone/drakgw_.c:321
-msgid ""
-"Warning! An existing firewalling configuration has been detected. You may "
-"need some manual fix after installation."
-msgstr ""
-"ÂĄAtenciĂłn! Se ha detectado la configuraciĂłn del cortafuegos existente. Puede "
-"que necesite algĂșn ajuste manual tras la instalaciĂłn."
-
-#: ../../standalone/drakgw_.c:328
+#: ../../standalone/drakgw_.c:315
msgid "Configuring..."
msgstr "Configurando..."
-#: ../../standalone/drakgw_.c:329
+#: ../../standalone/drakgw_.c:316
msgid "Configuring scripts, installing software, starting servers..."
msgstr ""
"Configurando los scripts, instalando el software, iniciando los servidores..."
-#: ../../standalone/drakgw_.c:365
+#: ../../standalone/drakgw_.c:352
#, c-format
msgid "Problems installing package %s"
msgstr "Problemas al instalar el paquete %s"
-#: ../../standalone/drakgw_.c:549
+#: ../../standalone/drakgw_.c:485
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
@@ -12742,23 +13311,23 @@ msgstr ""
"Ahora puede compartir su conexiĂłn a Internet con otros ordenadores de su red "
"de ĂĄrea local, usando la configuraciĂłn automĂĄtica de la red (DHCP)."
-#: ../../standalone/drakgw_.c:566
+#: ../../standalone/drakgw_.c:504
msgid "The setup has already been done, but it's currently disabled."
msgstr "La configuraciĂłn ya se ha hecho, pero ahora estĂĄ desactivada."
-#: ../../standalone/drakgw_.c:567
+#: ../../standalone/drakgw_.c:505
msgid "The setup has already been done, and it's currently enabled."
msgstr "La configuraciĂłn ya se ha hecho, y ahora estĂĄ activada."
-#: ../../standalone/drakgw_.c:568
+#: ../../standalone/drakgw_.c:506
msgid "No Internet Connection Sharing has ever been configured."
msgstr "No se ha configurado la conexiĂłn compartida a Internet."
-#: ../../standalone/drakgw_.c:573
+#: ../../standalone/drakgw_.c:511
msgid "Internet connection sharing configuration"
msgstr "ConfiguraciĂłn de la conexiĂłn compartida a Internet"
-#: ../../standalone/drakgw_.c:580
+#: ../../standalone/drakgw_.c:518
#, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -12773,6 +13342,151 @@ msgstr ""
"\n"
"Haga click sobre Configurar para lanzar el asistente de configuraciĂłn."
+#: ../../standalone/draksound_.c:46
+msgid "No Sound Card detected!"
+msgstr "ÂĄNo se detectĂł tarjeta de sonido!"
+
+#: ../../standalone/draksound_.c:47
+msgid ""
+"No Sound Card has been detected on your machine. Please verify that a Linux-"
+"supported Sound Card is correctly plugged in.\n"
+"\n"
+"\n"
+"You can visit our hardware database at:\n"
+"\n"
+"\n"
+"http://www.linux-mandrake.com/en/hardware.php3"
+msgstr ""
+"No se detectĂł tarjeta de sonido en su mĂĄquina. Por favor, verifique que "
+"tiene conectada correctamente una tarjeta de sonido soportada por Linux.\n"
+"\n"
+"\n"
+"Puede visitar nuestra base de datos de hardware en:\n"
+"\n"
+"\n"
+"http://www.linux-mandrake.com/en/hardware.php3"
+
+#: ../../standalone/draksplash_.c:32
+msgid "package ImageMagick is required for correct working"
+msgstr "se necesita el paquete ImageMagick para un funcionamiento correcto"
+
+#: ../../standalone/draksplash_.c:76
+msgid "first step creation"
+msgstr "primer paso de creaciĂłn"
+
+#: ../../standalone/draksplash_.c:77
+msgid "final resolution"
+msgstr "resoluciĂłn final"
+
+#: ../../standalone/draksplash_.c:78 ../../standalone/draksplash_.c:170
+msgid "choose image file"
+msgstr "elija un archivo de imagen"
+
+#: ../../standalone/draksplash_.c:79
+msgid "Theme name"
+msgstr "Nombre del tema"
+
+#: ../../standalone/draksplash_.c:81
+msgid "make bootsplash step 2"
+msgstr "paso 2, make bootsplash"
+
+#: ../../standalone/draksplash_.c:82
+msgid "go to lilosplash configuration"
+msgstr "ir a la configuraciĂłn lilosplash"
+
+#: ../../standalone/draksplash_.c:83
+msgid "quit"
+msgstr "salir"
+
+#: ../../standalone/draksplash_.c:84
+msgid "save theme"
+msgstr "guardar tema"
+
+#: ../../standalone/draksplash_.c:85
+msgid "browse"
+msgstr "examinar"
+
+#: ../../standalone/draksplash_.c:98 ../../standalone/draksplash_.c:159
+msgid "Configure bootsplash picture"
+msgstr "Configurar foto de bootsplash"
+
+#: ../../standalone/draksplash_.c:99
+msgid "x coordinate of text box in number of character"
+msgstr "coordenada x del cuadro de texto en cantidad de caracteres"
+
+#: ../../standalone/draksplash_.c:100
+msgid "y coordinate of text box in number of character"
+msgstr "coordenada y del cuadro de texto en cantidad de caracteres"
+
+#: ../../standalone/draksplash_.c:101
+msgid "text width"
+msgstr "ancho del texto"
+
+#: ../../standalone/draksplash_.c:102
+msgid "text box height"
+msgstr "altura del cuadro de texto"
+
+#: ../../standalone/draksplash_.c:103
+msgid "the progress bar x coordinate of its upper left corner"
+msgstr "coordenada x del ĂĄngulo superior izquierdo de la barra de progreso"
+
+#: ../../standalone/draksplash_.c:104
+msgid "the progress bar y coordinate of its upper left corner"
+msgstr "coordenada y del ĂĄngulo superior izquierdo de la barra de progreso"
+
+#: ../../standalone/draksplash_.c:105
+msgid "the width of the progress bar"
+msgstr "el ancho de la barra de progreso"
+
+#: ../../standalone/draksplash_.c:106
+msgid "the heigth of the progress bar"
+msgstr "la altura de la barra de progreso"
+
+#: ../../standalone/draksplash_.c:107
+msgid "the color of the progress bar"
+msgstr "el color de la barra de progreso"
+
+#: ../../standalone/draksplash_.c:119
+msgid "go back"
+msgstr "volver"
+
+#: ../../standalone/draksplash_.c:120
+msgid "preview"
+msgstr "previsualizar"
+
+#: ../../standalone/draksplash_.c:121
+msgid "choose color"
+msgstr "elija color"
+
+#: ../../standalone/draksplash_.c:124
+msgid "Display logo on Console"
+msgstr "Mostrar logo en la consola"
+
+#: ../../standalone/draksplash_.c:125
+msgid "Make kernel message quiet by default"
+msgstr "Predeterminadamente el mensaje del nĂșcleo es \"silencioso\""
+
+#: ../../standalone/draksplash_.c:161 ../../standalone/draksplash_.c:330
+#, c-format
+msgid "This theme haven't yet any bootsplash in %s !"
+msgstr "ÂĄTodavĂ­a este tema no tiene un bootsplash en %s!"
+
+#: ../../standalone/draksplash_.c:213
+msgid "saving Bootsplash theme..."
+msgstr "guardando tema de Bootsplash..."
+
+#: ../../standalone/draksplash_.c:436
+msgid "ProgressBar color selection"
+msgstr "selecciĂłn del color de la barra de progreso"
+
+#: ../../standalone/draksplash_.c:454
+msgid "You must choose an image file first!"
+msgstr "ÂĄPrimero debe elegir un archivo de imagen!"
+
+#: ../../standalone/draksplash_.c:463
+msgid "Generating preview ..."
+msgstr "Generando previsualizaciĂłn..."
+
#: ../../standalone/drakxtv_.c:49
msgid ""
"XawTV isn't installed!\n"
@@ -12870,11 +13584,11 @@ msgstr ""
"teclee su norma de tv y paĂ­s"
#: ../../standalone/drakxtv_.c:109
-msgid "TV norm :"
+msgid "TV norm:"
msgstr "Norma de TV:"
#: ../../standalone/drakxtv_.c:110
-msgid "Area :"
+msgid "Area:"
msgstr "Área:"
#: ../../standalone/drakxtv_.c:114
@@ -12958,7 +13672,7 @@ msgstr "ÂĄÂĄÂĄ No se puede iniciar la actualizaciĂłn en vivo !!!\n"
msgid "The change is done, but to be effective you must logout"
msgstr "Se ha realizado el cambio, pero no se harĂĄ efectivo hasta que salga"
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:517
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:515
msgid "logdrake"
msgstr "logdrake"
@@ -13127,7 +13841,7 @@ msgstr "configuraciĂłn del servicio"
#: ../../standalone/logdrake_.c:431
msgid ""
-"You will receive an alert if one of the selected service is no more running"
+"You will receive an alert if one of the selected services is no more running"
msgstr ""
"RecibirĂĄ una alerta si se detiene la ejecuciĂłn de uno de los servicios "
"seleccionados"
@@ -13148,19 +13862,19 @@ msgstr "configuraciĂłn de alerta"
msgid "Please enter your email address below "
msgstr "Por favor, ingrese su direcciĂłn de correo electrĂłnico debajo "
-#: ../../standalone/logdrake_.c:499
+#: ../../standalone/logdrake_.c:497
msgid "Save as.."
msgstr "Guardar como..."
-#: ../../standalone/mousedrake_.c:43
+#: ../../standalone/mousedrake_.c:45
msgid "Please, choose the type of your mouse."
msgstr "Seleccione el tipo de su ratĂłn, por favor."
-#: ../../standalone/mousedrake_.c:57
+#: ../../standalone/mousedrake_.c:58
msgid "Emulate third button?"
msgstr "ÂżEmular el tercer botĂłn?"
-#: ../../standalone/printerdrake_.c:48
+#: ../../standalone/printerdrake_.c:57
msgid "Reading printer data ..."
msgstr "Leyendo los datos de la impresora ..."
@@ -13172,21 +13886,33 @@ msgstr "Detectando dispositivos..."
msgid "Test ports"
msgstr "Probar puertos"
-#: ../../standalone/scannerdrake_.c:52
+#: ../../standalone/scannerdrake_.c:53 ../../standalone/scannerdrake_.c:68
+#: ../../standalone/scannerdrake_.c:81
#, c-format
-msgid "%s found on %s, configure it ?"
+msgid "The %s is not supported by this version of Mandrake Linux."
+msgstr "El %s no estĂĄ soportado por esta versiĂłn de Mandrake Linux."
+
+#: ../../standalone/scannerdrake_.c:56
+#, c-format
+msgid "%s found on %s, configure it?"
msgstr "se encontrĂł %s en %s, Âżconfigurarlo?"
#: ../../standalone/scannerdrake_.c:59
+#, c-format
+msgid "%s is not in the scanner database, configure it manually?"
+msgstr ""
+"%s no estĂĄ en la base de datos de escĂĄneres, Âżconfigurarlo manualmente?"
+
+#: ../../standalone/scannerdrake_.c:65
msgid "Select a scanner"
msgstr "Seleccione un escĂĄner."
-#: ../../standalone/scannerdrake_.c:79
+#: ../../standalone/scannerdrake_.c:93
#, c-format
msgid "This %s scanner is unsupported"
msgstr "El escĂĄner %s no estĂĄ soportado"
-#: ../../standalone/scannerdrake_.c:93
+#: ../../standalone/scannerdrake_.c:107
#, c-format
msgid ""
"Scannerdrake was not able to detect your %s scanner.\n"
@@ -13195,11 +13921,11 @@ msgstr ""
"Scannerdrake no pudo detectar su escĂĄner %s.\n"
"Por favor, seleccione el dispositivo donde estĂĄ conectado su escĂĄner"
-#: ../../standalone/scannerdrake_.c:95
+#: ../../standalone/scannerdrake_.c:109
msgid "choose device"
msgstr "elija el dispositivo"
-#: ../../standalone/scannerdrake_.c:101
+#: ../../standalone/scannerdrake_.c:115
#, c-format
msgid ""
"This %s scanner must be configured by printerdrake.\n"
@@ -13210,7 +13936,7 @@ msgstr ""
"Puede lanzar printerdrake desde el Centro de control de Mandrake en la "
"secciĂłn Hardware."
-#: ../../standalone/scannerdrake_.c:106
+#: ../../standalone/scannerdrake_.c:120
#, c-format
msgid ""
"Your %s scanner has been configured.\n"
@@ -13221,12 +13947,12 @@ msgstr ""
"Ahora puede escanear documentos usando \"XSane\" en el menĂș Multimedios/"
"GrĂĄficos."
-#: ../../standalone/service_harddrake_.c:57
+#: ../../standalone/service_harddrake_.c:39
#, c-format
msgid "Some devices in the \"%s\" hardware class were removed:\n"
msgstr "Se quitaron algunos dispositivos en la clase de hardware \"%s\":\n"
-#: ../../standalone/service_harddrake_.c:61
+#: ../../standalone/service_harddrake_.c:43
#, c-format
msgid ""
"\n"
@@ -13235,36 +13961,6 @@ msgstr ""
"\n"
"Se agregaron algunos dispositivos en la clase %s:\n"
-#: ../../standalone/tinyfirewall_.c:30
-msgid "Firewalling Configuration"
-msgstr "ConfiguraciĂłn del cortafuegos"
-
-#: ../../standalone/tinyfirewall_.c:43
-msgid "Firewalling configuration"
-msgstr "ConfiguraciĂłn del cortafuegos"
-
-#: ../../standalone/tinyfirewall_.c:78
-msgid ""
-"Firewalling\n"
-"\n"
-"You already have set up a firewall.\n"
-"Click on Configure to change or remove the firewall"
-msgstr ""
-"Cortafuegos\n"
-"\n"
-"Ya tiene configurado un cortafuegos.\n"
-"Haga clic sobre Configurar para cambiar o quitar el cortafuegos"
-
-#: ../../standalone/tinyfirewall_.c:82
-msgid ""
-"Firewalling\n"
-"\n"
-"Click on Configure to set up a standard firewall"
-msgstr ""
-"Cortafuegos\n"
-"\n"
-"Haga clic sobre Configurar para configurar un cortafuegos estĂĄndar"
-
#: ../../steps.pm_.c:14
msgid "Choose your language"
msgstr "Elija su idioma"
@@ -13337,226 +14033,7 @@ msgstr "Actualiz. del sistema"
msgid "Exit install"
msgstr "Salir de la instalaciĂłn"
-#: ../../tinyfirewall.pm_.c:9
-msgid ""
-"tinyfirewall configurator\n"
-"\n"
-"This configures a personal firewall for this Mandrake Linux machine.\n"
-"For a powerful dedicated firewall solution, please look to the\n"
-"specialized MandrakeSecurity Firewall distribution."
-msgstr ""
-"configurador de tinyfirewall\n"
-"\n"
-"Esto configura un cortafuegos personal para esta mĂĄquina Mandrake Linux.\n"
-"Para una soluciĂłn potente de cortafuegos dedicada, por favor eche un "
-"vistazo\n"
-"a la distribuciĂłn especializada MandrakeSecurity Firewall."
-
-#: ../../tinyfirewall.pm_.c:14
-msgid ""
-"We'll now ask you questions about which services you'd like to allow\n"
-"the Internet to connect to. Please think carefully about these\n"
-"questions, as your computer's security is important.\n"
-"\n"
-"Please, if you're not currently using one of these services, firewall\n"
-"it off. You can change this configuration anytime you like by\n"
-"re-running this application!"
-msgstr ""
-"Ahora le preguntaremos a qué servicios quiere permitir conectarse desde\n"
-"Internet. Por favor, piense cuidadosamente las respuestas, ya que la\n"
-"seguridad de su ordenador es importante.\n"
-"Por favor, si en este momento no estĂĄ usando alguno de estos servicios,\n"
-"protéjalos. ¥Puede cambiar esta configuración cuando quiera\n"
-"volviendo a ejecutar esta aplicaciĂłn!"
-
-#: ../../tinyfirewall.pm_.c:21
-msgid ""
-"Are you running a web server on this machine that you need the whole\n"
-"Internet to see? If you are running a webserver that only needs to be\n"
-"accessed by this machine, you can safely answer NO here.\n"
-"\n"
-msgstr ""
-"ÂżEstĂĄ corriendo un servidor web en esta mĂĄquina que quiere que vea toda\n"
-"Internet? Si estĂĄ corriendo un servidor web al que sĂłlo necesita acceder\n"
-"desde esta mĂĄquina, aquĂ­ puede responder con seguridad NO.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:26
-msgid ""
-"Are you running a name server on this machine? If you didn't set one\n"
-"up to give away IP and zone information to the whole Internet, please\n"
-"answer no.\n"
-"\n"
-msgstr ""
-"ÂżEstĂĄ corriendo un servidor de nombres en esta mĂĄquina? Si no configurĂł uno\n"
-"para entregar informaciĂłn de IP y de la zona a toda Internet, por favor\n"
-"responda no.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:31
-msgid ""
-"Do you want to allow incoming Secure Shell (ssh) connections? This\n"
-"is a telnet-replacement that you might use to login. If you're using\n"
-"telnet now, you should definitely switch to ssh. telnet is not\n"
-"encrypted -- so some attackers can steal your password if you use\n"
-"it. ssh is encrypted and doesn't allow for this eavesdropping."
-msgstr ""
-"ÂżDesea permitir conexiones de entrada de Secure Shell (ssh)? Este es un\n"
-"reemplazo de telnet que puede usar para la entrada al sistema. Si ahora estĂĄ "
-"usando\n"
-"telnet, definitivamente deberĂ­a cambiar a ssh. telnet no estĂĄ cifrado, por\n"
-"lo tanto algunos atacantes pueden robarle su contraseña si lo usa. ssh estå\n"
-"cifrado y no permite este tipo de ataque."
-
-#: ../../tinyfirewall.pm_.c:36
-msgid ""
-"Do you want to allow incoming telnet connections?\n"
-"This is horribly unsafe, as we explained in the previous screen. We\n"
-"strongly recommend answering No here and using ssh in place of\n"
-"telnet.\n"
-msgstr ""
-"ÂżDesea permitir conexiones entrantes por telnet?\n"
-"Esto es terriblemente inseguro, como explicamos en la pantalla anterior. Es\n"
-"altamente recomendable responder No aquĂ­ y usar ssh en lugar de\n"
-"telnet.\n"
-
-#: ../../tinyfirewall.pm_.c:41
-msgid ""
-"Are you running an FTP server here that you need accessible to the\n"
-"Internet? If you are, we strongly recommend that you only use it for\n"
-"Anonymous transfers. Any passwords sent by FTP can be stolen by some\n"
-"attackers, since FTP also uses no encryption for transferring passwords.\n"
-msgstr ""
-"ÂżEstĂĄ corriendo un servidor FTP que debe ser accesible desde Internet?\n"
-"En ese caso, es altamente recomendable que sĂłlo lo use para transferencias\n"
-"anónimas. Algunos atacantes pueden robar cualquier contraseña enviada por "
-"FTP,\n"
-"ya que FTP tampoco usa cifrado para transferir las contraseñas.\n"
-
-#: ../../tinyfirewall.pm_.c:46
-msgid ""
-"Are you running a mail server here? If you're sending you \n"
-"messages through pine, mutt or any other text-based mail client,\n"
-"you probably are. Otherwise, you should firewall this off.\n"
-"\n"
-msgstr ""
-"ÂżEstĂĄ corriendo un servidor de correo? Si envĂ­a sus mensajes con pine, "
-"mutt \n"
-"o cualquier otro cliente de correo de modo texto, probablemente sĂ­.\n"
-"En caso contrario, deberĂ­a proteger esto con el cortafuegos.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:51
-msgid ""
-"Are you running a POP or IMAP server here? This would\n"
-"be used to host non-web-based mail accounts for people via \n"
-"this machine.\n"
-"\n"
-msgstr ""
-"ÂżEstĂĄ corriendo un servidor POP o IMAP? Estos deberĂ­an ser\n"
-"usados para almacenar cuentas de correo no basadas en web para las\n"
-"personas en esta mĂĄquina.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:56
-msgid ""
-"You appear to be running a 2.2 kernel. If your network IP\n"
-"is automatically set by a computer in your home or office \n"
-"(dynamically assigned), we need to allow for this. Is\n"
-"this the case?\n"
-msgstr ""
-"Parece que estĂĄ ejecutando un nĂșcleo 2.2. Si una computadora en su casa\n"
-"o en la oficina configura su direcciĂłn IP de red automĂĄticamente\n"
-"(asignaciĂłn dinĂĄmica), debemos permitir esto. ÂżEs este el caso?\n"
-
-#: ../../tinyfirewall.pm_.c:61
-msgid ""
-"Is your computer getting time syncronized to another computer?\n"
-"Mostly, this is used by medium-large Unix/Linux organizations\n"
-"to synchronize time for logging and such. If you're not part\n"
-"of a larger office and haven't heard of this, you probably \n"
-"aren't."
-msgstr ""
-"ÂżEl reloj de su computadora estĂĄ sincronizado al reloj de otra computadora?\n"
-"Mayormente, esto es lo que usan las organizaciones con servidores Unix/"
-"Linux\n"
-"medianamente grandes para sincronizar los tiempos de conexiĂłn y cosas asĂ­.\n"
-"Si no es parte de una oficina grande y nunca escuchĂł nada acerca de esto,\n"
-"probablemente no sea su situaciĂłn."
-
-#: ../../tinyfirewall.pm_.c:66
-msgid ""
-"Configuration complete. May we write these changes to disk?\n"
-"\n"
-"\n"
-"\n"
-msgstr ""
-"ConfiguraciĂłn completa. ÂżSe pueden escribir estos cambios al disco?\n"
-"\n"
-"\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:82
-#, c-format
-msgid "Can't open %s: %s\n"
-msgstr "No se puede abrir %s: %s\n"
-
-#: ../../tinyfirewall.pm_.c:84
-#, c-format
-msgid "Can't open %s for writing: %s\n"
-msgstr "No se puede abrir %s para escribir: %s\n"
-
-#: ../../tinyfirewall.pm_.c:178
-msgid "No I don't need DHCP"
-msgstr "No, no necesito DHCP"
-
-#: ../../tinyfirewall.pm_.c:178
-msgid "Yes I need DHCP"
-msgstr "SĂ­, necesito DHCP"
-
-#: ../../tinyfirewall.pm_.c:179
-msgid "No I don't need NTP"
-msgstr "No, no necesito NTP"
-
-#: ../../tinyfirewall.pm_.c:179
-msgid "Yes I need NTP"
-msgstr "SĂ­, necesito NTP"
-
-#: ../../tinyfirewall.pm_.c:180 ../../tinyfirewall.pm_.c:184
-msgid "Don't Save"
-msgstr "No grabar"
-
-#: ../../tinyfirewall.pm_.c:180 ../../tinyfirewall.pm_.c:184
-#: ../../tinyfirewall.pm_.c:204
-msgid "Save & Quit"
-msgstr "Grabar y Salir"
-
-#: ../../tinyfirewall.pm_.c:195 ../../tinyfirewall.pm_.c:199
-msgid "Firewall Configuration Wizard"
-msgstr "Asistente para la configuraciĂłn del Cortafuegos"
-
-#: ../../tinyfirewall.pm_.c:197
-msgid "No (firewall this off from the internet)"
-msgstr "No (proteger esto de la Internet detrĂĄs del cortafuegos)"
-
-#: ../../tinyfirewall.pm_.c:198
-msgid "Yes (allow this through the firewall)"
-msgstr "Sí (permitir esto a través del cortafuegos)"
-
-#: ../../tinyfirewall.pm_.c:230
-msgid "Please Wait... Verifying installed packages"
-msgstr "Espere por favor... Verificando los paquetes instalados"
-
-#: ../../tinyfirewall.pm_.c:236
-#, c-format
-msgid ""
-"Failure installing the needed packages : %s and Bastille.\n"
-" Try to install them manually."
-msgstr ""
-"Fallo instalando los paquetes necesarios: %s y Bastille.\n"
-" Intente instalarlos a mano."
-
-#: ../../ugtk.pm_.c:619
+#: ../../ugtk.pm_.c:594
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
@@ -13691,6 +14168,10 @@ msgid "Graphical Environment"
msgstr "Entorno grĂĄfico"
#: ../../share/compssUsers:999
+msgid "Development"
+msgstr "Desarrollo"
+
+#: ../../share/compssUsers:999
msgid "Apache, Pro-ftpd"
msgstr "Apache y Pro-ftpd"
@@ -13802,576 +14283,5 @@ msgstr "Multimedios - GrabaciĂłn de CD"
msgid "Scientific Workstation"
msgstr "EstaciĂłn de trabajo CientĂ­fica"
-#~ msgid ""
-#~ "Which ISDN configuration do you prefer?\n"
-#~ "\n"
-#~ "* The Old configuration uses isdn4net. It contains powerfull\n"
-#~ " tools, but is tricky to configure, and not standard.\n"
-#~ "\n"
-#~ "* The New configuration is easier to understand, more\n"
-#~ " standard, but with less tools.\n"
-#~ "\n"
-#~ "We recommand the light configuration.\n"
-#~ msgstr ""
-#~ "¿Qué configuración de RDSI prefiere?\n"
-#~ "\n"
-#~ "* La configuraciĂłn antigua utiliza isdn4net. Tiene herramientas\n"
-#~ " poderosas, pero es algo complicada de configurar para un recién \n"
-#~ " llegado, y no es estĂĄndar.\n"
-#~ "* La configuraciĂłn nueva es mĂĄs fĂĄcil de entender, mĂĄs estĂĄndar,\n"
-#~ " pero con menos herramientas.\n"
-#~ "\n"
-#~ "Le recomendamos la configuraciĂłn ligera (esto es, la nueva).\n"
-
-#~ msgid ""
-#~ "Error durind sendmail\n"
-#~ " your report mail was not sent\n"
-#~ " Please configure sendmail"
-#~ msgstr ""
-#~ "Error enviando correo con sendmail\n"
-#~ " su correo-e de reporte no se enviĂł\n"
-#~ " Por favor, configure a sendmail"
-
-#~ msgid ""
-#~ "options description:\n"
-#~ "\n"
-#~ " - Backup system files:\n"
-#~ " \n"
-#~ "\tThis option allows you to backup your /etc directory,\n"
-#~ "\twhich contains all configuration files. Please be\n"
-#~ "\tcareful during the restore step to not overwrite:\n"
-#~ "\t\t/etc/passwd \n"
-#~ "\t\t/etc/group \n"
-#~ "\t\t/etc/fstab\n"
-#~ "\n"
-#~ " - Backup User files: \n"
-#~ "\n"
-#~ "\tThis option allows you select all users that you want \n"
-#~ "\tto backup.\n"
-#~ "\tTo preserve disk space, it is recommended that you \n"
-#~ "\tdo not include web browser's cache.\n"
-#~ "\n"
-#~ " - Backup Other files: \n"
-#~ "\n"
-#~ "\tThis option allows you to add more data to save.\n"
-#~ "\tWith the other backup it's not possible at the \n"
-#~ "\tmoment to select select incremental backup.\t\t\n"
-#~ " \n"
-#~ " - Incremental Backups:\n"
-#~ "\n"
-#~ "\tThe incremental backup is the most powerful \n"
-#~ "\toption for backup. This option allows you \n"
-#~ "\tto backup all your data the first time, and \n"
-#~ "\tonly the changed afterward.\n"
-#~ "\tThen you will be able, during the restore\n"
-#~ "\tstep, to restore your data from a specified\n"
-#~ "\tdate.\n"
-#~ "\tIf you have not selected this option all\n"
-#~ "\told backups are deleted before each backup. \n"
-#~ "\n"
-#~ "\n"
-#~ msgstr ""
-#~ "descripciĂłn de las opciones:\n"
-#~ "\n"
-#~ " - Respladar archivos del sistema:\n"
-#~ " \n"
-#~ "\tEsta opciĂłn permite respaldar su directorio /etc, que\n"
-#~ "\tcontiene todos los archivos de configuraciĂłn. Por favor\n"
-#~ "\ttenga cuidado durante la restauraciĂłn de no sobre-escribir:\n"
-#~ "\t\t/etc/passwd \n"
-#~ "\t\t/etc/group \n"
-#~ "\t\t/etc/fstab\n"
-#~ "\n"
-#~ " - Respaldar archivos de usuario:\n"
-#~ "\n"
-#~ "\tEsta opciĂłn permite seleccionar todos los usuarios que\n"
-#~ "\tdesea respaldar.\n"
-#~ "\tPara preservar espacio, se recomienda no incluir el\n"
-#~ "\tcache del navegador web.\n"
-#~ "\n"
-#~ " - Respaldar otros archivos:\n"
-#~ "\n"
-#~ "\tEsta opción permite añadir mås datos a guardar.\n"
-#~ "\tCon el otro respaldo no es posible, por ahora,\n"
-#~ "\tseleccionar el respaldo incremental.\t\t\n"
-#~ " \n"
-#~ " - Respaldo incremental:\n"
-#~ "\n"
-#~ "\tEl respaldo incremental es la opciĂłn mĂĄs potente.\n"
-#~ "\tLe permite respaldar todos sus datos la primera\n"
-#~ "\tvez, y luego sĂłlo aquellos que cambiaron.\n"
-#~ "\tLuego, podrĂĄ, durante la etapa de restauraciĂłn,n\trestaurar sus datos "
-#~ "desde una fecha especificada.\n"
-#~ "\t\n"
-#~ "\tSi no ha seleccionado esta opciĂłn todos los\n"
-#~ "\trespaldos antiguos se borran antes de volver a respaldar.\n"
-#~ "\n"
-#~ "\n"
-
-#~ msgid ""
-#~ "restore description:\n"
-#~ " \n"
-#~ "Only the most recent date will be used ,because with incremental \n"
-#~ "backups it is necesarry to restore one by one each older backups.\n"
-#~ "\n"
-#~ "So if you don't like to restore an user please unselect all his\n"
-#~ "check box.\n"
-#~ "\n"
-#~ "Otherwise, you are able to select only one of this\n"
-#~ "\n"
-#~ " - Incremental Backups:\n"
-#~ "\n"
-#~ "\tThe incremental backup is the most powerfull \n"
-#~ "\toption to use backup, this option allow you \n"
-#~ "\tto backup all your data the first time, and \n"
-#~ "\tonly the changed after.\n"
-#~ "\tSo you will be able during the restore\n"
-#~ "\tstep, to restore your data from a specified\n"
-#~ "\tdate.\n"
-#~ "\tIf you have not selected this options all\n"
-#~ "\told backups are deleted before each backup. \n"
-#~ "\n"
-#~ "\n"
-#~ "\n"
-#~ msgstr ""
-#~ "descripciĂłn de la restauraciĂłn:\n"
-#~ " \n"
-#~ "SĂłlo se utilizarĂĄ la fecha mĂĄs reciente, ya que con respaldos\n"
-#~ "incrementales sĂłlo es necesario restaurar de uno de los antiguos.\n"
-#~ "\n"
-#~ "Por lo tanto, si no desea restaurar un usuario, por favor desmarque\n"
-#~ "su casilla.\n"
-#~ "\n"
-#~ "En caso contrario, sĂłlo puede seleccionar alguno de Ă©stos\n"
-#~ "\n"
-#~ " - Respaldos incrementales:\n"
-#~ "\n"
-#~ "\tEl respaldo incremental es la opciĂłn mĂĄs potente.\n"
-#~ "\tLe permite respaldar todos sus datos la primera\n"
-#~ "\tvez, y luego sĂłlo aquellos que cambiaron.\n"
-#~ "\tLuego, podrĂĄ, durante la etapa de restauraciĂłn,\n"
-#~ "\trestaurar sus datos desde una fecha especificada.\n"
-#~ "\tSi no ha seleccionado esta opciĂłn todos los\n"
-#~ "\trespaldos antiguos se borran antes de volver a respaldar...\n"
-#~ "\n"
-#~ "\n"
-#~ "\n"
-
-#~ msgid ""
-#~ "This level is to be used with care. It makes your system more easy to "
-#~ "use,\n"
-#~ " but very sensitive: it must not be used for a machine "
-#~ "connected to others\n"
-#~ " or to the Internet. There is no password access."
-#~ msgstr ""
-#~ "Este nivel se debe usar con mucho cuidado. Hace su sistema mĂĄs simple de\n"
-#~ " usar, pero muy sensible: no se debe utilizar en una mĂĄquina\n"
-#~ " conectada a otras o a la Internet. No hay contraseñas de acceso."
-
-#~ msgid ""
-#~ "With this security level, the use of this system as a server becomes "
-#~ "possible.\n"
-#~ " The security is now high enough to use the system as a "
-#~ "server which can accept\n"
-#~ " connections from many clients. Note: if your machine is "
-#~ "only a client on the Internet, you should choose a lower level."
-#~ msgstr ""
-#~ "Con este nivel de seguridad, es posible utilizar el sistema como un "
-#~ "servidor.\n"
-#~ " La seguridad es lo suficientemente alta como para usar el sistema\n"
-#~ " como servidor que acepta conexiones de mĂșltiples clientes.\n"
-#~ " Nota: si su mĂĄquina sĂłlo es un cliente en la Internet, deberĂ­a elegir "
-#~ "un nivel inferior."
-
-#~ msgid "Basic Options"
-#~ msgstr "Opciones bĂĄsicas"
-
-#~ msgid "Security Checks"
-#~ msgstr "Verificaciones de seguridad"
-
-
-#~ msgid "Data list to include on CDROM."
-#~ msgstr "Lista de datos a incluir en el CDROM."
-
-#~ msgid "Please choose your CD space"
-#~ msgstr "Por favor, elija el espacio de su CD"
-
-#~ msgid "Please enter the cd writer speed"
-#~ msgstr "Por favor, ingrese la velocidad de la grabadora de CDs"
-
-#~ msgid "Please check if you want to erase your CDRW before"
-#~ msgstr "Por favor, marque si desea borrar su CDRW primero"
-
-#~ msgid "Please enter your CD Writer device name (ex: 0,1,0)"
-#~ msgstr ""
-#~ "Por favor, ingrese el nombre del dispositivo de su grabadora de CDs (ej: "
-#~ "0,1,0)"
-
-#~ msgid "Please check if you want to include install boot on your CD."
-#~ msgstr "Por favor, marque si desea hacer que su CD arranque."
-
-#~ msgid "Url should begin with 'ftp:'"
-#~ msgstr "La Url deberĂ­a empezar por 'ftp:'"
-
-#~ msgid ""
-#~ "Please check if you want to include\n"
-#~ " install boot on your CD."
-#~ msgstr ""
-#~ "Por favor verifique si desea hacer que su\n"
-#~ " CD arranque."
-
-#~ msgid "Windows PDC"
-#~ msgstr "Windows PDC"
-
-#~ msgid ""
-#~ "\n"
-#~ "Welcome to the Printer Setup Wizard\n"
-#~ "\n"
-#~ "This wizard will help you to install your printer(s) connected to this "
-#~ "computer.\n"
-#~ "\n"
-#~ "Please plug in your printer(s) on this computer and turn it/them on. "
-#~ "Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
-#~ "want to set up your printer(s) now.\n"
-#~ "\n"
-#~ "Note that some computers can crash during the printer auto-detection, "
-#~ "turn off \"Auto-detect printers\" to do a printer installation without "
-#~ "auto-detection. Use the \"Expert Mode\" of printerdrake when you want to "
-#~ "set up printing on a remote printer if printerdrake does not list it "
-#~ "automatically."
-#~ msgstr ""
-#~ "\n"
-#~ "Bienvenido al asistente de configuraciĂłn de la impresora\n"
-#~ "\n"
-#~ "Este asistente le ayudarĂĄ a instalar su(s) impresora(s) conectada(s) a "
-#~ "esta computadora.\n"
-#~ "\n"
-#~ "Por favor, conecte su(s) impresora(s) a este ordenador y enciéndala(s). "
-#~ "Haga clic en \"Siguiente\" cuando esté listo, y en \"Cancelar\" si no "
-#~ "quiere configurar ahora su(s) impresora(s).\n"
-#~ "\n"
-#~ "FĂ­jese en que algunas computadoras pueden colgarse durante la detecciĂłn "
-#~ "automĂĄtica de la impresora. En este caso, desactive \"Detectar las "
-#~ "impresoras automĂĄticamente\" para hacer una instalaciĂłn sin detecciĂłn "
-#~ "automĂĄtica. Use el \"Modo experto\" de printerdrake si quiere configurar "
-#~ "la impresiĂłn en una impresora remota si printerdrake no la lista "
-#~ "automĂĄticamente."
-
-#~ msgid "Auto-Detection of Printers"
-#~ msgstr "AutodetecciĂłn de impresoras."
-
-#~ msgid ""
-#~ "Printerdrake is able to auto-detect your locally connected parallel and "
-#~ "USB printers for you, but note that on some systems the auto-detection "
-#~ "CAN FREEZE YOUR SYSTEM AND THIS CAN LEAD TO CORRUPTED FILE SYSTEMS! So do "
-#~ "it ON YOUR OWN RISK!\n"
-#~ "\n"
-#~ "Do you really want to get your printers auto-detected?"
-#~ msgstr ""
-#~ "Printerdrake puede detectar automĂĄticamente sus impresoras de puerto "
-#~ "paralelo y USB conectadas localmente, pero fĂ­jese en que en algunos "
-#~ "sistemas esto PUEDE COLGAR EL SISTEMA E INCLUSO CORROMPER SUS SITEMAS DE "
-#~ "ARCHIVOS. Entonces, HÁGALO BAJO SU PROPIO RIESGO.\n"
-#~ "\n"
-#~ "ÂżSeguro que desea detectar automĂĄticamente sus impresoras?"
-
-#~ msgid "Set up printer manually"
-#~ msgstr "Configurar la impresora manualmente"
-
-#~ msgid ""
-#~ "Network printers can only be installed after the installation. Choose "
-#~ "\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
-#~ msgstr ""
-#~ "Las impresoras en red sĂłlo se pueden instalar tras la inslaciĂłn. "
-#~ "Seleccione \"Hardware\" y luego \"Impresora\" en el Centro de control de "
-#~ "Mandrake."
-
-#~ msgid ""
-#~ "To install network printers, click \"Cancel\", switch to the \"Expert Mode"
-#~ "\", and click \"Add a new printer\" again."
-#~ msgstr ""
-#~ "Para instalar impresoras en red, haga clic en \"Cancelar\", cambie al "
-#~ "\"Modo experto\", y haga clic en \"Añadir una nueva impresora\" de nuevo."
-
-#~ msgid "Installing HPOJ package..."
-#~ msgstr "Instalando el paquete HPOJ..."
-
-#~ msgid "Checking device and configuring HPOJ..."
-#~ msgstr "Verificando el dispositivo y configurando HPOJ ..."
-
-#~ msgid "Scanning on your HP multi-function device"
-#~ msgstr "Escaneando en su dispositivo multifunciĂłn de HP"
-
-#~ msgid "Making printer port available for CUPS..."
-#~ msgstr "Haciendo que el puerto de impresora esté disponible para CUPS ..."
-
-#~ msgid "Control Center"
-#~ msgstr "Centro de control"
-
-#~ msgid "Choose the tool you want to use"
-#~ msgstr "Elija la herramienta que desea usar"
-
-#~ msgid "Configure the way the system will alert you"
-#~ msgstr "Configura la forma en que el sistema le alertarĂĄ"
-
-#~ msgid "no serial_usb found\n"
-#~ msgstr "no se encontrĂł ningĂșn usb_serie\n"
-
-#~ msgid "fsck failed with exit code %d or signal %d"
-#~ msgstr "fsck falló con código de salida %d o señal %d"
-
-#~ msgid "Graphics card identification: %s\n"
-#~ msgstr "IdentificaciĂłn de la tarjeta grĂĄfica: %s\n"
-
-#~ msgid "Choose options for server"
-#~ msgstr "Elija las opciones para el servidor"
-
-#~ msgid "Monitor not configured"
-#~ msgstr "El monitor no estĂĄ configurado"
-
-#~ msgid "Graphics card not configured yet"
-#~ msgstr "La tarjeta grĂĄfica todavĂ­a no estĂĄ configurada"
-
-#~ msgid "Resolutions not chosen yet"
-#~ msgstr "AĂșn no ha elegido las resoluciones"
-
-#~ msgid ""
-#~ "\n"
-#~ "try to change some parameters"
-#~ msgstr ""
-#~ "\n"
-#~ "intente cambiar algunos parĂĄmetros"
-
-#~ msgid "An error occurred:"
-#~ msgstr "OcurriĂł un error:"
-
-#~ msgid "Leaving in %d seconds"
-#~ msgstr "Saliendo en %d segundos"
-
-#~ msgid "Is this the correct setting?"
-#~ msgstr "ÂżEs Ă©sta la configuraciĂłn correcta?"
-
-#~ msgid "An error occurred, try to change some parameters"
-#~ msgstr "OcurriĂł un error, intente cambiar algunos parĂĄmetros"
-
-#~ msgid "XFree86 server: %s"
-#~ msgstr "Servidor XFree86: %s"
-
-#~ msgid "Show all"
-#~ msgstr "Mostrar todo"
-
-#~ msgid "Preparing X-Window configuration"
-#~ msgstr "Preparando la configuraciĂłn de X-Window"
-
-#~ msgid "What do you want to do?"
-#~ msgstr "¿Qué desea hacer?"
-
-#~ msgid "Change Monitor"
-#~ msgstr "Cambiar el monitor"
-
-#~ msgid "Change Graphics card"
-#~ msgstr "Cambiar la tarjeta grĂĄfica"
-
-#~ msgid "Change Server options"
-#~ msgstr "Cambiar las opciones del servidor X"
-
-#~ msgid "Change Resolution"
-#~ msgstr "Cambiar la resoluciĂłn"
-
-#~ msgid "Show information"
-#~ msgstr "Mostrar informaciĂłn"
-
-#~ msgid "Test again"
-#~ msgstr "Probar de nuevo"
-
-#~ msgid ""
-#~ "Your HP multi-function device was configured automatically to be able to "
-#~ "scan. Now you can scan from the command line with \"ptal-hp %s scan ..."
-#~ "\". Scanning via a graphical interface or from the GIMP is not supported "
-#~ "yet for your device. More information you will find in the \"/usr/share/"
-#~ "doc/hpoj-0.8/ptal-hp-scan.html\" file on your system. If you have an HP "
-#~ "LaserJet 1100 or 1200 you can only scan when you have the scanner option "
-#~ "installed.\n"
-#~ "\n"
-#~ "Do not use \"scannerdrake\" for this device!"
-#~ msgstr ""
-#~ "Su dispositivo multifunciĂłn HP se configurĂł automĂĄticamente para ser "
-#~ "capaz de escanear. Ahora puede escanear desde la lĂ­nea comandos con "
-#~ "\"ptal-hp %s scan ...\". No se soporta aĂșn el escaneo por medio de un "
-#~ "interfaz grĂĄfico e desde el GIMP para su dispositivo. EncontrarĂĄ mĂĄs "
-#~ "informaciĂłn en el archivo de su sistema \"/usr/share/doc/hpoj-0.8/ptal-hp-"
-#~ "scan.html\". Si tiene una HP LaserJet 1100 o 1200 puede escanear cuando "
-#~ "tenga la opciĂłn del escĂĄner instalada.\n"
-#~ "No use \"scannerdrake\" para este dispositivo."
-
-#~ msgid "Use Hard Drive with daemon"
-#~ msgstr "Usar el disco rĂ­gido con servidor"
-
-#~ msgid "Use FTP with daemon"
-#~ msgstr "Usar FTP con servidor"
-
-#~ msgid "Package List to Install"
-#~ msgstr "Lista de paquetes a instalar"
-
-#~ msgid "proftpd"
-#~ msgstr "proftpd"
-
-#~ msgid "sshd"
-#~ msgstr "sshd"
-
-#~ msgid "webmin"
-#~ msgstr "webmin"
-
-#~ msgid "xinetd"
-#~ msgstr "xinetd"
-
-#~ msgid "Setting security level"
-#~ msgstr "Definiendo el nivel de seguridad"
-
-#~ msgid "Select a graphics card"
-#~ msgstr "Seleccione una tarjeta grĂĄfica"
-
-#~ msgid "Choose a X driver"
-#~ msgstr "Elija un controlador X"
-
-#~ msgid "X driver"
-#~ msgstr "Controlador X"
-
-#~ msgid "Warning: testing this graphics card may freeze your computer"
-#~ msgstr ""
-#~ "Advertencia: probar con esta tarjeta de vĂ­deo puede colgar su ordenador"
-
-#~ msgid "Standard VGA, 640x480 at 60 Hz"
-#~ msgstr "VGA estĂĄndar, 640x480 a 60 Hz"
-
-#~ msgid "Super VGA, 800x600 at 56 Hz"
-#~ msgstr "Super VGA, 800x600 a 56 Hz"
-
-#~ msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
-#~ msgstr "Compatible 8514, 1024x768 a 87 Hz entrelazado (sin 800x600)"
-
-#~ msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
-#~ msgstr "Super VGA, 1024x768 a 87 Hz entrelazado, 800x600 a 56 Hz"
-
-#~ msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
-#~ msgstr "Super VGA extendido, 800x600 a 60 Hz, 640x480 a 72 Hz"
-
-#~ msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
-#~ msgstr "SVGA no-entrelazado, 1024x768 a 60 Hz, 800x600 a 72 Hz"
-
-#~ msgid "High Frequency SVGA, 1024x768 at 70 Hz"
-#~ msgstr "SVGA alta-frecuencia, 1024x768 a 70 Hz"
-
-#~ msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
-#~ msgstr "Monitor multi-frecuencia que soporta 1280x1024 a 60 Hz"
-
-#~ msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
-#~ msgstr "Monitor multi-frecuencia que soporta 1280x1024 a 74 Hz"
-
-#~ msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
-#~ msgstr "Monitor multi-frecuencia que soporta 1280x1024 a 76 Hz"
-
-#~ msgid "Monitor that can do 1600x1200 at 70 Hz"
-#~ msgstr "Monitor que soporta 1600x1200 a 70 Hz"
-
-#~ msgid "Monitor that can do 1600x1200 at 76 Hz"
-#~ msgstr "Monitor que soporta 1600x1200 a 76 Hz"
-
-#~ msgid ""
-#~ "The total size for the groups you have selected is approximately %d MB.\n"
-#~ msgstr ""
-#~ "El tamaño total para los grupos que seleccionó es de aproximadamente %d "
-#~ "MB.\n"
-
-#~ msgid ""
-#~ "If you wish to install less than this size,\n"
-#~ "select the percentage of packages that you want to install.\n"
-#~ "\n"
-#~ "A low percentage will install only the most important packages;\n"
-#~ "a percentage of 100%% will install all selected packages."
-#~ msgstr ""
-#~ "Si desea instalar un tamaño total inferior,\n"
-#~ "elija el porcentaje de paquetes que desea instalar.\n"
-#~ "\n"
-#~ "Un porcentaje bajo instalarĂĄ sĂłlo los paquetes mĂĄs importantes;\n"
-#~ "un porcentaje de 100%% instalarĂĄ todos los paquetes seleccionados."
-
-#~ msgid ""
-#~ "You have space on your disk for only %d%% of these packages.\n"
-#~ "\n"
-#~ "If you wish to install less than this,\n"
-#~ "select the percentage of packages that you want to install.\n"
-#~ "A low percentage will install only the most important packages;\n"
-#~ "a percentage of %d%% will install as many packages as possible."
-#~ msgstr ""
-#~ "Tiene espacio en disco para sĂłlo %d%% de esos paquetes.\n"
-#~ "\n"
-#~ "Si desea instalar menos de esto,\n"
-#~ "elija el porcentaje de paquetes que desea instalar.\n"
-#~ "Un porcentaje bajo instalarĂĄ sĂłlo los paquetes mĂĄs importantes;\n"
-#~ "un porcentaje de %d%% instalarĂĄ todos los que sea posible."
-
-#~ msgid "You will be able to choose them more specifically in the next step."
-#~ msgstr "PodrĂĄ elegirlos mĂĄs detalladamente en la etapa siguiente"
-
-#~ msgid "Percentage of packages to install"
-#~ msgstr "Porcentaje de paquetes a instalar"
-
-#~ msgid "hide expert mode"
-#~ msgstr "ocultar modo experto"
-
-#~ msgid "show expert mode"
-#~ msgstr "mostrar modo experto"
-
-#~ msgid ""
-#~ "If '%s' is a removable peripheral,\n"
-#~ " verify that a media is inserted."
-#~ msgstr ""
-#~ "Si '%s' es un preiférico removible,\n"
-#~ " verifique que tiene un soporte insertado."
-
-#~ msgid ""
-#~ "WARNING! This will format '%s'.\n"
-#~ "All data will be erased on the peripheral '%s'.\n"
-#~ "If you want to continue, press OK. "
-#~ msgstr ""
-#~ "ÂĄADVERTENCIA! Esto formaterĂĄ a '%s'.\n"
-#~ "Se borrarån todos los datos en el periférico '%s'.\n"
-#~ "Si desea continuar, presione Aceptar. "
-
-#~ msgid "unknown"
-#~ msgstr "desconocido"
-
-#~ msgid "Select a module or write his name:"
-#~ msgstr "Seleccione un mĂłdulo o escriba su nombre:"
-
-#~ msgid "Category"
-#~ msgstr "CategorĂ­a"
-
-#~ msgid "preload module"
-#~ msgstr "pre-cargar mĂłdulo"
-
-#~ msgid "click on a category"
-#~ msgstr "haga clic sobre una categorĂ­a"
-
-#~ msgid "Remove"
-#~ msgstr "Remover"
-
-#~ msgid "Tool for boot disk creation"
-#~ msgstr "Herramienta para crear disquetes que arrancan"
-
-#~ msgid "Show expert mode"
-#~ msgstr "Mostrar modo experto"
-
-#~ msgid "modules"
-#~ msgstr "mĂłdulos"
-
-#~ msgid "Boot disk maker. Still in early stage.\n"
-#~ msgstr ""
-#~ "Generador de disquetes de arranque. TodavĂ­a en etapa experimental.\n"
-
-#~ msgid "experts only"
-#~ msgstr "sĂłlo expertos"
-
-#~ msgid "/File/_Preferences"
-#~ msgstr "/Archivo/_Preferencias"
+#~ msgid "%s"
+#~ msgstr "%s"
diff --git a/perl-install/share/po/et.po b/perl-install/share/po/et.po
index fbb11c1eb..43c667881 100644
--- a/perl-install/share/po/et.po
+++ b/perl-install/share/po/et.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2002-08-21 15:44+0200\n"
+"POT-Creation-Date: 2002-09-02 20:14+0200\n"
"PO-Revision-Date: 1999-10-28 19:54+0200\n"
"Last-Translator: Riho Kurg <rx@linux.ee>\n"
"Language-Team: Estonian <et@li.org>\n"
@@ -49,20 +49,20 @@ msgstr "32 MB"
msgid "64 MB or more"
msgstr "64 MB vői rohkem"
-#: ../../Xconfig/card.pm_.c:201
+#: ../../Xconfig/card.pm_.c:203
msgid "Choose a X server"
msgstr "Valige X server"
-#: ../../Xconfig/card.pm_.c:201
+#: ../../Xconfig/card.pm_.c:203
msgid "X server"
msgstr "X server"
#
-#: ../../Xconfig/card.pm_.c:228
+#: ../../Xconfig/card.pm_.c:230
msgid "Multi-head configuration"
msgstr "Mitme monitori seadistamine"
-#: ../../Xconfig/card.pm_.c:229
+#: ../../Xconfig/card.pm_.c:231
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
@@ -70,27 +70,27 @@ msgstr ""
"Süsteemis on vőimalik kasutada mitut monitori.\n"
"Mida Te soovite teha?"
-#: ../../Xconfig/card.pm_.c:284
+#: ../../Xconfig/card.pm_.c:286
msgid "Select the memory size of your graphics card"
msgstr "Valige graafikamälu suurus"
-#: ../../Xconfig/card.pm_.c:345
+#: ../../Xconfig/card.pm_.c:347
msgid "XFree configuration"
msgstr "XFree sätted"
-#: ../../Xconfig/card.pm_.c:347
+#: ../../Xconfig/card.pm_.c:349
msgid "Which configuration of XFree do you want to have?"
msgstr "Millise XFree konfiguratsiooni soovite kasutada?"
-#: ../../Xconfig/card.pm_.c:379
+#: ../../Xconfig/card.pm_.c:381
msgid "Configure all heads independently"
msgstr "Seadista kőik monitorid sőltumatult"
-#: ../../Xconfig/card.pm_.c:380
+#: ../../Xconfig/card.pm_.c:382
msgid "Use Xinerama extension"
msgstr "Kasuta Xinerama laiendusi"
-#: ../../Xconfig/card.pm_.c:384
+#: ../../Xconfig/card.pm_.c:386
#, fuzzy, c-format
msgid "Configure only card \"%s\"%s"
msgstr "Seadista ainult kaart \"%s\" (%s)"
@@ -101,13 +101,13 @@ msgstr "Seadista ainult kaart \"%s\" (%s)"
msgid "XFree %s"
msgstr "XFree86 %s"
-#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:435
+#: ../../Xconfig/card.pm_.c:410 ../../Xconfig/card.pm_.c:436
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s with 3D hardware acceleration"
msgstr "XFree %s koos 3D graafikakiirendi toega"
-#: ../../Xconfig/card.pm_.c:412
+#: ../../Xconfig/card.pm_.c:413
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -116,17 +116,17 @@ msgstr ""
"Teie videokaardi 3D graafikakiirendit saab kasutada vaid koos XFree %s-ga.\n"
"XFree %s toetab Teie videokaarti ja vőib omada paremat 2D tuge."
-#: ../../Xconfig/card.pm_.c:414 ../../Xconfig/card.pm_.c:437
+#: ../../Xconfig/card.pm_.c:415 ../../Xconfig/card.pm_.c:438
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr "Teie kaardi 3D graafikakiirendit toetab XFree %s."
-#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:443
+#: ../../Xconfig/card.pm_.c:423 ../../Xconfig/card.pm_.c:444
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s koos EKSPERIMENTAALSE 3D kiirendi toega"
-#: ../../Xconfig/card.pm_.c:425
+#: ../../Xconfig/card.pm_.c:426
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -137,7 +137,7 @@ msgstr ""
"SEE ON AGA EKSPERIMENTAALNE JA VŐIB OLLA EBASTABIILNE.\n"
"Teie kaarti toetab ka XFree %s, millel on ehk parem 2D tugi."
-#: ../../Xconfig/card.pm_.c:428 ../../Xconfig/card.pm_.c:445
+#: ../../Xconfig/card.pm_.c:429 ../../Xconfig/card.pm_.c:446
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
@@ -146,53 +146,54 @@ msgstr ""
"Teie videokaardi 3D graafikakiirendit saab kasutada koos XFree %s-ga.\n"
"SEE ON AGA EKSPERIMENTAALNE JA VŐIB OLLA EBASTABIILNE."
-#: ../../Xconfig/card.pm_.c:451
+#: ../../Xconfig/card.pm_.c:452
msgid "Xpmac (installation display driver)"
msgstr ""
-#: ../../Xconfig/main.pm_.c:78 ../../Xconfig/main.pm_.c:79
-#: ../../Xconfig/monitor.pm_.c:94 ../../any.pm_.c:974
+#: ../../Xconfig/main.pm_.c:76 ../../Xconfig/main.pm_.c:77
+#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:977
msgid "Custom"
msgstr "Isetehtud"
-#: ../../Xconfig/main.pm_.c:104
+#: ../../Xconfig/main.pm_.c:102
#, fuzzy
msgid "Graphic Card"
msgstr "Graafikakaart"
-#: ../../Xconfig/main.pm_.c:107 ../../Xconfig/monitor.pm_.c:91
+#: ../../Xconfig/main.pm_.c:105 ../../Xconfig/monitor.pm_.c:93
msgid "Monitor"
msgstr "Monitor"
-#: ../../Xconfig/main.pm_.c:110 ../../Xconfig/resolution_and_depth.pm_.c:209
+#: ../../Xconfig/main.pm_.c:108 ../../Xconfig/resolution_and_depth.pm_.c:209
msgid "Resolution"
msgstr "Kuvatihedus"
-#: ../../Xconfig/main.pm_.c:114
+#: ../../Xconfig/main.pm_.c:113
msgid "Test"
msgstr ""
-#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:59
-#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/removable.pm_.c:25
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:63
+#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/removable.pm_.c:25
#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "Eelistused"
#: ../../Xconfig/main.pm_.c:121 ../../Xconfig/resolution_and_depth.pm_.c:268
-#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:281
+#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:275
#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
-#: ../../interactive.pm_.c:351 ../../interactive/http.pm_.c:104
+#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:104
#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
-#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:156
-#: ../../my_gtk.pm_.c:284 ../../my_gtk.pm_.c:307
-#: ../../standalone/drakbackup_.c:3324 ../../standalone/drakbackup_.c:3419
-#: ../../standalone/drakbackup_.c:3438
+#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:159
+#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310
+#: ../../standalone/drakbackup_.c:3972 ../../standalone/drakbackup_.c:4067
+#: ../../standalone/drakbackup_.c:4086
msgid "Ok"
msgstr "OK"
#: ../../Xconfig/main.pm_.c:121 ../../diskdrake/dav.pm_.c:24
-#: ../../printerdrake.pm_.c:2933 ../../standalone/logdrake_.c:224
+#: ../../harddrake/ui.pm_.c:98 ../../printerdrake.pm_.c:3155
+#: ../../standalone/logdrake_.c:224
msgid "Quit"
msgstr "Välju"
@@ -209,28 +210,28 @@ msgstr ""
"\n"
"%s"
-#: ../../Xconfig/monitor.pm_.c:91
+#: ../../Xconfig/monitor.pm_.c:93
msgid "Choose a monitor"
msgstr "Valige monitor"
-#: ../../Xconfig/monitor.pm_.c:95
+#: ../../Xconfig/monitor.pm_.c:97
msgid "Plug'n Play"
msgstr ""
-#: ../../Xconfig/monitor.pm_.c:96 ../../mouse.pm_.c:45
+#: ../../Xconfig/monitor.pm_.c:98 ../../mouse.pm_.c:46
msgid "Generic"
msgstr "Tavaline"
-#: ../../Xconfig/monitor.pm_.c:97 ../../harddrake/ui.pm_.c:36
+#: ../../Xconfig/monitor.pm_.c:99 ../../harddrake/ui.pm_.c:37
#, fuzzy
msgid "Vendor"
msgstr "Tagasi"
-#: ../../Xconfig/monitor.pm_.c:107
+#: ../../Xconfig/monitor.pm_.c:109
msgid "Plug'n Play probing failed. Please choose a precise monitor"
msgstr ""
-#: ../../Xconfig/monitor.pm_.c:112
+#: ../../Xconfig/monitor.pm_.c:114
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -250,11 +251,11 @@ msgstr ""
"suurem kui Teie monitor vőimaldab. Vastasel juhul vőib Teie monitor hävida.\n"
"Kui kahtlete, valige pigem väiksem väärtus."
-#: ../../Xconfig/monitor.pm_.c:119
+#: ../../Xconfig/monitor.pm_.c:121
msgid "Horizontal refresh rate"
msgstr "Realaotussagedus"
-#: ../../Xconfig/monitor.pm_.c:120
+#: ../../Xconfig/monitor.pm_.c:122
msgid "Vertical refresh rate"
msgstr "Ekraaniuuendussagedus"
@@ -291,36 +292,41 @@ msgstr "Valige kuvatihedus ja värvisügavus"
msgid "Graphics card: %s"
msgstr "Graafikakaart: %s"
-#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1015
-#: ../../bootlook.pm_.c:334 ../../diskdrake/smbnfs_gtk.pm_.c:87
-#: ../../install_steps_gtk.pm_.c:412 ../../install_steps_gtk.pm_.c:470
-#: ../../install_steps_interactive.pm_.c:576 ../../interactive.pm_.c:142
-#: ../../interactive.pm_.c:351 ../../interactive/http.pm_.c:105
+#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1018
+#: ../../bootlook.pm_.c:338 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:406 ../../install_steps_gtk.pm_.c:464
+#: ../../install_steps_interactive.pm_.c:560 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:105
#: ../../interactive/newt.pm_.c:174 ../../interactive/stdio.pm_.c:39
-#: ../../interactive/stdio.pm_.c:143 ../../my_gtk.pm_.c:155
-#: ../../my_gtk.pm_.c:159 ../../my_gtk.pm_.c:284
-#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1990
-#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3278
-#: ../../standalone/drakbackup_.c:3311 ../../standalone/drakbackup_.c:3337
-#: ../../standalone/drakbackup_.c:3364 ../../standalone/drakbackup_.c:3391
-#: ../../standalone/drakbackup_.c:3451 ../../standalone/drakbackup_.c:3478
-#: ../../standalone/drakbackup_.c:3504 ../../standalone/drakconnect_.c:115
-#: ../../standalone/drakconnect_.c:147 ../../standalone/drakconnect_.c:289
-#: ../../standalone/drakconnect_.c:537 ../../standalone/drakconnect_.c:679
-#: ../../standalone/drakfloppy_.c:234 ../../standalone/drakfloppy_.c:383
-#: ../../standalone/drakfont_.c:970 ../../standalone/drakgw_.c:598
-#: ../../standalone/logdrake_.c:224 ../../standalone/logdrake_.c:528
-#: ../../standalone/tinyfirewall_.c:64
+#: ../../interactive/stdio.pm_.c:143 ../../my_gtk.pm_.c:158
+#: ../../my_gtk.pm_.c:162 ../../my_gtk.pm_.c:287
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:2124
+#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3926
+#: ../../standalone/drakbackup_.c:3959 ../../standalone/drakbackup_.c:3985
+#: ../../standalone/drakbackup_.c:4012 ../../standalone/drakbackup_.c:4039
+#: ../../standalone/drakbackup_.c:4099 ../../standalone/drakbackup_.c:4126
+#: ../../standalone/drakbackup_.c:4156 ../../standalone/drakbackup_.c:4182
+#: ../../standalone/drakconnect_.c:115 ../../standalone/drakconnect_.c:147
+#: ../../standalone/drakconnect_.c:289 ../../standalone/drakconnect_.c:537
+#: ../../standalone/drakconnect_.c:679 ../../standalone/drakfloppy_.c:234
+#: ../../standalone/drakfloppy_.c:383 ../../standalone/drakfont_.c:970
+#: ../../standalone/drakgw_.c:536 ../../standalone/logdrake_.c:224
+#: ../../standalone/logdrake_.c:526
msgid "Cancel"
msgstr "Katkesta"
-#: ../../Xconfig/test.pm_.c:26
+#: ../../Xconfig/test.pm_.c:30
+msgid "Test of the configuration"
+msgstr "Proovime seadistusi"
+
+#: ../../Xconfig/test.pm_.c:31
msgid "Do you want to test the configuration?"
msgstr "Kas soovite seadistusi proovida?"
-#: ../../Xconfig/test.pm_.c:26
-msgid "Test of the configuration"
-msgstr "Proovime seadistusi"
+#: ../../Xconfig/test.pm_.c:31
+#, fuzzy
+msgid "Warning: testing this graphic card may freeze your computer"
+msgstr "Hoiatus: testimine vőib Teie arvuti peatada"
#: ../../Xconfig/various.pm_.c:29
#, c-format
@@ -456,26 +462,22 @@ msgstr "Laadimine DOS/Windowsist (loadlin)"
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:158 ../../any.pm_.c:190
+#: ../../any.pm_.c:159 ../../any.pm_.c:190
msgid "Bootloader main options"
msgstr "Alglaaduri peasätted"
-#: ../../any.pm_.c:159 ../../any.pm_.c:191
+#: ../../any.pm_.c:160 ../../any.pm_.c:191
msgid "Bootloader to use"
msgstr "Eelistatav alglaadur"
-#: ../../any.pm_.c:161
+#: ../../any.pm_.c:162
msgid "Bootloader installation"
msgstr "Alglaaduri peasätted"
-#: ../../any.pm_.c:163 ../../any.pm_.c:193
+#: ../../any.pm_.c:164 ../../any.pm_.c:193
msgid "Boot device"
msgstr "Alglaadimisseade"
-#: ../../any.pm_.c:164
-msgid "LBA (doesn't work on old BIOSes)"
-msgstr "LBA (ei tööta vanema BIOSi korral)"
-
#: ../../any.pm_.c:165
msgid "Compact"
msgstr "Kompaktne"
@@ -492,16 +494,17 @@ msgstr "Graafikamood"
msgid "Delay before booting default image"
msgstr "Ooteaeg alglaadimisel"
-#: ../../any.pm_.c:170 ../../any.pm_.c:786
+#: ../../any.pm_.c:170 ../../any.pm_.c:788
#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1111 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:743 ../../printerdrake.pm_.c:858
-#: ../../standalone/drakconnect_.c:624 ../../standalone/drakconnect_.c:649
+#: ../../install_steps_interactive.pm_.c:1096 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:850 ../../printerdrake.pm_.c:965
+#: ../../standalone/drakbackup_.c:3528 ../../standalone/drakconnect_.c:624
+#: ../../standalone/drakconnect_.c:649
msgid "Password"
msgstr "Salasőna"
-#: ../../any.pm_.c:171 ../../any.pm_.c:787
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../any.pm_.c:171 ../../any.pm_.c:789
+#: ../../install_steps_interactive.pm_.c:1097
msgid "Password (again)"
msgstr "Salasőna (uuesti)"
@@ -535,14 +538,14 @@ msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr "Säte ``Piira käsurea suvandeid'' on ilma salasőnata mittekasutatav"
-#: ../../any.pm_.c:184 ../../any.pm_.c:762
-#: ../../diskdrake/interactive.pm_.c:1180
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../any.pm_.c:184 ../../any.pm_.c:764
+#: ../../diskdrake/interactive.pm_.c:1191
+#: ../../install_steps_interactive.pm_.c:1091
msgid "Please try again"
msgstr "Palun proovige veel"
-#: ../../any.pm_.c:184 ../../any.pm_.c:762
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../any.pm_.c:184 ../../any.pm_.c:764
+#: ../../install_steps_interactive.pm_.c:1091
msgid "The passwords do not match"
msgstr "Salasőnad ei klapi"
@@ -587,16 +590,16 @@ msgstr ""
"Praegu on kasutusel sellised kirjed.\n"
"Te vőite neid lisada ning olemasolevaid muuta."
-#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1483
-#: ../../standalone/drakbackup_.c:1596 ../../standalone/drakfont_.c:1011
+#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1558
+#: ../../standalone/drakbackup_.c:1671 ../../standalone/drakfont_.c:1011
#: ../../standalone/drakfont_.c:1054
msgid "Add"
msgstr "Lisa"
-#: ../../any.pm_.c:257 ../../any.pm_.c:774 ../../diskdrake/dav.pm_.c:60
+#: ../../any.pm_.c:257 ../../any.pm_.c:776 ../../diskdrake/dav.pm_.c:64
#: ../../diskdrake/hd_gtk.pm_.c:153 ../../diskdrake/removable.pm_.c:27
#: ../../diskdrake/smbnfs_gtk.pm_.c:88 ../../interactive/http.pm_.c:153
-#: ../../standalone/drakbackup_.c:2696
+#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2772
msgid "Done"
msgstr "Tehtud"
@@ -609,7 +612,7 @@ msgstr "Modifitseeri RAIDi"
msgid "Which type of entry do you want to add?"
msgstr "Millisele sektorile soovite seda tősta?"
-#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1630
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1705
msgid "Linux"
msgstr "Linux"
@@ -704,13 +707,13 @@ msgstr "On Teil veel kaarte?"
msgid "Do you have any %s interfaces?"
msgstr "Kas Teil on ikka mőni %s liides?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:821 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:283
+#: ../../any.pm_.c:660 ../../any.pm_.c:823 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:286
msgid "No"
msgstr "Ei"
-#: ../../any.pm_.c:660 ../../any.pm_.c:820 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:283
+#: ../../any.pm_.c:660 ../../any.pm_.c:822 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:286
msgid "Yes"
msgstr "Jah"
@@ -807,38 +810,46 @@ msgstr ""
msgid "access to administrative files"
msgstr ""
-#: ../../any.pm_.c:758
+#: ../../any.pm_.c:754
+msgid "access to network tools"
+msgstr ""
+
+#: ../../any.pm_.c:755
+msgid "access to compilation tools"
+msgstr ""
+
+#: ../../any.pm_.c:760
#, c-format
msgid "(already added %s)"
msgstr "(juba lisatud %s)"
-#: ../../any.pm_.c:763
+#: ../../any.pm_.c:765
msgid "This password is too simple"
msgstr "Salasőna on liiga lihtne"
-#: ../../any.pm_.c:764
+#: ../../any.pm_.c:766
msgid "Please give a user name"
msgstr "Palun andke kasutajatunnus"
-#: ../../any.pm_.c:765
+#: ../../any.pm_.c:767
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr "Kasutajatunnus tohib sisaldada ainult väikesi tähti, numbreid, - ja _"
-#: ../../any.pm_.c:766
+#: ../../any.pm_.c:768
#, fuzzy
msgid "The user name is too long"
msgstr "See kasutajatunnus on juba lisatud"
-#: ../../any.pm_.c:767
+#: ../../any.pm_.c:769
msgid "This user name is already added"
msgstr "See kasutajatunnus on juba lisatud"
-#: ../../any.pm_.c:771
+#: ../../any.pm_.c:773
msgid "Add user"
msgstr "Lisa kasutaja"
-#: ../../any.pm_.c:772
+#: ../../any.pm_.c:774
#, c-format
msgid ""
"Enter a user\n"
@@ -847,32 +858,32 @@ msgstr ""
"Sisesta kasutaja\n"
"%s"
-#: ../../any.pm_.c:773
+#: ../../any.pm_.c:775
msgid "Accept user"
msgstr "Kasutaja őige"
-#: ../../any.pm_.c:784
+#: ../../any.pm_.c:786
msgid "Real name"
msgstr "Pärisnimi"
-#: ../../any.pm_.c:785 ../../printerdrake.pm_.c:742
-#: ../../printerdrake.pm_.c:857
+#: ../../any.pm_.c:787 ../../printerdrake.pm_.c:849
+#: ../../printerdrake.pm_.c:964
msgid "User name"
msgstr "Kasutajatunnus"
-#: ../../any.pm_.c:788
+#: ../../any.pm_.c:790
msgid "Shell"
msgstr "Käsurida"
-#: ../../any.pm_.c:790
+#: ../../any.pm_.c:792
msgid "Icon"
msgstr "Ikoon"
-#: ../../any.pm_.c:817
+#: ../../any.pm_.c:819
msgid "Autologin"
msgstr "Vaikimisi sisenemine"
-#: ../../any.pm_.c:818
+#: ../../any.pm_.c:820
#, fuzzy
msgid ""
"I can set up your computer to automatically log on one user.\n"
@@ -881,57 +892,57 @@ msgstr ""
"Teie arvutit saab seada vaikimisi kasutaja sisenemisele.\n"
"Kui Te seda ei soovi, valige <Katkesta>"
-#: ../../any.pm_.c:822
+#: ../../any.pm_.c:824
msgid "Choose the default user:"
msgstr "Valige uus vaikimisi kasutaja :"
-#: ../../any.pm_.c:823
+#: ../../any.pm_.c:825
msgid "Choose the window manager to run:"
msgstr "Valige palun käivitatav aknahaldur:"
-#: ../../any.pm_.c:838
+#: ../../any.pm_.c:840
#, fuzzy
msgid "Please choose a language to use."
msgstr "Palun valige kasutatav keel"
-#: ../../any.pm_.c:840
+#: ../../any.pm_.c:842
msgid ""
"Mandrake Linux can support multiple languages. Select\n"
"the languages you would like to install. They will be available\n"
"when your installation is complete and you restart your system."
msgstr "Teisi keeli saab valida pärast installimist"
-#: ../../any.pm_.c:854 ../../install_steps_interactive.pm_.c:708
+#: ../../any.pm_.c:856 ../../install_steps_interactive.pm_.c:692
#: ../../standalone/drakxtv_.c:73
msgid "All"
msgstr "Kőik"
-#: ../../any.pm_.c:974
+#: ../../any.pm_.c:977
#, fuzzy
msgid "Allow all users"
msgstr "Tavakasutaja"
-#: ../../any.pm_.c:974
+#: ../../any.pm_.c:977
#, fuzzy
msgid "No sharing"
msgstr "CUPS käivitatakse"
-#: ../../any.pm_.c:984 ../../standalone.pm_.c:57
+#: ../../any.pm_.c:987 ../../install_any.pm_.c:1183 ../../standalone.pm_.c:58
#, fuzzy, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "Valige paketid mida soovite installida"
-#: ../../any.pm_.c:987
+#: ../../any.pm_.c:990
msgid ""
"You can export using NFS or Samba. Please select which you'd like to use."
msgstr ""
-#: ../../any.pm_.c:995 ../../standalone.pm_.c:61
+#: ../../any.pm_.c:998 ../../install_any.pm_.c:1188 ../../standalone.pm_.c:63
#, c-format
msgid "Mandatory package %s is missing"
msgstr ""
-#: ../../any.pm_.c:1001
+#: ../../any.pm_.c:1004
msgid ""
"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
@@ -940,42 +951,42 @@ msgid ""
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:1015
+#: ../../any.pm_.c:1018
msgid "Launch userdrake"
msgstr ""
-#: ../../any.pm_.c:1017
+#: ../../any.pm_.c:1020
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
msgstr ""
-#: ../../any.pm_.c:1068
+#: ../../any.pm_.c:1071
msgid "Welcome To Crackers"
msgstr "Tere tulemast, kräkkerid"
-#: ../../any.pm_.c:1069
+#: ../../any.pm_.c:1072
msgid "Poor"
msgstr "Vähene"
-#: ../../any.pm_.c:1070 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1073 ../../mouse.pm_.c:31
msgid "Standard"
msgstr "Tavahiir"
-#: ../../any.pm_.c:1071
+#: ../../any.pm_.c:1074
msgid "High"
msgstr "Kőrge"
-#: ../../any.pm_.c:1072
+#: ../../any.pm_.c:1075
#, fuzzy
msgid "Higher"
msgstr "Kőrge"
-#: ../../any.pm_.c:1073
+#: ../../any.pm_.c:1076
msgid "Paranoid"
msgstr "Paranoiline"
-#: ../../any.pm_.c:1076
+#: ../../any.pm_.c:1079
msgid ""
"This level is to be used with care. It makes your system more easy to use,\n"
"but very sensitive: it must not be used for a machine connected to others\n"
@@ -985,14 +996,14 @@ msgstr ""
"haavatavaks: ligipääsupiirangute puudumise tőttu ei peaks arvutit ühendama\n"
"ei teiste arvutitega ega ka mitte Internetti."
-#: ../../any.pm_.c:1079
+#: ../../any.pm_.c:1082
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
msgstr ""
"Salasőnad on nüüd kasutusel, kuid vőrku ühendamine ei ole siiski soovitav."
-#: ../../any.pm_.c:1080
+#: ../../any.pm_.c:1083
#, fuzzy
msgid ""
"This is the standard security recommended for a computer that will be used "
@@ -1000,13 +1011,13 @@ msgid ""
msgstr ""
"See on sobilik turvatase arvutile, mis ühendatakse Internetti kui klient."
-#: ../../any.pm_.c:1081
+#: ../../any.pm_.c:1084
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr ""
-#: ../../any.pm_.c:1082
+#: ../../any.pm_.c:1085
#, fuzzy
msgid ""
"With this security level, the use of this system as a server becomes "
@@ -1017,7 +1028,7 @@ msgid ""
"Internet, you should choose a lower level."
msgstr "Sellel turvatasemel vőib süsteemi kasutada Internetis ka serverina."
-#: ../../any.pm_.c:1085
+#: ../../any.pm_.c:1088
#, fuzzy
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
@@ -1026,32 +1037,32 @@ msgstr ""
"Süsteem on täielikult suletud. Vőrgust kasutamine on vőimalik ainult\n"
"spetsiaalselt loodud juurdepääsuteid kasutades."
-#: ../../any.pm_.c:1091
+#: ../../any.pm_.c:1094
#, fuzzy
msgid "DrakSec Basic Options"
msgstr "Eelistused"
-#: ../../any.pm_.c:1092
+#: ../../any.pm_.c:1095
#, fuzzy
msgid "Please choose the desired security level"
msgstr "Valige turvatase"
-#: ../../any.pm_.c:1095
+#: ../../any.pm_.c:1098
#, fuzzy
msgid "Security level"
msgstr "Turvataseme seadmine"
-#: ../../any.pm_.c:1097
+#: ../../any.pm_.c:1100
#, fuzzy
msgid "Use libsafe for servers"
msgstr "Valige X server"
-#: ../../any.pm_.c:1098
+#: ../../any.pm_.c:1101
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
-#: ../../any.pm_.c:1099
+#: ../../any.pm_.c:1102
msgid "Security Administrator (login or email)"
msgstr ""
@@ -1093,57 +1104,57 @@ msgstr ""
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:935
+#: ../../bootloader.pm_.c:932
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Tere tulemast! Laadimisel aitab Teid GRUB!"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:938
+#: ../../bootloader.pm_.c:935
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "Kasutage valiku tegemiseks %c ja %c klahve"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:941
+#: ../../bootloader.pm_.c:938
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Enter laeb Teie valiku, 'e' laseb muuta"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:941
msgid "commands before booting, or 'c' for a command-line."
msgstr "suvandeid enne laadimist ja 'c' veel enam."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:947
+#: ../../bootloader.pm_.c:944
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "Valik laetakse automaatselt %d sekundi jooksul"
-#: ../../bootloader.pm_.c:951
+#: ../../bootloader.pm_.c:948
msgid "not enough room in /boot"
msgstr "/boot on liiga täis"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1051
+#: ../../bootloader.pm_.c:1048
msgid "Desktop"
msgstr "Töölaud"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1053
+#: ../../bootloader.pm_.c:1050
msgid "Start Menu"
msgstr "Startmenüü"
-#: ../../bootloader.pm_.c:1072
+#: ../../bootloader.pm_.c:1069
#, fuzzy, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "Kuhu soovite alglaaduri installida"
-#: ../../bootlook.pm_.c:45
+#: ../../bootlook.pm_.c:45 ../../standalone/draksplash_.c:25
msgid "no help implemented yet.\n"
msgstr "selle kohta (veel) abi ei saa.\n"
@@ -1151,8 +1162,8 @@ msgstr "selle kohta (veel) abi ei saa.\n"
msgid "Boot Style Configuration"
msgstr "Alglaaduri stiil"
-#: ../../bootlook.pm_.c:78 ../../harddrake/ui.pm_.c:59
-#: ../../harddrake/ui.pm_.c:60 ../../standalone/drakfloppy_.c:81
+#: ../../bootlook.pm_.c:78 ../../harddrake/ui.pm_.c:62
+#: ../../harddrake/ui.pm_.c:63 ../../standalone/drakfloppy_.c:81
#: ../../standalone/logdrake_.c:101
msgid "/_File"
msgstr "/_Fail"
@@ -1162,7 +1173,7 @@ msgstr "/_Fail"
msgid "/File/_Quit"
msgstr "/Fail/_Välju"
-#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:60
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:63
#: ../../standalone/drakfloppy_.c:82 ../../standalone/logdrake_.c:107
msgid "<control>Q"
msgstr "<control>Q"
@@ -1206,94 +1217,101 @@ msgstr "Süsteemi installimine"
msgid "Display theme under console"
msgstr ""
-#: ../../bootlook.pm_.c:166
+#: ../../bootlook.pm_.c:145
+#, fuzzy
+msgid "Create new theme"
+msgstr "Looge uus partitsioon"
+
+#: ../../bootlook.pm_.c:169
msgid "Can't create Bootsplash preview"
msgstr ""
-#: ../../bootlook.pm_.c:166 ../../bootlook.pm_.c:184 ../../bootlook.pm_.c:187
-#: ../../bootlook.pm_.c:190 ../../bootlook.pm_.c:220 ../../bootlook.pm_.c:222
-#: ../../bootlook.pm_.c:232 ../../bootlook.pm_.c:241 ../../bootlook.pm_.c:248
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:336
-#: ../../diskdrake/interactive.pm_.c:351 ../../diskdrake/interactive.pm_.c:464
-#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../bootlook.pm_.c:169 ../../bootlook.pm_.c:187 ../../bootlook.pm_.c:190
+#: ../../bootlook.pm_.c:193 ../../bootlook.pm_.c:223 ../../bootlook.pm_.c:225
+#: ../../bootlook.pm_.c:235 ../../bootlook.pm_.c:244 ../../bootlook.pm_.c:251
+#: ../../diskdrake/dav.pm_.c:73 ../../diskdrake/hd_gtk.pm_.c:116
+#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/interactive.pm_.c:355
+#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/interactive.pm_.c:474
+#: ../../diskdrake/smbnfs_gtk.pm_.c:45 ../../fsedit.pm_.c:239
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:365 ../../interactive/http.pm_.c:119
-#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:80
+#: ../../interactive/http.pm_.c:119 ../../interactive/http.pm_.c:120
+#: ../../standalone/draksplash_.c:32
msgid "Error"
msgstr "Viga"
-#: ../../bootlook.pm_.c:183
+#: ../../bootlook.pm_.c:186
#, c-format
msgid "Backup %s to %s.old"
msgstr ""
-#: ../../bootlook.pm_.c:184
+#: ../../bootlook.pm_.c:187
msgid "unable to backup lilo message"
msgstr ""
-#: ../../bootlook.pm_.c:186
+#: ../../bootlook.pm_.c:189
#, c-format
msgid "Copy %s to %s"
msgstr ""
-#: ../../bootlook.pm_.c:187
+#: ../../bootlook.pm_.c:190
msgid "can't change lilo message"
msgstr ""
-#: ../../bootlook.pm_.c:190
+#: ../../bootlook.pm_.c:193
msgid "Lilo message not found"
msgstr ""
-#: ../../bootlook.pm_.c:220
+#: ../../bootlook.pm_.c:223
msgid "Can't write /etc/sysconfig/bootsplash."
msgstr ""
-#: ../../bootlook.pm_.c:220
+#: ../../bootlook.pm_.c:223
#, fuzzy, c-format
msgid "Write %s"
msgstr "XFree86 %s"
-#: ../../bootlook.pm_.c:222
+#: ../../bootlook.pm_.c:225
msgid ""
"Can't write /etc/sysconfig/bootsplash\n"
"File not found."
msgstr ""
-#: ../../bootlook.pm_.c:233
+#: ../../bootlook.pm_.c:236
#, c-format
msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
msgstr ""
-#: ../../bootlook.pm_.c:236
+#: ../../bootlook.pm_.c:239
#, c-format
-msgid "Make initrd 'mkinird -f /boot/initrd-%s.img %s'."
+msgid "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
msgstr ""
-#: ../../bootlook.pm_.c:242
+#: ../../bootlook.pm_.c:245
msgid ""
"Can't relaunch LiLo!\n"
"Launch \"lilo\" as root in command line to complete LiLo theme installation."
msgstr ""
-#: ../../bootlook.pm_.c:246
+#: ../../bootlook.pm_.c:249
msgid "Relaunch 'lilo'"
msgstr ""
-#: ../../bootlook.pm_.c:248
+#: ../../bootlook.pm_.c:251 ../../standalone/draksplash_.c:161
+#: ../../standalone/draksplash_.c:330 ../../standalone/draksplash_.c:454
#, fuzzy
msgid "Notice"
msgstr "pintsaklips"
-#: ../../bootlook.pm_.c:249
+#: ../../bootlook.pm_.c:252
msgid "LiLo and Bootsplash themes installation successfull"
msgstr ""
-#: ../../bootlook.pm_.c:249
+#: ../../bootlook.pm_.c:252
#, fuzzy
msgid "Theme installation failed!"
msgstr "Valige paigaldusmeetod"
-#: ../../bootlook.pm_.c:258
+#: ../../bootlook.pm_.c:261
#, fuzzy, c-format
msgid ""
"You are currently using %s as your boot manager.\n"
@@ -1305,24 +1323,23 @@ msgstr ""
"\n"
"Valige Abimehe käivitamiseks ``OK''"
-#: ../../bootlook.pm_.c:260 ../../standalone/drakbackup_.c:2352
-#: ../../standalone/drakbackup_.c:2362 ../../standalone/drakbackup_.c:2372
-#: ../../standalone/drakbackup_.c:2380 ../../standalone/drakgw_.c:592
-#: ../../standalone/tinyfirewall_.c:58
+#: ../../bootlook.pm_.c:263 ../../standalone/drakbackup_.c:2427
+#: ../../standalone/drakbackup_.c:2437 ../../standalone/drakbackup_.c:2447
+#: ../../standalone/drakbackup_.c:2455 ../../standalone/drakgw_.c:530
msgid "Configure"
msgstr "Seadista"
-#: ../../bootlook.pm_.c:267
+#: ../../bootlook.pm_.c:270
#, fuzzy
msgid "Splash selection"
msgstr "Salvest paketivalik"
-#: ../../bootlook.pm_.c:270
+#: ../../bootlook.pm_.c:273
#, fuzzy
msgid "Themes"
msgstr "Puu"
-#: ../../bootlook.pm_.c:272
+#: ../../bootlook.pm_.c:275
msgid ""
"\n"
"Select a theme for\n"
@@ -1331,45 +1348,45 @@ msgid ""
"them separatly"
msgstr ""
-#: ../../bootlook.pm_.c:275
+#: ../../bootlook.pm_.c:278
msgid "Lilo screen"
msgstr ""
-#: ../../bootlook.pm_.c:279
+#: ../../bootlook.pm_.c:283
msgid "Bootsplash"
msgstr ""
-#: ../../bootlook.pm_.c:314
+#: ../../bootlook.pm_.c:318
msgid "System mode"
msgstr "Töömood"
-#: ../../bootlook.pm_.c:316
+#: ../../bootlook.pm_.c:320
msgid "Launch the graphical environment when your system starts"
msgstr "Käivita X-Windows alglaadimisel"
-#: ../../bootlook.pm_.c:321
+#: ../../bootlook.pm_.c:325
msgid "No, I don't want autologin"
msgstr "Ei taha automaatselt siseneda"
-#: ../../bootlook.pm_.c:323
+#: ../../bootlook.pm_.c:327
msgid "Yes, I want autologin with this (user, desktop)"
msgstr ""
"Jah, soovin automaatset sisselogimist sellele (kasutajale, keskkonnale)"
-#: ../../bootlook.pm_.c:333 ../../network/netconnect.pm_.c:101
+#: ../../bootlook.pm_.c:337 ../../network/netconnect.pm_.c:101
#: ../../standalone/drakTermServ_.c:173 ../../standalone/drakTermServ_.c:300
-#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:3513
-#: ../../standalone/drakbackup_.c:4290 ../../standalone/drakconnect_.c:108
+#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4191
+#: ../../standalone/drakbackup_.c:4952 ../../standalone/drakconnect_.c:108
#: ../../standalone/drakconnect_.c:140 ../../standalone/drakconnect_.c:296
#: ../../standalone/drakconnect_.c:435 ../../standalone/drakconnect_.c:521
#: ../../standalone/drakconnect_.c:564 ../../standalone/drakconnect_.c:667
#: ../../standalone/drakfloppy_.c:376 ../../standalone/drakfont_.c:612
#: ../../standalone/drakfont_.c:799 ../../standalone/drakfont_.c:876
-#: ../../standalone/drakfont_.c:963 ../../standalone/logdrake_.c:521
+#: ../../standalone/drakfont_.c:963 ../../standalone/logdrake_.c:519
msgid "OK"
msgstr "OK"
-#: ../../bootlook.pm_.c:403
+#: ../../bootlook.pm_.c:407
#, c-format
msgid "can not open /etc/inittab for reading: %s"
msgstr "ei saa lugeda faili /etc/inittab: %s"
@@ -1473,48 +1490,53 @@ msgstr "seerial"
msgid "United States"
msgstr ""
-#: ../../detect_devices.pm_.c:599 ../../detect_devices.pm_.c:641
-#: ../../detect_devices.pm_.c:803
-msgid "Unknown Model"
-msgstr ""
-
#: ../../diskdrake/dav.pm_.c:23
msgid "New"
msgstr "Uus"
-#: ../../diskdrake/dav.pm_.c:57
+#: ../../diskdrake/dav.pm_.c:59 ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/smbnfs_gtk.pm_.c:81
+msgid "Unmount"
+msgstr "Ühenda lahti"
+
+#: ../../diskdrake/dav.pm_.c:60 ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/smbnfs_gtk.pm_.c:82
+msgid "Mount"
+msgstr "Ühenda"
+
+#: ../../diskdrake/dav.pm_.c:61
msgid "Server"
msgstr "Server"
-#: ../../diskdrake/dav.pm_.c:58 ../../diskdrake/interactive.pm_.c:375
-#: ../../diskdrake/interactive.pm_.c:558 ../../diskdrake/interactive.pm_.c:585
+#: ../../diskdrake/dav.pm_.c:62 ../../diskdrake/interactive.pm_.c:379
+#: ../../diskdrake/interactive.pm_.c:568 ../../diskdrake/interactive.pm_.c:595
#: ../../diskdrake/removable.pm_.c:24 ../../diskdrake/removable_gtk.pm_.c:15
#: ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr "Ühenduspunkt"
-#: ../../diskdrake/dav.pm_.c:68
+#: ../../diskdrake/dav.pm_.c:81
#, fuzzy
msgid "Please enter the WebDAV server URL"
msgstr "Palun testige hiirt"
-#: ../../diskdrake/dav.pm_.c:71
+#: ../../diskdrake/dav.pm_.c:84
#, fuzzy
msgid "The URL must begin with http:// or https://"
msgstr "Vahendaja peab olema kujul http://..."
-#: ../../diskdrake/dav.pm_.c:92
+#: ../../diskdrake/dav.pm_.c:105
#, fuzzy
msgid "Server: "
msgstr "Server"
-#: ../../diskdrake/dav.pm_.c:93 ../../diskdrake/interactive.pm_.c:435
-#: ../../diskdrake/interactive.pm_.c:1079
-#: ../../diskdrake/interactive.pm_.c:1153
+#: ../../diskdrake/dav.pm_.c:106 ../../diskdrake/interactive.pm_.c:440
+#: ../../diskdrake/interactive.pm_.c:1089
+#: ../../diskdrake/interactive.pm_.c:1164
msgid "Mount point: "
msgstr "Ühenduspunkt:"
-#: ../../diskdrake/dav.pm_.c:94 ../../diskdrake/interactive.pm_.c:1159
+#: ../../diskdrake/dav.pm_.c:107 ../../diskdrake/interactive.pm_.c:1170
#, c-format
msgid "Options: %s"
msgstr "Eelistused: %s"
@@ -1523,8 +1545,9 @@ msgstr "Eelistused: %s"
msgid "Please make a backup of your data first"
msgstr "Palun tehke oma andmetest enne tagavarakoopia"
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:924
-#: ../../diskdrake/interactive.pm_.c:933 ../../diskdrake/interactive.pm_.c:999
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:934
+#: ../../diskdrake/interactive.pm_.c:943
+#: ../../diskdrake/interactive.pm_.c:1009
msgid "Read carefully!"
msgstr "Lugege hoolega!"
@@ -1562,10 +1585,15 @@ msgid "Please click on a partition"
msgstr "Palun valige partitsioon"
#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
-#: ../../install_steps_gtk.pm_.c:471
+#: ../../install_steps_gtk.pm_.c:465
msgid "Details"
msgstr "Üksikasjad"
+#: ../../diskdrake/hd_gtk.pm_.c:252
+#, fuzzy
+msgid "No hard drives found"
+msgstr "Kohalik printer"
+
#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Ext2"
msgstr "ext2"
@@ -1591,13 +1619,13 @@ msgstr "SunOS"
msgid "Swap"
msgstr "Saaleala"
-#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1105
msgid "Empty"
msgstr "Tühi"
-#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:331
-#: ../../install_steps_gtk.pm_.c:389 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1679
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:325
+#: ../../install_steps_gtk.pm_.c:383 ../../mouse.pm_.c:165
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1754
msgid "Other"
msgstr "Muu"
@@ -1605,12 +1633,12 @@ msgstr "Muu"
msgid "Filesystem types:"
msgstr "Failisüsteemi tüübid: "
-#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:397
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:402
msgid "Create"
msgstr "Tekita"
-#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:376
-#: ../../diskdrake/interactive.pm_.c:521 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:380
+#: ../../diskdrake/interactive.pm_.c:531 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "Tüüp"
@@ -1620,7 +1648,7 @@ msgstr "Tüüp"
msgid "Use ``%s'' instead"
msgstr "Kasutage pigem ``%s''"
-#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:389
msgid "Delete"
msgstr "Kustuta"
@@ -1628,83 +1656,83 @@ msgstr "Kustuta"
msgid "Use ``Unmount'' first"
msgstr "Kasutage enne \"Ühenda lahti\""
-#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:513
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:518
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
msgstr "Partitsiooni %s tüübi muutmisel hävivad kőik seal olnud andmed"
-#: ../../diskdrake/interactive.pm_.c:173
+#: ../../diskdrake/interactive.pm_.c:174
#, fuzzy
msgid "Choose a partition"
msgstr "Valige tegevus"
-#: ../../diskdrake/interactive.pm_.c:173
+#: ../../diskdrake/interactive.pm_.c:174
#, fuzzy
msgid "Choose another partition"
msgstr "Looge uus partitsioon"
-#: ../../diskdrake/interactive.pm_.c:198
+#: ../../diskdrake/interactive.pm_.c:199
#, fuzzy
msgid "Exit"
msgstr "ext2"
-#: ../../diskdrake/interactive.pm_.c:220
+#: ../../diskdrake/interactive.pm_.c:221
msgid "Toggle to expert mode"
msgstr "Tavakasutaja > Ekspert"
-#: ../../diskdrake/interactive.pm_.c:220
+#: ../../diskdrake/interactive.pm_.c:221
msgid "Toggle to normal mode"
msgstr "Ekspert > Tavakasutaja"
-#: ../../diskdrake/interactive.pm_.c:220
+#: ../../diskdrake/interactive.pm_.c:221
msgid "Undo"
msgstr "Tagasi"
-#: ../../diskdrake/interactive.pm_.c:239
+#: ../../diskdrake/interactive.pm_.c:240
msgid "Continue anyway?"
msgstr "Jätkate ikkagi?"
-#: ../../diskdrake/interactive.pm_.c:244
+#: ../../diskdrake/interactive.pm_.c:245
msgid "Quit without saving"
msgstr "Lőpeta ilma salvestamata"
-#: ../../diskdrake/interactive.pm_.c:244
+#: ../../diskdrake/interactive.pm_.c:245
msgid "Quit without writing the partition table?"
msgstr "Lőpetate ilma partitsioonitabelit salvestamata?"
-#: ../../diskdrake/interactive.pm_.c:249
+#: ../../diskdrake/interactive.pm_.c:250
#, fuzzy
msgid "Do you want to save /etc/fstab modifications"
msgstr "Kas soovite seadistusi proovida?"
-#: ../../diskdrake/interactive.pm_.c:261
+#: ../../diskdrake/interactive.pm_.c:263
msgid "Auto allocate"
msgstr "Paiguta ise"
-#: ../../diskdrake/interactive.pm_.c:261
+#: ../../diskdrake/interactive.pm_.c:263
msgid "Clear all"
msgstr "Kustuta kőik"
-#: ../../diskdrake/interactive.pm_.c:261
+#: ../../diskdrake/interactive.pm_.c:263
#: ../../install_steps_interactive.pm_.c:214
msgid "More"
msgstr "Veel.."
-#: ../../diskdrake/interactive.pm_.c:264
+#: ../../diskdrake/interactive.pm_.c:267
#, fuzzy
msgid "Hard drive information"
msgstr "Meili informatsioon"
-#: ../../diskdrake/interactive.pm_.c:294
+#: ../../diskdrake/interactive.pm_.c:298
msgid "All primary partitions are used"
msgstr "Kőik primaarsed partitsioonid on kasutusel"
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:299
msgid "I can't add any more partition"
msgstr "Partitsioone ei saa enam lisada"
-#: ../../diskdrake/interactive.pm_.c:296
+#: ../../diskdrake/interactive.pm_.c:300
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -1712,35 +1740,35 @@ msgstr ""
"Et saada rohkem partitsioone, kustutage palun üks, et luua laiendatud "
"partitsioon"
-#: ../../diskdrake/interactive.pm_.c:306
+#: ../../diskdrake/interactive.pm_.c:310
#, fuzzy
msgid "Save partition table"
msgstr "Kirjuta partitsioonitabel"
-#: ../../diskdrake/interactive.pm_.c:307
+#: ../../diskdrake/interactive.pm_.c:311
#, fuzzy
msgid "Restore partition table"
msgstr "Päästa partitsioonitabel"
-#: ../../diskdrake/interactive.pm_.c:308
+#: ../../diskdrake/interactive.pm_.c:312
msgid "Rescue partition table"
msgstr "Päästa partitsioonitabel"
-#: ../../diskdrake/interactive.pm_.c:310
+#: ../../diskdrake/interactive.pm_.c:314
#, fuzzy
msgid "Reload partition table"
msgstr "Päästa partitsioonitabel"
-#: ../../diskdrake/interactive.pm_.c:315
+#: ../../diskdrake/interactive.pm_.c:319
#, fuzzy
msgid "Removable media automounting"
msgstr "CD/flopi/.. autoühendamine"
-#: ../../diskdrake/interactive.pm_.c:324 ../../diskdrake/interactive.pm_.c:344
+#: ../../diskdrake/interactive.pm_.c:328 ../../diskdrake/interactive.pm_.c:348
msgid "Select file"
msgstr "Valige fail"
-#: ../../diskdrake/interactive.pm_.c:331
+#: ../../diskdrake/interactive.pm_.c:335
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1748,11 +1776,11 @@ msgstr ""
"Tabeli tagavarakoopia ei ole sama suurusega\n"
"Soovite jätkata?"
-#: ../../diskdrake/interactive.pm_.c:345
+#: ../../diskdrake/interactive.pm_.c:349
msgid "Warning"
msgstr "Hoiatus"
-#: ../../diskdrake/interactive.pm_.c:346
+#: ../../diskdrake/interactive.pm_.c:350
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1760,114 +1788,106 @@ msgstr ""
"Pange tühi flopi masinasse\n"
"Kőik andmed sellel hävivad"
-#: ../../diskdrake/interactive.pm_.c:357
+#: ../../diskdrake/interactive.pm_.c:361
msgid "Trying to rescue partition table"
msgstr "Proovin päästa partitsioonitabelit"
-#: ../../diskdrake/interactive.pm_.c:363
+#: ../../diskdrake/interactive.pm_.c:367
#, fuzzy
msgid "Detailed information"
msgstr "Meili informatsioon"
-#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:652
+#: ../../diskdrake/interactive.pm_.c:382 ../../diskdrake/interactive.pm_.c:662
msgid "Resize"
msgstr "Muuda suurust"
-#: ../../diskdrake/interactive.pm_.c:379 ../../diskdrake/interactive.pm_.c:705
+#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/interactive.pm_.c:715
msgid "Move"
msgstr "Liiguta"
-#: ../../diskdrake/interactive.pm_.c:380
+#: ../../diskdrake/interactive.pm_.c:384
msgid "Format"
msgstr "Vorminda"
-#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/smbnfs_gtk.pm_.c:82
-msgid "Mount"
-msgstr "Ühenda"
-
-#: ../../diskdrake/interactive.pm_.c:382
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Add to RAID"
msgstr "Lisa RAIDi"
-#: ../../diskdrake/interactive.pm_.c:383
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Add to LVM"
msgstr "Lisa LVMi"
-#: ../../diskdrake/interactive.pm_.c:384 ../../diskdrake/smbnfs_gtk.pm_.c:81
-msgid "Unmount"
-msgstr "Ühenda lahti"
-
-#: ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/interactive.pm_.c:390
msgid "Remove from RAID"
msgstr "Eemalda RAIDist"
-#: ../../diskdrake/interactive.pm_.c:387
+#: ../../diskdrake/interactive.pm_.c:391
msgid "Remove from LVM"
msgstr "Eemalda LVMist"
-#: ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/interactive.pm_.c:392
msgid "Modify RAID"
msgstr "Modifitseeri RAIDi"
-#: ../../diskdrake/interactive.pm_.c:389
+#: ../../diskdrake/interactive.pm_.c:393
msgid "Use for loopback"
msgstr "Kasuta loopback-ina"
-#: ../../diskdrake/interactive.pm_.c:428
+#: ../../diskdrake/interactive.pm_.c:433
msgid "Create a new partition"
msgstr "Looge uus partitsioon"
-#: ../../diskdrake/interactive.pm_.c:431
+#: ../../diskdrake/interactive.pm_.c:436
msgid "Start sector: "
msgstr "Algsektor: "
-#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:805
+#: ../../diskdrake/interactive.pm_.c:438 ../../diskdrake/interactive.pm_.c:815
msgid "Size in MB: "
msgstr "Suurus (MB): "
-#: ../../diskdrake/interactive.pm_.c:434 ../../diskdrake/interactive.pm_.c:806
+#: ../../diskdrake/interactive.pm_.c:439 ../../diskdrake/interactive.pm_.c:816
msgid "Filesystem type: "
msgstr "Failisüsteemi tüüp: "
-#: ../../diskdrake/interactive.pm_.c:439
+#: ../../diskdrake/interactive.pm_.c:444
msgid "Preference: "
msgstr "Eelistus: "
-#: ../../diskdrake/interactive.pm_.c:464
+#: ../../diskdrake/interactive.pm_.c:469
msgid ""
"You can't create a new partition\n"
"(since you reached the maximal number of primary partitions).\n"
"First remove a primary partition and create an extended partition."
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:494
+#: ../../diskdrake/interactive.pm_.c:499
#, fuzzy
msgid "Remove the loopback file?"
msgstr "Vormindan loopback faili %s"
-#: ../../diskdrake/interactive.pm_.c:519
+#: ../../diskdrake/interactive.pm_.c:529
msgid "Change partition type"
msgstr "Muuda partitsiooni tüüp"
-#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:530 ../../diskdrake/removable.pm_.c:48
msgid "Which filesystem do you want?"
msgstr "Mis failisüsteemi soovite kasutada?"
-#: ../../diskdrake/interactive.pm_.c:526
+#: ../../diskdrake/interactive.pm_.c:536
msgid "Switching from ext2 to ext3"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:556
+#: ../../diskdrake/interactive.pm_.c:566
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "Kuhu soovite loopback-faili %s ühendada?"
-#: ../../diskdrake/interactive.pm_.c:557
+#: ../../diskdrake/interactive.pm_.c:567
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Kuhu soovite seadme %s ühendada?"
-#: ../../diskdrake/interactive.pm_.c:563
+#: ../../diskdrake/interactive.pm_.c:573
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1875,138 +1895,138 @@ msgstr ""
"Seda ühenduspunkti ei saa eemaldada, kuna partitsioon on kasutusel.\n"
"loopback-ina. Eemaldage enne loopback"
-#: ../../diskdrake/interactive.pm_.c:584
+#: ../../diskdrake/interactive.pm_.c:594
#, fuzzy, c-format
msgid "Where do you want to mount %s?"
msgstr "Kuhu soovite seadme %s ühendada?"
-#: ../../diskdrake/interactive.pm_.c:608
+#: ../../diskdrake/interactive.pm_.c:618
msgid "Computing FAT filesystem bounds"
msgstr "Arvutan FAT failisüsteemi piire"
-#: ../../diskdrake/interactive.pm_.c:608 ../../diskdrake/interactive.pm_.c:667
-#: ../../install_interactive.pm_.c:131
+#: ../../diskdrake/interactive.pm_.c:618 ../../diskdrake/interactive.pm_.c:677
+#: ../../install_interactive.pm_.c:133
msgid "Resizing"
msgstr "Muudan suurust"
-#: ../../diskdrake/interactive.pm_.c:640
+#: ../../diskdrake/interactive.pm_.c:650
msgid "This partition is not resizeable"
msgstr "See partitsioon ei ole muudetav"
-#: ../../diskdrake/interactive.pm_.c:645
+#: ../../diskdrake/interactive.pm_.c:655
msgid "All data on this partition should be backed-up"
msgstr "Selle partitsiooni andmetest vőiks olla tagavarakoopia"
-#: ../../diskdrake/interactive.pm_.c:647
+#: ../../diskdrake/interactive.pm_.c:657
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr "Partitsiooni %s suuruse muutmisel hävivad sellel kőik andmed"
-#: ../../diskdrake/interactive.pm_.c:652
+#: ../../diskdrake/interactive.pm_.c:662
msgid "Choose the new size"
msgstr "Valige uus suurus"
-#: ../../diskdrake/interactive.pm_.c:653
+#: ../../diskdrake/interactive.pm_.c:663
#, fuzzy
msgid "New size in MB: "
msgstr "Suurus (MB): "
-#: ../../diskdrake/interactive.pm_.c:706
+#: ../../diskdrake/interactive.pm_.c:716
msgid "Which disk do you want to move it to?"
msgstr "Millisele kettale soovite seda ümber paigutada?"
-#: ../../diskdrake/interactive.pm_.c:707
+#: ../../diskdrake/interactive.pm_.c:717
msgid "Sector"
msgstr "Sektor"
-#: ../../diskdrake/interactive.pm_.c:708
+#: ../../diskdrake/interactive.pm_.c:718
msgid "Which sector do you want to move it to?"
msgstr "Millisele sektorile soovite seda ümber paigutada?"
-#: ../../diskdrake/interactive.pm_.c:711
+#: ../../diskdrake/interactive.pm_.c:721
msgid "Moving"
msgstr "Paigutan ümber"
-#: ../../diskdrake/interactive.pm_.c:711
+#: ../../diskdrake/interactive.pm_.c:721
msgid "Moving partition..."
msgstr "Liigutan partitsiooni..."
-#: ../../diskdrake/interactive.pm_.c:728
+#: ../../diskdrake/interactive.pm_.c:738
msgid "Choose an existing RAID to add to"
msgstr "Vali olemasolev RAID, millele lisada"
-#: ../../diskdrake/interactive.pm_.c:729 ../../diskdrake/interactive.pm_.c:746
+#: ../../diskdrake/interactive.pm_.c:739 ../../diskdrake/interactive.pm_.c:756
msgid "new"
msgstr "uus"
-#: ../../diskdrake/interactive.pm_.c:744
+#: ../../diskdrake/interactive.pm_.c:754
msgid "Choose an existing LVM to add to"
msgstr "Vali olemasolev LVM, millele lisada"
-#: ../../diskdrake/interactive.pm_.c:749
+#: ../../diskdrake/interactive.pm_.c:759
msgid "LVM name?"
msgstr "LVM nimi?"
-#: ../../diskdrake/interactive.pm_.c:790
+#: ../../diskdrake/interactive.pm_.c:800
msgid "This partition can't be used for loopback"
msgstr "Seda partitsiooni ei saa loopback-ina kasutada"
-#: ../../diskdrake/interactive.pm_.c:803
+#: ../../diskdrake/interactive.pm_.c:813
msgid "Loopback"
msgstr "loopback"
-#: ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:814
msgid "Loopback file name: "
msgstr "loopback faili nimi:"
-#: ../../diskdrake/interactive.pm_.c:809
+#: ../../diskdrake/interactive.pm_.c:819
#, fuzzy
msgid "Give a file name"
msgstr "Pärisnimi"
-#: ../../diskdrake/interactive.pm_.c:812
+#: ../../diskdrake/interactive.pm_.c:822
msgid "File already used by another loopback, choose another one"
msgstr "See fail on juba loopback-ina kasutusel, valige mőni muu"
-#: ../../diskdrake/interactive.pm_.c:813
+#: ../../diskdrake/interactive.pm_.c:823
msgid "File already exists. Use it?"
msgstr "Fail on juba olemas. Kas kasutan seda?"
-#: ../../diskdrake/interactive.pm_.c:836
+#: ../../diskdrake/interactive.pm_.c:846
#, fuzzy
msgid "Mount options"
msgstr "Mooduli parameetrid:"
-#: ../../diskdrake/interactive.pm_.c:843
+#: ../../diskdrake/interactive.pm_.c:853
msgid "Various"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:907 ../../standalone/drakfloppy_.c:103
+#: ../../diskdrake/interactive.pm_.c:917 ../../standalone/drakfloppy_.c:103
msgid "device"
msgstr "seade"
-#: ../../diskdrake/interactive.pm_.c:908
+#: ../../diskdrake/interactive.pm_.c:918
msgid "level"
msgstr "tase"
-#: ../../diskdrake/interactive.pm_.c:909
+#: ../../diskdrake/interactive.pm_.c:919
msgid "chunk size"
msgstr "ühiku suurus"
-#: ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:934
msgid "Be careful: this operation is dangerous."
msgstr "Vaadake ette: see vőib olla ohtlik."
-#: ../../diskdrake/interactive.pm_.c:939
+#: ../../diskdrake/interactive.pm_.c:949
msgid "What type of partitioning?"
msgstr "Mis tüüpi partitsioonid teete?"
-#: ../../diskdrake/interactive.pm_.c:955
+#: ../../diskdrake/interactive.pm_.c:965
#, fuzzy, c-format
msgid "The package %s is needed. Install it?"
msgstr "Valige paketid mida soovite installida"
-#: ../../diskdrake/interactive.pm_.c:969
+#: ../../diskdrake/interactive.pm_.c:979
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -2018,7 +2038,7 @@ msgstr ""
"Kui kasutate LILO-t, ei tööta see sel moel, kui aga ei kasuta, ei ole Teile "
"ka /boot vajalik"
-#: ../../diskdrake/interactive.pm_.c:973
+#: ../../diskdrake/interactive.pm_.c:983
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -2029,7 +2049,7 @@ msgstr ""
"füüsiliselt tagapool 1024-t silindrit ja Teil ei ole /boot partitsiooni.\n"
"Kui plaanite kasutada LILO alglaadurit, lisage kindlasti /boot partitsioon"
-#: ../../diskdrake/interactive.pm_.c:979
+#: ../../diskdrake/interactive.pm_.c:989
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
@@ -2039,137 +2059,137 @@ msgstr ""
"Ilma /boot partitsioonita ei ole vőimalik sellist süsteemi laadida.\n"
"Lisage kindlasti /boot partitsioon!"
-#: ../../diskdrake/interactive.pm_.c:999
+#: ../../diskdrake/interactive.pm_.c:1009
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "Ketta %s partitsioonitabel salvestatakse!"
-#: ../../diskdrake/interactive.pm_.c:1003
+#: ../../diskdrake/interactive.pm_.c:1013
msgid "You'll need to reboot before the modification can take place"
msgstr "Muudatuste jőustamiseks vajate alglaadimist"
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1024
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr "Partitsiooni %s vormindamisel hävivad sellel kőik andmed"
-#: ../../diskdrake/interactive.pm_.c:1016
+#: ../../diskdrake/interactive.pm_.c:1026
msgid "Formatting"
msgstr "Vormindan"
-#: ../../diskdrake/interactive.pm_.c:1017
+#: ../../diskdrake/interactive.pm_.c:1027
#, c-format
msgid "Formatting loopback file %s"
msgstr "Vormindan loopback faili %s"
-#: ../../diskdrake/interactive.pm_.c:1018
-#: ../../install_steps_interactive.pm_.c:476
+#: ../../diskdrake/interactive.pm_.c:1028
+#: ../../install_steps_interactive.pm_.c:459
#, c-format
msgid "Formatting partition %s"
msgstr "Vormindan partitsiooni %s"
-#: ../../diskdrake/interactive.pm_.c:1029
+#: ../../diskdrake/interactive.pm_.c:1039
#, fuzzy
msgid "Hide files"
msgstr "mkraid ebaőnnestus"
-#: ../../diskdrake/interactive.pm_.c:1029
+#: ../../diskdrake/interactive.pm_.c:1039
#, fuzzy
msgid "Move files to the new partition"
msgstr "Ei ole piisavalt ruumi uute partitsioonide jaoks"
-#: ../../diskdrake/interactive.pm_.c:1030
+#: ../../diskdrake/interactive.pm_.c:1040
#, c-format
msgid ""
"Directory %s already contains data\n"
"(%s)"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1041
+#: ../../diskdrake/interactive.pm_.c:1051
#, fuzzy
msgid "Moving files to the new partition"
msgstr "Ei ole piisavalt ruumi uute partitsioonide jaoks"
-#: ../../diskdrake/interactive.pm_.c:1045
+#: ../../diskdrake/interactive.pm_.c:1055
#, c-format
msgid "Copying %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1049
+#: ../../diskdrake/interactive.pm_.c:1059
#, fuzzy, c-format
msgid "Removing %s"
msgstr "Kuvatihedus: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1059
+#: ../../diskdrake/interactive.pm_.c:1069
#, c-format
msgid "partition %s is now known as %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1080
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1090
+#: ../../diskdrake/interactive.pm_.c:1149
msgid "Device: "
msgstr "Seade: "
-#: ../../diskdrake/interactive.pm_.c:1081
+#: ../../diskdrake/interactive.pm_.c:1091
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "DOS kettatähis: %s (arvatavasti)\n"
-#: ../../diskdrake/interactive.pm_.c:1085
-#: ../../diskdrake/interactive.pm_.c:1093
-#: ../../diskdrake/interactive.pm_.c:1157
+#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1103
+#: ../../diskdrake/interactive.pm_.c:1168
msgid "Type: "
msgstr "Tüüp: "
-#: ../../diskdrake/interactive.pm_.c:1089
+#: ../../diskdrake/interactive.pm_.c:1099
msgid "Name: "
msgstr "Nimi: "
-#: ../../diskdrake/interactive.pm_.c:1097
+#: ../../diskdrake/interactive.pm_.c:1107
#, c-format
msgid "Start: sector %s\n"
msgstr "Algus: sektor %s\n"
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1108
#, c-format
msgid "Size: %s"
msgstr "Suurus: %s"
-#: ../../diskdrake/interactive.pm_.c:1100
+#: ../../diskdrake/interactive.pm_.c:1110
#, c-format
msgid ", %s sectors"
msgstr ", %s sektorit"
-#: ../../diskdrake/interactive.pm_.c:1102
+#: ../../diskdrake/interactive.pm_.c:1112
#, fuzzy, c-format
msgid "Cylinder %d to %d\n"
msgstr "Silindrid %d kuni %d\n"
-#: ../../diskdrake/interactive.pm_.c:1103
+#: ../../diskdrake/interactive.pm_.c:1113
msgid "Formatted\n"
msgstr "Vormindatud\n"
-#: ../../diskdrake/interactive.pm_.c:1104
+#: ../../diskdrake/interactive.pm_.c:1114
msgid "Not formatted\n"
msgstr "Vormindamata\n"
-#: ../../diskdrake/interactive.pm_.c:1105
+#: ../../diskdrake/interactive.pm_.c:1115
msgid "Mounted\n"
msgstr "Ühendatud\n"
-#: ../../diskdrake/interactive.pm_.c:1106
+#: ../../diskdrake/interactive.pm_.c:1116
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1108
+#: ../../diskdrake/interactive.pm_.c:1118
#, fuzzy, c-format
msgid ""
"Loopback file(s):\n"
" %s\n"
msgstr "loopback fail(id): %s\n"
-#: ../../diskdrake/interactive.pm_.c:1109
+#: ../../diskdrake/interactive.pm_.c:1119
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -2177,27 +2197,27 @@ msgstr ""
"Partitsioonilt toimub alglaadimine\n"
" (MS-DOS-i, mitte lilo jaoks)\n"
-#: ../../diskdrake/interactive.pm_.c:1111
+#: ../../diskdrake/interactive.pm_.c:1121
#, c-format
msgid "Level %s\n"
msgstr "Tase %s\n"
-#: ../../diskdrake/interactive.pm_.c:1112
+#: ../../diskdrake/interactive.pm_.c:1122
#, c-format
msgid "Chunk size %s\n"
msgstr "Ühiku suurus %s\n"
-#: ../../diskdrake/interactive.pm_.c:1113
+#: ../../diskdrake/interactive.pm_.c:1123
#, c-format
msgid "RAID-disks %s\n"
msgstr "RAID-kettad %s\n"
-#: ../../diskdrake/interactive.pm_.c:1115
+#: ../../diskdrake/interactive.pm_.c:1125
#, c-format
msgid "Loopback file name: %s"
msgstr "loopback faili nimi: %s"
-#: ../../diskdrake/interactive.pm_.c:1118
+#: ../../diskdrake/interactive.pm_.c:1128
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -2209,7 +2229,7 @@ msgstr ""
"juhtpartitsiooniga, parem oleks\n"
"seda mitte puutuda.\n"
-#: ../../diskdrake/interactive.pm_.c:1121
+#: ../../diskdrake/interactive.pm_.c:1131
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2222,59 +2242,63 @@ msgstr ""
"vőimaldab mitme operratsioonisüsteemi\n"
"laadimist.\n"
-#: ../../diskdrake/interactive.pm_.c:1140
+#: ../../diskdrake/interactive.pm_.c:1150
+msgid "Read-only"
+msgstr ""
+
+#: ../../diskdrake/interactive.pm_.c:1151
#, c-format
msgid "Size: %s\n"
msgstr "Suurus: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1141
+#: ../../diskdrake/interactive.pm_.c:1152
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Geomeetria: %s silindrit, %s pead, %s sektorit\n"
-#: ../../diskdrake/interactive.pm_.c:1142
+#: ../../diskdrake/interactive.pm_.c:1153
msgid "Info: "
msgstr "Info: "
-#: ../../diskdrake/interactive.pm_.c:1143
+#: ../../diskdrake/interactive.pm_.c:1154
#, c-format
msgid "LVM-disks %s\n"
msgstr "LVM-kettad %s\n"
-#: ../../diskdrake/interactive.pm_.c:1144
+#: ../../diskdrake/interactive.pm_.c:1155
#, c-format
msgid "Partition table type: %s\n"
msgstr "Partitsioonitabeli tüüp: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1145
+#: ../../diskdrake/interactive.pm_.c:1156
#, fuzzy, c-format
msgid "on channel %d id %d\n"
msgstr "siinil %d id %d\n"
-#: ../../diskdrake/interactive.pm_.c:1175
+#: ../../diskdrake/interactive.pm_.c:1186
#, fuzzy
msgid "Filesystem encryption key"
msgstr "Failisüsteemi tüüp: "
-#: ../../diskdrake/interactive.pm_.c:1176
+#: ../../diskdrake/interactive.pm_.c:1187
msgid "Choose your filesystem encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1179
+#: ../../diskdrake/interactive.pm_.c:1190
#, fuzzy, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr "Salasőna on liiga lihtne (peaks olema vähemalt %d tähemärki)"
-#: ../../diskdrake/interactive.pm_.c:1180
+#: ../../diskdrake/interactive.pm_.c:1191
#, fuzzy
msgid "The encryption keys do not match"
msgstr "Salasőnad ei klapi"
-#: ../../diskdrake/interactive.pm_.c:1183
+#: ../../diskdrake/interactive.pm_.c:1194
msgid "Encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1184
+#: ../../diskdrake/interactive.pm_.c:1195
msgid "Encryption key (again)"
msgstr ""
@@ -2313,7 +2337,7 @@ msgid ""
"Please enter your username, password and domain name to access this host."
msgstr ""
-#: ../../diskdrake/smbnfs_gtk.pm_.c:178
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3527
#, fuzzy
msgid "Username"
msgstr "Kasutajatunnus"
@@ -2328,23 +2352,23 @@ msgstr "NIS domeen"
msgid "Search servers"
msgstr "Nimeserver"
-#: ../../fs.pm_.c:552 ../../fs.pm_.c:562 ../../fs.pm_.c:566 ../../fs.pm_.c:570
-#: ../../fs.pm_.c:574 ../../fs.pm_.c:578
+#: ../../fs.pm_.c:544 ../../fs.pm_.c:554 ../../fs.pm_.c:558 ../../fs.pm_.c:562
+#: ../../fs.pm_.c:566 ../../fs.pm_.c:570
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s vormindamine seadmel %s ebaőnnestus"
-#: ../../fs.pm_.c:615
+#: ../../fs.pm_.c:607
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "Ei oska seadet %s vormindada tüüpi %s"
-#: ../../fs.pm_.c:687 ../../fs.pm_.c:731
+#: ../../fs.pm_.c:681 ../../fs.pm_.c:724
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../fs.pm_.c:746 ../../partition_table.pm_.c:602
+#: ../../fs.pm_.c:739 ../../partition_table.pm_.c:598
#, c-format
msgid "error unmounting %s: %s"
msgstr "viga %s lahti ühendamisel: %s"
@@ -2361,265 +2385,327 @@ msgstr ""
msgid "server"
msgstr "server"
-#: ../../fsedit.pm_.c:472
+#: ../../fsedit.pm_.c:240
+#, fuzzy, c-format
+msgid ""
+"I can't read the partition table of device %s, it's too corrupted for me :(\n"
+"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
+"The other solution is to not allow DrakX to modify the partition table.\n"
+"(the error is %s)\n"
+"\n"
+"Do you agree to loose all the partitions?\n"
+msgstr ""
+"Partitsioonitabel on loetamatu, liiga rikutud DrakX-i jaoks :(\n"
+"Proovin loetamatud kirjed puhastada kuid ANDMED NENDEL HÄVIVAD.\n"
+"Teine vőimalus on keelata DrakX-il partitsioonitabeli muutmine.\n"
+"(Viga oli selline: %s)\n"
+"Kas olete nőus partitsioonide kaotamisega?\n"
+
+#: ../../fsedit.pm_.c:501
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr "JFS ei ole kasutatav alla 16MB partisioonidel"
-#: ../../fsedit.pm_.c:473
+#: ../../fsedit.pm_.c:502
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr "ReiserFS ei ole kasutatav alla 32MB partisioonidel"
-#: ../../fsedit.pm_.c:492
+#: ../../fsedit.pm_.c:521
msgid "Mount points must begin with a leading /"
msgstr "Ühenduspunktid peavad algama kaldkriipsuga (/)"
# c-format
-#: ../../fsedit.pm_.c:493
+#: ../../fsedit.pm_.c:522
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Ühenduspunktile %s on juba üks partitsioon määratud\n"
-#: ../../fsedit.pm_.c:497
+#: ../../fsedit.pm_.c:526
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr "Te ei saa ühenduspunkti %s jaoks LVM loogilist ketast kasutada"
-#: ../../fsedit.pm_.c:499
+#: ../../fsedit.pm_.c:528
msgid "This directory should remain within the root filesystem"
msgstr "See kataloog peab jääma kokku juurfailisüsteemiga"
-#: ../../fsedit.pm_.c:501
+#: ../../fsedit.pm_.c:530
#, fuzzy
msgid ""
"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
"point\n"
msgstr "See ühenduspunkt vajab tőelist (ext2, reiserfs) failisüsteemi\n"
-#: ../../fsedit.pm_.c:503
+#: ../../fsedit.pm_.c:532
#, fuzzy, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr "Te ei saa ühenduspunkti %s jaoks LVM loogilist ketast kasutada"
-#: ../../fsedit.pm_.c:570
+#: ../../fsedit.pm_.c:599
#, fuzzy
msgid "Not enough free space for auto-allocating"
msgstr "Ei ole piisavalt ruumi automaatpaigutuseks"
-#: ../../fsedit.pm_.c:572
+#: ../../fsedit.pm_.c:601
msgid "Nothing to do"
msgstr ""
-#: ../../fsedit.pm_.c:665
+#: ../../fsedit.pm_.c:694
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Seadme %s avamine kirjutamiseks ebaőnnestus: %s"
-#: ../../fsedit.pm_.c:750
+#: ../../harddrake/sound.pm_.c:155
+msgid "No alternative driver"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:156
+#, c-format
+msgid "There's no known OSS/ALSA alternative driver for your sound card (%s)"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:158
+#, fuzzy
+msgid "Sound configuration"
+msgstr "LAN sätted"
+
+#: ../../harddrake/sound.pm_.c:159
+#, c-format
msgid ""
-"An error occurred - no valid devices were found on which to create new "
-"filesystems. Please check your hardware for the cause of this problem"
+"Here you can select an alternative driver (either OSS or ALSA) for your "
+"sound card (%s)"
msgstr ""
-"Tekkis viga: failisüsteemi loomiseks ei leitud ühtki seadet. Palun\n"
-"kontrollige oma riistvara."
-#: ../../fsedit.pm_.c:773
-msgid "You don't have any partitions!"
-msgstr "Teil ei ole ühtki partitsiooni!"
+#: ../../harddrake/sound.pm_.c:162
+#, fuzzy
+msgid "Driver:"
+msgstr "Juhtprogramm"
+
+#: ../../harddrake/sound.pm_.c:173
+msgid "No known driver"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:174
+#, c-format
+msgid "There's no known driver for your sound card (%s)"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:177
+msgid "Unkown driver"
+msgstr ""
-#: ../../harddrake/ui.pm_.c:15
+#: ../../harddrake/sound.pm_.c:178
+#, c-format
+msgid ""
+"The \"%s\" driver for your sound card is unlisted\n"
+"\n"
+"Please send the output of the \"lspcidrake -v\" command to\n"
+"<install at mandrakesoft dot com>\n"
+"with subject: unlisted sound driver \"%s\""
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:16
#, fuzzy
msgid "Model"
msgstr "Hiir"
-#: ../../harddrake/ui.pm_.c:15
+#: ../../harddrake/ui.pm_.c:16
#, fuzzy
msgid "hard disk model"
msgstr "Kaardi mälu (DMA)"
-#: ../../harddrake/ui.pm_.c:16
+#: ../../harddrake/ui.pm_.c:17
#, fuzzy
msgid "Channel"
msgstr "Katkesta"
-#: ../../harddrake/ui.pm_.c:16
+#: ../../harddrake/ui.pm_.c:17
msgid "EIDE/SCSI channel"
msgstr ""
-#: ../../harddrake/ui.pm_.c:18
+#: ../../harddrake/ui.pm_.c:19
msgid "Bus"
msgstr ""
-#: ../../harddrake/ui.pm_.c:19
+#: ../../harddrake/ui.pm_.c:20
msgid ""
"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
msgstr ""
-#: ../../harddrake/ui.pm_.c:20
+#: ../../harddrake/ui.pm_.c:21
#, fuzzy
msgid "Module"
msgstr "Hiir"
-#: ../../harddrake/ui.pm_.c:20
+#: ../../harddrake/ui.pm_.c:21
msgid "the module of the GNU/Linux kernel that handle that device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:21
+#: ../../harddrake/ui.pm_.c:22
msgid "Media class"
msgstr ""
-#: ../../harddrake/ui.pm_.c:21
+#: ../../harddrake/ui.pm_.c:22
msgid "class of hardware device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:22 ../../printerdrake.pm_.c:1404
+#: ../../harddrake/ui.pm_.c:23 ../../printerdrake.pm_.c:1517
msgid "Description"
msgstr "Kirjeldus"
-#: ../../harddrake/ui.pm_.c:22
+#: ../../harddrake/ui.pm_.c:23
msgid "this field describe the device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:24
+#: ../../harddrake/ui.pm_.c:25
#, fuzzy
msgid "Bus identification"
msgstr "Autentimisviis"
-#: ../../harddrake/ui.pm_.c:25
+#: ../../harddrake/ui.pm_.c:26
msgid ""
-"- PCI and USB devices : this list the vendor, device, subvendor and "
-"subdevice PCI/USB ids"
+"- PCI and USB devices: this list the vendor, device, subvendor and subdevice "
+"PCI/USB ids"
msgstr ""
-#: ../../harddrake/ui.pm_.c:27
+#: ../../harddrake/ui.pm_.c:28
msgid "Location on the bus"
msgstr ""
-#: ../../harddrake/ui.pm_.c:28
+#: ../../harddrake/ui.pm_.c:29
msgid ""
"- pci devices: this gives the PCI slot, device and function of this card\n"
"- eide devices: the device is either a slave or a master device\n"
"- scsi devices: the scsi bus and the scsi device ids"
msgstr ""
-#: ../../harddrake/ui.pm_.c:31
+#: ../../harddrake/ui.pm_.c:32
#, fuzzy
msgid "Old device file"
msgstr "Valige fail"
-#: ../../harddrake/ui.pm_.c:32
+#: ../../harddrake/ui.pm_.c:33
msgid "old static device name used in dev package"
msgstr ""
-#: ../../harddrake/ui.pm_.c:33
+#: ../../harddrake/ui.pm_.c:34
#, fuzzy
msgid "New devfs device"
msgstr "Lüüsipoolne seade"
-#: ../../harddrake/ui.pm_.c:34
+#: ../../harddrake/ui.pm_.c:35
msgid "new dinamic device name generated by incore kernel devfs"
msgstr ""
-#: ../../harddrake/ui.pm_.c:35
+#: ../../harddrake/ui.pm_.c:36
#, fuzzy
msgid "Number of buttons"
msgstr "2 nuppu"
-#: ../../harddrake/ui.pm_.c:36
+#: ../../harddrake/ui.pm_.c:37
msgid "the vendor name of the device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:60
+#: ../../harddrake/ui.pm_.c:38
+#, fuzzy
+msgid "Alternative drivers"
+msgstr "Trükitakse testlehekülg(i)..."
+
+#: ../../harddrake/ui.pm_.c:39
+msgid "the list of alternative drivers for this sound card"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:63
#, fuzzy
msgid "/_Quit"
msgstr "Välju"
-#: ../../harddrake/ui.pm_.c:61 ../../harddrake/ui.pm_.c:62
-#: ../../harddrake/ui.pm_.c:68 ../../standalone/logdrake_.c:110
+#: ../../harddrake/ui.pm_.c:64 ../../harddrake/ui.pm_.c:65
+#: ../../harddrake/ui.pm_.c:71 ../../standalone/logdrake_.c:110
msgid "/_Help"
msgstr "/_Abi"
-#: ../../harddrake/ui.pm_.c:62
+#: ../../harddrake/ui.pm_.c:65
#, fuzzy
msgid "/_Help..."
msgstr "/_Abi"
-#: ../../harddrake/ui.pm_.c:63
+#: ../../harddrake/ui.pm_.c:66
msgid "Harddrake help"
msgstr ""
-#: ../../harddrake/ui.pm_.c:64
+#: ../../harddrake/ui.pm_.c:67
msgid ""
"Description of the fields:\n"
"\n"
msgstr ""
-#: ../../harddrake/ui.pm_.c:68
+#: ../../harddrake/ui.pm_.c:71
#, fuzzy
msgid "/_About..."
msgstr "/Abi/_Misvärk"
-#: ../../harddrake/ui.pm_.c:69
+#: ../../harddrake/ui.pm_.c:72
msgid "About Harddrake"
msgstr ""
-#: ../../harddrake/ui.pm_.c:70
+#: ../../harddrake/ui.pm_.c:73
msgid ""
"This is HardDrake, a Mandrake hardware configuration tool.\n"
"Version:"
msgstr ""
-#: ../../harddrake/ui.pm_.c:71
+#: ../../harddrake/ui.pm_.c:74
#, fuzzy
msgid "Author:"
msgstr "Proovida niisama"
-#: ../../harddrake/ui.pm_.c:83
+#: ../../harddrake/ui.pm_.c:86
#, fuzzy
msgid "Harddrake2 version "
msgstr "Kővaketta leidmine"
-#: ../../harddrake/ui.pm_.c:91
+#: ../../harddrake/ui.pm_.c:103
#, fuzzy
msgid "Detected hardware"
msgstr "Info riistvara kohta"
-#: ../../harddrake/ui.pm_.c:92
+#: ../../harddrake/ui.pm_.c:105
#, fuzzy
-msgid "Configure module"
-msgstr "Hiire seadmine"
+msgid "Information"
+msgstr "Näita lisainfot"
-#: ../../harddrake/ui.pm_.c:92
+#: ../../harddrake/ui.pm_.c:108
#, fuzzy
-msgid "Informations"
-msgstr "Näita lisainfot"
+msgid "Configure module"
+msgstr "Hiire seadmine"
-#: ../../harddrake/ui.pm_.c:92
+#: ../../harddrake/ui.pm_.c:109
msgid "Run config tool"
msgstr ""
-#: ../../harddrake/ui.pm_.c:96
+#: ../../harddrake/ui.pm_.c:113
#, fuzzy
msgid "Detection in progress"
msgstr "leiti port %s"
-#: ../../harddrake/ui.pm_.c:96 ../../interactive.pm_.c:388
+#: ../../harddrake/ui.pm_.c:113 ../../interactive.pm_.c:391
msgid "Please wait"
msgstr "Palun oodake"
-#: ../../harddrake/ui.pm_.c:139
+#: ../../harddrake/ui.pm_.c:156
msgid "primary"
msgstr ""
-#: ../../harddrake/ui.pm_.c:139
+#: ../../harddrake/ui.pm_.c:156
#, fuzzy
msgid "secondary"
msgstr "%d sekundit"
-#: ../../harddrake/ui.pm_.c:176
+#: ../../harddrake/ui.pm_.c:197
msgid "You can configure each parameter of the module here."
msgstr ""
-#: ../../harddrake/ui.pm_.c:192
+#: ../../harddrake/ui.pm_.c:213
#, fuzzy, c-format
msgid "Running \"%s\" ..."
msgstr "Loetakse CUPS juhtprogramme"
@@ -2652,16 +2738,16 @@ msgstr ""
#: ../../harddrake/v4l.pm_.c:213
#, fuzzy
-msgid "Card model :"
+msgid "Card model:"
msgstr "Kaardi mälu (DMA)"
#: ../../harddrake/v4l.pm_.c:214
#, fuzzy
-msgid "Tuner type :"
+msgid "Tuner type:"
msgstr "Muuda partitsiooni tüüp"
#: ../../harddrake/v4l.pm_.c:215
-msgid "Number of capture buffers :"
+msgid "Number of capture buffers:"
msgstr ""
#: ../../harddrake/v4l.pm_.c:215
@@ -2670,11 +2756,11 @@ msgstr ""
#: ../../harddrake/v4l.pm_.c:217
#, fuzzy
-msgid "PLL setting :"
+msgid "PLL setting:"
msgstr "vormindatakse"
#: ../../harddrake/v4l.pm_.c:218
-msgid "Radio support :"
+msgid "Radio support:"
msgstr ""
#: ../../harddrake/v4l.pm_.c:218
@@ -2686,22 +2772,22 @@ msgid ""
"GNU/Linux is a multiuser system, and this means that each user can have his\n"
"own preferences, his own files and so on. You can read the ``User Guide''\n"
"to learn more. But unlike \"root\", which is the administrator, the users\n"
-"you will add here will not be entitled to change anything except their own\n"
-"files and their own configuration. You will have to create at least one\n"
-"regular user for yourself. That account is where you should log in for\n"
-"routine use. Although it is very practical to log in as \"root\" everyday,\n"
-"it may also be very dangerous! The slightest mistake could mean that your\n"
-"system would not work any more. If you make a serious mistake as a regular\n"
-"user, you may only lose some information, but not the entire system.\n"
+"you add here will not be entitled to change anything except their own files\n"
+"and their own configuration. You will have to create at least one regular\n"
+"user for yourself. That account is where you should log in for routine use.\n"
+"Although it is very practical to log in as \"root\" everyday, it may also\n"
+"be very dangerous! The slightest mistake could mean that your system would\n"
+"not work any more. If you make a serious mistake as a regular user, you may\n"
+"only lose some information, but not the entire system.\n"
"\n"
"First, you have to enter your real name. This is not mandatory, of course -\n"
"as you can actually enter whatever you want. DrakX will then take the first\n"
"word you have entered in the box and will bring it over to the \"User\n"
"name\". This is the name this particular user will use to log onto the\n"
"system. You can change it. You then have to enter a password here. A\n"
-"non-privileged (regular) user's password is not as crucial as \"root\"' one\n"
-"from a security point of view, but that is no reason to neglect it: after\n"
-"all, your files are at risk.\n"
+"non-privileged (regular) user's password is not as crucial as the \"root\"'\n"
+"one from a security point of view, but that is no reason to neglect it:\n"
+"after all, your files are at risk.\n"
"\n"
"If you click on \"Accept user\", you can then add as many as you want. Add\n"
"a user for each one of your friends: your father or your sister, for\n"
@@ -2811,7 +2897,7 @@ msgid ""
"to have a graphical workstation!\n"
"\n"
"Moving the mouse cursor over a group name will display a short explanatory\n"
-"text about that group. If you deselect all groups when performing a regular\n"
+"text about that group. If you unselect all groups when performing a regular\n"
"installation (by opposition to an upgrade), a dialog will pop up proposing\n"
"different options for a minimal installation:\n"
"\n"
@@ -2837,10 +2923,10 @@ msgstr ""
#: ../../help.pm_.c:128
msgid ""
-"Finally, depending on whether or not you selected individual packages, you\n"
-"will be presented a tree containing all packages classified by groups and\n"
-"subgroups. While browsing the tree, you can select entire groups,\n"
-"subgroups, or individual packages.\n"
+"Finally, depending on whether or not you chose to be able to select\n"
+"individual packages, you will be presented a tree containing all packages\n"
+"classified by groups and subgroups. While browsing the tree, you can select\n"
+"entire groups, subgroups, or individual packages.\n"
"\n"
"Whenever you select a package on the tree, a description appears on the\n"
"right. When your selection is finished, click the \"Install\" button which\n"
@@ -2875,11 +2961,11 @@ msgstr ""
#: ../../help.pm_.c:164
msgid ""
-"You are now proposed to set up your Internet/network connection. If you\n"
-"wish to connect your computer to the Internet or to a local network, click\n"
-"\"OK\". The autodetection of network devices and modem will be launched. If\n"
-"this detection fails, uncheck the \"Use auto detection\" box next time. You\n"
-"may also choose not to configure the network, or do it later; in that case,\n"
+"You are now able to set up your Internet/network connection. If you wish to\n"
+"connect your computer to the Internet or to a local network, click \"OK\".\n"
+"The autodetection of network devices and modem will be launched. If this\n"
+"detection fails, uncheck the \"Use auto detection\" box next time. You may\n"
+"also choose not to configure the network, or do it later; in that case,\n"
"simply click the \"Cancel\" button.\n"
"\n"
"Available connections are: traditional modem, ISDN modem, ADSL connection,\n"
@@ -2928,7 +3014,7 @@ msgstr ""
msgid ""
"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
"local time according to the time zone you selected. It is however possible\n"
-"to deactivate this by deselecting \"Hardware clock set to GMT\" so that the\n"
+"to deactivate this by unselecting \"Hardware clock set to GMT\" so that the\n"
"hardware clock is the same as the system clock. This is useful when the\n"
"machine is hosting another operating system like Windows.\n"
"\n"
@@ -2959,24 +3045,12 @@ msgid ""
"If you can see the message during the test, and answer \"Yes\", then DrakX\n"
"will proceed to the next step. If you cannot see the message, it simply\n"
"means that the configuration was wrong and the test will automatically end\n"
-"after 10 seconds, restoring the screen."
+"after 10 seconds, restoring the screen. Refer then to the Video\n"
+"configuration section of the user guide for more information on how to\n"
+"configure your display."
msgstr ""
-#: ../../help.pm_.c:237
-msgid ""
-"The first time you try the X configuration, you may not be very satisfied\n"
-"with its display (screen is too small, shifted left or right...). Hence,\n"
-"even if X starts up correctly, DrakX then asks you if the configuration\n"
-"suits you. It will also propose to change it by displaying a list of valid\n"
-"modes it could find, asking you to select one.\n"
-"\n"
-"As a last resort, if you still cannot get X to work, choose \"Change\n"
-"graphics card\", select \"Unlisted card\", and when prompted on which\n"
-"server, choose \"FBDev\". This is a failsafe option which works with any\n"
-"modern graphics card. Then choose \"Test again\" to be sure."
-msgstr ""
-
-#: ../../help.pm_.c:249
+#: ../../help.pm_.c:239
msgid ""
"Finally, you will be asked whether you want to see the graphical interface\n"
"at boot. Note this question will be asked even if you chose not to test the\n"
@@ -2985,7 +3059,7 @@ msgid ""
"configured."
msgstr ""
-#: ../../help.pm_.c:256
+#: ../../help.pm_.c:246
msgid ""
"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
@@ -3005,13 +3079,13 @@ msgid ""
"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
"password, or any other reason.\n"
"\n"
-"When you click on this step, you will be asked to enter a disk inside the\n"
-"drive. The floppy disk you will insert must be empty or contain data which\n"
-"you do not need. You will not have to format it since DrakX will rewrite\n"
-"the whole disk."
+"If you say \"Yes\", you will be asked to enter a disk inside the drive. The\n"
+"floppy disk you will insert must be empty or contain data which you do not\n"
+"need. You will not have to format it since DrakX will rewrite the whole\n"
+"disk."
msgstr ""
-#: ../../help.pm_.c:280
+#: ../../help.pm_.c:270
#, fuzzy
msgid ""
"At this point, you need to choose where you want to install the Mandrake\n"
@@ -3045,7 +3119,9 @@ msgid ""
"\n"
" * \"Use existing partition\": the wizard has detected one or more existing\n"
"Linux partitions on your hard drive. If you want to use them, choose this\n"
-"option;\n"
+"option. You will then be asked to choose the mount points associated to\n"
+"each of the partitions. The legacy mount points are selected by default,\n"
+"and you should generally keep them.\n"
"\n"
" * \"Use the free space on the Windows; partition\": if Microsoft Windows\n"
"is installed on your hard drive and takes all the space available on it,\n"
@@ -3078,7 +3154,9 @@ msgid ""
" * \"Expert mode\": choose this option if you want to manually partition\n"
"your hard drive. Be careful - it is a powerful but dangerous choice. You\n"
"can very easily lose all your data. Hence, do not choose this unless you\n"
-"know what you are doing."
+"know what you are doing. To know how do use the DiskDrake utility used\n"
+"here, refer to the section ``Managing Your Partitions'' of the ````User\n"
+"Guide''''"
msgstr ""
"Olete jőudnud punkti, kus peate otsustama, kuhu täpselt Mandrake Linux oma\n"
"kővakettal paigaldada. Kui kővaketas on tühi vői kui mőni muu \n"
@@ -3125,7 +3203,7 @@ msgstr ""
" aga ka kőige rohkem ohtusid! Ärge valige seda, kui Te täpselt ei tea, mida "
"teete."
-#: ../../help.pm_.c:347
+#: ../../help.pm_.c:341
msgid ""
"There you are. Installation is now complete and your GNU/Linux system is\n"
"ready to use. Just click \"OK\" to reboot the system. You can start\n"
@@ -3158,7 +3236,7 @@ msgid ""
"\"mformat a:\")"
msgstr ""
-#: ../../help.pm_.c:378
+#: ../../help.pm_.c:372
#, fuzzy
msgid ""
"Any partitions that have been newly defined must be formatted for use\n"
@@ -3203,7 +3281,7 @@ msgstr ""
"\n"
"Klikkige \"OK\", kui olete vormindamiseks valmis."
-#: ../../help.pm_.c:404
+#: ../../help.pm_.c:398
#, fuzzy
msgid ""
"Your new Mandrake Linux operating system is currently being installed.\n"
@@ -3220,12 +3298,12 @@ msgstr ""
"\n"
"Palun veidi kannatlikkust."
-#: ../../help.pm_.c:412
+#: ../../help.pm_.c:406
msgid ""
"At the time you are installing Mandrake Linux, it is likely that some\n"
"packages have been updated since the initial release. Some bugs may have\n"
"been fixed, and security issues solved. To allow you to benefit from these\n"
-"updates, you are now proposed to download them from the Internet. Choose\n"
+"updates, you are now able to download them from the Internet. Choose\n"
"\"Yes\" if you have a working Internet connection, or \"No\" if you prefer\n"
"to install updated packages later.\n"
"\n"
@@ -3235,7 +3313,7 @@ msgid ""
"install the selected package(s), or \"Cancel\" to abort."
msgstr ""
-#: ../../help.pm_.c:425
+#: ../../help.pm_.c:419
msgid ""
"Before continuing, you should read carefully the terms of the license. It\n"
"covers the whole Mandrake Linux distribution, and if you do not agree with\n"
@@ -3244,19 +3322,19 @@ msgid ""
"\"Accept\" button."
msgstr ""
-#: ../../help.pm_.c:432
+#: ../../help.pm_.c:426
msgid ""
"At this point, it is time to choose the security level desired for the\n"
"machine. As a rule of thumb, the more exposed the machine is, and the more\n"
"the data stored in it is crucial, the higher the security level should be.\n"
"However, a higher security level is generally obtained at the expense of\n"
-"easiness of use. Refer to the \"msec\" chapter of the ``Reference Manual''\n"
-"to get more information about the meaning of these levels.\n"
+"ease of use. Refer to the \"msec\" chapter of the ``Reference Manual'' to\n"
+"get more information about the meaning of these levels.\n"
"\n"
"If you do not know what to choose, keep the default option."
msgstr ""
-#: ../../help.pm_.c:442
+#: ../../help.pm_.c:436
#, fuzzy
msgid ""
"At this point, you need to choose which partition(s) will be used for the\n"
@@ -3274,26 +3352,26 @@ msgid ""
" * \"Clear all\": this option deletes all partitions on the selected hard\n"
"drive;\n"
"\n"
-" * \"Auto allocate\": this option enables to automatically create \"Ext2\"\n"
-"and swap partitions in free space of your hard drive;\n"
+" * \"Auto allocate\": this option enables to automatically create ext3 and\n"
+"swap partitions in free space of your hard drive;\n"
"\n"
-" * \"More\": gives access to additional features:\n"
+"\"More\": gives access to additional features:\n"
"\n"
-" * \"Save partition table\": saves the partition table to a floppy.\n"
-"Useful for later partition-table recovery if necessary. It is strongly\n"
-"recommended to perform this step;\n"
+" * \"Save partition table\": saves the partition table to a floppy. Useful\n"
+"for later partition-table recovery if necessary. It is strongly recommended\n"
+"to perform this step;\n"
"\n"
-" * \"Restore partition table\": allows to restore a previously saved\n"
+" * \"Restore partition table\": allows to restore a previously saved\n"
"partition table from floppy disk;\n"
"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you\n"
-"can try to recover it using this option. Please be careful and remember\n"
-"that it can fail;\n"
+" * \"Rescue partition table\": if your partition table is damaged, you can\n"
+"try to recover it using this option. Please be careful and remember that it\n"
+"can fail;\n"
"\n"
-" * \"Reload partition table\": discards all changes and loads your\n"
-"initial partition table;\n"
+" * \"Reload partition table\": discards all changes and loads your initial\n"
+"partition table;\n"
"\n"
-" * \"Removable media automounting\": unchecking this option will force\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
"users to manually mount and unmount removable medias such as floppies and\n"
"CD-ROMs.\n"
"\n"
@@ -3321,7 +3399,7 @@ msgid ""
" * Ctrl-m to set the mount point.\n"
"\n"
"To get information about the different filesystem types available, please\n"
-"read the ext2fs chapter from the ``Reference Manual''.\n"
+"read the ext2FS chapter from the ``Reference Manual''.\n"
"\n"
"If you are installing on a PPC machine, you will want to create a small HFS\n"
"``bootstrap'' partition of at least 1MB, which will be used by the yaboot\n"
@@ -3388,7 +3466,7 @@ msgstr ""
"\n"
" * Ctrl-m ühenduspunkti seadmine"
-#: ../../help.pm_.c:513
+#: ../../help.pm_.c:507
#, fuzzy
msgid ""
"More than one Microsoft partition has been detected on your hard drive.\n"
@@ -3452,11 +3530,11 @@ msgstr ""
"\"Nimi Windowsis\" on täht, millega Microsoft Windows vastavat seadet\n"
"tähistab."
-#: ../../help.pm_.c:544
+#: ../../help.pm_.c:538
msgid "Please be patient. This operation can take several minutes."
msgstr "Palun natuke kannatust. Selleks vőib kuluda mőnigi minut."
-#: ../../help.pm_.c:547
+#: ../../help.pm_.c:541
#, fuzzy
msgid ""
"DrakX now needs to know if you want to perform a default (\"Recommended\")\n"
@@ -3464,23 +3542,23 @@ msgid ""
"also choose to do a new install or an upgrade of an existing Mandrake Linux\n"
"system:\n"
"\n"
-" * \"Install\": completely wipes out the old system. In fact, depending on\n"
-"what currently holds your machine, you will be able to keep some old (Linux\n"
-"or other) partitions unchanged;\n"
+" * \"Install\": completely wipes out the old system, however, depending on\n"
+"what is currently installed on your machine, you may be able to keep some\n"
+"old partitions (Linux or otherwise) unchanged;\n"
"\n"
" * \"Upgrade\": this installation class allows to simply update the\n"
"packages currently installed on your Mandrake Linux system. It keeps the\n"
"current partitions of your hard drives as well as user configurations. All\n"
-"other configuration steps remain available with respect to plain\n"
+"other configuration steps remain available, similar to a normal\n"
"installation;\n"
"\n"
-" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
-"existing Mandrake Linux system while keeping all system configurations\n"
-"unchanged. Adding new packages to the current installation is also\n"
-"possible.\n"
+" * \"Upgrade Packages Only\": this new installation class allows you to\n"
+"upgrade an existing Mandrake Linux system while keeping all system\n"
+"configurations unchanged. Adding new packages to the current installation\n"
+"is also possible.\n"
"\n"
-"Upgrades should work fine for Mandrake Linux systems starting from \"8.1\"\n"
-"release.\n"
+"Upgrades should work fine on Mandrake Linux systems containing version\n"
+"\"8.1\" or later.\n"
"\n"
"Depending on your knowledge of GNU/Linux, select one of the following\n"
"choices:\n"
@@ -3489,11 +3567,11 @@ msgid ""
"operating system. The installation will be very easy and you will only be\n"
"asked a few questions;\n"
"\n"
-" * Expert: if you have a good knowledge of GNU/Linux, you can choose this\n"
-"installation class. The expert installation will allow you to perform a\n"
-"highly-customized installation. Answering some of the questions can be\n"
-"difficult if you do not have a good knowledge of GNU/Linux, so do not\n"
-"choose this unless you know what you are doing."
+" * Expert: if you have a good understanding of GNU/Linux, you may wish to\n"
+"perform a highly customized installation. Some of the decisions you will\n"
+"have to make may be difficult if you do not have good knowledge of\n"
+"GNU/Linux, so it is not recommended that those without a fair amount of\n"
+"experience select this installation class."
msgstr ""
"Palun valige \"Installimine\" kui Teie arvutis ei ole varasemat Mandrake "
"Linux\n"
@@ -3520,23 +3598,28 @@ msgstr ""
" süsteemi, mis sobiks nagu valatult Teie täpsete ootustega.\n"
" Aga palun, palun: ÄRGE VALIGE SEDA, KUI TE TÄPSELT EI TEA, MIDA TEETE!"
-#: ../../help.pm_.c:584
+#: ../../help.pm_.c:578
msgid ""
"Normally, DrakX selects the right keyboard for you (depending on the\n"
-"language you have chosen) and you won't even see this step. However, you\n"
-"might not have a keyboard that corresponds exactly to your language: for\n"
-"example, if you are an English speaking Swiss person, you may still want\n"
-"your keyboard to be a Swiss keyboard. Or if you speak English but are\n"
-"located in Quebec, you may find yourself in the same situation. In both\n"
-"cases, you will have to go back to this installation step and select an\n"
-"appropriate keyboard from the list.\n"
+"language you have chosen). However, you might not have a keyboard that\n"
+"corresponds exactly to your language: for example, if you are an English\n"
+"speaking Swiss person, you may still want your keyboard to be a Swiss\n"
+"keyboard. Or if you speak English but are located in Quebec, you may find\n"
+"yourself in the same situation. In both cases, you will have to go back to\n"
+"this installation step and select an appropriate keyboard from the list.\n"
"\n"
"Click on the \"More\" button to be presented with the complete list of\n"
-"supported keyboards."
+"supported keyboards.\n"
+"\n"
+"If you choose a keyboard layout based on a non-latin alphabet, you will be\n"
+"asked on next dialog to choose the key binding that will switch the\n"
+"keyboard layout between the latin and non latin layouts."
msgstr ""
-#: ../../help.pm_.c:597
+#: ../../help.pm_.c:594
msgid ""
+"The first step is to choose your preferred language.\n"
+"\n"
"Please choose your preferred language for installation and system usage.\n"
"\n"
"Clicking on the \"Advanced\" button will allow you to select other\n"
@@ -3550,7 +3633,7 @@ msgid ""
"additional locales, click the \"OK\" button to continue."
msgstr ""
-#: ../../help.pm_.c:610
+#: ../../help.pm_.c:609
msgid ""
"DrakX generally detects the number of buttons your mouse has. If not, it\n"
"assumes you have a two-button mouse and will set it up for third-button\n"
@@ -3563,10 +3646,17 @@ msgid ""
"If you choose a mouse other than the default, a test screen will be\n"
"displayed. Use the buttons and wheel to verify that the settings are\n"
"correct. If the mouse is not working well, press the space bar or [Return]\n"
-"to \"Cancel\" and choose again."
+"to \"Cancel\" and choose again.\n"
+"\n"
+"Wheel mouses are sometimes not automatically detected. You will need to\n"
+"manually select it in the list. Be sure to select the one corresponding to\n"
+"the correct port it is attached to. After you have pressed the \"OK\"\n"
+"button, a mouse image is displayed. You then need to move the wheel of your\n"
+"mouse to activate it correctly. Then test all buttons and movements are\n"
+"correct."
msgstr ""
-#: ../../help.pm_.c:624
+#: ../../help.pm_.c:630
#, fuzzy
msgid ""
"Please select the correct port. For example, the \"COM1\" port under\n"
@@ -3575,7 +3665,7 @@ msgstr ""
"Palun valige őige port. Näiteks MS Windows-i COM1 kannab GNU/Linuxis\n"
"nime ttyS0."
-#: ../../help.pm_.c:628
+#: ../../help.pm_.c:634
msgid ""
"This is the most crucial decision point for the security of your GNU/Linux\n"
"system: you have to enter the \"root\" password. \"root\" is the system\n"
@@ -3605,15 +3695,15 @@ msgid ""
"In Expert mode, you will be asked if you will be connecting to an\n"
"authentication server, like NIS or LDAP.\n"
"\n"
-"If your network uses the LDAP (or NIS) protocol for authentication, select\n"
-"\"LDAP\" (or \"NIS\") as authentication. If you do not know, ask your\n"
-"network administrator.\n"
+"If your network uses either of the LDAP, NIS, or PDC Windows Domain\n"
+"authentication services, select the appropriate one as \"authentication\".\n"
+"If you do not know, ask your network administrator.\n"
"\n"
"If your computer is not connected to any administrated network, you will\n"
"want to choose \"Local files\" for authentication."
msgstr ""
-#: ../../help.pm_.c:664
+#: ../../help.pm_.c:670
msgid ""
"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
@@ -3652,8 +3742,12 @@ msgid ""
"options. !!\n"
"\n"
"Clicking the \"Advanced\" button in this dialog will offer many advanced\n"
-"options, which are reserved to the expert user.\n"
-"\n"
+"options, which are reserved for the expert user."
+msgstr ""
+
+#: ../../help.pm_.c:710
+#, fuzzy
+msgid ""
"After you have configured the general bootloader parameters, the list of\n"
"boot options which will be available at boot time will be displayed.\n"
"\n"
@@ -3661,17 +3755,7 @@ msgid ""
"automatically be added to the boot menu. Here, you can choose to fine-tune\n"
"the existing options. Select an entry and click \"Modify\" to modify or\n"
"remove it; \"Add\" creates a new entry; and \"Done\" goes on to the next\n"
-"installation step."
-msgstr ""
-
-#: ../../help.pm_.c:713
-#, fuzzy
-msgid ""
-"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
-"either GNU/Linux or any other operating system present on your computer.\n"
-"Normally, these other operating systems are correctly detected and\n"
-"installed. If this is not the case, you can add an entry by hand in this\n"
-"screen. Be careful to choose the correct parameters.\n"
+"installation step.\n"
"\n"
"You may also not want to give access to these other operating systems to\n"
"anyone. In which case, you can delete the corresponding entries. But then,\n"
@@ -3730,18 +3814,18 @@ msgstr ""
#: ../../help.pm_.c:759
#, fuzzy
msgid ""
-"DrakX now detects any IDE device present in your computer. It will also\n"
-"scan for one or more PCI SCSI card(s) on your system. If a SCSI card is\n"
+"DrakX now detects any IDE devices present in your computer. It will also\n"
+"scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
"found, DrakX will automatically install the appropriate driver.\n"
"\n"
"Because hardware detection does not always detect a piece of hardware,\n"
"DrakX will ask you to confirm if a PCI SCSI card is present. Click \"Yes\"\n"
"if you know that there is a SCSI card installed in your machine. You will\n"
-"be presented a list of SCSI cards to choose from. Click \"No\" if you have\n"
-"no SCSI hardware. If you are unsure, you can check the list of hardware\n"
-"detected in your machine by selecting \"See hardware info\" and clicking\n"
-"\"OK\". Examine the list of hardware and then click on the \"OK\" button to\n"
-"return to the SCSI interface question.\n"
+"be presented with a list of SCSI cards to choose from. Click \"No\" if you\n"
+"have no SCSI hardware. If you are unsure, you can check the list of\n"
+"hardware detected in your machine by selecting \"See hardware info\" and\n"
+"clicking \"OK\". Examine the list of hardware and then click on the \"OK\"\n"
+"button to return to the SCSI interface question.\n"
"\n"
"If you have to manually specify your adapter, DrakX will ask if you want to\n"
"specify options for it. You should allow DrakX to probe the hardware for\n"
@@ -3998,7 +4082,9 @@ msgid ""
"order to configure the clock according to the time zone you are in;\n"
"\n"
" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
-"configuration wizard;\n"
+"configuration wizard. Consult the corresponding chapter of the ``User\n"
+"Guide'' for more information on how to setup a new printer. The interface\n"
+"presented there is similar to the one used during installation;\n"
"\n"
" * \"Sound card\": if a sound card is detected on your system, it is\n"
"displayed here. No modification possible at installation time;\n"
@@ -4011,7 +4097,7 @@ msgid ""
"associated with it."
msgstr ""
-#: ../../help.pm_.c:894
+#: ../../help.pm_.c:896
#, fuzzy
msgid ""
"Choose the hard drive you want to erase in order to install your new\n"
@@ -4022,7 +4108,7 @@ msgstr ""
"Ettevaatust, kőik sellel leiduvad andmed hävitatakse ja ei ole enam\n"
"taastatavad."
-#: ../../help.pm_.c:899
+#: ../../help.pm_.c:901
#, fuzzy
msgid ""
"Click on \"OK\" if you want to delete all data and partitions present on\n"
@@ -4054,7 +4140,7 @@ msgstr ""
msgid "You must also format %s"
msgstr ""
-#: ../../install_any.pm_.c:418
+#: ../../install_any.pm_.c:423
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -4069,20 +4155,29 @@ msgid ""
"Do you really want to install these servers?\n"
msgstr ""
-#: ../../install_any.pm_.c:453
+#: ../../install_any.pm_.c:441
+#, c-format
+msgid ""
+"The following packages will be removed to allow upgrading your system: %s\n"
+"\n"
+"\n"
+"Do you really want to remove these packages?\n"
+msgstr ""
+
+#: ../../install_any.pm_.c:471
msgid "Can't use broadcast with no NIS domain"
msgstr "Üldlevi kasutamine on ilma NIS domeenita vőimatu"
-#: ../../install_any.pm_.c:841
+#: ../../install_any.pm_.c:862
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Pane FAT formaadis flopi seadmesse %s"
-#: ../../install_any.pm_.c:845
+#: ../../install_any.pm_.c:866
msgid "This floppy is not FAT formatted"
msgstr "See flopi ei ole FAT formaadis"
-#: ../../install_any.pm_.c:857
+#: ../../install_any.pm_.c:878
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -4090,11 +4185,19 @@ msgstr ""
"Et kasutada seda paketivalikut, alustage installimist käsureaga \"linux "
"defcfg=floppy\""
-#: ../../install_any.pm_.c:880 ../../partition_table.pm_.c:771
+#: ../../install_any.pm_.c:901 ../../partition_table.pm_.c:767
#, c-format
msgid "Error reading file %s"
msgstr "Viga faili %s lugemisel"
+#: ../../install_any.pm_.c:1023
+msgid ""
+"An error occurred - no valid devices were found on which to create new "
+"filesystems. Please check your hardware for the cause of this problem"
+msgstr ""
+"Tekkis viga: failisüsteemi loomiseks ei leitud ühtki seadet. Palun\n"
+"kontrollige oma riistvara."
+
#: ../../install_interactive.pm_.c:23
#, c-format
msgid ""
@@ -4128,60 +4231,60 @@ msgstr ""
"\n"
"Jätkate ikkagi?"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:168
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:169
#, fuzzy
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "Teil peab olema saaleala"
-#: ../../install_interactive.pm_.c:91
+#: ../../install_interactive.pm_.c:92
msgid "Use free space"
msgstr "Kasuta vaba ruumi"
-#: ../../install_interactive.pm_.c:93
+#: ../../install_interactive.pm_.c:94
msgid "Not enough free space to allocate new partitions"
msgstr "Ei ole piisavalt ruumi uute partitsioonide jaoks"
-#: ../../install_interactive.pm_.c:101
+#: ../../install_interactive.pm_.c:102
msgid "Use existing partitions"
msgstr "Kasuta olemasolevat partitsiooni"
-#: ../../install_interactive.pm_.c:103
+#: ../../install_interactive.pm_.c:104
msgid "There is no existing partition to use"
msgstr "Kasutatavat partitsiooni ei leitud"
-#: ../../install_interactive.pm_.c:110
+#: ../../install_interactive.pm_.c:111
msgid "Use the Windows partition for loopback"
msgstr "Kasuta Windowsi partitsiooni loopback-ina"
-#: ../../install_interactive.pm_.c:113
+#: ../../install_interactive.pm_.c:114
msgid "Which partition do you want to use for Linux4Win?"
msgstr "Millisele partitsioonile soovite installida Linux4Win?"
-#: ../../install_interactive.pm_.c:115
+#: ../../install_interactive.pm_.c:116
msgid "Choose the sizes"
msgstr "Valige suurused"
-#: ../../install_interactive.pm_.c:116
+#: ../../install_interactive.pm_.c:117
msgid "Root partition size in MB: "
msgstr "Juurpartitsiooni suurus (MB): "
-#: ../../install_interactive.pm_.c:117
+#: ../../install_interactive.pm_.c:118
msgid "Swap partition size in MB: "
msgstr "Saaleala suurus (MB): "
-#: ../../install_interactive.pm_.c:126
+#: ../../install_interactive.pm_.c:128
msgid "Use the free space on the Windows partition"
msgstr "Kasuta vaba ruumi Windowsi partitsioonil"
-#: ../../install_interactive.pm_.c:129
+#: ../../install_interactive.pm_.c:131
msgid "Which partition do you want to resize?"
msgstr "Mis partitsiooni soovite muuta?"
-#: ../../install_interactive.pm_.c:131
+#: ../../install_interactive.pm_.c:133
msgid "Resizing Windows partition"
msgstr "Arvutan Windowsi failisüsteemi piire"
-#: ../../install_interactive.pm_.c:134
+#: ../../install_interactive.pm_.c:136
#, c-format
msgid ""
"The FAT resizer is unable to handle your partition, \n"
@@ -4190,7 +4293,7 @@ msgstr ""
"FAT partitsiooni suurust ei őnnestu muuta, \n"
"ilmnes selline viga: %s"
-#: ../../install_interactive.pm_.c:137
+#: ../../install_interactive.pm_.c:139
msgid ""
"Your Windows partition is too fragmented. Please reboot your computer under "
"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
@@ -4198,7 +4301,7 @@ msgid ""
msgstr ""
"Teie Windowsi partitsioon on fragmenteerunud, palun kasutada 'defrag'-i"
-#: ../../install_interactive.pm_.c:138
+#: ../../install_interactive.pm_.c:140
#, fuzzy
msgid ""
"WARNING!\n"
@@ -4217,52 +4320,52 @@ msgstr ""
"scandisk-i, defrag-i ja tehke tagavarakoopia.\n"
"Kui olete oma otsuses kindel, vajutage OK."
-#: ../../install_interactive.pm_.c:148
+#: ../../install_interactive.pm_.c:150
msgid "Which size do you want to keep for Windows on"
msgstr "Kui palju ruumi jätate Windowsi jaoks?"
-#: ../../install_interactive.pm_.c:149
+#: ../../install_interactive.pm_.c:151
#, c-format
msgid "partition %s"
msgstr "Partitsioon %s"
-#: ../../install_interactive.pm_.c:156
+#: ../../install_interactive.pm_.c:158
#, c-format
msgid "FAT resizing failed: %s"
msgstr "Suuruse muutmine ebaőnnestus: %s"
-#: ../../install_interactive.pm_.c:171
+#: ../../install_interactive.pm_.c:173
msgid ""
"There is no FAT partition to resize or to use as loopback (or not enough "
"space left)"
msgstr "Sobivat FAT partitsiooni ei leitud (ei ole piisavalt ruumi)"
-#: ../../install_interactive.pm_.c:177
+#: ../../install_interactive.pm_.c:179
msgid "Erase entire disk"
msgstr "Tühjenda kogu ketas"
-#: ../../install_interactive.pm_.c:177
+#: ../../install_interactive.pm_.c:179
msgid "Remove Windows(TM)"
msgstr "Eemalda Windows(TM)"
-#: ../../install_interactive.pm_.c:180
+#: ../../install_interactive.pm_.c:182
msgid "You have more than one hard drive, which one do you install linux on?"
msgstr "Teil on rohkem kui üks kővaketas, millisele neis installite Linuxi?"
-#: ../../install_interactive.pm_.c:183
+#: ../../install_interactive.pm_.c:185
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr "Kettal %s hävivad KŐIK partitsioonid ja andmed"
-#: ../../install_interactive.pm_.c:191
+#: ../../install_interactive.pm_.c:193
msgid "Custom disk partitioning"
msgstr "Partitsioneerin ise"
-#: ../../install_interactive.pm_.c:195
+#: ../../install_interactive.pm_.c:197
msgid "Use fdisk"
msgstr "Kasuta fdisk-i"
-#: ../../install_interactive.pm_.c:198
+#: ../../install_interactive.pm_.c:200
#, c-format
msgid ""
"You can now partition %s.\n"
@@ -4271,28 +4374,28 @@ msgstr ""
"Nüüd saate partitsioneerida %s kővaketta\n"
"Kui olete valmis, salvestage käsuga 'w'"
-#: ../../install_interactive.pm_.c:227
+#: ../../install_interactive.pm_.c:229
msgid "You don't have enough free space on your Windows partition"
msgstr "Teil ei ole piisavalt vaba ruumi Windowsi partitsioonil"
-#: ../../install_interactive.pm_.c:243
+#: ../../install_interactive.pm_.c:245
msgid "I can't find any room for installing"
msgstr "Installimiseks ei ole üldse ruumi"
-#: ../../install_interactive.pm_.c:246
+#: ../../install_interactive.pm_.c:248
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr "DrakX kettajagamise abimees leidis sellised lahendused:"
-#: ../../install_interactive.pm_.c:250
+#: ../../install_interactive.pm_.c:252
#, c-format
msgid "Partitioning failed: %s"
msgstr "Ketta jagamine ebaőnnestus: %s"
-#: ../../install_interactive.pm_.c:260
+#: ../../install_interactive.pm_.c:262
msgid "Bringing up the network"
msgstr "Käivitame vőrguliidesed"
-#: ../../install_interactive.pm_.c:265
+#: ../../install_interactive.pm_.c:267
msgid "Bringing down the network"
msgstr "Seiskame vőrguliidesed"
@@ -4304,12 +4407,12 @@ msgstr ""
"Tekkis mingi viga, aga seda ei suuda programm ise klaarida.\n"
"Jätkake omal vastutusel."
-#: ../../install_steps.pm_.c:210
+#: ../../install_steps.pm_.c:211
#, c-format
msgid "Duplicate mount point %s"
msgstr "Ühenduspunkt %s on määratud topelt"
-#: ../../install_steps.pm_.c:379
+#: ../../install_steps.pm_.c:380
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -4320,12 +4423,12 @@ msgstr ""
"Teie CD-lugeja vői CD on ilmselt vigane.\n"
"Paketifaile CD-l saate kontrollida käsuga \"rpm -qpl Mandrake/RPMS/*.rpm\"\n"
-#: ../../install_steps.pm_.c:451
+#: ../../install_steps.pm_.c:452
#, c-format
msgid "Welcome to %s"
msgstr "See ongi %s"
-#: ../../install_steps.pm_.c:530 ../../install_steps.pm_.c:770
+#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:772
msgid "No floppy drive available"
msgstr "Flopiseade ei ole kättesaadav"
@@ -4355,69 +4458,69 @@ msgstr "Installi klass"
msgid "Please choose one of the following classes of installation:"
msgstr "Palun valige üks järgnevatest paigaldusklassidest"
-#: ../../install_steps_gtk.pm_.c:243 ../../install_steps_interactive.pm_.c:694
+#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:678
msgid "Package Group Selection"
msgstr "Paketigruppide valik"
-#: ../../install_steps_gtk.pm_.c:276 ../../install_steps_interactive.pm_.c:709
+#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:693
msgid "Individual package selection"
msgstr "Valik paketthaaval"
-#: ../../install_steps_gtk.pm_.c:299 ../../install_steps_interactive.pm_.c:633
+#: ../../install_steps_gtk.pm_.c:293 ../../install_steps_interactive.pm_.c:617
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Suurus kokku: %d / %d MB"
-#: ../../install_steps_gtk.pm_.c:341
+#: ../../install_steps_gtk.pm_.c:335
msgid "Bad package"
msgstr "Vigane pakett"
-#: ../../install_steps_gtk.pm_.c:342
+#: ../../install_steps_gtk.pm_.c:336
#, c-format
msgid "Name: %s\n"
msgstr "Nimi: %s\n"
-#: ../../install_steps_gtk.pm_.c:343
+#: ../../install_steps_gtk.pm_.c:337
#, c-format
msgid "Version: %s\n"
msgstr "Versioon: %s\n"
-#: ../../install_steps_gtk.pm_.c:344
+#: ../../install_steps_gtk.pm_.c:338
#, c-format
msgid "Size: %d KB\n"
msgstr "Suurus: %d kB\n"
-#: ../../install_steps_gtk.pm_.c:345
+#: ../../install_steps_gtk.pm_.c:339
#, c-format
msgid "Importance: %s\n"
msgstr "Tähtsus: %s\n"
-#: ../../install_steps_gtk.pm_.c:367
+#: ../../install_steps_gtk.pm_.c:361
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr "Seda paketti ei saa valida, kettaruumi ei ole paigalsuseks piisavalt"
-#: ../../install_steps_gtk.pm_.c:372
+#: ../../install_steps_gtk.pm_.c:366
msgid "The following packages are going to be installed"
msgstr "Installimiseks on valitud järgmised paketid"
-#: ../../install_steps_gtk.pm_.c:373
+#: ../../install_steps_gtk.pm_.c:367
msgid "The following packages are going to be removed"
msgstr "Eemaldamiseks on valitud järgmised paketid"
-#: ../../install_steps_gtk.pm_.c:385
+#: ../../install_steps_gtk.pm_.c:379
msgid "You can't select/unselect this package"
msgstr "Seda paketti ei saa (mitte) valida"
-#: ../../install_steps_gtk.pm_.c:397
+#: ../../install_steps_gtk.pm_.c:391
msgid "This is a mandatory package, it can't be unselected"
msgstr "See pakett on kohustuslik"
-#: ../../install_steps_gtk.pm_.c:399
+#: ../../install_steps_gtk.pm_.c:393
msgid "You can't unselect this package. It is already installed"
msgstr "See pakett on juba installitud"
-#: ../../install_steps_gtk.pm_.c:402
+#: ../../install_steps_gtk.pm_.c:396
msgid ""
"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
@@ -4425,77 +4528,77 @@ msgstr ""
"Selle paketi peaks uuendame\n"
"Olete kindel, et Te ei vali seda?"
-#: ../../install_steps_gtk.pm_.c:405
+#: ../../install_steps_gtk.pm_.c:399
msgid "You can't unselect this package. It must be upgraded"
msgstr "Selle paketi peate valima, sest selle uuendamine on kohustuslik"
-#: ../../install_steps_gtk.pm_.c:410
+#: ../../install_steps_gtk.pm_.c:404
msgid "Show automatically selected packages"
msgstr "Näita automaatselt valitud pakette"
-#: ../../install_steps_gtk.pm_.c:411 ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_gtk.pm_.c:405 ../../install_steps_interactive.pm_.c:255
#: ../../install_steps_interactive.pm_.c:259
-#: ../../standalone/drakbackup_.c:3600
+#: ../../standalone/drakbackup_.c:4257
msgid "Install"
msgstr "Installimine"
-#: ../../install_steps_gtk.pm_.c:414
+#: ../../install_steps_gtk.pm_.c:408
#, fuzzy
msgid "Load/Save on floppy"
msgstr "Salvesta flopile"
-#: ../../install_steps_gtk.pm_.c:415
+#: ../../install_steps_gtk.pm_.c:409
#, fuzzy
msgid "Updating package selection"
msgstr "Salvest paketivalik"
-#: ../../install_steps_gtk.pm_.c:420
+#: ../../install_steps_gtk.pm_.c:414
#, fuzzy
msgid "Minimal install"
msgstr "Eemaldamine"
-#: ../../install_steps_gtk.pm_.c:435 ../../install_steps_interactive.pm_.c:538
+#: ../../install_steps_gtk.pm_.c:429 ../../install_steps_interactive.pm_.c:522
msgid "Choose the packages you want to install"
msgstr "Valige paketid installimiseks"
-#: ../../install_steps_gtk.pm_.c:451 ../../install_steps_interactive.pm_.c:778
+#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:762
msgid "Installing"
msgstr "Installin"
-#: ../../install_steps_gtk.pm_.c:457
+#: ../../install_steps_gtk.pm_.c:451
msgid "Estimating"
msgstr "Oletan"
-#: ../../install_steps_gtk.pm_.c:464
+#: ../../install_steps_gtk.pm_.c:458
msgid "Time remaining "
msgstr "Aega jäänud "
-#: ../../install_steps_gtk.pm_.c:476
+#: ../../install_steps_gtk.pm_.c:470
msgid "Please wait, preparing installation..."
msgstr "Palun oodake, valmistun installimiseks"
-#: ../../install_steps_gtk.pm_.c:560
+#: ../../install_steps_gtk.pm_.c:554
#, c-format
msgid "%d packages"
msgstr "%d paketti"
-#: ../../install_steps_gtk.pm_.c:565
+#: ../../install_steps_gtk.pm_.c:559
#, c-format
msgid "Installing package %s"
msgstr "Paketi %s installimine"
-#: ../../install_steps_gtk.pm_.c:602 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:802
+#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:786
#: ../../standalone/drakautoinst_.c:202
msgid "Accept"
msgstr "Nőus"
-#: ../../install_steps_gtk.pm_.c:602 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:802
+#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:786
msgid "Refuse"
msgstr "Keeldun"
-#: ../../install_steps_gtk.pm_.c:603 ../../install_steps_interactive.pm_.c:803
+#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:787
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4509,17 +4612,17 @@ msgstr ""
"Palun sisestage CD pealdisega \"%s\" lugejasse ja vajutage <OK>.\n"
"Kui teil säherdust ei ole, vajutage <Katkesta>"
-#: ../../install_steps_gtk.pm_.c:617 ../../install_steps_gtk.pm_.c:621
-#: ../../install_steps_interactive.pm_.c:815
-#: ../../install_steps_interactive.pm_.c:819
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_gtk.pm_.c:615
+#: ../../install_steps_interactive.pm_.c:799
+#: ../../install_steps_interactive.pm_.c:803
msgid "Go on anyway?"
msgstr "Ikkagi edasi?"
-#: ../../install_steps_gtk.pm_.c:617 ../../install_steps_interactive.pm_.c:815
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:799
msgid "There was an error ordering packages:"
msgstr "Pakettide tellimisel tekkis viga:"
-#: ../../install_steps_gtk.pm_.c:621 ../../install_steps_interactive.pm_.c:819
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:803
msgid "There was an error installing packages:"
msgstr "Pakettide installimisel tekkis viga:"
@@ -4841,7 +4944,7 @@ msgid "Are you sure you refuse the licence?"
msgstr ""
#: ../../install_steps_interactive.pm_.c:211
-#: ../../install_steps_interactive.pm_.c:1038
+#: ../../install_steps_interactive.pm_.c:1023
#: ../../standalone/keyboarddrake_.c:31
msgid "Keyboard"
msgstr "Klaviatuur"
@@ -4893,11 +4996,11 @@ msgstr "Salvest paketivalik"
msgid "Please choose the type of your mouse."
msgstr "Palun valige hiire tüüp"
-#: ../../install_steps_interactive.pm_.c:281 ../../standalone/mousedrake_.c:59
+#: ../../install_steps_interactive.pm_.c:281 ../../standalone/mousedrake_.c:60
msgid "Mouse Port"
msgstr "Hiire port"
-#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:61
msgid "Please choose on which serial port your mouse is connected to."
msgstr "Millisesse seerialporti on Teie hiir ühendatud?"
@@ -4929,177 +5032,153 @@ msgstr "IDE seadistamine"
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:336
+#: ../../install_steps_interactive.pm_.c:338
msgid "No partition available"
msgstr "ei leia partitsioone"
-#: ../../install_steps_interactive.pm_.c:339
+#: ../../install_steps_interactive.pm_.c:341
msgid "Scanning partitions to find mount points"
msgstr "Otsin partitsioonidelt ühenduspunkte"
-#: ../../install_steps_interactive.pm_.c:347
+#: ../../install_steps_interactive.pm_.c:349
msgid "Choose the mount points"
msgstr "Valige ühenduspunktid"
-#: ../../install_steps_interactive.pm_.c:366
-#, c-format
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to not allow DrakX to modify the partition table.\n"
-"(the error is %s)\n"
-"\n"
-"Do you agree to loose all the partitions?\n"
-msgstr ""
-"Partitsioonitabel on loetamatu, liiga rikutud DrakX-i jaoks :(\n"
-"Proovin loetamatud kirjed puhastada kuid ANDMED NENDEL HÄVIVAD.\n"
-"Teine vőimalus on keelata DrakX-il partitsioonitabeli muutmine.\n"
-"(Viga oli selline: %s)\n"
-"Kas olete nőus partitsioonide kaotamisega?\n"
-
#: ../../install_steps_interactive.pm_.c:379
msgid ""
-"DiskDrake failed to read correctly the partition table.\n"
-"Continue at your own risk!"
-msgstr ""
-"DiskDrake ei saanud partitsioonitabeli lugemisega hakkama.\n"
-"Jätkate omal vastutusel!"
-
-#: ../../install_steps_interactive.pm_.c:396
-msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:405
+#: ../../install_steps_interactive.pm_.c:388
#, fuzzy
msgid "No root partition found to perform an upgrade"
msgstr "Juurpartitsiooni ei leitud"
-#: ../../install_steps_interactive.pm_.c:406
+#: ../../install_steps_interactive.pm_.c:389
msgid "Root Partition"
msgstr "Juurpartitsioon"
-#: ../../install_steps_interactive.pm_.c:407
+#: ../../install_steps_interactive.pm_.c:390
msgid "What is the root partition (/) of your system?"
msgstr "Millisel partitsioonil hoiate juurkataloogi (/)?"
-#: ../../install_steps_interactive.pm_.c:421
+#: ../../install_steps_interactive.pm_.c:404
msgid "You need to reboot for the partition table modifications to take place"
msgstr "Partitsioonitabeli säilitamiseks vajate alglaadimist"
-#: ../../install_steps_interactive.pm_.c:445
+#: ../../install_steps_interactive.pm_.c:428
msgid "Choose the partitions you want to format"
msgstr "Valige partitsioonid, mida soovite vormindada"
-#: ../../install_steps_interactive.pm_.c:446
+#: ../../install_steps_interactive.pm_.c:429
msgid "Check bad blocks?"
msgstr "Blokkide kontroll?"
-#: ../../install_steps_interactive.pm_.c:473
+#: ../../install_steps_interactive.pm_.c:456
msgid "Formatting partitions"
msgstr "Vormindan partitsioone"
-#: ../../install_steps_interactive.pm_.c:475
+#: ../../install_steps_interactive.pm_.c:458
#, c-format
msgid "Creating and formatting file %s"
msgstr "Loon ja vormindan faili %s"
-#: ../../install_steps_interactive.pm_.c:480
+#: ../../install_steps_interactive.pm_.c:463
#, c-format
msgid ""
"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
"you can loose data)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:482
+#: ../../install_steps_interactive.pm_.c:465
msgid "Not enough swap space to fulfill installation, please add some"
msgstr "Saaleala on installimiseks liiga väike, palun lisage"
-#: ../../install_steps_interactive.pm_.c:489
+#: ../../install_steps_interactive.pm_.c:472
#, fuzzy
msgid "Looking for available packages and rebuilding rpm database..."
msgstr "Otsin kättesaadavaid pakette"
-#: ../../install_steps_interactive.pm_.c:490
+#: ../../install_steps_interactive.pm_.c:473
msgid "Looking for available packages..."
msgstr "Otsin kättesaadavaid pakette"
-#: ../../install_steps_interactive.pm_.c:493
+#: ../../install_steps_interactive.pm_.c:476
#, fuzzy
msgid "Looking at packages already installed..."
msgstr "See pakett on juba installitud"
-#: ../../install_steps_interactive.pm_.c:497
+#: ../../install_steps_interactive.pm_.c:480
msgid "Finding packages to upgrade..."
msgstr "Otsin uuendatavaid pakette"
-#: ../../install_steps_interactive.pm_.c:515
+#: ../../install_steps_interactive.pm_.c:498
#, c-format
msgid ""
"Your system does not have enough space left for installation or upgrade (%d "
"> %d)"
msgstr "Teie kővakettal ei ole piisavalt vaba ruumi (%d > %d)"
-#: ../../install_steps_interactive.pm_.c:550
+#: ../../install_steps_interactive.pm_.c:534
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:553
+#: ../../install_steps_interactive.pm_.c:537
#, fuzzy
msgid "Load from floppy"
msgstr "Taasta flopilt"
-#: ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_interactive.pm_.c:539
#, fuzzy
msgid "Loading from floppy"
msgstr "Taasta flopilt"
-#: ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_interactive.pm_.c:539
#, fuzzy
msgid "Package selection"
msgstr "Paketigruppide valik"
-#: ../../install_steps_interactive.pm_.c:560
+#: ../../install_steps_interactive.pm_.c:544
#, fuzzy
msgid "Insert a floppy containing package selection"
msgstr "Pane flopi seadmesse %s"
-#: ../../install_steps_interactive.pm_.c:572
+#: ../../install_steps_interactive.pm_.c:556
msgid "Save on floppy"
msgstr "Salvesta flopile"
-#: ../../install_steps_interactive.pm_.c:646
+#: ../../install_steps_interactive.pm_.c:630
msgid "Selected size is larger than available space"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:660
+#: ../../install_steps_interactive.pm_.c:644
#, fuzzy
msgid "Type of install"
msgstr "Valige pakett installimiseks"
-#: ../../install_steps_interactive.pm_.c:661
+#: ../../install_steps_interactive.pm_.c:645
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:664
+#: ../../install_steps_interactive.pm_.c:648
#, fuzzy
msgid "With X"
msgstr "Oodake"
-#: ../../install_steps_interactive.pm_.c:666
+#: ../../install_steps_interactive.pm_.c:650
msgid "With basic documentation (recommended!)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:667
+#: ../../install_steps_interactive.pm_.c:651
msgid "Truly minimal install (especially no urpmi)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:752
+#: ../../install_steps_interactive.pm_.c:736
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -5109,16 +5188,16 @@ msgstr ""
"Kui Teil ei ole ühtki neist, klikkige <Katkesta>.\n"
"Kui puuduvad mőned CD-d, märkige vaid olemasolevad ja siis <OK>."
-#: ../../install_steps_interactive.pm_.c:757
+#: ../../install_steps_interactive.pm_.c:741
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "CD pealdisega \"%s\""
-#: ../../install_steps_interactive.pm_.c:778
+#: ../../install_steps_interactive.pm_.c:762
msgid "Preparing installation"
msgstr "Valmistun installimiseks"
-#: ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:771
#, c-format
msgid ""
"Installing package %s\n"
@@ -5127,21 +5206,21 @@ msgstr ""
"Paketi %s installimine\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:833
+#: ../../install_steps_interactive.pm_.c:817
msgid "Post-install configuration"
msgstr "Paigaldusjärgsed sätted"
-#: ../../install_steps_interactive.pm_.c:839
+#: ../../install_steps_interactive.pm_.c:823
#, fuzzy, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Pane flopi seadmesse %s"
-#: ../../install_steps_interactive.pm_.c:845
+#: ../../install_steps_interactive.pm_.c:829
#, fuzzy, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Pange palun tühi flopi seadmesse %s"
-#: ../../install_steps_interactive.pm_.c:865
+#: ../../install_steps_interactive.pm_.c:849
msgid ""
"You now have the opportunity to download encryption software.\n"
"\n"
@@ -5209,7 +5288,7 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:904
+#: ../../install_steps_interactive.pm_.c:888
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
"have been released after the distribution was released. They may\n"
@@ -5221,164 +5300,164 @@ msgid ""
"Do you want to install the updates ?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:919
+#: ../../install_steps_interactive.pm_.c:903
#, fuzzy
msgid ""
"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr "Proovin lugeda peeglilt pakettide nimekirja"
-#: ../../install_steps_interactive.pm_.c:924
+#: ../../install_steps_interactive.pm_.c:908
msgid "Choose a mirror from which to get the packages"
msgstr "Valige peegel, millelt lugeda pakettide nimekiri"
-#: ../../install_steps_interactive.pm_.c:933
+#: ../../install_steps_interactive.pm_.c:917
msgid "Contacting the mirror to get the list of available packages..."
msgstr "Proovin lugeda peeglilt pakettide nimekirja"
-#: ../../install_steps_interactive.pm_.c:960
+#: ../../install_steps_interactive.pm_.c:945
msgid "Which is your timezone?"
msgstr "Millises ajavöötmes asute?"
-#: ../../install_steps_interactive.pm_.c:965
+#: ../../install_steps_interactive.pm_.c:950
#, fuzzy
msgid "Hardware clock set to GMT"
msgstr "Kas Teie arvuti sisekell on seatud GMT ajale?"
-#: ../../install_steps_interactive.pm_.c:966
+#: ../../install_steps_interactive.pm_.c:951
msgid "Automatic time synchronization (using NTP)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:973
+#: ../../install_steps_interactive.pm_.c:958
#, fuzzy
msgid "NTP Server"
msgstr "NIS server:"
-#: ../../install_steps_interactive.pm_.c:1007
-#: ../../install_steps_interactive.pm_.c:1015
+#: ../../install_steps_interactive.pm_.c:992
+#: ../../install_steps_interactive.pm_.c:1000
msgid "Remote CUPS server"
msgstr "CUPS printserver"
-#: ../../install_steps_interactive.pm_.c:1008
+#: ../../install_steps_interactive.pm_.c:993
msgid "No printer"
msgstr "Printerit ei ole"
-#: ../../install_steps_interactive.pm_.c:1025
+#: ../../install_steps_interactive.pm_.c:1010
#, fuzzy
msgid "Do you have an ISA sound card?"
msgstr "On Teil veel kaarte?"
-#: ../../install_steps_interactive.pm_.c:1027
+#: ../../install_steps_interactive.pm_.c:1012
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1029
+#: ../../install_steps_interactive.pm_.c:1014
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1034 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1019 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Kokkuvőte"
-#: ../../install_steps_interactive.pm_.c:1037
+#: ../../install_steps_interactive.pm_.c:1022
msgid "Mouse"
msgstr "Hiir"
-#: ../../install_steps_interactive.pm_.c:1039
+#: ../../install_steps_interactive.pm_.c:1024
msgid "Timezone"
msgstr "Ajavööde"
-#: ../../install_steps_interactive.pm_.c:1040 ../../printerdrake.pm_.c:2728
-#: ../../printerdrake.pm_.c:2814
+#: ../../install_steps_interactive.pm_.c:1025 ../../printerdrake.pm_.c:2937
+#: ../../printerdrake.pm_.c:3026
msgid "Printer"
msgstr "Printer"
-#: ../../install_steps_interactive.pm_.c:1042
+#: ../../install_steps_interactive.pm_.c:1027
msgid "ISDN card"
msgstr "ISDN kaart"
-#: ../../install_steps_interactive.pm_.c:1045
-#: ../../install_steps_interactive.pm_.c:1047
+#: ../../install_steps_interactive.pm_.c:1030
+#: ../../install_steps_interactive.pm_.c:1032
msgid "Sound card"
msgstr "Helikaart"
-#: ../../install_steps_interactive.pm_.c:1049
+#: ../../install_steps_interactive.pm_.c:1034
msgid "TV card"
msgstr "TV kaart"
-#: ../../install_steps_interactive.pm_.c:1089
-#: ../../install_steps_interactive.pm_.c:1114
-#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1074
+#: ../../install_steps_interactive.pm_.c:1099
+#: ../../install_steps_interactive.pm_.c:1103
msgid "LDAP"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1090
-#: ../../install_steps_interactive.pm_.c:1114
-#: ../../install_steps_interactive.pm_.c:1127
+#: ../../install_steps_interactive.pm_.c:1075
+#: ../../install_steps_interactive.pm_.c:1099
+#: ../../install_steps_interactive.pm_.c:1112
#, fuzzy
msgid "NIS"
msgstr "Kasuta NIS-i"
-#: ../../install_steps_interactive.pm_.c:1091
-#: ../../install_steps_interactive.pm_.c:1114
-#: ../../install_steps_interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1141
+#: ../../install_steps_interactive.pm_.c:1076
+#: ../../install_steps_interactive.pm_.c:1099
+#: ../../install_steps_interactive.pm_.c:1120
+#: ../../install_steps_interactive.pm_.c:1126
#, fuzzy
msgid "Windows Domain"
msgstr "Gnome tööjaam"
-#: ../../install_steps_interactive.pm_.c:1092
-#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1077
+#: ../../install_steps_interactive.pm_.c:1099
#, fuzzy
msgid "Local files"
msgstr "Kohalik printer"
-#: ../../install_steps_interactive.pm_.c:1101
-#: ../../install_steps_interactive.pm_.c:1102 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1086
+#: ../../install_steps_interactive.pm_.c:1087 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Juurkasutaja salasőna"
-#: ../../install_steps_interactive.pm_.c:1103
+#: ../../install_steps_interactive.pm_.c:1088
msgid "No password"
msgstr "Salasőna puudub"
-#: ../../install_steps_interactive.pm_.c:1108
+#: ../../install_steps_interactive.pm_.c:1093
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr "Salasőna on liiga lihtne (peaks olema vähemalt %d tähemärki)"
-#: ../../install_steps_interactive.pm_.c:1114 ../../network/modem.pm_.c:49
+#: ../../install_steps_interactive.pm_.c:1099 ../../network/modem.pm_.c:49
#: ../../standalone/drakconnect_.c:625 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Autentimisviis"
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1107
#, fuzzy
msgid "Authentication LDAP"
msgstr "Autentimisviis"
-#: ../../install_steps_interactive.pm_.c:1123
+#: ../../install_steps_interactive.pm_.c:1108
msgid "LDAP Base dn"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1124
+#: ../../install_steps_interactive.pm_.c:1109
#, fuzzy
msgid "LDAP Server"
msgstr "NIS server:"
-#: ../../install_steps_interactive.pm_.c:1130
+#: ../../install_steps_interactive.pm_.c:1115
#, fuzzy
msgid "Authentication NIS"
msgstr "NIS autentimine"
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1116
msgid "NIS Domain"
msgstr "NIS domeen"
-#: ../../install_steps_interactive.pm_.c:1132
+#: ../../install_steps_interactive.pm_.c:1117
msgid "NIS Server"
msgstr "NIS server:"
-#: ../../install_steps_interactive.pm_.c:1138
+#: ../../install_steps_interactive.pm_.c:1123
msgid ""
"For this to work for a W2K PDC, you will probably need to have the admin "
"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
@@ -5394,22 +5473,22 @@ msgid ""
"good."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1140
+#: ../../install_steps_interactive.pm_.c:1125
#, fuzzy
msgid "Authentication Windows Domain"
msgstr "Autentimisviis"
-#: ../../install_steps_interactive.pm_.c:1142
+#: ../../install_steps_interactive.pm_.c:1127
#, fuzzy
msgid "Domain Admin User Name"
msgstr "Domeeninimi"
-#: ../../install_steps_interactive.pm_.c:1143
+#: ../../install_steps_interactive.pm_.c:1128
#, fuzzy
msgid "Domain Admin Password"
msgstr "Salasőna uuesti"
-#: ../../install_steps_interactive.pm_.c:1178
+#: ../../install_steps_interactive.pm_.c:1163
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
"depending on the normal bootloader. This is useful if you don't want to "
@@ -5437,19 +5516,19 @@ msgstr ""
"Alglaadimisketta loomiseks asetage flopi esimesse seadmesse ning vajutage\n"
"\"Ok\"."
-#: ../../install_steps_interactive.pm_.c:1194
+#: ../../install_steps_interactive.pm_.c:1179
msgid "First floppy drive"
msgstr "Esimene flopiseade"
-#: ../../install_steps_interactive.pm_.c:1195
+#: ../../install_steps_interactive.pm_.c:1180
msgid "Second floppy drive"
msgstr "Teine flopiseade"
-#: ../../install_steps_interactive.pm_.c:1196 ../../printerdrake.pm_.c:2277
+#: ../../install_steps_interactive.pm_.c:1181 ../../printerdrake.pm_.c:2470
msgid "Skip"
msgstr "Jäta vahele"
-#: ../../install_steps_interactive.pm_.c:1201
+#: ../../install_steps_interactive.pm_.c:1186
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5473,7 +5552,7 @@ msgstr ""
"ka Jumal!\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1207
+#: ../../install_steps_interactive.pm_.c:1192
msgid ""
"\n"
"\n"
@@ -5482,28 +5561,28 @@ msgid ""
"because XFS needs a very large driver)."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1215
+#: ../../install_steps_interactive.pm_.c:1200
msgid "Sorry, no floppy drive available"
msgstr "Flopiseade ei ole kättesaadav"
-#: ../../install_steps_interactive.pm_.c:1219
+#: ../../install_steps_interactive.pm_.c:1204
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "Vali flopiseade, mida kasutad alglaadimisketta tegemiseks"
-#: ../../install_steps_interactive.pm_.c:1223
+#: ../../install_steps_interactive.pm_.c:1208
#, fuzzy, c-format
msgid "Insert a floppy in %s"
msgstr "Pane flopi seadmesse %s"
-#: ../../install_steps_interactive.pm_.c:1226
+#: ../../install_steps_interactive.pm_.c:1211
msgid "Creating bootdisk..."
msgstr "Loome alglaadimisketta"
-#: ../../install_steps_interactive.pm_.c:1233
+#: ../../install_steps_interactive.pm_.c:1218
msgid "Preparing bootloader..."
msgstr "Alglaaduri sätted"
-#: ../../install_steps_interactive.pm_.c:1244
+#: ../../install_steps_interactive.pm_.c:1229
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5511,11 +5590,11 @@ msgid ""
" need to use BootX to boot your machine"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1250
+#: ../../install_steps_interactive.pm_.c:1235
msgid "Do you want to use aboot?"
msgstr "Soovite aboot-i kasutada?"
-#: ../../install_steps_interactive.pm_.c:1253
+#: ../../install_steps_interactive.pm_.c:1238
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -5523,17 +5602,17 @@ msgstr ""
"Viga aboot-i installimisel, \n"
"kas forseerida, riskides esimese partitsiooni hävinguga?"
-#: ../../install_steps_interactive.pm_.c:1260
+#: ../../install_steps_interactive.pm_.c:1245
#, fuzzy
msgid "Installing bootloader"
msgstr "Alglaaduri sätted"
-#: ../../install_steps_interactive.pm_.c:1266
+#: ../../install_steps_interactive.pm_.c:1251
msgid "Installation of bootloader failed. The following error occured:"
msgstr "Alglaaduri installimine ebaőnnestus. Tekkis järgnev viga:"
-#: ../../install_steps_interactive.pm_.c:1274
-#, fuzzy, c-format
+#: ../../install_steps_interactive.pm_.c:1259
+#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
" enable the bootloader. If you don't see the bootloader prompt at\n"
@@ -5545,21 +5624,21 @@ msgstr ""
"You will need to change your Open Firmware boot-device to\n"
" enable the bootloader. Hold down Command-Option-O-F\n"
" at reboot and enter:\n"
-" setenv boot-device $of_boot,\\\\:tbxi\n"
+" setenv boot-device %s,\\\\:tbxi\n"
" Then type: shut-down\n"
"At your next boot you should see the bootloader prompt."
-#: ../../install_steps_interactive.pm_.c:1308
+#: ../../install_steps_interactive.pm_.c:1293
#: ../../standalone/drakautoinst_.c:79
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Pange palun tühi flopi seadmesse %s"
-#: ../../install_steps_interactive.pm_.c:1312
+#: ../../install_steps_interactive.pm_.c:1297
msgid "Creating auto install floppy..."
msgstr "Loon kiirpaigaldusflopi"
-#: ../../install_steps_interactive.pm_.c:1323
+#: ../../install_steps_interactive.pm_.c:1308
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -5569,7 +5648,7 @@ msgstr ""
"\n"
"Olete kindel, et väljute programmist?"
-#: ../../install_steps_interactive.pm_.c:1334
+#: ../../install_steps_interactive.pm_.c:1319
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
@@ -5601,15 +5680,15 @@ msgstr ""
"Abi süsteemi edasiseks konfigureerimiseks saab eelkőige dokumendist\n"
"\"Official Mandrake Linux User's Guide\""
-#: ../../install_steps_interactive.pm_.c:1347
+#: ../../install_steps_interactive.pm_.c:1332
msgid "http://www.mandrakelinux.com/en/90errata.php3"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1352
+#: ../../install_steps_interactive.pm_.c:1337
msgid "Generate auto install floppy"
msgstr "Loo kiirpaigaldusflopi"
-#: ../../install_steps_interactive.pm_.c:1354
+#: ../../install_steps_interactive.pm_.c:1339
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -5622,15 +5701,15 @@ msgstr ""
"\n"
"Vőite valida ka lihtsalt installi kordamise.\n"
-#: ../../install_steps_interactive.pm_.c:1359
+#: ../../install_steps_interactive.pm_.c:1344
msgid "Automated"
msgstr "Automaatne"
-#: ../../install_steps_interactive.pm_.c:1359
+#: ../../install_steps_interactive.pm_.c:1344
msgid "Replay"
msgstr "Korda"
-#: ../../install_steps_interactive.pm_.c:1362
+#: ../../install_steps_interactive.pm_.c:1347
msgid "Save packages selection"
msgstr "Salvest paketivalik"
@@ -5639,7 +5718,8 @@ msgstr "Salvest paketivalik"
msgid "Mandrake Linux Installation %s"
msgstr "Mandrake Linux installimine %s"
-#: ../../install_steps_newt.pm_.c:34
+#. -PO This string must fit in a 80-char wide text screen
+#: ../../install_steps_newt.pm_.c:35
msgid ""
" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
msgstr " <Tab>/<Alt-Tab> väljade vahel | <Space> valib | <F12> järgmine samm "
@@ -5657,22 +5737,22 @@ msgstr ""
msgid "Choose a file"
msgstr "Valige tegevus"
-#: ../../interactive.pm_.c:317
+#: ../../interactive.pm_.c:320
msgid "Advanced"
msgstr "Edasijőudnud"
-#: ../../interactive.pm_.c:318
+#: ../../interactive.pm_.c:321
msgid "Basic"
msgstr ""
-#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:155
-#: ../../printerdrake.pm_.c:1990
+#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:158
+#: ../../printerdrake.pm_.c:2124
msgid "<- Previous"
msgstr "<- Eelmine"
#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
-#: ../../standalone/drakbackup_.c:3464 ../../standalone/drakbackup_.c:3491
-#: ../../standalone/drakbackup_.c:3517
+#: ../../standalone/drakbackup_.c:4112 ../../standalone/drakbackup_.c:4139
+#: ../../standalone/drakbackup_.c:4169 ../../standalone/drakbackup_.c:4195
#, fuzzy
msgid "Next"
msgstr "Tekst"
@@ -5740,386 +5820,386 @@ msgstr ""
msgid "Re-submit"
msgstr ""
-#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:152 ../../keyboard.pm_.c:187
msgid "Czech (QWERTZ)"
msgstr "Tšehhi (QWERTZ)"
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:153 ../../keyboard.pm_.c:189
msgid "German"
msgstr "Saksa"
-#: ../../keyboard.pm_.c:175
+#: ../../keyboard.pm_.c:154
msgid "Dvorak"
msgstr "DVORAK"
-#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:218
+#: ../../keyboard.pm_.c:155 ../../keyboard.pm_.c:197
msgid "Spanish"
msgstr "Hispaania"
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:156 ../../keyboard.pm_.c:198
msgid "Finnish"
msgstr "Soome"
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:220
+#: ../../keyboard.pm_.c:157 ../../keyboard.pm_.c:199
msgid "French"
msgstr "Prantsuse"
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:158 ../../keyboard.pm_.c:231
msgid "Norwegian"
msgstr "Norra"
-#: ../../keyboard.pm_.c:180
+#: ../../keyboard.pm_.c:159
msgid "Polish"
msgstr "Poola"
-#: ../../keyboard.pm_.c:181 ../../keyboard.pm_.c:260
+#: ../../keyboard.pm_.c:160 ../../keyboard.pm_.c:239
msgid "Russian"
msgstr "Vene"
-#: ../../keyboard.pm_.c:183 ../../keyboard.pm_.c:262
+#: ../../keyboard.pm_.c:162 ../../keyboard.pm_.c:241
msgid "Swedish"
msgstr "Rootsi"
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:278
+#: ../../keyboard.pm_.c:163 ../../keyboard.pm_.c:257
msgid "UK keyboard"
msgstr "Briti"
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:279
+#: ../../keyboard.pm_.c:164 ../../keyboard.pm_.c:258
msgid "US keyboard"
msgstr "US"
-#: ../../keyboard.pm_.c:187
+#: ../../keyboard.pm_.c:166
#, fuzzy
msgid "Albanian"
msgstr "Iraani"
-#: ../../keyboard.pm_.c:188
+#: ../../keyboard.pm_.c:167
msgid "Armenian (old)"
msgstr "Armeenia (vanem)"
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:168
msgid "Armenian (typewriter)"
msgstr "Armeenia (trükimasin)"
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:169
msgid "Armenian (phonetic)"
msgstr "Armeenia (foneetiline)"
-#: ../../keyboard.pm_.c:195
+#: ../../keyboard.pm_.c:174
msgid "Azerbaidjani (latin)"
msgstr "Aserbaidțaani (ladina)"
-#: ../../keyboard.pm_.c:197
+#: ../../keyboard.pm_.c:176
msgid "Belgian"
msgstr "Belgia"
-#: ../../keyboard.pm_.c:198
+#: ../../keyboard.pm_.c:177
#, fuzzy
msgid "Bengali"
msgstr "luba"
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:178
#, fuzzy
msgid "Bulgarian (phonetic)"
msgstr "Armeenia (foneetiline)"
-#: ../../keyboard.pm_.c:200
+#: ../../keyboard.pm_.c:179
#, fuzzy
msgid "Bulgarian (BDS)"
msgstr "Bulgaaria"
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:180
msgid "Brazilian (ABNT-2)"
msgstr "Brasiilia (ABNT-2)"
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:183
#, fuzzy
msgid "Bosnian"
msgstr "Eesti"
-#: ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:184
msgid "Belarusian"
msgstr "Valgevene"
-#: ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:185
msgid "Swiss (German layout)"
msgstr "Đveitsi (Saksa asetus)"
-#: ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:186
msgid "Swiss (French layout)"
msgstr "Đveitsi (Prantsuse asetus)"
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:188
msgid "Czech (QWERTY)"
msgstr "Tđehhi (QWERTY)"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:190
msgid "German (no dead keys)"
msgstr "Saksa (ilma sammuta)"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:191
msgid "Devanagari"
msgstr ""
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:192
msgid "Danish"
msgstr "Taani"
-#: ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:193
msgid "Dvorak (US)"
msgstr "DVORAK (US)"
-#: ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:194
msgid "Dvorak (Norwegian)"
msgstr "DVORAK (Norra)"
-#: ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:195
#, fuzzy
msgid "Dvorak (Swedish)"
msgstr "DVORAK (US)"
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:196
msgid "Estonian"
msgstr "Eesti"
-#: ../../keyboard.pm_.c:221
+#: ../../keyboard.pm_.c:200
msgid "Georgian (\"Russian\" layout)"
msgstr "Gruusia (vene)"
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:201
msgid "Georgian (\"Latin\" layout)"
msgstr "Gruusia (ladina)"
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:202
msgid "Greek"
msgstr "Kreeka"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:203
msgid "Gujarati"
msgstr ""
-#: ../../keyboard.pm_.c:225
+#: ../../keyboard.pm_.c:204
msgid "Gurmukhi"
msgstr ""
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:205
msgid "Hungarian"
msgstr "Ungari"
-#: ../../keyboard.pm_.c:227
+#: ../../keyboard.pm_.c:206
msgid "Croatian"
msgstr "Kroaadi"
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:207
msgid "Israeli"
msgstr "Iisraeli"
-#: ../../keyboard.pm_.c:229
+#: ../../keyboard.pm_.c:208
msgid "Israeli (Phonetic)"
msgstr "Iisraeli foneetiline"
-#: ../../keyboard.pm_.c:230
+#: ../../keyboard.pm_.c:209
msgid "Iranian"
msgstr "Iraani"
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:210
msgid "Icelandic"
msgstr "Islandi"
-#: ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:211
msgid "Italian"
msgstr "Itaalia"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:212
msgid "Inuktitut"
msgstr ""
-#: ../../keyboard.pm_.c:234
+#: ../../keyboard.pm_.c:213
msgid "Japanese 106 keys"
msgstr "Jaapani 106 klahviga"
-#: ../../keyboard.pm_.c:237
+#: ../../keyboard.pm_.c:216
msgid "Korean keyboard"
msgstr "Korea"
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:217
msgid "Latin American"
msgstr "Ladina-Ameerika"
-#: ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:218
#, fuzzy
msgid "Laotian"
msgstr "Asukoht"
-#: ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:219
msgid "Lithuanian AZERTY (old)"
msgstr "Leedu AZERTY (vanem)"
-#: ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:221
msgid "Lithuanian AZERTY (new)"
msgstr "Leedu AZERTY (uuem)"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:222
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Leedu numbrireaga QWERTY"
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:223
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "Leedu foneetiline QWERTY"
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:224
#, fuzzy
msgid "Latvian"
msgstr "Asukoht"
-#: ../../keyboard.pm_.c:246
+#: ../../keyboard.pm_.c:225
msgid "Macedonian"
msgstr "Makedoonia"
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:226
msgid "Myanmar (Burmese)"
msgstr ""
-#: ../../keyboard.pm_.c:248
+#: ../../keyboard.pm_.c:227
#, fuzzy
msgid "Mongolian (cyrillic)"
msgstr "Aserbaidțaani (kirillitsa)"
-#: ../../keyboard.pm_.c:249
+#: ../../keyboard.pm_.c:228
msgid "Maltese (UK)"
msgstr ""
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:229
msgid "Maltese (US)"
msgstr ""
-#: ../../keyboard.pm_.c:251
+#: ../../keyboard.pm_.c:230
msgid "Dutch"
msgstr "Hollandi"
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:232
msgid "Polish (qwerty layout)"
msgstr "Poola (QWERTY)"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:233
msgid "Polish (qwertz layout)"
msgstr "Poola (QWERTZ)"
-#: ../../keyboard.pm_.c:255
+#: ../../keyboard.pm_.c:234
msgid "Portuguese"
msgstr "Portugali"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:235
msgid "Canadian (Quebec)"
msgstr "Kanada (Quebec)"
-#: ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:237
#, fuzzy
msgid "Romanian (qwertz)"
msgstr "Vene (Yawerty)"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:238
#, fuzzy
msgid "Romanian (qwerty)"
msgstr "Vene (Yawerty)"
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:240
msgid "Russian (Yawerty)"
msgstr "Vene (Yawerty)"
-#: ../../keyboard.pm_.c:263
+#: ../../keyboard.pm_.c:242
msgid "Slovenian"
msgstr "Sloveenia"
-#: ../../keyboard.pm_.c:264
+#: ../../keyboard.pm_.c:243
msgid "Slovakian (QWERTZ)"
msgstr "Slovaki (QWERTZ)"
-#: ../../keyboard.pm_.c:265
+#: ../../keyboard.pm_.c:244
msgid "Slovakian (QWERTY)"
msgstr "Slovaki (QWERTY)"
-#: ../../keyboard.pm_.c:267
+#: ../../keyboard.pm_.c:246
#, fuzzy
msgid "Serbian (cyrillic)"
msgstr "Aserbaidțaani (kirillitsa)"
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:248
#, fuzzy
msgid "Tamil (Unicode)"
msgstr "i18n (kena)"
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:249
msgid "Tamil (TSCII)"
msgstr ""
-#: ../../keyboard.pm_.c:271
+#: ../../keyboard.pm_.c:250
msgid "Thai keyboard"
msgstr "Tai"
-#: ../../keyboard.pm_.c:273
+#: ../../keyboard.pm_.c:252
#, fuzzy
msgid "Tajik keyboard"
msgstr "Tai"
-#: ../../keyboard.pm_.c:274
+#: ../../keyboard.pm_.c:253
msgid "Turkish (traditional \"F\" model)"
msgstr "Türgi (\"F\" mudel)"
-#: ../../keyboard.pm_.c:275
+#: ../../keyboard.pm_.c:254
msgid "Turkish (modern \"Q\" model)"
msgstr "Türgi (\"Q\" mudel)"
-#: ../../keyboard.pm_.c:277
+#: ../../keyboard.pm_.c:256
msgid "Ukrainian"
msgstr "Ukraina"
-#: ../../keyboard.pm_.c:280
+#: ../../keyboard.pm_.c:259
msgid "US keyboard (international)"
msgstr "US (rahvusvaheline)"
-#: ../../keyboard.pm_.c:281
+#: ../../keyboard.pm_.c:260
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "Vietnami numbrireaga QWERTY"
-#: ../../keyboard.pm_.c:282
+#: ../../keyboard.pm_.c:261
#, fuzzy
msgid "Yugoslavian (latin)"
msgstr "Jugoslaavia (koos kirillitsaga)"
-#: ../../keyboard.pm_.c:289
+#: ../../keyboard.pm_.c:268
msgid "Right Alt key"
msgstr ""
-#: ../../keyboard.pm_.c:290
+#: ../../keyboard.pm_.c:269
msgid "Both Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:291
+#: ../../keyboard.pm_.c:270
msgid "Control and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:292
+#: ../../keyboard.pm_.c:271
msgid "CapsLock key"
msgstr ""
-#: ../../keyboard.pm_.c:293
+#: ../../keyboard.pm_.c:272
msgid "Ctrl and Alt keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:294
+#: ../../keyboard.pm_.c:273
msgid "Alt and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:295
+#: ../../keyboard.pm_.c:274
msgid "\"Menu\" key"
msgstr ""
-#: ../../keyboard.pm_.c:296
+#: ../../keyboard.pm_.c:275
msgid "Left \"Windows\" key"
msgstr ""
-#: ../../keyboard.pm_.c:297
+#: ../../keyboard.pm_.c:276
msgid "Right \"Windows\" key"
msgstr ""
@@ -6177,11 +6257,11 @@ msgstr "Lihtsalt PS2 rattaga hiir"
msgid "GlidePoint"
msgstr "GlidePoint"
-#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:63
+#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:65
msgid "Kensington Thinking Mouse"
msgstr "Kensington Thinking Mouse"
-#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:59
+#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:61
msgid "Genius NetMouse"
msgstr "Genius NetMouse"
@@ -6189,115 +6269,124 @@ msgstr "Genius NetMouse"
msgid "Genius NetScroll"
msgstr "Genius NetScroll"
-#: ../../mouse.pm_.c:43 ../../mouse.pm_.c:68
+#: ../../mouse.pm_.c:39 ../../mouse.pm_.c:48
+#, fuzzy
+msgid "Microsoft Explorer"
+msgstr "Microsoft IntelliMouse"
+
+#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:70
msgid "1 button"
msgstr "1 nupp"
-#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:51
+#: ../../mouse.pm_.c:45 ../../mouse.pm_.c:53
msgid "Generic 2 Button Mouse"
msgstr "Lihtsalt 2-nupuline hiir"
-#: ../../mouse.pm_.c:46
+#: ../../mouse.pm_.c:47
msgid "Wheel"
msgstr "Ratas"
-#: ../../mouse.pm_.c:49
+#: ../../mouse.pm_.c:51
msgid "serial"
msgstr "seerial"
-#: ../../mouse.pm_.c:52
+#: ../../mouse.pm_.c:54
msgid "Generic 3 Button Mouse"
msgstr "Lihtsalt 3-nupuline hiir"
-#: ../../mouse.pm_.c:53
+#: ../../mouse.pm_.c:55
msgid "Microsoft IntelliMouse"
msgstr "Microsoft IntelliMouse"
-#: ../../mouse.pm_.c:54
+#: ../../mouse.pm_.c:56
msgid "Logitech MouseMan"
msgstr "Logitech MouseMan"
-#: ../../mouse.pm_.c:55
+#: ../../mouse.pm_.c:57
msgid "Mouse Systems"
msgstr "Mouse Systems"
-#: ../../mouse.pm_.c:57
+#: ../../mouse.pm_.c:59
msgid "Logitech CC Series"
msgstr "Logitech CC seeria (seerial)"
-#: ../../mouse.pm_.c:58
+#: ../../mouse.pm_.c:60
msgid "Logitech MouseMan+/FirstMouse+"
msgstr "Logitech MouseMan+/FirstMouse+"
-#: ../../mouse.pm_.c:60
+#: ../../mouse.pm_.c:62
msgid "MM Series"
msgstr "MM Series"
-#: ../../mouse.pm_.c:61
+#: ../../mouse.pm_.c:63
msgid "MM HitTablet"
msgstr "MM HitTablet"
-#: ../../mouse.pm_.c:62
+#: ../../mouse.pm_.c:64
msgid "Logitech Mouse (serial, old C7 type)"
msgstr "Logitech (seerial, vana C7 tüüpi)"
-#: ../../mouse.pm_.c:66
+#: ../../mouse.pm_.c:68
msgid "busmouse"
msgstr "siinihiir"
-#: ../../mouse.pm_.c:69
+#: ../../mouse.pm_.c:71
msgid "2 buttons"
msgstr "2 nuppu"
-#: ../../mouse.pm_.c:70
+#: ../../mouse.pm_.c:72
msgid "3 buttons"
msgstr "3 nuppu"
-#: ../../mouse.pm_.c:73
+#: ../../mouse.pm_.c:75
msgid "none"
msgstr "ei soovi"
-#: ../../mouse.pm_.c:75
+#: ../../mouse.pm_.c:77
msgid "No mouse"
msgstr "Hiirt ei ole"
-#: ../../mouse.pm_.c:445
+#: ../../mouse.pm_.c:482
msgid "Please test the mouse"
msgstr "Palun testige hiirt"
-#: ../../mouse.pm_.c:446
+#: ../../mouse.pm_.c:483
msgid "To activate the mouse,"
msgstr "Hiire aktiveerimiseks"
-#: ../../mouse.pm_.c:447
+#: ../../mouse.pm_.c:484
msgid "MOVE YOUR WHEEL!"
msgstr "KEERUTAGE RATTAKEST!"
-#: ../../my_gtk.pm_.c:156
+#: ../../my_gtk.pm_.c:64
+msgid "-adobe-utopia-regular-r-*-*-25-*-*-*-p-*-iso8859-*,*-r-*"
+msgstr ""
+
+#: ../../my_gtk.pm_.c:159
msgid "Finish"
msgstr "Lőpeta"
-#: ../../my_gtk.pm_.c:156 ../../printerdrake.pm_.c:1992
+#: ../../my_gtk.pm_.c:159 ../../printerdrake.pm_.c:2126
msgid "Next ->"
msgstr "Järgmine ->"
-#: ../../my_gtk.pm_.c:284
+#: ../../my_gtk.pm_.c:287
msgid "Is this correct?"
msgstr "Kas see on sobiv?"
-#: ../../my_gtk.pm_.c:356 ../../services.pm_.c:222
+#: ../../my_gtk.pm_.c:359 ../../services.pm_.c:222
msgid "Info"
msgstr "Info"
-#: ../../my_gtk.pm_.c:377
+#: ../../my_gtk.pm_.c:380
msgid "Expand Tree"
msgstr "Ava puu"
-#: ../../my_gtk.pm_.c:378
+#: ../../my_gtk.pm_.c:381
msgid "Collapse Tree"
msgstr "Sule puu"
-#: ../../my_gtk.pm_.c:379
+#: ../../my_gtk.pm_.c:382
msgid "Toggle between flat and group sorted"
msgstr "Sorteeritud vői sorteerimata"
@@ -6335,6 +6424,76 @@ msgstr "pppoe"
msgid "use pptp"
msgstr "pptp"
+#: ../../network/drakfirewall.pm_.c:12
+#, fuzzy
+msgid "Web Server"
+msgstr "Server"
+
+#: ../../network/drakfirewall.pm_.c:17
+#, fuzzy
+msgid "Domain Name Server"
+msgstr "Domeeninimi"
+
+#: ../../network/drakfirewall.pm_.c:32
+#, fuzzy
+msgid "Mail Server"
+msgstr "Server, Andmebaasid"
+
+#: ../../network/drakfirewall.pm_.c:37
+#, fuzzy
+msgid "POP and IMAP Server"
+msgstr "NIS server:"
+
+#: ../../network/drakfirewall.pm_.c:111
+#, fuzzy
+msgid "No network card"
+msgstr "vőrgukaarti ei leitud"
+
+#: ../../network/drakfirewall.pm_.c:129
+#, fuzzy
+msgid ""
+"drakfirewall configurator\n"
+"\n"
+"This configures a personal firewall for this Mandrake Linux machine.\n"
+"For a powerful dedicated firewall solution, please look to the\n"
+"specialized MandrakeSecurity Firewall distribution."
+msgstr ""
+"tinyfirewall seadistamine\n"
+"\n"
+"Selle vahendiga saate luua lihtsa kaitse Interneti ohtude vastu.\n"
+"Kui vajate vőimsat tulemüüri, vaadake palun\n"
+"spetsiaalset MandrakeSecurity Firewall distributsiooni."
+
+#: ../../network/drakfirewall.pm_.c:147
+msgid "Which services would you like to allow the Internet to connect to?"
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:148
+msgid ""
+"You can enter miscellaneous ports. \n"
+"Valid examples are: 139/tcp 139/udp.\n"
+"Have a look at /etc/services for information."
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:154
+#, c-format
+msgid ""
+"Invalid port given: %s.\n"
+"The proper format is \"port/tcp\" or \"port/udp\", \n"
+"where port is between 1 and 65535."
+msgstr ""
+
+#
+#: ../../network/drakfirewall.pm_.c:162
+#, fuzzy
+msgid "Everything (no firewall)"
+msgstr "Kőik seadistatud!"
+
+#: ../../network/drakfirewall.pm_.c:164
+#, fuzzy
+msgid "Other ports"
+msgstr "Muud maad"
+
#: ../../network/ethernet.pm_.c:37
msgid ""
"Which dhcp client do you want to use?\n"
@@ -6351,7 +6510,7 @@ msgstr ""
"Ühtki vőrgukaarti ei őnnestunud tuvastada\n"
"Seega ei saa ka sellist ühendust seadistada."
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:247
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:240
msgid "Choose the network interface"
msgstr "Valige vőrguliides"
@@ -6365,7 +6524,7 @@ msgstr ""
msgid "no network card found"
msgstr "vőrgukaarti ei leitud"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:366
msgid "Configuring network"
msgstr "Vőrguseadistused"
@@ -6381,7 +6540,7 @@ msgstr ""
"Masina nimi peab olema esitatud täiskujul,\n"
"nagu ``minumasin.minufirma.ee''."
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:370
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:371
msgid "Host name"
msgstr "Masinanimi"
@@ -6682,13 +6841,13 @@ msgstr "Valige profiil, mida seadistada"
msgid "Use auto detection"
msgstr "Kasuta automaattuvastust"
-#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2930
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:3151
#: ../../standalone/drakconnect_.c:274 ../../standalone/drakconnect_.c:277
#: ../../standalone/drakfloppy_.c:145
msgid "Expert Mode"
msgstr "Ekspertresiim"
-#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:283
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:386
msgid "Detecting devices..."
msgstr "Otsin printerit..."
@@ -6851,11 +7010,11 @@ msgstr "Automaatne IP"
msgid "Start at boot"
msgstr "Käivitub laadimisel"
-#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:753
+#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:860
msgid "IP address should be in format 1.2.3.4"
msgstr "IP-aadress peab olema formaadis 1.2.3.4"
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:367
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -6867,43 +7026,56 @@ msgstr ""
"nagu ``minumasin.minufirma.ee''.\n"
"Kui Teil on vaikimisi lüüs, siis sisestage ka selle IP-aadress"
-#: ../../network/network.pm_.c:371
+#: ../../network/network.pm_.c:372
msgid "DNS server"
msgstr "Nimeserver"
-#: ../../network/network.pm_.c:372
+#: ../../network/network.pm_.c:373
#, c-format
msgid "Gateway (e.g. %s)"
msgstr ""
-#: ../../network/network.pm_.c:374
+#: ../../network/network.pm_.c:375
msgid "Gateway device"
msgstr "Lüüsipoolne seade"
-#: ../../network/network.pm_.c:386
+#: ../../network/network.pm_.c:387
msgid "Proxies configuration"
msgstr "Vahendajate sätted"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:388
msgid "HTTP proxy"
msgstr "HTTP vahendaja"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:389
msgid "FTP proxy"
msgstr "FTP vahendaja"
-#: ../../network/network.pm_.c:389
+#: ../../network/network.pm_.c:390
msgid "Track network card id (useful for laptops)"
msgstr ""
-#: ../../network/network.pm_.c:392
+#: ../../network/network.pm_.c:393
msgid "Proxy should be http://..."
msgstr "Vahendaja peab olema kujul http://..."
-#: ../../network/network.pm_.c:393
+#: ../../network/network.pm_.c:394
msgid "Proxy should be ftp://..."
msgstr "Vahendaja peab olema kujul ftp://..."
+#
+#: ../../network/shorewall.pm_.c:24
+msgid "Firewalling configuration detected!"
+msgstr "Leitud tulemüüri sätted!"
+
+#: ../../network/shorewall.pm_.c:25
+msgid ""
+"Warning! An existing firewalling configuration has been detected. You may "
+"need some manual fix after installation."
+msgstr ""
+"Hoiatus! Leiti olemasolevad tulemüüri sätted. Tőenäoliselt peaksite need "
+"hiljem üle vaatame."
+
#: ../../network/tools.pm_.c:41
msgid "Internet configuration"
msgstr "Interneti sätted"
@@ -7012,15 +7184,15 @@ msgstr "Salasőna"
msgid "United Kingdom"
msgstr ""
-#: ../../partition_table.pm_.c:606
+#: ../../partition_table.pm_.c:602
msgid "mount failed: "
msgstr "ühendamine ebaőnnestus: "
-#: ../../partition_table.pm_.c:670
+#: ../../partition_table.pm_.c:666
msgid "Extended partition not supported on this platform"
msgstr "Sellel platformil ei saa laiendatud partitsiooni luua"
-#: ../../partition_table.pm_.c:688
+#: ../../partition_table.pm_.c:684
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
@@ -7030,21 +7202,21 @@ msgstr ""
"Ainuke lahendus on nihutada primaarset partitsiooni, et auk satuks "
"laiendatud partitsioonide kőrvale"
-#: ../../partition_table.pm_.c:778
+#: ../../partition_table.pm_.c:774
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "Taastamine failist %s ebaőnnestus: %s"
-#: ../../partition_table.pm_.c:780
+#: ../../partition_table.pm_.c:776
msgid "Bad backup file"
msgstr "Kőlbmatu tagavarakoopia"
-#: ../../partition_table.pm_.c:802
+#: ../../partition_table.pm_.c:798
#, c-format
msgid "Error writing to file %s"
msgstr "Viga faili %s kirjutamisel"
-#: ../../partition_table/raw.pm_.c:187
+#: ../../partition_table/raw.pm_.c:189
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
@@ -7090,157 +7262,161 @@ msgstr ""
msgid "PDQ - Print, Don't Queue"
msgstr ""
-#: ../../printer.pm_.c:35 ../../printer.pm_.c:854
+#: ../../printer.pm_.c:34 ../../printer.pm_.c:1125
msgid "CUPS"
msgstr ""
-#: ../../printer.pm_.c:36
+#: ../../printer.pm_.c:35
msgid "LPRng"
msgstr ""
-#: ../../printer.pm_.c:37
+#: ../../printer.pm_.c:36
msgid "LPD"
msgstr ""
-#: ../../printer.pm_.c:38
+#: ../../printer.pm_.c:37
msgid "PDQ"
msgstr ""
-#: ../../printer.pm_.c:50
+#: ../../printer.pm_.c:49
msgid "Local printer"
msgstr "Kohalik printer"
-#: ../../printer.pm_.c:51
+#: ../../printer.pm_.c:50
msgid "Remote printer"
msgstr "Vőrguprinter"
-#: ../../printer.pm_.c:52
+#: ../../printer.pm_.c:51
#, fuzzy
msgid "Printer on remote CUPS server"
msgstr "CUPS printserver"
-#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:776
+#: ../../printer.pm_.c:52 ../../printerdrake.pm_.c:883
#, fuzzy
msgid "Printer on remote lpd server"
msgstr "lpd printserver"
-#: ../../printer.pm_.c:54
+#: ../../printer.pm_.c:53
msgid "Network printer (TCP/Socket)"
msgstr "Vőrguprinter (TCP/Socket)"
-#: ../../printer.pm_.c:55
+#: ../../printer.pm_.c:54
#, fuzzy
msgid "Printer on SMB/Windows 95/98/NT server"
msgstr "SMB/Windows 95/98/NT"
-#: ../../printer.pm_.c:56
+#: ../../printer.pm_.c:55
#, fuzzy
msgid "Printer on NetWare server"
msgstr "Printserver:"
-#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:780
+#: ../../printer.pm_.c:56 ../../printerdrake.pm_.c:887
#, fuzzy
msgid "Enter a printer device URI"
msgstr "Printeri seadme URI"
-#: ../../printer.pm_.c:58
+#: ../../printer.pm_.c:57
msgid "Pipe job into a command"
msgstr ""
-#: ../../printer.pm_.c:487 ../../printer.pm_.c:678 ../../printer.pm_.c:1000
-#: ../../printerdrake.pm_.c:2070 ../../printerdrake.pm_.c:3189
+#: ../../printer.pm_.c:324 ../../printer.pm_.c:366 ../../printer.pm_.c:533
+msgid "Unknown Model"
+msgstr ""
+
+#: ../../printer.pm_.c:735 ../../printer.pm_.c:926 ../../printer.pm_.c:1318
+#: ../../printerdrake.pm_.c:2260 ../../printerdrake.pm_.c:3414
msgid "Unknown model"
msgstr ""
-#: ../../printer.pm_.c:515
+#: ../../printer.pm_.c:763
#, fuzzy
msgid "Local Printers"
msgstr "Kohalik printer"
-#: ../../printer.pm_.c:517 ../../printer.pm_.c:855
+#: ../../printer.pm_.c:765 ../../printer.pm_.c:1126
#, fuzzy
msgid "Remote Printers"
msgstr "Vőrguprinter"
-#: ../../printer.pm_.c:524 ../../printerdrake.pm_.c:301
+#: ../../printer.pm_.c:772 ../../printerdrake.pm_.c:404
#, c-format
msgid " on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:527 ../../printerdrake.pm_.c:303
+#: ../../printer.pm_.c:775 ../../printerdrake.pm_.c:406
#, c-format
msgid ", USB printer \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:532
+#: ../../printer.pm_.c:780
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:535
+#: ../../printer.pm_.c:783
msgid ", multi-function device on USB"
msgstr ""
-#: ../../printer.pm_.c:537
+#: ../../printer.pm_.c:785
msgid ", multi-function device on HP JetDirect"
msgstr ""
-#: ../../printer.pm_.c:539
+#: ../../printer.pm_.c:787
msgid ", multi-function device"
msgstr ""
-#: ../../printer.pm_.c:542
+#: ../../printer.pm_.c:790
#, fuzzy, c-format
msgid ", printing to %s"
msgstr "Viga faili %s kirjutamisel"
-#: ../../printer.pm_.c:544
+#: ../../printer.pm_.c:792
#, c-format
msgid " on LPD server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:546
+#: ../../printer.pm_.c:794
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ""
-#: ../../printer.pm_.c:550
+#: ../../printer.pm_.c:798
#, c-format
msgid " on SMB/Windows server \"%s\", share \"%s\""
msgstr ""
-#: ../../printer.pm_.c:554
+#: ../../printer.pm_.c:802
#, c-format
msgid " on Novell server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:556
+#: ../../printer.pm_.c:804
#, c-format
msgid ", using command %s"
msgstr ""
-#: ../../printer.pm_.c:675 ../../printerdrake.pm_.c:1540
+#: ../../printer.pm_.c:923 ../../printerdrake.pm_.c:1656
msgid "Raw printer (No driver)"
msgstr ""
-#: ../../printer.pm_.c:824
+#: ../../printer.pm_.c:1095
#, fuzzy, c-format
msgid "(on %s)"
msgstr "(moodul %s)"
-#: ../../printer.pm_.c:826
+#: ../../printer.pm_.c:1097
msgid "(on this machine)"
msgstr ""
-#: ../../printer.pm_.c:851
+#: ../../printer.pm_.c:1122
#, fuzzy, c-format
msgid "On CUPS server \"%s\""
msgstr "CUPS serveri IP"
-#: ../../printer.pm_.c:857 ../../printerdrake.pm_.c:2851
-#: ../../printerdrake.pm_.c:2862 ../../printerdrake.pm_.c:3078
-#: ../../printerdrake.pm_.c:3130 ../../printerdrake.pm_.c:3156
-#: ../../printerdrake.pm_.c:3326 ../../printerdrake.pm_.c:3328
+#: ../../printer.pm_.c:1128 ../../printerdrake.pm_.c:3071
+#: ../../printerdrake.pm_.c:3082 ../../printerdrake.pm_.c:3303
+#: ../../printerdrake.pm_.c:3355 ../../printerdrake.pm_.c:3381
+#: ../../printerdrake.pm_.c:3556 ../../printerdrake.pm_.c:3558
msgid " (Default)"
msgstr " (Vaikimisi)"
@@ -7267,12 +7443,12 @@ msgstr ""
msgid "Printer auto-detection (Local, TCP/Socket, and SMB printers)"
msgstr ""
-#: ../../printerdrake.pm_.c:84 ../../printerdrake.pm_.c:2914
+#: ../../printerdrake.pm_.c:84 ../../printerdrake.pm_.c:3135
#, fuzzy
msgid "CUPS configuration"
msgstr "LAN sätted"
-#: ../../printerdrake.pm_.c:85 ../../printerdrake.pm_.c:2915
+#: ../../printerdrake.pm_.c:85 ../../printerdrake.pm_.c:3136
#, fuzzy
msgid "Specify CUPS server"
msgstr "CUPS printserver"
@@ -7303,7 +7479,7 @@ msgstr ""
msgid "The IP address should look like 192.168.1.20"
msgstr "IP-aadress peab olema formaadis 1.2.3.4"
-#: ../../printerdrake.pm_.c:95 ../../printerdrake.pm_.c:987
+#: ../../printerdrake.pm_.c:95 ../../printerdrake.pm_.c:1094
#, fuzzy
msgid "The port number should be an integer!"
msgstr "Pordi number peab olema ikkagi number"
@@ -7312,7 +7488,7 @@ msgstr "Pordi number peab olema ikkagi number"
msgid "CUPS server IP"
msgstr "CUPS serveri IP"
-#: ../../printerdrake.pm_.c:103 ../../printerdrake.pm_.c:1007
+#: ../../printerdrake.pm_.c:103 ../../printerdrake.pm_.c:1114
msgid "Port"
msgstr "Port"
@@ -7321,13 +7497,129 @@ msgstr "Port"
msgid "Automatic CUPS configuration"
msgstr "Alglaaduri stiil"
-#: ../../printerdrake.pm_.c:183 ../../printerdrake.pm_.c:192
-#: ../../printerdrake.pm_.c:2897 ../../printerdrake.pm_.c:3017
+#: ../../printerdrake.pm_.c:177 ../../printerdrake.pm_.c:247
+#: ../../printerdrake.pm_.c:1529 ../../printerdrake.pm_.c:1533
+#: ../../printerdrake.pm_.c:1651 ../../printerdrake.pm_.c:2203
+#: ../../printerdrake.pm_.c:2356 ../../printerdrake.pm_.c:2415
+#: ../../printerdrake.pm_.c:2488 ../../printerdrake.pm_.c:2509
+#: ../../printerdrake.pm_.c:2699 ../../printerdrake.pm_.c:2740
+#: ../../printerdrake.pm_.c:2745 ../../printerdrake.pm_.c:2779
+#: ../../printerdrake.pm_.c:2784 ../../printerdrake.pm_.c:2821
+#: ../../printerdrake.pm_.c:2874 ../../printerdrake.pm_.c:2894
+#: ../../printerdrake.pm_.c:2908 ../../printerdrake.pm_.c:2942
+#: ../../printerdrake.pm_.c:2988 ../../printerdrake.pm_.c:3006
+#: ../../printerdrake.pm_.c:3095 ../../printerdrake.pm_.c:3169
+#: ../../printerdrake.pm_.c:3471 ../../printerdrake.pm_.c:3526
+#: ../../printerdrake.pm_.c:3579 ../../standalone/printerdrake_.c:57
+msgid "Printerdrake"
+msgstr "PrinterDrake"
+
+#: ../../printerdrake.pm_.c:178
+#, fuzzy
+msgid "Checking your system..."
+msgstr "Millist printimissüsteemi soovite kasutada?"
+
+#: ../../printerdrake.pm_.c:186
+msgid ""
+"There are no printers found which are directly connected to your machine"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:198
+#, fuzzy
+msgid ""
+"The following printers\n"
+"\n"
+msgstr "Eemaldamiseks on valitud järgmised paketid"
+
+#: ../../printerdrake.pm_.c:199
+#, fuzzy
+msgid ""
+"The following printer\n"
+"\n"
+msgstr "Eemaldamiseks on valitud järgmised paketid"
+
+#: ../../printerdrake.pm_.c:201
+msgid ""
+"\n"
+"and one unknown printer are "
+msgstr ""
+
+#: ../../printerdrake.pm_.c:203
+#, c-format
+msgid ""
+"\n"
+"and %d unknown printers are "
+msgstr ""
+
+#: ../../printerdrake.pm_.c:207
+msgid ""
+"\n"
+"are "
+msgstr ""
+
+#: ../../printerdrake.pm_.c:208
+msgid ""
+"\n"
+"is "
+msgstr ""
+
+#: ../../printerdrake.pm_.c:210
+#, fuzzy
+msgid "directly connected to your system"
+msgstr "Teie süsteemis ei ole vőrgukaarti!"
+
+#: ../../printerdrake.pm_.c:213
+msgid ""
+"\n"
+"There is one unknown printer directly connected to your system"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:215
+#, c-format
+msgid ""
+"\n"
+"There are %d unknown printers directly connected to your system"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:221
+#, fuzzy
+msgid " (Make sure that all your printers are connected and turned on).\n"
+msgstr "Millisesse seerialporti on Teie modem ühendatud?"
+
+#: ../../printerdrake.pm_.c:235
+msgid ""
+"Do you want to enable printing on the printers mentioned above or on "
+"printers in the local network?\n"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:236
+#, fuzzy
+msgid "Do you want to enable printing on printers in the local network?\n"
+msgstr "Kas soovite seadistusi proovida?"
+
+#: ../../printerdrake.pm_.c:238
+#, fuzzy
+msgid "Do you want to enable printing on the printers mentioned above?\n"
+msgstr "Kas soovite luua ühenduse juba alglaadimisel?"
+
+#: ../../printerdrake.pm_.c:239
+msgid "Are you sure that you want to set up printing on this machine?\n"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:240
+#, c-format
+msgid ""
+"NOTE: Depending on the printer model and the printing system up to %d MB of "
+"additional software will be installed."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:269 ../../printerdrake.pm_.c:278
+#: ../../printerdrake.pm_.c:3117 ../../printerdrake.pm_.c:3242
#, fuzzy
msgid "Add a new printer"
msgstr "Printerit ei ole"
-#: ../../printerdrake.pm_.c:184
+#: ../../printerdrake.pm_.c:270
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7340,7 +7632,7 @@ msgid ""
"connection types."
msgstr ""
-#: ../../printerdrake.pm_.c:193
+#: ../../printerdrake.pm_.c:280
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7349,7 +7641,7 @@ msgid ""
"computer, connected directly to the network or to a remote Windows machine.\n"
"\n"
"If you have printer(s) connected to this machine, Please plug it/them in on "
-"this computer and turn it/them on so that they can be auto-detected. Also "
+"this computer and turn it/them on so that it/they can be auto-detected. Also "
"your network printer(s) and you Windows machines must be connected and "
"turned on.\n"
"\n"
@@ -7362,7 +7654,22 @@ msgid ""
"want to set up your printer(s) now."
msgstr ""
-#: ../../printerdrake.pm_.c:202
+#: ../../printerdrake.pm_.c:289 ../../printerdrake.pm_.c:306
+msgid ""
+"\n"
+"Welcome to the Printer Setup Wizard\n"
+"\n"
+"This wizard will help you to install your printer(s) connected to this "
+"computer.\n"
+"\n"
+"If you have printer(s) connected to this machine, Please plug it/them in on "
+"this computer and turn it/them on so that it/they can be auto-detected.\n"
+"\n"
+" Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
+"want to set up your printer(s) now."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:297
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7371,7 +7678,7 @@ msgid ""
"computer or connected directly to the network.\n"
"\n"
"If you have printer(s) connected to this machine, Please plug it/them in on "
-"this computer and turn it/them on so that they can be auto-detected. Also "
+"this computer and turn it/them on so that it/they can be auto-detected. Also "
"your network printer(s) must be connected and turned on.\n"
"\n"
"Note that auto-detecting printers on the network takes longer than the auto-"
@@ -7382,26 +7689,26 @@ msgid ""
"want to set up your printer(s) now."
msgstr ""
-#: ../../printerdrake.pm_.c:213
+#: ../../printerdrake.pm_.c:315
#, fuzzy
msgid "Auto-detect printers connected to this machine"
msgstr "Vőrguprinter"
-#: ../../printerdrake.pm_.c:215
+#: ../../printerdrake.pm_.c:318
msgid "Auto-detect printers connected directly to the local network"
msgstr ""
-#: ../../printerdrake.pm_.c:218
+#: ../../printerdrake.pm_.c:321
msgid "Auto-detect printers connected to machines running Microsoft Windows"
msgstr ""
-#: ../../printerdrake.pm_.c:245 ../../printerdrake.pm_.c:459
-#: ../../printerdrake.pm_.c:484
+#: ../../printerdrake.pm_.c:348 ../../printerdrake.pm_.c:562
+#: ../../printerdrake.pm_.c:587
#, fuzzy
msgid "Local Printer"
msgstr "Kohalik printer"
-#: ../../printerdrake.pm_.c:246
+#: ../../printerdrake.pm_.c:349
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -7415,50 +7722,50 @@ msgid ""
"Center."
msgstr ""
-#: ../../printerdrake.pm_.c:283 ../../printerdrake.pm_.c:474
-#: ../../printerdrake.pm_.c:683 ../../printerdrake.pm_.c:923
+#: ../../printerdrake.pm_.c:386 ../../printerdrake.pm_.c:577
+#: ../../printerdrake.pm_.c:790 ../../printerdrake.pm_.c:1030
#, fuzzy
msgid "Printer auto-detection"
msgstr "Kasuta automaattuvastust"
-#: ../../printerdrake.pm_.c:305
+#: ../../printerdrake.pm_.c:408
#, c-format
msgid ", network printer \"%s\", port %s"
msgstr ""
-#: ../../printerdrake.pm_.c:307
+#: ../../printerdrake.pm_.c:410
#, fuzzy, c-format
msgid ", printer \"%s\" on SMB/Windows server \"%s\""
msgstr "SMB/Windows 95/98/NT"
-#: ../../printerdrake.pm_.c:313
+#: ../../printerdrake.pm_.c:416
#, fuzzy, c-format
msgid "Detected %s"
msgstr "tuvastati %s"
-#: ../../printerdrake.pm_.c:317 ../../printerdrake.pm_.c:348
-#: ../../printerdrake.pm_.c:367
+#: ../../printerdrake.pm_.c:420 ../../printerdrake.pm_.c:451
+#: ../../printerdrake.pm_.c:470
#, c-format
msgid "Printer on parallel port \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:319 ../../printerdrake.pm_.c:350
-#: ../../printerdrake.pm_.c:372
+#: ../../printerdrake.pm_.c:422 ../../printerdrake.pm_.c:453
+#: ../../printerdrake.pm_.c:475
#, c-format
msgid "USB printer \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:321
+#: ../../printerdrake.pm_.c:424
#, fuzzy, c-format
msgid "Network printer \"%s\", port %s"
msgstr "Vőrguprinter (TCP/Socket)"
-#: ../../printerdrake.pm_.c:323
+#: ../../printerdrake.pm_.c:426
#, fuzzy, c-format
msgid "Printer \"%s\" on SMB/Windows server \"%s\""
msgstr "SMB/Windows 95/98/NT"
-#: ../../printerdrake.pm_.c:460
+#: ../../printerdrake.pm_.c:563
msgid ""
"No local printer found! To manually install a printer enter a device name/"
"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
@@ -7466,34 +7773,34 @@ msgid ""
"printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:464
+#: ../../printerdrake.pm_.c:567
#, fuzzy
msgid "You must enter a device or file name!"
msgstr "Printeri seadme URI"
-#: ../../printerdrake.pm_.c:475
+#: ../../printerdrake.pm_.c:578
#, fuzzy
msgid "No printer found!"
msgstr "Kohalik printer"
-#: ../../printerdrake.pm_.c:485
+#: ../../printerdrake.pm_.c:588
#, fuzzy
msgid "Available printers"
msgstr "Kättesaadavad paketid"
-#: ../../printerdrake.pm_.c:489
+#: ../../printerdrake.pm_.c:592
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:490
+#: ../../printerdrake.pm_.c:593
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up or enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:492
+#: ../../printerdrake.pm_.c:595
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
@@ -7501,7 +7808,7 @@ msgid ""
"configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:493
+#: ../../printerdrake.pm_.c:596
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
@@ -7509,38 +7816,38 @@ msgid ""
"customized printer configuration, turn on \"Manual configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:495
+#: ../../printerdrake.pm_.c:598
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:496
+#: ../../printerdrake.pm_.c:599
#, fuzzy
msgid "Please choose the port where your printer is connected to."
msgstr "Millisesse seerialporti on Teie modem ühendatud?"
-#: ../../printerdrake.pm_.c:498
+#: ../../printerdrake.pm_.c:601
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:503
+#: ../../printerdrake.pm_.c:606
#, fuzzy
msgid "You must choose/enter a printer/device!"
msgstr "Printeri seadme URI"
-#: ../../printerdrake.pm_.c:523
+#: ../../printerdrake.pm_.c:626
#, fuzzy
msgid "Manual configuration"
msgstr "Seadistused"
-#: ../../printerdrake.pm_.c:577
+#: ../../printerdrake.pm_.c:680
msgid "Remote lpd Printer Options"
msgstr "Vőrguprinteri sätted"
-#: ../../printerdrake.pm_.c:578
+#: ../../printerdrake.pm_.c:681
#, fuzzy
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
@@ -7550,51 +7857,51 @@ msgstr ""
"printserveri nime ja prindijärjekorra nime, mida soovite\n"
"serveril kasutada."
-#: ../../printerdrake.pm_.c:579
+#: ../../printerdrake.pm_.c:682
#, fuzzy
msgid "Remote host name"
msgstr "Printserveri nimi:"
-#: ../../printerdrake.pm_.c:580
+#: ../../printerdrake.pm_.c:683
#, fuzzy
msgid "Remote printer name"
msgstr "Vőrguprinter"
-#: ../../printerdrake.pm_.c:583
+#: ../../printerdrake.pm_.c:686
#, fuzzy
msgid "Remote host name missing!"
msgstr "Printserveri nimi:"
-#: ../../printerdrake.pm_.c:587
+#: ../../printerdrake.pm_.c:690
#, fuzzy
msgid "Remote printer name missing!"
msgstr "Printserveri nimi:"
-#: ../../printerdrake.pm_.c:609 ../../printerdrake.pm_.c:1119
+#: ../../printerdrake.pm_.c:712 ../../printerdrake.pm_.c:1225
#, fuzzy, c-format
msgid "Detected model: %s %s"
msgstr "tuvastati %s"
-#: ../../printerdrake.pm_.c:683 ../../printerdrake.pm_.c:923
+#: ../../printerdrake.pm_.c:790 ../../printerdrake.pm_.c:1030
#, fuzzy
msgid "Scanning network..."
msgstr "Testime Teie ühendust..."
-#: ../../printerdrake.pm_.c:692 ../../printerdrake.pm_.c:713
+#: ../../printerdrake.pm_.c:799 ../../printerdrake.pm_.c:820
#, c-format
msgid ", printer \"%s\" on server \"%s\""
msgstr ""
-#: ../../printerdrake.pm_.c:695 ../../printerdrake.pm_.c:716
+#: ../../printerdrake.pm_.c:802 ../../printerdrake.pm_.c:823
#, fuzzy, c-format
msgid "Printer \"%s\" on server \"%s\""
msgstr "Seiskame vőrguliidesed"
-#: ../../printerdrake.pm_.c:736
+#: ../../printerdrake.pm_.c:843
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "SMB (Windows 9x/NT) printeri sätted"
-#: ../../printerdrake.pm_.c:737
+#: ../../printerdrake.pm_.c:844
#, fuzzy
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
@@ -7607,46 +7914,46 @@ msgstr ""
"printserveri IP-aadressi, samuti ka serveri poolt jagatava printeri\n"
"nime ning serveri poolt aktsepteeritud kasutajatunnuse, salasőna ja töögrupi"
-#: ../../printerdrake.pm_.c:738
+#: ../../printerdrake.pm_.c:845
msgid ""
" If the desired printer was auto-detected, simply choose it from the list "
"and then add user name, password, and/or workgroup if needed."
msgstr ""
-#: ../../printerdrake.pm_.c:739
+#: ../../printerdrake.pm_.c:846
msgid "SMB server host"
msgstr "SMB serveri nimi"
-#: ../../printerdrake.pm_.c:740
+#: ../../printerdrake.pm_.c:847
msgid "SMB server IP"
msgstr "SMB serveri IP"
-#: ../../printerdrake.pm_.c:741
+#: ../../printerdrake.pm_.c:848
msgid "Share name"
msgstr "Jagatav printer"
-#: ../../printerdrake.pm_.c:744
+#: ../../printerdrake.pm_.c:851
msgid "Workgroup"
msgstr "Töögrupp"
-#: ../../printerdrake.pm_.c:746
+#: ../../printerdrake.pm_.c:853
#, fuzzy
msgid "Auto-detected"
msgstr "Kasuta automaattuvastust"
-#: ../../printerdrake.pm_.c:757
+#: ../../printerdrake.pm_.c:864
msgid "Either the server name or the server's IP must be given!"
msgstr ""
-#: ../../printerdrake.pm_.c:761
+#: ../../printerdrake.pm_.c:868
msgid "Samba share name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:767
+#: ../../printerdrake.pm_.c:874
msgid "SECURITY WARNING!"
msgstr ""
-#: ../../printerdrake.pm_.c:768
+#: ../../printerdrake.pm_.c:875
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -7670,7 +7977,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:778
+#: ../../printerdrake.pm_.c:885
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -7679,7 +7986,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:781
+#: ../../printerdrake.pm_.c:888
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
@@ -7687,11 +7994,11 @@ msgid ""
"Do you really want to continue setting up this printer as you are doing now?"
msgstr ""
-#: ../../printerdrake.pm_.c:853
+#: ../../printerdrake.pm_.c:960
msgid "NetWare Printer Options"
msgstr "NetWare printeri sätted"
-#: ../../printerdrake.pm_.c:854
+#: ../../printerdrake.pm_.c:961
#, fuzzy
msgid ""
"To print on a NetWare printer, you need to provide the NetWare print server "
@@ -7703,44 +8010,44 @@ msgstr ""
"nime (NB! See vőib olla erinev tema TCP/IP nimest!) samuti nagu ka\n"
"prindijärjekorra nime serveril ning kasutajatunnuse ja salasőna"
-#: ../../printerdrake.pm_.c:855
+#: ../../printerdrake.pm_.c:962
msgid "Printer Server"
msgstr "Printserver:"
-#: ../../printerdrake.pm_.c:856
+#: ../../printerdrake.pm_.c:963
msgid "Print Queue Name"
msgstr "Prindijärjekorra nimi:"
-#: ../../printerdrake.pm_.c:861
+#: ../../printerdrake.pm_.c:968
msgid "NCP server name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:865
+#: ../../printerdrake.pm_.c:972
msgid "NCP queue name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:932 ../../printerdrake.pm_.c:952
+#: ../../printerdrake.pm_.c:1039 ../../printerdrake.pm_.c:1059
#, c-format
msgid ", host \"%s\", port %s"
msgstr ""
-#: ../../printerdrake.pm_.c:935 ../../printerdrake.pm_.c:955
+#: ../../printerdrake.pm_.c:1042 ../../printerdrake.pm_.c:1062
#, c-format
msgid "Host \"%s\", port %s"
msgstr ""
-#: ../../printerdrake.pm_.c:975
+#: ../../printerdrake.pm_.c:1082
#, fuzzy
msgid "TCP/Socket Printer Options"
msgstr "Pistikprinteri sätted"
-#: ../../printerdrake.pm_.c:977
+#: ../../printerdrake.pm_.c:1084
msgid ""
"Choose one of the auto-detected printers from the list or enter the hostname "
"or IP and the optional port number (default is 9100) into the input fields."
msgstr ""
-#: ../../printerdrake.pm_.c:978
+#: ../../printerdrake.pm_.c:1085
#, fuzzy
msgid ""
"To print to a TCP or socket printer, you need to provide the host name or IP "
@@ -7751,61 +8058,61 @@ msgstr ""
"Sisestage palun printeri masinanimi ja vőimaluse\n"
"korral pordi number"
-#: ../../printerdrake.pm_.c:983
+#: ../../printerdrake.pm_.c:1090
#, fuzzy
msgid "Printer host name or IP missing!"
msgstr "Printeri nimi"
-#: ../../printerdrake.pm_.c:1005
+#: ../../printerdrake.pm_.c:1112
#, fuzzy
msgid "Printer host name or IP"
msgstr "Printeri nimi"
-#: ../../printerdrake.pm_.c:1054 ../../printerdrake.pm_.c:1056
+#: ../../printerdrake.pm_.c:1160 ../../printerdrake.pm_.c:1162
msgid "Printer Device URI"
msgstr "Printeri seadme URI"
-#: ../../printerdrake.pm_.c:1055
+#: ../../printerdrake.pm_.c:1161
msgid ""
"You can specify directly the URI to access the printer. The URI must fulfill "
"either the CUPS or the Foomatic specifications. Note that not all URI types "
"are supported by all the spoolers."
msgstr ""
-#: ../../printerdrake.pm_.c:1070
+#: ../../printerdrake.pm_.c:1176
msgid "A valid URI must be entered!"
msgstr ""
-#: ../../printerdrake.pm_.c:1402
+#: ../../printerdrake.pm_.c:1515
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
"Location fields do not need to be filled in. They are comments for the users."
msgstr ""
-#: ../../printerdrake.pm_.c:1403
+#: ../../printerdrake.pm_.c:1516
msgid "Name of printer"
msgstr "Printeri nimi"
-#: ../../printerdrake.pm_.c:1405
+#: ../../printerdrake.pm_.c:1518
msgid "Location"
msgstr "Asukoht"
-#: ../../printerdrake.pm_.c:1416 ../../printerdrake.pm_.c:1536
+#: ../../printerdrake.pm_.c:1530 ../../printerdrake.pm_.c:1652
#, fuzzy
msgid "Reading printer database..."
msgstr "Loetakse CUPS juhtprogramme"
-#: ../../printerdrake.pm_.c:1419
+#: ../../printerdrake.pm_.c:1534
#, fuzzy
msgid "Preparing printer database..."
msgstr "Loetakse CUPS juhtprogramme"
-#: ../../printerdrake.pm_.c:1516
+#: ../../printerdrake.pm_.c:1631
#, fuzzy
msgid "Your printer model"
msgstr "Vőrguprinter"
-#: ../../printerdrake.pm_.c:1517
+#: ../../printerdrake.pm_.c:1632
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -7820,28 +8127,28 @@ msgid ""
"%s"
msgstr ""
-#: ../../printerdrake.pm_.c:1522 ../../printerdrake.pm_.c:1525
+#: ../../printerdrake.pm_.c:1637 ../../printerdrake.pm_.c:1640
#, fuzzy
msgid "The model is correct"
msgstr "Kas see on sobiv?"
-#: ../../printerdrake.pm_.c:1523 ../../printerdrake.pm_.c:1524
-#: ../../printerdrake.pm_.c:1527
+#: ../../printerdrake.pm_.c:1638 ../../printerdrake.pm_.c:1639
+#: ../../printerdrake.pm_.c:1642
#, fuzzy
msgid "Select model manually"
msgstr "Vőrguprinter"
-#: ../../printerdrake.pm_.c:1543
+#: ../../printerdrake.pm_.c:1659
#, fuzzy
msgid "Printer model selection"
msgstr "Printeri ühendusviis"
-#: ../../printerdrake.pm_.c:1544
+#: ../../printerdrake.pm_.c:1660
#, fuzzy
msgid "Which printer model do you have?"
msgstr "Mis tüüpi printer see on?"
-#: ../../printerdrake.pm_.c:1545
+#: ../../printerdrake.pm_.c:1661
msgid ""
"\n"
"\n"
@@ -7850,18 +8157,18 @@ msgid ""
"standing on a wrong model or on \"Raw printer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1548
+#: ../../printerdrake.pm_.c:1664
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
msgstr ""
-#: ../../printerdrake.pm_.c:1624
+#: ../../printerdrake.pm_.c:1741
#, fuzzy
msgid "OKI winprinter configuration"
msgstr "Interneti sätted"
-#: ../../printerdrake.pm_.c:1625
+#: ../../printerdrake.pm_.c:1742
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -7871,12 +8178,12 @@ msgid ""
"not work. Your connection type setting will be ignored by the driver."
msgstr ""
-#: ../../printerdrake.pm_.c:1668 ../../printerdrake.pm_.c:1695
+#: ../../printerdrake.pm_.c:1785 ../../printerdrake.pm_.c:1812
#, fuzzy
msgid "Lexmark inkjet configuration"
msgstr "Interneti sätted"
-#: ../../printerdrake.pm_.c:1669
+#: ../../printerdrake.pm_.c:1786
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
"no printers on remote machines or print server boxes. Please connect your "
@@ -7884,20 +8191,46 @@ msgid ""
"to."
msgstr ""
-#: ../../printerdrake.pm_.c:1696
+#: ../../printerdrake.pm_.c:1813
msgid ""
"To be able to print with your Lexmark inkjet and this configuration, you "
"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
-"com/). Go to the US site and click on the \"Drivers\" button. Then choose "
-"your model and afterwards \"Linux\" as operating system. The drivers come as "
-"RPM packages or shell scripts with interactive graphical installation. You "
-"do not need to do this configuration by the graphical frontends. Cancel "
-"directly after the license agreement. Then print printhead alignment pages "
-"with \"lexmarkmaintain\" and adjust the head alignment settings with this "
-"program."
+"com/). Click on the \"Drivers\" link. Then choose your model and afterwards "
+"\"Linux\" as operating system. The drivers come as RPM packages or shell "
+"scripts with interactive graphical installation. You do not need to do this "
+"configuration by the graphical frontends. Cancel directly after the license "
+"agreement. Then print printhead alignment pages with \"lexmarkmaintain\" and "
+"adjust the head alignment settings with this program."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:1816
+msgid "GDI Laser Printer using the Zenographics ZJ-Stream Format"
msgstr ""
-#: ../../printerdrake.pm_.c:1912
+#: ../../printerdrake.pm_.c:1817
+msgid ""
+"Your printer belongs to the group of GDI laser printers (winprinters) sold "
+"by different manufacturers which uses the Zenographics ZJ-stream raster "
+"format for the data sent to the printer. The driver for these printers is "
+"still in a very early development stage and so it will perhaps not always "
+"work properly. Especially it is possible that the printer only works when "
+"you choose the A4 paper size.\n"
+"\n"
+"Some of these printers, as the HP LaserJet 1000, for which this driver was "
+"originally created, need their firmware to be uploaded to them after they "
+"are turned on. In the case of the HP LaserJet 1000 you have to search the "
+"printer's Windows driver CD or your Windows partition for the file "
+"\"sihp1000.img\" and upload the file to the printer with one of the "
+"following commands:\n"
+"\n"
+" lpr -o raw sihp1000.img\n"
+" cat sihp1000.img > /dev/usb/lp0\n"
+"\n"
+"The first command can be given by any normal user, the second must be given "
+"as root. After having done so you can print normally.\n"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:2040
msgid ""
"Printer default settings\n"
"\n"
@@ -7907,34 +8240,34 @@ msgid ""
"printout quality/resolution printing can get substantially slower."
msgstr ""
-#: ../../printerdrake.pm_.c:1921
+#: ../../printerdrake.pm_.c:2049
#, c-format
msgid "Option %s must be an integer number!"
msgstr ""
-#: ../../printerdrake.pm_.c:1925
+#: ../../printerdrake.pm_.c:2053
#, c-format
msgid "Option %s must be a number!"
msgstr ""
-#: ../../printerdrake.pm_.c:1930
+#: ../../printerdrake.pm_.c:2058
#, c-format
msgid "Option %s out of range!"
msgstr ""
-#: ../../printerdrake.pm_.c:1969
+#: ../../printerdrake.pm_.c:2097
#, fuzzy, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
"as the default printer?"
msgstr "Kas soovite seadistusi proovida?"
-#: ../../printerdrake.pm_.c:1986
+#: ../../printerdrake.pm_.c:2120
#, fuzzy
msgid "Test pages"
msgstr "Proovin porte"
-#: ../../printerdrake.pm_.c:1987
+#: ../../printerdrake.pm_.c:2121
msgid ""
"Please select the test pages you want to print.\n"
"Note: the photo test page can take a rather long time to get printed and on "
@@ -7942,45 +8275,45 @@ msgid ""
"it is enough to print the standard test page."
msgstr ""
-#: ../../printerdrake.pm_.c:1991
+#: ../../printerdrake.pm_.c:2125
#, fuzzy
msgid "No test pages"
msgstr "Jah, trüki mőlemad testleheküljed"
-#: ../../printerdrake.pm_.c:1992
+#: ../../printerdrake.pm_.c:2126
#, fuzzy
msgid "Print"
msgstr "Printer"
-#: ../../printerdrake.pm_.c:1994
+#: ../../printerdrake.pm_.c:2183
#, fuzzy
msgid "Standard test page"
msgstr "Standardtööriistad"
-#: ../../printerdrake.pm_.c:1997
+#: ../../printerdrake.pm_.c:2186
msgid "Alternative test page (Letter)"
msgstr ""
-#: ../../printerdrake.pm_.c:2000
+#: ../../printerdrake.pm_.c:2189
#, fuzzy
msgid "Alternative test page (A4)"
msgstr "Trükitakse testlehekülg(i)..."
-#: ../../printerdrake.pm_.c:2002
+#: ../../printerdrake.pm_.c:2191
#, fuzzy
msgid "Photo test page"
msgstr "Trükitakse testlehekülg(i)..."
-#: ../../printerdrake.pm_.c:2006
+#: ../../printerdrake.pm_.c:2195
#, fuzzy
msgid "Do not print any test page"
msgstr "Trükitakse testlehekülg(i)..."
-#: ../../printerdrake.pm_.c:2014 ../../printerdrake.pm_.c:2166
+#: ../../printerdrake.pm_.c:2204 ../../printerdrake.pm_.c:2357
msgid "Printing test page(s)..."
msgstr "Trükitakse testlehekülg(i)..."
-#: ../../printerdrake.pm_.c:2039
+#: ../../printerdrake.pm_.c:2229
#, fuzzy, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -7996,7 +8329,7 @@ msgstr ""
"\n"
"Kas tulemust on juba näha?"
-#: ../../printerdrake.pm_.c:2043
+#: ../../printerdrake.pm_.c:2233
#, fuzzy
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -8009,16 +8342,16 @@ msgstr ""
"\n"
"Kas tulemust on juba näha?"
-#: ../../printerdrake.pm_.c:2050
+#: ../../printerdrake.pm_.c:2240
msgid "Did it work properly?"
msgstr ""
-#: ../../printerdrake.pm_.c:2072 ../../printerdrake.pm_.c:3191
+#: ../../printerdrake.pm_.c:2262 ../../printerdrake.pm_.c:3416
#, fuzzy
msgid "Raw printer"
msgstr "Printerit ei ole"
-#: ../../printerdrake.pm_.c:2098
+#: ../../printerdrake.pm_.c:2288
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -8027,15 +8360,15 @@ msgid ""
"to modify the option settings easily.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2100
+#: ../../printerdrake.pm_.c:2290
msgid ""
"These commands you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications, but here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2103 ../../printerdrake.pm_.c:2120
-#: ../../printerdrake.pm_.c:2130
+#: ../../printerdrake.pm_.c:2293 ../../printerdrake.pm_.c:2310
+#: ../../printerdrake.pm_.c:2320
#, c-format
msgid ""
"\n"
@@ -8044,7 +8377,7 @@ msgid ""
"line, e. g. \"%s <file>\". "
msgstr ""
-#: ../../printerdrake.pm_.c:2106 ../../printerdrake.pm_.c:2146
+#: ../../printerdrake.pm_.c:2296 ../../printerdrake.pm_.c:2336
#, c-format
msgid ""
"To know about the options available for the current printer read either the "
@@ -8052,41 +8385,41 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2110
+#: ../../printerdrake.pm_.c:2300
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2115 ../../printerdrake.pm_.c:2125
+#: ../../printerdrake.pm_.c:2305 ../../printerdrake.pm_.c:2315
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2117 ../../printerdrake.pm_.c:2127
-#: ../../printerdrake.pm_.c:2137
+#: ../../printerdrake.pm_.c:2307 ../../printerdrake.pm_.c:2317
+#: ../../printerdrake.pm_.c:2327
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2122 ../../printerdrake.pm_.c:2132
+#: ../../printerdrake.pm_.c:2312 ../../printerdrake.pm_.c:2322
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
msgstr ""
-#: ../../printerdrake.pm_.c:2135
+#: ../../printerdrake.pm_.c:2325
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\" or \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2139
+#: ../../printerdrake.pm_.c:2329
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -8096,7 +8429,7 @@ msgid ""
"jams.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2143
+#: ../../printerdrake.pm_.c:2333
#, c-format
msgid ""
"\n"
@@ -8105,42 +8438,42 @@ msgid ""
"line, e. g. \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2153
+#: ../../printerdrake.pm_.c:2343
#, fuzzy, c-format
msgid "Printing/Scanning/Photo Cards on \"%s\""
msgstr "Seiskame vőrguliidesed"
-#: ../../printerdrake.pm_.c:2154
+#: ../../printerdrake.pm_.c:2344
#, fuzzy, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "Seiskame vőrguliidesed"
-#: ../../printerdrake.pm_.c:2156
+#: ../../printerdrake.pm_.c:2346
#, fuzzy, c-format
msgid "Printing/Photo Card Access on \"%s\""
msgstr "Seiskame vőrguliidesed"
-#: ../../printerdrake.pm_.c:2157
+#: ../../printerdrake.pm_.c:2347
#, fuzzy, c-format
msgid "Printing on the printer \"%s\""
msgstr "Seiskame vőrguliidesed"
-#: ../../printerdrake.pm_.c:2160 ../../printerdrake.pm_.c:2163
-#: ../../printerdrake.pm_.c:2164 ../../printerdrake.pm_.c:2165
-#: ../../printerdrake.pm_.c:3175 ../../standalone/drakTermServ_.c:248
-#: ../../standalone/drakbackup_.c:1485 ../../standalone/drakbackup_.c:3530
-#: ../../standalone/drakbug_.c:129 ../../standalone/drakfont_.c:705
+#: ../../printerdrake.pm_.c:2350 ../../printerdrake.pm_.c:2353
+#: ../../printerdrake.pm_.c:2354 ../../printerdrake.pm_.c:2355
+#: ../../printerdrake.pm_.c:3400 ../../standalone/drakTermServ_.c:248
+#: ../../standalone/drakbackup_.c:1560 ../../standalone/drakbackup_.c:4208
+#: ../../standalone/drakbug_.c:130 ../../standalone/drakfont_.c:705
#: ../../standalone/drakfont_.c:1014
#, fuzzy
msgid "Close"
msgstr "Hiir"
-#: ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2353
#, fuzzy
msgid "Print option list"
msgstr "Otse ühendatud printeri sätted"
-#: ../../printerdrake.pm_.c:2182
+#: ../../printerdrake.pm_.c:2373
#, c-format
msgid ""
"Your multi-function device was configured automatically to be able to scan. "
@@ -8154,7 +8487,7 @@ msgid ""
"Do not use \"scannerdrake\" for this device!"
msgstr ""
-#: ../../printerdrake.pm_.c:2202
+#: ../../printerdrake.pm_.c:2394
msgid ""
"Your printer was configured automatically to give you access to the photo "
"card drives from your PC. Now you can access your photo cards using the "
@@ -8167,19 +8500,19 @@ msgid ""
"of the file lists."
msgstr ""
-#: ../../printerdrake.pm_.c:2223 ../../printerdrake.pm_.c:2673
-#: ../../printerdrake.pm_.c:2945
+#: ../../printerdrake.pm_.c:2416 ../../printerdrake.pm_.c:2875
+#: ../../printerdrake.pm_.c:3170
#, fuzzy
msgid "Reading printer data..."
msgstr "Loetakse CUPS juhtprogramme"
-#: ../../printerdrake.pm_.c:2243 ../../printerdrake.pm_.c:2271
-#: ../../printerdrake.pm_.c:2306
+#: ../../printerdrake.pm_.c:2436 ../../printerdrake.pm_.c:2464
+#: ../../printerdrake.pm_.c:2499
#, fuzzy
msgid "Transfer printer configuration"
msgstr "Interneti sätted"
-#: ../../printerdrake.pm_.c:2244
+#: ../../printerdrake.pm_.c:2437
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -8189,51 +8522,51 @@ msgid ""
"Not all queues can be transferred due to the following reasons:\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2247
+#: ../../printerdrake.pm_.c:2440
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2249
+#: ../../printerdrake.pm_.c:2442
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2251
+#: ../../printerdrake.pm_.c:2444
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2253
+#: ../../printerdrake.pm_.c:2446
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:2254
+#: ../../printerdrake.pm_.c:2447
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
"or with native CUPS drivers cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:2255
+#: ../../printerdrake.pm_.c:2448
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
"\"Transfer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:2258
+#: ../../printerdrake.pm_.c:2451
msgid "Do not transfer printers"
msgstr ""
-#: ../../printerdrake.pm_.c:2259 ../../printerdrake.pm_.c:2276
+#: ../../printerdrake.pm_.c:2452 ../../printerdrake.pm_.c:2469
msgid "Transfer"
msgstr ""
-#: ../../printerdrake.pm_.c:2272
+#: ../../printerdrake.pm_.c:2465
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -8241,62 +8574,62 @@ msgid ""
"You can also type a new name or skip this printer."
msgstr ""
-#: ../../printerdrake.pm_.c:2280
+#: ../../printerdrake.pm_.c:2473
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr "Printeri nimi tohib sisaldada vaid tähti, numbreid ja alakriipsu"
-#: ../../printerdrake.pm_.c:2285
+#: ../../printerdrake.pm_.c:2478
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
"do you really want to overwrite its configuration?"
msgstr ""
-#: ../../printerdrake.pm_.c:2293
+#: ../../printerdrake.pm_.c:2486
#, fuzzy
msgid "New printer name"
msgstr "Printerit ei ole"
-#: ../../printerdrake.pm_.c:2296
+#: ../../printerdrake.pm_.c:2489
#, c-format
msgid "Transferring %s..."
msgstr ""
-#: ../../printerdrake.pm_.c:2307
+#: ../../printerdrake.pm_.c:2500
#, c-format
msgid ""
"You have transferred your former default printer (\"%s\"), Should it be also "
"the default printer under the new printing system %s?"
msgstr ""
-#: ../../printerdrake.pm_.c:2316
+#: ../../printerdrake.pm_.c:2510
#, fuzzy
msgid "Refreshing printer data..."
msgstr "Loetakse CUPS juhtprogramme"
-#: ../../printerdrake.pm_.c:2324 ../../printerdrake.pm_.c:2395
-#: ../../printerdrake.pm_.c:2407
+#: ../../printerdrake.pm_.c:2518 ../../printerdrake.pm_.c:2590
+#: ../../printerdrake.pm_.c:2602
#, fuzzy
msgid "Configuration of a remote printer"
msgstr "Sea printer"
-#: ../../printerdrake.pm_.c:2325
+#: ../../printerdrake.pm_.c:2519
#, fuzzy
msgid "Starting network..."
msgstr "Testime Teie ühendust..."
-#: ../../printerdrake.pm_.c:2359 ../../printerdrake.pm_.c:2363
-#: ../../printerdrake.pm_.c:2365
+#: ../../printerdrake.pm_.c:2554 ../../printerdrake.pm_.c:2558
+#: ../../printerdrake.pm_.c:2560
#, fuzzy
msgid "Configure the network now"
msgstr "Vőrgusätted"
-#: ../../printerdrake.pm_.c:2360
+#: ../../printerdrake.pm_.c:2555
#, fuzzy
msgid "Network functionality not configured"
msgstr "Monitor ei ole seadistatud"
-#: ../../printerdrake.pm_.c:2361
+#: ../../printerdrake.pm_.c:2556
msgid ""
"You are going to configure a remote printer. This needs working network "
"access, but your network is not configured yet. If you go on without network "
@@ -8304,12 +8637,12 @@ msgid ""
"configuring now. How do you want to proceed?"
msgstr ""
-#: ../../printerdrake.pm_.c:2364
+#: ../../printerdrake.pm_.c:2559
#, fuzzy
msgid "Go on without configuring the network"
msgstr "Vőrguseadistused"
-#: ../../printerdrake.pm_.c:2397
+#: ../../printerdrake.pm_.c:2592
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -8319,34 +8652,34 @@ msgid ""
"\"Printer\""
msgstr ""
-#: ../../printerdrake.pm_.c:2398
+#: ../../printerdrake.pm_.c:2593
msgid ""
"The network access was not running and could not be started. Please check "
"your configuration and your hardware. Then try to configure your remote "
"printer again."
msgstr ""
-#: ../../printerdrake.pm_.c:2408
+#: ../../printerdrake.pm_.c:2603
#, fuzzy
msgid "Restarting printing system..."
msgstr "Millist printimissüsteemi soovite kasutada?"
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2641
#, fuzzy
msgid "high"
msgstr "Kőrge"
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2641
#, fuzzy
msgid "paranoid"
msgstr "Paranoiline"
-#: ../../printerdrake.pm_.c:2447
+#: ../../printerdrake.pm_.c:2642
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr ""
-#: ../../printerdrake.pm_.c:2448
+#: ../../printerdrake.pm_.c:2643
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -8361,12 +8694,12 @@ msgid ""
"Do you really want to configure printing on this machine?"
msgstr ""
-#: ../../printerdrake.pm_.c:2480
+#: ../../printerdrake.pm_.c:2675
#, fuzzy
msgid "Starting the printing system at boot time"
msgstr "Millist printimissüsteemi soovite kasutada?"
-#: ../../printerdrake.pm_.c:2481
+#: ../../printerdrake.pm_.c:2676
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -8380,80 +8713,76 @@ msgid ""
"again?"
msgstr ""
-#: ../../printerdrake.pm_.c:2504 ../../printerdrake.pm_.c:2544
-#: ../../printerdrake.pm_.c:2581 ../../printerdrake.pm_.c:2621
-#: ../../printerdrake.pm_.c:2733
+#: ../../printerdrake.pm_.c:2700 ../../printerdrake.pm_.c:2741
+#: ../../printerdrake.pm_.c:2780 ../../printerdrake.pm_.c:2822
+#: ../../printerdrake.pm_.c:2943
msgid "Checking installed software..."
msgstr ""
-#: ../../printerdrake.pm_.c:2548
+#: ../../printerdrake.pm_.c:2746
msgid "Removing LPRng..."
msgstr ""
-#: ../../printerdrake.pm_.c:2585
+#: ../../printerdrake.pm_.c:2785
msgid "Removing LPD..."
msgstr ""
-#: ../../printerdrake.pm_.c:2657
+#: ../../printerdrake.pm_.c:2858
#, fuzzy
msgid "Select Printer Spooler"
msgstr "Vali printeri ühendusviis"
-#: ../../printerdrake.pm_.c:2658
+#: ../../printerdrake.pm_.c:2859
#, fuzzy
msgid "Which printing system (spooler) do you want to use?"
msgstr "Millist printimissüsteemi soovite kasutada?"
-#: ../../printerdrake.pm_.c:2691
+#: ../../printerdrake.pm_.c:2895
#, fuzzy, c-format
msgid "Configuring printer \"%s\"..."
msgstr "Printeri sätted"
-#: ../../printerdrake.pm_.c:2704
+#: ../../printerdrake.pm_.c:2909
#, fuzzy
msgid "Installing Foomatic..."
msgstr "Paketi %s installimine"
-#: ../../printerdrake.pm_.c:2769 ../../printerdrake.pm_.c:2808
-#: ../../printerdrake.pm_.c:3192 ../../printerdrake.pm_.c:3262
+#: ../../printerdrake.pm_.c:2979 ../../printerdrake.pm_.c:3020
+#: ../../printerdrake.pm_.c:3417 ../../printerdrake.pm_.c:3490
msgid "Printer options"
msgstr "Otse ühendatud printeri sätted"
-#: ../../printerdrake.pm_.c:2778
+#: ../../printerdrake.pm_.c:2989
#, fuzzy
-msgid "Preparing PrinterDrake..."
+msgid "Preparing Printerdrake..."
msgstr "Loetakse CUPS juhtprogramme"
-#: ../../printerdrake.pm_.c:2795 ../../printerdrake.pm_.c:3349
+#: ../../printerdrake.pm_.c:3007 ../../printerdrake.pm_.c:3580
#, fuzzy
msgid "Configuring applications..."
msgstr "Printeri sätted"
-#: ../../printerdrake.pm_.c:2815
+#: ../../printerdrake.pm_.c:3027
#, fuzzy
msgid "Would you like to configure printing?"
msgstr "Kas soovite printerit seadistada?"
-#: ../../printerdrake.pm_.c:2827
+#: ../../printerdrake.pm_.c:3039
msgid "Printing system: "
msgstr ""
-#: ../../printerdrake.pm_.c:2875
-msgid "Printerdrake"
-msgstr "PrinterDrake"
-
-#: ../../printerdrake.pm_.c:2879
+#: ../../printerdrake.pm_.c:3099
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; to view information about it; "
"or to make a printer on a remote CUPS server available for Star Office/"
-"OpenOffice.org."
+"OpenOffice.org/GIMP."
msgstr ""
"Kirjeldatud on järgnevad prindijärjekorrad.\n"
"Te vőite neid lisada ning olemasolevaid muuta."
-#: ../../printerdrake.pm_.c:2880
+#: ../../printerdrake.pm_.c:3100
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
@@ -8463,137 +8792,139 @@ msgstr ""
"Kirjeldatud on järgnevad prindijärjekorrad.\n"
"Te vőite neid lisada ning olemasolevaid muuta."
-#: ../../printerdrake.pm_.c:2906
+#: ../../printerdrake.pm_.c:3127
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr ""
-#: ../../printerdrake.pm_.c:2924
+#: ../../printerdrake.pm_.c:3145
#, fuzzy
msgid "Change the printing system"
msgstr "Vőrgusätted"
-#: ../../printerdrake.pm_.c:2929 ../../standalone/drakconnect_.c:277
+#: ../../printerdrake.pm_.c:3150 ../../standalone/drakconnect_.c:277
msgid "Normal Mode"
msgstr "Tavakasutus"
-#: ../../printerdrake.pm_.c:3085 ../../printerdrake.pm_.c:3135
-#: ../../printerdrake.pm_.c:3343
+#: ../../printerdrake.pm_.c:3310 ../../printerdrake.pm_.c:3360
+#: ../../printerdrake.pm_.c:3573
#, fuzzy
msgid "Do you want to configure another printer?"
msgstr "Kas soovite seadistusi proovida?"
-#: ../../printerdrake.pm_.c:3170
+#: ../../printerdrake.pm_.c:3395
#, fuzzy
msgid "Modify printer configuration"
msgstr "Interneti sätted"
-#: ../../printerdrake.pm_.c:3172
+#: ../../printerdrake.pm_.c:3397
#, fuzzy, c-format
msgid ""
"Printer %s\n"
"What do you want to modify on this printer?"
msgstr "Kas soovite seadistusi proovida?"
-#: ../../printerdrake.pm_.c:3176
+#: ../../printerdrake.pm_.c:3401
msgid "Do it!"
msgstr ""
-#: ../../printerdrake.pm_.c:3181 ../../printerdrake.pm_.c:3236
+#: ../../printerdrake.pm_.c:3406 ../../printerdrake.pm_.c:3461
#, fuzzy
msgid "Printer connection type"
msgstr "Internetiühenduse jagamine"
-#: ../../printerdrake.pm_.c:3182 ../../printerdrake.pm_.c:3240
+#: ../../printerdrake.pm_.c:3407 ../../printerdrake.pm_.c:3465
#, fuzzy
msgid "Printer name, description, location"
msgstr "Printeri ühendusviis"
-#: ../../printerdrake.pm_.c:3184 ../../printerdrake.pm_.c:3255
+#: ../../printerdrake.pm_.c:3409 ../../printerdrake.pm_.c:3483
msgid "Printer manufacturer, model, driver"
msgstr ""
-#: ../../printerdrake.pm_.c:3185 ../../printerdrake.pm_.c:3256
+#: ../../printerdrake.pm_.c:3410 ../../printerdrake.pm_.c:3484
msgid "Printer manufacturer, model"
msgstr ""
-#: ../../printerdrake.pm_.c:3194 ../../printerdrake.pm_.c:3266
+#: ../../printerdrake.pm_.c:3419 ../../printerdrake.pm_.c:3494
msgid "Set this printer as the default"
msgstr ""
-#: ../../printerdrake.pm_.c:3196 ../../printerdrake.pm_.c:3271
-msgid "Add this printer to Star Office/OpenOffice.org"
+#: ../../printerdrake.pm_.c:3421 ../../printerdrake.pm_.c:3499
+msgid "Add this printer to Star Office/OpenOffice.org/GIMP"
msgstr ""
-#: ../../printerdrake.pm_.c:3197 ../../printerdrake.pm_.c:3280
-msgid "Remove this printer from Star Office/OpenOffice.org"
+#: ../../printerdrake.pm_.c:3422 ../../printerdrake.pm_.c:3508
+msgid "Remove this printer from Star Office/OpenOffice.org/GIMP"
msgstr ""
-#: ../../printerdrake.pm_.c:3198 ../../printerdrake.pm_.c:3289
+#: ../../printerdrake.pm_.c:3423 ../../printerdrake.pm_.c:3517
#, fuzzy
msgid "Print test pages"
msgstr "Trükitakse testlehekülg(i)..."
-#: ../../printerdrake.pm_.c:3199 ../../printerdrake.pm_.c:3291
+#: ../../printerdrake.pm_.c:3424 ../../printerdrake.pm_.c:3519
#, fuzzy
msgid "Know how to use this printer"
msgstr "Kas soovite seadistusi proovida?"
-#: ../../printerdrake.pm_.c:3201 ../../printerdrake.pm_.c:3293
+#: ../../printerdrake.pm_.c:3426 ../../printerdrake.pm_.c:3521
#, fuzzy
msgid "Remove printer"
msgstr "Vőrguprinter"
-#: ../../printerdrake.pm_.c:3245
+#: ../../printerdrake.pm_.c:3472
#, fuzzy, c-format
msgid "Removing old printer \"%s\"..."
msgstr "Loetakse CUPS juhtprogramme"
-#: ../../printerdrake.pm_.c:3269
+#: ../../printerdrake.pm_.c:3497
#, fuzzy
msgid "Default printer"
msgstr "Kohalik printer"
-#: ../../printerdrake.pm_.c:3270
+#: ../../printerdrake.pm_.c:3498
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr ""
-#: ../../printerdrake.pm_.c:3274 ../../printerdrake.pm_.c:3277
-msgid "Adding printer to Star Office/OpenOffice.org"
+#: ../../printerdrake.pm_.c:3502 ../../printerdrake.pm_.c:3505
+msgid "Adding printer to Star Office/OpenOffice.org/GIMP"
msgstr ""
-#: ../../printerdrake.pm_.c:3275
+#: ../../printerdrake.pm_.c:3503
#, c-format
msgid ""
-"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
+"The printer \"%s\" was successfully added to Star Office/OpenOffice.org/GIMP."
msgstr ""
-#: ../../printerdrake.pm_.c:3278
+#: ../../printerdrake.pm_.c:3506
#, c-format
-msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
+msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org/GIMP."
msgstr ""
-#: ../../printerdrake.pm_.c:3283 ../../printerdrake.pm_.c:3286
-msgid "Removing printer from Star Office/OpenOffice.org"
+#: ../../printerdrake.pm_.c:3511 ../../printerdrake.pm_.c:3514
+msgid "Removing printer from Star Office/OpenOffice.org/GIMP"
msgstr ""
-#: ../../printerdrake.pm_.c:3284
+#: ../../printerdrake.pm_.c:3512
#, c-format
msgid ""
-"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
+"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org/"
+"GIMP."
msgstr ""
-#: ../../printerdrake.pm_.c:3287
+#: ../../printerdrake.pm_.c:3515
#, c-format
-msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
+msgid ""
+"Failed to remove the printer \"%s\" from Star Office/OpenOffice.org/GIMP."
msgstr ""
-#: ../../printerdrake.pm_.c:3295
+#: ../../printerdrake.pm_.c:3523
#, fuzzy, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr "Kas soovite vőrguühendust taaskäivitada?"
-#: ../../printerdrake.pm_.c:3297
+#: ../../printerdrake.pm_.c:3527
#, fuzzy, c-format
msgid "Removing printer \"%s\"..."
msgstr "Loetakse CUPS juhtprogramme"
@@ -8975,7 +9306,7 @@ msgstr "Internet"
msgid "File sharing"
msgstr ""
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1669
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1744
#, fuzzy
msgid "System"
msgstr "Töömood"
@@ -9034,193 +9365,229 @@ msgstr "Olek:"
msgid "Stop"
msgstr "Sektor"
-#: ../../share/advertising/00-thanks.pl_.c:9
-msgid "Thank you for choosing Mandrake Linux 8.2"
+#: ../../share/advertising/01-thanks.pl_.c:9
+msgid "Thank you for choosing Mandrake Linux 9.0"
msgstr ""
-#: ../../share/advertising/00-thanks.pl_.c:10
+#: ../../share/advertising/01-thanks.pl_.c:10
msgid "Welcome to the Open Source world"
msgstr ""
-#: ../../share/advertising/00-thanks.pl_.c:11
+#: ../../share/advertising/01-thanks.pl_.c:11
msgid ""
"The success of MandrakeSoft is based upon the principle of Free Software. "
"Your new operating system is the result of collaborative work on the part of "
"the worldwide Linux Community"
msgstr ""
-#: ../../share/advertising/01-gnu.pl_.c:9
+#: ../../share/advertising/02-community.pl_.c:9
#, fuzzy
-msgid "Join the Free Software world"
+msgid "Get involved in the Free Software world"
msgstr "Ülejäänud maailm"
-#: ../../share/advertising/01-gnu.pl_.c:10
+#: ../../share/advertising/02-community.pl_.c:10
+msgid "Want to know more about the Open Source community?"
+msgstr ""
+
+#: ../../share/advertising/02-community.pl_.c:11
msgid ""
-"Get to know the Open Source community and become a member. Learn, teach, and "
-"help others by joining the many discussion forums that you will find in our "
-"\"Community\" webpages"
+"To share your own knowledge and help build Linux tools, join the discussions "
+"forum you'll find on our \"Community\" webpages"
msgstr ""
-#: ../../share/advertising/02-internet.pl_.c:9
+#: ../../share/advertising/03-internet.pl_.c:9
#, fuzzy
-msgid "Internet and Messaging"
-msgstr "Internetiühendus"
+msgid "Get the most from the Internet"
+msgstr "Loo internetiühendus"
-#: ../../share/advertising/02-internet.pl_.c:10
+#: ../../share/advertising/03-internet.pl_.c:10
msgid ""
-"Mandrake Linux 8.2 provides the best software to access everything the "
-"Internet has to offer: Surf the web & view animations with Mozilla and "
-"Konqueror, exchange email & organize your personal information with "
-"Evolution and Kmail, and much more"
+"Mandrake Linux 9.0 has selected the best software for you. Surf the Web and "
+"view animations with Mozilla and Konqueror, or read your mail and handle "
+"your personal information with Evolution and Kmail"
msgstr ""
-#: ../../share/advertising/03-graphic.pl_.c:9
-#, fuzzy
-msgid "Multimedia and Graphics"
-msgstr "Multimeedia - Graafika"
+#: ../../share/advertising/04-multimedia.pl_.c:9
+msgid "Discover the most up-to-date graphics and multimedia tools!"
+msgstr ""
+
+#: ../../share/advertising/04-multimedia.pl_.c:10
+msgid "Push multimedia to its limits!"
+msgstr ""
-#: ../../share/advertising/03-graphic.pl_.c:10
+#: ../../share/advertising/04-multimedia.pl_.c:11
msgid ""
-"Mandrake Linux 8.2 lets you push your multimedia computer to its limits! Use "
-"the latest software to play music and audio files, edit and organize your "
-"images and photos, watch TV and videos, and much more"
+"Mandrake Linux 9.0 enables you to use the very latest software to play audio "
+"files, edit and handle your images or photos, and play videos"
msgstr ""
-#: ../../share/advertising/04-develop.pl_.c:9
-msgid "Development"
-msgstr "Arendus"
+#: ../../share/advertising/05-games.pl_.c:9
+msgid "Games"
+msgstr "Mängud"
-#: ../../share/advertising/04-develop.pl_.c:10
+#: ../../share/advertising/05-games.pl_.c:10
msgid ""
-"Mandrake Linux 8.2 is the ultimate development platform. Discover the power "
-"of the GNU gcc compiler as well as the best Open Source development "
-"environments"
+"Mandrake Linux 9.0 provides the best Open Source games - arcade, action, "
+"cards, sports, strategy..."
msgstr ""
-#: ../../share/advertising/05-contcenter.pl_.c:9
-#: ../../standalone/drakbug_.c:69
+#: ../../share/advertising/06-mcc.pl_.c:9 ../../standalone/drakbug_.c:69
#, fuzzy
msgid "Mandrake Control Center"
msgstr "Juhtimiskeskus"
-#: ../../share/advertising/05-contcenter.pl_.c:10
+#: ../../share/advertising/06-mcc.pl_.c:10
msgid ""
-"The Mandrake Linux 8.2 Control Center is a one-stop location for fully "
-"customizing and configuring your Mandrake system"
+"Mandrake Linux 9.0 provides a powerful tool to fully customize and configure "
+"your machine"
msgstr ""
-#: ../../share/advertising/06-user.pl_.c:9
+#: ../../share/advertising/07-desktop.pl_.c:9
#, fuzzy
msgid "User interfaces"
msgstr "Vőrguliides"
-#: ../../share/advertising/06-user.pl_.c:10
+#: ../../share/advertising/07-desktop.pl_.c:10
msgid ""
-"Mandrake Linux 8.2 provides 11 different graphical desktop environments and "
-"window managers to choose from including GNOME 1.4, KDE 2.2.2, Window Maker "
-"0.8, and the rest"
+"Mandrake Linux 9.0 provides 11 user interfaces which can be fully modified: "
+"KDE 3, Gnome 2, WindowMaker..."
msgstr ""
-#: ../../share/advertising/07-server.pl_.c:9
+#: ../../share/advertising/08-development.pl_.c:9
#, fuzzy
-msgid "Server Software"
-msgstr "SMB serveri nimi"
+msgid "Development simplified"
+msgstr "Arendus"
+
+#: ../../share/advertising/08-development.pl_.c:10
+msgid "Mandrake Linux 9.0 is the ultimate development platform"
+msgstr ""
-#: ../../share/advertising/07-server.pl_.c:10
+#: ../../share/advertising/08-development.pl_.c:11
msgid ""
-"Transform your machine into a powerful server with just a few clicks of the "
-"mouse: Web server, email, firewall, router, file and print server, ..."
+"Use the full power of the GNU gcc 3 compiler as well as the best Open Source "
+"development environments"
msgstr ""
-#: ../../share/advertising/08-games.pl_.c:9
-msgid "Games"
-msgstr "Mängud"
+#: ../../share/advertising/09-server.pl_.c:9
+msgid "Turn your machine into a reliable server"
+msgstr ""
-#: ../../share/advertising/08-games.pl_.c:10
+#: ../../share/advertising/09-server.pl_.c:10
msgid ""
-"Mandrake Linux 8.2 provides the best Open Source games - arcade, action, "
-"cards, sports, strategy, ..."
+"Transform your machine into a powerful server in a few clicks of your mouse: "
+"Web server, mail, firewall, router, file and print server..."
msgstr ""
-#: ../../share/advertising/09-MDKcampus.pl_.c:9
-msgid "MandrakeCampus"
+#: ../../share/advertising/10-mnf.pl_.c:9
+msgid "Optimize your security"
msgstr ""
-#: ../../share/advertising/09-MDKcampus.pl_.c:10
+#: ../../share/advertising/10-mnf.pl_.c:10
msgid ""
-"Would you like to learn Linux simply, quickly, and for free? MandrakeSoft "
-"provides free Linux training, as well as a way to test your progress, at "
-"MandrakeCampus -- our online training center"
+"The MandrakeSecurity range includes the Multi Network Firewall product (M.N."
+"F.)"
msgstr ""
-#: ../../share/advertising/10-MDKexpert.pl_.c:9
-#, fuzzy
-msgid "MandrakeExpert"
-msgstr "ekspert"
+#: ../../share/advertising/10-mnf.pl_.c:11
+msgid ""
+"This firewall product includes network features which allow you to fulfill "
+"all your security needs"
+msgstr ""
+
+#: ../../share/advertising/10-mnf.pl_.c:12
+msgid "This product is available on MandrakeStore website"
+msgstr ""
+
+#: ../../share/advertising/11-mdkstore.pl_.c:9
+msgid "The official MandrakeSoft store"
+msgstr ""
-#: ../../share/advertising/10-MDKexpert.pl_.c:10
+#: ../../share/advertising/11-mdkstore.pl_.c:10
msgid ""
-"Quality support from the Linux Community, and from MandrakeSoft, is just "
-"around the corner. And if you're already a Linux veteran, become an \"Expert"
-"\" and share your knowledge at our support website"
+"Our full range of Linux solutions, as well as special offers on products and "
+"'goodies', are available online at our e-store"
msgstr ""
-#: ../../share/advertising/11-consul.pl_.c:9
-msgid "MandrakeConsulting"
+#: ../../share/advertising/12-mdkstore.pl_.c:9
+msgid "Strategic partners"
msgstr ""
-#: ../../share/advertising/11-consul.pl_.c:10
+#: ../../share/advertising/12-mdkstore.pl_.c:10
msgid ""
-"For all of your IT projects, our consultants are ready to analyze your "
-"requirements and offer a customized solution. Benefit from MandrakeSoft's "
-"vast experience as a Linux producer to provide a true IT alternative for "
-"your business organization"
+"MandrakeSoft works alongside a selection of companies offering professional "
+"solutions compatible with Mandrake Linux; a list of these partners is "
+"available on the MandrakeStore"
msgstr ""
-#: ../../share/advertising/12-MDKstore.pl_.c:9
+#: ../../share/advertising/13-mdkcampus.pl_.c:9
+msgid "Discover MandrakeSoft's training catalogue Linux-Campus"
+msgstr ""
+
+#: ../../share/advertising/13-mdkcampus.pl_.c:10
+msgid ""
+"The training program has been create to respond to the needs of both users "
+"and experts (Network and System administrations)"
+msgstr ""
+
+#: ../../share/advertising/13-mdkcampus.pl_.c:11
+msgid "Certify yourself on Linux"
+msgstr ""
+
+#: ../../share/advertising/13-mdkcampus.pl_.c:12
+msgid ""
+"Whether you choose to teach yourself online or via our network of training "
+"partners, the Linux-Campus catalogue prepares you for the acknowledged LPI "
+"certification program (worldwide professional technical certification)"
+msgstr ""
+
+#: ../../share/advertising/14-mdkexpert.pl_.c:9
#, fuzzy
-msgid "MandrakeStore"
-msgstr "kohustuslik"
+msgid "Become a MandrakeExpert"
+msgstr "ekspert"
-#: ../../share/advertising/12-MDKstore.pl_.c:10
+#: ../../share/advertising/14-mdkexpert.pl_.c:10
msgid ""
-"A full range of Linux solutions, as well as special offers on products and "
-"'goodies', are available online at our e-store"
+"Find the solutions to your problems via MandrakeSoft's online support "
+"platform"
msgstr ""
-#: ../../share/advertising/13-Nvert.pl_.c:9
+#: ../../share/advertising/14-mdkexpert.pl_.c:11
msgid ""
-"For more information on MandrakeSoft's Professional Services and commercial "
-"offerings, please see the following web page:"
+"Join the MandrakeSoft support teams and the Linux Community online to share "
+"your knowledge and help others by becoming a recognized Expert on the online "
+"technical support website:"
msgstr ""
-#: ../../share/advertising/13-Nvert.pl_.c:11
-msgid "http://www.mandrakesoft.com/sales/contact"
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:9
+#, fuzzy
+msgid "MandrakeExpert Corporate"
+msgstr "ekspert"
+
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:10
+msgid "An online platform to respond to company's specific support needs"
msgstr ""
-#: ../../standalone.pm_.c:40
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:11
+msgid ""
+"All incidents will be followed up by a single qualified MandrakeSoft "
+"technical expert."
+msgstr ""
+
+#: ../../standalone.pm_.c:41
#, fuzzy
msgid "Installing packages..."
msgstr "Paketi %s installimine"
-#: ../../standalone/XFdrake_.c:143
+#: ../../standalone/XFdrake_.c:145
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "Palun väljuge ja vajutage siis Ctrl-Alt-BackSpace"
# c-format
-#: ../../standalone/XFdrake_.c:147
+#: ../../standalone/XFdrake_.c:149
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "Muudatuste aktiveerimiseks käivitage %s uuesti"
-#: ../../standalone/diskdrake_.c:81
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I'll try to go on blanking bad partitions"
-msgstr ""
-"Partitsioonitabel on loetamatu, liiga rikutud DrakX-i jaoks :(\n"
-"Proovin loetamatud kirjed puhastada"
-
#: ../../standalone/drakTermServ_.c:188
#, fuzzy
msgid "Mandrake Terminal Server Configuration"
@@ -9265,12 +9632,13 @@ msgstr "Lisa kasutaja"
msgid "Add/Del Clients"
msgstr "DHCP klient"
-#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3282
-#: ../../standalone/drakbackup_.c:3315 ../../standalone/drakbackup_.c:3341
-#: ../../standalone/drakbackup_.c:3368 ../../standalone/drakbackup_.c:3395
-#: ../../standalone/drakbackup_.c:3434 ../../standalone/drakbackup_.c:3455
-#: ../../standalone/drakbackup_.c:3482 ../../standalone/drakbackup_.c:3508
-#: ../../standalone/drakbackup_.c:3533 ../../standalone/drakfont_.c:700
+#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3930
+#: ../../standalone/drakbackup_.c:3963 ../../standalone/drakbackup_.c:3989
+#: ../../standalone/drakbackup_.c:4016 ../../standalone/drakbackup_.c:4043
+#: ../../standalone/drakbackup_.c:4082 ../../standalone/drakbackup_.c:4103
+#: ../../standalone/drakbackup_.c:4130 ../../standalone/drakbackup_.c:4160
+#: ../../standalone/drakbackup_.c:4186 ../../standalone/drakbackup_.c:4211
+#: ../../standalone/drakfont_.c:700
#, fuzzy
msgid "Help"
msgstr "/_Abi"
@@ -9431,8 +9799,8 @@ msgid ""
"The parameters of the auto-install are available in the sections on the left"
msgstr ""
-#: ../../standalone/drakautoinst_.c:239 ../../standalone/drakgw_.c:548
-#: ../../standalone/scannerdrake_.c:105
+#: ../../standalone/drakautoinst_.c:239 ../../standalone/drakgw_.c:484
+#: ../../standalone/scannerdrake_.c:119
msgid "Congratulations!"
msgstr "Őnnitleme!"
@@ -9457,27 +9825,31 @@ msgstr "Tavakasutaja"
msgid "Remove the last item"
msgstr "Vormindan loopback faili %s"
-#: ../../standalone/drakbackup_.c:625
+#: ../../standalone/drakbackup_.c:619
msgid "Cron not available yet as non-root"
msgstr ""
-#: ../../standalone/drakbackup_.c:731
+#: ../../standalone/drakbackup_.c:725
msgid "WARNING"
msgstr ""
-#: ../../standalone/drakbackup_.c:732
+#: ../../standalone/drakbackup_.c:726
#, fuzzy
msgid "FATAL"
msgstr "FAT"
-#: ../../standalone/drakbackup_.c:744
+#: ../../standalone/drakbackup_.c:727
+msgid "INFO"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:739
msgid ""
"\n"
" DrakBackup Report \n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:745
+#: ../../standalone/drakbackup_.c:740
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -9485,7 +9857,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:749
+#: ../../standalone/drakbackup_.c:744
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -9493,13 +9865,20 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:770 ../../standalone/drakbackup_.c:840
-#: ../../standalone/drakbackup_.c:894
+#: ../../standalone/drakbackup_.c:765 ../../standalone/drakbackup_.c:835
+#: ../../standalone/drakbackup_.c:889
#, fuzzy
msgid "Total progess"
msgstr "Proovin porte"
-#: ../../standalone/drakbackup_.c:822
+#: ../../standalone/drakbackup_.c:788
+msgid ""
+"Sorry, perl-Expect is not installed/enabled. To use\n"
+"this feature, install perl-Expect and comment lines 772-774,\n"
+" as well as 788,789. Then uncomment line 787."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:817
#, c-format
msgid ""
"%s exists, delete?\n"
@@ -9508,16 +9887,41 @@ msgid ""
" need to purge the entry from authorized_keys on the server."
msgstr ""
-#: ../../standalone/drakbackup_.c:831
+#: ../../standalone/drakbackup_.c:826
msgid "This may take a moment to generate the keys."
msgstr ""
-#: ../../standalone/drakbackup_.c:838
+#: ../../standalone/drakbackup_.c:833
#, c-format
msgid "ERROR: Cannot spawn %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:865
+#: ../../standalone/drakbackup_.c:850
+#, c-format
+msgid "No password prompt on %s at port %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:851
+#, fuzzy, c-format
+msgid "Bad password on %s"
+msgstr "Salasőna puudub"
+
+#: ../../standalone/drakbackup_.c:852
+#, c-format
+msgid "Permission denied transferring %s to %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:853
+#, fuzzy, c-format
+msgid "Can't find %s on %s"
+msgstr "Vőrgukaart %s: %s"
+
+#: ../../standalone/drakbackup_.c:856
+#, c-format
+msgid "%s not responding"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:860
#, c-format
msgid ""
"Transfer successful\n"
@@ -9528,63 +9932,68 @@ msgid ""
"without being prompted for a password."
msgstr ""
-#: ../../standalone/drakbackup_.c:908
+#: ../../standalone/drakbackup_.c:903
msgid "WebDAV remote site already in sync!"
msgstr ""
-#: ../../standalone/drakbackup_.c:912
+#: ../../standalone/drakbackup_.c:907
msgid "WebDAV transfer failed!"
msgstr ""
-#: ../../standalone/drakbackup_.c:934
+#: ../../standalone/drakbackup_.c:928
msgid "No CDR/DVDR in drive!"
msgstr ""
-#: ../../standalone/drakbackup_.c:938
+#: ../../standalone/drakbackup_.c:932
msgid "Does not appear to be recordable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:942
+#: ../../standalone/drakbackup_.c:936
msgid "Not erasable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:981
+#: ../../standalone/drakbackup_.c:975
msgid "This may take a moment to erase the media."
msgstr ""
-#: ../../standalone/drakbackup_.c:1045
+#: ../../standalone/drakbackup_.c:1060
msgid "Permission problem accessing CD."
msgstr ""
-#: ../../standalone/drakbackup_.c:1144 ../../standalone/drakbackup_.c:1193
+#: ../../standalone/drakbackup_.c:1087
+#, c-format
+msgid "No tape in %s!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1199 ../../standalone/drakbackup_.c:1248
msgid "Backup system files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:1194 ../../standalone/drakbackup_.c:1261
+#: ../../standalone/drakbackup_.c:1249 ../../standalone/drakbackup_.c:1316
#, fuzzy
msgid "Hard Disk Backup files..."
msgstr "Kőlbmatu tagavarakoopia"
-#: ../../standalone/drakbackup_.c:1206
+#: ../../standalone/drakbackup_.c:1261
#, fuzzy
msgid "Backup User files..."
msgstr "Kőlbmatu tagavarakoopia"
-#: ../../standalone/drakbackup_.c:1207
+#: ../../standalone/drakbackup_.c:1262
msgid "Hard Disk Backup Progress..."
msgstr ""
-#: ../../standalone/drakbackup_.c:1260
+#: ../../standalone/drakbackup_.c:1315
#, fuzzy
msgid "Backup Other files..."
msgstr "Kőlbmatu tagavarakoopia"
-#: ../../standalone/drakbackup_.c:1266
+#: ../../standalone/drakbackup_.c:1321
#, fuzzy
msgid "No changes to backup!"
msgstr "Kőlbmatu tagavarakoopia"
-#: ../../standalone/drakbackup_.c:1282 ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1337 ../../standalone/drakbackup_.c:1360
#, c-format
msgid ""
"\n"
@@ -9592,803 +10001,926 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1289
+#: ../../standalone/drakbackup_.c:1344
#, c-format
msgid ""
-"file list sent by FTP : %s\n"
+"file list sent by FTP: %s\n"
" "
msgstr ""
-#: ../../standalone/drakbackup_.c:1292
+#: ../../standalone/drakbackup_.c:1347
msgid ""
"\n"
" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1310
+#: ../../standalone/drakbackup_.c:1365
msgid ""
"\n"
"Drakbackup activities via CD:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1315
+#: ../../standalone/drakbackup_.c:1370
msgid ""
"\n"
"Drakbackup activities via tape:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1324
+#: ../../standalone/drakbackup_.c:1379
#, fuzzy
msgid " Error during mail sending. \n"
msgstr "Viga faili %s lugemisel"
-#: ../../standalone/drakbackup_.c:1346
+#: ../../standalone/drakbackup_.c:1404
msgid "Can't create catalog!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1459 ../../standalone/drakbackup_.c:1470
-#: ../../standalone/drakbackup_.c:1481 ../../standalone/drakfont_.c:1004
+#: ../../standalone/drakbackup_.c:1517 ../../standalone/drakbackup_.c:1528
+#: ../../standalone/drakfont_.c:1004
#, fuzzy
msgid "File Selection"
msgstr "Paketigruppide valik"
-#: ../../standalone/drakbackup_.c:1486
+#: ../../standalone/drakbackup_.c:1556
msgid "Select the files or directories and click on 'Add'"
msgstr ""
-#: ../../standalone/drakbackup_.c:1525
+#: ../../standalone/drakbackup_.c:1600
msgid ""
"\n"
"Please check all options that you need.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1526
+#: ../../standalone/drakbackup_.c:1601
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1527
+#: ../../standalone/drakbackup_.c:1602
#, fuzzy
msgid "Backup your System files. (/etc directory)"
msgstr "Kőlbmatu tagavarakoopia"
-#: ../../standalone/drakbackup_.c:1528
+#: ../../standalone/drakbackup_.c:1603
msgid "Use incremental backup (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1529
+#: ../../standalone/drakbackup_.c:1604
msgid "Do not include critical files (passwd, group, fstab)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1530
+#: ../../standalone/drakbackup_.c:1605
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr ""
-#: ../../standalone/drakbackup_.c:1547
+#: ../../standalone/drakbackup_.c:1622
#, fuzzy
msgid "Please check all users that you want to include in your backup."
msgstr "Palun valige paketid installimiseks"
-#: ../../standalone/drakbackup_.c:1574
+#: ../../standalone/drakbackup_.c:1649
msgid "Do not include the browser cache"
msgstr ""
-#: ../../standalone/drakbackup_.c:1575 ../../standalone/drakbackup_.c:1599
+#: ../../standalone/drakbackup_.c:1650 ../../standalone/drakbackup_.c:1674
msgid "Use Incremental Backups (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1597 ../../standalone/drakfont_.c:1058
+#: ../../standalone/drakbackup_.c:1672 ../../standalone/drakfont_.c:1058
#, fuzzy
msgid "Remove Selected"
msgstr "Eemalda prindijärjekord"
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:1710
#, fuzzy
msgid "Windows (FAT32)"
msgstr "Eemalda Windows(TM)"
-#: ../../standalone/drakbackup_.c:1674
+#: ../../standalone/drakbackup_.c:1749
#, fuzzy
msgid "Users"
msgstr "Kasutajatunnus"
-#: ../../standalone/drakbackup_.c:1700
+#: ../../standalone/drakbackup_.c:1775
#, fuzzy
msgid "Use network connection to backup"
msgstr "Kőlbmatu tagavarakoopia"
-#: ../../standalone/drakbackup_.c:1706
+#: ../../standalone/drakbackup_.c:1777
+msgid "Net Method:"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1781
msgid "Use Expect for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1707
+#: ../../standalone/drakbackup_.c:1782
msgid ""
"Create/Transfer\n"
"backup keys for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1708
+#: ../../standalone/drakbackup_.c:1783
msgid ""
" Transfer \n"
"Now"
msgstr ""
-#: ../../standalone/drakbackup_.c:1709
+#: ../../standalone/drakbackup_.c:1784
msgid "Keys in place already"
msgstr ""
-#: ../../standalone/drakbackup_.c:1713
+#: ../../standalone/drakbackup_.c:1788
#, fuzzy
msgid "Please enter the host name or IP."
msgstr "Palun testige hiirt"
-#: ../../standalone/drakbackup_.c:1718
+#: ../../standalone/drakbackup_.c:1793
msgid ""
"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
-#: ../../standalone/drakbackup_.c:1723
+#: ../../standalone/drakbackup_.c:1798
#, fuzzy
msgid "Please enter your login"
msgstr "Palun proovige veel"
-#: ../../standalone/drakbackup_.c:1728
+#: ../../standalone/drakbackup_.c:1803
#, fuzzy
msgid "Please enter your password"
msgstr "Palun proovige veel"
-#: ../../standalone/drakbackup_.c:1734
+#: ../../standalone/drakbackup_.c:1809
#, fuzzy
msgid "Remember this password"
msgstr "Salasőna puudub"
-#: ../../standalone/drakbackup_.c:1745
+#: ../../standalone/drakbackup_.c:1820
msgid "Need hostname, username and password!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1841
+#: ../../standalone/drakbackup_.c:1915
msgid "Use CD/DVDROM to backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1844
+#: ../../standalone/drakbackup_.c:1918
msgid ""
"Please choose your CD/DVD device\n"
"(Press Enter to propogate settings to other fields.\n"
"This field isn't necessary, only a tool to fill in the form.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1849
+#: ../../standalone/drakbackup_.c:1923
#, fuzzy
msgid "Please choose your CD/DVD media size"
msgstr "Palun valige klaviatuuriasetus"
-#: ../../standalone/drakbackup_.c:1855
+#: ../../standalone/drakbackup_.c:1929
#, fuzzy
msgid "Please check for multisession CD"
msgstr "Palun valige partitsioon"
-#: ../../standalone/drakbackup_.c:1861
+#: ../../standalone/drakbackup_.c:1935
#, fuzzy
msgid "Please check if you are using CDRW media"
msgstr "Palun valige partitsioon"
-#: ../../standalone/drakbackup_.c:1867
+#: ../../standalone/drakbackup_.c:1941
#, fuzzy
msgid "Please check if you want to erase your RW media (1st Session)"
msgstr "Palun valige partitsioon"
-#: ../../standalone/drakbackup_.c:1868
+#: ../../standalone/drakbackup_.c:1942
msgid " Erase Now "
msgstr ""
-#: ../../standalone/drakbackup_.c:1874
+#: ../../standalone/drakbackup_.c:1948
#, fuzzy
msgid "Please check if you are using a DVDR device"
msgstr "Palun valige partitsioon"
-#: ../../standalone/drakbackup_.c:1880
+#: ../../standalone/drakbackup_.c:1954
#, fuzzy
msgid "Please check if you are using a DVDRAM device"
msgstr "Palun valige partitsioon"
-#: ../../standalone/drakbackup_.c:1893
+#: ../../standalone/drakbackup_.c:1967
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
msgstr ""
-#: ../../standalone/drakbackup_.c:1926
+#: ../../standalone/drakbackup_.c:2000
#, fuzzy
msgid "No CD device defined!"
msgstr "Valige fail"
-#: ../../standalone/drakbackup_.c:1974
+#: ../../standalone/drakbackup_.c:2048
#, fuzzy
msgid "Use tape to backup"
msgstr "Kőlbmatu tagavarakoopia"
-#: ../../standalone/drakbackup_.c:1977
+#: ../../standalone/drakbackup_.c:2051
msgid "Please enter the device name to use for backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1983
+#: ../../standalone/drakbackup_.c:2057
#, fuzzy
msgid "Please check if you want to use the non-rewinding device."
msgstr "Palun valige paketid installimiseks"
-#: ../../standalone/drakbackup_.c:1989
+#: ../../standalone/drakbackup_.c:2063
#, fuzzy
msgid "Please check if you want to erase your tape before the backup."
msgstr "Palun valige paketid installimiseks"
-#: ../../standalone/drakbackup_.c:1995
+#: ../../standalone/drakbackup_.c:2069
#, fuzzy
msgid "Please check if you want to eject your tape after the backup."
msgstr "Palun valige paketid installimiseks"
-#: ../../standalone/drakbackup_.c:2001 ../../standalone/drakbackup_.c:2074
-#: ../../standalone/drakbackup_.c:3025
+#: ../../standalone/drakbackup_.c:2075 ../../standalone/drakbackup_.c:2149
+#: ../../standalone/drakbackup_.c:3116
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:2066
+#: ../../standalone/drakbackup_.c:2140
#, fuzzy
msgid "Please enter the directory to save to:"
msgstr "Palun testige hiirt"
-#: ../../standalone/drakbackup_.c:2080 ../../standalone/drakbackup_.c:3031
+#: ../../standalone/drakbackup_.c:2155 ../../standalone/drakbackup_.c:3122
#, fuzzy
msgid "Use quota for backup files."
msgstr "Kőlbmatu tagavarakoopia"
-#: ../../standalone/drakbackup_.c:2146
+#: ../../standalone/drakbackup_.c:2221
#, fuzzy
msgid "Network"
msgstr "Vőrgu mask:"
-#: ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:2226
msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2156
+#: ../../standalone/drakbackup_.c:2231
msgid "HardDrive / NFS"
msgstr ""
-#: ../../standalone/drakbackup_.c:2161
+#: ../../standalone/drakbackup_.c:2236
#, fuzzy
msgid "Tape"
msgstr "Tüüp"
-#: ../../standalone/drakbackup_.c:2175 ../../standalone/drakbackup_.c:2179
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2250 ../../standalone/drakbackup_.c:2254
+#: ../../standalone/drakbackup_.c:2258
msgid "hourly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2176 ../../standalone/drakbackup_.c:2180
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2251 ../../standalone/drakbackup_.c:2255
+#: ../../standalone/drakbackup_.c:2258
msgid "daily"
msgstr ""
-#: ../../standalone/drakbackup_.c:2177 ../../standalone/drakbackup_.c:2181
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2252 ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2258
msgid "weekly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2178 ../../standalone/drakbackup_.c:2182
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2253 ../../standalone/drakbackup_.c:2257
+#: ../../standalone/drakbackup_.c:2258
msgid "monthly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2196
+#: ../../standalone/drakbackup_.c:2271
#, fuzzy
msgid "Use daemon"
msgstr "Kasutajatunnus"
-#: ../../standalone/drakbackup_.c:2201
+#: ../../standalone/drakbackup_.c:2276
#, fuzzy
msgid ""
"Please choose the time \n"
"interval between each backup"
msgstr "Palun valige paketid installimiseks"
-#: ../../standalone/drakbackup_.c:2207
+#: ../../standalone/drakbackup_.c:2282
#, fuzzy
msgid ""
"Please choose the\n"
"media for backup."
msgstr "Palun valige kasutatav keel"
-#: ../../standalone/drakbackup_.c:2214
+#: ../../standalone/drakbackup_.c:2289
msgid ""
"Please be sure that the cron daemon is included in your services. \n"
"\n"
"Note that currently all 'net' medias also use the hard drive."
msgstr ""
-#: ../../standalone/drakbackup_.c:2251
-msgid "Send mail report after each backup to :"
+#: ../../standalone/drakbackup_.c:2326
+msgid "Send mail report after each backup to:"
msgstr ""
-#: ../../standalone/drakbackup_.c:2257
+#: ../../standalone/drakbackup_.c:2332
msgid "Delete Hard Drive tar files after backup to other media."
msgstr ""
-#: ../../standalone/drakbackup_.c:2296
+#: ../../standalone/drakbackup_.c:2371
#, fuzzy
msgid "What"
msgstr "Oodake"
-#: ../../standalone/drakbackup_.c:2301
+#: ../../standalone/drakbackup_.c:2376
#, fuzzy
msgid "Where"
msgstr "Ratas"
-#: ../../standalone/drakbackup_.c:2306
+#: ../../standalone/drakbackup_.c:2381
#, fuzzy
msgid "When"
msgstr "Ratas"
-#: ../../standalone/drakbackup_.c:2311
+#: ../../standalone/drakbackup_.c:2386
#, fuzzy
msgid "More Options"
msgstr "Mooduli parameetrid:"
-#: ../../standalone/drakbackup_.c:2330 ../../standalone/drakbackup_.c:3873
+#: ../../standalone/drakbackup_.c:2405 ../../standalone/drakbackup_.c:4530
#, fuzzy
msgid "Drakbackup Configuration"
msgstr "Vőrgu sätted"
-#: ../../standalone/drakbackup_.c:2348
+#: ../../standalone/drakbackup_.c:2423
#, fuzzy
msgid "Please choose where you want to backup"
msgstr "Palun valige paketid installimiseks"
-#: ../../standalone/drakbackup_.c:2350
+#: ../../standalone/drakbackup_.c:2425
msgid "on Hard Drive"
msgstr ""
-#: ../../standalone/drakbackup_.c:2360
+#: ../../standalone/drakbackup_.c:2435
#, fuzzy
msgid "across Network"
msgstr "Vőrgu mask:"
-#: ../../standalone/drakbackup_.c:2370
+#: ../../standalone/drakbackup_.c:2445
msgid "on CDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2378
+#: ../../standalone/drakbackup_.c:2453
#, fuzzy
msgid "on Tape Device"
msgstr "Printeri seade"
-#: ../../standalone/drakbackup_.c:2421
+#: ../../standalone/drakbackup_.c:2496
#, fuzzy
msgid "Please choose what you want to backup"
msgstr "Palun valige paketid installimiseks"
-#: ../../standalone/drakbackup_.c:2422
+#: ../../standalone/drakbackup_.c:2497
#, fuzzy
msgid "Backup system"
msgstr "Failisüsteemid"
-#: ../../standalone/drakbackup_.c:2423
+#: ../../standalone/drakbackup_.c:2498
msgid "Backup Users"
msgstr ""
-#: ../../standalone/drakbackup_.c:2426
+#: ../../standalone/drakbackup_.c:2501
msgid "Select user manually"
msgstr ""
-#: ../../standalone/drakbackup_.c:2508
+#: ../../standalone/drakbackup_.c:2584
msgid ""
"\n"
"Backup Sources: \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2509
+#: ../../standalone/drakbackup_.c:2585
msgid ""
"\n"
"- System Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2511
+#: ../../standalone/drakbackup_.c:2587
msgid ""
"\n"
"- User Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2513
+#: ../../standalone/drakbackup_.c:2589
msgid ""
"\n"
"- Other Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2515
+#: ../../standalone/drakbackup_.c:2591
#, c-format
msgid ""
"\n"
-"- Save on Hard drive on path : %s\n"
+"- Save on Hard drive on path: %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2518
+#: ../../standalone/drakbackup_.c:2594
msgid ""
"\n"
"- Delete hard drive tar files after backup.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2524
+#: ../../standalone/drakbackup_.c:2600
msgid ""
"\n"
"- Burn to CD"
msgstr ""
-#: ../../standalone/drakbackup_.c:2525
+#: ../../standalone/drakbackup_.c:2601
msgid "RW"
msgstr ""
-#: ../../standalone/drakbackup_.c:2526
+#: ../../standalone/drakbackup_.c:2602
#, fuzzy, c-format
-msgid " on device : %s"
+msgid " on device: %s"
msgstr "Hiire port: %s\n"
-#: ../../standalone/drakbackup_.c:2527
+#: ../../standalone/drakbackup_.c:2603
msgid " (multi-session)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2528
+#: ../../standalone/drakbackup_.c:2604
#, c-format
msgid ""
"\n"
-"- Save to Tape on device : %s"
+"- Save to Tape on device: %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2529
+#: ../../standalone/drakbackup_.c:2605
#, c-format
msgid "\t\tErase=%s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2532
+#: ../../standalone/drakbackup_.c:2608
#, c-format
msgid ""
"\n"
-"- Save via %s on host : %s\n"
+"- Save via %s on host: %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2533
+#: ../../standalone/drakbackup_.c:2609
#, c-format
msgid ""
"\t\t user name: %s\n"
"\t\t on path: %s \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2534
+#: ../../standalone/drakbackup_.c:2610
#, fuzzy
msgid ""
"\n"
"- Options:\n"
msgstr "Eelistused"
-#: ../../standalone/drakbackup_.c:2535
+#: ../../standalone/drakbackup_.c:2611
msgid "\tDo not include System Files\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2538
+#: ../../standalone/drakbackup_.c:2614
msgid "\tBackups use tar and bzip2\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2540
+#: ../../standalone/drakbackup_.c:2616
msgid "\tBackups use tar and gzip\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2543
+#: ../../standalone/drakbackup_.c:2619
#, c-format
msgid ""
"\n"
-"- Daemon (%s) include :\n"
+"- Daemon (%s) include:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2544
+#: ../../standalone/drakbackup_.c:2620
msgid "\t-Hard drive.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2545
+#: ../../standalone/drakbackup_.c:2621
msgid "\t-CDROM.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2546
+#: ../../standalone/drakbackup_.c:2622
msgid "\t-Tape \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2547
+#: ../../standalone/drakbackup_.c:2623
msgid "\t-Network by FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2548
+#: ../../standalone/drakbackup_.c:2624
msgid "\t-Network by SSH.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2549
+#: ../../standalone/drakbackup_.c:2625
msgid "\t-Network by rsync.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2550
+#: ../../standalone/drakbackup_.c:2626
msgid "\t-Network by webdav.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2552
+#: ../../standalone/drakbackup_.c:2628
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2558
+#: ../../standalone/drakbackup_.c:2634
msgid ""
"List of data to restore:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2725
+#: ../../standalone/drakbackup_.c:2801
msgid ""
"List of data corrupted:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2727
+#: ../../standalone/drakbackup_.c:2803
#, fuzzy
msgid "Please uncheck or remove it on next time."
msgstr "Millisesse seerialporti on Teie modem ühendatud?"
-#: ../../standalone/drakbackup_.c:2737
+#: ../../standalone/drakbackup_.c:2813
msgid "Backup files are corrupted"
msgstr ""
-#: ../../standalone/drakbackup_.c:2758
+#: ../../standalone/drakbackup_.c:2834
msgid " All of your selected data have been "
msgstr ""
-#: ../../standalone/drakbackup_.c:2759
+#: ../../standalone/drakbackup_.c:2835
#, c-format
msgid " Successfuly Restored on %s "
msgstr ""
-#: ../../standalone/drakbackup_.c:2877
+#: ../../standalone/drakbackup_.c:2953
#, fuzzy
msgid " Restore Configuration "
msgstr "Vőrgu sätted"
-#: ../../standalone/drakbackup_.c:2895
+#: ../../standalone/drakbackup_.c:2971
msgid "OK to restore the other files."
msgstr ""
-#: ../../standalone/drakbackup_.c:2912
+#: ../../standalone/drakbackup_.c:2988
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2975
+#: ../../standalone/drakbackup_.c:3066
#, fuzzy
msgid "Backup the system files before:"
msgstr "Kőlbmatu tagavarakoopia"
-#: ../../standalone/drakbackup_.c:2977
+#: ../../standalone/drakbackup_.c:3068
#, fuzzy
msgid "please choose the date to restore"
msgstr "Palun valige hiire tüüp"
-#: ../../standalone/drakbackup_.c:3014
+#: ../../standalone/drakbackup_.c:3105
#, fuzzy
msgid "Use Hard Disk to backup"
msgstr "Kőlbmatu tagavarakoopia"
-#: ../../standalone/drakbackup_.c:3017
+#: ../../standalone/drakbackup_.c:3108
#, fuzzy
msgid "Please enter the directory to save:"
msgstr "Palun testige hiirt"
-#: ../../standalone/drakbackup_.c:3060
+#: ../../standalone/drakbackup_.c:3151
#, fuzzy
msgid "FTP Connection"
msgstr "LAN ühendus"
-#: ../../standalone/drakbackup_.c:3067
+#: ../../standalone/drakbackup_.c:3158
#, fuzzy
msgid "Secure Connection"
msgstr "Vali printeri ühendusviis"
-#: ../../standalone/drakbackup_.c:3093
+#: ../../standalone/drakbackup_.c:3184
#, fuzzy
msgid "Restore from Hard Disk."
msgstr "Taasta flopilt"
-#: ../../standalone/drakbackup_.c:3095
+#: ../../standalone/drakbackup_.c:3186
msgid "Please enter the directory where backups are stored"
msgstr ""
-#: ../../standalone/drakbackup_.c:3157
+#: ../../standalone/drakbackup_.c:3254
#, fuzzy
msgid "Select another media to restore from"
msgstr "Palun valige hiire tüüp"
-#: ../../standalone/drakbackup_.c:3159
+#: ../../standalone/drakbackup_.c:3256
#, fuzzy
msgid "Other Media"
msgstr "Muu"
-#: ../../standalone/drakbackup_.c:3164
+#: ../../standalone/drakbackup_.c:3261
#, fuzzy
msgid "Restore system"
msgstr "Süsteemi installimine"
-#: ../../standalone/drakbackup_.c:3165
+#: ../../standalone/drakbackup_.c:3262
#, fuzzy
msgid "Restore Users"
msgstr "Taasta failist"
-#: ../../standalone/drakbackup_.c:3166
+#: ../../standalone/drakbackup_.c:3263
#, fuzzy
msgid "Restore Other"
msgstr "Taasta failist"
-#: ../../standalone/drakbackup_.c:3168
+#: ../../standalone/drakbackup_.c:3265
#, fuzzy
msgid "select path to restore (instead of /)"
msgstr "Palun valige hiire tüüp"
-#: ../../standalone/drakbackup_.c:3172
+#: ../../standalone/drakbackup_.c:3269
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:3174
+#: ../../standalone/drakbackup_.c:3271
msgid "Remove user directories before restore."
msgstr ""
-#: ../../standalone/drakbackup_.c:3232
+#: ../../standalone/drakbackup_.c:3384
+msgid ""
+"Restore Selected\n"
+"Catalog Entry"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3394
+#, fuzzy
+msgid ""
+"Restore Selected\n"
+"Files"
+msgstr "Eemalda prindijärjekord"
+
+#: ../../standalone/drakbackup_.c:3411
+#, fuzzy
+msgid ""
+"Change\n"
+"Restore Path"
+msgstr "Taasta failist"
+
+#: ../../standalone/drakbackup_.c:3477
+#, c-format
+msgid "Backup files not found at %s."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3490
+#, c-format
+msgid ""
+"Insert the CD with volume label %s\n"
+" in the CD drive under mount point /mnt/cdrom"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3490
+#, fuzzy
+msgid "Restore From CD"
+msgstr "Taasta flopilt"
+
+#: ../../standalone/drakbackup_.c:3492
+#, c-format
+msgid "Not the correct CD label. Disk is labelled %s."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3502
+#, c-format
+msgid ""
+"Insert the tape with volume label %s\n"
+" in the tape drive device %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3502
+#, fuzzy
+msgid "Restore From Tape"
+msgstr "Päästa partitsioonitabel"
+
+#: ../../standalone/drakbackup_.c:3504
+#, c-format
+msgid "Not the correct tape label. Tape is labelled %s."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3524
+#, fuzzy
+msgid "Restore Via Network"
+msgstr "Seadista kohtvőrk uuesti"
+
+#: ../../standalone/drakbackup_.c:3524
+#, c-format
+msgid "Restore Via Network Protocol: %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3525
+#, fuzzy
+msgid "Host Name"
+msgstr "Masinanimi"
+
+#: ../../standalone/drakbackup_.c:3526
+msgid "Host Path or Module"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3533
+#, fuzzy
+msgid "Password required"
+msgstr "Salasőna"
+
+#: ../../standalone/drakbackup_.c:3539
+#, fuzzy
+msgid "Username required"
+msgstr "Kasutajatunnus"
+
+#: ../../standalone/drakbackup_.c:3542
+#, fuzzy
+msgid "Hostname required"
+msgstr "Masinanimi: "
+
+#: ../../standalone/drakbackup_.c:3547
+msgid "Path or Module required"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3560
+msgid "Files Restored..."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3563
+#, fuzzy
+msgid "Restore Failed..."
+msgstr "Taasta failist"
+
+#: ../../standalone/drakbackup_.c:3801
msgid "Restore all backups"
msgstr ""
-#: ../../standalone/drakbackup_.c:3241
+#: ../../standalone/drakbackup_.c:3810
#, fuzzy
msgid "Custom Restore"
msgstr "Isetehtud"
-#: ../../standalone/drakbackup_.c:3287 ../../standalone/drakbackup_.c:3320
-#: ../../standalone/drakbackup_.c:3346 ../../standalone/drakbackup_.c:3373
-#: ../../standalone/drakbackup_.c:3400 ../../standalone/drakbackup_.c:3460
-#: ../../standalone/drakbackup_.c:3487 ../../standalone/drakbackup_.c:3513
+#: ../../standalone/drakbackup_.c:3856
+msgid "CD in place - continue."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3862
+msgid "Browse to new restore repository."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3865
+#, fuzzy
+msgid "Restore From Catalog"
+msgstr "Päästa partitsioonitabel"
+
+#: ../../standalone/drakbackup_.c:3893
+#, fuzzy
+msgid "Restore Progress"
+msgstr "Taasta failist"
+
+#: ../../standalone/drakbackup_.c:3935 ../../standalone/drakbackup_.c:3968
+#: ../../standalone/drakbackup_.c:3994 ../../standalone/drakbackup_.c:4021
+#: ../../standalone/drakbackup_.c:4048 ../../standalone/drakbackup_.c:4108
+#: ../../standalone/drakbackup_.c:4135 ../../standalone/drakbackup_.c:4165
+#: ../../standalone/drakbackup_.c:4191
#, fuzzy
msgid "Previous"
msgstr "<- Eelmine"
-#: ../../standalone/drakbackup_.c:3291 ../../standalone/drakbackup_.c:3377
+#: ../../standalone/drakbackup_.c:3939 ../../standalone/drakbackup_.c:4025
#: ../../standalone/logdrake_.c:223
#, fuzzy
msgid "Save"
msgstr "Olek:"
-#: ../../standalone/drakbackup_.c:3350
+#: ../../standalone/drakbackup_.c:3998
#, fuzzy
msgid "Build Backup"
msgstr "Kőlbmatu tagavarakoopia"
-#: ../../standalone/drakbackup_.c:3404 ../../standalone/drakbackup_.c:3974
+#: ../../standalone/drakbackup_.c:4052 ../../standalone/drakbackup_.c:4632
#, fuzzy
msgid "Restore"
msgstr "Taasta failist"
-#: ../../standalone/drakbackup_.c:3553
+#: ../../standalone/drakbackup_.c:4231
msgid ""
-"Please Build backup before to restore it...\n"
-" or verify that your path to save is correct."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3574
-msgid ""
-"Error during sendmail\n"
-" your report mail was not sent\n"
+"Error during sendmail.\n"
+" Your report mail was not sent.\n"
" Please configure sendmail"
msgstr ""
-#: ../../standalone/drakbackup_.c:3598
+#: ../../standalone/drakbackup_.c:4255
#, fuzzy
msgid ""
"The following packages need to be installed:\n"
" @list_of_rpm_to_install"
msgstr "Installimiseks on valitud järgmised paketid"
-#: ../../standalone/drakbackup_.c:3621
+#: ../../standalone/drakbackup_.c:4278
msgid ""
"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
-#: ../../standalone/drakbackup_.c:3644
+#: ../../standalone/drakbackup_.c:4301
#, fuzzy
msgid "Please select data to restore..."
msgstr "Palun valige kasutatav keel"
-#: ../../standalone/drakbackup_.c:3665
+#: ../../standalone/drakbackup_.c:4322
#, fuzzy
msgid "Please select media for backup..."
msgstr "Palun valige kasutatav keel"
-#: ../../standalone/drakbackup_.c:3687
+#: ../../standalone/drakbackup_.c:4344
#, fuzzy
msgid "Please select data to backup..."
msgstr "Palun valige kasutatav keel"
-#: ../../standalone/drakbackup_.c:3709
+#: ../../standalone/drakbackup_.c:4366
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
msgstr ""
-#: ../../standalone/drakbackup_.c:3730
+#: ../../standalone/drakbackup_.c:4387
msgid "Under Devel ... please wait."
msgstr ""
-#: ../../standalone/drakbackup_.c:3811
+#: ../../standalone/drakbackup_.c:4468
#, fuzzy
msgid "Backup system files"
msgstr "Kőlbmatu tagavarakoopia"
-#: ../../standalone/drakbackup_.c:3813
+#: ../../standalone/drakbackup_.c:4470
#, fuzzy
msgid "Backup user files"
msgstr "Kőlbmatu tagavarakoopia"
-#: ../../standalone/drakbackup_.c:3815
+#: ../../standalone/drakbackup_.c:4472
#, fuzzy
msgid "Backup other files"
msgstr "Kőlbmatu tagavarakoopia"
-#: ../../standalone/drakbackup_.c:3817 ../../standalone/drakbackup_.c:3850
+#: ../../standalone/drakbackup_.c:4474 ../../standalone/drakbackup_.c:4507
msgid "Total Progress"
msgstr ""
-#: ../../standalone/drakbackup_.c:3841
+#: ../../standalone/drakbackup_.c:4498
msgid "files sending by FTP"
msgstr ""
-#: ../../standalone/drakbackup_.c:3845
+#: ../../standalone/drakbackup_.c:4502
#, fuzzy
msgid "Sending files..."
msgstr "Salvesta faili"
-#: ../../standalone/drakbackup_.c:3931
+#: ../../standalone/drakbackup_.c:4588
#, fuzzy
msgid "Backup Now from configuration file"
msgstr "Vőrgu sätted"
-#: ../../standalone/drakbackup_.c:3936
+#: ../../standalone/drakbackup_.c:4593
#, fuzzy
msgid "View Backup Configuration."
msgstr "Vőrgu sätted"
-#: ../../standalone/drakbackup_.c:3956
+#: ../../standalone/drakbackup_.c:4614
#, fuzzy
msgid "Wizard Configuration"
msgstr "LAN sätted"
-#: ../../standalone/drakbackup_.c:3961
+#: ../../standalone/drakbackup_.c:4619
#, fuzzy
msgid "Advanced Configuration"
msgstr "ISDN sätted"
-#: ../../standalone/drakbackup_.c:3966
+#: ../../standalone/drakbackup_.c:4624
#, fuzzy
msgid "Backup Now"
msgstr "Failisüsteemid"
-#: ../../standalone/drakbackup_.c:3996
+#: ../../standalone/drakbackup_.c:4658
msgid "Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:4045
+#: ../../standalone/drakbackup_.c:4707
msgid ""
"options description:\n"
"\n"
@@ -10420,7 +10952,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4075
+#: ../../standalone/drakbackup_.c:4737
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -10429,7 +10961,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4083
+#: ../../standalone/drakbackup_.c:4745
msgid ""
"options description:\n"
"\n"
@@ -10470,45 +11002,45 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4122
+#: ../../standalone/drakbackup_.c:4784
msgid ""
"restore description:\n"
" \n"
-"Only the most recent date will be used ,because with incremental \n"
-"backups it is necesarry to restore one by one each older backups.\n"
+"Only the most recent date will be used, because with incremental \n"
+"backups it is necessary to restore one by one each older backup.\n"
"\n"
-"So if you don't like to restore a user please unselect all his\n"
-"check box.\n"
+"So if you don't want to restore a user please unselect all their\n"
+"check boxes.\n"
"\n"
-"Otherwise, you are able to select only one of this\n"
+"Otherwise, you are able to select only one of these.\n"
"\n"
" - Incremental Backups:\n"
"\n"
"\tThe incremental backup is the most powerful \n"
-"\toption to use backup, this option allow you \n"
-"\tto backup all your data the first time, and \n"
-"\tonly the changed after.\n"
-"\tSo you will be able during the restore\n"
+"\toption to use. This option allows you to \n"
+"\tbackup all of your data the first time, and \n"
+"\tonly the changed data after.\n"
+"\tSo you will be able, during the restore\n"
"\tstep, to restore your data from a specified\n"
"\tdate.\n"
-"\tIf you have not selected this options all\n"
+"\tIf you have not selected this option all\n"
"\told backups are deleted before each backup. \n"
"\n"
"\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4148 ../../standalone/drakbackup_.c:4225
+#: ../../standalone/drakbackup_.c:4810 ../../standalone/drakbackup_.c:4887
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
-#: ../../standalone/drakbackup_.c:4150 ../../standalone/drakbackup_.c:4227
+#: ../../standalone/drakbackup_.c:4812 ../../standalone/drakbackup_.c:4889
msgid ""
" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
-#: ../../standalone/drakbackup_.c:4152 ../../standalone/drakbackup_.c:4229
+#: ../../standalone/drakbackup_.c:4814 ../../standalone/drakbackup_.c:4891
msgid ""
" This program is free software; you can redistribute it and/or modify\n"
" it under the terms of the GNU General Public License as published by\n"
@@ -10525,7 +11057,7 @@ msgid ""
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
msgstr ""
-#: ../../standalone/drakbackup_.c:4166
+#: ../../standalone/drakbackup_.c:4828
msgid ""
"Description:\n"
"\n"
@@ -10565,7 +11097,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4204
+#: ../../standalone/drakbackup_.c:4866
msgid ""
"options description:\n"
"\n"
@@ -10576,7 +11108,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4213
+#: ../../standalone/drakbackup_.c:4875
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -10589,7 +11121,7 @@ msgid ""
"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4243
+#: ../../standalone/drakbackup_.c:4905
msgid ""
"Description:\n"
"\n"
@@ -10670,9 +11202,9 @@ msgstr ""
msgid "Synchronization tool"
msgstr ""
-#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:85
-#: ../../standalone/drakbug_.c:150 ../../standalone/drakbug_.c:152
-#: ../../standalone/drakbug_.c:156
+#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:86
+#: ../../standalone/drakbug_.c:151 ../../standalone/drakbug_.c:153
+#: ../../standalone/drakbug_.c:157
#, fuzzy
msgid "Standalone Tools"
msgstr "Konsooliprogrammid"
@@ -10725,26 +11257,26 @@ msgstr "Kasuta diskdrake-i"
msgid "Configuration Wizards"
msgstr "Vőrgu sätete abimees"
-#: ../../standalone/drakbug_.c:96
+#: ../../standalone/drakbug_.c:97
#, fuzzy
msgid "Application:"
msgstr "Tegevused"
-#: ../../standalone/drakbug_.c:97
+#: ../../standalone/drakbug_.c:98
#, fuzzy
msgid "Package: "
msgstr "Pakett"
-#: ../../standalone/drakbug_.c:98
+#: ../../standalone/drakbug_.c:99
msgid "Kernel:"
msgstr ""
-#: ../../standalone/drakbug_.c:99
+#: ../../standalone/drakbug_.c:100
#, fuzzy
msgid "Release: "
msgstr "Palun oodake"
-#: ../../standalone/drakbug_.c:114
+#: ../../standalone/drakbug_.c:115
msgid ""
"\n"
"\n"
@@ -10756,22 +11288,22 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbug_.c:135
+#: ../../standalone/drakbug_.c:136
#, fuzzy
msgid "Report"
msgstr "Port"
-#: ../../standalone/drakbug_.c:165
+#: ../../standalone/drakbug_.c:166
#, fuzzy
msgid "Not installed"
msgstr "Välju programmist"
-#: ../../standalone/drakbug_.c:182
+#: ../../standalone/drakbug_.c:183
#, fuzzy
msgid "connecting to Bugzilla wizard ..."
msgstr "Seadistan uuesti abimehega..."
-#: ../../standalone/drakbug_.c:189
+#: ../../standalone/drakbug_.c:190
#, fuzzy
msgid "No browser available! Please install one"
msgstr "Teisi keeli saab valida pärast installimist"
@@ -11225,7 +11757,7 @@ msgstr "Ühenduspunkt"
#: ../../standalone/drakfont_.c:909
#, fuzzy
-msgid "Choose the applications that will support the fonts :"
+msgid "Choose the applications that will support the fonts:"
msgstr "Valige partitsioonid, mida soovite vormindada"
#: ../../standalone/drakfont_.c:918
@@ -11307,19 +11839,19 @@ msgstr "Teie süsteemis ei ole vőrgukaarti!"
msgid "Post Uninstall"
msgstr "Välju programmist"
-#: ../../standalone/drakgw_.c:42 ../../standalone/drakgw_.c:195
+#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:188
msgid "Internet Connection Sharing"
msgstr "Internetiühenduse jagamine"
-#: ../../standalone/drakgw_.c:121
+#: ../../standalone/drakgw_.c:119
msgid "Sorry, we support only 2.4 kernels."
msgstr ""
-#: ../../standalone/drakgw_.c:133
+#: ../../standalone/drakgw_.c:130
msgid "Internet Connection Sharing currently enabled"
msgstr "Internetiühenduse jagamine töötab"
-#: ../../standalone/drakgw_.c:134
+#: ../../standalone/drakgw_.c:131
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -11331,31 +11863,31 @@ msgstr ""
"\n"
"Mida Te soovite teha?"
-#: ../../standalone/drakgw_.c:138
+#: ../../standalone/drakgw_.c:135
msgid "disable"
msgstr "keela"
-#: ../../standalone/drakgw_.c:138 ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:135 ../../standalone/drakgw_.c:160
msgid "dismiss"
msgstr "tühista"
-#: ../../standalone/drakgw_.c:138 ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:135 ../../standalone/drakgw_.c:160
msgid "reconfigure"
msgstr "seadista uuesti"
-#: ../../standalone/drakgw_.c:141
+#: ../../standalone/drakgw_.c:138
msgid "Disabling servers..."
msgstr "Peaten serverid..."
-#: ../../standalone/drakgw_.c:149
+#: ../../standalone/drakgw_.c:146
msgid "Internet connection sharing is now disabled."
msgstr "Internetiühendust nüüd enam ei jagata"
-#: ../../standalone/drakgw_.c:158
+#: ../../standalone/drakgw_.c:155
msgid "Internet Connection Sharing currently disabled"
msgstr "Internetiühendust hetkel ei jagata"
-#: ../../standalone/drakgw_.c:159
+#: ../../standalone/drakgw_.c:156
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
@@ -11367,19 +11899,19 @@ msgstr ""
"\n"
"Mida Te soovite teha?"
-#: ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:160
msgid "enable"
msgstr "luba"
-#: ../../standalone/drakgw_.c:170
+#: ../../standalone/drakgw_.c:167
msgid "Enabling servers..."
msgstr "Käivitan serverid..."
-#: ../../standalone/drakgw_.c:175
+#: ../../standalone/drakgw_.c:172
msgid "Internet connection sharing is now enabled."
msgstr "Internetiühenduse jagamine nüüd töötab"
-#: ../../standalone/drakgw_.c:196
+#: ../../standalone/drakgw_.c:189
#, fuzzy
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
@@ -11393,21 +11925,21 @@ msgstr ""
"\n"
"Märkus: kohtvőrgu (LAN) jaoks on vajalik eraldi vőrgukaardi olemasolu."
-#: ../../standalone/drakgw_.c:222
+#: ../../standalone/drakgw_.c:215
#, c-format
msgid "Interface %s (using module %s)"
msgstr "Liides %s (kasutab moodulit %s)"
-#: ../../standalone/drakgw_.c:223
+#: ../../standalone/drakgw_.c:216
#, c-format
msgid "Interface %s"
msgstr "Liides %s"
-#: ../../standalone/drakgw_.c:231
+#: ../../standalone/drakgw_.c:224
msgid "No network adapter on your system!"
msgstr "Teie süsteemis ei ole vőrgukaarti!"
-#: ../../standalone/drakgw_.c:232
+#: ../../standalone/drakgw_.c:225
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
@@ -11415,11 +11947,11 @@ msgstr ""
"Ühtki vőrgukaarti ei ole hetkel seadistatud. Palun kasutage selleks "
"riistvara sätteseadjat."
-#: ../../standalone/drakgw_.c:238
+#: ../../standalone/drakgw_.c:231
msgid "Network interface"
msgstr "Vőrguliides"
-#: ../../standalone/drakgw_.c:239
+#: ../../standalone/drakgw_.c:232
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -11434,7 +11966,7 @@ msgstr ""
"\n"
"Kohtvőrgu sätted seotakse selle liidesga."
-#: ../../standalone/drakgw_.c:248
+#: ../../standalone/drakgw_.c:241
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
@@ -11442,12 +11974,12 @@ msgstr ""
"Palun valige millist vőrguliidest soovite kasutada kohtvőrgu\n"
"jaoks."
-#: ../../standalone/drakgw_.c:266
+#: ../../standalone/drakgw_.c:259
#, fuzzy
msgid "Network interface already configured"
msgstr "Monitor ei ole seadistatud"
-#: ../../standalone/drakgw_.c:267
+#: ../../standalone/drakgw_.c:260
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -11457,17 +11989,17 @@ msgid ""
"You can do it manually but you need to know what you're doing."
msgstr ""
-#: ../../standalone/drakgw_.c:272
+#: ../../standalone/drakgw_.c:265
#, fuzzy
msgid "Automatic reconfiguration"
msgstr "Alglaaduri stiil"
-#: ../../standalone/drakgw_.c:273
+#: ../../standalone/drakgw_.c:266
#, fuzzy
msgid "Show current interface configuration"
msgstr "Interneti sätted"
-#: ../../standalone/drakgw_.c:275
+#: ../../standalone/drakgw_.c:268
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -11478,7 +12010,7 @@ msgid ""
"Driver: %s"
msgstr ""
-#: ../../standalone/drakgw_.c:287
+#: ../../standalone/drakgw_.c:280
msgid ""
"I can keep your current configuration and assume you already set up a DHCP "
"server; in that case please verify I correctly read the C-Class Network that "
@@ -11490,55 +12022,42 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakgw_.c:292
+#: ../../standalone/drakgw_.c:285
msgid "C-Class Local Network"
msgstr ""
-#: ../../standalone/drakgw_.c:293
+#: ../../standalone/drakgw_.c:286
#, fuzzy
msgid "(This) DHCP Server IP"
msgstr "CUPS serveri IP"
-#: ../../standalone/drakgw_.c:294
+#: ../../standalone/drakgw_.c:287
msgid "Re-configure interface and DHCP server"
msgstr ""
-#: ../../standalone/drakgw_.c:301
+#: ../../standalone/drakgw_.c:294
msgid "The Local Network did not finish with `.0', bailing out."
msgstr ""
-#: ../../standalone/drakgw_.c:312
+#: ../../standalone/drakgw_.c:305
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr "Vőimalik kohtvőrgu aadressi konflikt %s konfiguratsioonis!\n"
-#
-#: ../../standalone/drakgw_.c:320
-msgid "Firewalling configuration detected!"
-msgstr "Leitud tulemüüri sätted!"
-
-#: ../../standalone/drakgw_.c:321
-msgid ""
-"Warning! An existing firewalling configuration has been detected. You may "
-"need some manual fix after installation."
-msgstr ""
-"Hoiatus! Leiti olemasolevad tulemüüri sätted. Tőenäoliselt peaksite need "
-"hiljem üle vaatame."
-
-#: ../../standalone/drakgw_.c:328
+#: ../../standalone/drakgw_.c:315
msgid "Configuring..."
msgstr "Seadistan..."
-#: ../../standalone/drakgw_.c:329
+#: ../../standalone/drakgw_.c:316
msgid "Configuring scripts, installing software, starting servers..."
msgstr "Häälestan skriptid, installin tarkvara, käivitan serverid..."
-#: ../../standalone/drakgw_.c:365
+#: ../../standalone/drakgw_.c:352
#, c-format
msgid "Problems installing package %s"
msgstr "Probleemid paketi %s installimisel"
-#: ../../standalone/drakgw_.c:549
+#: ../../standalone/drakgw_.c:485
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
@@ -11548,24 +12067,24 @@ msgstr ""
"Nüüd saate internetiühendust jagada teistele kohtvőrgu arvutitele, kasutades "
"neil automaatset konfigureerimist (DHCP)"
-#: ../../standalone/drakgw_.c:566
+#: ../../standalone/drakgw_.c:504
msgid "The setup has already been done, but it's currently disabled."
msgstr "Internetiühenduse jagamine on juba seadistatud aga hetkel keelatud."
-#: ../../standalone/drakgw_.c:567
+#: ../../standalone/drakgw_.c:505
msgid "The setup has already been done, and it's currently enabled."
msgstr ""
"Internetiühenduse jagamine on juba seadistatud ja see on praegu aktiivne."
-#: ../../standalone/drakgw_.c:568
+#: ../../standalone/drakgw_.c:506
msgid "No Internet Connection Sharing has ever been configured."
msgstr "Internetiühenduse jagamist ei ole kunagi seadistatud"
-#: ../../standalone/drakgw_.c:573
+#: ../../standalone/drakgw_.c:511
msgid "Internet connection sharing configuration"
msgstr "Interneti jagamise seadistamine"
-#: ../../standalone/drakgw_.c:580
+#: ../../standalone/drakgw_.c:518
#, fuzzy, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -11580,6 +12099,158 @@ msgstr ""
"\n"
"Valige Abimehe käivitamiseks ``OK''"
+#: ../../standalone/draksound_.c:46
+#, fuzzy
+msgid "No Sound Card detected!"
+msgstr "Ei ole ühendatud"
+
+#: ../../standalone/draksound_.c:47
+msgid ""
+"No Sound Card has been detected on your machine. Please verify that a Linux-"
+"supported Sound Card is correctly plugged in.\n"
+"\n"
+"\n"
+"You can visit our hardware database at:\n"
+"\n"
+"\n"
+"http://www.linux-mandrake.com/en/hardware.php3"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:32
+msgid "package ImageMagick is required for correct working"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:76
+#, fuzzy
+msgid "first step creation"
+msgstr "Alglaadimise stiil"
+
+#: ../../standalone/draksplash_.c:77
+#, fuzzy
+msgid "final resolution"
+msgstr "Kuvatihedus"
+
+#: ../../standalone/draksplash_.c:78 ../../standalone/draksplash_.c:170
+#, fuzzy
+msgid "choose image file"
+msgstr "Valige tegevus"
+
+#: ../../standalone/draksplash_.c:79
+#, fuzzy
+msgid "Theme name"
+msgstr "Jagatav printer"
+
+#: ../../standalone/draksplash_.c:81
+msgid "make bootsplash step 2"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:82
+#, fuzzy
+msgid "go to lilosplash configuration"
+msgstr "Paigaldusjärgsed sätted"
+
+#: ../../standalone/draksplash_.c:83
+#, fuzzy
+msgid "quit"
+msgstr "Välju"
+
+#: ../../standalone/draksplash_.c:84
+#, fuzzy
+msgid "save theme"
+msgstr "Süsteemi installimine"
+
+#: ../../standalone/draksplash_.c:85
+msgid "browse"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:98 ../../standalone/draksplash_.c:159
+#, fuzzy
+msgid "Configure bootsplash picture"
+msgstr "Teenuste sätted"
+
+#: ../../standalone/draksplash_.c:99
+msgid "x coordinate of text box in number of character"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:100
+msgid "y coordinate of text box in number of character"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:101
+msgid "text width"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:102
+msgid "text box height"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:103
+msgid "the progress bar x coordinate of its upper left corner"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:104
+msgid "the progress bar y coordinate of its upper left corner"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:105
+msgid "the width of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:106
+msgid "the heigth of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:107
+msgid "the color of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:119
+#, fuzzy
+msgid "go back"
+msgstr "loopback"
+
+#: ../../standalone/draksplash_.c:120
+#, fuzzy
+msgid "preview"
+msgstr "seade"
+
+#: ../../standalone/draksplash_.c:121
+#, fuzzy
+msgid "choose color"
+msgstr "Valige monitor"
+
+#: ../../standalone/draksplash_.c:124
+msgid "Display logo on Console"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:125
+msgid "Make kernel message quiet by default"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:161 ../../standalone/draksplash_.c:330
+#, c-format
+msgid "This theme haven't yet any bootsplash in %s !"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:213
+msgid "saving Bootsplash theme..."
+msgstr ""
+
+#: ../../standalone/draksplash_.c:436
+#, fuzzy
+msgid "ProgressBar color selection"
+msgstr "Printeri ühendusviis"
+
+#: ../../standalone/draksplash_.c:454
+#, fuzzy
+msgid "You must choose an image file first!"
+msgstr "Printeri seadme URI"
+
+#: ../../standalone/draksplash_.c:463
+#, fuzzy
+msgid "Generating preview ..."
+msgstr "Otsin printerit..."
+
#: ../../standalone/drakxtv_.c:49
msgid ""
"XawTV isn't installed!\n"
@@ -11672,11 +12343,11 @@ msgid ""
msgstr ""
#: ../../standalone/drakxtv_.c:109
-msgid "TV norm :"
+msgid "TV norm:"
msgstr ""
#: ../../standalone/drakxtv_.c:110
-msgid "Area :"
+msgid "Area:"
msgstr ""
#: ../../standalone/drakxtv_.c:114
@@ -11752,7 +12423,7 @@ msgstr "Ei saa kiiruuendust alustada !!!\n"
msgid "The change is done, but to be effective you must logout"
msgstr ""
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:517
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:515
#, fuzzy
msgid "logdrake"
msgstr "DrakNet"
@@ -11932,7 +12603,7 @@ msgstr "huvitav"
#: ../../standalone/logdrake_.c:431
msgid ""
-"You will receive an alert if one of the selected service is no more running"
+"You will receive an alert if one of the selected services is no more running"
msgstr ""
#: ../../standalone/logdrake_.c:443
@@ -11954,19 +12625,19 @@ msgstr "Seadistused"
msgid "Please enter your email address below "
msgstr "Palun proovige veel"
-#: ../../standalone/logdrake_.c:499
+#: ../../standalone/logdrake_.c:497
msgid "Save as.."
msgstr "Salvesta kui..."
-#: ../../standalone/mousedrake_.c:43
+#: ../../standalone/mousedrake_.c:45
msgid "Please, choose the type of your mouse."
msgstr "Palun valige hiire tüüp"
-#: ../../standalone/mousedrake_.c:57
+#: ../../standalone/mousedrake_.c:58
msgid "Emulate third button?"
msgstr "Teeskleme keskmist hiirenuppu?"
-#: ../../standalone/printerdrake_.c:48
+#: ../../standalone/printerdrake_.c:57
#, fuzzy
msgid "Reading printer data ..."
msgstr "Loetakse CUPS juhtprogramme"
@@ -11980,34 +12651,45 @@ msgstr "Otsin printerit..."
msgid "Test ports"
msgstr "Proovin porte"
-#: ../../standalone/scannerdrake_.c:52
+#: ../../standalone/scannerdrake_.c:53 ../../standalone/scannerdrake_.c:68
+#: ../../standalone/scannerdrake_.c:81
#, c-format
-msgid "%s found on %s, configure it ?"
+msgid "The %s is not supported by this version of Mandrake Linux."
msgstr ""
+#: ../../standalone/scannerdrake_.c:56
+#, fuzzy, c-format
+msgid "%s found on %s, configure it?"
+msgstr "Kas soovite printerit seadistada?"
+
#: ../../standalone/scannerdrake_.c:59
+#, c-format
+msgid "%s is not in the scanner database, configure it manually?"
+msgstr ""
+
+#: ../../standalone/scannerdrake_.c:65
#, fuzzy
msgid "Select a scanner"
msgstr "Valige graafikakaart"
-#: ../../standalone/scannerdrake_.c:79
+#: ../../standalone/scannerdrake_.c:93
#, c-format
msgid "This %s scanner is unsupported"
msgstr ""
-#: ../../standalone/scannerdrake_.c:93
+#: ../../standalone/scannerdrake_.c:107
#, c-format
msgid ""
"Scannerdrake was not able to detect your %s scanner.\n"
"Please select the device where your scanner is plugged"
msgstr ""
-#: ../../standalone/scannerdrake_.c:95
+#: ../../standalone/scannerdrake_.c:109
#, fuzzy
msgid "choose device"
msgstr "Alglaadimisseade"
-#: ../../standalone/scannerdrake_.c:101
+#: ../../standalone/scannerdrake_.c:115
#, c-format
msgid ""
"This %s scanner must be configured by printerdrake.\n"
@@ -12015,7 +12697,7 @@ msgid ""
"section."
msgstr ""
-#: ../../standalone/scannerdrake_.c:106
+#: ../../standalone/scannerdrake_.c:120
#, c-format
msgid ""
"Your %s scanner has been configured.\n"
@@ -12023,49 +12705,18 @@ msgid ""
"applications menu."
msgstr ""
-#: ../../standalone/service_harddrake_.c:57
+#: ../../standalone/service_harddrake_.c:39
#, c-format
msgid "Some devices in the \"%s\" hardware class were removed:\n"
msgstr ""
-#: ../../standalone/service_harddrake_.c:61
+#: ../../standalone/service_harddrake_.c:43
#, c-format
msgid ""
"\n"
"Some devices in the %s class were added:\n"
msgstr ""
-#
-#: ../../standalone/tinyfirewall_.c:30
-msgid "Firewalling Configuration"
-msgstr "Tulemüüri sätted"
-
-#: ../../standalone/tinyfirewall_.c:43
-msgid "Firewalling configuration"
-msgstr "Tulemüüri sätted"
-
-#: ../../standalone/tinyfirewall_.c:78
-msgid ""
-"Firewalling\n"
-"\n"
-"You already have set up a firewall.\n"
-"Click on Configure to change or remove the firewall"
-msgstr ""
-"Tulemüür\n"
-"\n"
-"Tulemüüri olete juba seadistanud.\n"
-"Valige 'Seadista', et midagi muuta"
-
-#: ../../standalone/tinyfirewall_.c:82
-msgid ""
-"Firewalling\n"
-"\n"
-"Click on Configure to set up a standard firewall"
-msgstr ""
-"Tulemüür\n"
-"\n"
-"Valige 'Seadista', selle seadistamiseks nüüd"
-
#: ../../steps.pm_.c:14
msgid "Choose your language"
msgstr "Valige sobiv keel"
@@ -12139,211 +12790,7 @@ msgstr "Süsteemi installimine"
msgid "Exit install"
msgstr "Välju programmist"
-#: ../../tinyfirewall.pm_.c:9
-msgid ""
-"tinyfirewall configurator\n"
-"\n"
-"This configures a personal firewall for this Mandrake Linux machine.\n"
-"For a powerful dedicated firewall solution, please look to the\n"
-"specialized MandrakeSecurity Firewall distribution."
-msgstr ""
-"tinyfirewall seadistamine\n"
-"\n"
-"Selle vahendiga saate luua lihtsa kaitse Interneti ohtude vastu.\n"
-"Kui vajate vőimsat tulemüüri, vaadake palun\n"
-"spetsiaalset MandrakeSecurity Firewall distributsiooni."
-
-#: ../../tinyfirewall.pm_.c:14
-msgid ""
-"We'll now ask you questions about which services you'd like to allow\n"
-"the Internet to connect to. Please think carefully about these\n"
-"questions, as your computer's security is important.\n"
-"\n"
-"Please, if you're not currently using one of these services, firewall\n"
-"it off. You can change this configuration anytime you like by\n"
-"re-running this application!"
-msgstr ""
-"Nüüd küsitakse Teilt millistele teenustele soovite lubada ligipääsu\n"
-"Internetist. Palun mőelge hoolega, nende vastuste üle, sest tegu on\n"
-"ju Teie arvuti turvalisusega.\n"
-"\n"
-"Palun, kui te ei soovi hetkel mőnd neist kasutada, pange see igaks\n"
-"juhuks tulemüüri taha. Hiljem on Teil soovi korral vaba voli kőike\n"
-"uuesti lubada."
-
-#: ../../tinyfirewall.pm_.c:21
-msgid ""
-"Are you running a web server on this machine that you need the whole\n"
-"Internet to see? If you are running a webserver that only needs to be\n"
-"accessed by this machine, you can safely answer NO here.\n"
-"\n"
-msgstr ""
-"Kas sellel arvutil hakkab tööle veebiserver, mida külastatakse kogu\n"
-"Internetist? Kui vajate ligipääsu vaid samast arvutist, vastake\n"
-"siin EI.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:26
-msgid ""
-"Are you running a name server on this machine? If you didn't set one\n"
-"up to give away IP and zone information to the whole Internet, please\n"
-"answer no.\n"
-"\n"
-msgstr ""
-"Kas sellel arvutil hakkab tööle nimeserver? Kui Te seda ei soovi\n"
-"siis vastake palun ei.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:31
-msgid ""
-"Do you want to allow incoming Secure Shell (ssh) connections? This\n"
-"is a telnet-replacement that you might use to login. If you're using\n"
-"telnet now, you should definitely switch to ssh. telnet is not\n"
-"encrypted -- so some attackers can steal your password if you use\n"
-"it. ssh is encrypted and doesn't allow for this eavesdropping."
-msgstr ""
-"Kas soovite sisenevaid SSH ühendusi? SSH on turvaline asendus telnetile.\n"
-"Telneti kaudu üle vőrgu masinasse sisenemine on äärmisel ebaturvaline\n"
-"kuna sel teel on lihtsate vahenditega vőimalik vőrgus paroole varastada.\n"
-"SSH korral on ühendus krüptitud ja pealtkuulamine praktiliselt välistatud."
-
-#: ../../tinyfirewall.pm_.c:36
-msgid ""
-"Do you want to allow incoming telnet connections?\n"
-"This is horribly unsafe, as we explained in the previous screen. We\n"
-"strongly recommend answering No here and using ssh in place of\n"
-"telnet.\n"
-msgstr ""
-"Kas soovite lubada sisenevaid telneti ühendusi?\n"
-"See on tőeliselt ebaturvaline, vastake siin palun Ei ja kasutage\n"
-"telneti asemel SSH-d.\n"
-
-#: ../../tinyfirewall.pm_.c:41
-msgid ""
-"Are you running an FTP server here that you need accessible to the\n"
-"Internet? If you are, we strongly recommend that you only use it for\n"
-"Anonymous transfers. Any passwords sent by FTP can be stolen by some\n"
-"attackers, since FTP also uses no encryption for transferring passwords.\n"
-msgstr ""
-"Kas soovite sellel arvuti käivitada avaliku FTP serveri? Kui see on\n"
-"tőesti Teie soov, siis lubage palun ainult anonüümne ligipääs, sest\n"
-"muul juhul tekib jälle paroolide varastamise oht, sest FTP ei tunne\n"
-"krüptimist.\n"
-
-#: ../../tinyfirewall.pm_.c:46
-msgid ""
-"Are you running a mail server here? If you're sending you \n"
-"messages through pine, mutt or any other text-based mail client,\n"
-"you probably are. Otherwise, you should firewall this off.\n"
-"\n"
-msgstr ""
-"Kas Teil on jooksmas avalik meiliserver? Vastasel juhul on\n"
-"palju turvalisem siia tulemü ette panna.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:51
-msgid ""
-"Are you running a POP or IMAP server here? This would\n"
-"be used to host non-web-based mail accounts for people via \n"
-"this machine.\n"
-"\n"
-msgstr ""
-"Kas vajate sellel masinal POP vői IMAP serverit?\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:56
-msgid ""
-"You appear to be running a 2.2 kernel. If your network IP\n"
-"is automatically set by a computer in your home or office \n"
-"(dynamically assigned), we need to allow for this. Is\n"
-"this the case?\n"
-msgstr ""
-"Teil on kasutusel 2.2 kernel. Kui IP aadress antakse Teie arvutile\n"
-"dünaamiliselt, siis peaks seda siinkohal lubama.\n"
-
-#: ../../tinyfirewall.pm_.c:61
-msgid ""
-"Is your computer getting time syncronized to another computer?\n"
-"Mostly, this is used by medium-large Unix/Linux organizations\n"
-"to synchronize time for logging and such. If you're not part\n"
-"of a larger office and haven't heard of this, you probably \n"
-"aren't."
-msgstr ""
-"Kas see arvuti kuulub vőrku, millest masinad sünkroniseerivad\n"
-"omavahel kellaaega? Tőenäoliselt vőite selle rahulikult keelata."
-
-#: ../../tinyfirewall.pm_.c:66
-msgid ""
-"Configuration complete. May we write these changes to disk?\n"
-"\n"
-"\n"
-"\n"
-msgstr ""
-"Seadistused tehtud. Kas salvestada sätted kettale?\n"
-"\n"
-"\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:82
-#, fuzzy, c-format
-msgid "Can't open %s: %s\n"
-msgstr "Vőrgukaart %s: %s"
-
-#: ../../tinyfirewall.pm_.c:84
-#, fuzzy, c-format
-msgid "Can't open %s for writing: %s\n"
-msgstr "Seadme %s avamine kirjutamiseks ebaőnnestus: %s"
-
-#: ../../tinyfirewall.pm_.c:178
-msgid "No I don't need DHCP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:178
-msgid "Yes I need DHCP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:179
-msgid "No I don't need NTP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:179
-msgid "Yes I need NTP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:180 ../../tinyfirewall.pm_.c:184
-msgid "Don't Save"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:180 ../../tinyfirewall.pm_.c:184
-#: ../../tinyfirewall.pm_.c:204
-msgid "Save & Quit"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:195 ../../tinyfirewall.pm_.c:199
-msgid "Firewall Configuration Wizard"
-msgstr "Vőrgu sätete abimees"
-
-#: ../../tinyfirewall.pm_.c:197
-msgid "No (firewall this off from the internet)"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:198
-msgid "Yes (allow this through the firewall)"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:230
-#, fuzzy
-msgid "Please Wait... Verifying installed packages"
-msgstr "Palun oodake, valmistun installimiseks"
-
-#: ../../tinyfirewall.pm_.c:236
-#, c-format
-msgid ""
-"Failure installing the needed packages : %s and Bastille.\n"
-" Try to install them manually."
-msgstr ""
-
-#: ../../ugtk.pm_.c:619
+#: ../../ugtk.pm_.c:594
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr ""
@@ -12476,6 +12923,10 @@ msgid "Graphical Environment"
msgstr "Graafiline keskkond"
#: ../../share/compssUsers:999
+msgid "Development"
+msgstr "Arendus"
+
+#: ../../share/compssUsers:999
msgid "Apache, Pro-ftpd"
msgstr "Apache ja Pro-ftpd"
@@ -12585,93 +13036,175 @@ msgstr "Multimeedia - CD kirjutamine"
msgid "Scientific Workstation"
msgstr "Teadustööjaam"
-#~ msgid "$mode: $warning"
-#~ msgstr "$mode: $warning"
+#~ msgid "LBA (doesn't work on old BIOSes)"
+#~ msgstr "LBA (ei tööta vanema BIOSi korral)"
+
+#~ msgid "You don't have any partitions!"
+#~ msgstr "Teil ei ole ühtki partitsiooni!"
-#, fuzzy
#~ msgid ""
-#~ "This level is to be used with care. It makes your system more easy to "
-#~ "use,\n"
-#~ " but very sensitive: it must not be used for a machine "
-#~ "connected to others\n"
-#~ " or to the Internet. There is no password access."
+#~ "DiskDrake failed to read correctly the partition table.\n"
+#~ "Continue at your own risk!"
#~ msgstr ""
-#~ "Seda tase muudab küll süsteemi lihtsalt kasutatavaks, kui väga\n"
-#~ "haavatavaks: ligipääsupiirangute puudumise tőttu ei peaks arvutit "
-#~ "ühendama\n"
-#~ "ei teiste arvutitega ega ka mitte Internetti."
+#~ "DiskDrake ei saanud partitsioonitabeli lugemisega hakkama.\n"
+#~ "Jätkate omal vastutusel!"
-#, fuzzy
#~ msgid ""
-#~ "With this security level, the use of this system as a server becomes "
-#~ "possible.\n"
-#~ " The security is now high enough to use the system as a "
-#~ "server which can accept\n"
-#~ " connections from many clients. Note: if your machine is "
-#~ "only a client on the Internet, you should choose a lower level."
-#~ msgstr "Sellel turvatasemel vőib süsteemi kasutada Internetis ka serverina."
+#~ "I can't read your partition table, it's too corrupted for me :(\n"
+#~ "I'll try to go on blanking bad partitions"
+#~ msgstr ""
+#~ "Partitsioonitabel on loetamatu, liiga rikutud DrakX-i jaoks :(\n"
+#~ "Proovin loetamatud kirjed puhastada"
-#, fuzzy
-#~ msgid "Basic Options"
-#~ msgstr "Eelistused"
+#
+#~ msgid "Firewalling Configuration"
+#~ msgstr "Tulemüüri sätted"
-#, fuzzy
-#~ msgid "Security Checks"
-#~ msgstr "Turvalisus"
+#~ msgid "Firewalling configuration"
+#~ msgstr "Tulemüüri sätted"
-#, fuzzy
-#~ msgid "Please choose your CD space"
-#~ msgstr "Palun valige klaviatuuriasetus"
+#~ msgid ""
+#~ "Firewalling\n"
+#~ "\n"
+#~ "You already have set up a firewall.\n"
+#~ "Click on Configure to change or remove the firewall"
+#~ msgstr ""
+#~ "Tulemüür\n"
+#~ "\n"
+#~ "Tulemüüri olete juba seadistanud.\n"
+#~ "Valige 'Seadista', et midagi muuta"
-#, fuzzy
-#~ msgid "Please enter the cd writer speed"
-#~ msgstr "Palun testige hiirt"
+#~ msgid ""
+#~ "Firewalling\n"
+#~ "\n"
+#~ "Click on Configure to set up a standard firewall"
+#~ msgstr ""
+#~ "Tulemüür\n"
+#~ "\n"
+#~ "Valige 'Seadista', selle seadistamiseks nüüd"
-#, fuzzy
-#~ msgid "Please check if you want to include install boot on your CD."
-#~ msgstr "Palun valige paketid installimiseks"
+#~ msgid ""
+#~ "We'll now ask you questions about which services you'd like to allow\n"
+#~ "the Internet to connect to. Please think carefully about these\n"
+#~ "questions, as your computer's security is important.\n"
+#~ "\n"
+#~ "Please, if you're not currently using one of these services, firewall\n"
+#~ "it off. You can change this configuration anytime you like by\n"
+#~ "re-running this application!"
+#~ msgstr ""
+#~ "Nüüd küsitakse Teilt millistele teenustele soovite lubada ligipääsu\n"
+#~ "Internetist. Palun mőelge hoolega, nende vastuste üle, sest tegu on\n"
+#~ "ju Teie arvuti turvalisusega.\n"
+#~ "\n"
+#~ "Palun, kui te ei soovi hetkel mőnd neist kasutada, pange see igaks\n"
+#~ "juhuks tulemüüri taha. Hiljem on Teil soovi korral vaba voli kőike\n"
+#~ "uuesti lubada."
-#, fuzzy
-#~ msgid "Url should begin with 'ftp:'"
-#~ msgstr "Vahendaja peab olema kujul ftp://..."
+#~ msgid ""
+#~ "Are you running a web server on this machine that you need the whole\n"
+#~ "Internet to see? If you are running a webserver that only needs to be\n"
+#~ "accessed by this machine, you can safely answer NO here.\n"
+#~ "\n"
+#~ msgstr ""
+#~ "Kas sellel arvutil hakkab tööle veebiserver, mida külastatakse kogu\n"
+#~ "Internetist? Kui vajate ligipääsu vaid samast arvutist, vastake\n"
+#~ "siin EI.\n"
+#~ "\n"
-#, fuzzy
#~ msgid ""
-#~ "Please check if you want to include\n"
-#~ " install boot on your CD."
-#~ msgstr "Palun valige paketid installimiseks"
+#~ "Are you running a name server on this machine? If you didn't set one\n"
+#~ "up to give away IP and zone information to the whole Internet, please\n"
+#~ "answer no.\n"
+#~ "\n"
+#~ msgstr ""
+#~ "Kas sellel arvutil hakkab tööle nimeserver? Kui Te seda ei soovi\n"
+#~ "siis vastake palun ei.\n"
+#~ "\n"
-#, fuzzy
-#~ msgid "Windows PDC"
-#~ msgstr "Eemalda Windows(TM)"
+#~ msgid ""
+#~ "Do you want to allow incoming Secure Shell (ssh) connections? This\n"
+#~ "is a telnet-replacement that you might use to login. If you're using\n"
+#~ "telnet now, you should definitely switch to ssh. telnet is not\n"
+#~ "encrypted -- so some attackers can steal your password if you use\n"
+#~ "it. ssh is encrypted and doesn't allow for this eavesdropping."
+#~ msgstr ""
+#~ "Kas soovite sisenevaid SSH ühendusi? SSH on turvaline asendus telnetile.\n"
+#~ "Telneti kaudu üle vőrgu masinasse sisenemine on äärmisel ebaturvaline\n"
+#~ "kuna sel teel on lihtsate vahenditega vőimalik vőrgus paroole varastada.\n"
+#~ "SSH korral on ühendus krüptitud ja pealtkuulamine praktiliselt välistatud."
-#, fuzzy
-#~ msgid "Tamil"
-#~ msgstr "Tabel"
+#~ msgid ""
+#~ "Do you want to allow incoming telnet connections?\n"
+#~ "This is horribly unsafe, as we explained in the previous screen. We\n"
+#~ "strongly recommend answering No here and using ssh in place of\n"
+#~ "telnet.\n"
+#~ msgstr ""
+#~ "Kas soovite lubada sisenevaid telneti ühendusi?\n"
+#~ "See on tőeliselt ebaturvaline, vastake siin palun Ei ja kasutage\n"
+#~ "telneti asemel SSH-d.\n"
-#, fuzzy
-#~ msgid "PDC Server Name"
-#~ msgstr "NIS server:"
+#~ msgid ""
+#~ "Are you running an FTP server here that you need accessible to the\n"
+#~ "Internet? If you are, we strongly recommend that you only use it for\n"
+#~ "Anonymous transfers. Any passwords sent by FTP can be stolen by some\n"
+#~ "attackers, since FTP also uses no encryption for transferring passwords.\n"
+#~ msgstr ""
+#~ "Kas soovite sellel arvuti käivitada avaliku FTP serveri? Kui see on\n"
+#~ "tőesti Teie soov, siis lubage palun ainult anonüümne ligipääs, sest\n"
+#~ "muul juhul tekib jälle paroolide varastamise oht, sest FTP ei tunne\n"
+#~ "krüptimist.\n"
-#, fuzzy
-#~ msgid "Set up printer manually"
-#~ msgstr "Vőrguprinter"
+#~ msgid ""
+#~ "Are you running a mail server here? If you're sending you \n"
+#~ "messages through pine, mutt or any other text-based mail client,\n"
+#~ "you probably are. Otherwise, you should firewall this off.\n"
+#~ "\n"
+#~ msgstr ""
+#~ "Kas Teil on jooksmas avalik meiliserver? Vastasel juhul on\n"
+#~ "palju turvalisem siia tulemü ette panna.\n"
+#~ "\n"
-#, fuzzy
-#~ msgid "Installing HPOJ package..."
-#~ msgstr "Paketi %s installimine"
+#~ msgid ""
+#~ "Are you running a POP or IMAP server here? This would\n"
+#~ "be used to host non-web-based mail accounts for people via \n"
+#~ "this machine.\n"
+#~ "\n"
+#~ msgstr ""
+#~ "Kas vajate sellel masinal POP vői IMAP serverit?\n"
+#~ "\n"
-#, fuzzy
-#~ msgid "Installing SANE packages..."
-#~ msgstr "Paketi %s installimine"
+#~ msgid ""
+#~ "You appear to be running a 2.2 kernel. If your network IP\n"
+#~ "is automatically set by a computer in your home or office \n"
+#~ "(dynamically assigned), we need to allow for this. Is\n"
+#~ "this the case?\n"
+#~ msgstr ""
+#~ "Teil on kasutusel 2.2 kernel. Kui IP aadress antakse Teie arvutile\n"
+#~ "dünaamiliselt, siis peaks seda siinkohal lubama.\n"
-#, fuzzy
-#~ msgid "Installing mtools packages..."
-#~ msgstr "Paketi %s installimine"
+#~ msgid ""
+#~ "Is your computer getting time syncronized to another computer?\n"
+#~ "Mostly, this is used by medium-large Unix/Linux organizations\n"
+#~ "to synchronize time for logging and such. If you're not part\n"
+#~ "of a larger office and haven't heard of this, you probably \n"
+#~ "aren't."
+#~ msgstr ""
+#~ "Kas see arvuti kuulub vőrku, millest masinad sünkroniseerivad\n"
+#~ "omavahel kellaaega? Tőenäoliselt vőite selle rahulikult keelata."
-#, fuzzy
-#~ msgid "Making printer port available for CUPS..."
-#~ msgstr "Loetakse CUPS juhtprogramme"
+#~ msgid ""
+#~ "Configuration complete. May we write these changes to disk?\n"
+#~ "\n"
+#~ "\n"
+#~ "\n"
+#~ msgstr ""
+#~ "Seadistused tehtud. Kas salvestada sätted kettale?\n"
+#~ "\n"
+#~ "\n"
+#~ "\n"
+
+#~ msgid "Firewall Configuration Wizard"
+#~ msgstr "Vőrgu sätete abimees"
#~ msgid "Control Center"
#~ msgstr "Juhtimiskeskus"
@@ -12749,9 +13282,6 @@ msgstr "Teadustööjaam"
#~ msgid "Select a graphics card"
#~ msgstr "Valige graafikakaart"
-#~ msgid "Warning: testing this graphics card may freeze your computer"
-#~ msgstr "Hoiatus: testimine vőib Teie arvuti peatada"
-
#~ msgid "Standard VGA, 640x480 at 60 Hz"
#~ msgstr "VGA, 640x400 sagedusel 60 Hz"
@@ -12909,9 +13439,6 @@ msgstr "Teadustööjaam"
#~ "Mis porti on Teie printer ühendatud? \n"
#~ "(paneme tähele, et /dev/lp0 on sama mis LPT1:)?\n"
-#~ msgid "$_"
-#~ msgstr "$_"
-
#~ msgid ""
#~ "Warning, the network adapter is already configured. I will reconfigure it."
#~ msgstr ""
@@ -14157,9 +14684,6 @@ msgstr "Teadustööjaam"
#~ "\n"
#~ "Jätkamisel olen sunnitud Teie %s keskkonna seiskama"
-#~ msgid "loopback"
-#~ msgstr "loopback"
-
#~ msgid "Which bootloader(s) do you want to use?"
#~ msgstr "Millist alglaadurit soovite kasutada?"
@@ -14376,9 +14900,6 @@ msgstr "Teadustööjaam"
#~ msgid "I have found an ISDN Card:\n"
#~ msgstr "Leitud ISDN kaart:\n"
-#~ msgid "Other countries"
-#~ msgstr "Muud maad"
-
#~ msgid "In which country are you located ?"
#~ msgstr "Millisel maal Te praegu olete ?"
@@ -14425,9 +14946,6 @@ msgstr "Teadustööjaam"
#~ msgid "Could not install caching-nameserver RPM with urpmi."
#~ msgstr "Ei saa installida nimeserveri vahendajat urpmi abil."
-#~ msgid "Reconfigure local network"
-#~ msgstr "Seadista kohtvőrk uuesti"
-
#~ msgid ""
#~ "Your computer can be configured to share its Internet connection.\n"
#~ "\n"
@@ -14986,10 +15504,6 @@ msgstr "Teadustööjaam"
#~ "%s\n"
#~ "\n"
-#
-#~ msgid "Everything configured!"
-#~ msgstr "Kőik seadistatud!"
-
#~ msgid "What is your keyboard layout?"
#~ msgstr "Milline on Teie klaviatuuriasetus"
diff --git a/perl-install/share/po/eu.po b/perl-install/share/po/eu.po
index 6cd53a3eb..024e95d16 100644
--- a/perl-install/share/po/eu.po
+++ b/perl-install/share/po/eu.po
@@ -1,4 +1,4 @@
-# EUSKARA: Mandrake itzulpena.
+# EUSKARA: Mandrake translation.
# Copyright (C) 2002 Free Software Foundation, Inc.
# Ińigo Salvador Azurmendi <xalba@euskalnet.net>, 2001-2002.
# Josu Walińo <josu@elhuyar.com>, 2002
@@ -6,8 +6,8 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2002-08-21 15:44+0200\n"
-"PO-Revision-Date: 2002-07-22 18:53+0200\n"
+"POT-Creation-Date: 2002-09-02 20:14+0200\n"
+"PO-Revision-Date: 2002-08-28 00:51+0200\n"
"Last-Translator: Ińigo Salvador Azurmendi <xalba@euskalnet.net>\n"
"Language-Team: Euskara <linux-eu@chanae.alphanet.ch>\n"
"MIME-Version: 1.0\n"
@@ -51,19 +51,19 @@ msgstr "32 MB"
msgid "64 MB or more"
msgstr "64 MB edo gehiago"
-#: ../../Xconfig/card.pm_.c:201
+#: ../../Xconfig/card.pm_.c:203
msgid "Choose a X server"
msgstr "Aukeratu X zerbitzaria"
-#: ../../Xconfig/card.pm_.c:201
+#: ../../Xconfig/card.pm_.c:203
msgid "X server"
msgstr "X zerbitzaria"
-#: ../../Xconfig/card.pm_.c:228
+#: ../../Xconfig/card.pm_.c:230
msgid "Multi-head configuration"
msgstr "Buru anitzeko konfigurazioa"
-#: ../../Xconfig/card.pm_.c:229
+#: ../../Xconfig/card.pm_.c:231
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
@@ -71,27 +71,27 @@ msgstr ""
"Zure sistemak buru anitzeko konfigurazioa onartzen du.\n"
"Zer egin nahi duzu?"
-#: ../../Xconfig/card.pm_.c:284
+#: ../../Xconfig/card.pm_.c:286
msgid "Select the memory size of your graphics card"
msgstr "Hautatu txartel grafikoaren memoria-tamaina"
-#: ../../Xconfig/card.pm_.c:345
+#: ../../Xconfig/card.pm_.c:347
msgid "XFree configuration"
msgstr "XFree konfigurazioa"
-#: ../../Xconfig/card.pm_.c:347
+#: ../../Xconfig/card.pm_.c:349
msgid "Which configuration of XFree do you want to have?"
msgstr "XFree-ren zein konfigurazio izan nahi duzu?"
-#: ../../Xconfig/card.pm_.c:379
+#: ../../Xconfig/card.pm_.c:381
msgid "Configure all heads independently"
msgstr "Buru guztiak independenteki konfiguratu"
-#: ../../Xconfig/card.pm_.c:380
+#: ../../Xconfig/card.pm_.c:382
msgid "Use Xinerama extension"
msgstr "Erabili Xinerama hedapena"
-#: ../../Xconfig/card.pm_.c:384
+#: ../../Xconfig/card.pm_.c:386
#, c-format
msgid "Configure only card \"%s\"%s"
msgstr "Konfiguratu \"%s\"%s txartela soilik"
@@ -102,13 +102,13 @@ msgstr "Konfiguratu \"%s\"%s txartela soilik"
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:435
+#: ../../Xconfig/card.pm_.c:410 ../../Xconfig/card.pm_.c:436
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s with 3D hardware acceleration"
msgstr "XFree %s 3D hardware-azelerazioarekin"
-#: ../../Xconfig/card.pm_.c:412
+#: ../../Xconfig/card.pm_.c:413
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -119,19 +119,19 @@ msgstr ""
"Zure txartelak XFree %s euskarria du, eta horrek euskarri hobea izan dezake "
"2Dan."
-#: ../../Xconfig/card.pm_.c:414 ../../Xconfig/card.pm_.c:437
+#: ../../Xconfig/card.pm_.c:415 ../../Xconfig/card.pm_.c:438
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr ""
"Zure txartelak 3D hardware-azelerazioaren euskarria izan dezake XFree %s(r)"
"ekin."
-#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:443
+#: ../../Xconfig/card.pm_.c:423 ../../Xconfig/card.pm_.c:444
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s 3D hardware-azelerazio ESPERIMENTALAREKIN"
-#: ../../Xconfig/card.pm_.c:425
+#: ../../Xconfig/card.pm_.c:426
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -144,7 +144,7 @@ msgstr ""
"Zure txartelak XFree %s euskarria du, eta horrek euskarri hobea izan dezake "
"2Dan."
-#: ../../Xconfig/card.pm_.c:428 ../../Xconfig/card.pm_.c:445
+#: ../../Xconfig/card.pm_.c:429 ../../Xconfig/card.pm_.c:446
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
@@ -154,53 +154,53 @@ msgstr ""
"ekin,\n"
"KONTUAN IZAN EUSKARRI ESPERIMENTALA DELA ETA ORDENAGAILUA BLOKEA DEZAKEELA."
-#: ../../Xconfig/card.pm_.c:451
+#: ../../Xconfig/card.pm_.c:452
msgid "Xpmac (installation display driver)"
msgstr "Xpmac (instalazioaren bistaratze-kontrolatzailea)"
-#: ../../Xconfig/main.pm_.c:78 ../../Xconfig/main.pm_.c:79
-#: ../../Xconfig/monitor.pm_.c:94 ../../any.pm_.c:974
+#: ../../Xconfig/main.pm_.c:76 ../../Xconfig/main.pm_.c:77
+#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:977
msgid "Custom"
msgstr "Pertsonalizatua"
-#: ../../Xconfig/main.pm_.c:104
-#, fuzzy
+#: ../../Xconfig/main.pm_.c:102
msgid "Graphic Card"
-msgstr "Txartel grafikoa"
+msgstr "Txartela grafikoa"
-#: ../../Xconfig/main.pm_.c:107 ../../Xconfig/monitor.pm_.c:91
+#: ../../Xconfig/main.pm_.c:105 ../../Xconfig/monitor.pm_.c:93
msgid "Monitor"
msgstr "Monitorea"
-#: ../../Xconfig/main.pm_.c:110 ../../Xconfig/resolution_and_depth.pm_.c:209
+#: ../../Xconfig/main.pm_.c:108 ../../Xconfig/resolution_and_depth.pm_.c:209
msgid "Resolution"
msgstr "Bereizmena"
-#: ../../Xconfig/main.pm_.c:114
+#: ../../Xconfig/main.pm_.c:113
msgid "Test"
-msgstr ""
+msgstr "Froga"
-#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:59
-#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/removable.pm_.c:25
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:63
+#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/removable.pm_.c:25
#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "Aukerak"
#: ../../Xconfig/main.pm_.c:121 ../../Xconfig/resolution_and_depth.pm_.c:268
-#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:281
+#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:275
#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
-#: ../../interactive.pm_.c:351 ../../interactive/http.pm_.c:104
+#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:104
#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
-#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:156
-#: ../../my_gtk.pm_.c:284 ../../my_gtk.pm_.c:307
-#: ../../standalone/drakbackup_.c:3324 ../../standalone/drakbackup_.c:3419
-#: ../../standalone/drakbackup_.c:3438
+#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:159
+#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310
+#: ../../standalone/drakbackup_.c:3972 ../../standalone/drakbackup_.c:4067
+#: ../../standalone/drakbackup_.c:4086
msgid "Ok"
msgstr "Ados"
#: ../../Xconfig/main.pm_.c:121 ../../diskdrake/dav.pm_.c:24
-#: ../../printerdrake.pm_.c:2933 ../../standalone/logdrake_.c:224
+#: ../../harddrake/ui.pm_.c:98 ../../printerdrake.pm_.c:3155
+#: ../../standalone/logdrake_.c:224
msgid "Quit"
msgstr "Irten"
@@ -217,27 +217,27 @@ msgstr ""
"\n"
"%s"
-#: ../../Xconfig/monitor.pm_.c:91
+#: ../../Xconfig/monitor.pm_.c:93
msgid "Choose a monitor"
msgstr "Aukeratu monitorea"
-#: ../../Xconfig/monitor.pm_.c:95
+#: ../../Xconfig/monitor.pm_.c:97
msgid "Plug'n Play"
-msgstr ""
+msgstr "Plug'n Play"
-#: ../../Xconfig/monitor.pm_.c:96 ../../mouse.pm_.c:45
+#: ../../Xconfig/monitor.pm_.c:98 ../../mouse.pm_.c:46
msgid "Generic"
msgstr "Generikoa"
-#: ../../Xconfig/monitor.pm_.c:97 ../../harddrake/ui.pm_.c:36
+#: ../../Xconfig/monitor.pm_.c:99 ../../harddrake/ui.pm_.c:37
msgid "Vendor"
msgstr "Saltzailea"
-#: ../../Xconfig/monitor.pm_.c:107
+#: ../../Xconfig/monitor.pm_.c:109
msgid "Plug'n Play probing failed. Please choose a precise monitor"
-msgstr ""
+msgstr "Plug'n Play frogak hutsegin du. Mesedez hautatu monitore zehatz bat"
-#: ../../Xconfig/monitor.pm_.c:112
+#: ../../Xconfig/monitor.pm_.c:114
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -260,11 +260,11 @@ msgstr ""
" handiagoko monitorerik ez zehaztea: monitorea honda dezakezu.\n"
" Zalantzarik baduzu, aukeratu ezarpen kontserbadore bat."
-#: ../../Xconfig/monitor.pm_.c:119
+#: ../../Xconfig/monitor.pm_.c:121
msgid "Horizontal refresh rate"
msgstr "Freskatze-maiztasun horizontala"
-#: ../../Xconfig/monitor.pm_.c:120
+#: ../../Xconfig/monitor.pm_.c:122
msgid "Vertical refresh rate"
msgstr "Freskatze-maiztasun bertikala"
@@ -301,36 +301,41 @@ msgstr "Aukeratu bereizmena eta kolorearen sakonera"
msgid "Graphics card: %s"
msgstr "Txartel grafikoa: %s"
-#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1015
-#: ../../bootlook.pm_.c:334 ../../diskdrake/smbnfs_gtk.pm_.c:87
-#: ../../install_steps_gtk.pm_.c:412 ../../install_steps_gtk.pm_.c:470
-#: ../../install_steps_interactive.pm_.c:576 ../../interactive.pm_.c:142
-#: ../../interactive.pm_.c:351 ../../interactive/http.pm_.c:105
+#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1018
+#: ../../bootlook.pm_.c:338 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:406 ../../install_steps_gtk.pm_.c:464
+#: ../../install_steps_interactive.pm_.c:560 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:105
#: ../../interactive/newt.pm_.c:174 ../../interactive/stdio.pm_.c:39
-#: ../../interactive/stdio.pm_.c:143 ../../my_gtk.pm_.c:155
-#: ../../my_gtk.pm_.c:159 ../../my_gtk.pm_.c:284
-#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1990
-#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3278
-#: ../../standalone/drakbackup_.c:3311 ../../standalone/drakbackup_.c:3337
-#: ../../standalone/drakbackup_.c:3364 ../../standalone/drakbackup_.c:3391
-#: ../../standalone/drakbackup_.c:3451 ../../standalone/drakbackup_.c:3478
-#: ../../standalone/drakbackup_.c:3504 ../../standalone/drakconnect_.c:115
-#: ../../standalone/drakconnect_.c:147 ../../standalone/drakconnect_.c:289
-#: ../../standalone/drakconnect_.c:537 ../../standalone/drakconnect_.c:679
-#: ../../standalone/drakfloppy_.c:234 ../../standalone/drakfloppy_.c:383
-#: ../../standalone/drakfont_.c:970 ../../standalone/drakgw_.c:598
-#: ../../standalone/logdrake_.c:224 ../../standalone/logdrake_.c:528
-#: ../../standalone/tinyfirewall_.c:64
+#: ../../interactive/stdio.pm_.c:143 ../../my_gtk.pm_.c:158
+#: ../../my_gtk.pm_.c:162 ../../my_gtk.pm_.c:287
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:2124
+#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3926
+#: ../../standalone/drakbackup_.c:3959 ../../standalone/drakbackup_.c:3985
+#: ../../standalone/drakbackup_.c:4012 ../../standalone/drakbackup_.c:4039
+#: ../../standalone/drakbackup_.c:4099 ../../standalone/drakbackup_.c:4126
+#: ../../standalone/drakbackup_.c:4156 ../../standalone/drakbackup_.c:4182
+#: ../../standalone/drakconnect_.c:115 ../../standalone/drakconnect_.c:147
+#: ../../standalone/drakconnect_.c:289 ../../standalone/drakconnect_.c:537
+#: ../../standalone/drakconnect_.c:679 ../../standalone/drakfloppy_.c:234
+#: ../../standalone/drakfloppy_.c:383 ../../standalone/drakfont_.c:970
+#: ../../standalone/drakgw_.c:536 ../../standalone/logdrake_.c:224
+#: ../../standalone/logdrake_.c:526
msgid "Cancel"
msgstr "Utzi"
-#: ../../Xconfig/test.pm_.c:26
+#: ../../Xconfig/test.pm_.c:30
+msgid "Test of the configuration"
+msgstr "Konfigurazioaren proba"
+
+#: ../../Xconfig/test.pm_.c:31
msgid "Do you want to test the configuration?"
msgstr "Konfigurazioa probatu nahi duzu?"
-#: ../../Xconfig/test.pm_.c:26
-msgid "Test of the configuration"
-msgstr "Konfigurazioaren proba"
+#: ../../Xconfig/test.pm_.c:31
+#, fuzzy
+msgid "Warning: testing this graphic card may freeze your computer"
+msgstr "Kontuz: txartel grafiko hau probatzean ordenagailua blokea daiteke"
#: ../../Xconfig/various.pm_.c:29
#, c-format
@@ -416,11 +421,18 @@ msgid ""
"\n"
"Do you have this feature?"
msgstr ""
+"Dirudienez zure txartela grafikoak TV-OUT konektorea dauka.\n"
+"Frame-bufferra erabiliz lanegin dezan konfiguratu daiteke.\n"
+"\n"
+"Honetarako txartela grafikoa TBri lotu behar diozu konputagailua abiatu "
+"aurretik.\n"
+"Ondoren hautatu \"TVout\" sarrera abiapen-zamatzailean\n"
+"\n"
+"Ezaugarri hau badaukazu?"
#: ../../Xconfig/various.pm_.c:84
-#, fuzzy
msgid "What norm is your TV using?"
-msgstr "Nolakoa da zure ISDN konexioa?"
+msgstr "Zein arau erabiltzen du zure TB?"
#: ../../any.pm_.c:108 ../../any.pm_.c:133
msgid "First sector of boot partition"
@@ -466,26 +478,22 @@ msgstr "DOS/Windows-etik abiarazi (loadlin)"
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:158 ../../any.pm_.c:190
+#: ../../any.pm_.c:159 ../../any.pm_.c:190
msgid "Bootloader main options"
msgstr "Abioko kargatzailearen aukera nagusiak"
-#: ../../any.pm_.c:159 ../../any.pm_.c:191
+#: ../../any.pm_.c:160 ../../any.pm_.c:191
msgid "Bootloader to use"
msgstr "Erabili beharreko abioko kargatzailea"
-#: ../../any.pm_.c:161
+#: ../../any.pm_.c:162
msgid "Bootloader installation"
msgstr "Abioko kargatzailearen instalazioa"
-#: ../../any.pm_.c:163 ../../any.pm_.c:193
+#: ../../any.pm_.c:164 ../../any.pm_.c:193
msgid "Boot device"
msgstr "Abioko gailua"
-#: ../../any.pm_.c:164
-msgid "LBA (doesn't work on old BIOSes)"
-msgstr "LBA (ez du funtzionatzen BIOS zaharretan)"
-
#: ../../any.pm_.c:165
msgid "Compact"
msgstr "Trinkoa"
@@ -502,16 +510,17 @@ msgstr "Bideo modua"
msgid "Delay before booting default image"
msgstr "Imajina lehenetsia abiarazi arteko atzerapena"
-#: ../../any.pm_.c:170 ../../any.pm_.c:786
+#: ../../any.pm_.c:170 ../../any.pm_.c:788
#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1111 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:743 ../../printerdrake.pm_.c:858
-#: ../../standalone/drakconnect_.c:624 ../../standalone/drakconnect_.c:649
+#: ../../install_steps_interactive.pm_.c:1096 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:850 ../../printerdrake.pm_.c:965
+#: ../../standalone/drakbackup_.c:3528 ../../standalone/drakconnect_.c:624
+#: ../../standalone/drakconnect_.c:649
msgid "Password"
msgstr "Pasahitza"
-#: ../../any.pm_.c:171 ../../any.pm_.c:787
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../any.pm_.c:171 ../../any.pm_.c:789
+#: ../../install_steps_interactive.pm_.c:1097
msgid "Password (again)"
msgstr "Pasahitza (berriro)"
@@ -546,14 +555,14 @@ msgid ""
msgstr ""
"``Murriztu komando-lerroko aukerak'' aukera ezin da erabili pasahitzik gabe"
-#: ../../any.pm_.c:184 ../../any.pm_.c:762
-#: ../../diskdrake/interactive.pm_.c:1180
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../any.pm_.c:184 ../../any.pm_.c:764
+#: ../../diskdrake/interactive.pm_.c:1191
+#: ../../install_steps_interactive.pm_.c:1091
msgid "Please try again"
msgstr "Saiatu berriro"
-#: ../../any.pm_.c:184 ../../any.pm_.c:762
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../any.pm_.c:184 ../../any.pm_.c:764
+#: ../../install_steps_interactive.pm_.c:1091
msgid "The passwords do not match"
msgstr "Pasahitzak ez datoz bat"
@@ -603,16 +612,16 @@ msgstr ""
"Hauek dira sarrerak.\n"
"Beste batzuk gehi ditzakezu edo lehendik daudenak aldatu."
-#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1483
-#: ../../standalone/drakbackup_.c:1596 ../../standalone/drakfont_.c:1011
+#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1558
+#: ../../standalone/drakbackup_.c:1671 ../../standalone/drakfont_.c:1011
#: ../../standalone/drakfont_.c:1054
msgid "Add"
msgstr "Gehitu"
-#: ../../any.pm_.c:257 ../../any.pm_.c:774 ../../diskdrake/dav.pm_.c:60
+#: ../../any.pm_.c:257 ../../any.pm_.c:776 ../../diskdrake/dav.pm_.c:64
#: ../../diskdrake/hd_gtk.pm_.c:153 ../../diskdrake/removable.pm_.c:27
#: ../../diskdrake/smbnfs_gtk.pm_.c:88 ../../interactive/http.pm_.c:153
-#: ../../standalone/drakbackup_.c:2696
+#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2772
msgid "Done"
msgstr "Eginda"
@@ -624,7 +633,7 @@ msgstr "Aldatu"
msgid "Which type of entry do you want to add?"
msgstr "Zer sarrera-mota gehitu nahi duzu?"
-#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1630
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1705
msgid "Linux"
msgstr "Linux"
@@ -718,13 +727,13 @@ msgstr "Baduzu besterik?"
msgid "Do you have any %s interfaces?"
msgstr "Ba duzu %s interfazerik?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:821 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:283
+#: ../../any.pm_.c:660 ../../any.pm_.c:823 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:286
msgid "No"
msgstr "Ez"
-#: ../../any.pm_.c:660 ../../any.pm_.c:820 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:283
+#: ../../any.pm_.c:660 ../../any.pm_.c:822 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:286
msgid "Yes"
msgstr "Bai"
@@ -830,39 +839,49 @@ msgstr "onartu \"su\""
msgid "access to administrative files"
msgstr "administrazio-fitxategien atzipena"
-#: ../../any.pm_.c:758
+#: ../../any.pm_.c:754
+#, fuzzy
+msgid "access to network tools"
+msgstr "rpm tresnen atzipena"
+
+#: ../../any.pm_.c:755
+#, fuzzy
+msgid "access to compilation tools"
+msgstr "rpm tresnen atzipena"
+
+#: ../../any.pm_.c:760
#, c-format
msgid "(already added %s)"
msgstr "(%s jadanik gehituta)"
-#: ../../any.pm_.c:763
+#: ../../any.pm_.c:765
msgid "This password is too simple"
msgstr "Pasahitz hau sinpleegia da"
-#: ../../any.pm_.c:764
+#: ../../any.pm_.c:766
msgid "Please give a user name"
msgstr "Eman erabiltzaile-izen bat"
-#: ../../any.pm_.c:765
+#: ../../any.pm_.c:767
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
"Erabiltzaile-izenak minuskulaz idatzitako letrak, zenbakiak, `-' eta `_' "
"soilik izan ditzake"
-#: ../../any.pm_.c:766
+#: ../../any.pm_.c:768
msgid "The user name is too long"
msgstr "Erabiltzaile-izena luzeegia da"
-#: ../../any.pm_.c:767
+#: ../../any.pm_.c:769
msgid "This user name is already added"
msgstr "Erabiltzaile-izen hau gehituta dago jadanik"
-#: ../../any.pm_.c:771
+#: ../../any.pm_.c:773
msgid "Add user"
msgstr "Gehitu erabiltzailea"
-#: ../../any.pm_.c:772
+#: ../../any.pm_.c:774
#, c-format
msgid ""
"Enter a user\n"
@@ -871,32 +890,32 @@ msgstr ""
"Sartu erabiltzaile bat\n"
"%s"
-#: ../../any.pm_.c:773
+#: ../../any.pm_.c:775
msgid "Accept user"
msgstr "Onartu erabiltzailea"
-#: ../../any.pm_.c:784
+#: ../../any.pm_.c:786
msgid "Real name"
msgstr "Benetako izena"
-#: ../../any.pm_.c:785 ../../printerdrake.pm_.c:742
-#: ../../printerdrake.pm_.c:857
+#: ../../any.pm_.c:787 ../../printerdrake.pm_.c:849
+#: ../../printerdrake.pm_.c:964
msgid "User name"
msgstr "Erabiltzaile-izena"
-#: ../../any.pm_.c:788
+#: ../../any.pm_.c:790
msgid "Shell"
msgstr "Shell"
-#: ../../any.pm_.c:790
+#: ../../any.pm_.c:792
msgid "Icon"
msgstr "Ikonoa"
-#: ../../any.pm_.c:817
+#: ../../any.pm_.c:819
msgid "Autologin"
msgstr "Automatikoki hasi saioa"
-#: ../../any.pm_.c:818
+#: ../../any.pm_.c:820
msgid ""
"I can set up your computer to automatically log on one user.\n"
"Do you want to use this feature?"
@@ -904,19 +923,19 @@ msgstr ""
"Ordenagailua konfigura dezaket automatikoki erabiltzaile bat sartzeko.\n"
"Eginbide hau erabili nahi duzu?"
-#: ../../any.pm_.c:822
+#: ../../any.pm_.c:824
msgid "Choose the default user:"
msgstr "Aukeratu erabiltzaile lehenetsia:"
-#: ../../any.pm_.c:823
+#: ../../any.pm_.c:825
msgid "Choose the window manager to run:"
msgstr "Aukeratu exekutatu beharreko leiho-kudeatzailea:"
-#: ../../any.pm_.c:838
+#: ../../any.pm_.c:840
msgid "Please choose a language to use."
msgstr "Aukeratu erabiltzeko hizkuntza bat."
-#: ../../any.pm_.c:840
+#: ../../any.pm_.c:842
msgid ""
"Mandrake Linux can support multiple languages. Select\n"
"the languages you would like to install. They will be available\n"
@@ -925,35 +944,35 @@ msgstr ""
"Instalatu ondoren erabilgarri egongo diren beste hizkuntza batzuk aukera "
"ditzakezu"
-#: ../../any.pm_.c:854 ../../install_steps_interactive.pm_.c:708
+#: ../../any.pm_.c:856 ../../install_steps_interactive.pm_.c:692
#: ../../standalone/drakxtv_.c:73
msgid "All"
msgstr "Denak"
-#: ../../any.pm_.c:974
+#: ../../any.pm_.c:977
msgid "Allow all users"
msgstr "Eman baimena erabiltzaile guztiei"
-#: ../../any.pm_.c:974
+#: ../../any.pm_.c:977
msgid "No sharing"
msgstr "Ez konpartitu"
-#: ../../any.pm_.c:984 ../../standalone.pm_.c:57
+#: ../../any.pm_.c:987 ../../install_any.pm_.c:1183 ../../standalone.pm_.c:58
#, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "%s paketea instalatu egin behar da. Instalatu nahi duzu?"
-#: ../../any.pm_.c:987
+#: ../../any.pm_.c:990
msgid ""
"You can export using NFS or Samba. Please select which you'd like to use."
msgstr "NFS edo Samba erabiliz esporta dezakezu. Zein nahi duzu"
-#: ../../any.pm_.c:995 ../../standalone.pm_.c:61
+#: ../../any.pm_.c:998 ../../install_any.pm_.c:1188 ../../standalone.pm_.c:63
#, c-format
msgid "Mandatory package %s is missing"
msgstr "Derrigorrezko %s paketea falta da"
-#: ../../any.pm_.c:1001
+#: ../../any.pm_.c:1004
msgid ""
"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
@@ -969,11 +988,11 @@ msgstr ""
"\"Pertsonalizatua\" erabiliz erabiltzaile bakoitzarentzako ezarpena zehaztu "
"daiteke.\n"
-#: ../../any.pm_.c:1015
+#: ../../any.pm_.c:1018
msgid "Launch userdrake"
msgstr "Abiarazi userdrake"
-#: ../../any.pm_.c:1017
+#: ../../any.pm_.c:1020
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
@@ -982,31 +1001,31 @@ msgstr ""
"taldea erabiltzen du. Userdrake erabil dezakezu talde \n"
"honetan erabiltzeak gehitzeko."
-#: ../../any.pm_.c:1068
+#: ../../any.pm_.c:1071
msgid "Welcome To Crackers"
msgstr "Ongi etorri Crackers-era"
-#: ../../any.pm_.c:1069
+#: ../../any.pm_.c:1072
msgid "Poor"
msgstr "Txikia"
-#: ../../any.pm_.c:1070 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1073 ../../mouse.pm_.c:31
msgid "Standard"
msgstr "Estandarra"
-#: ../../any.pm_.c:1071
+#: ../../any.pm_.c:1074
msgid "High"
msgstr "Handia"
-#: ../../any.pm_.c:1072
+#: ../../any.pm_.c:1075
msgid "Higher"
msgstr "Handiagoa"
-#: ../../any.pm_.c:1073
+#: ../../any.pm_.c:1076
msgid "Paranoid"
msgstr "Paranoidea"
-#: ../../any.pm_.c:1076
+#: ../../any.pm_.c:1079
msgid ""
"This level is to be used with care. It makes your system more easy to use,\n"
"but very sensitive: it must not be used for a machine connected to others\n"
@@ -1016,7 +1035,7 @@ msgstr ""
"oso erraz erasotzekoa: ez da erabili behar beste ordenagailu batzuekin edo \n"
"Internetekin konektatuta dauden makinetan. Ez dago pasahitzik."
-#: ../../any.pm_.c:1079
+#: ../../any.pm_.c:1082
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -1024,7 +1043,7 @@ msgstr ""
"Pasahitzak gaituta daude orain, baina sareko ordenagailu gisa erabiltzea ez "
"da komeni oraindik."
-#: ../../any.pm_.c:1080
+#: ../../any.pm_.c:1083
msgid ""
"This is the standard security recommended for a computer that will be used "
"to connect to the Internet as a client."
@@ -1032,7 +1051,7 @@ msgstr ""
"Hau da Internetera bezero gisa konektatzeko erabiliko diren "
"ordenagailuentzat gomendatzen den segurtasun estandarra. "
-#: ../../any.pm_.c:1081
+#: ../../any.pm_.c:1084
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
@@ -1040,7 +1059,7 @@ msgstr ""
"Murriztapen batzuk daude, eta egiaztapen automatiko gehiago gauero egiten "
"dira."
-#: ../../any.pm_.c:1082
+#: ../../any.pm_.c:1085
msgid ""
"With this security level, the use of this system as a server becomes "
"possible.\n"
@@ -1054,7 +1073,7 @@ msgstr ""
"zerbitzari gisa erabili ahal izateko. Oharra: zure makina Interneteko bezero "
"soila bada, hobe duzu maila apalagoa."
-#: ../../any.pm_.c:1085
+#: ../../any.pm_.c:1088
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
"security features are at their maximum."
@@ -1062,32 +1081,30 @@ msgstr ""
"Aurreko mailan oinarritua, baina sistema erabat itxita dago.\n"
"Segurtasun-eginbideak maximoan jarrita daude."
-#: ../../any.pm_.c:1091
-#, fuzzy
+#: ../../any.pm_.c:1094
msgid "DrakSec Basic Options"
-msgstr "Aukerak"
+msgstr "DrakSec Oinarrizko Aukerak"
-#: ../../any.pm_.c:1092
-#, fuzzy
+#: ../../any.pm_.c:1095
msgid "Please choose the desired security level"
-msgstr "Aukeratu segurtasun-maila"
+msgstr "Mesedez aukeratu nahi duzun segurtasun-maila"
-#: ../../any.pm_.c:1095
+#: ../../any.pm_.c:1098
msgid "Security level"
msgstr "Segurtasun-maila"
-#: ../../any.pm_.c:1097
+#: ../../any.pm_.c:1100
msgid "Use libsafe for servers"
msgstr "Erabili libsafe zerbitzarietarako"
-#: ../../any.pm_.c:1098
+#: ../../any.pm_.c:1101
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
"Buffer-gainezkatzeen eta formatu-kateen erasoen aurka defendatzen duen "
"liburutegi bat."
-#: ../../any.pm_.c:1099
+#: ../../any.pm_.c:1102
msgid "Security Administrator (login or email)"
msgstr "Segurtasun Kudeatzailea (sarrera edo posta-e)"
@@ -1116,57 +1133,57 @@ msgstr ""
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:935
+#: ../../bootloader.pm_.c:932
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Ongi etorri GRUB sistema eragilearen aukeratzailera!"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:938
+#: ../../bootloader.pm_.c:935
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "Erabili %c eta %c teklak zein sarrera nabarmenduko den hautatzeko."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:941
+#: ../../bootloader.pm_.c:938
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Sakatu sartu hautatutako SE abiarazteko, 'e' abiarazi aurreko"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:941
msgid "commands before booting, or 'c' for a command-line."
msgstr "komandoak editatzeko, edo 'c' komando-lerroa nahi baduzu."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:947
+#: ../../bootloader.pm_.c:944
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "Nabarmendutako sarrera automatikoki abiaraziko da %d segundotan."
-#: ../../bootloader.pm_.c:951
+#: ../../bootloader.pm_.c:948
msgid "not enough room in /boot"
msgstr "ez dago nahiko leku /boot-en"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1051
+#: ../../bootloader.pm_.c:1048
msgid "Desktop"
msgstr "Mahaigaina"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1053
+#: ../../bootloader.pm_.c:1050
msgid "Start Menu"
msgstr "Hasi menua"
-#: ../../bootloader.pm_.c:1072
+#: ../../bootloader.pm_.c:1069
#, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "Abioko kargatzailea ezin da %s partizio batean instalatu\n"
-#: ../../bootlook.pm_.c:45
+#: ../../bootlook.pm_.c:45 ../../standalone/draksplash_.c:25
msgid "no help implemented yet.\n"
msgstr "oraindik ez da laguntzarik inplementatu.\n"
@@ -1174,8 +1191,8 @@ msgstr "oraindik ez da laguntzarik inplementatu.\n"
msgid "Boot Style Configuration"
msgstr "Abioko estilo-konfigurazioa"
-#: ../../bootlook.pm_.c:78 ../../harddrake/ui.pm_.c:59
-#: ../../harddrake/ui.pm_.c:60 ../../standalone/drakfloppy_.c:81
+#: ../../bootlook.pm_.c:78 ../../harddrake/ui.pm_.c:62
+#: ../../harddrake/ui.pm_.c:63 ../../standalone/drakfloppy_.c:81
#: ../../standalone/logdrake_.c:101
msgid "/_File"
msgstr "/_Fitxategia"
@@ -1185,7 +1202,7 @@ msgstr "/_Fitxategia"
msgid "/File/_Quit"
msgstr "/Fitxategia/I_rten"
-#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:60
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:63
#: ../../standalone/drakfloppy_.c:82 ../../standalone/logdrake_.c:107
msgid "<control>Q"
msgstr "<control>Q"
@@ -1219,102 +1236,111 @@ msgid "Yaboot mode"
msgstr "Yaboot modua"
#: ../../bootlook.pm_.c:143
-#, fuzzy
msgid "Install themes"
-msgstr "Instalatu sistema"
+msgstr "Instalatu gaiak"
#: ../../bootlook.pm_.c:144
msgid "Display theme under console"
-msgstr ""
+msgstr "Erakutsi gaia kontsolapean"
-#: ../../bootlook.pm_.c:166
-msgid "Can't create Bootsplash preview"
-msgstr ""
+#: ../../bootlook.pm_.c:145
+#, fuzzy
+msgid "Create new theme"
+msgstr "Sortu partizio berria"
-#: ../../bootlook.pm_.c:166 ../../bootlook.pm_.c:184 ../../bootlook.pm_.c:187
-#: ../../bootlook.pm_.c:190 ../../bootlook.pm_.c:220 ../../bootlook.pm_.c:222
-#: ../../bootlook.pm_.c:232 ../../bootlook.pm_.c:241 ../../bootlook.pm_.c:248
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:336
-#: ../../diskdrake/interactive.pm_.c:351 ../../diskdrake/interactive.pm_.c:464
-#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../bootlook.pm_.c:169
+msgid "Can't create Bootsplash preview"
+msgstr "Ezin da Bootsplash aurreikuspena sortu"
+
+#: ../../bootlook.pm_.c:169 ../../bootlook.pm_.c:187 ../../bootlook.pm_.c:190
+#: ../../bootlook.pm_.c:193 ../../bootlook.pm_.c:223 ../../bootlook.pm_.c:225
+#: ../../bootlook.pm_.c:235 ../../bootlook.pm_.c:244 ../../bootlook.pm_.c:251
+#: ../../diskdrake/dav.pm_.c:73 ../../diskdrake/hd_gtk.pm_.c:116
+#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/interactive.pm_.c:355
+#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/interactive.pm_.c:474
+#: ../../diskdrake/smbnfs_gtk.pm_.c:45 ../../fsedit.pm_.c:239
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:365 ../../interactive/http.pm_.c:119
-#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:80
+#: ../../interactive/http.pm_.c:119 ../../interactive/http.pm_.c:120
+#: ../../standalone/draksplash_.c:32
msgid "Error"
msgstr "Errorea"
-#: ../../bootlook.pm_.c:183
+#: ../../bootlook.pm_.c:186
#, c-format
msgid "Backup %s to %s.old"
-msgstr ""
+msgstr "Babestu %s %s.old bezala"
-#: ../../bootlook.pm_.c:184
+#: ../../bootlook.pm_.c:187
msgid "unable to backup lilo message"
-msgstr ""
+msgstr "ezin da lilo mezuaren babes kopia egin"
-#: ../../bootlook.pm_.c:186
-#, fuzzy, c-format
+#: ../../bootlook.pm_.c:189
+#, c-format
msgid "Copy %s to %s"
-msgstr "%s kopiatzen"
+msgstr "Kopiatu %s %s-ra"
-#: ../../bootlook.pm_.c:187
+#: ../../bootlook.pm_.c:190
msgid "can't change lilo message"
-msgstr ""
+msgstr "ezin da lilo mezua aldatu"
-#: ../../bootlook.pm_.c:190
+#: ../../bootlook.pm_.c:193
msgid "Lilo message not found"
-msgstr ""
+msgstr "Ez da lilo mezua aurkitzen"
-#: ../../bootlook.pm_.c:220
+#: ../../bootlook.pm_.c:223
msgid "Can't write /etc/sysconfig/bootsplash."
-msgstr ""
+msgstr "Ezin da /etc/sysconfig/bootsplash idatzi."
-#: ../../bootlook.pm_.c:220
-#, fuzzy, c-format
+#: ../../bootlook.pm_.c:223
+#, c-format
msgid "Write %s"
-msgstr "XFree %s"
+msgstr "Idatzi %s"
-#: ../../bootlook.pm_.c:222
+#: ../../bootlook.pm_.c:225
msgid ""
"Can't write /etc/sysconfig/bootsplash\n"
"File not found."
msgstr ""
+"Ezin da /etc/sysconfig/bootsplash idatzi\n"
+"Ez da fitxategia aurkitu."
-#: ../../bootlook.pm_.c:233
+#: ../../bootlook.pm_.c:236
#, c-format
msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
-msgstr ""
+msgstr "Ezin da mkinitrd -f /boot/initrd-%s.img %s jaurti."
-#: ../../bootlook.pm_.c:236
-#, c-format
-msgid "Make initrd 'mkinird -f /boot/initrd-%s.img %s'."
-msgstr ""
+#: ../../bootlook.pm_.c:239
+#, fuzzy, c-format
+msgid "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
+msgstr "Ezin da mkinitrd -f /boot/initrd-%s.img %s jaurti."
-#: ../../bootlook.pm_.c:242
+#: ../../bootlook.pm_.c:245
msgid ""
"Can't relaunch LiLo!\n"
"Launch \"lilo\" as root in command line to complete LiLo theme installation."
msgstr ""
+"Ezin da LiLo berriro jaurti!\n"
+"Jaurti \"lilo\" root bezala komando lerroan LiLo gai instalazioa osatzeko."
-#: ../../bootlook.pm_.c:246
+#: ../../bootlook.pm_.c:249
msgid "Relaunch 'lilo'"
-msgstr ""
+msgstr "Berriro jaurti 'lilo'"
-#: ../../bootlook.pm_.c:248
+#: ../../bootlook.pm_.c:251 ../../standalone/draksplash_.c:161
+#: ../../standalone/draksplash_.c:330 ../../standalone/draksplash_.c:454
#, fuzzy
msgid "Notice"
msgstr "BideorikEz"
-#: ../../bootlook.pm_.c:249
+#: ../../bootlook.pm_.c:252
msgid "LiLo and Bootsplash themes installation successfull"
-msgstr ""
+msgstr "LiLo eta Bootsplash gai instalazio arrakastatsua"
-#: ../../bootlook.pm_.c:249
-#, fuzzy
+#: ../../bootlook.pm_.c:252
msgid "Theme installation failed!"
-msgstr "Hautatu instalazio-klasea"
+msgstr "Gai instalazioak hutsegin du!"
-#: ../../bootlook.pm_.c:258
+#: ../../bootlook.pm_.c:261
#, c-format
msgid ""
"You are currently using %s as your boot manager.\n"
@@ -1323,23 +1349,21 @@ msgstr ""
"Orain %s erabiltzen ari zara Abioko Kudeatzaile gisa.\n"
"Egin klik 'Konfiguratu'n instalazio-morroia abiarazteko."
-#: ../../bootlook.pm_.c:260 ../../standalone/drakbackup_.c:2352
-#: ../../standalone/drakbackup_.c:2362 ../../standalone/drakbackup_.c:2372
-#: ../../standalone/drakbackup_.c:2380 ../../standalone/drakgw_.c:592
-#: ../../standalone/tinyfirewall_.c:58
+#: ../../bootlook.pm_.c:263 ../../standalone/drakbackup_.c:2427
+#: ../../standalone/drakbackup_.c:2437 ../../standalone/drakbackup_.c:2447
+#: ../../standalone/drakbackup_.c:2455 ../../standalone/drakgw_.c:530
msgid "Configure"
msgstr "Konfiguratu"
-#: ../../bootlook.pm_.c:267
-#, fuzzy
+#: ../../bootlook.pm_.c:270
msgid "Splash selection"
-msgstr "Gorde pakete-hautapena"
+msgstr "Splash hautaketa"
-#: ../../bootlook.pm_.c:270
+#: ../../bootlook.pm_.c:273
msgid "Themes"
-msgstr ""
+msgstr "Gaiak"
-#: ../../bootlook.pm_.c:272
+#: ../../bootlook.pm_.c:275
msgid ""
"\n"
"Select a theme for\n"
@@ -1347,45 +1371,50 @@ msgid ""
"you can choose\n"
"them separatly"
msgstr ""
+"\n"
+"Hautatu gai bat\n"
+"lilo eta bootsplash-entzat,\n"
+"bakoitzarena banaka\n"
+"hautatu dezakezu"
-#: ../../bootlook.pm_.c:275
+#: ../../bootlook.pm_.c:278
msgid "Lilo screen"
-msgstr ""
+msgstr "Lilo pantaila"
-#: ../../bootlook.pm_.c:279
+#: ../../bootlook.pm_.c:283
msgid "Bootsplash"
-msgstr ""
+msgstr "Bootsplash"
-#: ../../bootlook.pm_.c:314
+#: ../../bootlook.pm_.c:318
msgid "System mode"
msgstr "Sistema modua"
-#: ../../bootlook.pm_.c:316
+#: ../../bootlook.pm_.c:320
msgid "Launch the graphical environment when your system starts"
msgstr "Abiarazi X-Window sistema hasieran"
-#: ../../bootlook.pm_.c:321
+#: ../../bootlook.pm_.c:325
msgid "No, I don't want autologin"
msgstr "Ez, ez dut saioa automatikoki hasi nahi"
-#: ../../bootlook.pm_.c:323
+#: ../../bootlook.pm_.c:327
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "Bai, automatikoki honekin hasi nahi dut (erabiltzailea, mahaigaina)"
-#: ../../bootlook.pm_.c:333 ../../network/netconnect.pm_.c:101
+#: ../../bootlook.pm_.c:337 ../../network/netconnect.pm_.c:101
#: ../../standalone/drakTermServ_.c:173 ../../standalone/drakTermServ_.c:300
-#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:3513
-#: ../../standalone/drakbackup_.c:4290 ../../standalone/drakconnect_.c:108
+#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4191
+#: ../../standalone/drakbackup_.c:4952 ../../standalone/drakconnect_.c:108
#: ../../standalone/drakconnect_.c:140 ../../standalone/drakconnect_.c:296
#: ../../standalone/drakconnect_.c:435 ../../standalone/drakconnect_.c:521
#: ../../standalone/drakconnect_.c:564 ../../standalone/drakconnect_.c:667
#: ../../standalone/drakfloppy_.c:376 ../../standalone/drakfont_.c:612
#: ../../standalone/drakfont_.c:799 ../../standalone/drakfont_.c:876
-#: ../../standalone/drakfont_.c:963 ../../standalone/logdrake_.c:521
+#: ../../standalone/drakfont_.c:963 ../../standalone/logdrake_.c:519
msgid "OK"
msgstr "Ados"
-#: ../../bootlook.pm_.c:403
+#: ../../bootlook.pm_.c:407
#, c-format
msgid "can not open /etc/inittab for reading: %s"
msgstr "ezin da ireki /etc/inittab irakurtzeko: %s"
@@ -1483,50 +1512,50 @@ msgstr "Austria"
msgid "United States"
msgstr "Estatu Batuak"
-#: ../../detect_devices.pm_.c:599 ../../detect_devices.pm_.c:641
-#: ../../detect_devices.pm_.c:803
-#, fuzzy
-msgid "Unknown Model"
-msgstr "Modelo ezezaguna"
-
#: ../../diskdrake/dav.pm_.c:23
-#, fuzzy
msgid "New"
-msgstr "berria"
+msgstr "Berria"
-#: ../../diskdrake/dav.pm_.c:57
+#: ../../diskdrake/dav.pm_.c:59 ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/smbnfs_gtk.pm_.c:81
+msgid "Unmount"
+msgstr "Desmuntatu"
+
+#: ../../diskdrake/dav.pm_.c:60 ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/smbnfs_gtk.pm_.c:82
+msgid "Mount"
+msgstr "Muntatu"
+
+#: ../../diskdrake/dav.pm_.c:61
msgid "Server"
msgstr "Zerbitzaria"
-#: ../../diskdrake/dav.pm_.c:58 ../../diskdrake/interactive.pm_.c:375
-#: ../../diskdrake/interactive.pm_.c:558 ../../diskdrake/interactive.pm_.c:585
+#: ../../diskdrake/dav.pm_.c:62 ../../diskdrake/interactive.pm_.c:379
+#: ../../diskdrake/interactive.pm_.c:568 ../../diskdrake/interactive.pm_.c:595
#: ../../diskdrake/removable.pm_.c:24 ../../diskdrake/removable_gtk.pm_.c:15
#: ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr "Muntatze-puntua"
-#: ../../diskdrake/dav.pm_.c:68
-#, fuzzy
+#: ../../diskdrake/dav.pm_.c:81
msgid "Please enter the WebDAV server URL"
-msgstr "Idatzi CD idazgailuaren abiadura"
+msgstr "Mesedez sartu WebDAV zerbitzariaren URL"
-#: ../../diskdrake/dav.pm_.c:71
-#, fuzzy
+#: ../../diskdrake/dav.pm_.c:84
msgid "The URL must begin with http:// or https://"
-msgstr "URLaren hasieran 'http:' jarri behar du"
+msgstr "URLak http:// edo https:// hasiera izan behar du"
-#: ../../diskdrake/dav.pm_.c:92
-#, fuzzy
+#: ../../diskdrake/dav.pm_.c:105
msgid "Server: "
-msgstr "Zerbitzaria"
+msgstr "Zerbitzaria: "
-#: ../../diskdrake/dav.pm_.c:93 ../../diskdrake/interactive.pm_.c:435
-#: ../../diskdrake/interactive.pm_.c:1079
-#: ../../diskdrake/interactive.pm_.c:1153
+#: ../../diskdrake/dav.pm_.c:106 ../../diskdrake/interactive.pm_.c:440
+#: ../../diskdrake/interactive.pm_.c:1089
+#: ../../diskdrake/interactive.pm_.c:1164
msgid "Mount point: "
msgstr "Muntatze-puntua: "
-#: ../../diskdrake/dav.pm_.c:94 ../../diskdrake/interactive.pm_.c:1159
+#: ../../diskdrake/dav.pm_.c:107 ../../diskdrake/interactive.pm_.c:1170
#, c-format
msgid "Options: %s"
msgstr "Aukerak: %s"
@@ -1535,8 +1564,9 @@ msgstr "Aukerak: %s"
msgid "Please make a backup of your data first"
msgstr "Egin zure datuen babeskopia lehendabizi"
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:924
-#: ../../diskdrake/interactive.pm_.c:933 ../../diskdrake/interactive.pm_.c:999
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:934
+#: ../../diskdrake/interactive.pm_.c:943
+#: ../../diskdrake/interactive.pm_.c:1009
msgid "Read carefully!"
msgstr "Irakurri arretaz"
@@ -1574,10 +1604,15 @@ msgid "Please click on a partition"
msgstr "Egin klik partizio batean"
#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
-#: ../../install_steps_gtk.pm_.c:471
+#: ../../install_steps_gtk.pm_.c:465
msgid "Details"
msgstr "Xehetasunak"
+#: ../../diskdrake/hd_gtk.pm_.c:252
+#, fuzzy
+msgid "No hard drives found"
+msgstr "Ez da inprimagairik aurkitu!"
+
#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Ext2"
msgstr "Ext2"
@@ -1602,13 +1637,13 @@ msgstr "SunOS"
msgid "Swap"
msgstr "Swap"
-#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1105
msgid "Empty"
msgstr "Hutsik"
-#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:331
-#: ../../install_steps_gtk.pm_.c:389 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1679
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:325
+#: ../../install_steps_gtk.pm_.c:383 ../../mouse.pm_.c:165
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1754
msgid "Other"
msgstr "Bestelakoa"
@@ -1616,12 +1651,12 @@ msgstr "Bestelakoa"
msgid "Filesystem types:"
msgstr "Fitxategi-sistemen motak:"
-#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:397
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:402
msgid "Create"
msgstr "Sortu"
-#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:376
-#: ../../diskdrake/interactive.pm_.c:521 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:380
+#: ../../diskdrake/interactive.pm_.c:531 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "Mota"
@@ -1631,7 +1666,7 @@ msgstr "Mota"
msgid "Use ``%s'' instead"
msgstr "Erabili ``%s'' horren ordez"
-#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:389
msgid "Delete"
msgstr "Ezabatu"
@@ -1639,7 +1674,7 @@ msgstr "Ezabatu"
msgid "Use ``Unmount'' first"
msgstr "Erabili ``Desmuntatu'' lehendabizi"
-#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:513
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:518
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
@@ -1647,72 +1682,72 @@ msgstr ""
"%s partizio-mota aldatu ondoren, partizio honetako datu guztiak galdu egingo "
"dira"
-#: ../../diskdrake/interactive.pm_.c:173
+#: ../../diskdrake/interactive.pm_.c:174
msgid "Choose a partition"
msgstr "Aukeratu partizio bat"
-#: ../../diskdrake/interactive.pm_.c:173
+#: ../../diskdrake/interactive.pm_.c:174
msgid "Choose another partition"
msgstr "Aukeratu beste partizio bat"
-#: ../../diskdrake/interactive.pm_.c:198
+#: ../../diskdrake/interactive.pm_.c:199
msgid "Exit"
msgstr "Irten"
-#: ../../diskdrake/interactive.pm_.c:220
+#: ../../diskdrake/interactive.pm_.c:221
msgid "Toggle to expert mode"
msgstr "Aldatu aditu modura"
-#: ../../diskdrake/interactive.pm_.c:220
+#: ../../diskdrake/interactive.pm_.c:221
msgid "Toggle to normal mode"
msgstr "Aldatu modu normalera"
-#: ../../diskdrake/interactive.pm_.c:220
+#: ../../diskdrake/interactive.pm_.c:221
msgid "Undo"
msgstr "Desegin"
-#: ../../diskdrake/interactive.pm_.c:239
+#: ../../diskdrake/interactive.pm_.c:240
msgid "Continue anyway?"
msgstr "Jarraitu hala ere?"
-#: ../../diskdrake/interactive.pm_.c:244
+#: ../../diskdrake/interactive.pm_.c:245
msgid "Quit without saving"
msgstr "Irten gorde gabe"
-#: ../../diskdrake/interactive.pm_.c:244
+#: ../../diskdrake/interactive.pm_.c:245
msgid "Quit without writing the partition table?"
msgstr "Irten partizio-taula idatzi gabe?"
-#: ../../diskdrake/interactive.pm_.c:249
+#: ../../diskdrake/interactive.pm_.c:250
msgid "Do you want to save /etc/fstab modifications"
msgstr "/etc/fstab aldaketak gorde nahi dituzu?"
-#: ../../diskdrake/interactive.pm_.c:261
+#: ../../diskdrake/interactive.pm_.c:263
msgid "Auto allocate"
msgstr "Auto-esleitu"
-#: ../../diskdrake/interactive.pm_.c:261
+#: ../../diskdrake/interactive.pm_.c:263
msgid "Clear all"
msgstr "Garbitu dena"
-#: ../../diskdrake/interactive.pm_.c:261
+#: ../../diskdrake/interactive.pm_.c:263
#: ../../install_steps_interactive.pm_.c:214
msgid "More"
msgstr "Gehiago"
-#: ../../diskdrake/interactive.pm_.c:264
+#: ../../diskdrake/interactive.pm_.c:267
msgid "Hard drive information"
msgstr "Disko gogorraren informazioa"
-#: ../../diskdrake/interactive.pm_.c:294
+#: ../../diskdrake/interactive.pm_.c:298
msgid "All primary partitions are used"
msgstr "Lehen mailako partizio guztiak erabilita daude"
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:299
msgid "I can't add any more partition"
msgstr "Ezin da partizio gehiago gehitu"
-#: ../../diskdrake/interactive.pm_.c:296
+#: ../../diskdrake/interactive.pm_.c:300
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -1720,31 +1755,31 @@ msgstr ""
"Partizio gehiago edukitzeko, ezabatu horietako bat partizio hedatu bat sortu "
"ahal izateko"
-#: ../../diskdrake/interactive.pm_.c:306
+#: ../../diskdrake/interactive.pm_.c:310
msgid "Save partition table"
msgstr "Gorde partizio-taula"
-#: ../../diskdrake/interactive.pm_.c:307
+#: ../../diskdrake/interactive.pm_.c:311
msgid "Restore partition table"
msgstr "Leheneratu partizio-taula"
-#: ../../diskdrake/interactive.pm_.c:308
+#: ../../diskdrake/interactive.pm_.c:312
msgid "Rescue partition table"
msgstr "Berreskuratu partizio-taula"
-#: ../../diskdrake/interactive.pm_.c:310
+#: ../../diskdrake/interactive.pm_.c:314
msgid "Reload partition table"
msgstr "Birkargatu partizio-taula"
-#: ../../diskdrake/interactive.pm_.c:315
+#: ../../diskdrake/interactive.pm_.c:319
msgid "Removable media automounting"
msgstr "Euskarri aldagarrien automuntatzea"
-#: ../../diskdrake/interactive.pm_.c:324 ../../diskdrake/interactive.pm_.c:344
+#: ../../diskdrake/interactive.pm_.c:328 ../../diskdrake/interactive.pm_.c:348
msgid "Select file"
msgstr "Hautatu fitxategia"
-#: ../../diskdrake/interactive.pm_.c:331
+#: ../../diskdrake/interactive.pm_.c:335
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1752,11 +1787,11 @@ msgstr ""
"Babeskopiako partizio-taulak ez du tamaina bera\n"
"Jarraitu hala ere?"
-#: ../../diskdrake/interactive.pm_.c:345
+#: ../../diskdrake/interactive.pm_.c:349
msgid "Warning"
msgstr "Kontuz"
-#: ../../diskdrake/interactive.pm_.c:346
+#: ../../diskdrake/interactive.pm_.c:350
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1764,112 +1799,107 @@ msgstr ""
"Sartu diskete bat unitatean\n"
"Disketeko datu guztiak galdu egingo dira"
-#: ../../diskdrake/interactive.pm_.c:357
+#: ../../diskdrake/interactive.pm_.c:361
msgid "Trying to rescue partition table"
msgstr "Partizio-taula berreskuratzen saiatzen"
-#: ../../diskdrake/interactive.pm_.c:363
+#: ../../diskdrake/interactive.pm_.c:367
msgid "Detailed information"
msgstr "Informazio xehea"
-#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:652
+#: ../../diskdrake/interactive.pm_.c:382 ../../diskdrake/interactive.pm_.c:662
msgid "Resize"
msgstr "Aldatu tamaina"
-#: ../../diskdrake/interactive.pm_.c:379 ../../diskdrake/interactive.pm_.c:705
+#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/interactive.pm_.c:715
msgid "Move"
msgstr "Lekuz aldatu"
-#: ../../diskdrake/interactive.pm_.c:380
+#: ../../diskdrake/interactive.pm_.c:384
msgid "Format"
msgstr "Formateatu"
-#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/smbnfs_gtk.pm_.c:82
-msgid "Mount"
-msgstr "Muntatu"
-
-#: ../../diskdrake/interactive.pm_.c:382
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Add to RAID"
msgstr "Gehitu RAIDi"
-#: ../../diskdrake/interactive.pm_.c:383
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Add to LVM"
msgstr "Gehitu LVMri"
-#: ../../diskdrake/interactive.pm_.c:384 ../../diskdrake/smbnfs_gtk.pm_.c:81
-msgid "Unmount"
-msgstr "Desmuntatu"
-
-#: ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/interactive.pm_.c:390
msgid "Remove from RAID"
msgstr "Kendu RAIDetik"
-#: ../../diskdrake/interactive.pm_.c:387
+#: ../../diskdrake/interactive.pm_.c:391
msgid "Remove from LVM"
msgstr "Kendu LVMtik"
-#: ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/interactive.pm_.c:392
msgid "Modify RAID"
msgstr "Aldatu RAID"
-#: ../../diskdrake/interactive.pm_.c:389
+#: ../../diskdrake/interactive.pm_.c:393
msgid "Use for loopback"
msgstr "Erabili atzera-begiztarako"
-#: ../../diskdrake/interactive.pm_.c:428
+#: ../../diskdrake/interactive.pm_.c:433
msgid "Create a new partition"
msgstr "Sortu partizio berria"
-#: ../../diskdrake/interactive.pm_.c:431
+#: ../../diskdrake/interactive.pm_.c:436
msgid "Start sector: "
msgstr "Hasierako sektorea: "
-#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:805
+#: ../../diskdrake/interactive.pm_.c:438 ../../diskdrake/interactive.pm_.c:815
msgid "Size in MB: "
msgstr "Tamaina MBtan: "
-#: ../../diskdrake/interactive.pm_.c:434 ../../diskdrake/interactive.pm_.c:806
+#: ../../diskdrake/interactive.pm_.c:439 ../../diskdrake/interactive.pm_.c:816
msgid "Filesystem type: "
msgstr "Fitxategi-sistemaren mota: "
-#: ../../diskdrake/interactive.pm_.c:439
+#: ../../diskdrake/interactive.pm_.c:444
msgid "Preference: "
msgstr "Hobespena: "
-#: ../../diskdrake/interactive.pm_.c:464
+#: ../../diskdrake/interactive.pm_.c:469
msgid ""
"You can't create a new partition\n"
"(since you reached the maximal number of primary partitions).\n"
"First remove a primary partition and create an extended partition."
msgstr ""
+"Ezin duzu partizio berria sortu\n"
+"(izan daitezkeen partizio primario kopuru handiena duzulako).\n"
+"Lehenik ezabatu partizio primario bat eta sortu partizio hedatu bat."
-#: ../../diskdrake/interactive.pm_.c:494
+#: ../../diskdrake/interactive.pm_.c:499
msgid "Remove the loopback file?"
msgstr "Atzera-begiztako fitxategia kendu?"
-#: ../../diskdrake/interactive.pm_.c:519
+#: ../../diskdrake/interactive.pm_.c:529
msgid "Change partition type"
msgstr "Aldatu partizio-mota"
-#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:530 ../../diskdrake/removable.pm_.c:48
msgid "Which filesystem do you want?"
msgstr "Zein fitxategi-sistema nahi duzu?"
-#: ../../diskdrake/interactive.pm_.c:526
+#: ../../diskdrake/interactive.pm_.c:536
msgid "Switching from ext2 to ext3"
msgstr "ext2tik ext3ra aldatzen"
-#: ../../diskdrake/interactive.pm_.c:556
+#: ../../diskdrake/interactive.pm_.c:566
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "Non muntatu nahi duzu %s atzera-begiztako fitxategia?"
-#: ../../diskdrake/interactive.pm_.c:557
+#: ../../diskdrake/interactive.pm_.c:567
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Non muntatu nahi duzu %s gailua?"
-#: ../../diskdrake/interactive.pm_.c:563
+#: ../../diskdrake/interactive.pm_.c:573
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1878,138 +1908,138 @@ msgstr ""
"erabiltzen delako\n"
"Kendu atzera-begizta lehendabizi"
-#: ../../diskdrake/interactive.pm_.c:584
-#, fuzzy, c-format
+#: ../../diskdrake/interactive.pm_.c:594
+#, c-format
msgid "Where do you want to mount %s?"
-msgstr "Non muntatu nahi duzu %s gailua?"
+msgstr "Non muntatu nahi duzu %s?"
-#: ../../diskdrake/interactive.pm_.c:608
+#: ../../diskdrake/interactive.pm_.c:618
msgid "Computing FAT filesystem bounds"
msgstr "FAT fitxategi-sistemaren mugak kalkulatzen"
-#: ../../diskdrake/interactive.pm_.c:608 ../../diskdrake/interactive.pm_.c:667
-#: ../../install_interactive.pm_.c:131
+#: ../../diskdrake/interactive.pm_.c:618 ../../diskdrake/interactive.pm_.c:677
+#: ../../install_interactive.pm_.c:133
msgid "Resizing"
msgstr "Tamaina aldatzen"
-#: ../../diskdrake/interactive.pm_.c:640
+#: ../../diskdrake/interactive.pm_.c:650
msgid "This partition is not resizeable"
msgstr "Partizio honi ezin zaio tamaina aldatu"
-#: ../../diskdrake/interactive.pm_.c:645
+#: ../../diskdrake/interactive.pm_.c:655
msgid "All data on this partition should be backed-up"
msgstr "Partizio honetako datu guztiek babeskopia eduki beharko lukete"
-#: ../../diskdrake/interactive.pm_.c:647
+#: ../../diskdrake/interactive.pm_.c:657
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr ""
"%s partizioa tamainaz aldatu ondoren, partizioko datu guztiak galdu egingo "
"dira"
-#: ../../diskdrake/interactive.pm_.c:652
+#: ../../diskdrake/interactive.pm_.c:662
msgid "Choose the new size"
msgstr "Aukeratu tamaina berria"
-#: ../../diskdrake/interactive.pm_.c:653
+#: ../../diskdrake/interactive.pm_.c:663
msgid "New size in MB: "
msgstr "Tamaina berria MBtan: "
-#: ../../diskdrake/interactive.pm_.c:706
+#: ../../diskdrake/interactive.pm_.c:716
msgid "Which disk do you want to move it to?"
msgstr "Zein diskotara eraman nahi duzu?"
-#: ../../diskdrake/interactive.pm_.c:707
+#: ../../diskdrake/interactive.pm_.c:717
msgid "Sector"
msgstr "Sektorea"
-#: ../../diskdrake/interactive.pm_.c:708
+#: ../../diskdrake/interactive.pm_.c:718
msgid "Which sector do you want to move it to?"
msgstr "Zein sektoretara eraman nahi duzu?"
-#: ../../diskdrake/interactive.pm_.c:711
+#: ../../diskdrake/interactive.pm_.c:721
msgid "Moving"
msgstr "Lekuz aldatzen"
-#: ../../diskdrake/interactive.pm_.c:711
+#: ../../diskdrake/interactive.pm_.c:721
msgid "Moving partition..."
msgstr "Partizioa lekuz aldatzen..."
-#: ../../diskdrake/interactive.pm_.c:728
+#: ../../diskdrake/interactive.pm_.c:738
msgid "Choose an existing RAID to add to"
msgstr "Aukeratu lehendik dagoen RAID bat gehitzeko"
-#: ../../diskdrake/interactive.pm_.c:729 ../../diskdrake/interactive.pm_.c:746
+#: ../../diskdrake/interactive.pm_.c:739 ../../diskdrake/interactive.pm_.c:756
msgid "new"
msgstr "berria"
-#: ../../diskdrake/interactive.pm_.c:744
+#: ../../diskdrake/interactive.pm_.c:754
msgid "Choose an existing LVM to add to"
msgstr "Aukeratu lehendik dagoen LVM bat gehitzeko"
-#: ../../diskdrake/interactive.pm_.c:749
+#: ../../diskdrake/interactive.pm_.c:759
msgid "LVM name?"
msgstr "LVM izena?"
-#: ../../diskdrake/interactive.pm_.c:790
+#: ../../diskdrake/interactive.pm_.c:800
msgid "This partition can't be used for loopback"
msgstr "Partizio hau ezin da atzera-begiztarako erabili"
-#: ../../diskdrake/interactive.pm_.c:803
+#: ../../diskdrake/interactive.pm_.c:813
msgid "Loopback"
msgstr "Atzera-begizta"
-#: ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:814
msgid "Loopback file name: "
msgstr "Atzera-begiztako fitxategi-izena: "
-#: ../../diskdrake/interactive.pm_.c:809
+#: ../../diskdrake/interactive.pm_.c:819
msgid "Give a file name"
msgstr "Eman fitxategi-izen bat"
-#: ../../diskdrake/interactive.pm_.c:812
+#: ../../diskdrake/interactive.pm_.c:822
msgid "File already used by another loopback, choose another one"
msgstr ""
"Fitxategi hau beste atzera-begizta batek erabiltzen du, aukeratu beste bat"
-#: ../../diskdrake/interactive.pm_.c:813
+#: ../../diskdrake/interactive.pm_.c:823
msgid "File already exists. Use it?"
msgstr "Fitxategia badago lehendik ere. Erabili?"
-#: ../../diskdrake/interactive.pm_.c:836
+#: ../../diskdrake/interactive.pm_.c:846
msgid "Mount options"
msgstr "Muntatze-aukerak"
-#: ../../diskdrake/interactive.pm_.c:843
+#: ../../diskdrake/interactive.pm_.c:853
msgid "Various"
msgstr "Hainbat"
-#: ../../diskdrake/interactive.pm_.c:907 ../../standalone/drakfloppy_.c:103
+#: ../../diskdrake/interactive.pm_.c:917 ../../standalone/drakfloppy_.c:103
msgid "device"
msgstr "gailua"
-#: ../../diskdrake/interactive.pm_.c:908
+#: ../../diskdrake/interactive.pm_.c:918
msgid "level"
msgstr "maila"
-#: ../../diskdrake/interactive.pm_.c:909
+#: ../../diskdrake/interactive.pm_.c:919
msgid "chunk size"
msgstr "zatiaren tamaina"
-#: ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:934
msgid "Be careful: this operation is dangerous."
msgstr "Kontuz ibili: eragiketa hau arriskutsua da."
-#: ../../diskdrake/interactive.pm_.c:939
+#: ../../diskdrake/interactive.pm_.c:949
msgid "What type of partitioning?"
msgstr "Nolako partizioa?"
-#: ../../diskdrake/interactive.pm_.c:955
+#: ../../diskdrake/interactive.pm_.c:965
#, c-format
msgid "The package %s is needed. Install it?"
msgstr "%s paketea behar da. Instalatu nahi duzu?"
-#: ../../diskdrake/interactive.pm_.c:969
+#: ../../diskdrake/interactive.pm_.c:979
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -2020,7 +2050,7 @@ msgstr ""
"Edo LILO erabiltzen duzu eta ez du funtzionatuko, edo ez duzu LILO "
"erabiltzen eta ez duzu /boot erabili beharrik"
-#: ../../diskdrake/interactive.pm_.c:973
+#: ../../diskdrake/interactive.pm_.c:983
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -2032,7 +2062,7 @@ msgstr ""
"LILO abioko kudeatzailea erabiltzeko asmoa baduzu, ez ahaztu /boot partizioa "
"gehitzea"
-#: ../../diskdrake/interactive.pm_.c:979
+#: ../../diskdrake/interactive.pm_.c:989
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
@@ -2043,45 +2073,45 @@ msgstr ""
"dezakeenik.\n"
"Beraz, kontuan izan /boot partizioa gehitu behar duzula"
-#: ../../diskdrake/interactive.pm_.c:999
+#: ../../diskdrake/interactive.pm_.c:1009
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "%s unitatearen partizio-taula diskoan idatziko da!"
-#: ../../diskdrake/interactive.pm_.c:1003
+#: ../../diskdrake/interactive.pm_.c:1013
msgid "You'll need to reboot before the modification can take place"
msgstr "Berrabiarazi egin beharko duzu aldaketek eragina izan dezaten"
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1024
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr ""
"%s partizioa formateatu ondoren, partizioko datu guztiak galdu egingo dira"
-#: ../../diskdrake/interactive.pm_.c:1016
+#: ../../diskdrake/interactive.pm_.c:1026
msgid "Formatting"
msgstr "Formateatzen"
-#: ../../diskdrake/interactive.pm_.c:1017
+#: ../../diskdrake/interactive.pm_.c:1027
#, c-format
msgid "Formatting loopback file %s"
msgstr "%s atzera-begiztako fitxategia formateatzen"
-#: ../../diskdrake/interactive.pm_.c:1018
-#: ../../install_steps_interactive.pm_.c:476
+#: ../../diskdrake/interactive.pm_.c:1028
+#: ../../install_steps_interactive.pm_.c:459
#, c-format
msgid "Formatting partition %s"
msgstr "%s partizioa formateatzen"
-#: ../../diskdrake/interactive.pm_.c:1029
+#: ../../diskdrake/interactive.pm_.c:1039
msgid "Hide files"
msgstr "Ezkutatu fitxategiak"
-#: ../../diskdrake/interactive.pm_.c:1029
+#: ../../diskdrake/interactive.pm_.c:1039
msgid "Move files to the new partition"
msgstr "Eraman fitxategiak partizio berrira"
-#: ../../diskdrake/interactive.pm_.c:1030
+#: ../../diskdrake/interactive.pm_.c:1040
#, c-format
msgid ""
"Directory %s already contains data\n"
@@ -2090,83 +2120,83 @@ msgstr ""
" %s direktorioak baditu datu batzuk\n"
"(%s)"
-#: ../../diskdrake/interactive.pm_.c:1041
+#: ../../diskdrake/interactive.pm_.c:1051
msgid "Moving files to the new partition"
msgstr "Fitxategiak partizio berrira eramaten"
-#: ../../diskdrake/interactive.pm_.c:1045
+#: ../../diskdrake/interactive.pm_.c:1055
#, c-format
msgid "Copying %s"
msgstr "%s kopiatzen"
-#: ../../diskdrake/interactive.pm_.c:1049
+#: ../../diskdrake/interactive.pm_.c:1059
#, c-format
msgid "Removing %s"
msgstr "%s kentzen"
-#: ../../diskdrake/interactive.pm_.c:1059
+#: ../../diskdrake/interactive.pm_.c:1069
#, c-format
msgid "partition %s is now known as %s"
msgstr "%s partizioa %s da orain"
-#: ../../diskdrake/interactive.pm_.c:1080
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1090
+#: ../../diskdrake/interactive.pm_.c:1149
msgid "Device: "
msgstr "Gailua: "
-#: ../../diskdrake/interactive.pm_.c:1081
+#: ../../diskdrake/interactive.pm_.c:1091
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "DOS unitate-letra: %s (uste hutsa)\n"
-#: ../../diskdrake/interactive.pm_.c:1085
-#: ../../diskdrake/interactive.pm_.c:1093
-#: ../../diskdrake/interactive.pm_.c:1157
+#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1103
+#: ../../diskdrake/interactive.pm_.c:1168
msgid "Type: "
msgstr "Mota: "
-#: ../../diskdrake/interactive.pm_.c:1089
+#: ../../diskdrake/interactive.pm_.c:1099
msgid "Name: "
msgstr "Izena: "
-#: ../../diskdrake/interactive.pm_.c:1097
+#: ../../diskdrake/interactive.pm_.c:1107
#, c-format
msgid "Start: sector %s\n"
msgstr "Hasi: %s sektorea\n"
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1108
#, c-format
msgid "Size: %s"
msgstr "Tamaina: %s"
-#: ../../diskdrake/interactive.pm_.c:1100
+#: ../../diskdrake/interactive.pm_.c:1110
#, c-format
msgid ", %s sectors"
msgstr ", %s sektore"
-#: ../../diskdrake/interactive.pm_.c:1102
+#: ../../diskdrake/interactive.pm_.c:1112
#, c-format
msgid "Cylinder %d to %d\n"
msgstr "%d zilindrotik %d zilindrora\n"
-#: ../../diskdrake/interactive.pm_.c:1103
+#: ../../diskdrake/interactive.pm_.c:1113
msgid "Formatted\n"
msgstr "Formateatua\n"
-#: ../../diskdrake/interactive.pm_.c:1104
+#: ../../diskdrake/interactive.pm_.c:1114
msgid "Not formatted\n"
msgstr "Formateatu gabe\n"
-#: ../../diskdrake/interactive.pm_.c:1105
+#: ../../diskdrake/interactive.pm_.c:1115
msgid "Mounted\n"
msgstr "Muntatuta\n"
-#: ../../diskdrake/interactive.pm_.c:1106
+#: ../../diskdrake/interactive.pm_.c:1116
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1108
+#: ../../diskdrake/interactive.pm_.c:1118
#, c-format
msgid ""
"Loopback file(s):\n"
@@ -2175,7 +2205,7 @@ msgstr ""
"Atzera-begiztako fitxategia(k):\n"
" %s\n"
-#: ../../diskdrake/interactive.pm_.c:1109
+#: ../../diskdrake/interactive.pm_.c:1119
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -2183,27 +2213,27 @@ msgstr ""
"Lehenespenez abiarazteko partizioa\n"
" (MS-DOS abiorako, ez lilo-rako)\n"
-#: ../../diskdrake/interactive.pm_.c:1111
+#: ../../diskdrake/interactive.pm_.c:1121
#, c-format
msgid "Level %s\n"
msgstr "%s maila\n"
-#: ../../diskdrake/interactive.pm_.c:1112
+#: ../../diskdrake/interactive.pm_.c:1122
#, c-format
msgid "Chunk size %s\n"
msgstr "%s zatiaren tamaina\n"
-#: ../../diskdrake/interactive.pm_.c:1113
+#: ../../diskdrake/interactive.pm_.c:1123
#, c-format
msgid "RAID-disks %s\n"
msgstr "%s RAID-diskoak\n"
-#: ../../diskdrake/interactive.pm_.c:1115
+#: ../../diskdrake/interactive.pm_.c:1125
#, c-format
msgid "Loopback file name: %s"
msgstr "Atzera-begiztako fitxategi-izena: %s"
-#: ../../diskdrake/interactive.pm_.c:1118
+#: ../../diskdrake/interactive.pm_.c:1128
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -2215,7 +2245,7 @@ msgstr ""
"partizioa izan daiteke, hobe duzu\n"
"bere horretan uztea.\n"
-#: ../../diskdrake/interactive.pm_.c:1121
+#: ../../diskdrake/interactive.pm_.c:1131
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2227,58 +2257,62 @@ msgstr ""
"sistemaren abio bikoitza\n"
"egiteko da.\n"
-#: ../../diskdrake/interactive.pm_.c:1140
+#: ../../diskdrake/interactive.pm_.c:1150
+msgid "Read-only"
+msgstr ""
+
+#: ../../diskdrake/interactive.pm_.c:1151
#, c-format
msgid "Size: %s\n"
msgstr "Tamaina: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1141
+#: ../../diskdrake/interactive.pm_.c:1152
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Geometria: %s zilindro, %s buru, %s sektore\n"
-#: ../../diskdrake/interactive.pm_.c:1142
+#: ../../diskdrake/interactive.pm_.c:1153
msgid "Info: "
msgstr "Info: "
-#: ../../diskdrake/interactive.pm_.c:1143
+#: ../../diskdrake/interactive.pm_.c:1154
#, c-format
msgid "LVM-disks %s\n"
msgstr "%s LVM-diskoak\n"
-#: ../../diskdrake/interactive.pm_.c:1144
+#: ../../diskdrake/interactive.pm_.c:1155
#, c-format
msgid "Partition table type: %s\n"
msgstr "Partizio-taularen mota: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1145
+#: ../../diskdrake/interactive.pm_.c:1156
#, c-format
msgid "on channel %d id %d\n"
msgstr "%d kanalean id %d\n"
-#: ../../diskdrake/interactive.pm_.c:1175
+#: ../../diskdrake/interactive.pm_.c:1186
msgid "Filesystem encryption key"
msgstr "Fitxategi-sistema enkriptatzeko gakoa"
-#: ../../diskdrake/interactive.pm_.c:1176
+#: ../../diskdrake/interactive.pm_.c:1187
msgid "Choose your filesystem encryption key"
msgstr "Aukeratu fitxategi-sistema enkriptatzeko gakoa"
-#: ../../diskdrake/interactive.pm_.c:1179
+#: ../../diskdrake/interactive.pm_.c:1190
#, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr ""
"Enkriptatze-gako hau sinpleegia da (gutxienez %d karaktere izan behar ditu)"
-#: ../../diskdrake/interactive.pm_.c:1180
+#: ../../diskdrake/interactive.pm_.c:1191
msgid "The encryption keys do not match"
msgstr "Enkriptatze-gakoak ez datoz bat"
-#: ../../diskdrake/interactive.pm_.c:1183
+#: ../../diskdrake/interactive.pm_.c:1194
msgid "Encryption key"
msgstr "Enkriptatze-gakoa"
-#: ../../diskdrake/interactive.pm_.c:1184
+#: ../../diskdrake/interactive.pm_.c:1195
msgid "Encryption key (again)"
msgstr "Enkriptatze-gakoa (berriro)"
@@ -2314,7 +2348,7 @@ msgstr ""
"Mesedez sartu zure erabiltzaile-izena, pasahitza eta domeinu izena ostalari "
"honetara sartzeko."
-#: ../../diskdrake/smbnfs_gtk.pm_.c:178
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3527
msgid "Username"
msgstr "Erabiltzaile-izena"
@@ -2329,23 +2363,23 @@ msgstr "Bilatu zerbitzarietan"
# #this syntax doesn't work yet in perl :-(
# #msgid "%s formatting of %s failed"
# #msgstr "%2$s(r)i %1$s formatua emateak huts egin du"
-#: ../../fs.pm_.c:552 ../../fs.pm_.c:562 ../../fs.pm_.c:566 ../../fs.pm_.c:570
-#: ../../fs.pm_.c:574 ../../fs.pm_.c:578
+#: ../../fs.pm_.c:544 ../../fs.pm_.c:554 ../../fs.pm_.c:558 ../../fs.pm_.c:562
+#: ../../fs.pm_.c:566 ../../fs.pm_.c:570
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s %s(r)i formatua emateak huts egin du"
-#: ../../fs.pm_.c:615
+#: ../../fs.pm_.c:607
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "Ez dakit nola formateatu %s %s motan"
-#: ../../fs.pm_.c:687 ../../fs.pm_.c:731
+#: ../../fs.pm_.c:681 ../../fs.pm_.c:724
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr "%s partizioa %s direktorioan muntatzeak huts egin du"
-#: ../../fs.pm_.c:746 ../../partition_table.pm_.c:602
+#: ../../fs.pm_.c:739 ../../partition_table.pm_.c:598
#, c-format
msgid "error unmounting %s: %s"
msgstr "errorea %s desmuntatzean: %s"
@@ -2362,33 +2396,51 @@ msgstr "/usr-rekin"
msgid "server"
msgstr "zerbitzaria"
-#: ../../fsedit.pm_.c:472
+#: ../../fsedit.pm_.c:240
+#, fuzzy, c-format
+msgid ""
+"I can't read the partition table of device %s, it's too corrupted for me :(\n"
+"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
+"The other solution is to not allow DrakX to modify the partition table.\n"
+"(the error is %s)\n"
+"\n"
+"Do you agree to loose all the partitions?\n"
+msgstr ""
+"Ezin dut zure partizio-taula irakurri, hondatuegia dago :(\n"
+"Jarraitzen saia naiteke, partizio txarrak garbituz (DATU GUZTIAK galduko "
+"dira!).\n"
+"Beste irtenbidea DrakXri partizio-taula aldatzeko baimenik ez ematea da.\n"
+"(errorea %s da)\n"
+"\n"
+"Ados zaude partizio guztiak galtzearekin?\n"
+
+#: ../../fsedit.pm_.c:501
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr "Ezin da JFS erabili 16MB baino gutxiagoko partizioetarako"
-#: ../../fsedit.pm_.c:473
+#: ../../fsedit.pm_.c:502
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr "Ezin da ReiserFS erabili 32MB baino gutxiagoko partizioetarako"
-#: ../../fsedit.pm_.c:492
+#: ../../fsedit.pm_.c:521
msgid "Mount points must begin with a leading /"
msgstr "Muntatzen-puntuek / batez hasi behar dute"
-#: ../../fsedit.pm_.c:493
+#: ../../fsedit.pm_.c:522
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Jadanik badago %s muntatze-puntua duen partizio bat\n"
-#: ../../fsedit.pm_.c:497
+#: ../../fsedit.pm_.c:526
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr "Ezin da LVM bolumen logikoa erabili %s muntatze-punturako"
-#: ../../fsedit.pm_.c:499
+#: ../../fsedit.pm_.c:528
msgid "This directory should remain within the root filesystem"
msgstr "Direktorio honek erroko fitxategi-sisteman egon behar du"
-#: ../../fsedit.pm_.c:501
+#: ../../fsedit.pm_.c:530
msgid ""
"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
"point\n"
@@ -2396,168 +2448,217 @@ msgstr ""
"Egiazko fitxategi-sistema (ext2/ext3, reiserfs, xfs, or jfs) behar duzu "
"muntatze-puntu honentzako\n"
-#: ../../fsedit.pm_.c:503
+#: ../../fsedit.pm_.c:532
#, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr "Ezin da fitxategi-sistema enkriptatua erabili %s muntatze-punturako"
-#: ../../fsedit.pm_.c:570
+#: ../../fsedit.pm_.c:599
msgid "Not enough free space for auto-allocating"
msgstr "Ez dago nahikoa leku libre auto-esleitzeko"
-#: ../../fsedit.pm_.c:572
+#: ../../fsedit.pm_.c:601
msgid "Nothing to do"
msgstr "Ez dago zer eginik"
-#: ../../fsedit.pm_.c:665
+#: ../../fsedit.pm_.c:694
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Errorea %s idazteko irekitzean: %s"
-#: ../../fsedit.pm_.c:750
+#: ../../harddrake/sound.pm_.c:155
+msgid "No alternative driver"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:156
+#, c-format
+msgid "There's no known OSS/ALSA alternative driver for your sound card (%s)"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:158
+#, fuzzy
+msgid "Sound configuration"
+msgstr "CUPSen konfigurazioa"
+
+#: ../../harddrake/sound.pm_.c:159
+#, c-format
msgid ""
-"An error occurred - no valid devices were found on which to create new "
-"filesystems. Please check your hardware for the cause of this problem"
+"Here you can select an alternative driver (either OSS or ALSA) for your "
+"sound card (%s)"
msgstr ""
-"Errorea gertatu da - ez da fitxategi-sistema berriak sortzeko gailu "
-"baliozkorik aurkitu. Aztertu zure hardwarea arazo honen arrazoia bilatzeko"
-#: ../../fsedit.pm_.c:773
-msgid "You don't have any partitions!"
-msgstr "Ez duzu partiziorik!"
+#: ../../harddrake/sound.pm_.c:162
+#, fuzzy
+msgid "Driver:"
+msgstr "Kontrolatzailea"
-#: ../../harddrake/ui.pm_.c:15
+#: ../../harddrake/sound.pm_.c:173
#, fuzzy
-msgid "Model"
-msgstr "Modulua"
+msgid "No known driver"
+msgstr "X kontrolatzailea"
-#: ../../harddrake/ui.pm_.c:15
+#: ../../harddrake/sound.pm_.c:174
+#, c-format
+msgid "There's no known driver for your sound card (%s)"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:177
#, fuzzy
-msgid "hard disk model"
-msgstr "Txartela modeloa :"
+msgid "Unkown driver"
+msgstr "Modelo ezezaguna"
+
+#: ../../harddrake/sound.pm_.c:178
+#, c-format
+msgid ""
+"The \"%s\" driver for your sound card is unlisted\n"
+"\n"
+"Please send the output of the \"lspcidrake -v\" command to\n"
+"<install at mandrakesoft dot com>\n"
+"with subject: unlisted sound driver \"%s\""
+msgstr ""
#: ../../harddrake/ui.pm_.c:16
-#, fuzzy
-msgid "Channel"
-msgstr "Utzi"
+msgid "Model"
+msgstr "Eredua"
#: ../../harddrake/ui.pm_.c:16
+msgid "hard disk model"
+msgstr "disko zurrun eredua"
+
+#: ../../harddrake/ui.pm_.c:17
+msgid "Channel"
+msgstr "Kanalea"
+
+#: ../../harddrake/ui.pm_.c:17
msgid "EIDE/SCSI channel"
-msgstr ""
+msgstr "EIDE/SCSI kanalea"
-#: ../../harddrake/ui.pm_.c:18
+#: ../../harddrake/ui.pm_.c:19
msgid "Bus"
msgstr "Busa"
-#: ../../harddrake/ui.pm_.c:19
+#: ../../harddrake/ui.pm_.c:20
msgid ""
"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
-msgstr ""
+msgstr "hau da gailua lotzen den bus fisikoa (adib: PCI, USB, ...)"
-#: ../../harddrake/ui.pm_.c:20
+#: ../../harddrake/ui.pm_.c:21
msgid "Module"
msgstr "Modulua"
-#: ../../harddrake/ui.pm_.c:20
+#: ../../harddrake/ui.pm_.c:21
msgid "the module of the GNU/Linux kernel that handle that device"
-msgstr ""
+msgstr "gailu hori gobernatzen duen GNU/Linux kernelaren modulua"
-#: ../../harddrake/ui.pm_.c:21
+#: ../../harddrake/ui.pm_.c:22
msgid "Media class"
msgstr "Euskarri mota"
-#: ../../harddrake/ui.pm_.c:21
+#: ../../harddrake/ui.pm_.c:22
msgid "class of hardware device"
-msgstr ""
+msgstr "hardware gailu klasea"
-#: ../../harddrake/ui.pm_.c:22 ../../printerdrake.pm_.c:1404
+#: ../../harddrake/ui.pm_.c:23 ../../printerdrake.pm_.c:1517
msgid "Description"
msgstr "Azalpena"
-#: ../../harddrake/ui.pm_.c:22
+#: ../../harddrake/ui.pm_.c:23
msgid "this field describe the device"
-msgstr ""
+msgstr "eremu honek gailua deskribatzen du"
-#: ../../harddrake/ui.pm_.c:24
+#: ../../harddrake/ui.pm_.c:25
msgid "Bus identification"
msgstr "Bus identifikazioa"
-#: ../../harddrake/ui.pm_.c:25
+#: ../../harddrake/ui.pm_.c:26
msgid ""
-"- PCI and USB devices : this list the vendor, device, subvendor and "
-"subdevice PCI/USB ids"
+"- PCI and USB devices: this list the vendor, device, subvendor and subdevice "
+"PCI/USB ids"
msgstr ""
-#: ../../harddrake/ui.pm_.c:27
+#: ../../harddrake/ui.pm_.c:28
msgid "Location on the bus"
msgstr "Busean kokapena"
-#: ../../harddrake/ui.pm_.c:28
+#: ../../harddrake/ui.pm_.c:29
+#, fuzzy
msgid ""
"- pci devices: this gives the PCI slot, device and function of this card\n"
"- eide devices: the device is either a slave or a master device\n"
"- scsi devices: the scsi bus and the scsi device ids"
msgstr ""
+"- pci gailuak: txartela honen PCI zirritua, gailua eta funtzioa ematen du\n"
+"- eide gailuak: gailua nagusia edo morroia da\n"
+"- scsi gailuak: scsi busa eta scsi gailu id-ak"
-#: ../../harddrake/ui.pm_.c:31
+#: ../../harddrake/ui.pm_.c:32
#, fuzzy
msgid "Old device file"
-msgstr "Hautatu fitxategia"
+msgstr "Gailu fitxategi zarra"
-#: ../../harddrake/ui.pm_.c:32
+#: ../../harddrake/ui.pm_.c:33
msgid "old static device name used in dev package"
msgstr ""
-#: ../../harddrake/ui.pm_.c:33
-#, fuzzy
+#: ../../harddrake/ui.pm_.c:34
msgid "New devfs device"
-msgstr "Atebide-gailua"
+msgstr "devfs gailu berria"
-#: ../../harddrake/ui.pm_.c:34
+#: ../../harddrake/ui.pm_.c:35
msgid "new dinamic device name generated by incore kernel devfs"
msgstr ""
-#: ../../harddrake/ui.pm_.c:35
-#, fuzzy
+#: ../../harddrake/ui.pm_.c:36
msgid "Number of buttons"
-msgstr "2 botoi"
+msgstr "Botoi kopurua"
-#: ../../harddrake/ui.pm_.c:36
+#: ../../harddrake/ui.pm_.c:37
msgid "the vendor name of the device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:60
+#: ../../harddrake/ui.pm_.c:38
+#, fuzzy
+msgid "Alternative drivers"
+msgstr "Proba-orri alternatiboa (A4)"
+
+#: ../../harddrake/ui.pm_.c:39
+msgid "the list of alternative drivers for this sound card"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:63
msgid "/_Quit"
msgstr "/_Irten"
-#: ../../harddrake/ui.pm_.c:61 ../../harddrake/ui.pm_.c:62
-#: ../../harddrake/ui.pm_.c:68 ../../standalone/logdrake_.c:110
+#: ../../harddrake/ui.pm_.c:64 ../../harddrake/ui.pm_.c:65
+#: ../../harddrake/ui.pm_.c:71 ../../standalone/logdrake_.c:110
msgid "/_Help"
msgstr "/_Laguntza"
-#: ../../harddrake/ui.pm_.c:62
+#: ../../harddrake/ui.pm_.c:65
msgid "/_Help..."
msgstr "/_Laguntza..."
-#: ../../harddrake/ui.pm_.c:63
+#: ../../harddrake/ui.pm_.c:66
msgid "Harddrake help"
msgstr "Harddrake laguntza"
-#: ../../harddrake/ui.pm_.c:64
+#: ../../harddrake/ui.pm_.c:67
msgid ""
"Description of the fields:\n"
"\n"
msgstr ""
+"Eremuen deskribapena:\n"
+"\n"
-#: ../../harddrake/ui.pm_.c:68
+#: ../../harddrake/ui.pm_.c:71
msgid "/_About..."
msgstr "/_Honi buruz..."
-#: ../../harddrake/ui.pm_.c:69
+#: ../../harddrake/ui.pm_.c:72
msgid "About Harddrake"
msgstr "Harddrakeri buruz"
-#: ../../harddrake/ui.pm_.c:70
+#: ../../harddrake/ui.pm_.c:73
msgid ""
"This is HardDrake, a Mandrake hardware configuration tool.\n"
"Version:"
@@ -2565,51 +2666,51 @@ msgstr ""
"HardDrake da hau, Mandrakeren hardware ezarpen tresna bat.\n"
"Bertsioa:"
-#: ../../harddrake/ui.pm_.c:71
+#: ../../harddrake/ui.pm_.c:74
msgid "Author:"
msgstr "Egilea:"
-#: ../../harddrake/ui.pm_.c:83
+#: ../../harddrake/ui.pm_.c:86
msgid "Harddrake2 version "
msgstr "Harddrake2 bertsioa "
-#: ../../harddrake/ui.pm_.c:91
+#: ../../harddrake/ui.pm_.c:103
msgid "Detected hardware"
msgstr "Detektatu hardwarea"
-#: ../../harddrake/ui.pm_.c:92
+#: ../../harddrake/ui.pm_.c:105
+msgid "Information"
+msgstr "Informazioa"
+
+#: ../../harddrake/ui.pm_.c:108
msgid "Configure module"
msgstr "Konfiguratu modulua"
-#: ../../harddrake/ui.pm_.c:92
-msgid "Informations"
-msgstr "Informazioa"
-
-#: ../../harddrake/ui.pm_.c:92
+#: ../../harddrake/ui.pm_.c:109
msgid "Run config tool"
msgstr "Exekutatu ezarpen tresna"
-#: ../../harddrake/ui.pm_.c:96
+#: ../../harddrake/ui.pm_.c:113
msgid "Detection in progress"
msgstr "Detekzio martxan"
-#: ../../harddrake/ui.pm_.c:96 ../../interactive.pm_.c:388
+#: ../../harddrake/ui.pm_.c:113 ../../interactive.pm_.c:391
msgid "Please wait"
msgstr "Itxaron mesedez"
-#: ../../harddrake/ui.pm_.c:139
+#: ../../harddrake/ui.pm_.c:156
msgid "primary"
msgstr "lehenengo mailakoa"
-#: ../../harddrake/ui.pm_.c:139
+#: ../../harddrake/ui.pm_.c:156
msgid "secondary"
msgstr "bigarren mailakoa"
-#: ../../harddrake/ui.pm_.c:176
+#: ../../harddrake/ui.pm_.c:197
msgid "You can configure each parameter of the module here."
-msgstr ""
+msgstr "Moduluaren parametro bakoitza konfiguratu dezakezu hemen."
-#: ../../harddrake/ui.pm_.c:192
+#: ../../harddrake/ui.pm_.c:213
#, c-format
msgid "Running \"%s\" ..."
msgstr "\"%s\" exekutatzen ..."
@@ -2644,15 +2745,15 @@ msgstr ""
"beharrezkoa bada"
#: ../../harddrake/v4l.pm_.c:213
-msgid "Card model :"
+msgid "Card model:"
msgstr "Txartela modeloa :"
#: ../../harddrake/v4l.pm_.c:214
-msgid "Tuner type :"
+msgid "Tuner type:"
msgstr "Sintonizatzaile mota :"
#: ../../harddrake/v4l.pm_.c:215
-msgid "Number of capture buffers :"
+msgid "Number of capture buffers:"
msgstr "Eskuratze buffer kopurua :"
#: ../../harddrake/v4l.pm_.c:215
@@ -2660,11 +2761,11 @@ msgid "number of capture buffers for mmap'ed capture"
msgstr "mmap erabiliz eskuratzerako eskuratze buffer kopurua"
#: ../../harddrake/v4l.pm_.c:217
-msgid "PLL setting :"
+msgid "PLL setting:"
msgstr "PLL ezarpenak :"
#: ../../harddrake/v4l.pm_.c:218
-msgid "Radio support :"
+msgid "Radio support:"
msgstr "Irrati euskarria :"
#: ../../harddrake/v4l.pm_.c:218
@@ -2678,22 +2779,22 @@ msgid ""
"GNU/Linux is a multiuser system, and this means that each user can have his\n"
"own preferences, his own files and so on. You can read the ``User Guide''\n"
"to learn more. But unlike \"root\", which is the administrator, the users\n"
-"you will add here will not be entitled to change anything except their own\n"
-"files and their own configuration. You will have to create at least one\n"
-"regular user for yourself. That account is where you should log in for\n"
-"routine use. Although it is very practical to log in as \"root\" everyday,\n"
-"it may also be very dangerous! The slightest mistake could mean that your\n"
-"system would not work any more. If you make a serious mistake as a regular\n"
-"user, you may only lose some information, but not the entire system.\n"
+"you add here will not be entitled to change anything except their own files\n"
+"and their own configuration. You will have to create at least one regular\n"
+"user for yourself. That account is where you should log in for routine use.\n"
+"Although it is very practical to log in as \"root\" everyday, it may also\n"
+"be very dangerous! The slightest mistake could mean that your system would\n"
+"not work any more. If you make a serious mistake as a regular user, you may\n"
+"only lose some information, but not the entire system.\n"
"\n"
"First, you have to enter your real name. This is not mandatory, of course -\n"
"as you can actually enter whatever you want. DrakX will then take the first\n"
"word you have entered in the box and will bring it over to the \"User\n"
"name\". This is the name this particular user will use to log onto the\n"
"system. You can change it. You then have to enter a password here. A\n"
-"non-privileged (regular) user's password is not as crucial as \"root\"' one\n"
-"from a security point of view, but that is no reason to neglect it: after\n"
-"all, your files are at risk.\n"
+"non-privileged (regular) user's password is not as crucial as the \"root\"'\n"
+"one from a security point of view, but that is no reason to neglect it:\n"
+"after all, your files are at risk.\n"
"\n"
"If you click on \"Accept user\", you can then add as many as you want. Add\n"
"a user for each one of your friends: your father or your sister, for\n"
@@ -2842,7 +2943,7 @@ msgid ""
"to have a graphical workstation!\n"
"\n"
"Moving the mouse cursor over a group name will display a short explanatory\n"
-"text about that group. If you deselect all groups when performing a regular\n"
+"text about that group. If you unselect all groups when performing a regular\n"
"installation (by opposition to an upgrade), a dialog will pop up proposing\n"
"different options for a minimal installation:\n"
"\n"
@@ -2919,10 +3020,10 @@ msgstr ""
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
#: ../../help.pm_.c:128
msgid ""
-"Finally, depending on whether or not you selected individual packages, you\n"
-"will be presented a tree containing all packages classified by groups and\n"
-"subgroups. While browsing the tree, you can select entire groups,\n"
-"subgroups, or individual packages.\n"
+"Finally, depending on whether or not you chose to be able to select\n"
+"individual packages, you will be presented a tree containing all packages\n"
+"classified by groups and subgroups. While browsing the tree, you can select\n"
+"entire groups, subgroups, or individual packages.\n"
"\n"
"Whenever you select a package on the tree, a description appears on the\n"
"right. When your selection is finished, click the \"Install\" button which\n"
@@ -2993,11 +3094,11 @@ msgstr ""
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
#: ../../help.pm_.c:164
msgid ""
-"You are now proposed to set up your Internet/network connection. If you\n"
-"wish to connect your computer to the Internet or to a local network, click\n"
-"\"OK\". The autodetection of network devices and modem will be launched. If\n"
-"this detection fails, uncheck the \"Use auto detection\" box next time. You\n"
-"may also choose not to configure the network, or do it later; in that case,\n"
+"You are now able to set up your Internet/network connection. If you wish to\n"
+"connect your computer to the Internet or to a local network, click \"OK\".\n"
+"The autodetection of network devices and modem will be launched. If this\n"
+"detection fails, uncheck the \"Use auto detection\" box next time. You may\n"
+"also choose not to configure the network, or do it later; in that case,\n"
"simply click the \"Cancel\" button.\n"
"\n"
"Available connections are: traditional modem, ISDN modem, ADSL connection,\n"
@@ -3079,7 +3180,7 @@ msgstr ""
msgid ""
"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
"local time according to the time zone you selected. It is however possible\n"
-"to deactivate this by deselecting \"Hardware clock set to GMT\" so that the\n"
+"to deactivate this by unselecting \"Hardware clock set to GMT\" so that the\n"
"hardware clock is the same as the system clock. This is useful when the\n"
"machine is hosting another operating system like Windows.\n"
"\n"
@@ -3124,7 +3225,9 @@ msgid ""
"If you can see the message during the test, and answer \"Yes\", then DrakX\n"
"will proceed to the next step. If you cannot see the message, it simply\n"
"means that the configuration was wrong and the test will automatically end\n"
-"after 10 seconds, restoring the screen."
+"after 10 seconds, restoring the screen. Refer then to the Video\n"
+"configuration section of the user guide for more information on how to\n"
+"configure your display."
msgstr ""
"X (X Window sistema) GNU/Linux-en interfaze grafikoaren bihotza da, eta\n"
"Mandrake Linux-en dauden ingurune grafiko guztiak (KDE, GNOME, AfterStep,\n"
@@ -3147,34 +3250,7 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
-#: ../../help.pm_.c:237
-msgid ""
-"The first time you try the X configuration, you may not be very satisfied\n"
-"with its display (screen is too small, shifted left or right...). Hence,\n"
-"even if X starts up correctly, DrakX then asks you if the configuration\n"
-"suits you. It will also propose to change it by displaying a list of valid\n"
-"modes it could find, asking you to select one.\n"
-"\n"
-"As a last resort, if you still cannot get X to work, choose \"Change\n"
-"graphics card\", select \"Unlisted card\", and when prompted on which\n"
-"server, choose \"FBDev\". This is a failsafe option which works with any\n"
-"modern graphics card. Then choose \"Test again\" to be sure."
-msgstr ""
-"X konfigurazioa probatzen duzun lehen aldian, baliteke oso pozik ez\n"
-"geratzea ikusten denarekin (pantaila txikiegia, ezkerrera edo eskuinera\n"
-"lerratua...). Beraz, X ongi abiarazten bada ere, konfigurazioa zuretzat\n"
-"egokia den galdetuko dizu DrakXk gero. Aldatzea ere proposatuko dizu aurki\n"
-"ditzakeen baliozko moduen zerrenda bistaratuz eta bat hautatzeko eskatuz.\n"
-"\n"
-"Azken baliabide gisa, Xk funtzionatzea lortzen ez baduzu, aukeratu \"Aldatu\n"
-"txartel grafikoa\", hautatu \"Zerrendatu gabeko txartela\", eta zein\n"
-"zerbitzari nahi duzun galdetzean, aukeratu \"FBDev\". Hau aukera segurua\n"
-"da, edozein txartel grafiko modernorekin funtzionatzen duena. Gero aukeratu\n"
-"\"Probatu berriro\" ziur egoteko."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
-#: ../../help.pm_.c:249
+#: ../../help.pm_.c:239
msgid ""
"Finally, you will be asked whether you want to see the graphical interface\n"
"at boot. Note this question will be asked even if you chose not to test the\n"
@@ -3190,7 +3266,8 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
-#: ../../help.pm_.c:256
+#: ../../help.pm_.c:246
+#, fuzzy
msgid ""
"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
@@ -3210,10 +3287,10 @@ msgid ""
"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
"password, or any other reason.\n"
"\n"
-"When you click on this step, you will be asked to enter a disk inside the\n"
-"drive. The floppy disk you will insert must be empty or contain data which\n"
-"you do not need. You will not have to format it since DrakX will rewrite\n"
-"the whole disk."
+"If you say \"Yes\", you will be asked to enter a disk inside the drive. The\n"
+"floppy disk you will insert must be empty or contain data which you do not\n"
+"need. You will not have to format it since DrakX will rewrite the whole\n"
+"disk."
msgstr ""
"Mandrake Linux-en CD-ROMak inkorporatutako berreskuratze-modua dauka.\n"
"Honela egin behar duzu: abiarazi CD-ROMetik, sakatu >>F1<< tekla abioan\n"
@@ -3241,7 +3318,7 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
-#: ../../help.pm_.c:280
+#: ../../help.pm_.c:270
msgid ""
"At this point, you need to choose where you want to install the Mandrake\n"
"Linux operating system on your hard drive. If your hard drive is empty or\n"
@@ -3274,7 +3351,9 @@ msgid ""
"\n"
" * \"Use existing partition\": the wizard has detected one or more existing\n"
"Linux partitions on your hard drive. If you want to use them, choose this\n"
-"option;\n"
+"option. You will then be asked to choose the mount points associated to\n"
+"each of the partitions. The legacy mount points are selected by default,\n"
+"and you should generally keep them.\n"
"\n"
" * \"Use the free space on the Windows; partition\": if Microsoft Windows\n"
"is installed on your hard drive and takes all the space available on it,\n"
@@ -3307,7 +3386,9 @@ msgid ""
" * \"Expert mode\": choose this option if you want to manually partition\n"
"your hard drive. Be careful - it is a powerful but dangerous choice. You\n"
"can very easily lose all your data. Hence, do not choose this unless you\n"
-"know what you are doing."
+"know what you are doing. To know how do use the DiskDrake utility used\n"
+"here, refer to the section ``Managing Your Partitions'' of the ````User\n"
+"Guide''''"
msgstr ""
"Hona iritsita, Mandrake Linux sistema eragilea disko gogorrean non\n"
"instalatu aukeratu beharko duzu. Disko gogorra hutsik badago edo lehendik\n"
@@ -3377,7 +3458,7 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
-#: ../../help.pm_.c:347
+#: ../../help.pm_.c:341
msgid ""
"There you are. Installation is now complete and your GNU/Linux system is\n"
"ready to use. Just click \"OK\" to reboot the system. You can start\n"
@@ -3441,7 +3522,7 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
-#: ../../help.pm_.c:378
+#: ../../help.pm_.c:372
msgid ""
"Any partitions that have been newly defined must be formatted for use\n"
"(formatting means creating a filesystem).\n"
@@ -3494,7 +3575,7 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
-#: ../../help.pm_.c:404
+#: ../../help.pm_.c:398
msgid ""
"Your new Mandrake Linux operating system is currently being installed.\n"
"Depending on the number of packages you will be installing and the speed of\n"
@@ -3511,12 +3592,12 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
-#: ../../help.pm_.c:412
+#: ../../help.pm_.c:406
msgid ""
"At the time you are installing Mandrake Linux, it is likely that some\n"
"packages have been updated since the initial release. Some bugs may have\n"
"been fixed, and security issues solved. To allow you to benefit from these\n"
-"updates, you are now proposed to download them from the Internet. Choose\n"
+"updates, you are now able to download them from the Internet. Choose\n"
"\"Yes\" if you have a working Internet connection, or \"No\" if you prefer\n"
"to install updated packages later.\n"
"\n"
@@ -3539,7 +3620,7 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
-#: ../../help.pm_.c:425
+#: ../../help.pm_.c:419
msgid ""
"Before continuing, you should read carefully the terms of the license. It\n"
"covers the whole Mandrake Linux distribution, and if you do not agree with\n"
@@ -3555,14 +3636,14 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
-#: ../../help.pm_.c:432
+#: ../../help.pm_.c:426
msgid ""
"At this point, it is time to choose the security level desired for the\n"
"machine. As a rule of thumb, the more exposed the machine is, and the more\n"
"the data stored in it is crucial, the higher the security level should be.\n"
"However, a higher security level is generally obtained at the expense of\n"
-"easiness of use. Refer to the \"msec\" chapter of the ``Reference Manual''\n"
-"to get more information about the meaning of these levels.\n"
+"ease of use. Refer to the \"msec\" chapter of the ``Reference Manual'' to\n"
+"get more information about the meaning of these levels.\n"
"\n"
"If you do not know what to choose, keep the default option."
msgstr ""
@@ -3578,7 +3659,7 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
-#: ../../help.pm_.c:442
+#: ../../help.pm_.c:436
msgid ""
"At this point, you need to choose which partition(s) will be used for the\n"
"installation of your Mandrake Linux system. If partitions have already been\n"
@@ -3595,26 +3676,26 @@ msgid ""
" * \"Clear all\": this option deletes all partitions on the selected hard\n"
"drive;\n"
"\n"
-" * \"Auto allocate\": this option enables to automatically create \"Ext2\"\n"
-"and swap partitions in free space of your hard drive;\n"
+" * \"Auto allocate\": this option enables to automatically create ext3 and\n"
+"swap partitions in free space of your hard drive;\n"
"\n"
-" * \"More\": gives access to additional features:\n"
+"\"More\": gives access to additional features:\n"
"\n"
-" * \"Save partition table\": saves the partition table to a floppy.\n"
-"Useful for later partition-table recovery if necessary. It is strongly\n"
-"recommended to perform this step;\n"
+" * \"Save partition table\": saves the partition table to a floppy. Useful\n"
+"for later partition-table recovery if necessary. It is strongly recommended\n"
+"to perform this step;\n"
"\n"
-" * \"Restore partition table\": allows to restore a previously saved\n"
+" * \"Restore partition table\": allows to restore a previously saved\n"
"partition table from floppy disk;\n"
"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you\n"
-"can try to recover it using this option. Please be careful and remember\n"
-"that it can fail;\n"
+" * \"Rescue partition table\": if your partition table is damaged, you can\n"
+"try to recover it using this option. Please be careful and remember that it\n"
+"can fail;\n"
"\n"
-" * \"Reload partition table\": discards all changes and loads your\n"
-"initial partition table;\n"
+" * \"Reload partition table\": discards all changes and loads your initial\n"
+"partition table;\n"
"\n"
-" * \"Removable media automounting\": unchecking this option will force\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
"users to manually mount and unmount removable medias such as floppies and\n"
"CD-ROMs.\n"
"\n"
@@ -3642,7 +3723,7 @@ msgid ""
" * Ctrl-m to set the mount point.\n"
"\n"
"To get information about the different filesystem types available, please\n"
-"read the ext2fs chapter from the ``Reference Manual''.\n"
+"read the ext2FS chapter from the ``Reference Manual''.\n"
"\n"
"If you are installing on a PPC machine, you will want to create a small HFS\n"
"``bootstrap'' partition of at least 1MB, which will be used by the yaboot\n"
@@ -3725,7 +3806,7 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
-#: ../../help.pm_.c:513
+#: ../../help.pm_.c:507
msgid ""
"More than one Microsoft partition has been detected on your hard drive.\n"
"Please choose the one you want to resize in order to install your new\n"
@@ -3792,36 +3873,36 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
-#: ../../help.pm_.c:544
+#: ../../help.pm_.c:538
msgid "Please be patient. This operation can take several minutes."
msgstr "Izan pazientzia. Eragiketa honek minutu batzuk beharko ditu."
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
-#: ../../help.pm_.c:547
+#: ../../help.pm_.c:541
msgid ""
"DrakX now needs to know if you want to perform a default (\"Recommended\")\n"
"installation or if you want to have greater control (\"Expert\"). You can\n"
"also choose to do a new install or an upgrade of an existing Mandrake Linux\n"
"system:\n"
"\n"
-" * \"Install\": completely wipes out the old system. In fact, depending on\n"
-"what currently holds your machine, you will be able to keep some old (Linux\n"
-"or other) partitions unchanged;\n"
+" * \"Install\": completely wipes out the old system, however, depending on\n"
+"what is currently installed on your machine, you may be able to keep some\n"
+"old partitions (Linux or otherwise) unchanged;\n"
"\n"
" * \"Upgrade\": this installation class allows to simply update the\n"
"packages currently installed on your Mandrake Linux system. It keeps the\n"
"current partitions of your hard drives as well as user configurations. All\n"
-"other configuration steps remain available with respect to plain\n"
+"other configuration steps remain available, similar to a normal\n"
"installation;\n"
"\n"
-" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
-"existing Mandrake Linux system while keeping all system configurations\n"
-"unchanged. Adding new packages to the current installation is also\n"
-"possible.\n"
+" * \"Upgrade Packages Only\": this new installation class allows you to\n"
+"upgrade an existing Mandrake Linux system while keeping all system\n"
+"configurations unchanged. Adding new packages to the current installation\n"
+"is also possible.\n"
"\n"
-"Upgrades should work fine for Mandrake Linux systems starting from \"8.1\"\n"
-"release.\n"
+"Upgrades should work fine on Mandrake Linux systems containing version\n"
+"\"8.1\" or later.\n"
"\n"
"Depending on your knowledge of GNU/Linux, select one of the following\n"
"choices:\n"
@@ -3830,11 +3911,11 @@ msgid ""
"operating system. The installation will be very easy and you will only be\n"
"asked a few questions;\n"
"\n"
-" * Expert: if you have a good knowledge of GNU/Linux, you can choose this\n"
-"installation class. The expert installation will allow you to perform a\n"
-"highly-customized installation. Answering some of the questions can be\n"
-"difficult if you do not have a good knowledge of GNU/Linux, so do not\n"
-"choose this unless you know what you are doing."
+" * Expert: if you have a good understanding of GNU/Linux, you may wish to\n"
+"perform a highly customized installation. Some of the decisions you will\n"
+"have to make may be difficult if you do not have good knowledge of\n"
+"GNU/Linux, so it is not recommended that those without a fair amount of\n"
+"experience select this installation class."
msgstr ""
"DrakXk lehenetsitako instalazioa (\"Gomendatua\") egin nahi duzun edo\n"
"kontrol handiagoa eduki nahi duzun (\"Aditua\") jakin behar du orain.\n"
@@ -3874,19 +3955,22 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
-#: ../../help.pm_.c:584
+#: ../../help.pm_.c:578
msgid ""
"Normally, DrakX selects the right keyboard for you (depending on the\n"
-"language you have chosen) and you won't even see this step. However, you\n"
-"might not have a keyboard that corresponds exactly to your language: for\n"
-"example, if you are an English speaking Swiss person, you may still want\n"
-"your keyboard to be a Swiss keyboard. Or if you speak English but are\n"
-"located in Quebec, you may find yourself in the same situation. In both\n"
-"cases, you will have to go back to this installation step and select an\n"
-"appropriate keyboard from the list.\n"
+"language you have chosen). However, you might not have a keyboard that\n"
+"corresponds exactly to your language: for example, if you are an English\n"
+"speaking Swiss person, you may still want your keyboard to be a Swiss\n"
+"keyboard. Or if you speak English but are located in Quebec, you may find\n"
+"yourself in the same situation. In both cases, you will have to go back to\n"
+"this installation step and select an appropriate keyboard from the list.\n"
"\n"
"Click on the \"More\" button to be presented with the complete list of\n"
-"supported keyboards."
+"supported keyboards.\n"
+"\n"
+"If you choose a keyboard layout based on a non-latin alphabet, you will be\n"
+"asked on next dialog to choose the key binding that will switch the\n"
+"keyboard layout between the latin and non latin layouts."
msgstr ""
"Normalean, DrakXk teklatu egokia hautatuko dizu (aukeratutako hizkuntzaren\n"
"arabera) eta urrats hau ikusi ere ez duzu egingo. Dena den, baliteke zure\n"
@@ -3901,8 +3985,10 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
-#: ../../help.pm_.c:597
+#: ../../help.pm_.c:594
msgid ""
+"The first step is to choose your preferred language.\n"
+"\n"
"Please choose your preferred language for installation and system usage.\n"
"\n"
"Clicking on the \"Advanced\" button will allow you to select other\n"
@@ -3930,7 +4016,7 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
-#: ../../help.pm_.c:610
+#: ../../help.pm_.c:609
msgid ""
"DrakX generally detects the number of buttons your mouse has. If not, it\n"
"assumes you have a two-button mouse and will set it up for third-button\n"
@@ -3943,7 +4029,14 @@ msgid ""
"If you choose a mouse other than the default, a test screen will be\n"
"displayed. Use the buttons and wheel to verify that the settings are\n"
"correct. If the mouse is not working well, press the space bar or [Return]\n"
-"to \"Cancel\" and choose again."
+"to \"Cancel\" and choose again.\n"
+"\n"
+"Wheel mouses are sometimes not automatically detected. You will need to\n"
+"manually select it in the list. Be sure to select the one corresponding to\n"
+"the correct port it is attached to. After you have pressed the \"OK\"\n"
+"button, a mouse image is displayed. You then need to move the wheel of your\n"
+"mouse to activate it correctly. Then test all buttons and movements are\n"
+"correct."
msgstr ""
"DrakXk normalean detektatzen du saguak zenbat botoi dituen. Detektatu ezin\n"
"badu, bi botoiko sagua duzula suposatuko du, eta hirugarren botoia emula\n"
@@ -3960,7 +4053,7 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
-#: ../../help.pm_.c:624
+#: ../../help.pm_.c:630
msgid ""
"Please select the correct port. For example, the \"COM1\" port under\n"
"Windows is named \"ttyS0\" under GNU/Linux."
@@ -3970,7 +4063,7 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
-#: ../../help.pm_.c:628
+#: ../../help.pm_.c:634
msgid ""
"This is the most crucial decision point for the security of your GNU/Linux\n"
"system: you have to enter the \"root\" password. \"root\" is the system\n"
@@ -4000,9 +4093,9 @@ msgid ""
"In Expert mode, you will be asked if you will be connecting to an\n"
"authentication server, like NIS or LDAP.\n"
"\n"
-"If your network uses the LDAP (or NIS) protocol for authentication, select\n"
-"\"LDAP\" (or \"NIS\") as authentication. If you do not know, ask your\n"
-"network administrator.\n"
+"If your network uses either of the LDAP, NIS, or PDC Windows Domain\n"
+"authentication services, select the appropriate one as \"authentication\".\n"
+"If you do not know, ask your network administrator.\n"
"\n"
"If your computer is not connected to any administrated network, you will\n"
"want to choose \"Local files\" for authentication."
@@ -4045,7 +4138,7 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
-#: ../../help.pm_.c:664
+#: ../../help.pm_.c:670
msgid ""
"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
@@ -4084,16 +4177,7 @@ msgid ""
"options. !!\n"
"\n"
"Clicking the \"Advanced\" button in this dialog will offer many advanced\n"
-"options, which are reserved to the expert user.\n"
-"\n"
-"After you have configured the general bootloader parameters, the list of\n"
-"boot options which will be available at boot time will be displayed.\n"
-"\n"
-"If there is another operating system installed on your machine, it will\n"
-"automatically be added to the boot menu. Here, you can choose to fine-tune\n"
-"the existing options. Select an entry and click \"Modify\" to modify or\n"
-"remove it; \"Add\" creates a new entry; and \"Done\" goes on to the next\n"
-"installation step."
+"options, which are reserved for the expert user."
msgstr ""
"LILO eta grub abioko kargatzaileak dira. Etapa hau erabat automatizatuta\n"
"izaten da normalean. Izan ere, DrakXk diskoaren abioko sektorea aztertzen\n"
@@ -4145,13 +4229,16 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
-#: ../../help.pm_.c:713
+#: ../../help.pm_.c:710
msgid ""
-"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
-"either GNU/Linux or any other operating system present on your computer.\n"
-"Normally, these other operating systems are correctly detected and\n"
-"installed. If this is not the case, you can add an entry by hand in this\n"
-"screen. Be careful to choose the correct parameters.\n"
+"After you have configured the general bootloader parameters, the list of\n"
+"boot options which will be available at boot time will be displayed.\n"
+"\n"
+"If there is another operating system installed on your machine, it will\n"
+"automatically be added to the boot menu. Here, you can choose to fine-tune\n"
+"the existing options. Select an entry and click \"Modify\" to modify or\n"
+"remove it; \"Add\" creates a new entry; and \"Done\" goes on to the next\n"
+"installation step.\n"
"\n"
"You may also not want to give access to these other operating systems to\n"
"anyone. In which case, you can delete the corresponding entries. But then,\n"
@@ -4247,18 +4334,18 @@ msgstr ""
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
#: ../../help.pm_.c:759
msgid ""
-"DrakX now detects any IDE device present in your computer. It will also\n"
-"scan for one or more PCI SCSI card(s) on your system. If a SCSI card is\n"
+"DrakX now detects any IDE devices present in your computer. It will also\n"
+"scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
"found, DrakX will automatically install the appropriate driver.\n"
"\n"
"Because hardware detection does not always detect a piece of hardware,\n"
"DrakX will ask you to confirm if a PCI SCSI card is present. Click \"Yes\"\n"
"if you know that there is a SCSI card installed in your machine. You will\n"
-"be presented a list of SCSI cards to choose from. Click \"No\" if you have\n"
-"no SCSI hardware. If you are unsure, you can check the list of hardware\n"
-"detected in your machine by selecting \"See hardware info\" and clicking\n"
-"\"OK\". Examine the list of hardware and then click on the \"OK\" button to\n"
-"return to the SCSI interface question.\n"
+"be presented with a list of SCSI cards to choose from. Click \"No\" if you\n"
+"have no SCSI hardware. If you are unsure, you can check the list of\n"
+"hardware detected in your machine by selecting \"See hardware info\" and\n"
+"clicking \"OK\". Examine the list of hardware and then click on the \"OK\"\n"
+"button to return to the SCSI interface question.\n"
"\n"
"If you have to manually specify your adapter, DrakX will ask if you want to\n"
"specify options for it. You should allow DrakX to probe the hardware for\n"
@@ -4480,7 +4567,9 @@ msgid ""
"order to configure the clock according to the time zone you are in;\n"
"\n"
" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
-"configuration wizard;\n"
+"configuration wizard. Consult the corresponding chapter of the ``User\n"
+"Guide'' for more information on how to setup a new printer. The interface\n"
+"presented there is similar to the one used during installation;\n"
"\n"
" * \"Sound card\": if a sound card is detected on your system, it is\n"
"displayed here. No modification possible at installation time;\n"
@@ -4522,7 +4611,7 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
-#: ../../help.pm_.c:894
+#: ../../help.pm_.c:896
msgid ""
"Choose the hard drive you want to erase in order to install your new\n"
"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
@@ -4534,7 +4623,7 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
-#: ../../help.pm_.c:899
+#: ../../help.pm_.c:901
msgid ""
"Click on \"OK\" if you want to delete all data and partitions present on\n"
"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
@@ -4569,7 +4658,7 @@ msgstr ""
msgid "You must also format %s"
msgstr "%s ere formateatu behar duzu"
-#: ../../install_any.pm_.c:418
+#: ../../install_any.pm_.c:423
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -4594,20 +4683,29 @@ msgstr ""
"\n"
"Zerbitzari horiek benetan instalatu nahi dituzu?\n"
-#: ../../install_any.pm_.c:453
+#: ../../install_any.pm_.c:441
+#, c-format
+msgid ""
+"The following packages will be removed to allow upgrading your system: %s\n"
+"\n"
+"\n"
+"Do you really want to remove these packages?\n"
+msgstr ""
+
+#: ../../install_any.pm_.c:471
msgid "Can't use broadcast with no NIS domain"
msgstr "Ezin da difusioa erabili NIS domeinurik gabe"
-#: ../../install_any.pm_.c:841
+#: ../../install_any.pm_.c:862
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Sartu FAT formatuko diskete bat %s unitatean"
-#: ../../install_any.pm_.c:845
+#: ../../install_any.pm_.c:866
msgid "This floppy is not FAT formatted"
msgstr "Diskete honek ez du FAT formaturik"
-#: ../../install_any.pm_.c:857
+#: ../../install_any.pm_.c:878
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -4615,11 +4713,19 @@ msgstr ""
"Gordetako pakete-hautapen hau erabiltzeko, abiarazi instalazioa ``linux "
"defcfg=floppy''rekin"
-#: ../../install_any.pm_.c:880 ../../partition_table.pm_.c:771
+#: ../../install_any.pm_.c:901 ../../partition_table.pm_.c:767
#, c-format
msgid "Error reading file %s"
msgstr "Errorea %s fitxategia irakurtzean"
+#: ../../install_any.pm_.c:1023
+msgid ""
+"An error occurred - no valid devices were found on which to create new "
+"filesystems. Please check your hardware for the cause of this problem"
+msgstr ""
+"Errorea gertatu da - ez da fitxategi-sistema berriak sortzeko gailu "
+"baliozkorik aurkitu. Aztertu zure hardwarea arazo honen arrazoia bilatzeko"
+
#: ../../install_interactive.pm_.c:23
#, c-format
msgid ""
@@ -4653,59 +4759,59 @@ msgstr ""
"\n"
"Jarraitu hala ere?"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:168
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:169
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "FAT partizio bat eduki behar duzu /boot/efi-n muntatuta"
-#: ../../install_interactive.pm_.c:91
+#: ../../install_interactive.pm_.c:92
msgid "Use free space"
msgstr "Erabili leku librea"
-#: ../../install_interactive.pm_.c:93
+#: ../../install_interactive.pm_.c:94
msgid "Not enough free space to allocate new partitions"
msgstr "Ez dago partizio berriak esleitzeko adina leku"
-#: ../../install_interactive.pm_.c:101
+#: ../../install_interactive.pm_.c:102
msgid "Use existing partitions"
msgstr "Lehendik dagoen partizioa erabili"
-#: ../../install_interactive.pm_.c:103
+#: ../../install_interactive.pm_.c:104
msgid "There is no existing partition to use"
msgstr "Ez dago erabiltzeko moduko partiziorik"
-#: ../../install_interactive.pm_.c:110
+#: ../../install_interactive.pm_.c:111
msgid "Use the Windows partition for loopback"
msgstr "Erabili Windows partizioa atzera-begiztarako"
-#: ../../install_interactive.pm_.c:113
+#: ../../install_interactive.pm_.c:114
msgid "Which partition do you want to use for Linux4Win?"
msgstr "Zein partizio erabili nahi duzu Linux4Win-erako?"
-#: ../../install_interactive.pm_.c:115
+#: ../../install_interactive.pm_.c:116
msgid "Choose the sizes"
msgstr "Aukeratu tamainak"
-#: ../../install_interactive.pm_.c:116
+#: ../../install_interactive.pm_.c:117
msgid "Root partition size in MB: "
msgstr "Erroko partizioaren tamaina MBtan: "
-#: ../../install_interactive.pm_.c:117
+#: ../../install_interactive.pm_.c:118
msgid "Swap partition size in MB: "
msgstr "Swap partizioaren tamaina MBtan: "
-#: ../../install_interactive.pm_.c:126
+#: ../../install_interactive.pm_.c:128
msgid "Use the free space on the Windows partition"
msgstr "Erabili Windows-en partizioko leku librea"
-#: ../../install_interactive.pm_.c:129
+#: ../../install_interactive.pm_.c:131
msgid "Which partition do you want to resize?"
msgstr "Zein partiziori aldatu nahi diozu tamaina?"
-#: ../../install_interactive.pm_.c:131
+#: ../../install_interactive.pm_.c:133
msgid "Resizing Windows partition"
msgstr "Windows fitxategi-sistemaren mugak kalkulatzen"
-#: ../../install_interactive.pm_.c:134
+#: ../../install_interactive.pm_.c:136
#, c-format
msgid ""
"The FAT resizer is unable to handle your partition, \n"
@@ -4714,7 +4820,7 @@ msgstr ""
"FAT tamaina-aldatzaileak ezin du zure partizioa maneiatu, \n"
"errore hau gertatu da: %s"
-#: ../../install_interactive.pm_.c:137
+#: ../../install_interactive.pm_.c:139
msgid ""
"Your Windows partition is too fragmented. Please reboot your computer under "
"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
@@ -4722,7 +4828,7 @@ msgid ""
msgstr ""
"Zure Windows partizioa fragmentatuegia dago, exekutatu ``defrag'' lehendabizi"
-#: ../../install_interactive.pm_.c:138
+#: ../../install_interactive.pm_.c:140
msgid ""
"WARNING!\n"
"\n"
@@ -4742,21 +4848,21 @@ msgstr ""
"instalazioarekin. Datuen babeskopia egitea ere komeni da.\n"
"Ziur zaudenean, sakatu Ados."
-#: ../../install_interactive.pm_.c:148
+#: ../../install_interactive.pm_.c:150
msgid "Which size do you want to keep for Windows on"
msgstr "Zein tamaina utzi nahi duzu Windows-entzat"
-#: ../../install_interactive.pm_.c:149
+#: ../../install_interactive.pm_.c:151
#, c-format
msgid "partition %s"
msgstr "%s partizioan"
-#: ../../install_interactive.pm_.c:156
+#: ../../install_interactive.pm_.c:158
#, c-format
msgid "FAT resizing failed: %s"
msgstr "FAT tamaina-aldaketak huts egin du: %s"
-#: ../../install_interactive.pm_.c:171
+#: ../../install_interactive.pm_.c:173
msgid ""
"There is no FAT partition to resize or to use as loopback (or not enough "
"space left)"
@@ -4764,32 +4870,32 @@ msgstr ""
"Ez dago FAT partiziorik tamainaz aldatzeko edo atzera-begizta gisa "
"erabiltzeko (edo ez dago nahikoa leku)"
-#: ../../install_interactive.pm_.c:177
+#: ../../install_interactive.pm_.c:179
msgid "Erase entire disk"
msgstr "Ezabatu disko osoa"
-#: ../../install_interactive.pm_.c:177
+#: ../../install_interactive.pm_.c:179
msgid "Remove Windows(TM)"
msgstr "Kendu Windows(TM)"
-#: ../../install_interactive.pm_.c:180
+#: ../../install_interactive.pm_.c:182
msgid "You have more than one hard drive, which one do you install linux on?"
msgstr "Disko gogor bat baino gehiago duzu, zeinetan instalatuko duzu linux?"
-#: ../../install_interactive.pm_.c:183
+#: ../../install_interactive.pm_.c:185
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr "%s unitatean dauden partizio eta datu GUZTIAK galdu egingo dira"
-#: ../../install_interactive.pm_.c:191
+#: ../../install_interactive.pm_.c:193
msgid "Custom disk partitioning"
msgstr "Disko-partizio pertsonalizatua"
-#: ../../install_interactive.pm_.c:195
+#: ../../install_interactive.pm_.c:197
msgid "Use fdisk"
msgstr "Erabili fdisk"
-#: ../../install_interactive.pm_.c:198
+#: ../../install_interactive.pm_.c:200
#, c-format
msgid ""
"You can now partition %s.\n"
@@ -4798,28 +4904,28 @@ msgstr ""
"Orain egin dezakezu %s partizioa.\n"
"Egin ondoren, ez ahaztu `w' erabiliz gordetzea"
-#: ../../install_interactive.pm_.c:227
+#: ../../install_interactive.pm_.c:229
msgid "You don't have enough free space on your Windows partition"
msgstr "Ez duzu behar adina leku libre Windows partizioan"
-#: ../../install_interactive.pm_.c:243
+#: ../../install_interactive.pm_.c:245
msgid "I can't find any room for installing"
msgstr "Ezin dut instalatzeko lekurik aurkitu"
-#: ../../install_interactive.pm_.c:246
+#: ../../install_interactive.pm_.c:248
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr "DrakX Partizio-morroiak irtenbide hauek aurkitu ditu:"
-#: ../../install_interactive.pm_.c:250
+#: ../../install_interactive.pm_.c:252
#, c-format
msgid "Partitioning failed: %s"
msgstr "Partizioak huts egin du: %s"
-#: ../../install_interactive.pm_.c:260
+#: ../../install_interactive.pm_.c:262
msgid "Bringing up the network"
msgstr "Sarea irekitzen"
-#: ../../install_interactive.pm_.c:265
+#: ../../install_interactive.pm_.c:267
msgid "Bringing down the network"
msgstr "Sarea ixten"
@@ -4831,12 +4937,12 @@ msgstr ""
"Errore bat gertatu da, baina ez dakit behar bezala maneiatzen.\n"
"Jarraitu zure ardurapean."
-#: ../../install_steps.pm_.c:210
+#: ../../install_steps.pm_.c:211
#, c-format
msgid "Duplicate mount point %s"
msgstr "Bikoiztu %s muntatze-puntua"
-#: ../../install_steps.pm_.c:379
+#: ../../install_steps.pm_.c:380
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -4848,12 +4954,12 @@ msgstr ""
"Probatu CDROMa ordenagailu instalatu batean \"rpm -qpl Mandrake/RPMS/*.rpm\" "
"erabiliz.\n"
-#: ../../install_steps.pm_.c:451
+#: ../../install_steps.pm_.c:452
#, c-format
msgid "Welcome to %s"
msgstr "Ongi etorri %s(e)ra"
-#: ../../install_steps.pm_.c:530 ../../install_steps.pm_.c:770
+#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:772
msgid "No floppy drive available"
msgstr "Ez dago diskete-unitate erabilgarririk"
@@ -4883,69 +4989,69 @@ msgstr "Instalazio-klasea"
msgid "Please choose one of the following classes of installation:"
msgstr "Aukeratu instalazio-klase hauetako bat:"
-#: ../../install_steps_gtk.pm_.c:243 ../../install_steps_interactive.pm_.c:694
+#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:678
msgid "Package Group Selection"
msgstr "Pakete-taldearen hautapena"
-#: ../../install_steps_gtk.pm_.c:276 ../../install_steps_interactive.pm_.c:709
+#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:693
msgid "Individual package selection"
msgstr "Pakete indibidualen hautapena"
-#: ../../install_steps_gtk.pm_.c:299 ../../install_steps_interactive.pm_.c:633
+#: ../../install_steps_gtk.pm_.c:293 ../../install_steps_interactive.pm_.c:617
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Guztira: %d / %d MB"
-#: ../../install_steps_gtk.pm_.c:341
+#: ../../install_steps_gtk.pm_.c:335
msgid "Bad package"
msgstr "Pakete txarra"
-#: ../../install_steps_gtk.pm_.c:342
+#: ../../install_steps_gtk.pm_.c:336
#, c-format
msgid "Name: %s\n"
msgstr "Izena: %s\n"
-#: ../../install_steps_gtk.pm_.c:343
+#: ../../install_steps_gtk.pm_.c:337
#, c-format
msgid "Version: %s\n"
msgstr "Bertsioa: %s\n"
-#: ../../install_steps_gtk.pm_.c:344
+#: ../../install_steps_gtk.pm_.c:338
#, c-format
msgid "Size: %d KB\n"
msgstr "Tamaina: %d KB\n"
-#: ../../install_steps_gtk.pm_.c:345
+#: ../../install_steps_gtk.pm_.c:339
#, c-format
msgid "Importance: %s\n"
msgstr "Garrantzia: %s\n"
-#: ../../install_steps_gtk.pm_.c:367
+#: ../../install_steps_gtk.pm_.c:361
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr "Ezin duzu pakete hori hautatu: ez dago instalatzeko lekurik"
-#: ../../install_steps_gtk.pm_.c:372
+#: ../../install_steps_gtk.pm_.c:366
msgid "The following packages are going to be installed"
msgstr "Ondorengo pakete hauek instalatuko dira"
-#: ../../install_steps_gtk.pm_.c:373
+#: ../../install_steps_gtk.pm_.c:367
msgid "The following packages are going to be removed"
msgstr "Ondorengo pakete hauek kenduko dira"
-#: ../../install_steps_gtk.pm_.c:385
+#: ../../install_steps_gtk.pm_.c:379
msgid "You can't select/unselect this package"
msgstr "Ezin duzu pakete hau hautatu/desautatu"
-#: ../../install_steps_gtk.pm_.c:397
+#: ../../install_steps_gtk.pm_.c:391
msgid "This is a mandatory package, it can't be unselected"
msgstr "Nahitaezko paketea da, ezin da desautatu"
-#: ../../install_steps_gtk.pm_.c:399
+#: ../../install_steps_gtk.pm_.c:393
msgid "You can't unselect this package. It is already installed"
msgstr "Ezin duzu pakete hau desautatu. Dagoeneko instalatuta dago"
-#: ../../install_steps_gtk.pm_.c:402
+#: ../../install_steps_gtk.pm_.c:396
msgid ""
"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
@@ -4953,74 +5059,74 @@ msgstr ""
"Pakete hau bertsio-berritu beharrean dago\n"
"Ziur zaude desautatu nahi duzula?"
-#: ../../install_steps_gtk.pm_.c:405
+#: ../../install_steps_gtk.pm_.c:399
msgid "You can't unselect this package. It must be upgraded"
msgstr "Ezin duzu pakete hau desautatu. Bertsio-berritu egin behar da"
-#: ../../install_steps_gtk.pm_.c:410
+#: ../../install_steps_gtk.pm_.c:404
msgid "Show automatically selected packages"
msgstr "Erakutsi automatikoki hautatutako paketeak"
-#: ../../install_steps_gtk.pm_.c:411 ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_gtk.pm_.c:405 ../../install_steps_interactive.pm_.c:255
#: ../../install_steps_interactive.pm_.c:259
-#: ../../standalone/drakbackup_.c:3600
+#: ../../standalone/drakbackup_.c:4257
msgid "Install"
msgstr "Instalatu"
-#: ../../install_steps_gtk.pm_.c:414
+#: ../../install_steps_gtk.pm_.c:408
msgid "Load/Save on floppy"
msgstr "Kargatu/Gorde disketean"
-#: ../../install_steps_gtk.pm_.c:415
+#: ../../install_steps_gtk.pm_.c:409
msgid "Updating package selection"
msgstr "Pakete-hautapena eguneratzen"
-#: ../../install_steps_gtk.pm_.c:420
+#: ../../install_steps_gtk.pm_.c:414
msgid "Minimal install"
msgstr "Gutxieneko instalazioa"
-#: ../../install_steps_gtk.pm_.c:435 ../../install_steps_interactive.pm_.c:538
+#: ../../install_steps_gtk.pm_.c:429 ../../install_steps_interactive.pm_.c:522
msgid "Choose the packages you want to install"
msgstr "Aukeratu instalatu nahi dituzun paketeak"
-#: ../../install_steps_gtk.pm_.c:451 ../../install_steps_interactive.pm_.c:778
+#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:762
msgid "Installing"
msgstr "Instalatzen"
-#: ../../install_steps_gtk.pm_.c:457
+#: ../../install_steps_gtk.pm_.c:451
msgid "Estimating"
msgstr "Kalkulatzen"
-#: ../../install_steps_gtk.pm_.c:464
+#: ../../install_steps_gtk.pm_.c:458
msgid "Time remaining "
msgstr "Geratzen den denbora "
-#: ../../install_steps_gtk.pm_.c:476
+#: ../../install_steps_gtk.pm_.c:470
msgid "Please wait, preparing installation..."
msgstr "Itxaron, instalazioa prestatzen"
-#: ../../install_steps_gtk.pm_.c:560
+#: ../../install_steps_gtk.pm_.c:554
#, c-format
msgid "%d packages"
msgstr "%d paketeak"
-#: ../../install_steps_gtk.pm_.c:565
+#: ../../install_steps_gtk.pm_.c:559
#, c-format
msgid "Installing package %s"
msgstr "%s paketea instalatzen"
-#: ../../install_steps_gtk.pm_.c:602 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:802
+#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:786
#: ../../standalone/drakautoinst_.c:202
msgid "Accept"
msgstr "Onartu"
-#: ../../install_steps_gtk.pm_.c:602 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:802
+#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:786
msgid "Refuse"
msgstr "Ezetsi"
-#: ../../install_steps_gtk.pm_.c:603 ../../install_steps_interactive.pm_.c:803
+#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:787
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -5034,17 +5140,17 @@ msgstr ""
"Sartu \"%s\" etiketa duen CDROMa unitatean eta sakatu Ados.\n"
"Ez baduzu, sakatu Utzi instalazioa CDROM horretatik egin ez dezan."
-#: ../../install_steps_gtk.pm_.c:617 ../../install_steps_gtk.pm_.c:621
-#: ../../install_steps_interactive.pm_.c:815
-#: ../../install_steps_interactive.pm_.c:819
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_gtk.pm_.c:615
+#: ../../install_steps_interactive.pm_.c:799
+#: ../../install_steps_interactive.pm_.c:803
msgid "Go on anyway?"
msgstr "Jarraitu hala ere?"
-#: ../../install_steps_gtk.pm_.c:617 ../../install_steps_interactive.pm_.c:815
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:799
msgid "There was an error ordering packages:"
msgstr "Errore bat izan da paketeak ordenatzean:"
-#: ../../install_steps_gtk.pm_.c:621 ../../install_steps_interactive.pm_.c:819
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:803
msgid "There was an error installing packages:"
msgstr "Errore bat izan da paketeak instalatzean:"
@@ -5356,7 +5462,7 @@ msgid "Are you sure you refuse the licence?"
msgstr "Ziur zaude lizentzia errefusatzen duzula?"
#: ../../install_steps_interactive.pm_.c:211
-#: ../../install_steps_interactive.pm_.c:1038
+#: ../../install_steps_interactive.pm_.c:1023
#: ../../standalone/keyboarddrake_.c:31
msgid "Keyboard"
msgstr "Teklatua"
@@ -5404,11 +5510,11 @@ msgstr "Paketeak bakarrik bertsio-berritu"
msgid "Please choose the type of your mouse."
msgstr "Aukeratu sagu-mota."
-#: ../../install_steps_interactive.pm_.c:281 ../../standalone/mousedrake_.c:59
+#: ../../install_steps_interactive.pm_.c:281 ../../standalone/mousedrake_.c:60
msgid "Mouse Port"
msgstr "Sagu-ataka"
-#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:61
msgid "Please choose on which serial port your mouse is connected to."
msgstr "Aukeratu sagua konektatuta dagoen serieko ataka."
@@ -5440,46 +5546,20 @@ msgstr "IDE konfiguratzen"
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:336
+#: ../../install_steps_interactive.pm_.c:338
msgid "No partition available"
msgstr "ez dago partizio erabilgarririk"
-#: ../../install_steps_interactive.pm_.c:339
+#: ../../install_steps_interactive.pm_.c:341
msgid "Scanning partitions to find mount points"
msgstr "Partizioak eskaneatzen muntatze-puntuak aurkitzeko"
-#: ../../install_steps_interactive.pm_.c:347
+#: ../../install_steps_interactive.pm_.c:349
msgid "Choose the mount points"
msgstr "Aukeratu muntatze-puntuak"
-#: ../../install_steps_interactive.pm_.c:366
-#, c-format
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to not allow DrakX to modify the partition table.\n"
-"(the error is %s)\n"
-"\n"
-"Do you agree to loose all the partitions?\n"
-msgstr ""
-"Ezin dut zure partizio-taula irakurri, hondatuegia dago :(\n"
-"Jarraitzen saia naiteke, partizio txarrak garbituz (DATU GUZTIAK galduko "
-"dira!).\n"
-"Beste irtenbidea DrakXri partizio-taula aldatzeko baimenik ez ematea da.\n"
-"(errorea %s da)\n"
-"\n"
-"Ados zaude partizio guztiak galtzearekin?\n"
-
#: ../../install_steps_interactive.pm_.c:379
msgid ""
-"DiskDrake failed to read correctly the partition table.\n"
-"Continue at your own risk!"
-msgstr ""
-"DiskDrake-k ezin izan du partizio-taula behar bezala irakurri.\n"
-"Jarraitu zure ardurapean!"
-
-#: ../../install_steps_interactive.pm_.c:396
-msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
msgstr ""
@@ -5487,68 +5567,70 @@ msgstr ""
"baina zure sistema abiarazteko, bootstrap partizioa sortu beharko duzu "
"DiskDrake-rekin"
-#: ../../install_steps_interactive.pm_.c:405
+#: ../../install_steps_interactive.pm_.c:388
msgid "No root partition found to perform an upgrade"
msgstr "Ez da erroko partiziorik aurkitu bertsio-berritzea egiteko"
-#: ../../install_steps_interactive.pm_.c:406
+#: ../../install_steps_interactive.pm_.c:389
msgid "Root Partition"
msgstr "Erroko partizioa"
-#: ../../install_steps_interactive.pm_.c:407
+#: ../../install_steps_interactive.pm_.c:390
msgid "What is the root partition (/) of your system?"
msgstr "Zein da zure sistemaren (/) erroko partizioa?"
-#: ../../install_steps_interactive.pm_.c:421
+#: ../../install_steps_interactive.pm_.c:404
msgid "You need to reboot for the partition table modifications to take place"
msgstr ""
"Berrabiarazi egin behar duzu partizio-taulako aldaketek eragina izateko"
-#: ../../install_steps_interactive.pm_.c:445
+#: ../../install_steps_interactive.pm_.c:428
msgid "Choose the partitions you want to format"
msgstr "Aukeratu formateatu nahi dituzun partizioak"
-#: ../../install_steps_interactive.pm_.c:446
+#: ../../install_steps_interactive.pm_.c:429
msgid "Check bad blocks?"
msgstr "Bloke txarrak egiaztatu?"
-#: ../../install_steps_interactive.pm_.c:473
+#: ../../install_steps_interactive.pm_.c:456
msgid "Formatting partitions"
msgstr "Partizioak formateatzen"
-#: ../../install_steps_interactive.pm_.c:475
+#: ../../install_steps_interactive.pm_.c:458
#, c-format
msgid "Creating and formatting file %s"
msgstr "%s fitxategia sortzen eta formateatzen"
-#: ../../install_steps_interactive.pm_.c:480
+#: ../../install_steps_interactive.pm_.c:463
#, c-format
msgid ""
"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
"you can loose data)"
msgstr ""
+"%s fitxategi-sistemaren egiaztapenak hutsegin du. Okerrak zuzendu nahi "
+"dituzu? (adi, datuak gal ditzakezu)"
-#: ../../install_steps_interactive.pm_.c:482
+#: ../../install_steps_interactive.pm_.c:465
msgid "Not enough swap space to fulfill installation, please add some"
msgstr "Ez dago nahikoa swap instalazioa burutzeko, gehitu egin beharko duzu"
-#: ../../install_steps_interactive.pm_.c:489
+#: ../../install_steps_interactive.pm_.c:472
msgid "Looking for available packages and rebuilding rpm database..."
msgstr "Pakete erabilgarriak bilatzen eta rpm databaseak berreraikitzen..."
-#: ../../install_steps_interactive.pm_.c:490
+#: ../../install_steps_interactive.pm_.c:473
msgid "Looking for available packages..."
msgstr "Pakete erabilgarriak bilatzen"
-#: ../../install_steps_interactive.pm_.c:493
+#: ../../install_steps_interactive.pm_.c:476
msgid "Looking at packages already installed..."
msgstr "Instalatutako paketeen artean bilatzen..."
-#: ../../install_steps_interactive.pm_.c:497
+#: ../../install_steps_interactive.pm_.c:480
msgid "Finding packages to upgrade..."
msgstr "Bertsio-berritzeko paketeak bilatzen"
-#: ../../install_steps_interactive.pm_.c:515
+#: ../../install_steps_interactive.pm_.c:498
#, c-format
msgid ""
"Your system does not have enough space left for installation or upgrade (%d "
@@ -5557,7 +5639,7 @@ msgstr ""
"Zure sistemak ez du nahikoa leku instalatzeko edo bertsio-berritzeko (%d > %"
"d)"
-#: ../../install_steps_interactive.pm_.c:550
+#: ../../install_steps_interactive.pm_.c:534
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
@@ -5565,35 +5647,35 @@ msgstr ""
"Aukeratu pakete-hautapena disketean kargatzea edo gordetzea.\n"
"Formatua instalazio automatikoa egiteko sortutako disketeena bezalakoa da."
-#: ../../install_steps_interactive.pm_.c:553
+#: ../../install_steps_interactive.pm_.c:537
msgid "Load from floppy"
msgstr "Disketetik kargatu"
-#: ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_interactive.pm_.c:539
msgid "Loading from floppy"
msgstr "Disketetik kargatzen"
-#: ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_interactive.pm_.c:539
msgid "Package selection"
msgstr "Pakete-hautapena"
-#: ../../install_steps_interactive.pm_.c:560
+#: ../../install_steps_interactive.pm_.c:544
msgid "Insert a floppy containing package selection"
msgstr "Sartu pakete-hautapena daukan diskete bat"
-#: ../../install_steps_interactive.pm_.c:572
+#: ../../install_steps_interactive.pm_.c:556
msgid "Save on floppy"
msgstr "Gorde disketean"
-#: ../../install_steps_interactive.pm_.c:646
+#: ../../install_steps_interactive.pm_.c:630
msgid "Selected size is larger than available space"
msgstr "Hautatutako tamaina handiagoa da leku erabilgarria baino"
-#: ../../install_steps_interactive.pm_.c:660
+#: ../../install_steps_interactive.pm_.c:644
msgid "Type of install"
msgstr "Instalazio-mota"
-#: ../../install_steps_interactive.pm_.c:661
+#: ../../install_steps_interactive.pm_.c:645
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
@@ -5601,19 +5683,19 @@ msgstr ""
"Ez duzu talde edo paketerik hautatuta\n"
"Nahi duzun gutxieneko instalazioa hautatu behar duzu"
-#: ../../install_steps_interactive.pm_.c:664
+#: ../../install_steps_interactive.pm_.c:648
msgid "With X"
msgstr "Xrekin"
-#: ../../install_steps_interactive.pm_.c:666
+#: ../../install_steps_interactive.pm_.c:650
msgid "With basic documentation (recommended!)"
msgstr "Oinarrizko dokumentazioarekin (gomendatua)"
-#: ../../install_steps_interactive.pm_.c:667
+#: ../../install_steps_interactive.pm_.c:651
msgid "Truly minimal install (especially no urpmi)"
msgstr "Instalazio minimo-minimoa (batez ere, urpmi gabe)"
-#: ../../install_steps_interactive.pm_.c:752
+#: ../../install_steps_interactive.pm_.c:736
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -5623,16 +5705,16 @@ msgstr ""
"CD horietako bat ere ez baduzu, sakatu Utzi.\n"
"CDetako batzuk soilik falta badituzu, desauta itzazu, eta sakatu Ados."
-#: ../../install_steps_interactive.pm_.c:757
+#: ../../install_steps_interactive.pm_.c:741
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "\"%s\" etiketadun CDROMa"
-#: ../../install_steps_interactive.pm_.c:778
+#: ../../install_steps_interactive.pm_.c:762
msgid "Preparing installation"
msgstr "Instalazioa prestatzen"
-#: ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:771
#, c-format
msgid ""
"Installing package %s\n"
@@ -5641,21 +5723,21 @@ msgstr ""
"%s paketea instalatzen\n"
"%% %d"
-#: ../../install_steps_interactive.pm_.c:833
+#: ../../install_steps_interactive.pm_.c:817
msgid "Post-install configuration"
msgstr "Instalazio-ondorengo konfigurazioa"
-#: ../../install_steps_interactive.pm_.c:839
+#: ../../install_steps_interactive.pm_.c:823
#, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Sartu abioko disketea %s unitatean"
-#: ../../install_steps_interactive.pm_.c:845
+#: ../../install_steps_interactive.pm_.c:829
#, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Sartu moduluak eguneratzeko disketea %s unitatean"
-#: ../../install_steps_interactive.pm_.c:865
+#: ../../install_steps_interactive.pm_.c:849
msgid ""
"You now have the opportunity to download encryption software.\n"
"\n"
@@ -5729,7 +5811,7 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:904
+#: ../../install_steps_interactive.pm_.c:888
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
"have been released after the distribution was released. They may\n"
@@ -5749,159 +5831,159 @@ msgstr ""
"\n"
"Eguneratzeak instalatu nahi dituzu?"
-#: ../../install_steps_interactive.pm_.c:919
+#: ../../install_steps_interactive.pm_.c:903
msgid ""
"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr ""
"Mandrake Linux-en web gunearekin kontaktatzen ispiluen zerrenda lortzeko"
-#: ../../install_steps_interactive.pm_.c:924
+#: ../../install_steps_interactive.pm_.c:908
msgid "Choose a mirror from which to get the packages"
msgstr "Aukeratu ispilu bat paketeak bertatik hartzeko"
-#: ../../install_steps_interactive.pm_.c:933
+#: ../../install_steps_interactive.pm_.c:917
msgid "Contacting the mirror to get the list of available packages..."
msgstr "Ispiluarekin kontaktatzen pakete erabilgarrien zerrenda lortzeko"
-#: ../../install_steps_interactive.pm_.c:960
+#: ../../install_steps_interactive.pm_.c:945
msgid "Which is your timezone?"
msgstr "Zein da zure ordu-zona?"
-#: ../../install_steps_interactive.pm_.c:965
+#: ../../install_steps_interactive.pm_.c:950
msgid "Hardware clock set to GMT"
msgstr "Hardwarearen ordua GMTn ezarria"
-#: ../../install_steps_interactive.pm_.c:966
+#: ../../install_steps_interactive.pm_.c:951
msgid "Automatic time synchronization (using NTP)"
msgstr "Ordu-sinkronizazio automatikoa (NTP erabiliz)"
-#: ../../install_steps_interactive.pm_.c:973
+#: ../../install_steps_interactive.pm_.c:958
msgid "NTP Server"
msgstr "NTP Zerbitzaria"
-#: ../../install_steps_interactive.pm_.c:1007
-#: ../../install_steps_interactive.pm_.c:1015
+#: ../../install_steps_interactive.pm_.c:992
+#: ../../install_steps_interactive.pm_.c:1000
msgid "Remote CUPS server"
msgstr "Urruneko CUPS zerbitzaria"
-#: ../../install_steps_interactive.pm_.c:1008
+#: ../../install_steps_interactive.pm_.c:993
msgid "No printer"
msgstr "Inprimagailurik ez"
-#: ../../install_steps_interactive.pm_.c:1025
+#: ../../install_steps_interactive.pm_.c:1010
msgid "Do you have an ISA sound card?"
msgstr "ISA soinu-txartela duzu?"
-#: ../../install_steps_interactive.pm_.c:1027
+#: ../../install_steps_interactive.pm_.c:1012
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
"Instalazioa egindakoan, exekutatu \"sndconfig\" soinu-txartela "
"konfiguratzeko "
-#: ../../install_steps_interactive.pm_.c:1029
+#: ../../install_steps_interactive.pm_.c:1014
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
"Ez da soinu-txartelik detektatu. Instalazioa egin ondoren, saiatu \"harddrake"
"\"rekin "
-#: ../../install_steps_interactive.pm_.c:1034 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1019 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Laburpena"
-#: ../../install_steps_interactive.pm_.c:1037
+#: ../../install_steps_interactive.pm_.c:1022
msgid "Mouse"
msgstr "Sagua"
-#: ../../install_steps_interactive.pm_.c:1039
+#: ../../install_steps_interactive.pm_.c:1024
msgid "Timezone"
msgstr "Ordu-zona"
-#: ../../install_steps_interactive.pm_.c:1040 ../../printerdrake.pm_.c:2728
-#: ../../printerdrake.pm_.c:2814
+#: ../../install_steps_interactive.pm_.c:1025 ../../printerdrake.pm_.c:2937
+#: ../../printerdrake.pm_.c:3026
msgid "Printer"
msgstr "Inprimagailua"
-#: ../../install_steps_interactive.pm_.c:1042
+#: ../../install_steps_interactive.pm_.c:1027
msgid "ISDN card"
msgstr "ISDN txartela"
-#: ../../install_steps_interactive.pm_.c:1045
-#: ../../install_steps_interactive.pm_.c:1047
+#: ../../install_steps_interactive.pm_.c:1030
+#: ../../install_steps_interactive.pm_.c:1032
msgid "Sound card"
msgstr "Soinu-txartela"
-#: ../../install_steps_interactive.pm_.c:1049
+#: ../../install_steps_interactive.pm_.c:1034
msgid "TV card"
msgstr "Telebista-txartela"
-#: ../../install_steps_interactive.pm_.c:1089
-#: ../../install_steps_interactive.pm_.c:1114
-#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1074
+#: ../../install_steps_interactive.pm_.c:1099
+#: ../../install_steps_interactive.pm_.c:1103
msgid "LDAP"
msgstr "LDAP"
-#: ../../install_steps_interactive.pm_.c:1090
-#: ../../install_steps_interactive.pm_.c:1114
-#: ../../install_steps_interactive.pm_.c:1127
+#: ../../install_steps_interactive.pm_.c:1075
+#: ../../install_steps_interactive.pm_.c:1099
+#: ../../install_steps_interactive.pm_.c:1112
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1091
-#: ../../install_steps_interactive.pm_.c:1114
-#: ../../install_steps_interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1141
+#: ../../install_steps_interactive.pm_.c:1076
+#: ../../install_steps_interactive.pm_.c:1099
+#: ../../install_steps_interactive.pm_.c:1120
+#: ../../install_steps_interactive.pm_.c:1126
msgid "Windows Domain"
msgstr "Windows Domeinua"
-#: ../../install_steps_interactive.pm_.c:1092
-#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1077
+#: ../../install_steps_interactive.pm_.c:1099
msgid "Local files"
msgstr "Fitxategi lokalak"
-#: ../../install_steps_interactive.pm_.c:1101
-#: ../../install_steps_interactive.pm_.c:1102 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1086
+#: ../../install_steps_interactive.pm_.c:1087 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Ezarri root-aren pasahitza"
-#: ../../install_steps_interactive.pm_.c:1103
+#: ../../install_steps_interactive.pm_.c:1088
msgid "No password"
msgstr "Pasahitzik ez"
-#: ../../install_steps_interactive.pm_.c:1108
+#: ../../install_steps_interactive.pm_.c:1093
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr "Pasahitz hau sinpleegia da (gutxienez %d karaktere izan behar ditu)"
-#: ../../install_steps_interactive.pm_.c:1114 ../../network/modem.pm_.c:49
+#: ../../install_steps_interactive.pm_.c:1099 ../../network/modem.pm_.c:49
#: ../../standalone/drakconnect_.c:625 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Autentifikazioa"
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1107
msgid "Authentication LDAP"
msgstr "LDAP autentifikazioa"
-#: ../../install_steps_interactive.pm_.c:1123
+#: ../../install_steps_interactive.pm_.c:1108
msgid "LDAP Base dn"
msgstr "LDAP basea dn"
-#: ../../install_steps_interactive.pm_.c:1124
+#: ../../install_steps_interactive.pm_.c:1109
msgid "LDAP Server"
msgstr "LDAP Zerbitzaria"
-#: ../../install_steps_interactive.pm_.c:1130
+#: ../../install_steps_interactive.pm_.c:1115
msgid "Authentication NIS"
msgstr "NIS Autentifikazioa"
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1116
msgid "NIS Domain"
msgstr "NIS domeinua"
-#: ../../install_steps_interactive.pm_.c:1132
+#: ../../install_steps_interactive.pm_.c:1117
msgid "NIS Server"
msgstr "NIS zerbitzaria"
-#: ../../install_steps_interactive.pm_.c:1138
+#: ../../install_steps_interactive.pm_.c:1123
msgid ""
"For this to work for a W2K PDC, you will probably need to have the admin "
"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
@@ -5917,21 +5999,19 @@ msgid ""
"good."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1140
-#, fuzzy
+#: ../../install_steps_interactive.pm_.c:1125
msgid "Authentication Windows Domain"
-msgstr "Autentifikazioa Windows PDC"
+msgstr "windowsen Autentifikazio Domeinua"
-#: ../../install_steps_interactive.pm_.c:1142
-#, fuzzy
+#: ../../install_steps_interactive.pm_.c:1127
msgid "Domain Admin User Name"
-msgstr "Domeinu-izena:"
+msgstr "Domeinuaren Admin Erabiltzaile Izena"
-#: ../../install_steps_interactive.pm_.c:1143
+#: ../../install_steps_interactive.pm_.c:1128
msgid "Domain Admin Password"
-msgstr ""
+msgstr "Domeinuko Admin Pasahitza"
-#: ../../install_steps_interactive.pm_.c:1178
+#: ../../install_steps_interactive.pm_.c:1163
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
"depending on the normal bootloader. This is useful if you don't want to "
@@ -5962,19 +6042,19 @@ msgstr ""
"lehen\n"
"unitatean eta sakatu \"Ados\"."
-#: ../../install_steps_interactive.pm_.c:1194
+#: ../../install_steps_interactive.pm_.c:1179
msgid "First floppy drive"
msgstr "Lehen diskete-unitatea"
-#: ../../install_steps_interactive.pm_.c:1195
+#: ../../install_steps_interactive.pm_.c:1180
msgid "Second floppy drive"
msgstr "Bigarren diskete-unitatea"
-#: ../../install_steps_interactive.pm_.c:1196 ../../printerdrake.pm_.c:2277
+#: ../../install_steps_interactive.pm_.c:1181 ../../printerdrake.pm_.c:2470
msgid "Skip"
msgstr "Saltatu"
-#: ../../install_steps_interactive.pm_.c:1201
+#: ../../install_steps_interactive.pm_.c:1186
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -6002,7 +6082,7 @@ msgstr ""
"Zure sistemarako abioko disko bat sortu nahi duzu?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1207
+#: ../../install_steps_interactive.pm_.c:1192
msgid ""
"\n"
"\n"
@@ -6016,28 +6096,28 @@ msgstr ""
"abioko diskoa 1,44 Mb-ko disketean sortzeak huts egingo du\n"
"seguru asko, XFSk oso kontrolatzaile handia behar duelako)."
-#: ../../install_steps_interactive.pm_.c:1215
+#: ../../install_steps_interactive.pm_.c:1200
msgid "Sorry, no floppy drive available"
msgstr "Ez dago diskete-unitate erabilgarririk"
-#: ../../install_steps_interactive.pm_.c:1219
+#: ../../install_steps_interactive.pm_.c:1204
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "Aukeratu abioko diskoa egiteko erabili nahi duzun diskete-unitatea"
-#: ../../install_steps_interactive.pm_.c:1223
+#: ../../install_steps_interactive.pm_.c:1208
#, c-format
msgid "Insert a floppy in %s"
msgstr "Sartu diskete bat %s unitatean"
-#: ../../install_steps_interactive.pm_.c:1226
+#: ../../install_steps_interactive.pm_.c:1211
msgid "Creating bootdisk..."
msgstr "Abioko disketea sortzen"
-#: ../../install_steps_interactive.pm_.c:1233
+#: ../../install_steps_interactive.pm_.c:1218
msgid "Preparing bootloader..."
msgstr "Abioko kargatzailea prestatzen"
-#: ../../install_steps_interactive.pm_.c:1244
+#: ../../install_steps_interactive.pm_.c:1229
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -6049,11 +6129,11 @@ msgstr ""
"Instalazioak jarraitu egingo du, baina\n"
"BootX erabili beharko duzu makina abiarazteko"
-#: ../../install_steps_interactive.pm_.c:1250
+#: ../../install_steps_interactive.pm_.c:1235
msgid "Do you want to use aboot?"
msgstr "aboot erabili nahi duzu?"
-#: ../../install_steps_interactive.pm_.c:1253
+#: ../../install_steps_interactive.pm_.c:1238
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -6061,15 +6141,15 @@ msgstr ""
"Errorea aboot instalatzean, \n"
"instalazioa ezartzen saiatu lehen partizioa suntsitzen badu ere?"
-#: ../../install_steps_interactive.pm_.c:1260
+#: ../../install_steps_interactive.pm_.c:1245
msgid "Installing bootloader"
msgstr "Abioko kargatzailea instalatzen"
-#: ../../install_steps_interactive.pm_.c:1266
+#: ../../install_steps_interactive.pm_.c:1251
msgid "Installation of bootloader failed. The following error occured:"
msgstr "Abioko kargatzailea instalatzeak huts egin du. Errore hau gertatu da:"
-#: ../../install_steps_interactive.pm_.c:1274
+#: ../../install_steps_interactive.pm_.c:1259
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -6087,17 +6167,17 @@ msgstr ""
" Gero, idatzi: shut-down\n"
"Hurrengo abiaraztean abioko kargatzailearen gonbita ikusi behar duzu."
-#: ../../install_steps_interactive.pm_.c:1308
+#: ../../install_steps_interactive.pm_.c:1293
#: ../../standalone/drakautoinst_.c:79
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Sartu diskete huts bat %s unitatean"
-#: ../../install_steps_interactive.pm_.c:1312
+#: ../../install_steps_interactive.pm_.c:1297
msgid "Creating auto install floppy..."
msgstr "Auto-instalazioko disketea sortzen..."
-#: ../../install_steps_interactive.pm_.c:1323
+#: ../../install_steps_interactive.pm_.c:1308
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -6107,7 +6187,7 @@ msgstr ""
"\n"
"Ziur zaude orain irten nahi duzula?"
-#: ../../install_steps_interactive.pm_.c:1334
+#: ../../install_steps_interactive.pm_.c:1319
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
@@ -6140,16 +6220,15 @@ msgstr ""
"Zure sistema konfiguratzeko informazioa Mandrake-ren Erabiltzailearen \n"
"Gida Ofizialeko instalatu ondorengo azalpenei buruzko kapituluan duzu."
-#: ../../install_steps_interactive.pm_.c:1347
-#, fuzzy
+#: ../../install_steps_interactive.pm_.c:1332
msgid "http://www.mandrakelinux.com/en/90errata.php3"
-msgstr "http://www.mandrakesoft.com/sales/contact"
+msgstr "http://www.mandrakelinux.com/en/90errata.php3"
-#: ../../install_steps_interactive.pm_.c:1352
+#: ../../install_steps_interactive.pm_.c:1337
msgid "Generate auto install floppy"
msgstr "Sortu auto-instalazioko disketea"
-#: ../../install_steps_interactive.pm_.c:1354
+#: ../../install_steps_interactive.pm_.c:1339
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -6163,15 +6242,15 @@ msgstr ""
"\n"
"Beharbada nahiago izango duzu instalazioa errepikatzea.\n"
-#: ../../install_steps_interactive.pm_.c:1359
+#: ../../install_steps_interactive.pm_.c:1344
msgid "Automated"
msgstr "Automatizatua"
-#: ../../install_steps_interactive.pm_.c:1359
+#: ../../install_steps_interactive.pm_.c:1344
msgid "Replay"
msgstr "Errepikatu"
-#: ../../install_steps_interactive.pm_.c:1362
+#: ../../install_steps_interactive.pm_.c:1347
msgid "Save packages selection"
msgstr "Gorde pakete-hautapena"
@@ -6180,12 +6259,12 @@ msgstr "Gorde pakete-hautapena"
msgid "Mandrake Linux Installation %s"
msgstr "Mandrake Linux-en %s instalazioa"
-#: ../../install_steps_newt.pm_.c:34
+#. -PO This string must fit in a 80-char wide text screen
+#: ../../install_steps_newt.pm_.c:35
msgid ""
" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
msgstr ""
-" <Tab>/<Alt-Tab> elementuz aldatzeko | <Zuriunea> hautatzeko | <F12> hurr. "
-"pantaila"
+" <Tab>/<Alt-Tab> elem. aldatzeko | <Zuriunea> hautatzeko | <F12> hurr. pant. "
#: ../../interactive.pm_.c:87
msgid "kdesu missing"
@@ -6199,22 +6278,22 @@ msgstr "consolehelper falta da"
msgid "Choose a file"
msgstr "Aukeratu fitxategi bat"
-#: ../../interactive.pm_.c:317
+#: ../../interactive.pm_.c:320
msgid "Advanced"
msgstr "Aurreratua"
-#: ../../interactive.pm_.c:318
+#: ../../interactive.pm_.c:321
msgid "Basic"
msgstr "Oinarrizkoa"
-#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:155
-#: ../../printerdrake.pm_.c:1990
+#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:158
+#: ../../printerdrake.pm_.c:2124
msgid "<- Previous"
msgstr "<- Aurrekoa"
#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
-#: ../../standalone/drakbackup_.c:3464 ../../standalone/drakbackup_.c:3491
-#: ../../standalone/drakbackup_.c:3517
+#: ../../standalone/drakbackup_.c:4112 ../../standalone/drakbackup_.c:4139
+#: ../../standalone/drakbackup_.c:4169 ../../standalone/drakbackup_.c:4195
msgid "Next"
msgstr "Hurrengoa"
@@ -6244,7 +6323,7 @@ msgstr "Zure aukera? (0/1, lehenetsia `%s' da) "
#: ../../interactive/stdio.pm_.c:95
#, c-format
msgid "Button `%s': %s"
-msgstr "`%s' botoia : %s"
+msgstr "`%s' botoia: %s"
#: ../../interactive/stdio.pm_.c:96
msgid "Do you want to click on this button?"
@@ -6287,375 +6366,372 @@ msgstr ""
msgid "Re-submit"
msgstr "Berriro bidali"
-#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:152 ../../keyboard.pm_.c:187
msgid "Czech (QWERTZ)"
msgstr "txekiarra (QWERTZ)"
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:153 ../../keyboard.pm_.c:189
msgid "German"
msgstr "alemana"
-#: ../../keyboard.pm_.c:175
+#: ../../keyboard.pm_.c:154
msgid "Dvorak"
msgstr "Dvorak"
-#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:218
+#: ../../keyboard.pm_.c:155 ../../keyboard.pm_.c:197
msgid "Spanish"
msgstr "espainiarra"
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:156 ../../keyboard.pm_.c:198
msgid "Finnish"
msgstr "finlandiarra"
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:220
+#: ../../keyboard.pm_.c:157 ../../keyboard.pm_.c:199
msgid "French"
msgstr "frantsesa"
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:158 ../../keyboard.pm_.c:231
msgid "Norwegian"
msgstr "norvegiarra"
-#: ../../keyboard.pm_.c:180
+#: ../../keyboard.pm_.c:159
msgid "Polish"
msgstr "poloniarra"
-#: ../../keyboard.pm_.c:181 ../../keyboard.pm_.c:260
+#: ../../keyboard.pm_.c:160 ../../keyboard.pm_.c:239
msgid "Russian"
msgstr "errusiarra"
-#: ../../keyboard.pm_.c:183 ../../keyboard.pm_.c:262
+#: ../../keyboard.pm_.c:162 ../../keyboard.pm_.c:241
msgid "Swedish"
msgstr "suediarra"
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:278
+#: ../../keyboard.pm_.c:163 ../../keyboard.pm_.c:257
msgid "UK keyboard"
msgstr "Erresuma Batuko teklatua"
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:279
+#: ../../keyboard.pm_.c:164 ../../keyboard.pm_.c:258
msgid "US keyboard"
msgstr "Estatu Batuetako teklatua"
-#: ../../keyboard.pm_.c:187
+#: ../../keyboard.pm_.c:166
msgid "Albanian"
msgstr "albaniarra"
-#: ../../keyboard.pm_.c:188
+#: ../../keyboard.pm_.c:167
msgid "Armenian (old)"
msgstr "armeniarra (zaharra)"
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:168
msgid "Armenian (typewriter)"
msgstr "armeniarra (idazmakina)"
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:169
msgid "Armenian (phonetic)"
msgstr "armeniarra (fonetikoa)"
-#: ../../keyboard.pm_.c:195
+#: ../../keyboard.pm_.c:174
msgid "Azerbaidjani (latin)"
msgstr "azerbaijandarra (latinoa)"
-#: ../../keyboard.pm_.c:197
+#: ../../keyboard.pm_.c:176
msgid "Belgian"
msgstr "belgikarra"
-#: ../../keyboard.pm_.c:198
+#: ../../keyboard.pm_.c:177
#, fuzzy
msgid "Bengali"
msgstr "gaitu"
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:178
msgid "Bulgarian (phonetic)"
msgstr "bulgariarra (fonetikoa)"
-#: ../../keyboard.pm_.c:200
+#: ../../keyboard.pm_.c:179
msgid "Bulgarian (BDS)"
msgstr "bulgariarra (BDS)"
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:180
msgid "Brazilian (ABNT-2)"
msgstr "brasildarra (ABNT-2)"
-#: ../../keyboard.pm_.c:204
-#, fuzzy
+#: ../../keyboard.pm_.c:183
msgid "Bosnian"
-msgstr "estoniarra"
+msgstr "Bosniarra"
-#: ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:184
msgid "Belarusian"
msgstr "bielorrusiarra"
-#: ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:185
msgid "Swiss (German layout)"
msgstr "suitzarra (diseinu alemana)"
-#: ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:186
msgid "Swiss (French layout)"
msgstr "suitzarra (diseinu frantsesa)"
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:188
msgid "Czech (QWERTY)"
msgstr "txekiarra (QWERTY)"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:190
msgid "German (no dead keys)"
msgstr "alemana (letra zaharkiturik ez)"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:191
msgid "Devanagari"
msgstr ""
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:192
msgid "Danish"
msgstr "daniarra"
-#: ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:193
msgid "Dvorak (US)"
msgstr "Dvorak (Estatu Batuak)"
-#: ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:194
msgid "Dvorak (Norwegian)"
msgstr "Dvorak (norvegiarra)"
-#: ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:195
msgid "Dvorak (Swedish)"
msgstr "Dvorak (suediarra)"
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:196
msgid "Estonian"
msgstr "estoniarra"
-#: ../../keyboard.pm_.c:221
+#: ../../keyboard.pm_.c:200
msgid "Georgian (\"Russian\" layout)"
msgstr "georgiarra (diseinu \"errusiarra\")"
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:201
msgid "Georgian (\"Latin\" layout)"
msgstr "georgiarra (diseinu \"latinoa\")"
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:202
msgid "Greek"
msgstr "grekoa"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:203
msgid "Gujarati"
msgstr ""
-#: ../../keyboard.pm_.c:225
+#: ../../keyboard.pm_.c:204
msgid "Gurmukhi"
msgstr ""
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:205
msgid "Hungarian"
msgstr "hungariarra"
-#: ../../keyboard.pm_.c:227
+#: ../../keyboard.pm_.c:206
msgid "Croatian"
msgstr "kroaziarra"
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:207
msgid "Israeli"
msgstr "israeldarra"
-#: ../../keyboard.pm_.c:229
+#: ../../keyboard.pm_.c:208
msgid "Israeli (Phonetic)"
msgstr "israeldarra (fonetikoa)"
-#: ../../keyboard.pm_.c:230
+#: ../../keyboard.pm_.c:209
msgid "Iranian"
msgstr "iraniarra"
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:210
msgid "Icelandic"
msgstr "islandiarra"
-#: ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:211
msgid "Italian"
msgstr "italiarra"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:212
msgid "Inuktitut"
msgstr ""
-#: ../../keyboard.pm_.c:234
+#: ../../keyboard.pm_.c:213
msgid "Japanese 106 keys"
msgstr "japoniarra 106 tekla"
-#: ../../keyboard.pm_.c:237
+#: ../../keyboard.pm_.c:216
msgid "Korean keyboard"
msgstr "Koreako teklatua"
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:217
msgid "Latin American"
msgstr "latinamerikarra"
-#: ../../keyboard.pm_.c:239
-#, fuzzy
+#: ../../keyboard.pm_.c:218
msgid "Laotian"
msgstr "letoniarra"
-#: ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:219
msgid "Lithuanian AZERTY (old)"
msgstr "Lituaniako AZERTY (zaharra)"
-#: ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:221
msgid "Lithuanian AZERTY (new)"
msgstr "Lituaniako AZERTY (berria)"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:222
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Lituaniako QWERTY \"ilara numerikoa\""
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:223
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "Lituaniako QWERTY \"fonetikoa\""
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:224
msgid "Latvian"
msgstr "letoniarra"
-#: ../../keyboard.pm_.c:246
+#: ../../keyboard.pm_.c:225
msgid "Macedonian"
msgstr "mazedoniarra"
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:226
msgid "Myanmar (Burmese)"
msgstr ""
-#: ../../keyboard.pm_.c:248
-#, fuzzy
+#: ../../keyboard.pm_.c:227
msgid "Mongolian (cyrillic)"
-msgstr "serbiarra (zirilikoa)"
+msgstr "Mongoliarra (zirilikoa)"
-#: ../../keyboard.pm_.c:249
+#: ../../keyboard.pm_.c:228
msgid "Maltese (UK)"
msgstr ""
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:229
msgid "Maltese (US)"
msgstr ""
-#: ../../keyboard.pm_.c:251
+#: ../../keyboard.pm_.c:230
msgid "Dutch"
msgstr "holandarra"
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:232
msgid "Polish (qwerty layout)"
msgstr "poloniarra (qwerty diseinua)"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:233
msgid "Polish (qwertz layout)"
msgstr "poloniarra (qwertz diseinua)"
-#: ../../keyboard.pm_.c:255
+#: ../../keyboard.pm_.c:234
msgid "Portuguese"
msgstr "portugesa"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:235
msgid "Canadian (Quebec)"
msgstr "kanadarra (Quebec)"
-#: ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:237
msgid "Romanian (qwertz)"
msgstr "errumaniarra (qwertz)"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:238
msgid "Romanian (qwerty)"
msgstr "errumaniarra (qwerty)"
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:240
msgid "Russian (Yawerty)"
msgstr "errusiarra (Yawerty)"
-#: ../../keyboard.pm_.c:263
+#: ../../keyboard.pm_.c:242
msgid "Slovenian"
msgstr "esloveniarra"
-#: ../../keyboard.pm_.c:264
+#: ../../keyboard.pm_.c:243
msgid "Slovakian (QWERTZ)"
msgstr "eslovakiarra (QWERTZ)"
-#: ../../keyboard.pm_.c:265
+#: ../../keyboard.pm_.c:244
msgid "Slovakian (QWERTY)"
msgstr "eslovakiarra (QWERTY)"
-#: ../../keyboard.pm_.c:267
+#: ../../keyboard.pm_.c:246
msgid "Serbian (cyrillic)"
msgstr "serbiarra (zirilikoa)"
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:248
msgid "Tamil (Unicode)"
msgstr "tamila (Unicode)"
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:249
msgid "Tamil (TSCII)"
msgstr "tamila (TSCII)"
-#: ../../keyboard.pm_.c:271
+#: ../../keyboard.pm_.c:250
msgid "Thai keyboard"
msgstr "Thailandiako teklatua"
-#: ../../keyboard.pm_.c:273
+#: ../../keyboard.pm_.c:252
msgid "Tajik keyboard"
msgstr "Tajikistango teklatua"
-#: ../../keyboard.pm_.c:274
+#: ../../keyboard.pm_.c:253
msgid "Turkish (traditional \"F\" model)"
msgstr "turkiarra (tradizionala \"F\" modeloa)"
-#: ../../keyboard.pm_.c:275
+#: ../../keyboard.pm_.c:254
msgid "Turkish (modern \"Q\" model)"
msgstr "turkiarra (modernoa \"Q\" modeloa)"
-#: ../../keyboard.pm_.c:277
+#: ../../keyboard.pm_.c:256
msgid "Ukrainian"
msgstr "ukrainarra"
-#: ../../keyboard.pm_.c:280
+#: ../../keyboard.pm_.c:259
msgid "US keyboard (international)"
msgstr "Estatu Batuetako teklatua (nazioartekoa)"
-#: ../../keyboard.pm_.c:281
+#: ../../keyboard.pm_.c:260
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "vietnamdarra QWERTY \"ilara numerikoa\""
-#: ../../keyboard.pm_.c:282
+#: ../../keyboard.pm_.c:261
msgid "Yugoslavian (latin)"
msgstr "jugoslaviarra (latinoa)"
-#: ../../keyboard.pm_.c:289
+#: ../../keyboard.pm_.c:268
msgid "Right Alt key"
msgstr "Eskuineko Alt tekla"
-#: ../../keyboard.pm_.c:290
+#: ../../keyboard.pm_.c:269
msgid "Both Shift keys simultaneously"
msgstr "Bi Maius teklak batera"
-#: ../../keyboard.pm_.c:291
+#: ../../keyboard.pm_.c:270
msgid "Control and Shift keys simultaneously"
msgstr "Kontrol eta Maius teklak batera"
-#: ../../keyboard.pm_.c:292
+#: ../../keyboard.pm_.c:271
msgid "CapsLock key"
msgstr "BlokMaius tekla"
-#: ../../keyboard.pm_.c:293
+#: ../../keyboard.pm_.c:272
msgid "Ctrl and Alt keys simultaneously"
msgstr "Ktrl eta Alt teklak batera"
-#: ../../keyboard.pm_.c:294
+#: ../../keyboard.pm_.c:273
msgid "Alt and Shift keys simultaneously"
msgstr "Alt eta Maius teklak batera"
-#: ../../keyboard.pm_.c:295
+#: ../../keyboard.pm_.c:274
msgid "\"Menu\" key"
msgstr "\"Menu\" tekla"
-#: ../../keyboard.pm_.c:296
+#: ../../keyboard.pm_.c:275
msgid "Left \"Windows\" key"
msgstr "Ezkerreko \"Windows\" tekla"
-#: ../../keyboard.pm_.c:297
+#: ../../keyboard.pm_.c:276
msgid "Right \"Windows\" key"
msgstr "Eskuineko \"Windows\" tekla"
@@ -6711,11 +6787,11 @@ msgstr "Gurpildun PS2 sagu generikoa"
msgid "GlidePoint"
msgstr "GlidePoint"
-#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:63
+#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:65
msgid "Kensington Thinking Mouse"
msgstr "Kensington Thinking sagua"
-#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:59
+#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:61
msgid "Genius NetMouse"
msgstr "Genius NetMouse"
@@ -6723,115 +6799,125 @@ msgstr "Genius NetMouse"
msgid "Genius NetScroll"
msgstr "Genius NetScroll"
-#: ../../mouse.pm_.c:43 ../../mouse.pm_.c:68
+#: ../../mouse.pm_.c:39 ../../mouse.pm_.c:48
+#, fuzzy
+msgid "Microsoft Explorer"
+msgstr "Microsoft IntelliMouse"
+
+#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:70
msgid "1 button"
msgstr "1 botoi"
-#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:51
+#: ../../mouse.pm_.c:45 ../../mouse.pm_.c:53
msgid "Generic 2 Button Mouse"
msgstr "2 botoiko sagu generikoa"
-#: ../../mouse.pm_.c:46
+#: ../../mouse.pm_.c:47
msgid "Wheel"
msgstr "Gurpila"
-#: ../../mouse.pm_.c:49
+#: ../../mouse.pm_.c:51
msgid "serial"
msgstr "seriekoa"
-#: ../../mouse.pm_.c:52
+#: ../../mouse.pm_.c:54
msgid "Generic 3 Button Mouse"
msgstr "3 botoiko sagu generikoa"
-#: ../../mouse.pm_.c:53
+#: ../../mouse.pm_.c:55
msgid "Microsoft IntelliMouse"
msgstr "Microsoft IntelliMouse"
-#: ../../mouse.pm_.c:54
+#: ../../mouse.pm_.c:56
msgid "Logitech MouseMan"
msgstr "Logitech MouseMan"
-#: ../../mouse.pm_.c:55
+#: ../../mouse.pm_.c:57
msgid "Mouse Systems"
msgstr "Mouse Systems"
-#: ../../mouse.pm_.c:57
+#: ../../mouse.pm_.c:59
msgid "Logitech CC Series"
msgstr "Logitech CC Series"
-#: ../../mouse.pm_.c:58
+#: ../../mouse.pm_.c:60
msgid "Logitech MouseMan+/FirstMouse+"
msgstr "Logitech MouseMan+/FirstMouse+"
-#: ../../mouse.pm_.c:60
+#: ../../mouse.pm_.c:62
msgid "MM Series"
msgstr "MM Series"
-#: ../../mouse.pm_.c:61
+#: ../../mouse.pm_.c:63
msgid "MM HitTablet"
msgstr "MM HitTablet"
-#: ../../mouse.pm_.c:62
+#: ../../mouse.pm_.c:64
msgid "Logitech Mouse (serial, old C7 type)"
msgstr "Logitech sagua (seriekoa, C7 mota zaharrekoa)"
-#: ../../mouse.pm_.c:66
+#: ../../mouse.pm_.c:68
msgid "busmouse"
msgstr "bus-sagua"
-#: ../../mouse.pm_.c:69
+#: ../../mouse.pm_.c:71
msgid "2 buttons"
msgstr "2 botoi"
-#: ../../mouse.pm_.c:70
+#: ../../mouse.pm_.c:72
msgid "3 buttons"
msgstr "3 botoi"
-#: ../../mouse.pm_.c:73
+#: ../../mouse.pm_.c:75
msgid "none"
msgstr "bat ere ez"
-#: ../../mouse.pm_.c:75
+#: ../../mouse.pm_.c:77
msgid "No mouse"
msgstr "Sagurik gabe"
-#: ../../mouse.pm_.c:445
+#: ../../mouse.pm_.c:482
msgid "Please test the mouse"
msgstr "Probatu sagua"
-#: ../../mouse.pm_.c:446
+#: ../../mouse.pm_.c:483
msgid "To activate the mouse,"
msgstr "Sagua aktibatzeko,"
-#: ../../mouse.pm_.c:447
+#: ../../mouse.pm_.c:484
msgid "MOVE YOUR WHEEL!"
msgstr "MUGITU GURPILA!"
-#: ../../my_gtk.pm_.c:156
+#: ../../my_gtk.pm_.c:64
+#, fuzzy
+msgid "-adobe-utopia-regular-r-*-*-25-*-*-*-p-*-iso8859-*,*-r-*"
+msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
+
+#: ../../my_gtk.pm_.c:159
msgid "Finish"
msgstr "Amaitu"
-#: ../../my_gtk.pm_.c:156 ../../printerdrake.pm_.c:1992
+#: ../../my_gtk.pm_.c:159 ../../printerdrake.pm_.c:2126
msgid "Next ->"
msgstr "Hurrengoa ->"
-#: ../../my_gtk.pm_.c:284
+#: ../../my_gtk.pm_.c:287
msgid "Is this correct?"
msgstr "Zuzena da?"
-#: ../../my_gtk.pm_.c:356 ../../services.pm_.c:222
+#: ../../my_gtk.pm_.c:359 ../../services.pm_.c:222
msgid "Info"
msgstr "Informazioa"
-#: ../../my_gtk.pm_.c:377
+#: ../../my_gtk.pm_.c:380
msgid "Expand Tree"
msgstr "Zabaldu zuhaitza"
-#: ../../my_gtk.pm_.c:378
+#: ../../my_gtk.pm_.c:381
msgid "Collapse Tree"
msgstr "Tolestu zuhaitza"
-#: ../../my_gtk.pm_.c:379
+#: ../../my_gtk.pm_.c:382
msgid "Toggle between flat and group sorted"
msgstr "Txandakatu alfabetikoaren eta taldeka ordenatuaren artean"
@@ -6869,6 +6955,74 @@ msgstr "erabili pppoe"
msgid "use pptp"
msgstr "erabili pptp"
+#: ../../network/drakfirewall.pm_.c:12
+#, fuzzy
+msgid "Web Server"
+msgstr "Zerbitzaria"
+
+#: ../../network/drakfirewall.pm_.c:17
+#, fuzzy
+msgid "Domain Name Server"
+msgstr "Domeinu-izena:"
+
+#: ../../network/drakfirewall.pm_.c:32
+#, fuzzy
+msgid "Mail Server"
+msgstr "Gaitu Zerbitzaria"
+
+#: ../../network/drakfirewall.pm_.c:37
+#, fuzzy
+msgid "POP and IMAP Server"
+msgstr "LDAP Zerbitzaria"
+
+#: ../../network/drakfirewall.pm_.c:111
+#, fuzzy
+msgid "No network card"
+msgstr "ez da sare-txartelik aurkitu"
+
+#: ../../network/drakfirewall.pm_.c:129
+#, fuzzy
+msgid ""
+"drakfirewall configurator\n"
+"\n"
+"This configures a personal firewall for this Mandrake Linux machine.\n"
+"For a powerful dedicated firewall solution, please look to the\n"
+"specialized MandrakeSecurity Firewall distribution."
+msgstr ""
+"tinyfirewall konfiguratzailea\n"
+"\n"
+"Mandrake Linux makina honetarako suebaki pertsonala konfiguratzen du.\n"
+"Suebaki ahaltsuagoa nahi baduzu, begiratu MandrakeSecurity Firewall \n"
+"banaketa espezializatua."
+
+#: ../../network/drakfirewall.pm_.c:147
+msgid "Which services would you like to allow the Internet to connect to?"
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:148
+msgid ""
+"You can enter miscellaneous ports. \n"
+"Valid examples are: 139/tcp 139/udp.\n"
+"Have a look at /etc/services for information."
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:154
+#, c-format
+msgid ""
+"Invalid port given: %s.\n"
+"The proper format is \"port/tcp\" or \"port/udp\", \n"
+"where port is between 1 and 65535."
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:162
+msgid "Everything (no firewall)"
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:164
+#, fuzzy
+msgid "Other ports"
+msgstr "Probatu atakak"
+
#: ../../network/ethernet.pm_.c:37
msgid ""
"Which dhcp client do you want to use?\n"
@@ -6885,7 +7039,7 @@ msgstr ""
"Zure sisteman ez da ethernet sare-moldagailurik detektatu.\n"
"Ezin dut konexio-mota hau konfiguratu."
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:247
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:240
msgid "Choose the network interface"
msgstr "Aukeratu sare-interfazea"
@@ -6899,7 +7053,7 @@ msgstr ""
msgid "no network card found"
msgstr "ez da sare-txartelik aurkitu"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:366
msgid "Configuring network"
msgstr "Sarea konfiguratzen"
@@ -6915,7 +7069,7 @@ msgstr ""
"Ostalari-izenak osoa izan behar du, erabat kualifikatua,\n"
"esate baterako, ``mybox.mylab.myco.com''."
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:370
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:371
msgid "Host name"
msgstr "Ostalari-izena"
@@ -7216,13 +7370,13 @@ msgstr "Aukeratu konfiguratzeko profila"
msgid "Use auto detection"
msgstr "Erabili auto-detekzioa"
-#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2930
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:3151
#: ../../standalone/drakconnect_.c:274 ../../standalone/drakconnect_.c:277
#: ../../standalone/drakfloppy_.c:145
msgid "Expert Mode"
msgstr "Aditu modua"
-#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:283
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:386
msgid "Detecting devices..."
msgstr "Gailuak detektatzen..."
@@ -7390,11 +7544,11 @@ msgstr "IP automatikoa"
msgid "Start at boot"
msgstr "Abioan abiaraztekoa"
-#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:753
+#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:860
msgid "IP address should be in format 1.2.3.4"
msgstr "IP helbideak 1.2.3.4 formatua izan behar du"
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:367
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -7406,43 +7560,55 @@ msgstr ""
"esate baterako, ``mybox.mylab.myco.com''.\n"
"Atebidearen IP helbidea ere sar dezakezu, baldin baduzu"
-#: ../../network/network.pm_.c:371
+#: ../../network/network.pm_.c:372
msgid "DNS server"
msgstr "DNS zerbitzaria"
-#: ../../network/network.pm_.c:372
+#: ../../network/network.pm_.c:373
#, c-format
msgid "Gateway (e.g. %s)"
msgstr "Atebidea (adib. %s)"
-#: ../../network/network.pm_.c:374
+#: ../../network/network.pm_.c:375
msgid "Gateway device"
msgstr "Atebide-gailua"
-#: ../../network/network.pm_.c:386
+#: ../../network/network.pm_.c:387
msgid "Proxies configuration"
msgstr "Proxy-en konfigurazioa"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:388
msgid "HTTP proxy"
msgstr "HTTP proxy-a"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:389
msgid "FTP proxy"
msgstr "FTP proxy-a"
-#: ../../network/network.pm_.c:389
+#: ../../network/network.pm_.c:390
msgid "Track network card id (useful for laptops)"
msgstr "Sare-txartelaren identifikazioa (eramangarrientzat baliagarria)"
-#: ../../network/network.pm_.c:392
+#: ../../network/network.pm_.c:393
msgid "Proxy should be http://..."
msgstr "Proxy-ak http://... izan behar du"
-#: ../../network/network.pm_.c:393
+#: ../../network/network.pm_.c:394
msgid "Proxy should be ftp://..."
msgstr "Proxy-ak ftp://... izan behar du"
+#: ../../network/shorewall.pm_.c:24
+msgid "Firewalling configuration detected!"
+msgstr "Suebaki-konfigurazioa detektatu da!"
+
+#: ../../network/shorewall.pm_.c:25
+msgid ""
+"Warning! An existing firewalling configuration has been detected. You may "
+"need some manual fix after installation."
+msgstr ""
+"Kontuz! Lehendik dagoen suebaki-konfigurazio bat detektatu da. Beharbada "
+"eskuz konponketa batzuk egin beharko dituzu instalazioaren ondoren."
+
#: ../../network/tools.pm_.c:41
msgid "Internet configuration"
msgstr "Interneteko konfigurazioa"
@@ -7548,15 +7714,15 @@ msgstr "Kontuaren pasahitza"
msgid "United Kingdom"
msgstr "Erresuma Batua"
-#: ../../partition_table.pm_.c:606
+#: ../../partition_table.pm_.c:602
msgid "mount failed: "
msgstr "muntatzeak huts egin du: "
-#: ../../partition_table.pm_.c:670
+#: ../../partition_table.pm_.c:666
msgid "Extended partition not supported on this platform"
msgstr "Partizio hedatua ez da plataforma honetan onartzen"
-#: ../../partition_table.pm_.c:688
+#: ../../partition_table.pm_.c:684
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
@@ -7566,21 +7732,21 @@ msgstr ""
"Irtenbide bakarra lehen mailako partizioak mugitzea da, hutsunea partizio "
"hedatuen ondoren gera dadin"
-#: ../../partition_table.pm_.c:778
+#: ../../partition_table.pm_.c:774
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "Huts egin du %s fitxategitik leheneratzean: %s"
-#: ../../partition_table.pm_.c:780
+#: ../../partition_table.pm_.c:776
msgid "Bad backup file"
msgstr "Babeskopia txarra"
-#: ../../partition_table.pm_.c:802
+#: ../../partition_table.pm_.c:798
#, c-format
msgid "Error writing to file %s"
msgstr "Errorea %s fitxategian idaztean"
-#: ../../partition_table/raw.pm_.c:187
+#: ../../partition_table/raw.pm_.c:189
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
@@ -7626,150 +7792,154 @@ msgstr "LPD - Line Printer Daemon"
msgid "PDQ - Print, Don't Queue"
msgstr "PDQ - Print, Don't Queue (Inprimatu, ez egon ilaran)"
-#: ../../printer.pm_.c:35 ../../printer.pm_.c:854
+#: ../../printer.pm_.c:34 ../../printer.pm_.c:1125
msgid "CUPS"
msgstr "CUPS"
-#: ../../printer.pm_.c:36
+#: ../../printer.pm_.c:35
msgid "LPRng"
msgstr "LPRng"
-#: ../../printer.pm_.c:37
+#: ../../printer.pm_.c:36
msgid "LPD"
msgstr "LPD"
-#: ../../printer.pm_.c:38
+#: ../../printer.pm_.c:37
msgid "PDQ"
msgstr "PDQ"
-#: ../../printer.pm_.c:50
+#: ../../printer.pm_.c:49
msgid "Local printer"
msgstr "Inprimagailu lokala"
-#: ../../printer.pm_.c:51
+#: ../../printer.pm_.c:50
msgid "Remote printer"
msgstr "Urruneko inprimagailua"
-#: ../../printer.pm_.c:52
+#: ../../printer.pm_.c:51
msgid "Printer on remote CUPS server"
msgstr "Urruneko CUPS zerbitzariko inprimagailua"
-#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:776
+#: ../../printer.pm_.c:52 ../../printerdrake.pm_.c:883
msgid "Printer on remote lpd server"
msgstr "Urruneko lpd zerbitzariko inprimagailua"
-#: ../../printer.pm_.c:54
+#: ../../printer.pm_.c:53
msgid "Network printer (TCP/Socket)"
msgstr "Sareko inprimagailua (TCP/socket-a)"
-#: ../../printer.pm_.c:55
+#: ../../printer.pm_.c:54
msgid "Printer on SMB/Windows 95/98/NT server"
msgstr "SMB/Windows 95/98/NT zerbitzariko inprimagailua"
-#: ../../printer.pm_.c:56
+#: ../../printer.pm_.c:55
msgid "Printer on NetWare server"
msgstr "NetWare zerbitzariko inprimagailua"
-#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:780
+#: ../../printer.pm_.c:56 ../../printerdrake.pm_.c:887
msgid "Enter a printer device URI"
msgstr "Adierazi inprimagailuaren URI bat"
-#: ../../printer.pm_.c:58
+#: ../../printer.pm_.c:57
msgid "Pipe job into a command"
msgstr "Kanalizatu lana komando batean"
-#: ../../printer.pm_.c:487 ../../printer.pm_.c:678 ../../printer.pm_.c:1000
-#: ../../printerdrake.pm_.c:2070 ../../printerdrake.pm_.c:3189
+#: ../../printer.pm_.c:324 ../../printer.pm_.c:366 ../../printer.pm_.c:533
+msgid "Unknown Model"
+msgstr "Modelo ezezaguna"
+
+#: ../../printer.pm_.c:735 ../../printer.pm_.c:926 ../../printer.pm_.c:1318
+#: ../../printerdrake.pm_.c:2260 ../../printerdrake.pm_.c:3414
msgid "Unknown model"
msgstr "Modelo ezezaguna"
-#: ../../printer.pm_.c:515
+#: ../../printer.pm_.c:763
msgid "Local Printers"
msgstr "Inprimagailu lokalak"
-#: ../../printer.pm_.c:517 ../../printer.pm_.c:855
+#: ../../printer.pm_.c:765 ../../printer.pm_.c:1126
msgid "Remote Printers"
msgstr "Urruneko inprimagailuak"
-#: ../../printer.pm_.c:524 ../../printerdrake.pm_.c:301
+#: ../../printer.pm_.c:772 ../../printerdrake.pm_.c:404
#, c-format
msgid " on parallel port \\/*%s"
msgstr " - \\/*%s ataka paraleloan"
-#: ../../printer.pm_.c:527 ../../printerdrake.pm_.c:303
+#: ../../printer.pm_.c:775 ../../printerdrake.pm_.c:406
#, c-format
msgid ", USB printer \\/*%s"
msgstr ", \\/*%s USB inprimagailua"
-#: ../../printer.pm_.c:532
+#: ../../printer.pm_.c:780
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ", funtzio anitzeko gailua \\/*%s ataka paraleloan"
-#: ../../printer.pm_.c:535
+#: ../../printer.pm_.c:783
msgid ", multi-function device on USB"
msgstr ", funtzio anitzeko gailua - USB"
-#: ../../printer.pm_.c:537
+#: ../../printer.pm_.c:785
msgid ", multi-function device on HP JetDirect"
msgstr ", funtzio anitzeko gailua - HP JetDirect"
-#: ../../printer.pm_.c:539
+#: ../../printer.pm_.c:787
msgid ", multi-function device"
msgstr ", funtzio anitzeko gailua"
-#: ../../printer.pm_.c:542
+#: ../../printer.pm_.c:790
#, c-format
msgid ", printing to %s"
msgstr ", %s atakan"
-#: ../../printer.pm_.c:544
-#, fuzzy, c-format
+#: ../../printer.pm_.c:792
+#, c-format
msgid " on LPD server \"%s\", printer \"%s\""
-msgstr " - \"%s\" LPD zerbitzaria, \"%s\" inprimagailua"
+msgstr "\"%s\" LPD zerbitzarian, \"%s\" inprimagailua"
-#: ../../printer.pm_.c:546
+#: ../../printer.pm_.c:794
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ", \"%s\" TCP/IP ostalaria, %s ataka"
-#: ../../printer.pm_.c:550
-#, fuzzy, c-format
+#: ../../printer.pm_.c:798
+#, c-format
msgid " on SMB/Windows server \"%s\", share \"%s\""
-msgstr " - \"%s\" Windows zerbitzaria, \"%s\" konpartitzea"
+msgstr "\"%s\" SMB/Windows zerbitzarian, elkarbanatu \"%s\""
-#: ../../printer.pm_.c:554
-#, fuzzy, c-format
+#: ../../printer.pm_.c:802
+#, c-format
msgid " on Novell server \"%s\", printer \"%s\""
-msgstr " - \"%s\" Novell zerbitzaria, \"%s\" inprimagailua"
+msgstr "\"%s\" Novell zerbitzarian, \"%s\" inprimagailua"
-#: ../../printer.pm_.c:556
+#: ../../printer.pm_.c:804
#, c-format
msgid ", using command %s"
msgstr ", %s komandoaren bidez"
-#: ../../printer.pm_.c:675 ../../printerdrake.pm_.c:1540
+#: ../../printer.pm_.c:923 ../../printerdrake.pm_.c:1656
msgid "Raw printer (No driver)"
msgstr "Inprimagailu gordina (kontrolatzailerik ez)"
-#: ../../printer.pm_.c:824
+#: ../../printer.pm_.c:1095
#, c-format
msgid "(on %s)"
msgstr "(%s)"
-#: ../../printer.pm_.c:826
+#: ../../printer.pm_.c:1097
msgid "(on this machine)"
msgstr "(makina honetan)"
-#: ../../printer.pm_.c:851
+#: ../../printer.pm_.c:1122
#, c-format
msgid "On CUPS server \"%s\""
msgstr "\"%s\" CUPS zerbitzarian"
-#: ../../printer.pm_.c:857 ../../printerdrake.pm_.c:2851
-#: ../../printerdrake.pm_.c:2862 ../../printerdrake.pm_.c:3078
-#: ../../printerdrake.pm_.c:3130 ../../printerdrake.pm_.c:3156
-#: ../../printerdrake.pm_.c:3326 ../../printerdrake.pm_.c:3328
+#: ../../printer.pm_.c:1128 ../../printerdrake.pm_.c:3071
+#: ../../printerdrake.pm_.c:3082 ../../printerdrake.pm_.c:3303
+#: ../../printerdrake.pm_.c:3355 ../../printerdrake.pm_.c:3381
+#: ../../printerdrake.pm_.c:3556 ../../printerdrake.pm_.c:3558
msgid " (Default)"
msgstr " (lehenetsia)"
@@ -7795,11 +7965,11 @@ msgstr ""
msgid "Printer auto-detection (Local, TCP/Socket, and SMB printers)"
msgstr ""
-#: ../../printerdrake.pm_.c:84 ../../printerdrake.pm_.c:2914
+#: ../../printerdrake.pm_.c:84 ../../printerdrake.pm_.c:3135
msgid "CUPS configuration"
msgstr "CUPSen konfigurazioa"
-#: ../../printerdrake.pm_.c:85 ../../printerdrake.pm_.c:2915
+#: ../../printerdrake.pm_.c:85 ../../printerdrake.pm_.c:3136
msgid "Specify CUPS server"
msgstr "Zehaztu CUPS zerbitzaria"
@@ -7843,7 +8013,7 @@ msgstr ""
msgid "The IP address should look like 192.168.1.20"
msgstr "IP helbideak honelako itxura izan behar du: 192.168.1.20"
-#: ../../printerdrake.pm_.c:95 ../../printerdrake.pm_.c:987
+#: ../../printerdrake.pm_.c:95 ../../printerdrake.pm_.c:1094
msgid "The port number should be an integer!"
msgstr "Ataka-zenbakiak osoko zenbakia izan behar du!"
@@ -7851,7 +8021,7 @@ msgstr "Ataka-zenbakiak osoko zenbakia izan behar du!"
msgid "CUPS server IP"
msgstr "CUPS zerbitzariaren IP"
-#: ../../printerdrake.pm_.c:103 ../../printerdrake.pm_.c:1007
+#: ../../printerdrake.pm_.c:103 ../../printerdrake.pm_.c:1114
msgid "Port"
msgstr "Ataka"
@@ -7859,12 +8029,130 @@ msgstr "Ataka"
msgid "Automatic CUPS configuration"
msgstr "CUPS konfigurazio automatikoa"
-#: ../../printerdrake.pm_.c:183 ../../printerdrake.pm_.c:192
-#: ../../printerdrake.pm_.c:2897 ../../printerdrake.pm_.c:3017
+#: ../../printerdrake.pm_.c:177 ../../printerdrake.pm_.c:247
+#: ../../printerdrake.pm_.c:1529 ../../printerdrake.pm_.c:1533
+#: ../../printerdrake.pm_.c:1651 ../../printerdrake.pm_.c:2203
+#: ../../printerdrake.pm_.c:2356 ../../printerdrake.pm_.c:2415
+#: ../../printerdrake.pm_.c:2488 ../../printerdrake.pm_.c:2509
+#: ../../printerdrake.pm_.c:2699 ../../printerdrake.pm_.c:2740
+#: ../../printerdrake.pm_.c:2745 ../../printerdrake.pm_.c:2779
+#: ../../printerdrake.pm_.c:2784 ../../printerdrake.pm_.c:2821
+#: ../../printerdrake.pm_.c:2874 ../../printerdrake.pm_.c:2894
+#: ../../printerdrake.pm_.c:2908 ../../printerdrake.pm_.c:2942
+#: ../../printerdrake.pm_.c:2988 ../../printerdrake.pm_.c:3006
+#: ../../printerdrake.pm_.c:3095 ../../printerdrake.pm_.c:3169
+#: ../../printerdrake.pm_.c:3471 ../../printerdrake.pm_.c:3526
+#: ../../printerdrake.pm_.c:3579 ../../standalone/printerdrake_.c:57
+msgid "Printerdrake"
+msgstr "Printerdrake"
+
+#: ../../printerdrake.pm_.c:178
+#, fuzzy
+msgid "Checking your system..."
+msgstr "Inprimatze-sistema berrabiarazten ..."
+
+#: ../../printerdrake.pm_.c:186
+msgid ""
+"There are no printers found which are directly connected to your machine"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:198
+#, fuzzy
+msgid ""
+"The following printers\n"
+"\n"
+msgstr "Ondorengo pakete hauek kenduko dira"
+
+#: ../../printerdrake.pm_.c:199
+#, fuzzy
+msgid ""
+"The following printer\n"
+"\n"
+msgstr "Ondorengo pakete hauek kenduko dira"
+
+#: ../../printerdrake.pm_.c:201
+msgid ""
+"\n"
+"and one unknown printer are "
+msgstr ""
+
+#: ../../printerdrake.pm_.c:203
+#, c-format
+msgid ""
+"\n"
+"and %d unknown printers are "
+msgstr ""
+
+#: ../../printerdrake.pm_.c:207
+msgid ""
+"\n"
+"are "
+msgstr ""
+
+#: ../../printerdrake.pm_.c:208
+msgid ""
+"\n"
+"is "
+msgstr ""
+
+#: ../../printerdrake.pm_.c:210
+#, fuzzy
+msgid "directly connected to your system"
+msgstr "Kopiatu zure sistemako letra-tipoak"
+
+#: ../../printerdrake.pm_.c:213
+msgid ""
+"\n"
+"There is one unknown printer directly connected to your system"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:215
+#, c-format
+msgid ""
+"\n"
+"There are %d unknown printers directly connected to your system"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:221
+#, fuzzy
+msgid " (Make sure that all your printers are connected and turned on).\n"
+msgstr "Aukeratu inprimagailua konektatuta dagoen ataka."
+
+#: ../../printerdrake.pm_.c:235
+msgid ""
+"Do you want to enable printing on the printers mentioned above or on "
+"printers in the local network?\n"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:236
+#, fuzzy
+msgid "Do you want to enable printing on printers in the local network?\n"
+msgstr ""
+"Inprimagailu hau (\"%s\")\n"
+"lehenetsi nahi duzu?"
+
+#: ../../printerdrake.pm_.c:238
+#, fuzzy
+msgid "Do you want to enable printing on the printers mentioned above?\n"
+msgstr "Abioan hasi nahi duzu konexioa?"
+
+#: ../../printerdrake.pm_.c:239
+msgid "Are you sure that you want to set up printing on this machine?\n"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:240
+#, c-format
+msgid ""
+"NOTE: Depending on the printer model and the printing system up to %d MB of "
+"additional software will be installed."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:269 ../../printerdrake.pm_.c:278
+#: ../../printerdrake.pm_.c:3117 ../../printerdrake.pm_.c:3242
msgid "Add a new printer"
msgstr "Gehitu inprimagailu berria"
-#: ../../printerdrake.pm_.c:184
+#: ../../printerdrake.pm_.c:270
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7887,7 +8175,7 @@ msgstr ""
"inprimagailu-kontrolatzaile, kontrolatzaile-aukera eta konexio-mota "
"erabilgarri guztiak jarriko ditu zure esku."
-#: ../../printerdrake.pm_.c:193
+#: ../../printerdrake.pm_.c:280
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7896,7 +8184,7 @@ msgid ""
"computer, connected directly to the network or to a remote Windows machine.\n"
"\n"
"If you have printer(s) connected to this machine, Please plug it/them in on "
-"this computer and turn it/them on so that they can be auto-detected. Also "
+"this computer and turn it/them on so that it/they can be auto-detected. Also "
"your network printer(s) and you Windows machines must be connected and "
"turned on.\n"
"\n"
@@ -7909,7 +8197,22 @@ msgid ""
"want to set up your printer(s) now."
msgstr ""
-#: ../../printerdrake.pm_.c:202
+#: ../../printerdrake.pm_.c:289 ../../printerdrake.pm_.c:306
+msgid ""
+"\n"
+"Welcome to the Printer Setup Wizard\n"
+"\n"
+"This wizard will help you to install your printer(s) connected to this "
+"computer.\n"
+"\n"
+"If you have printer(s) connected to this machine, Please plug it/them in on "
+"this computer and turn it/them on so that it/they can be auto-detected.\n"
+"\n"
+" Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
+"want to set up your printer(s) now."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:297
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7918,7 +8221,7 @@ msgid ""
"computer or connected directly to the network.\n"
"\n"
"If you have printer(s) connected to this machine, Please plug it/them in on "
-"this computer and turn it/them on so that they can be auto-detected. Also "
+"this computer and turn it/them on so that it/they can be auto-detected. Also "
"your network printer(s) must be connected and turned on.\n"
"\n"
"Note that auto-detecting printers on the network takes longer than the auto-"
@@ -7929,25 +8232,25 @@ msgid ""
"want to set up your printer(s) now."
msgstr ""
-#: ../../printerdrake.pm_.c:213
+#: ../../printerdrake.pm_.c:315
#, fuzzy
msgid "Auto-detect printers connected to this machine"
msgstr "Automatikoki detektatu inprimagailuak"
-#: ../../printerdrake.pm_.c:215
+#: ../../printerdrake.pm_.c:318
msgid "Auto-detect printers connected directly to the local network"
msgstr ""
-#: ../../printerdrake.pm_.c:218
+#: ../../printerdrake.pm_.c:321
msgid "Auto-detect printers connected to machines running Microsoft Windows"
msgstr ""
-#: ../../printerdrake.pm_.c:245 ../../printerdrake.pm_.c:459
-#: ../../printerdrake.pm_.c:484
+#: ../../printerdrake.pm_.c:348 ../../printerdrake.pm_.c:562
+#: ../../printerdrake.pm_.c:587
msgid "Local Printer"
msgstr "Inprimagailu lokala"
-#: ../../printerdrake.pm_.c:246
+#: ../../printerdrake.pm_.c:349
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -7970,50 +8273,50 @@ msgstr ""
"lehenetsiak (paper-iturria, inprimatze-kalitatea...) aldatu nahi badituzu, "
"hautatu \"Inprimagailua\" Mandrake Kontrol Zentroko \"Hardwarea\" atalean."
-#: ../../printerdrake.pm_.c:283 ../../printerdrake.pm_.c:474
-#: ../../printerdrake.pm_.c:683 ../../printerdrake.pm_.c:923
+#: ../../printerdrake.pm_.c:386 ../../printerdrake.pm_.c:577
+#: ../../printerdrake.pm_.c:790 ../../printerdrake.pm_.c:1030
#, fuzzy
msgid "Printer auto-detection"
msgstr "Egin auto-detekzioa"
-#: ../../printerdrake.pm_.c:305
-#, fuzzy, c-format
+#: ../../printerdrake.pm_.c:408
+#, c-format
msgid ", network printer \"%s\", port %s"
-msgstr ", \"%s\" TCP/IP ostalaria, %s ataka"
+msgstr ", \"%s\" sareko inprimagailua, %s portua"
-#: ../../printerdrake.pm_.c:307
-#, fuzzy, c-format
+#: ../../printerdrake.pm_.c:410
+#, c-format
msgid ", printer \"%s\" on SMB/Windows server \"%s\""
-msgstr "SMB/Windows 95/98/NT zerbitzariko inprimagailua"
+msgstr ", \"%s\" inprimagailua \"%s\" SMB/Windows zerbitzarian"
-#: ../../printerdrake.pm_.c:313
+#: ../../printerdrake.pm_.c:416
#, c-format
msgid "Detected %s"
msgstr "%s detektatua"
-#: ../../printerdrake.pm_.c:317 ../../printerdrake.pm_.c:348
-#: ../../printerdrake.pm_.c:367
+#: ../../printerdrake.pm_.c:420 ../../printerdrake.pm_.c:451
+#: ../../printerdrake.pm_.c:470
#, c-format
msgid "Printer on parallel port \\/*%s"
msgstr "\\/*%s ataka paraleloko inprimagailua"
-#: ../../printerdrake.pm_.c:319 ../../printerdrake.pm_.c:350
-#: ../../printerdrake.pm_.c:372
+#: ../../printerdrake.pm_.c:422 ../../printerdrake.pm_.c:453
+#: ../../printerdrake.pm_.c:475
#, c-format
msgid "USB printer \\/*%s"
msgstr "\\/*%s USB inprimagailua"
-#: ../../printerdrake.pm_.c:321
-#, fuzzy, c-format
+#: ../../printerdrake.pm_.c:424
+#, c-format
msgid "Network printer \"%s\", port %s"
-msgstr "Sareko inprimagailua (TCP/socket-a)"
+msgstr "\"%s\" sareko inprimagailua, %s portua"
-#: ../../printerdrake.pm_.c:323
-#, fuzzy, c-format
+#: ../../printerdrake.pm_.c:426
+#, c-format
msgid "Printer \"%s\" on SMB/Windows server \"%s\""
-msgstr "SMB/Windows 95/98/NT zerbitzariko inprimagailua"
+msgstr "\"%s\" inprimagailua \"%s\" SMB/Windows zerbitzarian"
-#: ../../printerdrake.pm_.c:460
+#: ../../printerdrake.pm_.c:563
msgid ""
"No local printer found! To manually install a printer enter a device name/"
"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
@@ -8025,23 +8328,19 @@ msgstr ""
"baliokideak dira LPT1:, LPT2:..., lehen USB inprimagailua: /dev/usb/lp0, "
"bigarren USB inprimagailua: /dev/usb/lp1, ...)."
-#: ../../printerdrake.pm_.c:464
+#: ../../printerdrake.pm_.c:567
msgid "You must enter a device or file name!"
msgstr "Gailua edo fitxategi-izena adierazi behar duzu!"
-#: ../../printerdrake.pm_.c:475
-#, fuzzy
+#: ../../printerdrake.pm_.c:578
msgid "No printer found!"
-msgstr ""
-"Ez da inprimagailu lokalik aurkitu!\n"
-"\n"
+msgstr "Ez da inprimagairik aurkitu!"
-#: ../../printerdrake.pm_.c:485
-#, fuzzy
+#: ../../printerdrake.pm_.c:588
msgid "Available printers"
-msgstr "Inprimagailu lokala"
+msgstr "Inprimagailu erabilgarriak"
-#: ../../printerdrake.pm_.c:489
+#: ../../printerdrake.pm_.c:592
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
@@ -8049,7 +8348,7 @@ msgstr ""
"Inprimagailu hau detektatu da automatikoki, zuk konfiguratu nahi duzuna ez "
"bada, idatzi gailuaren izena/fitxategi-izena"
-#: ../../printerdrake.pm_.c:490
+#: ../../printerdrake.pm_.c:593
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up or enter a device name/file name in the input line"
@@ -8057,7 +8356,7 @@ msgstr ""
"Automatikoki detektatutako inprimagailuen zerrenda da hau. Hautatu "
"konfiguratu nahi duzuna edo idatzi gailuaren izena/fitxategi-izena"
-#: ../../printerdrake.pm_.c:492
+#: ../../printerdrake.pm_.c:595
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
@@ -8069,7 +8368,7 @@ msgstr ""
"baduzu konfigurazio pertsonalizatua, aldatu \"Eskuzko konfigurazioa"
"\"aukerara."
-#: ../../printerdrake.pm_.c:493
+#: ../../printerdrake.pm_.c:596
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
@@ -8081,7 +8380,7 @@ msgstr ""
"automatikoki egingo da. Inprimagailua ondo detektatu ez bada edo nahiago "
"baduzu konfigurazio pertsonalizatua, hautatu \"Eskuzko konfigurazioa\"."
-#: ../../printerdrake.pm_.c:495
+#: ../../printerdrake.pm_.c:598
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
@@ -8089,11 +8388,11 @@ msgstr ""
"Hautatu inprimagailua konektatuta dagoen ataka edo idatzi gailuaren izena/"
"fitxategi-izena"
-#: ../../printerdrake.pm_.c:496
+#: ../../printerdrake.pm_.c:599
msgid "Please choose the port where your printer is connected to."
msgstr "Aukeratu inprimagailua konektatuta dagoen ataka."
-#: ../../printerdrake.pm_.c:498
+#: ../../printerdrake.pm_.c:601
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
@@ -8102,19 +8401,19 @@ msgstr ""
"lehen USB inprimagailua: /dev/usb/lp0, 2. USB inprimagailua: /dev/usb/"
"lp1, ...)."
-#: ../../printerdrake.pm_.c:503
+#: ../../printerdrake.pm_.c:606
msgid "You must choose/enter a printer/device!"
msgstr "Inprimagailua/gailua aukeratu/adierazi behar duzu!"
-#: ../../printerdrake.pm_.c:523
+#: ../../printerdrake.pm_.c:626
msgid "Manual configuration"
msgstr "Eskuzko konfigurazioa"
-#: ../../printerdrake.pm_.c:577
+#: ../../printerdrake.pm_.c:680
msgid "Remote lpd Printer Options"
msgstr "Urruneko lpd inprimagailuaren aukerak"
-#: ../../printerdrake.pm_.c:578
+#: ../../printerdrake.pm_.c:681
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
"server and the printer name on that server."
@@ -8123,47 +8422,47 @@ msgstr ""
"ostalari-\n"
"izena eta zerbitzari horretako inprimagailu-izena eman behar dituzu."
-#: ../../printerdrake.pm_.c:579
+#: ../../printerdrake.pm_.c:682
msgid "Remote host name"
msgstr "Urruneko ostalari-izena"
-#: ../../printerdrake.pm_.c:580
+#: ../../printerdrake.pm_.c:683
msgid "Remote printer name"
msgstr "Urruneko inprimagailu-izena"
-#: ../../printerdrake.pm_.c:583
+#: ../../printerdrake.pm_.c:686
msgid "Remote host name missing!"
msgstr "Urruneko ostalari izena falta da!"
-#: ../../printerdrake.pm_.c:587
+#: ../../printerdrake.pm_.c:690
msgid "Remote printer name missing!"
msgstr "Urruneko inprimagailu-izena falta da!"
-#: ../../printerdrake.pm_.c:609 ../../printerdrake.pm_.c:1119
-#, fuzzy, c-format
+#: ../../printerdrake.pm_.c:712 ../../printerdrake.pm_.c:1225
+#, c-format
msgid "Detected model: %s %s"
-msgstr "%s detektatua"
+msgstr "Detektatutako eredua: %s %s"
-#: ../../printerdrake.pm_.c:683 ../../printerdrake.pm_.c:923
+#: ../../printerdrake.pm_.c:790 ../../printerdrake.pm_.c:1030
#, fuzzy
msgid "Scanning network..."
msgstr "Sarea abiarazten ..."
-#: ../../printerdrake.pm_.c:692 ../../printerdrake.pm_.c:713
-#, fuzzy, c-format
+#: ../../printerdrake.pm_.c:799 ../../printerdrake.pm_.c:820
+#, c-format
msgid ", printer \"%s\" on server \"%s\""
-msgstr " - \"%s\" Windows zerbitzaria, \"%s\" konpartitzea"
+msgstr ", \"%s\" inprimagailua \"%s\" zerbitzarian"
-#: ../../printerdrake.pm_.c:695 ../../printerdrake.pm_.c:716
-#, fuzzy, c-format
+#: ../../printerdrake.pm_.c:802 ../../printerdrake.pm_.c:823
+#, c-format
msgid "Printer \"%s\" on server \"%s\""
-msgstr "\"%s\" inprimagailuan inprimatzen"
+msgstr "\"%s\" inprimagailua \"%s\" zerbitzarian"
-#: ../../printerdrake.pm_.c:736
+#: ../../printerdrake.pm_.c:843
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "SMB (Windows 9x/NT) inprimagailuaren aukerak"
-#: ../../printerdrake.pm_.c:737
+#: ../../printerdrake.pm_.c:844
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
"may be different from its TCP/IP hostname!) and possibly the IP address of "
@@ -8176,46 +8475,46 @@ msgstr ""
"konpartitze-izena eta erabiltzaile-izenak, pasahitzak eta lantalde-"
"informazioa ere."
-#: ../../printerdrake.pm_.c:738
+#: ../../printerdrake.pm_.c:845
msgid ""
" If the desired printer was auto-detected, simply choose it from the list "
"and then add user name, password, and/or workgroup if needed."
msgstr ""
-#: ../../printerdrake.pm_.c:739
+#: ../../printerdrake.pm_.c:846
msgid "SMB server host"
msgstr "SMB zerbitzariaren ostalaria"
-#: ../../printerdrake.pm_.c:740
+#: ../../printerdrake.pm_.c:847
msgid "SMB server IP"
msgstr "SMB zerbitzariaren IP"
-#: ../../printerdrake.pm_.c:741
+#: ../../printerdrake.pm_.c:848
msgid "Share name"
msgstr "Konpartitze-izena"
-#: ../../printerdrake.pm_.c:744
+#: ../../printerdrake.pm_.c:851
msgid "Workgroup"
msgstr "Lantaldea"
-#: ../../printerdrake.pm_.c:746
+#: ../../printerdrake.pm_.c:853
#, fuzzy
msgid "Auto-detected"
msgstr "Auto-detektatu"
-#: ../../printerdrake.pm_.c:757
+#: ../../printerdrake.pm_.c:864
msgid "Either the server name or the server's IP must be given!"
msgstr "Zerbitzari-izena edo zerbitzariaren IP eman behar da!"
-#: ../../printerdrake.pm_.c:761
+#: ../../printerdrake.pm_.c:868
msgid "Samba share name missing!"
msgstr "Samba konpartitze-izena falta da!"
-#: ../../printerdrake.pm_.c:767
+#: ../../printerdrake.pm_.c:874
msgid "SECURITY WARNING!"
msgstr "SEGURTASUN OHARRA!"
-#: ../../printerdrake.pm_.c:768
+#: ../../printerdrake.pm_.c:875
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -8258,7 +8557,7 @@ msgstr ""
"koneksio motarekin Printdraken.\n"
"\n"
-#: ../../printerdrake.pm_.c:778
+#: ../../printerdrake.pm_.c:885
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -8271,7 +8570,7 @@ msgstr ""
"lotura mota erabilizPrinterdrake-n.\n"
"\n"
-#: ../../printerdrake.pm_.c:781
+#: ../../printerdrake.pm_.c:888
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
@@ -8284,11 +8583,11 @@ msgstr ""
"Ziur zaude inprimagailu hau ezartzen jarraitu nahi duzula egiten ari zaren "
"moduan?"
-#: ../../printerdrake.pm_.c:853
+#: ../../printerdrake.pm_.c:960
msgid "NetWare Printer Options"
msgstr "NetWare inprimagailuaren aukerak"
-#: ../../printerdrake.pm_.c:854
+#: ../../printerdrake.pm_.c:961
msgid ""
"To print on a NetWare printer, you need to provide the NetWare print server "
"name (Note! it may be different from its TCP/IP hostname!) as well as the "
@@ -8300,43 +8599,43 @@ msgstr ""
"desberdina izatea!) eta baita atzitu nahi duzun inprimagailuaren inprimaketa-"
"ilararen izena eta erabiltzaile-izenak eta pasahitzak ere."
-#: ../../printerdrake.pm_.c:855
+#: ../../printerdrake.pm_.c:962
msgid "Printer Server"
msgstr "Inprimagailu-zerbitzaria"
-#: ../../printerdrake.pm_.c:856
+#: ../../printerdrake.pm_.c:963
msgid "Print Queue Name"
msgstr "Inprimaketa-ilararen izena"
-#: ../../printerdrake.pm_.c:861
+#: ../../printerdrake.pm_.c:968
msgid "NCP server name missing!"
msgstr "NCP zerbitzari-izena falta da!"
-#: ../../printerdrake.pm_.c:865
+#: ../../printerdrake.pm_.c:972
msgid "NCP queue name missing!"
msgstr "NCP ilara-izena falta da!"
-#: ../../printerdrake.pm_.c:932 ../../printerdrake.pm_.c:952
-#, fuzzy, c-format
+#: ../../printerdrake.pm_.c:1039 ../../printerdrake.pm_.c:1059
+#, c-format
msgid ", host \"%s\", port %s"
-msgstr ", \"%s\" TCP/IP ostalaria, %s ataka"
+msgstr ", \"%s\" ostalaria, %s protua"
-#: ../../printerdrake.pm_.c:935 ../../printerdrake.pm_.c:955
-#, fuzzy, c-format
+#: ../../printerdrake.pm_.c:1042 ../../printerdrake.pm_.c:1062
+#, c-format
msgid "Host \"%s\", port %s"
-msgstr ", \"%s\" TCP/IP ostalaria, %s ataka"
+msgstr "\"%s\" ostalaria, %s portua"
-#: ../../printerdrake.pm_.c:975
+#: ../../printerdrake.pm_.c:1082
msgid "TCP/Socket Printer Options"
msgstr "TCP/Socket inprimagailuaren aukerak"
-#: ../../printerdrake.pm_.c:977
+#: ../../printerdrake.pm_.c:1084
msgid ""
"Choose one of the auto-detected printers from the list or enter the hostname "
"or IP and the optional port number (default is 9100) into the input fields."
msgstr ""
-#: ../../printerdrake.pm_.c:978
+#: ../../printerdrake.pm_.c:1085
#, fuzzy
msgid ""
"To print to a TCP or socket printer, you need to provide the host name or IP "
@@ -8349,21 +8648,19 @@ msgstr ""
"zerbitzarietan ataka-zenbakia normalki 9100 izaten da, beste zerbitzari "
"batzuetan aldatu egin daiteke. Begiratu zure hardwarearen eskuliburuan."
-#: ../../printerdrake.pm_.c:983
-#, fuzzy
+#: ../../printerdrake.pm_.c:1090
msgid "Printer host name or IP missing!"
-msgstr "Inprimagailuaren ostalari izena falta da!"
+msgstr "Inprimagailuaren ostalari izena falta da edo IP falta da!"
-#: ../../printerdrake.pm_.c:1005
-#, fuzzy
+#: ../../printerdrake.pm_.c:1112
msgid "Printer host name or IP"
-msgstr "Inprimagailuaren ostalari-izena"
+msgstr "Inprimagailuaren ostalari-izena edo IP"
-#: ../../printerdrake.pm_.c:1054 ../../printerdrake.pm_.c:1056
+#: ../../printerdrake.pm_.c:1160 ../../printerdrake.pm_.c:1162
msgid "Printer Device URI"
msgstr "Inprimagailuaren URIa"
-#: ../../printerdrake.pm_.c:1055
+#: ../../printerdrake.pm_.c:1161
msgid ""
"You can specify directly the URI to access the printer. The URI must fulfill "
"either the CUPS or the Foomatic specifications. Note that not all URI types "
@@ -8373,11 +8670,11 @@ msgstr ""
"Foomatic zehaztapenak bete behar ditu. Kontuan izan spooler guztiek ez "
"dituztela URI mota guztiak onartzen."
-#: ../../printerdrake.pm_.c:1070
+#: ../../printerdrake.pm_.c:1176
msgid "A valid URI must be entered!"
msgstr "Baliozko URI bat sartu behar da!"
-#: ../../printerdrake.pm_.c:1402
+#: ../../printerdrake.pm_.c:1515
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
"Location fields do not need to be filled in. They are comments for the users."
@@ -8386,27 +8683,27 @@ msgstr ""
"Azalpenaren eta Kokalekuaren eremuak ez dira nahitaez bete behar. "
"Erabiltzaileentzako iruzkinak dira."
-#: ../../printerdrake.pm_.c:1403
+#: ../../printerdrake.pm_.c:1516
msgid "Name of printer"
msgstr "Inprimagailuaren izena"
-#: ../../printerdrake.pm_.c:1405
+#: ../../printerdrake.pm_.c:1518
msgid "Location"
msgstr "Kokalekua"
-#: ../../printerdrake.pm_.c:1416 ../../printerdrake.pm_.c:1536
+#: ../../printerdrake.pm_.c:1530 ../../printerdrake.pm_.c:1652
msgid "Reading printer database..."
msgstr "Inprimagailuaren datu-basea irakurtzen..."
-#: ../../printerdrake.pm_.c:1419
+#: ../../printerdrake.pm_.c:1534
msgid "Preparing printer database..."
msgstr "Inprimagailuaren datu-basea prestatzen..."
-#: ../../printerdrake.pm_.c:1516
+#: ../../printerdrake.pm_.c:1631
msgid "Your printer model"
msgstr "Zure inprimagailu-modeloa"
-#: ../../printerdrake.pm_.c:1517
+#: ../../printerdrake.pm_.c:1632
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -8431,24 +8728,24 @@ msgstr ""
"\n"
"%s"
-#: ../../printerdrake.pm_.c:1522 ../../printerdrake.pm_.c:1525
+#: ../../printerdrake.pm_.c:1637 ../../printerdrake.pm_.c:1640
msgid "The model is correct"
msgstr "Modeloa zuzena da"
-#: ../../printerdrake.pm_.c:1523 ../../printerdrake.pm_.c:1524
-#: ../../printerdrake.pm_.c:1527
+#: ../../printerdrake.pm_.c:1638 ../../printerdrake.pm_.c:1639
+#: ../../printerdrake.pm_.c:1642
msgid "Select model manually"
msgstr "Hautatu modeloa eskuz"
-#: ../../printerdrake.pm_.c:1543
+#: ../../printerdrake.pm_.c:1659
msgid "Printer model selection"
msgstr "Inprimagailu-modeloaren hautapena"
-#: ../../printerdrake.pm_.c:1544
+#: ../../printerdrake.pm_.c:1660
msgid "Which printer model do you have?"
msgstr "Zein inprimagailu-modelo daukazu?"
-#: ../../printerdrake.pm_.c:1545
+#: ../../printerdrake.pm_.c:1661
msgid ""
"\n"
"\n"
@@ -8462,7 +8759,7 @@ msgstr ""
"modeloa. Bilatu modelo egokia zerrendan kurtsorea okerreko modeloan edo "
"\"Inprimagailu gordinean\" badago."
-#: ../../printerdrake.pm_.c:1548
+#: ../../printerdrake.pm_.c:1664
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
@@ -8470,11 +8767,11 @@ msgstr ""
"Zure inprimagailua ez badago zerrendan, aukeratu bateragarria (ikus "
"inprimagailuaren eskuliburua) edo antzekoa den bat "
-#: ../../printerdrake.pm_.c:1624
+#: ../../printerdrake.pm_.c:1741
msgid "OKI winprinter configuration"
msgstr "OKI winprinter-en konfigurazioa"
-#: ../../printerdrake.pm_.c:1625
+#: ../../printerdrake.pm_.c:1742
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -8492,11 +8789,11 @@ msgstr ""
"funtzionatuko. Zure konexio-motaren ezarpena ez du kontuan hartuko "
"kontrolatzaileak."
-#: ../../printerdrake.pm_.c:1668 ../../printerdrake.pm_.c:1695
+#: ../../printerdrake.pm_.c:1785 ../../printerdrake.pm_.c:1812
msgid "Lexmark inkjet configuration"
msgstr "Lexmark inkjet inprimagailuaren konfigurazioa"
-#: ../../printerdrake.pm_.c:1669
+#: ../../printerdrake.pm_.c:1786
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
"no printers on remote machines or print server boxes. Please connect your "
@@ -8508,17 +8805,17 @@ msgstr ""
"zerbitzariak. Konektatu zure inprimagailua ataka lokal batera edo konfigura "
"ezazu konektatuta dagoen makinan."
-#: ../../printerdrake.pm_.c:1696
+#: ../../printerdrake.pm_.c:1813
+#, fuzzy
msgid ""
"To be able to print with your Lexmark inkjet and this configuration, you "
"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
-"com/). Go to the US site and click on the \"Drivers\" button. Then choose "
-"your model and afterwards \"Linux\" as operating system. The drivers come as "
-"RPM packages or shell scripts with interactive graphical installation. You "
-"do not need to do this configuration by the graphical frontends. Cancel "
-"directly after the license agreement. Then print printhead alignment pages "
-"with \"lexmarkmaintain\" and adjust the head alignment settings with this "
-"program."
+"com/). Click on the \"Drivers\" link. Then choose your model and afterwards "
+"\"Linux\" as operating system. The drivers come as RPM packages or shell "
+"scripts with interactive graphical installation. You do not need to do this "
+"configuration by the graphical frontends. Cancel directly after the license "
+"agreement. Then print printhead alignment pages with \"lexmarkmaintain\" and "
+"adjust the head alignment settings with this program."
msgstr ""
"Lexmark inkjet-ekin eta konfigurazio honekin inprimatu ahal , izateko, "
"Lexmark-ek emandako inkjet inprimagailu-kontrolatzaileak behar dituzu "
@@ -8531,7 +8828,34 @@ msgstr ""
"orriak \"lexmarkmaintain\"ekin eta doitu burua lerrokatzeko ezarpenak "
"programa honekin."
-#: ../../printerdrake.pm_.c:1912
+#: ../../printerdrake.pm_.c:1816
+msgid "GDI Laser Printer using the Zenographics ZJ-Stream Format"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:1817
+msgid ""
+"Your printer belongs to the group of GDI laser printers (winprinters) sold "
+"by different manufacturers which uses the Zenographics ZJ-stream raster "
+"format for the data sent to the printer. The driver for these printers is "
+"still in a very early development stage and so it will perhaps not always "
+"work properly. Especially it is possible that the printer only works when "
+"you choose the A4 paper size.\n"
+"\n"
+"Some of these printers, as the HP LaserJet 1000, for which this driver was "
+"originally created, need their firmware to be uploaded to them after they "
+"are turned on. In the case of the HP LaserJet 1000 you have to search the "
+"printer's Windows driver CD or your Windows partition for the file "
+"\"sihp1000.img\" and upload the file to the printer with one of the "
+"following commands:\n"
+"\n"
+" lpr -o raw sihp1000.img\n"
+" cat sihp1000.img > /dev/usb/lp0\n"
+"\n"
+"The first command can be given by any normal user, the second must be given "
+"as root. After having done so you can print normally.\n"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:2040
msgid ""
"Printer default settings\n"
"\n"
@@ -8547,22 +8871,22 @@ msgstr ""
"Kontuan hartu inprimatzeko kalitatea oso handia bada askoz mantsoago "
"inprimatuko duela segurutik."
-#: ../../printerdrake.pm_.c:1921
+#: ../../printerdrake.pm_.c:2049
#, c-format
msgid "Option %s must be an integer number!"
msgstr "%s aukerak osoko zenbakia izan behar du!"
-#: ../../printerdrake.pm_.c:1925
+#: ../../printerdrake.pm_.c:2053
#, c-format
msgid "Option %s must be a number!"
msgstr "%s aukerak zenbakia izan behar du!"
-#: ../../printerdrake.pm_.c:1930
+#: ../../printerdrake.pm_.c:2058
#, c-format
msgid "Option %s out of range!"
msgstr "%s aukera barrutitik kanpo dago!"
-#: ../../printerdrake.pm_.c:1969
+#: ../../printerdrake.pm_.c:2097
#, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
@@ -8571,11 +8895,11 @@ msgstr ""
"Inprimagailu hau (\"%s\")\n"
"lehenetsi nahi duzu?"
-#: ../../printerdrake.pm_.c:1986
+#: ../../printerdrake.pm_.c:2120
msgid "Test pages"
msgstr "Proba-orriak"
-#: ../../printerdrake.pm_.c:1987
+#: ../../printerdrake.pm_.c:2121
msgid ""
"Please select the test pages you want to print.\n"
"Note: the photo test page can take a rather long time to get printed and on "
@@ -8588,39 +8912,39 @@ msgstr ""
"ateratzea ere. Gehienetan nahikoa izaten da proba-orri estandarra "
"inprimatzea."
-#: ../../printerdrake.pm_.c:1991
+#: ../../printerdrake.pm_.c:2125
msgid "No test pages"
msgstr "Proba-orririk ez"
-#: ../../printerdrake.pm_.c:1992
+#: ../../printerdrake.pm_.c:2126
msgid "Print"
msgstr "Inprimatu"
-#: ../../printerdrake.pm_.c:1994
+#: ../../printerdrake.pm_.c:2183
msgid "Standard test page"
msgstr "Proba-orri estandarra"
-#: ../../printerdrake.pm_.c:1997
+#: ../../printerdrake.pm_.c:2186
msgid "Alternative test page (Letter)"
msgstr "Proba-orri alternatiboa (Letter)"
-#: ../../printerdrake.pm_.c:2000
+#: ../../printerdrake.pm_.c:2189
msgid "Alternative test page (A4)"
msgstr "Proba-orri alternatiboa (A4)"
-#: ../../printerdrake.pm_.c:2002
+#: ../../printerdrake.pm_.c:2191
msgid "Photo test page"
msgstr "Argazkien proba-orria"
-#: ../../printerdrake.pm_.c:2006
+#: ../../printerdrake.pm_.c:2195
msgid "Do not print any test page"
msgstr "Ez inprimatu proba-orririk"
-#: ../../printerdrake.pm_.c:2014 ../../printerdrake.pm_.c:2166
+#: ../../printerdrake.pm_.c:2204 ../../printerdrake.pm_.c:2357
msgid "Printing test page(s)..."
msgstr "Proba-orria(k) inprimatzen..."
-#: ../../printerdrake.pm_.c:2039
+#: ../../printerdrake.pm_.c:2229
#, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -8635,7 +8959,7 @@ msgstr ""
"%s\n"
"\n"
-#: ../../printerdrake.pm_.c:2043
+#: ../../printerdrake.pm_.c:2233
msgid ""
"Test page(s) have been sent to the printer.\n"
"It may take some time before the printer starts.\n"
@@ -8643,15 +8967,15 @@ msgstr ""
"Proba-orria(k) inprimagailura bidali dira.\n"
"Denbora pixka bat igaro liteke inprimatzen hasi arte.\n"
-#: ../../printerdrake.pm_.c:2050
+#: ../../printerdrake.pm_.c:2240
msgid "Did it work properly?"
msgstr "Ongi egin du?"
-#: ../../printerdrake.pm_.c:2072 ../../printerdrake.pm_.c:3191
+#: ../../printerdrake.pm_.c:2262 ../../printerdrake.pm_.c:3416
msgid "Raw printer"
msgstr "Inprimagailu \"gordina\""
-#: ../../printerdrake.pm_.c:2098
+#: ../../printerdrake.pm_.c:2288
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -8665,7 +8989,7 @@ msgstr ""
"inprimagailua hautatzeko eta aukeren ezarpenak erraz aldatzeko erabiltzen "
"dira.\n"
-#: ../../printerdrake.pm_.c:2100
+#: ../../printerdrake.pm_.c:2290
msgid ""
"These commands you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications, but here do not supply the file name "
@@ -8675,8 +8999,8 @@ msgstr ""
"komandoa\" eremuan erabil ditzakezu ere, baina hor ez eman fitxategi-izena, "
"inprimatu behar den fitxategia aplikazioak ematen baitu.\n"
-#: ../../printerdrake.pm_.c:2103 ../../printerdrake.pm_.c:2120
-#: ../../printerdrake.pm_.c:2130
+#: ../../printerdrake.pm_.c:2293 ../../printerdrake.pm_.c:2310
+#: ../../printerdrake.pm_.c:2320
#, c-format
msgid ""
"\n"
@@ -8689,7 +9013,7 @@ msgstr ""
"ezarpenak. Gehitu nahi dituzun ezarpenak komando-lerroari, adib. \"%s "
"<fitxategia>\". "
-#: ../../printerdrake.pm_.c:2106 ../../printerdrake.pm_.c:2146
+#: ../../printerdrake.pm_.c:2296 ../../printerdrake.pm_.c:2336
#, fuzzy, c-format
msgid ""
"To know about the options available for the current printer read either the "
@@ -8700,7 +9024,7 @@ msgstr ""
"egin klik \"Inprimatzeko aukeren zerrenda\" botoian.%s\n"
"\n"
-#: ../../printerdrake.pm_.c:2110
+#: ../../printerdrake.pm_.c:2300
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
@@ -8708,7 +9032,7 @@ msgstr ""
"Hemen duzu inprimagailu honen inprimatzeko aukeren zerrenda:\n"
"\n"
-#: ../../printerdrake.pm_.c:2115 ../../printerdrake.pm_.c:2125
+#: ../../printerdrake.pm_.c:2305 ../../printerdrake.pm_.c:2315
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
@@ -8717,8 +9041,8 @@ msgstr ""
"Fitxategi bat komando-lerrotik (terminal-leihoa) inprimatzeko, erabili \"%s "
"<fitxategia>\" komandoa.\n"
-#: ../../printerdrake.pm_.c:2117 ../../printerdrake.pm_.c:2127
-#: ../../printerdrake.pm_.c:2137
+#: ../../printerdrake.pm_.c:2307 ../../printerdrake.pm_.c:2317
+#: ../../printerdrake.pm_.c:2327
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
@@ -8728,7 +9052,7 @@ msgstr ""
"komandoa\" eremuan ere erabil dezakezu. Baina hor ez eman fitxategi-izena, "
"inprimatu behar den fitxategia aplikazioak ematen baitu.\n"
-#: ../../printerdrake.pm_.c:2122 ../../printerdrake.pm_.c:2132
+#: ../../printerdrake.pm_.c:2312 ../../printerdrake.pm_.c:2322
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
@@ -8736,7 +9060,7 @@ msgstr ""
"Uneko inprimagailuaren aukera erabilgarrien zerrenda eskuratzeko, egin klik "
"\"Inprimatzeko aukeren zerrenda\" botoian."
-#: ../../printerdrake.pm_.c:2135
+#: ../../printerdrake.pm_.c:2325
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
@@ -8745,7 +9069,7 @@ msgstr ""
"Fitxategi bat komando-lerrotik (terminal-leihoa) inprimatzeko, erabili \"%s "
"<fitxategia>\" komandoa edo \"%s <fitxategia>\".\n"
-#: ../../printerdrake.pm_.c:2139
+#: ../../printerdrake.pm_.c:2329
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -8761,7 +9085,7 @@ msgstr ""
"berehala etengo ditu bertan klik egitean. Papera trabatzen denean eta "
"horrelakoetan erabili ohi da.\n"
-#: ../../printerdrake.pm_.c:2143
+#: ../../printerdrake.pm_.c:2333
#, c-format
msgid ""
"\n"
@@ -8774,40 +9098,40 @@ msgstr ""
"daitezke. Aski da nahi diren ezarpenak komando-lerroan gehitzea, adib.: \"%s "
"<fitxategia>\".\n"
-#: ../../printerdrake.pm_.c:2153
-#, fuzzy, c-format
+#: ../../printerdrake.pm_.c:2343
+#, c-format
msgid "Printing/Scanning/Photo Cards on \"%s\""
-msgstr "\"%s\": inprimatzen/eskaneatzen"
+msgstr "Inprimatzeko/Eskaneatzeko/Argazki Txartelak \"%s\"-n"
-#: ../../printerdrake.pm_.c:2154
+#: ../../printerdrake.pm_.c:2344
#, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "\"%s\": inprimatzen/eskaneatzen"
-#: ../../printerdrake.pm_.c:2156
+#: ../../printerdrake.pm_.c:2346
#, fuzzy, c-format
msgid "Printing/Photo Card Access on \"%s\""
msgstr "\"%s\": inprimatzen/eskaneatzen"
-#: ../../printerdrake.pm_.c:2157
+#: ../../printerdrake.pm_.c:2347
#, c-format
msgid "Printing on the printer \"%s\""
msgstr "\"%s\" inprimagailuan inprimatzen"
-#: ../../printerdrake.pm_.c:2160 ../../printerdrake.pm_.c:2163
-#: ../../printerdrake.pm_.c:2164 ../../printerdrake.pm_.c:2165
-#: ../../printerdrake.pm_.c:3175 ../../standalone/drakTermServ_.c:248
-#: ../../standalone/drakbackup_.c:1485 ../../standalone/drakbackup_.c:3530
-#: ../../standalone/drakbug_.c:129 ../../standalone/drakfont_.c:705
+#: ../../printerdrake.pm_.c:2350 ../../printerdrake.pm_.c:2353
+#: ../../printerdrake.pm_.c:2354 ../../printerdrake.pm_.c:2355
+#: ../../printerdrake.pm_.c:3400 ../../standalone/drakTermServ_.c:248
+#: ../../standalone/drakbackup_.c:1560 ../../standalone/drakbackup_.c:4208
+#: ../../standalone/drakbug_.c:130 ../../standalone/drakfont_.c:705
#: ../../standalone/drakfont_.c:1014
msgid "Close"
msgstr "Itxi"
-#: ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2353
msgid "Print option list"
msgstr "Inprimatzeko aukeren zerrenda"
-#: ../../printerdrake.pm_.c:2182
+#: ../../printerdrake.pm_.c:2373
#, fuzzy, c-format
msgid ""
"Your multi-function device was configured automatically to be able to scan. "
@@ -8830,7 +9154,7 @@ msgstr ""
"\n"
"Ez erabili \"scannerdrake\" gailu honekin!"
-#: ../../printerdrake.pm_.c:2202
+#: ../../printerdrake.pm_.c:2394
msgid ""
"Your printer was configured automatically to give you access to the photo "
"card drives from your PC. Now you can access your photo cards using the "
@@ -8843,17 +9167,17 @@ msgid ""
"of the file lists."
msgstr ""
-#: ../../printerdrake.pm_.c:2223 ../../printerdrake.pm_.c:2673
-#: ../../printerdrake.pm_.c:2945
+#: ../../printerdrake.pm_.c:2416 ../../printerdrake.pm_.c:2875
+#: ../../printerdrake.pm_.c:3170
msgid "Reading printer data..."
msgstr "Inprimagailu-datuak irakurtzen..."
-#: ../../printerdrake.pm_.c:2243 ../../printerdrake.pm_.c:2271
-#: ../../printerdrake.pm_.c:2306
+#: ../../printerdrake.pm_.c:2436 ../../printerdrake.pm_.c:2464
+#: ../../printerdrake.pm_.c:2499
msgid "Transfer printer configuration"
msgstr "Transferitu inprimagailu-konfigurazioa"
-#: ../../printerdrake.pm_.c:2244
+#: ../../printerdrake.pm_.c:2437
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -8869,7 +9193,7 @@ msgstr ""
"dira transferituko.\n"
"Ilara guztiak ezin dira transferitu, ondorengo arrazoiak direla eta:\n"
-#: ../../printerdrake.pm_.c:2247
+#: ../../printerdrake.pm_.c:2440
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
@@ -8877,7 +9201,7 @@ msgstr ""
"CUPSek ez ditu onartzen Novell zerbitzarietako inprimagailuak edo datuak "
"libre osatutako komando batean bidaltzen dituztenak.\n"
-#: ../../printerdrake.pm_.c:2249
+#: ../../printerdrake.pm_.c:2442
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
@@ -8885,11 +9209,11 @@ msgstr ""
"PDQk inprimagailu lokalak, urruneko LPD inprimagailuak eta Socket/TCP "
"inprimagailuak soilik onartzen ditu.\n"
-#: ../../printerdrake.pm_.c:2251
+#: ../../printerdrake.pm_.c:2444
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr "LPDk eta LPRng-ek ez dute IPP inprimagailurik onartzen.\n"
-#: ../../printerdrake.pm_.c:2253
+#: ../../printerdrake.pm_.c:2446
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
@@ -8897,7 +9221,7 @@ msgstr ""
"Gainera, programa honen edo \"foomatic-configure\"ren bidez sortu ez diren "
"ilarak ezin dira transferitu."
-#: ../../printerdrake.pm_.c:2254
+#: ../../printerdrake.pm_.c:2447
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
@@ -8907,7 +9231,7 @@ msgstr ""
"Halaber, fabrikatzaileek emandako PPD fitxategiekin edo jatorrizko CUPS "
"kontrolatzaileekin konfiguratutako inprimagailuak ezin dira transferitu."
-#: ../../printerdrake.pm_.c:2255
+#: ../../printerdrake.pm_.c:2448
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
@@ -8917,15 +9241,15 @@ msgstr ""
"Markatu transferitu nahi dituzun inprimagailuak eta sakatu\n"
"\"Transferitu\"."
-#: ../../printerdrake.pm_.c:2258
+#: ../../printerdrake.pm_.c:2451
msgid "Do not transfer printers"
msgstr "Ez transferitu inprimagailuak"
-#: ../../printerdrake.pm_.c:2259 ../../printerdrake.pm_.c:2276
+#: ../../printerdrake.pm_.c:2452 ../../printerdrake.pm_.c:2469
msgid "Transfer"
msgstr "Transferitu"
-#: ../../printerdrake.pm_.c:2272
+#: ../../printerdrake.pm_.c:2465
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -8936,12 +9260,12 @@ msgstr ""
"Sakatu \"Transferitu\" gainidazteko.\n"
"Beste izen bat idatz dezakezu, edo inprimagailu hori saltatu."
-#: ../../printerdrake.pm_.c:2280
+#: ../../printerdrake.pm_.c:2473
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr ""
"Inprimagailu-izenak letrak, zenbakiak eta azpimarra soilik eduki behar ditu"
-#: ../../printerdrake.pm_.c:2285
+#: ../../printerdrake.pm_.c:2478
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
@@ -8950,16 +9274,16 @@ msgstr ""
"\"%s\" inprimagailua badago lehendik ere,\n"
"bere konfigurazioa gainidatzi nahi duzu?"
-#: ../../printerdrake.pm_.c:2293
+#: ../../printerdrake.pm_.c:2486
msgid "New printer name"
msgstr "Inprimagailu-izen berria"
-#: ../../printerdrake.pm_.c:2296
+#: ../../printerdrake.pm_.c:2489
#, c-format
msgid "Transferring %s..."
msgstr "%s transferitzen..."
-#: ../../printerdrake.pm_.c:2307
+#: ../../printerdrake.pm_.c:2500
#, c-format
msgid ""
"You have transferred your former default printer (\"%s\"), Should it be also "
@@ -8968,29 +9292,29 @@ msgstr ""
"Zure lehengo inprimagailu lehenetsia (\"%s\") transferitu duzu, Inprimagailu "
"lehenetsia izan behar du %s inprimatze-sistema berrian ere?"
-#: ../../printerdrake.pm_.c:2316
+#: ../../printerdrake.pm_.c:2510
msgid "Refreshing printer data..."
msgstr "Inprimagailuaren datuak freskatzen..."
-#: ../../printerdrake.pm_.c:2324 ../../printerdrake.pm_.c:2395
-#: ../../printerdrake.pm_.c:2407
+#: ../../printerdrake.pm_.c:2518 ../../printerdrake.pm_.c:2590
+#: ../../printerdrake.pm_.c:2602
msgid "Configuration of a remote printer"
msgstr "Urruneko inprimagailu baten konfigurazioa"
-#: ../../printerdrake.pm_.c:2325
+#: ../../printerdrake.pm_.c:2519
msgid "Starting network..."
msgstr "Sarea abiarazten ..."
-#: ../../printerdrake.pm_.c:2359 ../../printerdrake.pm_.c:2363
-#: ../../printerdrake.pm_.c:2365
+#: ../../printerdrake.pm_.c:2554 ../../printerdrake.pm_.c:2558
+#: ../../printerdrake.pm_.c:2560
msgid "Configure the network now"
msgstr "Konfiguratu sarea orain"
-#: ../../printerdrake.pm_.c:2360
+#: ../../printerdrake.pm_.c:2555
msgid "Network functionality not configured"
msgstr "Sare-funtzionalitatea ez dago konfiguratuta"
-#: ../../printerdrake.pm_.c:2361
+#: ../../printerdrake.pm_.c:2556
msgid ""
"You are going to configure a remote printer. This needs working network "
"access, but your network is not configured yet. If you go on without network "
@@ -9002,11 +9326,11 @@ msgstr ""
"sarea konfiguratu gabe, ezin izango duzu orain konfiguratzen ari zaren "
"inprimagailua erabili. Zer egin nahi duzu?"
-#: ../../printerdrake.pm_.c:2364
+#: ../../printerdrake.pm_.c:2559
msgid "Go on without configuring the network"
msgstr "Jarraitu sarea konfiguratu gabe"
-#: ../../printerdrake.pm_.c:2397
+#: ../../printerdrake.pm_.c:2592
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -9021,7 +9345,7 @@ msgstr ""
"\"Konexioa\" atalean, eta gero konfiguratu inprimagailua, Mandrake Kontrol "
"Zentroan bertan, \"Hardwarea\"/\"Inprimagailua\" atalean."
-#: ../../printerdrake.pm_.c:2398
+#: ../../printerdrake.pm_.c:2593
msgid ""
"The network access was not running and could not be started. Please check "
"your configuration and your hardware. Then try to configure your remote "
@@ -9031,24 +9355,24 @@ msgstr ""
"konfigurazioa eta hardwarea ondo dauden. Gero saiatu berriro urruneko "
"inprimagailua konfiguratzen."
-#: ../../printerdrake.pm_.c:2408
+#: ../../printerdrake.pm_.c:2603
msgid "Restarting printing system..."
msgstr "Inprimatze-sistema berrabiarazten ..."
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2641
msgid "high"
msgstr "handia"
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2641
msgid "paranoid"
msgstr "paranoidea"
-#: ../../printerdrake.pm_.c:2447
+#: ../../printerdrake.pm_.c:2642
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr "Inprimatze-sisteman segurtasun-maila %s instalatzen"
-#: ../../printerdrake.pm_.c:2448
+#: ../../printerdrake.pm_.c:2643
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -9073,11 +9397,11 @@ msgstr ""
"\n"
"Makina honetan konfiguratu nahi duzu inprimaketa?"
-#: ../../printerdrake.pm_.c:2480
+#: ../../printerdrake.pm_.c:2675
msgid "Starting the printing system at boot time"
msgstr "Abioan inprimatze-sistema abiarazi"
-#: ../../printerdrake.pm_.c:2481
+#: ../../printerdrake.pm_.c:2676
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -9098,75 +9422,72 @@ msgstr ""
"\n"
"Inprimatze-sistema automatikoki hastea berriro aktibatu nahi duzu?"
-#: ../../printerdrake.pm_.c:2504 ../../printerdrake.pm_.c:2544
-#: ../../printerdrake.pm_.c:2581 ../../printerdrake.pm_.c:2621
-#: ../../printerdrake.pm_.c:2733
+#: ../../printerdrake.pm_.c:2700 ../../printerdrake.pm_.c:2741
+#: ../../printerdrake.pm_.c:2780 ../../printerdrake.pm_.c:2822
+#: ../../printerdrake.pm_.c:2943
msgid "Checking installed software..."
msgstr "Instalatutako softwarea egiaztatzen..."
-#: ../../printerdrake.pm_.c:2548
+#: ../../printerdrake.pm_.c:2746
msgid "Removing LPRng..."
msgstr "LPRng kentzen..."
-#: ../../printerdrake.pm_.c:2585
+#: ../../printerdrake.pm_.c:2785
msgid "Removing LPD..."
msgstr "LPD kentzen..."
-#: ../../printerdrake.pm_.c:2657
+#: ../../printerdrake.pm_.c:2858
msgid "Select Printer Spooler"
msgstr "Hautatu inprimagailuaren spooler-a"
-#: ../../printerdrake.pm_.c:2658
+#: ../../printerdrake.pm_.c:2859
msgid "Which printing system (spooler) do you want to use?"
msgstr "Zein inprimatze-sistema (spooler) erabili nahi duzu?"
-#: ../../printerdrake.pm_.c:2691
+#: ../../printerdrake.pm_.c:2895
#, c-format
msgid "Configuring printer \"%s\"..."
msgstr "\"%s\" inprimagailua ezartzen..."
-#: ../../printerdrake.pm_.c:2704
+#: ../../printerdrake.pm_.c:2909
msgid "Installing Foomatic..."
msgstr "Foomatic instalatzen ..."
-#: ../../printerdrake.pm_.c:2769 ../../printerdrake.pm_.c:2808
-#: ../../printerdrake.pm_.c:3192 ../../printerdrake.pm_.c:3262
+#: ../../printerdrake.pm_.c:2979 ../../printerdrake.pm_.c:3020
+#: ../../printerdrake.pm_.c:3417 ../../printerdrake.pm_.c:3490
msgid "Printer options"
msgstr "Inprimagailuaren aukerak"
-#: ../../printerdrake.pm_.c:2778
-msgid "Preparing PrinterDrake..."
+#: ../../printerdrake.pm_.c:2989
+#, fuzzy
+msgid "Preparing Printerdrake..."
msgstr "PrinterDrake prestatzen..."
-#: ../../printerdrake.pm_.c:2795 ../../printerdrake.pm_.c:3349
+#: ../../printerdrake.pm_.c:3007 ../../printerdrake.pm_.c:3580
msgid "Configuring applications..."
msgstr "Aplikazioak konfiguratzen..."
-#: ../../printerdrake.pm_.c:2815
+#: ../../printerdrake.pm_.c:3027
msgid "Would you like to configure printing?"
msgstr "Inprimaketa konfiguratu nahi duzu?"
-#: ../../printerdrake.pm_.c:2827
+#: ../../printerdrake.pm_.c:3039
msgid "Printing system: "
msgstr "Inprimatze-sistema: "
-#: ../../printerdrake.pm_.c:2875
-msgid "Printerdrake"
-msgstr "Printerdrake"
-
-#: ../../printerdrake.pm_.c:2879
+#: ../../printerdrake.pm_.c:3099
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; to view information about it; "
"or to make a printer on a remote CUPS server available for Star Office/"
-"OpenOffice.org."
+"OpenOffice.org/GIMP."
msgstr ""
"Ondoko inprimagailuak daude konfiguratuta. Egin klik bikoitza inprimagailu "
"batean ezarpenak aldatzeko, inprimagailua lehenesteko, informazioa ikusteko, "
"edo urruneko CUPS zerbitzari bateko inprimagailu bat Star Office/OpenOffice."
"org-rentzat erabilgarri egiteko."
-#: ../../printerdrake.pm_.c:2880
+#: ../../printerdrake.pm_.c:3100
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; or to view information about "
@@ -9176,28 +9497,28 @@ msgstr ""
"bat lehenesteko edo informazioa ikusteko, egin klik bikoitza inprimagailu "
"batean."
-#: ../../printerdrake.pm_.c:2906
+#: ../../printerdrake.pm_.c:3127
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr "Freskatu inprimagailu-zerrenda (urruneko CUPS inprimagailuak ikusteko)"
-#: ../../printerdrake.pm_.c:2924
+#: ../../printerdrake.pm_.c:3145
msgid "Change the printing system"
msgstr "Aldatu inprimatzeko sistema"
-#: ../../printerdrake.pm_.c:2929 ../../standalone/drakconnect_.c:277
+#: ../../printerdrake.pm_.c:3150 ../../standalone/drakconnect_.c:277
msgid "Normal Mode"
msgstr "Modu normala"
-#: ../../printerdrake.pm_.c:3085 ../../printerdrake.pm_.c:3135
-#: ../../printerdrake.pm_.c:3343
+#: ../../printerdrake.pm_.c:3310 ../../printerdrake.pm_.c:3360
+#: ../../printerdrake.pm_.c:3573
msgid "Do you want to configure another printer?"
msgstr "Beste inprimagailu bat konfiguratu nahi duzu?"
-#: ../../printerdrake.pm_.c:3170
+#: ../../printerdrake.pm_.c:3395
msgid "Modify printer configuration"
msgstr "Aldatu inprimagailuaren konfigurazioa"
-#: ../../printerdrake.pm_.c:3172
+#: ../../printerdrake.pm_.c:3397
#, c-format
msgid ""
"Printer %s\n"
@@ -9206,104 +9527,110 @@ msgstr ""
"%s inprimagailua\n"
"Zer da inprimagailu honetan aldatu nahi duzuna?"
-#: ../../printerdrake.pm_.c:3176
+#: ../../printerdrake.pm_.c:3401
msgid "Do it!"
msgstr "Egin!"
-#: ../../printerdrake.pm_.c:3181 ../../printerdrake.pm_.c:3236
+#: ../../printerdrake.pm_.c:3406 ../../printerdrake.pm_.c:3461
msgid "Printer connection type"
msgstr "Inprimagailuaren konexio-mota"
-#: ../../printerdrake.pm_.c:3182 ../../printerdrake.pm_.c:3240
+#: ../../printerdrake.pm_.c:3407 ../../printerdrake.pm_.c:3465
msgid "Printer name, description, location"
msgstr "Inprimagailuaren izena, azalpena, kokalekua"
-#: ../../printerdrake.pm_.c:3184 ../../printerdrake.pm_.c:3255
+#: ../../printerdrake.pm_.c:3409 ../../printerdrake.pm_.c:3483
msgid "Printer manufacturer, model, driver"
msgstr "Inprimagailuaren fabrikatzailea, modeloa, kontrolatzailea"
-#: ../../printerdrake.pm_.c:3185 ../../printerdrake.pm_.c:3256
+#: ../../printerdrake.pm_.c:3410 ../../printerdrake.pm_.c:3484
msgid "Printer manufacturer, model"
msgstr "Inprimagailuaren fabrikatzailea, modeloa"
-#: ../../printerdrake.pm_.c:3194 ../../printerdrake.pm_.c:3266
+#: ../../printerdrake.pm_.c:3419 ../../printerdrake.pm_.c:3494
msgid "Set this printer as the default"
msgstr "Ezarri inprimagailu hau lehenetsi gisa"
-#: ../../printerdrake.pm_.c:3196 ../../printerdrake.pm_.c:3271
-msgid "Add this printer to Star Office/OpenOffice.org"
-msgstr "Gehitu inprimagailu hau Star Office/OpenOffice.org-n"
+#: ../../printerdrake.pm_.c:3421 ../../printerdrake.pm_.c:3499
+msgid "Add this printer to Star Office/OpenOffice.org/GIMP"
+msgstr "Gehitu inprimagailu hau Star Office/OpenOffice.org/GIMP-n"
-#: ../../printerdrake.pm_.c:3197 ../../printerdrake.pm_.c:3280
-msgid "Remove this printer from Star Office/OpenOffice.org"
-msgstr "Kendu inprimagailu hau Star Office/OpenOffice.org-tik"
+#: ../../printerdrake.pm_.c:3422 ../../printerdrake.pm_.c:3508
+msgid "Remove this printer from Star Office/OpenOffice.org/GIMP"
+msgstr "Kendu inprimagailu hau Star Office/OpenOffice.org/GIMP-tik"
-#: ../../printerdrake.pm_.c:3198 ../../printerdrake.pm_.c:3289
+#: ../../printerdrake.pm_.c:3423 ../../printerdrake.pm_.c:3517
msgid "Print test pages"
msgstr "Inprimatu proba-orriak"
-#: ../../printerdrake.pm_.c:3199 ../../printerdrake.pm_.c:3291
+#: ../../printerdrake.pm_.c:3424 ../../printerdrake.pm_.c:3519
msgid "Know how to use this printer"
msgstr "Ikasi inprimagailua erabiltzen"
-#: ../../printerdrake.pm_.c:3201 ../../printerdrake.pm_.c:3293
+#: ../../printerdrake.pm_.c:3426 ../../printerdrake.pm_.c:3521
msgid "Remove printer"
msgstr "Kendu inprimagailua"
-#: ../../printerdrake.pm_.c:3245
+#: ../../printerdrake.pm_.c:3472
#, c-format
msgid "Removing old printer \"%s\"..."
msgstr "\"%s\" inprimagailu zaharra ezabatzen..."
-#: ../../printerdrake.pm_.c:3269
+#: ../../printerdrake.pm_.c:3497
msgid "Default printer"
msgstr "Inprimagailu lehenetsia"
-#: ../../printerdrake.pm_.c:3270
+#: ../../printerdrake.pm_.c:3498
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr "\"%s\" inprimagailua lehenetsi gisa ezarri da orain."
-#: ../../printerdrake.pm_.c:3274 ../../printerdrake.pm_.c:3277
-msgid "Adding printer to Star Office/OpenOffice.org"
-msgstr "Star Office/OpenOffice.org-n inprimagailua gehitzen"
+#: ../../printerdrake.pm_.c:3502 ../../printerdrake.pm_.c:3505
+msgid "Adding printer to Star Office/OpenOffice.org/GIMP"
+msgstr "Star Office/OpenOffice.org/GIMP-n inprimagailua gehitzen"
-#: ../../printerdrake.pm_.c:3275
+#: ../../printerdrake.pm_.c:3503
#, c-format
msgid ""
-"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
+"The printer \"%s\" was successfully added to Star Office/OpenOffice.org/GIMP."
msgstr ""
-"\"%s\" inprimagailua behar bezala gehitu da Star Office/OpenOffice.org-n."
+"\"%s\" inprimagailua behar bezala gehitu da Star Office/OpenOffice.org/GIMP-"
+"n."
-#: ../../printerdrake.pm_.c:3278
+#: ../../printerdrake.pm_.c:3506
#, c-format
-msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
+msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org/GIMP."
msgstr ""
-"Huts egin du \"%s\" inprimagailua Star Office/OpenOffice.org-n gehitzean."
+"Huts egin du \"%s\" inprimagailua Star Office/OpenOffice.org/GIMP-n "
+"gehitzean."
-#: ../../printerdrake.pm_.c:3283 ../../printerdrake.pm_.c:3286
-msgid "Removing printer from Star Office/OpenOffice.org"
-msgstr "Inprimagailua Star Office/OpenOffice.org-tik kentzen"
+#: ../../printerdrake.pm_.c:3511 ../../printerdrake.pm_.c:3514
+msgid "Removing printer from Star Office/OpenOffice.org/GIMP"
+msgstr "Inprimagailua Star Office/OpenOffice.org/GIMP-tik kentzen"
-#: ../../printerdrake.pm_.c:3284
+#: ../../printerdrake.pm_.c:3512
#, c-format
msgid ""
-"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
+"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org/"
+"GIMP."
msgstr ""
-"\"%s\" inprimagailua behar bezala kendu da Star Office/OpenOffice.org-tik."
+"\"%s\" inprimagailua behar bezala kendu da Star Office/OpenOffice.org/GIMP-"
+"tik."
-#: ../../printerdrake.pm_.c:3287
+#: ../../printerdrake.pm_.c:3515
#, c-format
-msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
+msgid ""
+"Failed to remove the printer \"%s\" from Star Office/OpenOffice.org/GIMP."
msgstr ""
-"Huts egin du \"%s\" inprimagailua Star Office/OpenOffice.org-tik kentzean."
+"Huts egin du \"%s\" inprimagailua Star Office/OpenOffice.org/GIMP-tik "
+"kentzean."
-#: ../../printerdrake.pm_.c:3295
+#: ../../printerdrake.pm_.c:3523
#, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr "\"%s\" inprimagailua kendu nahi duzu?"
-#: ../../printerdrake.pm_.c:3297
+#: ../../printerdrake.pm_.c:3527
#, c-format
msgid "Removing printer \"%s\"..."
msgstr "\"%s\" inprimagailua ezabatzen..."
@@ -9358,9 +9685,8 @@ msgstr ""
"Utzi hutsik ez baduzu ftp proxy-rik nahi"
#: ../../proxy.pm_.c:65
-#, fuzzy
msgid "Url should begin with 'ftp:' or 'http:'"
-msgstr "URLaren hasieran 'http:' jarri behar du"
+msgstr "URLaren hasieran 'ftp:' edo 'http:' egon behar da"
#: ../../proxy.pm_.c:79
msgid ""
@@ -9720,7 +10046,7 @@ msgstr "Internet"
msgid "File sharing"
msgstr "Fitxategi-konpartitzea"
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1669
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1744
msgid "System"
msgstr "Sistema"
@@ -9773,15 +10099,15 @@ msgstr "Hasi"
msgid "Stop"
msgstr "Gelditu"
-#: ../../share/advertising/00-thanks.pl_.c:9
-msgid "Thank you for choosing Mandrake Linux 8.2"
-msgstr "Eskerrik asko Mandrake Linux 8.2 aukeratzeagatik"
+#: ../../share/advertising/01-thanks.pl_.c:9
+msgid "Thank you for choosing Mandrake Linux 9.0"
+msgstr "Eskerrik asko Mandrake Linux 9.0 aukeratzeagatik"
-#: ../../share/advertising/00-thanks.pl_.c:10
+#: ../../share/advertising/01-thanks.pl_.c:10
msgid "Welcome to the Open Source world"
msgstr "Ongi etorri iturburu irekiaren mundura"
-#: ../../share/advertising/00-thanks.pl_.c:11
+#: ../../share/advertising/01-thanks.pl_.c:11
msgid ""
"The success of MandrakeSoft is based upon the principle of Free Software. "
"Your new operating system is the result of collaborative work on the part of "
@@ -9791,206 +10117,237 @@ msgstr ""
"sistema eragile berria mundu osoko Linux komunitatearen elkarlanaren emaitza "
"da"
-#: ../../share/advertising/01-gnu.pl_.c:9
-msgid "Join the Free Software world"
+#: ../../share/advertising/02-community.pl_.c:9
+msgid "Get involved in the Free Software world"
msgstr "Sar zaitez software librearen munduan"
-#: ../../share/advertising/01-gnu.pl_.c:10
+#: ../../share/advertising/02-community.pl_.c:10
+msgid "Want to know more about the Open Source community?"
+msgstr ""
+
+#: ../../share/advertising/02-community.pl_.c:11
msgid ""
-"Get to know the Open Source community and become a member. Learn, teach, and "
-"help others by joining the many discussion forums that you will find in our "
-"\"Community\" webpages"
+"To share your own knowledge and help build Linux tools, join the discussions "
+"forum you'll find on our \"Community\" webpages"
msgstr ""
"Ezagutu iturburu irekiaren komunitatea eta egin zaitez partaide. Sartu "
"eztabaida-taldeetan \"Komunitatearen\" web orrien bidez eta ikasi, irakatsi "
"eta lagundu beste batzuei."
-#: ../../share/advertising/02-internet.pl_.c:9
-msgid "Internet and Messaging"
-msgstr "Internet eta mezularitza"
+#: ../../share/advertising/03-internet.pl_.c:9
+#, fuzzy
+msgid "Get the most from the Internet"
+msgstr "Konektatu Internetekin"
-#: ../../share/advertising/02-internet.pl_.c:10
+#: ../../share/advertising/03-internet.pl_.c:10
msgid ""
-"Mandrake Linux 8.2 provides the best software to access everything the "
-"Internet has to offer: Surf the web & view animations with Mozilla and "
-"Konqueror, exchange email & organize your personal information with "
-"Evolution and Kmail, and much more"
+"Mandrake Linux 9.0 has selected the best software for you. Surf the Web and "
+"view animations with Mozilla and Konqueror, or read your mail and handle "
+"your personal information with Evolution and Kmail"
msgstr ""
-"Mandrake Linux 8.2k software-aukera onenak eskaintzen dizkizu Internetek "
+"Mandrake Linux 9.0k software-aukera onenak eskaintzen dizkizu Internetek "
"eman lezakeen guztia eskura dezazun. Murgildu amaraunean eta ikusi "
"animazioak Mozilla eta Konqueror-ekin, trukatu mezuak eta antolatu zure "
"informazio pertsonala Evolution eta Kmail-ekin, eta askoz ere gehiago"
-#: ../../share/advertising/03-graphic.pl_.c:9
-msgid "Multimedia and Graphics"
-msgstr "Multimedia eta grafikoak"
+#: ../../share/advertising/04-multimedia.pl_.c:9
+msgid "Discover the most up-to-date graphics and multimedia tools!"
+msgstr ""
-#: ../../share/advertising/03-graphic.pl_.c:10
+#: ../../share/advertising/04-multimedia.pl_.c:10
+msgid "Push multimedia to its limits!"
+msgstr ""
+
+#: ../../share/advertising/04-multimedia.pl_.c:11
+#, fuzzy
msgid ""
-"Mandrake Linux 8.2 lets you push your multimedia computer to its limits! Use "
-"the latest software to play music and audio files, edit and organize your "
-"images and photos, watch TV and videos, and much more"
+"Mandrake Linux 9.0 enables you to use the very latest software to play audio "
+"files, edit and handle your images or photos, and play videos"
msgstr ""
"Mandrake Linux 8.2ekin zure multimedia ordenagailua mugaraino eramango duzu! "
"Erabili audio-fitxategiak erreproduzitzeko, irudiak eta argazkiak editatu "
"eta manipulatzeko eta TB eta bideoak ikusteko eta beste gauza askotarako "
"azken softwarea "
-#: ../../share/advertising/04-develop.pl_.c:9
-msgid "Development"
-msgstr "Garapena"
+#: ../../share/advertising/05-games.pl_.c:9
+msgid "Games"
+msgstr "Jokoak"
-#: ../../share/advertising/04-develop.pl_.c:10
+#: ../../share/advertising/05-games.pl_.c:10
+#, fuzzy
msgid ""
-"Mandrake Linux 8.2 is the ultimate development platform. Discover the power "
-"of the GNU gcc compiler as well as the best Open Source development "
-"environments"
+"Mandrake Linux 9.0 provides the best Open Source games - arcade, action, "
+"cards, sports, strategy..."
msgstr ""
-"Mandrake Linux 8.2 garapen-plataforma ezin hobea da. Ezagutu GNU gcc "
-"konpilatzailearen ahalmen osoa eta iturburu irekiko garapen-ingurune onenak"
+"Mandrake Linux 8.2k iturburu irekiko jokorik onenak eskaintzen ditu - makina-"
+"jokoak, kiroletakoak, estrategiakoak, ..."
-#: ../../share/advertising/05-contcenter.pl_.c:9
-#: ../../standalone/drakbug_.c:69
+#: ../../share/advertising/06-mcc.pl_.c:9 ../../standalone/drakbug_.c:69
msgid "Mandrake Control Center"
msgstr "Mandrake-ren Kontrol Zentroa"
-#: ../../share/advertising/05-contcenter.pl_.c:10
+#: ../../share/advertising/06-mcc.pl_.c:10
+#, fuzzy
msgid ""
-"The Mandrake Linux 8.2 Control Center is a one-stop location for fully "
-"customizing and configuring your Mandrake system"
+"Mandrake Linux 9.0 provides a powerful tool to fully customize and configure "
+"your machine"
msgstr ""
"Mandrake Linux 8.2ren Kontrol Zentroak leku bakarretik zure Mandrake sistema "
"erabat konfiguratu eta pertsonalizatzeko aukera ematen dizu"
-#: ../../share/advertising/06-user.pl_.c:9
+#: ../../share/advertising/07-desktop.pl_.c:9
msgid "User interfaces"
msgstr "Erabiltzaile-interfazeak"
-#: ../../share/advertising/06-user.pl_.c:10
+#: ../../share/advertising/07-desktop.pl_.c:10
msgid ""
-"Mandrake Linux 8.2 provides 11 different graphical desktop environments and "
-"window managers to choose from including GNOME 1.4, KDE 2.2.2, Window Maker "
-"0.8, and the rest"
+"Mandrake Linux 9.0 provides 11 user interfaces which can be fully modified: "
+"KDE 3, Gnome 2, WindowMaker..."
msgstr ""
-"Mandrake Linux 8.2k 11 mahaigaineko ingurune grafiko eta leiho-kudeatzaile "
-"desberdin ematen ditu aukeran, horien artean, GNOME 1.4, KDE 2.2.2, Window "
-"Maker 0.8, eta abar"
-#: ../../share/advertising/07-server.pl_.c:9
-msgid "Server Software"
-msgstr "Zerbitzari-softwarea"
+#: ../../share/advertising/08-development.pl_.c:9
+#, fuzzy
+msgid "Development simplified"
+msgstr "Garapena"
+
+#: ../../share/advertising/08-development.pl_.c:10
+msgid "Mandrake Linux 9.0 is the ultimate development platform"
+msgstr ""
+
+#: ../../share/advertising/08-development.pl_.c:11
+#, fuzzy
+msgid ""
+"Use the full power of the GNU gcc 3 compiler as well as the best Open Source "
+"development environments"
+msgstr ""
+"Mandrake Linux 8.2 garapen-plataforma ezin hobea da. Ezagutu GNU gcc "
+"konpilatzailearen ahalmen osoa eta iturburu irekiko garapen-ingurune onenak"
-#: ../../share/advertising/07-server.pl_.c:10
+#: ../../share/advertising/09-server.pl_.c:9
+msgid "Turn your machine into a reliable server"
+msgstr ""
+
+#: ../../share/advertising/09-server.pl_.c:10
+#, fuzzy
msgid ""
-"Transform your machine into a powerful server with just a few clicks of the "
-"mouse: Web server, email, firewall, router, file and print server, ..."
+"Transform your machine into a powerful server in a few clicks of your mouse: "
+"Web server, mail, firewall, router, file and print server..."
msgstr ""
"Bihur ezazu zure makina zerbitzari ahaltsu, saguaren klik gutxi batzuk "
"eginez: Web zerbitzaria, posta, suebakia, bidatzailea, fitxategi- eta "
"inprimaketa-zerbitzaria,..."
-#: ../../share/advertising/08-games.pl_.c:9
-msgid "Games"
-msgstr "Jokoak"
+#: ../../share/advertising/10-mnf.pl_.c:9
+msgid "Optimize your security"
+msgstr ""
-#: ../../share/advertising/08-games.pl_.c:10
+#: ../../share/advertising/10-mnf.pl_.c:10
msgid ""
-"Mandrake Linux 8.2 provides the best Open Source games - arcade, action, "
-"cards, sports, strategy, ..."
+"The MandrakeSecurity range includes the Multi Network Firewall product (M.N."
+"F.)"
+msgstr ""
+
+#: ../../share/advertising/10-mnf.pl_.c:11
+msgid ""
+"This firewall product includes network features which allow you to fulfill "
+"all your security needs"
msgstr ""
-"Mandrake Linux 8.2k iturburu irekiko jokorik onenak eskaintzen ditu - makina-"
-"jokoak, kiroletakoak, estrategiakoak, ..."
-#: ../../share/advertising/09-MDKcampus.pl_.c:9
-msgid "MandrakeCampus"
-msgstr "MandrakeCampus"
+#: ../../share/advertising/10-mnf.pl_.c:12
+msgid "This product is available on MandrakeStore website"
+msgstr ""
-#: ../../share/advertising/09-MDKcampus.pl_.c:10
+#: ../../share/advertising/11-mdkstore.pl_.c:9
+msgid "The official MandrakeSoft store"
+msgstr ""
+
+#: ../../share/advertising/11-mdkstore.pl_.c:10
+#, fuzzy
msgid ""
-"Would you like to learn Linux simply, quickly, and for free? MandrakeSoft "
-"provides free Linux training, as well as a way to test your progress, at "
-"MandrakeCampus -- our online training center"
+"Our full range of Linux solutions, as well as special offers on products and "
+"'goodies', are available online at our e-store"
msgstr ""
-"Linux erabiltzen ikasi nahi duzu erraz, bizkor, eta doan? MandrakeSoft-ek "
-"Linux ikasteko doako zerbitzua eskaintzen dugu, zure aurrerapena neurtuz, "
-"MandrakeCampus lineako trebakuntza-zentroaren bidez"
+"Gure denda elektronikoan eskuragai dituzu gure Linux soluzioen aukera "
+"zabala, produktuei buruzko eskaintza bereziak eta bestelako 'gutiziak'"
-#: ../../share/advertising/10-MDKexpert.pl_.c:9
-msgid "MandrakeExpert"
-msgstr "MandrakeExpert"
+#: ../../share/advertising/12-mdkstore.pl_.c:9
+msgid "Strategic partners"
+msgstr ""
-#: ../../share/advertising/10-MDKexpert.pl_.c:10
+#: ../../share/advertising/12-mdkstore.pl_.c:10
msgid ""
-"Quality support from the Linux Community, and from MandrakeSoft, is just "
-"around the corner. And if you're already a Linux veteran, become an \"Expert"
-"\" and share your knowledge at our support website"
+"MandrakeSoft works alongside a selection of companies offering professional "
+"solutions compatible with Mandrake Linux; a list of these partners is "
+"available on the MandrakeStore"
msgstr ""
-"Kalitatezko laguntza-zerbitzua eskaintzen dute Linux komunitateak eta "
-"MandrakeSoft-ek, eta hortxe bertan duzu. Linux-en beteranoa bazara, egin "
-"zaitez \"Aditu\", eta konpartitu zure jakituria eta gure laguntzako web "
-"gunea "
-#: ../../share/advertising/11-consul.pl_.c:9
-msgid "MandrakeConsulting"
-msgstr "MandrakeConsulting"
+#: ../../share/advertising/13-mdkcampus.pl_.c:9
+msgid "Discover MandrakeSoft's training catalogue Linux-Campus"
+msgstr ""
-#: ../../share/advertising/11-consul.pl_.c:10
+#: ../../share/advertising/13-mdkcampus.pl_.c:10
msgid ""
-"For all of your IT projects, our consultants are ready to analyze your "
-"requirements and offer a customized solution. Benefit from MandrakeSoft's "
-"vast experience as a Linux producer to provide a true IT alternative for "
-"your business organization"
+"The training program has been create to respond to the needs of both users "
+"and experts (Network and System administrations)"
msgstr ""
-"Zure IT proiektuetarako, hor dituzu gure aholkulariak, zure premiak ulertu "
-"eta konponbide pertsonalizatua emateko prest. MandrakeSoft-ek, Linux ekoizle "
-"gisa duen esperientzia handiarekin, benetako IT alternatiba ematen du "
-"enpresa-antolamendurako"
-#: ../../share/advertising/12-MDKstore.pl_.c:9
-msgid "MandrakeStore"
-msgstr "MandrakeStore"
+#: ../../share/advertising/13-mdkcampus.pl_.c:11
+msgid "Certify yourself on Linux"
+msgstr ""
-#: ../../share/advertising/12-MDKstore.pl_.c:10
+#: ../../share/advertising/13-mdkcampus.pl_.c:12
msgid ""
-"A full range of Linux solutions, as well as special offers on products and "
-"'goodies', are available online at our e-store"
+"Whether you choose to teach yourself online or via our network of training "
+"partners, the Linux-Campus catalogue prepares you for the acknowledged LPI "
+"certification program (worldwide professional technical certification)"
msgstr ""
-"Gure denda elektronikoan eskuragai dituzu gure Linux soluzioen aukera "
-"zabala, produktuei buruzko eskaintza bereziak eta bestelako 'gutiziak'"
-#: ../../share/advertising/13-Nvert.pl_.c:9
+#: ../../share/advertising/14-mdkexpert.pl_.c:9
+#, fuzzy
+msgid "Become a MandrakeExpert"
+msgstr "MandrakeExpert"
+
+#: ../../share/advertising/14-mdkexpert.pl_.c:10
msgid ""
-"For more information on MandrakeSoft's Professional Services and commercial "
-"offerings, please see the following web page:"
+"Find the solutions to your problems via MandrakeSoft's online support "
+"platform"
msgstr ""
-"MandrakeSoft-en Zerbitzu Profesionalei eta eskaintza komertzialei buruzko "
-"informazioa nahi baduzu, ikus web orri hau:"
-#: ../../share/advertising/13-Nvert.pl_.c:11
-msgid "http://www.mandrakesoft.com/sales/contact"
-msgstr "http://www.mandrakesoft.com/sales/contact"
+#: ../../share/advertising/14-mdkexpert.pl_.c:11
+msgid ""
+"Join the MandrakeSoft support teams and the Linux Community online to share "
+"your knowledge and help others by becoming a recognized Expert on the online "
+"technical support website:"
+msgstr ""
-#: ../../standalone.pm_.c:40
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:9
+#, fuzzy
+msgid "MandrakeExpert Corporate"
+msgstr "MandrakeExpert"
+
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:10
+msgid "An online platform to respond to company's specific support needs"
+msgstr ""
+
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:11
+msgid ""
+"All incidents will be followed up by a single qualified MandrakeSoft "
+"technical expert."
+msgstr ""
+
+#: ../../standalone.pm_.c:41
msgid "Installing packages..."
msgstr "Paketeak instalatzen..."
-#: ../../standalone/XFdrake_.c:143
+#: ../../standalone/XFdrake_.c:145
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "Amaitu saioa eta, ondoren, sakatu Ktrl-Alt-Atzera"
-#: ../../standalone/XFdrake_.c:147
+#: ../../standalone/XFdrake_.c:149
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "Hasi berriro saioa %s(e)n aldaketak aktibatzeko"
-#: ../../standalone/diskdrake_.c:81
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I'll try to go on blanking bad partitions"
-msgstr ""
-"Ezin dut zure partizio-taula irakurri, hondatuegia dago :(\n"
-"Partizio txarrak garbitzen saiatuko naiz"
-
#: ../../standalone/drakTermServ_.c:188
msgid "Mandrake Terminal Server Configuration"
msgstr "Mandrake Terminal Zerbitzariaren Ezarpena"
@@ -10027,12 +10384,13 @@ msgstr "Gehitu/Ezabatu erabiltzaileak"
msgid "Add/Del Clients"
msgstr "Gehitu/Ezabatu Bezeroak"
-#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3282
-#: ../../standalone/drakbackup_.c:3315 ../../standalone/drakbackup_.c:3341
-#: ../../standalone/drakbackup_.c:3368 ../../standalone/drakbackup_.c:3395
-#: ../../standalone/drakbackup_.c:3434 ../../standalone/drakbackup_.c:3455
-#: ../../standalone/drakbackup_.c:3482 ../../standalone/drakbackup_.c:3508
-#: ../../standalone/drakbackup_.c:3533 ../../standalone/drakfont_.c:700
+#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3930
+#: ../../standalone/drakbackup_.c:3963 ../../standalone/drakbackup_.c:3989
+#: ../../standalone/drakbackup_.c:4016 ../../standalone/drakbackup_.c:4043
+#: ../../standalone/drakbackup_.c:4082 ../../standalone/drakbackup_.c:4103
+#: ../../standalone/drakbackup_.c:4130 ../../standalone/drakbackup_.c:4160
+#: ../../standalone/drakbackup_.c:4186 ../../standalone/drakbackup_.c:4211
+#: ../../standalone/drakfont_.c:700
msgid "Help"
msgstr "Laguntza"
@@ -10122,9 +10480,8 @@ msgid "Etherboot ISO image is %s"
msgstr "Etherboot ISO irudia %s da"
#: ../../standalone/drakTermServ_.c:966
-#, fuzzy
msgid "Something went wrong! - Is mkisofs installed?"
-msgstr "Zerbaitek hutsegin du!"
+msgstr "Zerbaitek hutsegin du! - mkisofs instalatuta dago?"
#: ../../standalone/drakTermServ_.c:985
msgid "Need to create /etc/dhcpd.conf first!"
@@ -10198,8 +10555,8 @@ msgstr ""
"\n"
"Auto-instalazioko parametroak ezkerreko sekzioetan daude erabilgarri"
-#: ../../standalone/drakautoinst_.c:239 ../../standalone/drakgw_.c:548
-#: ../../standalone/scannerdrake_.c:105
+#: ../../standalone/drakautoinst_.c:239 ../../standalone/drakgw_.c:484
+#: ../../standalone/scannerdrake_.c:119
msgid "Congratulations!"
msgstr "Zorionak!"
@@ -10223,20 +10580,24 @@ msgstr "Gehitu elementu bat"
msgid "Remove the last item"
msgstr "Kendu azken elementua"
-#: ../../standalone/drakbackup_.c:625
+#: ../../standalone/drakbackup_.c:619
msgid "Cron not available yet as non-root"
-msgstr ""
+msgstr "Cron ezin du oraindik erabili root-ek ez bestek"
-#: ../../standalone/drakbackup_.c:731
+#: ../../standalone/drakbackup_.c:725
msgid "WARNING"
-msgstr ""
+msgstr "ADI"
-#: ../../standalone/drakbackup_.c:732
+#: ../../standalone/drakbackup_.c:726
#, fuzzy
msgid "FATAL"
msgstr "FAT"
-#: ../../standalone/drakbackup_.c:744
+#: ../../standalone/drakbackup_.c:727
+msgid "INFO"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:739
msgid ""
"\n"
" DrakBackup Report \n"
@@ -10246,7 +10607,7 @@ msgstr ""
" DrakBackup-en berri-ematea \n"
"\n"
-#: ../../standalone/drakbackup_.c:745
+#: ../../standalone/drakbackup_.c:740
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -10258,7 +10619,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:749
+#: ../../standalone/drakbackup_.c:744
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -10270,13 +10631,19 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:770 ../../standalone/drakbackup_.c:840
-#: ../../standalone/drakbackup_.c:894
-#, fuzzy
+#: ../../standalone/drakbackup_.c:765 ../../standalone/drakbackup_.c:835
+#: ../../standalone/drakbackup_.c:889
msgid "Total progess"
-msgstr "progresioa guztira"
+msgstr "Aurrerapen guztia"
-#: ../../standalone/drakbackup_.c:822
+#: ../../standalone/drakbackup_.c:788
+msgid ""
+"Sorry, perl-Expect is not installed/enabled. To use\n"
+"this feature, install perl-Expect and comment lines 772-774,\n"
+" as well as 788,789. Then uncomment line 787."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:817
#, c-format
msgid ""
"%s exists, delete?\n"
@@ -10285,16 +10652,41 @@ msgid ""
" need to purge the entry from authorized_keys on the server."
msgstr ""
-#: ../../standalone/drakbackup_.c:831
+#: ../../standalone/drakbackup_.c:826
msgid "This may take a moment to generate the keys."
-msgstr ""
+msgstr "Honek giltzak sortzeko denbora tarte bat behar du."
-#: ../../standalone/drakbackup_.c:838
+#: ../../standalone/drakbackup_.c:833
#, c-format
msgid "ERROR: Cannot spawn %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:865
+#: ../../standalone/drakbackup_.c:850
+#, c-format
+msgid "No password prompt on %s at port %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:851
+#, fuzzy, c-format
+msgid "Bad password on %s"
+msgstr "Pasahitzik ez"
+
+#: ../../standalone/drakbackup_.c:852
+#, c-format
+msgid "Permission denied transferring %s to %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:853
+#, fuzzy, c-format
+msgid "Can't find %s on %s"
+msgstr "Ezin da %s ireki: %s\n"
+
+#: ../../standalone/drakbackup_.c:856
+#, c-format
+msgid "%s not responding"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:860
#, c-format
msgid ""
"Transfer successful\n"
@@ -10305,60 +10697,65 @@ msgid ""
"without being prompted for a password."
msgstr ""
-#: ../../standalone/drakbackup_.c:908
+#: ../../standalone/drakbackup_.c:903
msgid "WebDAV remote site already in sync!"
-msgstr ""
+msgstr "Urruneko WebDAV gunea dagoeneko sinkronizatuta!"
-#: ../../standalone/drakbackup_.c:912
+#: ../../standalone/drakbackup_.c:907
msgid "WebDAV transfer failed!"
-msgstr ""
+msgstr "WebDAV transferentziak hutsegin du!"
-#: ../../standalone/drakbackup_.c:934
+#: ../../standalone/drakbackup_.c:928
msgid "No CDR/DVDR in drive!"
-msgstr ""
+msgstr "Unitatean ez dago CDR/DVDR!"
-#: ../../standalone/drakbackup_.c:938
+#: ../../standalone/drakbackup_.c:932
msgid "Does not appear to be recordable media!"
-msgstr ""
+msgstr "Ez dirudi euskarri idazgarria denik!"
-#: ../../standalone/drakbackup_.c:942
+#: ../../standalone/drakbackup_.c:936
msgid "Not erasable media!"
-msgstr ""
+msgstr "Ez da euskarri ezabagarria!"
-#: ../../standalone/drakbackup_.c:981
+#: ../../standalone/drakbackup_.c:975
msgid "This may take a moment to erase the media."
-msgstr ""
+msgstr "Euskarria ezabatzeak denbora tarte bat har dezake."
-#: ../../standalone/drakbackup_.c:1045
+#: ../../standalone/drakbackup_.c:1060
msgid "Permission problem accessing CD."
msgstr ""
-#: ../../standalone/drakbackup_.c:1144 ../../standalone/drakbackup_.c:1193
+#: ../../standalone/drakbackup_.c:1087
+#, c-format
+msgid "No tape in %s!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1199 ../../standalone/drakbackup_.c:1248
msgid "Backup system files..."
msgstr "Sistema-fitxategien babeskopia"
-#: ../../standalone/drakbackup_.c:1194 ../../standalone/drakbackup_.c:1261
+#: ../../standalone/drakbackup_.c:1249 ../../standalone/drakbackup_.c:1316
msgid "Hard Disk Backup files..."
msgstr "Disko gogorraren babeskopia fitxategiak... "
-#: ../../standalone/drakbackup_.c:1206
+#: ../../standalone/drakbackup_.c:1261
msgid "Backup User files..."
msgstr "Erabiltzaile-fitxategien babeskopia... "
-#: ../../standalone/drakbackup_.c:1207
+#: ../../standalone/drakbackup_.c:1262
msgid "Hard Disk Backup Progress..."
msgstr "Disko gogorraren babeskopia egiten..."
-#: ../../standalone/drakbackup_.c:1260
+#: ../../standalone/drakbackup_.c:1315
msgid "Backup Other files..."
msgstr "Beste fitxategi batzuen babeskopia... "
-#: ../../standalone/drakbackup_.c:1266
+#: ../../standalone/drakbackup_.c:1321
#, fuzzy
msgid "No changes to backup!"
msgstr "Erabili zinta babeskopia egiteko"
-#: ../../standalone/drakbackup_.c:1282 ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1337 ../../standalone/drakbackup_.c:1360
#, c-format
msgid ""
"\n"
@@ -10366,16 +10763,16 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1289
+#: ../../standalone/drakbackup_.c:1344
#, fuzzy, c-format
msgid ""
-"file list sent by FTP : %s\n"
+"file list sent by FTP: %s\n"
" "
msgstr ""
"FTPk bidalitako fitxategi-zerrenda: %s\n"
" "
-#: ../../standalone/drakbackup_.c:1292
+#: ../../standalone/drakbackup_.c:1347
#, fuzzy
msgid ""
"\n"
@@ -10386,38 +10783,38 @@ msgstr ""
" FTP konexio-arazoa: zure babeskopien fitxategiak ezin izan dira bidali FTP "
"bidez.\n"
-#: ../../standalone/drakbackup_.c:1310
+#: ../../standalone/drakbackup_.c:1365
msgid ""
"\n"
"Drakbackup activities via CD:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1315
+#: ../../standalone/drakbackup_.c:1370
msgid ""
"\n"
"Drakbackup activities via tape:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1324
+#: ../../standalone/drakbackup_.c:1379
msgid " Error during mail sending. \n"
msgstr " Errorea posta bidaltzean. \n"
-#: ../../standalone/drakbackup_.c:1346
+#: ../../standalone/drakbackup_.c:1404
msgid "Can't create catalog!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1459 ../../standalone/drakbackup_.c:1470
-#: ../../standalone/drakbackup_.c:1481 ../../standalone/drakfont_.c:1004
+#: ../../standalone/drakbackup_.c:1517 ../../standalone/drakbackup_.c:1528
+#: ../../standalone/drakfont_.c:1004
msgid "File Selection"
msgstr "Fitxategi-hautapena"
-#: ../../standalone/drakbackup_.c:1486
+#: ../../standalone/drakbackup_.c:1556
msgid "Select the files or directories and click on 'Add'"
msgstr "Hautatu fitxategiak edo direktorioak eta egin klik 'Gehitu'n"
-#: ../../standalone/drakbackup_.c:1525
+#: ../../standalone/drakbackup_.c:1600
msgid ""
"\n"
"Please check all options that you need.\n"
@@ -10425,27 +10822,27 @@ msgstr ""
"\n"
"Hautatu behar dituzun aukera guztiak.\n"
-#: ../../standalone/drakbackup_.c:1526
+#: ../../standalone/drakbackup_.c:1601
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
"Aukera horiek /etc direktorioko fitxategi guztiak kopiatu eta leheneratu "
"ditzakete.\n"
-#: ../../standalone/drakbackup_.c:1527
+#: ../../standalone/drakbackup_.c:1602
#, fuzzy
msgid "Backup your System files. (/etc directory)"
msgstr "Sistema-fitxategien babeskopia. ( /etc direktorioa )"
-#: ../../standalone/drakbackup_.c:1528
+#: ../../standalone/drakbackup_.c:1603
msgid "Use incremental backup (do not replace old backups)"
msgstr "Erabili babeskopia inkrementala (ez ordeztu kopia zaharrak)"
-#: ../../standalone/drakbackup_.c:1529
+#: ../../standalone/drakbackup_.c:1604
msgid "Do not include critical files (passwd, group, fstab)"
msgstr "Ez sartu fitxategi kritikoak (passwd, group, fstab)"
-#: ../../standalone/drakbackup_.c:1530
+#: ../../standalone/drakbackup_.c:1605
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
@@ -10453,61 +10850,65 @@ msgstr ""
"Aukera honekin /etc direktorioaren edozein bertsio leheneratu\n"
"ahal izango duzu."
-#: ../../standalone/drakbackup_.c:1547
+#: ../../standalone/drakbackup_.c:1622
msgid "Please check all users that you want to include in your backup."
msgstr "Hautatu babeskopian sartu nahi dituzun erabiltzaile guztiak."
-#: ../../standalone/drakbackup_.c:1574
+#: ../../standalone/drakbackup_.c:1649
msgid "Do not include the browser cache"
msgstr "Ez sartu arakatzailearen cache-a"
-#: ../../standalone/drakbackup_.c:1575 ../../standalone/drakbackup_.c:1599
+#: ../../standalone/drakbackup_.c:1650 ../../standalone/drakbackup_.c:1674
msgid "Use Incremental Backups (do not replace old backups)"
msgstr "Erabili babeskopia inkrementalak (ez ordeztu kopia zaharrak)"
-#: ../../standalone/drakbackup_.c:1597 ../../standalone/drakfont_.c:1058
+#: ../../standalone/drakbackup_.c:1672 ../../standalone/drakfont_.c:1058
msgid "Remove Selected"
msgstr "Kendu hautatutakoak"
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:1710
msgid "Windows (FAT32)"
msgstr "Windows(FAT32)"
-#: ../../standalone/drakbackup_.c:1674
+#: ../../standalone/drakbackup_.c:1749
msgid "Users"
msgstr "Erabiltzaileak"
-#: ../../standalone/drakbackup_.c:1700
+#: ../../standalone/drakbackup_.c:1775
#, fuzzy
msgid "Use network connection to backup"
msgstr "Erabili FTP konexioa babeskopia egiteko"
-#: ../../standalone/drakbackup_.c:1706
+#: ../../standalone/drakbackup_.c:1777
+msgid "Net Method:"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1781
msgid "Use Expect for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1707
+#: ../../standalone/drakbackup_.c:1782
msgid ""
"Create/Transfer\n"
"backup keys for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1708
+#: ../../standalone/drakbackup_.c:1783
#, fuzzy
msgid ""
" Transfer \n"
"Now"
msgstr "Transferitu"
-#: ../../standalone/drakbackup_.c:1709
+#: ../../standalone/drakbackup_.c:1784
msgid "Keys in place already"
msgstr ""
-#: ../../standalone/drakbackup_.c:1713
+#: ../../standalone/drakbackup_.c:1788
msgid "Please enter the host name or IP."
msgstr "Idatzi ostalariaren izena edo IPa."
-#: ../../standalone/drakbackup_.c:1718
+#: ../../standalone/drakbackup_.c:1793
#, fuzzy
msgid ""
"Please enter the directory (or module) to\n"
@@ -10516,69 +10917,69 @@ msgstr ""
"Adierazi ostalariko direktorioa\n"
"babeskopia jartzeko."
-#: ../../standalone/drakbackup_.c:1723
+#: ../../standalone/drakbackup_.c:1798
msgid "Please enter your login"
msgstr "Sartu saioa hasteko izena"
-#: ../../standalone/drakbackup_.c:1728
+#: ../../standalone/drakbackup_.c:1803
msgid "Please enter your password"
msgstr "Sartu pasahitza"
-#: ../../standalone/drakbackup_.c:1734
+#: ../../standalone/drakbackup_.c:1809
msgid "Remember this password"
msgstr "Gogoratu pasahitza"
-#: ../../standalone/drakbackup_.c:1745
+#: ../../standalone/drakbackup_.c:1820
#, fuzzy
msgid "Need hostname, username and password!"
msgstr "Ezin sartu %s erabiltzaile-izena erabilita (pasahitz okerra?)"
-#: ../../standalone/drakbackup_.c:1841
+#: ../../standalone/drakbackup_.c:1915
msgid "Use CD/DVDROM to backup"
msgstr "Erabili CD/DVDROMa babeskopia egiteko"
-#: ../../standalone/drakbackup_.c:1844
+#: ../../standalone/drakbackup_.c:1918
msgid ""
"Please choose your CD/DVD device\n"
"(Press Enter to propogate settings to other fields.\n"
"This field isn't necessary, only a tool to fill in the form.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1849
+#: ../../standalone/drakbackup_.c:1923
#, fuzzy
msgid "Please choose your CD/DVD media size"
msgstr "Aukeratu CDko lekua"
-#: ../../standalone/drakbackup_.c:1855
+#: ../../standalone/drakbackup_.c:1929
#, fuzzy
msgid "Please check for multisession CD"
msgstr "Hautatu CDRW euskarria erabiltzen baduzu"
-#: ../../standalone/drakbackup_.c:1861
+#: ../../standalone/drakbackup_.c:1935
msgid "Please check if you are using CDRW media"
msgstr "Hautatu CDRW euskarria erabiltzen baduzu"
-#: ../../standalone/drakbackup_.c:1867
+#: ../../standalone/drakbackup_.c:1941
#, fuzzy
msgid "Please check if you want to erase your RW media (1st Session)"
msgstr "Hautatu CDRWa ezabatu nahi baduzu lehenik"
-#: ../../standalone/drakbackup_.c:1868
+#: ../../standalone/drakbackup_.c:1942
#, fuzzy
msgid " Erase Now "
msgstr "Transferitu"
-#: ../../standalone/drakbackup_.c:1874
+#: ../../standalone/drakbackup_.c:1948
#, fuzzy
msgid "Please check if you are using a DVDR device"
msgstr "Hautatu CDRW euskarria erabiltzen baduzu"
-#: ../../standalone/drakbackup_.c:1880
+#: ../../standalone/drakbackup_.c:1954
#, fuzzy
msgid "Please check if you are using a DVDRAM device"
msgstr "Hautatu CDRW euskarria erabiltzen baduzu"
-#: ../../standalone/drakbackup_.c:1893
+#: ../../standalone/drakbackup_.c:1967
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
@@ -10586,36 +10987,36 @@ msgstr ""
"Adierazi CD idazgailuaren gailu-izena \n"
" adib.: 0,1,0"
-#: ../../standalone/drakbackup_.c:1926
+#: ../../standalone/drakbackup_.c:2000
#, fuzzy
msgid "No CD device defined!"
msgstr "Hautatu fitxategia"
-#: ../../standalone/drakbackup_.c:1974
+#: ../../standalone/drakbackup_.c:2048
msgid "Use tape to backup"
msgstr "Erabili zinta babeskopia egiteko"
-#: ../../standalone/drakbackup_.c:1977
+#: ../../standalone/drakbackup_.c:2051
msgid "Please enter the device name to use for backup"
msgstr "Adierazi babeskopiarako erabiliko den gailuaren izena"
-#: ../../standalone/drakbackup_.c:1983
+#: ../../standalone/drakbackup_.c:2057
#, fuzzy
msgid "Please check if you want to use the non-rewinding device."
msgstr "Hautatu CDRWa ezabatu nahi baduzu lehenik"
-#: ../../standalone/drakbackup_.c:1989
+#: ../../standalone/drakbackup_.c:2063
#, fuzzy
msgid "Please check if you want to erase your tape before the backup."
msgstr "Hautatu CDRWa ezabatu nahi baduzu lehenik"
-#: ../../standalone/drakbackup_.c:1995
+#: ../../standalone/drakbackup_.c:2069
#, fuzzy
msgid "Please check if you want to eject your tape after the backup."
msgstr "Hautatu CDRWa ezabatu nahi baduzu lehenik"
-#: ../../standalone/drakbackup_.c:2001 ../../standalone/drakbackup_.c:2074
-#: ../../standalone/drakbackup_.c:3025
+#: ../../standalone/drakbackup_.c:2075 ../../standalone/drakbackup_.c:2149
+#: ../../standalone/drakbackup_.c:3116
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
@@ -10623,57 +11024,57 @@ msgstr ""
"Adierazi Drakbackup-en gehieneko\n"
" tamaina "
-#: ../../standalone/drakbackup_.c:2066
+#: ../../standalone/drakbackup_.c:2140
#, fuzzy
msgid "Please enter the directory to save to:"
msgstr "Adierazi gorde beharreko direktorioa:"
-#: ../../standalone/drakbackup_.c:2080 ../../standalone/drakbackup_.c:3031
+#: ../../standalone/drakbackup_.c:2155 ../../standalone/drakbackup_.c:3122
msgid "Use quota for backup files."
msgstr "Erabili kuota babeskopia-fitxategientzat"
-#: ../../standalone/drakbackup_.c:2146
+#: ../../standalone/drakbackup_.c:2221
msgid "Network"
msgstr "Sarea"
-#: ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:2226
msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2156
+#: ../../standalone/drakbackup_.c:2231
msgid "HardDrive / NFS"
msgstr "HardDrive / NFS"
-#: ../../standalone/drakbackup_.c:2161
+#: ../../standalone/drakbackup_.c:2236
#, fuzzy
msgid "Tape"
msgstr "Mota"
-#: ../../standalone/drakbackup_.c:2175 ../../standalone/drakbackup_.c:2179
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2250 ../../standalone/drakbackup_.c:2254
+#: ../../standalone/drakbackup_.c:2258
msgid "hourly"
msgstr "orduero"
-#: ../../standalone/drakbackup_.c:2176 ../../standalone/drakbackup_.c:2180
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2251 ../../standalone/drakbackup_.c:2255
+#: ../../standalone/drakbackup_.c:2258
msgid "daily"
msgstr "egunero"
-#: ../../standalone/drakbackup_.c:2177 ../../standalone/drakbackup_.c:2181
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2252 ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2258
msgid "weekly"
msgstr "astero"
-#: ../../standalone/drakbackup_.c:2178 ../../standalone/drakbackup_.c:2182
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2253 ../../standalone/drakbackup_.c:2257
+#: ../../standalone/drakbackup_.c:2258
msgid "monthly"
msgstr "hilero"
-#: ../../standalone/drakbackup_.c:2196
+#: ../../standalone/drakbackup_.c:2271
msgid "Use daemon"
msgstr "Erabili daemon-a"
-#: ../../standalone/drakbackup_.c:2201
+#: ../../standalone/drakbackup_.c:2276
msgid ""
"Please choose the time \n"
"interval between each backup"
@@ -10681,7 +11082,7 @@ msgstr ""
"Aukeratu babeskopiak egiteko \n"
"maiztasuna"
-#: ../../standalone/drakbackup_.c:2207
+#: ../../standalone/drakbackup_.c:2282
msgid ""
"Please choose the\n"
"media for backup."
@@ -10689,7 +11090,7 @@ msgstr ""
"Aukeratu babeskopia \n"
"egiteko euskarria."
-#: ../../standalone/drakbackup_.c:2214
+#: ../../standalone/drakbackup_.c:2289
#, fuzzy
msgid ""
"Please be sure that the cron daemon is included in your services. \n"
@@ -10697,71 +11098,71 @@ msgid ""
"Note that currently all 'net' medias also use the hard drive."
msgstr "Ziurtatu cron daemon-a zerbitzuetan sartuta daukazula."
-#: ../../standalone/drakbackup_.c:2251
-msgid "Send mail report after each backup to :"
+#: ../../standalone/drakbackup_.c:2326
+msgid "Send mail report after each backup to:"
msgstr "Babeskopia egindakoan, bidali berri-emateko mezua hona :"
-#: ../../standalone/drakbackup_.c:2257
+#: ../../standalone/drakbackup_.c:2332
msgid "Delete Hard Drive tar files after backup to other media."
msgstr ""
-#: ../../standalone/drakbackup_.c:2296
+#: ../../standalone/drakbackup_.c:2371
msgid "What"
msgstr "Zer"
-#: ../../standalone/drakbackup_.c:2301
+#: ../../standalone/drakbackup_.c:2376
msgid "Where"
msgstr "Non"
-#: ../../standalone/drakbackup_.c:2306
+#: ../../standalone/drakbackup_.c:2381
msgid "When"
msgstr "Noiz"
-#: ../../standalone/drakbackup_.c:2311
+#: ../../standalone/drakbackup_.c:2386
msgid "More Options"
msgstr "Aukera gehiago"
-#: ../../standalone/drakbackup_.c:2330 ../../standalone/drakbackup_.c:3873
+#: ../../standalone/drakbackup_.c:2405 ../../standalone/drakbackup_.c:4530
msgid "Drakbackup Configuration"
msgstr " Drakbackup-en konfigurazioa"
-#: ../../standalone/drakbackup_.c:2348
+#: ../../standalone/drakbackup_.c:2423
msgid "Please choose where you want to backup"
msgstr "Aukeratu non egin nahi duzun babeskopia"
-#: ../../standalone/drakbackup_.c:2350
+#: ../../standalone/drakbackup_.c:2425
msgid "on Hard Drive"
msgstr "disko gogorrean"
-#: ../../standalone/drakbackup_.c:2360
+#: ../../standalone/drakbackup_.c:2435
msgid "across Network"
msgstr "sarean zehar"
-#: ../../standalone/drakbackup_.c:2370
+#: ../../standalone/drakbackup_.c:2445
msgid "on CDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2378
+#: ../../standalone/drakbackup_.c:2453
msgid "on Tape Device"
msgstr ""
-#: ../../standalone/drakbackup_.c:2421
+#: ../../standalone/drakbackup_.c:2496
msgid "Please choose what you want to backup"
msgstr "Aukeratu zeren kopia egin nahi duzun"
-#: ../../standalone/drakbackup_.c:2422
+#: ../../standalone/drakbackup_.c:2497
msgid "Backup system"
msgstr "Sistemaren babeskopia "
-#: ../../standalone/drakbackup_.c:2423
+#: ../../standalone/drakbackup_.c:2498
msgid "Backup Users"
msgstr "Erabiltzaileen babeskopia"
-#: ../../standalone/drakbackup_.c:2426
+#: ../../standalone/drakbackup_.c:2501
msgid "Select user manually"
msgstr "Hautatu erabiltzailea eskuz"
-#: ../../standalone/drakbackup_.c:2508
+#: ../../standalone/drakbackup_.c:2584
msgid ""
"\n"
"Backup Sources: \n"
@@ -10769,7 +11170,7 @@ msgstr ""
"\n"
"Babeskopien iturburua: \n"
-#: ../../standalone/drakbackup_.c:2509
+#: ../../standalone/drakbackup_.c:2585
msgid ""
"\n"
"- System Files:\n"
@@ -10777,7 +11178,7 @@ msgstr ""
"\n"
"- Sistema-fitxategiak:\n"
-#: ../../standalone/drakbackup_.c:2511
+#: ../../standalone/drakbackup_.c:2587
msgid ""
"\n"
"- User Files:\n"
@@ -10785,7 +11186,7 @@ msgstr ""
"\n"
"- Erabiltzaile-fitxategiak:\n"
-#: ../../standalone/drakbackup_.c:2513
+#: ../../standalone/drakbackup_.c:2589
msgid ""
"\n"
"- Other Files:\n"
@@ -10793,64 +11194,64 @@ msgstr ""
"\n"
"- Bestelako fitxategiak:\n"
-#: ../../standalone/drakbackup_.c:2515
+#: ../../standalone/drakbackup_.c:2591
#, c-format
msgid ""
"\n"
-"- Save on Hard drive on path : %s\n"
+"- Save on Hard drive on path: %s\n"
msgstr ""
"\n"
"- Gorde disko gogorrean, bide-izen honetan: %s\n"
-#: ../../standalone/drakbackup_.c:2518
+#: ../../standalone/drakbackup_.c:2594
msgid ""
"\n"
"- Delete hard drive tar files after backup.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2524
+#: ../../standalone/drakbackup_.c:2600
msgid ""
"\n"
"- Burn to CD"
msgstr ""
-#: ../../standalone/drakbackup_.c:2525
+#: ../../standalone/drakbackup_.c:2601
msgid "RW"
msgstr ""
-#: ../../standalone/drakbackup_.c:2526
+#: ../../standalone/drakbackup_.c:2602
#, fuzzy, c-format
-msgid " on device : %s"
+msgid " on device: %s"
msgstr "Sagu-gailua: %s\n"
-#: ../../standalone/drakbackup_.c:2527
+#: ../../standalone/drakbackup_.c:2603
msgid " (multi-session)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2528
+#: ../../standalone/drakbackup_.c:2604
#, fuzzy, c-format
msgid ""
"\n"
-"- Save to Tape on device : %s"
+"- Save to Tape on device: %s"
msgstr ""
"\n"
-"- Gorde FTPan, ostalari honetan : %s\n"
+"- Gorde FTPan, ostalari honetan: %s\n"
-#: ../../standalone/drakbackup_.c:2529
+#: ../../standalone/drakbackup_.c:2605
#, c-format
msgid "\t\tErase=%s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2532
+#: ../../standalone/drakbackup_.c:2608
#, fuzzy, c-format
msgid ""
"\n"
-"- Save via %s on host : %s\n"
+"- Save via %s on host: %s\n"
msgstr ""
"\n"
-"- Gorde FTPan, ostalari honetan : %s\n"
+"- Gorde FTPan, ostalari honetan: %s\n"
-#: ../../standalone/drakbackup_.c:2533
+#: ../../standalone/drakbackup_.c:2609
#, c-format
msgid ""
"\t\t user name: %s\n"
@@ -10859,7 +11260,7 @@ msgstr ""
"\t\t erabiltzaile-izena: %s\n"
"\t\t bide-izena: %s \n"
-#: ../../standalone/drakbackup_.c:2534
+#: ../../standalone/drakbackup_.c:2610
msgid ""
"\n"
"- Options:\n"
@@ -10867,62 +11268,62 @@ msgstr ""
"\n"
"- Aukerak:\n"
-#: ../../standalone/drakbackup_.c:2535
+#: ../../standalone/drakbackup_.c:2611
msgid "\tDo not include System Files\n"
msgstr "\tEz sartu sistema-fitxategiak\n"
-#: ../../standalone/drakbackup_.c:2538
+#: ../../standalone/drakbackup_.c:2614
msgid "\tBackups use tar and bzip2\n"
msgstr "\tBabeskopietan erabili tar eta bzip2\n"
-#: ../../standalone/drakbackup_.c:2540
+#: ../../standalone/drakbackup_.c:2616
msgid "\tBackups use tar and gzip\n"
msgstr "\tBabeskopietan erabili tar eta gzip\n"
-#: ../../standalone/drakbackup_.c:2543
+#: ../../standalone/drakbackup_.c:2619
#, c-format
msgid ""
"\n"
-"- Daemon (%s) include :\n"
+"- Daemon (%s) include:\n"
msgstr ""
"\n"
"- Daemon-ean (%s) sartzen da :\n"
-#: ../../standalone/drakbackup_.c:2544
+#: ../../standalone/drakbackup_.c:2620
msgid "\t-Hard drive.\n"
msgstr "\t Disko gogorra.\n"
-#: ../../standalone/drakbackup_.c:2545
+#: ../../standalone/drakbackup_.c:2621
msgid "\t-CDROM.\n"
msgstr "\t-CDROMa.\n"
-#: ../../standalone/drakbackup_.c:2546
+#: ../../standalone/drakbackup_.c:2622
msgid "\t-Tape \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2547
+#: ../../standalone/drakbackup_.c:2623
msgid "\t-Network by FTP.\n"
msgstr "\tFTP bidezko sarea.\n"
-#: ../../standalone/drakbackup_.c:2548
+#: ../../standalone/drakbackup_.c:2624
msgid "\t-Network by SSH.\n"
msgstr "\tSSH bidezko sarea.\n"
-#: ../../standalone/drakbackup_.c:2549
+#: ../../standalone/drakbackup_.c:2625
#, fuzzy
msgid "\t-Network by rsync.\n"
msgstr "\tFTP bidezko sarea.\n"
-#: ../../standalone/drakbackup_.c:2550
+#: ../../standalone/drakbackup_.c:2626
#, fuzzy
msgid "\t-Network by webdav.\n"
msgstr "\tFTP bidezko sarea.\n"
-#: ../../standalone/drakbackup_.c:2552
+#: ../../standalone/drakbackup_.c:2628
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr "Ez dago konfiguraziorik, egin klik Morroian edo Aurreratuan.\n"
-#: ../../standalone/drakbackup_.c:2558
+#: ../../standalone/drakbackup_.c:2634
msgid ""
"List of data to restore:\n"
"\n"
@@ -10930,7 +11331,7 @@ msgstr ""
"Leheneratu beharreko datuen zerrenda:\n"
"\n"
-#: ../../standalone/drakbackup_.c:2725
+#: ../../standalone/drakbackup_.c:2801
msgid ""
"List of data corrupted:\n"
"\n"
@@ -10938,157 +11339,275 @@ msgstr ""
"Hondatutako datuen zerrenda:\n"
"\n"
-#: ../../standalone/drakbackup_.c:2727
+#: ../../standalone/drakbackup_.c:2803
msgid "Please uncheck or remove it on next time."
msgstr "Desautatu edo kendu hurrengo aldian."
-#: ../../standalone/drakbackup_.c:2737
+#: ../../standalone/drakbackup_.c:2813
msgid "Backup files are corrupted"
msgstr "Babeskopien fitxategiak hondatuta daude"
-#: ../../standalone/drakbackup_.c:2758
+#: ../../standalone/drakbackup_.c:2834
#, fuzzy
msgid " All of your selected data have been "
msgstr " Hautatu dituzun datu guztiak "
-#: ../../standalone/drakbackup_.c:2759
+#: ../../standalone/drakbackup_.c:2835
#, c-format
msgid " Successfuly Restored on %s "
msgstr " behar bezala leheneratu dira hona: %s "
-#: ../../standalone/drakbackup_.c:2877
+#: ../../standalone/drakbackup_.c:2953
msgid " Restore Configuration "
msgstr " leheneratzeko konfigurazioa "
-#: ../../standalone/drakbackup_.c:2895
+#: ../../standalone/drakbackup_.c:2971
msgid "OK to restore the other files."
msgstr "Ados, leheneratu beste fitxategiak"
-#: ../../standalone/drakbackup_.c:2912
+#: ../../standalone/drakbackup_.c:2988
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
"Leheneratzeko erabiltzaile-zerrenda (erabiltzaile bakoitzaren datu berrienak "
"bakarrik dira garrantzitsuak)"
-#: ../../standalone/drakbackup_.c:2975
+#: ../../standalone/drakbackup_.c:3066
msgid "Backup the system files before:"
msgstr "Kopiatu sistema-fitxategiak lehenago:"
-#: ../../standalone/drakbackup_.c:2977
+#: ../../standalone/drakbackup_.c:3068
msgid "please choose the date to restore"
msgstr "aukeratu leheneratzeko data"
-#: ../../standalone/drakbackup_.c:3014
+#: ../../standalone/drakbackup_.c:3105
msgid "Use Hard Disk to backup"
msgstr "Erabili disko gogorra babeskopia egiteko"
-#: ../../standalone/drakbackup_.c:3017
+#: ../../standalone/drakbackup_.c:3108
msgid "Please enter the directory to save:"
msgstr "Adierazi gorde beharreko direktorioa:"
-#: ../../standalone/drakbackup_.c:3060
+#: ../../standalone/drakbackup_.c:3151
msgid "FTP Connection"
msgstr "FTP konexioa"
-#: ../../standalone/drakbackup_.c:3067
+#: ../../standalone/drakbackup_.c:3158
msgid "Secure Connection"
msgstr "Konexio segurua"
-#: ../../standalone/drakbackup_.c:3093
+#: ../../standalone/drakbackup_.c:3184
msgid "Restore from Hard Disk."
msgstr "Leheneratu disko gogorretik"
-#: ../../standalone/drakbackup_.c:3095
+#: ../../standalone/drakbackup_.c:3186
msgid "Please enter the directory where backups are stored"
msgstr "Adierazi zein direktoriotan dauden babeskopiak"
-#: ../../standalone/drakbackup_.c:3157
+#: ../../standalone/drakbackup_.c:3254
msgid "Select another media to restore from"
msgstr "Hautatu beste euskarri bat leheneratzeko"
-#: ../../standalone/drakbackup_.c:3159
+#: ../../standalone/drakbackup_.c:3256
msgid "Other Media"
msgstr "Beste euskarri bat"
-#: ../../standalone/drakbackup_.c:3164
+#: ../../standalone/drakbackup_.c:3261
msgid "Restore system"
msgstr "Leheneratu sistema"
-#: ../../standalone/drakbackup_.c:3165
+#: ../../standalone/drakbackup_.c:3262
msgid "Restore Users"
msgstr "Leheneratu erabiltzaileak"
-#: ../../standalone/drakbackup_.c:3166
+#: ../../standalone/drakbackup_.c:3263
msgid "Restore Other"
msgstr "Leheneratu bestelakoak"
-#: ../../standalone/drakbackup_.c:3168
+#: ../../standalone/drakbackup_.c:3265
#, fuzzy
msgid "select path to restore (instead of /)"
msgstr "hautatu leheneratzeko bidea ( / ordez)"
-#: ../../standalone/drakbackup_.c:3172
+#: ../../standalone/drakbackup_.c:3269
msgid "Do new backup before restore (only for incremental backups.)"
msgstr "Egin babeskopia berria leheneratu aurretik (inkrementaletan soilik.)"
-#: ../../standalone/drakbackup_.c:3174
+#: ../../standalone/drakbackup_.c:3271
msgid "Remove user directories before restore."
msgstr "Kendu erabiltzaile-direktorioak leheneratu aurretik."
-#: ../../standalone/drakbackup_.c:3232
+#: ../../standalone/drakbackup_.c:3384
+msgid ""
+"Restore Selected\n"
+"Catalog Entry"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3394
+#, fuzzy
+msgid ""
+"Restore Selected\n"
+"Files"
+msgstr "Kendu hautatutakoak"
+
+#: ../../standalone/drakbackup_.c:3411
+#, fuzzy
+msgid ""
+"Change\n"
+"Restore Path"
+msgstr "Leheneratu bestelakoak"
+
+#: ../../standalone/drakbackup_.c:3477
+#, fuzzy, c-format
+msgid "Backup files not found at %s."
+msgstr "Babestu %s %s.old bezala"
+
+#: ../../standalone/drakbackup_.c:3490
+#, c-format
+msgid ""
+"Insert the CD with volume label %s\n"
+" in the CD drive under mount point /mnt/cdrom"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3490
+#, fuzzy
+msgid "Restore From CD"
+msgstr "Leheneratu disko gogorretik"
+
+#: ../../standalone/drakbackup_.c:3492
+#, c-format
+msgid "Not the correct CD label. Disk is labelled %s."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3502
+#, c-format
+msgid ""
+"Insert the tape with volume label %s\n"
+" in the tape drive device %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3502
+#, fuzzy
+msgid "Restore From Tape"
+msgstr "Leheneratu partizio-taula"
+
+#: ../../standalone/drakbackup_.c:3504
+#, c-format
+msgid "Not the correct tape label. Tape is labelled %s."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3524
+#, fuzzy
+msgid "Restore Via Network"
+msgstr "Leheneratu erabiltzaileak"
+
+#: ../../standalone/drakbackup_.c:3524
+#, c-format
+msgid "Restore Via Network Protocol: %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3525
+#, fuzzy
+msgid "Host Name"
+msgstr "Ostalari-izena"
+
+#: ../../standalone/drakbackup_.c:3526
+msgid "Host Path or Module"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3533
+#, fuzzy
+msgid "Password required"
+msgstr "Pasahitza"
+
+#: ../../standalone/drakbackup_.c:3539
+#, fuzzy
+msgid "Username required"
+msgstr "Erabiltzaile-izena"
+
+#: ../../standalone/drakbackup_.c:3542
+#, fuzzy
+msgid "Hostname required"
+msgstr "Ostalari-izena: "
+
+#: ../../standalone/drakbackup_.c:3547
+msgid "Path or Module required"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3560
+msgid "Files Restored..."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3563
+#, fuzzy
+msgid "Restore Failed..."
+msgstr "Leheneratu bestelakoak"
+
+#: ../../standalone/drakbackup_.c:3801
msgid "Restore all backups"
msgstr "Leheneratu babeskopia guztiak."
-#: ../../standalone/drakbackup_.c:3241
+#: ../../standalone/drakbackup_.c:3810
msgid "Custom Restore"
msgstr "Leheneratze pertsonalizatua"
-#: ../../standalone/drakbackup_.c:3287 ../../standalone/drakbackup_.c:3320
-#: ../../standalone/drakbackup_.c:3346 ../../standalone/drakbackup_.c:3373
-#: ../../standalone/drakbackup_.c:3400 ../../standalone/drakbackup_.c:3460
-#: ../../standalone/drakbackup_.c:3487 ../../standalone/drakbackup_.c:3513
+#: ../../standalone/drakbackup_.c:3856
+msgid "CD in place - continue."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3862
+msgid "Browse to new restore repository."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3865
+#, fuzzy
+msgid "Restore From Catalog"
+msgstr "Leheneratu partizio-taula"
+
+#: ../../standalone/drakbackup_.c:3893
+#, fuzzy
+msgid "Restore Progress"
+msgstr "Leheneratu erabiltzaileak"
+
+#: ../../standalone/drakbackup_.c:3935 ../../standalone/drakbackup_.c:3968
+#: ../../standalone/drakbackup_.c:3994 ../../standalone/drakbackup_.c:4021
+#: ../../standalone/drakbackup_.c:4048 ../../standalone/drakbackup_.c:4108
+#: ../../standalone/drakbackup_.c:4135 ../../standalone/drakbackup_.c:4165
+#: ../../standalone/drakbackup_.c:4191
msgid "Previous"
msgstr "Aurrekoa"
-#: ../../standalone/drakbackup_.c:3291 ../../standalone/drakbackup_.c:3377
+#: ../../standalone/drakbackup_.c:3939 ../../standalone/drakbackup_.c:4025
#: ../../standalone/logdrake_.c:223
msgid "Save"
msgstr "Gorde"
-#: ../../standalone/drakbackup_.c:3350
+#: ../../standalone/drakbackup_.c:3998
msgid "Build Backup"
msgstr "Egin babeskopia"
-#: ../../standalone/drakbackup_.c:3404 ../../standalone/drakbackup_.c:3974
+#: ../../standalone/drakbackup_.c:4052 ../../standalone/drakbackup_.c:4632
msgid "Restore"
msgstr "Leheneratu"
-#: ../../standalone/drakbackup_.c:3553
-msgid ""
-"Please Build backup before to restore it...\n"
-" or verify that your path to save is correct."
-msgstr ""
-"Egin babeskopia leheneratu aurretik...\n"
-" edo egiaztatu gordetzeko bidea zuzena dela."
-
-#: ../../standalone/drakbackup_.c:3574
+#: ../../standalone/drakbackup_.c:4231
+#, fuzzy
msgid ""
-"Error during sendmail\n"
-" your report mail was not sent\n"
+"Error during sendmail.\n"
+" Your report mail was not sent.\n"
" Please configure sendmail"
msgstr ""
"Errorea posta bidaltzean\n"
" berri emateko mezua ez da bidali\n"
" Konfiguratu posta-bidalketa"
-#: ../../standalone/drakbackup_.c:3598
+#: ../../standalone/drakbackup_.c:4255
#, fuzzy
msgid ""
"The following packages need to be installed:\n"
" @list_of_rpm_to_install"
msgstr "Ondorengo pakete hauek instalatuko dira"
-#: ../../standalone/drakbackup_.c:3621
+#: ../../standalone/drakbackup_.c:4278
#, fuzzy
msgid ""
"Error during sending file via FTP.\n"
@@ -11097,19 +11616,19 @@ msgstr ""
"Errorea FTP bidez fitxategia bidaltzean.\n"
" Zuzendu FTP konfigurazioa."
-#: ../../standalone/drakbackup_.c:3644
+#: ../../standalone/drakbackup_.c:4301
msgid "Please select data to restore..."
msgstr "Hautatu leheneratzeko datuak..."
-#: ../../standalone/drakbackup_.c:3665
+#: ../../standalone/drakbackup_.c:4322
msgid "Please select media for backup..."
msgstr "Hautatu babeskopiaren euskarria..."
-#: ../../standalone/drakbackup_.c:3687
+#: ../../standalone/drakbackup_.c:4344
msgid "Please select data to backup..."
msgstr "Hautatu babeskopia egiteko datuak..."
-#: ../../standalone/drakbackup_.c:3709
+#: ../../standalone/drakbackup_.c:4366
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
@@ -11117,59 +11636,59 @@ msgstr ""
"Ez da konfigurazio-fitxategirik aurkitu \n"
"egin klik Morroia-n edo Aurreratua-n."
-#: ../../standalone/drakbackup_.c:3730
+#: ../../standalone/drakbackup_.c:4387
msgid "Under Devel ... please wait."
msgstr "Garatzen... itxaron."
-#: ../../standalone/drakbackup_.c:3811
+#: ../../standalone/drakbackup_.c:4468
msgid "Backup system files"
msgstr "Sistema-fitxategien babeskopia"
-#: ../../standalone/drakbackup_.c:3813
+#: ../../standalone/drakbackup_.c:4470
msgid "Backup user files"
msgstr "Erabiltzaile-fitxategien babeskopia"
-#: ../../standalone/drakbackup_.c:3815
+#: ../../standalone/drakbackup_.c:4472
msgid "Backup other files"
msgstr "Bestelako fitxategien babeskopia"
-#: ../../standalone/drakbackup_.c:3817 ../../standalone/drakbackup_.c:3850
+#: ../../standalone/drakbackup_.c:4474 ../../standalone/drakbackup_.c:4507
msgid "Total Progress"
msgstr "Guztizko progresioa"
-#: ../../standalone/drakbackup_.c:3841
+#: ../../standalone/drakbackup_.c:4498
msgid "files sending by FTP"
msgstr "fitxategiak FTP bidez bidaltzen"
-#: ../../standalone/drakbackup_.c:3845
+#: ../../standalone/drakbackup_.c:4502
msgid "Sending files..."
msgstr "Fitxategiak bidaltzen..."
-#: ../../standalone/drakbackup_.c:3931
+#: ../../standalone/drakbackup_.c:4588
msgid "Backup Now from configuration file"
msgstr "Egin babeskopia konfigurazio-fitxategitik"
-#: ../../standalone/drakbackup_.c:3936
+#: ../../standalone/drakbackup_.c:4593
msgid "View Backup Configuration."
msgstr "Ikusi babeskopiaren konfigurazioa"
-#: ../../standalone/drakbackup_.c:3956
+#: ../../standalone/drakbackup_.c:4614
msgid "Wizard Configuration"
msgstr "Morroiaren konfigurazioa"
-#: ../../standalone/drakbackup_.c:3961
+#: ../../standalone/drakbackup_.c:4619
msgid "Advanced Configuration"
msgstr "Konfigurazio aurreratua"
-#: ../../standalone/drakbackup_.c:3966
+#: ../../standalone/drakbackup_.c:4624
msgid "Backup Now"
msgstr "Egin babeskopia orain"
-#: ../../standalone/drakbackup_.c:3996
+#: ../../standalone/drakbackup_.c:4658
msgid "Drakbackup"
msgstr "Drakbackup"
-#: ../../standalone/drakbackup_.c:4045
+#: ../../standalone/drakbackup_.c:4707
#, fuzzy
msgid ""
"options description:\n"
@@ -11230,7 +11749,7 @@ msgstr ""
" \n"
"\n"
-#: ../../standalone/drakbackup_.c:4075
+#: ../../standalone/drakbackup_.c:4737
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -11244,7 +11763,7 @@ msgstr ""
" myhostname edo mydomain ezarri behar duzu hemen: /etc/postfix/main.cf\n"
"\n"
-#: ../../standalone/drakbackup_.c:4083
+#: ../../standalone/drakbackup_.c:4745
msgid ""
"options description:\n"
"\n"
@@ -11319,28 +11838,29 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:4122
+#: ../../standalone/drakbackup_.c:4784
+#, fuzzy
msgid ""
"restore description:\n"
" \n"
-"Only the most recent date will be used ,because with incremental \n"
-"backups it is necesarry to restore one by one each older backups.\n"
+"Only the most recent date will be used, because with incremental \n"
+"backups it is necessary to restore one by one each older backup.\n"
"\n"
-"So if you don't like to restore a user please unselect all his\n"
-"check box.\n"
+"So if you don't want to restore a user please unselect all their\n"
+"check boxes.\n"
"\n"
-"Otherwise, you are able to select only one of this\n"
+"Otherwise, you are able to select only one of these.\n"
"\n"
" - Incremental Backups:\n"
"\n"
"\tThe incremental backup is the most powerful \n"
-"\toption to use backup, this option allow you \n"
-"\tto backup all your data the first time, and \n"
-"\tonly the changed after.\n"
-"\tSo you will be able during the restore\n"
+"\toption to use. This option allows you to \n"
+"\tbackup all of your data the first time, and \n"
+"\tonly the changed data after.\n"
+"\tSo you will be able, during the restore\n"
"\tstep, to restore your data from a specified\n"
"\tdate.\n"
-"\tIf you have not selected this options all\n"
+"\tIf you have not selected this option all\n"
"\told backups are deleted before each backup. \n"
"\n"
"\n"
@@ -11369,18 +11889,18 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:4148 ../../standalone/drakbackup_.c:4225
+#: ../../standalone/drakbackup_.c:4810 ../../standalone/drakbackup_.c:4887
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
" Copyright (C) 2001 MandrakeSoft, DUPONT Sebastien <dupont_s\\@epita.fr>"
-#: ../../standalone/drakbackup_.c:4150 ../../standalone/drakbackup_.c:4227
+#: ../../standalone/drakbackup_.c:4812 ../../standalone/drakbackup_.c:4889
msgid ""
" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
-#: ../../standalone/drakbackup_.c:4152 ../../standalone/drakbackup_.c:4229
+#: ../../standalone/drakbackup_.c:4814 ../../standalone/drakbackup_.c:4891
msgid ""
" This program is free software; you can redistribute it and/or modify\n"
" it under the terms of the GNU General Public License as published by\n"
@@ -11410,7 +11930,7 @@ msgstr ""
" jasoko zenuen; hala ez bada, idatzi hona: Free Software\n"
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
-#: ../../standalone/drakbackup_.c:4166
+#: ../../standalone/drakbackup_.c:4828
msgid ""
"Description:\n"
"\n"
@@ -11486,7 +12006,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:4204
+#: ../../standalone/drakbackup_.c:4866
msgid ""
"options description:\n"
"\n"
@@ -11504,7 +12024,7 @@ msgstr ""
"zerbitzarira bidali aurretik.\n"
"\n"
-#: ../../standalone/drakbackup_.c:4213
+#: ../../standalone/drakbackup_.c:4875
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -11526,7 +12046,7 @@ msgstr ""
"Garrantzizkoa da kontuz ibiltzea eta babeskopia-fitxategiak\n"
"eskuz ez aldatzea.\n"
-#: ../../standalone/drakbackup_.c:4243
+#: ../../standalone/drakbackup_.c:4905
msgid ""
"Description:\n"
"\n"
@@ -11643,9 +12163,9 @@ msgstr "Lehen Aldikorako Morroia"
msgid "Synchronization tool"
msgstr "Sinkronizazio tresna"
-#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:85
-#: ../../standalone/drakbug_.c:150 ../../standalone/drakbug_.c:152
-#: ../../standalone/drakbug_.c:156
+#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:86
+#: ../../standalone/drakbug_.c:151 ../../standalone/drakbug_.c:153
+#: ../../standalone/drakbug_.c:157
msgid "Standalone Tools"
msgstr "Tresna Autonomoak"
@@ -11689,23 +12209,23 @@ msgstr "Userdrake"
msgid "Configuration Wizards"
msgstr "Ezarpen Morroia"
-#: ../../standalone/drakbug_.c:96
+#: ../../standalone/drakbug_.c:97
msgid "Application:"
msgstr "Aplikazioa:"
-#: ../../standalone/drakbug_.c:97
+#: ../../standalone/drakbug_.c:98
msgid "Package: "
msgstr "Paketea: "
-#: ../../standalone/drakbug_.c:98
+#: ../../standalone/drakbug_.c:99
msgid "Kernel:"
msgstr "Kernela:"
-#: ../../standalone/drakbug_.c:99
+#: ../../standalone/drakbug_.c:100
msgid "Release: "
msgstr "Bertsioa: "
-#: ../../standalone/drakbug_.c:114
+#: ../../standalone/drakbug_.c:115
#, fuzzy
msgid ""
"\n"
@@ -11725,19 +12245,19 @@ msgstr ""
"erakusten den informazioa zerbitzari hartara bidaliko da\n"
"\n"
-#: ../../standalone/drakbug_.c:135
+#: ../../standalone/drakbug_.c:136
msgid "Report"
msgstr "Txostena"
-#: ../../standalone/drakbug_.c:165
+#: ../../standalone/drakbug_.c:166
msgid "Not installed"
msgstr "Instalatu gabe"
-#: ../../standalone/drakbug_.c:182
+#: ../../standalone/drakbug_.c:183
msgid "connecting to Bugzilla wizard ..."
msgstr "Bugzilla morroira konektatzen ..."
-#: ../../standalone/drakbug_.c:189
+#: ../../standalone/drakbug_.c:190
#, fuzzy
msgid "No browser available! Please install one"
msgstr "Ez dago nabigatzailerik! Instalatu bat mesedez"
@@ -12186,7 +12706,7 @@ msgid "Font List"
msgstr "Letra-tipoen zerrenda"
#: ../../standalone/drakfont_.c:909
-msgid "Choose the applications that will support the fonts :"
+msgid "Choose the applications that will support the fonts:"
msgstr "Hautatu letra-tipoak onartuko dituzten aplikazioak :"
#: ../../standalone/drakfont_.c:918
@@ -12258,19 +12778,19 @@ msgstr "Kendu zure sistemako letra-tipoak"
msgid "Post Uninstall"
msgstr "Posta-desinstalazioa"
-#: ../../standalone/drakgw_.c:42 ../../standalone/drakgw_.c:195
+#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:188
msgid "Internet Connection Sharing"
msgstr "Interneteko konexioa konpartitzea"
-#: ../../standalone/drakgw_.c:121
+#: ../../standalone/drakgw_.c:119
msgid "Sorry, we support only 2.4 kernels."
msgstr "Barkatu, 2.4 kernelak onartzen ditugu soilik."
-#: ../../standalone/drakgw_.c:133
+#: ../../standalone/drakgw_.c:130
msgid "Internet Connection Sharing currently enabled"
msgstr "Interneteko konexioa konpartitzea gaituta dago orain"
-#: ../../standalone/drakgw_.c:134
+#: ../../standalone/drakgw_.c:131
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -12282,31 +12802,31 @@ msgstr ""
"\n"
"Zer egin nahi duzu?"
-#: ../../standalone/drakgw_.c:138
+#: ../../standalone/drakgw_.c:135
msgid "disable"
msgstr "desgaitu"
-#: ../../standalone/drakgw_.c:138 ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:135 ../../standalone/drakgw_.c:160
msgid "dismiss"
msgstr "itxi"
-#: ../../standalone/drakgw_.c:138 ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:135 ../../standalone/drakgw_.c:160
msgid "reconfigure"
msgstr "birkonfiguratu"
-#: ../../standalone/drakgw_.c:141
+#: ../../standalone/drakgw_.c:138
msgid "Disabling servers..."
msgstr "Zerbitzariak desgaitzen..."
-#: ../../standalone/drakgw_.c:149
+#: ../../standalone/drakgw_.c:146
msgid "Internet connection sharing is now disabled."
msgstr "Interneteko konexioa konpartitzea desgaituta dago orain."
-#: ../../standalone/drakgw_.c:158
+#: ../../standalone/drakgw_.c:155
msgid "Internet Connection Sharing currently disabled"
msgstr "Interneteko konexioa konpartitzea desgaituta dago orain"
-#: ../../standalone/drakgw_.c:159
+#: ../../standalone/drakgw_.c:156
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
@@ -12318,19 +12838,19 @@ msgstr ""
"\n"
"Zer egin nahi duzu?"
-#: ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:160
msgid "enable"
msgstr "gaitu"
-#: ../../standalone/drakgw_.c:170
+#: ../../standalone/drakgw_.c:167
msgid "Enabling servers..."
msgstr "Zerbitzariak gaitzen..."
-#: ../../standalone/drakgw_.c:175
+#: ../../standalone/drakgw_.c:172
msgid "Internet connection sharing is now enabled."
msgstr "Interneteko konexioa konpartitzea gaituta dago orain."
-#: ../../standalone/drakgw_.c:196
+#: ../../standalone/drakgw_.c:189
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
"With that feature, other computers on your local network will be able to use "
@@ -12346,21 +12866,21 @@ msgstr ""
"Kontuan hartu: Sare-moldagailu dedikatu bat behar duzu sare lokala (LAN) "
"konfiguratzeko."
-#: ../../standalone/drakgw_.c:222
+#: ../../standalone/drakgw_.c:215
#, c-format
msgid "Interface %s (using module %s)"
msgstr "%s interfazea (%s modulua erabiliz)"
-#: ../../standalone/drakgw_.c:223
+#: ../../standalone/drakgw_.c:216
#, c-format
msgid "Interface %s"
msgstr "%s interfazea"
-#: ../../standalone/drakgw_.c:231
+#: ../../standalone/drakgw_.c:224
msgid "No network adapter on your system!"
msgstr "Ez dago sare-moldagailurik zure sisteman!"
-#: ../../standalone/drakgw_.c:232
+#: ../../standalone/drakgw_.c:225
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
@@ -12368,11 +12888,11 @@ msgstr ""
"Zure sisteman ez da ethernet sare-moldagailurik detektatu. Exekutatu "
"hardwarea konfiguratzeko tresna."
-#: ../../standalone/drakgw_.c:238
+#: ../../standalone/drakgw_.c:231
msgid "Network interface"
msgstr "Sare-interfazea"
-#: ../../standalone/drakgw_.c:239
+#: ../../standalone/drakgw_.c:232
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -12387,17 +12907,17 @@ msgstr ""
"\n"
"Zure sare lokala moldagailu horrekin konfiguratzera noa."
-#: ../../standalone/drakgw_.c:248
+#: ../../standalone/drakgw_.c:241
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
msgstr "Aukeratu zein sare-moldagailu konektatuko den zure sare lokalarekin."
-#: ../../standalone/drakgw_.c:266
+#: ../../standalone/drakgw_.c:259
msgid "Network interface already configured"
msgstr "Sareko interfazea konfiguratuta dago"
-#: ../../standalone/drakgw_.c:267
+#: ../../standalone/drakgw_.c:260
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -12412,15 +12932,15 @@ msgstr ""
"\n"
"Eskuz egin dezakezu, baldin eta zertan zabiltzan badakizu."
-#: ../../standalone/drakgw_.c:272
+#: ../../standalone/drakgw_.c:265
msgid "Automatic reconfiguration"
msgstr "Birkonfigurazio automatikoa"
-#: ../../standalone/drakgw_.c:273
+#: ../../standalone/drakgw_.c:266
msgid "Show current interface configuration"
msgstr "Erakutsi uneko interfaze-konfigurazioa"
-#: ../../standalone/drakgw_.c:275
+#: ../../standalone/drakgw_.c:268
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -12437,7 +12957,7 @@ msgstr ""
"IP atribuzioa: %s\n"
"Kontrolatzailea: %s"
-#: ../../standalone/drakgw_.c:287
+#: ../../standalone/drakgw_.c:280
msgid ""
"I can keep your current configuration and assume you already set up a DHCP "
"server; in that case please verify I correctly read the C-Class Network that "
@@ -12456,55 +12976,43 @@ msgstr ""
"Gainera, zure interfazea eta DHCP zerbitzaria (bir)konfigura ditzaket.\n"
"\n"
-#: ../../standalone/drakgw_.c:292
+#: ../../standalone/drakgw_.c:285
msgid "C-Class Local Network"
msgstr "C klaseko sare lokala"
-#: ../../standalone/drakgw_.c:293
+#: ../../standalone/drakgw_.c:286
msgid "(This) DHCP Server IP"
msgstr "DHCP zerbitzariaren IPa"
-#: ../../standalone/drakgw_.c:294
+#: ../../standalone/drakgw_.c:287
msgid "Re-configure interface and DHCP server"
msgstr "Birkonfiguratu interfazea eta DHCP zerbitzaria"
-#: ../../standalone/drakgw_.c:301
+#: ../../standalone/drakgw_.c:294
msgid "The Local Network did not finish with `.0', bailing out."
msgstr "Sare lokalak ez du `.0' amaieran; irteten. "
-#: ../../standalone/drakgw_.c:312
+#: ../../standalone/drakgw_.c:305
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr ""
"LAN helbide-gatazka potentziala aurkitu da %s(r)en uneko konfigurazioan!\n"
-#: ../../standalone/drakgw_.c:320
-msgid "Firewalling configuration detected!"
-msgstr "Suebaki-konfigurazioa detektatu da!"
-
-#: ../../standalone/drakgw_.c:321
-msgid ""
-"Warning! An existing firewalling configuration has been detected. You may "
-"need some manual fix after installation."
-msgstr ""
-"Kontuz! Lehendik dagoen suebaki-konfigurazio bat detektatu da. Beharbada "
-"eskuz konponketa batzuk egin beharko dituzu instalazioaren ondoren."
-
-#: ../../standalone/drakgw_.c:328
+#: ../../standalone/drakgw_.c:315
msgid "Configuring..."
msgstr "Konfiguratzen..."
-#: ../../standalone/drakgw_.c:329
+#: ../../standalone/drakgw_.c:316
msgid "Configuring scripts, installing software, starting servers..."
msgstr ""
"Script-ak konfiguratzen, softwarea instalatzen, zerbitzariak abiarazten..."
-#: ../../standalone/drakgw_.c:365
+#: ../../standalone/drakgw_.c:352
#, c-format
msgid "Problems installing package %s"
msgstr "Arazoa %s paketea instalatzean"
-#: ../../standalone/drakgw_.c:549
+#: ../../standalone/drakgw_.c:485
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
@@ -12514,23 +13022,23 @@ msgstr ""
"Orain Interneteko konexioa konparti dezakezu sare lokaleko beste ordenagailu "
"batzuekin, sare-konfigurazio automatikoa (DHCP) erabiliz."
-#: ../../standalone/drakgw_.c:566
+#: ../../standalone/drakgw_.c:504
msgid "The setup has already been done, but it's currently disabled."
msgstr "Konfigurazioa eginda dago, baina orain desgaituta dago."
-#: ../../standalone/drakgw_.c:567
+#: ../../standalone/drakgw_.c:505
msgid "The setup has already been done, and it's currently enabled."
msgstr "Konfigurazioa eginda dago, eta orain gaituta dago."
-#: ../../standalone/drakgw_.c:568
+#: ../../standalone/drakgw_.c:506
msgid "No Internet Connection Sharing has ever been configured."
msgstr "Interneteko konexioa konpartitzea ez da inoiz konfiguratu."
-#: ../../standalone/drakgw_.c:573
+#: ../../standalone/drakgw_.c:511
msgid "Internet connection sharing configuration"
msgstr "Interneteko konexioa konpartitzeko konfigurazioa"
-#: ../../standalone/drakgw_.c:580
+#: ../../standalone/drakgw_.c:518
#, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -12545,6 +13053,168 @@ msgstr ""
"\n"
"Egin klik 'Konfiguratu'n instalazio-morroia abiarazteko."
+#: ../../standalone/draksound_.c:46
+#, fuzzy
+msgid "No Sound Card detected!"
+msgstr "Ez da TB txartelik aurkitu!"
+
+#: ../../standalone/draksound_.c:47
+#, fuzzy
+msgid ""
+"No Sound Card has been detected on your machine. Please verify that a Linux-"
+"supported Sound Card is correctly plugged in.\n"
+"\n"
+"\n"
+"You can visit our hardware database at:\n"
+"\n"
+"\n"
+"http://www.linux-mandrake.com/en/hardware.php3"
+msgstr ""
+"Zure makinan ez da TB txartelik aurkitu. Ziurtatu Linux-ek onartzen duen "
+"Bideo/TB txartela ondo konektatuta dagoela.\n"
+"\n"
+"\n"
+"Gure hardware datubasea bisitatu dezakezu:\n"
+"\n"
+"\n"
+"http://www.linux-mandrake.com/en/hardware.php3"
+
+#: ../../standalone/draksplash_.c:32
+msgid "package ImageMagick is required for correct working"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:76
+#, fuzzy
+msgid "first step creation"
+msgstr "abioko disketea sortu"
+
+#: ../../standalone/draksplash_.c:77
+#, fuzzy
+msgid "final resolution"
+msgstr "Bereizmena"
+
+#: ../../standalone/draksplash_.c:78 ../../standalone/draksplash_.c:170
+#, fuzzy
+msgid "choose image file"
+msgstr "Aukeratu fitxategi bat"
+
+#: ../../standalone/draksplash_.c:79
+#, fuzzy
+msgid "Theme name"
+msgstr "Konpartitze-izena"
+
+#: ../../standalone/draksplash_.c:81
+msgid "make bootsplash step 2"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:82
+#, fuzzy
+msgid "go to lilosplash configuration"
+msgstr "Instalazio-ondorengo konfigurazioa"
+
+#: ../../standalone/draksplash_.c:83
+#, fuzzy
+msgid "quit"
+msgstr "Irten"
+
+#: ../../standalone/draksplash_.c:84
+#, fuzzy
+msgid "save theme"
+msgstr "Instalatu gaiak"
+
+#: ../../standalone/draksplash_.c:85
+msgid "browse"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:98 ../../standalone/draksplash_.c:159
+#, fuzzy
+msgid "Configure bootsplash picture"
+msgstr "Ezin da Bootsplash aurreikuspena sortu"
+
+#: ../../standalone/draksplash_.c:99
+msgid "x coordinate of text box in number of character"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:100
+msgid "y coordinate of text box in number of character"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:101
+msgid "text width"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:102
+msgid "text box height"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:103
+msgid "the progress bar x coordinate of its upper left corner"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:104
+msgid "the progress bar y coordinate of its upper left corner"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:105
+msgid "the width of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:106
+msgid "the heigth of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:107
+msgid "the color of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:119
+#, fuzzy
+msgid "go back"
+msgstr "Atzera-begizta"
+
+#: ../../standalone/draksplash_.c:120
+#, fuzzy
+msgid "preview"
+msgstr "gailua"
+
+#: ../../standalone/draksplash_.c:121
+#, fuzzy
+msgid "choose color"
+msgstr "Aukeratu monitorea"
+
+#: ../../standalone/draksplash_.c:124
+#, fuzzy
+msgid "Display logo on Console"
+msgstr "Erakutsi gaia kontsolapean"
+
+#: ../../standalone/draksplash_.c:125
+msgid "Make kernel message quiet by default"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:161 ../../standalone/draksplash_.c:330
+#, c-format
+msgid "This theme haven't yet any bootsplash in %s !"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:213
+msgid "saving Bootsplash theme..."
+msgstr ""
+
+#: ../../standalone/draksplash_.c:436
+#, fuzzy
+msgid "ProgressBar color selection"
+msgstr "Inprimagailu-modeloaren hautapena"
+
+#: ../../standalone/draksplash_.c:454
+#, fuzzy
+msgid "You must choose an image file first!"
+msgstr "Inprimagailua/gailua aukeratu/adierazi behar duzu!"
+
+#: ../../standalone/draksplash_.c:463
+#, fuzzy
+msgid "Generating preview ..."
+msgstr "Gailuak detektatzen..."
+
#: ../../standalone/drakxtv_.c:49
#, fuzzy
msgid ""
@@ -12644,11 +13314,11 @@ msgstr ""
"zure TB araua eta estatua"
#: ../../standalone/drakxtv_.c:109
-msgid "TV norm :"
+msgid "TV norm:"
msgstr "TB araua :"
#: ../../standalone/drakxtv_.c:110
-msgid "Area :"
+msgid "Area:"
msgstr "Area :"
#: ../../standalone/drakxtv_.c:114
@@ -12731,7 +13401,7 @@ msgstr "Ezin da bertsio-berritzea abiarazi!!!\n"
msgid "The change is done, but to be effective you must logout"
msgstr "Aldaketa egin da, baina, eragina izan dezan, saioa amaitu behar duzu"
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:517
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:515
msgid "logdrake"
msgstr "logdrake"
@@ -12909,8 +13579,9 @@ msgid "service setting"
msgstr "zerbitzuaren ezarpena"
#: ../../standalone/logdrake_.c:431
+#, fuzzy
msgid ""
-"You will receive an alert if one of the selected service is no more running"
+"You will receive an alert if one of the selected services is no more running"
msgstr "Hautatutako zerbitzuetakoren bat martxan ez badago, abisua jasoko duzu"
#: ../../standalone/logdrake_.c:443
@@ -12930,19 +13601,19 @@ msgstr "abisu-konfigurazioa"
msgid "Please enter your email address below "
msgstr "Sartu pasahitza"
-#: ../../standalone/logdrake_.c:499
+#: ../../standalone/logdrake_.c:497
msgid "Save as.."
msgstr "Gorde honela.."
-#: ../../standalone/mousedrake_.c:43
+#: ../../standalone/mousedrake_.c:45
msgid "Please, choose the type of your mouse."
msgstr "Aukeratu sagu-mota."
-#: ../../standalone/mousedrake_.c:57
+#: ../../standalone/mousedrake_.c:58
msgid "Emulate third button?"
msgstr "Hirugarren botoia emulatu?"
-#: ../../standalone/printerdrake_.c:48
+#: ../../standalone/printerdrake_.c:57
msgid "Reading printer data ..."
msgstr "Inprimagailu-datuak irakurtzen..."
@@ -12954,21 +13625,32 @@ msgstr "Gailuak detektatzen..."
msgid "Test ports"
msgstr "Probatu atakak"
-#: ../../standalone/scannerdrake_.c:52
+#: ../../standalone/scannerdrake_.c:53 ../../standalone/scannerdrake_.c:68
+#: ../../standalone/scannerdrake_.c:81
#, c-format
-msgid "%s found on %s, configure it ?"
+msgid "The %s is not supported by this version of Mandrake Linux."
+msgstr ""
+
+#: ../../standalone/scannerdrake_.c:56
+#, fuzzy, c-format
+msgid "%s found on %s, configure it?"
msgstr "%s aurkitu da hemen: %s. Konfiguratu nahi duzu ?"
#: ../../standalone/scannerdrake_.c:59
+#, c-format
+msgid "%s is not in the scanner database, configure it manually?"
+msgstr ""
+
+#: ../../standalone/scannerdrake_.c:65
msgid "Select a scanner"
msgstr "Hautatu eskaner bat"
-#: ../../standalone/scannerdrake_.c:79
+#: ../../standalone/scannerdrake_.c:93
#, c-format
msgid "This %s scanner is unsupported"
msgstr "%s eskaner hori ez da onartzen"
-#: ../../standalone/scannerdrake_.c:93
+#: ../../standalone/scannerdrake_.c:107
#, c-format
msgid ""
"Scannerdrake was not able to detect your %s scanner.\n"
@@ -12977,11 +13659,11 @@ msgstr ""
"Scannerdrake-k ezin izan du zure %s eskanerra detektatu.\n"
"Mesedez aukeratu zure eskanerra konektatuta dagoen gailua"
-#: ../../standalone/scannerdrake_.c:95
+#: ../../standalone/scannerdrake_.c:109
msgid "choose device"
msgstr "Aukeratu gailua"
-#: ../../standalone/scannerdrake_.c:101
+#: ../../standalone/scannerdrake_.c:115
#, c-format
msgid ""
"This %s scanner must be configured by printerdrake.\n"
@@ -12992,7 +13674,7 @@ msgstr ""
"Mandrake Kontrol Zentroko Hardwarearen ataletik abiaraz dezakezu "
"printerdrake."
-#: ../../standalone/scannerdrake_.c:106
+#: ../../standalone/scannerdrake_.c:120
#, c-format
msgid ""
"Your %s scanner has been configured.\n"
@@ -13003,12 +13685,12 @@ msgstr ""
"Dokumentuak eskaneatu ditzakezu orain aplikazio menuan Multimedia/Grafikoak "
"barruan \"XSane\" erabiliz."
-#: ../../standalone/service_harddrake_.c:57
+#: ../../standalone/service_harddrake_.c:39
#, c-format
msgid "Some devices in the \"%s\" hardware class were removed:\n"
msgstr "Zenbait gailu \"%s\" hardware motan ezabatu egin dira:\n"
-#: ../../standalone/service_harddrake_.c:61
+#: ../../standalone/service_harddrake_.c:43
#, c-format
msgid ""
"\n"
@@ -13017,36 +13699,6 @@ msgstr ""
"\n"
"%s motako zenbait gailu gehitu dira:\n"
-#: ../../standalone/tinyfirewall_.c:30
-msgid "Firewalling Configuration"
-msgstr "Suebakiaren konfigurazioa"
-
-#: ../../standalone/tinyfirewall_.c:43
-msgid "Firewalling configuration"
-msgstr "Suebakiaren konfigurazioa"
-
-#: ../../standalone/tinyfirewall_.c:78
-msgid ""
-"Firewalling\n"
-"\n"
-"You already have set up a firewall.\n"
-"Click on Configure to change or remove the firewall"
-msgstr ""
-"Suebakia\n"
-"\n"
-"Jadanik konfiguratu duzu suebaki bat.\n"
-"Suebakia aldatzeko edo kentzeko, egin klik 'Konfiguratu'n"
-
-#: ../../standalone/tinyfirewall_.c:82
-msgid ""
-"Firewalling\n"
-"\n"
-"Click on Configure to set up a standard firewall"
-msgstr ""
-"Suebakia\n"
-"\n"
-"Suebaki estandar bat konfiguratzeko, egin klik 'Konfiguratu'n"
-
#: ../../steps.pm_.c:14
msgid "Choose your language"
msgstr "Aukeratu hizkuntza"
@@ -13119,225 +13771,7 @@ msgstr "Instalatu sistema-eguneratzeak"
msgid "Exit install"
msgstr "Irten instalaziotik"
-#: ../../tinyfirewall.pm_.c:9
-msgid ""
-"tinyfirewall configurator\n"
-"\n"
-"This configures a personal firewall for this Mandrake Linux machine.\n"
-"For a powerful dedicated firewall solution, please look to the\n"
-"specialized MandrakeSecurity Firewall distribution."
-msgstr ""
-"tinyfirewall konfiguratzailea\n"
-"\n"
-"Mandrake Linux makina honetarako suebaki pertsonala konfiguratzen du.\n"
-"Suebaki ahaltsuagoa nahi baduzu, begiratu MandrakeSecurity Firewall \n"
-"banaketa espezializatua."
-
-#: ../../tinyfirewall.pm_.c:14
-msgid ""
-"We'll now ask you questions about which services you'd like to allow\n"
-"the Internet to connect to. Please think carefully about these\n"
-"questions, as your computer's security is important.\n"
-"\n"
-"Please, if you're not currently using one of these services, firewall\n"
-"it off. You can change this configuration anytime you like by\n"
-"re-running this application!"
-msgstr ""
-"Orain galdera batzuk egingo dizkizugu, Interneteko zein zerbitzutara \n"
-"konektatu nahi duzun jakiteko. Ongi pentsatu erantzun aurretik, \n"
-"zure ordenagailuaren segurtasuna garrantzitsua baita.\n"
-"\n"
-"Horietako zerbitzuren bat erabiltzen ez baduzu, desaktiba\n"
-"ezazu. Konfigurazio hau nahi duzunean alda dezakezu,\n"
-"aplikazio hau berriro exekutatuz!"
-
-#: ../../tinyfirewall.pm_.c:21
-msgid ""
-"Are you running a web server on this machine that you need the whole\n"
-"Internet to see? If you are running a webserver that only needs to be\n"
-"accessed by this machine, you can safely answer NO here.\n"
-"\n"
-msgstr ""
-"Internet osotik ikusi behar den web zerbitzari bat daukazu martxan\n"
-"makina honetan? Makina honetatik bakarrik erabili behar den web zerbitzari\n"
-"bat badaukazu, lasai erantzun dezakezu EZ hemen.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:26
-msgid ""
-"Are you running a name server on this machine? If you didn't set one\n"
-"up to give away IP and zone information to the whole Internet, please\n"
-"answer no.\n"
-"\n"
-msgstr ""
-"Izen-zerbitzari bat erabiltzen duzu makina honetan? Izen-zerbitzaririk ez \n"
-"badaukazu ezarrita IP eta zonako informazioa emateko Internet osorako,\n"
-"erantzun EZ.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:31
-msgid ""
-"Do you want to allow incoming Secure Shell (ssh) connections? This\n"
-"is a telnet-replacement that you might use to login. If you're using\n"
-"telnet now, you should definitely switch to ssh. telnet is not\n"
-"encrypted -- so some attackers can steal your password if you use\n"
-"it. ssh is encrypted and doesn't allow for this eavesdropping."
-msgstr ""
-"Secure Shell (ssh) konexioei sartzeko baimena eman nahi diezu? \n"
-"Telnet-en ordezkoa da, urruneko makinetan sartzeko erabil dezakezuna. \n"
-"telnet erabiltzen baduzu, ssh-ra aldatu behar duzu zalantzarik gabe. \n"
-"telnet ez dago enkriptatuta - hortaz, erasotzaileek zure pasahitza lapur \n"
-"dezakete. ssh enkriptatuta dago eta beraz ezin da harrapatu."
-
-#: ../../tinyfirewall.pm_.c:36
-msgid ""
-"Do you want to allow incoming telnet connections?\n"
-"This is horribly unsafe, as we explained in the previous screen. We\n"
-"strongly recommend answering No here and using ssh in place of\n"
-"telnet.\n"
-msgstr ""
-"telnet konexioei sartzen utzi nahi diezu?\n"
-"Hori ez da batere batere segurua, aurreko pantailan azaldu dugunez. \n"
-"Biziki gomendatzen dugu hemen EZ erantzutea eta telnet-en ordez ssh\n"
-"erabiltzea.\n"
-
-#: ../../tinyfirewall.pm_.c:41
-msgid ""
-"Are you running an FTP server here that you need accessible to the\n"
-"Internet? If you are, we strongly recommend that you only use it for\n"
-"Anonymous transfers. Any passwords sent by FTP can be stolen by some\n"
-"attackers, since FTP also uses no encryption for transferring passwords.\n"
-msgstr ""
-"Internetetik ikusi behar den FTP zerbitzaririk erabiltzen duzu?\n"
-"Horrela bada, biziki gomendatzen dizugu transferentzia anonimoetarako\n"
-"bakarrik erabiltzea. FTP bidez bidalitako pasahitzak lapurtu egin "
-"ditzakete,\n"
-"FTPk ere ez baitu enkriptatzerik erabiltzen pasahitzak transferitzeko.\n"
-
-#: ../../tinyfirewall.pm_.c:46
-msgid ""
-"Are you running a mail server here? If you're sending you \n"
-"messages through pine, mutt or any other text-based mail client,\n"
-"you probably are. Otherwise, you should firewall this off.\n"
-"\n"
-msgstr ""
-"Posta-zerbitzaririk baduzu martxan hemen? Mezuak pine, mutt edo\n"
-"testuan oinarritutako beste posta-bezeroren baten bidez bidaltzen\n"
-"badituzu, ziur aski izango duzu. Bestela, desaktibatzea komeni da.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:51
-msgid ""
-"Are you running a POP or IMAP server here? This would\n"
-"be used to host non-web-based mail accounts for people via \n"
-"this machine.\n"
-"\n"
-msgstr ""
-"POP edo IMAP zerbitzaririk baduzu hemen? \n"
-"Web-ean oinarritu gabeko posta-kontuen ostalari izateko \n"
-"erabiltzen da hau.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:56
-msgid ""
-"You appear to be running a 2.2 kernel. If your network IP\n"
-"is automatically set by a computer in your home or office \n"
-"(dynamically assigned), we need to allow for this. Is\n"
-"this the case?\n"
-msgstr ""
-"Badirudi 2.2 bertsioko nukleoa erabiltzen duzula. Zure sarearen \n"
-"IP helbidea automatikoki ezartzen badu zure etxeko edo \n"
-"bulegoko ordenagailu batek (dinamikoki esleituta), onartu \n"
-"egin beharko dugu. Horrela da?\n"
-
-#: ../../tinyfirewall.pm_.c:61
-msgid ""
-"Is your computer getting time syncronized to another computer?\n"
-"Mostly, this is used by medium-large Unix/Linux organizations\n"
-"to synchronize time for logging and such. If you're not part\n"
-"of a larger office and haven't heard of this, you probably \n"
-"aren't."
-msgstr ""
-"Zure ordenagailua beste batekin sinkronizatuta dabil?\n"
-"Nagusiki, hori Unix/Linux antolamendu ertain eta handiek \n"
-"erabiltzen dute, konexio-orduak sinkronizatzeko eta horrelakoetarako. "
-"Bulego handi batean ari ez bazara eta \n"
-"honelako konturik entzun ez baduzu, ziur aski ez zara\n"
-"inorekin sinkronizatuta egongo."
-
-#: ../../tinyfirewall.pm_.c:66
-msgid ""
-"Configuration complete. May we write these changes to disk?\n"
-"\n"
-"\n"
-"\n"
-msgstr ""
-"Konfigurazioa osatu da. Diskoan idatziko ditugu aldaketak?\n"
-"\n"
-"\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:82
-#, c-format
-msgid "Can't open %s: %s\n"
-msgstr "Ezin da %s ireki: %s\n"
-
-#: ../../tinyfirewall.pm_.c:84
-#, c-format
-msgid "Can't open %s for writing: %s\n"
-msgstr "Ezin da %s idazteko ireki: %s\n"
-
-#: ../../tinyfirewall.pm_.c:178
-msgid "No I don't need DHCP"
-msgstr "Ez, ez dut DHCP behar"
-
-#: ../../tinyfirewall.pm_.c:178
-msgid "Yes I need DHCP"
-msgstr "Bai, DHCP behar dut"
-
-#: ../../tinyfirewall.pm_.c:179
-msgid "No I don't need NTP"
-msgstr "Ez, ez dut NTP behar"
-
-#: ../../tinyfirewall.pm_.c:179
-msgid "Yes I need NTP"
-msgstr "Bai, NTP behar dut"
-
-#: ../../tinyfirewall.pm_.c:180 ../../tinyfirewall.pm_.c:184
-msgid "Don't Save"
-msgstr "Ez gorde"
-
-#: ../../tinyfirewall.pm_.c:180 ../../tinyfirewall.pm_.c:184
-#: ../../tinyfirewall.pm_.c:204
-msgid "Save & Quit"
-msgstr "Gorde eta irten"
-
-#: ../../tinyfirewall.pm_.c:195 ../../tinyfirewall.pm_.c:199
-msgid "Firewall Configuration Wizard"
-msgstr "Suebakia konfiguratzeko morroia"
-
-#: ../../tinyfirewall.pm_.c:197
-msgid "No (firewall this off from the internet)"
-msgstr "Ez (egin suebakia Internetetik)"
-
-#: ../../tinyfirewall.pm_.c:198
-msgid "Yes (allow this through the firewall)"
-msgstr "Bai (onartu hau suebakian zehar)"
-
-#: ../../tinyfirewall.pm_.c:230
-msgid "Please Wait... Verifying installed packages"
-msgstr "Itxaron... instalatutako paketeak egiaztatzen"
-
-#: ../../tinyfirewall.pm_.c:236
-#, c-format
-msgid ""
-"Failure installing the needed packages : %s and Bastille.\n"
-" Try to install them manually."
-msgstr ""
-"Huts egin du beharrezko pakete hauek instalatzean: %s eta Bastille.\n"
-" Saiatu eskuz instalatzen."
-
-#: ../../ugtk.pm_.c:619
+#: ../../ugtk.pm_.c:594
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
@@ -13471,6 +13905,10 @@ msgid "Graphical Environment"
msgstr "Ingurune grafikoa"
#: ../../share/compssUsers:999
+msgid "Development"
+msgstr "Garapena"
+
+#: ../../share/compssUsers:999
msgid "Apache, Pro-ftpd"
msgstr "Apache, Pro-ftpd"
@@ -13583,45 +14021,328 @@ msgstr "Multimedia - CD grabatzea"
msgid "Scientific Workstation"
msgstr "Lan-estazio zientifikoa"
-#~ msgid "$mode: $warning"
-#~ msgstr "$mode: $warning"
+#~ msgid ""
+#~ "The first time you try the X configuration, you may not be very "
+#~ "satisfied\n"
+#~ "with its display (screen is too small, shifted left or right...). Hence,\n"
+#~ "even if X starts up correctly, DrakX then asks you if the configuration\n"
+#~ "suits you. It will also propose to change it by displaying a list of "
+#~ "valid\n"
+#~ "modes it could find, asking you to select one.\n"
+#~ "\n"
+#~ "As a last resort, if you still cannot get X to work, choose \"Change\n"
+#~ "graphics card\", select \"Unlisted card\", and when prompted on which\n"
+#~ "server, choose \"FBDev\". This is a failsafe option which works with any\n"
+#~ "modern graphics card. Then choose \"Test again\" to be sure."
+#~ msgstr ""
+#~ "X konfigurazioa probatzen duzun lehen aldian, baliteke oso pozik ez\n"
+#~ "geratzea ikusten denarekin (pantaila txikiegia, ezkerrera edo eskuinera\n"
+#~ "lerratua...). Beraz, X ongi abiarazten bada ere, konfigurazioa zuretzat\n"
+#~ "egokia den galdetuko dizu DrakXk gero. Aldatzea ere proposatuko dizu "
+#~ "aurki\n"
+#~ "ditzakeen baliozko moduen zerrenda bistaratuz eta bat hautatzeko "
+#~ "eskatuz.\n"
+#~ "\n"
+#~ "Azken baliabide gisa, Xk funtzionatzea lortzen ez baduzu, aukeratu "
+#~ "\"Aldatu\n"
+#~ "txartel grafikoa\", hautatu \"Zerrendatu gabeko txartela\", eta zein\n"
+#~ "zerbitzari nahi duzun galdetzean, aukeratu \"FBDev\". Hau aukera segurua\n"
+#~ "da, edozein txartel grafiko modernorekin funtzionatzen duena. Gero "
+#~ "aukeratu\n"
+#~ "\"Probatu berriro\" ziur egoteko."
+
+#~ msgid "Internet and Messaging"
+#~ msgstr "Internet eta mezularitza"
+
+#~ msgid "Multimedia and Graphics"
+#~ msgstr "Multimedia eta grafikoak"
-#, fuzzy
#~ msgid ""
-#~ "This level is to be used with care. It makes your system more easy to "
-#~ "use,\n"
-#~ " but very sensitive: it must not be used for a machine "
-#~ "connected to others\n"
-#~ " or to the Internet. There is no password access."
+#~ "Mandrake Linux 8.2 provides 11 different graphical desktop environments "
+#~ "and window managers to choose from including GNOME 1.4, KDE 2.2.2, Window "
+#~ "Maker 0.8, and the rest"
#~ msgstr ""
-#~ "Maila hau kontuz erabili behar da. Sistema erabilerrazagoa izango da, "
-#~ "baina\n"
-#~ "oso erraz erasotzekoa: ez da erabili behar beste ordenagailu batzuekin "
-#~ "edo \n"
-#~ "Internetekin konektatuta dauden makinetan. Ez dago pasahitzik."
+#~ "Mandrake Linux 8.2k 11 mahaigaineko ingurune grafiko eta leiho-"
+#~ "kudeatzaile desberdin ematen ditu aukeran, horien artean, GNOME 1.4, KDE "
+#~ "2.2.2, Window Maker 0.8, eta abar"
+
+#~ msgid "Server Software"
+#~ msgstr "Zerbitzari-softwarea"
+
+#~ msgid "MandrakeCampus"
+#~ msgstr "MandrakeCampus"
-#, fuzzy
#~ msgid ""
-#~ "With this security level, the use of this system as a server becomes "
-#~ "possible.\n"
-#~ " The security is now high enough to use the system as a "
-#~ "server which can accept\n"
-#~ " connections from many clients. Note: if your machine is "
-#~ "only a client on the Internet, you should choose a lower level."
+#~ "Would you like to learn Linux simply, quickly, and for free? MandrakeSoft "
+#~ "provides free Linux training, as well as a way to test your progress, at "
+#~ "MandrakeCampus -- our online training center"
#~ msgstr ""
-#~ "Segurtasun-maila honekin, sistema hau erabil liteke zerbitzari gisa.\n"
-#~ "Segurtasun hau nahikoa da sistema bezero askoren konexioak onartzen "
-#~ "dituen \n"
-#~ "zerbitzari gisa erabili ahal izateko. Oharra: zure makina Interneteko "
-#~ "bezero soila bada, hobe duzu maila apalagoa."
+#~ "Linux erabiltzen ikasi nahi duzu erraz, bizkor, eta doan? MandrakeSoft-ek "
+#~ "Linux ikasteko doako zerbitzua eskaintzen dugu, zure aurrerapena neurtuz, "
+#~ "MandrakeCampus lineako trebakuntza-zentroaren bidez"
-#, fuzzy
-#~ msgid "Basic Options"
-#~ msgstr "Aukerak"
+#~ msgid ""
+#~ "Quality support from the Linux Community, and from MandrakeSoft, is just "
+#~ "around the corner. And if you're already a Linux veteran, become an "
+#~ "\"Expert\" and share your knowledge at our support website"
+#~ msgstr ""
+#~ "Kalitatezko laguntza-zerbitzua eskaintzen dute Linux komunitateak eta "
+#~ "MandrakeSoft-ek, eta hortxe bertan duzu. Linux-en beteranoa bazara, egin "
+#~ "zaitez \"Aditu\", eta konpartitu zure jakituria eta gure laguntzako web "
+#~ "gunea "
-#, fuzzy
-#~ msgid "Security Checks"
-#~ msgstr "Segurtasuna"
+#~ msgid "MandrakeConsulting"
+#~ msgstr "MandrakeConsulting"
+
+#~ msgid ""
+#~ "For all of your IT projects, our consultants are ready to analyze your "
+#~ "requirements and offer a customized solution. Benefit from MandrakeSoft's "
+#~ "vast experience as a Linux producer to provide a true IT alternative for "
+#~ "your business organization"
+#~ msgstr ""
+#~ "Zure IT proiektuetarako, hor dituzu gure aholkulariak, zure premiak "
+#~ "ulertu eta konponbide pertsonalizatua emateko prest. MandrakeSoft-ek, "
+#~ "Linux ekoizle gisa duen esperientzia handiarekin, benetako IT alternatiba "
+#~ "ematen du enpresa-antolamendurako"
+
+#~ msgid "MandrakeStore"
+#~ msgstr "MandrakeStore"
+
+#~ msgid ""
+#~ "For more information on MandrakeSoft's Professional Services and "
+#~ "commercial offerings, please see the following web page:"
+#~ msgstr ""
+#~ "MandrakeSoft-en Zerbitzu Profesionalei eta eskaintza komertzialei buruzko "
+#~ "informazioa nahi baduzu, ikus web orri hau:"
+
+#~ msgid "LBA (doesn't work on old BIOSes)"
+#~ msgstr "LBA (ez du funtzionatzen BIOS zaharretan)"
+
+#~ msgid "You don't have any partitions!"
+#~ msgstr "Ez duzu partiziorik!"
+
+#~ msgid ""
+#~ "DiskDrake failed to read correctly the partition table.\n"
+#~ "Continue at your own risk!"
+#~ msgstr ""
+#~ "DiskDrake-k ezin izan du partizio-taula behar bezala irakurri.\n"
+#~ "Jarraitu zure ardurapean!"
+
+#~ msgid ""
+#~ "I can't read your partition table, it's too corrupted for me :(\n"
+#~ "I'll try to go on blanking bad partitions"
+#~ msgstr ""
+#~ "Ezin dut zure partizio-taula irakurri, hondatuegia dago :(\n"
+#~ "Partizio txarrak garbitzen saiatuko naiz"
+
+#~ msgid ""
+#~ "Please Build backup before to restore it...\n"
+#~ " or verify that your path to save is correct."
+#~ msgstr ""
+#~ "Egin babeskopia leheneratu aurretik...\n"
+#~ " edo egiaztatu gordetzeko bidea zuzena dela."
+
+#~ msgid "Firewalling Configuration"
+#~ msgstr "Suebakiaren konfigurazioa"
+
+#~ msgid "Firewalling configuration"
+#~ msgstr "Suebakiaren konfigurazioa"
+
+#~ msgid ""
+#~ "Firewalling\n"
+#~ "\n"
+#~ "You already have set up a firewall.\n"
+#~ "Click on Configure to change or remove the firewall"
+#~ msgstr ""
+#~ "Suebakia\n"
+#~ "\n"
+#~ "Jadanik konfiguratu duzu suebaki bat.\n"
+#~ "Suebakia aldatzeko edo kentzeko, egin klik 'Konfiguratu'n"
+
+#~ msgid ""
+#~ "Firewalling\n"
+#~ "\n"
+#~ "Click on Configure to set up a standard firewall"
+#~ msgstr ""
+#~ "Suebakia\n"
+#~ "\n"
+#~ "Suebaki estandar bat konfiguratzeko, egin klik 'Konfiguratu'n"
+
+#~ msgid ""
+#~ "We'll now ask you questions about which services you'd like to allow\n"
+#~ "the Internet to connect to. Please think carefully about these\n"
+#~ "questions, as your computer's security is important.\n"
+#~ "\n"
+#~ "Please, if you're not currently using one of these services, firewall\n"
+#~ "it off. You can change this configuration anytime you like by\n"
+#~ "re-running this application!"
+#~ msgstr ""
+#~ "Orain galdera batzuk egingo dizkizugu, Interneteko zein zerbitzutara \n"
+#~ "konektatu nahi duzun jakiteko. Ongi pentsatu erantzun aurretik, \n"
+#~ "zure ordenagailuaren segurtasuna garrantzitsua baita.\n"
+#~ "\n"
+#~ "Horietako zerbitzuren bat erabiltzen ez baduzu, desaktiba\n"
+#~ "ezazu. Konfigurazio hau nahi duzunean alda dezakezu,\n"
+#~ "aplikazio hau berriro exekutatuz!"
+
+#~ msgid ""
+#~ "Are you running a web server on this machine that you need the whole\n"
+#~ "Internet to see? If you are running a webserver that only needs to be\n"
+#~ "accessed by this machine, you can safely answer NO here.\n"
+#~ "\n"
+#~ msgstr ""
+#~ "Internet osotik ikusi behar den web zerbitzari bat daukazu martxan\n"
+#~ "makina honetan? Makina honetatik bakarrik erabili behar den web "
+#~ "zerbitzari\n"
+#~ "bat badaukazu, lasai erantzun dezakezu EZ hemen.\n"
+#~ "\n"
+
+#~ msgid ""
+#~ "Are you running a name server on this machine? If you didn't set one\n"
+#~ "up to give away IP and zone information to the whole Internet, please\n"
+#~ "answer no.\n"
+#~ "\n"
+#~ msgstr ""
+#~ "Izen-zerbitzari bat erabiltzen duzu makina honetan? Izen-zerbitzaririk "
+#~ "ez \n"
+#~ "badaukazu ezarrita IP eta zonako informazioa emateko Internet osorako,\n"
+#~ "erantzun EZ.\n"
+#~ "\n"
+
+#~ msgid ""
+#~ "Do you want to allow incoming Secure Shell (ssh) connections? This\n"
+#~ "is a telnet-replacement that you might use to login. If you're using\n"
+#~ "telnet now, you should definitely switch to ssh. telnet is not\n"
+#~ "encrypted -- so some attackers can steal your password if you use\n"
+#~ "it. ssh is encrypted and doesn't allow for this eavesdropping."
+#~ msgstr ""
+#~ "Secure Shell (ssh) konexioei sartzeko baimena eman nahi diezu? \n"
+#~ "Telnet-en ordezkoa da, urruneko makinetan sartzeko erabil dezakezuna. \n"
+#~ "telnet erabiltzen baduzu, ssh-ra aldatu behar duzu zalantzarik gabe. \n"
+#~ "telnet ez dago enkriptatuta - hortaz, erasotzaileek zure pasahitza "
+#~ "lapur \n"
+#~ "dezakete. ssh enkriptatuta dago eta beraz ezin da harrapatu."
+
+#~ msgid ""
+#~ "Do you want to allow incoming telnet connections?\n"
+#~ "This is horribly unsafe, as we explained in the previous screen. We\n"
+#~ "strongly recommend answering No here and using ssh in place of\n"
+#~ "telnet.\n"
+#~ msgstr ""
+#~ "telnet konexioei sartzen utzi nahi diezu?\n"
+#~ "Hori ez da batere batere segurua, aurreko pantailan azaldu dugunez. \n"
+#~ "Biziki gomendatzen dugu hemen EZ erantzutea eta telnet-en ordez ssh\n"
+#~ "erabiltzea.\n"
+
+#~ msgid ""
+#~ "Are you running an FTP server here that you need accessible to the\n"
+#~ "Internet? If you are, we strongly recommend that you only use it for\n"
+#~ "Anonymous transfers. Any passwords sent by FTP can be stolen by some\n"
+#~ "attackers, since FTP also uses no encryption for transferring passwords.\n"
+#~ msgstr ""
+#~ "Internetetik ikusi behar den FTP zerbitzaririk erabiltzen duzu?\n"
+#~ "Horrela bada, biziki gomendatzen dizugu transferentzia anonimoetarako\n"
+#~ "bakarrik erabiltzea. FTP bidez bidalitako pasahitzak lapurtu egin "
+#~ "ditzakete,\n"
+#~ "FTPk ere ez baitu enkriptatzerik erabiltzen pasahitzak transferitzeko.\n"
+
+#~ msgid ""
+#~ "Are you running a mail server here? If you're sending you \n"
+#~ "messages through pine, mutt or any other text-based mail client,\n"
+#~ "you probably are. Otherwise, you should firewall this off.\n"
+#~ "\n"
+#~ msgstr ""
+#~ "Posta-zerbitzaririk baduzu martxan hemen? Mezuak pine, mutt edo\n"
+#~ "testuan oinarritutako beste posta-bezeroren baten bidez bidaltzen\n"
+#~ "badituzu, ziur aski izango duzu. Bestela, desaktibatzea komeni da.\n"
+#~ "\n"
+
+#~ msgid ""
+#~ "Are you running a POP or IMAP server here? This would\n"
+#~ "be used to host non-web-based mail accounts for people via \n"
+#~ "this machine.\n"
+#~ "\n"
+#~ msgstr ""
+#~ "POP edo IMAP zerbitzaririk baduzu hemen? \n"
+#~ "Web-ean oinarritu gabeko posta-kontuen ostalari izateko \n"
+#~ "erabiltzen da hau.\n"
+#~ "\n"
+
+#~ msgid ""
+#~ "You appear to be running a 2.2 kernel. If your network IP\n"
+#~ "is automatically set by a computer in your home or office \n"
+#~ "(dynamically assigned), we need to allow for this. Is\n"
+#~ "this the case?\n"
+#~ msgstr ""
+#~ "Badirudi 2.2 bertsioko nukleoa erabiltzen duzula. Zure sarearen \n"
+#~ "IP helbidea automatikoki ezartzen badu zure etxeko edo \n"
+#~ "bulegoko ordenagailu batek (dinamikoki esleituta), onartu \n"
+#~ "egin beharko dugu. Horrela da?\n"
+
+#~ msgid ""
+#~ "Is your computer getting time syncronized to another computer?\n"
+#~ "Mostly, this is used by medium-large Unix/Linux organizations\n"
+#~ "to synchronize time for logging and such. If you're not part\n"
+#~ "of a larger office and haven't heard of this, you probably \n"
+#~ "aren't."
+#~ msgstr ""
+#~ "Zure ordenagailua beste batekin sinkronizatuta dabil?\n"
+#~ "Nagusiki, hori Unix/Linux antolamendu ertain eta handiek \n"
+#~ "erabiltzen dute, konexio-orduak sinkronizatzeko eta horrelakoetarako. "
+#~ "Bulego handi batean ari ez bazara eta \n"
+#~ "honelako konturik entzun ez baduzu, ziur aski ez zara\n"
+#~ "inorekin sinkronizatuta egongo."
+
+#~ msgid ""
+#~ "Configuration complete. May we write these changes to disk?\n"
+#~ "\n"
+#~ "\n"
+#~ "\n"
+#~ msgstr ""
+#~ "Konfigurazioa osatu da. Diskoan idatziko ditugu aldaketak?\n"
+#~ "\n"
+#~ "\n"
+#~ "\n"
+
+#~ msgid "Can't open %s for writing: %s\n"
+#~ msgstr "Ezin da %s idazteko ireki: %s\n"
+
+#~ msgid "No I don't need DHCP"
+#~ msgstr "Ez, ez dut DHCP behar"
+
+#~ msgid "Yes I need DHCP"
+#~ msgstr "Bai, DHCP behar dut"
+
+#~ msgid "No I don't need NTP"
+#~ msgstr "Ez, ez dut NTP behar"
+
+#~ msgid "Yes I need NTP"
+#~ msgstr "Bai, NTP behar dut"
+
+#~ msgid "Don't Save"
+#~ msgstr "Ez gorde"
+
+#~ msgid "Save & Quit"
+#~ msgstr "Gorde eta irten"
+
+#~ msgid "Firewall Configuration Wizard"
+#~ msgstr "Suebakia konfiguratzeko morroia"
+
+#~ msgid "No (firewall this off from the internet)"
+#~ msgstr "Ez (egin suebakia Internetetik)"
+
+#~ msgid "Yes (allow this through the firewall)"
+#~ msgstr "Bai (onartu hau suebakian zehar)"
+
+#~ msgid "Please Wait... Verifying installed packages"
+#~ msgstr "Itxaron... instalatutako paketeak egiaztatzen"
+
+#~ msgid ""
+#~ "Failure installing the needed packages: %s and Bastille.\n"
+#~ " Try to install them manually."
+#~ msgstr ""
+#~ "Huts egin du beharrezko pakete hauek instalatzean: %s eta Bastille.\n"
+#~ " Saiatu eskuz instalatzen."
#~ msgid "Data list to include on CDROM."
#~ msgstr "CDROMean gehitzeko datu-zerrenda"
@@ -13735,37 +14456,15 @@ msgstr "Lan-estazio zientifikoa"
#~ "Sareko inprimagailuak instalatzeko, hautatu \"Utzi\", hautatu \"Aditu "
#~ "modua\", eta egin klik \"Gehitu inprimagailu berria\" aukeran berriro."
-#, fuzzy
-#~ msgid ""
-#~ "Is your printer a multi-function device from HP (OfficeJet, PSC, LaserJet "
-#~ "1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart or an HP "
-#~ "LaserJet 2200?"
-#~ msgstr ""
-#~ "Zure inprimagailua funtzio anitzeko HP gailua da (OfficeJet, PSC, "
-#~ "LaserJet 1100/1200/1220/3200/3300 eskanerrarekin), HP PhotoSmart P100 edo "
-#~ "1315 edo HP LaserJet 2200?"
-
#~ msgid "Installing HPOJ package..."
#~ msgstr "HPOJ paketea instalatzen..."
#~ msgid "Checking device and configuring HPOJ..."
#~ msgstr "Gailua egiaztatzen eta HPOJ konfiguratzen..."
-#, fuzzy
-#~ msgid "Installing SANE packages..."
-#~ msgstr "SANE paketea instalatzen..."
-
-#, fuzzy
-#~ msgid "Installing mtools packages..."
-#~ msgstr "Paketeak instalatzen..."
-
#~ msgid "Scanning on your HP multi-function device"
#~ msgstr "Funtzio anitzeko HP gailuan eskaneatzen"
-#, fuzzy
-#~ msgid "Photo memory card access on your HP multi-function device"
-#~ msgstr "Funtzio anitzeko HP gailuan eskaneatzen"
-
#~ msgid "Making printer port available for CUPS..."
#~ msgstr "Inprimagailu-ataka CUPSerako erabilgarri egiten..."
@@ -13942,12 +14641,6 @@ msgstr "Lan-estazio zientifikoa"
#~ msgid "Choose a X driver"
#~ msgstr "Aukeratu X kontrolatzailea"
-#~ msgid "X driver"
-#~ msgstr "X kontrolatzailea"
-
-#~ msgid "Warning: testing this graphics card may freeze your computer"
-#~ msgstr "Kontuz: txartel grafiko hau probatzean ordenagailua blokea daiteke"
-
#~ msgid "Standard VGA, 640x480 at 60 Hz"
#~ msgstr "VGA estandarra 640x480 - 60 Hz"
diff --git a/perl-install/share/po/fi.po b/perl-install/share/po/fi.po
index a30bd944c..af643237f 100644
--- a/perl-install/share/po/fi.po
+++ b/perl-install/share/po/fi.po
@@ -4,8 +4,8 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: drakfloppy VERSION\n"
-"POT-Creation-Date: 2002-08-21 15:44+0200\n"
+"Project-Id-Version: DrakX\n"
+"POT-Creation-Date: 2002-09-02 20:14+0200\n"
"PO-Revision-Date: 2001-12-17 23:18EET\n"
"Last-Translator: Matias Griese <mahagr@utu.fi>\n"
"Language-Team: Finnish\n"
@@ -50,19 +50,19 @@ msgstr "32 Mt"
msgid "64 MB or more"
msgstr "64 Mt tai enemmän"
-#: ../../Xconfig/card.pm_.c:201
+#: ../../Xconfig/card.pm_.c:203
msgid "Choose a X server"
msgstr "Valitse X-palvelin"
-#: ../../Xconfig/card.pm_.c:201
+#: ../../Xconfig/card.pm_.c:203
msgid "X server"
msgstr "X-palvelin"
-#: ../../Xconfig/card.pm_.c:228
+#: ../../Xconfig/card.pm_.c:230
msgid "Multi-head configuration"
msgstr "Monen näytön asettaminen"
-#: ../../Xconfig/card.pm_.c:229
+#: ../../Xconfig/card.pm_.c:231
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
@@ -70,27 +70,27 @@ msgstr ""
"Järjestelmäsi tukee monen näytön laitteistokokoonpanoa.\n"
"Mitä haluat tehdä?"
-#: ../../Xconfig/card.pm_.c:284
+#: ../../Xconfig/card.pm_.c:286
msgid "Select the memory size of your graphics card"
msgstr "Valitse näytönohjaimen muistin määrä"
-#: ../../Xconfig/card.pm_.c:345
+#: ../../Xconfig/card.pm_.c:347
msgid "XFree configuration"
msgstr "XFreen asentaminen"
-#: ../../Xconfig/card.pm_.c:347
+#: ../../Xconfig/card.pm_.c:349
msgid "Which configuration of XFree do you want to have?"
msgstr "Mitä versiota XFree-serveristä haluat käyttää?"
-#: ../../Xconfig/card.pm_.c:379
+#: ../../Xconfig/card.pm_.c:381
msgid "Configure all heads independently"
msgstr "Aseta kaikki näytöt erikseen"
-#: ../../Xconfig/card.pm_.c:380
+#: ../../Xconfig/card.pm_.c:382
msgid "Use Xinerama extension"
msgstr "Käytä Xinerama-laajennusta"
-#: ../../Xconfig/card.pm_.c:384
+#: ../../Xconfig/card.pm_.c:386
#, fuzzy, c-format
msgid "Configure only card \"%s\"%s"
msgstr "Määrittele vain kortin \"%s\" (%s) asetukset"
@@ -101,13 +101,13 @@ msgstr "Määrittele vain kortin \"%s\" (%s) asetukset"
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:435
+#: ../../Xconfig/card.pm_.c:410 ../../Xconfig/card.pm_.c:436
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s with 3D hardware acceleration"
msgstr "XFree %s laitteistokiihdytetyllä 3D-tuella"
-#: ../../Xconfig/card.pm_.c:412
+#: ../../Xconfig/card.pm_.c:413
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -117,18 +117,18 @@ msgstr ""
"ssa.\n"
"Korttisi on tuettu myös XFree %s:ssa, jossa on mahdollisesti parempi 2D-tuki."
-#: ../../Xconfig/card.pm_.c:414 ../../Xconfig/card.pm_.c:437
+#: ../../Xconfig/card.pm_.c:415 ../../Xconfig/card.pm_.c:438
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr ""
"Näytönohjaimelle on olemassa laitteistokiihdytetyt 3D-ajurit XFree %s:ssa."
-#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:443
+#: ../../Xconfig/card.pm_.c:423 ../../Xconfig/card.pm_.c:444
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s KOKEELLISELLA laitteistokiihdytetyllä 3D-tuella"
-#: ../../Xconfig/card.pm_.c:425
+#: ../../Xconfig/card.pm_.c:426
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -140,7 +140,7 @@ msgstr ""
"HUOMAA, ETTÄ TUKI ON KOKEELLINEN JA VOI JUMITTAA TIETOKONEESI.Korttisi on "
"tuettu myös XFree %s:ssa, jossa on mahdollisesti parempi 2D-tuki."
-#: ../../Xconfig/card.pm_.c:428 ../../Xconfig/card.pm_.c:445
+#: ../../Xconfig/card.pm_.c:429 ../../Xconfig/card.pm_.c:446
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
@@ -149,53 +149,54 @@ msgstr ""
"Näytönohjaimelle on olemassa laitteistokiihdytetyt 3D-ajurit XFree %s:ssa.\n"
"HUOMAA, ETTÄ TUKI ON KOKEELLINEN JA VOI JUMITTAA TIETOKONEESI."
-#: ../../Xconfig/card.pm_.c:451
+#: ../../Xconfig/card.pm_.c:452
msgid "Xpmac (installation display driver)"
msgstr "Xpmac (näytönohjaimen ajurin asennus)"
-#: ../../Xconfig/main.pm_.c:78 ../../Xconfig/main.pm_.c:79
-#: ../../Xconfig/monitor.pm_.c:94 ../../any.pm_.c:974
+#: ../../Xconfig/main.pm_.c:76 ../../Xconfig/main.pm_.c:77
+#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:977
msgid "Custom"
msgstr "Mukautettu"
-#: ../../Xconfig/main.pm_.c:104
+#: ../../Xconfig/main.pm_.c:102
#, fuzzy
msgid "Graphic Card"
msgstr "Näytönohjain"
-#: ../../Xconfig/main.pm_.c:107 ../../Xconfig/monitor.pm_.c:91
+#: ../../Xconfig/main.pm_.c:105 ../../Xconfig/monitor.pm_.c:93
msgid "Monitor"
msgstr "Näyttö"
-#: ../../Xconfig/main.pm_.c:110 ../../Xconfig/resolution_and_depth.pm_.c:209
+#: ../../Xconfig/main.pm_.c:108 ../../Xconfig/resolution_and_depth.pm_.c:209
msgid "Resolution"
msgstr "Resoluutio"
-#: ../../Xconfig/main.pm_.c:114
+#: ../../Xconfig/main.pm_.c:113
msgid "Test"
msgstr ""
-#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:59
-#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/removable.pm_.c:25
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:63
+#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/removable.pm_.c:25
#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "Optiot"
#: ../../Xconfig/main.pm_.c:121 ../../Xconfig/resolution_and_depth.pm_.c:268
-#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:281
+#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:275
#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
-#: ../../interactive.pm_.c:351 ../../interactive/http.pm_.c:104
+#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:104
#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
-#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:156
-#: ../../my_gtk.pm_.c:284 ../../my_gtk.pm_.c:307
-#: ../../standalone/drakbackup_.c:3324 ../../standalone/drakbackup_.c:3419
-#: ../../standalone/drakbackup_.c:3438
+#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:159
+#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310
+#: ../../standalone/drakbackup_.c:3972 ../../standalone/drakbackup_.c:4067
+#: ../../standalone/drakbackup_.c:4086
msgid "Ok"
msgstr "Ok"
#: ../../Xconfig/main.pm_.c:121 ../../diskdrake/dav.pm_.c:24
-#: ../../printerdrake.pm_.c:2933 ../../standalone/logdrake_.c:224
+#: ../../harddrake/ui.pm_.c:98 ../../printerdrake.pm_.c:3155
+#: ../../standalone/logdrake_.c:224
msgid "Quit"
msgstr "Lopeta"
@@ -212,28 +213,28 @@ msgstr ""
"\n"
"%s"
-#: ../../Xconfig/monitor.pm_.c:91
+#: ../../Xconfig/monitor.pm_.c:93
msgid "Choose a monitor"
msgstr "Valitse monitori"
-#: ../../Xconfig/monitor.pm_.c:95
+#: ../../Xconfig/monitor.pm_.c:97
msgid "Plug'n Play"
msgstr ""
-#: ../../Xconfig/monitor.pm_.c:96 ../../mouse.pm_.c:45
+#: ../../Xconfig/monitor.pm_.c:98 ../../mouse.pm_.c:46
msgid "Generic"
msgstr "Yleinen"
-#: ../../Xconfig/monitor.pm_.c:97 ../../harddrake/ui.pm_.c:36
+#: ../../Xconfig/monitor.pm_.c:99 ../../harddrake/ui.pm_.c:37
#, fuzzy
msgid "Vendor"
msgstr "Peruuta"
-#: ../../Xconfig/monitor.pm_.c:107
+#: ../../Xconfig/monitor.pm_.c:109
msgid "Plug'n Play probing failed. Please choose a precise monitor"
msgstr ""
-#: ../../Xconfig/monitor.pm_.c:112
+#: ../../Xconfig/monitor.pm_.c:114
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -256,11 +257,11 @@ msgstr ""
"vaakavirkistystaajuus\n"
"on suurempi kuin oman näyttösi. Jos epäröit, valitse pienempi taajuus."
-#: ../../Xconfig/monitor.pm_.c:119
+#: ../../Xconfig/monitor.pm_.c:121
msgid "Horizontal refresh rate"
msgstr "Vaakavirkistystaajuus"
-#: ../../Xconfig/monitor.pm_.c:120
+#: ../../Xconfig/monitor.pm_.c:122
msgid "Vertical refresh rate"
msgstr "Pystyvirkistystaajuus"
@@ -297,36 +298,41 @@ msgstr "Valitse resoluutio ja värisyvyys"
msgid "Graphics card: %s"
msgstr "Näytönohjain: %s"
-#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1015
-#: ../../bootlook.pm_.c:334 ../../diskdrake/smbnfs_gtk.pm_.c:87
-#: ../../install_steps_gtk.pm_.c:412 ../../install_steps_gtk.pm_.c:470
-#: ../../install_steps_interactive.pm_.c:576 ../../interactive.pm_.c:142
-#: ../../interactive.pm_.c:351 ../../interactive/http.pm_.c:105
+#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1018
+#: ../../bootlook.pm_.c:338 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:406 ../../install_steps_gtk.pm_.c:464
+#: ../../install_steps_interactive.pm_.c:560 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:105
#: ../../interactive/newt.pm_.c:174 ../../interactive/stdio.pm_.c:39
-#: ../../interactive/stdio.pm_.c:143 ../../my_gtk.pm_.c:155
-#: ../../my_gtk.pm_.c:159 ../../my_gtk.pm_.c:284
-#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1990
-#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3278
-#: ../../standalone/drakbackup_.c:3311 ../../standalone/drakbackup_.c:3337
-#: ../../standalone/drakbackup_.c:3364 ../../standalone/drakbackup_.c:3391
-#: ../../standalone/drakbackup_.c:3451 ../../standalone/drakbackup_.c:3478
-#: ../../standalone/drakbackup_.c:3504 ../../standalone/drakconnect_.c:115
-#: ../../standalone/drakconnect_.c:147 ../../standalone/drakconnect_.c:289
-#: ../../standalone/drakconnect_.c:537 ../../standalone/drakconnect_.c:679
-#: ../../standalone/drakfloppy_.c:234 ../../standalone/drakfloppy_.c:383
-#: ../../standalone/drakfont_.c:970 ../../standalone/drakgw_.c:598
-#: ../../standalone/logdrake_.c:224 ../../standalone/logdrake_.c:528
-#: ../../standalone/tinyfirewall_.c:64
+#: ../../interactive/stdio.pm_.c:143 ../../my_gtk.pm_.c:158
+#: ../../my_gtk.pm_.c:162 ../../my_gtk.pm_.c:287
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:2124
+#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3926
+#: ../../standalone/drakbackup_.c:3959 ../../standalone/drakbackup_.c:3985
+#: ../../standalone/drakbackup_.c:4012 ../../standalone/drakbackup_.c:4039
+#: ../../standalone/drakbackup_.c:4099 ../../standalone/drakbackup_.c:4126
+#: ../../standalone/drakbackup_.c:4156 ../../standalone/drakbackup_.c:4182
+#: ../../standalone/drakconnect_.c:115 ../../standalone/drakconnect_.c:147
+#: ../../standalone/drakconnect_.c:289 ../../standalone/drakconnect_.c:537
+#: ../../standalone/drakconnect_.c:679 ../../standalone/drakfloppy_.c:234
+#: ../../standalone/drakfloppy_.c:383 ../../standalone/drakfont_.c:970
+#: ../../standalone/drakgw_.c:536 ../../standalone/logdrake_.c:224
+#: ../../standalone/logdrake_.c:526
msgid "Cancel"
msgstr "Peruuta"
-#: ../../Xconfig/test.pm_.c:26
+#: ../../Xconfig/test.pm_.c:30
+msgid "Test of the configuration"
+msgstr "Kokeile asetuksia"
+
+#: ../../Xconfig/test.pm_.c:31
msgid "Do you want to test the configuration?"
msgstr "Haluatko kokeilla asetuksia?"
-#: ../../Xconfig/test.pm_.c:26
-msgid "Test of the configuration"
-msgstr "Kokeile asetuksia"
+#: ../../Xconfig/test.pm_.c:31
+#, fuzzy
+msgid "Warning: testing this graphic card may freeze your computer"
+msgstr "Varoitus: näytönohjaimesi testaaminen voi jumittaa tietokoneen"
#: ../../Xconfig/various.pm_.c:29
#, c-format
@@ -462,26 +468,22 @@ msgstr "Käynnistä DOSista/Windowsista (loadlin)"
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:158 ../../any.pm_.c:190
+#: ../../any.pm_.c:159 ../../any.pm_.c:190
msgid "Bootloader main options"
msgstr "Käyttöjärjestelmän lataajan pääasetukset"
-#: ../../any.pm_.c:159 ../../any.pm_.c:191
+#: ../../any.pm_.c:160 ../../any.pm_.c:191
msgid "Bootloader to use"
msgstr "Käytettävä käyttöjärjestelmän lataaja"
-#: ../../any.pm_.c:161
+#: ../../any.pm_.c:162
msgid "Bootloader installation"
msgstr "Käyttöjärjestelmän lataajan asennus"
-#: ../../any.pm_.c:163 ../../any.pm_.c:193
+#: ../../any.pm_.c:164 ../../any.pm_.c:193
msgid "Boot device"
msgstr "Käynnistyslaite"
-#: ../../any.pm_.c:164
-msgid "LBA (doesn't work on old BIOSes)"
-msgstr "LBA (ei toimi vanhoissa BIOSeissa)"
-
#: ../../any.pm_.c:165
msgid "Compact"
msgstr "Tiivis"
@@ -498,16 +500,17 @@ msgstr "Näyttötila"
msgid "Delay before booting default image"
msgstr "Tauko ennen oletusjärjestelmän käynnistystä"
-#: ../../any.pm_.c:170 ../../any.pm_.c:786
+#: ../../any.pm_.c:170 ../../any.pm_.c:788
#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1111 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:743 ../../printerdrake.pm_.c:858
-#: ../../standalone/drakconnect_.c:624 ../../standalone/drakconnect_.c:649
+#: ../../install_steps_interactive.pm_.c:1096 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:850 ../../printerdrake.pm_.c:965
+#: ../../standalone/drakbackup_.c:3528 ../../standalone/drakconnect_.c:624
+#: ../../standalone/drakconnect_.c:649
msgid "Password"
msgstr "Salasana"
-#: ../../any.pm_.c:171 ../../any.pm_.c:787
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../any.pm_.c:171 ../../any.pm_.c:789
+#: ../../install_steps_interactive.pm_.c:1097
msgid "Password (again)"
msgstr "Salasana (uudelleen)"
@@ -542,14 +545,14 @@ msgid ""
msgstr ""
"Asetus ``Rajoita komentorivioptioita'' ei ole hyödyllinen ilman salasanaa"
-#: ../../any.pm_.c:184 ../../any.pm_.c:762
-#: ../../diskdrake/interactive.pm_.c:1180
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../any.pm_.c:184 ../../any.pm_.c:764
+#: ../../diskdrake/interactive.pm_.c:1191
+#: ../../install_steps_interactive.pm_.c:1091
msgid "Please try again"
msgstr "Yritä uudelleen"
-#: ../../any.pm_.c:184 ../../any.pm_.c:762
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../any.pm_.c:184 ../../any.pm_.c:764
+#: ../../install_steps_interactive.pm_.c:1091
msgid "The passwords do not match"
msgstr "Salasanat poikkeavat toisistaan"
@@ -594,16 +597,16 @@ msgstr ""
"Tässä ovat asetustietueet.\n"
"Voit lisätä uusia tai muuttaa olemassaolevia."
-#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1483
-#: ../../standalone/drakbackup_.c:1596 ../../standalone/drakfont_.c:1011
+#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1558
+#: ../../standalone/drakbackup_.c:1671 ../../standalone/drakfont_.c:1011
#: ../../standalone/drakfont_.c:1054
msgid "Add"
msgstr "Lisää"
-#: ../../any.pm_.c:257 ../../any.pm_.c:774 ../../diskdrake/dav.pm_.c:60
+#: ../../any.pm_.c:257 ../../any.pm_.c:776 ../../diskdrake/dav.pm_.c:64
#: ../../diskdrake/hd_gtk.pm_.c:153 ../../diskdrake/removable.pm_.c:27
#: ../../diskdrake/smbnfs_gtk.pm_.c:88 ../../interactive/http.pm_.c:153
-#: ../../standalone/drakbackup_.c:2696
+#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2772
msgid "Done"
msgstr "Valmis"
@@ -615,7 +618,7 @@ msgstr "Muokkaa"
msgid "Which type of entry do you want to add?"
msgstr "Minkä tyyppisen tietueen haluat lisätä"
-#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1630
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1705
msgid "Linux"
msgstr "Linux"
@@ -709,13 +712,13 @@ msgstr "Onko sinulla muita?"
msgid "Do you have any %s interfaces?"
msgstr "Onko koneessa %s liityntää?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:821 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:283
+#: ../../any.pm_.c:660 ../../any.pm_.c:823 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:286
msgid "No"
msgstr "Ei"
-#: ../../any.pm_.c:660 ../../any.pm_.c:820 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:283
+#: ../../any.pm_.c:660 ../../any.pm_.c:822 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:286
msgid "Yes"
msgstr "Kyllä"
@@ -812,39 +815,49 @@ msgstr "salli \"su\""
msgid "access to administrative files"
msgstr "oikeudet ylläpidollisiin tiedostoihin"
-#: ../../any.pm_.c:758
+#: ../../any.pm_.c:754
+#, fuzzy
+msgid "access to network tools"
+msgstr "oikeudet rpm-työkaluihin"
+
+#: ../../any.pm_.c:755
+#, fuzzy
+msgid "access to compilation tools"
+msgstr "oikeudet rpm-työkaluihin"
+
+#: ../../any.pm_.c:760
#, c-format
msgid "(already added %s)"
msgstr "(lisätty jo %s)"
-#: ../../any.pm_.c:763
+#: ../../any.pm_.c:765
msgid "This password is too simple"
msgstr "Salasana on liian yksinkertainen"
-#: ../../any.pm_.c:764
+#: ../../any.pm_.c:766
msgid "Please give a user name"
msgstr "Anna käyttäjätunnus"
-#: ../../any.pm_.c:765
+#: ../../any.pm_.c:767
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
"Käyttäjätunnus saa sisältää vain pieniä kirjaimia, numeroita, `-' ja `_'"
-#: ../../any.pm_.c:766
+#: ../../any.pm_.c:768
#, fuzzy
msgid "The user name is too long"
msgstr "Käyttäjätunnus on jo lisätty"
-#: ../../any.pm_.c:767
+#: ../../any.pm_.c:769
msgid "This user name is already added"
msgstr "Käyttäjätunnus on jo lisätty"
-#: ../../any.pm_.c:771
+#: ../../any.pm_.c:773
msgid "Add user"
msgstr "Lisää käyttäjä"
-#: ../../any.pm_.c:772
+#: ../../any.pm_.c:774
#, c-format
msgid ""
"Enter a user\n"
@@ -853,32 +866,32 @@ msgstr ""
"Lisää käyttäjä\n"
"%s"
-#: ../../any.pm_.c:773
+#: ../../any.pm_.c:775
msgid "Accept user"
msgstr "Hyväksy käyttäjä"
-#: ../../any.pm_.c:784
+#: ../../any.pm_.c:786
msgid "Real name"
msgstr "Oikea nimi"
-#: ../../any.pm_.c:785 ../../printerdrake.pm_.c:742
-#: ../../printerdrake.pm_.c:857
+#: ../../any.pm_.c:787 ../../printerdrake.pm_.c:849
+#: ../../printerdrake.pm_.c:964
msgid "User name"
msgstr "Käyttäjätunnus"
-#: ../../any.pm_.c:788
+#: ../../any.pm_.c:790
msgid "Shell"
msgstr "Komentotulkki"
-#: ../../any.pm_.c:790
+#: ../../any.pm_.c:792
msgid "Icon"
msgstr "Kuvake"
-#: ../../any.pm_.c:817
+#: ../../any.pm_.c:819
msgid "Autologin"
msgstr "Automaattinen kirjautuminen"
-#: ../../any.pm_.c:818
+#: ../../any.pm_.c:820
msgid ""
"I can set up your computer to automatically log on one user.\n"
"Do you want to use this feature?"
@@ -887,55 +900,55 @@ msgstr ""
"tietokoneellesi.\n"
"Haluatko käyttää tätä ominaisuutta?"
-#: ../../any.pm_.c:822
+#: ../../any.pm_.c:824
msgid "Choose the default user:"
msgstr "Valitse oletuskäyttäjä:"
-#: ../../any.pm_.c:823
+#: ../../any.pm_.c:825
msgid "Choose the window manager to run:"
msgstr "Valitse käytettävä ikkunointijärjestelmä:"
-#: ../../any.pm_.c:838
+#: ../../any.pm_.c:840
msgid "Please choose a language to use."
msgstr "Valitse käytettävä kieli."
-#: ../../any.pm_.c:840
+#: ../../any.pm_.c:842
msgid ""
"Mandrake Linux can support multiple languages. Select\n"
"the languages you would like to install. They will be available\n"
"when your installation is complete and you restart your system."
msgstr "Voit valita kielet jotka ovat käytettävissä asennuksen jälkeen"
-#: ../../any.pm_.c:854 ../../install_steps_interactive.pm_.c:708
+#: ../../any.pm_.c:856 ../../install_steps_interactive.pm_.c:692
#: ../../standalone/drakxtv_.c:73
msgid "All"
msgstr "Kaikki"
# Asennuksen sivuvalikko
-#: ../../any.pm_.c:974
+#: ../../any.pm_.c:977
msgid "Allow all users"
msgstr "Salli kaikille käyttäjille"
-#: ../../any.pm_.c:974
+#: ../../any.pm_.c:977
msgid "No sharing"
msgstr "Ei jaettu"
-#: ../../any.pm_.c:984 ../../standalone.pm_.c:57
+#: ../../any.pm_.c:987 ../../install_any.pm_.c:1183 ../../standalone.pm_.c:58
#, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "Paketti %s pitää asentaa. Haluatko asentaa sen?"
-#: ../../any.pm_.c:987
+#: ../../any.pm_.c:990
msgid ""
"You can export using NFS or Samba. Please select which you'd like to use."
msgstr "Voit jakaa sekä NFS:llä että Samballa. Kumpaa haluat käyttää"
-#: ../../any.pm_.c:995 ../../standalone.pm_.c:61
+#: ../../any.pm_.c:998 ../../install_any.pm_.c:1188 ../../standalone.pm_.c:63
#, c-format
msgid "Mandatory package %s is missing"
msgstr "Pakollinen paketti %s puuttuu"
-#: ../../any.pm_.c:1001
+#: ../../any.pm_.c:1004
msgid ""
"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
@@ -944,42 +957,42 @@ msgid ""
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:1015
+#: ../../any.pm_.c:1018
msgid "Launch userdrake"
msgstr ""
-#: ../../any.pm_.c:1017
+#: ../../any.pm_.c:1020
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
msgstr ""
-#: ../../any.pm_.c:1068
+#: ../../any.pm_.c:1071
msgid "Welcome To Crackers"
msgstr "Tervetuloa murtautujat"
-#: ../../any.pm_.c:1069
+#: ../../any.pm_.c:1072
msgid "Poor"
msgstr "Huono"
-#: ../../any.pm_.c:1070 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1073 ../../mouse.pm_.c:31
msgid "Standard"
msgstr "Standardi"
-#: ../../any.pm_.c:1071
+#: ../../any.pm_.c:1074
msgid "High"
msgstr "Korkea"
-#: ../../any.pm_.c:1072
+#: ../../any.pm_.c:1075
#, fuzzy
msgid "Higher"
msgstr "Korkea"
-#: ../../any.pm_.c:1073
+#: ../../any.pm_.c:1076
msgid "Paranoid"
msgstr "Paranoidi"
-#: ../../any.pm_.c:1076
+#: ../../any.pm_.c:1079
msgid ""
"This level is to be used with care. It makes your system more easy to use,\n"
"but very sensitive: it must not be used for a machine connected to others\n"
@@ -991,14 +1004,14 @@ msgstr ""
"koneisiin\n"
"tai Internettiin. Koneessa ei ole salasanoja."
-#: ../../any.pm_.c:1079
+#: ../../any.pm_.c:1082
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
msgstr ""
"Salasanat ovat nyt käytössä mutta koneen käyttö verkossa ei ole suositeltua."
-#: ../../any.pm_.c:1080
+#: ../../any.pm_.c:1083
#, fuzzy
msgid ""
"This is the standard security recommended for a computer that will be used "
@@ -1008,13 +1021,13 @@ msgstr ""
"käytetään Internettiin liitettynä. Järjestelmässä on "
"turvallisuustarkastuksia."
-#: ../../any.pm_.c:1081
+#: ../../any.pm_.c:1084
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr ""
-#: ../../any.pm_.c:1082
+#: ../../any.pm_.c:1085
#, fuzzy
msgid ""
"With this security level, the use of this system as a server becomes "
@@ -1028,7 +1041,7 @@ msgstr ""
"Järjestelmää voidaan käyttää palvelimena joka hyväksyy yhteyksiä monilta\n"
"asiakkailta. "
-#: ../../any.pm_.c:1085
+#: ../../any.pm_.c:1088
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
"security features are at their maximum."
@@ -1036,32 +1049,32 @@ msgstr ""
"Pohjautuu edelliseen tasoon, mutta järjestelmä on kokonaan suljettu.\n"
"Turvallisuusasetukset ovat tiukimmillaan."
-#: ../../any.pm_.c:1091
+#: ../../any.pm_.c:1094
#, fuzzy
msgid "DrakSec Basic Options"
msgstr "Optiot"
-#: ../../any.pm_.c:1092
+#: ../../any.pm_.c:1095
#, fuzzy
msgid "Please choose the desired security level"
msgstr "Valitse turvataso"
-#: ../../any.pm_.c:1095
+#: ../../any.pm_.c:1098
msgid "Security level"
msgstr "Turvataso"
-#: ../../any.pm_.c:1097
+#: ../../any.pm_.c:1100
msgid "Use libsafe for servers"
msgstr "Käytä libsafea palvelimille"
-#: ../../any.pm_.c:1098
+#: ../../any.pm_.c:1101
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
"Kirjasto joka suojelee puskurin ylivuoto ja merkkijonon muotovirhehykkäyksiä "
"vastaan."
-#: ../../any.pm_.c:1099
+#: ../../any.pm_.c:1102
msgid "Security Administrator (login or email)"
msgstr ""
@@ -1103,7 +1116,7 @@ msgstr ""
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:935
+#: ../../bootloader.pm_.c:932
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Tervetuloa GRUB k~^Dytt~^Tj~^Drjestelm~^Dnvalitsijaan!"
@@ -1117,7 +1130,7 @@ msgstr "Tervetuloa GRUB k~^Dytt~^Tj~^Drjestelm~^Dnvalitsijaan!"
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:938
+#: ../../bootloader.pm_.c:935
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "Kayt~^D %c- ja %c-napp~^Dimi~^D valitaksesi korostetun tietueen"
@@ -1132,7 +1145,7 @@ msgstr "Kayt~^D %c- ja %c-napp~^Dimi~^D valitaksesi korostetun tietueen"
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:941
+#: ../../bootloader.pm_.c:938
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr ""
"Paina enter kaynnist~^D~^Dksesi valitun kaytt”j„rjestelm„n, 'e' muokataksesi"
@@ -1147,7 +1160,7 @@ msgstr ""
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:941
msgid "commands before booting, or 'c' for a command-line."
msgstr "komennot ennen k„ynnistyst„, tai 'c' komentoriville"
@@ -1161,32 +1174,32 @@ msgstr "komennot ennen k„ynnistyst„, tai 'c' komentoriville"
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:947
+#: ../../bootloader.pm_.c:944
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "Korostettu tietue k„ynnistet„„n automaattisesti %d sekunnissa."
-#: ../../bootloader.pm_.c:951
+#: ../../bootloader.pm_.c:948
msgid "not enough room in /boot"
msgstr "ei tarpeeksi tilaa /boot-hakemistossa"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1051
+#: ../../bootloader.pm_.c:1048
msgid "Desktop"
msgstr "Työpöytä"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1053
+#: ../../bootloader.pm_.c:1050
msgid "Start Menu"
msgstr "Käynnistysvalikko"
-#: ../../bootloader.pm_.c:1072
+#: ../../bootloader.pm_.c:1069
#, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "Et voi asentaa käyttöjärjestelmän lataajaa partitiolle %s\n"
-#: ../../bootlook.pm_.c:45
+#: ../../bootlook.pm_.c:45 ../../standalone/draksplash_.c:25
msgid "no help implemented yet.\n"
msgstr "ohjeita ei ole vielä olemassa.\n"
@@ -1194,8 +1207,8 @@ msgstr "ohjeita ei ole vielä olemassa.\n"
msgid "Boot Style Configuration"
msgstr "Käynnistyksen tavan asetus"
-#: ../../bootlook.pm_.c:78 ../../harddrake/ui.pm_.c:59
-#: ../../harddrake/ui.pm_.c:60 ../../standalone/drakfloppy_.c:81
+#: ../../bootlook.pm_.c:78 ../../harddrake/ui.pm_.c:62
+#: ../../harddrake/ui.pm_.c:63 ../../standalone/drakfloppy_.c:81
#: ../../standalone/logdrake_.c:101
msgid "/_File"
msgstr "/_Tiedosto"
@@ -1205,7 +1218,7 @@ msgstr "/_Tiedosto"
msgid "/File/_Quit"
msgstr "/Tiedosto/Poistu"
-#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:60
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:63
#: ../../standalone/drakfloppy_.c:82 ../../standalone/logdrake_.c:107
msgid "<control>Q"
msgstr "<control>Q"
@@ -1248,94 +1261,101 @@ msgstr "Asenna järjestelmä"
msgid "Display theme under console"
msgstr ""
-#: ../../bootlook.pm_.c:166
+#: ../../bootlook.pm_.c:145
+#, fuzzy
+msgid "Create new theme"
+msgstr "Luo uusi osio"
+
+#: ../../bootlook.pm_.c:169
msgid "Can't create Bootsplash preview"
msgstr ""
-#: ../../bootlook.pm_.c:166 ../../bootlook.pm_.c:184 ../../bootlook.pm_.c:187
-#: ../../bootlook.pm_.c:190 ../../bootlook.pm_.c:220 ../../bootlook.pm_.c:222
-#: ../../bootlook.pm_.c:232 ../../bootlook.pm_.c:241 ../../bootlook.pm_.c:248
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:336
-#: ../../diskdrake/interactive.pm_.c:351 ../../diskdrake/interactive.pm_.c:464
-#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../bootlook.pm_.c:169 ../../bootlook.pm_.c:187 ../../bootlook.pm_.c:190
+#: ../../bootlook.pm_.c:193 ../../bootlook.pm_.c:223 ../../bootlook.pm_.c:225
+#: ../../bootlook.pm_.c:235 ../../bootlook.pm_.c:244 ../../bootlook.pm_.c:251
+#: ../../diskdrake/dav.pm_.c:73 ../../diskdrake/hd_gtk.pm_.c:116
+#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/interactive.pm_.c:355
+#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/interactive.pm_.c:474
+#: ../../diskdrake/smbnfs_gtk.pm_.c:45 ../../fsedit.pm_.c:239
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:365 ../../interactive/http.pm_.c:119
-#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:80
+#: ../../interactive/http.pm_.c:119 ../../interactive/http.pm_.c:120
+#: ../../standalone/draksplash_.c:32
msgid "Error"
msgstr "Virhe"
-#: ../../bootlook.pm_.c:183
+#: ../../bootlook.pm_.c:186
#, c-format
msgid "Backup %s to %s.old"
msgstr ""
-#: ../../bootlook.pm_.c:184
+#: ../../bootlook.pm_.c:187
msgid "unable to backup lilo message"
msgstr ""
-#: ../../bootlook.pm_.c:186
+#: ../../bootlook.pm_.c:189
#, fuzzy, c-format
msgid "Copy %s to %s"
msgstr "Kopioidaan %s"
-#: ../../bootlook.pm_.c:187
+#: ../../bootlook.pm_.c:190
msgid "can't change lilo message"
msgstr ""
-#: ../../bootlook.pm_.c:190
+#: ../../bootlook.pm_.c:193
msgid "Lilo message not found"
msgstr ""
-#: ../../bootlook.pm_.c:220
+#: ../../bootlook.pm_.c:223
msgid "Can't write /etc/sysconfig/bootsplash."
msgstr ""
-#: ../../bootlook.pm_.c:220
+#: ../../bootlook.pm_.c:223
#, fuzzy, c-format
msgid "Write %s"
msgstr "XFree %s"
-#: ../../bootlook.pm_.c:222
+#: ../../bootlook.pm_.c:225
msgid ""
"Can't write /etc/sysconfig/bootsplash\n"
"File not found."
msgstr ""
-#: ../../bootlook.pm_.c:233
+#: ../../bootlook.pm_.c:236
#, c-format
msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
msgstr ""
-#: ../../bootlook.pm_.c:236
+#: ../../bootlook.pm_.c:239
#, c-format
-msgid "Make initrd 'mkinird -f /boot/initrd-%s.img %s'."
+msgid "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
msgstr ""
-#: ../../bootlook.pm_.c:242
+#: ../../bootlook.pm_.c:245
msgid ""
"Can't relaunch LiLo!\n"
"Launch \"lilo\" as root in command line to complete LiLo theme installation."
msgstr ""
-#: ../../bootlook.pm_.c:246
+#: ../../bootlook.pm_.c:249
msgid "Relaunch 'lilo'"
msgstr ""
-#: ../../bootlook.pm_.c:248
+#: ../../bootlook.pm_.c:251 ../../standalone/draksplash_.c:161
+#: ../../standalone/draksplash_.c:330 ../../standalone/draksplash_.c:454
#, fuzzy
msgid "Notice"
msgstr "Ei Näyttöä"
-#: ../../bootlook.pm_.c:249
+#: ../../bootlook.pm_.c:252
msgid "LiLo and Bootsplash themes installation successfull"
msgstr ""
-#: ../../bootlook.pm_.c:249
+#: ../../bootlook.pm_.c:252
#, fuzzy
msgid "Theme installation failed!"
msgstr "Asennuksen luokka"
-#: ../../bootlook.pm_.c:258
+#: ../../bootlook.pm_.c:261
#, c-format
msgid ""
"You are currently using %s as your boot manager.\n"
@@ -1344,23 +1364,22 @@ msgstr ""
"Tällä hetkellä käytössä oleva järjestelmälataaja on %s.\n"
"Valitse Aseta käynnistääksesi asennusohjelman."
-#: ../../bootlook.pm_.c:260 ../../standalone/drakbackup_.c:2352
-#: ../../standalone/drakbackup_.c:2362 ../../standalone/drakbackup_.c:2372
-#: ../../standalone/drakbackup_.c:2380 ../../standalone/drakgw_.c:592
-#: ../../standalone/tinyfirewall_.c:58
+#: ../../bootlook.pm_.c:263 ../../standalone/drakbackup_.c:2427
+#: ../../standalone/drakbackup_.c:2437 ../../standalone/drakbackup_.c:2447
+#: ../../standalone/drakbackup_.c:2455 ../../standalone/drakgw_.c:530
msgid "Configure"
msgstr "Määrittele"
-#: ../../bootlook.pm_.c:267
+#: ../../bootlook.pm_.c:270
#, fuzzy
msgid "Splash selection"
msgstr "Yksittäisten pakettien valinta"
-#: ../../bootlook.pm_.c:270
+#: ../../bootlook.pm_.c:273
msgid "Themes"
msgstr ""
-#: ../../bootlook.pm_.c:272
+#: ../../bootlook.pm_.c:275
msgid ""
"\n"
"Select a theme for\n"
@@ -1369,44 +1388,44 @@ msgid ""
"them separatly"
msgstr ""
-#: ../../bootlook.pm_.c:275
+#: ../../bootlook.pm_.c:278
msgid "Lilo screen"
msgstr ""
-#: ../../bootlook.pm_.c:279
+#: ../../bootlook.pm_.c:283
msgid "Bootsplash"
msgstr ""
-#: ../../bootlook.pm_.c:314
+#: ../../bootlook.pm_.c:318
msgid "System mode"
msgstr "Järjestelmän tila"
-#: ../../bootlook.pm_.c:316
+#: ../../bootlook.pm_.c:320
msgid "Launch the graphical environment when your system starts"
msgstr "Käytä X-Window-järjestelmää"
-#: ../../bootlook.pm_.c:321
+#: ../../bootlook.pm_.c:325
msgid "No, I don't want autologin"
msgstr "Ei, en halua autologinia"
-#: ../../bootlook.pm_.c:323
+#: ../../bootlook.pm_.c:327
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "Kyllä, haluan autologinin (käyttäjä, ympäristö)"
-#: ../../bootlook.pm_.c:333 ../../network/netconnect.pm_.c:101
+#: ../../bootlook.pm_.c:337 ../../network/netconnect.pm_.c:101
#: ../../standalone/drakTermServ_.c:173 ../../standalone/drakTermServ_.c:300
-#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:3513
-#: ../../standalone/drakbackup_.c:4290 ../../standalone/drakconnect_.c:108
+#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4191
+#: ../../standalone/drakbackup_.c:4952 ../../standalone/drakconnect_.c:108
#: ../../standalone/drakconnect_.c:140 ../../standalone/drakconnect_.c:296
#: ../../standalone/drakconnect_.c:435 ../../standalone/drakconnect_.c:521
#: ../../standalone/drakconnect_.c:564 ../../standalone/drakconnect_.c:667
#: ../../standalone/drakfloppy_.c:376 ../../standalone/drakfont_.c:612
#: ../../standalone/drakfont_.c:799 ../../standalone/drakfont_.c:876
-#: ../../standalone/drakfont_.c:963 ../../standalone/logdrake_.c:521
+#: ../../standalone/drakfont_.c:963 ../../standalone/logdrake_.c:519
msgid "OK"
msgstr "Ok"
-#: ../../bootlook.pm_.c:403
+#: ../../bootlook.pm_.c:407
#, c-format
msgid "can not open /etc/inittab for reading: %s"
msgstr "ei voi lukea tiedostoa /etc/inittab: %s"
@@ -1503,50 +1522,54 @@ msgstr "Itävalta"
msgid "United States"
msgstr "Yhdysvallat"
-#: ../../detect_devices.pm_.c:599 ../../detect_devices.pm_.c:641
-#: ../../detect_devices.pm_.c:803
-#, fuzzy
-msgid "Unknown Model"
-msgstr "Tuntematon malli"
-
#: ../../diskdrake/dav.pm_.c:23
#, fuzzy
msgid "New"
msgstr "uusi"
-#: ../../diskdrake/dav.pm_.c:57
+#: ../../diskdrake/dav.pm_.c:59 ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/smbnfs_gtk.pm_.c:81
+msgid "Unmount"
+msgstr "Irroita"
+
+#: ../../diskdrake/dav.pm_.c:60 ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/smbnfs_gtk.pm_.c:82
+msgid "Mount"
+msgstr "Liitä"
+
+#: ../../diskdrake/dav.pm_.c:61
msgid "Server"
msgstr "Palvelin"
-#: ../../diskdrake/dav.pm_.c:58 ../../diskdrake/interactive.pm_.c:375
-#: ../../diskdrake/interactive.pm_.c:558 ../../diskdrake/interactive.pm_.c:585
+#: ../../diskdrake/dav.pm_.c:62 ../../diskdrake/interactive.pm_.c:379
+#: ../../diskdrake/interactive.pm_.c:568 ../../diskdrake/interactive.pm_.c:595
#: ../../diskdrake/removable.pm_.c:24 ../../diskdrake/removable_gtk.pm_.c:15
#: ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr "Liitospaikka"
-#: ../../diskdrake/dav.pm_.c:68
+#: ../../diskdrake/dav.pm_.c:81
#, fuzzy
msgid "Please enter the WebDAV server URL"
msgstr "Valitse kirjoittavan CD-aseman nopeus"
-#: ../../diskdrake/dav.pm_.c:71
+#: ../../diskdrake/dav.pm_.c:84
#, fuzzy
msgid "The URL must begin with http:// or https://"
msgstr "Web-osoitteen tulee alkaa etuliitteellä 'http:'"
-#: ../../diskdrake/dav.pm_.c:92
+#: ../../diskdrake/dav.pm_.c:105
#, fuzzy
msgid "Server: "
msgstr "Palvelin"
-#: ../../diskdrake/dav.pm_.c:93 ../../diskdrake/interactive.pm_.c:435
-#: ../../diskdrake/interactive.pm_.c:1079
-#: ../../diskdrake/interactive.pm_.c:1153
+#: ../../diskdrake/dav.pm_.c:106 ../../diskdrake/interactive.pm_.c:440
+#: ../../diskdrake/interactive.pm_.c:1089
+#: ../../diskdrake/interactive.pm_.c:1164
msgid "Mount point: "
msgstr "Liitospaikka: "
-#: ../../diskdrake/dav.pm_.c:94 ../../diskdrake/interactive.pm_.c:1159
+#: ../../diskdrake/dav.pm_.c:107 ../../diskdrake/interactive.pm_.c:1170
#, c-format
msgid "Options: %s"
msgstr "Optiot: %s"
@@ -1555,8 +1578,9 @@ msgstr "Optiot: %s"
msgid "Please make a backup of your data first"
msgstr "Tee ensin varmuuskopio tiedoistasi"
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:924
-#: ../../diskdrake/interactive.pm_.c:933 ../../diskdrake/interactive.pm_.c:999
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:934
+#: ../../diskdrake/interactive.pm_.c:943
+#: ../../diskdrake/interactive.pm_.c:1009
msgid "Read carefully!"
msgstr "Lue tarkkaan!"
@@ -1594,10 +1618,17 @@ msgid "Please click on a partition"
msgstr "Klikkaa osiota"
#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
-#: ../../install_steps_gtk.pm_.c:471
+#: ../../install_steps_gtk.pm_.c:465
msgid "Details"
msgstr "Yksityiskohdat"
+#: ../../diskdrake/hd_gtk.pm_.c:252
+#, fuzzy
+msgid "No hard drives found"
+msgstr ""
+"Paikallisia tulostimia ei löytynyt!\n"
+"\n"
+
#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Ext2"
msgstr "Ext2"
@@ -1622,13 +1653,13 @@ msgstr "SunOS"
msgid "Swap"
msgstr "Swap"
-#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1105
msgid "Empty"
msgstr "Tyhjä"
-#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:331
-#: ../../install_steps_gtk.pm_.c:389 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1679
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:325
+#: ../../install_steps_gtk.pm_.c:383 ../../mouse.pm_.c:165
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1754
msgid "Other"
msgstr "Muut"
@@ -1636,12 +1667,12 @@ msgstr "Muut"
msgid "Filesystem types:"
msgstr "Tiedostojärjestelmien tyypit:"
-#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:397
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:402
msgid "Create"
msgstr "Luo"
-#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:376
-#: ../../diskdrake/interactive.pm_.c:521 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:380
+#: ../../diskdrake/interactive.pm_.c:531 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "Tyyppi"
@@ -1651,7 +1682,7 @@ msgstr "Tyyppi"
msgid "Use ``%s'' instead"
msgstr "Käytä sen sijaan ``%s'':ää"
-#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:389
msgid "Delete"
msgstr "Poista"
@@ -1660,78 +1691,78 @@ msgid "Use ``Unmount'' first"
msgstr "Käytä ensin komentoa ``Irroita''"
# mat
-#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:513
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:518
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
msgstr "Vaihdettuasi osion %s tyyppiä kaikki sillä olevat tiedot häviävät"
-#: ../../diskdrake/interactive.pm_.c:173
+#: ../../diskdrake/interactive.pm_.c:174
msgid "Choose a partition"
msgstr "Valitse osio"
-#: ../../diskdrake/interactive.pm_.c:173
+#: ../../diskdrake/interactive.pm_.c:174
msgid "Choose another partition"
msgstr "Valitse toinen osio"
-#: ../../diskdrake/interactive.pm_.c:198
+#: ../../diskdrake/interactive.pm_.c:199
msgid "Exit"
msgstr "Poistu"
-#: ../../diskdrake/interactive.pm_.c:220
+#: ../../diskdrake/interactive.pm_.c:221
msgid "Toggle to expert mode"
msgstr "Vaihda asiantuntijatilaan"
-#: ../../diskdrake/interactive.pm_.c:220
+#: ../../diskdrake/interactive.pm_.c:221
msgid "Toggle to normal mode"
msgstr "Vaihda normaalitilaan"
-#: ../../diskdrake/interactive.pm_.c:220
+#: ../../diskdrake/interactive.pm_.c:221
msgid "Undo"
msgstr "Peruuta"
-#: ../../diskdrake/interactive.pm_.c:239
+#: ../../diskdrake/interactive.pm_.c:240
msgid "Continue anyway?"
msgstr "Jatka joka tapauksessa?"
-#: ../../diskdrake/interactive.pm_.c:244
+#: ../../diskdrake/interactive.pm_.c:245
msgid "Quit without saving"
msgstr "Lopeta tallentamatta"
-#: ../../diskdrake/interactive.pm_.c:244
+#: ../../diskdrake/interactive.pm_.c:245
msgid "Quit without writing the partition table?"
msgstr "Lopeta kirjoittamatta osiotalua?"
-#: ../../diskdrake/interactive.pm_.c:249
+#: ../../diskdrake/interactive.pm_.c:250
msgid "Do you want to save /etc/fstab modifications"
msgstr "Haluatko tallentaa muutokset tiedostoon /etc/fstab"
-#: ../../diskdrake/interactive.pm_.c:261
+#: ../../diskdrake/interactive.pm_.c:263
msgid "Auto allocate"
msgstr "Automaattinen varaus"
-#: ../../diskdrake/interactive.pm_.c:261
+#: ../../diskdrake/interactive.pm_.c:263
msgid "Clear all"
msgstr "Tyhjennä kaikki"
-#: ../../diskdrake/interactive.pm_.c:261
+#: ../../diskdrake/interactive.pm_.c:263
#: ../../install_steps_interactive.pm_.c:214
msgid "More"
msgstr "Lisäasetukset"
-#: ../../diskdrake/interactive.pm_.c:264
+#: ../../diskdrake/interactive.pm_.c:267
msgid "Hard drive information"
msgstr "Kiintolevyn tiedot"
-#: ../../diskdrake/interactive.pm_.c:294
+#: ../../diskdrake/interactive.pm_.c:298
msgid "All primary partitions are used"
msgstr "Kaikki primääriosiot käytetty"
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:299
msgid "I can't add any more partition"
msgstr "Uusia osioita ei voida lisätä"
-#: ../../diskdrake/interactive.pm_.c:296
+#: ../../diskdrake/interactive.pm_.c:300
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -1739,31 +1770,31 @@ msgstr ""
"Voidaksesi luoda lisää osioita tuhoa yksi olemassaoleva osio jotta voisit "
"luoda laajennetun osion"
-#: ../../diskdrake/interactive.pm_.c:306
+#: ../../diskdrake/interactive.pm_.c:310
msgid "Save partition table"
msgstr "Tallenna osiotaulu"
-#: ../../diskdrake/interactive.pm_.c:307
+#: ../../diskdrake/interactive.pm_.c:311
msgid "Restore partition table"
msgstr "Palauta osiotaulu"
-#: ../../diskdrake/interactive.pm_.c:308
+#: ../../diskdrake/interactive.pm_.c:312
msgid "Rescue partition table"
msgstr "Pelasta osiotaulu"
-#: ../../diskdrake/interactive.pm_.c:310
+#: ../../diskdrake/interactive.pm_.c:314
msgid "Reload partition table"
msgstr "Uudelleenlataa osiotaulu"
-#: ../../diskdrake/interactive.pm_.c:315
+#: ../../diskdrake/interactive.pm_.c:319
msgid "Removable media automounting"
msgstr "Vaihdettavan median automaattinen liittäminen"
-#: ../../diskdrake/interactive.pm_.c:324 ../../diskdrake/interactive.pm_.c:344
+#: ../../diskdrake/interactive.pm_.c:328 ../../diskdrake/interactive.pm_.c:348
msgid "Select file"
msgstr "Valitse tiedosto"
-#: ../../diskdrake/interactive.pm_.c:331
+#: ../../diskdrake/interactive.pm_.c:335
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1771,11 +1802,11 @@ msgstr ""
"Osiotaulun varmuuskopio ei ole saman kokoinen\n"
"Jatka silti?"
-#: ../../diskdrake/interactive.pm_.c:345
+#: ../../diskdrake/interactive.pm_.c:349
msgid "Warning"
msgstr "Varoitus"
-#: ../../diskdrake/interactive.pm_.c:346
+#: ../../diskdrake/interactive.pm_.c:350
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1783,79 +1814,71 @@ msgstr ""
"Aseta levyke asemaan\n"
"Kaikki levykkeen tiedot häviävät"
-#: ../../diskdrake/interactive.pm_.c:357
+#: ../../diskdrake/interactive.pm_.c:361
msgid "Trying to rescue partition table"
msgstr "Yritän osiotalulun palautusta"
-#: ../../diskdrake/interactive.pm_.c:363
+#: ../../diskdrake/interactive.pm_.c:367
msgid "Detailed information"
msgstr "Yksityiskohtaiset tiedot"
-#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:652
+#: ../../diskdrake/interactive.pm_.c:382 ../../diskdrake/interactive.pm_.c:662
msgid "Resize"
msgstr "Uusi koko"
-#: ../../diskdrake/interactive.pm_.c:379 ../../diskdrake/interactive.pm_.c:705
+#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/interactive.pm_.c:715
msgid "Move"
msgstr "Siirrä"
-#: ../../diskdrake/interactive.pm_.c:380
+#: ../../diskdrake/interactive.pm_.c:384
msgid "Format"
msgstr "Alusta"
-#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/smbnfs_gtk.pm_.c:82
-msgid "Mount"
-msgstr "Liitä"
-
-#: ../../diskdrake/interactive.pm_.c:382
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Add to RAID"
msgstr "Lisää RAIDiin"
-#: ../../diskdrake/interactive.pm_.c:383
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Add to LVM"
msgstr "Lisää LVM:iin"
-#: ../../diskdrake/interactive.pm_.c:384 ../../diskdrake/smbnfs_gtk.pm_.c:81
-msgid "Unmount"
-msgstr "Irroita"
-
-#: ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/interactive.pm_.c:390
msgid "Remove from RAID"
msgstr "Poista RAIDista"
-#: ../../diskdrake/interactive.pm_.c:387
+#: ../../diskdrake/interactive.pm_.c:391
msgid "Remove from LVM"
msgstr "Poista LVM:stä"
-#: ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/interactive.pm_.c:392
msgid "Modify RAID"
msgstr "Muokkaa RAIDia"
-#: ../../diskdrake/interactive.pm_.c:389
+#: ../../diskdrake/interactive.pm_.c:393
msgid "Use for loopback"
msgstr "Käytä loopback-tiedostoa"
-#: ../../diskdrake/interactive.pm_.c:428
+#: ../../diskdrake/interactive.pm_.c:433
msgid "Create a new partition"
msgstr "Luo uusi osio"
-#: ../../diskdrake/interactive.pm_.c:431
+#: ../../diskdrake/interactive.pm_.c:436
msgid "Start sector: "
msgstr "Aloitussektori: "
-#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:805
+#: ../../diskdrake/interactive.pm_.c:438 ../../diskdrake/interactive.pm_.c:815
msgid "Size in MB: "
msgstr "Koko Mt: "
-#: ../../diskdrake/interactive.pm_.c:434 ../../diskdrake/interactive.pm_.c:806
+#: ../../diskdrake/interactive.pm_.c:439 ../../diskdrake/interactive.pm_.c:816
msgid "Filesystem type: "
msgstr "Tiedostojärjestelmä: "
-#: ../../diskdrake/interactive.pm_.c:439
+#: ../../diskdrake/interactive.pm_.c:444
msgid "Preference: "
msgstr "Etuoikeus: "
-#: ../../diskdrake/interactive.pm_.c:464
+#: ../../diskdrake/interactive.pm_.c:469
msgid ""
"You can't create a new partition\n"
"(since you reached the maximal number of primary partitions).\n"
@@ -1863,34 +1886,34 @@ msgid ""
msgstr ""
# mat
-#: ../../diskdrake/interactive.pm_.c:494
+#: ../../diskdrake/interactive.pm_.c:499
msgid "Remove the loopback file?"
msgstr "Poista loopback-tiedosto?"
-#: ../../diskdrake/interactive.pm_.c:519
+#: ../../diskdrake/interactive.pm_.c:529
msgid "Change partition type"
msgstr "Muuta osiotyyppiä"
-#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:530 ../../diskdrake/removable.pm_.c:48
msgid "Which filesystem do you want?"
msgstr "Minkä tiedostojärjestelmän haluat?"
-#: ../../diskdrake/interactive.pm_.c:526
+#: ../../diskdrake/interactive.pm_.c:536
msgid "Switching from ext2 to ext3"
msgstr "Vaihdan ext2:sta ext3:een"
# mat
-#: ../../diskdrake/interactive.pm_.c:556
+#: ../../diskdrake/interactive.pm_.c:566
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "Minne haluat liittää loopback-tiedoston %s?"
-#: ../../diskdrake/interactive.pm_.c:557
+#: ../../diskdrake/interactive.pm_.c:567
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Minne haluat liittää laitteen %s?"
-#: ../../diskdrake/interactive.pm_.c:563
+#: ../../diskdrake/interactive.pm_.c:573
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1898,136 +1921,136 @@ msgstr ""
"Ei voida poistaa liitospaikkaa koska osiota käytetään loopback-tilassa.\n"
"Poista loopback-tiedosto ensin"
-#: ../../diskdrake/interactive.pm_.c:584
+#: ../../diskdrake/interactive.pm_.c:594
#, fuzzy, c-format
msgid "Where do you want to mount %s?"
msgstr "Minne haluat liittää laitteen %s?"
-#: ../../diskdrake/interactive.pm_.c:608
+#: ../../diskdrake/interactive.pm_.c:618
msgid "Computing FAT filesystem bounds"
msgstr "Lasken FAT-tiedostojärjestelmän rajoja"
-#: ../../diskdrake/interactive.pm_.c:608 ../../diskdrake/interactive.pm_.c:667
-#: ../../install_interactive.pm_.c:131
+#: ../../diskdrake/interactive.pm_.c:618 ../../diskdrake/interactive.pm_.c:677
+#: ../../install_interactive.pm_.c:133
msgid "Resizing"
msgstr "Muutan kokoa"
-#: ../../diskdrake/interactive.pm_.c:640
+#: ../../diskdrake/interactive.pm_.c:650
msgid "This partition is not resizeable"
msgstr "Tämän osion kokoa ei voi muuttaa"
-#: ../../diskdrake/interactive.pm_.c:645
+#: ../../diskdrake/interactive.pm_.c:655
msgid "All data on this partition should be backed-up"
msgstr "Kaikki osion tiedot tulee varmuuskopioida"
# mat
-#: ../../diskdrake/interactive.pm_.c:647
+#: ../../diskdrake/interactive.pm_.c:657
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr "Osion %s koon muuttamisen jälkeen kaikki osion tiedot tuhoutuvat"
-#: ../../diskdrake/interactive.pm_.c:652
+#: ../../diskdrake/interactive.pm_.c:662
msgid "Choose the new size"
msgstr "Valitse uusi koko"
-#: ../../diskdrake/interactive.pm_.c:653
+#: ../../diskdrake/interactive.pm_.c:663
msgid "New size in MB: "
msgstr "Uusi koko (Mt): "
-#: ../../diskdrake/interactive.pm_.c:706
+#: ../../diskdrake/interactive.pm_.c:716
msgid "Which disk do you want to move it to?"
msgstr "Mille levylle haluat siirtää?"
-#: ../../diskdrake/interactive.pm_.c:707
+#: ../../diskdrake/interactive.pm_.c:717
msgid "Sector"
msgstr "Sektori"
-#: ../../diskdrake/interactive.pm_.c:708
+#: ../../diskdrake/interactive.pm_.c:718
msgid "Which sector do you want to move it to?"
msgstr "Mille sektorille haluat siirtää?"
-#: ../../diskdrake/interactive.pm_.c:711
+#: ../../diskdrake/interactive.pm_.c:721
msgid "Moving"
msgstr "Siirrän"
-#: ../../diskdrake/interactive.pm_.c:711
+#: ../../diskdrake/interactive.pm_.c:721
msgid "Moving partition..."
msgstr "Siirrän osiota..."
-#: ../../diskdrake/interactive.pm_.c:728
+#: ../../diskdrake/interactive.pm_.c:738
msgid "Choose an existing RAID to add to"
msgstr "Valitse olemassaoleva RAID johon lisätään"
-#: ../../diskdrake/interactive.pm_.c:729 ../../diskdrake/interactive.pm_.c:746
+#: ../../diskdrake/interactive.pm_.c:739 ../../diskdrake/interactive.pm_.c:756
msgid "new"
msgstr "uusi"
-#: ../../diskdrake/interactive.pm_.c:744
+#: ../../diskdrake/interactive.pm_.c:754
msgid "Choose an existing LVM to add to"
msgstr "Valitse olemassaoleva LVM johon lisätään"
-#: ../../diskdrake/interactive.pm_.c:749
+#: ../../diskdrake/interactive.pm_.c:759
msgid "LVM name?"
msgstr "LVM:n nimi?"
-#: ../../diskdrake/interactive.pm_.c:790
+#: ../../diskdrake/interactive.pm_.c:800
msgid "This partition can't be used for loopback"
msgstr "Osiota ei voida käyttää loopback-osiona"
-#: ../../diskdrake/interactive.pm_.c:803
+#: ../../diskdrake/interactive.pm_.c:813
msgid "Loopback"
msgstr "Loopback"
-#: ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:814
msgid "Loopback file name: "
msgstr "Loopback tiedostonimi: "
-#: ../../diskdrake/interactive.pm_.c:809
+#: ../../diskdrake/interactive.pm_.c:819
msgid "Give a file name"
msgstr "Anna tiedostonimi"
-#: ../../diskdrake/interactive.pm_.c:812
+#: ../../diskdrake/interactive.pm_.c:822
msgid "File already used by another loopback, choose another one"
msgstr "Tiedosto on jo käytössä toiselle loopbackille, valitse toinen"
-#: ../../diskdrake/interactive.pm_.c:813
+#: ../../diskdrake/interactive.pm_.c:823
msgid "File already exists. Use it?"
msgstr "Tiedosto on jo olemassa. Käytä sitä?"
-#: ../../diskdrake/interactive.pm_.c:836
+#: ../../diskdrake/interactive.pm_.c:846
msgid "Mount options"
msgstr "Liittämisen optiot"
-#: ../../diskdrake/interactive.pm_.c:843
+#: ../../diskdrake/interactive.pm_.c:853
msgid "Various"
msgstr "Useita"
-#: ../../diskdrake/interactive.pm_.c:907 ../../standalone/drakfloppy_.c:103
+#: ../../diskdrake/interactive.pm_.c:917 ../../standalone/drakfloppy_.c:103
msgid "device"
msgstr "laite"
-#: ../../diskdrake/interactive.pm_.c:908
+#: ../../diskdrake/interactive.pm_.c:918
msgid "level"
msgstr "taso"
-#: ../../diskdrake/interactive.pm_.c:909
+#: ../../diskdrake/interactive.pm_.c:919
msgid "chunk size"
msgstr "palan koko"
-#: ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:934
msgid "Be careful: this operation is dangerous."
msgstr "Varo: tämä on vaarallinen toiminto"
-#: ../../diskdrake/interactive.pm_.c:939
+#: ../../diskdrake/interactive.pm_.c:949
msgid "What type of partitioning?"
msgstr "Minkä tyyppinen osiointi?"
-#: ../../diskdrake/interactive.pm_.c:955
+#: ../../diskdrake/interactive.pm_.c:965
#, fuzzy, c-format
msgid "The package %s is needed. Install it?"
msgstr "Paketti %s pitää asentaa. Haluatko asentaa sen?"
-#: ../../diskdrake/interactive.pm_.c:969
+#: ../../diskdrake/interactive.pm_.c:979
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -2039,7 +2062,7 @@ msgstr ""
"Joko käytät LILOa ja se ei toimi, tai et käytä LILOa, jolloin et tarvitse /"
"boot -hakemistoa"
-#: ../../diskdrake/interactive.pm_.c:973
+#: ../../diskdrake/interactive.pm_.c:983
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -2050,7 +2073,7 @@ msgstr ""
"eikä sinulla ole /boot osiota.\n"
"Jos haluat käyttää LILO-käynnistyksenhallintaa, lisää Linuxille /boot osio."
-#: ../../diskdrake/interactive.pm_.c:979
+#: ../../diskdrake/interactive.pm_.c:989
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
@@ -2060,46 +2083,46 @@ msgstr ""
"Mikään käynnistyslataaja ei osaa käsitellä tätä ilman /boot -osiota.\n"
"Lisää /boot -osio, jos haluat käyttää liloa tai grubia"
-#: ../../diskdrake/interactive.pm_.c:999
+#: ../../diskdrake/interactive.pm_.c:1009
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "Levyn %s osiotaulu kirjotetaan levylle!"
-#: ../../diskdrake/interactive.pm_.c:1003
+#: ../../diskdrake/interactive.pm_.c:1013
msgid "You'll need to reboot before the modification can take place"
msgstr "Sinun täytyy käynnistää kone uudelleen ennen kuin muutos tulee voimaan"
# mat
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1024
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr "Kaikki osiolla %s olevat tiedot häviävät osion alustuksen yhteydessä"
-#: ../../diskdrake/interactive.pm_.c:1016
+#: ../../diskdrake/interactive.pm_.c:1026
msgid "Formatting"
msgstr "Alustan"
# mat
-#: ../../diskdrake/interactive.pm_.c:1017
+#: ../../diskdrake/interactive.pm_.c:1027
#, c-format
msgid "Formatting loopback file %s"
msgstr "Alustan loopback-osiota %s"
-#: ../../diskdrake/interactive.pm_.c:1018
-#: ../../install_steps_interactive.pm_.c:476
+#: ../../diskdrake/interactive.pm_.c:1028
+#: ../../install_steps_interactive.pm_.c:459
#, c-format
msgid "Formatting partition %s"
msgstr "Alustan osiota %s"
-#: ../../diskdrake/interactive.pm_.c:1029
+#: ../../diskdrake/interactive.pm_.c:1039
msgid "Hide files"
msgstr "Piilota tiedostot"
-#: ../../diskdrake/interactive.pm_.c:1029
+#: ../../diskdrake/interactive.pm_.c:1039
msgid "Move files to the new partition"
msgstr "Siirrä tiedostot uuteen osioon"
-#: ../../diskdrake/interactive.pm_.c:1030
+#: ../../diskdrake/interactive.pm_.c:1040
#, c-format
msgid ""
"Directory %s already contains data\n"
@@ -2108,84 +2131,84 @@ msgstr ""
"Hakemisto %s sisältää jo jotakin tietoa\n"
"(%s)"
-#: ../../diskdrake/interactive.pm_.c:1041
+#: ../../diskdrake/interactive.pm_.c:1051
msgid "Moving files to the new partition"
msgstr "Siirrän tiedostoja uudelle osiolle"
-#: ../../diskdrake/interactive.pm_.c:1045
+#: ../../diskdrake/interactive.pm_.c:1055
#, c-format
msgid "Copying %s"
msgstr "Kopioidaan %s"
-#: ../../diskdrake/interactive.pm_.c:1049
+#: ../../diskdrake/interactive.pm_.c:1059
#, c-format
msgid "Removing %s"
msgstr "Poistetaan %s"
-#: ../../diskdrake/interactive.pm_.c:1059
+#: ../../diskdrake/interactive.pm_.c:1069
#, c-format
msgid "partition %s is now known as %s"
msgstr "osio %s tunnetaan nyt nimellä %s"
-#: ../../diskdrake/interactive.pm_.c:1080
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1090
+#: ../../diskdrake/interactive.pm_.c:1149
msgid "Device: "
msgstr "Laite: "
-#: ../../diskdrake/interactive.pm_.c:1081
+#: ../../diskdrake/interactive.pm_.c:1091
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "DOS-asema: %s (vain arvaus)\n"
-#: ../../diskdrake/interactive.pm_.c:1085
-#: ../../diskdrake/interactive.pm_.c:1093
-#: ../../diskdrake/interactive.pm_.c:1157
+#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1103
+#: ../../diskdrake/interactive.pm_.c:1168
msgid "Type: "
msgstr "Tyyppi: "
-#: ../../diskdrake/interactive.pm_.c:1089
+#: ../../diskdrake/interactive.pm_.c:1099
msgid "Name: "
msgstr "Nimi: "
-#: ../../diskdrake/interactive.pm_.c:1097
+#: ../../diskdrake/interactive.pm_.c:1107
#, c-format
msgid "Start: sector %s\n"
msgstr "Alkaa: sektori %s\n"
# mat
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1108
#, c-format
msgid "Size: %s"
msgstr "Koko: %s"
-#: ../../diskdrake/interactive.pm_.c:1100
+#: ../../diskdrake/interactive.pm_.c:1110
#, c-format
msgid ", %s sectors"
msgstr ", %s sektoria"
-#: ../../diskdrake/interactive.pm_.c:1102
+#: ../../diskdrake/interactive.pm_.c:1112
#, c-format
msgid "Cylinder %d to %d\n"
msgstr "Sylinteristä %d sylinteriin %d\n"
-#: ../../diskdrake/interactive.pm_.c:1103
+#: ../../diskdrake/interactive.pm_.c:1113
msgid "Formatted\n"
msgstr "Alustettu\n"
-#: ../../diskdrake/interactive.pm_.c:1104
+#: ../../diskdrake/interactive.pm_.c:1114
msgid "Not formatted\n"
msgstr "Ei alustettu\n"
-#: ../../diskdrake/interactive.pm_.c:1105
+#: ../../diskdrake/interactive.pm_.c:1115
msgid "Mounted\n"
msgstr "Liitetty\n"
-#: ../../diskdrake/interactive.pm_.c:1106
+#: ../../diskdrake/interactive.pm_.c:1116
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1108
+#: ../../diskdrake/interactive.pm_.c:1118
#, c-format
msgid ""
"Loopback file(s):\n"
@@ -2194,7 +2217,7 @@ msgstr ""
"Loopback tiedosto(t):\n"
" %s\n"
-#: ../../diskdrake/interactive.pm_.c:1109
+#: ../../diskdrake/interactive.pm_.c:1119
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -2202,27 +2225,27 @@ msgstr ""
"Osiolta käynnistetään oletuksena\n"
" (MS-DOS käynnistys, ei lilo)\n"
-#: ../../diskdrake/interactive.pm_.c:1111
+#: ../../diskdrake/interactive.pm_.c:1121
#, c-format
msgid "Level %s\n"
msgstr "Taso %s\n"
-#: ../../diskdrake/interactive.pm_.c:1112
+#: ../../diskdrake/interactive.pm_.c:1122
#, c-format
msgid "Chunk size %s\n"
msgstr "Palan koko %s\n"
-#: ../../diskdrake/interactive.pm_.c:1113
+#: ../../diskdrake/interactive.pm_.c:1123
#, c-format
msgid "RAID-disks %s\n"
msgstr "RAID-levyt %s\n"
-#: ../../diskdrake/interactive.pm_.c:1115
+#: ../../diskdrake/interactive.pm_.c:1125
#, c-format
msgid "Loopback file name: %s"
msgstr "Loopback-tiedoston nimi: %s"
-#: ../../diskdrake/interactive.pm_.c:1118
+#: ../../diskdrake/interactive.pm_.c:1128
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -2234,7 +2257,7 @@ msgstr ""
"ajuriosio. Sinun olisi kaiketi\n"
"parasta jättää se rauhaan.\n"
-#: ../../diskdrake/interactive.pm_.c:1121
+#: ../../diskdrake/interactive.pm_.c:1131
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2246,59 +2269,63 @@ msgstr ""
"osio on järjestelmäsi\n"
"kaksoiskäynnistämiseksi.\n"
-#: ../../diskdrake/interactive.pm_.c:1140
+#: ../../diskdrake/interactive.pm_.c:1150
+msgid "Read-only"
+msgstr ""
+
+#: ../../diskdrake/interactive.pm_.c:1151
#, c-format
msgid "Size: %s\n"
msgstr "Koko: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1141
+#: ../../diskdrake/interactive.pm_.c:1152
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Geometria: %s sylinteriä, %s lukupäätä, %s sektoria\n"
-#: ../../diskdrake/interactive.pm_.c:1142
+#: ../../diskdrake/interactive.pm_.c:1153
msgid "Info: "
msgstr "Tietoja: "
-#: ../../diskdrake/interactive.pm_.c:1143
+#: ../../diskdrake/interactive.pm_.c:1154
#, c-format
msgid "LVM-disks %s\n"
msgstr "LVM-levyt %s\n"
# mat
-#: ../../diskdrake/interactive.pm_.c:1144
+#: ../../diskdrake/interactive.pm_.c:1155
#, c-format
msgid "Partition table type: %s\n"
msgstr "Osion tyyppi: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1145
+#: ../../diskdrake/interactive.pm_.c:1156
#, fuzzy, c-format
msgid "on channel %d id %d\n"
msgstr "väylässä %d id %d\n"
-#: ../../diskdrake/interactive.pm_.c:1175
+#: ../../diskdrake/interactive.pm_.c:1186
msgid "Filesystem encryption key"
msgstr "Tiedostojärjestelmän salausavain"
-#: ../../diskdrake/interactive.pm_.c:1176
+#: ../../diskdrake/interactive.pm_.c:1187
msgid "Choose your filesystem encryption key"
msgstr "Valitse tiedostojärjestelmäsi salausavain"
-#: ../../diskdrake/interactive.pm_.c:1179
+#: ../../diskdrake/interactive.pm_.c:1190
#, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr ""
"Salausavain on liian yksinkertainen (sen pitää olla ainakin %d merkkiä pitkä)"
-#: ../../diskdrake/interactive.pm_.c:1180
+#: ../../diskdrake/interactive.pm_.c:1191
msgid "The encryption keys do not match"
msgstr "Salausavaimet eivät täsmää"
-#: ../../diskdrake/interactive.pm_.c:1183
+#: ../../diskdrake/interactive.pm_.c:1194
msgid "Encryption key"
msgstr "Salausavain"
-#: ../../diskdrake/interactive.pm_.c:1184
+#: ../../diskdrake/interactive.pm_.c:1195
msgid "Encryption key (again)"
msgstr "Salausavain (uudelleen)"
@@ -2335,7 +2362,7 @@ msgid ""
"Please enter your username, password and domain name to access this host."
msgstr ""
-#: ../../diskdrake/smbnfs_gtk.pm_.c:178
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3527
#, fuzzy
msgid "Username"
msgstr "Käyttäjätunnus"
@@ -2349,23 +2376,23 @@ msgstr "NIS-alue"
msgid "Search servers"
msgstr "Hae palvelimet"
-#: ../../fs.pm_.c:552 ../../fs.pm_.c:562 ../../fs.pm_.c:566 ../../fs.pm_.c:570
-#: ../../fs.pm_.c:574 ../../fs.pm_.c:578
+#: ../../fs.pm_.c:544 ../../fs.pm_.c:554 ../../fs.pm_.c:558 ../../fs.pm_.c:562
+#: ../../fs.pm_.c:566 ../../fs.pm_.c:570
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s:n alustus %s:ta epäonnistui"
-#: ../../fs.pm_.c:615
+#: ../../fs.pm_.c:607
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "en osaa alustaa %s:ää tyyppiä %s"
-#: ../../fs.pm_.c:687 ../../fs.pm_.c:731
+#: ../../fs.pm_.c:681 ../../fs.pm_.c:724
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../fs.pm_.c:746 ../../partition_table.pm_.c:602
+#: ../../fs.pm_.c:739 ../../partition_table.pm_.c:598
#, c-format
msgid "error unmounting %s: %s"
msgstr "virhe irroitettaessa %s: %s"
@@ -2382,34 +2409,51 @@ msgstr ""
msgid "server"
msgstr "palvelin"
-#: ../../fsedit.pm_.c:472
+#: ../../fsedit.pm_.c:240
+#, fuzzy, c-format
+msgid ""
+"I can't read the partition table of device %s, it's too corrupted for me :(\n"
+"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
+"The other solution is to not allow DrakX to modify the partition table.\n"
+"(the error is %s)\n"
+"\n"
+"Do you agree to loose all the partitions?\n"
+msgstr ""
+"Osiotaulua ei voida lukea, siinä on liikaa virheitä :(\n"
+"Asennusta voidaan jatkaa yrittämällä tyhjentää virheelliset osiot\n"
+"(KAIKKI TIETO tuhoutuu!). Toinen vaihtoehto on kieltää DrakX:ää\n"
+"muokkaamasta osiointitaulua. (virhe on: %s)\n"
+"\n"
+"Hyväksytkö kaikkien osioiden menettämisen?\n"
+
+#: ../../fsedit.pm_.c:501
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr "Et voi käyttää JFS:ää alle 16 Mt osioilla"
-#: ../../fsedit.pm_.c:473
+#: ../../fsedit.pm_.c:502
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr "Et voi käyttää ReiserFS:ää alle 32 Mt osioilla"
-#: ../../fsedit.pm_.c:492
+#: ../../fsedit.pm_.c:521
msgid "Mount points must begin with a leading /"
msgstr "Liitospaikan pitää alkaa /-merkillä."
# mat
-#: ../../fsedit.pm_.c:493
+#: ../../fsedit.pm_.c:522
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "On jo olemassa osio, jonka liitospaikka on %s\n"
-#: ../../fsedit.pm_.c:497
+#: ../../fsedit.pm_.c:526
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr "Et voi käyttää LVM loogista taltiota liitekohtana %s"
-#: ../../fsedit.pm_.c:499
+#: ../../fsedit.pm_.c:528
msgid "This directory should remain within the root filesystem"
msgstr "Tämän hakemiston pitäisi olla juuritiedostojärjestelmässä"
-#: ../../fsedit.pm_.c:501
+#: ../../fsedit.pm_.c:530
#, fuzzy
msgid ""
"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
@@ -2417,231 +2461,278 @@ msgid ""
msgstr ""
"Tarvitset tähän liitoskohtaan oikean tiedostojärjestelmän (ext2, reiserfs)\n"
-#: ../../fsedit.pm_.c:503
+#: ../../fsedit.pm_.c:532
#, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr "Et voi käyttää salattua tiedostojärjestelmää liitoskohdassa %s"
-#: ../../fsedit.pm_.c:570
+#: ../../fsedit.pm_.c:599
msgid "Not enough free space for auto-allocating"
msgstr "Vapaa tila ei riitä automaattiseen varaukseen"
-#: ../../fsedit.pm_.c:572
+#: ../../fsedit.pm_.c:601
msgid "Nothing to do"
msgstr "Ei mitään tekemistä"
-#: ../../fsedit.pm_.c:665
+#: ../../fsedit.pm_.c:694
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Virhe kirjoitettaessa tiedostoon %s: %s"
-#: ../../fsedit.pm_.c:750
+#: ../../harddrake/sound.pm_.c:155
+msgid "No alternative driver"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:156
+#, c-format
+msgid "There's no known OSS/ALSA alternative driver for your sound card (%s)"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:158
+#, fuzzy
+msgid "Sound configuration"
+msgstr "Asetustyökalut"
+
+#: ../../harddrake/sound.pm_.c:159
+#, c-format
msgid ""
-"An error occurred - no valid devices were found on which to create new "
-"filesystems. Please check your hardware for the cause of this problem"
+"Here you can select an alternative driver (either OSS or ALSA) for your "
+"sound card (%s)"
msgstr ""
-"On tapahtunut virhe - ei löytynyt ainuttakaan laitetta, joille voi luoda "
-"uuden tiedostojärjestelmän. Tarkista laitteistosi korjataksesi ongelman"
-#: ../../fsedit.pm_.c:773
-msgid "You don't have any partitions!"
-msgstr "Sinulla ei ole yhtään osiota!"
+#: ../../harddrake/sound.pm_.c:162
+#, fuzzy
+msgid "Driver:"
+msgstr "Ajurit"
-#: ../../harddrake/ui.pm_.c:15
+#: ../../harddrake/sound.pm_.c:173
+msgid "No known driver"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:174
+#, c-format
+msgid "There's no known driver for your sound card (%s)"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:177
+#, fuzzy
+msgid "Unkown driver"
+msgstr "Tuntematon malli"
+
+#: ../../harddrake/sound.pm_.c:178
+#, c-format
+msgid ""
+"The \"%s\" driver for your sound card is unlisted\n"
+"\n"
+"Please send the output of the \"lspcidrake -v\" command to\n"
+"<install at mandrakesoft dot com>\n"
+"with subject: unlisted sound driver \"%s\""
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:16
#, fuzzy
msgid "Model"
msgstr "Hiiri"
-#: ../../harddrake/ui.pm_.c:15
+#: ../../harddrake/ui.pm_.c:16
#, fuzzy
msgid "hard disk model"
msgstr "Kortin muisti (DMA)"
-#: ../../harddrake/ui.pm_.c:16
+#: ../../harddrake/ui.pm_.c:17
#, fuzzy
msgid "Channel"
msgstr "Peruuta"
-#: ../../harddrake/ui.pm_.c:16
+#: ../../harddrake/ui.pm_.c:17
msgid "EIDE/SCSI channel"
msgstr ""
-#: ../../harddrake/ui.pm_.c:18
+#: ../../harddrake/ui.pm_.c:19
msgid "Bus"
msgstr ""
-#: ../../harddrake/ui.pm_.c:19
+#: ../../harddrake/ui.pm_.c:20
msgid ""
"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
msgstr ""
-#: ../../harddrake/ui.pm_.c:20
+#: ../../harddrake/ui.pm_.c:21
#, fuzzy
msgid "Module"
msgstr "Hiiri"
-#: ../../harddrake/ui.pm_.c:20
+#: ../../harddrake/ui.pm_.c:21
msgid "the module of the GNU/Linux kernel that handle that device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:21
+#: ../../harddrake/ui.pm_.c:22
msgid "Media class"
msgstr ""
-#: ../../harddrake/ui.pm_.c:21
+#: ../../harddrake/ui.pm_.c:22
msgid "class of hardware device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:22 ../../printerdrake.pm_.c:1404
+#: ../../harddrake/ui.pm_.c:23 ../../printerdrake.pm_.c:1517
msgid "Description"
msgstr "Kuvaus"
-#: ../../harddrake/ui.pm_.c:22
+#: ../../harddrake/ui.pm_.c:23
msgid "this field describe the device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:24
+#: ../../harddrake/ui.pm_.c:25
#, fuzzy
msgid "Bus identification"
msgstr "Tunnistustapa"
-#: ../../harddrake/ui.pm_.c:25
+#: ../../harddrake/ui.pm_.c:26
msgid ""
-"- PCI and USB devices : this list the vendor, device, subvendor and "
-"subdevice PCI/USB ids"
+"- PCI and USB devices: this list the vendor, device, subvendor and subdevice "
+"PCI/USB ids"
msgstr ""
-#: ../../harddrake/ui.pm_.c:27
+#: ../../harddrake/ui.pm_.c:28
msgid "Location on the bus"
msgstr ""
-#: ../../harddrake/ui.pm_.c:28
+#: ../../harddrake/ui.pm_.c:29
msgid ""
"- pci devices: this gives the PCI slot, device and function of this card\n"
"- eide devices: the device is either a slave or a master device\n"
"- scsi devices: the scsi bus and the scsi device ids"
msgstr ""
-#: ../../harddrake/ui.pm_.c:31
+#: ../../harddrake/ui.pm_.c:32
#, fuzzy
msgid "Old device file"
msgstr "Valitse tiedosto"
-#: ../../harddrake/ui.pm_.c:32
+#: ../../harddrake/ui.pm_.c:33
msgid "old static device name used in dev package"
msgstr ""
-#: ../../harddrake/ui.pm_.c:33
+#: ../../harddrake/ui.pm_.c:34
#, fuzzy
msgid "New devfs device"
msgstr "Yhdyskäytävän laite"
-#: ../../harddrake/ui.pm_.c:34
+#: ../../harddrake/ui.pm_.c:35
msgid "new dinamic device name generated by incore kernel devfs"
msgstr ""
-#: ../../harddrake/ui.pm_.c:35
+#: ../../harddrake/ui.pm_.c:36
#, fuzzy
msgid "Number of buttons"
msgstr "2 näppäintä"
-#: ../../harddrake/ui.pm_.c:36
+#: ../../harddrake/ui.pm_.c:37
msgid "the vendor name of the device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:60
+#: ../../harddrake/ui.pm_.c:38
+#, fuzzy
+msgid "Alternative drivers"
+msgstr "Vaihtoehtoinen testisivu (A4)"
+
+#: ../../harddrake/ui.pm_.c:39
+msgid "the list of alternative drivers for this sound card"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:63
#, fuzzy
msgid "/_Quit"
msgstr "Lopeta"
-#: ../../harddrake/ui.pm_.c:61 ../../harddrake/ui.pm_.c:62
-#: ../../harddrake/ui.pm_.c:68 ../../standalone/logdrake_.c:110
+#: ../../harddrake/ui.pm_.c:64 ../../harddrake/ui.pm_.c:65
+#: ../../harddrake/ui.pm_.c:71 ../../standalone/logdrake_.c:110
msgid "/_Help"
msgstr "/_Ohje"
-#: ../../harddrake/ui.pm_.c:62
+#: ../../harddrake/ui.pm_.c:65
#, fuzzy
msgid "/_Help..."
msgstr "/_Ohje"
-#: ../../harddrake/ui.pm_.c:63
+#: ../../harddrake/ui.pm_.c:66
msgid "Harddrake help"
msgstr ""
-#: ../../harddrake/ui.pm_.c:64
+#: ../../harddrake/ui.pm_.c:67
msgid ""
"Description of the fields:\n"
"\n"
msgstr ""
-#: ../../harddrake/ui.pm_.c:68
+#: ../../harddrake/ui.pm_.c:71
#, fuzzy
msgid "/_About..."
msgstr "/Ohje/_Tietoja..."
-#: ../../harddrake/ui.pm_.c:69
+#: ../../harddrake/ui.pm_.c:72
msgid "About Harddrake"
msgstr ""
-#: ../../harddrake/ui.pm_.c:70
+#: ../../harddrake/ui.pm_.c:73
msgid ""
"This is HardDrake, a Mandrake hardware configuration tool.\n"
"Version:"
msgstr ""
-#: ../../harddrake/ui.pm_.c:71
+#: ../../harddrake/ui.pm_.c:74
#, fuzzy
msgid "Author:"
msgstr "Automaattihaku"
-#: ../../harddrake/ui.pm_.c:83
+#: ../../harddrake/ui.pm_.c:86
#, fuzzy
msgid "Harddrake2 version "
msgstr "Kiintolevyjen tunnistus"
-#: ../../harddrake/ui.pm_.c:91
+#: ../../harddrake/ui.pm_.c:103
#, fuzzy
msgid "Detected hardware"
msgstr "Katso laitteistotietoja"
+#: ../../harddrake/ui.pm_.c:105
+#, fuzzy
+msgid "Information"
+msgstr "Näytä tiedot"
+
# Asennuksen sivuvalikko
-#: ../../harddrake/ui.pm_.c:92
+#: ../../harddrake/ui.pm_.c:108
#, fuzzy
msgid "Configure module"
msgstr "Hiiren määrittely"
-#: ../../harddrake/ui.pm_.c:92
-#, fuzzy
-msgid "Informations"
-msgstr "Näytä tiedot"
-
-#: ../../harddrake/ui.pm_.c:92
+#: ../../harddrake/ui.pm_.c:109
msgid "Run config tool"
msgstr ""
-#: ../../harddrake/ui.pm_.c:96
+#: ../../harddrake/ui.pm_.c:113
#, fuzzy
msgid "Detection in progress"
msgstr "löydetty portista %s"
-#: ../../harddrake/ui.pm_.c:96 ../../interactive.pm_.c:388
+#: ../../harddrake/ui.pm_.c:113 ../../interactive.pm_.c:391
msgid "Please wait"
msgstr "Odota hetki"
-#: ../../harddrake/ui.pm_.c:139
+#: ../../harddrake/ui.pm_.c:156
msgid "primary"
msgstr ""
-#: ../../harddrake/ui.pm_.c:139
+#: ../../harddrake/ui.pm_.c:156
#, fuzzy
msgid "secondary"
msgstr "%d sekuntia"
-#: ../../harddrake/ui.pm_.c:176
+#: ../../harddrake/ui.pm_.c:197
msgid "You can configure each parameter of the module here."
msgstr ""
-#: ../../harddrake/ui.pm_.c:192
+#: ../../harddrake/ui.pm_.c:213
#, fuzzy, c-format
msgid "Running \"%s\" ..."
msgstr "Poistetaan tulostin \"%s\" ..."
@@ -2674,16 +2765,16 @@ msgstr ""
#: ../../harddrake/v4l.pm_.c:213
#, fuzzy
-msgid "Card model :"
+msgid "Card model:"
msgstr "Kortin muisti (DMA)"
#: ../../harddrake/v4l.pm_.c:214
#, fuzzy
-msgid "Tuner type :"
+msgid "Tuner type:"
msgstr "Muuta tyyppiä"
#: ../../harddrake/v4l.pm_.c:215
-msgid "Number of capture buffers :"
+msgid "Number of capture buffers:"
msgstr ""
#: ../../harddrake/v4l.pm_.c:215
@@ -2692,11 +2783,11 @@ msgstr ""
#: ../../harddrake/v4l.pm_.c:217
#, fuzzy
-msgid "PLL setting :"
+msgid "PLL setting:"
msgstr "lataa asetukset"
#: ../../harddrake/v4l.pm_.c:218
-msgid "Radio support :"
+msgid "Radio support:"
msgstr ""
#: ../../harddrake/v4l.pm_.c:218
@@ -2708,22 +2799,22 @@ msgid ""
"GNU/Linux is a multiuser system, and this means that each user can have his\n"
"own preferences, his own files and so on. You can read the ``User Guide''\n"
"to learn more. But unlike \"root\", which is the administrator, the users\n"
-"you will add here will not be entitled to change anything except their own\n"
-"files and their own configuration. You will have to create at least one\n"
-"regular user for yourself. That account is where you should log in for\n"
-"routine use. Although it is very practical to log in as \"root\" everyday,\n"
-"it may also be very dangerous! The slightest mistake could mean that your\n"
-"system would not work any more. If you make a serious mistake as a regular\n"
-"user, you may only lose some information, but not the entire system.\n"
+"you add here will not be entitled to change anything except their own files\n"
+"and their own configuration. You will have to create at least one regular\n"
+"user for yourself. That account is where you should log in for routine use.\n"
+"Although it is very practical to log in as \"root\" everyday, it may also\n"
+"be very dangerous! The slightest mistake could mean that your system would\n"
+"not work any more. If you make a serious mistake as a regular user, you may\n"
+"only lose some information, but not the entire system.\n"
"\n"
"First, you have to enter your real name. This is not mandatory, of course -\n"
"as you can actually enter whatever you want. DrakX will then take the first\n"
"word you have entered in the box and will bring it over to the \"User\n"
"name\". This is the name this particular user will use to log onto the\n"
"system. You can change it. You then have to enter a password here. A\n"
-"non-privileged (regular) user's password is not as crucial as \"root\"' one\n"
-"from a security point of view, but that is no reason to neglect it: after\n"
-"all, your files are at risk.\n"
+"non-privileged (regular) user's password is not as crucial as the \"root\"'\n"
+"one from a security point of view, but that is no reason to neglect it:\n"
+"after all, your files are at risk.\n"
"\n"
"If you click on \"Accept user\", you can then add as many as you want. Add\n"
"a user for each one of your friends: your father or your sister, for\n"
@@ -2847,7 +2938,7 @@ msgid ""
"to have a graphical workstation!\n"
"\n"
"Moving the mouse cursor over a group name will display a short explanatory\n"
-"text about that group. If you deselect all groups when performing a regular\n"
+"text about that group. If you unselect all groups when performing a regular\n"
"installation (by opposition to an upgrade), a dialog will pop up proposing\n"
"different options for a minimal installation:\n"
"\n"
@@ -2873,10 +2964,10 @@ msgstr ""
#: ../../help.pm_.c:128
msgid ""
-"Finally, depending on whether or not you selected individual packages, you\n"
-"will be presented a tree containing all packages classified by groups and\n"
-"subgroups. While browsing the tree, you can select entire groups,\n"
-"subgroups, or individual packages.\n"
+"Finally, depending on whether or not you chose to be able to select\n"
+"individual packages, you will be presented a tree containing all packages\n"
+"classified by groups and subgroups. While browsing the tree, you can select\n"
+"entire groups, subgroups, or individual packages.\n"
"\n"
"Whenever you select a package on the tree, a description appears on the\n"
"right. When your selection is finished, click the \"Install\" button which\n"
@@ -2911,11 +3002,11 @@ msgstr ""
#: ../../help.pm_.c:164
msgid ""
-"You are now proposed to set up your Internet/network connection. If you\n"
-"wish to connect your computer to the Internet or to a local network, click\n"
-"\"OK\". The autodetection of network devices and modem will be launched. If\n"
-"this detection fails, uncheck the \"Use auto detection\" box next time. You\n"
-"may also choose not to configure the network, or do it later; in that case,\n"
+"You are now able to set up your Internet/network connection. If you wish to\n"
+"connect your computer to the Internet or to a local network, click \"OK\".\n"
+"The autodetection of network devices and modem will be launched. If this\n"
+"detection fails, uncheck the \"Use auto detection\" box next time. You may\n"
+"also choose not to configure the network, or do it later; in that case,\n"
"simply click the \"Cancel\" button.\n"
"\n"
"Available connections are: traditional modem, ISDN modem, ADSL connection,\n"
@@ -2975,7 +3066,7 @@ msgstr ""
msgid ""
"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
"local time according to the time zone you selected. It is however possible\n"
-"to deactivate this by deselecting \"Hardware clock set to GMT\" so that the\n"
+"to deactivate this by unselecting \"Hardware clock set to GMT\" so that the\n"
"hardware clock is the same as the system clock. This is useful when the\n"
"machine is hosting another operating system like Windows.\n"
"\n"
@@ -3006,38 +3097,12 @@ msgid ""
"If you can see the message during the test, and answer \"Yes\", then DrakX\n"
"will proceed to the next step. If you cannot see the message, it simply\n"
"means that the configuration was wrong and the test will automatically end\n"
-"after 10 seconds, restoring the screen."
-msgstr ""
-
-#: ../../help.pm_.c:237
-msgid ""
-"The first time you try the X configuration, you may not be very satisfied\n"
-"with its display (screen is too small, shifted left or right...). Hence,\n"
-"even if X starts up correctly, DrakX then asks you if the configuration\n"
-"suits you. It will also propose to change it by displaying a list of valid\n"
-"modes it could find, asking you to select one.\n"
-"\n"
-"As a last resort, if you still cannot get X to work, choose \"Change\n"
-"graphics card\", select \"Unlisted card\", and when prompted on which\n"
-"server, choose \"FBDev\". This is a failsafe option which works with any\n"
-"modern graphics card. Then choose \"Test again\" to be sure."
+"after 10 seconds, restoring the screen. Refer then to the Video\n"
+"configuration section of the user guide for more information on how to\n"
+"configure your display."
msgstr ""
-"Kun kokeilet ensimmäistä kertaa X:n asetuksiasi, et ole välttämättä kovin\n"
-"tyytyväinen sen näyttöön (ruutu on liian pieni, siirtynyt vasemmalle tai\n"
-"oikealle...). Vaikka X käynnistyisikin oikein, DrakX kysyy sinulta, "
-"sopivatko\n"
-"asetukset sinulle. Se ehdottaa myös myös muutoksia näyttämällä listan\n"
-"sen löytämistä voimassa olevista näyttötiloista, pyytäen sinua valitsemaan\n"
-"niistä yksi.\n"
-"\n"
-"Jos et millään saa X:ää toiminaan, kannattaa viimeisenä valita \"Vaihda\n"
-"näytönohjain\", sieltä \"Listaamaton kortti\", ja kun sinulta kysytään, "
-"minkä\n"
-"palvelimen haluat, valitse \"FBDev\". Tämä on vikasietoinen valinta, joka\n"
-"toimii kaikilla nykyaikaisilla näytönohjaimilla. Lopuksi valitse \"Testaa\n"
-"uudelleen\" varmistaaksesi toimimisen."
-#: ../../help.pm_.c:249
+#: ../../help.pm_.c:239
msgid ""
"Finally, you will be asked whether you want to see the graphical interface\n"
"at boot. Note this question will be asked even if you chose not to test the\n"
@@ -3050,7 +3115,7 @@ msgstr ""
"Haluat varmaankin vastata \"Ei\", jos koneesi on tarkoitettu palvelimeksi\n"
"tai jos näytön asetus epäonnistui."
-#: ../../help.pm_.c:256
+#: ../../help.pm_.c:246
msgid ""
"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
@@ -3070,13 +3135,13 @@ msgid ""
"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
"password, or any other reason.\n"
"\n"
-"When you click on this step, you will be asked to enter a disk inside the\n"
-"drive. The floppy disk you will insert must be empty or contain data which\n"
-"you do not need. You will not have to format it since DrakX will rewrite\n"
-"the whole disk."
+"If you say \"Yes\", you will be asked to enter a disk inside the drive. The\n"
+"floppy disk you will insert must be empty or contain data which you do not\n"
+"need. You will not have to format it since DrakX will rewrite the whole\n"
+"disk."
msgstr ""
-#: ../../help.pm_.c:280
+#: ../../help.pm_.c:270
#, fuzzy
msgid ""
"At this point, you need to choose where you want to install the Mandrake\n"
@@ -3110,7 +3175,9 @@ msgid ""
"\n"
" * \"Use existing partition\": the wizard has detected one or more existing\n"
"Linux partitions on your hard drive. If you want to use them, choose this\n"
-"option;\n"
+"option. You will then be asked to choose the mount points associated to\n"
+"each of the partitions. The legacy mount points are selected by default,\n"
+"and you should generally keep them.\n"
"\n"
" * \"Use the free space on the Windows; partition\": if Microsoft Windows\n"
"is installed on your hard drive and takes all the space available on it,\n"
@@ -3143,7 +3210,9 @@ msgid ""
" * \"Expert mode\": choose this option if you want to manually partition\n"
"your hard drive. Be careful - it is a powerful but dangerous choice. You\n"
"can very easily lose all your data. Hence, do not choose this unless you\n"
-"know what you are doing."
+"know what you are doing. To know how do use the DiskDrake utility used\n"
+"here, refer to the section ``Managing Your Partitions'' of the ````User\n"
+"Guide''''"
msgstr ""
"Tässä vaiheessa sinun pitää valita mihin haluat asentaa Mandrake Linux\n"
"-käyttöjärjestelmän. Jos kiintolevysi on tyhjä tai olemassaoleva "
@@ -3232,7 +3301,7 @@ msgstr ""
"ratkaisua,\n"
"ellet tiedä, mitä olet tekemässä."
-#: ../../help.pm_.c:347
+#: ../../help.pm_.c:341
msgid ""
"There you are. Installation is now complete and your GNU/Linux system is\n"
"ready to use. Just click \"OK\" to reboot the system. You can start\n"
@@ -3265,7 +3334,7 @@ msgid ""
"\"mformat a:\")"
msgstr ""
-#: ../../help.pm_.c:378
+#: ../../help.pm_.c:372
msgid ""
"Any partitions that have been newly defined must be formatted for use\n"
"(formatting means creating a filesystem).\n"
@@ -3316,7 +3385,7 @@ msgstr ""
"levyllä\n"
"olevien huonojen kohtien varalta."
-#: ../../help.pm_.c:404
+#: ../../help.pm_.c:398
msgid ""
"Your new Mandrake Linux operating system is currently being installed.\n"
"Depending on the number of packages you will be installing and the speed of\n"
@@ -3331,12 +3400,12 @@ msgstr ""
"\n"
"Kärsivällisyyttä."
-#: ../../help.pm_.c:412
+#: ../../help.pm_.c:406
msgid ""
"At the time you are installing Mandrake Linux, it is likely that some\n"
"packages have been updated since the initial release. Some bugs may have\n"
"been fixed, and security issues solved. To allow you to benefit from these\n"
-"updates, you are now proposed to download them from the Internet. Choose\n"
+"updates, you are now able to download them from the Internet. Choose\n"
"\"Yes\" if you have a working Internet connection, or \"No\" if you prefer\n"
"to install updated packages later.\n"
"\n"
@@ -3346,7 +3415,7 @@ msgid ""
"install the selected package(s), or \"Cancel\" to abort."
msgstr ""
-#: ../../help.pm_.c:425
+#: ../../help.pm_.c:419
msgid ""
"Before continuing, you should read carefully the terms of the license. It\n"
"covers the whole Mandrake Linux distribution, and if you do not agree with\n"
@@ -3360,14 +3429,14 @@ msgstr ""
"paina \"Kieltäydy\"-painiketta joka keskeyttää asennuksen heti. Jatkaaksesi\n"
"asennusta paina \"Hyväksy\"-painiketta."
-#: ../../help.pm_.c:432
+#: ../../help.pm_.c:426
msgid ""
"At this point, it is time to choose the security level desired for the\n"
"machine. As a rule of thumb, the more exposed the machine is, and the more\n"
"the data stored in it is crucial, the higher the security level should be.\n"
"However, a higher security level is generally obtained at the expense of\n"
-"easiness of use. Refer to the \"msec\" chapter of the ``Reference Manual''\n"
-"to get more information about the meaning of these levels.\n"
+"ease of use. Refer to the \"msec\" chapter of the ``Reference Manual'' to\n"
+"get more information about the meaning of these levels.\n"
"\n"
"If you do not know what to choose, keep the default option."
msgstr ""
@@ -3380,7 +3449,7 @@ msgstr ""
"\n"
"Jos et tiedä mitä valita, käytä oletuksena olevaa vaihtoehtoa."
-#: ../../help.pm_.c:442
+#: ../../help.pm_.c:436
#, fuzzy
msgid ""
"At this point, you need to choose which partition(s) will be used for the\n"
@@ -3398,26 +3467,26 @@ msgid ""
" * \"Clear all\": this option deletes all partitions on the selected hard\n"
"drive;\n"
"\n"
-" * \"Auto allocate\": this option enables to automatically create \"Ext2\"\n"
-"and swap partitions in free space of your hard drive;\n"
+" * \"Auto allocate\": this option enables to automatically create ext3 and\n"
+"swap partitions in free space of your hard drive;\n"
"\n"
-" * \"More\": gives access to additional features:\n"
+"\"More\": gives access to additional features:\n"
"\n"
-" * \"Save partition table\": saves the partition table to a floppy.\n"
-"Useful for later partition-table recovery if necessary. It is strongly\n"
-"recommended to perform this step;\n"
+" * \"Save partition table\": saves the partition table to a floppy. Useful\n"
+"for later partition-table recovery if necessary. It is strongly recommended\n"
+"to perform this step;\n"
"\n"
-" * \"Restore partition table\": allows to restore a previously saved\n"
+" * \"Restore partition table\": allows to restore a previously saved\n"
"partition table from floppy disk;\n"
"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you\n"
-"can try to recover it using this option. Please be careful and remember\n"
-"that it can fail;\n"
+" * \"Rescue partition table\": if your partition table is damaged, you can\n"
+"try to recover it using this option. Please be careful and remember that it\n"
+"can fail;\n"
"\n"
-" * \"Reload partition table\": discards all changes and loads your\n"
-"initial partition table;\n"
+" * \"Reload partition table\": discards all changes and loads your initial\n"
+"partition table;\n"
"\n"
-" * \"Removable media automounting\": unchecking this option will force\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
"users to manually mount and unmount removable medias such as floppies and\n"
"CD-ROMs.\n"
"\n"
@@ -3445,7 +3514,7 @@ msgid ""
" * Ctrl-m to set the mount point.\n"
"\n"
"To get information about the different filesystem types available, please\n"
-"read the ext2fs chapter from the ``Reference Manual''.\n"
+"read the ext2FS chapter from the ``Reference Manual''.\n"
"\n"
"If you are installing on a PPC machine, you will want to create a small HFS\n"
"``bootstrap'' partition of at least 1MB, which will be used by the yaboot\n"
@@ -3526,7 +3595,7 @@ msgstr ""
"käyttääksesi sitä varaytimen ja ramdisk-imagen tallentamiseksi järjestelmän "
"latauksen hätätilanteita varten."
-#: ../../help.pm_.c:513
+#: ../../help.pm_.c:507
#, fuzzy
msgid ""
"More than one Microsoft partition has been detected on your hard drive.\n"
@@ -3603,11 +3672,11 @@ msgstr ""
"levy\n"
"tai osio on nimetty \"C:\":ksi)."
-#: ../../help.pm_.c:544
+#: ../../help.pm_.c:538
msgid "Please be patient. This operation can take several minutes."
msgstr "Kärsivällisyyttä. Tämä toiminto voi kestää useita minuutteja."
-#: ../../help.pm_.c:547
+#: ../../help.pm_.c:541
#, fuzzy
msgid ""
"DrakX now needs to know if you want to perform a default (\"Recommended\")\n"
@@ -3615,23 +3684,23 @@ msgid ""
"also choose to do a new install or an upgrade of an existing Mandrake Linux\n"
"system:\n"
"\n"
-" * \"Install\": completely wipes out the old system. In fact, depending on\n"
-"what currently holds your machine, you will be able to keep some old (Linux\n"
-"or other) partitions unchanged;\n"
+" * \"Install\": completely wipes out the old system, however, depending on\n"
+"what is currently installed on your machine, you may be able to keep some\n"
+"old partitions (Linux or otherwise) unchanged;\n"
"\n"
" * \"Upgrade\": this installation class allows to simply update the\n"
"packages currently installed on your Mandrake Linux system. It keeps the\n"
"current partitions of your hard drives as well as user configurations. All\n"
-"other configuration steps remain available with respect to plain\n"
+"other configuration steps remain available, similar to a normal\n"
"installation;\n"
"\n"
-" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
-"existing Mandrake Linux system while keeping all system configurations\n"
-"unchanged. Adding new packages to the current installation is also\n"
-"possible.\n"
+" * \"Upgrade Packages Only\": this new installation class allows you to\n"
+"upgrade an existing Mandrake Linux system while keeping all system\n"
+"configurations unchanged. Adding new packages to the current installation\n"
+"is also possible.\n"
"\n"
-"Upgrades should work fine for Mandrake Linux systems starting from \"8.1\"\n"
-"release.\n"
+"Upgrades should work fine on Mandrake Linux systems containing version\n"
+"\"8.1\" or later.\n"
"\n"
"Depending on your knowledge of GNU/Linux, select one of the following\n"
"choices:\n"
@@ -3640,11 +3709,11 @@ msgid ""
"operating system. The installation will be very easy and you will only be\n"
"asked a few questions;\n"
"\n"
-" * Expert: if you have a good knowledge of GNU/Linux, you can choose this\n"
-"installation class. The expert installation will allow you to perform a\n"
-"highly-customized installation. Answering some of the questions can be\n"
-"difficult if you do not have a good knowledge of GNU/Linux, so do not\n"
-"choose this unless you know what you are doing."
+" * Expert: if you have a good understanding of GNU/Linux, you may wish to\n"
+"perform a highly customized installation. Some of the decisions you will\n"
+"have to make may be difficult if you do not have good knowledge of\n"
+"GNU/Linux, so it is not recommended that those without a fair amount of\n"
+"experience select this installation class."
msgstr ""
"Valitse \"Asenna\", jos sinulla ei ole aikaisempaa versiota Mandrake "
"Linuxsta\n"
@@ -3685,19 +3754,22 @@ msgstr ""
" Älä valitse tätä asennusluokkaa, ellet ole aivan varma, mitä olet "
"tekemässä."
-#: ../../help.pm_.c:584
+#: ../../help.pm_.c:578
msgid ""
"Normally, DrakX selects the right keyboard for you (depending on the\n"
-"language you have chosen) and you won't even see this step. However, you\n"
-"might not have a keyboard that corresponds exactly to your language: for\n"
-"example, if you are an English speaking Swiss person, you may still want\n"
-"your keyboard to be a Swiss keyboard. Or if you speak English but are\n"
-"located in Quebec, you may find yourself in the same situation. In both\n"
-"cases, you will have to go back to this installation step and select an\n"
-"appropriate keyboard from the list.\n"
+"language you have chosen). However, you might not have a keyboard that\n"
+"corresponds exactly to your language: for example, if you are an English\n"
+"speaking Swiss person, you may still want your keyboard to be a Swiss\n"
+"keyboard. Or if you speak English but are located in Quebec, you may find\n"
+"yourself in the same situation. In both cases, you will have to go back to\n"
+"this installation step and select an appropriate keyboard from the list.\n"
"\n"
"Click on the \"More\" button to be presented with the complete list of\n"
-"supported keyboards."
+"supported keyboards.\n"
+"\n"
+"If you choose a keyboard layout based on a non-latin alphabet, you will be\n"
+"asked on next dialog to choose the key binding that will switch the\n"
+"keyboard layout between the latin and non latin layouts."
msgstr ""
"Tavallisesti DrakX valitsee sinulle oikean näppäimistön (sen mukaan, minkä\n"
"kielen olet valinnut) ja et edes näe tätä kohtaa. Kuitenkaan sinulla ei "
@@ -3715,8 +3787,10 @@ msgstr ""
"Paina \"Lisää\"-painiketta saadaksesi täydellisen listan tuetuista "
"näppäimistöistä. "
-#: ../../help.pm_.c:597
+#: ../../help.pm_.c:594
msgid ""
+"The first step is to choose your preferred language.\n"
+"\n"
"Please choose your preferred language for installation and system usage.\n"
"\n"
"Clicking on the \"Advanced\" button will allow you to select other\n"
@@ -3742,7 +3816,7 @@ msgstr ""
"ylimääräiset\n"
"kielet, paina \"Ok\"-painiketta jatkaaksesi."
-#: ../../help.pm_.c:610
+#: ../../help.pm_.c:609
msgid ""
"DrakX generally detects the number of buttons your mouse has. If not, it\n"
"assumes you have a two-button mouse and will set it up for third-button\n"
@@ -3755,7 +3829,14 @@ msgid ""
"If you choose a mouse other than the default, a test screen will be\n"
"displayed. Use the buttons and wheel to verify that the settings are\n"
"correct. If the mouse is not working well, press the space bar or [Return]\n"
-"to \"Cancel\" and choose again."
+"to \"Cancel\" and choose again.\n"
+"\n"
+"Wheel mouses are sometimes not automatically detected. You will need to\n"
+"manually select it in the list. Be sure to select the one corresponding to\n"
+"the correct port it is attached to. After you have pressed the \"OK\"\n"
+"button, a mouse image is displayed. You then need to move the wheel of your\n"
+"mouse to activate it correctly. Then test all buttons and movements are\n"
+"correct."
msgstr ""
"DrakX olettaa yleisesti, että sinulla on kaksinäppäiminen hiiri ja kytkee\n"
"sen kolmannen näppäimen emulaatiolla. DrakX tietää myös\n"
@@ -3769,7 +3850,7 @@ msgstr ""
"hiiri ei toimi kunnolla, paina välilyöntiä tai enteriä peruttaaksesi, minkä\n"
"jälkeen voit valita uudelleen."
-#: ../../help.pm_.c:624
+#: ../../help.pm_.c:630
msgid ""
"Please select the correct port. For example, the \"COM1\" port under\n"
"Windows is named \"ttyS0\" under GNU/Linux."
@@ -3777,7 +3858,7 @@ msgstr ""
"Valitse oikea portti. Esimerkiksi \"COM1\" portti Windowsissa\n"
"on nimetty \"ttyS0\":ksi GNU/Linuxissa."
-#: ../../help.pm_.c:628
+#: ../../help.pm_.c:634
msgid ""
"This is the most crucial decision point for the security of your GNU/Linux\n"
"system: you have to enter the \"root\" password. \"root\" is the system\n"
@@ -3807,15 +3888,15 @@ msgid ""
"In Expert mode, you will be asked if you will be connecting to an\n"
"authentication server, like NIS or LDAP.\n"
"\n"
-"If your network uses the LDAP (or NIS) protocol for authentication, select\n"
-"\"LDAP\" (or \"NIS\") as authentication. If you do not know, ask your\n"
-"network administrator.\n"
+"If your network uses either of the LDAP, NIS, or PDC Windows Domain\n"
+"authentication services, select the appropriate one as \"authentication\".\n"
+"If you do not know, ask your network administrator.\n"
"\n"
"If your computer is not connected to any administrated network, you will\n"
"want to choose \"Local files\" for authentication."
msgstr ""
-#: ../../help.pm_.c:664
+#: ../../help.pm_.c:670
msgid ""
"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
@@ -3854,8 +3935,11 @@ msgid ""
"options. !!\n"
"\n"
"Clicking the \"Advanced\" button in this dialog will offer many advanced\n"
-"options, which are reserved to the expert user.\n"
-"\n"
+"options, which are reserved for the expert user."
+msgstr ""
+
+#: ../../help.pm_.c:710
+msgid ""
"After you have configured the general bootloader parameters, the list of\n"
"boot options which will be available at boot time will be displayed.\n"
"\n"
@@ -3863,16 +3947,7 @@ msgid ""
"automatically be added to the boot menu. Here, you can choose to fine-tune\n"
"the existing options. Select an entry and click \"Modify\" to modify or\n"
"remove it; \"Add\" creates a new entry; and \"Done\" goes on to the next\n"
-"installation step."
-msgstr ""
-
-#: ../../help.pm_.c:713
-msgid ""
-"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
-"either GNU/Linux or any other operating system present on your computer.\n"
-"Normally, these other operating systems are correctly detected and\n"
-"installed. If this is not the case, you can add an entry by hand in this\n"
-"screen. Be careful to choose the correct parameters.\n"
+"installation step.\n"
"\n"
"You may also not want to give access to these other operating systems to\n"
"anyone. In which case, you can delete the corresponding entries. But then,\n"
@@ -3936,18 +4011,18 @@ msgstr ""
#: ../../help.pm_.c:759
#, fuzzy
msgid ""
-"DrakX now detects any IDE device present in your computer. It will also\n"
-"scan for one or more PCI SCSI card(s) on your system. If a SCSI card is\n"
+"DrakX now detects any IDE devices present in your computer. It will also\n"
+"scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
"found, DrakX will automatically install the appropriate driver.\n"
"\n"
"Because hardware detection does not always detect a piece of hardware,\n"
"DrakX will ask you to confirm if a PCI SCSI card is present. Click \"Yes\"\n"
"if you know that there is a SCSI card installed in your machine. You will\n"
-"be presented a list of SCSI cards to choose from. Click \"No\" if you have\n"
-"no SCSI hardware. If you are unsure, you can check the list of hardware\n"
-"detected in your machine by selecting \"See hardware info\" and clicking\n"
-"\"OK\". Examine the list of hardware and then click on the \"OK\" button to\n"
-"return to the SCSI interface question.\n"
+"be presented with a list of SCSI cards to choose from. Click \"No\" if you\n"
+"have no SCSI hardware. If you are unsure, you can check the list of\n"
+"hardware detected in your machine by selecting \"See hardware info\" and\n"
+"clicking \"OK\". Examine the list of hardware and then click on the \"OK\"\n"
+"button to return to the SCSI interface question.\n"
"\n"
"If you have to manually specify your adapter, DrakX will ask if you want to\n"
"specify options for it. You should allow DrakX to probe the hardware for\n"
@@ -4091,7 +4166,9 @@ msgid ""
"order to configure the clock according to the time zone you are in;\n"
"\n"
" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
-"configuration wizard;\n"
+"configuration wizard. Consult the corresponding chapter of the ``User\n"
+"Guide'' for more information on how to setup a new printer. The interface\n"
+"presented there is similar to the one used during installation;\n"
"\n"
" * \"Sound card\": if a sound card is detected on your system, it is\n"
"displayed here. No modification possible at installation time;\n"
@@ -4104,7 +4181,7 @@ msgid ""
"associated with it."
msgstr ""
-#: ../../help.pm_.c:894
+#: ../../help.pm_.c:896
msgid ""
"Choose the hard drive you want to erase in order to install your new\n"
"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
@@ -4114,7 +4191,7 @@ msgstr ""
"Ole varovainen, koska kaikki asemalla oleva tieto tuhoutuu eikä ole enää\n"
"palautettavissa!"
-#: ../../help.pm_.c:899
+#: ../../help.pm_.c:901
msgid ""
"Click on \"OK\" if you want to delete all data and partitions present on\n"
"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
@@ -4145,7 +4222,7 @@ msgstr ""
msgid "You must also format %s"
msgstr "Sinun täytyy myös alustaa %s"
-#: ../../install_any.pm_.c:418
+#: ../../install_any.pm_.c:423
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -4170,20 +4247,29 @@ msgstr ""
"\n"
"Haluatko todella asentaa nämä palvelimet?\n"
-#: ../../install_any.pm_.c:453
+#: ../../install_any.pm_.c:441
+#, c-format
+msgid ""
+"The following packages will be removed to allow upgrading your system: %s\n"
+"\n"
+"\n"
+"Do you really want to remove these packages?\n"
+msgstr ""
+
+#: ../../install_any.pm_.c:471
msgid "Can't use broadcast with no NIS domain"
msgstr ""
-#: ../../install_any.pm_.c:841
+#: ../../install_any.pm_.c:862
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Aseta tyhjä FAT-alustettu levyke levyasemaan %s"
-#: ../../install_any.pm_.c:845
+#: ../../install_any.pm_.c:866
msgid "This floppy is not FAT formatted"
msgstr "Tämä levyke ei ole FAT-alustettu"
-#: ../../install_any.pm_.c:857
+#: ../../install_any.pm_.c:878
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -4191,11 +4277,19 @@ msgstr ""
"Käyttääksesi tätä \"tallennetut paketit\" valintaa, käynnistä asennus "
"optiolla \"linux defcfg=floppy\""
-#: ../../install_any.pm_.c:880 ../../partition_table.pm_.c:771
+#: ../../install_any.pm_.c:901 ../../partition_table.pm_.c:767
#, c-format
msgid "Error reading file %s"
msgstr "Virhe lukiessa tiedostoa %s"
+#: ../../install_any.pm_.c:1023
+msgid ""
+"An error occurred - no valid devices were found on which to create new "
+"filesystems. Please check your hardware for the cause of this problem"
+msgstr ""
+"On tapahtunut virhe - ei löytynyt ainuttakaan laitetta, joille voi luoda "
+"uuden tiedostojärjestelmän. Tarkista laitteistosi korjataksesi ongelman"
+
#: ../../install_interactive.pm_.c:23
#, c-format
msgid ""
@@ -4230,59 +4324,59 @@ msgstr ""
"\n"
"Jatka kuitenkin?"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:168
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:169
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "Sinulla pitää olla FAT-osio liitettynä hakemistoon /boot/efi"
-#: ../../install_interactive.pm_.c:91
+#: ../../install_interactive.pm_.c:92
msgid "Use free space"
msgstr "Käytä tyhjää tilaa"
-#: ../../install_interactive.pm_.c:93
+#: ../../install_interactive.pm_.c:94
msgid "Not enough free space to allocate new partitions"
msgstr "Ei tarpeeksi tilaa uusien osioiden luomiseksi"
-#: ../../install_interactive.pm_.c:101
+#: ../../install_interactive.pm_.c:102
msgid "Use existing partitions"
msgstr "Käytä olemassa olevia osioita"
-#: ../../install_interactive.pm_.c:103
+#: ../../install_interactive.pm_.c:104
msgid "There is no existing partition to use"
msgstr "Ei ole olemassa olevaa osiota käytettäväksi"
-#: ../../install_interactive.pm_.c:110
+#: ../../install_interactive.pm_.c:111
msgid "Use the Windows partition for loopback"
msgstr "Käytä Windows-osiota loopback-tiedostona"
-#: ../../install_interactive.pm_.c:113
+#: ../../install_interactive.pm_.c:114
msgid "Which partition do you want to use for Linux4Win?"
msgstr "Mille osiolle haluat laittaa Linux4Win:in?"
-#: ../../install_interactive.pm_.c:115
+#: ../../install_interactive.pm_.c:116
msgid "Choose the sizes"
msgstr "Valitse koot"
-#: ../../install_interactive.pm_.c:116
+#: ../../install_interactive.pm_.c:117
msgid "Root partition size in MB: "
msgstr "Juuriosion koko Mt: "
-#: ../../install_interactive.pm_.c:117
+#: ../../install_interactive.pm_.c:118
msgid "Swap partition size in MB: "
msgstr "Sivutusosion koko Mt: "
-#: ../../install_interactive.pm_.c:126
+#: ../../install_interactive.pm_.c:128
msgid "Use the free space on the Windows partition"
msgstr "Käytä tyhjää tilaa Windows-osiolla"
-#: ../../install_interactive.pm_.c:129
+#: ../../install_interactive.pm_.c:131
msgid "Which partition do you want to resize?"
msgstr "Minkä osion kokoa haluat muuttaa?"
-#: ../../install_interactive.pm_.c:131
+#: ../../install_interactive.pm_.c:133
msgid "Resizing Windows partition"
msgstr "Lasken Windows-tiedostojärjestelmän rajoja"
-#: ../../install_interactive.pm_.c:134
+#: ../../install_interactive.pm_.c:136
#, c-format
msgid ""
"The FAT resizer is unable to handle your partition, \n"
@@ -4291,7 +4385,7 @@ msgstr ""
"FAT-järjestelmän koon muuttaja ei osaa käsitellä osiotasi,\n"
"saatiin seuraava virhe: %s"
-#: ../../install_interactive.pm_.c:137
+#: ../../install_interactive.pm_.c:139
msgid ""
"Your Windows partition is too fragmented. Please reboot your computer under "
"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
@@ -4299,7 +4393,7 @@ msgid ""
msgstr ""
"Windows-osiosi on liian pirstoutunut, mene Windowsiin ja aja \"defrag\" ensin"
-#: ../../install_interactive.pm_.c:138
+#: ../../install_interactive.pm_.c:140
msgid ""
"WARNING!\n"
"\n"
@@ -4320,21 +4414,21 @@ msgstr ""
"Samalla suosittelen ottamaan varmuuskopiot tärkeistä tiedoista.Kun olet "
"varma, paina Ok."
-#: ../../install_interactive.pm_.c:148
+#: ../../install_interactive.pm_.c:150
msgid "Which size do you want to keep for Windows on"
msgstr "Kuinka paljon tilaa haluat säilyttää Windowsilla"
-#: ../../install_interactive.pm_.c:149
+#: ../../install_interactive.pm_.c:151
#, c-format
msgid "partition %s"
msgstr "osio %s"
-#: ../../install_interactive.pm_.c:156
+#: ../../install_interactive.pm_.c:158
#, c-format
msgid "FAT resizing failed: %s"
msgstr "FAT-tiedostojärjestelmän koon muuttaminen epäonnistui: %s"
-#: ../../install_interactive.pm_.c:171
+#: ../../install_interactive.pm_.c:173
msgid ""
"There is no FAT partition to resize or to use as loopback (or not enough "
"space left)"
@@ -4342,33 +4436,33 @@ msgstr ""
"Ei ole FAT-osioita, joiden kokoa voisi muuttaa tai käyttää loopback-"
"tiedostoina (tai osiot ovat täynnä)"
-#: ../../install_interactive.pm_.c:177
+#: ../../install_interactive.pm_.c:179
msgid "Erase entire disk"
msgstr "Tyhjennä koko levy"
-#: ../../install_interactive.pm_.c:177
+#: ../../install_interactive.pm_.c:179
msgid "Remove Windows(TM)"
msgstr "Poista Windows(TM)"
-#: ../../install_interactive.pm_.c:180
+#: ../../install_interactive.pm_.c:182
msgid "You have more than one hard drive, which one do you install linux on?"
msgstr "Sinulla on enemmän kuin yksi kiintolevy. Mille haluat asentaa Linuxin?"
# mat
-#: ../../install_interactive.pm_.c:183
+#: ../../install_interactive.pm_.c:185
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr "KAIKKI olemassaolevat osiot ja niissä oleva tieto tuhoutuu asemalta %s"
-#: ../../install_interactive.pm_.c:191
+#: ../../install_interactive.pm_.c:193
msgid "Custom disk partitioning"
msgstr "Mukautettu levyn osiointi"
-#: ../../install_interactive.pm_.c:195
+#: ../../install_interactive.pm_.c:197
msgid "Use fdisk"
msgstr "Käytä fdiskiä"
-#: ../../install_interactive.pm_.c:198
+#: ../../install_interactive.pm_.c:200
#, c-format
msgid ""
"You can now partition %s.\n"
@@ -4377,29 +4471,29 @@ msgstr ""
"Voit nyt osioda kiintolevysi %s\n"
"Kun olet valmis, älä unohda tallettaa asetuksia komennolla `w'"
-#: ../../install_interactive.pm_.c:227
+#: ../../install_interactive.pm_.c:229
msgid "You don't have enough free space on your Windows partition"
msgstr "Sinulla ei ole tarpeeksi tilaa Windows-osiollasi"
-#: ../../install_interactive.pm_.c:243
+#: ../../install_interactive.pm_.c:245
msgid "I can't find any room for installing"
msgstr "Ei ole tarpeeksi tilaa asentamiseen"
-#: ../../install_interactive.pm_.c:246
+#: ../../install_interactive.pm_.c:248
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr "DrakX-Osiointivelho löysi seuraavat ratkaisut:"
# mat
-#: ../../install_interactive.pm_.c:250
+#: ../../install_interactive.pm_.c:252
#, c-format
msgid "Partitioning failed: %s"
msgstr "Osiointi epäonnistui: %s"
-#: ../../install_interactive.pm_.c:260
+#: ../../install_interactive.pm_.c:262
msgid "Bringing up the network"
msgstr "Käynnistän verkkoa"
-#: ../../install_interactive.pm_.c:265
+#: ../../install_interactive.pm_.c:267
msgid "Bringing down the network"
msgstr "Ajan alas verkkoa"
@@ -4411,12 +4505,12 @@ msgstr ""
"Tapahtui virhe, sitä ei voida käsitellä kunnolla.\n"
"Jatka omalla riskilläsi."
-#: ../../install_steps.pm_.c:210
+#: ../../install_steps.pm_.c:211
#, c-format
msgid "Duplicate mount point %s"
msgstr "Kahdentunut liitospaikka %s"
-#: ../../install_steps.pm_.c:379
+#: ../../install_steps.pm_.c:380
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -4428,12 +4522,12 @@ msgstr ""
"Tarkista cdrom Linux-koneessa käyttämällä \"rpm -qpl Mandrake/RPMS/*.rpm\"\n"
# mat
-#: ../../install_steps.pm_.c:451
+#: ../../install_steps.pm_.c:452
#, c-format
msgid "Welcome to %s"
msgstr "Tervetuloa %s:n"
-#: ../../install_steps.pm_.c:530 ../../install_steps.pm_.c:770
+#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:772
msgid "No floppy drive available"
msgstr "Ei levykeasemaa käytettävissä"
@@ -4464,72 +4558,72 @@ msgstr "Asennusluokka"
msgid "Please choose one of the following classes of installation:"
msgstr "Valitse yksi seuraavista asennusluokista:"
-#: ../../install_steps_gtk.pm_.c:243 ../../install_steps_interactive.pm_.c:694
+#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:678
msgid "Package Group Selection"
msgstr "Pakettiryhmien valinta"
-#: ../../install_steps_gtk.pm_.c:276 ../../install_steps_interactive.pm_.c:709
+#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:693
msgid "Individual package selection"
msgstr "Yksittäisten pakettien valinta"
# mat
-#: ../../install_steps_gtk.pm_.c:299 ../../install_steps_interactive.pm_.c:633
+#: ../../install_steps_gtk.pm_.c:293 ../../install_steps_interactive.pm_.c:617
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Koko yhteensä: %d / %d Mt"
-#: ../../install_steps_gtk.pm_.c:341
+#: ../../install_steps_gtk.pm_.c:335
msgid "Bad package"
msgstr "Viallinen paketti"
-#: ../../install_steps_gtk.pm_.c:342
+#: ../../install_steps_gtk.pm_.c:336
#, c-format
msgid "Name: %s\n"
msgstr "Nimi: %s\n"
-#: ../../install_steps_gtk.pm_.c:343
+#: ../../install_steps_gtk.pm_.c:337
#, c-format
msgid "Version: %s\n"
msgstr "Versio: %s\n"
-#: ../../install_steps_gtk.pm_.c:344
+#: ../../install_steps_gtk.pm_.c:338
#, c-format
msgid "Size: %d KB\n"
msgstr "Koko: %d Kt\n"
-#: ../../install_steps_gtk.pm_.c:345
+#: ../../install_steps_gtk.pm_.c:339
#, c-format
msgid "Importance: %s\n"
msgstr "Tärkeys: %s\n"
-#: ../../install_steps_gtk.pm_.c:367
+#: ../../install_steps_gtk.pm_.c:361
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr ""
"Et voi asentaa tätä pakettia, koska levyllä ei ole tarpeeksi tilaa sen "
"asentamiseksi"
-#: ../../install_steps_gtk.pm_.c:372
+#: ../../install_steps_gtk.pm_.c:366
msgid "The following packages are going to be installed"
msgstr "Seuraavat paketit asennetaan"
-#: ../../install_steps_gtk.pm_.c:373
+#: ../../install_steps_gtk.pm_.c:367
msgid "The following packages are going to be removed"
msgstr "Seuraavat paketit poistetaan"
-#: ../../install_steps_gtk.pm_.c:385
+#: ../../install_steps_gtk.pm_.c:379
msgid "You can't select/unselect this package"
msgstr "Et voi valita/poistaa tätä pakettia"
-#: ../../install_steps_gtk.pm_.c:397
+#: ../../install_steps_gtk.pm_.c:391
msgid "This is a mandatory package, it can't be unselected"
msgstr "Tämä on pakollinen paketti, sitä ei voida poistaa valinnoista"
-#: ../../install_steps_gtk.pm_.c:399
+#: ../../install_steps_gtk.pm_.c:393
msgid "You can't unselect this package. It is already installed"
msgstr "Et voi poistaa tämän paketin valintaa. Se on jo asennettu"
-#: ../../install_steps_gtk.pm_.c:402
+#: ../../install_steps_gtk.pm_.c:396
msgid ""
"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
@@ -4537,75 +4631,75 @@ msgstr ""
"Tämä paketti tulee päivittää\n"
"Oletko varma että haluat poistaa valinnan?"
-#: ../../install_steps_gtk.pm_.c:405
+#: ../../install_steps_gtk.pm_.c:399
msgid "You can't unselect this package. It must be upgraded"
msgstr "Et voi poistaa tämän paketin valintaa. Paketti pitää päivittää."
-#: ../../install_steps_gtk.pm_.c:410
+#: ../../install_steps_gtk.pm_.c:404
msgid "Show automatically selected packages"
msgstr "Näytä automaattisesti valitut paketit"
-#: ../../install_steps_gtk.pm_.c:411 ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_gtk.pm_.c:405 ../../install_steps_interactive.pm_.c:255
#: ../../install_steps_interactive.pm_.c:259
-#: ../../standalone/drakbackup_.c:3600
+#: ../../standalone/drakbackup_.c:4257
msgid "Install"
msgstr "Asenna"
-#: ../../install_steps_gtk.pm_.c:414
+#: ../../install_steps_gtk.pm_.c:408
msgid "Load/Save on floppy"
msgstr "Lataa/Tallenna levykkeelle"
-#: ../../install_steps_gtk.pm_.c:415
+#: ../../install_steps_gtk.pm_.c:409
msgid "Updating package selection"
msgstr "Päivitän pakettien valintaa"
# Asennuksen sivuvalikko
-#: ../../install_steps_gtk.pm_.c:420
+#: ../../install_steps_gtk.pm_.c:414
msgid "Minimal install"
msgstr "Minimaalinen asennus"
-#: ../../install_steps_gtk.pm_.c:435 ../../install_steps_interactive.pm_.c:538
+#: ../../install_steps_gtk.pm_.c:429 ../../install_steps_interactive.pm_.c:522
msgid "Choose the packages you want to install"
msgstr "Valitse asennettavat paketit"
-#: ../../install_steps_gtk.pm_.c:451 ../../install_steps_interactive.pm_.c:778
+#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:762
msgid "Installing"
msgstr "Asennan"
-#: ../../install_steps_gtk.pm_.c:457
+#: ../../install_steps_gtk.pm_.c:451
msgid "Estimating"
msgstr "Arvioin aikaa"
-#: ../../install_steps_gtk.pm_.c:464
+#: ../../install_steps_gtk.pm_.c:458
msgid "Time remaining "
msgstr "Jäljellä "
-#: ../../install_steps_gtk.pm_.c:476
+#: ../../install_steps_gtk.pm_.c:470
msgid "Please wait, preparing installation..."
msgstr "Valmistelen asennusta"
-#: ../../install_steps_gtk.pm_.c:560
+#: ../../install_steps_gtk.pm_.c:554
#, c-format
msgid "%d packages"
msgstr "%d pakettia"
-#: ../../install_steps_gtk.pm_.c:565
+#: ../../install_steps_gtk.pm_.c:559
#, c-format
msgid "Installing package %s"
msgstr "Asennan pakettia %s"
-#: ../../install_steps_gtk.pm_.c:602 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:802
+#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:786
#: ../../standalone/drakautoinst_.c:202
msgid "Accept"
msgstr "Hyväksy"
-#: ../../install_steps_gtk.pm_.c:602 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:802
+#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:786
msgid "Refuse"
msgstr "Hylkää"
-#: ../../install_steps_gtk.pm_.c:603 ../../install_steps_interactive.pm_.c:803
+#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:787
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4620,17 +4714,17 @@ msgstr ""
"Jos sinulla ei ole levyä, paina Peruuta välttääksesi asennukset tältä "
"levyltä."
-#: ../../install_steps_gtk.pm_.c:617 ../../install_steps_gtk.pm_.c:621
-#: ../../install_steps_interactive.pm_.c:815
-#: ../../install_steps_interactive.pm_.c:819
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_gtk.pm_.c:615
+#: ../../install_steps_interactive.pm_.c:799
+#: ../../install_steps_interactive.pm_.c:803
msgid "Go on anyway?"
msgstr "Jatka kuitenkin?"
-#: ../../install_steps_gtk.pm_.c:617 ../../install_steps_interactive.pm_.c:815
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:799
msgid "There was an error ordering packages:"
msgstr "Tapahtu virhe järjestettäessä paketteja:"
-#: ../../install_steps_gtk.pm_.c:621 ../../install_steps_interactive.pm_.c:819
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:803
msgid "There was an error installing packages:"
msgstr "Tapahtu virhe asennettaessa paketteja:"
@@ -4835,7 +4929,7 @@ msgid "Are you sure you refuse the licence?"
msgstr ""
#: ../../install_steps_interactive.pm_.c:211
-#: ../../install_steps_interactive.pm_.c:1038
+#: ../../install_steps_interactive.pm_.c:1023
#: ../../standalone/keyboarddrake_.c:31
msgid "Keyboard"
msgstr "Näppäimistö"
@@ -4883,11 +4977,11 @@ msgstr "Päivitä vain paketit"
msgid "Please choose the type of your mouse."
msgstr "Valitse hiiren tyyppi."
-#: ../../install_steps_interactive.pm_.c:281 ../../standalone/mousedrake_.c:59
+#: ../../install_steps_interactive.pm_.c:281 ../../standalone/mousedrake_.c:60
msgid "Mouse Port"
msgstr "Hiiren portti"
-#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:61
msgid "Please choose on which serial port your mouse is connected to."
msgstr "Mihin sarjaporttiin hiiresi on liitetty."
@@ -4919,45 +5013,20 @@ msgstr "Asetan IDE-levyä"
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:336
+#: ../../install_steps_interactive.pm_.c:338
msgid "No partition available"
msgstr "ei vapaita osioita"
-#: ../../install_steps_interactive.pm_.c:339
+#: ../../install_steps_interactive.pm_.c:341
msgid "Scanning partitions to find mount points"
msgstr "Tarkistan osioita löytääkseni liitoskohdat"
-#: ../../install_steps_interactive.pm_.c:347
+#: ../../install_steps_interactive.pm_.c:349
msgid "Choose the mount points"
msgstr "Valitse liitospaikat"
-#: ../../install_steps_interactive.pm_.c:366
-#, c-format
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to not allow DrakX to modify the partition table.\n"
-"(the error is %s)\n"
-"\n"
-"Do you agree to loose all the partitions?\n"
-msgstr ""
-"Osiotaulua ei voida lukea, siinä on liikaa virheitä :(\n"
-"Asennusta voidaan jatkaa yrittämällä tyhjentää virheelliset osiot\n"
-"(KAIKKI TIETO tuhoutuu!). Toinen vaihtoehto on kieltää DrakX:ää\n"
-"muokkaamasta osiointitaulua. (virhe on: %s)\n"
-"\n"
-"Hyväksytkö kaikkien osioiden menettämisen?\n"
-
#: ../../install_steps_interactive.pm_.c:379
msgid ""
-"DiskDrake failed to read correctly the partition table.\n"
-"Continue at your own risk!"
-msgstr ""
-"DiskDrake ei pystynyt lukemaan osiotaulua oikein.\n"
-"Jatka omalla vastuullasi!"
-
-#: ../../install_steps_interactive.pm_.c:396
-msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
msgstr ""
@@ -4965,70 +5034,70 @@ msgstr ""
"käynnistääksesi järjestelmän, sinun pitää luoda käynnistyslohko-osio "
"DiskDrakessa."
-#: ../../install_steps_interactive.pm_.c:405
+#: ../../install_steps_interactive.pm_.c:388
msgid "No root partition found to perform an upgrade"
msgstr "Päivitykseen tarvittavaa juuriosiota ei löytynyt"
-#: ../../install_steps_interactive.pm_.c:406
+#: ../../install_steps_interactive.pm_.c:389
msgid "Root Partition"
msgstr "Juuriosio"
-#: ../../install_steps_interactive.pm_.c:407
+#: ../../install_steps_interactive.pm_.c:390
msgid "What is the root partition (/) of your system?"
msgstr "Mikä on järjestelmäsi juuriosio (/) ?"
-#: ../../install_steps_interactive.pm_.c:421
+#: ../../install_steps_interactive.pm_.c:404
msgid "You need to reboot for the partition table modifications to take place"
msgstr ""
"Sinun tulee käynnistää järjestelmä uudelleen jotta muutokset tulevat voimaan"
-#: ../../install_steps_interactive.pm_.c:445
+#: ../../install_steps_interactive.pm_.c:428
msgid "Choose the partitions you want to format"
msgstr "Valitse alustettavat osiot"
-#: ../../install_steps_interactive.pm_.c:446
+#: ../../install_steps_interactive.pm_.c:429
msgid "Check bad blocks?"
msgstr "Tarkista vialliset lohkot?"
-#: ../../install_steps_interactive.pm_.c:473
+#: ../../install_steps_interactive.pm_.c:456
msgid "Formatting partitions"
msgstr "Alustan osioita"
-#: ../../install_steps_interactive.pm_.c:475
+#: ../../install_steps_interactive.pm_.c:458
#, c-format
msgid "Creating and formatting file %s"
msgstr "Luon ja alustan tiedostoa %s"
-#: ../../install_steps_interactive.pm_.c:480
+#: ../../install_steps_interactive.pm_.c:463
#, c-format
msgid ""
"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
"you can loose data)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:482
+#: ../../install_steps_interactive.pm_.c:465
msgid "Not enough swap space to fulfill installation, please add some"
msgstr "Heittovaihtotiedosto ei ole riittävän suuri, suurenna sitä"
-#: ../../install_steps_interactive.pm_.c:489
+#: ../../install_steps_interactive.pm_.c:472
#, fuzzy
msgid "Looking for available packages and rebuilding rpm database..."
msgstr "Etsin saatavilla olevia paketteja"
-#: ../../install_steps_interactive.pm_.c:490
+#: ../../install_steps_interactive.pm_.c:473
msgid "Looking for available packages..."
msgstr "Etsin saatavilla olevia paketteja"
-#: ../../install_steps_interactive.pm_.c:493
+#: ../../install_steps_interactive.pm_.c:476
#, fuzzy
msgid "Looking at packages already installed..."
msgstr "Et voi poistaa tämän paketin valintaa. Se on jo asennettu"
-#: ../../install_steps_interactive.pm_.c:497
+#: ../../install_steps_interactive.pm_.c:480
msgid "Finding packages to upgrade..."
msgstr "Etsin päivitettäviä paketteja"
-#: ../../install_steps_interactive.pm_.c:515
+#: ../../install_steps_interactive.pm_.c:498
#, c-format
msgid ""
"Your system does not have enough space left for installation or upgrade (%d "
@@ -5037,7 +5106,7 @@ msgstr ""
"Järjestelmässäsi ei ole riittävästi tilaa asennukseen tai päivitykseen (%d > "
"%d)"
-#: ../../install_steps_interactive.pm_.c:550
+#: ../../install_steps_interactive.pm_.c:534
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
@@ -5045,35 +5114,35 @@ msgstr ""
"Lataa tai tallenna pakettien valinta levykkeelle.\n"
"Muoto on sama kuin auto_install-toiminnon luomilla levykkeillä."
-#: ../../install_steps_interactive.pm_.c:553
+#: ../../install_steps_interactive.pm_.c:537
msgid "Load from floppy"
msgstr "Lataa levykkeeltä"
-#: ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_interactive.pm_.c:539
msgid "Loading from floppy"
msgstr "Ladataan levykkeeltä"
-#: ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_interactive.pm_.c:539
msgid "Package selection"
msgstr "Pakettien valinta"
-#: ../../install_steps_interactive.pm_.c:560
+#: ../../install_steps_interactive.pm_.c:544
msgid "Insert a floppy containing package selection"
msgstr "Aseta levyke, jossa on pakettien valinta"
-#: ../../install_steps_interactive.pm_.c:572
+#: ../../install_steps_interactive.pm_.c:556
msgid "Save on floppy"
msgstr "Tallenna levykkeelle"
-#: ../../install_steps_interactive.pm_.c:646
+#: ../../install_steps_interactive.pm_.c:630
msgid "Selected size is larger than available space"
msgstr "Valittu koko on suurempi kuin olemassa oleva levytila"
-#: ../../install_steps_interactive.pm_.c:660
+#: ../../install_steps_interactive.pm_.c:644
msgid "Type of install"
msgstr "Asennuksen tyyppi"
-#: ../../install_steps_interactive.pm_.c:661
+#: ../../install_steps_interactive.pm_.c:645
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
@@ -5081,19 +5150,19 @@ msgstr ""
"Et ole valinnut yhtäkään pakettiryhmää\n"
"Valitse haluamasti minimaalinen asennus"
-#: ../../install_steps_interactive.pm_.c:664
+#: ../../install_steps_interactive.pm_.c:648
msgid "With X"
msgstr "X:llä"
-#: ../../install_steps_interactive.pm_.c:666
+#: ../../install_steps_interactive.pm_.c:650
msgid "With basic documentation (recommended!)"
msgstr "Perusdokumentaation kanssa (suositeltu!)"
-#: ../../install_steps_interactive.pm_.c:667
+#: ../../install_steps_interactive.pm_.c:651
msgid "Truly minimal install (especially no urpmi)"
msgstr "Pienin mahdollinen asennus (erityisesti ei urpmia)"
-#: ../../install_steps_interactive.pm_.c:752
+#: ../../install_steps_interactive.pm_.c:736
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -5103,16 +5172,16 @@ msgstr ""
"Jos sinulla ei ole mitään levyistä, paina Peruuta.\n"
"Jos jotkut levyistä puuttuvat, poista niiden valinnat, ja paina OK."
-#: ../../install_steps_interactive.pm_.c:757
+#: ../../install_steps_interactive.pm_.c:741
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "Cd-Rom nimeltään \"%s\""
-#: ../../install_steps_interactive.pm_.c:778
+#: ../../install_steps_interactive.pm_.c:762
msgid "Preparing installation"
msgstr "Valmistelen asennusta"
-#: ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:771
#, c-format
msgid ""
"Installing package %s\n"
@@ -5121,22 +5190,22 @@ msgstr ""
"Asennan pakettia %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:833
+#: ../../install_steps_interactive.pm_.c:817
msgid "Post-install configuration"
msgstr "Asennuksen jälkeiset toiminnot"
-#: ../../install_steps_interactive.pm_.c:839
+#: ../../install_steps_interactive.pm_.c:823
#, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Aseta käyttämäsi käynnistyslevyke asemaan %s"
# mat
-#: ../../install_steps_interactive.pm_.c:845
+#: ../../install_steps_interactive.pm_.c:829
#, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Aseta moduulien päivityslevyke asemaan %s"
-#: ../../install_steps_interactive.pm_.c:865
+#: ../../install_steps_interactive.pm_.c:849
msgid ""
"You now have the opportunity to download encryption software.\n"
"\n"
@@ -5212,7 +5281,7 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:904
+#: ../../install_steps_interactive.pm_.c:888
#, fuzzy
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
@@ -5232,161 +5301,161 @@ msgstr ""
"\n"
"Haluatko asentaa päivitykset ?"
-#: ../../install_steps_interactive.pm_.c:919
+#: ../../install_steps_interactive.pm_.c:903
msgid ""
"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr ""
"Otan yhteyttä Mandrake Linuxin sivustolle saadakseni listan olemassaolevista "
"peileistä"
-#: ../../install_steps_interactive.pm_.c:924
+#: ../../install_steps_interactive.pm_.c:908
msgid "Choose a mirror from which to get the packages"
msgstr "Valitse peilijärjestelmä josta paketit haetaan"
-#: ../../install_steps_interactive.pm_.c:933
+#: ../../install_steps_interactive.pm_.c:917
msgid "Contacting the mirror to get the list of available packages..."
msgstr "Yhdistän peilijärjestelmään hakeakseni uusimman pakettilistan"
-#: ../../install_steps_interactive.pm_.c:960
+#: ../../install_steps_interactive.pm_.c:945
msgid "Which is your timezone?"
msgstr "Mikä on järjestelmäsi aikavyöhyke?"
-#: ../../install_steps_interactive.pm_.c:965
+#: ../../install_steps_interactive.pm_.c:950
msgid "Hardware clock set to GMT"
msgstr "Laitteistokello asetettu GMT-aikaan"
-#: ../../install_steps_interactive.pm_.c:966
+#: ../../install_steps_interactive.pm_.c:951
msgid "Automatic time synchronization (using NTP)"
msgstr "Automaattinen kellon synkronisointi (käyttäen NTP:tä)"
-#: ../../install_steps_interactive.pm_.c:973
+#: ../../install_steps_interactive.pm_.c:958
msgid "NTP Server"
msgstr "NTP-palvelin"
-#: ../../install_steps_interactive.pm_.c:1007
-#: ../../install_steps_interactive.pm_.c:1015
+#: ../../install_steps_interactive.pm_.c:992
+#: ../../install_steps_interactive.pm_.c:1000
msgid "Remote CUPS server"
msgstr "Ulkoinen CUPS-palvelin"
-#: ../../install_steps_interactive.pm_.c:1008
+#: ../../install_steps_interactive.pm_.c:993
msgid "No printer"
msgstr "Ei kirjoitinta"
-#: ../../install_steps_interactive.pm_.c:1025
+#: ../../install_steps_interactive.pm_.c:1010
#, fuzzy
msgid "Do you have an ISA sound card?"
msgstr "Onko sinulla muita?"
-#: ../../install_steps_interactive.pm_.c:1027
+#: ../../install_steps_interactive.pm_.c:1012
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1029
+#: ../../install_steps_interactive.pm_.c:1014
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
# Asennuksen sivuvalikko
-#: ../../install_steps_interactive.pm_.c:1034 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1019 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Johtopäätös"
-#: ../../install_steps_interactive.pm_.c:1037
+#: ../../install_steps_interactive.pm_.c:1022
msgid "Mouse"
msgstr "Hiiri"
-#: ../../install_steps_interactive.pm_.c:1039
+#: ../../install_steps_interactive.pm_.c:1024
msgid "Timezone"
msgstr "Aikavyöhyke"
-#: ../../install_steps_interactive.pm_.c:1040 ../../printerdrake.pm_.c:2728
-#: ../../printerdrake.pm_.c:2814
+#: ../../install_steps_interactive.pm_.c:1025 ../../printerdrake.pm_.c:2937
+#: ../../printerdrake.pm_.c:3026
msgid "Printer"
msgstr "Kirjoitin"
-#: ../../install_steps_interactive.pm_.c:1042
+#: ../../install_steps_interactive.pm_.c:1027
msgid "ISDN card"
msgstr "ISDN-kortti"
-#: ../../install_steps_interactive.pm_.c:1045
-#: ../../install_steps_interactive.pm_.c:1047
+#: ../../install_steps_interactive.pm_.c:1030
+#: ../../install_steps_interactive.pm_.c:1032
msgid "Sound card"
msgstr "Äänikortti"
-#: ../../install_steps_interactive.pm_.c:1049
+#: ../../install_steps_interactive.pm_.c:1034
msgid "TV card"
msgstr "TV-kortti"
-#: ../../install_steps_interactive.pm_.c:1089
-#: ../../install_steps_interactive.pm_.c:1114
-#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1074
+#: ../../install_steps_interactive.pm_.c:1099
+#: ../../install_steps_interactive.pm_.c:1103
msgid "LDAP"
msgstr "LDAP"
-#: ../../install_steps_interactive.pm_.c:1090
-#: ../../install_steps_interactive.pm_.c:1114
-#: ../../install_steps_interactive.pm_.c:1127
+#: ../../install_steps_interactive.pm_.c:1075
+#: ../../install_steps_interactive.pm_.c:1099
+#: ../../install_steps_interactive.pm_.c:1112
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1091
-#: ../../install_steps_interactive.pm_.c:1114
-#: ../../install_steps_interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1141
+#: ../../install_steps_interactive.pm_.c:1076
+#: ../../install_steps_interactive.pm_.c:1099
+#: ../../install_steps_interactive.pm_.c:1120
+#: ../../install_steps_interactive.pm_.c:1126
#, fuzzy
msgid "Windows Domain"
msgstr "Hae Windowsin kirjasimet"
-#: ../../install_steps_interactive.pm_.c:1092
-#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1077
+#: ../../install_steps_interactive.pm_.c:1099
msgid "Local files"
msgstr "Paikalliset tiedostot"
# Asennuksen sivuvalikko
-#: ../../install_steps_interactive.pm_.c:1101
-#: ../../install_steps_interactive.pm_.c:1102 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1086
+#: ../../install_steps_interactive.pm_.c:1087 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Ylläpitäjän salasana"
-#: ../../install_steps_interactive.pm_.c:1103
+#: ../../install_steps_interactive.pm_.c:1088
msgid "No password"
msgstr "Ei salasanaa"
-#: ../../install_steps_interactive.pm_.c:1108
+#: ../../install_steps_interactive.pm_.c:1093
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr ""
"Salasana on liian yksinkertainen (sen tulee olla ainakin %d merkkiä pitkä)"
-#: ../../install_steps_interactive.pm_.c:1114 ../../network/modem.pm_.c:49
+#: ../../install_steps_interactive.pm_.c:1099 ../../network/modem.pm_.c:49
#: ../../standalone/drakconnect_.c:625 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Tunnistustapa"
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1107
msgid "Authentication LDAP"
msgstr "Tunnistus LDAPilla"
-#: ../../install_steps_interactive.pm_.c:1123
+#: ../../install_steps_interactive.pm_.c:1108
msgid "LDAP Base dn"
msgstr "LDAP perus-dn"
-#: ../../install_steps_interactive.pm_.c:1124
+#: ../../install_steps_interactive.pm_.c:1109
msgid "LDAP Server"
msgstr "LDAP-palvelin"
-#: ../../install_steps_interactive.pm_.c:1130
+#: ../../install_steps_interactive.pm_.c:1115
msgid "Authentication NIS"
msgstr "Tunnistus NIS:llä"
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1116
msgid "NIS Domain"
msgstr "NIS-alue"
-#: ../../install_steps_interactive.pm_.c:1132
+#: ../../install_steps_interactive.pm_.c:1117
msgid "NIS Server"
msgstr "NIS-palvelin"
-#: ../../install_steps_interactive.pm_.c:1138
+#: ../../install_steps_interactive.pm_.c:1123
msgid ""
"For this to work for a W2K PDC, you will probably need to have the admin "
"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
@@ -5402,21 +5471,21 @@ msgid ""
"good."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1140
+#: ../../install_steps_interactive.pm_.c:1125
#, fuzzy
msgid "Authentication Windows Domain"
msgstr "Tunnistus LDAPilla"
-#: ../../install_steps_interactive.pm_.c:1142
+#: ../../install_steps_interactive.pm_.c:1127
#, fuzzy
msgid "Domain Admin User Name"
msgstr "Verkkoalueen nimi"
-#: ../../install_steps_interactive.pm_.c:1143
+#: ../../install_steps_interactive.pm_.c:1128
msgid "Domain Admin Password"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1178
+#: ../../install_steps_interactive.pm_.c:1163
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
"depending on the normal bootloader. This is useful if you don't want to "
@@ -5443,19 +5512,19 @@ msgstr ""
"Jos haluat luoda käynnistyslevykkeen järjestelmääsi, aseta levyke\n"
"ensimmäiseen asemaan ja paina \"Ok\","
-#: ../../install_steps_interactive.pm_.c:1194
+#: ../../install_steps_interactive.pm_.c:1179
msgid "First floppy drive"
msgstr "Ensimmäinen levyasema"
-#: ../../install_steps_interactive.pm_.c:1195
+#: ../../install_steps_interactive.pm_.c:1180
msgid "Second floppy drive"
msgstr "Toinen levyasema"
-#: ../../install_steps_interactive.pm_.c:1196 ../../printerdrake.pm_.c:2277
+#: ../../install_steps_interactive.pm_.c:1181 ../../printerdrake.pm_.c:2470
msgid "Skip"
msgstr "Ohita"
-#: ../../install_steps_interactive.pm_.c:1201
+#: ../../install_steps_interactive.pm_.c:1186
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5480,7 +5549,7 @@ msgstr ""
"Haluatko luoda käynnistyslevykkeen järjestelmääsi?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1207
+#: ../../install_steps_interactive.pm_.c:1192
msgid ""
"\n"
"\n"
@@ -5489,28 +5558,28 @@ msgid ""
"because XFS needs a very large driver)."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1215
+#: ../../install_steps_interactive.pm_.c:1200
msgid "Sorry, no floppy drive available"
msgstr "Levyajuria ei ole saatavilla"
-#: ../../install_steps_interactive.pm_.c:1219
+#: ../../install_steps_interactive.pm_.c:1204
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "Valitse levyasema jolla luot käynnistyslevykkeen"
-#: ../../install_steps_interactive.pm_.c:1223
+#: ../../install_steps_interactive.pm_.c:1208
#, c-format
msgid "Insert a floppy in %s"
msgstr "Aseta levyke asemaan %s"
-#: ../../install_steps_interactive.pm_.c:1226
+#: ../../install_steps_interactive.pm_.c:1211
msgid "Creating bootdisk..."
msgstr "Luon käynnistyslevykettä"
-#: ../../install_steps_interactive.pm_.c:1233
+#: ../../install_steps_interactive.pm_.c:1218
msgid "Preparing bootloader..."
msgstr "Valmistelen käyttöjärjestelmän lataajaa"
-#: ../../install_steps_interactive.pm_.c:1244
+#: ../../install_steps_interactive.pm_.c:1229
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5522,11 +5591,11 @@ msgstr ""
"Asennus jatkuu, mutta sinun täytyy käyttää BootX:ää\n"
"koneesi käynnistämiseen"
-#: ../../install_steps_interactive.pm_.c:1250
+#: ../../install_steps_interactive.pm_.c:1235
msgid "Do you want to use aboot?"
msgstr "Haluatko käyttää aboot:ia?"
-#: ../../install_steps_interactive.pm_.c:1253
+#: ../../install_steps_interactive.pm_.c:1238
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -5535,15 +5604,15 @@ msgstr ""
"yritä pakkoasennusta vaikka se tuhoaa ensimmäisen osion?"
# Asennuksen sivuvalikko
-#: ../../install_steps_interactive.pm_.c:1260
+#: ../../install_steps_interactive.pm_.c:1245
msgid "Installing bootloader"
msgstr "Asennan käyttöjärjestelmän lataajaa"
-#: ../../install_steps_interactive.pm_.c:1266
+#: ../../install_steps_interactive.pm_.c:1251
msgid "Installation of bootloader failed. The following error occured:"
msgstr "Järjestelmälataajan asennus epäonnistu. Seuraava virhe tapahtui:"
-#: ../../install_steps_interactive.pm_.c:1274
+#: ../../install_steps_interactive.pm_.c:1259
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -5563,17 +5632,17 @@ msgstr ""
"komentokehoite."
# mat
-#: ../../install_steps_interactive.pm_.c:1308
+#: ../../install_steps_interactive.pm_.c:1293
#: ../../standalone/drakautoinst_.c:79
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Aseta tyhjä levyke levyasemaan %s"
-#: ../../install_steps_interactive.pm_.c:1312
+#: ../../install_steps_interactive.pm_.c:1297
msgid "Creating auto install floppy..."
msgstr "Valmistelen automaattiasennuslevykettä"
-#: ../../install_steps_interactive.pm_.c:1323
+#: ../../install_steps_interactive.pm_.c:1308
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -5583,7 +5652,7 @@ msgstr ""
"\n"
"Haluatko todella lopettaa?"
-#: ../../install_steps_interactive.pm_.c:1334
+#: ../../install_steps_interactive.pm_.c:1319
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
@@ -5616,15 +5685,15 @@ msgstr ""
"Järjestelmän asettamisesta saat tietoja virallisen Linux Mandraken\n"
"käyttäjäoppaan jälkiasennuskappaleesta."
-#: ../../install_steps_interactive.pm_.c:1347
+#: ../../install_steps_interactive.pm_.c:1332
msgid "http://www.mandrakelinux.com/en/90errata.php3"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1352
+#: ../../install_steps_interactive.pm_.c:1337
msgid "Generate auto install floppy"
msgstr "Valmistelen automaattista asennuslevykettä"
-#: ../../install_steps_interactive.pm_.c:1354
+#: ../../install_steps_interactive.pm_.c:1339
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -5638,15 +5707,15 @@ msgstr ""
"\n"
"Ehkä haluat mieluummin toistaa asennuksen.\n"
-#: ../../install_steps_interactive.pm_.c:1359
+#: ../../install_steps_interactive.pm_.c:1344
msgid "Automated"
msgstr "Automaattinen"
-#: ../../install_steps_interactive.pm_.c:1359
+#: ../../install_steps_interactive.pm_.c:1344
msgid "Replay"
msgstr "Toista"
-#: ../../install_steps_interactive.pm_.c:1362
+#: ../../install_steps_interactive.pm_.c:1347
msgid "Save packages selection"
msgstr "Yksittäisten pakettien valinta"
@@ -5655,7 +5724,8 @@ msgstr "Yksittäisten pakettien valinta"
msgid "Mandrake Linux Installation %s"
msgstr "Mandrake Linux Asennus %s"
-#: ../../install_steps_newt.pm_.c:34
+#. -PO This string must fit in a 80-char wide text screen
+#: ../../install_steps_newt.pm_.c:35
msgid ""
" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
msgstr ""
@@ -5673,22 +5743,22 @@ msgstr ""
msgid "Choose a file"
msgstr "Valitse tiedosto"
-#: ../../interactive.pm_.c:317
+#: ../../interactive.pm_.c:320
msgid "Advanced"
msgstr "Lisäasetukset"
-#: ../../interactive.pm_.c:318
+#: ../../interactive.pm_.c:321
msgid "Basic"
msgstr "Perusasetukset"
-#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:155
-#: ../../printerdrake.pm_.c:1990
+#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:158
+#: ../../printerdrake.pm_.c:2124
msgid "<- Previous"
msgstr "<- Edellinen"
#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
-#: ../../standalone/drakbackup_.c:3464 ../../standalone/drakbackup_.c:3491
-#: ../../standalone/drakbackup_.c:3517
+#: ../../standalone/drakbackup_.c:4112 ../../standalone/drakbackup_.c:4139
+#: ../../standalone/drakbackup_.c:4169 ../../standalone/drakbackup_.c:4195
msgid "Next"
msgstr "Seuraava"
@@ -5761,376 +5831,376 @@ msgstr ""
msgid "Re-submit"
msgstr "Lähetä uudelleen"
-#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:152 ../../keyboard.pm_.c:187
msgid "Czech (QWERTZ)"
msgstr "Tsekki (QWERTZ)"
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:153 ../../keyboard.pm_.c:189
msgid "German"
msgstr "Saksa"
-#: ../../keyboard.pm_.c:175
+#: ../../keyboard.pm_.c:154
msgid "Dvorak"
msgstr "Dvorak"
-#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:218
+#: ../../keyboard.pm_.c:155 ../../keyboard.pm_.c:197
msgid "Spanish"
msgstr "Espanja"
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:156 ../../keyboard.pm_.c:198
msgid "Finnish"
msgstr "Suomi"
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:220
+#: ../../keyboard.pm_.c:157 ../../keyboard.pm_.c:199
msgid "French"
msgstr "Ranska"
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:158 ../../keyboard.pm_.c:231
msgid "Norwegian"
msgstr "Norja"
-#: ../../keyboard.pm_.c:180
+#: ../../keyboard.pm_.c:159
msgid "Polish"
msgstr "Puola"
-#: ../../keyboard.pm_.c:181 ../../keyboard.pm_.c:260
+#: ../../keyboard.pm_.c:160 ../../keyboard.pm_.c:239
msgid "Russian"
msgstr "Venäjä"
-#: ../../keyboard.pm_.c:183 ../../keyboard.pm_.c:262
+#: ../../keyboard.pm_.c:162 ../../keyboard.pm_.c:241
msgid "Swedish"
msgstr "Ruotsi"
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:278
+#: ../../keyboard.pm_.c:163 ../../keyboard.pm_.c:257
msgid "UK keyboard"
msgstr "UK näppäimistö"
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:279
+#: ../../keyboard.pm_.c:164 ../../keyboard.pm_.c:258
msgid "US keyboard"
msgstr "US näppäimistö"
-#: ../../keyboard.pm_.c:187
+#: ../../keyboard.pm_.c:166
msgid "Albanian"
msgstr "Albaani"
-#: ../../keyboard.pm_.c:188
+#: ../../keyboard.pm_.c:167
msgid "Armenian (old)"
msgstr "Armeenia (vanha)"
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:168
msgid "Armenian (typewriter)"
msgstr "Armeenia (kirjoituskone)"
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:169
msgid "Armenian (phonetic)"
msgstr "Armeenia (foneettinen)"
-#: ../../keyboard.pm_.c:195
+#: ../../keyboard.pm_.c:174
msgid "Azerbaidjani (latin)"
msgstr ""
-#: ../../keyboard.pm_.c:197
+#: ../../keyboard.pm_.c:176
msgid "Belgian"
msgstr "Belgia"
-#: ../../keyboard.pm_.c:198
+#: ../../keyboard.pm_.c:177
#, fuzzy
msgid "Bengali"
msgstr "ota käyttöön"
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:178
msgid "Bulgarian (phonetic)"
msgstr "Bulgaria (foneettinen)"
-#: ../../keyboard.pm_.c:200
+#: ../../keyboard.pm_.c:179
msgid "Bulgarian (BDS)"
msgstr "Bulgaria (BDS)"
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:180
msgid "Brazilian (ABNT-2)"
msgstr "Brasilia"
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:183
#, fuzzy
msgid "Bosnian"
msgstr "Eesti"
-#: ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:184
msgid "Belarusian"
msgstr "Valkovenäjä"
-#: ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:185
msgid "Swiss (German layout)"
msgstr "Sveitsi (Saksalainen järjestys)"
-#: ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:186
msgid "Swiss (French layout)"
msgstr "Sveitsi (Ranskalainen järjestys)"
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:188
msgid "Czech (QWERTY)"
msgstr "Tsekki (QWERTY)"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:190
msgid "German (no dead keys)"
msgstr "Saksa (ei kuolleita näppäimiä)"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:191
msgid "Devanagari"
msgstr ""
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:192
msgid "Danish"
msgstr "Tanska"
-#: ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:193
msgid "Dvorak (US)"
msgstr "Dvorak (US)"
-#: ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:194
msgid "Dvorak (Norwegian)"
msgstr "Norja (Dvorak)"
-#: ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:195
msgid "Dvorak (Swedish)"
msgstr "Dvorak (Ruotsi)"
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:196
msgid "Estonian"
msgstr "Eesti"
-#: ../../keyboard.pm_.c:221
+#: ../../keyboard.pm_.c:200
msgid "Georgian (\"Russian\" layout)"
msgstr "Georgia (\"Venäläinen\"-järjestys)"
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:201
msgid "Georgian (\"Latin\" layout)"
msgstr "Georgia (\"Latin\"-järjestys)"
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:202
msgid "Greek"
msgstr "Kreikka"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:203
msgid "Gujarati"
msgstr ""
-#: ../../keyboard.pm_.c:225
+#: ../../keyboard.pm_.c:204
msgid "Gurmukhi"
msgstr ""
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:205
msgid "Hungarian"
msgstr "Unkari"
-#: ../../keyboard.pm_.c:227
+#: ../../keyboard.pm_.c:206
msgid "Croatian"
msgstr "Kroatia"
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:207
msgid "Israeli"
msgstr "Israeli"
-#: ../../keyboard.pm_.c:229
+#: ../../keyboard.pm_.c:208
msgid "Israeli (Phonetic)"
msgstr "Israeli (Foneettinen)"
-#: ../../keyboard.pm_.c:230
+#: ../../keyboard.pm_.c:209
msgid "Iranian"
msgstr "Iran"
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:210
msgid "Icelandic"
msgstr "Islanti"
-#: ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:211
msgid "Italian"
msgstr "Italia"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:212
msgid "Inuktitut"
msgstr ""
-#: ../../keyboard.pm_.c:234
+#: ../../keyboard.pm_.c:213
msgid "Japanese 106 keys"
msgstr "Japani 106-näppäiminen"
-#: ../../keyboard.pm_.c:237
+#: ../../keyboard.pm_.c:216
msgid "Korean keyboard"
msgstr "Korealainen näppäimistö"
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:217
msgid "Latin American"
msgstr "Latinalainen amerikka"
-#: ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:218
#, fuzzy
msgid "Laotian"
msgstr "Latvia"
-#: ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:219
msgid "Lithuanian AZERTY (old)"
msgstr "Liettua AZERTY (vanha)"
-#: ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:221
msgid "Lithuanian AZERTY (new)"
msgstr "Liettua AZERTY (uusi)"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:222
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Liettua \"numerorivi\" QWERTY"
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:223
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "Liettua \"foneettinen\" QWERTY"
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:224
msgid "Latvian"
msgstr "Latvia"
-#: ../../keyboard.pm_.c:246
+#: ../../keyboard.pm_.c:225
msgid "Macedonian"
msgstr "Makedonia"
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:226
msgid "Myanmar (Burmese)"
msgstr ""
-#: ../../keyboard.pm_.c:248
+#: ../../keyboard.pm_.c:227
#, fuzzy
msgid "Mongolian (cyrillic)"
msgstr "Serbia (cyrillic)"
-#: ../../keyboard.pm_.c:249
+#: ../../keyboard.pm_.c:228
msgid "Maltese (UK)"
msgstr ""
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:229
msgid "Maltese (US)"
msgstr ""
-#: ../../keyboard.pm_.c:251
+#: ../../keyboard.pm_.c:230
msgid "Dutch"
msgstr "Hollanti"
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:232
msgid "Polish (qwerty layout)"
msgstr "Puola (qwerty järjestys)"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:233
msgid "Polish (qwertz layout)"
msgstr "Puola (qwertz järjestys)"
-#: ../../keyboard.pm_.c:255
+#: ../../keyboard.pm_.c:234
msgid "Portuguese"
msgstr "Portugali"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:235
msgid "Canadian (Quebec)"
msgstr "Kanada (Quebec)"
-#: ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:237
msgid "Romanian (qwertz)"
msgstr "Romania (qwertz)"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:238
msgid "Romanian (qwerty)"
msgstr "Romania (qwerty)"
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:240
msgid "Russian (Yawerty)"
msgstr "Venäjä (Yawerty)"
-#: ../../keyboard.pm_.c:263
+#: ../../keyboard.pm_.c:242
msgid "Slovenian"
msgstr "Slovenia"
-#: ../../keyboard.pm_.c:264
+#: ../../keyboard.pm_.c:243
msgid "Slovakian (QWERTZ)"
msgstr "Slovakia (QWERTZ)"
-#: ../../keyboard.pm_.c:265
+#: ../../keyboard.pm_.c:244
msgid "Slovakian (QWERTY)"
msgstr "Slovakia (QWERTY)"
-#: ../../keyboard.pm_.c:267
+#: ../../keyboard.pm_.c:246
msgid "Serbian (cyrillic)"
msgstr "Serbia (cyrillic)"
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:248
msgid "Tamil (Unicode)"
msgstr "Tamil (Unicode)"
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:249
msgid "Tamil (TSCII)"
msgstr "Tamil (TSCII)"
-#: ../../keyboard.pm_.c:271
+#: ../../keyboard.pm_.c:250
msgid "Thai keyboard"
msgstr "Thai-näppäimistö"
-#: ../../keyboard.pm_.c:273
+#: ../../keyboard.pm_.c:252
msgid "Tajik keyboard"
msgstr "Tajik-näppäimistö"
-#: ../../keyboard.pm_.c:274
+#: ../../keyboard.pm_.c:253
msgid "Turkish (traditional \"F\" model)"
msgstr "Turkki (perinteinen \"F\"-malli)"
-#: ../../keyboard.pm_.c:275
+#: ../../keyboard.pm_.c:254
msgid "Turkish (modern \"Q\" model)"
msgstr "Turkki (perinteinen \"Q\"-malli)"
-#: ../../keyboard.pm_.c:277
+#: ../../keyboard.pm_.c:256
msgid "Ukrainian"
msgstr "Ukraina"
-#: ../../keyboard.pm_.c:280
+#: ../../keyboard.pm_.c:259
msgid "US keyboard (international)"
msgstr "US näppäimistö (kansainvälinen)"
-#: ../../keyboard.pm_.c:281
+#: ../../keyboard.pm_.c:260
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "Vietnamilainen \"numerorivi\" QWERTY"
-#: ../../keyboard.pm_.c:282
+#: ../../keyboard.pm_.c:261
msgid "Yugoslavian (latin)"
msgstr "Jugoslavia (latin)"
-#: ../../keyboard.pm_.c:289
+#: ../../keyboard.pm_.c:268
msgid "Right Alt key"
msgstr ""
-#: ../../keyboard.pm_.c:290
+#: ../../keyboard.pm_.c:269
msgid "Both Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:291
+#: ../../keyboard.pm_.c:270
msgid "Control and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:292
+#: ../../keyboard.pm_.c:271
msgid "CapsLock key"
msgstr ""
-#: ../../keyboard.pm_.c:293
+#: ../../keyboard.pm_.c:272
msgid "Ctrl and Alt keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:294
+#: ../../keyboard.pm_.c:273
msgid "Alt and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:295
+#: ../../keyboard.pm_.c:274
msgid "\"Menu\" key"
msgstr ""
-#: ../../keyboard.pm_.c:296
+#: ../../keyboard.pm_.c:275
#, fuzzy
msgid "Left \"Windows\" key"
msgstr "Hae Windowsin kirjasimet"
-#: ../../keyboard.pm_.c:297
+#: ../../keyboard.pm_.c:276
msgid "Right \"Windows\" key"
msgstr ""
@@ -6189,11 +6259,11 @@ msgstr "Yleinen PS2 rullahiiri"
msgid "GlidePoint"
msgstr "GlidePoint"
-#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:63
+#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:65
msgid "Kensington Thinking Mouse"
msgstr "Kensington Thinking Mouse"
-#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:59
+#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:61
msgid "Genius NetMouse"
msgstr "Genius NetMouse"
@@ -6201,115 +6271,125 @@ msgstr "Genius NetMouse"
msgid "Genius NetScroll"
msgstr "Genius NetScroll"
-#: ../../mouse.pm_.c:43 ../../mouse.pm_.c:68
+#: ../../mouse.pm_.c:39 ../../mouse.pm_.c:48
+#, fuzzy
+msgid "Microsoft Explorer"
+msgstr "Microsoft IntelliMouse"
+
+#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:70
msgid "1 button"
msgstr "1 näppäin"
-#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:51
+#: ../../mouse.pm_.c:45 ../../mouse.pm_.c:53
msgid "Generic 2 Button Mouse"
msgstr "Yleinen 2-nappinen hiiri"
-#: ../../mouse.pm_.c:46
+#: ../../mouse.pm_.c:47
msgid "Wheel"
msgstr "Rulla"
-#: ../../mouse.pm_.c:49
+#: ../../mouse.pm_.c:51
msgid "serial"
msgstr "sarja"
-#: ../../mouse.pm_.c:52
+#: ../../mouse.pm_.c:54
msgid "Generic 3 Button Mouse"
msgstr "Yleinen 3-nappinen hiiri"
-#: ../../mouse.pm_.c:53
+#: ../../mouse.pm_.c:55
msgid "Microsoft IntelliMouse"
msgstr "Microsoft IntelliMouse"
-#: ../../mouse.pm_.c:54
+#: ../../mouse.pm_.c:56
msgid "Logitech MouseMan"
msgstr "Logitech MouseMan"
-#: ../../mouse.pm_.c:55
+#: ../../mouse.pm_.c:57
msgid "Mouse Systems"
msgstr "Mouse Systems"
-#: ../../mouse.pm_.c:57
+#: ../../mouse.pm_.c:59
msgid "Logitech CC Series"
msgstr "Logitech CC Series"
-#: ../../mouse.pm_.c:58
+#: ../../mouse.pm_.c:60
msgid "Logitech MouseMan+/FirstMouse+"
msgstr "Logitech MouseMan+/FirstMouse+"
-#: ../../mouse.pm_.c:60
+#: ../../mouse.pm_.c:62
msgid "MM Series"
msgstr "MM Series"
-#: ../../mouse.pm_.c:61
+#: ../../mouse.pm_.c:63
msgid "MM HitTablet"
msgstr "MM HitTablet"
-#: ../../mouse.pm_.c:62
+#: ../../mouse.pm_.c:64
msgid "Logitech Mouse (serial, old C7 type)"
msgstr "Logitech Mouse (sarja, vanha C7 tyyppi)"
-#: ../../mouse.pm_.c:66
+#: ../../mouse.pm_.c:68
msgid "busmouse"
msgstr "väylähiiri"
-#: ../../mouse.pm_.c:69
+#: ../../mouse.pm_.c:71
msgid "2 buttons"
msgstr "2 näppäintä"
-#: ../../mouse.pm_.c:70
+#: ../../mouse.pm_.c:72
msgid "3 buttons"
msgstr "3 näppäintä"
-#: ../../mouse.pm_.c:73
+#: ../../mouse.pm_.c:75
msgid "none"
msgstr "ei mikään"
-#: ../../mouse.pm_.c:75
+#: ../../mouse.pm_.c:77
msgid "No mouse"
msgstr "Ei hiirtä"
-#: ../../mouse.pm_.c:445
+#: ../../mouse.pm_.c:482
msgid "Please test the mouse"
msgstr "Testaa hiiri"
-#: ../../mouse.pm_.c:446
+#: ../../mouse.pm_.c:483
msgid "To activate the mouse,"
msgstr "Aktivoidaksesi hiiren,"
-#: ../../mouse.pm_.c:447
+#: ../../mouse.pm_.c:484
msgid "MOVE YOUR WHEEL!"
msgstr "PYÖRITÄ HIIREN RULLAA!"
-#: ../../my_gtk.pm_.c:156
+#: ../../my_gtk.pm_.c:64
+#, fuzzy
+msgid "-adobe-utopia-regular-r-*-*-25-*-*-*-p-*-iso8859-*,*-r-*"
+msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
+
+#: ../../my_gtk.pm_.c:159
msgid "Finish"
msgstr "Loppu"
-#: ../../my_gtk.pm_.c:156 ../../printerdrake.pm_.c:1992
+#: ../../my_gtk.pm_.c:159 ../../printerdrake.pm_.c:2126
msgid "Next ->"
msgstr "Seuraava ->"
-#: ../../my_gtk.pm_.c:284
+#: ../../my_gtk.pm_.c:287
msgid "Is this correct?"
msgstr "Onko tämä oikein?"
-#: ../../my_gtk.pm_.c:356 ../../services.pm_.c:222
+#: ../../my_gtk.pm_.c:359 ../../services.pm_.c:222
msgid "Info"
msgstr "Tietoja"
-#: ../../my_gtk.pm_.c:377
+#: ../../my_gtk.pm_.c:380
msgid "Expand Tree"
msgstr "Laajenna puu"
-#: ../../my_gtk.pm_.c:378
+#: ../../my_gtk.pm_.c:381
msgid "Collapse Tree"
msgstr "Sulje puu"
-#: ../../my_gtk.pm_.c:379
+#: ../../my_gtk.pm_.c:382
msgid "Toggle between flat and group sorted"
msgstr "Vaihda tasaisen ja ryhmäjärjestyksen välillä"
@@ -6347,6 +6427,74 @@ msgstr "käytä pppoe:a"
msgid "use pptp"
msgstr "käytä pptp:tä"
+#: ../../network/drakfirewall.pm_.c:12
+#, fuzzy
+msgid "Web Server"
+msgstr "Palvelin"
+
+#: ../../network/drakfirewall.pm_.c:17
+#, fuzzy
+msgid "Domain Name Server"
+msgstr "Verkkoalueen nimi"
+
+#: ../../network/drakfirewall.pm_.c:32
+#, fuzzy
+msgid "Mail Server"
+msgstr "Tietokantapalvelin"
+
+#: ../../network/drakfirewall.pm_.c:37
+#, fuzzy
+msgid "POP and IMAP Server"
+msgstr "LDAP-palvelin"
+
+#: ../../network/drakfirewall.pm_.c:111
+#, fuzzy
+msgid "No network card"
+msgstr "verkkokorttia ei löytynyt"
+
+#: ../../network/drakfirewall.pm_.c:129
+#, fuzzy
+msgid ""
+"drakfirewall configurator\n"
+"\n"
+"This configures a personal firewall for this Mandrake Linux machine.\n"
+"For a powerful dedicated firewall solution, please look to the\n"
+"specialized MandrakeSecurity Firewall distribution."
+msgstr ""
+"tinyfirewallin asettaminen\n"
+"\n"
+"Tämä vaihe asettaa henkilökohtaisen palomuurin Mandrake Linux\n"
+"-järjestelmääsi. Mikäli haluat tehokkaan palomuuriratkaisun, hae\n"
+"lisätietoja MandrakeSecurity Firewall distribuutiosta."
+
+#: ../../network/drakfirewall.pm_.c:147
+msgid "Which services would you like to allow the Internet to connect to?"
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:148
+msgid ""
+"You can enter miscellaneous ports. \n"
+"Valid examples are: 139/tcp 139/udp.\n"
+"Have a look at /etc/services for information."
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:154
+#, c-format
+msgid ""
+"Invalid port given: %s.\n"
+"The proper format is \"port/tcp\" or \"port/udp\", \n"
+"where port is between 1 and 65535."
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:162
+msgid "Everything (no firewall)"
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:164
+#, fuzzy
+msgid "Other ports"
+msgstr "Kokeile portteja"
+
#: ../../network/ethernet.pm_.c:37
msgid ""
"Which dhcp client do you want to use?\n"
@@ -6363,7 +6511,7 @@ msgstr ""
"Ethernet-verkkokorttia ei löytynyt järjestelmästä.\n"
"Ei voida asentaa tämän tyyppistä yhteyttä."
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:247
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:240
msgid "Choose the network interface"
msgstr "Valitse verkkoliittymä"
@@ -6376,7 +6524,7 @@ msgstr "Valitse mitä verkkokorteista haluat käyttää internetiin liittymiseen"
msgid "no network card found"
msgstr "verkkokorttia ei löytynyt"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:366
msgid "Configuring network"
msgstr "Asetan verkkoa"
@@ -6392,7 +6540,7 @@ msgstr ""
"Koneesi nimen pitäisi olla täysin laillinen nimi, kuten\n"
"\" minunkone.omapaikka.net\"."
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:370
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:371
msgid "Host name"
msgstr "Koneen nimi"
@@ -6695,13 +6843,13 @@ msgstr "Valitse uusi asetusprofiili"
msgid "Use auto detection"
msgstr "Käytä automaattista tunnistusta"
-#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2930
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:3151
#: ../../standalone/drakconnect_.c:274 ../../standalone/drakconnect_.c:277
#: ../../standalone/drakfloppy_.c:145
msgid "Expert Mode"
msgstr "Asiantuntijatila"
-#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:283
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:386
msgid "Detecting devices..."
msgstr "Etsin laitteita...."
@@ -6869,11 +7017,11 @@ msgstr "Automaattinen IP"
msgid "Start at boot"
msgstr "Käynnistetty koneen käynnistämisen yhteydessä"
-#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:753
+#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:860
msgid "IP address should be in format 1.2.3.4"
msgstr "IP-osoitteen tullee olla muotoa 1.2.3.4"
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:367
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -6884,43 +7032,55 @@ msgstr ""
"Koneesi nimen pitäisi olla täydellinen, kuten ``minunkone.yritys.fi''.\n"
"Voit antaa myös yhdyskäytävän IP-osoitteen jos sinulla on sellainen."
-#: ../../network/network.pm_.c:371
+#: ../../network/network.pm_.c:372
msgid "DNS server"
msgstr "Nimipalvelin"
-#: ../../network/network.pm_.c:372
+#: ../../network/network.pm_.c:373
#, c-format
msgid "Gateway (e.g. %s)"
msgstr "Yhdyskäytävä (esim. %s)"
-#: ../../network/network.pm_.c:374
+#: ../../network/network.pm_.c:375
msgid "Gateway device"
msgstr "Yhdyskäytävän laite"
-#: ../../network/network.pm_.c:386
+#: ../../network/network.pm_.c:387
msgid "Proxies configuration"
msgstr "Proxyjen asettaminen"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:388
msgid "HTTP proxy"
msgstr "HTTP-välityspalvelin:"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:389
msgid "FTP proxy"
msgstr "FTP-välityspalvelin:"
-#: ../../network/network.pm_.c:389
+#: ../../network/network.pm_.c:390
msgid "Track network card id (useful for laptops)"
msgstr "Selvitä verkkokortti-id (hyödyllistä sylimikroille)"
-#: ../../network/network.pm_.c:392
+#: ../../network/network.pm_.c:393
msgid "Proxy should be http://..."
msgstr "Välityspalvelimen tulee olla muotoa http://..."
-#: ../../network/network.pm_.c:393
+#: ../../network/network.pm_.c:394
msgid "Proxy should be ftp://..."
msgstr "Välityspalvelimen tulee olla muotoa ftp://..."
+#: ../../network/shorewall.pm_.c:24
+msgid "Firewalling configuration detected!"
+msgstr "Palomuuri löydetty!"
+
+#: ../../network/shorewall.pm_.c:25
+msgid ""
+"Warning! An existing firewalling configuration has been detected. You may "
+"need some manual fix after installation."
+msgstr ""
+"Varoitus! Olemassaoleva palomuuri löydetty. Tarvitset mahdollisesti käsin "
+"tehtäviäkorjauksia asennuksen jälkeen."
+
#: ../../network/tools.pm_.c:41
msgid "Internet configuration"
msgstr "Internetin asetukset"
@@ -7027,15 +7187,15 @@ msgstr "Salasana"
msgid "United Kingdom"
msgstr ""
-#: ../../partition_table.pm_.c:606
+#: ../../partition_table.pm_.c:602
msgid "mount failed: "
msgstr "liittäminen epäonnistui: "
-#: ../../partition_table.pm_.c:670
+#: ../../partition_table.pm_.c:666
msgid "Extended partition not supported on this platform"
msgstr "Laajennettua osiotyyppiä ei ole tuettu tässä ympäristössä"
-#: ../../partition_table.pm_.c:688
+#: ../../partition_table.pm_.c:684
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
@@ -7045,21 +7205,21 @@ msgstr ""
"Ainoa ratkaisu on siirtää primääriosioita siten että reikä on ennen "
"laajennettuja osioita"
-#: ../../partition_table.pm_.c:778
+#: ../../partition_table.pm_.c:774
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "Palautus tiedostosta %s epäonnistui: %s"
-#: ../../partition_table.pm_.c:780
+#: ../../partition_table.pm_.c:776
msgid "Bad backup file"
msgstr "Huono varmuuskopiotiedosto"
-#: ../../partition_table.pm_.c:802
+#: ../../partition_table.pm_.c:798
#, c-format
msgid "Error writing to file %s"
msgstr "Virhe kirjoitettaessa tiedostoon %s"
-#: ../../partition_table/raw.pm_.c:187
+#: ../../partition_table/raw.pm_.c:189
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
@@ -7105,150 +7265,155 @@ msgstr "LPD - Line Printer Daemon"
msgid "PDQ - Print, Don't Queue"
msgstr "PDQ - Print, Don't Queue"
-#: ../../printer.pm_.c:35 ../../printer.pm_.c:854
+#: ../../printer.pm_.c:34 ../../printer.pm_.c:1125
msgid "CUPS"
msgstr "CUPS"
-#: ../../printer.pm_.c:36
+#: ../../printer.pm_.c:35
msgid "LPRng"
msgstr "LPRng"
-#: ../../printer.pm_.c:37
+#: ../../printer.pm_.c:36
msgid "LPD"
msgstr "LPD"
-#: ../../printer.pm_.c:38
+#: ../../printer.pm_.c:37
msgid "PDQ"
msgstr "PDQ"
-#: ../../printer.pm_.c:50
+#: ../../printer.pm_.c:49
msgid "Local printer"
msgstr "Paikallinen tulostin"
-#: ../../printer.pm_.c:51
+#: ../../printer.pm_.c:50
msgid "Remote printer"
msgstr "Ulkoinen tulostin"
-#: ../../printer.pm_.c:52
+#: ../../printer.pm_.c:51
msgid "Printer on remote CUPS server"
msgstr "Tulostin ulkoisella CUPS-palvelimella"
-#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:776
+#: ../../printer.pm_.c:52 ../../printerdrake.pm_.c:883
msgid "Printer on remote lpd server"
msgstr "Tulostin ulkoisella lpd-palvelimella"
-#: ../../printer.pm_.c:54
+#: ../../printer.pm_.c:53
msgid "Network printer (TCP/Socket)"
msgstr "Verkkotulostin (TCP/Socket)"
-#: ../../printer.pm_.c:55
+#: ../../printer.pm_.c:54
msgid "Printer on SMB/Windows 95/98/NT server"
msgstr "Tulostin SMB/Windows 95/98/NT -palvelimella"
-#: ../../printer.pm_.c:56
+#: ../../printer.pm_.c:55
msgid "Printer on NetWare server"
msgstr "Tulostin NetWare-palvelimella"
-#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:780
+#: ../../printer.pm_.c:56 ../../printerdrake.pm_.c:887
msgid "Enter a printer device URI"
msgstr "Syötä tulostinlaitteen osoite (URI)"
-#: ../../printer.pm_.c:58
+#: ../../printer.pm_.c:57
msgid "Pipe job into a command"
msgstr "Putkita työ käskylle"
-#: ../../printer.pm_.c:487 ../../printer.pm_.c:678 ../../printer.pm_.c:1000
-#: ../../printerdrake.pm_.c:2070 ../../printerdrake.pm_.c:3189
+#: ../../printer.pm_.c:324 ../../printer.pm_.c:366 ../../printer.pm_.c:533
+#, fuzzy
+msgid "Unknown Model"
+msgstr "Tuntematon malli"
+
+#: ../../printer.pm_.c:735 ../../printer.pm_.c:926 ../../printer.pm_.c:1318
+#: ../../printerdrake.pm_.c:2260 ../../printerdrake.pm_.c:3414
msgid "Unknown model"
msgstr "Tuntematon malli"
-#: ../../printer.pm_.c:515
+#: ../../printer.pm_.c:763
msgid "Local Printers"
msgstr "Paikalliset tulostimet"
-#: ../../printer.pm_.c:517 ../../printer.pm_.c:855
+#: ../../printer.pm_.c:765 ../../printer.pm_.c:1126
msgid "Remote Printers"
msgstr "Ulkoiset tulostimet"
-#: ../../printer.pm_.c:524 ../../printerdrake.pm_.c:301
+#: ../../printer.pm_.c:772 ../../printerdrake.pm_.c:404
#, c-format
msgid " on parallel port \\/*%s"
msgstr " rinnakkaisliitännässä \\/*%s"
-#: ../../printer.pm_.c:527 ../../printerdrake.pm_.c:303
+#: ../../printer.pm_.c:775 ../../printerdrake.pm_.c:406
#, c-format
msgid ", USB printer \\/*%s"
msgstr ", USB tulostin \\/*%s"
-#: ../../printer.pm_.c:532
+#: ../../printer.pm_.c:780
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ", monikäyttölaite rinnakkaisportissa \\/*%s"
-#: ../../printer.pm_.c:535
+#: ../../printer.pm_.c:783
msgid ", multi-function device on USB"
msgstr ", monikäyttölaite USB:ssa"
-#: ../../printer.pm_.c:537
+#: ../../printer.pm_.c:785
msgid ", multi-function device on HP JetDirect"
msgstr ", monitoimilaite HP JetDirectissä"
-#: ../../printer.pm_.c:539
+#: ../../printer.pm_.c:787
msgid ", multi-function device"
msgstr ", monitoimilaite"
-#: ../../printer.pm_.c:542
+#: ../../printer.pm_.c:790
#, c-format
msgid ", printing to %s"
msgstr ", tulostetaan: %s"
-#: ../../printer.pm_.c:544
+#: ../../printer.pm_.c:792
#, fuzzy, c-format
msgid " on LPD server \"%s\", printer \"%s\""
msgstr "LPD-palvelimella \"%s\", tulostin \"%s\""
-#: ../../printer.pm_.c:546
+#: ../../printer.pm_.c:794
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ", TCP/IP -verkkopäätteellä \"%s\", portissa %s"
-#: ../../printer.pm_.c:550
+#: ../../printer.pm_.c:798
#, fuzzy, c-format
msgid " on SMB/Windows server \"%s\", share \"%s\""
msgstr "Windows-palvelimella \"%s\", jako \"%s\""
-#: ../../printer.pm_.c:554
+#: ../../printer.pm_.c:802
#, fuzzy, c-format
msgid " on Novell server \"%s\", printer \"%s\""
msgstr "Novell-palvelimella \"%s\", tulostin \"%s\""
-#: ../../printer.pm_.c:556
+#: ../../printer.pm_.c:804
#, c-format
msgid ", using command %s"
msgstr ", käyttäen komentoa %s"
-#: ../../printer.pm_.c:675 ../../printerdrake.pm_.c:1540
+#: ../../printer.pm_.c:923 ../../printerdrake.pm_.c:1656
msgid "Raw printer (No driver)"
msgstr "Raakatulostin (ei ajuria)"
-#: ../../printer.pm_.c:824
+#: ../../printer.pm_.c:1095
#, c-format
msgid "(on %s)"
msgstr "(%s:ssa)"
-#: ../../printer.pm_.c:826
+#: ../../printer.pm_.c:1097
msgid "(on this machine)"
msgstr "(tällä koneella)"
-#: ../../printer.pm_.c:851
+#: ../../printer.pm_.c:1122
#, c-format
msgid "On CUPS server \"%s\""
msgstr "CUPS-palvelimella \"%s\""
-#: ../../printer.pm_.c:857 ../../printerdrake.pm_.c:2851
-#: ../../printerdrake.pm_.c:2862 ../../printerdrake.pm_.c:3078
-#: ../../printerdrake.pm_.c:3130 ../../printerdrake.pm_.c:3156
-#: ../../printerdrake.pm_.c:3326 ../../printerdrake.pm_.c:3328
+#: ../../printer.pm_.c:1128 ../../printerdrake.pm_.c:3071
+#: ../../printerdrake.pm_.c:3082 ../../printerdrake.pm_.c:3303
+#: ../../printerdrake.pm_.c:3355 ../../printerdrake.pm_.c:3381
+#: ../../printerdrake.pm_.c:3556 ../../printerdrake.pm_.c:3558
msgid " (Default)"
msgstr " (Oletus)"
@@ -7274,12 +7439,12 @@ msgstr ""
msgid "Printer auto-detection (Local, TCP/Socket, and SMB printers)"
msgstr ""
-#: ../../printerdrake.pm_.c:84 ../../printerdrake.pm_.c:2914
+#: ../../printerdrake.pm_.c:84 ../../printerdrake.pm_.c:3135
#, fuzzy
msgid "CUPS configuration"
msgstr "Asetustyökalut"
-#: ../../printerdrake.pm_.c:85 ../../printerdrake.pm_.c:2915
+#: ../../printerdrake.pm_.c:85 ../../printerdrake.pm_.c:3136
#, fuzzy
msgid "Specify CUPS server"
msgstr "Ulkoinen CUPS-palvelin"
@@ -7319,7 +7484,7 @@ msgstr ""
msgid "The IP address should look like 192.168.1.20"
msgstr "IP-osoitteen tullee olla muotoa 192.168.1.20"
-#: ../../printerdrake.pm_.c:95 ../../printerdrake.pm_.c:987
+#: ../../printerdrake.pm_.c:95 ../../printerdrake.pm_.c:1094
msgid "The port number should be an integer!"
msgstr "Portin numeron pitäisi olla kokonaisluku!"
@@ -7327,7 +7492,7 @@ msgstr "Portin numeron pitäisi olla kokonaisluku!"
msgid "CUPS server IP"
msgstr "CUPS-palvelimen IP"
-#: ../../printerdrake.pm_.c:103 ../../printerdrake.pm_.c:1007
+#: ../../printerdrake.pm_.c:103 ../../printerdrake.pm_.c:1114
msgid "Port"
msgstr "Portti"
@@ -7335,12 +7500,130 @@ msgstr "Portti"
msgid "Automatic CUPS configuration"
msgstr "CUPSin automaattinen asettaminen"
-#: ../../printerdrake.pm_.c:183 ../../printerdrake.pm_.c:192
-#: ../../printerdrake.pm_.c:2897 ../../printerdrake.pm_.c:3017
+#: ../../printerdrake.pm_.c:177 ../../printerdrake.pm_.c:247
+#: ../../printerdrake.pm_.c:1529 ../../printerdrake.pm_.c:1533
+#: ../../printerdrake.pm_.c:1651 ../../printerdrake.pm_.c:2203
+#: ../../printerdrake.pm_.c:2356 ../../printerdrake.pm_.c:2415
+#: ../../printerdrake.pm_.c:2488 ../../printerdrake.pm_.c:2509
+#: ../../printerdrake.pm_.c:2699 ../../printerdrake.pm_.c:2740
+#: ../../printerdrake.pm_.c:2745 ../../printerdrake.pm_.c:2779
+#: ../../printerdrake.pm_.c:2784 ../../printerdrake.pm_.c:2821
+#: ../../printerdrake.pm_.c:2874 ../../printerdrake.pm_.c:2894
+#: ../../printerdrake.pm_.c:2908 ../../printerdrake.pm_.c:2942
+#: ../../printerdrake.pm_.c:2988 ../../printerdrake.pm_.c:3006
+#: ../../printerdrake.pm_.c:3095 ../../printerdrake.pm_.c:3169
+#: ../../printerdrake.pm_.c:3471 ../../printerdrake.pm_.c:3526
+#: ../../printerdrake.pm_.c:3579 ../../standalone/printerdrake_.c:57
+msgid "Printerdrake"
+msgstr "Printerdrake"
+
+#: ../../printerdrake.pm_.c:178
+#, fuzzy
+msgid "Checking your system..."
+msgstr "Käynnistän tulostusjärjestelmää uudelleen ..."
+
+#: ../../printerdrake.pm_.c:186
+msgid ""
+"There are no printers found which are directly connected to your machine"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:198
+#, fuzzy
+msgid ""
+"The following printers\n"
+"\n"
+msgstr "Seuraavat paketit poistetaan"
+
+#: ../../printerdrake.pm_.c:199
+#, fuzzy
+msgid ""
+"The following printer\n"
+"\n"
+msgstr "Seuraavat paketit poistetaan"
+
+#: ../../printerdrake.pm_.c:201
+msgid ""
+"\n"
+"and one unknown printer are "
+msgstr ""
+
+#: ../../printerdrake.pm_.c:203
+#, c-format
+msgid ""
+"\n"
+"and %d unknown printers are "
+msgstr ""
+
+#: ../../printerdrake.pm_.c:207
+msgid ""
+"\n"
+"are "
+msgstr ""
+
+#: ../../printerdrake.pm_.c:208
+msgid ""
+"\n"
+"is "
+msgstr ""
+
+#: ../../printerdrake.pm_.c:210
+#, fuzzy
+msgid "directly connected to your system"
+msgstr "Kopioi kirjasimet järjestelmääsi"
+
+#: ../../printerdrake.pm_.c:213
+msgid ""
+"\n"
+"There is one unknown printer directly connected to your system"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:215
+#, c-format
+msgid ""
+"\n"
+"There are %d unknown printers directly connected to your system"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:221
+#, fuzzy
+msgid " (Make sure that all your printers are connected and turned on).\n"
+msgstr "Valitse portti, johon tulostimesi on kytketty."
+
+#: ../../printerdrake.pm_.c:235
+msgid ""
+"Do you want to enable printing on the printers mentioned above or on "
+"printers in the local network?\n"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:236
+#, fuzzy
+msgid "Do you want to enable printing on printers in the local network?\n"
+msgstr ""
+"Haluatko asettaa tämän tulostimen (\"%s\")\n"
+"oletustulostimeksi?"
+
+#: ../../printerdrake.pm_.c:238
+#, fuzzy
+msgid "Do you want to enable printing on the printers mentioned above?\n"
+msgstr "Haluatko ottaa yhteyden koneen käynnistyksen yhteydessä?"
+
+#: ../../printerdrake.pm_.c:239
+msgid "Are you sure that you want to set up printing on this machine?\n"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:240
+#, c-format
+msgid ""
+"NOTE: Depending on the printer model and the printing system up to %d MB of "
+"additional software will be installed."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:269 ../../printerdrake.pm_.c:278
+#: ../../printerdrake.pm_.c:3117 ../../printerdrake.pm_.c:3242
msgid "Add a new printer"
msgstr "Lisää uusi tulostin"
-#: ../../printerdrake.pm_.c:184
+#: ../../printerdrake.pm_.c:270
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7353,7 +7636,7 @@ msgid ""
"connection types."
msgstr ""
-#: ../../printerdrake.pm_.c:193
+#: ../../printerdrake.pm_.c:280
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7362,7 +7645,7 @@ msgid ""
"computer, connected directly to the network or to a remote Windows machine.\n"
"\n"
"If you have printer(s) connected to this machine, Please plug it/them in on "
-"this computer and turn it/them on so that they can be auto-detected. Also "
+"this computer and turn it/them on so that it/they can be auto-detected. Also "
"your network printer(s) and you Windows machines must be connected and "
"turned on.\n"
"\n"
@@ -7375,7 +7658,22 @@ msgid ""
"want to set up your printer(s) now."
msgstr ""
-#: ../../printerdrake.pm_.c:202
+#: ../../printerdrake.pm_.c:289 ../../printerdrake.pm_.c:306
+msgid ""
+"\n"
+"Welcome to the Printer Setup Wizard\n"
+"\n"
+"This wizard will help you to install your printer(s) connected to this "
+"computer.\n"
+"\n"
+"If you have printer(s) connected to this machine, Please plug it/them in on "
+"this computer and turn it/them on so that it/they can be auto-detected.\n"
+"\n"
+" Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
+"want to set up your printer(s) now."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:297
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7384,7 +7682,7 @@ msgid ""
"computer or connected directly to the network.\n"
"\n"
"If you have printer(s) connected to this machine, Please plug it/them in on "
-"this computer and turn it/them on so that they can be auto-detected. Also "
+"this computer and turn it/them on so that it/they can be auto-detected. Also "
"your network printer(s) must be connected and turned on.\n"
"\n"
"Note that auto-detecting printers on the network takes longer than the auto-"
@@ -7395,25 +7693,25 @@ msgid ""
"want to set up your printer(s) now."
msgstr ""
-#: ../../printerdrake.pm_.c:213
+#: ../../printerdrake.pm_.c:315
#, fuzzy
msgid "Auto-detect printers connected to this machine"
msgstr "Etsi tulostimet"
-#: ../../printerdrake.pm_.c:215
+#: ../../printerdrake.pm_.c:318
msgid "Auto-detect printers connected directly to the local network"
msgstr ""
-#: ../../printerdrake.pm_.c:218
+#: ../../printerdrake.pm_.c:321
msgid "Auto-detect printers connected to machines running Microsoft Windows"
msgstr ""
-#: ../../printerdrake.pm_.c:245 ../../printerdrake.pm_.c:459
-#: ../../printerdrake.pm_.c:484
+#: ../../printerdrake.pm_.c:348 ../../printerdrake.pm_.c:562
+#: ../../printerdrake.pm_.c:587
msgid "Local Printer"
msgstr "Paikallinen tulostin"
-#: ../../printerdrake.pm_.c:246
+#: ../../printerdrake.pm_.c:349
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -7427,50 +7725,50 @@ msgid ""
"Center."
msgstr ""
-#: ../../printerdrake.pm_.c:283 ../../printerdrake.pm_.c:474
-#: ../../printerdrake.pm_.c:683 ../../printerdrake.pm_.c:923
+#: ../../printerdrake.pm_.c:386 ../../printerdrake.pm_.c:577
+#: ../../printerdrake.pm_.c:790 ../../printerdrake.pm_.c:1030
#, fuzzy
msgid "Printer auto-detection"
msgstr "Tee automaattinen tunnistus"
-#: ../../printerdrake.pm_.c:305
+#: ../../printerdrake.pm_.c:408
#, fuzzy, c-format
msgid ", network printer \"%s\", port %s"
msgstr ", TCP/IP -verkkopäätteellä \"%s\", portissa %s"
-#: ../../printerdrake.pm_.c:307
+#: ../../printerdrake.pm_.c:410
#, fuzzy, c-format
msgid ", printer \"%s\" on SMB/Windows server \"%s\""
msgstr "Tulostin SMB/Windows 95/98/NT -palvelimella"
-#: ../../printerdrake.pm_.c:313
+#: ../../printerdrake.pm_.c:416
#, c-format
msgid "Detected %s"
msgstr "Löydetty %s:sta"
-#: ../../printerdrake.pm_.c:317 ../../printerdrake.pm_.c:348
-#: ../../printerdrake.pm_.c:367
+#: ../../printerdrake.pm_.c:420 ../../printerdrake.pm_.c:451
+#: ../../printerdrake.pm_.c:470
#, c-format
msgid "Printer on parallel port \\/*%s"
msgstr "Tulostin rinnakkaisportissa \\/*%s"
-#: ../../printerdrake.pm_.c:319 ../../printerdrake.pm_.c:350
-#: ../../printerdrake.pm_.c:372
+#: ../../printerdrake.pm_.c:422 ../../printerdrake.pm_.c:453
+#: ../../printerdrake.pm_.c:475
#, c-format
msgid "USB printer \\/*%s"
msgstr "USB-tulostin \\/*%s"
-#: ../../printerdrake.pm_.c:321
+#: ../../printerdrake.pm_.c:424
#, fuzzy, c-format
msgid "Network printer \"%s\", port %s"
msgstr "Verkkotulostin (TCP/Socket)"
-#: ../../printerdrake.pm_.c:323
+#: ../../printerdrake.pm_.c:426
#, fuzzy, c-format
msgid "Printer \"%s\" on SMB/Windows server \"%s\""
msgstr "Tulostin SMB/Windows 95/98/NT -palvelimella"
-#: ../../printerdrake.pm_.c:460
+#: ../../printerdrake.pm_.c:563
msgid ""
"No local printer found! To manually install a printer enter a device name/"
"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
@@ -7478,23 +7776,23 @@ msgid ""
"printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:464
+#: ../../printerdrake.pm_.c:567
msgid "You must enter a device or file name!"
msgstr "Sinun täytyy syöttää laitteen tai tiedoston nimi!"
-#: ../../printerdrake.pm_.c:475
+#: ../../printerdrake.pm_.c:578
#, fuzzy
msgid "No printer found!"
msgstr ""
"Paikallisia tulostimia ei löytynyt!\n"
"\n"
-#: ../../printerdrake.pm_.c:485
+#: ../../printerdrake.pm_.c:588
#, fuzzy
msgid "Available printers"
msgstr "Paikallinen tulostin"
-#: ../../printerdrake.pm_.c:489
+#: ../../printerdrake.pm_.c:592
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
@@ -7502,7 +7800,7 @@ msgstr ""
"Seuraava tulostin löydettiin, jos se ei ole se, jonka haluat asettaa, syötä "
"laite- tai tiedostonimi syöteriville"
-#: ../../printerdrake.pm_.c:490
+#: ../../printerdrake.pm_.c:593
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up or enter a device name/file name in the input line"
@@ -7510,7 +7808,7 @@ msgstr ""
"Tässä on lista löydetyistä tulostimista. Valitse se tulostin, jonka haluat "
"asettaa tai syötä laite- tai tiedostonimi syöteriville"
-#: ../../printerdrake.pm_.c:492
+#: ../../printerdrake.pm_.c:595
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
@@ -7518,7 +7816,7 @@ msgid ""
"configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:493
+#: ../../printerdrake.pm_.c:596
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
@@ -7526,7 +7824,7 @@ msgid ""
"customized printer configuration, turn on \"Manual configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:495
+#: ../../printerdrake.pm_.c:598
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
@@ -7534,11 +7832,11 @@ msgstr ""
"Valitse portti, johon tulostimesi on kytketty tai syötä laitteen tai "
"tiedoston nimi syöteriville"
-#: ../../printerdrake.pm_.c:496
+#: ../../printerdrake.pm_.c:599
msgid "Please choose the port where your printer is connected to."
msgstr "Valitse portti, johon tulostimesi on kytketty."
-#: ../../printerdrake.pm_.c:498
+#: ../../printerdrake.pm_.c:601
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
@@ -7546,19 +7844,19 @@ msgstr ""
" (Rinnakkaisportit: /dev/lp0, /dev/lp1, ..., vastaavat LPT1:, LPT2:, ..., 1. "
"USB-tulostin: /dev/usb/lp0, 2. USB-tulostin: /dev/usb/lp1, ...)."
-#: ../../printerdrake.pm_.c:503
+#: ../../printerdrake.pm_.c:606
msgid "You must choose/enter a printer/device!"
msgstr "Sinun täytyy valita tai syöttää tulostinlaite!"
-#: ../../printerdrake.pm_.c:523
+#: ../../printerdrake.pm_.c:626
msgid "Manual configuration"
msgstr "Manuaalinen asettaminen"
-#: ../../printerdrake.pm_.c:577
+#: ../../printerdrake.pm_.c:680
msgid "Remote lpd Printer Options"
msgstr "Ulkoisen lpd-palvelimen tulostimen parametrit"
-#: ../../printerdrake.pm_.c:578
+#: ../../printerdrake.pm_.c:681
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
"server and the printer name on that server."
@@ -7566,47 +7864,47 @@ msgstr ""
"Jotta voisit käyttää ulkoista lpd-tulostinta, sinun pitäisi syöttää "
"tulostuspalvelimen verkkonimi sekä tulostimen nimi kyseisellä palvelimella."
-#: ../../printerdrake.pm_.c:579
+#: ../../printerdrake.pm_.c:682
msgid "Remote host name"
msgstr "Palvelimen verkkonimi"
-#: ../../printerdrake.pm_.c:580
+#: ../../printerdrake.pm_.c:683
msgid "Remote printer name"
msgstr "Ulkoisen tulostimen nimi"
-#: ../../printerdrake.pm_.c:583
+#: ../../printerdrake.pm_.c:686
msgid "Remote host name missing!"
msgstr "Palvelimen verkkonimi puuttuu!"
-#: ../../printerdrake.pm_.c:587
+#: ../../printerdrake.pm_.c:690
msgid "Remote printer name missing!"
msgstr "Ulkoisen tulostimen nimi puuttuu!"
-#: ../../printerdrake.pm_.c:609 ../../printerdrake.pm_.c:1119
+#: ../../printerdrake.pm_.c:712 ../../printerdrake.pm_.c:1225
#, fuzzy, c-format
msgid "Detected model: %s %s"
msgstr "Löydetty %s:sta"
-#: ../../printerdrake.pm_.c:683 ../../printerdrake.pm_.c:923
+#: ../../printerdrake.pm_.c:790 ../../printerdrake.pm_.c:1030
#, fuzzy
msgid "Scanning network..."
msgstr "Luon verkkoyhteyttä ..."
-#: ../../printerdrake.pm_.c:692 ../../printerdrake.pm_.c:713
+#: ../../printerdrake.pm_.c:799 ../../printerdrake.pm_.c:820
#, fuzzy, c-format
msgid ", printer \"%s\" on server \"%s\""
msgstr "Windows-palvelimella \"%s\", jako \"%s\""
-#: ../../printerdrake.pm_.c:695 ../../printerdrake.pm_.c:716
+#: ../../printerdrake.pm_.c:802 ../../printerdrake.pm_.c:823
#, fuzzy, c-format
msgid "Printer \"%s\" on server \"%s\""
msgstr "Tulostus käynnissä tulostimella \"%s\""
-#: ../../printerdrake.pm_.c:736
+#: ../../printerdrake.pm_.c:843
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "SMB (Windows 9x/NT) -tulostimen parametrit"
-#: ../../printerdrake.pm_.c:737
+#: ../../printerdrake.pm_.c:844
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
"may be different from its TCP/IP hostname!) and possibly the IP address of "
@@ -7618,46 +7916,46 @@ msgstr ""
"tulostuspalvelimen IP-osoite, tulostimen jakonimi sekä soveltuva "
"käyttäjätunnus, salasana ja työryhmä-tieto."
-#: ../../printerdrake.pm_.c:738
+#: ../../printerdrake.pm_.c:845
msgid ""
" If the desired printer was auto-detected, simply choose it from the list "
"and then add user name, password, and/or workgroup if needed."
msgstr ""
-#: ../../printerdrake.pm_.c:739
+#: ../../printerdrake.pm_.c:846
msgid "SMB server host"
msgstr "SMB-palvelimen nimi"
-#: ../../printerdrake.pm_.c:740
+#: ../../printerdrake.pm_.c:847
msgid "SMB server IP"
msgstr "SMB-palvelimen IP"
-#: ../../printerdrake.pm_.c:741
+#: ../../printerdrake.pm_.c:848
msgid "Share name"
msgstr "Jakonimi"
-#: ../../printerdrake.pm_.c:744
+#: ../../printerdrake.pm_.c:851
msgid "Workgroup"
msgstr "Työryhmä"
-#: ../../printerdrake.pm_.c:746
+#: ../../printerdrake.pm_.c:853
#, fuzzy
msgid "Auto-detected"
msgstr "Tee automaattinen tunnistus"
-#: ../../printerdrake.pm_.c:757
+#: ../../printerdrake.pm_.c:864
msgid "Either the server name or the server's IP must be given!"
msgstr "Joko palvelimen nimi tai IP-numero on annettava!"
-#: ../../printerdrake.pm_.c:761
+#: ../../printerdrake.pm_.c:868
msgid "Samba share name missing!"
msgstr "Samba-jaon nimi puuttuu!"
-#: ../../printerdrake.pm_.c:767
+#: ../../printerdrake.pm_.c:874
msgid "SECURITY WARNING!"
msgstr ""
-#: ../../printerdrake.pm_.c:768
+#: ../../printerdrake.pm_.c:875
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -7681,7 +7979,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:778
+#: ../../printerdrake.pm_.c:885
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -7690,7 +7988,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:781
+#: ../../printerdrake.pm_.c:888
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
@@ -7698,11 +7996,11 @@ msgid ""
"Do you really want to continue setting up this printer as you are doing now?"
msgstr ""
-#: ../../printerdrake.pm_.c:853
+#: ../../printerdrake.pm_.c:960
msgid "NetWare Printer Options"
msgstr "NetWare-palvelimen tulostimen parametrit"
-#: ../../printerdrake.pm_.c:854
+#: ../../printerdrake.pm_.c:961
msgid ""
"To print on a NetWare printer, you need to provide the NetWare print server "
"name (Note! it may be different from its TCP/IP hostname!) as well as the "
@@ -7714,43 +8012,43 @@ msgstr ""
"mahdollisesti tulostusjonon nimi sille tulostimelle, jota haluat käyttää, "
"sekä soveltuva käyttäjätunnus ja salasana."
-#: ../../printerdrake.pm_.c:855
+#: ../../printerdrake.pm_.c:962
msgid "Printer Server"
msgstr "Tulostuspalvelin"
-#: ../../printerdrake.pm_.c:856
+#: ../../printerdrake.pm_.c:963
msgid "Print Queue Name"
msgstr "Tulostusjonon nimi"
-#: ../../printerdrake.pm_.c:861
+#: ../../printerdrake.pm_.c:968
msgid "NCP server name missing!"
msgstr "NCP-palvelimen nimi puuttuu!"
-#: ../../printerdrake.pm_.c:865
+#: ../../printerdrake.pm_.c:972
msgid "NCP queue name missing!"
msgstr "NCP-jonon nimi puuttuu!"
-#: ../../printerdrake.pm_.c:932 ../../printerdrake.pm_.c:952
+#: ../../printerdrake.pm_.c:1039 ../../printerdrake.pm_.c:1059
#, fuzzy, c-format
msgid ", host \"%s\", port %s"
msgstr ", TCP/IP -verkkopäätteellä \"%s\", portissa %s"
-#: ../../printerdrake.pm_.c:935 ../../printerdrake.pm_.c:955
+#: ../../printerdrake.pm_.c:1042 ../../printerdrake.pm_.c:1062
#, fuzzy, c-format
msgid "Host \"%s\", port %s"
msgstr ", TCP/IP -verkkopäätteellä \"%s\", portissa %s"
-#: ../../printerdrake.pm_.c:975
+#: ../../printerdrake.pm_.c:1082
msgid "TCP/Socket Printer Options"
msgstr "TCP/Socket -tulostimen parametrit"
-#: ../../printerdrake.pm_.c:977
+#: ../../printerdrake.pm_.c:1084
msgid ""
"Choose one of the auto-detected printers from the list or enter the hostname "
"or IP and the optional port number (default is 9100) into the input fields."
msgstr ""
-#: ../../printerdrake.pm_.c:978
+#: ../../printerdrake.pm_.c:1085
#, fuzzy
msgid ""
"To print to a TCP or socket printer, you need to provide the host name or IP "
@@ -7763,59 +8061,59 @@ msgstr ""
"porttinumero on useimmiten 9100, muissa palvelimissa portti voi vaihdella. "
"Tarkista portti laitteistosi ohjekirjasta."
-#: ../../printerdrake.pm_.c:983
+#: ../../printerdrake.pm_.c:1090
#, fuzzy
msgid "Printer host name or IP missing!"
msgstr "Tulostinlaitteen verkkonimi puuttuu!"
-#: ../../printerdrake.pm_.c:1005
+#: ../../printerdrake.pm_.c:1112
#, fuzzy
msgid "Printer host name or IP"
msgstr "Tulostinlaitteen verkkonimi"
-#: ../../printerdrake.pm_.c:1054 ../../printerdrake.pm_.c:1056
+#: ../../printerdrake.pm_.c:1160 ../../printerdrake.pm_.c:1162
msgid "Printer Device URI"
msgstr "Tulostinlaitteen osoite (URI)"
-#: ../../printerdrake.pm_.c:1055
+#: ../../printerdrake.pm_.c:1161
msgid ""
"You can specify directly the URI to access the printer. The URI must fulfill "
"either the CUPS or the Foomatic specifications. Note that not all URI types "
"are supported by all the spoolers."
msgstr ""
-#: ../../printerdrake.pm_.c:1070
+#: ../../printerdrake.pm_.c:1176
msgid "A valid URI must be entered!"
msgstr "Sinun pitää syöttää laillinen URI!"
-#: ../../printerdrake.pm_.c:1402
+#: ../../printerdrake.pm_.c:1515
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
"Location fields do not need to be filled in. They are comments for the users."
msgstr ""
-#: ../../printerdrake.pm_.c:1403
+#: ../../printerdrake.pm_.c:1516
msgid "Name of printer"
msgstr "Tulostimen nimi"
-#: ../../printerdrake.pm_.c:1405
+#: ../../printerdrake.pm_.c:1518
msgid "Location"
msgstr "Paikka"
-#: ../../printerdrake.pm_.c:1416 ../../printerdrake.pm_.c:1536
+#: ../../printerdrake.pm_.c:1530 ../../printerdrake.pm_.c:1652
msgid "Reading printer database..."
msgstr "Luetaan tulostintietokantaa ..."
-#: ../../printerdrake.pm_.c:1419
+#: ../../printerdrake.pm_.c:1534
msgid "Preparing printer database..."
msgstr "Valmistellaan tulostintietokantaa ..."
-#: ../../printerdrake.pm_.c:1516
+#: ../../printerdrake.pm_.c:1631
#, fuzzy
msgid "Your printer model"
msgstr "Ulkoisen tulostimen nimi"
-#: ../../printerdrake.pm_.c:1517
+#: ../../printerdrake.pm_.c:1632
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -7830,26 +8128,26 @@ msgid ""
"%s"
msgstr ""
-#: ../../printerdrake.pm_.c:1522 ../../printerdrake.pm_.c:1525
+#: ../../printerdrake.pm_.c:1637 ../../printerdrake.pm_.c:1640
#, fuzzy
msgid "The model is correct"
msgstr "Onko tämä oikein?"
-#: ../../printerdrake.pm_.c:1523 ../../printerdrake.pm_.c:1524
-#: ../../printerdrake.pm_.c:1527
+#: ../../printerdrake.pm_.c:1638 ../../printerdrake.pm_.c:1639
+#: ../../printerdrake.pm_.c:1642
#, fuzzy
msgid "Select model manually"
msgstr "Valitse käyttäjät yksitellen"
-#: ../../printerdrake.pm_.c:1543
+#: ../../printerdrake.pm_.c:1659
msgid "Printer model selection"
msgstr "Tulostimen mallin valinta"
-#: ../../printerdrake.pm_.c:1544
+#: ../../printerdrake.pm_.c:1660
msgid "Which printer model do you have?"
msgstr "Mikä tulostinmalli sinulla on?"
-#: ../../printerdrake.pm_.c:1545
+#: ../../printerdrake.pm_.c:1661
msgid ""
"\n"
"\n"
@@ -7858,17 +8156,17 @@ msgid ""
"standing on a wrong model or on \"Raw printer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1548
+#: ../../printerdrake.pm_.c:1664
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
msgstr ""
-#: ../../printerdrake.pm_.c:1624
+#: ../../printerdrake.pm_.c:1741
msgid "OKI winprinter configuration"
msgstr "OKI winprinterin asettaminen"
-#: ../../printerdrake.pm_.c:1625
+#: ../../printerdrake.pm_.c:1742
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -7878,11 +8176,11 @@ msgid ""
"not work. Your connection type setting will be ignored by the driver."
msgstr ""
-#: ../../printerdrake.pm_.c:1668 ../../printerdrake.pm_.c:1695
+#: ../../printerdrake.pm_.c:1785 ../../printerdrake.pm_.c:1812
msgid "Lexmark inkjet configuration"
msgstr "Lexmark inkjetin asettaminen"
-#: ../../printerdrake.pm_.c:1669
+#: ../../printerdrake.pm_.c:1786
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
"no printers on remote machines or print server boxes. Please connect your "
@@ -7890,20 +8188,46 @@ msgid ""
"to."
msgstr ""
-#: ../../printerdrake.pm_.c:1696
+#: ../../printerdrake.pm_.c:1813
msgid ""
"To be able to print with your Lexmark inkjet and this configuration, you "
"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
-"com/). Go to the US site and click on the \"Drivers\" button. Then choose "
-"your model and afterwards \"Linux\" as operating system. The drivers come as "
-"RPM packages or shell scripts with interactive graphical installation. You "
-"do not need to do this configuration by the graphical frontends. Cancel "
-"directly after the license agreement. Then print printhead alignment pages "
-"with \"lexmarkmaintain\" and adjust the head alignment settings with this "
-"program."
+"com/). Click on the \"Drivers\" link. Then choose your model and afterwards "
+"\"Linux\" as operating system. The drivers come as RPM packages or shell "
+"scripts with interactive graphical installation. You do not need to do this "
+"configuration by the graphical frontends. Cancel directly after the license "
+"agreement. Then print printhead alignment pages with \"lexmarkmaintain\" and "
+"adjust the head alignment settings with this program."
msgstr ""
-#: ../../printerdrake.pm_.c:1912
+#: ../../printerdrake.pm_.c:1816
+msgid "GDI Laser Printer using the Zenographics ZJ-Stream Format"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:1817
+msgid ""
+"Your printer belongs to the group of GDI laser printers (winprinters) sold "
+"by different manufacturers which uses the Zenographics ZJ-stream raster "
+"format for the data sent to the printer. The driver for these printers is "
+"still in a very early development stage and so it will perhaps not always "
+"work properly. Especially it is possible that the printer only works when "
+"you choose the A4 paper size.\n"
+"\n"
+"Some of these printers, as the HP LaserJet 1000, for which this driver was "
+"originally created, need their firmware to be uploaded to them after they "
+"are turned on. In the case of the HP LaserJet 1000 you have to search the "
+"printer's Windows driver CD or your Windows partition for the file "
+"\"sihp1000.img\" and upload the file to the printer with one of the "
+"following commands:\n"
+"\n"
+" lpr -o raw sihp1000.img\n"
+" cat sihp1000.img > /dev/usb/lp0\n"
+"\n"
+"The first command can be given by any normal user, the second must be given "
+"as root. After having done so you can print normally.\n"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:2040
msgid ""
"Printer default settings\n"
"\n"
@@ -7913,22 +8237,22 @@ msgid ""
"printout quality/resolution printing can get substantially slower."
msgstr ""
-#: ../../printerdrake.pm_.c:1921
+#: ../../printerdrake.pm_.c:2049
#, c-format
msgid "Option %s must be an integer number!"
msgstr "Valitsimen %s pitää olla kokonaisluku!"
-#: ../../printerdrake.pm_.c:1925
+#: ../../printerdrake.pm_.c:2053
#, c-format
msgid "Option %s must be a number!"
msgstr "Valitsimen %s pitää olla luku!"
-#: ../../printerdrake.pm_.c:1930
+#: ../../printerdrake.pm_.c:2058
#, c-format
msgid "Option %s out of range!"
msgstr "Valitsin %s on arvoalueensa ulkopuolella!"
-#: ../../printerdrake.pm_.c:1969
+#: ../../printerdrake.pm_.c:2097
#, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
@@ -7937,11 +8261,11 @@ msgstr ""
"Haluatko asettaa tämän tulostimen (\"%s\")\n"
"oletustulostimeksi?"
-#: ../../printerdrake.pm_.c:1986
+#: ../../printerdrake.pm_.c:2120
msgid "Test pages"
msgstr "Testisivut"
-#: ../../printerdrake.pm_.c:1987
+#: ../../printerdrake.pm_.c:2121
msgid ""
"Please select the test pages you want to print.\n"
"Note: the photo test page can take a rather long time to get printed and on "
@@ -7949,39 +8273,39 @@ msgid ""
"it is enough to print the standard test page."
msgstr ""
-#: ../../printerdrake.pm_.c:1991
+#: ../../printerdrake.pm_.c:2125
msgid "No test pages"
msgstr "Ei testisivuja"
-#: ../../printerdrake.pm_.c:1992
+#: ../../printerdrake.pm_.c:2126
msgid "Print"
msgstr "Tulosta"
-#: ../../printerdrake.pm_.c:1994
+#: ../../printerdrake.pm_.c:2183
msgid "Standard test page"
msgstr "Standardi testisivu"
-#: ../../printerdrake.pm_.c:1997
+#: ../../printerdrake.pm_.c:2186
msgid "Alternative test page (Letter)"
msgstr "Vaihtoehtoinen testisivu (Letter)"
-#: ../../printerdrake.pm_.c:2000
+#: ../../printerdrake.pm_.c:2189
msgid "Alternative test page (A4)"
msgstr "Vaihtoehtoinen testisivu (A4)"
-#: ../../printerdrake.pm_.c:2002
+#: ../../printerdrake.pm_.c:2191
msgid "Photo test page"
msgstr "Valokuvatestisivu"
-#: ../../printerdrake.pm_.c:2006
+#: ../../printerdrake.pm_.c:2195
msgid "Do not print any test page"
msgstr "Älä tulosta testisivua"
-#: ../../printerdrake.pm_.c:2014 ../../printerdrake.pm_.c:2166
+#: ../../printerdrake.pm_.c:2204 ../../printerdrake.pm_.c:2357
msgid "Printing test page(s)..."
msgstr "Tulostan testisivu(j)a..."
-#: ../../printerdrake.pm_.c:2039
+#: ../../printerdrake.pm_.c:2229
#, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -7996,7 +8320,7 @@ msgstr ""
"%s\n"
"\n"
-#: ../../printerdrake.pm_.c:2043
+#: ../../printerdrake.pm_.c:2233
msgid ""
"Test page(s) have been sent to the printer.\n"
"It may take some time before the printer starts.\n"
@@ -8004,15 +8328,15 @@ msgstr ""
"Testisivu(t) on lähetetty tulostimelle.\n"
"Voi kestää hetken ennen kuin tulostus alkaa.\n"
-#: ../../printerdrake.pm_.c:2050
+#: ../../printerdrake.pm_.c:2240
msgid "Did it work properly?"
msgstr "Toimiko tulostus kunnolla?"
-#: ../../printerdrake.pm_.c:2072 ../../printerdrake.pm_.c:3191
+#: ../../printerdrake.pm_.c:2262 ../../printerdrake.pm_.c:3416
msgid "Raw printer"
msgstr "Raakatulostin"
-#: ../../printerdrake.pm_.c:2098
+#: ../../printerdrake.pm_.c:2288
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -8021,15 +8345,15 @@ msgid ""
"to modify the option settings easily.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2100
+#: ../../printerdrake.pm_.c:2290
msgid ""
"These commands you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications, but here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2103 ../../printerdrake.pm_.c:2120
-#: ../../printerdrake.pm_.c:2130
+#: ../../printerdrake.pm_.c:2293 ../../printerdrake.pm_.c:2310
+#: ../../printerdrake.pm_.c:2320
#, c-format
msgid ""
"\n"
@@ -8038,7 +8362,7 @@ msgid ""
"line, e. g. \"%s <file>\". "
msgstr ""
-#: ../../printerdrake.pm_.c:2106 ../../printerdrake.pm_.c:2146
+#: ../../printerdrake.pm_.c:2296 ../../printerdrake.pm_.c:2336
#, fuzzy, c-format
msgid ""
"To know about the options available for the current printer read either the "
@@ -8049,7 +8373,7 @@ msgstr ""
"tai klikkaa \"Tulostuksen valintalista\"-painiketta.%s\n"
"\n"
-#: ../../printerdrake.pm_.c:2110
+#: ../../printerdrake.pm_.c:2300
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
@@ -8057,7 +8381,7 @@ msgstr ""
"Tässä on lista nykyisen tulostinen käytössä olevista tulostusvalinnoista:\n"
"\n"
-#: ../../printerdrake.pm_.c:2115 ../../printerdrake.pm_.c:2125
+#: ../../printerdrake.pm_.c:2305 ../../printerdrake.pm_.c:2315
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
@@ -8066,15 +8390,15 @@ msgstr ""
"Tulostaaksesi tiedoston komentoriviltä (pääteikkunasta) käytä komentoa \"%s "
"<tiedosto>\".\n"
-#: ../../printerdrake.pm_.c:2117 ../../printerdrake.pm_.c:2127
-#: ../../printerdrake.pm_.c:2137
+#: ../../printerdrake.pm_.c:2307 ../../printerdrake.pm_.c:2317
+#: ../../printerdrake.pm_.c:2327
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2122 ../../printerdrake.pm_.c:2132
+#: ../../printerdrake.pm_.c:2312 ../../printerdrake.pm_.c:2322
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
@@ -8082,7 +8406,7 @@ msgstr ""
"Saadaksesi listan nykyisen tulostimen parametreistä klikkaa \"Tulostuksen "
"valintalista\"-painiketta."
-#: ../../printerdrake.pm_.c:2135
+#: ../../printerdrake.pm_.c:2325
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
@@ -8091,7 +8415,7 @@ msgstr ""
"Tulostaaksesi tiedoston komentoriviltä (pääteikkunasta) käytä komentoa \"%s "
"<tiedosto>\". tai \"%s <tiedosto>\".\n"
-#: ../../printerdrake.pm_.c:2139
+#: ../../printerdrake.pm_.c:2329
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -8101,7 +8425,7 @@ msgid ""
"jams.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2143
+#: ../../printerdrake.pm_.c:2333
#, c-format
msgid ""
"\n"
@@ -8110,40 +8434,40 @@ msgid ""
"line, e. g. \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2153
+#: ../../printerdrake.pm_.c:2343
#, fuzzy, c-format
msgid "Printing/Scanning/Photo Cards on \"%s\""
msgstr "Tulostetaan/skannataan laitteella \"%s\""
-#: ../../printerdrake.pm_.c:2154
+#: ../../printerdrake.pm_.c:2344
#, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "Tulostetaan/skannataan laitteella \"%s\""
-#: ../../printerdrake.pm_.c:2156
+#: ../../printerdrake.pm_.c:2346
#, fuzzy, c-format
msgid "Printing/Photo Card Access on \"%s\""
msgstr "Tulostetaan/skannataan laitteella \"%s\""
-#: ../../printerdrake.pm_.c:2157
+#: ../../printerdrake.pm_.c:2347
#, c-format
msgid "Printing on the printer \"%s\""
msgstr "Tulostus käynnissä tulostimella \"%s\""
-#: ../../printerdrake.pm_.c:2160 ../../printerdrake.pm_.c:2163
-#: ../../printerdrake.pm_.c:2164 ../../printerdrake.pm_.c:2165
-#: ../../printerdrake.pm_.c:3175 ../../standalone/drakTermServ_.c:248
-#: ../../standalone/drakbackup_.c:1485 ../../standalone/drakbackup_.c:3530
-#: ../../standalone/drakbug_.c:129 ../../standalone/drakfont_.c:705
+#: ../../printerdrake.pm_.c:2350 ../../printerdrake.pm_.c:2353
+#: ../../printerdrake.pm_.c:2354 ../../printerdrake.pm_.c:2355
+#: ../../printerdrake.pm_.c:3400 ../../standalone/drakTermServ_.c:248
+#: ../../standalone/drakbackup_.c:1560 ../../standalone/drakbackup_.c:4208
+#: ../../standalone/drakbug_.c:130 ../../standalone/drakfont_.c:705
#: ../../standalone/drakfont_.c:1014
msgid "Close"
msgstr "Sulje"
-#: ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2353
msgid "Print option list"
msgstr "Tulostusparametrien lista"
-#: ../../printerdrake.pm_.c:2182
+#: ../../printerdrake.pm_.c:2373
#, c-format
msgid ""
"Your multi-function device was configured automatically to be able to scan. "
@@ -8157,7 +8481,7 @@ msgid ""
"Do not use \"scannerdrake\" for this device!"
msgstr ""
-#: ../../printerdrake.pm_.c:2202
+#: ../../printerdrake.pm_.c:2394
msgid ""
"Your printer was configured automatically to give you access to the photo "
"card drives from your PC. Now you can access your photo cards using the "
@@ -8170,17 +8494,17 @@ msgid ""
"of the file lists."
msgstr ""
-#: ../../printerdrake.pm_.c:2223 ../../printerdrake.pm_.c:2673
-#: ../../printerdrake.pm_.c:2945
+#: ../../printerdrake.pm_.c:2416 ../../printerdrake.pm_.c:2875
+#: ../../printerdrake.pm_.c:3170
msgid "Reading printer data..."
msgstr "Luetaan tulostimen tietoja ..."
-#: ../../printerdrake.pm_.c:2243 ../../printerdrake.pm_.c:2271
-#: ../../printerdrake.pm_.c:2306
+#: ../../printerdrake.pm_.c:2436 ../../printerdrake.pm_.c:2464
+#: ../../printerdrake.pm_.c:2499
msgid "Transfer printer configuration"
msgstr "Siirrä tulostimen asetukset"
-#: ../../printerdrake.pm_.c:2244
+#: ../../printerdrake.pm_.c:2437
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -8190,51 +8514,51 @@ msgid ""
"Not all queues can be transferred due to the following reasons:\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2247
+#: ../../printerdrake.pm_.c:2440
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2249
+#: ../../printerdrake.pm_.c:2442
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2251
+#: ../../printerdrake.pm_.c:2444
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr "LPD ja LPRng eivät tue IPP-tulostimia.\n"
-#: ../../printerdrake.pm_.c:2253
+#: ../../printerdrake.pm_.c:2446
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:2254
+#: ../../printerdrake.pm_.c:2447
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
"or with native CUPS drivers cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:2255
+#: ../../printerdrake.pm_.c:2448
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
"\"Transfer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:2258
+#: ../../printerdrake.pm_.c:2451
msgid "Do not transfer printers"
msgstr "Älä siirrä tulostimia"
-#: ../../printerdrake.pm_.c:2259 ../../printerdrake.pm_.c:2276
+#: ../../printerdrake.pm_.c:2452 ../../printerdrake.pm_.c:2469
msgid "Transfer"
msgstr "Siirrä"
-#: ../../printerdrake.pm_.c:2272
+#: ../../printerdrake.pm_.c:2465
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -8242,11 +8566,11 @@ msgid ""
"You can also type a new name or skip this printer."
msgstr ""
-#: ../../printerdrake.pm_.c:2280
+#: ../../printerdrake.pm_.c:2473
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr "Tulostimen nimi saa sisältää vain kirjaimia, numeroita ja alaviivan"
-#: ../../printerdrake.pm_.c:2285
+#: ../../printerdrake.pm_.c:2478
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
@@ -8255,46 +8579,46 @@ msgstr ""
"Tulostin \"%s\" on jo olemassa,\n"
"haluatko todellakin tuhota olemassa olevat asetukset?"
-#: ../../printerdrake.pm_.c:2293
+#: ../../printerdrake.pm_.c:2486
msgid "New printer name"
msgstr "Uuden tulostimen nimi"
-#: ../../printerdrake.pm_.c:2296
+#: ../../printerdrake.pm_.c:2489
#, c-format
msgid "Transferring %s..."
msgstr "Siirrän %s ..."
-#: ../../printerdrake.pm_.c:2307
+#: ../../printerdrake.pm_.c:2500
#, c-format
msgid ""
"You have transferred your former default printer (\"%s\"), Should it be also "
"the default printer under the new printing system %s?"
msgstr ""
-#: ../../printerdrake.pm_.c:2316
+#: ../../printerdrake.pm_.c:2510
msgid "Refreshing printer data..."
msgstr "Päivitetään tulostintietoja ..."
-#: ../../printerdrake.pm_.c:2324 ../../printerdrake.pm_.c:2395
-#: ../../printerdrake.pm_.c:2407
+#: ../../printerdrake.pm_.c:2518 ../../printerdrake.pm_.c:2590
+#: ../../printerdrake.pm_.c:2602
msgid "Configuration of a remote printer"
msgstr "Ulkoisen tulostimen asetukset"
-#: ../../printerdrake.pm_.c:2325
+#: ../../printerdrake.pm_.c:2519
msgid "Starting network..."
msgstr "Luon verkkoyhteyttä ..."
# Asennuksen sivuvalikko
-#: ../../printerdrake.pm_.c:2359 ../../printerdrake.pm_.c:2363
-#: ../../printerdrake.pm_.c:2365
+#: ../../printerdrake.pm_.c:2554 ../../printerdrake.pm_.c:2558
+#: ../../printerdrake.pm_.c:2560
msgid "Configure the network now"
msgstr "Aseta verkkoyhteys nyt"
-#: ../../printerdrake.pm_.c:2360
+#: ../../printerdrake.pm_.c:2555
msgid "Network functionality not configured"
msgstr "Verkkotoimintoja ei ole asetettu"
-#: ../../printerdrake.pm_.c:2361
+#: ../../printerdrake.pm_.c:2556
msgid ""
"You are going to configure a remote printer. This needs working network "
"access, but your network is not configured yet. If you go on without network "
@@ -8302,11 +8626,11 @@ msgid ""
"configuring now. How do you want to proceed?"
msgstr ""
-#: ../../printerdrake.pm_.c:2364
+#: ../../printerdrake.pm_.c:2559
msgid "Go on without configuring the network"
msgstr "Jatka asettamatta verkkoyhteyttä"
-#: ../../printerdrake.pm_.c:2397
+#: ../../printerdrake.pm_.c:2592
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -8316,31 +8640,31 @@ msgid ""
"\"Printer\""
msgstr ""
-#: ../../printerdrake.pm_.c:2398
+#: ../../printerdrake.pm_.c:2593
msgid ""
"The network access was not running and could not be started. Please check "
"your configuration and your hardware. Then try to configure your remote "
"printer again."
msgstr ""
-#: ../../printerdrake.pm_.c:2408
+#: ../../printerdrake.pm_.c:2603
msgid "Restarting printing system..."
msgstr "Käynnistän tulostusjärjestelmää uudelleen ..."
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2641
msgid "high"
msgstr "korkea"
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2641
msgid "paranoid"
msgstr "paranoidi"
-#: ../../printerdrake.pm_.c:2447
+#: ../../printerdrake.pm_.c:2642
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr "Asennan tulostusjärjestelmän turvatasolla %s"
-#: ../../printerdrake.pm_.c:2448
+#: ../../printerdrake.pm_.c:2643
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -8355,11 +8679,11 @@ msgid ""
"Do you really want to configure printing on this machine?"
msgstr ""
-#: ../../printerdrake.pm_.c:2480
+#: ../../printerdrake.pm_.c:2675
msgid "Starting the printing system at boot time"
msgstr "Käynnistää tulostusjärjestelmän käynnistyksen aikana"
-#: ../../printerdrake.pm_.c:2481
+#: ../../printerdrake.pm_.c:2676
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -8373,103 +8697,100 @@ msgid ""
"again?"
msgstr ""
-#: ../../printerdrake.pm_.c:2504 ../../printerdrake.pm_.c:2544
-#: ../../printerdrake.pm_.c:2581 ../../printerdrake.pm_.c:2621
-#: ../../printerdrake.pm_.c:2733
+#: ../../printerdrake.pm_.c:2700 ../../printerdrake.pm_.c:2741
+#: ../../printerdrake.pm_.c:2780 ../../printerdrake.pm_.c:2822
+#: ../../printerdrake.pm_.c:2943
msgid "Checking installed software..."
msgstr "Tarkistan asennetut ohjelmistot..."
-#: ../../printerdrake.pm_.c:2548
+#: ../../printerdrake.pm_.c:2746
msgid "Removing LPRng..."
msgstr "Poistetaan LPRng..."
-#: ../../printerdrake.pm_.c:2585
+#: ../../printerdrake.pm_.c:2785
msgid "Removing LPD..."
msgstr "Poistetaan LPD..."
-#: ../../printerdrake.pm_.c:2657
+#: ../../printerdrake.pm_.c:2858
msgid "Select Printer Spooler"
msgstr "Valitse tulostusjono"
-#: ../../printerdrake.pm_.c:2658
+#: ../../printerdrake.pm_.c:2859
msgid "Which printing system (spooler) do you want to use?"
msgstr "Mitä tulostusjärjestelmää (jonoa) haluat käyttää?"
-#: ../../printerdrake.pm_.c:2691
+#: ../../printerdrake.pm_.c:2895
#, fuzzy, c-format
msgid "Configuring printer \"%s\"..."
msgstr "Asetetaan tulostinta \"%s\" ..."
-#: ../../printerdrake.pm_.c:2704
+#: ../../printerdrake.pm_.c:2909
msgid "Installing Foomatic..."
msgstr "Asennan Foomaticin ..."
-#: ../../printerdrake.pm_.c:2769 ../../printerdrake.pm_.c:2808
-#: ../../printerdrake.pm_.c:3192 ../../printerdrake.pm_.c:3262
+#: ../../printerdrake.pm_.c:2979 ../../printerdrake.pm_.c:3020
+#: ../../printerdrake.pm_.c:3417 ../../printerdrake.pm_.c:3490
msgid "Printer options"
msgstr "Tulostimen asetukset"
-#: ../../printerdrake.pm_.c:2778
-msgid "Preparing PrinterDrake..."
+#: ../../printerdrake.pm_.c:2989
+#, fuzzy
+msgid "Preparing Printerdrake..."
msgstr "Valmistellaan PrinterDrakea ..."
-#: ../../printerdrake.pm_.c:2795 ../../printerdrake.pm_.c:3349
+#: ../../printerdrake.pm_.c:3007 ../../printerdrake.pm_.c:3580
#, fuzzy
msgid "Configuring applications..."
msgstr "Asetetaan tulostinta \"%s\" ..."
-#: ../../printerdrake.pm_.c:2815
+#: ../../printerdrake.pm_.c:3027
msgid "Would you like to configure printing?"
msgstr "Haluatko asettaa tulostuksen?"
-#: ../../printerdrake.pm_.c:2827
+#: ../../printerdrake.pm_.c:3039
msgid "Printing system: "
msgstr "Tulostusjärjestelmä: "
-#: ../../printerdrake.pm_.c:2875
-msgid "Printerdrake"
-msgstr "Printerdrake"
-
-#: ../../printerdrake.pm_.c:2879
+#: ../../printerdrake.pm_.c:3099
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; to view information about it; "
"or to make a printer on a remote CUPS server available for Star Office/"
-"OpenOffice.org."
+"OpenOffice.org/GIMP."
msgstr ""
-#: ../../printerdrake.pm_.c:2880
+#: ../../printerdrake.pm_.c:3100
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; or to view information about "
"it."
msgstr ""
-#: ../../printerdrake.pm_.c:2906
+#: ../../printerdrake.pm_.c:3127
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr ""
"Päivitä tulostinlistaa (näytä kaikki saatavilla olevat CUPS-etätulostimet)"
# Asennuksen sivuvalikko
-#: ../../printerdrake.pm_.c:2924
+#: ../../printerdrake.pm_.c:3145
#, fuzzy
msgid "Change the printing system"
msgstr "Aseta tulostusjärjestelmä"
-#: ../../printerdrake.pm_.c:2929 ../../standalone/drakconnect_.c:277
+#: ../../printerdrake.pm_.c:3150 ../../standalone/drakconnect_.c:277
msgid "Normal Mode"
msgstr "Perustila"
-#: ../../printerdrake.pm_.c:3085 ../../printerdrake.pm_.c:3135
-#: ../../printerdrake.pm_.c:3343
+#: ../../printerdrake.pm_.c:3310 ../../printerdrake.pm_.c:3360
+#: ../../printerdrake.pm_.c:3573
msgid "Do you want to configure another printer?"
msgstr "Haluatko asettaa toisen tulostimen?"
-#: ../../printerdrake.pm_.c:3170
+#: ../../printerdrake.pm_.c:3395
msgid "Modify printer configuration"
msgstr "Muokkaa tulostimen asetuksia"
-#: ../../printerdrake.pm_.c:3172
+#: ../../printerdrake.pm_.c:3397
#, c-format
msgid ""
"Printer %s\n"
@@ -8478,100 +8799,102 @@ msgstr ""
"Tulostin %s\n"
"Mitä haluat muokata tästä tulostimesta?"
-#: ../../printerdrake.pm_.c:3176
+#: ../../printerdrake.pm_.c:3401
msgid "Do it!"
msgstr "Tee se!"
-#: ../../printerdrake.pm_.c:3181 ../../printerdrake.pm_.c:3236
+#: ../../printerdrake.pm_.c:3406 ../../printerdrake.pm_.c:3461
msgid "Printer connection type"
msgstr "Tulostusyhteyden tyyppi"
-#: ../../printerdrake.pm_.c:3182 ../../printerdrake.pm_.c:3240
+#: ../../printerdrake.pm_.c:3407 ../../printerdrake.pm_.c:3465
msgid "Printer name, description, location"
msgstr "Tulostimen nimi, kuvaus, paikka"
-#: ../../printerdrake.pm_.c:3184 ../../printerdrake.pm_.c:3255
+#: ../../printerdrake.pm_.c:3409 ../../printerdrake.pm_.c:3483
msgid "Printer manufacturer, model, driver"
msgstr "Tulostimen valmistaja, malli, ajuri"
-#: ../../printerdrake.pm_.c:3185 ../../printerdrake.pm_.c:3256
+#: ../../printerdrake.pm_.c:3410 ../../printerdrake.pm_.c:3484
msgid "Printer manufacturer, model"
msgstr "Tulostimen valmistaja, malli"
-#: ../../printerdrake.pm_.c:3194 ../../printerdrake.pm_.c:3266
+#: ../../printerdrake.pm_.c:3419 ../../printerdrake.pm_.c:3494
msgid "Set this printer as the default"
msgstr "Aseta tämä tulostin oletukseksi"
-#: ../../printerdrake.pm_.c:3196 ../../printerdrake.pm_.c:3271
-msgid "Add this printer to Star Office/OpenOffice.org"
+#: ../../printerdrake.pm_.c:3421 ../../printerdrake.pm_.c:3499
+msgid "Add this printer to Star Office/OpenOffice.org/GIMP"
msgstr ""
-#: ../../printerdrake.pm_.c:3197 ../../printerdrake.pm_.c:3280
-msgid "Remove this printer from Star Office/OpenOffice.org"
+#: ../../printerdrake.pm_.c:3422 ../../printerdrake.pm_.c:3508
+msgid "Remove this printer from Star Office/OpenOffice.org/GIMP"
msgstr ""
-#: ../../printerdrake.pm_.c:3198 ../../printerdrake.pm_.c:3289
+#: ../../printerdrake.pm_.c:3423 ../../printerdrake.pm_.c:3517
msgid "Print test pages"
msgstr "Tulosta testisivut"
-#: ../../printerdrake.pm_.c:3199 ../../printerdrake.pm_.c:3291
+#: ../../printerdrake.pm_.c:3424 ../../printerdrake.pm_.c:3519
msgid "Know how to use this printer"
msgstr "Tiedä kuinka käyttää tätä tulostinta"
-#: ../../printerdrake.pm_.c:3201 ../../printerdrake.pm_.c:3293
+#: ../../printerdrake.pm_.c:3426 ../../printerdrake.pm_.c:3521
msgid "Remove printer"
msgstr "Poista tulostin"
-#: ../../printerdrake.pm_.c:3245
+#: ../../printerdrake.pm_.c:3472
#, fuzzy, c-format
msgid "Removing old printer \"%s\"..."
msgstr "Poistetaan vanha tulostin \"%s\" ..."
-#: ../../printerdrake.pm_.c:3269
+#: ../../printerdrake.pm_.c:3497
msgid "Default printer"
msgstr "Oletustulostin"
-#: ../../printerdrake.pm_.c:3270
+#: ../../printerdrake.pm_.c:3498
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr "Tulostin \"%s\" on asetettu oletustulostimeksi."
-#: ../../printerdrake.pm_.c:3274 ../../printerdrake.pm_.c:3277
-msgid "Adding printer to Star Office/OpenOffice.org"
+#: ../../printerdrake.pm_.c:3502 ../../printerdrake.pm_.c:3505
+msgid "Adding printer to Star Office/OpenOffice.org/GIMP"
msgstr ""
-#: ../../printerdrake.pm_.c:3275
+#: ../../printerdrake.pm_.c:3503
#, c-format
msgid ""
-"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
+"The printer \"%s\" was successfully added to Star Office/OpenOffice.org/GIMP."
msgstr ""
-#: ../../printerdrake.pm_.c:3278
+#: ../../printerdrake.pm_.c:3506
#, c-format
-msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
+msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org/GIMP."
msgstr ""
-#: ../../printerdrake.pm_.c:3283 ../../printerdrake.pm_.c:3286
-msgid "Removing printer from Star Office/OpenOffice.org"
+#: ../../printerdrake.pm_.c:3511 ../../printerdrake.pm_.c:3514
+msgid "Removing printer from Star Office/OpenOffice.org/GIMP"
msgstr ""
-#: ../../printerdrake.pm_.c:3284
+#: ../../printerdrake.pm_.c:3512
#, c-format
msgid ""
-"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
+"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org/"
+"GIMP."
msgstr ""
-#: ../../printerdrake.pm_.c:3287
+#: ../../printerdrake.pm_.c:3515
#, c-format
-msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
+msgid ""
+"Failed to remove the printer \"%s\" from Star Office/OpenOffice.org/GIMP."
msgstr ""
-#: ../../printerdrake.pm_.c:3295
+#: ../../printerdrake.pm_.c:3523
#, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr "Haluatko todella poistaa tulostimen \"%s\"?"
-#: ../../printerdrake.pm_.c:3297
+#: ../../printerdrake.pm_.c:3527
#, fuzzy, c-format
msgid "Removing printer \"%s\"..."
msgstr "Poistetaan tulostin \"%s\" ..."
@@ -8981,7 +9304,7 @@ msgstr "Internet"
msgid "File sharing"
msgstr "Tiedostojen jako"
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1669
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1744
msgid "System"
msgstr "Järjestelmä"
@@ -9034,184 +9357,225 @@ msgstr "Käynnistä"
msgid "Stop"
msgstr "Sammuta"
-#: ../../share/advertising/00-thanks.pl_.c:9
-msgid "Thank you for choosing Mandrake Linux 8.2"
+#: ../../share/advertising/01-thanks.pl_.c:9
+msgid "Thank you for choosing Mandrake Linux 9.0"
msgstr ""
-#: ../../share/advertising/00-thanks.pl_.c:10
+#: ../../share/advertising/01-thanks.pl_.c:10
msgid "Welcome to the Open Source world"
msgstr ""
-#: ../../share/advertising/00-thanks.pl_.c:11
+#: ../../share/advertising/01-thanks.pl_.c:11
msgid ""
"The success of MandrakeSoft is based upon the principle of Free Software. "
"Your new operating system is the result of collaborative work on the part of "
"the worldwide Linux Community"
msgstr ""
-#: ../../share/advertising/01-gnu.pl_.c:9
-msgid "Join the Free Software world"
+#: ../../share/advertising/02-community.pl_.c:9
+#, fuzzy
+msgid "Get involved in the Free Software world"
msgstr "Liity vapaan ohjelmiston maailmaan"
-#: ../../share/advertising/01-gnu.pl_.c:10
+#: ../../share/advertising/02-community.pl_.c:10
+msgid "Want to know more about the Open Source community?"
+msgstr ""
+
+#: ../../share/advertising/02-community.pl_.c:11
msgid ""
-"Get to know the Open Source community and become a member. Learn, teach, and "
-"help others by joining the many discussion forums that you will find in our "
-"\"Community\" webpages"
+"To share your own knowledge and help build Linux tools, join the discussions "
+"forum you'll find on our \"Community\" webpages"
msgstr ""
-#: ../../share/advertising/02-internet.pl_.c:9
-msgid "Internet and Messaging"
-msgstr "Internet ja viestintä"
+#: ../../share/advertising/03-internet.pl_.c:9
+#, fuzzy
+msgid "Get the most from the Internet"
+msgstr "Ota yhteys internettiin"
-#: ../../share/advertising/02-internet.pl_.c:10
+#: ../../share/advertising/03-internet.pl_.c:10
msgid ""
-"Mandrake Linux 8.2 provides the best software to access everything the "
-"Internet has to offer: Surf the web & view animations with Mozilla and "
-"Konqueror, exchange email & organize your personal information with "
-"Evolution and Kmail, and much more"
+"Mandrake Linux 9.0 has selected the best software for you. Surf the Web and "
+"view animations with Mozilla and Konqueror, or read your mail and handle "
+"your personal information with Evolution and Kmail"
msgstr ""
-#: ../../share/advertising/03-graphic.pl_.c:9
-#, fuzzy
-msgid "Multimedia and Graphics"
-msgstr "Multimedia - Grafiikka"
+#: ../../share/advertising/04-multimedia.pl_.c:9
+msgid "Discover the most up-to-date graphics and multimedia tools!"
+msgstr ""
+
+#: ../../share/advertising/04-multimedia.pl_.c:10
+msgid "Push multimedia to its limits!"
+msgstr ""
-#: ../../share/advertising/03-graphic.pl_.c:10
+#: ../../share/advertising/04-multimedia.pl_.c:11
msgid ""
-"Mandrake Linux 8.2 lets you push your multimedia computer to its limits! Use "
-"the latest software to play music and audio files, edit and organize your "
-"images and photos, watch TV and videos, and much more"
+"Mandrake Linux 9.0 enables you to use the very latest software to play audio "
+"files, edit and handle your images or photos, and play videos"
msgstr ""
-#: ../../share/advertising/04-develop.pl_.c:9
-msgid "Development"
-msgstr "Kehitysympäristö"
+#: ../../share/advertising/05-games.pl_.c:9
+msgid "Games"
+msgstr "Pelit"
-#: ../../share/advertising/04-develop.pl_.c:10
+#: ../../share/advertising/05-games.pl_.c:10
msgid ""
-"Mandrake Linux 8.2 is the ultimate development platform. Discover the power "
-"of the GNU gcc compiler as well as the best Open Source development "
-"environments"
+"Mandrake Linux 9.0 provides the best Open Source games - arcade, action, "
+"cards, sports, strategy..."
msgstr ""
-#: ../../share/advertising/05-contcenter.pl_.c:9
-#: ../../standalone/drakbug_.c:69
+#: ../../share/advertising/06-mcc.pl_.c:9 ../../standalone/drakbug_.c:69
msgid "Mandrake Control Center"
msgstr "Mandraken hallintapaneeli"
-#: ../../share/advertising/05-contcenter.pl_.c:10
+#: ../../share/advertising/06-mcc.pl_.c:10
msgid ""
-"The Mandrake Linux 8.2 Control Center is a one-stop location for fully "
-"customizing and configuring your Mandrake system"
+"Mandrake Linux 9.0 provides a powerful tool to fully customize and configure "
+"your machine"
msgstr ""
-#: ../../share/advertising/06-user.pl_.c:9
+#: ../../share/advertising/07-desktop.pl_.c:9
msgid "User interfaces"
msgstr "Käyttöliittymät"
-#: ../../share/advertising/06-user.pl_.c:10
+#: ../../share/advertising/07-desktop.pl_.c:10
msgid ""
-"Mandrake Linux 8.2 provides 11 different graphical desktop environments and "
-"window managers to choose from including GNOME 1.4, KDE 2.2.2, Window Maker "
-"0.8, and the rest"
+"Mandrake Linux 9.0 provides 11 user interfaces which can be fully modified: "
+"KDE 3, Gnome 2, WindowMaker..."
msgstr ""
-#: ../../share/advertising/07-server.pl_.c:9
-msgid "Server Software"
-msgstr "Palvelinohjelmisto"
+#: ../../share/advertising/08-development.pl_.c:9
+#, fuzzy
+msgid "Development simplified"
+msgstr "Kehitysympäristö"
+
+#: ../../share/advertising/08-development.pl_.c:10
+msgid "Mandrake Linux 9.0 is the ultimate development platform"
+msgstr ""
-#: ../../share/advertising/07-server.pl_.c:10
+#: ../../share/advertising/08-development.pl_.c:11
msgid ""
-"Transform your machine into a powerful server with just a few clicks of the "
-"mouse: Web server, email, firewall, router, file and print server, ..."
+"Use the full power of the GNU gcc 3 compiler as well as the best Open Source "
+"development environments"
msgstr ""
-#: ../../share/advertising/08-games.pl_.c:9
-msgid "Games"
-msgstr "Pelit"
+#: ../../share/advertising/09-server.pl_.c:9
+msgid "Turn your machine into a reliable server"
+msgstr ""
-#: ../../share/advertising/08-games.pl_.c:10
+#: ../../share/advertising/09-server.pl_.c:10
msgid ""
-"Mandrake Linux 8.2 provides the best Open Source games - arcade, action, "
-"cards, sports, strategy, ..."
+"Transform your machine into a powerful server in a few clicks of your mouse: "
+"Web server, mail, firewall, router, file and print server..."
msgstr ""
-#: ../../share/advertising/09-MDKcampus.pl_.c:9
-msgid "MandrakeCampus"
+#: ../../share/advertising/10-mnf.pl_.c:9
+msgid "Optimize your security"
msgstr ""
-#: ../../share/advertising/09-MDKcampus.pl_.c:10
+#: ../../share/advertising/10-mnf.pl_.c:10
msgid ""
-"Would you like to learn Linux simply, quickly, and for free? MandrakeSoft "
-"provides free Linux training, as well as a way to test your progress, at "
-"MandrakeCampus -- our online training center"
+"The MandrakeSecurity range includes the Multi Network Firewall product (M.N."
+"F.)"
msgstr ""
-#: ../../share/advertising/10-MDKexpert.pl_.c:9
-msgid "MandrakeExpert"
-msgstr "MandrakeExpert"
+#: ../../share/advertising/10-mnf.pl_.c:11
+msgid ""
+"This firewall product includes network features which allow you to fulfill "
+"all your security needs"
+msgstr ""
+
+#: ../../share/advertising/10-mnf.pl_.c:12
+msgid "This product is available on MandrakeStore website"
+msgstr ""
+
+#: ../../share/advertising/11-mdkstore.pl_.c:9
+msgid "The official MandrakeSoft store"
+msgstr ""
-#: ../../share/advertising/10-MDKexpert.pl_.c:10
+#: ../../share/advertising/11-mdkstore.pl_.c:10
msgid ""
-"Quality support from the Linux Community, and from MandrakeSoft, is just "
-"around the corner. And if you're already a Linux veteran, become an \"Expert"
-"\" and share your knowledge at our support website"
+"Our full range of Linux solutions, as well as special offers on products and "
+"'goodies', are available online at our e-store"
msgstr ""
-#: ../../share/advertising/11-consul.pl_.c:9
-msgid "MandrakeConsulting"
-msgstr "MandrakeConsulting"
+#: ../../share/advertising/12-mdkstore.pl_.c:9
+msgid "Strategic partners"
+msgstr ""
-#: ../../share/advertising/11-consul.pl_.c:10
+#: ../../share/advertising/12-mdkstore.pl_.c:10
msgid ""
-"For all of your IT projects, our consultants are ready to analyze your "
-"requirements and offer a customized solution. Benefit from MandrakeSoft's "
-"vast experience as a Linux producer to provide a true IT alternative for "
-"your business organization"
+"MandrakeSoft works alongside a selection of companies offering professional "
+"solutions compatible with Mandrake Linux; a list of these partners is "
+"available on the MandrakeStore"
msgstr ""
-#: ../../share/advertising/12-MDKstore.pl_.c:9
-msgid "MandrakeStore"
+#: ../../share/advertising/13-mdkcampus.pl_.c:9
+msgid "Discover MandrakeSoft's training catalogue Linux-Campus"
msgstr ""
-#: ../../share/advertising/12-MDKstore.pl_.c:10
+#: ../../share/advertising/13-mdkcampus.pl_.c:10
msgid ""
-"A full range of Linux solutions, as well as special offers on products and "
-"'goodies', are available online at our e-store"
+"The training program has been create to respond to the needs of both users "
+"and experts (Network and System administrations)"
+msgstr ""
+
+#: ../../share/advertising/13-mdkcampus.pl_.c:11
+msgid "Certify yourself on Linux"
+msgstr ""
+
+#: ../../share/advertising/13-mdkcampus.pl_.c:12
+msgid ""
+"Whether you choose to teach yourself online or via our network of training "
+"partners, the Linux-Campus catalogue prepares you for the acknowledged LPI "
+"certification program (worldwide professional technical certification)"
msgstr ""
-#: ../../share/advertising/13-Nvert.pl_.c:9
+#: ../../share/advertising/14-mdkexpert.pl_.c:9
+#, fuzzy
+msgid "Become a MandrakeExpert"
+msgstr "MandrakeExpert"
+
+#: ../../share/advertising/14-mdkexpert.pl_.c:10
msgid ""
-"For more information on MandrakeSoft's Professional Services and commercial "
-"offerings, please see the following web page:"
+"Find the solutions to your problems via MandrakeSoft's online support "
+"platform"
msgstr ""
-#: ../../share/advertising/13-Nvert.pl_.c:11
-msgid "http://www.mandrakesoft.com/sales/contact"
+#: ../../share/advertising/14-mdkexpert.pl_.c:11
+msgid ""
+"Join the MandrakeSoft support teams and the Linux Community online to share "
+"your knowledge and help others by becoming a recognized Expert on the online "
+"technical support website:"
msgstr ""
-#: ../../standalone.pm_.c:40
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:9
+#, fuzzy
+msgid "MandrakeExpert Corporate"
+msgstr "MandrakeExpert"
+
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:10
+msgid "An online platform to respond to company's specific support needs"
+msgstr ""
+
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:11
+msgid ""
+"All incidents will be followed up by a single qualified MandrakeSoft "
+"technical expert."
+msgstr ""
+
+#: ../../standalone.pm_.c:41
msgid "Installing packages..."
msgstr "Asennan paketteja..."
-#: ../../standalone/XFdrake_.c:143
+#: ../../standalone/XFdrake_.c:145
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "Kirjaudu ulos ja kirjoita sitten Ctrl-Alt-BackSpace"
-#: ../../standalone/XFdrake_.c:147
+#: ../../standalone/XFdrake_.c:149
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "Kirjaudu uudelleen %s:een aktivoidaksesi muutokset"
-#: ../../standalone/diskdrake_.c:81
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I'll try to go on blanking bad partitions"
-msgstr ""
-"Osiotaulua ei voida lukea, siinä on liikaa virheitä :(\n"
-"Taulu yritetään korjata nollaamalla se"
-
#: ../../standalone/drakTermServ_.c:188
#, fuzzy
msgid "Mandrake Terminal Server Configuration"
@@ -9255,12 +9619,13 @@ msgstr "Lisää käyttäjä"
msgid "Add/Del Clients"
msgstr "DHCP-asiakas"
-#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3282
-#: ../../standalone/drakbackup_.c:3315 ../../standalone/drakbackup_.c:3341
-#: ../../standalone/drakbackup_.c:3368 ../../standalone/drakbackup_.c:3395
-#: ../../standalone/drakbackup_.c:3434 ../../standalone/drakbackup_.c:3455
-#: ../../standalone/drakbackup_.c:3482 ../../standalone/drakbackup_.c:3508
-#: ../../standalone/drakbackup_.c:3533 ../../standalone/drakfont_.c:700
+#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3930
+#: ../../standalone/drakbackup_.c:3963 ../../standalone/drakbackup_.c:3989
+#: ../../standalone/drakbackup_.c:4016 ../../standalone/drakbackup_.c:4043
+#: ../../standalone/drakbackup_.c:4082 ../../standalone/drakbackup_.c:4103
+#: ../../standalone/drakbackup_.c:4130 ../../standalone/drakbackup_.c:4160
+#: ../../standalone/drakbackup_.c:4186 ../../standalone/drakbackup_.c:4211
+#: ../../standalone/drakfont_.c:700
msgid "Help"
msgstr "Apua"
@@ -9423,8 +9788,8 @@ msgstr ""
"\n"
"Automaattisen asennuksen parametrit löytyvät vasemmalla olevista lohkoista"
-#: ../../standalone/drakautoinst_.c:239 ../../standalone/drakgw_.c:548
-#: ../../standalone/scannerdrake_.c:105
+#: ../../standalone/drakautoinst_.c:239 ../../standalone/drakgw_.c:484
+#: ../../standalone/scannerdrake_.c:119
msgid "Congratulations!"
msgstr "Onnittelut!"
@@ -9450,20 +9815,24 @@ msgstr "Lisää alkio"
msgid "Remove the last item"
msgstr "Poista viimeinen alkio"
-#: ../../standalone/drakbackup_.c:625
+#: ../../standalone/drakbackup_.c:619
msgid "Cron not available yet as non-root"
msgstr ""
-#: ../../standalone/drakbackup_.c:731
+#: ../../standalone/drakbackup_.c:725
msgid "WARNING"
msgstr ""
-#: ../../standalone/drakbackup_.c:732
+#: ../../standalone/drakbackup_.c:726
#, fuzzy
msgid "FATAL"
msgstr "FAT"
-#: ../../standalone/drakbackup_.c:744
+#: ../../standalone/drakbackup_.c:727
+msgid "INFO"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:739
msgid ""
"\n"
" DrakBackup Report \n"
@@ -9473,7 +9842,7 @@ msgstr ""
" DrakBackup-raportti \n"
"\n"
-#: ../../standalone/drakbackup_.c:745
+#: ../../standalone/drakbackup_.c:740
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -9485,7 +9854,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:749
+#: ../../standalone/drakbackup_.c:744
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -9497,13 +9866,20 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:770 ../../standalone/drakbackup_.c:840
-#: ../../standalone/drakbackup_.c:894
+#: ../../standalone/drakbackup_.c:765 ../../standalone/drakbackup_.c:835
+#: ../../standalone/drakbackup_.c:889
#, fuzzy
msgid "Total progess"
msgstr "kokonaisedistyminen"
-#: ../../standalone/drakbackup_.c:822
+#: ../../standalone/drakbackup_.c:788
+msgid ""
+"Sorry, perl-Expect is not installed/enabled. To use\n"
+"this feature, install perl-Expect and comment lines 772-774,\n"
+" as well as 788,789. Then uncomment line 787."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:817
#, c-format
msgid ""
"%s exists, delete?\n"
@@ -9512,16 +9888,41 @@ msgid ""
" need to purge the entry from authorized_keys on the server."
msgstr ""
-#: ../../standalone/drakbackup_.c:831
+#: ../../standalone/drakbackup_.c:826
msgid "This may take a moment to generate the keys."
msgstr ""
-#: ../../standalone/drakbackup_.c:838
+#: ../../standalone/drakbackup_.c:833
#, c-format
msgid "ERROR: Cannot spawn %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:865
+#: ../../standalone/drakbackup_.c:850
+#, c-format
+msgid "No password prompt on %s at port %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:851
+#, fuzzy, c-format
+msgid "Bad password on %s"
+msgstr "Ei salasanaa"
+
+#: ../../standalone/drakbackup_.c:852
+#, c-format
+msgid "Permission denied transferring %s to %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:853
+#, fuzzy, c-format
+msgid "Can't find %s on %s"
+msgstr "En voi avata %s: %s\n"
+
+#: ../../standalone/drakbackup_.c:856
+#, c-format
+msgid "%s not responding"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:860
#, c-format
msgid ""
"Transfer successful\n"
@@ -9532,60 +9933,65 @@ msgid ""
"without being prompted for a password."
msgstr ""
-#: ../../standalone/drakbackup_.c:908
+#: ../../standalone/drakbackup_.c:903
msgid "WebDAV remote site already in sync!"
msgstr ""
-#: ../../standalone/drakbackup_.c:912
+#: ../../standalone/drakbackup_.c:907
msgid "WebDAV transfer failed!"
msgstr ""
-#: ../../standalone/drakbackup_.c:934
+#: ../../standalone/drakbackup_.c:928
msgid "No CDR/DVDR in drive!"
msgstr ""
-#: ../../standalone/drakbackup_.c:938
+#: ../../standalone/drakbackup_.c:932
msgid "Does not appear to be recordable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:942
+#: ../../standalone/drakbackup_.c:936
msgid "Not erasable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:981
+#: ../../standalone/drakbackup_.c:975
msgid "This may take a moment to erase the media."
msgstr ""
-#: ../../standalone/drakbackup_.c:1045
+#: ../../standalone/drakbackup_.c:1060
msgid "Permission problem accessing CD."
msgstr ""
-#: ../../standalone/drakbackup_.c:1144 ../../standalone/drakbackup_.c:1193
+#: ../../standalone/drakbackup_.c:1087
+#, c-format
+msgid "No tape in %s!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1199 ../../standalone/drakbackup_.c:1248
msgid "Backup system files..."
msgstr "Varmuuskopioi järjestelmätiedostot..."
-#: ../../standalone/drakbackup_.c:1194 ../../standalone/drakbackup_.c:1261
+#: ../../standalone/drakbackup_.c:1249 ../../standalone/drakbackup_.c:1316
msgid "Hard Disk Backup files..."
msgstr "Kiintolevyn varmuuskopiotiedostot..."
-#: ../../standalone/drakbackup_.c:1206
+#: ../../standalone/drakbackup_.c:1261
msgid "Backup User files..."
msgstr "Varmuuskopioi käyttäjätiedostot..."
-#: ../../standalone/drakbackup_.c:1207
+#: ../../standalone/drakbackup_.c:1262
msgid "Hard Disk Backup Progress..."
msgstr "Kiintolevyn varmuuskopion edistyminen..."
-#: ../../standalone/drakbackup_.c:1260
+#: ../../standalone/drakbackup_.c:1315
msgid "Backup Other files..."
msgstr "Varmuuskopioi muut tiedostot..."
-#: ../../standalone/drakbackup_.c:1266
+#: ../../standalone/drakbackup_.c:1321
#, fuzzy
msgid "No changes to backup!"
msgstr "Käytä nauhaa varmuuskopioinnissa"
-#: ../../standalone/drakbackup_.c:1282 ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1337 ../../standalone/drakbackup_.c:1360
#, c-format
msgid ""
"\n"
@@ -9593,16 +9999,16 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1289
+#: ../../standalone/drakbackup_.c:1344
#, fuzzy, c-format
msgid ""
-"file list sent by FTP : %s\n"
+"file list sent by FTP: %s\n"
" "
msgstr ""
-"tiedostolistan lähetti FTP : %s\n"
+"tiedostolistan lähetti FTP: %s\n"
" "
-#: ../../standalone/drakbackup_.c:1292
+#: ../../standalone/drakbackup_.c:1347
#, fuzzy
msgid ""
"\n"
@@ -9612,39 +10018,39 @@ msgstr ""
"\n"
"(!) FTP-yhteysongelma: varmuuskopion lähettäminen FTPn kautta epäonnistui.\n"
-#: ../../standalone/drakbackup_.c:1310
+#: ../../standalone/drakbackup_.c:1365
msgid ""
"\n"
"Drakbackup activities via CD:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1315
+#: ../../standalone/drakbackup_.c:1370
msgid ""
"\n"
"Drakbackup activities via tape:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1324
+#: ../../standalone/drakbackup_.c:1379
#, fuzzy
msgid " Error during mail sending. \n"
msgstr "(!) Virhe lähetettäessä sähköpostia. \n"
-#: ../../standalone/drakbackup_.c:1346
+#: ../../standalone/drakbackup_.c:1404
msgid "Can't create catalog!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1459 ../../standalone/drakbackup_.c:1470
-#: ../../standalone/drakbackup_.c:1481 ../../standalone/drakfont_.c:1004
+#: ../../standalone/drakbackup_.c:1517 ../../standalone/drakbackup_.c:1528
+#: ../../standalone/drakfont_.c:1004
msgid "File Selection"
msgstr "Tiedostojen valinta"
-#: ../../standalone/drakbackup_.c:1486
+#: ../../standalone/drakbackup_.c:1556
msgid "Select the files or directories and click on 'Add'"
msgstr "Valitse tiedostot tai hakemistot ja klikkaa 'Lisää'"
-#: ../../standalone/drakbackup_.c:1525
+#: ../../standalone/drakbackup_.c:1600
msgid ""
"\n"
"Please check all options that you need.\n"
@@ -9652,27 +10058,27 @@ msgstr ""
"\n"
"Valitse kaikki asetukset, jotka tarvitset.\n"
-#: ../../standalone/drakbackup_.c:1526
+#: ../../standalone/drakbackup_.c:1601
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
"Naillä asetuksilla voit varmuuskopioida ja palauttaa kaikki tiedostot /etc-"
"hakemistosta.\n"
-#: ../../standalone/drakbackup_.c:1527
+#: ../../standalone/drakbackup_.c:1602
#, fuzzy
msgid "Backup your System files. (/etc directory)"
msgstr "Varmuuskopioi systeemitiedostot ( /etc-hakemisto )"
-#: ../../standalone/drakbackup_.c:1528
+#: ../../standalone/drakbackup_.c:1603
msgid "Use incremental backup (do not replace old backups)"
msgstr "Käytä kasvavaa varmuuskopiointia (älä korvaa vanhoja varmuuskopioita)"
-#: ../../standalone/drakbackup_.c:1529
+#: ../../standalone/drakbackup_.c:1604
msgid "Do not include critical files (passwd, group, fstab)"
msgstr "Älä sisällytä kriittisiä tiedostoja (passwd, group, fstab)"
-#: ../../standalone/drakbackup_.c:1530
+#: ../../standalone/drakbackup_.c:1605
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
@@ -9680,61 +10086,65 @@ msgstr ""
"Tällä valitsimella voit palauttaa minkä tahansa version\n"
"/etc-hakemistostasi."
-#: ../../standalone/drakbackup_.c:1547
+#: ../../standalone/drakbackup_.c:1622
msgid "Please check all users that you want to include in your backup."
msgstr "Valitse kaikki ne käyttäjät, jotka haluat sisällyttää varmuuskopioosi."
-#: ../../standalone/drakbackup_.c:1574
+#: ../../standalone/drakbackup_.c:1649
msgid "Do not include the browser cache"
msgstr "Älä sisällytä selaimen välimuistia"
-#: ../../standalone/drakbackup_.c:1575 ../../standalone/drakbackup_.c:1599
+#: ../../standalone/drakbackup_.c:1650 ../../standalone/drakbackup_.c:1674
msgid "Use Incremental Backups (do not replace old backups)"
msgstr "Käytä kasvavia varmuuskopitoita (älä korvaa vanhoja varmuuskopioita)"
-#: ../../standalone/drakbackup_.c:1597 ../../standalone/drakfont_.c:1058
+#: ../../standalone/drakbackup_.c:1672 ../../standalone/drakfont_.c:1058
msgid "Remove Selected"
msgstr "Poista valitut"
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:1710
msgid "Windows (FAT32)"
msgstr "Windows (FAT32)"
-#: ../../standalone/drakbackup_.c:1674
+#: ../../standalone/drakbackup_.c:1749
msgid "Users"
msgstr "Käyttäjät"
-#: ../../standalone/drakbackup_.c:1700
+#: ../../standalone/drakbackup_.c:1775
#, fuzzy
msgid "Use network connection to backup"
msgstr "Käytä FTP-yhteyttä varmuuskopiointiin"
-#: ../../standalone/drakbackup_.c:1706
+#: ../../standalone/drakbackup_.c:1777
+msgid "Net Method:"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1781
msgid "Use Expect for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1707
+#: ../../standalone/drakbackup_.c:1782
msgid ""
"Create/Transfer\n"
"backup keys for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1708
+#: ../../standalone/drakbackup_.c:1783
#, fuzzy
msgid ""
" Transfer \n"
"Now"
msgstr "Siirrä"
-#: ../../standalone/drakbackup_.c:1709
+#: ../../standalone/drakbackup_.c:1784
msgid "Keys in place already"
msgstr ""
-#: ../../standalone/drakbackup_.c:1713
+#: ../../standalone/drakbackup_.c:1788
msgid "Please enter the host name or IP."
msgstr "Syötä verkkoaseman nimi tai IP."
-#: ../../standalone/drakbackup_.c:1718
+#: ../../standalone/drakbackup_.c:1793
#, fuzzy
msgid ""
"Please enter the directory (or module) to\n"
@@ -9743,68 +10153,68 @@ msgstr ""
"Syötä hakemisto, johon tämän\n"
"koneen varmuuskopio laitetaan."
-#: ../../standalone/drakbackup_.c:1723
+#: ../../standalone/drakbackup_.c:1798
msgid "Please enter your login"
msgstr "Syötä käyttäjätunnuksesi"
-#: ../../standalone/drakbackup_.c:1728
+#: ../../standalone/drakbackup_.c:1803
msgid "Please enter your password"
msgstr "Syötä salasanasi"
-#: ../../standalone/drakbackup_.c:1734
+#: ../../standalone/drakbackup_.c:1809
msgid "Remember this password"
msgstr "Muista tämä salasana"
-#: ../../standalone/drakbackup_.c:1745
+#: ../../standalone/drakbackup_.c:1820
msgid "Need hostname, username and password!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1841
+#: ../../standalone/drakbackup_.c:1915
msgid "Use CD/DVDROM to backup"
msgstr "Käytä CD/DVD-ROM -levyä varmuuskopioille"
-#: ../../standalone/drakbackup_.c:1844
+#: ../../standalone/drakbackup_.c:1918
msgid ""
"Please choose your CD/DVD device\n"
"(Press Enter to propogate settings to other fields.\n"
"This field isn't necessary, only a tool to fill in the form.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1849
+#: ../../standalone/drakbackup_.c:1923
#, fuzzy
msgid "Please choose your CD/DVD media size"
msgstr "Valitse käytettävä CD:n koko"
-#: ../../standalone/drakbackup_.c:1855
+#: ../../standalone/drakbackup_.c:1929
#, fuzzy
msgid "Please check for multisession CD"
msgstr "Valitse, jos käytät CD-RW-mediaa"
-#: ../../standalone/drakbackup_.c:1861
+#: ../../standalone/drakbackup_.c:1935
msgid "Please check if you are using CDRW media"
msgstr "Valitse, jos käytät CD-RW-mediaa"
-#: ../../standalone/drakbackup_.c:1867
+#: ../../standalone/drakbackup_.c:1941
#, fuzzy
msgid "Please check if you want to erase your RW media (1st Session)"
msgstr "Valitse, jos haluat tyhjentää CD-RW:n ennen kopiointia"
-#: ../../standalone/drakbackup_.c:1868
+#: ../../standalone/drakbackup_.c:1942
#, fuzzy
msgid " Erase Now "
msgstr "Siirrä"
-#: ../../standalone/drakbackup_.c:1874
+#: ../../standalone/drakbackup_.c:1948
#, fuzzy
msgid "Please check if you are using a DVDR device"
msgstr "Valitse, jos käytät CD-RW-mediaa"
-#: ../../standalone/drakbackup_.c:1880
+#: ../../standalone/drakbackup_.c:1954
#, fuzzy
msgid "Please check if you are using a DVDRAM device"
msgstr "Valitse, jos käytät CD-RW-mediaa"
-#: ../../standalone/drakbackup_.c:1893
+#: ../../standalone/drakbackup_.c:1967
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
@@ -9812,36 +10222,36 @@ msgstr ""
"Syötä kirjoittavan CD-asemasi laitenimi\n"
"esim: 0,1,0"
-#: ../../standalone/drakbackup_.c:1926
+#: ../../standalone/drakbackup_.c:2000
#, fuzzy
msgid "No CD device defined!"
msgstr "Valitse tiedosto"
-#: ../../standalone/drakbackup_.c:1974
+#: ../../standalone/drakbackup_.c:2048
msgid "Use tape to backup"
msgstr "Käytä nauhaa varmuuskopioinnissa"
-#: ../../standalone/drakbackup_.c:1977
+#: ../../standalone/drakbackup_.c:2051
msgid "Please enter the device name to use for backup"
msgstr "Syötä varmuuskopioinnissa käytettävän laitteen nimi"
-#: ../../standalone/drakbackup_.c:1983
+#: ../../standalone/drakbackup_.c:2057
#, fuzzy
msgid "Please check if you want to use the non-rewinding device."
msgstr "Valitse, jos haluat tyhjentää CD-RW:n ennen kopiointia"
-#: ../../standalone/drakbackup_.c:1989
+#: ../../standalone/drakbackup_.c:2063
#, fuzzy
msgid "Please check if you want to erase your tape before the backup."
msgstr "Valitse, jos haluat tyhjentää CD-RW:n ennen kopiointia"
-#: ../../standalone/drakbackup_.c:1995
+#: ../../standalone/drakbackup_.c:2069
#, fuzzy
msgid "Please check if you want to eject your tape after the backup."
msgstr "Valitse, jos haluat tyhjentää CD-RW:n ennen kopiointia"
-#: ../../standalone/drakbackup_.c:2001 ../../standalone/drakbackup_.c:2074
-#: ../../standalone/drakbackup_.c:3025
+#: ../../standalone/drakbackup_.c:2075 ../../standalone/drakbackup_.c:2149
+#: ../../standalone/drakbackup_.c:3116
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
@@ -9849,57 +10259,57 @@ msgstr ""
"Syötä suurin sallittu koko\n"
"Drakbackup-varmuuskopiolle"
-#: ../../standalone/drakbackup_.c:2066
+#: ../../standalone/drakbackup_.c:2140
#, fuzzy
msgid "Please enter the directory to save to:"
msgstr "Syötä hakemisto, johon tallennetaan:"
-#: ../../standalone/drakbackup_.c:2080 ../../standalone/drakbackup_.c:3031
+#: ../../standalone/drakbackup_.c:2155 ../../standalone/drakbackup_.c:3122
msgid "Use quota for backup files."
msgstr "Käytä quotaa varmuuskopiotiedostoille."
-#: ../../standalone/drakbackup_.c:2146
+#: ../../standalone/drakbackup_.c:2221
msgid "Network"
msgstr "Verkko"
-#: ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:2226
msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2156
+#: ../../standalone/drakbackup_.c:2231
msgid "HardDrive / NFS"
msgstr "Kiintolevy / NFS"
-#: ../../standalone/drakbackup_.c:2161
+#: ../../standalone/drakbackup_.c:2236
#, fuzzy
msgid "Tape"
msgstr "Tyyppi"
-#: ../../standalone/drakbackup_.c:2175 ../../standalone/drakbackup_.c:2179
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2250 ../../standalone/drakbackup_.c:2254
+#: ../../standalone/drakbackup_.c:2258
msgid "hourly"
msgstr "tunneittain"
-#: ../../standalone/drakbackup_.c:2176 ../../standalone/drakbackup_.c:2180
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2251 ../../standalone/drakbackup_.c:2255
+#: ../../standalone/drakbackup_.c:2258
msgid "daily"
msgstr "päivittäin"
-#: ../../standalone/drakbackup_.c:2177 ../../standalone/drakbackup_.c:2181
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2252 ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2258
msgid "weekly"
msgstr "viikoittain"
-#: ../../standalone/drakbackup_.c:2178 ../../standalone/drakbackup_.c:2182
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2253 ../../standalone/drakbackup_.c:2257
+#: ../../standalone/drakbackup_.c:2258
msgid "monthly"
msgstr "kuukausittain"
-#: ../../standalone/drakbackup_.c:2196
+#: ../../standalone/drakbackup_.c:2271
msgid "Use daemon"
msgstr "Käytä daemonia"
-#: ../../standalone/drakbackup_.c:2201
+#: ../../standalone/drakbackup_.c:2276
msgid ""
"Please choose the time \n"
"interval between each backup"
@@ -9907,7 +10317,7 @@ msgstr ""
"Valitse peräkkäisten\n"
"varmuuskopioiden aikaväli"
-#: ../../standalone/drakbackup_.c:2207
+#: ../../standalone/drakbackup_.c:2282
msgid ""
"Please choose the\n"
"media for backup."
@@ -9915,7 +10325,7 @@ msgstr ""
"Valitse varmuuskopiointiin\n"
"käytettävä media."
-#: ../../standalone/drakbackup_.c:2214
+#: ../../standalone/drakbackup_.c:2289
#, fuzzy
msgid ""
"Please be sure that the cron daemon is included in your services. \n"
@@ -9923,72 +10333,72 @@ msgid ""
"Note that currently all 'net' medias also use the hard drive."
msgstr "Varmista että cron-daemon on mukana käytössä olevissa palveluissa."
-#: ../../standalone/drakbackup_.c:2251
-msgid "Send mail report after each backup to :"
+#: ../../standalone/drakbackup_.c:2326
+msgid "Send mail report after each backup to:"
msgstr "Lähetä raportti jokaisesta varmuuskopiosta sähköpostitse :"
-#: ../../standalone/drakbackup_.c:2257
+#: ../../standalone/drakbackup_.c:2332
msgid "Delete Hard Drive tar files after backup to other media."
msgstr ""
-#: ../../standalone/drakbackup_.c:2296
+#: ../../standalone/drakbackup_.c:2371
msgid "What"
msgstr "Mitä"
-#: ../../standalone/drakbackup_.c:2301
+#: ../../standalone/drakbackup_.c:2376
msgid "Where"
msgstr "Missä"
-#: ../../standalone/drakbackup_.c:2306
+#: ../../standalone/drakbackup_.c:2381
msgid "When"
msgstr "Koska"
-#: ../../standalone/drakbackup_.c:2311
+#: ../../standalone/drakbackup_.c:2386
msgid "More Options"
msgstr "Lisävalinnat"
-#: ../../standalone/drakbackup_.c:2330 ../../standalone/drakbackup_.c:3873
+#: ../../standalone/drakbackup_.c:2405 ../../standalone/drakbackup_.c:4530
msgid "Drakbackup Configuration"
msgstr "Drakbackup-asetukset"
-#: ../../standalone/drakbackup_.c:2348
+#: ../../standalone/drakbackup_.c:2423
msgid "Please choose where you want to backup"
msgstr "Valitse, mihin haluat tehdä varmuuskopiot"
-#: ../../standalone/drakbackup_.c:2350
+#: ../../standalone/drakbackup_.c:2425
msgid "on Hard Drive"
msgstr "kiintolevylle"
-#: ../../standalone/drakbackup_.c:2360
+#: ../../standalone/drakbackup_.c:2435
msgid "across Network"
msgstr "verkon yli"
-#: ../../standalone/drakbackup_.c:2370
+#: ../../standalone/drakbackup_.c:2445
msgid "on CDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2378
+#: ../../standalone/drakbackup_.c:2453
msgid "on Tape Device"
msgstr ""
-#: ../../standalone/drakbackup_.c:2421
+#: ../../standalone/drakbackup_.c:2496
msgid "Please choose what you want to backup"
msgstr "Valitse mitä haluat varmuuskopioida"
# Asennuksen sivuvalikko
-#: ../../standalone/drakbackup_.c:2422
+#: ../../standalone/drakbackup_.c:2497
msgid "Backup system"
msgstr "Varmuuskopioi järjestelmä"
-#: ../../standalone/drakbackup_.c:2423
+#: ../../standalone/drakbackup_.c:2498
msgid "Backup Users"
msgstr "Varmuuskopioi käyttäjät"
-#: ../../standalone/drakbackup_.c:2426
+#: ../../standalone/drakbackup_.c:2501
msgid "Select user manually"
msgstr "Valitse käyttäjät yksitellen"
-#: ../../standalone/drakbackup_.c:2508
+#: ../../standalone/drakbackup_.c:2584
msgid ""
"\n"
"Backup Sources: \n"
@@ -9996,7 +10406,7 @@ msgstr ""
"\n"
"Varmuuskopion lähteet: \n"
-#: ../../standalone/drakbackup_.c:2509
+#: ../../standalone/drakbackup_.c:2585
msgid ""
"\n"
"- System Files:\n"
@@ -10004,7 +10414,7 @@ msgstr ""
"\n"
"- Järjestelmätiedostot:\n"
-#: ../../standalone/drakbackup_.c:2511
+#: ../../standalone/drakbackup_.c:2587
msgid ""
"\n"
"- User Files:\n"
@@ -10012,7 +10422,7 @@ msgstr ""
"\n"
"- Käyttäjätiedostot:\n"
-#: ../../standalone/drakbackup_.c:2513
+#: ../../standalone/drakbackup_.c:2589
msgid ""
"\n"
"- Other Files:\n"
@@ -10020,64 +10430,64 @@ msgstr ""
"\n"
"- Muut tiedostot:\n"
-#: ../../standalone/drakbackup_.c:2515
+#: ../../standalone/drakbackup_.c:2591
#, c-format
msgid ""
"\n"
-"- Save on Hard drive on path : %s\n"
+"- Save on Hard drive on path: %s\n"
msgstr ""
"\n"
-"- Tallenna kiintolevylle polulle : %s\n"
+"- Tallenna kiintolevylle polulle: %s\n"
-#: ../../standalone/drakbackup_.c:2518
+#: ../../standalone/drakbackup_.c:2594
msgid ""
"\n"
"- Delete hard drive tar files after backup.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2524
+#: ../../standalone/drakbackup_.c:2600
msgid ""
"\n"
"- Burn to CD"
msgstr ""
-#: ../../standalone/drakbackup_.c:2525
+#: ../../standalone/drakbackup_.c:2601
msgid "RW"
msgstr ""
-#: ../../standalone/drakbackup_.c:2526
+#: ../../standalone/drakbackup_.c:2602
#, fuzzy, c-format
-msgid " on device : %s"
+msgid " on device: %s"
msgstr "Hiiren laite: %s\n"
-#: ../../standalone/drakbackup_.c:2527
+#: ../../standalone/drakbackup_.c:2603
msgid " (multi-session)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2528
+#: ../../standalone/drakbackup_.c:2604
#, fuzzy, c-format
msgid ""
"\n"
-"- Save to Tape on device : %s"
+"- Save to Tape on device: %s"
msgstr ""
"\n"
-"- Tallenna FTP:llä verkkoasemalle : %s\n"
+"- Tallenna FTP:llä verkkoasemalle: %s\n"
-#: ../../standalone/drakbackup_.c:2529
+#: ../../standalone/drakbackup_.c:2605
#, c-format
msgid "\t\tErase=%s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2532
+#: ../../standalone/drakbackup_.c:2608
#, fuzzy, c-format
msgid ""
"\n"
-"- Save via %s on host : %s\n"
+"- Save via %s on host: %s\n"
msgstr ""
"\n"
-"- Tallenna FTP:llä verkkoasemalle : %s\n"
+"- Tallenna FTP:llä verkkoasemalle: %s\n"
-#: ../../standalone/drakbackup_.c:2533
+#: ../../standalone/drakbackup_.c:2609
#, c-format
msgid ""
"\t\t user name: %s\n"
@@ -10086,7 +10496,7 @@ msgstr ""
"\t\t käyttäjätunnus: %s\n"
"\t\t polulla: %s \n"
-#: ../../standalone/drakbackup_.c:2534
+#: ../../standalone/drakbackup_.c:2610
msgid ""
"\n"
"- Options:\n"
@@ -10094,62 +10504,62 @@ msgstr ""
"\n"
"- Valitsimet:\n"
-#: ../../standalone/drakbackup_.c:2535
+#: ../../standalone/drakbackup_.c:2611
msgid "\tDo not include System Files\n"
msgstr "\tÄlä sisällytä järjestelmätiedostoja\n"
-#: ../../standalone/drakbackup_.c:2538
+#: ../../standalone/drakbackup_.c:2614
msgid "\tBackups use tar and bzip2\n"
msgstr "\tVarmuuskopiot käyttävät: tar ja bzip2\n"
-#: ../../standalone/drakbackup_.c:2540
+#: ../../standalone/drakbackup_.c:2616
msgid "\tBackups use tar and gzip\n"
msgstr "\tVarmuuskopiot käyttävät: tar ja gzip\n"
-#: ../../standalone/drakbackup_.c:2543
+#: ../../standalone/drakbackup_.c:2619
#, c-format
msgid ""
"\n"
-"- Daemon (%s) include :\n"
+"- Daemon (%s) include:\n"
msgstr ""
"\n"
"- Daemon (%s) sisältää :\n"
-#: ../../standalone/drakbackup_.c:2544
+#: ../../standalone/drakbackup_.c:2620
msgid "\t-Hard drive.\n"
msgstr "\t-Kiintolevy.\n"
-#: ../../standalone/drakbackup_.c:2545
+#: ../../standalone/drakbackup_.c:2621
msgid "\t-CDROM.\n"
msgstr "\t-CD-ROM.\n"
-#: ../../standalone/drakbackup_.c:2546
+#: ../../standalone/drakbackup_.c:2622
msgid "\t-Tape \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2547
+#: ../../standalone/drakbackup_.c:2623
msgid "\t-Network by FTP.\n"
msgstr "\t-Verkkoon käyttäen FTP:tä.\n"
-#: ../../standalone/drakbackup_.c:2548
+#: ../../standalone/drakbackup_.c:2624
msgid "\t-Network by SSH.\n"
msgstr "\t-Verkkoon käyttäen SSH:ta.\n"
-#: ../../standalone/drakbackup_.c:2549
+#: ../../standalone/drakbackup_.c:2625
#, fuzzy
msgid "\t-Network by rsync.\n"
msgstr "\t-Verkkoon käyttäen FTP:tä.\n"
-#: ../../standalone/drakbackup_.c:2550
+#: ../../standalone/drakbackup_.c:2626
#, fuzzy
msgid "\t-Network by webdav.\n"
msgstr "\t-Verkkoon käyttäen FTP:tä.\n"
-#: ../../standalone/drakbackup_.c:2552
+#: ../../standalone/drakbackup_.c:2628
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr "Ei asetettu, valitse Velho tai Edistynyt.\n"
-#: ../../standalone/drakbackup_.c:2558
+#: ../../standalone/drakbackup_.c:2634
msgid ""
"List of data to restore:\n"
"\n"
@@ -10157,7 +10567,7 @@ msgstr ""
"Lista palautettavista tiedoista:\n"
"\n"
-#: ../../standalone/drakbackup_.c:2725
+#: ../../standalone/drakbackup_.c:2801
msgid ""
"List of data corrupted:\n"
"\n"
@@ -10165,159 +10575,277 @@ msgstr ""
"Lista vahingoittuneista tiedoista:\n"
"\n"
-#: ../../standalone/drakbackup_.c:2727
+#: ../../standalone/drakbackup_.c:2803
msgid "Please uncheck or remove it on next time."
msgstr "Poista valinta tai poista se seuraavalla kerralla."
-#: ../../standalone/drakbackup_.c:2737
+#: ../../standalone/drakbackup_.c:2813
msgid "Backup files are corrupted"
msgstr "Varmuuskopiot ovat vahingoittuneet"
-#: ../../standalone/drakbackup_.c:2758
+#: ../../standalone/drakbackup_.c:2834
#, fuzzy
msgid " All of your selected data have been "
msgstr " Kaikki valitsemasi tieto on "
-#: ../../standalone/drakbackup_.c:2759
+#: ../../standalone/drakbackup_.c:2835
#, c-format
msgid " Successfuly Restored on %s "
msgstr " onnistuneesti palautettu paikkaan %s "
-#: ../../standalone/drakbackup_.c:2877
+#: ../../standalone/drakbackup_.c:2953
msgid " Restore Configuration "
msgstr " Palauta asetukset "
-#: ../../standalone/drakbackup_.c:2895
+#: ../../standalone/drakbackup_.c:2971
msgid "OK to restore the other files."
msgstr "Ok palauttaakseen muut tiedostot."
-#: ../../standalone/drakbackup_.c:2912
+#: ../../standalone/drakbackup_.c:2988
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
"Palautettava käyttäjälista (vain uusin päivä kutakin käyttäjää kohti on "
"tärkeä)"
-#: ../../standalone/drakbackup_.c:2975
+#: ../../standalone/drakbackup_.c:3066
msgid "Backup the system files before:"
msgstr "Tee järjestelmätiedostoista varmuuskopio ennen:"
-#: ../../standalone/drakbackup_.c:2977
+#: ../../standalone/drakbackup_.c:3068
msgid "please choose the date to restore"
msgstr "Valitse päivämäärä, johon tiedon palauttaminen tehdään"
-#: ../../standalone/drakbackup_.c:3014
+#: ../../standalone/drakbackup_.c:3105
msgid "Use Hard Disk to backup"
msgstr "Käytä kiintolevyä varmuuskopiointiin"
-#: ../../standalone/drakbackup_.c:3017
+#: ../../standalone/drakbackup_.c:3108
msgid "Please enter the directory to save:"
msgstr "Syötä hakemisto, johon tallennetaan:"
-#: ../../standalone/drakbackup_.c:3060
+#: ../../standalone/drakbackup_.c:3151
msgid "FTP Connection"
msgstr "FTP-yhteys"
-#: ../../standalone/drakbackup_.c:3067
+#: ../../standalone/drakbackup_.c:3158
msgid "Secure Connection"
msgstr "Salattu yhteys"
-#: ../../standalone/drakbackup_.c:3093
+#: ../../standalone/drakbackup_.c:3184
msgid "Restore from Hard Disk."
msgstr "Palauta kiintolevyltä."
-#: ../../standalone/drakbackup_.c:3095
+#: ../../standalone/drakbackup_.c:3186
msgid "Please enter the directory where backups are stored"
msgstr "Anna hakemisto, johon varmuuskopiot on tallennettu"
-#: ../../standalone/drakbackup_.c:3157
+#: ../../standalone/drakbackup_.c:3254
msgid "Select another media to restore from"
msgstr "Valitse toinen media, josta palauttaa"
-#: ../../standalone/drakbackup_.c:3159
+#: ../../standalone/drakbackup_.c:3256
msgid "Other Media"
msgstr "Muu media"
# Asennuksen sivuvalikko
-#: ../../standalone/drakbackup_.c:3164
+#: ../../standalone/drakbackup_.c:3261
msgid "Restore system"
msgstr "Palauta järjestelmä"
-#: ../../standalone/drakbackup_.c:3165
+#: ../../standalone/drakbackup_.c:3262
msgid "Restore Users"
msgstr "Palauta käyttäjät"
-#: ../../standalone/drakbackup_.c:3166
+#: ../../standalone/drakbackup_.c:3263
msgid "Restore Other"
msgstr "Palauta muut"
-#: ../../standalone/drakbackup_.c:3168
+#: ../../standalone/drakbackup_.c:3265
#, fuzzy
msgid "select path to restore (instead of /)"
msgstr "valitse polku, josta palautat (juurihakemiston sijaan)"
-#: ../../standalone/drakbackup_.c:3172
+#: ../../standalone/drakbackup_.c:3269
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
"Tee uusi varmuuskopio ennen palauttamista (vain kasvavilla varmuuskopioilla)"
-#: ../../standalone/drakbackup_.c:3174
+#: ../../standalone/drakbackup_.c:3271
msgid "Remove user directories before restore."
msgstr "Poista käyttäjien hakemistot ennen palauttamista."
-#: ../../standalone/drakbackup_.c:3232
+#: ../../standalone/drakbackup_.c:3384
+msgid ""
+"Restore Selected\n"
+"Catalog Entry"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3394
+#, fuzzy
+msgid ""
+"Restore Selected\n"
+"Files"
+msgstr "Poista valitut"
+
+#: ../../standalone/drakbackup_.c:3411
+#, fuzzy
+msgid ""
+"Change\n"
+"Restore Path"
+msgstr "Palauta muut"
+
+#: ../../standalone/drakbackup_.c:3477
+#, fuzzy, c-format
+msgid "Backup files not found at %s."
+msgstr "Varmuuskopiot ovat vahingoittuneet"
+
+#: ../../standalone/drakbackup_.c:3490
+#, c-format
+msgid ""
+"Insert the CD with volume label %s\n"
+" in the CD drive under mount point /mnt/cdrom"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3490
+#, fuzzy
+msgid "Restore From CD"
+msgstr "Palauta kiintolevyltä."
+
+#: ../../standalone/drakbackup_.c:3492
+#, c-format
+msgid "Not the correct CD label. Disk is labelled %s."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3502
+#, c-format
+msgid ""
+"Insert the tape with volume label %s\n"
+" in the tape drive device %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3502
+#, fuzzy
+msgid "Restore From Tape"
+msgstr "Palauta osiotaulu"
+
+#: ../../standalone/drakbackup_.c:3504
+#, c-format
+msgid "Not the correct tape label. Tape is labelled %s."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3524
+#, fuzzy
+msgid "Restore Via Network"
+msgstr "Palauta käyttäjät"
+
+#: ../../standalone/drakbackup_.c:3524
+#, c-format
+msgid "Restore Via Network Protocol: %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3525
+#, fuzzy
+msgid "Host Name"
+msgstr "Koneen nimi"
+
+#: ../../standalone/drakbackup_.c:3526
+msgid "Host Path or Module"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3533
+#, fuzzy
+msgid "Password required"
+msgstr "Salasana"
+
+#: ../../standalone/drakbackup_.c:3539
+#, fuzzy
+msgid "Username required"
+msgstr "Käyttäjätunnus"
+
+#: ../../standalone/drakbackup_.c:3542
+#, fuzzy
+msgid "Hostname required"
+msgstr "Koneen nimi:"
+
+#: ../../standalone/drakbackup_.c:3547
+msgid "Path or Module required"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3560
+msgid "Files Restored..."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3563
+#, fuzzy
+msgid "Restore Failed..."
+msgstr "Palauta muut"
+
+#: ../../standalone/drakbackup_.c:3801
msgid "Restore all backups"
msgstr "Palauta kaikki varmuuskopiot"
-#: ../../standalone/drakbackup_.c:3241
+#: ../../standalone/drakbackup_.c:3810
msgid "Custom Restore"
msgstr "Mukautettu palautus"
-#: ../../standalone/drakbackup_.c:3287 ../../standalone/drakbackup_.c:3320
-#: ../../standalone/drakbackup_.c:3346 ../../standalone/drakbackup_.c:3373
-#: ../../standalone/drakbackup_.c:3400 ../../standalone/drakbackup_.c:3460
-#: ../../standalone/drakbackup_.c:3487 ../../standalone/drakbackup_.c:3513
+#: ../../standalone/drakbackup_.c:3856
+msgid "CD in place - continue."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3862
+msgid "Browse to new restore repository."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3865
+#, fuzzy
+msgid "Restore From Catalog"
+msgstr "Palauta osiotaulu"
+
+#: ../../standalone/drakbackup_.c:3893
+#, fuzzy
+msgid "Restore Progress"
+msgstr "Palauta käyttäjät"
+
+#: ../../standalone/drakbackup_.c:3935 ../../standalone/drakbackup_.c:3968
+#: ../../standalone/drakbackup_.c:3994 ../../standalone/drakbackup_.c:4021
+#: ../../standalone/drakbackup_.c:4048 ../../standalone/drakbackup_.c:4108
+#: ../../standalone/drakbackup_.c:4135 ../../standalone/drakbackup_.c:4165
+#: ../../standalone/drakbackup_.c:4191
msgid "Previous"
msgstr "Edellinen"
-#: ../../standalone/drakbackup_.c:3291 ../../standalone/drakbackup_.c:3377
+#: ../../standalone/drakbackup_.c:3939 ../../standalone/drakbackup_.c:4025
#: ../../standalone/logdrake_.c:223
msgid "Save"
msgstr "Tallenna"
-#: ../../standalone/drakbackup_.c:3350
+#: ../../standalone/drakbackup_.c:3998
msgid "Build Backup"
msgstr "Tee varmuuskopio"
-#: ../../standalone/drakbackup_.c:3404 ../../standalone/drakbackup_.c:3974
+#: ../../standalone/drakbackup_.c:4052 ../../standalone/drakbackup_.c:4632
msgid "Restore"
msgstr "Palauta"
-#: ../../standalone/drakbackup_.c:3553
-msgid ""
-"Please Build backup before to restore it...\n"
-" or verify that your path to save is correct."
-msgstr ""
-"Tee varmuuskopio ennen kuin yrität palauttaa sen...\n"
-"tai tarkista että tallennuspolku on oikea."
-
-#: ../../standalone/drakbackup_.c:3574
+#: ../../standalone/drakbackup_.c:4231
+#, fuzzy
msgid ""
-"Error during sendmail\n"
-" your report mail was not sent\n"
+"Error during sendmail.\n"
+" Your report mail was not sent.\n"
" Please configure sendmail"
msgstr ""
"Virhe sendmailin aikana\n"
" raporttipostiasi ei lähetetty\n"
" Konfiguroi sendmail"
-#: ../../standalone/drakbackup_.c:3598
+#: ../../standalone/drakbackup_.c:4255
#, fuzzy
msgid ""
"The following packages need to be installed:\n"
" @list_of_rpm_to_install"
msgstr "Seuraavat paketit asennetaan"
-#: ../../standalone/drakbackup_.c:3621
+#: ../../standalone/drakbackup_.c:4278
#, fuzzy
msgid ""
"Error during sending file via FTP.\n"
@@ -10326,19 +10854,19 @@ msgstr ""
"Virhe FTP-siirron aikana.\n"
" Korjaa FTP-asetuksesi."
-#: ../../standalone/drakbackup_.c:3644
+#: ../../standalone/drakbackup_.c:4301
msgid "Please select data to restore..."
msgstr "Valitse palautettava tieto..."
-#: ../../standalone/drakbackup_.c:3665
+#: ../../standalone/drakbackup_.c:4322
msgid "Please select media for backup..."
msgstr "Valitse varmuuskopioinnissa käytettävä media..."
-#: ../../standalone/drakbackup_.c:3687
+#: ../../standalone/drakbackup_.c:4344
msgid "Please select data to backup..."
msgstr "Valitse varmuuskopioitava tieto..."
-#: ../../standalone/drakbackup_.c:3709
+#: ../../standalone/drakbackup_.c:4366
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
@@ -10346,60 +10874,60 @@ msgstr ""
"Asetustiedostoa ei löytynyt\n"
"valitse joko Velho tai Kehittynyt."
-#: ../../standalone/drakbackup_.c:3730
+#: ../../standalone/drakbackup_.c:4387
msgid "Under Devel ... please wait."
msgstr "Kehityksen alla ... odota."
-#: ../../standalone/drakbackup_.c:3811
+#: ../../standalone/drakbackup_.c:4468
msgid "Backup system files"
msgstr "Varmuuskopioi järjestelmätiedostot"
-#: ../../standalone/drakbackup_.c:3813
+#: ../../standalone/drakbackup_.c:4470
msgid "Backup user files"
msgstr "Varmuuskopioi käyttäjätiedostot"
-#: ../../standalone/drakbackup_.c:3815
+#: ../../standalone/drakbackup_.c:4472
msgid "Backup other files"
msgstr "Varmuuskopioi muut tiedostot"
-#: ../../standalone/drakbackup_.c:3817 ../../standalone/drakbackup_.c:3850
+#: ../../standalone/drakbackup_.c:4474 ../../standalone/drakbackup_.c:4507
msgid "Total Progress"
msgstr "Kokonaisedistyminen"
-#: ../../standalone/drakbackup_.c:3841
+#: ../../standalone/drakbackup_.c:4498
msgid "files sending by FTP"
msgstr "tiedostoja lähetetään FTP:n yli"
-#: ../../standalone/drakbackup_.c:3845
+#: ../../standalone/drakbackup_.c:4502
msgid "Sending files..."
msgstr "Lähetän tiedostoja..."
-#: ../../standalone/drakbackup_.c:3931
+#: ../../standalone/drakbackup_.c:4588
msgid "Backup Now from configuration file"
msgstr "Tee heti asetustiedoston varmuuskopio"
-#: ../../standalone/drakbackup_.c:3936
+#: ../../standalone/drakbackup_.c:4593
msgid "View Backup Configuration."
msgstr "Näytä varmuuskopioinnin asetukset."
-#: ../../standalone/drakbackup_.c:3956
+#: ../../standalone/drakbackup_.c:4614
msgid "Wizard Configuration"
msgstr ""
-#: ../../standalone/drakbackup_.c:3961
+#: ../../standalone/drakbackup_.c:4619
msgid "Advanced Configuration"
msgstr ""
# Asennuksen sivuvalikko
-#: ../../standalone/drakbackup_.c:3966
+#: ../../standalone/drakbackup_.c:4624
msgid "Backup Now"
msgstr "Varmuuskopioi heti"
-#: ../../standalone/drakbackup_.c:3996
+#: ../../standalone/drakbackup_.c:4658
msgid "Drakbackup"
msgstr "Drakbackup"
-#: ../../standalone/drakbackup_.c:4045
+#: ../../standalone/drakbackup_.c:4707
msgid ""
"options description:\n"
"\n"
@@ -10431,7 +10959,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4075
+#: ../../standalone/drakbackup_.c:4737
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -10440,7 +10968,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4083
+#: ../../standalone/drakbackup_.c:4745
msgid ""
"options description:\n"
"\n"
@@ -10481,47 +11009,47 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4122
+#: ../../standalone/drakbackup_.c:4784
msgid ""
"restore description:\n"
" \n"
-"Only the most recent date will be used ,because with incremental \n"
-"backups it is necesarry to restore one by one each older backups.\n"
+"Only the most recent date will be used, because with incremental \n"
+"backups it is necessary to restore one by one each older backup.\n"
"\n"
-"So if you don't like to restore a user please unselect all his\n"
-"check box.\n"
+"So if you don't want to restore a user please unselect all their\n"
+"check boxes.\n"
"\n"
-"Otherwise, you are able to select only one of this\n"
+"Otherwise, you are able to select only one of these.\n"
"\n"
" - Incremental Backups:\n"
"\n"
"\tThe incremental backup is the most powerful \n"
-"\toption to use backup, this option allow you \n"
-"\tto backup all your data the first time, and \n"
-"\tonly the changed after.\n"
-"\tSo you will be able during the restore\n"
+"\toption to use. This option allows you to \n"
+"\tbackup all of your data the first time, and \n"
+"\tonly the changed data after.\n"
+"\tSo you will be able, during the restore\n"
"\tstep, to restore your data from a specified\n"
"\tdate.\n"
-"\tIf you have not selected this options all\n"
+"\tIf you have not selected this option all\n"
"\told backups are deleted before each backup. \n"
"\n"
"\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4148 ../../standalone/drakbackup_.c:4225
+#: ../../standalone/drakbackup_.c:4810 ../../standalone/drakbackup_.c:4887
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
" Copyright (C) 2001 MandrakeSoft. Tekijä: DUPONT Sebastien <dupont_s\\@epita."
"fr>"
-#: ../../standalone/drakbackup_.c:4150 ../../standalone/drakbackup_.c:4227
+#: ../../standalone/drakbackup_.c:4812 ../../standalone/drakbackup_.c:4889
msgid ""
" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
-#: ../../standalone/drakbackup_.c:4152 ../../standalone/drakbackup_.c:4229
+#: ../../standalone/drakbackup_.c:4814 ../../standalone/drakbackup_.c:4891
msgid ""
" This program is free software; you can redistribute it and/or modify\n"
" it under the terms of the GNU General Public License as published by\n"
@@ -10538,7 +11066,7 @@ msgid ""
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
msgstr ""
-#: ../../standalone/drakbackup_.c:4166
+#: ../../standalone/drakbackup_.c:4828
msgid ""
"Description:\n"
"\n"
@@ -10578,7 +11106,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4204
+#: ../../standalone/drakbackup_.c:4866
msgid ""
"options description:\n"
"\n"
@@ -10589,7 +11117,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4213
+#: ../../standalone/drakbackup_.c:4875
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -10602,7 +11130,7 @@ msgid ""
"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4243
+#: ../../standalone/drakbackup_.c:4905
msgid ""
"Description:\n"
"\n"
@@ -10683,9 +11211,9 @@ msgstr ""
msgid "Synchronization tool"
msgstr ""
-#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:85
-#: ../../standalone/drakbug_.c:150 ../../standalone/drakbug_.c:152
-#: ../../standalone/drakbug_.c:156
+#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:86
+#: ../../standalone/drakbug_.c:151 ../../standalone/drakbug_.c:153
+#: ../../standalone/drakbug_.c:157
#, fuzzy
msgid "Standalone Tools"
msgstr "Komentorivityökalut"
@@ -10738,26 +11266,26 @@ msgstr "Printerdrake"
msgid "Configuration Wizards"
msgstr "Verkkoasetusten velho"
-#: ../../standalone/drakbug_.c:96
+#: ../../standalone/drakbug_.c:97
#, fuzzy
msgid "Application:"
msgstr "Tunnistustapa"
-#: ../../standalone/drakbug_.c:97
+#: ../../standalone/drakbug_.c:98
#, fuzzy
msgid "Package: "
msgstr "Pakettien valinta"
-#: ../../standalone/drakbug_.c:98
+#: ../../standalone/drakbug_.c:99
msgid "Kernel:"
msgstr ""
-#: ../../standalone/drakbug_.c:99
+#: ../../standalone/drakbug_.c:100
#, fuzzy
msgid "Release: "
msgstr "Odota hetki"
-#: ../../standalone/drakbug_.c:114
+#: ../../standalone/drakbug_.c:115
msgid ""
"\n"
"\n"
@@ -10769,22 +11297,22 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbug_.c:135
+#: ../../standalone/drakbug_.c:136
#, fuzzy
msgid "Report"
msgstr "portti"
# Asennuksen sivuvalikko
-#: ../../standalone/drakbug_.c:165
+#: ../../standalone/drakbug_.c:166
#, fuzzy
msgid "Not installed"
msgstr "Poistamisen jälkeiset toiminnot"
-#: ../../standalone/drakbug_.c:182
+#: ../../standalone/drakbug_.c:183
msgid "connecting to Bugzilla wizard ..."
msgstr ""
-#: ../../standalone/drakbug_.c:189
+#: ../../standalone/drakbug_.c:190
#, fuzzy
msgid "No browser available! Please install one"
msgstr "Kuvankaappaukset löytyvät asennuksen jälkeen hakemistosta %s"
@@ -11233,7 +11761,7 @@ msgid "Font List"
msgstr "Kirjasinlista"
#: ../../standalone/drakfont_.c:909
-msgid "Choose the applications that will support the fonts :"
+msgid "Choose the applications that will support the fonts:"
msgstr "Valitse sovellukset, jotka tukevat kirjasimia :"
#: ../../standalone/drakfont_.c:918
@@ -11306,19 +11834,19 @@ msgstr "Poista järjestelmässäsi olevia kirjasimia"
msgid "Post Uninstall"
msgstr "Poistamisen jälkeiset toiminnot"
-#: ../../standalone/drakgw_.c:42 ../../standalone/drakgw_.c:195
+#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:188
msgid "Internet Connection Sharing"
msgstr "Internetyhteyden jakaminen"
-#: ../../standalone/drakgw_.c:121
+#: ../../standalone/drakgw_.c:119
msgid "Sorry, we support only 2.4 kernels."
msgstr ""
-#: ../../standalone/drakgw_.c:133
+#: ../../standalone/drakgw_.c:130
msgid "Internet Connection Sharing currently enabled"
msgstr "Internetyhteyden jakaminen on käytössä"
-#: ../../standalone/drakgw_.c:134
+#: ../../standalone/drakgw_.c:131
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -11330,31 +11858,31 @@ msgstr ""
"\n"
"Mitä haluat tehdä?"
-#: ../../standalone/drakgw_.c:138
+#: ../../standalone/drakgw_.c:135
msgid "disable"
msgstr "poista käytöstä"
-#: ../../standalone/drakgw_.c:138 ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:135 ../../standalone/drakgw_.c:160
msgid "dismiss"
msgstr "lopeta"
-#: ../../standalone/drakgw_.c:138 ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:135 ../../standalone/drakgw_.c:160
msgid "reconfigure"
msgstr "aseta uudelleen"
-#: ../../standalone/drakgw_.c:141
+#: ../../standalone/drakgw_.c:138
msgid "Disabling servers..."
msgstr "Poistan palvelut käytöstä..."
-#: ../../standalone/drakgw_.c:149
+#: ../../standalone/drakgw_.c:146
msgid "Internet connection sharing is now disabled."
msgstr "Internetyhteyden jakaminen ei ole enää käytössä."
-#: ../../standalone/drakgw_.c:158
+#: ../../standalone/drakgw_.c:155
msgid "Internet Connection Sharing currently disabled"
msgstr "Internetyhteyden jakaminen ei ole käytössä"
-#: ../../standalone/drakgw_.c:159
+#: ../../standalone/drakgw_.c:156
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
@@ -11366,19 +11894,19 @@ msgstr ""
"\n"
"Mitä haluat tehdä?"
-#: ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:160
msgid "enable"
msgstr "ota käyttöön"
-#: ../../standalone/drakgw_.c:170
+#: ../../standalone/drakgw_.c:167
msgid "Enabling servers..."
msgstr "Otan palvelut käyttöön.."
-#: ../../standalone/drakgw_.c:175
+#: ../../standalone/drakgw_.c:172
msgid "Internet connection sharing is now enabled."
msgstr "Internetyhteyden jakaminen on nyt käytössä."
-#: ../../standalone/drakgw_.c:196
+#: ../../standalone/drakgw_.c:189
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
"With that feature, other computers on your local network will be able to use "
@@ -11394,32 +11922,32 @@ msgstr ""
"\n"
"Huomaa: tarvitset erityisen verkkokortin pystyttääksesi oman paikallisverkon."
-#: ../../standalone/drakgw_.c:222
+#: ../../standalone/drakgw_.c:215
#, c-format
msgid "Interface %s (using module %s)"
msgstr "Liittymä %s (käyttäen moduulia %s)"
-#: ../../standalone/drakgw_.c:223
+#: ../../standalone/drakgw_.c:216
#, c-format
msgid "Interface %s"
msgstr "Liittymä %s"
-#: ../../standalone/drakgw_.c:231
+#: ../../standalone/drakgw_.c:224
msgid "No network adapter on your system!"
msgstr "Koneessasi ei ole verkkokorttia!"
-#: ../../standalone/drakgw_.c:232
+#: ../../standalone/drakgw_.c:225
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
msgstr ""
"Koneestasi ei löytynyt yhtään verkkokorttia. Aja laitteistonhakutyökalu."
-#: ../../standalone/drakgw_.c:238
+#: ../../standalone/drakgw_.c:231
msgid "Network interface"
msgstr "Verkkoliittymä"
-#: ../../standalone/drakgw_.c:239
+#: ../../standalone/drakgw_.c:232
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -11434,17 +11962,17 @@ msgstr ""
"\n"
"Valmistaudun asettamaan lähiverkkosi asetukset kyseiselle laitteelle."
-#: ../../standalone/drakgw_.c:248
+#: ../../standalone/drakgw_.c:241
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
msgstr "Valitse verkkokortti, joka on kytketty paikallisverkkoon."
-#: ../../standalone/drakgw_.c:266
+#: ../../standalone/drakgw_.c:259
msgid "Network interface already configured"
msgstr "Verkkoliitäntä on jo asetettu"
-#: ../../standalone/drakgw_.c:267
+#: ../../standalone/drakgw_.c:260
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -11460,15 +11988,15 @@ msgstr ""
"Voit asettaa sen myös manuaalisesti, mutta silloin sinun pitää tietää, mitä "
"olet tekemässä."
-#: ../../standalone/drakgw_.c:272
+#: ../../standalone/drakgw_.c:265
msgid "Automatic reconfiguration"
msgstr "Automaattinen uudelleenasetus"
-#: ../../standalone/drakgw_.c:273
+#: ../../standalone/drakgw_.c:266
msgid "Show current interface configuration"
msgstr "Näytä nykyiset liitäntäasetukset"
-#: ../../standalone/drakgw_.c:275
+#: ../../standalone/drakgw_.c:268
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -11485,7 +12013,7 @@ msgstr ""
"IP-määreet: %s\n"
"Ajuri: %s"
-#: ../../standalone/drakgw_.c:287
+#: ../../standalone/drakgw_.c:280
msgid ""
"I can keep your current configuration and assume you already set up a DHCP "
"server; in that case please verify I correctly read the C-Class Network that "
@@ -11505,55 +12033,43 @@ msgstr ""
"palvelimen puolestasi.\n"
"\n"
-#: ../../standalone/drakgw_.c:292
+#: ../../standalone/drakgw_.c:285
msgid "C-Class Local Network"
msgstr "C-luokan paikallisverkko"
-#: ../../standalone/drakgw_.c:293
+#: ../../standalone/drakgw_.c:286
msgid "(This) DHCP Server IP"
msgstr "(Tämän) DHCP-palvelimen IP"
-#: ../../standalone/drakgw_.c:294
+#: ../../standalone/drakgw_.c:287
msgid "Re-configure interface and DHCP server"
msgstr "Aseta liityntärajapinta ja DHCP-palvelin uudelleen"
-#: ../../standalone/drakgw_.c:301
+#: ../../standalone/drakgw_.c:294
msgid "The Local Network did not finish with `.0', bailing out."
msgstr "Paikallisverkko ei loppunut '.0':aan, töydennetään."
-#: ../../standalone/drakgw_.c:312
+#: ../../standalone/drakgw_.c:305
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr ""
"Mahdollinen lähiverkon osoitetörmäys löydetty nykyisillä asetuksilla %s!\n"
-#: ../../standalone/drakgw_.c:320
-msgid "Firewalling configuration detected!"
-msgstr "Palomuuri löydetty!"
-
-#: ../../standalone/drakgw_.c:321
-msgid ""
-"Warning! An existing firewalling configuration has been detected. You may "
-"need some manual fix after installation."
-msgstr ""
-"Varoitus! Olemassaoleva palomuuri löydetty. Tarvitset mahdollisesti käsin "
-"tehtäviäkorjauksia asennuksen jälkeen."
-
-#: ../../standalone/drakgw_.c:328
+#: ../../standalone/drakgw_.c:315
msgid "Configuring..."
msgstr "Määrittelen..."
-#: ../../standalone/drakgw_.c:329
+#: ../../standalone/drakgw_.c:316
msgid "Configuring scripts, installing software, starting servers..."
msgstr ""
"Määrittelen komentotiedostot, asennan ohjelmistot, käynnistän palvelimet..."
-#: ../../standalone/drakgw_.c:365
+#: ../../standalone/drakgw_.c:352
#, c-format
msgid "Problems installing package %s"
msgstr "Asennan pakettia %s"
-#: ../../standalone/drakgw_.c:549
+#: ../../standalone/drakgw_.c:485
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
@@ -11563,24 +12079,24 @@ msgstr ""
"Voit nyt jakaa internetyhteyden muiden lähiverkon koneiden kanssakäyttämällä "
"automaattista lähiverkon määrittelyä (DHCP)."
-#: ../../standalone/drakgw_.c:566
+#: ../../standalone/drakgw_.c:504
msgid "The setup has already been done, but it's currently disabled."
msgstr ""
"Asetukset on jo tehty, mutta ne ovat tällä hetkellä poistettu käytöstä."
-#: ../../standalone/drakgw_.c:567
+#: ../../standalone/drakgw_.c:505
msgid "The setup has already been done, and it's currently enabled."
msgstr "Asetukset on jo tehty ja ne ovat käytössä."
-#: ../../standalone/drakgw_.c:568
+#: ../../standalone/drakgw_.c:506
msgid "No Internet Connection Sharing has ever been configured."
msgstr "Internetyhteyden jakamista ei ole koskaan asetettu."
-#: ../../standalone/drakgw_.c:573
+#: ../../standalone/drakgw_.c:511
msgid "Internet connection sharing configuration"
msgstr "Internetyhteyden jakamisen asetukset"
-#: ../../standalone/drakgw_.c:580
+#: ../../standalone/drakgw_.c:518
#, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -11595,6 +12111,159 @@ msgstr ""
"\n"
"Paina Aseta käynnistääksesi asennusohjelman."
+#: ../../standalone/draksound_.c:46
+#, fuzzy
+msgid "No Sound Card detected!"
+msgstr "Ei yhteyttä"
+
+#: ../../standalone/draksound_.c:47
+msgid ""
+"No Sound Card has been detected on your machine. Please verify that a Linux-"
+"supported Sound Card is correctly plugged in.\n"
+"\n"
+"\n"
+"You can visit our hardware database at:\n"
+"\n"
+"\n"
+"http://www.linux-mandrake.com/en/hardware.php3"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:32
+msgid "package ImageMagick is required for correct working"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:76
+#, fuzzy
+msgid "first step creation"
+msgstr "käynnistyslevykkeen luonti"
+
+#: ../../standalone/draksplash_.c:77
+#, fuzzy
+msgid "final resolution"
+msgstr "Resoluutio"
+
+#: ../../standalone/draksplash_.c:78 ../../standalone/draksplash_.c:170
+#, fuzzy
+msgid "choose image file"
+msgstr "Valitse tiedosto"
+
+#: ../../standalone/draksplash_.c:79
+#, fuzzy
+msgid "Theme name"
+msgstr "Jakonimi"
+
+#: ../../standalone/draksplash_.c:81
+msgid "make bootsplash step 2"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:82
+#, fuzzy
+msgid "go to lilosplash configuration"
+msgstr "Asennuksen jälkeiset toiminnot"
+
+#: ../../standalone/draksplash_.c:83
+#, fuzzy
+msgid "quit"
+msgstr "Lopeta"
+
+# Asennuksen sivuvalikko
+#: ../../standalone/draksplash_.c:84
+#, fuzzy
+msgid "save theme"
+msgstr "Asenna järjestelmä"
+
+#: ../../standalone/draksplash_.c:85
+msgid "browse"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:98 ../../standalone/draksplash_.c:159
+#, fuzzy
+msgid "Configure bootsplash picture"
+msgstr "Palvelujen asettaminen"
+
+#: ../../standalone/draksplash_.c:99
+msgid "x coordinate of text box in number of character"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:100
+msgid "y coordinate of text box in number of character"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:101
+msgid "text width"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:102
+msgid "text box height"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:103
+msgid "the progress bar x coordinate of its upper left corner"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:104
+msgid "the progress bar y coordinate of its upper left corner"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:105
+msgid "the width of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:106
+msgid "the heigth of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:107
+msgid "the color of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:119
+#, fuzzy
+msgid "go back"
+msgstr "Loopback"
+
+#: ../../standalone/draksplash_.c:120
+#, fuzzy
+msgid "preview"
+msgstr "laite"
+
+#: ../../standalone/draksplash_.c:121
+#, fuzzy
+msgid "choose color"
+msgstr "Valitse monitori"
+
+#: ../../standalone/draksplash_.c:124
+msgid "Display logo on Console"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:125
+msgid "Make kernel message quiet by default"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:161 ../../standalone/draksplash_.c:330
+#, c-format
+msgid "This theme haven't yet any bootsplash in %s !"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:213
+msgid "saving Bootsplash theme..."
+msgstr ""
+
+#: ../../standalone/draksplash_.c:436
+#, fuzzy
+msgid "ProgressBar color selection"
+msgstr "Tulostimen mallin valinta"
+
+#: ../../standalone/draksplash_.c:454
+#, fuzzy
+msgid "You must choose an image file first!"
+msgstr "Sinun täytyy valita tai syöttää tulostinlaite!"
+
+#: ../../standalone/draksplash_.c:463
+#, fuzzy
+msgid "Generating preview ..."
+msgstr "Etsin laitteita ..."
+
#: ../../standalone/drakxtv_.c:49
msgid ""
"XawTV isn't installed!\n"
@@ -11687,11 +12356,11 @@ msgstr ""
"kirjoita käyttämäsi tv-normi sekä asuinmaa"
#: ../../standalone/drakxtv_.c:109
-msgid "TV norm :"
+msgid "TV norm:"
msgstr "TV-normi :"
#: ../../standalone/drakxtv_.c:110
-msgid "Area :"
+msgid "Area:"
msgstr "Alue :"
#: ../../standalone/drakxtv_.c:114
@@ -11767,7 +12436,7 @@ msgstr "Järjestelmän päivitystä ei voida aloittaa!\n"
msgid "The change is done, but to be effective you must logout"
msgstr ""
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:517
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:515
msgid "logdrake"
msgstr "logdrake"
@@ -11883,7 +12552,7 @@ msgstr "Posti- ja SMS-hälytys"
#: ../../standalone/logdrake_.c:267
#, c-format
msgid "please wait, parsing file: %s"
-msgstr "odota hetki, jäsennän tiedostoa : %s"
+msgstr "odota hetki, jäsennän tiedostoa: %s"
#: ../../standalone/logdrake_.c:408
#, fuzzy
@@ -11945,8 +12614,9 @@ msgid "service setting"
msgstr "Palveluiden asettaminen"
#: ../../standalone/logdrake_.c:431
+#, fuzzy
msgid ""
-"You will receive an alert if one of the selected service is no more running"
+"You will receive an alert if one of the selected services is no more running"
msgstr "Saat hälytyksen kun jokin valituista palveluista ei ole enää käynnissä"
#: ../../standalone/logdrake_.c:443
@@ -11966,19 +12636,19 @@ msgstr "hälytyksen asetukset"
msgid "Please enter your email address below "
msgstr "Syötä salasanasi"
-#: ../../standalone/logdrake_.c:499
+#: ../../standalone/logdrake_.c:497
msgid "Save as.."
msgstr "Tallenna nimellä.."
-#: ../../standalone/mousedrake_.c:43
+#: ../../standalone/mousedrake_.c:45
msgid "Please, choose the type of your mouse."
msgstr "Valitse hiiren tyyppi."
-#: ../../standalone/mousedrake_.c:57
+#: ../../standalone/mousedrake_.c:58
msgid "Emulate third button?"
msgstr "Emuloi kolmatta näppäintä?"
-#: ../../standalone/printerdrake_.c:48
+#: ../../standalone/printerdrake_.c:57
#, fuzzy
msgid "Reading printer data ..."
msgstr "Luetaan tulostimen tietoja ..."
@@ -11991,33 +12661,44 @@ msgstr "Etsin laitteita ..."
msgid "Test ports"
msgstr "Kokeile portteja"
-#: ../../standalone/scannerdrake_.c:52
+#: ../../standalone/scannerdrake_.c:53 ../../standalone/scannerdrake_.c:68
+#: ../../standalone/scannerdrake_.c:81
#, c-format
-msgid "%s found on %s, configure it ?"
+msgid "The %s is not supported by this version of Mandrake Linux."
+msgstr ""
+
+#: ../../standalone/scannerdrake_.c:56
+#, fuzzy, c-format
+msgid "%s found on %s, configure it?"
msgstr "%s löytyi paikasta %s, aseta se ?"
#: ../../standalone/scannerdrake_.c:59
+#, c-format
+msgid "%s is not in the scanner database, configure it manually?"
+msgstr ""
+
+#: ../../standalone/scannerdrake_.c:65
msgid "Select a scanner"
msgstr "Valitse skanneri"
-#: ../../standalone/scannerdrake_.c:79
+#: ../../standalone/scannerdrake_.c:93
#, c-format
msgid "This %s scanner is unsupported"
msgstr "Tätä %s skanneria ei ole tuettu"
-#: ../../standalone/scannerdrake_.c:93
+#: ../../standalone/scannerdrake_.c:107
#, c-format
msgid ""
"Scannerdrake was not able to detect your %s scanner.\n"
"Please select the device where your scanner is plugged"
msgstr ""
-#: ../../standalone/scannerdrake_.c:95
+#: ../../standalone/scannerdrake_.c:109
#, fuzzy
msgid "choose device"
msgstr "Käynnistyslaite"
-#: ../../standalone/scannerdrake_.c:101
+#: ../../standalone/scannerdrake_.c:115
#, c-format
msgid ""
"This %s scanner must be configured by printerdrake.\n"
@@ -12025,7 +12706,7 @@ msgid ""
"section."
msgstr ""
-#: ../../standalone/scannerdrake_.c:106
+#: ../../standalone/scannerdrake_.c:120
#, c-format
msgid ""
"Your %s scanner has been configured.\n"
@@ -12033,48 +12714,18 @@ msgid ""
"applications menu."
msgstr ""
-#: ../../standalone/service_harddrake_.c:57
+#: ../../standalone/service_harddrake_.c:39
#, c-format
msgid "Some devices in the \"%s\" hardware class were removed:\n"
msgstr ""
-#: ../../standalone/service_harddrake_.c:61
+#: ../../standalone/service_harddrake_.c:43
#, c-format
msgid ""
"\n"
"Some devices in the %s class were added:\n"
msgstr ""
-#: ../../standalone/tinyfirewall_.c:30
-msgid "Firewalling Configuration"
-msgstr "Palomuurin asetukset"
-
-#: ../../standalone/tinyfirewall_.c:43
-msgid "Firewalling configuration"
-msgstr "Palomuurin asetukset"
-
-#: ../../standalone/tinyfirewall_.c:78
-msgid ""
-"Firewalling\n"
-"\n"
-"You already have set up a firewall.\n"
-"Click on Configure to change or remove the firewall"
-msgstr ""
-"Palomuurin asettaminen\n"
-"\n"
-"Olet jo määritellyt palomuurin. Paina \"Määrittele\" \n"
-"poistaaksesi palomuurin tai muuttaaksesi sen asetuksia"
-
-#: ../../standalone/tinyfirewall_.c:82
-msgid ""
-"Firewalling\n"
-"\n"
-"Click on Configure to set up a standard firewall"
-msgstr ""
-"Palomuurin asettaminen\n"
-"\n"
-"Paina \"Määrittele\" pystyyttääksesi palomuurin"
-
# Asennuksen sivuvalikko
#: ../../steps.pm_.c:14
msgid "Choose your language"
@@ -12160,227 +12811,7 @@ msgstr "Asenna päivitykset"
msgid "Exit install"
msgstr "Lopeta asennus"
-#: ../../tinyfirewall.pm_.c:9
-msgid ""
-"tinyfirewall configurator\n"
-"\n"
-"This configures a personal firewall for this Mandrake Linux machine.\n"
-"For a powerful dedicated firewall solution, please look to the\n"
-"specialized MandrakeSecurity Firewall distribution."
-msgstr ""
-"tinyfirewallin asettaminen\n"
-"\n"
-"Tämä vaihe asettaa henkilökohtaisen palomuurin Mandrake Linux\n"
-"-järjestelmääsi. Mikäli haluat tehokkaan palomuuriratkaisun, hae\n"
-"lisätietoja MandrakeSecurity Firewall distribuutiosta."
-
-#: ../../tinyfirewall.pm_.c:14
-msgid ""
-"We'll now ask you questions about which services you'd like to allow\n"
-"the Internet to connect to. Please think carefully about these\n"
-"questions, as your computer's security is important.\n"
-"\n"
-"Please, if you're not currently using one of these services, firewall\n"
-"it off. You can change this configuration anytime you like by\n"
-"re-running this application!"
-msgstr ""
-"Tässä vaiheessa kysytään mitä palveluita haluat haluat sallia muille\n"
-"internetin käyttäjille siksi aikaa kun tietokoneesi on internetissä. \n"
-"Harkitse huolellisesti, ennen kuin vastaat näihin kysymyksiin,\n"
-"sillä nämä vaikuttavat tietokoneesi tietoturvaan.\n"
-"\n"
-"Jos et käytä tällä hetkellä ainoatakaan seuraavista palveluista,\n"
-"suojaa tietokoneesi palomuurilla. Voit muuttaa näitä asetuksia milloin \n"
-"haluat vain käynnistämällä tämän ohjelman uudelleen."
-
-#: ../../tinyfirewall.pm_.c:21
-msgid ""
-"Are you running a web server on this machine that you need the whole\n"
-"Internet to see? If you are running a webserver that only needs to be\n"
-"accessed by this machine, you can safely answer NO here.\n"
-"\n"
-msgstr ""
-"Onko tietokoneessasi webbisivuja, joiden haluat näkyvän kaikkialle\n"
-"internettiin? Jos ajat webbipalvelinta, jonka tarvitsee näkyä väin\n"
-"omalle tietokoneellesi, voit turvallisesti vastata EI tähän kysymykseen.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:26
-msgid ""
-"Are you running a name server on this machine? If you didn't set one\n"
-"up to give away IP and zone information to the whole Internet, please\n"
-"answer no.\n"
-"\n"
-msgstr ""
-"Haluatko koneesi toimivan nimipalvelimena? Jos et halua pystyttää \n"
-"nimipalvelinta jakamaan IP- ja vyöhyketietoja internettiin, vastaa ei.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:31
-msgid ""
-"Do you want to allow incoming Secure Shell (ssh) connections? This\n"
-"is a telnet-replacement that you might use to login. If you're using\n"
-"telnet now, you should definitely switch to ssh. telnet is not\n"
-"encrypted -- so some attackers can steal your password if you use\n"
-"it. ssh is encrypted and doesn't allow for this eavesdropping."
-msgstr ""
-"Haluatko sallia koneellesi tulevat Secure Shell (ssh) -yhteydet? Tämä\n"
-"on telnetin korvaava palvelu, jota voit käyttää kirjoittautuaksesi sisään\n"
-"internetin kautta. Jos käytät vielä telnetiä, sinun pitäisi vaihtaa se \n"
-"ssh:iin. Telnet-yhteydet eivät ole suojattuja -- hyökkääjä voi varastaa\n"
-"salasanasi, jos käytät sitä. Ssh-yhteys on sitävastoin suojattu, joten\n"
-"kukaan ei pysty salakuuntelemaan sitä."
-
-#: ../../tinyfirewall.pm_.c:36
-msgid ""
-"Do you want to allow incoming telnet connections?\n"
-"This is horribly unsafe, as we explained in the previous screen. We\n"
-"strongly recommend answering No here and using ssh in place of\n"
-"telnet.\n"
-msgstr ""
-"Haluatko sallia sisään tulevat telnet-yhteydet?\n"
-"Tämä on hirvittävän vaarallista, kuten edellinen kohta osoitti.\n"
-"Suosittelemme että vastaisit Ei tähän kohtaan ja käyttäisit\n"
-"telnetin sijaan ssh:ta.\n"
-
-#: ../../tinyfirewall.pm_.c:41
-msgid ""
-"Are you running an FTP server here that you need accessible to the\n"
-"Internet? If you are, we strongly recommend that you only use it for\n"
-"Anonymous transfers. Any passwords sent by FTP can be stolen by some\n"
-"attackers, since FTP also uses no encryption for transferring passwords.\n"
-msgstr ""
-"Ajatko tietokoneellasi FTP-palvelinta, jonka haluat näkyvän myös\n"
-"internettiin? Jos vastasit kyllä, suosittelemme, että käyttäisit sitä\n"
-"vain anonyymeihin siirtoihin. Mikä tahansa salasana voidaan varastaa,\n"
-"mikäli se siirretään FTP-protokollan kautta, sillä FTP ei suojaa\n"
-"siirrettäviä salasanoja.\n"
-
-#: ../../tinyfirewall.pm_.c:46
-msgid ""
-"Are you running a mail server here? If you're sending you \n"
-"messages through pine, mutt or any other text-based mail client,\n"
-"you probably are. Otherwise, you should firewall this off.\n"
-"\n"
-msgstr ""
-"Toimiiko tietokoneesi postipalvelimena? Jos lähetät sähköpostiviestisi\n"
-"pinen, muttin tai minkä tahansa tekstipohjaisen postinlukuohjelmiston\n"
-"avulla, se on todennäköistä. Muussa tapauksessa sinun pitäisi suojata\n"
-"ominaisuus pois palomuurin avulla.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:51
-msgid ""
-"Are you running a POP or IMAP server here? This would\n"
-"be used to host non-web-based mail accounts for people via \n"
-"this machine.\n"
-"\n"
-msgstr ""
-"Ajatko POP- tai IMAP-palvelinta koneellasi? Näitä palvelimia\n"
-"käytetään ylläpitämään ei-webbipohjaisia sähköpostitunnuksia\n"
-"ihmisille, jotka haluavat hakea postinsa tältä koneelta omillensa.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:56
-msgid ""
-"You appear to be running a 2.2 kernel. If your network IP\n"
-"is automatically set by a computer in your home or office \n"
-"(dynamically assigned), we need to allow for this. Is\n"
-"this the case?\n"
-msgstr ""
-"Käytät 2.2-sarjan Linuxin ydintä. Jos internetosoite (IP),\n"
-"jota tietokoneesi käyttää, asetetaan automaattisesti\n"
-"toisesta kotonasi tai työpaikallasi olevasta tietokoneesta\n"
-"(eli se on dynaamisesti määrätty), ominaisuuden käyttö \n"
-"pitää sallia. Pitääkö paikkaansa?\n"
-
-#: ../../tinyfirewall.pm_.c:61
-msgid ""
-"Is your computer getting time syncronized to another computer?\n"
-"Mostly, this is used by medium-large Unix/Linux organizations\n"
-"to synchronize time for logging and such. If you're not part\n"
-"of a larger office and haven't heard of this, you probably \n"
-"aren't."
-msgstr ""
-"Onko tietokoneesi kello synkronoitu toisen tietokoneen kanssa?\n"
-"Useimmiten tätä ominaisuutta käytetään keskisuurissa Unix/Linux\n"
-"-organisaatioissa esimerkiksi lokin synkronointiin. Jos tietokoneesi\n"
-"ei ole osa suurempaa toimistoa tai et ole kuullut tällaisesta, \n"
-"järjestelmä ei luultavasti ole synkronoitu."
-
-#: ../../tinyfirewall.pm_.c:66
-msgid ""
-"Configuration complete. May we write these changes to disk?\n"
-"\n"
-"\n"
-"\n"
-msgstr ""
-"Asetukset tehty. Kirjoitetaanko muutokset levylle?\n"
-"\n"
-"\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:82
-#, c-format
-msgid "Can't open %s: %s\n"
-msgstr "En voi avata %s: %s\n"
-
-#: ../../tinyfirewall.pm_.c:84
-#, c-format
-msgid "Can't open %s for writing: %s\n"
-msgstr "Tiedostoa %s ei voi avata kirjoittamista varten: %s\n"
-
-#: ../../tinyfirewall.pm_.c:178
-msgid "No I don't need DHCP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:178
-msgid "Yes I need DHCP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:179
-msgid "No I don't need NTP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:179
-msgid "Yes I need NTP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:180 ../../tinyfirewall.pm_.c:184
-msgid "Don't Save"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:180 ../../tinyfirewall.pm_.c:184
-#: ../../tinyfirewall.pm_.c:204
-msgid "Save & Quit"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:195 ../../tinyfirewall.pm_.c:199
-#, fuzzy
-msgid "Firewall Configuration Wizard"
-msgstr "Palomuurin asetukset"
-
-#: ../../tinyfirewall.pm_.c:197
-msgid "No (firewall this off from the internet)"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:198
-msgid "Yes (allow this through the firewall)"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:230
-#, fuzzy
-msgid "Please Wait... Verifying installed packages"
-msgstr "Valmistelen asennusta"
-
-#: ../../tinyfirewall.pm_.c:236
-#, c-format
-msgid ""
-"Failure installing the needed packages : %s and Bastille.\n"
-" Try to install them manually."
-msgstr ""
-
-#: ../../ugtk.pm_.c:619
+#: ../../ugtk.pm_.c:594
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
@@ -12514,6 +12945,10 @@ msgid "Graphical Environment"
msgstr "Graafinen ympäristö"
#: ../../share/compssUsers:999
+msgid "Development"
+msgstr "Kehitysympäristö"
+
+#: ../../share/compssUsers:999
msgid "Apache, Pro-ftpd"
msgstr "Apache WWW-palvelin ja Pro-ftpd FTP-palvelin"
@@ -12624,44 +13059,239 @@ msgstr "Multimedia - CD:n poltto"
msgid "Scientific Workstation"
msgstr "Tieteelliinen työasema"
-#~ msgid "$mode: $warning"
-#~ msgstr "$mode: $warning"
+#~ msgid ""
+#~ "The first time you try the X configuration, you may not be very "
+#~ "satisfied\n"
+#~ "with its display (screen is too small, shifted left or right...). Hence,\n"
+#~ "even if X starts up correctly, DrakX then asks you if the configuration\n"
+#~ "suits you. It will also propose to change it by displaying a list of "
+#~ "valid\n"
+#~ "modes it could find, asking you to select one.\n"
+#~ "\n"
+#~ "As a last resort, if you still cannot get X to work, choose \"Change\n"
+#~ "graphics card\", select \"Unlisted card\", and when prompted on which\n"
+#~ "server, choose \"FBDev\". This is a failsafe option which works with any\n"
+#~ "modern graphics card. Then choose \"Test again\" to be sure."
+#~ msgstr ""
+#~ "Kun kokeilet ensimmäistä kertaa X:n asetuksiasi, et ole välttämättä "
+#~ "kovin\n"
+#~ "tyytyväinen sen näyttöön (ruutu on liian pieni, siirtynyt vasemmalle tai\n"
+#~ "oikealle...). Vaikka X käynnistyisikin oikein, DrakX kysyy sinulta, "
+#~ "sopivatko\n"
+#~ "asetukset sinulle. Se ehdottaa myös myös muutoksia näyttämällä listan\n"
+#~ "sen löytämistä voimassa olevista näyttötiloista, pyytäen sinua "
+#~ "valitsemaan\n"
+#~ "niistä yksi.\n"
+#~ "\n"
+#~ "Jos et millään saa X:ää toiminaan, kannattaa viimeisenä valita \"Vaihda\n"
+#~ "näytönohjain\", sieltä \"Listaamaton kortti\", ja kun sinulta kysytään, "
+#~ "minkä\n"
+#~ "palvelimen haluat, valitse \"FBDev\". Tämä on vikasietoinen valinta, "
+#~ "joka\n"
+#~ "toimii kaikilla nykyaikaisilla näytönohjaimilla. Lopuksi valitse "
+#~ "\"Testaa\n"
+#~ "uudelleen\" varmistaaksesi toimimisen."
+
+#~ msgid "Internet and Messaging"
+#~ msgstr "Internet ja viestintä"
+
+#~ msgid "Server Software"
+#~ msgstr "Palvelinohjelmisto"
+
+#~ msgid "MandrakeConsulting"
+#~ msgstr "MandrakeConsulting"
+
+#~ msgid "LBA (doesn't work on old BIOSes)"
+#~ msgstr "LBA (ei toimi vanhoissa BIOSeissa)"
+
+#~ msgid "You don't have any partitions!"
+#~ msgstr "Sinulla ei ole yhtään osiota!"
-#, fuzzy
#~ msgid ""
-#~ "This level is to be used with care. It makes your system more easy to "
-#~ "use,\n"
-#~ " but very sensitive: it must not be used for a machine "
-#~ "connected to others\n"
-#~ " or to the Internet. There is no password access."
+#~ "DiskDrake failed to read correctly the partition table.\n"
+#~ "Continue at your own risk!"
#~ msgstr ""
-#~ "Tätä tasoa tulee käyttää varoen. Se tekee järjestelmästäsi helpomman "
-#~ "käyttää,\n"
-#~ "mutta hyvin herkän: sitä ei tule käyttää koneessa joka on kytketty muihin "
-#~ "koneisiin\n"
-#~ "tai Internettiin. Koneessa ei ole salasanoja."
+#~ "DiskDrake ei pystynyt lukemaan osiotaulua oikein.\n"
+#~ "Jatka omalla vastuullasi!"
-#, fuzzy
#~ msgid ""
-#~ "With this security level, the use of this system as a server becomes "
-#~ "possible.\n"
-#~ " The security is now high enough to use the system as a "
-#~ "server which can accept\n"
-#~ " connections from many clients. Note: if your machine is "
-#~ "only a client on the Internet, you should choose a lower level."
+#~ "I can't read your partition table, it's too corrupted for me :(\n"
+#~ "I'll try to go on blanking bad partitions"
#~ msgstr ""
-#~ "Tällä turvallisuustasolla järjestelmän käyttö palvelimena on "
-#~ "mahdollista.\n"
-#~ "Järjestelmää voidaan käyttää palvelimena joka hyväksyy yhteyksiä monilta\n"
-#~ "asiakkailta. "
+#~ "Osiotaulua ei voida lukea, siinä on liikaa virheitä :(\n"
+#~ "Taulu yritetään korjata nollaamalla se"
-#, fuzzy
-#~ msgid "Basic Options"
-#~ msgstr "Optiot"
+#~ msgid ""
+#~ "Please Build backup before to restore it...\n"
+#~ " or verify that your path to save is correct."
+#~ msgstr ""
+#~ "Tee varmuuskopio ennen kuin yrität palauttaa sen...\n"
+#~ "tai tarkista että tallennuspolku on oikea."
-#, fuzzy
-#~ msgid "Security Checks"
-#~ msgstr "Tietoturva"
+#~ msgid "Firewalling Configuration"
+#~ msgstr "Palomuurin asetukset"
+
+#~ msgid "Firewalling configuration"
+#~ msgstr "Palomuurin asetukset"
+
+#~ msgid ""
+#~ "Firewalling\n"
+#~ "\n"
+#~ "You already have set up a firewall.\n"
+#~ "Click on Configure to change or remove the firewall"
+#~ msgstr ""
+#~ "Palomuurin asettaminen\n"
+#~ "\n"
+#~ "Olet jo määritellyt palomuurin. Paina \"Määrittele\" \n"
+#~ "poistaaksesi palomuurin tai muuttaaksesi sen asetuksia"
+
+#~ msgid ""
+#~ "Firewalling\n"
+#~ "\n"
+#~ "Click on Configure to set up a standard firewall"
+#~ msgstr ""
+#~ "Palomuurin asettaminen\n"
+#~ "\n"
+#~ "Paina \"Määrittele\" pystyyttääksesi palomuurin"
+
+#~ msgid ""
+#~ "We'll now ask you questions about which services you'd like to allow\n"
+#~ "the Internet to connect to. Please think carefully about these\n"
+#~ "questions, as your computer's security is important.\n"
+#~ "\n"
+#~ "Please, if you're not currently using one of these services, firewall\n"
+#~ "it off. You can change this configuration anytime you like by\n"
+#~ "re-running this application!"
+#~ msgstr ""
+#~ "Tässä vaiheessa kysytään mitä palveluita haluat haluat sallia muille\n"
+#~ "internetin käyttäjille siksi aikaa kun tietokoneesi on internetissä. \n"
+#~ "Harkitse huolellisesti, ennen kuin vastaat näihin kysymyksiin,\n"
+#~ "sillä nämä vaikuttavat tietokoneesi tietoturvaan.\n"
+#~ "\n"
+#~ "Jos et käytä tällä hetkellä ainoatakaan seuraavista palveluista,\n"
+#~ "suojaa tietokoneesi palomuurilla. Voit muuttaa näitä asetuksia milloin \n"
+#~ "haluat vain käynnistämällä tämän ohjelman uudelleen."
+
+#~ msgid ""
+#~ "Are you running a web server on this machine that you need the whole\n"
+#~ "Internet to see? If you are running a webserver that only needs to be\n"
+#~ "accessed by this machine, you can safely answer NO here.\n"
+#~ "\n"
+#~ msgstr ""
+#~ "Onko tietokoneessasi webbisivuja, joiden haluat näkyvän kaikkialle\n"
+#~ "internettiin? Jos ajat webbipalvelinta, jonka tarvitsee näkyä väin\n"
+#~ "omalle tietokoneellesi, voit turvallisesti vastata EI tähän kysymykseen.\n"
+#~ "\n"
+
+#~ msgid ""
+#~ "Are you running a name server on this machine? If you didn't set one\n"
+#~ "up to give away IP and zone information to the whole Internet, please\n"
+#~ "answer no.\n"
+#~ "\n"
+#~ msgstr ""
+#~ "Haluatko koneesi toimivan nimipalvelimena? Jos et halua pystyttää \n"
+#~ "nimipalvelinta jakamaan IP- ja vyöhyketietoja internettiin, vastaa ei.\n"
+#~ "\n"
+
+#~ msgid ""
+#~ "Do you want to allow incoming Secure Shell (ssh) connections? This\n"
+#~ "is a telnet-replacement that you might use to login. If you're using\n"
+#~ "telnet now, you should definitely switch to ssh. telnet is not\n"
+#~ "encrypted -- so some attackers can steal your password if you use\n"
+#~ "it. ssh is encrypted and doesn't allow for this eavesdropping."
+#~ msgstr ""
+#~ "Haluatko sallia koneellesi tulevat Secure Shell (ssh) -yhteydet? Tämä\n"
+#~ "on telnetin korvaava palvelu, jota voit käyttää kirjoittautuaksesi "
+#~ "sisään\n"
+#~ "internetin kautta. Jos käytät vielä telnetiä, sinun pitäisi vaihtaa se \n"
+#~ "ssh:iin. Telnet-yhteydet eivät ole suojattuja -- hyökkääjä voi varastaa\n"
+#~ "salasanasi, jos käytät sitä. Ssh-yhteys on sitävastoin suojattu, joten\n"
+#~ "kukaan ei pysty salakuuntelemaan sitä."
+
+#~ msgid ""
+#~ "Do you want to allow incoming telnet connections?\n"
+#~ "This is horribly unsafe, as we explained in the previous screen. We\n"
+#~ "strongly recommend answering No here and using ssh in place of\n"
+#~ "telnet.\n"
+#~ msgstr ""
+#~ "Haluatko sallia sisään tulevat telnet-yhteydet?\n"
+#~ "Tämä on hirvittävän vaarallista, kuten edellinen kohta osoitti.\n"
+#~ "Suosittelemme että vastaisit Ei tähän kohtaan ja käyttäisit\n"
+#~ "telnetin sijaan ssh:ta.\n"
+
+#~ msgid ""
+#~ "Are you running an FTP server here that you need accessible to the\n"
+#~ "Internet? If you are, we strongly recommend that you only use it for\n"
+#~ "Anonymous transfers. Any passwords sent by FTP can be stolen by some\n"
+#~ "attackers, since FTP also uses no encryption for transferring passwords.\n"
+#~ msgstr ""
+#~ "Ajatko tietokoneellasi FTP-palvelinta, jonka haluat näkyvän myös\n"
+#~ "internettiin? Jos vastasit kyllä, suosittelemme, että käyttäisit sitä\n"
+#~ "vain anonyymeihin siirtoihin. Mikä tahansa salasana voidaan varastaa,\n"
+#~ "mikäli se siirretään FTP-protokollan kautta, sillä FTP ei suojaa\n"
+#~ "siirrettäviä salasanoja.\n"
+
+#~ msgid ""
+#~ "Are you running a mail server here? If you're sending you \n"
+#~ "messages through pine, mutt or any other text-based mail client,\n"
+#~ "you probably are. Otherwise, you should firewall this off.\n"
+#~ "\n"
+#~ msgstr ""
+#~ "Toimiiko tietokoneesi postipalvelimena? Jos lähetät sähköpostiviestisi\n"
+#~ "pinen, muttin tai minkä tahansa tekstipohjaisen postinlukuohjelmiston\n"
+#~ "avulla, se on todennäköistä. Muussa tapauksessa sinun pitäisi suojata\n"
+#~ "ominaisuus pois palomuurin avulla.\n"
+#~ "\n"
+
+#~ msgid ""
+#~ "Are you running a POP or IMAP server here? This would\n"
+#~ "be used to host non-web-based mail accounts for people via \n"
+#~ "this machine.\n"
+#~ "\n"
+#~ msgstr ""
+#~ "Ajatko POP- tai IMAP-palvelinta koneellasi? Näitä palvelimia\n"
+#~ "käytetään ylläpitämään ei-webbipohjaisia sähköpostitunnuksia\n"
+#~ "ihmisille, jotka haluavat hakea postinsa tältä koneelta omillensa.\n"
+#~ "\n"
+
+#~ msgid ""
+#~ "You appear to be running a 2.2 kernel. If your network IP\n"
+#~ "is automatically set by a computer in your home or office \n"
+#~ "(dynamically assigned), we need to allow for this. Is\n"
+#~ "this the case?\n"
+#~ msgstr ""
+#~ "Käytät 2.2-sarjan Linuxin ydintä. Jos internetosoite (IP),\n"
+#~ "jota tietokoneesi käyttää, asetetaan automaattisesti\n"
+#~ "toisesta kotonasi tai työpaikallasi olevasta tietokoneesta\n"
+#~ "(eli se on dynaamisesti määrätty), ominaisuuden käyttö \n"
+#~ "pitää sallia. Pitääkö paikkaansa?\n"
+
+#~ msgid ""
+#~ "Is your computer getting time syncronized to another computer?\n"
+#~ "Mostly, this is used by medium-large Unix/Linux organizations\n"
+#~ "to synchronize time for logging and such. If you're not part\n"
+#~ "of a larger office and haven't heard of this, you probably \n"
+#~ "aren't."
+#~ msgstr ""
+#~ "Onko tietokoneesi kello synkronoitu toisen tietokoneen kanssa?\n"
+#~ "Useimmiten tätä ominaisuutta käytetään keskisuurissa Unix/Linux\n"
+#~ "-organisaatioissa esimerkiksi lokin synkronointiin. Jos tietokoneesi\n"
+#~ "ei ole osa suurempaa toimistoa tai et ole kuullut tällaisesta, \n"
+#~ "järjestelmä ei luultavasti ole synkronoitu."
+
+#~ msgid ""
+#~ "Configuration complete. May we write these changes to disk?\n"
+#~ "\n"
+#~ "\n"
+#~ "\n"
+#~ msgstr ""
+#~ "Asetukset tehty. Kirjoitetaanko muutokset levylle?\n"
+#~ "\n"
+#~ "\n"
+#~ "\n"
+
+#~ msgid "Can't open %s for writing: %s\n"
+#~ msgstr "Tiedostoa %s ei voi avata kirjoittamista varten: %s\n"
#~ msgid "Data list to include on CDROM."
#~ msgstr "Tietolista sisällytettäväksi CD-ROMiin"
@@ -12691,14 +13321,6 @@ msgstr "Tieteelliinen työasema"
#~ "Valitse, jos haluat tehdä CD-levystäsi\n"
#~ "käynnistettävän."
-#, fuzzy
-#~ msgid "Windows PDC"
-#~ msgstr "Windows (FAT32)"
-
-#, fuzzy
-#~ msgid "PDC Server Name"
-#~ msgstr "NTP-palvelin"
-
#~ msgid "Auto-Detection of Printers"
#~ msgstr "Tulostimien automaattinen löytäminen"
@@ -12711,21 +13333,9 @@ msgstr "Tieteelliinen työasema"
#~ msgid "Checking device and configuring HPOJ..."
#~ msgstr "Tarkistetaan laite ja asetetaan HPOJ ..."
-#, fuzzy
-#~ msgid "Installing SANE packages..."
-#~ msgstr "Asennetaan SANE-paketteja..."
-
-#, fuzzy
-#~ msgid "Installing mtools packages..."
-#~ msgstr "Asennan paketteja..."
-
#~ msgid "Scanning on your HP multi-function device"
#~ msgstr "Skannataan HP-monikäyttölaitteella"
-#, fuzzy
-#~ msgid "Photo memory card access on your HP multi-function device"
-#~ msgstr "Skannataan HP-monikäyttölaitteella"
-
#~ msgid "Making printer port available for CUPS..."
#~ msgstr "Asetetaan tulostusportti CUPSin saataville..."
@@ -12835,9 +13445,6 @@ msgstr "Tieteelliinen työasema"
#~ msgid "Select a graphics card"
#~ msgstr "Valitse näytönohjain"
-#~ msgid "Warning: testing this graphics card may freeze your computer"
-#~ msgstr "Varoitus: näytönohjaimesi testaaminen voi jumittaa tietokoneen"
-
#~ msgid "Standard VGA, 640x480 at 60 Hz"
#~ msgstr "Perus-VGA, 640x480 @ 60 Hz"
diff --git a/perl-install/share/po/ga.po b/perl-install/share/po/ga.po
index ac5cb9ebc..a4398f07f 100644
--- a/perl-install/share/po/ga.po
+++ b/perl-install/share/po/ga.po
@@ -1,7 +1,10 @@
+#
+# Alastair McKinstry <mckinstry@computer.org>, 2002
+#
msgid ""
msgstr ""
-"Project-Id-Version: drakfloppy 0.43\n"
-"POT-Creation-Date: 2002-08-21 15:44+0200\n"
+"Project-Id-Version: DrakX\n"
+"POT-Creation-Date: 2002-09-02 20:14+0200\n"
"PO-Revision-Date: 2000-08-24 12:00-0000\n"
"Last-Translator: Alastair McKinstry <mckinstry@computer.org>\n"
"Language-Team: Irish <ga@li.org>\n"
@@ -45,45 +48,45 @@ msgstr "32 MB"
msgid "64 MB or more"
msgstr "64 MB nó níos mó"
-#: ../../Xconfig/card.pm_.c:201
+#: ../../Xconfig/card.pm_.c:203
msgid "Choose a X server"
msgstr "Roghnaigh freastalaí X"
-#: ../../Xconfig/card.pm_.c:201
+#: ../../Xconfig/card.pm_.c:203
msgid "X server"
msgstr "X freastalaí"
-#: ../../Xconfig/card.pm_.c:228
+#: ../../Xconfig/card.pm_.c:230
msgid "Multi-head configuration"
msgstr "Cumraíochti gach cinn iolrach"
-#: ../../Xconfig/card.pm_.c:229
+#: ../../Xconfig/card.pm_.c:231
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
msgstr ""
-#: ../../Xconfig/card.pm_.c:284
+#: ../../Xconfig/card.pm_.c:286
msgid "Select the memory size of your graphics card"
msgstr "Roghnaigh an méid cuimhne atá id' charta grafachach"
-#: ../../Xconfig/card.pm_.c:345
+#: ../../Xconfig/card.pm_.c:347
msgid "XFree configuration"
msgstr "Cumraíocht XFree"
-#: ../../Xconfig/card.pm_.c:347
+#: ../../Xconfig/card.pm_.c:349
msgid "Which configuration of XFree do you want to have?"
msgstr ""
-#: ../../Xconfig/card.pm_.c:379
+#: ../../Xconfig/card.pm_.c:381
msgid "Configure all heads independently"
msgstr "Cumraigh gach cinn ar leith"
-#: ../../Xconfig/card.pm_.c:380
+#: ../../Xconfig/card.pm_.c:382
msgid "Use Xinerama extension"
msgstr ""
-#: ../../Xconfig/card.pm_.c:384
+#: ../../Xconfig/card.pm_.c:386
#, fuzzy, c-format
msgid "Configure only card \"%s\"%s"
msgstr "Cumraigh carta \"%s\" (%s) amhain"
@@ -94,30 +97,30 @@ msgstr "Cumraigh carta \"%s\" (%s) amhain"
msgid "XFree %s"
msgstr "Freastalaí XFree86: %s"
-#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:435
+#: ../../Xconfig/card.pm_.c:410 ../../Xconfig/card.pm_.c:436
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s with 3D hardware acceleration"
msgstr "XFree %s le luadghearú crua-earraí 3D"
-#: ../../Xconfig/card.pm_.c:412
+#: ../../Xconfig/card.pm_.c:413
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
"Your card is supported by XFree %s which may have a better support in 2D."
msgstr ""
-#: ../../Xconfig/card.pm_.c:414 ../../Xconfig/card.pm_.c:437
+#: ../../Xconfig/card.pm_.c:415 ../../Xconfig/card.pm_.c:438
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr ""
-#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:443
+#: ../../Xconfig/card.pm_.c:423 ../../Xconfig/card.pm_.c:444
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "Freastalaí XFree %s le luasghearú crua-earraí 3D TRIALACH"
-#: ../../Xconfig/card.pm_.c:425
+#: ../../Xconfig/card.pm_.c:426
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -125,60 +128,61 @@ msgid ""
"Your card is supported by XFree %s which may have a better support in 2D."
msgstr ""
-#: ../../Xconfig/card.pm_.c:428 ../../Xconfig/card.pm_.c:445
+#: ../../Xconfig/card.pm_.c:429 ../../Xconfig/card.pm_.c:446
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
msgstr ""
-#: ../../Xconfig/card.pm_.c:451
+#: ../../Xconfig/card.pm_.c:452
msgid "Xpmac (installation display driver)"
msgstr ""
-#: ../../Xconfig/main.pm_.c:78 ../../Xconfig/main.pm_.c:79
-#: ../../Xconfig/monitor.pm_.c:94 ../../any.pm_.c:974
+#: ../../Xconfig/main.pm_.c:76 ../../Xconfig/main.pm_.c:77
+#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:977
msgid "Custom"
msgstr "Socraithe"
-#: ../../Xconfig/main.pm_.c:104
+#: ../../Xconfig/main.pm_.c:102
#, fuzzy
msgid "Graphic Card"
msgstr "Carta Grafach"
-#: ../../Xconfig/main.pm_.c:107 ../../Xconfig/monitor.pm_.c:91
+#: ../../Xconfig/main.pm_.c:105 ../../Xconfig/monitor.pm_.c:93
msgid "Monitor"
msgstr "Scáileán"
-#: ../../Xconfig/main.pm_.c:110 ../../Xconfig/resolution_and_depth.pm_.c:209
+#: ../../Xconfig/main.pm_.c:108 ../../Xconfig/resolution_and_depth.pm_.c:209
msgid "Resolution"
msgstr "Réiteach"
-#: ../../Xconfig/main.pm_.c:114
+#: ../../Xconfig/main.pm_.c:113
msgid "Test"
msgstr ""
-#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:59
-#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/removable.pm_.c:25
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:63
+#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/removable.pm_.c:25
#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "Roghnachais"
#: ../../Xconfig/main.pm_.c:121 ../../Xconfig/resolution_and_depth.pm_.c:268
-#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:281
+#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:275
#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
-#: ../../interactive.pm_.c:351 ../../interactive/http.pm_.c:104
+#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:104
#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
-#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:156
-#: ../../my_gtk.pm_.c:284 ../../my_gtk.pm_.c:307
-#: ../../standalone/drakbackup_.c:3324 ../../standalone/drakbackup_.c:3419
-#: ../../standalone/drakbackup_.c:3438
+#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:159
+#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310
+#: ../../standalone/drakbackup_.c:3972 ../../standalone/drakbackup_.c:4067
+#: ../../standalone/drakbackup_.c:4086
msgid "Ok"
msgstr "Ceart go Leor"
#: ../../Xconfig/main.pm_.c:121 ../../diskdrake/dav.pm_.c:24
-#: ../../printerdrake.pm_.c:2933 ../../standalone/logdrake_.c:224
+#: ../../harddrake/ui.pm_.c:98 ../../printerdrake.pm_.c:3155
+#: ../../standalone/logdrake_.c:224
msgid "Quit"
msgstr "Éalaigh"
@@ -191,28 +195,28 @@ msgid ""
"%s"
msgstr "Coimead an cumraíocht IP atá ann"
-#: ../../Xconfig/monitor.pm_.c:91
+#: ../../Xconfig/monitor.pm_.c:93
msgid "Choose a monitor"
msgstr "Roghnaigh scáileán"
-#: ../../Xconfig/monitor.pm_.c:95
+#: ../../Xconfig/monitor.pm_.c:97
msgid "Plug'n Play"
msgstr ""
-#: ../../Xconfig/monitor.pm_.c:96 ../../mouse.pm_.c:45
+#: ../../Xconfig/monitor.pm_.c:98 ../../mouse.pm_.c:46
msgid "Generic"
msgstr "Gnáth"
-#: ../../Xconfig/monitor.pm_.c:97 ../../harddrake/ui.pm_.c:36
+#: ../../Xconfig/monitor.pm_.c:99 ../../harddrake/ui.pm_.c:37
#, fuzzy
msgid "Vendor"
msgstr "Leasú"
-#: ../../Xconfig/monitor.pm_.c:107
+#: ../../Xconfig/monitor.pm_.c:109
msgid "Plug'n Play probing failed. Please choose a precise monitor"
msgstr ""
-#: ../../Xconfig/monitor.pm_.c:112
+#: ../../Xconfig/monitor.pm_.c:114
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -226,11 +230,11 @@ msgid ""
" If in doubt, choose a conservative setting."
msgstr ""
-#: ../../Xconfig/monitor.pm_.c:119
+#: ../../Xconfig/monitor.pm_.c:121
msgid "Horizontal refresh rate"
msgstr "Ráta athnuachana cothrománach"
-#: ../../Xconfig/monitor.pm_.c:120
+#: ../../Xconfig/monitor.pm_.c:122
msgid "Vertical refresh rate"
msgstr "Ráta athnuachana ingearach"
@@ -267,36 +271,40 @@ msgstr "Roghnaigh Réiteach agus an méid dath"
msgid "Graphics card: %s"
msgstr "Carta Grafach: %s"
-#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1015
-#: ../../bootlook.pm_.c:334 ../../diskdrake/smbnfs_gtk.pm_.c:87
-#: ../../install_steps_gtk.pm_.c:412 ../../install_steps_gtk.pm_.c:470
-#: ../../install_steps_interactive.pm_.c:576 ../../interactive.pm_.c:142
-#: ../../interactive.pm_.c:351 ../../interactive/http.pm_.c:105
+#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1018
+#: ../../bootlook.pm_.c:338 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:406 ../../install_steps_gtk.pm_.c:464
+#: ../../install_steps_interactive.pm_.c:560 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:105
#: ../../interactive/newt.pm_.c:174 ../../interactive/stdio.pm_.c:39
-#: ../../interactive/stdio.pm_.c:143 ../../my_gtk.pm_.c:155
-#: ../../my_gtk.pm_.c:159 ../../my_gtk.pm_.c:284
-#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1990
-#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3278
-#: ../../standalone/drakbackup_.c:3311 ../../standalone/drakbackup_.c:3337
-#: ../../standalone/drakbackup_.c:3364 ../../standalone/drakbackup_.c:3391
-#: ../../standalone/drakbackup_.c:3451 ../../standalone/drakbackup_.c:3478
-#: ../../standalone/drakbackup_.c:3504 ../../standalone/drakconnect_.c:115
-#: ../../standalone/drakconnect_.c:147 ../../standalone/drakconnect_.c:289
-#: ../../standalone/drakconnect_.c:537 ../../standalone/drakconnect_.c:679
-#: ../../standalone/drakfloppy_.c:234 ../../standalone/drakfloppy_.c:383
-#: ../../standalone/drakfont_.c:970 ../../standalone/drakgw_.c:598
-#: ../../standalone/logdrake_.c:224 ../../standalone/logdrake_.c:528
-#: ../../standalone/tinyfirewall_.c:64
+#: ../../interactive/stdio.pm_.c:143 ../../my_gtk.pm_.c:158
+#: ../../my_gtk.pm_.c:162 ../../my_gtk.pm_.c:287
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:2124
+#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3926
+#: ../../standalone/drakbackup_.c:3959 ../../standalone/drakbackup_.c:3985
+#: ../../standalone/drakbackup_.c:4012 ../../standalone/drakbackup_.c:4039
+#: ../../standalone/drakbackup_.c:4099 ../../standalone/drakbackup_.c:4126
+#: ../../standalone/drakbackup_.c:4156 ../../standalone/drakbackup_.c:4182
+#: ../../standalone/drakconnect_.c:115 ../../standalone/drakconnect_.c:147
+#: ../../standalone/drakconnect_.c:289 ../../standalone/drakconnect_.c:537
+#: ../../standalone/drakconnect_.c:679 ../../standalone/drakfloppy_.c:234
+#: ../../standalone/drakfloppy_.c:383 ../../standalone/drakfont_.c:970
+#: ../../standalone/drakgw_.c:536 ../../standalone/logdrake_.c:224
+#: ../../standalone/logdrake_.c:526
msgid "Cancel"
msgstr "Cealaigh"
-#: ../../Xconfig/test.pm_.c:26
+#: ../../Xconfig/test.pm_.c:30
+msgid "Test of the configuration"
+msgstr "Trialaigh an cumraíocht"
+
+#: ../../Xconfig/test.pm_.c:31
msgid "Do you want to test the configuration?"
msgstr "An bhfuil tú ag iarraidh an cumraíocht a thrial?"
-#: ../../Xconfig/test.pm_.c:26
-msgid "Test of the configuration"
-msgstr "Trialaigh an cumraíocht"
+#: ../../Xconfig/test.pm_.c:31
+msgid "Warning: testing this graphic card may freeze your computer"
+msgstr ""
#: ../../Xconfig/various.pm_.c:29
#, c-format
@@ -431,26 +439,22 @@ msgstr "Bootáil as DOS/Windows (loadin)"
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:158 ../../any.pm_.c:190
+#: ../../any.pm_.c:159 ../../any.pm_.c:190
msgid "Bootloader main options"
msgstr "Príomhroghanna bootáil"
-#: ../../any.pm_.c:159 ../../any.pm_.c:191
+#: ../../any.pm_.c:160 ../../any.pm_.c:191
msgid "Bootloader to use"
msgstr "Ríomhchlar Tosnaithe a úsáid "
-#: ../../any.pm_.c:161
+#: ../../any.pm_.c:162
msgid "Bootloader installation"
msgstr "Feistiú cód tosnaithe"
-#: ../../any.pm_.c:163 ../../any.pm_.c:193
+#: ../../any.pm_.c:164 ../../any.pm_.c:193
msgid "Boot device"
msgstr "Gaireas bootáil"
-#: ../../any.pm_.c:164
-msgid "LBA (doesn't work on old BIOSes)"
-msgstr ""
-
#: ../../any.pm_.c:165
msgid "Compact"
msgstr "Compact"
@@ -467,16 +471,17 @@ msgstr "Mód fís"
msgid "Delay before booting default image"
msgstr ""
-#: ../../any.pm_.c:170 ../../any.pm_.c:786
+#: ../../any.pm_.c:170 ../../any.pm_.c:788
#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1111 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:743 ../../printerdrake.pm_.c:858
-#: ../../standalone/drakconnect_.c:624 ../../standalone/drakconnect_.c:649
+#: ../../install_steps_interactive.pm_.c:1096 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:850 ../../printerdrake.pm_.c:965
+#: ../../standalone/drakbackup_.c:3528 ../../standalone/drakconnect_.c:624
+#: ../../standalone/drakconnect_.c:649
msgid "Password"
msgstr "Pasfhocal"
-#: ../../any.pm_.c:171 ../../any.pm_.c:787
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../any.pm_.c:171 ../../any.pm_.c:789
+#: ../../install_steps_interactive.pm_.c:1097
msgid "Password (again)"
msgstr "Pasfhocal (arís)"
@@ -510,14 +515,14 @@ msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr ""
-#: ../../any.pm_.c:184 ../../any.pm_.c:762
-#: ../../diskdrake/interactive.pm_.c:1180
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../any.pm_.c:184 ../../any.pm_.c:764
+#: ../../diskdrake/interactive.pm_.c:1191
+#: ../../install_steps_interactive.pm_.c:1091
msgid "Please try again"
msgstr "Aththrialaigh"
-#: ../../any.pm_.c:184 ../../any.pm_.c:762
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../any.pm_.c:184 ../../any.pm_.c:764
+#: ../../install_steps_interactive.pm_.c:1091
msgid "The passwords do not match"
msgstr "Ní mar a chéile na pasfhocail"
@@ -560,16 +565,16 @@ msgid ""
"You can add some more or change the existing ones."
msgstr ""
-#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1483
-#: ../../standalone/drakbackup_.c:1596 ../../standalone/drakfont_.c:1011
+#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1558
+#: ../../standalone/drakbackup_.c:1671 ../../standalone/drakfont_.c:1011
#: ../../standalone/drakfont_.c:1054
msgid "Add"
msgstr "Suim"
-#: ../../any.pm_.c:257 ../../any.pm_.c:774 ../../diskdrake/dav.pm_.c:60
+#: ../../any.pm_.c:257 ../../any.pm_.c:776 ../../diskdrake/dav.pm_.c:64
#: ../../diskdrake/hd_gtk.pm_.c:153 ../../diskdrake/removable.pm_.c:27
#: ../../diskdrake/smbnfs_gtk.pm_.c:88 ../../interactive/http.pm_.c:153
-#: ../../standalone/drakbackup_.c:2696
+#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2772
msgid "Done"
msgstr "Críochnithe"
@@ -581,7 +586,7 @@ msgstr "Athraigh"
msgid "Which type of entry do you want to add?"
msgstr "Cén sort iontráil a suimigh do"
-#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1630
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1705
msgid "Linux"
msgstr "Linux"
@@ -676,13 +681,13 @@ msgstr "An bhfuil ceann eile agat?"
msgid "Do you have any %s interfaces?"
msgstr "An bhfuil comhéadan %s agat?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:821 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:283
+#: ../../any.pm_.c:660 ../../any.pm_.c:823 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:286
msgid "No"
msgstr "Níl"
-#: ../../any.pm_.c:660 ../../any.pm_.c:820 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:283
+#: ../../any.pm_.c:660 ../../any.pm_.c:822 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:286
msgid "Yes"
msgstr "Tá"
@@ -770,70 +775,78 @@ msgstr ""
msgid "access to administrative files"
msgstr ""
-#: ../../any.pm_.c:758
+#: ../../any.pm_.c:754
+msgid "access to network tools"
+msgstr ""
+
+#: ../../any.pm_.c:755
+msgid "access to compilation tools"
+msgstr ""
+
+#: ../../any.pm_.c:760
#, c-format
msgid "(already added %s)"
msgstr ""
-#: ../../any.pm_.c:763
+#: ../../any.pm_.c:765
msgid "This password is too simple"
msgstr "Tá an pasfhocal seo ro-shimplí"
-#: ../../any.pm_.c:764
+#: ../../any.pm_.c:766
msgid "Please give a user name"
msgstr ""
-#: ../../any.pm_.c:765
+#: ../../any.pm_.c:767
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
-#: ../../any.pm_.c:766
+#: ../../any.pm_.c:768
#, fuzzy
msgid "The user name is too long"
msgstr "Is ann cheana don ainm úsáideora seo"
-#: ../../any.pm_.c:767
+#: ../../any.pm_.c:769
msgid "This user name is already added"
msgstr "Is ann cheana don ainm úsáideora seo"
-#: ../../any.pm_.c:771
+#: ../../any.pm_.c:773
msgid "Add user"
msgstr "Suimigh úsáideoir"
-#: ../../any.pm_.c:772
+#: ../../any.pm_.c:774
#, c-format
msgid ""
"Enter a user\n"
"%s"
msgstr ""
-#: ../../any.pm_.c:773
+#: ../../any.pm_.c:775
msgid "Accept user"
msgstr ""
-#: ../../any.pm_.c:784
+#: ../../any.pm_.c:786
msgid "Real name"
msgstr "Fíor ainm"
-#: ../../any.pm_.c:785 ../../printerdrake.pm_.c:742
-#: ../../printerdrake.pm_.c:857
+#: ../../any.pm_.c:787 ../../printerdrake.pm_.c:849
+#: ../../printerdrake.pm_.c:964
msgid "User name"
msgstr "Ainm úsáideora"
-#: ../../any.pm_.c:788
+#: ../../any.pm_.c:790
msgid "Shell"
msgstr "Blaosc"
-#: ../../any.pm_.c:790
+#: ../../any.pm_.c:792
msgid "Icon"
msgstr "Dealbh"
-#: ../../any.pm_.c:817
+#: ../../any.pm_.c:819
msgid "Autologin"
msgstr "Uath-Logann"
-#: ../../any.pm_.c:818
+#: ../../any.pm_.c:820
#, fuzzy
msgid ""
"I can set up your computer to automatically log on one user.\n"
@@ -842,57 +855,57 @@ msgstr ""
"Is féidir linn do ríomhaire a shocrú le X a thosnú i ndhiadh bootáil.\n"
"An dteastaíonn uait go dtosnófar X nuair a aththosnítear an ríomhaire?"
-#: ../../any.pm_.c:822
+#: ../../any.pm_.c:824
msgid "Choose the default user:"
msgstr "Roghnagih an úsáidoer gneás:"
-#: ../../any.pm_.c:823
+#: ../../any.pm_.c:825
msgid "Choose the window manager to run:"
msgstr "Roghnaigh an Bainistéoir Fhuinneoga a úsásd:"
-#: ../../any.pm_.c:838
+#: ../../any.pm_.c:840
#, fuzzy
msgid "Please choose a language to use."
msgstr "Roghnaight do theangam le do thoil."
-#: ../../any.pm_.c:840
+#: ../../any.pm_.c:842
msgid ""
"Mandrake Linux can support multiple languages. Select\n"
"the languages you would like to install. They will be available\n"
"when your installation is complete and you restart your system."
msgstr ""
-#: ../../any.pm_.c:854 ../../install_steps_interactive.pm_.c:708
+#: ../../any.pm_.c:856 ../../install_steps_interactive.pm_.c:692
#: ../../standalone/drakxtv_.c:73
msgid "All"
msgstr "Gach Rud"
-#: ../../any.pm_.c:974
+#: ../../any.pm_.c:977
#, fuzzy
msgid "Allow all users"
msgstr "Suimigh úsáideoir"
-#: ../../any.pm_.c:974
+#: ../../any.pm_.c:977
#, fuzzy
msgid "No sharing"
msgstr "Ag Tosnaigh CUPS"
-#: ../../any.pm_.c:984 ../../standalone.pm_.c:57
+#: ../../any.pm_.c:987 ../../install_any.pm_.c:1183 ../../standalone.pm_.c:58
#, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr ""
-#: ../../any.pm_.c:987
+#: ../../any.pm_.c:990
msgid ""
"You can export using NFS or Samba. Please select which you'd like to use."
msgstr ""
-#: ../../any.pm_.c:995 ../../standalone.pm_.c:61
+#: ../../any.pm_.c:998 ../../install_any.pm_.c:1188 ../../standalone.pm_.c:63
#, c-format
msgid "Mandatory package %s is missing"
msgstr ""
-#: ../../any.pm_.c:1001
+#: ../../any.pm_.c:1004
msgid ""
"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
@@ -901,67 +914,67 @@ msgid ""
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:1015
+#: ../../any.pm_.c:1018
msgid "Launch userdrake"
msgstr ""
-#: ../../any.pm_.c:1017
+#: ../../any.pm_.c:1020
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
msgstr ""
-#: ../../any.pm_.c:1068
+#: ../../any.pm_.c:1071
msgid "Welcome To Crackers"
msgstr ""
-#: ../../any.pm_.c:1069
+#: ../../any.pm_.c:1072
msgid "Poor"
msgstr "Bocht"
-#: ../../any.pm_.c:1070 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1073 ../../mouse.pm_.c:31
msgid "Standard"
msgstr ""
-#: ../../any.pm_.c:1071
+#: ../../any.pm_.c:1074
msgid "High"
msgstr "Árd"
-#: ../../any.pm_.c:1072
+#: ../../any.pm_.c:1075
#, fuzzy
msgid "Higher"
msgstr "Árd"
-#: ../../any.pm_.c:1073
+#: ../../any.pm_.c:1076
msgid "Paranoid"
msgstr "Paranóid"
-#: ../../any.pm_.c:1076
+#: ../../any.pm_.c:1079
msgid ""
"This level is to be used with care. It makes your system more easy to use,\n"
"but very sensitive: it must not be used for a machine connected to others\n"
"or to the Internet. There is no password access."
msgstr ""
-#: ../../any.pm_.c:1079
+#: ../../any.pm_.c:1082
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
msgstr ""
-#: ../../any.pm_.c:1080
+#: ../../any.pm_.c:1083
msgid ""
"This is the standard security recommended for a computer that will be used "
"to connect to the Internet as a client."
msgstr ""
-#: ../../any.pm_.c:1081
+#: ../../any.pm_.c:1084
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr ""
-#: ../../any.pm_.c:1082
+#: ../../any.pm_.c:1085
msgid ""
"With this security level, the use of this system as a server becomes "
"possible.\n"
@@ -971,38 +984,38 @@ msgid ""
"Internet, you should choose a lower level."
msgstr ""
-#: ../../any.pm_.c:1085
+#: ../../any.pm_.c:1088
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
"security features are at their maximum."
msgstr ""
-#: ../../any.pm_.c:1091
+#: ../../any.pm_.c:1094
#, fuzzy
msgid "DrakSec Basic Options"
msgstr "Roghnachais"
-#: ../../any.pm_.c:1092
+#: ../../any.pm_.c:1095
#, fuzzy
msgid "Please choose the desired security level"
msgstr "Roghnaigh liebhéal slándáil"
-#: ../../any.pm_.c:1095
+#: ../../any.pm_.c:1098
#, fuzzy
msgid "Security level"
msgstr "Roghnaigh liebhéal slándáil"
-#: ../../any.pm_.c:1097
+#: ../../any.pm_.c:1100
#, fuzzy
msgid "Use libsafe for servers"
msgstr "Roghnaigh cumraíocht an freastalaí"
-#: ../../any.pm_.c:1098
+#: ../../any.pm_.c:1101
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
-#: ../../any.pm_.c:1099
+#: ../../any.pm_.c:1102
msgid "Security Administrator (login or email)"
msgstr ""
@@ -1035,57 +1048,57 @@ msgstr ""
# FIXME
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:935
+#: ../../bootloader.pm_.c:932
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Fáile go GRUB, an roghnóir Choráis "
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:938
+#: ../../bootloader.pm_.c:935
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr ""
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:941
+#: ../../bootloader.pm_.c:938
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr ""
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:941
msgid "commands before booting, or 'c' for a command-line."
msgstr ""
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:947
+#: ../../bootloader.pm_.c:944
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr ""
-#: ../../bootloader.pm_.c:951
+#: ../../bootloader.pm_.c:948
msgid "not enough room in /boot"
msgstr ""
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1051
+#: ../../bootloader.pm_.c:1048
msgid "Desktop"
msgstr "Deasc"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1053
+#: ../../bootloader.pm_.c:1050
msgid "Start Menu"
msgstr "Clár Tosnú"
-#: ../../bootloader.pm_.c:1072
+#: ../../bootloader.pm_.c:1069
#, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr ""
-#: ../../bootlook.pm_.c:45
+#: ../../bootlook.pm_.c:45 ../../standalone/draksplash_.c:25
msgid "no help implemented yet.\n"
msgstr ""
@@ -1093,8 +1106,8 @@ msgstr ""
msgid "Boot Style Configuration"
msgstr "Cumraíocht Stíl Tosnú"
-#: ../../bootlook.pm_.c:78 ../../harddrake/ui.pm_.c:59
-#: ../../harddrake/ui.pm_.c:60 ../../standalone/drakfloppy_.c:81
+#: ../../bootlook.pm_.c:78 ../../harddrake/ui.pm_.c:62
+#: ../../harddrake/ui.pm_.c:63 ../../standalone/drakfloppy_.c:81
#: ../../standalone/logdrake_.c:101
msgid "/_File"
msgstr "/_Comhad"
@@ -1104,7 +1117,7 @@ msgstr "/_Comhad"
msgid "/File/_Quit"
msgstr "/Comhad/_Ealu"
-#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:60
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:63
#: ../../standalone/drakfloppy_.c:82 ../../standalone/logdrake_.c:107
msgid "<control>Q"
msgstr "<control>E"
@@ -1146,117 +1159,123 @@ msgstr "Feistigh córas"
msgid "Display theme under console"
msgstr ""
-#: ../../bootlook.pm_.c:166
+#: ../../bootlook.pm_.c:145
+#, fuzzy
+msgid "Create new theme"
+msgstr "Cruthaigh rann nua"
+
+#: ../../bootlook.pm_.c:169
msgid "Can't create Bootsplash preview"
msgstr ""
-#: ../../bootlook.pm_.c:166 ../../bootlook.pm_.c:184 ../../bootlook.pm_.c:187
-#: ../../bootlook.pm_.c:190 ../../bootlook.pm_.c:220 ../../bootlook.pm_.c:222
-#: ../../bootlook.pm_.c:232 ../../bootlook.pm_.c:241 ../../bootlook.pm_.c:248
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:336
-#: ../../diskdrake/interactive.pm_.c:351 ../../diskdrake/interactive.pm_.c:464
-#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../bootlook.pm_.c:169 ../../bootlook.pm_.c:187 ../../bootlook.pm_.c:190
+#: ../../bootlook.pm_.c:193 ../../bootlook.pm_.c:223 ../../bootlook.pm_.c:225
+#: ../../bootlook.pm_.c:235 ../../bootlook.pm_.c:244 ../../bootlook.pm_.c:251
+#: ../../diskdrake/dav.pm_.c:73 ../../diskdrake/hd_gtk.pm_.c:116
+#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/interactive.pm_.c:355
+#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/interactive.pm_.c:474
+#: ../../diskdrake/smbnfs_gtk.pm_.c:45 ../../fsedit.pm_.c:239
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:365 ../../interactive/http.pm_.c:119
-#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:80
+#: ../../interactive/http.pm_.c:119 ../../interactive/http.pm_.c:120
+#: ../../standalone/draksplash_.c:32
msgid "Error"
msgstr "Earráid"
-#: ../../bootlook.pm_.c:183
+#: ../../bootlook.pm_.c:186
#, c-format
msgid "Backup %s to %s.old"
msgstr ""
-#: ../../bootlook.pm_.c:184
+#: ../../bootlook.pm_.c:187
msgid "unable to backup lilo message"
msgstr ""
-#: ../../bootlook.pm_.c:186
+#: ../../bootlook.pm_.c:189
#, c-format
msgid "Copy %s to %s"
msgstr ""
-#: ../../bootlook.pm_.c:187
+#: ../../bootlook.pm_.c:190
msgid "can't change lilo message"
msgstr ""
-#: ../../bootlook.pm_.c:190
+#: ../../bootlook.pm_.c:193
msgid "Lilo message not found"
msgstr ""
-#: ../../bootlook.pm_.c:220
+#: ../../bootlook.pm_.c:223
msgid "Can't write /etc/sysconfig/bootsplash."
msgstr ""
-#: ../../bootlook.pm_.c:220
+#: ../../bootlook.pm_.c:223
#, fuzzy, c-format
msgid "Write %s"
msgstr "Freastalaí XFree86: %s"
-#: ../../bootlook.pm_.c:222
+#: ../../bootlook.pm_.c:225
msgid ""
"Can't write /etc/sysconfig/bootsplash\n"
"File not found."
msgstr ""
-#: ../../bootlook.pm_.c:233
+#: ../../bootlook.pm_.c:236
#, c-format
msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
msgstr ""
-#: ../../bootlook.pm_.c:236
+#: ../../bootlook.pm_.c:239
#, c-format
-msgid "Make initrd 'mkinird -f /boot/initrd-%s.img %s'."
+msgid "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
msgstr ""
-#: ../../bootlook.pm_.c:242
+#: ../../bootlook.pm_.c:245
msgid ""
"Can't relaunch LiLo!\n"
"Launch \"lilo\" as root in command line to complete LiLo theme installation."
msgstr ""
-#: ../../bootlook.pm_.c:246
+#: ../../bootlook.pm_.c:249
msgid "Relaunch 'lilo'"
msgstr ""
-#: ../../bootlook.pm_.c:248
+#: ../../bootlook.pm_.c:251 ../../standalone/draksplash_.c:161
+#: ../../standalone/draksplash_.c:330 ../../standalone/draksplash_.c:454
#, fuzzy
msgid "Notice"
msgstr "GanBhideó"
-#: ../../bootlook.pm_.c:249
+#: ../../bootlook.pm_.c:252
msgid "LiLo and Bootsplash themes installation successfull"
msgstr ""
-#: ../../bootlook.pm_.c:249
+#: ../../bootlook.pm_.c:252
#, fuzzy
msgid "Theme installation failed!"
msgstr "Roghnaigh rang feistiú"
-#: ../../bootlook.pm_.c:258
+#: ../../bootlook.pm_.c:261
#, c-format
msgid ""
"You are currently using %s as your boot manager.\n"
"Click on Configure to launch the setup wizard."
msgstr ""
-#: ../../bootlook.pm_.c:260 ../../standalone/drakbackup_.c:2352
-#: ../../standalone/drakbackup_.c:2362 ../../standalone/drakbackup_.c:2372
-#: ../../standalone/drakbackup_.c:2380 ../../standalone/drakgw_.c:592
-#: ../../standalone/tinyfirewall_.c:58
+#: ../../bootlook.pm_.c:263 ../../standalone/drakbackup_.c:2427
+#: ../../standalone/drakbackup_.c:2437 ../../standalone/drakbackup_.c:2447
+#: ../../standalone/drakbackup_.c:2455 ../../standalone/drakgw_.c:530
msgid "Configure"
msgstr "Cumraigh"
-#: ../../bootlook.pm_.c:267
+#: ../../bootlook.pm_.c:270
#, fuzzy
msgid "Splash selection"
msgstr "Roghnú Grúpa Pacáistí"
-#: ../../bootlook.pm_.c:270
+#: ../../bootlook.pm_.c:273
msgid "Themes"
msgstr ""
-#: ../../bootlook.pm_.c:272
+#: ../../bootlook.pm_.c:275
msgid ""
"\n"
"Select a theme for\n"
@@ -1265,44 +1284,44 @@ msgid ""
"them separatly"
msgstr ""
-#: ../../bootlook.pm_.c:275
+#: ../../bootlook.pm_.c:278
msgid "Lilo screen"
msgstr ""
-#: ../../bootlook.pm_.c:279
+#: ../../bootlook.pm_.c:283
msgid "Bootsplash"
msgstr ""
-#: ../../bootlook.pm_.c:314
+#: ../../bootlook.pm_.c:318
msgid "System mode"
msgstr "Mód Coras"
-#: ../../bootlook.pm_.c:316
+#: ../../bootlook.pm_.c:320
msgid "Launch the graphical environment when your system starts"
msgstr ""
-#: ../../bootlook.pm_.c:321
+#: ../../bootlook.pm_.c:325
msgid "No, I don't want autologin"
msgstr ""
-#: ../../bootlook.pm_.c:323
+#: ../../bootlook.pm_.c:327
msgid "Yes, I want autologin with this (user, desktop)"
msgstr ""
-#: ../../bootlook.pm_.c:333 ../../network/netconnect.pm_.c:101
+#: ../../bootlook.pm_.c:337 ../../network/netconnect.pm_.c:101
#: ../../standalone/drakTermServ_.c:173 ../../standalone/drakTermServ_.c:300
-#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:3513
-#: ../../standalone/drakbackup_.c:4290 ../../standalone/drakconnect_.c:108
+#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4191
+#: ../../standalone/drakbackup_.c:4952 ../../standalone/drakconnect_.c:108
#: ../../standalone/drakconnect_.c:140 ../../standalone/drakconnect_.c:296
#: ../../standalone/drakconnect_.c:435 ../../standalone/drakconnect_.c:521
#: ../../standalone/drakconnect_.c:564 ../../standalone/drakconnect_.c:667
#: ../../standalone/drakfloppy_.c:376 ../../standalone/drakfont_.c:612
#: ../../standalone/drakfont_.c:799 ../../standalone/drakfont_.c:876
-#: ../../standalone/drakfont_.c:963 ../../standalone/logdrake_.c:521
+#: ../../standalone/drakfont_.c:963 ../../standalone/logdrake_.c:519
msgid "OK"
msgstr "Ceart go Leor"
-#: ../../bootlook.pm_.c:403
+#: ../../bootlook.pm_.c:407
#, fuzzy, c-format
msgid "can not open /etc/inittab for reading: %s"
msgstr "Earráid ag oscailt %s do scríobh: %s"
@@ -1407,48 +1426,53 @@ msgstr "srathach"
msgid "United States"
msgstr ""
-#: ../../detect_devices.pm_.c:599 ../../detect_devices.pm_.c:641
-#: ../../detect_devices.pm_.c:803
-msgid "Unknown Model"
-msgstr ""
-
#: ../../diskdrake/dav.pm_.c:23
#, fuzzy
msgid "New"
msgstr "nua"
-#: ../../diskdrake/dav.pm_.c:57
+#: ../../diskdrake/dav.pm_.c:59 ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/smbnfs_gtk.pm_.c:81
+msgid "Unmount"
+msgstr ""
+
+#: ../../diskdrake/dav.pm_.c:60 ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/smbnfs_gtk.pm_.c:82
+msgid "Mount"
+msgstr ""
+
+#: ../../diskdrake/dav.pm_.c:61
msgid "Server"
msgstr "Freastalaí"
-#: ../../diskdrake/dav.pm_.c:58 ../../diskdrake/interactive.pm_.c:375
-#: ../../diskdrake/interactive.pm_.c:558 ../../diskdrake/interactive.pm_.c:585
+#: ../../diskdrake/dav.pm_.c:62 ../../diskdrake/interactive.pm_.c:379
+#: ../../diskdrake/interactive.pm_.c:568 ../../diskdrake/interactive.pm_.c:595
#: ../../diskdrake/removable.pm_.c:24 ../../diskdrake/removable_gtk.pm_.c:15
#: ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr ""
-#: ../../diskdrake/dav.pm_.c:68
+#: ../../diskdrake/dav.pm_.c:81
#, fuzzy
msgid "Please enter the WebDAV server URL"
msgstr "Teastáil an luchóg, le do thoil"
-#: ../../diskdrake/dav.pm_.c:71
+#: ../../diskdrake/dav.pm_.c:84
msgid "The URL must begin with http:// or https://"
msgstr ""
-#: ../../diskdrake/dav.pm_.c:92
+#: ../../diskdrake/dav.pm_.c:105
#, fuzzy
msgid "Server: "
msgstr "Freastalaí"
-#: ../../diskdrake/dav.pm_.c:93 ../../diskdrake/interactive.pm_.c:435
-#: ../../diskdrake/interactive.pm_.c:1079
-#: ../../diskdrake/interactive.pm_.c:1153
+#: ../../diskdrake/dav.pm_.c:106 ../../diskdrake/interactive.pm_.c:440
+#: ../../diskdrake/interactive.pm_.c:1089
+#: ../../diskdrake/interactive.pm_.c:1164
msgid "Mount point: "
msgstr ""
-#: ../../diskdrake/dav.pm_.c:94 ../../diskdrake/interactive.pm_.c:1159
+#: ../../diskdrake/dav.pm_.c:107 ../../diskdrake/interactive.pm_.c:1170
#, c-format
msgid "Options: %s"
msgstr "Roghnachais: %s"
@@ -1457,8 +1481,9 @@ msgstr "Roghnachais: %s"
msgid "Please make a backup of your data first"
msgstr ""
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:924
-#: ../../diskdrake/interactive.pm_.c:933 ../../diskdrake/interactive.pm_.c:999
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:934
+#: ../../diskdrake/interactive.pm_.c:943
+#: ../../diskdrake/interactive.pm_.c:1009
msgid "Read carefully!"
msgstr "Léigh go curamach"
@@ -1493,10 +1518,15 @@ msgid "Please click on a partition"
msgstr "Roghnaigh rann le do thoil"
#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
-#: ../../install_steps_gtk.pm_.c:471
+#: ../../install_steps_gtk.pm_.c:465
msgid "Details"
msgstr "Sonraí"
+#: ../../diskdrake/hd_gtk.pm_.c:252
+#, fuzzy
+msgid "No hard drives found"
+msgstr "Printéir áitiúl"
+
#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Ext2"
msgstr "Ext2"
@@ -1521,13 +1551,13 @@ msgstr "SunOS"
msgid "Swap"
msgstr "Malairte"
-#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1105
msgid "Empty"
msgstr "Folamh"
-#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:331
-#: ../../install_steps_gtk.pm_.c:389 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1679
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:325
+#: ../../install_steps_gtk.pm_.c:383 ../../mouse.pm_.c:165
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1754
msgid "Other"
msgstr "Eile"
@@ -1535,12 +1565,12 @@ msgstr "Eile"
msgid "Filesystem types:"
msgstr "Cineál córais-comhadlanna"
-#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:397
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:402
msgid "Create"
msgstr "Cruthaigh"
-#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:376
-#: ../../diskdrake/interactive.pm_.c:521 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:380
+#: ../../diskdrake/interactive.pm_.c:531 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "Cineál"
@@ -1550,7 +1580,7 @@ msgstr "Cineál"
msgid "Use ``%s'' instead"
msgstr ""
-#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:389
msgid "Delete"
msgstr "Scríos"
@@ -1558,83 +1588,83 @@ msgstr "Scríos"
msgid "Use ``Unmount'' first"
msgstr ""
-#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:513
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:518
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:173
+#: ../../diskdrake/interactive.pm_.c:174
#, fuzzy
msgid "Choose a partition"
msgstr "Roghnaigh gníomh"
-#: ../../diskdrake/interactive.pm_.c:173
+#: ../../diskdrake/interactive.pm_.c:174
#, fuzzy
msgid "Choose another partition"
msgstr "Cruthaigh rann nua"
-#: ../../diskdrake/interactive.pm_.c:198
+#: ../../diskdrake/interactive.pm_.c:199
#, fuzzy
msgid "Exit"
msgstr "Ext2"
-#: ../../diskdrake/interactive.pm_.c:220
+#: ../../diskdrake/interactive.pm_.c:221
msgid "Toggle to expert mode"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:220
+#: ../../diskdrake/interactive.pm_.c:221
msgid "Toggle to normal mode"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:220
+#: ../../diskdrake/interactive.pm_.c:221
msgid "Undo"
msgstr "Leasú"
-#: ../../diskdrake/interactive.pm_.c:239
+#: ../../diskdrake/interactive.pm_.c:240
msgid "Continue anyway?"
msgstr "Lean ar aghaidh ar aon nós?"
-#: ../../diskdrake/interactive.pm_.c:244
+#: ../../diskdrake/interactive.pm_.c:245
msgid "Quit without saving"
msgstr "Éalaigh gan sabháil"
-#: ../../diskdrake/interactive.pm_.c:244
+#: ../../diskdrake/interactive.pm_.c:245
msgid "Quit without writing the partition table?"
msgstr "Éalaigh gan an clár-ranna a scríobh?"
-#: ../../diskdrake/interactive.pm_.c:249
+#: ../../diskdrake/interactive.pm_.c:250
#, fuzzy
msgid "Do you want to save /etc/fstab modifications"
msgstr "An bhfuil tú ag iarraidh an cumraíocht a thrial?"
-#: ../../diskdrake/interactive.pm_.c:261
+#: ../../diskdrake/interactive.pm_.c:263
msgid "Auto allocate"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:261
+#: ../../diskdrake/interactive.pm_.c:263
msgid "Clear all"
msgstr "Glan gach ceann"
-#: ../../diskdrake/interactive.pm_.c:261
+#: ../../diskdrake/interactive.pm_.c:263
#: ../../install_steps_interactive.pm_.c:214
msgid "More"
msgstr "Mór"
-#: ../../diskdrake/interactive.pm_.c:264
+#: ../../diskdrake/interactive.pm_.c:267
#, fuzzy
msgid "Hard drive information"
msgstr "Eolas R-Phost"
-#: ../../diskdrake/interactive.pm_.c:294
+#: ../../diskdrake/interactive.pm_.c:298
msgid "All primary partitions are used"
msgstr "Tá na ranna príofa uilig úsáidthe"
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:299
msgid "I can't add any more partition"
msgstr "Ní féidir liom rann eile a cur isteach"
-#: ../../diskdrake/interactive.pm_.c:296
+#: ../../diskdrake/interactive.pm_.c:300
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -1642,34 +1672,34 @@ msgstr ""
"Le breis ranna a bheith agat, dealaigh ceann amháin le bheith in ann "
"rannsínithe a cruthú"
-#: ../../diskdrake/interactive.pm_.c:306
+#: ../../diskdrake/interactive.pm_.c:310
#, fuzzy
msgid "Save partition table"
msgstr "Scriobh clár-ranna"
-#: ../../diskdrake/interactive.pm_.c:307
+#: ../../diskdrake/interactive.pm_.c:311
#, fuzzy
msgid "Restore partition table"
msgstr "Scriobh clár-ranna"
-#: ../../diskdrake/interactive.pm_.c:308
+#: ../../diskdrake/interactive.pm_.c:312
msgid "Rescue partition table"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:310
+#: ../../diskdrake/interactive.pm_.c:314
#, fuzzy
msgid "Reload partition table"
msgstr "Scriobh clár-ranna"
-#: ../../diskdrake/interactive.pm_.c:315
+#: ../../diskdrake/interactive.pm_.c:319
msgid "Removable media automounting"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:324 ../../diskdrake/interactive.pm_.c:344
+#: ../../diskdrake/interactive.pm_.c:328 ../../diskdrake/interactive.pm_.c:348
msgid "Select file"
msgstr "Roghnaigh Comhad"
-#: ../../diskdrake/interactive.pm_.c:331
+#: ../../diskdrake/interactive.pm_.c:335
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1677,11 +1707,11 @@ msgstr ""
"Níl an méid céanna ar an rann cúltaca\n"
"Lean ar aghaidh ar aon nós?"
-#: ../../diskdrake/interactive.pm_.c:345
+#: ../../diskdrake/interactive.pm_.c:349
msgid "Warning"
msgstr "Rabhadh"
-#: ../../diskdrake/interactive.pm_.c:346
+#: ../../diskdrake/interactive.pm_.c:350
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1689,254 +1719,246 @@ msgstr ""
"Cur diosca flapach sa dioscthiomant\n"
"Caillfear gach sonra ar an dhiosca seo"
-#: ../../diskdrake/interactive.pm_.c:357
+#: ../../diskdrake/interactive.pm_.c:361
msgid "Trying to rescue partition table"
msgstr "Ag iarraidh an clár-ranna a tarrtháil"
-#: ../../diskdrake/interactive.pm_.c:363
+#: ../../diskdrake/interactive.pm_.c:367
#, fuzzy
msgid "Detailed information"
msgstr "Eolas R-Phost"
-#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:652
+#: ../../diskdrake/interactive.pm_.c:382 ../../diskdrake/interactive.pm_.c:662
msgid "Resize"
msgstr "Athméidigh"
-#: ../../diskdrake/interactive.pm_.c:379 ../../diskdrake/interactive.pm_.c:705
+#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/interactive.pm_.c:715
msgid "Move"
msgstr "Bog"
-#: ../../diskdrake/interactive.pm_.c:380
+#: ../../diskdrake/interactive.pm_.c:384
msgid "Format"
msgstr "Formáidigh"
-#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/smbnfs_gtk.pm_.c:82
-msgid "Mount"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:382
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Add to RAID"
msgstr "Cur le RAID"
-#: ../../diskdrake/interactive.pm_.c:383
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Add to LVM"
msgstr "Cur le LVM"
-#: ../../diskdrake/interactive.pm_.c:384 ../../diskdrake/smbnfs_gtk.pm_.c:81
-msgid "Unmount"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/interactive.pm_.c:390
msgid "Remove from RAID"
msgstr "Bain ó RAID"
-#: ../../diskdrake/interactive.pm_.c:387
+#: ../../diskdrake/interactive.pm_.c:391
msgid "Remove from LVM"
msgstr "Bain ó RAID"
-#: ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/interactive.pm_.c:392
msgid "Modify RAID"
msgstr "Athraigh RAID"
-#: ../../diskdrake/interactive.pm_.c:389
+#: ../../diskdrake/interactive.pm_.c:393
msgid "Use for loopback"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:428
+#: ../../diskdrake/interactive.pm_.c:433
msgid "Create a new partition"
msgstr "Cruthaigh rann nua"
-#: ../../diskdrake/interactive.pm_.c:431
+#: ../../diskdrake/interactive.pm_.c:436
msgid "Start sector: "
msgstr "Teascán tosasch: "
-#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:805
+#: ../../diskdrake/interactive.pm_.c:438 ../../diskdrake/interactive.pm_.c:815
msgid "Size in MB: "
msgstr "Méid i MB: "
-#: ../../diskdrake/interactive.pm_.c:434 ../../diskdrake/interactive.pm_.c:806
+#: ../../diskdrake/interactive.pm_.c:439 ../../diskdrake/interactive.pm_.c:816
msgid "Filesystem type: "
msgstr "Cineál córas-comhadlanna:"
-#: ../../diskdrake/interactive.pm_.c:439
+#: ../../diskdrake/interactive.pm_.c:444
msgid "Preference: "
msgstr "Tosaíocht: "
-#: ../../diskdrake/interactive.pm_.c:464
+#: ../../diskdrake/interactive.pm_.c:469
msgid ""
"You can't create a new partition\n"
"(since you reached the maximal number of primary partitions).\n"
"First remove a primary partition and create an extended partition."
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:494
+#: ../../diskdrake/interactive.pm_.c:499
#, fuzzy
msgid "Remove the loopback file?"
msgstr "Ag formáidiú comhad 'loopback' %s"
-#: ../../diskdrake/interactive.pm_.c:519
+#: ../../diskdrake/interactive.pm_.c:529
msgid "Change partition type"
msgstr "Athraigh cineál ranna"
-#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:530 ../../diskdrake/removable.pm_.c:48
#, fuzzy
msgid "Which filesystem do you want?"
msgstr "Cén rann atá uait?"
-#: ../../diskdrake/interactive.pm_.c:526
+#: ../../diskdrake/interactive.pm_.c:536
msgid "Switching from ext2 to ext3"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:556
+#: ../../diskdrake/interactive.pm_.c:566
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:557
+#: ../../diskdrake/interactive.pm_.c:567
#, c-format
msgid "Where do you want to mount device %s?"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:563
+#: ../../diskdrake/interactive.pm_.c:573
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:584
+#: ../../diskdrake/interactive.pm_.c:594
#, fuzzy, c-format
msgid "Where do you want to mount %s?"
msgstr "Céard a theastaíonn uait a dhéanamh?"
-#: ../../diskdrake/interactive.pm_.c:608
+#: ../../diskdrake/interactive.pm_.c:618
msgid "Computing FAT filesystem bounds"
msgstr "Ag ríomhadh teorainn na córais-comhadlanna FAT"
-#: ../../diskdrake/interactive.pm_.c:608 ../../diskdrake/interactive.pm_.c:667
-#: ../../install_interactive.pm_.c:131
+#: ../../diskdrake/interactive.pm_.c:618 ../../diskdrake/interactive.pm_.c:677
+#: ../../install_interactive.pm_.c:133
msgid "Resizing"
msgstr "Ag athméadú"
-#: ../../diskdrake/interactive.pm_.c:640
+#: ../../diskdrake/interactive.pm_.c:650
msgid "This partition is not resizeable"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:645
+#: ../../diskdrake/interactive.pm_.c:655
#, fuzzy
msgid "All data on this partition should be backed-up"
msgstr "caillfear gach sonra ar an rann seo"
-#: ../../diskdrake/interactive.pm_.c:647
+#: ../../diskdrake/interactive.pm_.c:657
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:652
+#: ../../diskdrake/interactive.pm_.c:662
msgid "Choose the new size"
msgstr "Roghnaigh an méid nua"
-#: ../../diskdrake/interactive.pm_.c:653
+#: ../../diskdrake/interactive.pm_.c:663
#, fuzzy
msgid "New size in MB: "
msgstr "Méid i MB: "
-#: ../../diskdrake/interactive.pm_.c:706
+#: ../../diskdrake/interactive.pm_.c:716
msgid "Which disk do you want to move it to?"
msgstr "Cén diosca ag a dteastaíonn uait é a bhogadh?"
-#: ../../diskdrake/interactive.pm_.c:707
+#: ../../diskdrake/interactive.pm_.c:717
msgid "Sector"
msgstr "Teascán"
-#: ../../diskdrake/interactive.pm_.c:708
+#: ../../diskdrake/interactive.pm_.c:718
msgid "Which sector do you want to move it to?"
msgstr "Cén tescán ag a dteastaíonn uait é a bhogadh?"
-#: ../../diskdrake/interactive.pm_.c:711
+#: ../../diskdrake/interactive.pm_.c:721
msgid "Moving"
msgstr "Ag bogadh"
-#: ../../diskdrake/interactive.pm_.c:711
+#: ../../diskdrake/interactive.pm_.c:721
msgid "Moving partition..."
msgstr "Ag bogadh rann..."
-#: ../../diskdrake/interactive.pm_.c:728
+#: ../../diskdrake/interactive.pm_.c:738
msgid "Choose an existing RAID to add to"
msgstr "Roghnaigh RAID atá ann le méadú"
-#: ../../diskdrake/interactive.pm_.c:729 ../../diskdrake/interactive.pm_.c:746
+#: ../../diskdrake/interactive.pm_.c:739 ../../diskdrake/interactive.pm_.c:756
msgid "new"
msgstr "nua"
-#: ../../diskdrake/interactive.pm_.c:744
+#: ../../diskdrake/interactive.pm_.c:754
#, fuzzy
msgid "Choose an existing LVM to add to"
msgstr "Roghnaigh RAID atá ann le méadú"
-#: ../../diskdrake/interactive.pm_.c:749
+#: ../../diskdrake/interactive.pm_.c:759
msgid "LVM name?"
msgstr "ainm LVM?"
-#: ../../diskdrake/interactive.pm_.c:790
+#: ../../diskdrake/interactive.pm_.c:800
msgid "This partition can't be used for loopback"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:803
+#: ../../diskdrake/interactive.pm_.c:813
msgid "Loopback"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:814
msgid "Loopback file name: "
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:809
+#: ../../diskdrake/interactive.pm_.c:819
#, fuzzy
msgid "Give a file name"
msgstr "Fíor ainm"
-#: ../../diskdrake/interactive.pm_.c:812
+#: ../../diskdrake/interactive.pm_.c:822
msgid "File already used by another loopback, choose another one"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:813
+#: ../../diskdrake/interactive.pm_.c:823
msgid "File already exists. Use it?"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:836
+#: ../../diskdrake/interactive.pm_.c:846
#, fuzzy
msgid "Mount options"
msgstr "Roghachais modúil:"
-#: ../../diskdrake/interactive.pm_.c:843
+#: ../../diskdrake/interactive.pm_.c:853
msgid "Various"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:907 ../../standalone/drakfloppy_.c:103
+#: ../../diskdrake/interactive.pm_.c:917 ../../standalone/drakfloppy_.c:103
msgid "device"
msgstr "feist"
-#: ../../diskdrake/interactive.pm_.c:908
+#: ../../diskdrake/interactive.pm_.c:918
msgid "level"
msgstr "leibhéal"
-#: ../../diskdrake/interactive.pm_.c:909
+#: ../../diskdrake/interactive.pm_.c:919
msgid "chunk size"
msgstr "méid smután"
-#: ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:934
msgid "Be careful: this operation is dangerous."
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:939
+#: ../../diskdrake/interactive.pm_.c:949
msgid "What type of partitioning?"
msgstr "Cén sort rannú atá ort?"
-#: ../../diskdrake/interactive.pm_.c:955
+#: ../../diskdrake/interactive.pm_.c:965
#, fuzzy, c-format
msgid "The package %s is needed. Install it?"
msgstr "Roghnaigh pacáistí ..."
-#: ../../diskdrake/interactive.pm_.c:969
+#: ../../diskdrake/interactive.pm_.c:979
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -1948,7 +1970,7 @@ msgstr ""
"Má tá tú ag úsáid LILO ní oibróidh sé, nó níl /boot uait muna n-úsáideann tú "
"LILO"
-#: ../../diskdrake/interactive.pm_.c:973
+#: ../../diskdrake/interactive.pm_.c:983
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -1959,144 +1981,144 @@ msgstr ""
"sorcóir ar an dhiosca, agus níl aon rann /boot agat.\n"
"Má tá tú chun LILO a úsáid, beidh ort rann /boot a cruthú ar ball."
-#: ../../diskdrake/interactive.pm_.c:979
+#: ../../diskdrake/interactive.pm_.c:989
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
"So be careful to add a /boot partition"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:999
+#: ../../diskdrake/interactive.pm_.c:1009
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "Scríobhfar clár diosca %s go dhiosca!"
-#: ../../diskdrake/interactive.pm_.c:1003
+#: ../../diskdrake/interactive.pm_.c:1013
msgid "You'll need to reboot before the modification can take place"
msgstr "Beidh ort an ríomhaire a aththosnú sula ndéanfar an athrú"
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1024
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1016
+#: ../../diskdrake/interactive.pm_.c:1026
msgid "Formatting"
msgstr "Ag formáidiú"
-#: ../../diskdrake/interactive.pm_.c:1017
+#: ../../diskdrake/interactive.pm_.c:1027
#, c-format
msgid "Formatting loopback file %s"
msgstr "Ag formáidiú comhad 'loopback' %s"
-#: ../../diskdrake/interactive.pm_.c:1018
-#: ../../install_steps_interactive.pm_.c:476
+#: ../../diskdrake/interactive.pm_.c:1028
+#: ../../install_steps_interactive.pm_.c:459
#, c-format
msgid "Formatting partition %s"
msgstr "Ag formáidiú rann %s"
-#: ../../diskdrake/interactive.pm_.c:1029
+#: ../../diskdrake/interactive.pm_.c:1039
#, fuzzy
msgid "Hide files"
msgstr "teip ar 'mkraid'"
-#: ../../diskdrake/interactive.pm_.c:1029
+#: ../../diskdrake/interactive.pm_.c:1039
#, fuzzy
msgid "Move files to the new partition"
msgstr "Cruthaigh rann nua"
-#: ../../diskdrake/interactive.pm_.c:1030
+#: ../../diskdrake/interactive.pm_.c:1040
#, c-format
msgid ""
"Directory %s already contains data\n"
"(%s)"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1041
+#: ../../diskdrake/interactive.pm_.c:1051
#, fuzzy
msgid "Moving files to the new partition"
msgstr "Cruthaigh rann nua"
-#: ../../diskdrake/interactive.pm_.c:1045
+#: ../../diskdrake/interactive.pm_.c:1055
#, c-format
msgid "Copying %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1049
+#: ../../diskdrake/interactive.pm_.c:1059
#, fuzzy, c-format
msgid "Removing %s"
msgstr "Réiteachaí: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1059
+#: ../../diskdrake/interactive.pm_.c:1069
#, c-format
msgid "partition %s is now known as %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1080
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1090
+#: ../../diskdrake/interactive.pm_.c:1149
msgid "Device: "
msgstr "Gaireas: "
-#: ../../diskdrake/interactive.pm_.c:1081
+#: ../../diskdrake/interactive.pm_.c:1091
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "Litir Dioscthiománt DOS: %s (buile faoi thuraim)\n"
-#: ../../diskdrake/interactive.pm_.c:1085
-#: ../../diskdrake/interactive.pm_.c:1093
-#: ../../diskdrake/interactive.pm_.c:1157
+#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1103
+#: ../../diskdrake/interactive.pm_.c:1168
msgid "Type: "
msgstr "Cineál: "
-#: ../../diskdrake/interactive.pm_.c:1089
+#: ../../diskdrake/interactive.pm_.c:1099
msgid "Name: "
msgstr "Ainm: "
-#: ../../diskdrake/interactive.pm_.c:1097
+#: ../../diskdrake/interactive.pm_.c:1107
#, c-format
msgid "Start: sector %s\n"
msgstr "Tús: teascán %s\n"
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1108
#, c-format
msgid "Size: %s"
msgstr "Méid: %s"
-#: ../../diskdrake/interactive.pm_.c:1100
+#: ../../diskdrake/interactive.pm_.c:1110
#, c-format
msgid ", %s sectors"
msgstr ", %s teascáin"
-#: ../../diskdrake/interactive.pm_.c:1102
+#: ../../diskdrake/interactive.pm_.c:1112
#, fuzzy, c-format
msgid "Cylinder %d to %d\n"
msgstr "Sorcóir %d go sorcóir %d\n"
-#: ../../diskdrake/interactive.pm_.c:1103
+#: ../../diskdrake/interactive.pm_.c:1113
msgid "Formatted\n"
msgstr "Formáidithe\n"
-#: ../../diskdrake/interactive.pm_.c:1104
+#: ../../diskdrake/interactive.pm_.c:1114
msgid "Not formatted\n"
msgstr "Neamhformáidithe\n"
-#: ../../diskdrake/interactive.pm_.c:1105
+#: ../../diskdrake/interactive.pm_.c:1115
msgid "Mounted\n"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1106
+#: ../../diskdrake/interactive.pm_.c:1116
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1108
+#: ../../diskdrake/interactive.pm_.c:1118
#, c-format
msgid ""
"Loopback file(s):\n"
" %s\n"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1109
+#: ../../diskdrake/interactive.pm_.c:1119
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -2104,27 +2126,27 @@ msgstr ""
"Rann tosaithe de ghnáth\n"
" (do thosnú MS-DOS, ní lilo)\n"
-#: ../../diskdrake/interactive.pm_.c:1111
+#: ../../diskdrake/interactive.pm_.c:1121
#, c-format
msgid "Level %s\n"
msgstr "Leibhéal %s\n"
-#: ../../diskdrake/interactive.pm_.c:1112
+#: ../../diskdrake/interactive.pm_.c:1122
#, c-format
msgid "Chunk size %s\n"
msgstr "Méid smután %s\n"
-#: ../../diskdrake/interactive.pm_.c:1113
+#: ../../diskdrake/interactive.pm_.c:1123
#, c-format
msgid "RAID-disks %s\n"
msgstr "Dioscaí RAID %s\n"
-#: ../../diskdrake/interactive.pm_.c:1115
+#: ../../diskdrake/interactive.pm_.c:1125
#, c-format
msgid "Loopback file name: %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1118
+#: ../../diskdrake/interactive.pm_.c:1128
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -2132,7 +2154,7 @@ msgid ""
"probably leave it alone.\n"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1121
+#: ../../diskdrake/interactive.pm_.c:1131
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2140,60 +2162,64 @@ msgid ""
"dual-booting your system.\n"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1140
+#: ../../diskdrake/interactive.pm_.c:1150
+msgid "Read-only"
+msgstr ""
+
+#: ../../diskdrake/interactive.pm_.c:1151
#, c-format
msgid "Size: %s\n"
msgstr "Méid: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1141
+#: ../../diskdrake/interactive.pm_.c:1152
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Céimseasamh: %s sorcóir, %s ceann, %s teascán\n"
-#: ../../diskdrake/interactive.pm_.c:1142
+#: ../../diskdrake/interactive.pm_.c:1153
#, fuzzy
msgid "Info: "
msgstr "Eolas"
-#: ../../diskdrake/interactive.pm_.c:1143
+#: ../../diskdrake/interactive.pm_.c:1154
#, c-format
msgid "LVM-disks %s\n"
msgstr "Dioscaí LVM %s\n"
-#: ../../diskdrake/interactive.pm_.c:1144
+#: ../../diskdrake/interactive.pm_.c:1155
#, c-format
msgid "Partition table type: %s\n"
msgstr "Cinéal tabla rann: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1145
+#: ../../diskdrake/interactive.pm_.c:1156
#, fuzzy, c-format
msgid "on channel %d id %d\n"
msgstr "ar bhús %d, id %d\n"
-#: ../../diskdrake/interactive.pm_.c:1175
+#: ../../diskdrake/interactive.pm_.c:1186
#, fuzzy
msgid "Filesystem encryption key"
msgstr "Cineál córas-comhadlanna:"
-#: ../../diskdrake/interactive.pm_.c:1176
+#: ../../diskdrake/interactive.pm_.c:1187
msgid "Choose your filesystem encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1179
+#: ../../diskdrake/interactive.pm_.c:1190
#, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1180
+#: ../../diskdrake/interactive.pm_.c:1191
#, fuzzy
msgid "The encryption keys do not match"
msgstr "Ní mar a chéile na pasfhocail"
-#: ../../diskdrake/interactive.pm_.c:1183
+#: ../../diskdrake/interactive.pm_.c:1194
msgid "Encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1184
+#: ../../diskdrake/interactive.pm_.c:1195
msgid "Encryption key (again)"
msgstr ""
@@ -2232,7 +2258,7 @@ msgid ""
"Please enter your username, password and domain name to access this host."
msgstr ""
-#: ../../diskdrake/smbnfs_gtk.pm_.c:178
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3527
#, fuzzy
msgid "Username"
msgstr "Ainm úsáideora"
@@ -2247,23 +2273,23 @@ msgstr "Fearannas NIS"
msgid "Search servers"
msgstr "freastalaí DNS"
-#: ../../fs.pm_.c:552 ../../fs.pm_.c:562 ../../fs.pm_.c:566 ../../fs.pm_.c:570
-#: ../../fs.pm_.c:574 ../../fs.pm_.c:578
+#: ../../fs.pm_.c:544 ../../fs.pm_.c:554 ../../fs.pm_.c:558 ../../fs.pm_.c:562
+#: ../../fs.pm_.c:566 ../../fs.pm_.c:570
#, c-format
msgid "%s formatting of %s failed"
msgstr "Formáidiú %s de %s teipithe"
-#: ../../fs.pm_.c:615
+#: ../../fs.pm_.c:607
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "níl a fhios agam conas %s a formáidiú go %s"
-#: ../../fs.pm_.c:687 ../../fs.pm_.c:731
+#: ../../fs.pm_.c:681 ../../fs.pm_.c:724
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../fs.pm_.c:746 ../../partition_table.pm_.c:602
+#: ../../fs.pm_.c:739 ../../partition_table.pm_.c:598
#, c-format
msgid "error unmounting %s: %s"
msgstr ""
@@ -2280,262 +2306,319 @@ msgstr ""
msgid "server"
msgstr "Freastalaí"
-#: ../../fsedit.pm_.c:472
+#: ../../fsedit.pm_.c:240
+#, fuzzy, c-format
+msgid ""
+"I can't read the partition table of device %s, it's too corrupted for me :(\n"
+"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
+"The other solution is to not allow DrakX to modify the partition table.\n"
+"(the error is %s)\n"
+"\n"
+"Do you agree to loose all the partitions?\n"
+msgstr ""
+"Ni féidir liom an tábla rainn a léamh, tá máchaillí ann :(\n"
+"Leanfaidh mé orm ag cealú droch rainn"
+
+#: ../../fsedit.pm_.c:501
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr ""
-#: ../../fsedit.pm_.c:473
+#: ../../fsedit.pm_.c:502
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr ""
-#: ../../fsedit.pm_.c:492
+#: ../../fsedit.pm_.c:521
msgid "Mount points must begin with a leading /"
msgstr ""
-#: ../../fsedit.pm_.c:493
+#: ../../fsedit.pm_.c:522
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr ""
-#: ../../fsedit.pm_.c:497
+#: ../../fsedit.pm_.c:526
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr ""
-#: ../../fsedit.pm_.c:499
+#: ../../fsedit.pm_.c:528
msgid "This directory should remain within the root filesystem"
msgstr ""
-#: ../../fsedit.pm_.c:501
+#: ../../fsedit.pm_.c:530
msgid ""
"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
"point\n"
msgstr ""
-#: ../../fsedit.pm_.c:503
+#: ../../fsedit.pm_.c:532
#, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr ""
-#: ../../fsedit.pm_.c:570
+#: ../../fsedit.pm_.c:599
msgid "Not enough free space for auto-allocating"
msgstr ""
-#: ../../fsedit.pm_.c:572
+#: ../../fsedit.pm_.c:601
msgid "Nothing to do"
msgstr ""
-#: ../../fsedit.pm_.c:665
+#: ../../fsedit.pm_.c:694
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Earráid ag oscailt %s do scríobh: %s"
-#: ../../fsedit.pm_.c:750
+#: ../../harddrake/sound.pm_.c:155
+msgid "No alternative driver"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:156
+#, c-format
+msgid "There's no known OSS/ALSA alternative driver for your sound card (%s)"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:158
+#, fuzzy
+msgid "Sound configuration"
+msgstr "cumraíocht"
+
+#: ../../harddrake/sound.pm_.c:159
+#, c-format
msgid ""
-"An error occurred - no valid devices were found on which to create new "
-"filesystems. Please check your hardware for the cause of this problem"
+"Here you can select an alternative driver (either OSS or ALSA) for your "
+"sound card (%s)"
msgstr ""
-"Tharla earráid - ní fhuaireadh aon gaireas ar a bhféadfaí córais-comhadlanna "
-"nua a cruthu. Ba chóir duit do chuid crua-earraí a seiceáil le cúis an fadhb "
-"a aimsiú"
-#: ../../fsedit.pm_.c:773
-msgid "You don't have any partitions!"
-msgstr "Níl aon ranna agat!"
+#: ../../harddrake/sound.pm_.c:162
+#, fuzzy
+msgid "Driver:"
+msgstr "Tiománaí"
-#: ../../harddrake/ui.pm_.c:15
+#: ../../harddrake/sound.pm_.c:173
+msgid "No known driver"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:174
+#, c-format
+msgid "There's no known driver for your sound card (%s)"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:177
+msgid "Unkown driver"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:178
+#, c-format
+msgid ""
+"The \"%s\" driver for your sound card is unlisted\n"
+"\n"
+"Please send the output of the \"lspcidrake -v\" command to\n"
+"<install at mandrakesoft dot com>\n"
+"with subject: unlisted sound driver \"%s\""
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:16
#, fuzzy
msgid "Model"
msgstr "Luchóg"
-#: ../../harddrake/ui.pm_.c:15
+#: ../../harddrake/ui.pm_.c:16
#, fuzzy
msgid "hard disk model"
msgstr "Cuimhne Charta (DMA)"
-#: ../../harddrake/ui.pm_.c:16
+#: ../../harddrake/ui.pm_.c:17
#, fuzzy
msgid "Channel"
msgstr "Cealaigh"
-#: ../../harddrake/ui.pm_.c:16
+#: ../../harddrake/ui.pm_.c:17
msgid "EIDE/SCSI channel"
msgstr ""
-#: ../../harddrake/ui.pm_.c:18
+#: ../../harddrake/ui.pm_.c:19
msgid "Bus"
msgstr ""
-#: ../../harddrake/ui.pm_.c:19
+#: ../../harddrake/ui.pm_.c:20
msgid ""
"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
msgstr ""
-#: ../../harddrake/ui.pm_.c:20
+#: ../../harddrake/ui.pm_.c:21
#, fuzzy
msgid "Module"
msgstr "Luchóg"
-#: ../../harddrake/ui.pm_.c:20
+#: ../../harddrake/ui.pm_.c:21
msgid "the module of the GNU/Linux kernel that handle that device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:21
+#: ../../harddrake/ui.pm_.c:22
msgid "Media class"
msgstr ""
-#: ../../harddrake/ui.pm_.c:21
+#: ../../harddrake/ui.pm_.c:22
msgid "class of hardware device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:22 ../../printerdrake.pm_.c:1404
+#: ../../harddrake/ui.pm_.c:23 ../../printerdrake.pm_.c:1517
msgid "Description"
msgstr "Cuntas"
-#: ../../harddrake/ui.pm_.c:22
+#: ../../harddrake/ui.pm_.c:23
msgid "this field describe the device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:24
+#: ../../harddrake/ui.pm_.c:25
#, fuzzy
msgid "Bus identification"
msgstr "Deimniú"
-#: ../../harddrake/ui.pm_.c:25
+#: ../../harddrake/ui.pm_.c:26
msgid ""
-"- PCI and USB devices : this list the vendor, device, subvendor and "
-"subdevice PCI/USB ids"
+"- PCI and USB devices: this list the vendor, device, subvendor and subdevice "
+"PCI/USB ids"
msgstr ""
-#: ../../harddrake/ui.pm_.c:27
+#: ../../harddrake/ui.pm_.c:28
msgid "Location on the bus"
msgstr ""
-#: ../../harddrake/ui.pm_.c:28
+#: ../../harddrake/ui.pm_.c:29
msgid ""
"- pci devices: this gives the PCI slot, device and function of this card\n"
"- eide devices: the device is either a slave or a master device\n"
"- scsi devices: the scsi bus and the scsi device ids"
msgstr ""
-#: ../../harddrake/ui.pm_.c:31
+#: ../../harddrake/ui.pm_.c:32
#, fuzzy
msgid "Old device file"
msgstr "Roghnaigh Comhad"
-#: ../../harddrake/ui.pm_.c:32
+#: ../../harddrake/ui.pm_.c:33
msgid "old static device name used in dev package"
msgstr ""
-#: ../../harddrake/ui.pm_.c:33
+#: ../../harddrake/ui.pm_.c:34
#, fuzzy
msgid "New devfs device"
msgstr "Gaireas na hInneal Geata"
-#: ../../harddrake/ui.pm_.c:34
+#: ../../harddrake/ui.pm_.c:35
msgid "new dinamic device name generated by incore kernel devfs"
msgstr ""
-#: ../../harddrake/ui.pm_.c:35
+#: ../../harddrake/ui.pm_.c:36
#, fuzzy
msgid "Number of buttons"
msgstr "2 cnaipí"
-#: ../../harddrake/ui.pm_.c:36
+#: ../../harddrake/ui.pm_.c:37
msgid "the vendor name of the device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:60
+#: ../../harddrake/ui.pm_.c:38
+msgid "Alternative drivers"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:39
+msgid "the list of alternative drivers for this sound card"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:63
#, fuzzy
msgid "/_Quit"
msgstr "Éalaigh"
-#: ../../harddrake/ui.pm_.c:61 ../../harddrake/ui.pm_.c:62
-#: ../../harddrake/ui.pm_.c:68 ../../standalone/logdrake_.c:110
+#: ../../harddrake/ui.pm_.c:64 ../../harddrake/ui.pm_.c:65
+#: ../../harddrake/ui.pm_.c:71 ../../standalone/logdrake_.c:110
msgid "/_Help"
msgstr "/C_úidiú"
-#: ../../harddrake/ui.pm_.c:62
+#: ../../harddrake/ui.pm_.c:65
#, fuzzy
msgid "/_Help..."
msgstr "/C_úidiú"
-#: ../../harddrake/ui.pm_.c:63
+#: ../../harddrake/ui.pm_.c:66
msgid "Harddrake help"
msgstr ""
-#: ../../harddrake/ui.pm_.c:64
+#: ../../harddrake/ui.pm_.c:67
msgid ""
"Description of the fields:\n"
"\n"
msgstr ""
-#: ../../harddrake/ui.pm_.c:68
+#: ../../harddrake/ui.pm_.c:71
#, fuzzy
msgid "/_About..."
msgstr "/Cúidiú/_Faoi..."
-#: ../../harddrake/ui.pm_.c:69
+#: ../../harddrake/ui.pm_.c:72
msgid "About Harddrake"
msgstr ""
-#: ../../harddrake/ui.pm_.c:70
+#: ../../harddrake/ui.pm_.c:73
msgid ""
"This is HardDrake, a Mandrake hardware configuration tool.\n"
"Version:"
msgstr ""
-#: ../../harddrake/ui.pm_.c:71
+#: ../../harddrake/ui.pm_.c:74
msgid "Author:"
msgstr ""
-#: ../../harddrake/ui.pm_.c:83
+#: ../../harddrake/ui.pm_.c:86
#, fuzzy
msgid "Harddrake2 version "
msgstr "leagan `kernel'"
-#: ../../harddrake/ui.pm_.c:91
+#: ../../harddrake/ui.pm_.c:103
#, fuzzy
msgid "Detected hardware"
msgstr "Leámh an t-eolais crua-earra"
-#: ../../harddrake/ui.pm_.c:92
+#: ../../harddrake/ui.pm_.c:105
#, fuzzy
-msgid "Configure module"
-msgstr "Cumraigh luchóg"
+msgid "Information"
+msgstr "Taispeán Eolas"
-#: ../../harddrake/ui.pm_.c:92
+#: ../../harddrake/ui.pm_.c:108
#, fuzzy
-msgid "Informations"
-msgstr "Taispeán Eolas"
+msgid "Configure module"
+msgstr "Cumraigh luchóg"
-#: ../../harddrake/ui.pm_.c:92
+#: ../../harddrake/ui.pm_.c:109
msgid "Run config tool"
msgstr ""
-#: ../../harddrake/ui.pm_.c:96
+#: ../../harddrake/ui.pm_.c:113
#, fuzzy
msgid "Detection in progress"
msgstr "Pointe taca dublach %s"
-#: ../../harddrake/ui.pm_.c:96 ../../interactive.pm_.c:388
+#: ../../harddrake/ui.pm_.c:113 ../../interactive.pm_.c:391
msgid "Please wait"
msgstr "Fan tamall"
-#: ../../harddrake/ui.pm_.c:139
+#: ../../harddrake/ui.pm_.c:156
msgid "primary"
msgstr ""
-#: ../../harddrake/ui.pm_.c:139
+#: ../../harddrake/ui.pm_.c:156
#, fuzzy
msgid "secondary"
msgstr "%d siocand"
-#: ../../harddrake/ui.pm_.c:176
+#: ../../harddrake/ui.pm_.c:197
msgid "You can configure each parameter of the module here."
msgstr ""
-#: ../../harddrake/ui.pm_.c:192
+#: ../../harddrake/ui.pm_.c:213
#, fuzzy, c-format
msgid "Running \"%s\" ..."
msgstr "Scríos Printéir"
@@ -2568,16 +2651,16 @@ msgstr ""
#: ../../harddrake/v4l.pm_.c:213
#, fuzzy
-msgid "Card model :"
+msgid "Card model:"
msgstr "Cuimhne Charta (DMA)"
#: ../../harddrake/v4l.pm_.c:214
#, fuzzy
-msgid "Tuner type :"
+msgid "Tuner type:"
msgstr "Athraigh cineál ranna"
#: ../../harddrake/v4l.pm_.c:215
-msgid "Number of capture buffers :"
+msgid "Number of capture buffers:"
msgstr ""
#: ../../harddrake/v4l.pm_.c:215
@@ -2586,11 +2669,11 @@ msgstr ""
#: ../../harddrake/v4l.pm_.c:217
#, fuzzy
-msgid "PLL setting :"
+msgid "PLL setting:"
msgstr "Ag formáidiú"
#: ../../harddrake/v4l.pm_.c:218
-msgid "Radio support :"
+msgid "Radio support:"
msgstr ""
#: ../../harddrake/v4l.pm_.c:218
@@ -2602,22 +2685,22 @@ msgid ""
"GNU/Linux is a multiuser system, and this means that each user can have his\n"
"own preferences, his own files and so on. You can read the ``User Guide''\n"
"to learn more. But unlike \"root\", which is the administrator, the users\n"
-"you will add here will not be entitled to change anything except their own\n"
-"files and their own configuration. You will have to create at least one\n"
-"regular user for yourself. That account is where you should log in for\n"
-"routine use. Although it is very practical to log in as \"root\" everyday,\n"
-"it may also be very dangerous! The slightest mistake could mean that your\n"
-"system would not work any more. If you make a serious mistake as a regular\n"
-"user, you may only lose some information, but not the entire system.\n"
+"you add here will not be entitled to change anything except their own files\n"
+"and their own configuration. You will have to create at least one regular\n"
+"user for yourself. That account is where you should log in for routine use.\n"
+"Although it is very practical to log in as \"root\" everyday, it may also\n"
+"be very dangerous! The slightest mistake could mean that your system would\n"
+"not work any more. If you make a serious mistake as a regular user, you may\n"
+"only lose some information, but not the entire system.\n"
"\n"
"First, you have to enter your real name. This is not mandatory, of course -\n"
"as you can actually enter whatever you want. DrakX will then take the first\n"
"word you have entered in the box and will bring it over to the \"User\n"
"name\". This is the name this particular user will use to log onto the\n"
"system. You can change it. You then have to enter a password here. A\n"
-"non-privileged (regular) user's password is not as crucial as \"root\"' one\n"
-"from a security point of view, but that is no reason to neglect it: after\n"
-"all, your files are at risk.\n"
+"non-privileged (regular) user's password is not as crucial as the \"root\"'\n"
+"one from a security point of view, but that is no reason to neglect it:\n"
+"after all, your files are at risk.\n"
"\n"
"If you click on \"Accept user\", you can then add as many as you want. Add\n"
"a user for each one of your friends: your father or your sister, for\n"
@@ -2696,7 +2779,7 @@ msgid ""
"to have a graphical workstation!\n"
"\n"
"Moving the mouse cursor over a group name will display a short explanatory\n"
-"text about that group. If you deselect all groups when performing a regular\n"
+"text about that group. If you unselect all groups when performing a regular\n"
"installation (by opposition to an upgrade), a dialog will pop up proposing\n"
"different options for a minimal installation:\n"
"\n"
@@ -2722,10 +2805,10 @@ msgstr ""
#: ../../help.pm_.c:128
msgid ""
-"Finally, depending on whether or not you selected individual packages, you\n"
-"will be presented a tree containing all packages classified by groups and\n"
-"subgroups. While browsing the tree, you can select entire groups,\n"
-"subgroups, or individual packages.\n"
+"Finally, depending on whether or not you chose to be able to select\n"
+"individual packages, you will be presented a tree containing all packages\n"
+"classified by groups and subgroups. While browsing the tree, you can select\n"
+"entire groups, subgroups, or individual packages.\n"
"\n"
"Whenever you select a package on the tree, a description appears on the\n"
"right. When your selection is finished, click the \"Install\" button which\n"
@@ -2760,11 +2843,11 @@ msgstr ""
#: ../../help.pm_.c:164
msgid ""
-"You are now proposed to set up your Internet/network connection. If you\n"
-"wish to connect your computer to the Internet or to a local network, click\n"
-"\"OK\". The autodetection of network devices and modem will be launched. If\n"
-"this detection fails, uncheck the \"Use auto detection\" box next time. You\n"
-"may also choose not to configure the network, or do it later; in that case,\n"
+"You are now able to set up your Internet/network connection. If you wish to\n"
+"connect your computer to the Internet or to a local network, click \"OK\".\n"
+"The autodetection of network devices and modem will be launched. If this\n"
+"detection fails, uncheck the \"Use auto detection\" box next time. You may\n"
+"also choose not to configure the network, or do it later; in that case,\n"
"simply click the \"Cancel\" button.\n"
"\n"
"Available connections are: traditional modem, ISDN modem, ADSL connection,\n"
@@ -2805,7 +2888,7 @@ msgstr ""
msgid ""
"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
"local time according to the time zone you selected. It is however possible\n"
-"to deactivate this by deselecting \"Hardware clock set to GMT\" so that the\n"
+"to deactivate this by unselecting \"Hardware clock set to GMT\" so that the\n"
"hardware clock is the same as the system clock. This is useful when the\n"
"machine is hosting another operating system like Windows.\n"
"\n"
@@ -2836,24 +2919,12 @@ msgid ""
"If you can see the message during the test, and answer \"Yes\", then DrakX\n"
"will proceed to the next step. If you cannot see the message, it simply\n"
"means that the configuration was wrong and the test will automatically end\n"
-"after 10 seconds, restoring the screen."
+"after 10 seconds, restoring the screen. Refer then to the Video\n"
+"configuration section of the user guide for more information on how to\n"
+"configure your display."
msgstr ""
-#: ../../help.pm_.c:237
-msgid ""
-"The first time you try the X configuration, you may not be very satisfied\n"
-"with its display (screen is too small, shifted left or right...). Hence,\n"
-"even if X starts up correctly, DrakX then asks you if the configuration\n"
-"suits you. It will also propose to change it by displaying a list of valid\n"
-"modes it could find, asking you to select one.\n"
-"\n"
-"As a last resort, if you still cannot get X to work, choose \"Change\n"
-"graphics card\", select \"Unlisted card\", and when prompted on which\n"
-"server, choose \"FBDev\". This is a failsafe option which works with any\n"
-"modern graphics card. Then choose \"Test again\" to be sure."
-msgstr ""
-
-#: ../../help.pm_.c:249
+#: ../../help.pm_.c:239
msgid ""
"Finally, you will be asked whether you want to see the graphical interface\n"
"at boot. Note this question will be asked even if you chose not to test the\n"
@@ -2862,7 +2933,7 @@ msgid ""
"configured."
msgstr ""
-#: ../../help.pm_.c:256
+#: ../../help.pm_.c:246
msgid ""
"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
@@ -2882,13 +2953,13 @@ msgid ""
"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
"password, or any other reason.\n"
"\n"
-"When you click on this step, you will be asked to enter a disk inside the\n"
-"drive. The floppy disk you will insert must be empty or contain data which\n"
-"you do not need. You will not have to format it since DrakX will rewrite\n"
-"the whole disk."
+"If you say \"Yes\", you will be asked to enter a disk inside the drive. The\n"
+"floppy disk you will insert must be empty or contain data which you do not\n"
+"need. You will not have to format it since DrakX will rewrite the whole\n"
+"disk."
msgstr ""
-#: ../../help.pm_.c:280
+#: ../../help.pm_.c:270
msgid ""
"At this point, you need to choose where you want to install the Mandrake\n"
"Linux operating system on your hard drive. If your hard drive is empty or\n"
@@ -2921,7 +2992,9 @@ msgid ""
"\n"
" * \"Use existing partition\": the wizard has detected one or more existing\n"
"Linux partitions on your hard drive. If you want to use them, choose this\n"
-"option;\n"
+"option. You will then be asked to choose the mount points associated to\n"
+"each of the partitions. The legacy mount points are selected by default,\n"
+"and you should generally keep them.\n"
"\n"
" * \"Use the free space on the Windows; partition\": if Microsoft Windows\n"
"is installed on your hard drive and takes all the space available on it,\n"
@@ -2954,10 +3027,12 @@ msgid ""
" * \"Expert mode\": choose this option if you want to manually partition\n"
"your hard drive. Be careful - it is a powerful but dangerous choice. You\n"
"can very easily lose all your data. Hence, do not choose this unless you\n"
-"know what you are doing."
+"know what you are doing. To know how do use the DiskDrake utility used\n"
+"here, refer to the section ``Managing Your Partitions'' of the ````User\n"
+"Guide''''"
msgstr ""
-#: ../../help.pm_.c:347
+#: ../../help.pm_.c:341
msgid ""
"There you are. Installation is now complete and your GNU/Linux system is\n"
"ready to use. Just click \"OK\" to reboot the system. You can start\n"
@@ -2990,7 +3065,7 @@ msgid ""
"\"mformat a:\")"
msgstr ""
-#: ../../help.pm_.c:378
+#: ../../help.pm_.c:372
msgid ""
"Any partitions that have been newly defined must be formatted for use\n"
"(formatting means creating a filesystem).\n"
@@ -3018,7 +3093,7 @@ msgid ""
"for bad blocks on the disk."
msgstr ""
-#: ../../help.pm_.c:404
+#: ../../help.pm_.c:398
msgid ""
"Your new Mandrake Linux operating system is currently being installed.\n"
"Depending on the number of packages you will be installing and the speed of\n"
@@ -3028,12 +3103,12 @@ msgid ""
"Please be patient."
msgstr ""
-#: ../../help.pm_.c:412
+#: ../../help.pm_.c:406
msgid ""
"At the time you are installing Mandrake Linux, it is likely that some\n"
"packages have been updated since the initial release. Some bugs may have\n"
"been fixed, and security issues solved. To allow you to benefit from these\n"
-"updates, you are now proposed to download them from the Internet. Choose\n"
+"updates, you are now able to download them from the Internet. Choose\n"
"\"Yes\" if you have a working Internet connection, or \"No\" if you prefer\n"
"to install updated packages later.\n"
"\n"
@@ -3043,7 +3118,7 @@ msgid ""
"install the selected package(s), or \"Cancel\" to abort."
msgstr ""
-#: ../../help.pm_.c:425
+#: ../../help.pm_.c:419
msgid ""
"Before continuing, you should read carefully the terms of the license. It\n"
"covers the whole Mandrake Linux distribution, and if you do not agree with\n"
@@ -3052,19 +3127,19 @@ msgid ""
"\"Accept\" button."
msgstr ""
-#: ../../help.pm_.c:432
+#: ../../help.pm_.c:426
msgid ""
"At this point, it is time to choose the security level desired for the\n"
"machine. As a rule of thumb, the more exposed the machine is, and the more\n"
"the data stored in it is crucial, the higher the security level should be.\n"
"However, a higher security level is generally obtained at the expense of\n"
-"easiness of use. Refer to the \"msec\" chapter of the ``Reference Manual''\n"
-"to get more information about the meaning of these levels.\n"
+"ease of use. Refer to the \"msec\" chapter of the ``Reference Manual'' to\n"
+"get more information about the meaning of these levels.\n"
"\n"
"If you do not know what to choose, keep the default option."
msgstr ""
-#: ../../help.pm_.c:442
+#: ../../help.pm_.c:436
msgid ""
"At this point, you need to choose which partition(s) will be used for the\n"
"installation of your Mandrake Linux system. If partitions have already been\n"
@@ -3081,26 +3156,26 @@ msgid ""
" * \"Clear all\": this option deletes all partitions on the selected hard\n"
"drive;\n"
"\n"
-" * \"Auto allocate\": this option enables to automatically create \"Ext2\"\n"
-"and swap partitions in free space of your hard drive;\n"
+" * \"Auto allocate\": this option enables to automatically create ext3 and\n"
+"swap partitions in free space of your hard drive;\n"
"\n"
-" * \"More\": gives access to additional features:\n"
+"\"More\": gives access to additional features:\n"
"\n"
-" * \"Save partition table\": saves the partition table to a floppy.\n"
-"Useful for later partition-table recovery if necessary. It is strongly\n"
-"recommended to perform this step;\n"
+" * \"Save partition table\": saves the partition table to a floppy. Useful\n"
+"for later partition-table recovery if necessary. It is strongly recommended\n"
+"to perform this step;\n"
"\n"
-" * \"Restore partition table\": allows to restore a previously saved\n"
+" * \"Restore partition table\": allows to restore a previously saved\n"
"partition table from floppy disk;\n"
"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you\n"
-"can try to recover it using this option. Please be careful and remember\n"
-"that it can fail;\n"
+" * \"Rescue partition table\": if your partition table is damaged, you can\n"
+"try to recover it using this option. Please be careful and remember that it\n"
+"can fail;\n"
"\n"
-" * \"Reload partition table\": discards all changes and loads your\n"
-"initial partition table;\n"
+" * \"Reload partition table\": discards all changes and loads your initial\n"
+"partition table;\n"
"\n"
-" * \"Removable media automounting\": unchecking this option will force\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
"users to manually mount and unmount removable medias such as floppies and\n"
"CD-ROMs.\n"
"\n"
@@ -3128,7 +3203,7 @@ msgid ""
" * Ctrl-m to set the mount point.\n"
"\n"
"To get information about the different filesystem types available, please\n"
-"read the ext2fs chapter from the ``Reference Manual''.\n"
+"read the ext2FS chapter from the ``Reference Manual''.\n"
"\n"
"If you are installing on a PPC machine, you will want to create a small HFS\n"
"``bootstrap'' partition of at least 1MB, which will be used by the yaboot\n"
@@ -3137,7 +3212,7 @@ msgid ""
"emergency boot situations."
msgstr ""
-#: ../../help.pm_.c:513
+#: ../../help.pm_.c:507
msgid ""
"More than one Microsoft partition has been detected on your hard drive.\n"
"Please choose the one you want to resize in order to install your new\n"
@@ -3170,34 +3245,34 @@ msgid ""
"disk or partition is called \"C:\")."
msgstr ""
-#: ../../help.pm_.c:544
+#: ../../help.pm_.c:538
msgid "Please be patient. This operation can take several minutes."
msgstr ""
-#: ../../help.pm_.c:547
+#: ../../help.pm_.c:541
msgid ""
"DrakX now needs to know if you want to perform a default (\"Recommended\")\n"
"installation or if you want to have greater control (\"Expert\"). You can\n"
"also choose to do a new install or an upgrade of an existing Mandrake Linux\n"
"system:\n"
"\n"
-" * \"Install\": completely wipes out the old system. In fact, depending on\n"
-"what currently holds your machine, you will be able to keep some old (Linux\n"
-"or other) partitions unchanged;\n"
+" * \"Install\": completely wipes out the old system, however, depending on\n"
+"what is currently installed on your machine, you may be able to keep some\n"
+"old partitions (Linux or otherwise) unchanged;\n"
"\n"
" * \"Upgrade\": this installation class allows to simply update the\n"
"packages currently installed on your Mandrake Linux system. It keeps the\n"
"current partitions of your hard drives as well as user configurations. All\n"
-"other configuration steps remain available with respect to plain\n"
+"other configuration steps remain available, similar to a normal\n"
"installation;\n"
"\n"
-" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
-"existing Mandrake Linux system while keeping all system configurations\n"
-"unchanged. Adding new packages to the current installation is also\n"
-"possible.\n"
+" * \"Upgrade Packages Only\": this new installation class allows you to\n"
+"upgrade an existing Mandrake Linux system while keeping all system\n"
+"configurations unchanged. Adding new packages to the current installation\n"
+"is also possible.\n"
"\n"
-"Upgrades should work fine for Mandrake Linux systems starting from \"8.1\"\n"
-"release.\n"
+"Upgrades should work fine on Mandrake Linux systems containing version\n"
+"\"8.1\" or later.\n"
"\n"
"Depending on your knowledge of GNU/Linux, select one of the following\n"
"choices:\n"
@@ -3206,30 +3281,35 @@ msgid ""
"operating system. The installation will be very easy and you will only be\n"
"asked a few questions;\n"
"\n"
-" * Expert: if you have a good knowledge of GNU/Linux, you can choose this\n"
-"installation class. The expert installation will allow you to perform a\n"
-"highly-customized installation. Answering some of the questions can be\n"
-"difficult if you do not have a good knowledge of GNU/Linux, so do not\n"
-"choose this unless you know what you are doing."
+" * Expert: if you have a good understanding of GNU/Linux, you may wish to\n"
+"perform a highly customized installation. Some of the decisions you will\n"
+"have to make may be difficult if you do not have good knowledge of\n"
+"GNU/Linux, so it is not recommended that those without a fair amount of\n"
+"experience select this installation class."
msgstr ""
-#: ../../help.pm_.c:584
+#: ../../help.pm_.c:578
msgid ""
"Normally, DrakX selects the right keyboard for you (depending on the\n"
-"language you have chosen) and you won't even see this step. However, you\n"
-"might not have a keyboard that corresponds exactly to your language: for\n"
-"example, if you are an English speaking Swiss person, you may still want\n"
-"your keyboard to be a Swiss keyboard. Or if you speak English but are\n"
-"located in Quebec, you may find yourself in the same situation. In both\n"
-"cases, you will have to go back to this installation step and select an\n"
-"appropriate keyboard from the list.\n"
+"language you have chosen). However, you might not have a keyboard that\n"
+"corresponds exactly to your language: for example, if you are an English\n"
+"speaking Swiss person, you may still want your keyboard to be a Swiss\n"
+"keyboard. Or if you speak English but are located in Quebec, you may find\n"
+"yourself in the same situation. In both cases, you will have to go back to\n"
+"this installation step and select an appropriate keyboard from the list.\n"
"\n"
"Click on the \"More\" button to be presented with the complete list of\n"
-"supported keyboards."
+"supported keyboards.\n"
+"\n"
+"If you choose a keyboard layout based on a non-latin alphabet, you will be\n"
+"asked on next dialog to choose the key binding that will switch the\n"
+"keyboard layout between the latin and non latin layouts."
msgstr ""
-#: ../../help.pm_.c:597
+#: ../../help.pm_.c:594
msgid ""
+"The first step is to choose your preferred language.\n"
+"\n"
"Please choose your preferred language for installation and system usage.\n"
"\n"
"Clicking on the \"Advanced\" button will allow you to select other\n"
@@ -3243,7 +3323,7 @@ msgid ""
"additional locales, click the \"OK\" button to continue."
msgstr ""
-#: ../../help.pm_.c:610
+#: ../../help.pm_.c:609
msgid ""
"DrakX generally detects the number of buttons your mouse has. If not, it\n"
"assumes you have a two-button mouse and will set it up for third-button\n"
@@ -3256,16 +3336,23 @@ msgid ""
"If you choose a mouse other than the default, a test screen will be\n"
"displayed. Use the buttons and wheel to verify that the settings are\n"
"correct. If the mouse is not working well, press the space bar or [Return]\n"
-"to \"Cancel\" and choose again."
+"to \"Cancel\" and choose again.\n"
+"\n"
+"Wheel mouses are sometimes not automatically detected. You will need to\n"
+"manually select it in the list. Be sure to select the one corresponding to\n"
+"the correct port it is attached to. After you have pressed the \"OK\"\n"
+"button, a mouse image is displayed. You then need to move the wheel of your\n"
+"mouse to activate it correctly. Then test all buttons and movements are\n"
+"correct."
msgstr ""
-#: ../../help.pm_.c:624
+#: ../../help.pm_.c:630
msgid ""
"Please select the correct port. For example, the \"COM1\" port under\n"
"Windows is named \"ttyS0\" under GNU/Linux."
msgstr ""
-#: ../../help.pm_.c:628
+#: ../../help.pm_.c:634
msgid ""
"This is the most crucial decision point for the security of your GNU/Linux\n"
"system: you have to enter the \"root\" password. \"root\" is the system\n"
@@ -3295,15 +3382,15 @@ msgid ""
"In Expert mode, you will be asked if you will be connecting to an\n"
"authentication server, like NIS or LDAP.\n"
"\n"
-"If your network uses the LDAP (or NIS) protocol for authentication, select\n"
-"\"LDAP\" (or \"NIS\") as authentication. If you do not know, ask your\n"
-"network administrator.\n"
+"If your network uses either of the LDAP, NIS, or PDC Windows Domain\n"
+"authentication services, select the appropriate one as \"authentication\".\n"
+"If you do not know, ask your network administrator.\n"
"\n"
"If your computer is not connected to any administrated network, you will\n"
"want to choose \"Local files\" for authentication."
msgstr ""
-#: ../../help.pm_.c:664
+#: ../../help.pm_.c:670
msgid ""
"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
@@ -3342,8 +3429,11 @@ msgid ""
"options. !!\n"
"\n"
"Clicking the \"Advanced\" button in this dialog will offer many advanced\n"
-"options, which are reserved to the expert user.\n"
-"\n"
+"options, which are reserved for the expert user."
+msgstr ""
+
+#: ../../help.pm_.c:710
+msgid ""
"After you have configured the general bootloader parameters, the list of\n"
"boot options which will be available at boot time will be displayed.\n"
"\n"
@@ -3351,16 +3441,7 @@ msgid ""
"automatically be added to the boot menu. Here, you can choose to fine-tune\n"
"the existing options. Select an entry and click \"Modify\" to modify or\n"
"remove it; \"Add\" creates a new entry; and \"Done\" goes on to the next\n"
-"installation step."
-msgstr ""
-
-#: ../../help.pm_.c:713
-msgid ""
-"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
-"either GNU/Linux or any other operating system present on your computer.\n"
-"Normally, these other operating systems are correctly detected and\n"
-"installed. If this is not the case, you can add an entry by hand in this\n"
-"screen. Be careful to choose the correct parameters.\n"
+"installation step.\n"
"\n"
"You may also not want to give access to these other operating systems to\n"
"anyone. In which case, you can delete the corresponding entries. But then,\n"
@@ -3408,18 +3489,18 @@ msgstr ""
#: ../../help.pm_.c:759
msgid ""
-"DrakX now detects any IDE device present in your computer. It will also\n"
-"scan for one or more PCI SCSI card(s) on your system. If a SCSI card is\n"
+"DrakX now detects any IDE devices present in your computer. It will also\n"
+"scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
"found, DrakX will automatically install the appropriate driver.\n"
"\n"
"Because hardware detection does not always detect a piece of hardware,\n"
"DrakX will ask you to confirm if a PCI SCSI card is present. Click \"Yes\"\n"
"if you know that there is a SCSI card installed in your machine. You will\n"
-"be presented a list of SCSI cards to choose from. Click \"No\" if you have\n"
-"no SCSI hardware. If you are unsure, you can check the list of hardware\n"
-"detected in your machine by selecting \"See hardware info\" and clicking\n"
-"\"OK\". Examine the list of hardware and then click on the \"OK\" button to\n"
-"return to the SCSI interface question.\n"
+"be presented with a list of SCSI cards to choose from. Click \"No\" if you\n"
+"have no SCSI hardware. If you are unsure, you can check the list of\n"
+"hardware detected in your machine by selecting \"See hardware info\" and\n"
+"clicking \"OK\". Examine the list of hardware and then click on the \"OK\"\n"
+"button to return to the SCSI interface question.\n"
"\n"
"If you have to manually specify your adapter, DrakX will ask if you want to\n"
"specify options for it. You should allow DrakX to probe the hardware for\n"
@@ -3536,7 +3617,9 @@ msgid ""
"order to configure the clock according to the time zone you are in;\n"
"\n"
" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
-"configuration wizard;\n"
+"configuration wizard. Consult the corresponding chapter of the ``User\n"
+"Guide'' for more information on how to setup a new printer. The interface\n"
+"presented there is similar to the one used during installation;\n"
"\n"
" * \"Sound card\": if a sound card is detected on your system, it is\n"
"displayed here. No modification possible at installation time;\n"
@@ -3549,14 +3632,14 @@ msgid ""
"associated with it."
msgstr ""
-#: ../../help.pm_.c:894
+#: ../../help.pm_.c:896
msgid ""
"Choose the hard drive you want to erase in order to install your new\n"
"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
"and will not be recoverable!"
msgstr ""
-#: ../../help.pm_.c:899
+#: ../../help.pm_.c:901
msgid ""
"Click on \"OK\" if you want to delete all data and partitions present on\n"
"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
@@ -3580,7 +3663,7 @@ msgstr ""
msgid "You must also format %s"
msgstr ""
-#: ../../install_any.pm_.c:418
+#: ../../install_any.pm_.c:423
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -3595,30 +3678,48 @@ msgid ""
"Do you really want to install these servers?\n"
msgstr ""
-#: ../../install_any.pm_.c:453
+#: ../../install_any.pm_.c:441
+#, c-format
+msgid ""
+"The following packages will be removed to allow upgrading your system: %s\n"
+"\n"
+"\n"
+"Do you really want to remove these packages?\n"
+msgstr ""
+
+#: ../../install_any.pm_.c:471
msgid "Can't use broadcast with no NIS domain"
msgstr ""
-#: ../../install_any.pm_.c:841
+#: ../../install_any.pm_.c:862
#, fuzzy, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Cur isteach diosca sa dioscthiomant %s"
-#: ../../install_any.pm_.c:845
+#: ../../install_any.pm_.c:866
msgid "This floppy is not FAT formatted"
msgstr ""
-#: ../../install_any.pm_.c:857
+#: ../../install_any.pm_.c:878
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
msgstr ""
-#: ../../install_any.pm_.c:880 ../../partition_table.pm_.c:771
+#: ../../install_any.pm_.c:901 ../../partition_table.pm_.c:767
#, c-format
msgid "Error reading file %s"
msgstr "Earráid ag léamh comhad %s"
+#: ../../install_any.pm_.c:1023
+msgid ""
+"An error occurred - no valid devices were found on which to create new "
+"filesystems. Please check your hardware for the cause of this problem"
+msgstr ""
+"Tharla earráid - ní fhuaireadh aon gaireas ar a bhféadfaí córais-comhadlanna "
+"nua a cruthu. Ba chóir duit do chuid crua-earraí a seiceáil le cúis an fadhb "
+"a aimsiú"
+
#: ../../install_interactive.pm_.c:23
#, c-format
msgid ""
@@ -3647,76 +3748,76 @@ msgstr ""
"\n"
"x1Lean ar aghaidh ar aon nós?"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:168
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:169
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr ""
-#: ../../install_interactive.pm_.c:91
+#: ../../install_interactive.pm_.c:92
msgid "Use free space"
msgstr "Úsáid spás saor"
-#: ../../install_interactive.pm_.c:93
+#: ../../install_interactive.pm_.c:94
msgid "Not enough free space to allocate new partitions"
msgstr ""
-#: ../../install_interactive.pm_.c:101
+#: ../../install_interactive.pm_.c:102
msgid "Use existing partitions"
msgstr ""
-#: ../../install_interactive.pm_.c:103
+#: ../../install_interactive.pm_.c:104
#, fuzzy
msgid "There is no existing partition to use"
msgstr "Ag iarraidh an clár-ranna a tarrtháil"
-#: ../../install_interactive.pm_.c:110
+#: ../../install_interactive.pm_.c:111
msgid "Use the Windows partition for loopback"
msgstr ""
-#: ../../install_interactive.pm_.c:113
+#: ../../install_interactive.pm_.c:114
#, fuzzy
msgid "Which partition do you want to use for Linux4Win?"
msgstr "Cén rann a bhfuil tú ag iarraidh úsáid mar rann fréamhach"
-#: ../../install_interactive.pm_.c:115
+#: ../../install_interactive.pm_.c:116
msgid "Choose the sizes"
msgstr "Roghnaigh an méid nua"
-#: ../../install_interactive.pm_.c:116
+#: ../../install_interactive.pm_.c:117
msgid "Root partition size in MB: "
msgstr "Méid i MB do Rhann Fréamhach:"
-#: ../../install_interactive.pm_.c:117
+#: ../../install_interactive.pm_.c:118
msgid "Swap partition size in MB: "
msgstr "Méid i MB do rhann malairte:"
-#: ../../install_interactive.pm_.c:126
+#: ../../install_interactive.pm_.c:128
msgid "Use the free space on the Windows partition"
msgstr ""
-#: ../../install_interactive.pm_.c:129
+#: ../../install_interactive.pm_.c:131
msgid "Which partition do you want to resize?"
msgstr ""
-#: ../../install_interactive.pm_.c:131
+#: ../../install_interactive.pm_.c:133
#, fuzzy
msgid "Resizing Windows partition"
msgstr "Ag ríomhadh teorainn na córais-comhadlanna FAT"
-#: ../../install_interactive.pm_.c:134
+#: ../../install_interactive.pm_.c:136
#, c-format
msgid ""
"The FAT resizer is unable to handle your partition, \n"
"the following error occured: %s"
msgstr ""
-#: ../../install_interactive.pm_.c:137
+#: ../../install_interactive.pm_.c:139
msgid ""
"Your Windows partition is too fragmented. Please reboot your computer under "
"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
"installation."
msgstr ""
-#: ../../install_interactive.pm_.c:138
+#: ../../install_interactive.pm_.c:140
msgid ""
"WARNING!\n"
"\n"
@@ -3728,82 +3829,82 @@ msgid ""
"When sure, press Ok."
msgstr ""
-#: ../../install_interactive.pm_.c:148
+#: ../../install_interactive.pm_.c:150
msgid "Which size do you want to keep for Windows on"
msgstr ""
-#: ../../install_interactive.pm_.c:149
+#: ../../install_interactive.pm_.c:151
#, c-format
msgid "partition %s"
msgstr "rann %s"
-#: ../../install_interactive.pm_.c:156
+#: ../../install_interactive.pm_.c:158
#, c-format
msgid "FAT resizing failed: %s"
msgstr "Theip ar uathathmhéadú FAT: %s"
-#: ../../install_interactive.pm_.c:171
+#: ../../install_interactive.pm_.c:173
msgid ""
"There is no FAT partition to resize or to use as loopback (or not enough "
"space left)"
msgstr ""
-#: ../../install_interactive.pm_.c:177
+#: ../../install_interactive.pm_.c:179
msgid "Erase entire disk"
msgstr "Glan diosca ina iomlán"
-#: ../../install_interactive.pm_.c:177
+#: ../../install_interactive.pm_.c:179
msgid "Remove Windows(TM)"
msgstr "Dealaigh Windows(TM)"
-#: ../../install_interactive.pm_.c:180
+#: ../../install_interactive.pm_.c:182
msgid "You have more than one hard drive, which one do you install linux on?"
msgstr ""
-#: ../../install_interactive.pm_.c:183
+#: ../../install_interactive.pm_.c:185
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr ""
-#: ../../install_interactive.pm_.c:191
+#: ../../install_interactive.pm_.c:193
msgid "Custom disk partitioning"
msgstr ""
-#: ../../install_interactive.pm_.c:195
+#: ../../install_interactive.pm_.c:197
msgid "Use fdisk"
msgstr "Úsáid fdisk"
-#: ../../install_interactive.pm_.c:198
+#: ../../install_interactive.pm_.c:200
#, c-format
msgid ""
"You can now partition %s.\n"
"When you are done, don't forget to save using `w'"
msgstr ""
-#: ../../install_interactive.pm_.c:227
+#: ../../install_interactive.pm_.c:229
#, fuzzy
msgid "You don't have enough free space on your Windows partition"
msgstr "Níl aon ranna agat!"
-#: ../../install_interactive.pm_.c:243
+#: ../../install_interactive.pm_.c:245
#, fuzzy
msgid "I can't find any room for installing"
msgstr "Ní féidir liom rann eile a cur isteach"
-#: ../../install_interactive.pm_.c:246
+#: ../../install_interactive.pm_.c:248
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr ""
-#: ../../install_interactive.pm_.c:250
+#: ../../install_interactive.pm_.c:252
#, c-format
msgid "Partitioning failed: %s"
msgstr "Theip ar rannú: %s"
-#: ../../install_interactive.pm_.c:260
+#: ../../install_interactive.pm_.c:262
msgid "Bringing up the network"
msgstr "Ag tosnú suas an ghréasán"
-#: ../../install_interactive.pm_.c:265
+#: ../../install_interactive.pm_.c:267
msgid "Bringing down the network"
msgstr "Ag dúnadh síos an ghreasán"
@@ -3815,12 +3916,12 @@ msgstr ""
"Ta earraid ann, níl a fhios agam conas é a cheartú.\n"
"Lean ort, ar do phriacal féin."
-#: ../../install_steps.pm_.c:210
+#: ../../install_steps.pm_.c:211
#, c-format
msgid "Duplicate mount point %s"
msgstr "Pointe taca dublach %s"
-#: ../../install_steps.pm_.c:379
+#: ../../install_steps.pm_.c:380
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -3828,12 +3929,12 @@ msgid ""
"\"\n"
msgstr ""
-#: ../../install_steps.pm_.c:451
+#: ../../install_steps.pm_.c:452
#, c-format
msgid "Welcome to %s"
msgstr "Fáilte go %s"
-#: ../../install_steps.pm_.c:530 ../../install_steps.pm_.c:770
+#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:772
msgid "No floppy drive available"
msgstr "Níl dioscthiománt flapach ar fáil"
@@ -3859,145 +3960,145 @@ msgstr "Rann Feistiú"
msgid "Please choose one of the following classes of installation:"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:243 ../../install_steps_interactive.pm_.c:694
+#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:678
msgid "Package Group Selection"
msgstr "Roghnú Grúpa Pacáistí"
-#: ../../install_steps_gtk.pm_.c:276 ../../install_steps_interactive.pm_.c:709
+#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:693
msgid "Individual package selection"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:299 ../../install_steps_interactive.pm_.c:633
+#: ../../install_steps_gtk.pm_.c:293 ../../install_steps_interactive.pm_.c:617
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Méid iomlán: %d / %d MB"
-#: ../../install_steps_gtk.pm_.c:341
+#: ../../install_steps_gtk.pm_.c:335
msgid "Bad package"
msgstr "Pacáiste mícheart"
-#: ../../install_steps_gtk.pm_.c:342
+#: ../../install_steps_gtk.pm_.c:336
#, c-format
msgid "Name: %s\n"
msgstr "Ainm: %s\n"
-#: ../../install_steps_gtk.pm_.c:343
+#: ../../install_steps_gtk.pm_.c:337
#, c-format
msgid "Version: %s\n"
msgstr "Leagan: %s\n"
-#: ../../install_steps_gtk.pm_.c:344
+#: ../../install_steps_gtk.pm_.c:338
#, c-format
msgid "Size: %d KB\n"
msgstr "Méid: %d KB\n"
-#: ../../install_steps_gtk.pm_.c:345
+#: ../../install_steps_gtk.pm_.c:339
#, c-format
msgid "Importance: %s\n"
msgstr "Tábhacht: %s\n"
-#: ../../install_steps_gtk.pm_.c:367
+#: ../../install_steps_gtk.pm_.c:361
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:372
+#: ../../install_steps_gtk.pm_.c:366
msgid "The following packages are going to be installed"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:373
+#: ../../install_steps_gtk.pm_.c:367
msgid "The following packages are going to be removed"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:385
+#: ../../install_steps_gtk.pm_.c:379
msgid "You can't select/unselect this package"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:397
+#: ../../install_steps_gtk.pm_.c:391
msgid "This is a mandatory package, it can't be unselected"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:399
+#: ../../install_steps_gtk.pm_.c:393
msgid "You can't unselect this package. It is already installed"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:402
+#: ../../install_steps_gtk.pm_.c:396
msgid ""
"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:405
+#: ../../install_steps_gtk.pm_.c:399
msgid "You can't unselect this package. It must be upgraded"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:410
+#: ../../install_steps_gtk.pm_.c:404
msgid "Show automatically selected packages"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:411 ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_gtk.pm_.c:405 ../../install_steps_interactive.pm_.c:255
#: ../../install_steps_interactive.pm_.c:259
-#: ../../standalone/drakbackup_.c:3600
+#: ../../standalone/drakbackup_.c:4257
msgid "Install"
msgstr "Feistiú"
-#: ../../install_steps_gtk.pm_.c:414
+#: ../../install_steps_gtk.pm_.c:408
#, fuzzy
msgid "Load/Save on floppy"
msgstr "Sabháil ar dhiosca flapach"
-#: ../../install_steps_gtk.pm_.c:415
+#: ../../install_steps_gtk.pm_.c:409
#, fuzzy
msgid "Updating package selection"
msgstr "Roghnú Grúpa Pacáistí"
-#: ../../install_steps_gtk.pm_.c:420
+#: ../../install_steps_gtk.pm_.c:414
#, fuzzy
msgid "Minimal install"
msgstr "Eirigh as Feistiú"
-#: ../../install_steps_gtk.pm_.c:435 ../../install_steps_interactive.pm_.c:538
+#: ../../install_steps_gtk.pm_.c:429 ../../install_steps_interactive.pm_.c:522
msgid "Choose the packages you want to install"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:451 ../../install_steps_interactive.pm_.c:778
+#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:762
msgid "Installing"
msgstr "Ag Feistiú"
-#: ../../install_steps_gtk.pm_.c:457
+#: ../../install_steps_gtk.pm_.c:451
msgid "Estimating"
msgstr "Ag meastú"
-#: ../../install_steps_gtk.pm_.c:464
+#: ../../install_steps_gtk.pm_.c:458
msgid "Time remaining "
msgstr "Am fagtha "
-#: ../../install_steps_gtk.pm_.c:476
+#: ../../install_steps_gtk.pm_.c:470
msgid "Please wait, preparing installation..."
msgstr "Fan tamall, ag ullmhaigh feistiú"
-#: ../../install_steps_gtk.pm_.c:560
+#: ../../install_steps_gtk.pm_.c:554
#, c-format
msgid "%d packages"
msgstr "%d pacáistí"
-#: ../../install_steps_gtk.pm_.c:565
+#: ../../install_steps_gtk.pm_.c:559
#, c-format
msgid "Installing package %s"
msgstr "Ag feistiál pacáiste %s"
-#: ../../install_steps_gtk.pm_.c:602 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:802
+#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:786
#: ../../standalone/drakautoinst_.c:202
msgid "Accept"
msgstr "Aontaigh"
-#: ../../install_steps_gtk.pm_.c:602 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:802
+#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:786
msgid "Refuse"
msgstr "Tarrtháil"
-#: ../../install_steps_gtk.pm_.c:603 ../../install_steps_interactive.pm_.c:803
+#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:787
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4007,17 +4108,17 @@ msgid ""
"If you don't have it, press Cancel to avoid installation from this Cd-Rom."
msgstr ""
-#: ../../install_steps_gtk.pm_.c:617 ../../install_steps_gtk.pm_.c:621
-#: ../../install_steps_interactive.pm_.c:815
-#: ../../install_steps_interactive.pm_.c:819
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_gtk.pm_.c:615
+#: ../../install_steps_interactive.pm_.c:799
+#: ../../install_steps_interactive.pm_.c:803
msgid "Go on anyway?"
msgstr "Lean ar aghaidh ar aon nós?"
-#: ../../install_steps_gtk.pm_.c:617 ../../install_steps_interactive.pm_.c:815
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:799
msgid "There was an error ordering packages:"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:621 ../../install_steps_interactive.pm_.c:819
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:803
msgid "There was an error installing packages:"
msgstr ""
@@ -4192,7 +4293,7 @@ msgid "Are you sure you refuse the licence?"
msgstr ""
#: ../../install_steps_interactive.pm_.c:211
-#: ../../install_steps_interactive.pm_.c:1038
+#: ../../install_steps_interactive.pm_.c:1023
#: ../../standalone/keyboarddrake_.c:31
msgid "Keyboard"
msgstr "Eocharclár"
@@ -4244,11 +4345,11 @@ msgstr "Roghnú Grúpa Pacáistí"
msgid "Please choose the type of your mouse."
msgstr "Cén cinéal luchóg atá agat?"
-#: ../../install_steps_interactive.pm_.c:281 ../../standalone/mousedrake_.c:59
+#: ../../install_steps_interactive.pm_.c:281 ../../standalone/mousedrake_.c:60
msgid "Mouse Port"
msgstr "Gaireas luchóige"
-#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:61
msgid "Please choose on which serial port your mouse is connected to."
msgstr ""
@@ -4280,188 +4381,167 @@ msgstr "Ag cumraigh IDE"
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:336
+#: ../../install_steps_interactive.pm_.c:338
msgid "No partition available"
msgstr "níl aon ranna saora ann"
-#: ../../install_steps_interactive.pm_.c:339
+#: ../../install_steps_interactive.pm_.c:341
msgid "Scanning partitions to find mount points"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:347
+#: ../../install_steps_interactive.pm_.c:349
msgid "Choose the mount points"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:366
-#, fuzzy, c-format
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to not allow DrakX to modify the partition table.\n"
-"(the error is %s)\n"
-"\n"
-"Do you agree to loose all the partitions?\n"
-msgstr ""
-"Ni féidir liom an tábla rainn a léamh, tá máchaillí ann :(\n"
-"Leanfaidh mé orm ag cealú droch rainn"
-
#: ../../install_steps_interactive.pm_.c:379
msgid ""
-"DiskDrake failed to read correctly the partition table.\n"
-"Continue at your own risk!"
-msgstr ""
-"Theip ar DiskDrake an tabla rainn a léamh i gceart.\n"
-"Lean ort, ar do phriacal féin!"
-
-#: ../../install_steps_interactive.pm_.c:396
-msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:405
+#: ../../install_steps_interactive.pm_.c:388
#, fuzzy
msgid "No root partition found to perform an upgrade"
msgstr "Roghnaigh na ranna atá le formáidiú"
-#: ../../install_steps_interactive.pm_.c:406
+#: ../../install_steps_interactive.pm_.c:389
msgid "Root Partition"
msgstr "Rann Fréamhach"
-#: ../../install_steps_interactive.pm_.c:407
+#: ../../install_steps_interactive.pm_.c:390
msgid "What is the root partition (/) of your system?"
msgstr "Céard é an rann fréamhach (/) ded' chóras?"
-#: ../../install_steps_interactive.pm_.c:421
+#: ../../install_steps_interactive.pm_.c:404
#, fuzzy
msgid "You need to reboot for the partition table modifications to take place"
msgstr "Beidh ort an ríomhaire a aththosnú sula ndéanfar an athrú"
-#: ../../install_steps_interactive.pm_.c:445
+#: ../../install_steps_interactive.pm_.c:428
msgid "Choose the partitions you want to format"
msgstr "Roghnaigh na ranna atá le formáidiú"
-#: ../../install_steps_interactive.pm_.c:446
+#: ../../install_steps_interactive.pm_.c:429
msgid "Check bad blocks?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:473
+#: ../../install_steps_interactive.pm_.c:456
msgid "Formatting partitions"
msgstr "Ag formáidiú ranna"
-#: ../../install_steps_interactive.pm_.c:475
+#: ../../install_steps_interactive.pm_.c:458
#, c-format
msgid "Creating and formatting file %s"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:480
+#: ../../install_steps_interactive.pm_.c:463
#, c-format
msgid ""
"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
"you can loose data)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:482
+#: ../../install_steps_interactive.pm_.c:465
msgid "Not enough swap space to fulfill installation, please add some"
msgstr "Nil dothain spas malartu chun insealbhu, chuir leis an spas"
-#: ../../install_steps_interactive.pm_.c:489
+#: ../../install_steps_interactive.pm_.c:472
#, fuzzy
msgid "Looking for available packages and rebuilding rpm database..."
msgstr "Ag curdach do na pacáistí atá ar fáil"
-#: ../../install_steps_interactive.pm_.c:490
+#: ../../install_steps_interactive.pm_.c:473
msgid "Looking for available packages..."
msgstr "Ag curdach do na pacáistí atá ar fáil"
-#: ../../install_steps_interactive.pm_.c:493
+#: ../../install_steps_interactive.pm_.c:476
#, fuzzy
msgid "Looking at packages already installed..."
msgstr "Roghnaigh pacáistí ..."
-#: ../../install_steps_interactive.pm_.c:497
+#: ../../install_steps_interactive.pm_.c:480
msgid "Finding packages to upgrade..."
msgstr "Ag cúrdach pacáistí le húasgrádú"
-#: ../../install_steps_interactive.pm_.c:515
+#: ../../install_steps_interactive.pm_.c:498
#, c-format
msgid ""
"Your system does not have enough space left for installation or upgrade (%d "
"> %d)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:550
+#: ../../install_steps_interactive.pm_.c:534
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:553
+#: ../../install_steps_interactive.pm_.c:537
msgid "Load from floppy"
msgstr "Aisig ó dhiosca flapach"
-#: ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_interactive.pm_.c:539
msgid "Loading from floppy"
msgstr "Aisig ó dhiosca flapach"
-#: ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_interactive.pm_.c:539
msgid "Package selection"
msgstr "Roghnú Grúpa Pacáistí"
-#: ../../install_steps_interactive.pm_.c:560
+#: ../../install_steps_interactive.pm_.c:544
#, fuzzy
msgid "Insert a floppy containing package selection"
msgstr "Cur isteach diosca sa dioscthiomant %s"
-#: ../../install_steps_interactive.pm_.c:572
+#: ../../install_steps_interactive.pm_.c:556
msgid "Save on floppy"
msgstr "Sabháil ar dhiosca flapach"
-#: ../../install_steps_interactive.pm_.c:646
+#: ../../install_steps_interactive.pm_.c:630
msgid "Selected size is larger than available space"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:660
+#: ../../install_steps_interactive.pm_.c:644
#, fuzzy
msgid "Type of install"
msgstr "Roghnaigh pacáistí a feistiú ..."
-#: ../../install_steps_interactive.pm_.c:661
+#: ../../install_steps_interactive.pm_.c:645
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:664
+#: ../../install_steps_interactive.pm_.c:648
#, fuzzy
msgid "With X"
msgstr "Fan tamall"
-#: ../../install_steps_interactive.pm_.c:666
+#: ../../install_steps_interactive.pm_.c:650
msgid "With basic documentation (recommended!)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:667
+#: ../../install_steps_interactive.pm_.c:651
msgid "Truly minimal install (especially no urpmi)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:752
+#: ../../install_steps_interactive.pm_.c:736
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
"If only some CDs are missing, unselect them, then click Ok."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:757
+#: ../../install_steps_interactive.pm_.c:741
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr ""
-#: ../../install_steps_interactive.pm_.c:778
+#: ../../install_steps_interactive.pm_.c:762
msgid "Preparing installation"
msgstr "Ag Ullmhaigh feistiú"
-#: ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:771
#, c-format
msgid ""
"Installing package %s\n"
@@ -4470,21 +4550,21 @@ msgstr ""
"Ag feisteáil pacáiste %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:833
+#: ../../install_steps_interactive.pm_.c:817
msgid "Post-install configuration"
msgstr "Cumraíocht Iar-feistú"
-#: ../../install_steps_interactive.pm_.c:839
+#: ../../install_steps_interactive.pm_.c:823
#, fuzzy, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Cur isteach diosca sa dioscthiomant %s"
-#: ../../install_steps_interactive.pm_.c:845
+#: ../../install_steps_interactive.pm_.c:829
#, fuzzy, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Cur isteach diosca folamh sa dioscthiomant %s"
-#: ../../install_steps_interactive.pm_.c:865
+#: ../../install_steps_interactive.pm_.c:849
msgid ""
"You now have the opportunity to download encryption software.\n"
"\n"
@@ -4523,7 +4603,7 @@ msgid ""
"USA"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:904
+#: ../../install_steps_interactive.pm_.c:888
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
"have been released after the distribution was released. They may\n"
@@ -4535,157 +4615,157 @@ msgid ""
"Do you want to install the updates ?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:919
+#: ../../install_steps_interactive.pm_.c:903
msgid ""
"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:924
+#: ../../install_steps_interactive.pm_.c:908
msgid "Choose a mirror from which to get the packages"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:933
+#: ../../install_steps_interactive.pm_.c:917
msgid "Contacting the mirror to get the list of available packages..."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:960
+#: ../../install_steps_interactive.pm_.c:945
msgid "Which is your timezone?"
msgstr "Cén ceann do chrois ama"
-#: ../../install_steps_interactive.pm_.c:965
+#: ../../install_steps_interactive.pm_.c:950
#, fuzzy
msgid "Hardware clock set to GMT"
msgstr "An bhfuil an clog cruaearrach ar GMT?"
-#: ../../install_steps_interactive.pm_.c:966
+#: ../../install_steps_interactive.pm_.c:951
msgid "Automatic time synchronization (using NTP)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:973
+#: ../../install_steps_interactive.pm_.c:958
msgid "NTP Server"
msgstr "Freastalaí NTP"
-#: ../../install_steps_interactive.pm_.c:1007
-#: ../../install_steps_interactive.pm_.c:1015
+#: ../../install_steps_interactive.pm_.c:992
+#: ../../install_steps_interactive.pm_.c:1000
msgid "Remote CUPS server"
msgstr "Scrios Freastalaí CUPS"
-#: ../../install_steps_interactive.pm_.c:1008
+#: ../../install_steps_interactive.pm_.c:993
msgid "No printer"
msgstr "Gan Printéir"
-#: ../../install_steps_interactive.pm_.c:1025
+#: ../../install_steps_interactive.pm_.c:1010
#, fuzzy
msgid "Do you have an ISA sound card?"
msgstr "An bhfuil ceann eile agat?"
-#: ../../install_steps_interactive.pm_.c:1027
+#: ../../install_steps_interactive.pm_.c:1012
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1029
+#: ../../install_steps_interactive.pm_.c:1014
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1034 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1019 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Coimriú"
-#: ../../install_steps_interactive.pm_.c:1037
+#: ../../install_steps_interactive.pm_.c:1022
msgid "Mouse"
msgstr "Luchóg"
-#: ../../install_steps_interactive.pm_.c:1039
+#: ../../install_steps_interactive.pm_.c:1024
msgid "Timezone"
msgstr "Am Críos"
-#: ../../install_steps_interactive.pm_.c:1040 ../../printerdrake.pm_.c:2728
-#: ../../printerdrake.pm_.c:2814
+#: ../../install_steps_interactive.pm_.c:1025 ../../printerdrake.pm_.c:2937
+#: ../../printerdrake.pm_.c:3026
msgid "Printer"
msgstr "Printéir"
-#: ../../install_steps_interactive.pm_.c:1042
+#: ../../install_steps_interactive.pm_.c:1027
msgid "ISDN card"
msgstr "Carta ISDN"
-#: ../../install_steps_interactive.pm_.c:1045
-#: ../../install_steps_interactive.pm_.c:1047
+#: ../../install_steps_interactive.pm_.c:1030
+#: ../../install_steps_interactive.pm_.c:1032
msgid "Sound card"
msgstr "Carta Fuaim"
-#: ../../install_steps_interactive.pm_.c:1049
+#: ../../install_steps_interactive.pm_.c:1034
msgid "TV card"
msgstr "Carta Telefís"
-#: ../../install_steps_interactive.pm_.c:1089
-#: ../../install_steps_interactive.pm_.c:1114
-#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1074
+#: ../../install_steps_interactive.pm_.c:1099
+#: ../../install_steps_interactive.pm_.c:1103
msgid "LDAP"
msgstr "LDAP"
-#: ../../install_steps_interactive.pm_.c:1090
-#: ../../install_steps_interactive.pm_.c:1114
-#: ../../install_steps_interactive.pm_.c:1127
+#: ../../install_steps_interactive.pm_.c:1075
+#: ../../install_steps_interactive.pm_.c:1099
+#: ../../install_steps_interactive.pm_.c:1112
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1091
-#: ../../install_steps_interactive.pm_.c:1114
-#: ../../install_steps_interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1141
+#: ../../install_steps_interactive.pm_.c:1076
+#: ../../install_steps_interactive.pm_.c:1099
+#: ../../install_steps_interactive.pm_.c:1120
+#: ../../install_steps_interactive.pm_.c:1126
#, fuzzy
msgid "Windows Domain"
msgstr "Fearannas NIS"
-#: ../../install_steps_interactive.pm_.c:1092
-#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1077
+#: ../../install_steps_interactive.pm_.c:1099
msgid "Local files"
msgstr "Chomaid Áitiúl"
-#: ../../install_steps_interactive.pm_.c:1101
-#: ../../install_steps_interactive.pm_.c:1102 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1086
+#: ../../install_steps_interactive.pm_.c:1087 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Socraigh pasfhocal root"
-#: ../../install_steps_interactive.pm_.c:1103
+#: ../../install_steps_interactive.pm_.c:1088
msgid "No password"
msgstr "Gan pasfhocal"
-#: ../../install_steps_interactive.pm_.c:1108
+#: ../../install_steps_interactive.pm_.c:1093
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1114 ../../network/modem.pm_.c:49
+#: ../../install_steps_interactive.pm_.c:1099 ../../network/modem.pm_.c:49
#: ../../standalone/drakconnect_.c:625 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Deimniú"
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1107
msgid "Authentication LDAP"
msgstr "Deimniú LDAP"
-#: ../../install_steps_interactive.pm_.c:1123
+#: ../../install_steps_interactive.pm_.c:1108
msgid "LDAP Base dn"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1124
+#: ../../install_steps_interactive.pm_.c:1109
msgid "LDAP Server"
msgstr "Freastalaí LDAP"
-#: ../../install_steps_interactive.pm_.c:1130
+#: ../../install_steps_interactive.pm_.c:1115
msgid "Authentication NIS"
msgstr "Deimniú NIS"
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1116
msgid "NIS Domain"
msgstr "Fearannas NIS"
-#: ../../install_steps_interactive.pm_.c:1132
+#: ../../install_steps_interactive.pm_.c:1117
msgid "NIS Server"
msgstr "Freastalaí NIS"
-#: ../../install_steps_interactive.pm_.c:1138
+#: ../../install_steps_interactive.pm_.c:1123
msgid ""
"For this to work for a W2K PDC, you will probably need to have the admin "
"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
@@ -4701,21 +4781,21 @@ msgid ""
"good."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1140
+#: ../../install_steps_interactive.pm_.c:1125
#, fuzzy
msgid "Authentication Windows Domain"
msgstr "Deimniú LDAP"
-#: ../../install_steps_interactive.pm_.c:1142
+#: ../../install_steps_interactive.pm_.c:1127
#, fuzzy
msgid "Domain Admin User Name"
msgstr "Ainm Fearannas"
-#: ../../install_steps_interactive.pm_.c:1143
+#: ../../install_steps_interactive.pm_.c:1128
msgid "Domain Admin Password"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1178
+#: ../../install_steps_interactive.pm_.c:1163
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
"depending on the normal bootloader. This is useful if you don't want to "
@@ -4733,19 +4813,19 @@ msgid ""
"drive and press \"Ok\"."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1194
+#: ../../install_steps_interactive.pm_.c:1179
msgid "First floppy drive"
msgstr "Cead dioscthiománt flapach"
-#: ../../install_steps_interactive.pm_.c:1195
+#: ../../install_steps_interactive.pm_.c:1180
msgid "Second floppy drive"
msgstr "Dara dioscthiomáint flapach"
-#: ../../install_steps_interactive.pm_.c:1196 ../../printerdrake.pm_.c:2277
+#: ../../install_steps_interactive.pm_.c:1181 ../../printerdrake.pm_.c:2470
msgid "Skip"
msgstr "Scipeáil"
-#: ../../install_steps_interactive.pm_.c:1201
+#: ../../install_steps_interactive.pm_.c:1186
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -4761,7 +4841,7 @@ msgid ""
"%s"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1207
+#: ../../install_steps_interactive.pm_.c:1192
msgid ""
"\n"
"\n"
@@ -4770,29 +4850,29 @@ msgid ""
"because XFS needs a very large driver)."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1215
+#: ../../install_steps_interactive.pm_.c:1200
msgid "Sorry, no floppy drive available"
msgstr "Brón orm, níl aon dioscthiománt flapach ar fáil"
-#: ../../install_steps_interactive.pm_.c:1219
+#: ../../install_steps_interactive.pm_.c:1204
#, fuzzy
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "Roghnaigh na ranna atá le formáidiú"
-#: ../../install_steps_interactive.pm_.c:1223
+#: ../../install_steps_interactive.pm_.c:1208
#, fuzzy, c-format
msgid "Insert a floppy in %s"
msgstr "Cur isteach diosca sa dioscthiomant %s"
-#: ../../install_steps_interactive.pm_.c:1226
+#: ../../install_steps_interactive.pm_.c:1211
msgid "Creating bootdisk..."
msgstr "Ag Cruthaigh diosca thosnaithe"
-#: ../../install_steps_interactive.pm_.c:1233
+#: ../../install_steps_interactive.pm_.c:1218
msgid "Preparing bootloader..."
msgstr "Ag Ullmhaigh ríomhchlar thosnaithe"
-#: ../../install_steps_interactive.pm_.c:1244
+#: ../../install_steps_interactive.pm_.c:1229
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -4800,27 +4880,27 @@ msgid ""
" need to use BootX to boot your machine"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1250
+#: ../../install_steps_interactive.pm_.c:1235
#, fuzzy
msgid "Do you want to use aboot?"
msgstr "Céard a theastaíonn uait a dhéanamh?"
-#: ../../install_steps_interactive.pm_.c:1253
+#: ../../install_steps_interactive.pm_.c:1238
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1260
+#: ../../install_steps_interactive.pm_.c:1245
#, fuzzy
msgid "Installing bootloader"
msgstr "Feistigh cód tosnaithe"
-#: ../../install_steps_interactive.pm_.c:1266
+#: ../../install_steps_interactive.pm_.c:1251
msgid "Installation of bootloader failed. The following error occured:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1274
+#: ../../install_steps_interactive.pm_.c:1259
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -4831,24 +4911,24 @@ msgid ""
"At your next boot you should see the bootloader prompt."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1308
+#: ../../install_steps_interactive.pm_.c:1293
#: ../../standalone/drakautoinst_.c:79
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Cur isteach diosca folamh sa dioscthiomant %s"
-#: ../../install_steps_interactive.pm_.c:1312
+#: ../../install_steps_interactive.pm_.c:1297
msgid "Creating auto install floppy..."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1323
+#: ../../install_steps_interactive.pm_.c:1308
msgid ""
"Some steps are not completed.\n"
"\n"
"Do you really want to quit now?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1334
+#: ../../install_steps_interactive.pm_.c:1319
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
@@ -4867,16 +4947,16 @@ msgid ""
"install chapter of the Official Mandrake Linux User's Guide."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1347
+#: ../../install_steps_interactive.pm_.c:1332
msgid "http://www.mandrakelinux.com/en/90errata.php3"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1352
+#: ../../install_steps_interactive.pm_.c:1337
#, fuzzy
msgid "Generate auto install floppy"
msgstr "Cruthaigh flapach bootáil"
-#: ../../install_steps_interactive.pm_.c:1354
+#: ../../install_steps_interactive.pm_.c:1339
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -4885,15 +4965,15 @@ msgid ""
"You may prefer to replay the installation.\n"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1359
+#: ../../install_steps_interactive.pm_.c:1344
msgid "Automated"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1359
+#: ../../install_steps_interactive.pm_.c:1344
msgid "Replay"
msgstr "Athlódaigh"
-#: ../../install_steps_interactive.pm_.c:1362
+#: ../../install_steps_interactive.pm_.c:1347
#, fuzzy
msgid "Save packages selection"
msgstr "Roghnú Grúpa Pacáistí"
@@ -4903,7 +4983,8 @@ msgstr "Roghnú Grúpa Pacáistí"
msgid "Mandrake Linux Installation %s"
msgstr "Feistiú Linux-Mandrake %s"
-#: ../../install_steps_newt.pm_.c:34
+#. -PO This string must fit in a 80-char wide text screen
+#: ../../install_steps_newt.pm_.c:35
msgid ""
" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
msgstr ""
@@ -4921,22 +5002,22 @@ msgstr ""
msgid "Choose a file"
msgstr "Roghnaigh gníomh"
-#: ../../interactive.pm_.c:317
+#: ../../interactive.pm_.c:320
msgid "Advanced"
msgstr "Réamhioaíocht"
-#: ../../interactive.pm_.c:318
+#: ../../interactive.pm_.c:321
msgid "Basic"
msgstr ""
-#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:155
-#: ../../printerdrake.pm_.c:1990
+#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:158
+#: ../../printerdrake.pm_.c:2124
msgid "<- Previous"
msgstr ""
#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
-#: ../../standalone/drakbackup_.c:3464 ../../standalone/drakbackup_.c:3491
-#: ../../standalone/drakbackup_.c:3517
+#: ../../standalone/drakbackup_.c:4112 ../../standalone/drakbackup_.c:4139
+#: ../../standalone/drakbackup_.c:4169 ../../standalone/drakbackup_.c:4195
#, fuzzy
msgid "Next"
msgstr "Teacs"
@@ -5004,380 +5085,380 @@ msgstr ""
msgid "Re-submit"
msgstr ""
-#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:152 ../../keyboard.pm_.c:187
msgid "Czech (QWERTZ)"
msgstr "Ceichís (QWERTZ)"
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:153 ../../keyboard.pm_.c:189
msgid "German"
msgstr "Gearmáinis"
-#: ../../keyboard.pm_.c:175
+#: ../../keyboard.pm_.c:154
msgid "Dvorak"
msgstr "Dvorak"
-#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:218
+#: ../../keyboard.pm_.c:155 ../../keyboard.pm_.c:197
msgid "Spanish"
msgstr "Spáinis"
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:156 ../../keyboard.pm_.c:198
msgid "Finnish"
msgstr "Fionlainnais"
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:220
+#: ../../keyboard.pm_.c:157 ../../keyboard.pm_.c:199
msgid "French"
msgstr "Francaigh"
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:158 ../../keyboard.pm_.c:231
msgid "Norwegian"
msgstr "Ioruais"
-#: ../../keyboard.pm_.c:180
+#: ../../keyboard.pm_.c:159
msgid "Polish"
msgstr "Polainnais"
-#: ../../keyboard.pm_.c:181 ../../keyboard.pm_.c:260
+#: ../../keyboard.pm_.c:160 ../../keyboard.pm_.c:239
msgid "Russian"
msgstr "Ruislís"
-#: ../../keyboard.pm_.c:183 ../../keyboard.pm_.c:262
+#: ../../keyboard.pm_.c:162 ../../keyboard.pm_.c:241
msgid "Swedish"
msgstr ""
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:278
+#: ../../keyboard.pm_.c:163 ../../keyboard.pm_.c:257
msgid "UK keyboard"
msgstr "Méarchlár UK"
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:279
+#: ../../keyboard.pm_.c:164 ../../keyboard.pm_.c:258
msgid "US keyboard"
msgstr "Meárchlár US"
-#: ../../keyboard.pm_.c:187
+#: ../../keyboard.pm_.c:166
msgid "Albanian"
msgstr ""
-#: ../../keyboard.pm_.c:188
+#: ../../keyboard.pm_.c:167
msgid "Armenian (old)"
msgstr ""
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:168
msgid "Armenian (typewriter)"
msgstr ""
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:169
msgid "Armenian (phonetic)"
msgstr ""
-#: ../../keyboard.pm_.c:195
+#: ../../keyboard.pm_.c:174
msgid "Azerbaidjani (latin)"
msgstr ""
-#: ../../keyboard.pm_.c:197
+#: ../../keyboard.pm_.c:176
msgid "Belgian"
msgstr "Belgáiris"
-#: ../../keyboard.pm_.c:198
+#: ../../keyboard.pm_.c:177
msgid "Bengali"
msgstr ""
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:178
#, fuzzy
msgid "Bulgarian (phonetic)"
msgstr "Bulgáiris"
-#: ../../keyboard.pm_.c:200
+#: ../../keyboard.pm_.c:179
#, fuzzy
msgid "Bulgarian (BDS)"
msgstr "Bulgáiris"
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:180
msgid "Brazilian (ABNT-2)"
msgstr ""
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:183
#, fuzzy
msgid "Bosnian"
msgstr "Eastóinis"
-#: ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:184
msgid "Belarusian"
msgstr "Belarúisis"
-#: ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:185
msgid "Swiss (German layout)"
msgstr "Eilvéis (Stíl Ghearmánais)"
-#: ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:186
msgid "Swiss (French layout)"
msgstr "Eilvéis (Stíl Francaigh)"
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:188
msgid "Czech (QWERTY)"
msgstr "Ceichís (QWERTY)"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:190
msgid "German (no dead keys)"
msgstr "Gearmáinis (gach meachlár marbh)"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:191
msgid "Devanagari"
msgstr ""
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:192
msgid "Danish"
msgstr "Danmharghais"
-#: ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:193
msgid "Dvorak (US)"
msgstr "Dvorak (Meiriceá)"
-#: ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:194
msgid "Dvorak (Norwegian)"
msgstr "Dvorak (Ioruais)"
-#: ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:195
#, fuzzy
msgid "Dvorak (Swedish)"
msgstr "Dvorak (Meiriceá)"
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:196
msgid "Estonian"
msgstr "Eastóinis"
-#: ../../keyboard.pm_.c:221
+#: ../../keyboard.pm_.c:200
msgid "Georgian (\"Russian\" layout)"
msgstr ""
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:201
msgid "Georgian (\"Latin\" layout)"
msgstr ""
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:202
msgid "Greek"
msgstr "Greicís"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:203
msgid "Gujarati"
msgstr ""
-#: ../../keyboard.pm_.c:225
+#: ../../keyboard.pm_.c:204
msgid "Gurmukhi"
msgstr ""
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:205
msgid "Hungarian"
msgstr "Ungárais"
-#: ../../keyboard.pm_.c:227
+#: ../../keyboard.pm_.c:206
msgid "Croatian"
msgstr "Cróitis"
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:207
msgid "Israeli"
msgstr ""
-#: ../../keyboard.pm_.c:229
+#: ../../keyboard.pm_.c:208
msgid "Israeli (Phonetic)"
msgstr ""
-#: ../../keyboard.pm_.c:230
+#: ../../keyboard.pm_.c:209
msgid "Iranian"
msgstr ""
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:210
msgid "Icelandic"
msgstr ""
-#: ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:211
msgid "Italian"
msgstr "Iodálais"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:212
msgid "Inuktitut"
msgstr ""
-#: ../../keyboard.pm_.c:234
+#: ../../keyboard.pm_.c:213
msgid "Japanese 106 keys"
msgstr "Seápainis (106 eochair)"
-#: ../../keyboard.pm_.c:237
+#: ../../keyboard.pm_.c:216
msgid "Korean keyboard"
msgstr "Méarchlár Chóiris"
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:217
msgid "Latin American"
msgstr "Mheirceá Theas"
-#: ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:218
#, fuzzy
msgid "Laotian"
msgstr "Áit"
-#: ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:219
msgid "Lithuanian AZERTY (old)"
msgstr ""
-#: ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:221
msgid "Lithuanian AZERTY (new)"
msgstr ""
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:222
msgid "Lithuanian \"number row\" QWERTY"
msgstr ""
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:223
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr ""
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:224
#, fuzzy
msgid "Latvian"
msgstr "Áit"
-#: ../../keyboard.pm_.c:246
+#: ../../keyboard.pm_.c:225
msgid "Macedonian"
msgstr ""
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:226
msgid "Myanmar (Burmese)"
msgstr ""
-#: ../../keyboard.pm_.c:248
+#: ../../keyboard.pm_.c:227
msgid "Mongolian (cyrillic)"
msgstr ""
-#: ../../keyboard.pm_.c:249
+#: ../../keyboard.pm_.c:228
msgid "Maltese (UK)"
msgstr ""
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:229
msgid "Maltese (US)"
msgstr ""
-#: ../../keyboard.pm_.c:251
+#: ../../keyboard.pm_.c:230
msgid "Dutch"
msgstr ""
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:232
msgid "Polish (qwerty layout)"
msgstr ""
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:233
msgid "Polish (qwertz layout)"
msgstr ""
-#: ../../keyboard.pm_.c:255
+#: ../../keyboard.pm_.c:234
msgid "Portuguese"
msgstr ""
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:235
msgid "Canadian (Quebec)"
msgstr ""
-#: ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:237
#, fuzzy
msgid "Romanian (qwertz)"
msgstr "Rúisis (Yawerty)"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:238
#, fuzzy
msgid "Romanian (qwerty)"
msgstr "Rúisis (Yawerty)"
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:240
msgid "Russian (Yawerty)"
msgstr "Rúisis (Yawerty)"
-#: ../../keyboard.pm_.c:263
+#: ../../keyboard.pm_.c:242
msgid "Slovenian"
msgstr ""
-#: ../../keyboard.pm_.c:264
+#: ../../keyboard.pm_.c:243
msgid "Slovakian (QWERTZ)"
msgstr "Slóbaicis (QWERTZ)"
-#: ../../keyboard.pm_.c:265
+#: ../../keyboard.pm_.c:244
msgid "Slovakian (QWERTY)"
msgstr "Slóbaicis (QWERTY)"
-#: ../../keyboard.pm_.c:267
+#: ../../keyboard.pm_.c:246
msgid "Serbian (cyrillic)"
msgstr ""
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:248
msgid "Tamil (Unicode)"
msgstr ""
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:249
msgid "Tamil (TSCII)"
msgstr ""
-#: ../../keyboard.pm_.c:271
+#: ../../keyboard.pm_.c:250
msgid "Thai keyboard"
msgstr ""
-#: ../../keyboard.pm_.c:273
+#: ../../keyboard.pm_.c:252
#, fuzzy
msgid "Tajik keyboard"
msgstr "Meárchlár US"
-#: ../../keyboard.pm_.c:274
+#: ../../keyboard.pm_.c:253
msgid "Turkish (traditional \"F\" model)"
msgstr ""
-#: ../../keyboard.pm_.c:275
+#: ../../keyboard.pm_.c:254
msgid "Turkish (modern \"Q\" model)"
msgstr ""
-#: ../../keyboard.pm_.c:277
+#: ../../keyboard.pm_.c:256
msgid "Ukrainian"
msgstr ""
-#: ../../keyboard.pm_.c:280
+#: ../../keyboard.pm_.c:259
msgid "US keyboard (international)"
msgstr "Mearchlár US (idirnaisiúnta)"
-#: ../../keyboard.pm_.c:281
+#: ../../keyboard.pm_.c:260
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr ""
-#: ../../keyboard.pm_.c:282
+#: ../../keyboard.pm_.c:261
msgid "Yugoslavian (latin)"
msgstr ""
-#: ../../keyboard.pm_.c:289
+#: ../../keyboard.pm_.c:268
msgid "Right Alt key"
msgstr ""
-#: ../../keyboard.pm_.c:290
+#: ../../keyboard.pm_.c:269
msgid "Both Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:291
+#: ../../keyboard.pm_.c:270
msgid "Control and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:292
+#: ../../keyboard.pm_.c:271
msgid "CapsLock key"
msgstr ""
-#: ../../keyboard.pm_.c:293
+#: ../../keyboard.pm_.c:272
msgid "Ctrl and Alt keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:294
+#: ../../keyboard.pm_.c:273
msgid "Alt and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:295
+#: ../../keyboard.pm_.c:274
msgid "\"Menu\" key"
msgstr ""
-#: ../../keyboard.pm_.c:296
+#: ../../keyboard.pm_.c:275
msgid "Left \"Windows\" key"
msgstr ""
-#: ../../keyboard.pm_.c:297
+#: ../../keyboard.pm_.c:276
msgid "Right \"Windows\" key"
msgstr ""
@@ -5437,11 +5518,11 @@ msgstr "Mouse Gnáth (PS/2)"
msgid "GlidePoint"
msgstr "GlidePoint"
-#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:63
+#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:65
msgid "Kensington Thinking Mouse"
msgstr "Kensington Thinking Mouse"
-#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:59
+#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:61
msgid "Genius NetMouse"
msgstr "Genius NetMouse"
@@ -5449,115 +5530,124 @@ msgstr "Genius NetMouse"
msgid "Genius NetScroll"
msgstr "Genius NetScroll"
-#: ../../mouse.pm_.c:43 ../../mouse.pm_.c:68
+#: ../../mouse.pm_.c:39 ../../mouse.pm_.c:48
+#, fuzzy
+msgid "Microsoft Explorer"
+msgstr "Microsoft IntelliMouse"
+
+#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:70
msgid "1 button"
msgstr "1 Cnaipe"
-#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:51
+#: ../../mouse.pm_.c:45 ../../mouse.pm_.c:53
msgid "Generic 2 Button Mouse"
msgstr "Luchóg 2-cnaipe Loiceadh"
-#: ../../mouse.pm_.c:46
+#: ../../mouse.pm_.c:47
msgid "Wheel"
msgstr "Rothar"
-#: ../../mouse.pm_.c:49
+#: ../../mouse.pm_.c:51
msgid "serial"
msgstr "srathach"
-#: ../../mouse.pm_.c:52
+#: ../../mouse.pm_.c:54
msgid "Generic 3 Button Mouse"
msgstr "Luchóg Gnáth 3-cnaipe"
-#: ../../mouse.pm_.c:53
+#: ../../mouse.pm_.c:55
msgid "Microsoft IntelliMouse"
msgstr "Microsoft IntelliMouse"
-#: ../../mouse.pm_.c:54
+#: ../../mouse.pm_.c:56
msgid "Logitech MouseMan"
msgstr "Luchóg MouseMan"
-#: ../../mouse.pm_.c:55
+#: ../../mouse.pm_.c:57
msgid "Mouse Systems"
msgstr "Mouse Systems"
-#: ../../mouse.pm_.c:57
+#: ../../mouse.pm_.c:59
msgid "Logitech CC Series"
msgstr "Luchóg Logitech CC"
-#: ../../mouse.pm_.c:58
+#: ../../mouse.pm_.c:60
msgid "Logitech MouseMan+/FirstMouse+"
msgstr "Logitech MouseMan+/FirstMouse+"
-#: ../../mouse.pm_.c:60
+#: ../../mouse.pm_.c:62
msgid "MM Series"
msgstr "MM Series"
-#: ../../mouse.pm_.c:61
+#: ../../mouse.pm_.c:63
msgid "MM HitTablet"
msgstr "MM HitTablet"
-#: ../../mouse.pm_.c:62
+#: ../../mouse.pm_.c:64
msgid "Logitech Mouse (serial, old C7 type)"
msgstr "Luchóg Logitech (srathach, séan cinéal C7)"
-#: ../../mouse.pm_.c:66
+#: ../../mouse.pm_.c:68
msgid "busmouse"
msgstr "busmouse"
-#: ../../mouse.pm_.c:69
+#: ../../mouse.pm_.c:71
msgid "2 buttons"
msgstr "2 cnaipí"
-#: ../../mouse.pm_.c:70
+#: ../../mouse.pm_.c:72
msgid "3 buttons"
msgstr "3 cnaipí"
-#: ../../mouse.pm_.c:73
+#: ../../mouse.pm_.c:75
msgid "none"
msgstr "Ar bith"
-#: ../../mouse.pm_.c:75
+#: ../../mouse.pm_.c:77
msgid "No mouse"
msgstr "Luchóg ar bith"
-#: ../../mouse.pm_.c:445
+#: ../../mouse.pm_.c:482
msgid "Please test the mouse"
msgstr "Teastáil an luchóg, le do thoil"
-#: ../../mouse.pm_.c:446
+#: ../../mouse.pm_.c:483
msgid "To activate the mouse,"
msgstr ""
-#: ../../mouse.pm_.c:447
+#: ../../mouse.pm_.c:484
msgid "MOVE YOUR WHEEL!"
msgstr "BOG DO ROTHAR!"
-#: ../../my_gtk.pm_.c:156
+#: ../../my_gtk.pm_.c:64
+msgid "-adobe-utopia-regular-r-*-*-25-*-*-*-p-*-iso8859-*,*-r-*"
+msgstr ""
+
+#: ../../my_gtk.pm_.c:159
msgid "Finish"
msgstr "Fionnlainnis"
-#: ../../my_gtk.pm_.c:156 ../../printerdrake.pm_.c:1992
+#: ../../my_gtk.pm_.c:159 ../../printerdrake.pm_.c:2126
msgid "Next ->"
msgstr ""
-#: ../../my_gtk.pm_.c:284
+#: ../../my_gtk.pm_.c:287
msgid "Is this correct?"
msgstr "An bhfuil seo ceart?"
-#: ../../my_gtk.pm_.c:356 ../../services.pm_.c:222
+#: ../../my_gtk.pm_.c:359 ../../services.pm_.c:222
msgid "Info"
msgstr "Eolas"
-#: ../../my_gtk.pm_.c:377
+#: ../../my_gtk.pm_.c:380
msgid "Expand Tree"
msgstr ""
-#: ../../my_gtk.pm_.c:378
+#: ../../my_gtk.pm_.c:381
msgid "Collapse Tree"
msgstr ""
-#: ../../my_gtk.pm_.c:379
+#: ../../my_gtk.pm_.c:382
msgid "Toggle between flat and group sorted"
msgstr ""
@@ -5592,6 +5682,68 @@ msgstr "úsáid pppoe"
msgid "use pptp"
msgstr "úsáid pppoe"
+#: ../../network/drakfirewall.pm_.c:12
+#, fuzzy
+msgid "Web Server"
+msgstr "Freastalaí"
+
+#: ../../network/drakfirewall.pm_.c:17
+#, fuzzy
+msgid "Domain Name Server"
+msgstr "Ainm Fearannas"
+
+#: ../../network/drakfirewall.pm_.c:32
+#, fuzzy
+msgid "Mail Server"
+msgstr "Freastalaí Printéir"
+
+#: ../../network/drakfirewall.pm_.c:37
+#, fuzzy
+msgid "POP and IMAP Server"
+msgstr "Freastalaí LDAP"
+
+#: ../../network/drakfirewall.pm_.c:111
+#, fuzzy
+msgid "No network card"
+msgstr "ní fuaireathas cárta gréasánú"
+
+#: ../../network/drakfirewall.pm_.c:129
+msgid ""
+"drakfirewall configurator\n"
+"\n"
+"This configures a personal firewall for this Mandrake Linux machine.\n"
+"For a powerful dedicated firewall solution, please look to the\n"
+"specialized MandrakeSecurity Firewall distribution."
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:147
+msgid "Which services would you like to allow the Internet to connect to?"
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:148
+msgid ""
+"You can enter miscellaneous ports. \n"
+"Valid examples are: 139/tcp 139/udp.\n"
+"Have a look at /etc/services for information."
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:154
+#, c-format
+msgid ""
+"Invalid port given: %s.\n"
+"The proper format is \"port/tcp\" or \"port/udp\", \n"
+"where port is between 1 and 65535."
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:162
+msgid "Everything (no firewall)"
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:164
+#, fuzzy
+msgid "Other ports"
+msgstr "Eile"
+
#: ../../network/ethernet.pm_.c:37
msgid ""
"Which dhcp client do you want to use?\n"
@@ -5604,7 +5756,7 @@ msgid ""
"I cannot set up this connection type."
msgstr ""
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:247
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:240
msgid "Choose the network interface"
msgstr "Roghnaigh an cláréadan ghréasán"
@@ -5618,7 +5770,7 @@ msgstr "Cén cinéal luchóg atá agat?"
msgid "no network card found"
msgstr "ní fuaireathas cárta gréasánú"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:366
msgid "Configuring network"
msgstr "Cumraigh gréasánú"
@@ -5630,7 +5782,7 @@ msgid ""
"such as ``mybox.mylab.myco.com''."
msgstr ""
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:370
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:371
msgid "Host name"
msgstr "ÓstAinm"
@@ -5906,13 +6058,13 @@ msgstr "Roghnagih an úsáidoer gneás:"
msgid "Use auto detection"
msgstr ""
-#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2930
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:3151
#: ../../standalone/drakconnect_.c:274 ../../standalone/drakconnect_.c:277
#: ../../standalone/drakfloppy_.c:145
msgid "Expert Mode"
msgstr "Mód Saineolaí"
-#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:283
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:386
msgid "Detecting devices..."
msgstr ""
@@ -6044,7 +6196,7 @@ msgstr "Ag cumrú gléas gréasánú %s"
#: ../../network/network.pm_.c:310
#, fuzzy, c-format
msgid " (driver %s)"
-msgstr " (tiomáint $module)"
+msgstr " (tiomáint %s)"
#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:231
#: ../../standalone/drakconnect_.c:467
@@ -6068,11 +6220,11 @@ msgstr "Uath-IP"
msgid "Start at boot"
msgstr "Cruthaigh an diosca "
-#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:753
+#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:860
msgid "IP address should be in format 1.2.3.4"
msgstr ""
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:367
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -6080,43 +6232,53 @@ msgid ""
"You may also enter the IP address of the gateway if you have one"
msgstr ""
-#: ../../network/network.pm_.c:371
+#: ../../network/network.pm_.c:372
msgid "DNS server"
msgstr "freastalaí DNS"
-#: ../../network/network.pm_.c:372
+#: ../../network/network.pm_.c:373
#, c-format
msgid "Gateway (e.g. %s)"
msgstr ""
-#: ../../network/network.pm_.c:374
+#: ../../network/network.pm_.c:375
msgid "Gateway device"
msgstr "Gaireas na hInneal Geata"
-#: ../../network/network.pm_.c:386
+#: ../../network/network.pm_.c:387
msgid "Proxies configuration"
msgstr "Cumraigh seach-freastalaí"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:388
msgid "HTTP proxy"
msgstr "Seach-HTTP"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:389
msgid "FTP proxy"
msgstr "Seach-FTP"
-#: ../../network/network.pm_.c:389
+#: ../../network/network.pm_.c:390
msgid "Track network card id (useful for laptops)"
msgstr ""
-#: ../../network/network.pm_.c:392
+#: ../../network/network.pm_.c:393
msgid "Proxy should be http://..."
msgstr ""
-#: ../../network/network.pm_.c:393
+#: ../../network/network.pm_.c:394
msgid "Proxy should be ftp://..."
msgstr ""
+#: ../../network/shorewall.pm_.c:24
+msgid "Firewalling configuration detected!"
+msgstr ""
+
+#: ../../network/shorewall.pm_.c:25
+msgid ""
+"Warning! An existing firewalling configuration has been detected. You may "
+"need some manual fix after installation."
+msgstr ""
+
#: ../../network/tools.pm_.c:41
msgid "Internet configuration"
msgstr "Cumraigh Idirlíon"
@@ -6229,36 +6391,36 @@ msgstr "Pasfhocal"
msgid "United Kingdom"
msgstr ""
-#: ../../partition_table.pm_.c:606
+#: ../../partition_table.pm_.c:602
msgid "mount failed: "
msgstr ""
-#: ../../partition_table.pm_.c:670
+#: ../../partition_table.pm_.c:666
msgid "Extended partition not supported on this platform"
msgstr ""
-#: ../../partition_table.pm_.c:688
+#: ../../partition_table.pm_.c:684
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
"to the extended partitions."
msgstr ""
-#: ../../partition_table.pm_.c:778
+#: ../../partition_table.pm_.c:774
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr ""
-#: ../../partition_table.pm_.c:780
+#: ../../partition_table.pm_.c:776
msgid "Bad backup file"
msgstr "Droch comhad chúltaca"
-#: ../../partition_table.pm_.c:802
+#: ../../partition_table.pm_.c:798
#, c-format
msgid "Error writing to file %s"
msgstr "Earráidh ag scríobh comhad %s"
-#: ../../partition_table/raw.pm_.c:187
+#: ../../partition_table/raw.pm_.c:189
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
@@ -6301,158 +6463,162 @@ msgstr ""
msgid "PDQ - Print, Don't Queue"
msgstr ""
-#: ../../printer.pm_.c:35 ../../printer.pm_.c:854
+#: ../../printer.pm_.c:34 ../../printer.pm_.c:1125
msgid "CUPS"
msgstr ""
-#: ../../printer.pm_.c:36
+#: ../../printer.pm_.c:35
msgid "LPRng"
msgstr ""
-#: ../../printer.pm_.c:37
+#: ../../printer.pm_.c:36
msgid "LPD"
msgstr ""
-#: ../../printer.pm_.c:38
+#: ../../printer.pm_.c:37
msgid "PDQ"
msgstr ""
-#: ../../printer.pm_.c:50
+#: ../../printer.pm_.c:49
msgid "Local printer"
msgstr "Printéir áitiúl"
-#: ../../printer.pm_.c:51
+#: ../../printer.pm_.c:50
msgid "Remote printer"
msgstr "Scríos Printéir"
-#: ../../printer.pm_.c:52
+#: ../../printer.pm_.c:51
#, fuzzy
msgid "Printer on remote CUPS server"
msgstr "Scrios Freastalaí CUPS"
-#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:776
+#: ../../printer.pm_.c:52 ../../printerdrake.pm_.c:883
#, fuzzy
msgid "Printer on remote lpd server"
msgstr "Scrios freastalaí lpd"
-#: ../../printer.pm_.c:54
+#: ../../printer.pm_.c:53
#, fuzzy
msgid "Network printer (TCP/Socket)"
msgstr "Printéir Gréasán (lpd)"
-#: ../../printer.pm_.c:55
+#: ../../printer.pm_.c:54
#, fuzzy
msgid "Printer on SMB/Windows 95/98/NT server"
msgstr "SMB/Windows 95/98/NT"
-#: ../../printer.pm_.c:56
+#: ../../printer.pm_.c:55
#, fuzzy
msgid "Printer on NetWare server"
msgstr "Freastalaí Printéir"
-#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:780
+#: ../../printer.pm_.c:56 ../../printerdrake.pm_.c:887
#, fuzzy
msgid "Enter a printer device URI"
msgstr "Gaireas Printéir (URI)"
-#: ../../printer.pm_.c:58
+#: ../../printer.pm_.c:57
msgid "Pipe job into a command"
msgstr ""
-#: ../../printer.pm_.c:487 ../../printer.pm_.c:678 ../../printer.pm_.c:1000
-#: ../../printerdrake.pm_.c:2070 ../../printerdrake.pm_.c:3189
+#: ../../printer.pm_.c:324 ../../printer.pm_.c:366 ../../printer.pm_.c:533
+msgid "Unknown Model"
+msgstr ""
+
+#: ../../printer.pm_.c:735 ../../printer.pm_.c:926 ../../printer.pm_.c:1318
+#: ../../printerdrake.pm_.c:2260 ../../printerdrake.pm_.c:3414
msgid "Unknown model"
msgstr ""
-#: ../../printer.pm_.c:515
+#: ../../printer.pm_.c:763
#, fuzzy
msgid "Local Printers"
msgstr "Printéir áitiúl"
-#: ../../printer.pm_.c:517 ../../printer.pm_.c:855
+#: ../../printer.pm_.c:765 ../../printer.pm_.c:1126
#, fuzzy
msgid "Remote Printers"
msgstr "Scríos Printéir"
-#: ../../printer.pm_.c:524 ../../printerdrake.pm_.c:301
+#: ../../printer.pm_.c:772 ../../printerdrake.pm_.c:404
#, c-format
msgid " on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:527 ../../printerdrake.pm_.c:303
+#: ../../printer.pm_.c:775 ../../printerdrake.pm_.c:406
#, c-format
msgid ", USB printer \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:532
+#: ../../printer.pm_.c:780
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:535
+#: ../../printer.pm_.c:783
msgid ", multi-function device on USB"
msgstr ""
-#: ../../printer.pm_.c:537
+#: ../../printer.pm_.c:785
msgid ", multi-function device on HP JetDirect"
msgstr ""
-#: ../../printer.pm_.c:539
+#: ../../printer.pm_.c:787
msgid ", multi-function device"
msgstr ""
-#: ../../printer.pm_.c:542
+#: ../../printer.pm_.c:790
#, fuzzy, c-format
msgid ", printing to %s"
msgstr "Earráidh ag scríobh comhad %s"
-#: ../../printer.pm_.c:544
+#: ../../printer.pm_.c:792
#, c-format
msgid " on LPD server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:546
+#: ../../printer.pm_.c:794
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ""
-#: ../../printer.pm_.c:550
+#: ../../printer.pm_.c:798
#, c-format
msgid " on SMB/Windows server \"%s\", share \"%s\""
msgstr ""
-#: ../../printer.pm_.c:554
+#: ../../printer.pm_.c:802
#, c-format
msgid " on Novell server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:556
+#: ../../printer.pm_.c:804
#, c-format
msgid ", using command %s"
msgstr ""
-#: ../../printer.pm_.c:675 ../../printerdrake.pm_.c:1540
+#: ../../printer.pm_.c:923 ../../printerdrake.pm_.c:1656
msgid "Raw printer (No driver)"
msgstr ""
-#: ../../printer.pm_.c:824
+#: ../../printer.pm_.c:1095
#, fuzzy, c-format
msgid "(on %s)"
msgstr "(modíl %s)"
-#: ../../printer.pm_.c:826
+#: ../../printer.pm_.c:1097
msgid "(on this machine)"
msgstr ""
-#: ../../printer.pm_.c:851
+#: ../../printer.pm_.c:1122
#, fuzzy, c-format
msgid "On CUPS server \"%s\""
msgstr "IP freastalaí SMP"
-#: ../../printer.pm_.c:857 ../../printerdrake.pm_.c:2851
-#: ../../printerdrake.pm_.c:2862 ../../printerdrake.pm_.c:3078
-#: ../../printerdrake.pm_.c:3130 ../../printerdrake.pm_.c:3156
-#: ../../printerdrake.pm_.c:3326 ../../printerdrake.pm_.c:3328
+#: ../../printer.pm_.c:1128 ../../printerdrake.pm_.c:3071
+#: ../../printerdrake.pm_.c:3082 ../../printerdrake.pm_.c:3303
+#: ../../printerdrake.pm_.c:3355 ../../printerdrake.pm_.c:3381
+#: ../../printerdrake.pm_.c:3556 ../../printerdrake.pm_.c:3558
#, fuzzy
msgid " (Default)"
msgstr "Gnáth"
@@ -6476,12 +6642,12 @@ msgstr ""
msgid "Printer auto-detection (Local, TCP/Socket, and SMB printers)"
msgstr ""
-#: ../../printerdrake.pm_.c:84 ../../printerdrake.pm_.c:2914
+#: ../../printerdrake.pm_.c:84 ../../printerdrake.pm_.c:3135
#, fuzzy
msgid "CUPS configuration"
msgstr "cumraíocht"
-#: ../../printerdrake.pm_.c:85 ../../printerdrake.pm_.c:2915
+#: ../../printerdrake.pm_.c:85 ../../printerdrake.pm_.c:3136
#, fuzzy
msgid "Specify CUPS server"
msgstr "Scrios Freastalaí CUPS"
@@ -6511,7 +6677,7 @@ msgstr ""
msgid "The IP address should look like 192.168.1.20"
msgstr ""
-#: ../../printerdrake.pm_.c:95 ../../printerdrake.pm_.c:987
+#: ../../printerdrake.pm_.c:95 ../../printerdrake.pm_.c:1094
msgid "The port number should be an integer!"
msgstr ""
@@ -6520,7 +6686,7 @@ msgstr ""
msgid "CUPS server IP"
msgstr "IP freastalaí SMP"
-#: ../../printerdrake.pm_.c:103 ../../printerdrake.pm_.c:1007
+#: ../../printerdrake.pm_.c:103 ../../printerdrake.pm_.c:1114
msgid "Port"
msgstr "Poirt"
@@ -6529,13 +6695,127 @@ msgstr "Poirt"
msgid "Automatic CUPS configuration"
msgstr "Cumraigh ADSL"
-#: ../../printerdrake.pm_.c:183 ../../printerdrake.pm_.c:192
-#: ../../printerdrake.pm_.c:2897 ../../printerdrake.pm_.c:3017
+#: ../../printerdrake.pm_.c:177 ../../printerdrake.pm_.c:247
+#: ../../printerdrake.pm_.c:1529 ../../printerdrake.pm_.c:1533
+#: ../../printerdrake.pm_.c:1651 ../../printerdrake.pm_.c:2203
+#: ../../printerdrake.pm_.c:2356 ../../printerdrake.pm_.c:2415
+#: ../../printerdrake.pm_.c:2488 ../../printerdrake.pm_.c:2509
+#: ../../printerdrake.pm_.c:2699 ../../printerdrake.pm_.c:2740
+#: ../../printerdrake.pm_.c:2745 ../../printerdrake.pm_.c:2779
+#: ../../printerdrake.pm_.c:2784 ../../printerdrake.pm_.c:2821
+#: ../../printerdrake.pm_.c:2874 ../../printerdrake.pm_.c:2894
+#: ../../printerdrake.pm_.c:2908 ../../printerdrake.pm_.c:2942
+#: ../../printerdrake.pm_.c:2988 ../../printerdrake.pm_.c:3006
+#: ../../printerdrake.pm_.c:3095 ../../printerdrake.pm_.c:3169
+#: ../../printerdrake.pm_.c:3471 ../../printerdrake.pm_.c:3526
+#: ../../printerdrake.pm_.c:3579 ../../standalone/printerdrake_.c:57
+#, fuzzy
+msgid "Printerdrake"
+msgstr "Clódóir"
+
+#: ../../printerdrake.pm_.c:178
+#, fuzzy
+msgid "Checking your system..."
+msgstr "Scríos Printéir"
+
+#: ../../printerdrake.pm_.c:186
+msgid ""
+"There are no printers found which are directly connected to your machine"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:198
+msgid ""
+"The following printers\n"
+"\n"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:199
+msgid ""
+"The following printer\n"
+"\n"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:201
+msgid ""
+"\n"
+"and one unknown printer are "
+msgstr ""
+
+#: ../../printerdrake.pm_.c:203
+#, c-format
+msgid ""
+"\n"
+"and %d unknown printers are "
+msgstr ""
+
+#: ../../printerdrake.pm_.c:207
+msgid ""
+"\n"
+"are "
+msgstr ""
+
+#: ../../printerdrake.pm_.c:208
+msgid ""
+"\n"
+"is "
+msgstr ""
+
+#: ../../printerdrake.pm_.c:210
+#, fuzzy
+msgid "directly connected to your system"
+msgstr "Níl aon gaireas ghreasán san do chorás!"
+
+#: ../../printerdrake.pm_.c:213
+msgid ""
+"\n"
+"There is one unknown printer directly connected to your system"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:215
+#, c-format
+msgid ""
+"\n"
+"There are %d unknown printers directly connected to your system"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:221
+#, fuzzy
+msgid " (Make sure that all your printers are connected and turned on).\n"
+msgstr "Cén cinéal luchóg atá agat?"
+
+#: ../../printerdrake.pm_.c:235
+msgid ""
+"Do you want to enable printing on the printers mentioned above or on "
+"printers in the local network?\n"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:236
+msgid "Do you want to enable printing on printers in the local network?\n"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:238
+#, fuzzy
+msgid "Do you want to enable printing on the printers mentioned above?\n"
+msgstr "An bhfuil tú ag iarraidh an cumraíocht a thrial?"
+
+#: ../../printerdrake.pm_.c:239
+msgid "Are you sure that you want to set up printing on this machine?\n"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:240
+#, c-format
+msgid ""
+"NOTE: Depending on the printer model and the printing system up to %d MB of "
+"additional software will be installed."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:269 ../../printerdrake.pm_.c:278
+#: ../../printerdrake.pm_.c:3117 ../../printerdrake.pm_.c:3242
#, fuzzy
msgid "Add a new printer"
msgstr "Gan Printéir"
-#: ../../printerdrake.pm_.c:184
+#: ../../printerdrake.pm_.c:270
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -6548,7 +6828,7 @@ msgid ""
"connection types."
msgstr ""
-#: ../../printerdrake.pm_.c:193
+#: ../../printerdrake.pm_.c:280
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -6557,7 +6837,7 @@ msgid ""
"computer, connected directly to the network or to a remote Windows machine.\n"
"\n"
"If you have printer(s) connected to this machine, Please plug it/them in on "
-"this computer and turn it/them on so that they can be auto-detected. Also "
+"this computer and turn it/them on so that it/they can be auto-detected. Also "
"your network printer(s) and you Windows machines must be connected and "
"turned on.\n"
"\n"
@@ -6570,7 +6850,22 @@ msgid ""
"want to set up your printer(s) now."
msgstr ""
-#: ../../printerdrake.pm_.c:202
+#: ../../printerdrake.pm_.c:289 ../../printerdrake.pm_.c:306
+msgid ""
+"\n"
+"Welcome to the Printer Setup Wizard\n"
+"\n"
+"This wizard will help you to install your printer(s) connected to this "
+"computer.\n"
+"\n"
+"If you have printer(s) connected to this machine, Please plug it/them in on "
+"this computer and turn it/them on so that it/they can be auto-detected.\n"
+"\n"
+" Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
+"want to set up your printer(s) now."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:297
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -6579,7 +6874,7 @@ msgid ""
"computer or connected directly to the network.\n"
"\n"
"If you have printer(s) connected to this machine, Please plug it/them in on "
-"this computer and turn it/them on so that they can be auto-detected. Also "
+"this computer and turn it/them on so that it/they can be auto-detected. Also "
"your network printer(s) must be connected and turned on.\n"
"\n"
"Note that auto-detecting printers on the network takes longer than the auto-"
@@ -6590,26 +6885,26 @@ msgid ""
"want to set up your printer(s) now."
msgstr ""
-#: ../../printerdrake.pm_.c:213
+#: ../../printerdrake.pm_.c:315
#, fuzzy
msgid "Auto-detect printers connected to this machine"
msgstr "Scríos Printéir"
-#: ../../printerdrake.pm_.c:215
+#: ../../printerdrake.pm_.c:318
msgid "Auto-detect printers connected directly to the local network"
msgstr ""
-#: ../../printerdrake.pm_.c:218
+#: ../../printerdrake.pm_.c:321
msgid "Auto-detect printers connected to machines running Microsoft Windows"
msgstr ""
-#: ../../printerdrake.pm_.c:245 ../../printerdrake.pm_.c:459
-#: ../../printerdrake.pm_.c:484
+#: ../../printerdrake.pm_.c:348 ../../printerdrake.pm_.c:562
+#: ../../printerdrake.pm_.c:587
#, fuzzy
msgid "Local Printer"
msgstr "Printéir áitiúl"
-#: ../../printerdrake.pm_.c:246
+#: ../../printerdrake.pm_.c:349
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -6623,50 +6918,50 @@ msgid ""
"Center."
msgstr ""
-#: ../../printerdrake.pm_.c:283 ../../printerdrake.pm_.c:474
-#: ../../printerdrake.pm_.c:683 ../../printerdrake.pm_.c:923
+#: ../../printerdrake.pm_.c:386 ../../printerdrake.pm_.c:577
+#: ../../printerdrake.pm_.c:790 ../../printerdrake.pm_.c:1030
#, fuzzy
msgid "Printer auto-detection"
msgstr "Scríos Printéir"
-#: ../../printerdrake.pm_.c:305
+#: ../../printerdrake.pm_.c:408
#, c-format
msgid ", network printer \"%s\", port %s"
msgstr ""
-#: ../../printerdrake.pm_.c:307
+#: ../../printerdrake.pm_.c:410
#, fuzzy, c-format
msgid ", printer \"%s\" on SMB/Windows server \"%s\""
msgstr "SMB/Windows 95/98/NT"
-#: ../../printerdrake.pm_.c:313
+#: ../../printerdrake.pm_.c:416
#, fuzzy, c-format
msgid "Detected %s"
msgstr "Pointe taca dublach %s"
-#: ../../printerdrake.pm_.c:317 ../../printerdrake.pm_.c:348
-#: ../../printerdrake.pm_.c:367
+#: ../../printerdrake.pm_.c:420 ../../printerdrake.pm_.c:451
+#: ../../printerdrake.pm_.c:470
#, c-format
msgid "Printer on parallel port \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:319 ../../printerdrake.pm_.c:350
-#: ../../printerdrake.pm_.c:372
+#: ../../printerdrake.pm_.c:422 ../../printerdrake.pm_.c:453
+#: ../../printerdrake.pm_.c:475
#, c-format
msgid "USB printer \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:321
+#: ../../printerdrake.pm_.c:424
#, fuzzy, c-format
msgid "Network printer \"%s\", port %s"
msgstr "Printéir Gréasán (lpd)"
-#: ../../printerdrake.pm_.c:323
+#: ../../printerdrake.pm_.c:426
#, fuzzy, c-format
msgid "Printer \"%s\" on SMB/Windows server \"%s\""
msgstr "SMB/Windows 95/98/NT"
-#: ../../printerdrake.pm_.c:460
+#: ../../printerdrake.pm_.c:563
msgid ""
"No local printer found! To manually install a printer enter a device name/"
"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
@@ -6674,34 +6969,34 @@ msgid ""
"printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:464
+#: ../../printerdrake.pm_.c:567
#, fuzzy
msgid "You must enter a device or file name!"
msgstr "Gaireas Printéir (URI)"
-#: ../../printerdrake.pm_.c:475
+#: ../../printerdrake.pm_.c:578
#, fuzzy
msgid "No printer found!"
msgstr "Printéir áitiúl"
-#: ../../printerdrake.pm_.c:485
+#: ../../printerdrake.pm_.c:588
#, fuzzy
msgid "Available printers"
msgstr "Printéir áitiúl"
-#: ../../printerdrake.pm_.c:489
+#: ../../printerdrake.pm_.c:592
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:490
+#: ../../printerdrake.pm_.c:593
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up or enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:492
+#: ../../printerdrake.pm_.c:595
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
@@ -6709,7 +7004,7 @@ msgid ""
"configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:493
+#: ../../printerdrake.pm_.c:596
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
@@ -6717,87 +7012,87 @@ msgid ""
"customized printer configuration, turn on \"Manual configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:495
+#: ../../printerdrake.pm_.c:598
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:496
+#: ../../printerdrake.pm_.c:599
#, fuzzy
msgid "Please choose the port where your printer is connected to."
msgstr "Cén cinéal luchóg atá agat?"
-#: ../../printerdrake.pm_.c:498
+#: ../../printerdrake.pm_.c:601
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:503
+#: ../../printerdrake.pm_.c:606
#, fuzzy
msgid "You must choose/enter a printer/device!"
msgstr "Gaireas Printéir (URI)"
-#: ../../printerdrake.pm_.c:523
+#: ../../printerdrake.pm_.c:626
#, fuzzy
msgid "Manual configuration"
msgstr "Cumraigh Idirlíon"
-#: ../../printerdrake.pm_.c:577
+#: ../../printerdrake.pm_.c:680
msgid "Remote lpd Printer Options"
msgstr ""
-#: ../../printerdrake.pm_.c:578
+#: ../../printerdrake.pm_.c:681
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
"server and the printer name on that server."
msgstr ""
-#: ../../printerdrake.pm_.c:579
+#: ../../printerdrake.pm_.c:682
#, fuzzy
msgid "Remote host name"
msgstr "ÓstAinm"
-#: ../../printerdrake.pm_.c:580
+#: ../../printerdrake.pm_.c:683
#, fuzzy
msgid "Remote printer name"
msgstr "Scríos Printéir"
-#: ../../printerdrake.pm_.c:583
+#: ../../printerdrake.pm_.c:686
msgid "Remote host name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:587
+#: ../../printerdrake.pm_.c:690
#, fuzzy
msgid "Remote printer name missing!"
msgstr "Scríos Printéir"
-#: ../../printerdrake.pm_.c:609 ../../printerdrake.pm_.c:1119
+#: ../../printerdrake.pm_.c:712 ../../printerdrake.pm_.c:1225
#, fuzzy, c-format
msgid "Detected model: %s %s"
msgstr "Pointe taca dublach %s"
-#: ../../printerdrake.pm_.c:683 ../../printerdrake.pm_.c:923
+#: ../../printerdrake.pm_.c:790 ../../printerdrake.pm_.c:1030
#, fuzzy
msgid "Scanning network..."
msgstr "Nasc Printéir"
-#: ../../printerdrake.pm_.c:692 ../../printerdrake.pm_.c:713
+#: ../../printerdrake.pm_.c:799 ../../printerdrake.pm_.c:820
#, c-format
msgid ", printer \"%s\" on server \"%s\""
msgstr ""
-#: ../../printerdrake.pm_.c:695 ../../printerdrake.pm_.c:716
+#: ../../printerdrake.pm_.c:802 ../../printerdrake.pm_.c:823
#, fuzzy, c-format
msgid "Printer \"%s\" on server \"%s\""
msgstr "Ag dúnadh síos an ghreasán"
-#: ../../printerdrake.pm_.c:736
+#: ../../printerdrake.pm_.c:843
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "Roghanna Printéir SMB (Fuinneoga 9x/NT)"
-#: ../../printerdrake.pm_.c:737
+#: ../../printerdrake.pm_.c:844
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
"may be different from its TCP/IP hostname!) and possibly the IP address of "
@@ -6805,46 +7100,46 @@ msgid ""
"access and any applicable user name, password, and workgroup information."
msgstr ""
-#: ../../printerdrake.pm_.c:738
+#: ../../printerdrake.pm_.c:845
msgid ""
" If the desired printer was auto-detected, simply choose it from the list "
"and then add user name, password, and/or workgroup if needed."
msgstr ""
-#: ../../printerdrake.pm_.c:739
+#: ../../printerdrake.pm_.c:846
msgid "SMB server host"
msgstr "freastalaí óstann SMB"
-#: ../../printerdrake.pm_.c:740
+#: ../../printerdrake.pm_.c:847
msgid "SMB server IP"
msgstr "IP freastalaí SMP"
-#: ../../printerdrake.pm_.c:741
+#: ../../printerdrake.pm_.c:848
msgid "Share name"
msgstr "Comh. ainm"
-#: ../../printerdrake.pm_.c:744
+#: ../../printerdrake.pm_.c:851
msgid "Workgroup"
msgstr "Grupa na hOibre"
-#: ../../printerdrake.pm_.c:746
+#: ../../printerdrake.pm_.c:853
#, fuzzy
msgid "Auto-detected"
msgstr "Scríos Printéir"
-#: ../../printerdrake.pm_.c:757
+#: ../../printerdrake.pm_.c:864
msgid "Either the server name or the server's IP must be given!"
msgstr ""
-#: ../../printerdrake.pm_.c:761
+#: ../../printerdrake.pm_.c:868
msgid "Samba share name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:767
+#: ../../printerdrake.pm_.c:874
msgid "SECURITY WARNING!"
msgstr ""
-#: ../../printerdrake.pm_.c:768
+#: ../../printerdrake.pm_.c:875
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -6868,7 +7163,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:778
+#: ../../printerdrake.pm_.c:885
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -6877,7 +7172,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:781
+#: ../../printerdrake.pm_.c:888
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
@@ -6885,11 +7180,11 @@ msgid ""
"Do you really want to continue setting up this printer as you are doing now?"
msgstr ""
-#: ../../printerdrake.pm_.c:853
+#: ../../printerdrake.pm_.c:960
msgid "NetWare Printer Options"
msgstr "Roghanna Printéir NetWare"
-#: ../../printerdrake.pm_.c:854
+#: ../../printerdrake.pm_.c:961
msgid ""
"To print on a NetWare printer, you need to provide the NetWare print server "
"name (Note! it may be different from its TCP/IP hostname!) as well as the "
@@ -6897,44 +7192,44 @@ msgid ""
"name and password."
msgstr ""
-#: ../../printerdrake.pm_.c:855
+#: ../../printerdrake.pm_.c:962
msgid "Printer Server"
msgstr "Freastalaí Printéir"
-#: ../../printerdrake.pm_.c:856
+#: ../../printerdrake.pm_.c:963
msgid "Print Queue Name"
msgstr ""
-#: ../../printerdrake.pm_.c:861
+#: ../../printerdrake.pm_.c:968
msgid "NCP server name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:865
+#: ../../printerdrake.pm_.c:972
msgid "NCP queue name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:932 ../../printerdrake.pm_.c:952
+#: ../../printerdrake.pm_.c:1039 ../../printerdrake.pm_.c:1059
#, c-format
msgid ", host \"%s\", port %s"
msgstr ""
-#: ../../printerdrake.pm_.c:935 ../../printerdrake.pm_.c:955
+#: ../../printerdrake.pm_.c:1042 ../../printerdrake.pm_.c:1062
#, c-format
msgid "Host \"%s\", port %s"
msgstr ""
-#: ../../printerdrake.pm_.c:975
+#: ../../printerdrake.pm_.c:1082
#, fuzzy
msgid "TCP/Socket Printer Options"
msgstr "Roghanna Printéir NetWare"
-#: ../../printerdrake.pm_.c:977
+#: ../../printerdrake.pm_.c:1084
msgid ""
"Choose one of the auto-detected printers from the list or enter the hostname "
"or IP and the optional port number (default is 9100) into the input fields."
msgstr ""
-#: ../../printerdrake.pm_.c:978
+#: ../../printerdrake.pm_.c:1085
msgid ""
"To print to a TCP or socket printer, you need to provide the host name or IP "
"of the printer and optionally the port number (default is 9100). On HP "
@@ -6942,59 +7237,59 @@ msgid ""
"vary. See the manual of your hardware."
msgstr ""
-#: ../../printerdrake.pm_.c:983
+#: ../../printerdrake.pm_.c:1090
#, fuzzy
msgid "Printer host name or IP missing!"
msgstr "Óstainm Printéir"
-#: ../../printerdrake.pm_.c:1005
+#: ../../printerdrake.pm_.c:1112
#, fuzzy
msgid "Printer host name or IP"
msgstr "Óstainm Printéir"
-#: ../../printerdrake.pm_.c:1054 ../../printerdrake.pm_.c:1056
+#: ../../printerdrake.pm_.c:1160 ../../printerdrake.pm_.c:1162
msgid "Printer Device URI"
msgstr "Gaireas Printéir (URI)"
-#: ../../printerdrake.pm_.c:1055
+#: ../../printerdrake.pm_.c:1161
msgid ""
"You can specify directly the URI to access the printer. The URI must fulfill "
"either the CUPS or the Foomatic specifications. Note that not all URI types "
"are supported by all the spoolers."
msgstr ""
-#: ../../printerdrake.pm_.c:1070
+#: ../../printerdrake.pm_.c:1176
msgid "A valid URI must be entered!"
msgstr ""
-#: ../../printerdrake.pm_.c:1402
+#: ../../printerdrake.pm_.c:1515
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
"Location fields do not need to be filled in. They are comments for the users."
msgstr ""
-#: ../../printerdrake.pm_.c:1403
+#: ../../printerdrake.pm_.c:1516
msgid "Name of printer"
msgstr "Ainm Printéir"
-#: ../../printerdrake.pm_.c:1405
+#: ../../printerdrake.pm_.c:1518
msgid "Location"
msgstr "Áit"
-#: ../../printerdrake.pm_.c:1416 ../../printerdrake.pm_.c:1536
+#: ../../printerdrake.pm_.c:1530 ../../printerdrake.pm_.c:1652
msgid "Reading printer database..."
msgstr ""
-#: ../../printerdrake.pm_.c:1419
+#: ../../printerdrake.pm_.c:1534
msgid "Preparing printer database..."
msgstr ""
-#: ../../printerdrake.pm_.c:1516
+#: ../../printerdrake.pm_.c:1631
#, fuzzy
msgid "Your printer model"
msgstr "Scríos Printéir"
-#: ../../printerdrake.pm_.c:1517
+#: ../../printerdrake.pm_.c:1632
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -7009,28 +7304,28 @@ msgid ""
"%s"
msgstr ""
-#: ../../printerdrake.pm_.c:1522 ../../printerdrake.pm_.c:1525
+#: ../../printerdrake.pm_.c:1637 ../../printerdrake.pm_.c:1640
#, fuzzy
msgid "The model is correct"
msgstr "An bhfuil seo ceart?"
-#: ../../printerdrake.pm_.c:1523 ../../printerdrake.pm_.c:1524
-#: ../../printerdrake.pm_.c:1527
+#: ../../printerdrake.pm_.c:1638 ../../printerdrake.pm_.c:1639
+#: ../../printerdrake.pm_.c:1642
#, fuzzy
msgid "Select model manually"
msgstr "Scríos Printéir"
-#: ../../printerdrake.pm_.c:1543
+#: ../../printerdrake.pm_.c:1659
#, fuzzy
msgid "Printer model selection"
msgstr "Nasc Printéir"
-#: ../../printerdrake.pm_.c:1544
+#: ../../printerdrake.pm_.c:1660
#, fuzzy
msgid "Which printer model do you have?"
msgstr "Cén sort printéir atá ort?"
-#: ../../printerdrake.pm_.c:1545
+#: ../../printerdrake.pm_.c:1661
msgid ""
"\n"
"\n"
@@ -7039,18 +7334,18 @@ msgid ""
"standing on a wrong model or on \"Raw printer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1548
+#: ../../printerdrake.pm_.c:1664
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
msgstr ""
-#: ../../printerdrake.pm_.c:1624
+#: ../../printerdrake.pm_.c:1741
#, fuzzy
msgid "OKI winprinter configuration"
msgstr "Cumraigh Idirlíon"
-#: ../../printerdrake.pm_.c:1625
+#: ../../printerdrake.pm_.c:1742
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -7060,12 +7355,12 @@ msgid ""
"not work. Your connection type setting will be ignored by the driver."
msgstr ""
-#: ../../printerdrake.pm_.c:1668 ../../printerdrake.pm_.c:1695
+#: ../../printerdrake.pm_.c:1785 ../../printerdrake.pm_.c:1812
#, fuzzy
msgid "Lexmark inkjet configuration"
msgstr "Cumraigh Idirlíon"
-#: ../../printerdrake.pm_.c:1669
+#: ../../printerdrake.pm_.c:1786
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
"no printers on remote machines or print server boxes. Please connect your "
@@ -7073,20 +7368,46 @@ msgid ""
"to."
msgstr ""
-#: ../../printerdrake.pm_.c:1696
+#: ../../printerdrake.pm_.c:1813
msgid ""
"To be able to print with your Lexmark inkjet and this configuration, you "
"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
-"com/). Go to the US site and click on the \"Drivers\" button. Then choose "
-"your model and afterwards \"Linux\" as operating system. The drivers come as "
-"RPM packages or shell scripts with interactive graphical installation. You "
-"do not need to do this configuration by the graphical frontends. Cancel "
-"directly after the license agreement. Then print printhead alignment pages "
-"with \"lexmarkmaintain\" and adjust the head alignment settings with this "
-"program."
+"com/). Click on the \"Drivers\" link. Then choose your model and afterwards "
+"\"Linux\" as operating system. The drivers come as RPM packages or shell "
+"scripts with interactive graphical installation. You do not need to do this "
+"configuration by the graphical frontends. Cancel directly after the license "
+"agreement. Then print printhead alignment pages with \"lexmarkmaintain\" and "
+"adjust the head alignment settings with this program."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:1816
+msgid "GDI Laser Printer using the Zenographics ZJ-Stream Format"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:1817
+msgid ""
+"Your printer belongs to the group of GDI laser printers (winprinters) sold "
+"by different manufacturers which uses the Zenographics ZJ-stream raster "
+"format for the data sent to the printer. The driver for these printers is "
+"still in a very early development stage and so it will perhaps not always "
+"work properly. Especially it is possible that the printer only works when "
+"you choose the A4 paper size.\n"
+"\n"
+"Some of these printers, as the HP LaserJet 1000, for which this driver was "
+"originally created, need their firmware to be uploaded to them after they "
+"are turned on. In the case of the HP LaserJet 1000 you have to search the "
+"printer's Windows driver CD or your Windows partition for the file "
+"\"sihp1000.img\" and upload the file to the printer with one of the "
+"following commands:\n"
+"\n"
+" lpr -o raw sihp1000.img\n"
+" cat sihp1000.img > /dev/usb/lp0\n"
+"\n"
+"The first command can be given by any normal user, the second must be given "
+"as root. After having done so you can print normally.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1912
+#: ../../printerdrake.pm_.c:2040
msgid ""
"Printer default settings\n"
"\n"
@@ -7096,34 +7417,34 @@ msgid ""
"printout quality/resolution printing can get substantially slower."
msgstr ""
-#: ../../printerdrake.pm_.c:1921
+#: ../../printerdrake.pm_.c:2049
#, c-format
msgid "Option %s must be an integer number!"
msgstr ""
-#: ../../printerdrake.pm_.c:1925
+#: ../../printerdrake.pm_.c:2053
#, c-format
msgid "Option %s must be a number!"
msgstr ""
-#: ../../printerdrake.pm_.c:1930
+#: ../../printerdrake.pm_.c:2058
#, c-format
msgid "Option %s out of range!"
msgstr ""
-#: ../../printerdrake.pm_.c:1969
+#: ../../printerdrake.pm_.c:2097
#, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
"as the default printer?"
msgstr ""
-#: ../../printerdrake.pm_.c:1986
+#: ../../printerdrake.pm_.c:2120
#, fuzzy
msgid "Test pages"
msgstr "Bain trial as arís"
-#: ../../printerdrake.pm_.c:1987
+#: ../../printerdrake.pm_.c:2121
msgid ""
"Please select the test pages you want to print.\n"
"Note: the photo test page can take a rather long time to get printed and on "
@@ -7131,42 +7452,42 @@ msgid ""
"it is enough to print the standard test page."
msgstr ""
-#: ../../printerdrake.pm_.c:1991
+#: ../../printerdrake.pm_.c:2125
msgid "No test pages"
msgstr ""
-#: ../../printerdrake.pm_.c:1992
+#: ../../printerdrake.pm_.c:2126
#, fuzzy
msgid "Print"
msgstr "Printéir"
-#: ../../printerdrake.pm_.c:1994
+#: ../../printerdrake.pm_.c:2183
#, fuzzy
msgid "Standard test page"
msgstr "Uirlisí gnáth"
-#: ../../printerdrake.pm_.c:1997
+#: ../../printerdrake.pm_.c:2186
msgid "Alternative test page (Letter)"
msgstr ""
-#: ../../printerdrake.pm_.c:2000
+#: ../../printerdrake.pm_.c:2189
msgid "Alternative test page (A4)"
msgstr ""
-#: ../../printerdrake.pm_.c:2002
+#: ../../printerdrake.pm_.c:2191
msgid "Photo test page"
msgstr ""
-#: ../../printerdrake.pm_.c:2006
+#: ../../printerdrake.pm_.c:2195
#, fuzzy
msgid "Do not print any test page"
msgstr "Óstainm Printéir"
-#: ../../printerdrake.pm_.c:2014 ../../printerdrake.pm_.c:2166
+#: ../../printerdrake.pm_.c:2204 ../../printerdrake.pm_.c:2357
msgid "Printing test page(s)..."
msgstr ""
-#: ../../printerdrake.pm_.c:2039
+#: ../../printerdrake.pm_.c:2229
#, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -7176,22 +7497,22 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2043
+#: ../../printerdrake.pm_.c:2233
msgid ""
"Test page(s) have been sent to the printer.\n"
"It may take some time before the printer starts.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2050
+#: ../../printerdrake.pm_.c:2240
msgid "Did it work properly?"
msgstr ""
-#: ../../printerdrake.pm_.c:2072 ../../printerdrake.pm_.c:3191
+#: ../../printerdrake.pm_.c:2262 ../../printerdrake.pm_.c:3416
#, fuzzy
msgid "Raw printer"
msgstr "Gan Printéir"
-#: ../../printerdrake.pm_.c:2098
+#: ../../printerdrake.pm_.c:2288
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -7200,15 +7521,15 @@ msgid ""
"to modify the option settings easily.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2100
+#: ../../printerdrake.pm_.c:2290
msgid ""
"These commands you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications, but here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2103 ../../printerdrake.pm_.c:2120
-#: ../../printerdrake.pm_.c:2130
+#: ../../printerdrake.pm_.c:2293 ../../printerdrake.pm_.c:2310
+#: ../../printerdrake.pm_.c:2320
#, c-format
msgid ""
"\n"
@@ -7217,7 +7538,7 @@ msgid ""
"line, e. g. \"%s <file>\". "
msgstr ""
-#: ../../printerdrake.pm_.c:2106 ../../printerdrake.pm_.c:2146
+#: ../../printerdrake.pm_.c:2296 ../../printerdrake.pm_.c:2336
#, c-format
msgid ""
"To know about the options available for the current printer read either the "
@@ -7225,41 +7546,41 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2110
+#: ../../printerdrake.pm_.c:2300
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2115 ../../printerdrake.pm_.c:2125
+#: ../../printerdrake.pm_.c:2305 ../../printerdrake.pm_.c:2315
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2117 ../../printerdrake.pm_.c:2127
-#: ../../printerdrake.pm_.c:2137
+#: ../../printerdrake.pm_.c:2307 ../../printerdrake.pm_.c:2317
+#: ../../printerdrake.pm_.c:2327
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2122 ../../printerdrake.pm_.c:2132
+#: ../../printerdrake.pm_.c:2312 ../../printerdrake.pm_.c:2322
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
msgstr ""
-#: ../../printerdrake.pm_.c:2135
+#: ../../printerdrake.pm_.c:2325
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\" or \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2139
+#: ../../printerdrake.pm_.c:2329
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -7269,7 +7590,7 @@ msgid ""
"jams.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2143
+#: ../../printerdrake.pm_.c:2333
#, c-format
msgid ""
"\n"
@@ -7278,41 +7599,41 @@ msgid ""
"line, e. g. \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2153
+#: ../../printerdrake.pm_.c:2343
#, fuzzy, c-format
msgid "Printing/Scanning/Photo Cards on \"%s\""
msgstr "Ag dúnadh síos an ghreasán"
-#: ../../printerdrake.pm_.c:2154
+#: ../../printerdrake.pm_.c:2344
#, fuzzy, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "Ag dúnadh síos an ghreasán"
-#: ../../printerdrake.pm_.c:2156
+#: ../../printerdrake.pm_.c:2346
#, fuzzy, c-format
msgid "Printing/Photo Card Access on \"%s\""
msgstr "Ag dúnadh síos an ghreasán"
-#: ../../printerdrake.pm_.c:2157
+#: ../../printerdrake.pm_.c:2347
#, fuzzy, c-format
msgid "Printing on the printer \"%s\""
msgstr "Ag dúnadh síos an ghreasán"
-#: ../../printerdrake.pm_.c:2160 ../../printerdrake.pm_.c:2163
-#: ../../printerdrake.pm_.c:2164 ../../printerdrake.pm_.c:2165
-#: ../../printerdrake.pm_.c:3175 ../../standalone/drakTermServ_.c:248
-#: ../../standalone/drakbackup_.c:1485 ../../standalone/drakbackup_.c:3530
-#: ../../standalone/drakbug_.c:129 ../../standalone/drakfont_.c:705
+#: ../../printerdrake.pm_.c:2350 ../../printerdrake.pm_.c:2353
+#: ../../printerdrake.pm_.c:2354 ../../printerdrake.pm_.c:2355
+#: ../../printerdrake.pm_.c:3400 ../../standalone/drakTermServ_.c:248
+#: ../../standalone/drakbackup_.c:1560 ../../standalone/drakbackup_.c:4208
+#: ../../standalone/drakbug_.c:130 ../../standalone/drakfont_.c:705
#: ../../standalone/drakfont_.c:1014
msgid "Close"
msgstr "Dún"
-#: ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2353
#, fuzzy
msgid "Print option list"
msgstr "Roghanna Printéir"
-#: ../../printerdrake.pm_.c:2182
+#: ../../printerdrake.pm_.c:2373
#, c-format
msgid ""
"Your multi-function device was configured automatically to be able to scan. "
@@ -7326,7 +7647,7 @@ msgid ""
"Do not use \"scannerdrake\" for this device!"
msgstr ""
-#: ../../printerdrake.pm_.c:2202
+#: ../../printerdrake.pm_.c:2394
msgid ""
"Your printer was configured automatically to give you access to the photo "
"card drives from your PC. Now you can access your photo cards using the "
@@ -7339,18 +7660,18 @@ msgid ""
"of the file lists."
msgstr ""
-#: ../../printerdrake.pm_.c:2223 ../../printerdrake.pm_.c:2673
-#: ../../printerdrake.pm_.c:2945
+#: ../../printerdrake.pm_.c:2416 ../../printerdrake.pm_.c:2875
+#: ../../printerdrake.pm_.c:3170
msgid "Reading printer data..."
msgstr ""
-#: ../../printerdrake.pm_.c:2243 ../../printerdrake.pm_.c:2271
-#: ../../printerdrake.pm_.c:2306
+#: ../../printerdrake.pm_.c:2436 ../../printerdrake.pm_.c:2464
+#: ../../printerdrake.pm_.c:2499
#, fuzzy
msgid "Transfer printer configuration"
msgstr "Cumraigh Idirlíon"
-#: ../../printerdrake.pm_.c:2244
+#: ../../printerdrake.pm_.c:2437
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -7360,51 +7681,51 @@ msgid ""
"Not all queues can be transferred due to the following reasons:\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2247
+#: ../../printerdrake.pm_.c:2440
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2249
+#: ../../printerdrake.pm_.c:2442
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2251
+#: ../../printerdrake.pm_.c:2444
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2253
+#: ../../printerdrake.pm_.c:2446
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:2254
+#: ../../printerdrake.pm_.c:2447
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
"or with native CUPS drivers cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:2255
+#: ../../printerdrake.pm_.c:2448
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
"\"Transfer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:2258
+#: ../../printerdrake.pm_.c:2451
msgid "Do not transfer printers"
msgstr ""
-#: ../../printerdrake.pm_.c:2259 ../../printerdrake.pm_.c:2276
+#: ../../printerdrake.pm_.c:2452 ../../printerdrake.pm_.c:2469
msgid "Transfer"
msgstr ""
-#: ../../printerdrake.pm_.c:2272
+#: ../../printerdrake.pm_.c:2465
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -7412,61 +7733,61 @@ msgid ""
"You can also type a new name or skip this printer."
msgstr ""
-#: ../../printerdrake.pm_.c:2280
+#: ../../printerdrake.pm_.c:2473
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr ""
-#: ../../printerdrake.pm_.c:2285
+#: ../../printerdrake.pm_.c:2478
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
"do you really want to overwrite its configuration?"
msgstr ""
-#: ../../printerdrake.pm_.c:2293
+#: ../../printerdrake.pm_.c:2486
#, fuzzy
msgid "New printer name"
msgstr "Gan Printéir"
-#: ../../printerdrake.pm_.c:2296
+#: ../../printerdrake.pm_.c:2489
#, c-format
msgid "Transferring %s..."
msgstr ""
-#: ../../printerdrake.pm_.c:2307
+#: ../../printerdrake.pm_.c:2500
#, c-format
msgid ""
"You have transferred your former default printer (\"%s\"), Should it be also "
"the default printer under the new printing system %s?"
msgstr ""
-#: ../../printerdrake.pm_.c:2316
+#: ../../printerdrake.pm_.c:2510
msgid "Refreshing printer data..."
msgstr ""
-#: ../../printerdrake.pm_.c:2324 ../../printerdrake.pm_.c:2395
-#: ../../printerdrake.pm_.c:2407
+#: ../../printerdrake.pm_.c:2518 ../../printerdrake.pm_.c:2590
+#: ../../printerdrake.pm_.c:2602
#, fuzzy
msgid "Configuration of a remote printer"
msgstr "Cumraigh Printéir"
-#: ../../printerdrake.pm_.c:2325
+#: ../../printerdrake.pm_.c:2519
#, fuzzy
msgid "Starting network..."
msgstr "Nasc Printéir"
-#: ../../printerdrake.pm_.c:2359 ../../printerdrake.pm_.c:2363
-#: ../../printerdrake.pm_.c:2365
+#: ../../printerdrake.pm_.c:2554 ../../printerdrake.pm_.c:2558
+#: ../../printerdrake.pm_.c:2560
#, fuzzy
msgid "Configure the network now"
msgstr "Cumraigh gréasánú"
-#: ../../printerdrake.pm_.c:2360
+#: ../../printerdrake.pm_.c:2555
#, fuzzy
msgid "Network functionality not configured"
msgstr "Níl aon scáileán cumraithe"
-#: ../../printerdrake.pm_.c:2361
+#: ../../printerdrake.pm_.c:2556
msgid ""
"You are going to configure a remote printer. This needs working network "
"access, but your network is not configured yet. If you go on without network "
@@ -7474,12 +7795,12 @@ msgid ""
"configuring now. How do you want to proceed?"
msgstr ""
-#: ../../printerdrake.pm_.c:2364
+#: ../../printerdrake.pm_.c:2559
#, fuzzy
msgid "Go on without configuring the network"
msgstr "Cumraigh gréasánú"
-#: ../../printerdrake.pm_.c:2397
+#: ../../printerdrake.pm_.c:2592
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -7489,34 +7810,34 @@ msgid ""
"\"Printer\""
msgstr ""
-#: ../../printerdrake.pm_.c:2398
+#: ../../printerdrake.pm_.c:2593
msgid ""
"The network access was not running and could not be started. Please check "
"your configuration and your hardware. Then try to configure your remote "
"printer again."
msgstr ""
-#: ../../printerdrake.pm_.c:2408
+#: ../../printerdrake.pm_.c:2603
#, fuzzy
msgid "Restarting printing system..."
msgstr "Scríos Printéir"
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2641
#, fuzzy
msgid "high"
msgstr "Árd"
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2641
#, fuzzy
msgid "paranoid"
msgstr "Paranóid"
-#: ../../printerdrake.pm_.c:2447
+#: ../../printerdrake.pm_.c:2642
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr ""
-#: ../../printerdrake.pm_.c:2448
+#: ../../printerdrake.pm_.c:2643
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -7531,11 +7852,11 @@ msgid ""
"Do you really want to configure printing on this machine?"
msgstr ""
-#: ../../printerdrake.pm_.c:2480
+#: ../../printerdrake.pm_.c:2675
msgid "Starting the printing system at boot time"
msgstr ""
-#: ../../printerdrake.pm_.c:2481
+#: ../../printerdrake.pm_.c:2676
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -7549,214 +7870,212 @@ msgid ""
"again?"
msgstr ""
-#: ../../printerdrake.pm_.c:2504 ../../printerdrake.pm_.c:2544
-#: ../../printerdrake.pm_.c:2581 ../../printerdrake.pm_.c:2621
-#: ../../printerdrake.pm_.c:2733
+#: ../../printerdrake.pm_.c:2700 ../../printerdrake.pm_.c:2741
+#: ../../printerdrake.pm_.c:2780 ../../printerdrake.pm_.c:2822
+#: ../../printerdrake.pm_.c:2943
msgid "Checking installed software..."
msgstr ""
-#: ../../printerdrake.pm_.c:2548
+#: ../../printerdrake.pm_.c:2746
msgid "Removing LPRng..."
msgstr ""
-#: ../../printerdrake.pm_.c:2585
+#: ../../printerdrake.pm_.c:2785
msgid "Removing LPD..."
msgstr ""
-#: ../../printerdrake.pm_.c:2657
+#: ../../printerdrake.pm_.c:2858
#, fuzzy
msgid "Select Printer Spooler"
msgstr "Nasc Printéir"
-#: ../../printerdrake.pm_.c:2658
+#: ../../printerdrake.pm_.c:2859
#, fuzzy
msgid "Which printing system (spooler) do you want to use?"
msgstr "Cén rann atá uait?"
-#: ../../printerdrake.pm_.c:2691
+#: ../../printerdrake.pm_.c:2895
#, fuzzy, c-format
msgid "Configuring printer \"%s\"..."
msgstr "Cumraigh printéir"
-#: ../../printerdrake.pm_.c:2704
+#: ../../printerdrake.pm_.c:2909
#, fuzzy
msgid "Installing Foomatic..."
msgstr "Ag feistiál pacáiste %s"
-#: ../../printerdrake.pm_.c:2769 ../../printerdrake.pm_.c:2808
-#: ../../printerdrake.pm_.c:3192 ../../printerdrake.pm_.c:3262
+#: ../../printerdrake.pm_.c:2979 ../../printerdrake.pm_.c:3020
+#: ../../printerdrake.pm_.c:3417 ../../printerdrake.pm_.c:3490
msgid "Printer options"
msgstr "Roghanna Printéir"
-#: ../../printerdrake.pm_.c:2778
-msgid "Preparing PrinterDrake..."
-msgstr ""
+#: ../../printerdrake.pm_.c:2989
+#, fuzzy
+msgid "Preparing Printerdrake..."
+msgstr "Scríos Printéir"
-#: ../../printerdrake.pm_.c:2795 ../../printerdrake.pm_.c:3349
+#: ../../printerdrake.pm_.c:3007 ../../printerdrake.pm_.c:3580
#, fuzzy
msgid "Configuring applications..."
msgstr "Cumraigh printéir"
-#: ../../printerdrake.pm_.c:2815
+#: ../../printerdrake.pm_.c:3027
#, fuzzy
msgid "Would you like to configure printing?"
msgstr "An dteastaìonn uait printéir a chumrú?"
-#: ../../printerdrake.pm_.c:2827
+#: ../../printerdrake.pm_.c:3039
msgid "Printing system: "
msgstr ""
-#: ../../printerdrake.pm_.c:2875
-#, fuzzy
-msgid "Printerdrake"
-msgstr "Clódóir"
-
-#: ../../printerdrake.pm_.c:2879
+#: ../../printerdrake.pm_.c:3099
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; to view information about it; "
"or to make a printer on a remote CUPS server available for Star Office/"
-"OpenOffice.org."
+"OpenOffice.org/GIMP."
msgstr ""
-#: ../../printerdrake.pm_.c:2880
+#: ../../printerdrake.pm_.c:3100
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; or to view information about "
"it."
msgstr ""
-#: ../../printerdrake.pm_.c:2906
+#: ../../printerdrake.pm_.c:3127
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr ""
-#: ../../printerdrake.pm_.c:2924
+#: ../../printerdrake.pm_.c:3145
#, fuzzy
msgid "Change the printing system"
msgstr "Cumraigh gréasánú"
-#: ../../printerdrake.pm_.c:2929 ../../standalone/drakconnect_.c:277
+#: ../../printerdrake.pm_.c:3150 ../../standalone/drakconnect_.c:277
#, fuzzy
msgid "Normal Mode"
msgstr "Luchóg ar bith"
-#: ../../printerdrake.pm_.c:3085 ../../printerdrake.pm_.c:3135
-#: ../../printerdrake.pm_.c:3343
+#: ../../printerdrake.pm_.c:3310 ../../printerdrake.pm_.c:3360
+#: ../../printerdrake.pm_.c:3573
#, fuzzy
msgid "Do you want to configure another printer?"
msgstr "An bhfuil tú ag iarraidh an cumraíocht a thrial?"
-#: ../../printerdrake.pm_.c:3170
+#: ../../printerdrake.pm_.c:3395
#, fuzzy
msgid "Modify printer configuration"
msgstr "Cumraigh Idirlíon"
-#: ../../printerdrake.pm_.c:3172
+#: ../../printerdrake.pm_.c:3397
#, fuzzy, c-format
msgid ""
"Printer %s\n"
"What do you want to modify on this printer?"
msgstr "An bhfuil tú ag iarraidh an cumraíocht a thrial?"
-#: ../../printerdrake.pm_.c:3176
+#: ../../printerdrake.pm_.c:3401
msgid "Do it!"
msgstr ""
-#: ../../printerdrake.pm_.c:3181 ../../printerdrake.pm_.c:3236
+#: ../../printerdrake.pm_.c:3406 ../../printerdrake.pm_.c:3461
#, fuzzy
msgid "Printer connection type"
msgstr "Nasc Printéir"
-#: ../../printerdrake.pm_.c:3182 ../../printerdrake.pm_.c:3240
+#: ../../printerdrake.pm_.c:3407 ../../printerdrake.pm_.c:3465
msgid "Printer name, description, location"
msgstr ""
-#: ../../printerdrake.pm_.c:3184 ../../printerdrake.pm_.c:3255
+#: ../../printerdrake.pm_.c:3409 ../../printerdrake.pm_.c:3483
msgid "Printer manufacturer, model, driver"
msgstr ""
-#: ../../printerdrake.pm_.c:3185 ../../printerdrake.pm_.c:3256
+#: ../../printerdrake.pm_.c:3410 ../../printerdrake.pm_.c:3484
msgid "Printer manufacturer, model"
msgstr ""
-#: ../../printerdrake.pm_.c:3194 ../../printerdrake.pm_.c:3266
+#: ../../printerdrake.pm_.c:3419 ../../printerdrake.pm_.c:3494
msgid "Set this printer as the default"
msgstr ""
-#: ../../printerdrake.pm_.c:3196 ../../printerdrake.pm_.c:3271
-msgid "Add this printer to Star Office/OpenOffice.org"
+#: ../../printerdrake.pm_.c:3421 ../../printerdrake.pm_.c:3499
+msgid "Add this printer to Star Office/OpenOffice.org/GIMP"
msgstr ""
-#: ../../printerdrake.pm_.c:3197 ../../printerdrake.pm_.c:3280
-msgid "Remove this printer from Star Office/OpenOffice.org"
+#: ../../printerdrake.pm_.c:3422 ../../printerdrake.pm_.c:3508
+msgid "Remove this printer from Star Office/OpenOffice.org/GIMP"
msgstr ""
-#: ../../printerdrake.pm_.c:3198 ../../printerdrake.pm_.c:3289
+#: ../../printerdrake.pm_.c:3423 ../../printerdrake.pm_.c:3517
#, fuzzy
msgid "Print test pages"
msgstr "Óstainm Printéir"
-#: ../../printerdrake.pm_.c:3199 ../../printerdrake.pm_.c:3291
+#: ../../printerdrake.pm_.c:3424 ../../printerdrake.pm_.c:3519
#, fuzzy
msgid "Know how to use this printer"
msgstr "An bhfuil tú ag iarraidh an cumraíocht a thrial?"
-#: ../../printerdrake.pm_.c:3201 ../../printerdrake.pm_.c:3293
+#: ../../printerdrake.pm_.c:3426 ../../printerdrake.pm_.c:3521
#, fuzzy
msgid "Remove printer"
msgstr "Scríos Printéir"
-#: ../../printerdrake.pm_.c:3245
+#: ../../printerdrake.pm_.c:3472
#, fuzzy, c-format
msgid "Removing old printer \"%s\"..."
msgstr "Scríos Printéir"
-#: ../../printerdrake.pm_.c:3269
+#: ../../printerdrake.pm_.c:3497
#, fuzzy
msgid "Default printer"
msgstr "Printéir áitiúl"
-#: ../../printerdrake.pm_.c:3270
+#: ../../printerdrake.pm_.c:3498
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr ""
-#: ../../printerdrake.pm_.c:3274 ../../printerdrake.pm_.c:3277
-msgid "Adding printer to Star Office/OpenOffice.org"
+#: ../../printerdrake.pm_.c:3502 ../../printerdrake.pm_.c:3505
+msgid "Adding printer to Star Office/OpenOffice.org/GIMP"
msgstr ""
-#: ../../printerdrake.pm_.c:3275
+#: ../../printerdrake.pm_.c:3503
#, c-format
msgid ""
-"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
+"The printer \"%s\" was successfully added to Star Office/OpenOffice.org/GIMP."
msgstr ""
-#: ../../printerdrake.pm_.c:3278
+#: ../../printerdrake.pm_.c:3506
#, c-format
-msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
+msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org/GIMP."
msgstr ""
-#: ../../printerdrake.pm_.c:3283 ../../printerdrake.pm_.c:3286
-msgid "Removing printer from Star Office/OpenOffice.org"
+#: ../../printerdrake.pm_.c:3511 ../../printerdrake.pm_.c:3514
+msgid "Removing printer from Star Office/OpenOffice.org/GIMP"
msgstr ""
-#: ../../printerdrake.pm_.c:3284
+#: ../../printerdrake.pm_.c:3512
#, c-format
msgid ""
-"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
+"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org/"
+"GIMP."
msgstr ""
-#: ../../printerdrake.pm_.c:3287
+#: ../../printerdrake.pm_.c:3515
#, c-format
-msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
+msgid ""
+"Failed to remove the printer \"%s\" from Star Office/OpenOffice.org/GIMP."
msgstr ""
-#: ../../printerdrake.pm_.c:3295
+#: ../../printerdrake.pm_.c:3523
#, fuzzy, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr "An bhfuil tú ag iarraidh an cumraíocht a thrial?"
-#: ../../printerdrake.pm_.c:3297
+#: ../../printerdrake.pm_.c:3527
#, fuzzy, c-format
msgid "Removing printer \"%s\"..."
msgstr "Scríos Printéir"
@@ -8088,7 +8407,7 @@ msgstr "Idirlíon"
msgid "File sharing"
msgstr ""
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1669
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1744
#, fuzzy
msgid "System"
msgstr "Mód Coras"
@@ -8144,192 +8463,227 @@ msgstr "Clár Tosnú"
msgid "Stop"
msgstr "Teascán"
-#: ../../share/advertising/00-thanks.pl_.c:9
-msgid "Thank you for choosing Mandrake Linux 8.2"
+#: ../../share/advertising/01-thanks.pl_.c:9
+msgid "Thank you for choosing Mandrake Linux 9.0"
msgstr ""
-#: ../../share/advertising/00-thanks.pl_.c:10
+#: ../../share/advertising/01-thanks.pl_.c:10
msgid "Welcome to the Open Source world"
msgstr ""
-#: ../../share/advertising/00-thanks.pl_.c:11
+#: ../../share/advertising/01-thanks.pl_.c:11
msgid ""
"The success of MandrakeSoft is based upon the principle of Free Software. "
"Your new operating system is the result of collaborative work on the part of "
"the worldwide Linux Community"
msgstr ""
-#: ../../share/advertising/01-gnu.pl_.c:9
+#: ../../share/advertising/02-community.pl_.c:9
#, fuzzy
-msgid "Join the Free Software world"
+msgid "Get involved in the Free Software world"
msgstr "Trialaigh an cumraíocht"
-#: ../../share/advertising/01-gnu.pl_.c:10
+#: ../../share/advertising/02-community.pl_.c:10
+msgid "Want to know more about the Open Source community?"
+msgstr ""
+
+#: ../../share/advertising/02-community.pl_.c:11
msgid ""
-"Get to know the Open Source community and become a member. Learn, teach, and "
-"help others by joining the many discussion forums that you will find in our "
-"\"Community\" webpages"
+"To share your own knowledge and help build Linux tools, join the discussions "
+"forum you'll find on our \"Community\" webpages"
msgstr ""
-#: ../../share/advertising/02-internet.pl_.c:9
-#, fuzzy
-msgid "Internet and Messaging"
-msgstr "suimiúil"
+#: ../../share/advertising/03-internet.pl_.c:9
+msgid "Get the most from the Internet"
+msgstr ""
-#: ../../share/advertising/02-internet.pl_.c:10
+#: ../../share/advertising/03-internet.pl_.c:10
msgid ""
-"Mandrake Linux 8.2 provides the best software to access everything the "
-"Internet has to offer: Surf the web & view animations with Mozilla and "
-"Konqueror, exchange email & organize your personal information with "
-"Evolution and Kmail, and much more"
+"Mandrake Linux 9.0 has selected the best software for you. Surf the Web and "
+"view animations with Mozilla and Konqueror, or read your mail and handle "
+"your personal information with Evolution and Kmail"
msgstr ""
-#: ../../share/advertising/03-graphic.pl_.c:9
-#, fuzzy
-msgid "Multimedia and Graphics"
-msgstr "Ilmheánach"
+#: ../../share/advertising/04-multimedia.pl_.c:9
+msgid "Discover the most up-to-date graphics and multimedia tools!"
+msgstr ""
+
+#: ../../share/advertising/04-multimedia.pl_.c:10
+msgid "Push multimedia to its limits!"
+msgstr ""
-#: ../../share/advertising/03-graphic.pl_.c:10
+#: ../../share/advertising/04-multimedia.pl_.c:11
msgid ""
-"Mandrake Linux 8.2 lets you push your multimedia computer to its limits! Use "
-"the latest software to play music and audio files, edit and organize your "
-"images and photos, watch TV and videos, and much more"
+"Mandrake Linux 9.0 enables you to use the very latest software to play audio "
+"files, edit and handle your images or photos, and play videos"
msgstr ""
-#: ../../share/advertising/04-develop.pl_.c:9
-msgid "Development"
-msgstr "Forbairt"
+#: ../../share/advertising/05-games.pl_.c:9
+msgid "Games"
+msgstr "Cluichí"
-#: ../../share/advertising/04-develop.pl_.c:10
+#: ../../share/advertising/05-games.pl_.c:10
msgid ""
-"Mandrake Linux 8.2 is the ultimate development platform. Discover the power "
-"of the GNU gcc compiler as well as the best Open Source development "
-"environments"
+"Mandrake Linux 9.0 provides the best Open Source games - arcade, action, "
+"cards, sports, strategy..."
msgstr ""
-#: ../../share/advertising/05-contcenter.pl_.c:9
-#: ../../standalone/drakbug_.c:69
+#: ../../share/advertising/06-mcc.pl_.c:9 ../../standalone/drakbug_.c:69
#, fuzzy
msgid "Mandrake Control Center"
msgstr "Bainteach le hIdirlíon"
-#: ../../share/advertising/05-contcenter.pl_.c:10
+#: ../../share/advertising/06-mcc.pl_.c:10
msgid ""
-"The Mandrake Linux 8.2 Control Center is a one-stop location for fully "
-"customizing and configuring your Mandrake system"
+"Mandrake Linux 9.0 provides a powerful tool to fully customize and configure "
+"your machine"
msgstr ""
-#: ../../share/advertising/06-user.pl_.c:9
+#: ../../share/advertising/07-desktop.pl_.c:9
#, fuzzy
msgid "User interfaces"
msgstr "Cláréadan Gréasán"
-#: ../../share/advertising/06-user.pl_.c:10
+#: ../../share/advertising/07-desktop.pl_.c:10
msgid ""
-"Mandrake Linux 8.2 provides 11 different graphical desktop environments and "
-"window managers to choose from including GNOME 1.4, KDE 2.2.2, Window Maker "
-"0.8, and the rest"
+"Mandrake Linux 9.0 provides 11 user interfaces which can be fully modified: "
+"KDE 3, Gnome 2, WindowMaker..."
msgstr ""
-#: ../../share/advertising/07-server.pl_.c:9
+#: ../../share/advertising/08-development.pl_.c:9
#, fuzzy
-msgid "Server Software"
-msgstr "freastalaí óstann SMB"
+msgid "Development simplified"
+msgstr "Forbairt"
+
+#: ../../share/advertising/08-development.pl_.c:10
+msgid "Mandrake Linux 9.0 is the ultimate development platform"
+msgstr ""
-#: ../../share/advertising/07-server.pl_.c:10
+#: ../../share/advertising/08-development.pl_.c:11
msgid ""
-"Transform your machine into a powerful server with just a few clicks of the "
-"mouse: Web server, email, firewall, router, file and print server, ..."
+"Use the full power of the GNU gcc 3 compiler as well as the best Open Source "
+"development environments"
msgstr ""
-#: ../../share/advertising/08-games.pl_.c:9
-msgid "Games"
-msgstr "Cluichí"
+#: ../../share/advertising/09-server.pl_.c:9
+msgid "Turn your machine into a reliable server"
+msgstr ""
-#: ../../share/advertising/08-games.pl_.c:10
+#: ../../share/advertising/09-server.pl_.c:10
msgid ""
-"Mandrake Linux 8.2 provides the best Open Source games - arcade, action, "
-"cards, sports, strategy, ..."
+"Transform your machine into a powerful server in a few clicks of your mouse: "
+"Web server, mail, firewall, router, file and print server..."
msgstr ""
-#: ../../share/advertising/09-MDKcampus.pl_.c:9
-msgid "MandrakeCampus"
+#: ../../share/advertising/10-mnf.pl_.c:9
+msgid "Optimize your security"
msgstr ""
-#: ../../share/advertising/09-MDKcampus.pl_.c:10
+#: ../../share/advertising/10-mnf.pl_.c:10
msgid ""
-"Would you like to learn Linux simply, quickly, and for free? MandrakeSoft "
-"provides free Linux training, as well as a way to test your progress, at "
-"MandrakeCampus -- our online training center"
+"The MandrakeSecurity range includes the Multi Network Firewall product (M.N."
+"F.)"
msgstr ""
-#: ../../share/advertising/10-MDKexpert.pl_.c:9
-#, fuzzy
-msgid "MandrakeExpert"
-msgstr "Saineolaí"
+#: ../../share/advertising/10-mnf.pl_.c:11
+msgid ""
+"This firewall product includes network features which allow you to fulfill "
+"all your security needs"
+msgstr ""
+
+#: ../../share/advertising/10-mnf.pl_.c:12
+msgid "This product is available on MandrakeStore website"
+msgstr ""
-#: ../../share/advertising/10-MDKexpert.pl_.c:10
+#: ../../share/advertising/11-mdkstore.pl_.c:9
+msgid "The official MandrakeSoft store"
+msgstr ""
+
+#: ../../share/advertising/11-mdkstore.pl_.c:10
msgid ""
-"Quality support from the Linux Community, and from MandrakeSoft, is just "
-"around the corner. And if you're already a Linux veteran, become an \"Expert"
-"\" and share your knowledge at our support website"
+"Our full range of Linux solutions, as well as special offers on products and "
+"'goodies', are available online at our e-store"
msgstr ""
-#: ../../share/advertising/11-consul.pl_.c:9
-msgid "MandrakeConsulting"
+#: ../../share/advertising/12-mdkstore.pl_.c:9
+msgid "Strategic partners"
msgstr ""
-#: ../../share/advertising/11-consul.pl_.c:10
+#: ../../share/advertising/12-mdkstore.pl_.c:10
msgid ""
-"For all of your IT projects, our consultants are ready to analyze your "
-"requirements and offer a customized solution. Benefit from MandrakeSoft's "
-"vast experience as a Linux producer to provide a true IT alternative for "
-"your business organization"
+"MandrakeSoft works alongside a selection of companies offering professional "
+"solutions compatible with Mandrake Linux; a list of these partners is "
+"available on the MandrakeStore"
msgstr ""
-#: ../../share/advertising/12-MDKstore.pl_.c:9
+#: ../../share/advertising/13-mdkcampus.pl_.c:9
+msgid "Discover MandrakeSoft's training catalogue Linux-Campus"
+msgstr ""
+
+#: ../../share/advertising/13-mdkcampus.pl_.c:10
+msgid ""
+"The training program has been create to respond to the needs of both users "
+"and experts (Network and System administrations)"
+msgstr ""
+
+#: ../../share/advertising/13-mdkcampus.pl_.c:11
+msgid "Certify yourself on Linux"
+msgstr ""
+
+#: ../../share/advertising/13-mdkcampus.pl_.c:12
+msgid ""
+"Whether you choose to teach yourself online or via our network of training "
+"partners, the Linux-Campus catalogue prepares you for the acknowledged LPI "
+"certification program (worldwide professional technical certification)"
+msgstr ""
+
+#: ../../share/advertising/14-mdkexpert.pl_.c:9
#, fuzzy
-msgid "MandrakeStore"
-msgstr "sainordaitheach"
+msgid "Become a MandrakeExpert"
+msgstr "Saineolaí"
-#: ../../share/advertising/12-MDKstore.pl_.c:10
+#: ../../share/advertising/14-mdkexpert.pl_.c:10
msgid ""
-"A full range of Linux solutions, as well as special offers on products and "
-"'goodies', are available online at our e-store"
+"Find the solutions to your problems via MandrakeSoft's online support "
+"platform"
msgstr ""
-#: ../../share/advertising/13-Nvert.pl_.c:9
+#: ../../share/advertising/14-mdkexpert.pl_.c:11
msgid ""
-"For more information on MandrakeSoft's Professional Services and commercial "
-"offerings, please see the following web page:"
+"Join the MandrakeSoft support teams and the Linux Community online to share "
+"your knowledge and help others by becoming a recognized Expert on the online "
+"technical support website:"
msgstr ""
-#: ../../share/advertising/13-Nvert.pl_.c:11
-msgid "http://www.mandrakesoft.com/sales/contact"
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:9
+#, fuzzy
+msgid "MandrakeExpert Corporate"
+msgstr "Saineolaí"
+
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:10
+msgid "An online platform to respond to company's specific support needs"
msgstr ""
-#: ../../standalone.pm_.c:40
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:11
+msgid ""
+"All incidents will be followed up by a single qualified MandrakeSoft "
+"technical expert."
+msgstr ""
+
+#: ../../standalone.pm_.c:41
#, fuzzy
msgid "Installing packages..."
msgstr "Ag feistiál pacáiste %s"
-#: ../../standalone/XFdrake_.c:143
+#: ../../standalone/XFdrake_.c:145
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "Éirigh as le do thoil agus Crtl-Alt-BackSpace a úsáid"
-#: ../../standalone/XFdrake_.c:147
+#: ../../standalone/XFdrake_.c:149
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr ""
-#: ../../standalone/diskdrake_.c:81
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I'll try to go on blanking bad partitions"
-msgstr ""
-"Ni féidir liom an tábla rainn a léamh, tá máchaillí ann :(\n"
-"Leanfaidh mé orm ag cealú droch rainn"
-
#: ../../standalone/drakTermServ_.c:188
#, fuzzy
msgid "Mandrake Terminal Server Configuration"
@@ -8372,12 +8726,13 @@ msgstr "Suimigh úsáideoir"
msgid "Add/Del Clients"
msgstr ""
-#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3282
-#: ../../standalone/drakbackup_.c:3315 ../../standalone/drakbackup_.c:3341
-#: ../../standalone/drakbackup_.c:3368 ../../standalone/drakbackup_.c:3395
-#: ../../standalone/drakbackup_.c:3434 ../../standalone/drakbackup_.c:3455
-#: ../../standalone/drakbackup_.c:3482 ../../standalone/drakbackup_.c:3508
-#: ../../standalone/drakbackup_.c:3533 ../../standalone/drakfont_.c:700
+#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3930
+#: ../../standalone/drakbackup_.c:3963 ../../standalone/drakbackup_.c:3989
+#: ../../standalone/drakbackup_.c:4016 ../../standalone/drakbackup_.c:4043
+#: ../../standalone/drakbackup_.c:4082 ../../standalone/drakbackup_.c:4103
+#: ../../standalone/drakbackup_.c:4130 ../../standalone/drakbackup_.c:4160
+#: ../../standalone/drakbackup_.c:4186 ../../standalone/drakbackup_.c:4211
+#: ../../standalone/drakfont_.c:700
#, fuzzy
msgid "Help"
msgstr "/C_úidiú"
@@ -8536,8 +8891,8 @@ msgid ""
"The parameters of the auto-install are available in the sections on the left"
msgstr ""
-#: ../../standalone/drakautoinst_.c:239 ../../standalone/drakgw_.c:548
-#: ../../standalone/scannerdrake_.c:105
+#: ../../standalone/drakautoinst_.c:239 ../../standalone/drakgw_.c:484
+#: ../../standalone/scannerdrake_.c:119
msgid "Congratulations!"
msgstr "Comhghairdeas!"
@@ -8562,27 +8917,31 @@ msgstr "Suimigh úsáideoir"
msgid "Remove the last item"
msgstr "Ag formáidiú comhad 'loopback' %s"
-#: ../../standalone/drakbackup_.c:625
+#: ../../standalone/drakbackup_.c:619
msgid "Cron not available yet as non-root"
msgstr ""
-#: ../../standalone/drakbackup_.c:731
+#: ../../standalone/drakbackup_.c:725
msgid "WARNING"
msgstr ""
-#: ../../standalone/drakbackup_.c:732
+#: ../../standalone/drakbackup_.c:726
#, fuzzy
msgid "FATAL"
msgstr "FAT"
-#: ../../standalone/drakbackup_.c:744
+#: ../../standalone/drakbackup_.c:727
+msgid "INFO"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:739
msgid ""
"\n"
" DrakBackup Report \n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:745
+#: ../../standalone/drakbackup_.c:740
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -8590,7 +8949,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:749
+#: ../../standalone/drakbackup_.c:744
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -8598,13 +8957,20 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:770 ../../standalone/drakbackup_.c:840
-#: ../../standalone/drakbackup_.c:894
+#: ../../standalone/drakbackup_.c:765 ../../standalone/drakbackup_.c:835
+#: ../../standalone/drakbackup_.c:889
#, fuzzy
msgid "Total progess"
msgstr "Bain trial as arís"
-#: ../../standalone/drakbackup_.c:822
+#: ../../standalone/drakbackup_.c:788
+msgid ""
+"Sorry, perl-Expect is not installed/enabled. To use\n"
+"this feature, install perl-Expect and comment lines 772-774,\n"
+" as well as 788,789. Then uncomment line 787."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:817
#, c-format
msgid ""
"%s exists, delete?\n"
@@ -8613,16 +8979,41 @@ msgid ""
" need to purge the entry from authorized_keys on the server."
msgstr ""
-#: ../../standalone/drakbackup_.c:831
+#: ../../standalone/drakbackup_.c:826
msgid "This may take a moment to generate the keys."
msgstr ""
-#: ../../standalone/drakbackup_.c:838
+#: ../../standalone/drakbackup_.c:833
#, c-format
msgid "ERROR: Cannot spawn %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:865
+#: ../../standalone/drakbackup_.c:850
+#, c-format
+msgid "No password prompt on %s at port %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:851
+#, fuzzy, c-format
+msgid "Bad password on %s"
+msgstr "Gan pasfhocal"
+
+#: ../../standalone/drakbackup_.c:852
+#, c-format
+msgid "Permission denied transferring %s to %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:853
+#, fuzzy, c-format
+msgid "Can't find %s on %s"
+msgstr "Earráid ag oscailt %s do scríobh: %s"
+
+#: ../../standalone/drakbackup_.c:856
+#, c-format
+msgid "%s not responding"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:860
#, c-format
msgid ""
"Transfer successful\n"
@@ -8633,63 +9024,68 @@ msgid ""
"without being prompted for a password."
msgstr ""
-#: ../../standalone/drakbackup_.c:908
+#: ../../standalone/drakbackup_.c:903
msgid "WebDAV remote site already in sync!"
msgstr ""
-#: ../../standalone/drakbackup_.c:912
+#: ../../standalone/drakbackup_.c:907
msgid "WebDAV transfer failed!"
msgstr ""
-#: ../../standalone/drakbackup_.c:934
+#: ../../standalone/drakbackup_.c:928
msgid "No CDR/DVDR in drive!"
msgstr ""
-#: ../../standalone/drakbackup_.c:938
+#: ../../standalone/drakbackup_.c:932
msgid "Does not appear to be recordable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:942
+#: ../../standalone/drakbackup_.c:936
msgid "Not erasable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:981
+#: ../../standalone/drakbackup_.c:975
msgid "This may take a moment to erase the media."
msgstr ""
-#: ../../standalone/drakbackup_.c:1045
+#: ../../standalone/drakbackup_.c:1060
msgid "Permission problem accessing CD."
msgstr ""
-#: ../../standalone/drakbackup_.c:1144 ../../standalone/drakbackup_.c:1193
+#: ../../standalone/drakbackup_.c:1087
+#, c-format
+msgid "No tape in %s!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1199 ../../standalone/drakbackup_.c:1248
msgid "Backup system files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:1194 ../../standalone/drakbackup_.c:1261
+#: ../../standalone/drakbackup_.c:1249 ../../standalone/drakbackup_.c:1316
#, fuzzy
msgid "Hard Disk Backup files..."
msgstr "Droch comhad chúltaca"
-#: ../../standalone/drakbackup_.c:1206
+#: ../../standalone/drakbackup_.c:1261
#, fuzzy
msgid "Backup User files..."
msgstr "Droch comhad chúltaca"
-#: ../../standalone/drakbackup_.c:1207
+#: ../../standalone/drakbackup_.c:1262
msgid "Hard Disk Backup Progress..."
msgstr ""
-#: ../../standalone/drakbackup_.c:1260
+#: ../../standalone/drakbackup_.c:1315
#, fuzzy
msgid "Backup Other files..."
msgstr "Droch comhad chúltaca"
-#: ../../standalone/drakbackup_.c:1266
+#: ../../standalone/drakbackup_.c:1321
#, fuzzy
msgid "No changes to backup!"
msgstr "Droch comhad chúltaca"
-#: ../../standalone/drakbackup_.c:1282 ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1337 ../../standalone/drakbackup_.c:1360
#, c-format
msgid ""
"\n"
@@ -8697,799 +9093,922 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1289
+#: ../../standalone/drakbackup_.c:1344
#, c-format
msgid ""
-"file list sent by FTP : %s\n"
+"file list sent by FTP: %s\n"
" "
msgstr ""
-#: ../../standalone/drakbackup_.c:1292
+#: ../../standalone/drakbackup_.c:1347
msgid ""
"\n"
" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1310
+#: ../../standalone/drakbackup_.c:1365
msgid ""
"\n"
"Drakbackup activities via CD:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1315
+#: ../../standalone/drakbackup_.c:1370
msgid ""
"\n"
"Drakbackup activities via tape:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1324
+#: ../../standalone/drakbackup_.c:1379
#, fuzzy
msgid " Error during mail sending. \n"
-msgstr "Earráid ag léamh comhad $f"
+msgstr "Earráid ag léamh comhad %s"
-#: ../../standalone/drakbackup_.c:1346
+#: ../../standalone/drakbackup_.c:1404
msgid "Can't create catalog!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1459 ../../standalone/drakbackup_.c:1470
-#: ../../standalone/drakbackup_.c:1481 ../../standalone/drakfont_.c:1004
+#: ../../standalone/drakbackup_.c:1517 ../../standalone/drakbackup_.c:1528
+#: ../../standalone/drakfont_.c:1004
#, fuzzy
msgid "File Selection"
msgstr "Roghnú Grúpa Pacáistí"
-#: ../../standalone/drakbackup_.c:1486
+#: ../../standalone/drakbackup_.c:1556
msgid "Select the files or directories and click on 'Add'"
msgstr ""
-#: ../../standalone/drakbackup_.c:1525
+#: ../../standalone/drakbackup_.c:1600
msgid ""
"\n"
"Please check all options that you need.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1526
+#: ../../standalone/drakbackup_.c:1601
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1527
+#: ../../standalone/drakbackup_.c:1602
#, fuzzy
msgid "Backup your System files. (/etc directory)"
msgstr "Droch comhad chúltaca"
-#: ../../standalone/drakbackup_.c:1528
+#: ../../standalone/drakbackup_.c:1603
msgid "Use incremental backup (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1529
+#: ../../standalone/drakbackup_.c:1604
msgid "Do not include critical files (passwd, group, fstab)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1530
+#: ../../standalone/drakbackup_.c:1605
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr ""
-#: ../../standalone/drakbackup_.c:1547
+#: ../../standalone/drakbackup_.c:1622
#, fuzzy
msgid "Please check all users that you want to include in your backup."
msgstr "Roghnaight do theangam le do thoil."
-#: ../../standalone/drakbackup_.c:1574
+#: ../../standalone/drakbackup_.c:1649
msgid "Do not include the browser cache"
msgstr ""
-#: ../../standalone/drakbackup_.c:1575 ../../standalone/drakbackup_.c:1599
+#: ../../standalone/drakbackup_.c:1650 ../../standalone/drakbackup_.c:1674
msgid "Use Incremental Backups (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1597 ../../standalone/drakfont_.c:1058
+#: ../../standalone/drakbackup_.c:1672 ../../standalone/drakfont_.c:1058
#, fuzzy
msgid "Remove Selected"
msgstr "Scrios ciú"
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:1710
#, fuzzy
msgid "Windows (FAT32)"
msgstr "Dealaigh Windows(TM)"
-#: ../../standalone/drakbackup_.c:1674
+#: ../../standalone/drakbackup_.c:1749
#, fuzzy
msgid "Users"
msgstr "Ainm úsáideora"
-#: ../../standalone/drakbackup_.c:1700
+#: ../../standalone/drakbackup_.c:1775
#, fuzzy
msgid "Use network connection to backup"
msgstr "Droch comhad chúltaca"
-#: ../../standalone/drakbackup_.c:1706
+#: ../../standalone/drakbackup_.c:1777
+msgid "Net Method:"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1781
msgid "Use Expect for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1707
+#: ../../standalone/drakbackup_.c:1782
msgid ""
"Create/Transfer\n"
"backup keys for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1708
+#: ../../standalone/drakbackup_.c:1783
msgid ""
" Transfer \n"
"Now"
msgstr ""
-#: ../../standalone/drakbackup_.c:1709
+#: ../../standalone/drakbackup_.c:1784
msgid "Keys in place already"
msgstr ""
-#: ../../standalone/drakbackup_.c:1713
+#: ../../standalone/drakbackup_.c:1788
#, fuzzy
msgid "Please enter the host name or IP."
msgstr "Teastáil an luchóg, le do thoil"
-#: ../../standalone/drakbackup_.c:1718
+#: ../../standalone/drakbackup_.c:1793
msgid ""
"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
-#: ../../standalone/drakbackup_.c:1723
+#: ../../standalone/drakbackup_.c:1798
#, fuzzy
msgid "Please enter your login"
msgstr "Aththrialaigh"
-#: ../../standalone/drakbackup_.c:1728
+#: ../../standalone/drakbackup_.c:1803
#, fuzzy
msgid "Please enter your password"
msgstr "Aththrialaigh"
-#: ../../standalone/drakbackup_.c:1734
+#: ../../standalone/drakbackup_.c:1809
#, fuzzy
msgid "Remember this password"
msgstr "Gan pasfhocal"
-#: ../../standalone/drakbackup_.c:1745
+#: ../../standalone/drakbackup_.c:1820
msgid "Need hostname, username and password!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1841
+#: ../../standalone/drakbackup_.c:1915
msgid "Use CD/DVDROM to backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1844
+#: ../../standalone/drakbackup_.c:1918
msgid ""
"Please choose your CD/DVD device\n"
"(Press Enter to propogate settings to other fields.\n"
"This field isn't necessary, only a tool to fill in the form.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1849
+#: ../../standalone/drakbackup_.c:1923
#, fuzzy
msgid "Please choose your CD/DVD media size"
msgstr "Cén leagan amach atá ar d'eocharchlársa"
-#: ../../standalone/drakbackup_.c:1855
+#: ../../standalone/drakbackup_.c:1929
#, fuzzy
msgid "Please check for multisession CD"
msgstr "Roghnaigh rann le do thoil"
-#: ../../standalone/drakbackup_.c:1861
+#: ../../standalone/drakbackup_.c:1935
#, fuzzy
msgid "Please check if you are using CDRW media"
msgstr "Roghnaigh rann le do thoil"
-#: ../../standalone/drakbackup_.c:1867
+#: ../../standalone/drakbackup_.c:1941
#, fuzzy
msgid "Please check if you want to erase your RW media (1st Session)"
msgstr "Roghnaigh rann le do thoil"
-#: ../../standalone/drakbackup_.c:1868
+#: ../../standalone/drakbackup_.c:1942
msgid " Erase Now "
msgstr ""
-#: ../../standalone/drakbackup_.c:1874
+#: ../../standalone/drakbackup_.c:1948
#, fuzzy
msgid "Please check if you are using a DVDR device"
msgstr "Roghnaigh rann le do thoil"
-#: ../../standalone/drakbackup_.c:1880
+#: ../../standalone/drakbackup_.c:1954
#, fuzzy
msgid "Please check if you are using a DVDRAM device"
msgstr "Roghnaigh rann le do thoil"
-#: ../../standalone/drakbackup_.c:1893
+#: ../../standalone/drakbackup_.c:1967
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
msgstr ""
-#: ../../standalone/drakbackup_.c:1926
+#: ../../standalone/drakbackup_.c:2000
#, fuzzy
msgid "No CD device defined!"
msgstr "Roghnaigh Comhad"
-#: ../../standalone/drakbackup_.c:1974
+#: ../../standalone/drakbackup_.c:2048
#, fuzzy
msgid "Use tape to backup"
msgstr "Droch comhad chúltaca"
-#: ../../standalone/drakbackup_.c:1977
+#: ../../standalone/drakbackup_.c:2051
msgid "Please enter the device name to use for backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1983
+#: ../../standalone/drakbackup_.c:2057
#, fuzzy
msgid "Please check if you want to use the non-rewinding device."
msgstr "Roghnaight do theangam le do thoil."
-#: ../../standalone/drakbackup_.c:1989
+#: ../../standalone/drakbackup_.c:2063
#, fuzzy
msgid "Please check if you want to erase your tape before the backup."
msgstr "Roghnaight do theangam le do thoil."
-#: ../../standalone/drakbackup_.c:1995
+#: ../../standalone/drakbackup_.c:2069
#, fuzzy
msgid "Please check if you want to eject your tape after the backup."
msgstr "Roghnaight do theangam le do thoil."
-#: ../../standalone/drakbackup_.c:2001 ../../standalone/drakbackup_.c:2074
-#: ../../standalone/drakbackup_.c:3025
+#: ../../standalone/drakbackup_.c:2075 ../../standalone/drakbackup_.c:2149
+#: ../../standalone/drakbackup_.c:3116
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:2066
+#: ../../standalone/drakbackup_.c:2140
#, fuzzy
msgid "Please enter the directory to save to:"
msgstr "Teastáil an luchóg, le do thoil"
-#: ../../standalone/drakbackup_.c:2080 ../../standalone/drakbackup_.c:3031
+#: ../../standalone/drakbackup_.c:2155 ../../standalone/drakbackup_.c:3122
#, fuzzy
msgid "Use quota for backup files."
msgstr "Droch comhad chúltaca"
-#: ../../standalone/drakbackup_.c:2146
+#: ../../standalone/drakbackup_.c:2221
#, fuzzy
msgid "Network"
msgstr "Cláréadan Gréasán"
-#: ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:2226
msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2156
+#: ../../standalone/drakbackup_.c:2231
msgid "HardDrive / NFS"
msgstr ""
-#: ../../standalone/drakbackup_.c:2161
+#: ../../standalone/drakbackup_.c:2236
#, fuzzy
msgid "Tape"
msgstr "Cineál"
-#: ../../standalone/drakbackup_.c:2175 ../../standalone/drakbackup_.c:2179
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2250 ../../standalone/drakbackup_.c:2254
+#: ../../standalone/drakbackup_.c:2258
msgid "hourly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2176 ../../standalone/drakbackup_.c:2180
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2251 ../../standalone/drakbackup_.c:2255
+#: ../../standalone/drakbackup_.c:2258
msgid "daily"
msgstr ""
-#: ../../standalone/drakbackup_.c:2177 ../../standalone/drakbackup_.c:2181
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2252 ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2258
msgid "weekly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2178 ../../standalone/drakbackup_.c:2182
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2253 ../../standalone/drakbackup_.c:2257
+#: ../../standalone/drakbackup_.c:2258
msgid "monthly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2196
+#: ../../standalone/drakbackup_.c:2271
#, fuzzy
msgid "Use daemon"
msgstr "Ainm úsáideora"
-#: ../../standalone/drakbackup_.c:2201
+#: ../../standalone/drakbackup_.c:2276
#, fuzzy
msgid ""
"Please choose the time \n"
"interval between each backup"
msgstr "Roghnaight do theangam le do thoil."
-#: ../../standalone/drakbackup_.c:2207
+#: ../../standalone/drakbackup_.c:2282
#, fuzzy
msgid ""
"Please choose the\n"
"media for backup."
msgstr "Roghnaight do theangam le do thoil."
-#: ../../standalone/drakbackup_.c:2214
+#: ../../standalone/drakbackup_.c:2289
msgid ""
"Please be sure that the cron daemon is included in your services. \n"
"\n"
"Note that currently all 'net' medias also use the hard drive."
msgstr ""
-#: ../../standalone/drakbackup_.c:2251
-msgid "Send mail report after each backup to :"
+#: ../../standalone/drakbackup_.c:2326
+msgid "Send mail report after each backup to:"
msgstr ""
-#: ../../standalone/drakbackup_.c:2257
+#: ../../standalone/drakbackup_.c:2332
msgid "Delete Hard Drive tar files after backup to other media."
msgstr ""
-#: ../../standalone/drakbackup_.c:2296
+#: ../../standalone/drakbackup_.c:2371
#, fuzzy
msgid "What"
msgstr "Fan tamall"
-#: ../../standalone/drakbackup_.c:2301
+#: ../../standalone/drakbackup_.c:2376
#, fuzzy
msgid "Where"
msgstr "Rothar"
-#: ../../standalone/drakbackup_.c:2306
+#: ../../standalone/drakbackup_.c:2381
#, fuzzy
msgid "When"
msgstr "Rothar"
-#: ../../standalone/drakbackup_.c:2311
+#: ../../standalone/drakbackup_.c:2386
#, fuzzy
msgid "More Options"
msgstr "Roghachais modúil:"
-#: ../../standalone/drakbackup_.c:2330 ../../standalone/drakbackup_.c:3873
+#: ../../standalone/drakbackup_.c:2405 ../../standalone/drakbackup_.c:4530
#, fuzzy
msgid "Drakbackup Configuration"
msgstr "Cumraíocht Gréasánú"
-#: ../../standalone/drakbackup_.c:2348
+#: ../../standalone/drakbackup_.c:2423
#, fuzzy
msgid "Please choose where you want to backup"
msgstr "Cén cinéal luchóg atá agat?"
-#: ../../standalone/drakbackup_.c:2350
+#: ../../standalone/drakbackup_.c:2425
msgid "on Hard Drive"
msgstr ""
-#: ../../standalone/drakbackup_.c:2360
+#: ../../standalone/drakbackup_.c:2435
msgid "across Network"
msgstr ""
-#: ../../standalone/drakbackup_.c:2370
+#: ../../standalone/drakbackup_.c:2445
msgid "on CDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2378
+#: ../../standalone/drakbackup_.c:2453
msgid "on Tape Device"
msgstr ""
-#: ../../standalone/drakbackup_.c:2421
+#: ../../standalone/drakbackup_.c:2496
#, fuzzy
msgid "Please choose what you want to backup"
msgstr "Roghnaight do theangam le do thoil."
-#: ../../standalone/drakbackup_.c:2422
+#: ../../standalone/drakbackup_.c:2497
#, fuzzy
msgid "Backup system"
msgstr "Socraigh córas chomhad"
-#: ../../standalone/drakbackup_.c:2423
+#: ../../standalone/drakbackup_.c:2498
msgid "Backup Users"
msgstr ""
-#: ../../standalone/drakbackup_.c:2426
+#: ../../standalone/drakbackup_.c:2501
msgid "Select user manually"
msgstr ""
-#: ../../standalone/drakbackup_.c:2508
+#: ../../standalone/drakbackup_.c:2584
msgid ""
"\n"
"Backup Sources: \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2509
+#: ../../standalone/drakbackup_.c:2585
msgid ""
"\n"
"- System Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2511
+#: ../../standalone/drakbackup_.c:2587
msgid ""
"\n"
"- User Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2513
+#: ../../standalone/drakbackup_.c:2589
msgid ""
"\n"
"- Other Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2515
+#: ../../standalone/drakbackup_.c:2591
#, c-format
msgid ""
"\n"
-"- Save on Hard drive on path : %s\n"
+"- Save on Hard drive on path: %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2518
+#: ../../standalone/drakbackup_.c:2594
msgid ""
"\n"
"- Delete hard drive tar files after backup.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2524
+#: ../../standalone/drakbackup_.c:2600
msgid ""
"\n"
"- Burn to CD"
msgstr ""
-#: ../../standalone/drakbackup_.c:2525
+#: ../../standalone/drakbackup_.c:2601
msgid "RW"
msgstr ""
-#: ../../standalone/drakbackup_.c:2526
+#: ../../standalone/drakbackup_.c:2602
#, fuzzy, c-format
-msgid " on device : %s"
+msgid " on device: %s"
msgstr "Gaireas luchóige: %s\n"
-#: ../../standalone/drakbackup_.c:2527
+#: ../../standalone/drakbackup_.c:2603
msgid " (multi-session)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2528
+#: ../../standalone/drakbackup_.c:2604
#, c-format
msgid ""
"\n"
-"- Save to Tape on device : %s"
+"- Save to Tape on device: %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2529
+#: ../../standalone/drakbackup_.c:2605
#, c-format
msgid "\t\tErase=%s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2532
+#: ../../standalone/drakbackup_.c:2608
#, c-format
msgid ""
"\n"
-"- Save via %s on host : %s\n"
+"- Save via %s on host: %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2533
+#: ../../standalone/drakbackup_.c:2609
#, c-format
msgid ""
"\t\t user name: %s\n"
"\t\t on path: %s \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2534
+#: ../../standalone/drakbackup_.c:2610
#, fuzzy
msgid ""
"\n"
"- Options:\n"
msgstr "Roghnachais"
-#: ../../standalone/drakbackup_.c:2535
+#: ../../standalone/drakbackup_.c:2611
msgid "\tDo not include System Files\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2538
+#: ../../standalone/drakbackup_.c:2614
msgid "\tBackups use tar and bzip2\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2540
+#: ../../standalone/drakbackup_.c:2616
msgid "\tBackups use tar and gzip\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2543
+#: ../../standalone/drakbackup_.c:2619
#, c-format
msgid ""
"\n"
-"- Daemon (%s) include :\n"
+"- Daemon (%s) include:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2544
+#: ../../standalone/drakbackup_.c:2620
msgid "\t-Hard drive.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2545
+#: ../../standalone/drakbackup_.c:2621
msgid "\t-CDROM.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2546
+#: ../../standalone/drakbackup_.c:2622
msgid "\t-Tape \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2547
+#: ../../standalone/drakbackup_.c:2623
msgid "\t-Network by FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2548
+#: ../../standalone/drakbackup_.c:2624
msgid "\t-Network by SSH.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2549
+#: ../../standalone/drakbackup_.c:2625
msgid "\t-Network by rsync.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2550
+#: ../../standalone/drakbackup_.c:2626
msgid "\t-Network by webdav.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2552
+#: ../../standalone/drakbackup_.c:2628
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2558
+#: ../../standalone/drakbackup_.c:2634
msgid ""
"List of data to restore:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2725
+#: ../../standalone/drakbackup_.c:2801
msgid ""
"List of data corrupted:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2727
+#: ../../standalone/drakbackup_.c:2803
#, fuzzy
msgid "Please uncheck or remove it on next time."
msgstr "Cén cinéal luchóg atá agat?"
-#: ../../standalone/drakbackup_.c:2737
+#: ../../standalone/drakbackup_.c:2813
msgid "Backup files are corrupted"
msgstr ""
-#: ../../standalone/drakbackup_.c:2758
+#: ../../standalone/drakbackup_.c:2834
msgid " All of your selected data have been "
msgstr ""
-#: ../../standalone/drakbackup_.c:2759
+#: ../../standalone/drakbackup_.c:2835
#, c-format
msgid " Successfuly Restored on %s "
msgstr ""
-#: ../../standalone/drakbackup_.c:2877
+#: ../../standalone/drakbackup_.c:2953
#, fuzzy
msgid " Restore Configuration "
msgstr "Cumraíocht Gréasánú"
-#: ../../standalone/drakbackup_.c:2895
+#: ../../standalone/drakbackup_.c:2971
msgid "OK to restore the other files."
msgstr ""
-#: ../../standalone/drakbackup_.c:2912
+#: ../../standalone/drakbackup_.c:2988
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2975
+#: ../../standalone/drakbackup_.c:3066
#, fuzzy
msgid "Backup the system files before:"
msgstr "Droch comhad chúltaca"
-#: ../../standalone/drakbackup_.c:2977
+#: ../../standalone/drakbackup_.c:3068
#, fuzzy
msgid "please choose the date to restore"
msgstr "Cén cinéal luchóg atá agat?"
-#: ../../standalone/drakbackup_.c:3014
+#: ../../standalone/drakbackup_.c:3105
#, fuzzy
msgid "Use Hard Disk to backup"
msgstr "Droch comhad chúltaca"
-#: ../../standalone/drakbackup_.c:3017
+#: ../../standalone/drakbackup_.c:3108
#, fuzzy
msgid "Please enter the directory to save:"
msgstr "Teastáil an luchóg, le do thoil"
-#: ../../standalone/drakbackup_.c:3060
+#: ../../standalone/drakbackup_.c:3151
#, fuzzy
msgid "FTP Connection"
msgstr "Nasc LAN"
-#: ../../standalone/drakbackup_.c:3067
+#: ../../standalone/drakbackup_.c:3158
#, fuzzy
msgid "Secure Connection"
msgstr "Nasc Printéir"
-#: ../../standalone/drakbackup_.c:3093
+#: ../../standalone/drakbackup_.c:3184
#, fuzzy
msgid "Restore from Hard Disk."
msgstr "Aisig ó dhiosca flapach"
-#: ../../standalone/drakbackup_.c:3095
+#: ../../standalone/drakbackup_.c:3186
msgid "Please enter the directory where backups are stored"
msgstr ""
-#: ../../standalone/drakbackup_.c:3157
+#: ../../standalone/drakbackup_.c:3254
#, fuzzy
msgid "Select another media to restore from"
msgstr "Cén cinéal luchóg atá agat?"
-#: ../../standalone/drakbackup_.c:3159
+#: ../../standalone/drakbackup_.c:3256
#, fuzzy
msgid "Other Media"
msgstr "Eile"
-#: ../../standalone/drakbackup_.c:3164
+#: ../../standalone/drakbackup_.c:3261
#, fuzzy
msgid "Restore system"
msgstr "Feistigh córas"
-#: ../../standalone/drakbackup_.c:3165
+#: ../../standalone/drakbackup_.c:3262
#, fuzzy
msgid "Restore Users"
msgstr "Aisig ó comhad"
-#: ../../standalone/drakbackup_.c:3166
+#: ../../standalone/drakbackup_.c:3263
#, fuzzy
msgid "Restore Other"
msgstr "Aisig ó comhad"
-#: ../../standalone/drakbackup_.c:3168
+#: ../../standalone/drakbackup_.c:3265
#, fuzzy
msgid "select path to restore (instead of /)"
msgstr "Cén cinéal luchóg atá agat?"
-#: ../../standalone/drakbackup_.c:3172
+#: ../../standalone/drakbackup_.c:3269
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:3174
+#: ../../standalone/drakbackup_.c:3271
msgid "Remove user directories before restore."
msgstr ""
-#: ../../standalone/drakbackup_.c:3232
+#: ../../standalone/drakbackup_.c:3384
+msgid ""
+"Restore Selected\n"
+"Catalog Entry"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3394
+#, fuzzy
+msgid ""
+"Restore Selected\n"
+"Files"
+msgstr "Scrios ciú"
+
+#: ../../standalone/drakbackup_.c:3411
+#, fuzzy
+msgid ""
+"Change\n"
+"Restore Path"
+msgstr "Aisig ó comhad"
+
+#: ../../standalone/drakbackup_.c:3477
+#, c-format
+msgid "Backup files not found at %s."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3490
+#, c-format
+msgid ""
+"Insert the CD with volume label %s\n"
+" in the CD drive under mount point /mnt/cdrom"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3490
+#, fuzzy
+msgid "Restore From CD"
+msgstr "Aisig ó dhiosca flapach"
+
+#: ../../standalone/drakbackup_.c:3492
+#, c-format
+msgid "Not the correct CD label. Disk is labelled %s."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3502
+#, c-format
+msgid ""
+"Insert the tape with volume label %s\n"
+" in the tape drive device %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3502
+#, fuzzy
+msgid "Restore From Tape"
+msgstr "Scriobh clár-ranna"
+
+#: ../../standalone/drakbackup_.c:3504
+#, c-format
+msgid "Not the correct tape label. Tape is labelled %s."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3524
+#, fuzzy
+msgid "Restore Via Network"
+msgstr "Aisig ó comhad"
+
+#: ../../standalone/drakbackup_.c:3524
+#, c-format
+msgid "Restore Via Network Protocol: %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3525
+#, fuzzy
+msgid "Host Name"
+msgstr "ÓstAinm"
+
+#: ../../standalone/drakbackup_.c:3526
+msgid "Host Path or Module"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3533
+#, fuzzy
+msgid "Password required"
+msgstr "Pasfhocal"
+
+#: ../../standalone/drakbackup_.c:3539
+#, fuzzy
+msgid "Username required"
+msgstr "Ainm úsáideora"
+
+#: ../../standalone/drakbackup_.c:3542
+#, fuzzy
+msgid "Hostname required"
+msgstr "Ainm úsáideora"
+
+#: ../../standalone/drakbackup_.c:3547
+msgid "Path or Module required"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3560
+msgid "Files Restored..."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3563
+#, fuzzy
+msgid "Restore Failed..."
+msgstr "Aisig ó comhad"
+
+#: ../../standalone/drakbackup_.c:3801
msgid "Restore all backups"
msgstr ""
-#: ../../standalone/drakbackup_.c:3241
+#: ../../standalone/drakbackup_.c:3810
#, fuzzy
msgid "Custom Restore"
msgstr "Socraithe"
-#: ../../standalone/drakbackup_.c:3287 ../../standalone/drakbackup_.c:3320
-#: ../../standalone/drakbackup_.c:3346 ../../standalone/drakbackup_.c:3373
-#: ../../standalone/drakbackup_.c:3400 ../../standalone/drakbackup_.c:3460
-#: ../../standalone/drakbackup_.c:3487 ../../standalone/drakbackup_.c:3513
+#: ../../standalone/drakbackup_.c:3856
+msgid "CD in place - continue."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3862
+msgid "Browse to new restore repository."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3865
+#, fuzzy
+msgid "Restore From Catalog"
+msgstr "Scriobh clár-ranna"
+
+#: ../../standalone/drakbackup_.c:3893
+#, fuzzy
+msgid "Restore Progress"
+msgstr "Aisig ó comhad"
+
+#: ../../standalone/drakbackup_.c:3935 ../../standalone/drakbackup_.c:3968
+#: ../../standalone/drakbackup_.c:3994 ../../standalone/drakbackup_.c:4021
+#: ../../standalone/drakbackup_.c:4048 ../../standalone/drakbackup_.c:4108
+#: ../../standalone/drakbackup_.c:4135 ../../standalone/drakbackup_.c:4165
+#: ../../standalone/drakbackup_.c:4191
msgid "Previous"
msgstr ""
-#: ../../standalone/drakbackup_.c:3291 ../../standalone/drakbackup_.c:3377
+#: ../../standalone/drakbackup_.c:3939 ../../standalone/drakbackup_.c:4025
#: ../../standalone/logdrake_.c:223
#, fuzzy
msgid "Save"
msgstr "Clár Tosnú"
-#: ../../standalone/drakbackup_.c:3350
+#: ../../standalone/drakbackup_.c:3998
#, fuzzy
msgid "Build Backup"
msgstr "Droch comhad chúltaca"
-#: ../../standalone/drakbackup_.c:3404 ../../standalone/drakbackup_.c:3974
+#: ../../standalone/drakbackup_.c:4052 ../../standalone/drakbackup_.c:4632
#, fuzzy
msgid "Restore"
msgstr "Aisig ó comhad"
-#: ../../standalone/drakbackup_.c:3553
-msgid ""
-"Please Build backup before to restore it...\n"
-" or verify that your path to save is correct."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3574
+#: ../../standalone/drakbackup_.c:4231
msgid ""
-"Error during sendmail\n"
-" your report mail was not sent\n"
+"Error during sendmail.\n"
+" Your report mail was not sent.\n"
" Please configure sendmail"
msgstr ""
-#: ../../standalone/drakbackup_.c:3598
+#: ../../standalone/drakbackup_.c:4255
msgid ""
"The following packages need to be installed:\n"
" @list_of_rpm_to_install"
msgstr ""
-#: ../../standalone/drakbackup_.c:3621
+#: ../../standalone/drakbackup_.c:4278
msgid ""
"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
-#: ../../standalone/drakbackup_.c:3644
+#: ../../standalone/drakbackup_.c:4301
#, fuzzy
msgid "Please select data to restore..."
msgstr "Roghnaight do theangam le do thoil."
-#: ../../standalone/drakbackup_.c:3665
+#: ../../standalone/drakbackup_.c:4322
#, fuzzy
msgid "Please select media for backup..."
msgstr "Roghnaight do theangam le do thoil."
-#: ../../standalone/drakbackup_.c:3687
+#: ../../standalone/drakbackup_.c:4344
#, fuzzy
msgid "Please select data to backup..."
msgstr "Roghnaight do theangam le do thoil."
-#: ../../standalone/drakbackup_.c:3709
+#: ../../standalone/drakbackup_.c:4366
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
msgstr ""
-#: ../../standalone/drakbackup_.c:3730
+#: ../../standalone/drakbackup_.c:4387
msgid "Under Devel ... please wait."
msgstr ""
-#: ../../standalone/drakbackup_.c:3811
+#: ../../standalone/drakbackup_.c:4468
#, fuzzy
msgid "Backup system files"
msgstr "Droch comhad chúltaca"
-#: ../../standalone/drakbackup_.c:3813
+#: ../../standalone/drakbackup_.c:4470
#, fuzzy
msgid "Backup user files"
msgstr "Droch comhad chúltaca"
-#: ../../standalone/drakbackup_.c:3815
+#: ../../standalone/drakbackup_.c:4472
#, fuzzy
msgid "Backup other files"
msgstr "Droch comhad chúltaca"
-#: ../../standalone/drakbackup_.c:3817 ../../standalone/drakbackup_.c:3850
+#: ../../standalone/drakbackup_.c:4474 ../../standalone/drakbackup_.c:4507
msgid "Total Progress"
msgstr ""
-#: ../../standalone/drakbackup_.c:3841
+#: ../../standalone/drakbackup_.c:4498
msgid "files sending by FTP"
msgstr ""
-#: ../../standalone/drakbackup_.c:3845
+#: ../../standalone/drakbackup_.c:4502
#, fuzzy
msgid "Sending files..."
msgstr "Sabháil i gcomhad"
-#: ../../standalone/drakbackup_.c:3931
+#: ../../standalone/drakbackup_.c:4588
#, fuzzy
msgid "Backup Now from configuration file"
msgstr "Cumraíocht Gréasánú"
-#: ../../standalone/drakbackup_.c:3936
+#: ../../standalone/drakbackup_.c:4593
#, fuzzy
msgid "View Backup Configuration."
msgstr "Cumraíocht Gréasánú"
-#: ../../standalone/drakbackup_.c:3956
+#: ../../standalone/drakbackup_.c:4614
#, fuzzy
msgid "Wizard Configuration"
msgstr "cumraíocht"
-#: ../../standalone/drakbackup_.c:3961
+#: ../../standalone/drakbackup_.c:4619
#, fuzzy
msgid "Advanced Configuration"
msgstr "Éirigh as cumraíocht"
-#: ../../standalone/drakbackup_.c:3966
+#: ../../standalone/drakbackup_.c:4624
#, fuzzy
msgid "Backup Now"
msgstr "Socraigh córas chomhad"
-#: ../../standalone/drakbackup_.c:3996
+#: ../../standalone/drakbackup_.c:4658
msgid "Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:4045
+#: ../../standalone/drakbackup_.c:4707
msgid ""
"options description:\n"
"\n"
@@ -9521,7 +10040,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4075
+#: ../../standalone/drakbackup_.c:4737
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -9530,7 +10049,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4083
+#: ../../standalone/drakbackup_.c:4745
msgid ""
"options description:\n"
"\n"
@@ -9571,45 +10090,45 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4122
+#: ../../standalone/drakbackup_.c:4784
msgid ""
"restore description:\n"
" \n"
-"Only the most recent date will be used ,because with incremental \n"
-"backups it is necesarry to restore one by one each older backups.\n"
+"Only the most recent date will be used, because with incremental \n"
+"backups it is necessary to restore one by one each older backup.\n"
"\n"
-"So if you don't like to restore a user please unselect all his\n"
-"check box.\n"
+"So if you don't want to restore a user please unselect all their\n"
+"check boxes.\n"
"\n"
-"Otherwise, you are able to select only one of this\n"
+"Otherwise, you are able to select only one of these.\n"
"\n"
" - Incremental Backups:\n"
"\n"
"\tThe incremental backup is the most powerful \n"
-"\toption to use backup, this option allow you \n"
-"\tto backup all your data the first time, and \n"
-"\tonly the changed after.\n"
-"\tSo you will be able during the restore\n"
+"\toption to use. This option allows you to \n"
+"\tbackup all of your data the first time, and \n"
+"\tonly the changed data after.\n"
+"\tSo you will be able, during the restore\n"
"\tstep, to restore your data from a specified\n"
"\tdate.\n"
-"\tIf you have not selected this options all\n"
+"\tIf you have not selected this option all\n"
"\told backups are deleted before each backup. \n"
"\n"
"\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4148 ../../standalone/drakbackup_.c:4225
+#: ../../standalone/drakbackup_.c:4810 ../../standalone/drakbackup_.c:4887
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
-#: ../../standalone/drakbackup_.c:4150 ../../standalone/drakbackup_.c:4227
+#: ../../standalone/drakbackup_.c:4812 ../../standalone/drakbackup_.c:4889
msgid ""
" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
-#: ../../standalone/drakbackup_.c:4152 ../../standalone/drakbackup_.c:4229
+#: ../../standalone/drakbackup_.c:4814 ../../standalone/drakbackup_.c:4891
msgid ""
" This program is free software; you can redistribute it and/or modify\n"
" it under the terms of the GNU General Public License as published by\n"
@@ -9626,7 +10145,7 @@ msgid ""
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
msgstr ""
-#: ../../standalone/drakbackup_.c:4166
+#: ../../standalone/drakbackup_.c:4828
msgid ""
"Description:\n"
"\n"
@@ -9666,7 +10185,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4204
+#: ../../standalone/drakbackup_.c:4866
msgid ""
"options description:\n"
"\n"
@@ -9677,7 +10196,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4213
+#: ../../standalone/drakbackup_.c:4875
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -9690,7 +10209,7 @@ msgid ""
"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4243
+#: ../../standalone/drakbackup_.c:4905
msgid ""
"Description:\n"
"\n"
@@ -9771,9 +10290,9 @@ msgstr ""
msgid "Synchronization tool"
msgstr ""
-#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:85
-#: ../../standalone/drakbug_.c:150 ../../standalone/drakbug_.c:152
-#: ../../standalone/drakbug_.c:156
+#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:86
+#: ../../standalone/drakbug_.c:151 ../../standalone/drakbug_.c:153
+#: ../../standalone/drakbug_.c:157
msgid "Standalone Tools"
msgstr ""
@@ -9824,26 +10343,26 @@ msgstr "Clódóir"
msgid "Configuration Wizards"
msgstr "Draíodóir Cumraíocht Gréasánú"
-#: ../../standalone/drakbug_.c:96
+#: ../../standalone/drakbug_.c:97
#, fuzzy
msgid "Application:"
msgstr "Deimniú"
-#: ../../standalone/drakbug_.c:97
+#: ../../standalone/drakbug_.c:98
#, fuzzy
msgid "Package: "
msgstr "Roghnú Grúpa Pacáistí"
-#: ../../standalone/drakbug_.c:98
+#: ../../standalone/drakbug_.c:99
msgid "Kernel:"
msgstr ""
-#: ../../standalone/drakbug_.c:99
+#: ../../standalone/drakbug_.c:100
#, fuzzy
msgid "Release: "
msgstr "Fan tamall"
-#: ../../standalone/drakbug_.c:114
+#: ../../standalone/drakbug_.c:115
msgid ""
"\n"
"\n"
@@ -9855,21 +10374,21 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbug_.c:135
+#: ../../standalone/drakbug_.c:136
#, fuzzy
msgid "Report"
msgstr "Poirt"
-#: ../../standalone/drakbug_.c:165
+#: ../../standalone/drakbug_.c:166
#, fuzzy
msgid "Not installed"
msgstr "Eirigh as Feistiú"
-#: ../../standalone/drakbug_.c:182
+#: ../../standalone/drakbug_.c:183
msgid "connecting to Bugzilla wizard ..."
msgstr ""
-#: ../../standalone/drakbug_.c:189
+#: ../../standalone/drakbug_.c:190
msgid "No browser available! Please install one"
msgstr ""
@@ -10324,7 +10843,7 @@ msgstr ""
#: ../../standalone/drakfont_.c:909
#, fuzzy
-msgid "Choose the applications that will support the fonts :"
+msgid "Choose the applications that will support the fonts:"
msgstr "Roghnaigh na ranna atá le formáidiú"
#: ../../standalone/drakfont_.c:918
@@ -10406,19 +10925,19 @@ msgstr "Níl aon gaireas ghreasán san do chorás!"
msgid "Post Uninstall"
msgstr "Eirigh as Feistiú"
-#: ../../standalone/drakgw_.c:42 ../../standalone/drakgw_.c:195
+#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:188
msgid "Internet Connection Sharing"
msgstr ""
-#: ../../standalone/drakgw_.c:121
+#: ../../standalone/drakgw_.c:119
msgid "Sorry, we support only 2.4 kernels."
msgstr ""
-#: ../../standalone/drakgw_.c:133
+#: ../../standalone/drakgw_.c:130
msgid "Internet Connection Sharing currently enabled"
msgstr ""
-#: ../../standalone/drakgw_.c:134
+#: ../../standalone/drakgw_.c:131
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -10426,32 +10945,32 @@ msgid ""
"What would you like to do?"
msgstr ""
-#: ../../standalone/drakgw_.c:138
+#: ../../standalone/drakgw_.c:135
msgid "disable"
msgstr ""
-#: ../../standalone/drakgw_.c:138 ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:135 ../../standalone/drakgw_.c:160
msgid "dismiss"
msgstr ""
-#: ../../standalone/drakgw_.c:138 ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:135 ../../standalone/drakgw_.c:160
msgid "reconfigure"
msgstr ""
-#: ../../standalone/drakgw_.c:141
+#: ../../standalone/drakgw_.c:138
msgid "Disabling servers..."
msgstr ""
-#: ../../standalone/drakgw_.c:149
+#: ../../standalone/drakgw_.c:146
#, fuzzy
msgid "Internet connection sharing is now disabled."
msgstr "Nasc na hIdirlíon agus cumraíocht"
-#: ../../standalone/drakgw_.c:158
+#: ../../standalone/drakgw_.c:155
msgid "Internet Connection Sharing currently disabled"
msgstr ""
-#: ../../standalone/drakgw_.c:159
+#: ../../standalone/drakgw_.c:156
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
@@ -10459,20 +10978,20 @@ msgid ""
"What would you like to do?"
msgstr ""
-#: ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:160
msgid "enable"
msgstr ""
-#: ../../standalone/drakgw_.c:170
+#: ../../standalone/drakgw_.c:167
msgid "Enabling servers..."
msgstr ""
-#: ../../standalone/drakgw_.c:175
+#: ../../standalone/drakgw_.c:172
#, fuzzy
msgid "Internet connection sharing is now enabled."
msgstr "Nasc na hIdirlíon agus cumraíocht"
-#: ../../standalone/drakgw_.c:196
+#: ../../standalone/drakgw_.c:189
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
"With that feature, other computers on your local network will be able to use "
@@ -10482,31 +11001,31 @@ msgid ""
"(LAN)."
msgstr ""
-#: ../../standalone/drakgw_.c:222
+#: ../../standalone/drakgw_.c:215
#, c-format
msgid "Interface %s (using module %s)"
msgstr ""
-#: ../../standalone/drakgw_.c:223
+#: ../../standalone/drakgw_.c:216
#, fuzzy, c-format
msgid "Interface %s"
msgstr "suimiúil"
-#: ../../standalone/drakgw_.c:231
+#: ../../standalone/drakgw_.c:224
msgid "No network adapter on your system!"
msgstr "Níl aon gaireas ghreasán san do chorás!"
-#: ../../standalone/drakgw_.c:232
+#: ../../standalone/drakgw_.c:225
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
msgstr ""
-#: ../../standalone/drakgw_.c:238
+#: ../../standalone/drakgw_.c:231
msgid "Network interface"
msgstr "Cláréadan Gréasán"
-#: ../../standalone/drakgw_.c:239
+#: ../../standalone/drakgw_.c:232
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -10516,18 +11035,18 @@ msgid ""
"I am about to setup your Local Area Network with that adapter."
msgstr ""
-#: ../../standalone/drakgw_.c:248
+#: ../../standalone/drakgw_.c:241
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
msgstr ""
-#: ../../standalone/drakgw_.c:266
+#: ../../standalone/drakgw_.c:259
#, fuzzy
msgid "Network interface already configured"
msgstr "Níl aon scáileán cumraithe"
-#: ../../standalone/drakgw_.c:267
+#: ../../standalone/drakgw_.c:260
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -10537,17 +11056,17 @@ msgid ""
"You can do it manually but you need to know what you're doing."
msgstr ""
-#: ../../standalone/drakgw_.c:272
+#: ../../standalone/drakgw_.c:265
#, fuzzy
msgid "Automatic reconfiguration"
msgstr "Cumraigh ADSL"
-#: ../../standalone/drakgw_.c:273
+#: ../../standalone/drakgw_.c:266
#, fuzzy
msgid "Show current interface configuration"
msgstr "Cumraigh Idirlíon"
-#: ../../standalone/drakgw_.c:275
+#: ../../standalone/drakgw_.c:268
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -10558,7 +11077,7 @@ msgid ""
"Driver: %s"
msgstr ""
-#: ../../standalone/drakgw_.c:287
+#: ../../standalone/drakgw_.c:280
msgid ""
"I can keep your current configuration and assume you already set up a DHCP "
"server; in that case please verify I correctly read the C-Class Network that "
@@ -10570,78 +11089,68 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakgw_.c:292
+#: ../../standalone/drakgw_.c:285
msgid "C-Class Local Network"
msgstr ""
-#: ../../standalone/drakgw_.c:293
+#: ../../standalone/drakgw_.c:286
#, fuzzy
msgid "(This) DHCP Server IP"
msgstr "IP freastalaí SMP"
-#: ../../standalone/drakgw_.c:294
+#: ../../standalone/drakgw_.c:287
msgid "Re-configure interface and DHCP server"
msgstr ""
-#: ../../standalone/drakgw_.c:301
+#: ../../standalone/drakgw_.c:294
msgid "The Local Network did not finish with `.0', bailing out."
msgstr ""
-#: ../../standalone/drakgw_.c:312
+#: ../../standalone/drakgw_.c:305
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr ""
-#: ../../standalone/drakgw_.c:320
-msgid "Firewalling configuration detected!"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:321
-msgid ""
-"Warning! An existing firewalling configuration has been detected. You may "
-"need some manual fix after installation."
-msgstr ""
-
-#: ../../standalone/drakgw_.c:328
+#: ../../standalone/drakgw_.c:315
#, fuzzy
msgid "Configuring..."
msgstr "Ag cumraigh IDE"
-#: ../../standalone/drakgw_.c:329
+#: ../../standalone/drakgw_.c:316
msgid "Configuring scripts, installing software, starting servers..."
msgstr ""
-#: ../../standalone/drakgw_.c:365
+#: ../../standalone/drakgw_.c:352
#, fuzzy, c-format
msgid "Problems installing package %s"
msgstr "Ag feistiál pacáiste %s"
-#: ../../standalone/drakgw_.c:549
+#: ../../standalone/drakgw_.c:485
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
"Area Network, using automatic network configuration (DHCP)."
msgstr ""
-#: ../../standalone/drakgw_.c:566
+#: ../../standalone/drakgw_.c:504
msgid "The setup has already been done, but it's currently disabled."
msgstr ""
-#: ../../standalone/drakgw_.c:567
+#: ../../standalone/drakgw_.c:505
msgid "The setup has already been done, and it's currently enabled."
msgstr ""
-#: ../../standalone/drakgw_.c:568
+#: ../../standalone/drakgw_.c:506
#, fuzzy
msgid "No Internet Connection Sharing has ever been configured."
msgstr "Nasc na hIdirlíon agus cumraíocht"
-#: ../../standalone/drakgw_.c:573
+#: ../../standalone/drakgw_.c:511
#, fuzzy
msgid "Internet connection sharing configuration"
msgstr "Nasc na hIdirlíon agus cumraíocht"
-#: ../../standalone/drakgw_.c:580
+#: ../../standalone/drakgw_.c:518
#, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -10651,6 +11160,157 @@ msgid ""
"Click on Configure to launch the setup wizard."
msgstr ""
+#: ../../standalone/draksound_.c:46
+#, fuzzy
+msgid "No Sound Card detected!"
+msgstr "Cumraigh ADSL"
+
+#: ../../standalone/draksound_.c:47
+msgid ""
+"No Sound Card has been detected on your machine. Please verify that a Linux-"
+"supported Sound Card is correctly plugged in.\n"
+"\n"
+"\n"
+"You can visit our hardware database at:\n"
+"\n"
+"\n"
+"http://www.linux-mandrake.com/en/hardware.php3"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:32
+msgid "package ImageMagick is required for correct working"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:76
+#, fuzzy
+msgid "first step creation"
+msgstr "Trialaigh an cumraíocht"
+
+#: ../../standalone/draksplash_.c:77
+#, fuzzy
+msgid "final resolution"
+msgstr "Réiteach"
+
+#: ../../standalone/draksplash_.c:78 ../../standalone/draksplash_.c:170
+#, fuzzy
+msgid "choose image file"
+msgstr "Roghnaigh gníomh"
+
+#: ../../standalone/draksplash_.c:79
+#, fuzzy
+msgid "Theme name"
+msgstr "Comh. ainm"
+
+#: ../../standalone/draksplash_.c:81
+msgid "make bootsplash step 2"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:82
+#, fuzzy
+msgid "go to lilosplash configuration"
+msgstr "Cumraíocht Iar-feistú"
+
+#: ../../standalone/draksplash_.c:83
+#, fuzzy
+msgid "quit"
+msgstr "Éalaigh"
+
+#: ../../standalone/draksplash_.c:84
+#, fuzzy
+msgid "save theme"
+msgstr "Feistigh córas"
+
+#: ../../standalone/draksplash_.c:85
+msgid "browse"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:98 ../../standalone/draksplash_.c:159
+#, fuzzy
+msgid "Configure bootsplash picture"
+msgstr "Cumraigh seirbhisí"
+
+#: ../../standalone/draksplash_.c:99
+msgid "x coordinate of text box in number of character"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:100
+msgid "y coordinate of text box in number of character"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:101
+msgid "text width"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:102
+msgid "text box height"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:103
+msgid "the progress bar x coordinate of its upper left corner"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:104
+msgid "the progress bar y coordinate of its upper left corner"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:105
+msgid "the width of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:106
+msgid "the heigth of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:107
+msgid "the color of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:119
+msgid "go back"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:120
+#, fuzzy
+msgid "preview"
+msgstr "feist"
+
+#: ../../standalone/draksplash_.c:121
+#, fuzzy
+msgid "choose color"
+msgstr "Roghnaigh scáileán"
+
+#: ../../standalone/draksplash_.c:124
+msgid "Display logo on Console"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:125
+msgid "Make kernel message quiet by default"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:161 ../../standalone/draksplash_.c:330
+#, c-format
+msgid "This theme haven't yet any bootsplash in %s !"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:213
+msgid "saving Bootsplash theme..."
+msgstr ""
+
+#: ../../standalone/draksplash_.c:436
+#, fuzzy
+msgid "ProgressBar color selection"
+msgstr "Nasc Printéir"
+
+#: ../../standalone/draksplash_.c:454
+#, fuzzy
+msgid "You must choose an image file first!"
+msgstr "Gaireas Printéir (URI)"
+
+#: ../../standalone/draksplash_.c:463
+#, fuzzy
+msgid "Generating preview ..."
+msgstr "Scríos Printéir"
+
#: ../../standalone/drakxtv_.c:49
msgid ""
"XawTV isn't installed!\n"
@@ -10742,11 +11402,11 @@ msgid ""
msgstr ""
#: ../../standalone/drakxtv_.c:109
-msgid "TV norm :"
+msgid "TV norm:"
msgstr ""
#: ../../standalone/drakxtv_.c:110
-msgid "Area :"
+msgid "Area:"
msgstr ""
#: ../../standalone/drakxtv_.c:114
@@ -10819,7 +11479,7 @@ msgstr ""
msgid "The change is done, but to be effective you must logout"
msgstr ""
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:517
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:515
msgid "logdrake"
msgstr "logdrake"
@@ -10996,7 +11656,7 @@ msgstr "suimiúil"
#: ../../standalone/logdrake_.c:431
msgid ""
-"You will receive an alert if one of the selected service is no more running"
+"You will receive an alert if one of the selected services is no more running"
msgstr ""
#: ../../standalone/logdrake_.c:443
@@ -11018,19 +11678,19 @@ msgstr "Cumraigh Idirlíon"
msgid "Please enter your email address below "
msgstr "Aththrialaigh"
-#: ../../standalone/logdrake_.c:499
+#: ../../standalone/logdrake_.c:497
msgid "Save as.."
msgstr "Sábháil mar..."
-#: ../../standalone/mousedrake_.c:43
+#: ../../standalone/mousedrake_.c:45
msgid "Please, choose the type of your mouse."
msgstr "Cén cinéal luchóg atá agat?"
-#: ../../standalone/mousedrake_.c:57
+#: ../../standalone/mousedrake_.c:58
msgid "Emulate third button?"
msgstr ""
-#: ../../standalone/printerdrake_.c:48
+#: ../../standalone/printerdrake_.c:57
#, fuzzy
msgid "Reading printer data ..."
msgstr "Scríos Printéir"
@@ -11043,34 +11703,45 @@ msgstr ""
msgid "Test ports"
msgstr ""
-#: ../../standalone/scannerdrake_.c:52
+#: ../../standalone/scannerdrake_.c:53 ../../standalone/scannerdrake_.c:68
+#: ../../standalone/scannerdrake_.c:81
#, c-format
-msgid "%s found on %s, configure it ?"
+msgid "The %s is not supported by this version of Mandrake Linux."
msgstr ""
+#: ../../standalone/scannerdrake_.c:56
+#, fuzzy, c-format
+msgid "%s found on %s, configure it?"
+msgstr "An dteastaìonn uait printéir a chumrú?"
+
#: ../../standalone/scannerdrake_.c:59
+#, c-format
+msgid "%s is not in the scanner database, configure it manually?"
+msgstr ""
+
+#: ../../standalone/scannerdrake_.c:65
#, fuzzy
msgid "Select a scanner"
msgstr "Roghnaigh carta grafachach"
-#: ../../standalone/scannerdrake_.c:79
+#: ../../standalone/scannerdrake_.c:93
#, c-format
msgid "This %s scanner is unsupported"
msgstr ""
-#: ../../standalone/scannerdrake_.c:93
+#: ../../standalone/scannerdrake_.c:107
#, c-format
msgid ""
"Scannerdrake was not able to detect your %s scanner.\n"
"Please select the device where your scanner is plugged"
msgstr ""
-#: ../../standalone/scannerdrake_.c:95
+#: ../../standalone/scannerdrake_.c:109
#, fuzzy
msgid "choose device"
msgstr "Gaireas bootáil"
-#: ../../standalone/scannerdrake_.c:101
+#: ../../standalone/scannerdrake_.c:115
#, c-format
msgid ""
"This %s scanner must be configured by printerdrake.\n"
@@ -11078,7 +11749,7 @@ msgid ""
"section."
msgstr ""
-#: ../../standalone/scannerdrake_.c:106
+#: ../../standalone/scannerdrake_.c:120
#, c-format
msgid ""
"Your %s scanner has been configured.\n"
@@ -11086,43 +11757,18 @@ msgid ""
"applications menu."
msgstr ""
-#: ../../standalone/service_harddrake_.c:57
+#: ../../standalone/service_harddrake_.c:39
#, c-format
msgid "Some devices in the \"%s\" hardware class were removed:\n"
msgstr ""
-#: ../../standalone/service_harddrake_.c:61
+#: ../../standalone/service_harddrake_.c:43
#, c-format
msgid ""
"\n"
"Some devices in the %s class were added:\n"
msgstr ""
-#: ../../standalone/tinyfirewall_.c:30
-#, fuzzy
-msgid "Firewalling Configuration"
-msgstr "ag leámh cumraíocht"
-
-#: ../../standalone/tinyfirewall_.c:43
-#, fuzzy
-msgid "Firewalling configuration"
-msgstr "ag leámh cumraíocht"
-
-#: ../../standalone/tinyfirewall_.c:78
-msgid ""
-"Firewalling\n"
-"\n"
-"You already have set up a firewall.\n"
-"Click on Configure to change or remove the firewall"
-msgstr ""
-
-#: ../../standalone/tinyfirewall_.c:82
-msgid ""
-"Firewalling\n"
-"\n"
-"Click on Configure to set up a standard firewall"
-msgstr ""
-
#: ../../steps.pm_.c:14
msgid "Choose your language"
msgstr "Roghnaigh do theanga"
@@ -11196,169 +11842,7 @@ msgstr "Feistigh córas"
msgid "Exit install"
msgstr "Eirigh as Feistiú"
-#: ../../tinyfirewall.pm_.c:9
-msgid ""
-"tinyfirewall configurator\n"
-"\n"
-"This configures a personal firewall for this Mandrake Linux machine.\n"
-"For a powerful dedicated firewall solution, please look to the\n"
-"specialized MandrakeSecurity Firewall distribution."
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:14
-msgid ""
-"We'll now ask you questions about which services you'd like to allow\n"
-"the Internet to connect to. Please think carefully about these\n"
-"questions, as your computer's security is important.\n"
-"\n"
-"Please, if you're not currently using one of these services, firewall\n"
-"it off. You can change this configuration anytime you like by\n"
-"re-running this application!"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:21
-msgid ""
-"Are you running a web server on this machine that you need the whole\n"
-"Internet to see? If you are running a webserver that only needs to be\n"
-"accessed by this machine, you can safely answer NO here.\n"
-"\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:26
-msgid ""
-"Are you running a name server on this machine? If you didn't set one\n"
-"up to give away IP and zone information to the whole Internet, please\n"
-"answer no.\n"
-"\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:31
-msgid ""
-"Do you want to allow incoming Secure Shell (ssh) connections? This\n"
-"is a telnet-replacement that you might use to login. If you're using\n"
-"telnet now, you should definitely switch to ssh. telnet is not\n"
-"encrypted -- so some attackers can steal your password if you use\n"
-"it. ssh is encrypted and doesn't allow for this eavesdropping."
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:36
-msgid ""
-"Do you want to allow incoming telnet connections?\n"
-"This is horribly unsafe, as we explained in the previous screen. We\n"
-"strongly recommend answering No here and using ssh in place of\n"
-"telnet.\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:41
-msgid ""
-"Are you running an FTP server here that you need accessible to the\n"
-"Internet? If you are, we strongly recommend that you only use it for\n"
-"Anonymous transfers. Any passwords sent by FTP can be stolen by some\n"
-"attackers, since FTP also uses no encryption for transferring passwords.\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:46
-msgid ""
-"Are you running a mail server here? If you're sending you \n"
-"messages through pine, mutt or any other text-based mail client,\n"
-"you probably are. Otherwise, you should firewall this off.\n"
-"\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:51
-msgid ""
-"Are you running a POP or IMAP server here? This would\n"
-"be used to host non-web-based mail accounts for people via \n"
-"this machine.\n"
-"\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:56
-msgid ""
-"You appear to be running a 2.2 kernel. If your network IP\n"
-"is automatically set by a computer in your home or office \n"
-"(dynamically assigned), we need to allow for this. Is\n"
-"this the case?\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:61
-msgid ""
-"Is your computer getting time syncronized to another computer?\n"
-"Mostly, this is used by medium-large Unix/Linux organizations\n"
-"to synchronize time for logging and such. If you're not part\n"
-"of a larger office and haven't heard of this, you probably \n"
-"aren't."
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:66
-msgid ""
-"Configuration complete. May we write these changes to disk?\n"
-"\n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:82
-#, c-format
-msgid "Can't open %s: %s\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:84
-#, fuzzy, c-format
-msgid "Can't open %s for writing: %s\n"
-msgstr "Earráid ag oscailt %s do scríobh: %s"
-
-#: ../../tinyfirewall.pm_.c:178
-msgid "No I don't need DHCP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:178
-msgid "Yes I need DHCP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:179
-msgid "No I don't need NTP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:179
-msgid "Yes I need NTP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:180 ../../tinyfirewall.pm_.c:184
-msgid "Don't Save"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:180 ../../tinyfirewall.pm_.c:184
-#: ../../tinyfirewall.pm_.c:204
-msgid "Save & Quit"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:195 ../../tinyfirewall.pm_.c:199
-#, fuzzy
-msgid "Firewall Configuration Wizard"
-msgstr "ag leámh cumraíocht"
-
-#: ../../tinyfirewall.pm_.c:197
-msgid "No (firewall this off from the internet)"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:198
-msgid "Yes (allow this through the firewall)"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:230
-#, fuzzy
-msgid "Please Wait... Verifying installed packages"
-msgstr "Fan tamall, ag ullmhaigh feistiú"
-
-#: ../../tinyfirewall.pm_.c:236
-#, c-format
-msgid ""
-"Failure installing the needed packages : %s and Bastille.\n"
-" Try to install them manually."
-msgstr ""
-
-#: ../../ugtk.pm_.c:619
+#: ../../ugtk.pm_.c:594
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr ""
@@ -11493,6 +11977,10 @@ msgid "Graphical Environment"
msgstr ""
#: ../../share/compssUsers:999
+msgid "Development"
+msgstr "Forbairt"
+
+#: ../../share/compssUsers:999
msgid "Apache, Pro-ftpd"
msgstr "Apache, Pro-ftpd"
@@ -11604,56 +12092,22 @@ msgstr "Ilmheánach"
msgid "Scientific Workstation"
msgstr "Stáisiún Oibre"
-#~ msgid "$mode: $warning"
-#~ msgstr "$mode: $warning"
-
-#, fuzzy
-#~ msgid "Basic Options"
-#~ msgstr "Roghnachais"
-
-#, fuzzy
-#~ msgid "Security Checks"
-#~ msgstr "Slándáil"
-
-#, fuzzy
-#~ msgid "Please choose your CD space"
-#~ msgstr "Cén leagan amach atá ar d'eocharchlársa"
-
-#, fuzzy
-#~ msgid "Please enter the cd writer speed"
-#~ msgstr "Teastáil an luchóg, le do thoil"
-
-#, fuzzy
-#~ msgid "Windows PDC"
-#~ msgstr "Dealaigh Windows(TM)"
+#~ msgid "You don't have any partitions!"
+#~ msgstr "Níl aon ranna agat!"
-#, fuzzy
-#~ msgid "Tamil"
-#~ msgstr "Table"
-
-#, fuzzy
-#~ msgid "PDC Server Name"
-#~ msgstr "Freastalaí NTP"
-
-#, fuzzy
-#~ msgid "Set up printer manually"
-#~ msgstr "Scríos Printéir"
-
-#, fuzzy
-#~ msgid "Installing HPOJ package..."
-#~ msgstr "Ag feistiál pacáiste %s"
-
-#, fuzzy
-#~ msgid "Installing SANE packages..."
-#~ msgstr "Ag feistiál pacáiste %s"
-
-#, fuzzy
-#~ msgid "Installing mtools packages..."
-#~ msgstr "Ag feistiál pacáiste %s"
+#~ msgid ""
+#~ "DiskDrake failed to read correctly the partition table.\n"
+#~ "Continue at your own risk!"
+#~ msgstr ""
+#~ "Theip ar DiskDrake an tabla rainn a léamh i gceart.\n"
+#~ "Lean ort, ar do phriacal féin!"
-#, fuzzy
-#~ msgid "Control Center"
-#~ msgstr "Bainteach le hIdirlíon"
+#~ msgid ""
+#~ "I can't read your partition table, it's too corrupted for me :(\n"
+#~ "I'll try to go on blanking bad partitions"
+#~ msgstr ""
+#~ "Ni féidir liom an tábla rainn a léamh, tá máchaillí ann :(\n"
+#~ "Leanfaidh mé orm ag cealú droch rainn"
#~ msgid "Choose options for server"
#~ msgstr "Roghnaigh cumraíocht an freastalaí"
diff --git a/perl-install/share/po/gl.po b/perl-install/share/po/gl.po
index 9b997624b..b44156ce2 100644
--- a/perl-install/share/po/gl.po
+++ b/perl-install/share/po/gl.po
@@ -1,7 +1,10 @@
+#
+# Jesús Bravo Álvarez (mdk) <jba@pobox.com>, 2001
+#
msgid ""
msgstr ""
-"Project-Id-Version: drakfloppy\n"
-"POT-Creation-Date: 2002-08-21 15:44+0200\n"
+"Project-Id-Version: DrakX\n"
+"POT-Creation-Date: 2002-09-02 20:14+0200\n"
"PO-Revision-Date: 2001-03-17 19:17+0100\n"
"Last-Translator: Jesús Bravo Álvarez (mdk) <jba@pobox.com>\n"
"Language-Team: Galician <trasno@ceu.fi.udc.es>\n"
@@ -45,47 +48,47 @@ msgstr "32 MB"
msgid "64 MB or more"
msgstr "64 MB ou máis"
-#: ../../Xconfig/card.pm_.c:201
+#: ../../Xconfig/card.pm_.c:203
msgid "Choose a X server"
msgstr "Escolla un servidor X"
-#: ../../Xconfig/card.pm_.c:201
+#: ../../Xconfig/card.pm_.c:203
msgid "X server"
msgstr "Servidor X"
-#: ../../Xconfig/card.pm_.c:228
+#: ../../Xconfig/card.pm_.c:230
#, fuzzy
msgid "Multi-head configuration"
msgstr "lendo a configuración"
-#: ../../Xconfig/card.pm_.c:229
+#: ../../Xconfig/card.pm_.c:231
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
msgstr ""
-#: ../../Xconfig/card.pm_.c:284
+#: ../../Xconfig/card.pm_.c:286
msgid "Select the memory size of your graphics card"
msgstr "Seleccione a cantidade de memoria da tarxeta gráfica"
-#: ../../Xconfig/card.pm_.c:345
+#: ../../Xconfig/card.pm_.c:347
msgid "XFree configuration"
msgstr "Configuración de XFree"
-#: ../../Xconfig/card.pm_.c:347
+#: ../../Xconfig/card.pm_.c:349
msgid "Which configuration of XFree do you want to have?"
msgstr "żQue configuración de XFree quere usar?"
-#: ../../Xconfig/card.pm_.c:379
+#: ../../Xconfig/card.pm_.c:381
msgid "Configure all heads independently"
msgstr ""
-#: ../../Xconfig/card.pm_.c:380
+#: ../../Xconfig/card.pm_.c:382
#, fuzzy
msgid "Use Xinerama extension"
msgstr "Usar detección automática"
-#: ../../Xconfig/card.pm_.c:384
+#: ../../Xconfig/card.pm_.c:386
#, fuzzy, c-format
msgid "Configure only card \"%s\"%s"
msgstr "Axudante da configuración de rede"
@@ -96,13 +99,13 @@ msgstr "Axudante da configuración de rede"
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:435
+#: ../../Xconfig/card.pm_.c:410 ../../Xconfig/card.pm_.c:436
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s with 3D hardware acceleration"
msgstr "XFree %s con aceleración 3D por hardware"
-#: ../../Xconfig/card.pm_.c:412
+#: ../../Xconfig/card.pm_.c:413
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -112,18 +115,18 @@ msgstr ""
"XFree %s. A tarxeta está soportada por XFree %s, que pode ter un mellor\n"
"soporte en 2D."
-#: ../../Xconfig/card.pm_.c:414 ../../Xconfig/card.pm_.c:437
+#: ../../Xconfig/card.pm_.c:415 ../../Xconfig/card.pm_.c:438
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr ""
"A súa tarxeta pode ter soporte de aceleración 3D por hardware con XFree %s."
-#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:443
+#: ../../Xconfig/card.pm_.c:423 ../../Xconfig/card.pm_.c:444
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s con aceleración 3D por hardware EXPERIMENTAL"
-#: ../../Xconfig/card.pm_.c:425
+#: ../../Xconfig/card.pm_.c:426
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -135,7 +138,7 @@ msgstr ""
"A súa tarxeta está soportada por XFree %s, que pode ter un mellor soporte en "
"2D."
-#: ../../Xconfig/card.pm_.c:428 ../../Xconfig/card.pm_.c:445
+#: ../../Xconfig/card.pm_.c:429 ../../Xconfig/card.pm_.c:446
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
@@ -144,53 +147,54 @@ msgstr ""
"A súa tarxeta pode ter soporte de aceleración 3D por hardware, pero só con\n"
"XFree %s, ADVIRTA QUE ESTE SOPORTE É EXPERIMENTAL E PODE COLGAR O SISTEMA."
-#: ../../Xconfig/card.pm_.c:451
+#: ../../Xconfig/card.pm_.c:452
msgid "Xpmac (installation display driver)"
msgstr ""
-#: ../../Xconfig/main.pm_.c:78 ../../Xconfig/main.pm_.c:79
-#: ../../Xconfig/monitor.pm_.c:94 ../../any.pm_.c:974
+#: ../../Xconfig/main.pm_.c:76 ../../Xconfig/main.pm_.c:77
+#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:977
msgid "Custom"
msgstr "Personalizado"
-#: ../../Xconfig/main.pm_.c:104
+#: ../../Xconfig/main.pm_.c:102
#, fuzzy
msgid "Graphic Card"
msgstr "Tarxeta gráfica"
-#: ../../Xconfig/main.pm_.c:107 ../../Xconfig/monitor.pm_.c:91
+#: ../../Xconfig/main.pm_.c:105 ../../Xconfig/monitor.pm_.c:93
msgid "Monitor"
msgstr "Monitor"
-#: ../../Xconfig/main.pm_.c:110 ../../Xconfig/resolution_and_depth.pm_.c:209
+#: ../../Xconfig/main.pm_.c:108 ../../Xconfig/resolution_and_depth.pm_.c:209
msgid "Resolution"
msgstr "Resolución"
-#: ../../Xconfig/main.pm_.c:114
+#: ../../Xconfig/main.pm_.c:113
msgid "Test"
msgstr ""
-#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:59
-#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/removable.pm_.c:25
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:63
+#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/removable.pm_.c:25
#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "Opcións"
#: ../../Xconfig/main.pm_.c:121 ../../Xconfig/resolution_and_depth.pm_.c:268
-#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:281
+#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:275
#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
-#: ../../interactive.pm_.c:351 ../../interactive/http.pm_.c:104
+#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:104
#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
-#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:156
-#: ../../my_gtk.pm_.c:284 ../../my_gtk.pm_.c:307
-#: ../../standalone/drakbackup_.c:3324 ../../standalone/drakbackup_.c:3419
-#: ../../standalone/drakbackup_.c:3438
+#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:159
+#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310
+#: ../../standalone/drakbackup_.c:3972 ../../standalone/drakbackup_.c:4067
+#: ../../standalone/drakbackup_.c:4086
msgid "Ok"
msgstr "Aceptar"
#: ../../Xconfig/main.pm_.c:121 ../../diskdrake/dav.pm_.c:24
-#: ../../printerdrake.pm_.c:2933 ../../standalone/logdrake_.c:224
+#: ../../harddrake/ui.pm_.c:98 ../../printerdrake.pm_.c:3155
+#: ../../standalone/logdrake_.c:224
msgid "Quit"
msgstr "Saír"
@@ -207,28 +211,28 @@ msgstr ""
"\n"
"%s"
-#: ../../Xconfig/monitor.pm_.c:91
+#: ../../Xconfig/monitor.pm_.c:93
msgid "Choose a monitor"
msgstr "Escolla o monitor"
-#: ../../Xconfig/monitor.pm_.c:95
+#: ../../Xconfig/monitor.pm_.c:97
msgid "Plug'n Play"
msgstr ""
-#: ../../Xconfig/monitor.pm_.c:96 ../../mouse.pm_.c:45
+#: ../../Xconfig/monitor.pm_.c:98 ../../mouse.pm_.c:46
msgid "Generic"
msgstr "Xenérico"
-#: ../../Xconfig/monitor.pm_.c:97 ../../harddrake/ui.pm_.c:36
+#: ../../Xconfig/monitor.pm_.c:99 ../../harddrake/ui.pm_.c:37
#, fuzzy
msgid "Vendor"
msgstr "Refacer"
-#: ../../Xconfig/monitor.pm_.c:107
+#: ../../Xconfig/monitor.pm_.c:109
msgid "Plug'n Play probing failed. Please choose a precise monitor"
msgstr ""
-#: ../../Xconfig/monitor.pm_.c:112
+#: ../../Xconfig/monitor.pm_.c:114
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -251,11 +255,11 @@ msgstr ""
"xa que pode danalo.\n"
"No caso de dúbida, escolla unha configuración conservadora."
-#: ../../Xconfig/monitor.pm_.c:119
+#: ../../Xconfig/monitor.pm_.c:121
msgid "Horizontal refresh rate"
msgstr "Frecuencia de actualización horizontal"
-#: ../../Xconfig/monitor.pm_.c:120
+#: ../../Xconfig/monitor.pm_.c:122
msgid "Vertical refresh rate"
msgstr "Frecuencia de actualización vertical"
@@ -292,36 +296,41 @@ msgstr "Escolla a resolución e a profundidade de cor"
msgid "Graphics card: %s"
msgstr "Tarxeta gráfica: %s"
-#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1015
-#: ../../bootlook.pm_.c:334 ../../diskdrake/smbnfs_gtk.pm_.c:87
-#: ../../install_steps_gtk.pm_.c:412 ../../install_steps_gtk.pm_.c:470
-#: ../../install_steps_interactive.pm_.c:576 ../../interactive.pm_.c:142
-#: ../../interactive.pm_.c:351 ../../interactive/http.pm_.c:105
+#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1018
+#: ../../bootlook.pm_.c:338 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:406 ../../install_steps_gtk.pm_.c:464
+#: ../../install_steps_interactive.pm_.c:560 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:105
#: ../../interactive/newt.pm_.c:174 ../../interactive/stdio.pm_.c:39
-#: ../../interactive/stdio.pm_.c:143 ../../my_gtk.pm_.c:155
-#: ../../my_gtk.pm_.c:159 ../../my_gtk.pm_.c:284
-#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1990
-#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3278
-#: ../../standalone/drakbackup_.c:3311 ../../standalone/drakbackup_.c:3337
-#: ../../standalone/drakbackup_.c:3364 ../../standalone/drakbackup_.c:3391
-#: ../../standalone/drakbackup_.c:3451 ../../standalone/drakbackup_.c:3478
-#: ../../standalone/drakbackup_.c:3504 ../../standalone/drakconnect_.c:115
-#: ../../standalone/drakconnect_.c:147 ../../standalone/drakconnect_.c:289
-#: ../../standalone/drakconnect_.c:537 ../../standalone/drakconnect_.c:679
-#: ../../standalone/drakfloppy_.c:234 ../../standalone/drakfloppy_.c:383
-#: ../../standalone/drakfont_.c:970 ../../standalone/drakgw_.c:598
-#: ../../standalone/logdrake_.c:224 ../../standalone/logdrake_.c:528
-#: ../../standalone/tinyfirewall_.c:64
+#: ../../interactive/stdio.pm_.c:143 ../../my_gtk.pm_.c:158
+#: ../../my_gtk.pm_.c:162 ../../my_gtk.pm_.c:287
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:2124
+#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3926
+#: ../../standalone/drakbackup_.c:3959 ../../standalone/drakbackup_.c:3985
+#: ../../standalone/drakbackup_.c:4012 ../../standalone/drakbackup_.c:4039
+#: ../../standalone/drakbackup_.c:4099 ../../standalone/drakbackup_.c:4126
+#: ../../standalone/drakbackup_.c:4156 ../../standalone/drakbackup_.c:4182
+#: ../../standalone/drakconnect_.c:115 ../../standalone/drakconnect_.c:147
+#: ../../standalone/drakconnect_.c:289 ../../standalone/drakconnect_.c:537
+#: ../../standalone/drakconnect_.c:679 ../../standalone/drakfloppy_.c:234
+#: ../../standalone/drakfloppy_.c:383 ../../standalone/drakfont_.c:970
+#: ../../standalone/drakgw_.c:536 ../../standalone/logdrake_.c:224
+#: ../../standalone/logdrake_.c:526
msgid "Cancel"
msgstr "Cancelar"
-#: ../../Xconfig/test.pm_.c:26
+#: ../../Xconfig/test.pm_.c:30
+msgid "Test of the configuration"
+msgstr "Proba da configuración"
+
+#: ../../Xconfig/test.pm_.c:31
msgid "Do you want to test the configuration?"
msgstr "żDesexa probar a configuración?"
-#: ../../Xconfig/test.pm_.c:26
-msgid "Test of the configuration"
-msgstr "Proba da configuración"
+#: ../../Xconfig/test.pm_.c:31
+#, fuzzy
+msgid "Warning: testing this graphic card may freeze your computer"
+msgstr "Aviso: probar esta tarxeta gráfica pode colgar o ordenador"
#: ../../Xconfig/various.pm_.c:29
#, c-format
@@ -457,26 +466,22 @@ msgstr "Arrincar dende DOS/Windows (loadlin)"
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:158 ../../any.pm_.c:190
+#: ../../any.pm_.c:159 ../../any.pm_.c:190
msgid "Bootloader main options"
msgstr "Opcións principais do cargador de arrinque"
-#: ../../any.pm_.c:159 ../../any.pm_.c:191
+#: ../../any.pm_.c:160 ../../any.pm_.c:191
msgid "Bootloader to use"
msgstr "Cargador de arrinque que usar"
-#: ../../any.pm_.c:161
+#: ../../any.pm_.c:162
msgid "Bootloader installation"
msgstr "Instalación do cargador de arrinque"
-#: ../../any.pm_.c:163 ../../any.pm_.c:193
+#: ../../any.pm_.c:164 ../../any.pm_.c:193
msgid "Boot device"
msgstr "Dispositivo de arrinque"
-#: ../../any.pm_.c:164
-msgid "LBA (doesn't work on old BIOSes)"
-msgstr "LBA (non funciona en BIOS antigas)"
-
#: ../../any.pm_.c:165
msgid "Compact"
msgstr "Compacto"
@@ -493,16 +498,17 @@ msgstr "Modo de vídeo"
msgid "Delay before booting default image"
msgstr "Retardo antes de arrincar a imaxe por omisión"
-#: ../../any.pm_.c:170 ../../any.pm_.c:786
+#: ../../any.pm_.c:170 ../../any.pm_.c:788
#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1111 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:743 ../../printerdrake.pm_.c:858
-#: ../../standalone/drakconnect_.c:624 ../../standalone/drakconnect_.c:649
+#: ../../install_steps_interactive.pm_.c:1096 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:850 ../../printerdrake.pm_.c:965
+#: ../../standalone/drakbackup_.c:3528 ../../standalone/drakconnect_.c:624
+#: ../../standalone/drakconnect_.c:649
msgid "Password"
msgstr "Contrasinal"
-#: ../../any.pm_.c:171 ../../any.pm_.c:787
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../any.pm_.c:171 ../../any.pm_.c:789
+#: ../../install_steps_interactive.pm_.c:1097
msgid "Password (again)"
msgstr "Contrasinal (de novo)"
@@ -538,14 +544,14 @@ msgstr ""
"A opción ``restrinxir opcións da lińa de comandos'' non ten sentido sen "
"contrasinal"
-#: ../../any.pm_.c:184 ../../any.pm_.c:762
-#: ../../diskdrake/interactive.pm_.c:1180
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../any.pm_.c:184 ../../any.pm_.c:764
+#: ../../diskdrake/interactive.pm_.c:1191
+#: ../../install_steps_interactive.pm_.c:1091
msgid "Please try again"
msgstr "Tente de novo"
-#: ../../any.pm_.c:184 ../../any.pm_.c:762
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../any.pm_.c:184 ../../any.pm_.c:764
+#: ../../install_steps_interactive.pm_.c:1091
msgid "The passwords do not match"
msgstr "Os contrasinais non coinciden"
@@ -590,16 +596,16 @@ msgstr ""
"Estas son as diferentes entradas.\n"
"Pode engadir algunhas máis ou cambiar as que xa existen."
-#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1483
-#: ../../standalone/drakbackup_.c:1596 ../../standalone/drakfont_.c:1011
+#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1558
+#: ../../standalone/drakbackup_.c:1671 ../../standalone/drakfont_.c:1011
#: ../../standalone/drakfont_.c:1054
msgid "Add"
msgstr "Engadir"
-#: ../../any.pm_.c:257 ../../any.pm_.c:774 ../../diskdrake/dav.pm_.c:60
+#: ../../any.pm_.c:257 ../../any.pm_.c:776 ../../diskdrake/dav.pm_.c:64
#: ../../diskdrake/hd_gtk.pm_.c:153 ../../diskdrake/removable.pm_.c:27
#: ../../diskdrake/smbnfs_gtk.pm_.c:88 ../../interactive/http.pm_.c:153
-#: ../../standalone/drakbackup_.c:2696
+#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2772
msgid "Done"
msgstr "Feito"
@@ -611,7 +617,7 @@ msgstr "Modificar"
msgid "Which type of entry do you want to add?"
msgstr "żQue tipo de entrada desexa engadir?"
-#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1630
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1705
msgid "Linux"
msgstr "Linux"
@@ -706,13 +712,13 @@ msgstr "żTen algunha outra?"
msgid "Do you have any %s interfaces?"
msgstr "żTen algunha interface %s?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:821 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:283
+#: ../../any.pm_.c:660 ../../any.pm_.c:823 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:286
msgid "No"
msgstr "Non"
-#: ../../any.pm_.c:660 ../../any.pm_.c:820 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:283
+#: ../../any.pm_.c:660 ../../any.pm_.c:822 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:286
msgid "Yes"
msgstr "Si"
@@ -811,38 +817,46 @@ msgstr ""
msgid "access to administrative files"
msgstr ""
-#: ../../any.pm_.c:758
+#: ../../any.pm_.c:754
+msgid "access to network tools"
+msgstr ""
+
+#: ../../any.pm_.c:755
+msgid "access to compilation tools"
+msgstr ""
+
+#: ../../any.pm_.c:760
#, c-format
msgid "(already added %s)"
msgstr "(%s xa foi engadido)"
-#: ../../any.pm_.c:763
+#: ../../any.pm_.c:765
msgid "This password is too simple"
msgstr "Este contrasinal é demasiado simple"
-#: ../../any.pm_.c:764
+#: ../../any.pm_.c:766
msgid "Please give a user name"
msgstr "Indique o nome de usuario"
-#: ../../any.pm_.c:765
+#: ../../any.pm_.c:767
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr "O nome de usuario (login) só debe conter letras, números, '-' e '_'"
-#: ../../any.pm_.c:766
+#: ../../any.pm_.c:768
#, fuzzy
msgid "The user name is too long"
msgstr "Este nome de usuario xa está engadido"
-#: ../../any.pm_.c:767
+#: ../../any.pm_.c:769
msgid "This user name is already added"
msgstr "Este nome de usuario xa está engadido"
-#: ../../any.pm_.c:771
+#: ../../any.pm_.c:773
msgid "Add user"
msgstr "Engadir usuario"
-#: ../../any.pm_.c:772
+#: ../../any.pm_.c:774
#, c-format
msgid ""
"Enter a user\n"
@@ -851,32 +865,32 @@ msgstr ""
"Introduza un usuario\n"
"%s"
-#: ../../any.pm_.c:773
+#: ../../any.pm_.c:775
msgid "Accept user"
msgstr "Aceptar usuario"
-#: ../../any.pm_.c:784
+#: ../../any.pm_.c:786
msgid "Real name"
msgstr "Nome real"
-#: ../../any.pm_.c:785 ../../printerdrake.pm_.c:742
-#: ../../printerdrake.pm_.c:857
+#: ../../any.pm_.c:787 ../../printerdrake.pm_.c:849
+#: ../../printerdrake.pm_.c:964
msgid "User name"
msgstr "Nome de usuario"
-#: ../../any.pm_.c:788
+#: ../../any.pm_.c:790
msgid "Shell"
msgstr "Shell"
-#: ../../any.pm_.c:790
+#: ../../any.pm_.c:792
msgid "Icon"
msgstr "Icona"
-#: ../../any.pm_.c:817
+#: ../../any.pm_.c:819
msgid "Autologin"
msgstr "Login automático"
-#: ../../any.pm_.c:818
+#: ../../any.pm_.c:820
#, fuzzy
msgid ""
"I can set up your computer to automatically log on one user.\n"
@@ -886,59 +900,59 @@ msgstr ""
"como un usuario. Se non quere usar esta característica, prema o botón\n"
"cancelar."
-#: ../../any.pm_.c:822
+#: ../../any.pm_.c:824
msgid "Choose the default user:"
msgstr "Escolla o usuario por defecto:"
-#: ../../any.pm_.c:823
+#: ../../any.pm_.c:825
msgid "Choose the window manager to run:"
msgstr "Escolla o xestor de fiestras para executar:"
-#: ../../any.pm_.c:838
+#: ../../any.pm_.c:840
#, fuzzy
msgid "Please choose a language to use."
msgstr "Escolla a lingua que desexe usar."
-#: ../../any.pm_.c:840
+#: ../../any.pm_.c:842
msgid ""
"Mandrake Linux can support multiple languages. Select\n"
"the languages you would like to install. They will be available\n"
"when your installation is complete and you restart your system."
msgstr "Pode escoller outras linguas que estarán dispońibles trala instalación"
-#: ../../any.pm_.c:854 ../../install_steps_interactive.pm_.c:708
+#: ../../any.pm_.c:856 ../../install_steps_interactive.pm_.c:692
#: ../../standalone/drakxtv_.c:73
msgid "All"
msgstr "Todas"
-#: ../../any.pm_.c:974
+#: ../../any.pm_.c:977
#, fuzzy
msgid "Allow all users"
msgstr "Engadir usuario"
-#: ../../any.pm_.c:974
+#: ../../any.pm_.c:977
#, fuzzy
msgid "No sharing"
msgstr "CUPS iniciando"
-#: ../../any.pm_.c:984 ../../standalone.pm_.c:57
+#: ../../any.pm_.c:987 ../../install_any.pm_.c:1183 ../../standalone.pm_.c:58
#, fuzzy, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr ""
"Este paquete ten que ser actualizado\n"
"żEstá seguro de que quere deseleccionalo?"
-#: ../../any.pm_.c:987
+#: ../../any.pm_.c:990
msgid ""
"You can export using NFS or Samba. Please select which you'd like to use."
msgstr ""
-#: ../../any.pm_.c:995 ../../standalone.pm_.c:61
+#: ../../any.pm_.c:998 ../../install_any.pm_.c:1188 ../../standalone.pm_.c:63
#, c-format
msgid "Mandatory package %s is missing"
msgstr ""
-#: ../../any.pm_.c:1001
+#: ../../any.pm_.c:1004
msgid ""
"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
@@ -947,42 +961,42 @@ msgid ""
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:1015
+#: ../../any.pm_.c:1018
msgid "Launch userdrake"
msgstr ""
-#: ../../any.pm_.c:1017
+#: ../../any.pm_.c:1020
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
msgstr ""
-#: ../../any.pm_.c:1068
+#: ../../any.pm_.c:1071
msgid "Welcome To Crackers"
msgstr "Benvida ós crackers"
-#: ../../any.pm_.c:1069
+#: ../../any.pm_.c:1072
msgid "Poor"
msgstr "Pobre"
-#: ../../any.pm_.c:1070 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1073 ../../mouse.pm_.c:31
msgid "Standard"
msgstr "Estándar"
-#: ../../any.pm_.c:1071
+#: ../../any.pm_.c:1074
msgid "High"
msgstr "Alto"
-#: ../../any.pm_.c:1072
+#: ../../any.pm_.c:1075
#, fuzzy
msgid "Higher"
msgstr "Alto"
-#: ../../any.pm_.c:1073
+#: ../../any.pm_.c:1076
msgid "Paranoid"
msgstr "Paranoico"
-#: ../../any.pm_.c:1076
+#: ../../any.pm_.c:1079
msgid ""
"This level is to be used with care. It makes your system more easy to use,\n"
"but very sensitive: it must not be used for a machine connected to others\n"
@@ -992,7 +1006,7 @@ msgstr ""
"sinxelo de utilizar, pero é moi sensible: non debe usarse nunha máquina\n"
"conectada a outras ou á Internet. Non hai contrasinais de acceso."
-#: ../../any.pm_.c:1079
+#: ../../any.pm_.c:1082
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -1000,7 +1014,7 @@ msgstr ""
"Os contrasinais están activados, pero o uso como ordenador de rede aínda\n"
"non se recomenda."
-#: ../../any.pm_.c:1080
+#: ../../any.pm_.c:1083
#, fuzzy
msgid ""
"This is the standard security recommended for a computer that will be used "
@@ -1009,13 +1023,13 @@ msgstr ""
"Esta é a seguridade recomendada para un ordenador usado para conectar\n"
"á Internet como cliente. Agora hai más comprobacións de seguridade."
-#: ../../any.pm_.c:1081
+#: ../../any.pm_.c:1084
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr ""
-#: ../../any.pm_.c:1082
+#: ../../any.pm_.c:1085
#, fuzzy
msgid ""
"With this security level, the use of this system as a server becomes "
@@ -1029,7 +1043,7 @@ msgstr ""
"A seguridade é agora alta dabondo para usar o sistema coma un servidor\n"
"que acepta conexións de múltiples clientes."
-#: ../../any.pm_.c:1085
+#: ../../any.pm_.c:1088
#, fuzzy
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
@@ -1038,32 +1052,32 @@ msgstr ""
"Tómanse características do nivel 4, pero agora o sistema está completamente\n"
"pechado. As características de seguridade están ó máximo nivel."
-#: ../../any.pm_.c:1091
+#: ../../any.pm_.c:1094
#, fuzzy
msgid "DrakSec Basic Options"
msgstr "Opcións"
-#: ../../any.pm_.c:1092
+#: ../../any.pm_.c:1095
#, fuzzy
msgid "Please choose the desired security level"
msgstr "Escola o nivel de seguridade"
-#: ../../any.pm_.c:1095
+#: ../../any.pm_.c:1098
#, fuzzy
msgid "Security level"
msgstr "Establecendo o nivel de seguridade"
-#: ../../any.pm_.c:1097
+#: ../../any.pm_.c:1100
#, fuzzy
msgid "Use libsafe for servers"
msgstr "Escolla as opcións para o servidor"
-#: ../../any.pm_.c:1098
+#: ../../any.pm_.c:1101
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
-#: ../../any.pm_.c:1099
+#: ../../any.pm_.c:1102
msgid "Security Administrator (login or email)"
msgstr ""
@@ -1104,58 +1118,58 @@ msgstr ""
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:935
+#: ../../bootloader.pm_.c:932
msgid "Welcome to GRUB the operating system chooser!"
msgstr "­Benvido ao GRUB, o selector de sistemas operativos!"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:938
+#: ../../bootloader.pm_.c:935
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "Use as teclas %c e %c para seleccionar a entrada marcada."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:941
+#: ../../bootloader.pm_.c:938
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Prema enter para arrincar o SO seleccionado, 'e' para editar os"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:941
msgid "commands before booting, or 'c' for a command-line."
msgstr "comandos antes de arrincar, ou 'c' para a li€a de comandos."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:947
+#: ../../bootloader.pm_.c:944
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "A entrada marcada arrincarase automaticamente en %d segundos."
-#: ../../bootloader.pm_.c:951
+#: ../../bootloader.pm_.c:948
msgid "not enough room in /boot"
msgstr "non hai espacio dabondo en /boot"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1051
+#: ../../bootloader.pm_.c:1048
msgid "Desktop"
msgstr "Escritorio"
# Manter o 'ú' en iso-8859-1
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1053
+#: ../../bootloader.pm_.c:1050
msgid "Start Menu"
msgstr "Menú Inicio"
-#: ../../bootloader.pm_.c:1072
+#: ../../bootloader.pm_.c:1069
#, fuzzy, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "żOnde quere instalar o cargador de arrinque?"
-#: ../../bootlook.pm_.c:45
+#: ../../bootlook.pm_.c:45 ../../standalone/draksplash_.c:25
msgid "no help implemented yet.\n"
msgstr "axuda aínda non implementada.\n"
@@ -1163,8 +1177,8 @@ msgstr "axuda aínda non implementada.\n"
msgid "Boot Style Configuration"
msgstr "Configuración do estilo de arrinque"
-#: ../../bootlook.pm_.c:78 ../../harddrake/ui.pm_.c:59
-#: ../../harddrake/ui.pm_.c:60 ../../standalone/drakfloppy_.c:81
+#: ../../bootlook.pm_.c:78 ../../harddrake/ui.pm_.c:62
+#: ../../harddrake/ui.pm_.c:63 ../../standalone/drakfloppy_.c:81
#: ../../standalone/logdrake_.c:101
msgid "/_File"
msgstr "/_Ficheiro"
@@ -1174,7 +1188,7 @@ msgstr "/_Ficheiro"
msgid "/File/_Quit"
msgstr "/Ficheiro/_Saír"
-#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:60
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:63
#: ../../standalone/drakfloppy_.c:82 ../../standalone/logdrake_.c:107
msgid "<control>Q"
msgstr "<control>Q"
@@ -1220,118 +1234,124 @@ msgstr "Instalar sistema"
msgid "Display theme under console"
msgstr ""
-#: ../../bootlook.pm_.c:166
+#: ../../bootlook.pm_.c:145
+#, fuzzy
+msgid "Create new theme"
+msgstr "Crear unha nova partición"
+
+#: ../../bootlook.pm_.c:169
msgid "Can't create Bootsplash preview"
msgstr ""
-#: ../../bootlook.pm_.c:166 ../../bootlook.pm_.c:184 ../../bootlook.pm_.c:187
-#: ../../bootlook.pm_.c:190 ../../bootlook.pm_.c:220 ../../bootlook.pm_.c:222
-#: ../../bootlook.pm_.c:232 ../../bootlook.pm_.c:241 ../../bootlook.pm_.c:248
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:336
-#: ../../diskdrake/interactive.pm_.c:351 ../../diskdrake/interactive.pm_.c:464
-#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../bootlook.pm_.c:169 ../../bootlook.pm_.c:187 ../../bootlook.pm_.c:190
+#: ../../bootlook.pm_.c:193 ../../bootlook.pm_.c:223 ../../bootlook.pm_.c:225
+#: ../../bootlook.pm_.c:235 ../../bootlook.pm_.c:244 ../../bootlook.pm_.c:251
+#: ../../diskdrake/dav.pm_.c:73 ../../diskdrake/hd_gtk.pm_.c:116
+#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/interactive.pm_.c:355
+#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/interactive.pm_.c:474
+#: ../../diskdrake/smbnfs_gtk.pm_.c:45 ../../fsedit.pm_.c:239
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:365 ../../interactive/http.pm_.c:119
-#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:80
+#: ../../interactive/http.pm_.c:119 ../../interactive/http.pm_.c:120
+#: ../../standalone/draksplash_.c:32
msgid "Error"
msgstr "Erro"
-#: ../../bootlook.pm_.c:183
+#: ../../bootlook.pm_.c:186
#, c-format
msgid "Backup %s to %s.old"
msgstr ""
-#: ../../bootlook.pm_.c:184
+#: ../../bootlook.pm_.c:187
msgid "unable to backup lilo message"
msgstr ""
-#: ../../bootlook.pm_.c:186
+#: ../../bootlook.pm_.c:189
#, c-format
msgid "Copy %s to %s"
msgstr ""
-#: ../../bootlook.pm_.c:187
+#: ../../bootlook.pm_.c:190
msgid "can't change lilo message"
msgstr ""
-#: ../../bootlook.pm_.c:190
+#: ../../bootlook.pm_.c:193
msgid "Lilo message not found"
msgstr ""
-#: ../../bootlook.pm_.c:220
+#: ../../bootlook.pm_.c:223
msgid "Can't write /etc/sysconfig/bootsplash."
msgstr ""
-#: ../../bootlook.pm_.c:220
+#: ../../bootlook.pm_.c:223
#, fuzzy, c-format
msgid "Write %s"
msgstr "XFree %s"
-#: ../../bootlook.pm_.c:222
+#: ../../bootlook.pm_.c:225
msgid ""
"Can't write /etc/sysconfig/bootsplash\n"
"File not found."
msgstr ""
-#: ../../bootlook.pm_.c:233
+#: ../../bootlook.pm_.c:236
#, c-format
msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
msgstr ""
-#: ../../bootlook.pm_.c:236
+#: ../../bootlook.pm_.c:239
#, c-format
-msgid "Make initrd 'mkinird -f /boot/initrd-%s.img %s'."
+msgid "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
msgstr ""
-#: ../../bootlook.pm_.c:242
+#: ../../bootlook.pm_.c:245
msgid ""
"Can't relaunch LiLo!\n"
"Launch \"lilo\" as root in command line to complete LiLo theme installation."
msgstr ""
-#: ../../bootlook.pm_.c:246
+#: ../../bootlook.pm_.c:249
msgid "Relaunch 'lilo'"
msgstr ""
-#: ../../bootlook.pm_.c:248
+#: ../../bootlook.pm_.c:251 ../../standalone/draksplash_.c:161
+#: ../../standalone/draksplash_.c:330 ../../standalone/draksplash_.c:454
#, fuzzy
msgid "Notice"
msgstr "bo"
-#: ../../bootlook.pm_.c:249
+#: ../../bootlook.pm_.c:252
msgid "LiLo and Bootsplash themes installation successfull"
msgstr ""
-#: ../../bootlook.pm_.c:249
+#: ../../bootlook.pm_.c:252
#, fuzzy
msgid "Theme installation failed!"
msgstr "Clase de instalación"
-#: ../../bootlook.pm_.c:258
+#: ../../bootlook.pm_.c:261
#, c-format
msgid ""
"You are currently using %s as your boot manager.\n"
"Click on Configure to launch the setup wizard."
msgstr ""
-#: ../../bootlook.pm_.c:260 ../../standalone/drakbackup_.c:2352
-#: ../../standalone/drakbackup_.c:2362 ../../standalone/drakbackup_.c:2372
-#: ../../standalone/drakbackup_.c:2380 ../../standalone/drakgw_.c:592
-#: ../../standalone/tinyfirewall_.c:58
+#: ../../bootlook.pm_.c:263 ../../standalone/drakbackup_.c:2427
+#: ../../standalone/drakbackup_.c:2437 ../../standalone/drakbackup_.c:2447
+#: ../../standalone/drakbackup_.c:2455 ../../standalone/drakgw_.c:530
#, fuzzy
msgid "Configure"
msgstr "Configurar as X"
-#: ../../bootlook.pm_.c:267
+#: ../../bootlook.pm_.c:270
#, fuzzy
msgid "Splash selection"
msgstr "Gardar a selección de paquetes"
-#: ../../bootlook.pm_.c:270
+#: ../../bootlook.pm_.c:273
msgid "Themes"
msgstr ""
-#: ../../bootlook.pm_.c:272
+#: ../../bootlook.pm_.c:275
msgid ""
"\n"
"Select a theme for\n"
@@ -1340,44 +1360,44 @@ msgid ""
"them separatly"
msgstr ""
-#: ../../bootlook.pm_.c:275
+#: ../../bootlook.pm_.c:278
msgid "Lilo screen"
msgstr ""
-#: ../../bootlook.pm_.c:279
+#: ../../bootlook.pm_.c:283
msgid "Bootsplash"
msgstr ""
-#: ../../bootlook.pm_.c:314
+#: ../../bootlook.pm_.c:318
msgid "System mode"
msgstr ""
-#: ../../bootlook.pm_.c:316
+#: ../../bootlook.pm_.c:320
msgid "Launch the graphical environment when your system starts"
msgstr "Lanzar o sistema X-Window ó iniciar"
-#: ../../bootlook.pm_.c:321
+#: ../../bootlook.pm_.c:325
msgid "No, I don't want autologin"
msgstr "Non, non quero login automático"
-#: ../../bootlook.pm_.c:323
+#: ../../bootlook.pm_.c:327
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "Si, quero login automático con este (usuario, escritorio)"
-#: ../../bootlook.pm_.c:333 ../../network/netconnect.pm_.c:101
+#: ../../bootlook.pm_.c:337 ../../network/netconnect.pm_.c:101
#: ../../standalone/drakTermServ_.c:173 ../../standalone/drakTermServ_.c:300
-#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:3513
-#: ../../standalone/drakbackup_.c:4290 ../../standalone/drakconnect_.c:108
+#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4191
+#: ../../standalone/drakbackup_.c:4952 ../../standalone/drakconnect_.c:108
#: ../../standalone/drakconnect_.c:140 ../../standalone/drakconnect_.c:296
#: ../../standalone/drakconnect_.c:435 ../../standalone/drakconnect_.c:521
#: ../../standalone/drakconnect_.c:564 ../../standalone/drakconnect_.c:667
#: ../../standalone/drakfloppy_.c:376 ../../standalone/drakfont_.c:612
#: ../../standalone/drakfont_.c:799 ../../standalone/drakfont_.c:876
-#: ../../standalone/drakfont_.c:963 ../../standalone/logdrake_.c:521
+#: ../../standalone/drakfont_.c:963 ../../standalone/logdrake_.c:519
msgid "OK"
msgstr "Aceptar"
-#: ../../bootlook.pm_.c:403
+#: ../../bootlook.pm_.c:407
#, c-format
msgid "can not open /etc/inittab for reading: %s"
msgstr "non se pode abrir /etc/inittab para lectura: %s"
@@ -1482,49 +1502,54 @@ msgstr "serie"
msgid "United States"
msgstr ""
-#: ../../detect_devices.pm_.c:599 ../../detect_devices.pm_.c:641
-#: ../../detect_devices.pm_.c:803
-msgid "Unknown Model"
-msgstr ""
-
#: ../../diskdrake/dav.pm_.c:23
#, fuzzy
msgid "New"
msgstr "novo"
-#: ../../diskdrake/dav.pm_.c:57
+#: ../../diskdrake/dav.pm_.c:59 ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/smbnfs_gtk.pm_.c:81
+msgid "Unmount"
+msgstr "Desmontar"
+
+#: ../../diskdrake/dav.pm_.c:60 ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/smbnfs_gtk.pm_.c:82
+msgid "Mount"
+msgstr "Montar"
+
+#: ../../diskdrake/dav.pm_.c:61
msgid "Server"
msgstr "Servidor"
-#: ../../diskdrake/dav.pm_.c:58 ../../diskdrake/interactive.pm_.c:375
-#: ../../diskdrake/interactive.pm_.c:558 ../../diskdrake/interactive.pm_.c:585
+#: ../../diskdrake/dav.pm_.c:62 ../../diskdrake/interactive.pm_.c:379
+#: ../../diskdrake/interactive.pm_.c:568 ../../diskdrake/interactive.pm_.c:595
#: ../../diskdrake/removable.pm_.c:24 ../../diskdrake/removable_gtk.pm_.c:15
#: ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr "Punto de montaxe"
-#: ../../diskdrake/dav.pm_.c:68
+#: ../../diskdrake/dav.pm_.c:81
#, fuzzy
msgid "Please enter the WebDAV server URL"
msgstr "Probe o seu rato"
-#: ../../diskdrake/dav.pm_.c:71
+#: ../../diskdrake/dav.pm_.c:84
#, fuzzy
msgid "The URL must begin with http:// or https://"
msgstr "O proxy debería ser http://..."
-#: ../../diskdrake/dav.pm_.c:92
+#: ../../diskdrake/dav.pm_.c:105
#, fuzzy
msgid "Server: "
msgstr "Servidor"
-#: ../../diskdrake/dav.pm_.c:93 ../../diskdrake/interactive.pm_.c:435
-#: ../../diskdrake/interactive.pm_.c:1079
-#: ../../diskdrake/interactive.pm_.c:1153
+#: ../../diskdrake/dav.pm_.c:106 ../../diskdrake/interactive.pm_.c:440
+#: ../../diskdrake/interactive.pm_.c:1089
+#: ../../diskdrake/interactive.pm_.c:1164
msgid "Mount point: "
msgstr "Punto de montaxe: "
-#: ../../diskdrake/dav.pm_.c:94 ../../diskdrake/interactive.pm_.c:1159
+#: ../../diskdrake/dav.pm_.c:107 ../../diskdrake/interactive.pm_.c:1170
#, c-format
msgid "Options: %s"
msgstr "Opcións: %s"
@@ -1533,8 +1558,9 @@ msgstr "Opcións: %s"
msgid "Please make a backup of your data first"
msgstr "Faga primeiro unha copia de seguridade dos seus datos"
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:924
-#: ../../diskdrake/interactive.pm_.c:933 ../../diskdrake/interactive.pm_.c:999
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:934
+#: ../../diskdrake/interactive.pm_.c:943
+#: ../../diskdrake/interactive.pm_.c:1009
msgid "Read carefully!"
msgstr "ĄLea coidadosamente!"
@@ -1572,10 +1598,15 @@ msgid "Please click on a partition"
msgstr "Prema nunha partición"
#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
-#: ../../install_steps_gtk.pm_.c:471
+#: ../../install_steps_gtk.pm_.c:465
msgid "Details"
msgstr "Detalles"
+#: ../../diskdrake/hd_gtk.pm_.c:252
+#, fuzzy
+msgid "No hard drives found"
+msgstr "Impresora local"
+
#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Ext2"
msgstr "Ext2"
@@ -1601,13 +1632,13 @@ msgstr "SunOS"
msgid "Swap"
msgstr "Intercambio"
-#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1105
msgid "Empty"
msgstr "Baleiro"
-#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:331
-#: ../../install_steps_gtk.pm_.c:389 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1679
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:325
+#: ../../install_steps_gtk.pm_.c:383 ../../mouse.pm_.c:165
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1754
msgid "Other"
msgstr "Outros"
@@ -1615,12 +1646,12 @@ msgstr "Outros"
msgid "Filesystem types:"
msgstr "Tipos de sist. de ficheiros:"
-#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:397
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:402
msgid "Create"
msgstr "Crear"
-#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:376
-#: ../../diskdrake/interactive.pm_.c:521 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:380
+#: ../../diskdrake/interactive.pm_.c:531 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "Tipo"
@@ -1630,7 +1661,7 @@ msgstr "Tipo"
msgid "Use ``%s'' instead"
msgstr "Use ``%s'' no seu lugar"
-#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:389
msgid "Delete"
msgstr "Borrar"
@@ -1638,84 +1669,84 @@ msgstr "Borrar"
msgid "Use ``Unmount'' first"
msgstr "Use ``Desmontar'' primeiro"
-#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:513
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:518
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
msgstr ""
"Ó mudar o tipo da partición %s, perderanse tódolos datos desta partición"
-#: ../../diskdrake/interactive.pm_.c:173
+#: ../../diskdrake/interactive.pm_.c:174
#, fuzzy
msgid "Choose a partition"
msgstr "Escolla a acción"
-#: ../../diskdrake/interactive.pm_.c:173
+#: ../../diskdrake/interactive.pm_.c:174
#, fuzzy
msgid "Choose another partition"
msgstr "Crear unha nova partición"
-#: ../../diskdrake/interactive.pm_.c:198
+#: ../../diskdrake/interactive.pm_.c:199
#, fuzzy
msgid "Exit"
msgstr "Ext2"
-#: ../../diskdrake/interactive.pm_.c:220
+#: ../../diskdrake/interactive.pm_.c:221
msgid "Toggle to expert mode"
msgstr "Mudar a modo experto"
-#: ../../diskdrake/interactive.pm_.c:220
+#: ../../diskdrake/interactive.pm_.c:221
msgid "Toggle to normal mode"
msgstr "Mudar a modo normal"
-#: ../../diskdrake/interactive.pm_.c:220
+#: ../../diskdrake/interactive.pm_.c:221
msgid "Undo"
msgstr "Refacer"
-#: ../../diskdrake/interactive.pm_.c:239
+#: ../../diskdrake/interactive.pm_.c:240
msgid "Continue anyway?"
msgstr "żContinuar de calquera xeito?"
-#: ../../diskdrake/interactive.pm_.c:244
+#: ../../diskdrake/interactive.pm_.c:245
msgid "Quit without saving"
msgstr "Saír sen gardar"
-#: ../../diskdrake/interactive.pm_.c:244
+#: ../../diskdrake/interactive.pm_.c:245
msgid "Quit without writing the partition table?"
msgstr "żSaír do programa sen gardar a táboa de particións?"
-#: ../../diskdrake/interactive.pm_.c:249
+#: ../../diskdrake/interactive.pm_.c:250
#, fuzzy
msgid "Do you want to save /etc/fstab modifications"
msgstr "żDesexa probar a configuración?"
-#: ../../diskdrake/interactive.pm_.c:261
+#: ../../diskdrake/interactive.pm_.c:263
msgid "Auto allocate"
msgstr "Asignación automática"
-#: ../../diskdrake/interactive.pm_.c:261
+#: ../../diskdrake/interactive.pm_.c:263
msgid "Clear all"
msgstr "Borrar todas"
-#: ../../diskdrake/interactive.pm_.c:261
+#: ../../diskdrake/interactive.pm_.c:263
#: ../../install_steps_interactive.pm_.c:214
msgid "More"
msgstr "Máis"
-#: ../../diskdrake/interactive.pm_.c:264
+#: ../../diskdrake/interactive.pm_.c:267
#, fuzzy
msgid "Hard drive information"
msgstr "Información do correo"
-#: ../../diskdrake/interactive.pm_.c:294
+#: ../../diskdrake/interactive.pm_.c:298
msgid "All primary partitions are used"
msgstr "Tódalas particións primarias están usadas"
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:299
msgid "I can't add any more partition"
msgstr "Non é posible engadir máis particións"
-#: ../../diskdrake/interactive.pm_.c:296
+#: ../../diskdrake/interactive.pm_.c:300
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -1723,35 +1754,35 @@ msgstr ""
"Para ter máis particións, borre unha para poder crear unha partición "
"estendida"
-#: ../../diskdrake/interactive.pm_.c:306
+#: ../../diskdrake/interactive.pm_.c:310
#, fuzzy
msgid "Save partition table"
msgstr "Escribir táboa de particións"
-#: ../../diskdrake/interactive.pm_.c:307
+#: ../../diskdrake/interactive.pm_.c:311
#, fuzzy
msgid "Restore partition table"
msgstr "Táboa de particións de rescate"
-#: ../../diskdrake/interactive.pm_.c:308
+#: ../../diskdrake/interactive.pm_.c:312
msgid "Rescue partition table"
msgstr "Táboa de particións de rescate"
-#: ../../diskdrake/interactive.pm_.c:310
+#: ../../diskdrake/interactive.pm_.c:314
#, fuzzy
msgid "Reload partition table"
msgstr "Táboa de particións de rescate"
-#: ../../diskdrake/interactive.pm_.c:315
+#: ../../diskdrake/interactive.pm_.c:319
#, fuzzy
msgid "Removable media automounting"
msgstr "Automonta-las unidades extraíbles"
-#: ../../diskdrake/interactive.pm_.c:324 ../../diskdrake/interactive.pm_.c:344
+#: ../../diskdrake/interactive.pm_.c:328 ../../diskdrake/interactive.pm_.c:348
msgid "Select file"
msgstr "Seleccione un ficheiro"
-#: ../../diskdrake/interactive.pm_.c:331
+#: ../../diskdrake/interactive.pm_.c:335
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1759,11 +1790,11 @@ msgstr ""
"A táboa de particións de rescate non ten\n"
"o mesmo tamańo. żContinuar de calquera xeito?"
-#: ../../diskdrake/interactive.pm_.c:345
+#: ../../diskdrake/interactive.pm_.c:349
msgid "Warning"
msgstr "Advertencia"
-#: ../../diskdrake/interactive.pm_.c:346
+#: ../../diskdrake/interactive.pm_.c:350
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1771,114 +1802,106 @@ msgstr ""
"Insira un disquete na unidade\n"
"Perderanse tódolos datos no disquete"
-#: ../../diskdrake/interactive.pm_.c:357
+#: ../../diskdrake/interactive.pm_.c:361
msgid "Trying to rescue partition table"
msgstr "Tentando recuperar a táboa de particións de rescate"
-#: ../../diskdrake/interactive.pm_.c:363
+#: ../../diskdrake/interactive.pm_.c:367
#, fuzzy
msgid "Detailed information"
msgstr "Información do correo"
-#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:652
+#: ../../diskdrake/interactive.pm_.c:382 ../../diskdrake/interactive.pm_.c:662
msgid "Resize"
msgstr "Redimensionar"
-#: ../../diskdrake/interactive.pm_.c:379 ../../diskdrake/interactive.pm_.c:705
+#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/interactive.pm_.c:715
msgid "Move"
msgstr "Desprazar"
-#: ../../diskdrake/interactive.pm_.c:380
+#: ../../diskdrake/interactive.pm_.c:384
msgid "Format"
msgstr "Formatar"
-#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/smbnfs_gtk.pm_.c:82
-msgid "Mount"
-msgstr "Montar"
-
-#: ../../diskdrake/interactive.pm_.c:382
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Add to RAID"
msgstr "Engadir ó RAID"
-#: ../../diskdrake/interactive.pm_.c:383
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Add to LVM"
msgstr "Engadir ó LVM"
-#: ../../diskdrake/interactive.pm_.c:384 ../../diskdrake/smbnfs_gtk.pm_.c:81
-msgid "Unmount"
-msgstr "Desmontar"
-
-#: ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/interactive.pm_.c:390
msgid "Remove from RAID"
msgstr "Quitar do RAID"
-#: ../../diskdrake/interactive.pm_.c:387
+#: ../../diskdrake/interactive.pm_.c:391
msgid "Remove from LVM"
msgstr "Quitar do LVM"
-#: ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/interactive.pm_.c:392
msgid "Modify RAID"
msgstr "Modificar o RAID"
-#: ../../diskdrake/interactive.pm_.c:389
+#: ../../diskdrake/interactive.pm_.c:393
msgid "Use for loopback"
msgstr "Usar para loopback"
-#: ../../diskdrake/interactive.pm_.c:428
+#: ../../diskdrake/interactive.pm_.c:433
msgid "Create a new partition"
msgstr "Crear unha nova partición"
-#: ../../diskdrake/interactive.pm_.c:431
+#: ../../diskdrake/interactive.pm_.c:436
msgid "Start sector: "
msgstr "Sector inicial: "
-#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:805
+#: ../../diskdrake/interactive.pm_.c:438 ../../diskdrake/interactive.pm_.c:815
msgid "Size in MB: "
msgstr "Tamańo en MB: "
-#: ../../diskdrake/interactive.pm_.c:434 ../../diskdrake/interactive.pm_.c:806
+#: ../../diskdrake/interactive.pm_.c:439 ../../diskdrake/interactive.pm_.c:816
msgid "Filesystem type: "
msgstr "Tipo de sist. de ficheiros: "
-#: ../../diskdrake/interactive.pm_.c:439
+#: ../../diskdrake/interactive.pm_.c:444
msgid "Preference: "
msgstr "Preferencia: "
-#: ../../diskdrake/interactive.pm_.c:464
+#: ../../diskdrake/interactive.pm_.c:469
msgid ""
"You can't create a new partition\n"
"(since you reached the maximal number of primary partitions).\n"
"First remove a primary partition and create an extended partition."
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:494
+#: ../../diskdrake/interactive.pm_.c:499
#, fuzzy
msgid "Remove the loopback file?"
msgstr "Formatando o ficheiro loopback %s"
-#: ../../diskdrake/interactive.pm_.c:519
+#: ../../diskdrake/interactive.pm_.c:529
msgid "Change partition type"
msgstr "Mudar o tipo de partición"
-#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:530 ../../diskdrake/removable.pm_.c:48
msgid "Which filesystem do you want?"
msgstr "żQué sistema de ficheiros desexa?"
-#: ../../diskdrake/interactive.pm_.c:526
+#: ../../diskdrake/interactive.pm_.c:536
msgid "Switching from ext2 to ext3"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:556
+#: ../../diskdrake/interactive.pm_.c:566
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "żOnde desexa montar o ficheiro loopback %s?"
-#: ../../diskdrake/interactive.pm_.c:557
+#: ../../diskdrake/interactive.pm_.c:567
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "żOnde desexa montar o dispositivo %s?"
-#: ../../diskdrake/interactive.pm_.c:563
+#: ../../diskdrake/interactive.pm_.c:573
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1887,141 +1910,141 @@ msgstr ""
"usar de loopback.\n"
"Quite primeiro o loopback"
-#: ../../diskdrake/interactive.pm_.c:584
+#: ../../diskdrake/interactive.pm_.c:594
#, fuzzy, c-format
msgid "Where do you want to mount %s?"
msgstr "żOnde desexa montar o dispositivo %s?"
-#: ../../diskdrake/interactive.pm_.c:608
+#: ../../diskdrake/interactive.pm_.c:618
msgid "Computing FAT filesystem bounds"
msgstr "Calculando os límites do sistema de ficheiros FAT"
-#: ../../diskdrake/interactive.pm_.c:608 ../../diskdrake/interactive.pm_.c:667
-#: ../../install_interactive.pm_.c:131
+#: ../../diskdrake/interactive.pm_.c:618 ../../diskdrake/interactive.pm_.c:677
+#: ../../install_interactive.pm_.c:133
msgid "Resizing"
msgstr "Redimensionando"
-#: ../../diskdrake/interactive.pm_.c:640
+#: ../../diskdrake/interactive.pm_.c:650
msgid "This partition is not resizeable"
msgstr "Esta partición non se pode redimensionar"
-#: ../../diskdrake/interactive.pm_.c:645
+#: ../../diskdrake/interactive.pm_.c:655
msgid "All data on this partition should be backed-up"
msgstr "Debería facer unha copia de seguridade dos datos desta partición"
-#: ../../diskdrake/interactive.pm_.c:647
+#: ../../diskdrake/interactive.pm_.c:657
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr ""
"Ó redimensionar a partición %s, perderanse tódolos datos desta partición"
-#: ../../diskdrake/interactive.pm_.c:652
+#: ../../diskdrake/interactive.pm_.c:662
msgid "Choose the new size"
msgstr "Escoller o novo tamańo"
-#: ../../diskdrake/interactive.pm_.c:653
+#: ../../diskdrake/interactive.pm_.c:663
#, fuzzy
msgid "New size in MB: "
msgstr "Tamańo en MB: "
-#: ../../diskdrake/interactive.pm_.c:706
+#: ../../diskdrake/interactive.pm_.c:716
msgid "Which disk do you want to move it to?"
msgstr "żA que disco desexa desprazala?"
-#: ../../diskdrake/interactive.pm_.c:707
+#: ../../diskdrake/interactive.pm_.c:717
msgid "Sector"
msgstr "Sector"
-#: ../../diskdrake/interactive.pm_.c:708
+#: ../../diskdrake/interactive.pm_.c:718
msgid "Which sector do you want to move it to?"
msgstr "żA que sector desexa desprazala?"
-#: ../../diskdrake/interactive.pm_.c:711
+#: ../../diskdrake/interactive.pm_.c:721
msgid "Moving"
msgstr "Desprazando"
-#: ../../diskdrake/interactive.pm_.c:711
+#: ../../diskdrake/interactive.pm_.c:721
msgid "Moving partition..."
msgstr "Desprazando partición..."
-#: ../../diskdrake/interactive.pm_.c:728
+#: ../../diskdrake/interactive.pm_.c:738
msgid "Choose an existing RAID to add to"
msgstr "Escolla un dos RAID para engadirlle"
-#: ../../diskdrake/interactive.pm_.c:729 ../../diskdrake/interactive.pm_.c:746
+#: ../../diskdrake/interactive.pm_.c:739 ../../diskdrake/interactive.pm_.c:756
msgid "new"
msgstr "novo"
-#: ../../diskdrake/interactive.pm_.c:744
+#: ../../diskdrake/interactive.pm_.c:754
msgid "Choose an existing LVM to add to"
msgstr "Escolla un dos LVM para engadirlle"
-#: ../../diskdrake/interactive.pm_.c:749
+#: ../../diskdrake/interactive.pm_.c:759
msgid "LVM name?"
msgstr "żNome do LVM?"
-#: ../../diskdrake/interactive.pm_.c:790
+#: ../../diskdrake/interactive.pm_.c:800
msgid "This partition can't be used for loopback"
msgstr "Esta partición non pode usarse para loopback"
-#: ../../diskdrake/interactive.pm_.c:803
+#: ../../diskdrake/interactive.pm_.c:813
msgid "Loopback"
msgstr "Loopback"
-#: ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:814
msgid "Loopback file name: "
msgstr "Nome do ficheiro loopback: "
-#: ../../diskdrake/interactive.pm_.c:809
+#: ../../diskdrake/interactive.pm_.c:819
#, fuzzy
msgid "Give a file name"
msgstr "Nome real"
-#: ../../diskdrake/interactive.pm_.c:812
+#: ../../diskdrake/interactive.pm_.c:822
msgid "File already used by another loopback, choose another one"
msgstr "O ficheiro xa está a ser usado por outro loopback, escolla outro"
-#: ../../diskdrake/interactive.pm_.c:813
+#: ../../diskdrake/interactive.pm_.c:823
msgid "File already exists. Use it?"
msgstr "O ficheiro xa existe. żUsalo?"
-#: ../../diskdrake/interactive.pm_.c:836
+#: ../../diskdrake/interactive.pm_.c:846
#, fuzzy
msgid "Mount options"
msgstr "Opcións do módulo:"
-#: ../../diskdrake/interactive.pm_.c:843
+#: ../../diskdrake/interactive.pm_.c:853
msgid "Various"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:907 ../../standalone/drakfloppy_.c:103
+#: ../../diskdrake/interactive.pm_.c:917 ../../standalone/drakfloppy_.c:103
msgid "device"
msgstr "dispositivo"
-#: ../../diskdrake/interactive.pm_.c:908
+#: ../../diskdrake/interactive.pm_.c:918
msgid "level"
msgstr "nivel"
-#: ../../diskdrake/interactive.pm_.c:909
+#: ../../diskdrake/interactive.pm_.c:919
msgid "chunk size"
msgstr "tamańo do bloque de datos"
-#: ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:934
msgid "Be careful: this operation is dangerous."
msgstr "Teńa coidado: esta operación é perigosa."
-#: ../../diskdrake/interactive.pm_.c:939
+#: ../../diskdrake/interactive.pm_.c:949
msgid "What type of partitioning?"
msgstr "żQué tipo de particionamento quere?"
-#: ../../diskdrake/interactive.pm_.c:955
+#: ../../diskdrake/interactive.pm_.c:965
#, fuzzy, c-format
msgid "The package %s is needed. Install it?"
msgstr ""
"Este paquete ten que ser actualizado\n"
"żEstá seguro de que quere deseleccionalo?"
-#: ../../diskdrake/interactive.pm_.c:969
+#: ../../diskdrake/interactive.pm_.c:979
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -2032,7 +2055,7 @@ msgstr ""
"(nun cilindro > 1024). Se usa o LILO, non funcionará, e se non o\n"
"usa, non necesita /boot"
-#: ../../diskdrake/interactive.pm_.c:973
+#: ../../diskdrake/interactive.pm_.c:983
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -2044,7 +2067,7 @@ msgstr ""
"Se pensa usar o selector de SO de arrinque LILO, lembre engadir unha\n"
"partición /boot"
-#: ../../diskdrake/interactive.pm_.c:979
+#: ../../diskdrake/interactive.pm_.c:989
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
@@ -2055,138 +2078,138 @@ msgstr ""
"partición /boot.\n"
"Lembre polo tanto engadir unha partición /boot"
-#: ../../diskdrake/interactive.pm_.c:999
+#: ../../diskdrake/interactive.pm_.c:1009
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "ĄEscribirase ó disco a táboa de particións da unidade %s!"
-#: ../../diskdrake/interactive.pm_.c:1003
+#: ../../diskdrake/interactive.pm_.c:1013
msgid "You'll need to reboot before the modification can take place"
msgstr ""
"Necesitará reiniciar o equipo para que a modificación sexa tomada en conta"
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1024
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr "Ó formatar a partición %s, perderanse tódolos datos desta partición"
-#: ../../diskdrake/interactive.pm_.c:1016
+#: ../../diskdrake/interactive.pm_.c:1026
msgid "Formatting"
msgstr "Formatando"
-#: ../../diskdrake/interactive.pm_.c:1017
+#: ../../diskdrake/interactive.pm_.c:1027
#, c-format
msgid "Formatting loopback file %s"
msgstr "Formatando o ficheiro loopback %s"
-#: ../../diskdrake/interactive.pm_.c:1018
-#: ../../install_steps_interactive.pm_.c:476
+#: ../../diskdrake/interactive.pm_.c:1028
+#: ../../install_steps_interactive.pm_.c:459
#, c-format
msgid "Formatting partition %s"
msgstr "Formatando a partición %s"
-#: ../../diskdrake/interactive.pm_.c:1029
+#: ../../diskdrake/interactive.pm_.c:1039
#, fuzzy
msgid "Hide files"
msgstr "mkraid fallou"
-#: ../../diskdrake/interactive.pm_.c:1029
+#: ../../diskdrake/interactive.pm_.c:1039
#, fuzzy
msgid "Move files to the new partition"
msgstr "Non hai espacio libre dabondo para asignar novas particións"
-#: ../../diskdrake/interactive.pm_.c:1030
+#: ../../diskdrake/interactive.pm_.c:1040
#, c-format
msgid ""
"Directory %s already contains data\n"
"(%s)"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1041
+#: ../../diskdrake/interactive.pm_.c:1051
#, fuzzy
msgid "Moving files to the new partition"
msgstr "Non hai espacio libre dabondo para asignar novas particións"
-#: ../../diskdrake/interactive.pm_.c:1045
+#: ../../diskdrake/interactive.pm_.c:1055
#, c-format
msgid "Copying %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1049
+#: ../../diskdrake/interactive.pm_.c:1059
#, fuzzy, c-format
msgid "Removing %s"
msgstr "Resolución: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1059
+#: ../../diskdrake/interactive.pm_.c:1069
#, c-format
msgid "partition %s is now known as %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1080
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1090
+#: ../../diskdrake/interactive.pm_.c:1149
msgid "Device: "
msgstr "Dispositivo: "
-#: ../../diskdrake/interactive.pm_.c:1081
+#: ../../diskdrake/interactive.pm_.c:1091
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "Letra de unidade DOS: %s (aproximación)\n"
-#: ../../diskdrake/interactive.pm_.c:1085
-#: ../../diskdrake/interactive.pm_.c:1093
-#: ../../diskdrake/interactive.pm_.c:1157
+#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1103
+#: ../../diskdrake/interactive.pm_.c:1168
msgid "Type: "
msgstr "Tipo: "
-#: ../../diskdrake/interactive.pm_.c:1089
+#: ../../diskdrake/interactive.pm_.c:1099
msgid "Name: "
msgstr "Nome: "
-#: ../../diskdrake/interactive.pm_.c:1097
+#: ../../diskdrake/interactive.pm_.c:1107
#, c-format
msgid "Start: sector %s\n"
msgstr "Inicio: sector %s\n"
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1108
#, c-format
msgid "Size: %s"
msgstr "Tamańo: %s"
-#: ../../diskdrake/interactive.pm_.c:1100
+#: ../../diskdrake/interactive.pm_.c:1110
#, c-format
msgid ", %s sectors"
msgstr ", %s sectores"
-#: ../../diskdrake/interactive.pm_.c:1102
+#: ../../diskdrake/interactive.pm_.c:1112
#, fuzzy, c-format
msgid "Cylinder %d to %d\n"
msgstr "Cilindro %d a cilindro %d\n"
-#: ../../diskdrake/interactive.pm_.c:1103
+#: ../../diskdrake/interactive.pm_.c:1113
msgid "Formatted\n"
msgstr "Formatado\n"
-#: ../../diskdrake/interactive.pm_.c:1104
+#: ../../diskdrake/interactive.pm_.c:1114
msgid "Not formatted\n"
msgstr "Non formatado\n"
-#: ../../diskdrake/interactive.pm_.c:1105
+#: ../../diskdrake/interactive.pm_.c:1115
msgid "Mounted\n"
msgstr "Montado\n"
-#: ../../diskdrake/interactive.pm_.c:1106
+#: ../../diskdrake/interactive.pm_.c:1116
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1108
+#: ../../diskdrake/interactive.pm_.c:1118
#, fuzzy, c-format
msgid ""
"Loopback file(s):\n"
" %s\n"
msgstr "Ficheiro(s) loopback: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1109
+#: ../../diskdrake/interactive.pm_.c:1119
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -2194,27 +2217,27 @@ msgstr ""
"Partición de arrinque por omisión\n"
" (para arrincar en MS-DOS, non para lilo)\n"
-#: ../../diskdrake/interactive.pm_.c:1111
+#: ../../diskdrake/interactive.pm_.c:1121
#, c-format
msgid "Level %s\n"
msgstr "Nivel %s\n"
-#: ../../diskdrake/interactive.pm_.c:1112
+#: ../../diskdrake/interactive.pm_.c:1122
#, c-format
msgid "Chunk size %s\n"
msgstr "Tamańo do bloque de datos %s\n"
-#: ../../diskdrake/interactive.pm_.c:1113
+#: ../../diskdrake/interactive.pm_.c:1123
#, c-format
msgid "RAID-disks %s\n"
msgstr "Discos RAID %s\n"
-#: ../../diskdrake/interactive.pm_.c:1115
+#: ../../diskdrake/interactive.pm_.c:1125
#, c-format
msgid "Loopback file name: %s"
msgstr "Nome do ficheiro loopback: %s"
-#: ../../diskdrake/interactive.pm_.c:1118
+#: ../../diskdrake/interactive.pm_.c:1128
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -2222,7 +2245,7 @@ msgid ""
"probably leave it alone.\n"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1121
+#: ../../diskdrake/interactive.pm_.c:1131
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2230,60 +2253,64 @@ msgid ""
"dual-booting your system.\n"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1140
+#: ../../diskdrake/interactive.pm_.c:1150
+msgid "Read-only"
+msgstr ""
+
+#: ../../diskdrake/interactive.pm_.c:1151
#, c-format
msgid "Size: %s\n"
msgstr "Tamańo: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1141
+#: ../../diskdrake/interactive.pm_.c:1152
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Xeometría: %s cilindros, %s cabezas, %s sectores\n"
-#: ../../diskdrake/interactive.pm_.c:1142
+#: ../../diskdrake/interactive.pm_.c:1153
msgid "Info: "
msgstr "Info: "
-#: ../../diskdrake/interactive.pm_.c:1143
+#: ../../diskdrake/interactive.pm_.c:1154
#, c-format
msgid "LVM-disks %s\n"
msgstr "Discos LVM %s\n"
-#: ../../diskdrake/interactive.pm_.c:1144
+#: ../../diskdrake/interactive.pm_.c:1155
#, c-format
msgid "Partition table type: %s\n"
msgstr "Tipo de táboa de particións: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1145
+#: ../../diskdrake/interactive.pm_.c:1156
#, fuzzy, c-format
msgid "on channel %d id %d\n"
msgstr "no bus %d id %d\n"
-#: ../../diskdrake/interactive.pm_.c:1175
+#: ../../diskdrake/interactive.pm_.c:1186
#, fuzzy
msgid "Filesystem encryption key"
msgstr "Tipo de sist. de ficheiros: "
-#: ../../diskdrake/interactive.pm_.c:1176
+#: ../../diskdrake/interactive.pm_.c:1187
msgid "Choose your filesystem encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1179
+#: ../../diskdrake/interactive.pm_.c:1190
#, fuzzy, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr ""
"Este contrasinal é demasiado simple (ten que ter polo menos %d caracteres)"
-#: ../../diskdrake/interactive.pm_.c:1180
+#: ../../diskdrake/interactive.pm_.c:1191
#, fuzzy
msgid "The encryption keys do not match"
msgstr "Os contrasinais non coinciden"
-#: ../../diskdrake/interactive.pm_.c:1183
+#: ../../diskdrake/interactive.pm_.c:1194
msgid "Encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1184
+#: ../../diskdrake/interactive.pm_.c:1195
msgid "Encryption key (again)"
msgstr ""
@@ -2322,7 +2349,7 @@ msgid ""
"Please enter your username, password and domain name to access this host."
msgstr ""
-#: ../../diskdrake/smbnfs_gtk.pm_.c:178
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3527
#, fuzzy
msgid "Username"
msgstr "Nome de usuario"
@@ -2337,23 +2364,23 @@ msgstr "Dominio NIS"
msgid "Search servers"
msgstr "Servidor DNS"
-#: ../../fs.pm_.c:552 ../../fs.pm_.c:562 ../../fs.pm_.c:566 ../../fs.pm_.c:570
-#: ../../fs.pm_.c:574 ../../fs.pm_.c:578
+#: ../../fs.pm_.c:544 ../../fs.pm_.c:554 ../../fs.pm_.c:558 ../../fs.pm_.c:562
+#: ../../fs.pm_.c:566 ../../fs.pm_.c:570
#, c-format
msgid "%s formatting of %s failed"
msgstr "O formato %s de %s fallou"
-#: ../../fs.pm_.c:615
+#: ../../fs.pm_.c:607
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "Descońécese o xeito de formatar %s de tipo %s"
-#: ../../fs.pm_.c:687 ../../fs.pm_.c:731
+#: ../../fs.pm_.c:681 ../../fs.pm_.c:724
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../fs.pm_.c:746 ../../partition_table.pm_.c:602
+#: ../../fs.pm_.c:739 ../../partition_table.pm_.c:598
#, c-format
msgid "error unmounting %s: %s"
msgstr "erro desmontando %s: %s"
@@ -2370,33 +2397,51 @@ msgstr ""
msgid "server"
msgstr "servidor"
-#: ../../fsedit.pm_.c:472
+#: ../../fsedit.pm_.c:240
+#, fuzzy, c-format
+msgid ""
+"I can't read the partition table of device %s, it's too corrupted for me :(\n"
+"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
+"The other solution is to not allow DrakX to modify the partition table.\n"
+"(the error is %s)\n"
+"\n"
+"Do you agree to loose all the partitions?\n"
+msgstr ""
+"Non se pode ler a táboa de particións, está demasiado deteriorada :(\n"
+"Pódese probar baleirando as particións erróneas (ĄPerderanse TODOS os "
+"datos!).\n"
+"A outra solución é impedir que o DrakX modifique a táboa de particións.\n"
+"(o erro é %s)\n"
+"\n"
+"żConcorda coa perda de tódalas particións?\n"
+
+#: ../../fsedit.pm_.c:501
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr "Non pode usar JFS para particións máis pequenas que 16MB"
-#: ../../fsedit.pm_.c:473
+#: ../../fsedit.pm_.c:502
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr "Non pode usar ReiserFS para particións máis pequenas que 32MB"
-#: ../../fsedit.pm_.c:492
+#: ../../fsedit.pm_.c:521
msgid "Mount points must begin with a leading /"
msgstr "Os puntos de montaxe deben empezar por /"
-#: ../../fsedit.pm_.c:493
+#: ../../fsedit.pm_.c:522
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Xa existe unha partición co punto de montaxe %s\n"
-#: ../../fsedit.pm_.c:497
+#: ../../fsedit.pm_.c:526
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr "Non pode usar un volume lóxico LVM para o punto de montaxe %s"
-#: ../../fsedit.pm_.c:499
+#: ../../fsedit.pm_.c:528
msgid "This directory should remain within the root filesystem"
msgstr "Este directorio debería permanecer dentro do sistema de ficheiros raíz"
-#: ../../fsedit.pm_.c:501
+#: ../../fsedit.pm_.c:530
#, fuzzy
msgid ""
"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
@@ -2405,231 +2450,277 @@ msgstr ""
"Necesita un sistema de ficheiros real (ext2, reiserfs) para este punto de "
"montaxe\n"
-#: ../../fsedit.pm_.c:503
+#: ../../fsedit.pm_.c:532
#, fuzzy, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr "Non pode usar un volume lóxico LVM para o punto de montaxe %s"
-#: ../../fsedit.pm_.c:570
+#: ../../fsedit.pm_.c:599
#, fuzzy
msgid "Not enough free space for auto-allocating"
msgstr "Non hai espacio libre dabondo para asignar novas particións"
-#: ../../fsedit.pm_.c:572
+#: ../../fsedit.pm_.c:601
msgid "Nothing to do"
msgstr ""
-#: ../../fsedit.pm_.c:665
+#: ../../fsedit.pm_.c:694
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Erro ó abrir %s para escritura: %s"
-#: ../../fsedit.pm_.c:750
+#: ../../harddrake/sound.pm_.c:155
+msgid "No alternative driver"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:156
+#, c-format
+msgid "There's no known OSS/ALSA alternative driver for your sound card (%s)"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:158
+#, fuzzy
+msgid "Sound configuration"
+msgstr "Configuración da LAN"
+
+#: ../../harddrake/sound.pm_.c:159
+#, c-format
msgid ""
-"An error occurred - no valid devices were found on which to create new "
-"filesystems. Please check your hardware for the cause of this problem"
+"Here you can select an alternative driver (either OSS or ALSA) for your "
+"sound card (%s)"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:162
+#, fuzzy
+msgid "Driver:"
+msgstr "Controlador"
+
+#: ../../harddrake/sound.pm_.c:173
+msgid "No known driver"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:174
+#, c-format
+msgid "There's no known driver for your sound card (%s)"
msgstr ""
-"Ocorreu un erro - non se atopou ningún dispositivo válido para crear novos "
-"sistemas de ficheiros. Verifique o seu equipo para ver a razón deste problema"
-#: ../../fsedit.pm_.c:773
-msgid "You don't have any partitions!"
-msgstr "ĄNon ten ningunha partición!"
+#: ../../harddrake/sound.pm_.c:177
+msgid "Unkown driver"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:178
+#, c-format
+msgid ""
+"The \"%s\" driver for your sound card is unlisted\n"
+"\n"
+"Please send the output of the \"lspcidrake -v\" command to\n"
+"<install at mandrakesoft dot com>\n"
+"with subject: unlisted sound driver \"%s\""
+msgstr ""
-#: ../../harddrake/ui.pm_.c:15
+#: ../../harddrake/ui.pm_.c:16
#, fuzzy
msgid "Model"
msgstr "Rato"
-#: ../../harddrake/ui.pm_.c:15
+#: ../../harddrake/ui.pm_.c:16
#, fuzzy
msgid "hard disk model"
msgstr "Memoria da tarxeta (DMA)"
-#: ../../harddrake/ui.pm_.c:16
+#: ../../harddrake/ui.pm_.c:17
#, fuzzy
msgid "Channel"
msgstr "Cancelar"
-#: ../../harddrake/ui.pm_.c:16
+#: ../../harddrake/ui.pm_.c:17
msgid "EIDE/SCSI channel"
msgstr ""
-#: ../../harddrake/ui.pm_.c:18
+#: ../../harddrake/ui.pm_.c:19
msgid "Bus"
msgstr ""
-#: ../../harddrake/ui.pm_.c:19
+#: ../../harddrake/ui.pm_.c:20
msgid ""
"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
msgstr ""
-#: ../../harddrake/ui.pm_.c:20
+#: ../../harddrake/ui.pm_.c:21
#, fuzzy
msgid "Module"
msgstr "Rato"
-#: ../../harddrake/ui.pm_.c:20
+#: ../../harddrake/ui.pm_.c:21
msgid "the module of the GNU/Linux kernel that handle that device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:21
+#: ../../harddrake/ui.pm_.c:22
msgid "Media class"
msgstr ""
-#: ../../harddrake/ui.pm_.c:21
+#: ../../harddrake/ui.pm_.c:22
msgid "class of hardware device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:22 ../../printerdrake.pm_.c:1404
+#: ../../harddrake/ui.pm_.c:23 ../../printerdrake.pm_.c:1517
msgid "Description"
msgstr "Descrición"
-#: ../../harddrake/ui.pm_.c:22
+#: ../../harddrake/ui.pm_.c:23
msgid "this field describe the device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:24
+#: ../../harddrake/ui.pm_.c:25
#, fuzzy
msgid "Bus identification"
msgstr "Autenticación"
-#: ../../harddrake/ui.pm_.c:25
+#: ../../harddrake/ui.pm_.c:26
msgid ""
-"- PCI and USB devices : this list the vendor, device, subvendor and "
-"subdevice PCI/USB ids"
+"- PCI and USB devices: this list the vendor, device, subvendor and subdevice "
+"PCI/USB ids"
msgstr ""
-#: ../../harddrake/ui.pm_.c:27
+#: ../../harddrake/ui.pm_.c:28
msgid "Location on the bus"
msgstr ""
-#: ../../harddrake/ui.pm_.c:28
+#: ../../harddrake/ui.pm_.c:29
msgid ""
"- pci devices: this gives the PCI slot, device and function of this card\n"
"- eide devices: the device is either a slave or a master device\n"
"- scsi devices: the scsi bus and the scsi device ids"
msgstr ""
-#: ../../harddrake/ui.pm_.c:31
+#: ../../harddrake/ui.pm_.c:32
#, fuzzy
msgid "Old device file"
msgstr "Seleccione un ficheiro"
-#: ../../harddrake/ui.pm_.c:32
+#: ../../harddrake/ui.pm_.c:33
msgid "old static device name used in dev package"
msgstr ""
-#: ../../harddrake/ui.pm_.c:33
+#: ../../harddrake/ui.pm_.c:34
#, fuzzy
msgid "New devfs device"
msgstr "Dispositivo de pasarela"
-#: ../../harddrake/ui.pm_.c:34
+#: ../../harddrake/ui.pm_.c:35
msgid "new dinamic device name generated by incore kernel devfs"
msgstr ""
-#: ../../harddrake/ui.pm_.c:35
+#: ../../harddrake/ui.pm_.c:36
#, fuzzy
msgid "Number of buttons"
msgstr "2 botóns"
-#: ../../harddrake/ui.pm_.c:36
+#: ../../harddrake/ui.pm_.c:37
msgid "the vendor name of the device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:60
+#: ../../harddrake/ui.pm_.c:38
+#, fuzzy
+msgid "Alternative drivers"
+msgstr "Imprimindo páxina(s) de proba..."
+
+#: ../../harddrake/ui.pm_.c:39
+msgid "the list of alternative drivers for this sound card"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:63
#, fuzzy
msgid "/_Quit"
msgstr "Saír"
-#: ../../harddrake/ui.pm_.c:61 ../../harddrake/ui.pm_.c:62
-#: ../../harddrake/ui.pm_.c:68 ../../standalone/logdrake_.c:110
+#: ../../harddrake/ui.pm_.c:64 ../../harddrake/ui.pm_.c:65
+#: ../../harddrake/ui.pm_.c:71 ../../standalone/logdrake_.c:110
msgid "/_Help"
msgstr "/A_xuda"
-#: ../../harddrake/ui.pm_.c:62
+#: ../../harddrake/ui.pm_.c:65
#, fuzzy
msgid "/_Help..."
msgstr "/A_xuda"
-#: ../../harddrake/ui.pm_.c:63
+#: ../../harddrake/ui.pm_.c:66
msgid "Harddrake help"
msgstr ""
-#: ../../harddrake/ui.pm_.c:64
+#: ../../harddrake/ui.pm_.c:67
msgid ""
"Description of the fields:\n"
"\n"
msgstr ""
-#: ../../harddrake/ui.pm_.c:68
+#: ../../harddrake/ui.pm_.c:71
#, fuzzy
msgid "/_About..."
msgstr "/Axuda/_Acerca..."
-#: ../../harddrake/ui.pm_.c:69
+#: ../../harddrake/ui.pm_.c:72
msgid "About Harddrake"
msgstr ""
-#: ../../harddrake/ui.pm_.c:70
+#: ../../harddrake/ui.pm_.c:73
msgid ""
"This is HardDrake, a Mandrake hardware configuration tool.\n"
"Version:"
msgstr ""
-#: ../../harddrake/ui.pm_.c:71
+#: ../../harddrake/ui.pm_.c:74
#, fuzzy
msgid "Author:"
msgstr "Autodetección"
-#: ../../harddrake/ui.pm_.c:83
+#: ../../harddrake/ui.pm_.c:86
#, fuzzy
msgid "Harddrake2 version "
msgstr "Detectar discos duros"
-#: ../../harddrake/ui.pm_.c:91
+#: ../../harddrake/ui.pm_.c:103
#, fuzzy
msgid "Detected hardware"
msgstr "Mire a información sobre o hardware"
-#: ../../harddrake/ui.pm_.c:92
+#: ../../harddrake/ui.pm_.c:105
#, fuzzy
-msgid "Configure module"
-msgstr "Configurar o rato"
+msgid "Information"
+msgstr "Mostrar información"
-#: ../../harddrake/ui.pm_.c:92
+#: ../../harddrake/ui.pm_.c:108
#, fuzzy
-msgid "Informations"
-msgstr "Mostrar información"
+msgid "Configure module"
+msgstr "Configurar o rato"
-#: ../../harddrake/ui.pm_.c:92
+#: ../../harddrake/ui.pm_.c:109
msgid "Run config tool"
msgstr ""
-#: ../../harddrake/ui.pm_.c:96
+#: ../../harddrake/ui.pm_.c:113
#, fuzzy
msgid "Detection in progress"
msgstr "detectado no porto %s"
-#: ../../harddrake/ui.pm_.c:96 ../../interactive.pm_.c:388
+#: ../../harddrake/ui.pm_.c:113 ../../interactive.pm_.c:391
msgid "Please wait"
msgstr "Agarde, por favor"
-#: ../../harddrake/ui.pm_.c:139
+#: ../../harddrake/ui.pm_.c:156
msgid "primary"
msgstr ""
-#: ../../harddrake/ui.pm_.c:139
+#: ../../harddrake/ui.pm_.c:156
#, fuzzy
msgid "secondary"
msgstr "%d segundos"
-#: ../../harddrake/ui.pm_.c:176
+#: ../../harddrake/ui.pm_.c:197
msgid "You can configure each parameter of the module here."
msgstr ""
-#: ../../harddrake/ui.pm_.c:192
+#: ../../harddrake/ui.pm_.c:213
#, fuzzy, c-format
msgid "Running \"%s\" ..."
msgstr "Lendo a base de datos de controladores de CUPS..."
@@ -2662,16 +2753,16 @@ msgstr ""
#: ../../harddrake/v4l.pm_.c:213
#, fuzzy
-msgid "Card model :"
+msgid "Card model:"
msgstr "Memoria da tarxeta (DMA)"
#: ../../harddrake/v4l.pm_.c:214
#, fuzzy
-msgid "Tuner type :"
+msgid "Tuner type:"
msgstr "Mudar o tipo de partición"
#: ../../harddrake/v4l.pm_.c:215
-msgid "Number of capture buffers :"
+msgid "Number of capture buffers:"
msgstr ""
#: ../../harddrake/v4l.pm_.c:215
@@ -2680,11 +2771,11 @@ msgstr ""
#: ../../harddrake/v4l.pm_.c:217
#, fuzzy
-msgid "PLL setting :"
+msgid "PLL setting:"
msgstr "Formatando"
#: ../../harddrake/v4l.pm_.c:218
-msgid "Radio support :"
+msgid "Radio support:"
msgstr ""
#: ../../harddrake/v4l.pm_.c:218
@@ -2696,22 +2787,22 @@ msgid ""
"GNU/Linux is a multiuser system, and this means that each user can have his\n"
"own preferences, his own files and so on. You can read the ``User Guide''\n"
"to learn more. But unlike \"root\", which is the administrator, the users\n"
-"you will add here will not be entitled to change anything except their own\n"
-"files and their own configuration. You will have to create at least one\n"
-"regular user for yourself. That account is where you should log in for\n"
-"routine use. Although it is very practical to log in as \"root\" everyday,\n"
-"it may also be very dangerous! The slightest mistake could mean that your\n"
-"system would not work any more. If you make a serious mistake as a regular\n"
-"user, you may only lose some information, but not the entire system.\n"
+"you add here will not be entitled to change anything except their own files\n"
+"and their own configuration. You will have to create at least one regular\n"
+"user for yourself. That account is where you should log in for routine use.\n"
+"Although it is very practical to log in as \"root\" everyday, it may also\n"
+"be very dangerous! The slightest mistake could mean that your system would\n"
+"not work any more. If you make a serious mistake as a regular user, you may\n"
+"only lose some information, but not the entire system.\n"
"\n"
"First, you have to enter your real name. This is not mandatory, of course -\n"
"as you can actually enter whatever you want. DrakX will then take the first\n"
"word you have entered in the box and will bring it over to the \"User\n"
"name\". This is the name this particular user will use to log onto the\n"
"system. You can change it. You then have to enter a password here. A\n"
-"non-privileged (regular) user's password is not as crucial as \"root\"' one\n"
-"from a security point of view, but that is no reason to neglect it: after\n"
-"all, your files are at risk.\n"
+"non-privileged (regular) user's password is not as crucial as the \"root\"'\n"
+"one from a security point of view, but that is no reason to neglect it:\n"
+"after all, your files are at risk.\n"
"\n"
"If you click on \"Accept user\", you can then add as many as you want. Add\n"
"a user for each one of your friends: your father or your sister, for\n"
@@ -2790,7 +2881,7 @@ msgid ""
"to have a graphical workstation!\n"
"\n"
"Moving the mouse cursor over a group name will display a short explanatory\n"
-"text about that group. If you deselect all groups when performing a regular\n"
+"text about that group. If you unselect all groups when performing a regular\n"
"installation (by opposition to an upgrade), a dialog will pop up proposing\n"
"different options for a minimal installation:\n"
"\n"
@@ -2816,10 +2907,10 @@ msgstr ""
#: ../../help.pm_.c:128
msgid ""
-"Finally, depending on whether or not you selected individual packages, you\n"
-"will be presented a tree containing all packages classified by groups and\n"
-"subgroups. While browsing the tree, you can select entire groups,\n"
-"subgroups, or individual packages.\n"
+"Finally, depending on whether or not you chose to be able to select\n"
+"individual packages, you will be presented a tree containing all packages\n"
+"classified by groups and subgroups. While browsing the tree, you can select\n"
+"entire groups, subgroups, or individual packages.\n"
"\n"
"Whenever you select a package on the tree, a description appears on the\n"
"right. When your selection is finished, click the \"Install\" button which\n"
@@ -2854,11 +2945,11 @@ msgstr ""
#: ../../help.pm_.c:164
msgid ""
-"You are now proposed to set up your Internet/network connection. If you\n"
-"wish to connect your computer to the Internet or to a local network, click\n"
-"\"OK\". The autodetection of network devices and modem will be launched. If\n"
-"this detection fails, uncheck the \"Use auto detection\" box next time. You\n"
-"may also choose not to configure the network, or do it later; in that case,\n"
+"You are now able to set up your Internet/network connection. If you wish to\n"
+"connect your computer to the Internet or to a local network, click \"OK\".\n"
+"The autodetection of network devices and modem will be launched. If this\n"
+"detection fails, uncheck the \"Use auto detection\" box next time. You may\n"
+"also choose not to configure the network, or do it later; in that case,\n"
"simply click the \"Cancel\" button.\n"
"\n"
"Available connections are: traditional modem, ISDN modem, ADSL connection,\n"
@@ -2907,7 +2998,7 @@ msgstr ""
msgid ""
"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
"local time according to the time zone you selected. It is however possible\n"
-"to deactivate this by deselecting \"Hardware clock set to GMT\" so that the\n"
+"to deactivate this by unselecting \"Hardware clock set to GMT\" so that the\n"
"hardware clock is the same as the system clock. This is useful when the\n"
"machine is hosting another operating system like Windows.\n"
"\n"
@@ -2938,24 +3029,12 @@ msgid ""
"If you can see the message during the test, and answer \"Yes\", then DrakX\n"
"will proceed to the next step. If you cannot see the message, it simply\n"
"means that the configuration was wrong and the test will automatically end\n"
-"after 10 seconds, restoring the screen."
-msgstr ""
-
-#: ../../help.pm_.c:237
-msgid ""
-"The first time you try the X configuration, you may not be very satisfied\n"
-"with its display (screen is too small, shifted left or right...). Hence,\n"
-"even if X starts up correctly, DrakX then asks you if the configuration\n"
-"suits you. It will also propose to change it by displaying a list of valid\n"
-"modes it could find, asking you to select one.\n"
-"\n"
-"As a last resort, if you still cannot get X to work, choose \"Change\n"
-"graphics card\", select \"Unlisted card\", and when prompted on which\n"
-"server, choose \"FBDev\". This is a failsafe option which works with any\n"
-"modern graphics card. Then choose \"Test again\" to be sure."
+"after 10 seconds, restoring the screen. Refer then to the Video\n"
+"configuration section of the user guide for more information on how to\n"
+"configure your display."
msgstr ""
-#: ../../help.pm_.c:249
+#: ../../help.pm_.c:239
msgid ""
"Finally, you will be asked whether you want to see the graphical interface\n"
"at boot. Note this question will be asked even if you chose not to test the\n"
@@ -2964,7 +3043,7 @@ msgid ""
"configured."
msgstr ""
-#: ../../help.pm_.c:256
+#: ../../help.pm_.c:246
msgid ""
"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
@@ -2984,13 +3063,13 @@ msgid ""
"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
"password, or any other reason.\n"
"\n"
-"When you click on this step, you will be asked to enter a disk inside the\n"
-"drive. The floppy disk you will insert must be empty or contain data which\n"
-"you do not need. You will not have to format it since DrakX will rewrite\n"
-"the whole disk."
+"If you say \"Yes\", you will be asked to enter a disk inside the drive. The\n"
+"floppy disk you will insert must be empty or contain data which you do not\n"
+"need. You will not have to format it since DrakX will rewrite the whole\n"
+"disk."
msgstr ""
-#: ../../help.pm_.c:280
+#: ../../help.pm_.c:270
#, fuzzy
msgid ""
"At this point, you need to choose where you want to install the Mandrake\n"
@@ -3024,7 +3103,9 @@ msgid ""
"\n"
" * \"Use existing partition\": the wizard has detected one or more existing\n"
"Linux partitions on your hard drive. If you want to use them, choose this\n"
-"option;\n"
+"option. You will then be asked to choose the mount points associated to\n"
+"each of the partitions. The legacy mount points are selected by default,\n"
+"and you should generally keep them.\n"
"\n"
" * \"Use the free space on the Windows; partition\": if Microsoft Windows\n"
"is installed on your hard drive and takes all the space available on it,\n"
@@ -3057,7 +3138,9 @@ msgid ""
" * \"Expert mode\": choose this option if you want to manually partition\n"
"your hard drive. Be careful - it is a powerful but dangerous choice. You\n"
"can very easily lose all your data. Hence, do not choose this unless you\n"
-"know what you are doing."
+"know what you are doing. To know how do use the DiskDrake utility used\n"
+"here, refer to the section ``Managing Your Partitions'' of the ````User\n"
+"Guide''''"
msgstr ""
"Neste punto, ten que escoller onde quere instalar o sistema operativo\n"
"Mandrake Linux no disco duro. Se está baleiro, ou se hai outro sistema\n"
@@ -3124,7 +3207,7 @@ msgstr ""
"datos moi facilmente. Polo tanto,\n"
" non a escolla a menos que saiba o que está a facer."
-#: ../../help.pm_.c:347
+#: ../../help.pm_.c:341
msgid ""
"There you are. Installation is now complete and your GNU/Linux system is\n"
"ready to use. Just click \"OK\" to reboot the system. You can start\n"
@@ -3157,7 +3240,7 @@ msgid ""
"\"mformat a:\")"
msgstr ""
-#: ../../help.pm_.c:378
+#: ../../help.pm_.c:372
msgid ""
"Any partitions that have been newly defined must be formatted for use\n"
"(formatting means creating a filesystem).\n"
@@ -3185,7 +3268,7 @@ msgid ""
"for bad blocks on the disk."
msgstr ""
-#: ../../help.pm_.c:404
+#: ../../help.pm_.c:398
msgid ""
"Your new Mandrake Linux operating system is currently being installed.\n"
"Depending on the number of packages you will be installing and the speed of\n"
@@ -3195,12 +3278,12 @@ msgid ""
"Please be patient."
msgstr ""
-#: ../../help.pm_.c:412
+#: ../../help.pm_.c:406
msgid ""
"At the time you are installing Mandrake Linux, it is likely that some\n"
"packages have been updated since the initial release. Some bugs may have\n"
"been fixed, and security issues solved. To allow you to benefit from these\n"
-"updates, you are now proposed to download them from the Internet. Choose\n"
+"updates, you are now able to download them from the Internet. Choose\n"
"\"Yes\" if you have a working Internet connection, or \"No\" if you prefer\n"
"to install updated packages later.\n"
"\n"
@@ -3210,7 +3293,7 @@ msgid ""
"install the selected package(s), or \"Cancel\" to abort."
msgstr ""
-#: ../../help.pm_.c:425
+#: ../../help.pm_.c:419
msgid ""
"Before continuing, you should read carefully the terms of the license. It\n"
"covers the whole Mandrake Linux distribution, and if you do not agree with\n"
@@ -3219,19 +3302,19 @@ msgid ""
"\"Accept\" button."
msgstr ""
-#: ../../help.pm_.c:432
+#: ../../help.pm_.c:426
msgid ""
"At this point, it is time to choose the security level desired for the\n"
"machine. As a rule of thumb, the more exposed the machine is, and the more\n"
"the data stored in it is crucial, the higher the security level should be.\n"
"However, a higher security level is generally obtained at the expense of\n"
-"easiness of use. Refer to the \"msec\" chapter of the ``Reference Manual''\n"
-"to get more information about the meaning of these levels.\n"
+"ease of use. Refer to the \"msec\" chapter of the ``Reference Manual'' to\n"
+"get more information about the meaning of these levels.\n"
"\n"
"If you do not know what to choose, keep the default option."
msgstr ""
-#: ../../help.pm_.c:442
+#: ../../help.pm_.c:436
msgid ""
"At this point, you need to choose which partition(s) will be used for the\n"
"installation of your Mandrake Linux system. If partitions have already been\n"
@@ -3248,26 +3331,26 @@ msgid ""
" * \"Clear all\": this option deletes all partitions on the selected hard\n"
"drive;\n"
"\n"
-" * \"Auto allocate\": this option enables to automatically create \"Ext2\"\n"
-"and swap partitions in free space of your hard drive;\n"
+" * \"Auto allocate\": this option enables to automatically create ext3 and\n"
+"swap partitions in free space of your hard drive;\n"
"\n"
-" * \"More\": gives access to additional features:\n"
+"\"More\": gives access to additional features:\n"
"\n"
-" * \"Save partition table\": saves the partition table to a floppy.\n"
-"Useful for later partition-table recovery if necessary. It is strongly\n"
-"recommended to perform this step;\n"
+" * \"Save partition table\": saves the partition table to a floppy. Useful\n"
+"for later partition-table recovery if necessary. It is strongly recommended\n"
+"to perform this step;\n"
"\n"
-" * \"Restore partition table\": allows to restore a previously saved\n"
+" * \"Restore partition table\": allows to restore a previously saved\n"
"partition table from floppy disk;\n"
"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you\n"
-"can try to recover it using this option. Please be careful and remember\n"
-"that it can fail;\n"
+" * \"Rescue partition table\": if your partition table is damaged, you can\n"
+"try to recover it using this option. Please be careful and remember that it\n"
+"can fail;\n"
"\n"
-" * \"Reload partition table\": discards all changes and loads your\n"
-"initial partition table;\n"
+" * \"Reload partition table\": discards all changes and loads your initial\n"
+"partition table;\n"
"\n"
-" * \"Removable media automounting\": unchecking this option will force\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
"users to manually mount and unmount removable medias such as floppies and\n"
"CD-ROMs.\n"
"\n"
@@ -3295,7 +3378,7 @@ msgid ""
" * Ctrl-m to set the mount point.\n"
"\n"
"To get information about the different filesystem types available, please\n"
-"read the ext2fs chapter from the ``Reference Manual''.\n"
+"read the ext2FS chapter from the ``Reference Manual''.\n"
"\n"
"If you are installing on a PPC machine, you will want to create a small HFS\n"
"``bootstrap'' partition of at least 1MB, which will be used by the yaboot\n"
@@ -3304,7 +3387,7 @@ msgid ""
"emergency boot situations."
msgstr ""
-#: ../../help.pm_.c:513
+#: ../../help.pm_.c:507
msgid ""
"More than one Microsoft partition has been detected on your hard drive.\n"
"Please choose the one you want to resize in order to install your new\n"
@@ -3337,11 +3420,11 @@ msgid ""
"disk or partition is called \"C:\")."
msgstr ""
-#: ../../help.pm_.c:544
+#: ../../help.pm_.c:538
msgid "Please be patient. This operation can take several minutes."
msgstr "Por favor, sexa paciente. Esta operación pode levar varios minutos."
-#: ../../help.pm_.c:547
+#: ../../help.pm_.c:541
#, fuzzy
msgid ""
"DrakX now needs to know if you want to perform a default (\"Recommended\")\n"
@@ -3349,23 +3432,23 @@ msgid ""
"also choose to do a new install or an upgrade of an existing Mandrake Linux\n"
"system:\n"
"\n"
-" * \"Install\": completely wipes out the old system. In fact, depending on\n"
-"what currently holds your machine, you will be able to keep some old (Linux\n"
-"or other) partitions unchanged;\n"
+" * \"Install\": completely wipes out the old system, however, depending on\n"
+"what is currently installed on your machine, you may be able to keep some\n"
+"old partitions (Linux or otherwise) unchanged;\n"
"\n"
" * \"Upgrade\": this installation class allows to simply update the\n"
"packages currently installed on your Mandrake Linux system. It keeps the\n"
"current partitions of your hard drives as well as user configurations. All\n"
-"other configuration steps remain available with respect to plain\n"
+"other configuration steps remain available, similar to a normal\n"
"installation;\n"
"\n"
-" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
-"existing Mandrake Linux system while keeping all system configurations\n"
-"unchanged. Adding new packages to the current installation is also\n"
-"possible.\n"
+" * \"Upgrade Packages Only\": this new installation class allows you to\n"
+"upgrade an existing Mandrake Linux system while keeping all system\n"
+"configurations unchanged. Adding new packages to the current installation\n"
+"is also possible.\n"
"\n"
-"Upgrades should work fine for Mandrake Linux systems starting from \"8.1\"\n"
-"release.\n"
+"Upgrades should work fine on Mandrake Linux systems containing version\n"
+"\"8.1\" or later.\n"
"\n"
"Depending on your knowledge of GNU/Linux, select one of the following\n"
"choices:\n"
@@ -3374,11 +3457,11 @@ msgid ""
"operating system. The installation will be very easy and you will only be\n"
"asked a few questions;\n"
"\n"
-" * Expert: if you have a good knowledge of GNU/Linux, you can choose this\n"
-"installation class. The expert installation will allow you to perform a\n"
-"highly-customized installation. Answering some of the questions can be\n"
-"difficult if you do not have a good knowledge of GNU/Linux, so do not\n"
-"choose this unless you know what you are doing."
+" * Expert: if you have a good understanding of GNU/Linux, you may wish to\n"
+"perform a highly customized installation. Some of the decisions you will\n"
+"have to make may be difficult if you do not have good knowledge of\n"
+"GNU/Linux, so it is not recommended that those without a fair amount of\n"
+"experience select this installation class."
msgstr ""
"Escolla \"Instalar\" se non hai ningunha versión previa de Mandrake Linux\n"
"instalada ou se quere usar varios sistemas operativos.\n"
@@ -3414,23 +3497,28 @@ msgstr ""
"cońecemento de GNU/Linux. Polo tanto, non\n"
" escolla esta clase de instalación a menos que saiba o que está a facer."
-#: ../../help.pm_.c:584
+#: ../../help.pm_.c:578
msgid ""
"Normally, DrakX selects the right keyboard for you (depending on the\n"
-"language you have chosen) and you won't even see this step. However, you\n"
-"might not have a keyboard that corresponds exactly to your language: for\n"
-"example, if you are an English speaking Swiss person, you may still want\n"
-"your keyboard to be a Swiss keyboard. Or if you speak English but are\n"
-"located in Quebec, you may find yourself in the same situation. In both\n"
-"cases, you will have to go back to this installation step and select an\n"
-"appropriate keyboard from the list.\n"
+"language you have chosen). However, you might not have a keyboard that\n"
+"corresponds exactly to your language: for example, if you are an English\n"
+"speaking Swiss person, you may still want your keyboard to be a Swiss\n"
+"keyboard. Or if you speak English but are located in Quebec, you may find\n"
+"yourself in the same situation. In both cases, you will have to go back to\n"
+"this installation step and select an appropriate keyboard from the list.\n"
"\n"
"Click on the \"More\" button to be presented with the complete list of\n"
-"supported keyboards."
+"supported keyboards.\n"
+"\n"
+"If you choose a keyboard layout based on a non-latin alphabet, you will be\n"
+"asked on next dialog to choose the key binding that will switch the\n"
+"keyboard layout between the latin and non latin layouts."
msgstr ""
-#: ../../help.pm_.c:597
+#: ../../help.pm_.c:594
msgid ""
+"The first step is to choose your preferred language.\n"
+"\n"
"Please choose your preferred language for installation and system usage.\n"
"\n"
"Clicking on the \"Advanced\" button will allow you to select other\n"
@@ -3444,7 +3532,7 @@ msgid ""
"additional locales, click the \"OK\" button to continue."
msgstr ""
-#: ../../help.pm_.c:610
+#: ../../help.pm_.c:609
msgid ""
"DrakX generally detects the number of buttons your mouse has. If not, it\n"
"assumes you have a two-button mouse and will set it up for third-button\n"
@@ -3457,10 +3545,17 @@ msgid ""
"If you choose a mouse other than the default, a test screen will be\n"
"displayed. Use the buttons and wheel to verify that the settings are\n"
"correct. If the mouse is not working well, press the space bar or [Return]\n"
-"to \"Cancel\" and choose again."
+"to \"Cancel\" and choose again.\n"
+"\n"
+"Wheel mouses are sometimes not automatically detected. You will need to\n"
+"manually select it in the list. Be sure to select the one corresponding to\n"
+"the correct port it is attached to. After you have pressed the \"OK\"\n"
+"button, a mouse image is displayed. You then need to move the wheel of your\n"
+"mouse to activate it correctly. Then test all buttons and movements are\n"
+"correct."
msgstr ""
-#: ../../help.pm_.c:624
+#: ../../help.pm_.c:630
#, fuzzy
msgid ""
"Please select the correct port. For example, the \"COM1\" port under\n"
@@ -3469,7 +3564,7 @@ msgstr ""
"Seleccione o porto correcto. Por exemplo, o porto\n"
"COM1 en MS Windows chámase ttyS0 en GNU/Linux."
-#: ../../help.pm_.c:628
+#: ../../help.pm_.c:634
msgid ""
"This is the most crucial decision point for the security of your GNU/Linux\n"
"system: you have to enter the \"root\" password. \"root\" is the system\n"
@@ -3499,15 +3594,15 @@ msgid ""
"In Expert mode, you will be asked if you will be connecting to an\n"
"authentication server, like NIS or LDAP.\n"
"\n"
-"If your network uses the LDAP (or NIS) protocol for authentication, select\n"
-"\"LDAP\" (or \"NIS\") as authentication. If you do not know, ask your\n"
-"network administrator.\n"
+"If your network uses either of the LDAP, NIS, or PDC Windows Domain\n"
+"authentication services, select the appropriate one as \"authentication\".\n"
+"If you do not know, ask your network administrator.\n"
"\n"
"If your computer is not connected to any administrated network, you will\n"
"want to choose \"Local files\" for authentication."
msgstr ""
-#: ../../help.pm_.c:664
+#: ../../help.pm_.c:670
msgid ""
"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
@@ -3546,8 +3641,12 @@ msgid ""
"options. !!\n"
"\n"
"Clicking the \"Advanced\" button in this dialog will offer many advanced\n"
-"options, which are reserved to the expert user.\n"
-"\n"
+"options, which are reserved for the expert user."
+msgstr ""
+
+#: ../../help.pm_.c:710
+#, fuzzy
+msgid ""
"After you have configured the general bootloader parameters, the list of\n"
"boot options which will be available at boot time will be displayed.\n"
"\n"
@@ -3555,17 +3654,7 @@ msgid ""
"automatically be added to the boot menu. Here, you can choose to fine-tune\n"
"the existing options. Select an entry and click \"Modify\" to modify or\n"
"remove it; \"Add\" creates a new entry; and \"Done\" goes on to the next\n"
-"installation step."
-msgstr ""
-
-#: ../../help.pm_.c:713
-#, fuzzy
-msgid ""
-"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
-"either GNU/Linux or any other operating system present on your computer.\n"
-"Normally, these other operating systems are correctly detected and\n"
-"installed. If this is not the case, you can add an entry by hand in this\n"
-"screen. Be careful to choose the correct parameters.\n"
+"installation step.\n"
"\n"
"You may also not want to give access to these other operating systems to\n"
"anyone. In which case, you can delete the corresponding entries. But then,\n"
@@ -3632,18 +3721,18 @@ msgstr ""
#: ../../help.pm_.c:759
msgid ""
-"DrakX now detects any IDE device present in your computer. It will also\n"
-"scan for one or more PCI SCSI card(s) on your system. If a SCSI card is\n"
+"DrakX now detects any IDE devices present in your computer. It will also\n"
+"scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
"found, DrakX will automatically install the appropriate driver.\n"
"\n"
"Because hardware detection does not always detect a piece of hardware,\n"
"DrakX will ask you to confirm if a PCI SCSI card is present. Click \"Yes\"\n"
"if you know that there is a SCSI card installed in your machine. You will\n"
-"be presented a list of SCSI cards to choose from. Click \"No\" if you have\n"
-"no SCSI hardware. If you are unsure, you can check the list of hardware\n"
-"detected in your machine by selecting \"See hardware info\" and clicking\n"
-"\"OK\". Examine the list of hardware and then click on the \"OK\" button to\n"
-"return to the SCSI interface question.\n"
+"be presented with a list of SCSI cards to choose from. Click \"No\" if you\n"
+"have no SCSI hardware. If you are unsure, you can check the list of\n"
+"hardware detected in your machine by selecting \"See hardware info\" and\n"
+"clicking \"OK\". Examine the list of hardware and then click on the \"OK\"\n"
+"button to return to the SCSI interface question.\n"
"\n"
"If you have to manually specify your adapter, DrakX will ask if you want to\n"
"specify options for it. You should allow DrakX to probe the hardware for\n"
@@ -3760,7 +3849,9 @@ msgid ""
"order to configure the clock according to the time zone you are in;\n"
"\n"
" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
-"configuration wizard;\n"
+"configuration wizard. Consult the corresponding chapter of the ``User\n"
+"Guide'' for more information on how to setup a new printer. The interface\n"
+"presented there is similar to the one used during installation;\n"
"\n"
" * \"Sound card\": if a sound card is detected on your system, it is\n"
"displayed here. No modification possible at installation time;\n"
@@ -3773,14 +3864,14 @@ msgid ""
"associated with it."
msgstr ""
-#: ../../help.pm_.c:894
+#: ../../help.pm_.c:896
msgid ""
"Choose the hard drive you want to erase in order to install your new\n"
"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
"and will not be recoverable!"
msgstr ""
-#: ../../help.pm_.c:899
+#: ../../help.pm_.c:901
msgid ""
"Click on \"OK\" if you want to delete all data and partitions present on\n"
"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
@@ -3804,7 +3895,7 @@ msgstr ""
msgid "You must also format %s"
msgstr ""
-#: ../../install_any.pm_.c:418
+#: ../../install_any.pm_.c:423
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -3819,20 +3910,29 @@ msgid ""
"Do you really want to install these servers?\n"
msgstr ""
-#: ../../install_any.pm_.c:453
+#: ../../install_any.pm_.c:441
+#, c-format
+msgid ""
+"The following packages will be removed to allow upgrading your system: %s\n"
+"\n"
+"\n"
+"Do you really want to remove these packages?\n"
+msgstr ""
+
+#: ../../install_any.pm_.c:471
msgid "Can't use broadcast with no NIS domain"
msgstr ""
-#: ../../install_any.pm_.c:841
+#: ../../install_any.pm_.c:862
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Insira un disquete formatado con FAT na unidade %s"
-#: ../../install_any.pm_.c:845
+#: ../../install_any.pm_.c:866
msgid "This floppy is not FAT formatted"
msgstr ""
-#: ../../install_any.pm_.c:857
+#: ../../install_any.pm_.c:878
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -3840,11 +3940,19 @@ msgstr ""
"Para usar esta selección de paquetes gardada, arrinque a instalación con "
"``linux defcfg=floppy''"
-#: ../../install_any.pm_.c:880 ../../partition_table.pm_.c:771
+#: ../../install_any.pm_.c:901 ../../partition_table.pm_.c:767
#, c-format
msgid "Error reading file %s"
msgstr "Erro lendo o ficheiro %s"
+#: ../../install_any.pm_.c:1023
+msgid ""
+"An error occurred - no valid devices were found on which to create new "
+"filesystems. Please check your hardware for the cause of this problem"
+msgstr ""
+"Ocorreu un erro - non se atopou ningún dispositivo válido para crear novos "
+"sistemas de ficheiros. Verifique o seu equipo para ver a razón deste problema"
+
#: ../../install_interactive.pm_.c:23
#, c-format
msgid ""
@@ -3878,60 +3986,60 @@ msgstr ""
"\n"
"żDesexa continuar de calquera xeito?"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:168
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:169
#, fuzzy
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "Debe ter unha partición de intercambio"
-#: ../../install_interactive.pm_.c:91
+#: ../../install_interactive.pm_.c:92
msgid "Use free space"
msgstr "Usar espacio libre"
-#: ../../install_interactive.pm_.c:93
+#: ../../install_interactive.pm_.c:94
msgid "Not enough free space to allocate new partitions"
msgstr "Non hai espacio libre dabondo para asignar novas particións"
-#: ../../install_interactive.pm_.c:101
+#: ../../install_interactive.pm_.c:102
msgid "Use existing partitions"
msgstr "Usar partición existente"
-#: ../../install_interactive.pm_.c:103
+#: ../../install_interactive.pm_.c:104
msgid "There is no existing partition to use"
msgstr "Non hai ningunha partición existente para usar"
-#: ../../install_interactive.pm_.c:110
+#: ../../install_interactive.pm_.c:111
msgid "Use the Windows partition for loopback"
msgstr "Usar a partición de Windows para loopback"
-#: ../../install_interactive.pm_.c:113
+#: ../../install_interactive.pm_.c:114
msgid "Which partition do you want to use for Linux4Win?"
msgstr "żQue partición desexa usar para Linux4Win?"
-#: ../../install_interactive.pm_.c:115
+#: ../../install_interactive.pm_.c:116
msgid "Choose the sizes"
msgstr "Escolla os tamańos"
-#: ../../install_interactive.pm_.c:116
+#: ../../install_interactive.pm_.c:117
msgid "Root partition size in MB: "
msgstr "Tamańo da partición raíz en MB: "
-#: ../../install_interactive.pm_.c:117
+#: ../../install_interactive.pm_.c:118
msgid "Swap partition size in MB: "
msgstr "Tamańo da partición de intercambio en MB: "
-#: ../../install_interactive.pm_.c:126
+#: ../../install_interactive.pm_.c:128
msgid "Use the free space on the Windows partition"
msgstr "Usar o espacio libre da partición de Windows"
-#: ../../install_interactive.pm_.c:129
+#: ../../install_interactive.pm_.c:131
msgid "Which partition do you want to resize?"
msgstr "żQue partición desexa redimensionar?"
-#: ../../install_interactive.pm_.c:131
+#: ../../install_interactive.pm_.c:133
msgid "Resizing Windows partition"
msgstr "Calculando os límites do sistema de ficheiros de Windows"
-#: ../../install_interactive.pm_.c:134
+#: ../../install_interactive.pm_.c:136
#, c-format
msgid ""
"The FAT resizer is unable to handle your partition, \n"
@@ -3940,7 +4048,7 @@ msgstr ""
"O redimensionador de FAT non é capaz de manexar a súa partición,\n"
"ocorreu o seguinte erro: %s"
-#: ../../install_interactive.pm_.c:137
+#: ../../install_interactive.pm_.c:139
msgid ""
"Your Windows partition is too fragmented. Please reboot your computer under "
"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
@@ -3949,7 +4057,7 @@ msgstr ""
"A partición de Windows está demasiado fragmentada, execute primeiro o "
"``defrag''"
-#: ../../install_interactive.pm_.c:138
+#: ../../install_interactive.pm_.c:140
#, fuzzy
msgid ""
"WARNING!\n"
@@ -3970,21 +4078,21 @@ msgstr ""
"Tamén é aconsellable facer unha copia de seguridade dos seus datos.\n"
"Cando estea seguro, prema Aceptar."
-#: ../../install_interactive.pm_.c:148
+#: ../../install_interactive.pm_.c:150
msgid "Which size do you want to keep for Windows on"
msgstr "żQue tamańo desexa manter para o Windows en"
-#: ../../install_interactive.pm_.c:149
+#: ../../install_interactive.pm_.c:151
#, c-format
msgid "partition %s"
msgstr "partición %s"
-#: ../../install_interactive.pm_.c:156
+#: ../../install_interactive.pm_.c:158
#, c-format
msgid "FAT resizing failed: %s"
msgstr "O redimensionamento da FAT fallou: %s"
-#: ../../install_interactive.pm_.c:171
+#: ../../install_interactive.pm_.c:173
msgid ""
"There is no FAT partition to resize or to use as loopback (or not enough "
"space left)"
@@ -3992,34 +4100,34 @@ msgstr ""
"Non hai particións FAT para redimensionar ou para usar como loopback (ou non "
"hai espacio libre dabondo)"
-#: ../../install_interactive.pm_.c:177
+#: ../../install_interactive.pm_.c:179
msgid "Erase entire disk"
msgstr "Borrar o disco completo"
-#: ../../install_interactive.pm_.c:177
+#: ../../install_interactive.pm_.c:179
msgid "Remove Windows(TM)"
msgstr "Borrar Windows(TM)"
-#: ../../install_interactive.pm_.c:180
+#: ../../install_interactive.pm_.c:182
msgid "You have more than one hard drive, which one do you install linux on?"
msgstr ""
"Ten máis dunha unidade de disco duro, żen cal delas desexa instalar linux?"
-#: ../../install_interactive.pm_.c:183
+#: ../../install_interactive.pm_.c:185
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr ""
"Perderanse TODAS as particións existentes e os seus datos na unidade %s"
-#: ../../install_interactive.pm_.c:191
+#: ../../install_interactive.pm_.c:193
msgid "Custom disk partitioning"
msgstr "Particionamento de disco personalizado"
-#: ../../install_interactive.pm_.c:195
+#: ../../install_interactive.pm_.c:197
msgid "Use fdisk"
msgstr "Usar fdisk"
-#: ../../install_interactive.pm_.c:198
+#: ../../install_interactive.pm_.c:200
#, c-format
msgid ""
"You can now partition %s.\n"
@@ -4028,28 +4136,28 @@ msgstr ""
"Pode agora particionar %s.\n"
"Cando remate, non esqueza gravar usando `w'"
-#: ../../install_interactive.pm_.c:227
+#: ../../install_interactive.pm_.c:229
msgid "You don't have enough free space on your Windows partition"
msgstr "Non ten espacio libre dabondo na partición de Windows"
-#: ../../install_interactive.pm_.c:243
+#: ../../install_interactive.pm_.c:245
msgid "I can't find any room for installing"
msgstr "Non se pode atopar espacio para a instalación"
-#: ../../install_interactive.pm_.c:246
+#: ../../install_interactive.pm_.c:248
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr "O axudante de particionamento do DrakX atopou as seguintes solucións:"
-#: ../../install_interactive.pm_.c:250
+#: ../../install_interactive.pm_.c:252
#, c-format
msgid "Partitioning failed: %s"
msgstr "O particionamento fallou: %s"
-#: ../../install_interactive.pm_.c:260
+#: ../../install_interactive.pm_.c:262
msgid "Bringing up the network"
msgstr "Activando a rede"
-#: ../../install_interactive.pm_.c:265
+#: ../../install_interactive.pm_.c:267
msgid "Bringing down the network"
msgstr "Desactivando a rede"
@@ -4061,12 +4169,12 @@ msgstr ""
"Ocorreu un erro, e o programa non sabe como manexalo de\n"
"maneira limpa. Continúe ó seu propio risco."
-#: ../../install_steps.pm_.c:210
+#: ../../install_steps.pm_.c:211
#, c-format
msgid "Duplicate mount point %s"
msgstr "Punto de montaxe %s duplicado"
-#: ../../install_steps.pm_.c:379
+#: ../../install_steps.pm_.c:380
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -4078,12 +4186,12 @@ msgstr ""
"Comprobe o cdrom nun ordenador xa instalado usando \"rpm -qpl Mandrake/RPMS/"
"*.rpm\"\n"
-#: ../../install_steps.pm_.c:451
+#: ../../install_steps.pm_.c:452
#, c-format
msgid "Welcome to %s"
msgstr "Benvido a %s"
-#: ../../install_steps.pm_.c:530 ../../install_steps.pm_.c:770
+#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:772
msgid "No floppy drive available"
msgstr "Ningunha disqueteira dispońible"
@@ -4114,71 +4222,71 @@ msgstr "Clase de instalación"
msgid "Please choose one of the following classes of installation:"
msgstr "Escolla unha das seguintes clases de instalación:"
-#: ../../install_steps_gtk.pm_.c:243 ../../install_steps_interactive.pm_.c:694
+#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:678
msgid "Package Group Selection"
msgstr "Selección dos grupos de paquetes"
-#: ../../install_steps_gtk.pm_.c:276 ../../install_steps_interactive.pm_.c:709
+#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:693
msgid "Individual package selection"
msgstr "Selección individual de paquetes"
-#: ../../install_steps_gtk.pm_.c:299 ../../install_steps_interactive.pm_.c:633
+#: ../../install_steps_gtk.pm_.c:293 ../../install_steps_interactive.pm_.c:617
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Tamańo total: %d / %d MB"
-#: ../../install_steps_gtk.pm_.c:341
+#: ../../install_steps_gtk.pm_.c:335
msgid "Bad package"
msgstr "Paquete erróneo"
-#: ../../install_steps_gtk.pm_.c:342
+#: ../../install_steps_gtk.pm_.c:336
#, c-format
msgid "Name: %s\n"
msgstr "Nome: %s\n"
-#: ../../install_steps_gtk.pm_.c:343
+#: ../../install_steps_gtk.pm_.c:337
#, c-format
msgid "Version: %s\n"
msgstr "Versión: %s\n"
-#: ../../install_steps_gtk.pm_.c:344
+#: ../../install_steps_gtk.pm_.c:338
#, c-format
msgid "Size: %d KB\n"
msgstr "Tamańo: %d KB\n"
-#: ../../install_steps_gtk.pm_.c:345
+#: ../../install_steps_gtk.pm_.c:339
#, c-format
msgid "Importance: %s\n"
msgstr "Importancia: %s\n"
-#: ../../install_steps_gtk.pm_.c:367
+#: ../../install_steps_gtk.pm_.c:361
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr ""
"Non pode seleccionar este paquete xa que non hai espacio dabondo para "
"instalalo"
-#: ../../install_steps_gtk.pm_.c:372
+#: ../../install_steps_gtk.pm_.c:366
msgid "The following packages are going to be installed"
msgstr "Vanse instalar os seguintes paquetes"
-#: ../../install_steps_gtk.pm_.c:373
+#: ../../install_steps_gtk.pm_.c:367
msgid "The following packages are going to be removed"
msgstr "Vanse eliminar os seguintes paquetes"
-#: ../../install_steps_gtk.pm_.c:385
+#: ../../install_steps_gtk.pm_.c:379
msgid "You can't select/unselect this package"
msgstr "Non pode seleccionar/deseleccionar este paquete"
-#: ../../install_steps_gtk.pm_.c:397
+#: ../../install_steps_gtk.pm_.c:391
msgid "This is a mandatory package, it can't be unselected"
msgstr "Este é un paquete obrigatorio, non se pode deseleccionar"
-#: ../../install_steps_gtk.pm_.c:399
+#: ../../install_steps_gtk.pm_.c:393
msgid "You can't unselect this package. It is already installed"
msgstr "Non pode deseleccionar este paquete. Xa está instalado"
-#: ../../install_steps_gtk.pm_.c:402
+#: ../../install_steps_gtk.pm_.c:396
msgid ""
"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
@@ -4186,77 +4294,77 @@ msgstr ""
"Este paquete ten que ser actualizado\n"
"żEstá seguro de que quere deseleccionalo?"
-#: ../../install_steps_gtk.pm_.c:405
+#: ../../install_steps_gtk.pm_.c:399
msgid "You can't unselect this package. It must be upgraded"
msgstr "Non pode deseleccionar este paquete. Ten que ser actualizado"
-#: ../../install_steps_gtk.pm_.c:410
+#: ../../install_steps_gtk.pm_.c:404
msgid "Show automatically selected packages"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:411 ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_gtk.pm_.c:405 ../../install_steps_interactive.pm_.c:255
#: ../../install_steps_interactive.pm_.c:259
-#: ../../standalone/drakbackup_.c:3600
+#: ../../standalone/drakbackup_.c:4257
msgid "Install"
msgstr "Instalar"
-#: ../../install_steps_gtk.pm_.c:414
+#: ../../install_steps_gtk.pm_.c:408
#, fuzzy
msgid "Load/Save on floppy"
msgstr "Gardar nun disquete"
-#: ../../install_steps_gtk.pm_.c:415
+#: ../../install_steps_gtk.pm_.c:409
#, fuzzy
msgid "Updating package selection"
msgstr "Gardar a selección de paquetes"
-#: ../../install_steps_gtk.pm_.c:420
+#: ../../install_steps_gtk.pm_.c:414
#, fuzzy
msgid "Minimal install"
msgstr "Desinstalar"
-#: ../../install_steps_gtk.pm_.c:435 ../../install_steps_interactive.pm_.c:538
+#: ../../install_steps_gtk.pm_.c:429 ../../install_steps_interactive.pm_.c:522
msgid "Choose the packages you want to install"
msgstr "Escolla os paquetes que desexa instalar"
-#: ../../install_steps_gtk.pm_.c:451 ../../install_steps_interactive.pm_.c:778
+#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:762
msgid "Installing"
msgstr "Instalando"
-#: ../../install_steps_gtk.pm_.c:457
+#: ../../install_steps_gtk.pm_.c:451
msgid "Estimating"
msgstr "Estimando"
-#: ../../install_steps_gtk.pm_.c:464
+#: ../../install_steps_gtk.pm_.c:458
msgid "Time remaining "
msgstr "Tempo restante "
-#: ../../install_steps_gtk.pm_.c:476
+#: ../../install_steps_gtk.pm_.c:470
msgid "Please wait, preparing installation..."
msgstr "Por favor, agarde, preparando a instalación"
-#: ../../install_steps_gtk.pm_.c:560
+#: ../../install_steps_gtk.pm_.c:554
#, c-format
msgid "%d packages"
msgstr "%d paquetes"
-#: ../../install_steps_gtk.pm_.c:565
+#: ../../install_steps_gtk.pm_.c:559
#, c-format
msgid "Installing package %s"
msgstr "Instalando o paquete %s"
-#: ../../install_steps_gtk.pm_.c:602 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:802
+#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:786
#: ../../standalone/drakautoinst_.c:202
msgid "Accept"
msgstr "Aceptar"
-#: ../../install_steps_gtk.pm_.c:602 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:802
+#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:786
msgid "Refuse"
msgstr "Rexeitar"
-#: ../../install_steps_gtk.pm_.c:603 ../../install_steps_interactive.pm_.c:803
+#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:787
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4270,17 +4378,17 @@ msgstr ""
"Por favor, insira o Cd-Rom etiquetado \"%s\" na unidade e prema Aceptar. Se "
"non o ten, prema Cancelar para omitir a instalación deste Cd-Rom."
-#: ../../install_steps_gtk.pm_.c:617 ../../install_steps_gtk.pm_.c:621
-#: ../../install_steps_interactive.pm_.c:815
-#: ../../install_steps_interactive.pm_.c:819
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_gtk.pm_.c:615
+#: ../../install_steps_interactive.pm_.c:799
+#: ../../install_steps_interactive.pm_.c:803
msgid "Go on anyway?"
msgstr "żSeguir adiante?"
-#: ../../install_steps_gtk.pm_.c:617 ../../install_steps_interactive.pm_.c:815
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:799
msgid "There was an error ordering packages:"
msgstr "Houbo un erro ó ordenar os paquetes:"
-#: ../../install_steps_gtk.pm_.c:621 ../../install_steps_interactive.pm_.c:819
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:803
msgid "There was an error installing packages:"
msgstr "Houbo un erro ó instalar os paquetes:"
@@ -4455,7 +4563,7 @@ msgid "Are you sure you refuse the licence?"
msgstr ""
#: ../../install_steps_interactive.pm_.c:211
-#: ../../install_steps_interactive.pm_.c:1038
+#: ../../install_steps_interactive.pm_.c:1023
#: ../../standalone/keyboarddrake_.c:31
msgid "Keyboard"
msgstr "Teclado"
@@ -4507,11 +4615,11 @@ msgstr "Gardar a selección de paquetes"
msgid "Please choose the type of your mouse."
msgstr "Escolla o seu tipo de rato."
-#: ../../install_steps_interactive.pm_.c:281 ../../standalone/mousedrake_.c:59
+#: ../../install_steps_interactive.pm_.c:281 ../../standalone/mousedrake_.c:60
msgid "Mouse Port"
msgstr "Porto do rato"
-#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:61
msgid "Please choose on which serial port your mouse is connected to."
msgstr "Escolla o porto serie onde está conectado o seu rato."
@@ -4543,118 +4651,92 @@ msgstr "Configurando o IDE"
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:336
+#: ../../install_steps_interactive.pm_.c:338
msgid "No partition available"
msgstr "ningunha partición dispońible"
-#: ../../install_steps_interactive.pm_.c:339
+#: ../../install_steps_interactive.pm_.c:341
msgid "Scanning partitions to find mount points"
msgstr "Examinando as particións para atopar os puntos de montaxe"
-#: ../../install_steps_interactive.pm_.c:347
+#: ../../install_steps_interactive.pm_.c:349
msgid "Choose the mount points"
msgstr "Seleccione os puntos de montaxe"
-#: ../../install_steps_interactive.pm_.c:366
-#, c-format
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to not allow DrakX to modify the partition table.\n"
-"(the error is %s)\n"
-"\n"
-"Do you agree to loose all the partitions?\n"
-msgstr ""
-"Non se pode ler a táboa de particións, está demasiado deteriorada :(\n"
-"Pódese probar baleirando as particións erróneas (ĄPerderanse TODOS os "
-"datos!).\n"
-"A outra solución é impedir que o DrakX modifique a táboa de particións.\n"
-"(o erro é %s)\n"
-"\n"
-"żConcorda coa perda de tódalas particións?\n"
-
#: ../../install_steps_interactive.pm_.c:379
msgid ""
-"DiskDrake failed to read correctly the partition table.\n"
-"Continue at your own risk!"
-msgstr ""
-"O DiskDrake non puido ler correctamente a táboa de particións.\n"
-"ĄContinúe ó seu propio risco!"
-
-#: ../../install_steps_interactive.pm_.c:396
-msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:405
+#: ../../install_steps_interactive.pm_.c:388
#, fuzzy
msgid "No root partition found to perform an upgrade"
msgstr "Elixa as particións que desexa formatar"
-#: ../../install_steps_interactive.pm_.c:406
+#: ../../install_steps_interactive.pm_.c:389
msgid "Root Partition"
msgstr "Partición raíz"
-#: ../../install_steps_interactive.pm_.c:407
+#: ../../install_steps_interactive.pm_.c:390
msgid "What is the root partition (/) of your system?"
msgstr "żCal é a partición raíz (/) do seu sistema?"
-#: ../../install_steps_interactive.pm_.c:421
+#: ../../install_steps_interactive.pm_.c:404
msgid "You need to reboot for the partition table modifications to take place"
msgstr ""
"Necesita reiniciar o equipo para que a modificación da táboa\n"
"de particións se tome en conta"
-#: ../../install_steps_interactive.pm_.c:445
+#: ../../install_steps_interactive.pm_.c:428
msgid "Choose the partitions you want to format"
msgstr "Elixa as particións que desexa formatar"
-#: ../../install_steps_interactive.pm_.c:446
+#: ../../install_steps_interactive.pm_.c:429
msgid "Check bad blocks?"
msgstr "żComprobar os bloques erróneos?"
-#: ../../install_steps_interactive.pm_.c:473
+#: ../../install_steps_interactive.pm_.c:456
msgid "Formatting partitions"
msgstr "Formatando as particións"
-#: ../../install_steps_interactive.pm_.c:475
+#: ../../install_steps_interactive.pm_.c:458
#, c-format
msgid "Creating and formatting file %s"
msgstr "Creando e formatando o ficheiro %s"
-#: ../../install_steps_interactive.pm_.c:480
+#: ../../install_steps_interactive.pm_.c:463
#, c-format
msgid ""
"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
"you can loose data)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:482
+#: ../../install_steps_interactive.pm_.c:465
msgid "Not enough swap space to fulfill installation, please add some"
msgstr ""
"Non hai espacio de intercambio dabondo para finalizar a instalación,\n"
"por favor, engada algún"
-#: ../../install_steps_interactive.pm_.c:489
+#: ../../install_steps_interactive.pm_.c:472
#, fuzzy
msgid "Looking for available packages and rebuilding rpm database..."
msgstr "Buscando os paquetes dispońibles"
-#: ../../install_steps_interactive.pm_.c:490
+#: ../../install_steps_interactive.pm_.c:473
msgid "Looking for available packages..."
msgstr "Buscando os paquetes dispońibles"
-#: ../../install_steps_interactive.pm_.c:493
+#: ../../install_steps_interactive.pm_.c:476
#, fuzzy
msgid "Looking at packages already installed..."
msgstr "Non pode deseleccionar este paquete. Xa está instalado"
-#: ../../install_steps_interactive.pm_.c:497
+#: ../../install_steps_interactive.pm_.c:480
msgid "Finding packages to upgrade..."
msgstr "Atopando os paquetes para actualizar"
-#: ../../install_steps_interactive.pm_.c:515
+#: ../../install_steps_interactive.pm_.c:498
#, c-format
msgid ""
"Your system does not have enough space left for installation or upgrade (%d "
@@ -4663,65 +4745,65 @@ msgstr ""
"O seu sistema non ten espacio libre dabondo para a instalación ou "
"actualización (%d > %d)"
-#: ../../install_steps_interactive.pm_.c:550
+#: ../../install_steps_interactive.pm_.c:534
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:553
+#: ../../install_steps_interactive.pm_.c:537
#, fuzzy
msgid "Load from floppy"
msgstr "Restaurar a partir dun disquete"
-#: ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_interactive.pm_.c:539
#, fuzzy
msgid "Loading from floppy"
msgstr "Restaurar a partir dun disquete"
-#: ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_interactive.pm_.c:539
#, fuzzy
msgid "Package selection"
msgstr "Selección dos grupos de paquetes"
-#: ../../install_steps_interactive.pm_.c:560
+#: ../../install_steps_interactive.pm_.c:544
#, fuzzy
msgid "Insert a floppy containing package selection"
msgstr "Insira un disquete na unidade %s"
-#: ../../install_steps_interactive.pm_.c:572
+#: ../../install_steps_interactive.pm_.c:556
msgid "Save on floppy"
msgstr "Gardar nun disquete"
-#: ../../install_steps_interactive.pm_.c:646
+#: ../../install_steps_interactive.pm_.c:630
msgid "Selected size is larger than available space"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:660
+#: ../../install_steps_interactive.pm_.c:644
#, fuzzy
msgid "Type of install"
msgstr "Elixa o paquete a instalar"
-#: ../../install_steps_interactive.pm_.c:661
+#: ../../install_steps_interactive.pm_.c:645
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:664
+#: ../../install_steps_interactive.pm_.c:648
#, fuzzy
msgid "With X"
msgstr "Agarde"
-#: ../../install_steps_interactive.pm_.c:666
+#: ../../install_steps_interactive.pm_.c:650
msgid "With basic documentation (recommended!)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:667
+#: ../../install_steps_interactive.pm_.c:651
msgid "Truly minimal install (especially no urpmi)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:752
+#: ../../install_steps_interactive.pm_.c:736
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -4731,16 +4813,16 @@ msgstr ""
"Se non ten ningún deses CDs, prema Cancelar.\n"
"Se só faltan algúns dos CDs, desmárqueos, e prema Aceptar."
-#: ../../install_steps_interactive.pm_.c:757
+#: ../../install_steps_interactive.pm_.c:741
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "Cd-Rom etiquetado \"%s\""
-#: ../../install_steps_interactive.pm_.c:778
+#: ../../install_steps_interactive.pm_.c:762
msgid "Preparing installation"
msgstr "Preparando a instalación"
-#: ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:771
#, c-format
msgid ""
"Installing package %s\n"
@@ -4749,21 +4831,21 @@ msgstr ""
"Instalando o paquete %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:833
+#: ../../install_steps_interactive.pm_.c:817
msgid "Post-install configuration"
msgstr "Configuración trala instalación"
-#: ../../install_steps_interactive.pm_.c:839
+#: ../../install_steps_interactive.pm_.c:823
#, fuzzy, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Insira un disquete na unidade %s"
-#: ../../install_steps_interactive.pm_.c:845
+#: ../../install_steps_interactive.pm_.c:829
#, fuzzy, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Insira un disquete baleiro na unidade %s"
-#: ../../install_steps_interactive.pm_.c:865
+#: ../../install_steps_interactive.pm_.c:849
msgid ""
"You now have the opportunity to download encryption software.\n"
"\n"
@@ -4834,7 +4916,7 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:904
+#: ../../install_steps_interactive.pm_.c:888
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
"have been released after the distribution was released. They may\n"
@@ -4846,165 +4928,165 @@ msgid ""
"Do you want to install the updates ?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:919
+#: ../../install_steps_interactive.pm_.c:903
#, fuzzy
msgid ""
"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr "Contactando co espello para obter a lista dos paquetes dispońibles"
-#: ../../install_steps_interactive.pm_.c:924
+#: ../../install_steps_interactive.pm_.c:908
msgid "Choose a mirror from which to get the packages"
msgstr "Escoller un espello do que coller os paquetes"
-#: ../../install_steps_interactive.pm_.c:933
+#: ../../install_steps_interactive.pm_.c:917
msgid "Contacting the mirror to get the list of available packages..."
msgstr "Contactando co espello para obter a lista dos paquetes dispońibles"
-#: ../../install_steps_interactive.pm_.c:960
+#: ../../install_steps_interactive.pm_.c:945
msgid "Which is your timezone?"
msgstr "żCal é a súa zona horaria?"
-#: ../../install_steps_interactive.pm_.c:965
+#: ../../install_steps_interactive.pm_.c:950
#, fuzzy
msgid "Hardware clock set to GMT"
msgstr "żO reloxo interno do seu ordenador usa a hora GMT?"
-#: ../../install_steps_interactive.pm_.c:966
+#: ../../install_steps_interactive.pm_.c:951
msgid "Automatic time synchronization (using NTP)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:973
+#: ../../install_steps_interactive.pm_.c:958
#, fuzzy
msgid "NTP Server"
msgstr "Servidor NIS"
-#: ../../install_steps_interactive.pm_.c:1007
-#: ../../install_steps_interactive.pm_.c:1015
+#: ../../install_steps_interactive.pm_.c:992
+#: ../../install_steps_interactive.pm_.c:1000
msgid "Remote CUPS server"
msgstr "Servidor CUPS remoto"
-#: ../../install_steps_interactive.pm_.c:1008
+#: ../../install_steps_interactive.pm_.c:993
msgid "No printer"
msgstr "Sen impresora"
-#: ../../install_steps_interactive.pm_.c:1025
+#: ../../install_steps_interactive.pm_.c:1010
#, fuzzy
msgid "Do you have an ISA sound card?"
msgstr "żTen algunha outra?"
-#: ../../install_steps_interactive.pm_.c:1027
+#: ../../install_steps_interactive.pm_.c:1012
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1029
+#: ../../install_steps_interactive.pm_.c:1014
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1034 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1019 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Resume"
-#: ../../install_steps_interactive.pm_.c:1037
+#: ../../install_steps_interactive.pm_.c:1022
msgid "Mouse"
msgstr "Rato"
-#: ../../install_steps_interactive.pm_.c:1039
+#: ../../install_steps_interactive.pm_.c:1024
msgid "Timezone"
msgstr "Zona horaria"
-#: ../../install_steps_interactive.pm_.c:1040 ../../printerdrake.pm_.c:2728
-#: ../../printerdrake.pm_.c:2814
+#: ../../install_steps_interactive.pm_.c:1025 ../../printerdrake.pm_.c:2937
+#: ../../printerdrake.pm_.c:3026
msgid "Printer"
msgstr "Impresora"
-#: ../../install_steps_interactive.pm_.c:1042
+#: ../../install_steps_interactive.pm_.c:1027
msgid "ISDN card"
msgstr "Tarxeta RDSI"
-#: ../../install_steps_interactive.pm_.c:1045
-#: ../../install_steps_interactive.pm_.c:1047
+#: ../../install_steps_interactive.pm_.c:1030
+#: ../../install_steps_interactive.pm_.c:1032
msgid "Sound card"
msgstr "Tarxeta de son"
-#: ../../install_steps_interactive.pm_.c:1049
+#: ../../install_steps_interactive.pm_.c:1034
msgid "TV card"
msgstr "Tarxeta de TV"
-#: ../../install_steps_interactive.pm_.c:1089
-#: ../../install_steps_interactive.pm_.c:1114
-#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1074
+#: ../../install_steps_interactive.pm_.c:1099
+#: ../../install_steps_interactive.pm_.c:1103
msgid "LDAP"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1090
-#: ../../install_steps_interactive.pm_.c:1114
-#: ../../install_steps_interactive.pm_.c:1127
+#: ../../install_steps_interactive.pm_.c:1075
+#: ../../install_steps_interactive.pm_.c:1099
+#: ../../install_steps_interactive.pm_.c:1112
#, fuzzy
msgid "NIS"
msgstr "Usar NIS"
-#: ../../install_steps_interactive.pm_.c:1091
-#: ../../install_steps_interactive.pm_.c:1114
-#: ../../install_steps_interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1141
+#: ../../install_steps_interactive.pm_.c:1076
+#: ../../install_steps_interactive.pm_.c:1099
+#: ../../install_steps_interactive.pm_.c:1120
+#: ../../install_steps_interactive.pm_.c:1126
#, fuzzy
msgid "Windows Domain"
msgstr "Dominio NIS"
-#: ../../install_steps_interactive.pm_.c:1092
-#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1077
+#: ../../install_steps_interactive.pm_.c:1099
#, fuzzy
msgid "Local files"
msgstr "Impresora local"
-#: ../../install_steps_interactive.pm_.c:1101
-#: ../../install_steps_interactive.pm_.c:1102 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1086
+#: ../../install_steps_interactive.pm_.c:1087 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Contrasinal de root"
-#: ../../install_steps_interactive.pm_.c:1103
+#: ../../install_steps_interactive.pm_.c:1088
msgid "No password"
msgstr "Sen contrasinal"
-#: ../../install_steps_interactive.pm_.c:1108
+#: ../../install_steps_interactive.pm_.c:1093
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr ""
"Este contrasinal é demasiado simple (ten que ter polo menos %d caracteres)"
-#: ../../install_steps_interactive.pm_.c:1114 ../../network/modem.pm_.c:49
+#: ../../install_steps_interactive.pm_.c:1099 ../../network/modem.pm_.c:49
#: ../../standalone/drakconnect_.c:625 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Autenticación"
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1107
#, fuzzy
msgid "Authentication LDAP"
msgstr "Autenticación"
-#: ../../install_steps_interactive.pm_.c:1123
+#: ../../install_steps_interactive.pm_.c:1108
msgid "LDAP Base dn"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1124
+#: ../../install_steps_interactive.pm_.c:1109
#, fuzzy
msgid "LDAP Server"
msgstr "Servidor"
-#: ../../install_steps_interactive.pm_.c:1130
+#: ../../install_steps_interactive.pm_.c:1115
#, fuzzy
msgid "Authentication NIS"
msgstr "Autenticación NIS"
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1116
msgid "NIS Domain"
msgstr "Dominio NIS"
-#: ../../install_steps_interactive.pm_.c:1132
+#: ../../install_steps_interactive.pm_.c:1117
msgid "NIS Server"
msgstr "Servidor NIS"
-#: ../../install_steps_interactive.pm_.c:1138
+#: ../../install_steps_interactive.pm_.c:1123
msgid ""
"For this to work for a W2K PDC, you will probably need to have the admin "
"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
@@ -5020,21 +5102,21 @@ msgid ""
"good."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1140
+#: ../../install_steps_interactive.pm_.c:1125
#, fuzzy
msgid "Authentication Windows Domain"
msgstr "Autenticación"
-#: ../../install_steps_interactive.pm_.c:1142
+#: ../../install_steps_interactive.pm_.c:1127
#, fuzzy
msgid "Domain Admin User Name"
msgstr "Nome de dominio"
-#: ../../install_steps_interactive.pm_.c:1143
+#: ../../install_steps_interactive.pm_.c:1128
msgid "Domain Admin Password"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1178
+#: ../../install_steps_interactive.pm_.c:1163
#, fuzzy
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5063,19 +5145,19 @@ msgstr ""
"de Mandrake, facendo así moito máis fácil a recuperación no caso de fallo\n"
"grave do sistema. żDesexa crear un disco de arrinque para o seu sistema?"
-#: ../../install_steps_interactive.pm_.c:1194
+#: ../../install_steps_interactive.pm_.c:1179
msgid "First floppy drive"
msgstr "Primeira unidade de disquete"
-#: ../../install_steps_interactive.pm_.c:1195
+#: ../../install_steps_interactive.pm_.c:1180
msgid "Second floppy drive"
msgstr "Segunda unidade de disquete"
-#: ../../install_steps_interactive.pm_.c:1196 ../../printerdrake.pm_.c:2277
+#: ../../install_steps_interactive.pm_.c:1181 ../../printerdrake.pm_.c:2470
msgid "Skip"
msgstr "Omitir"
-#: ../../install_steps_interactive.pm_.c:1201
+#: ../../install_steps_interactive.pm_.c:1186
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5102,7 +5184,7 @@ msgstr ""
"grave do sistema. żDesexa crear un disco de arrinque para o seu sistema?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1207
+#: ../../install_steps_interactive.pm_.c:1192
msgid ""
"\n"
"\n"
@@ -5111,28 +5193,28 @@ msgid ""
"because XFS needs a very large driver)."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1215
+#: ../../install_steps_interactive.pm_.c:1200
msgid "Sorry, no floppy drive available"
msgstr "Desculpe, pero non hai ningunha disqueteira dispońible"
-#: ../../install_steps_interactive.pm_.c:1219
+#: ../../install_steps_interactive.pm_.c:1204
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "Escolla a disqueteira que quere usar para crear o disco de arranque"
-#: ../../install_steps_interactive.pm_.c:1223
+#: ../../install_steps_interactive.pm_.c:1208
#, fuzzy, c-format
msgid "Insert a floppy in %s"
msgstr "Insira un disquete na unidade %s"
-#: ../../install_steps_interactive.pm_.c:1226
+#: ../../install_steps_interactive.pm_.c:1211
msgid "Creating bootdisk..."
msgstr "Creando o disco de arrinque"
-#: ../../install_steps_interactive.pm_.c:1233
+#: ../../install_steps_interactive.pm_.c:1218
msgid "Preparing bootloader..."
msgstr "Preparando o cargador de arrinque"
-#: ../../install_steps_interactive.pm_.c:1244
+#: ../../install_steps_interactive.pm_.c:1229
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5140,11 +5222,11 @@ msgid ""
" need to use BootX to boot your machine"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1250
+#: ../../install_steps_interactive.pm_.c:1235
msgid "Do you want to use aboot?"
msgstr "żDesexa usar aboot?"
-#: ../../install_steps_interactive.pm_.c:1253
+#: ../../install_steps_interactive.pm_.c:1238
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -5152,16 +5234,16 @@ msgstr ""
"Erro instalando aboot, \n"
"żprobar a forzar a instalación mesmo se iso destrúe a primeira partición?"
-#: ../../install_steps_interactive.pm_.c:1260
+#: ../../install_steps_interactive.pm_.c:1245
#, fuzzy
msgid "Installing bootloader"
msgstr "Cargador de arrinque"
-#: ../../install_steps_interactive.pm_.c:1266
+#: ../../install_steps_interactive.pm_.c:1251
msgid "Installation of bootloader failed. The following error occured:"
msgstr "A instalación do xestor de arrinque fallou. Ocorreu o seguinte erro:"
-#: ../../install_steps_interactive.pm_.c:1274
+#: ../../install_steps_interactive.pm_.c:1259
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -5172,17 +5254,17 @@ msgid ""
"At your next boot you should see the bootloader prompt."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1308
+#: ../../install_steps_interactive.pm_.c:1293
#: ../../standalone/drakautoinst_.c:79
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Insira un disquete baleiro na unidade %s"
-#: ../../install_steps_interactive.pm_.c:1312
+#: ../../install_steps_interactive.pm_.c:1297
msgid "Creating auto install floppy..."
msgstr "Creando un disquete de auto-instalación"
-#: ../../install_steps_interactive.pm_.c:1323
+#: ../../install_steps_interactive.pm_.c:1308
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -5192,7 +5274,7 @@ msgstr ""
"\n"
"żDesexa realmente saír agora?"
-#: ../../install_steps_interactive.pm_.c:1334
+#: ../../install_steps_interactive.pm_.c:1319
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
@@ -5225,15 +5307,15 @@ msgstr ""
"da instalación, hai un capítulo na Guía do Usuario Oficial\n"
"de Mandrake Linux."
-#: ../../install_steps_interactive.pm_.c:1347
+#: ../../install_steps_interactive.pm_.c:1332
msgid "http://www.mandrakelinux.com/en/90errata.php3"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1352
+#: ../../install_steps_interactive.pm_.c:1337
msgid "Generate auto install floppy"
msgstr "Xerar disquete de auto-instalación"
-#: ../../install_steps_interactive.pm_.c:1354
+#: ../../install_steps_interactive.pm_.c:1339
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -5247,15 +5329,15 @@ msgstr ""
"\n"
"Pode preferir realizar novamente a instalación.\n"
-#: ../../install_steps_interactive.pm_.c:1359
+#: ../../install_steps_interactive.pm_.c:1344
msgid "Automated"
msgstr "Automatizada"
-#: ../../install_steps_interactive.pm_.c:1359
+#: ../../install_steps_interactive.pm_.c:1344
msgid "Replay"
msgstr "Reproducir"
-#: ../../install_steps_interactive.pm_.c:1362
+#: ../../install_steps_interactive.pm_.c:1347
msgid "Save packages selection"
msgstr "Gardar a selección de paquetes"
@@ -5264,7 +5346,8 @@ msgstr "Gardar a selección de paquetes"
msgid "Mandrake Linux Installation %s"
msgstr "Instalación de Mandrake Linux %s"
-#: ../../install_steps_newt.pm_.c:34
+#. -PO This string must fit in a 80-char wide text screen
+#: ../../install_steps_newt.pm_.c:35
msgid ""
" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
msgstr ""
@@ -5283,22 +5366,22 @@ msgstr ""
msgid "Choose a file"
msgstr "Escolla a acción"
-#: ../../interactive.pm_.c:317
+#: ../../interactive.pm_.c:320
msgid "Advanced"
msgstr "Avanzado"
-#: ../../interactive.pm_.c:318
+#: ../../interactive.pm_.c:321
msgid "Basic"
msgstr ""
-#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:155
-#: ../../printerdrake.pm_.c:1990
+#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:158
+#: ../../printerdrake.pm_.c:2124
msgid "<- Previous"
msgstr "<- Anterior"
#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
-#: ../../standalone/drakbackup_.c:3464 ../../standalone/drakbackup_.c:3491
-#: ../../standalone/drakbackup_.c:3517
+#: ../../standalone/drakbackup_.c:4112 ../../standalone/drakbackup_.c:4139
+#: ../../standalone/drakbackup_.c:4169 ../../standalone/drakbackup_.c:4195
#, fuzzy
msgid "Next"
msgstr "Texto"
@@ -5366,386 +5449,386 @@ msgstr ""
msgid "Re-submit"
msgstr ""
-#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:152 ../../keyboard.pm_.c:187
msgid "Czech (QWERTZ)"
msgstr "Checo (QWERTZ)"
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:153 ../../keyboard.pm_.c:189
msgid "German"
msgstr "Alemán"
-#: ../../keyboard.pm_.c:175
+#: ../../keyboard.pm_.c:154
msgid "Dvorak"
msgstr "Teclado dvorak"
-#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:218
+#: ../../keyboard.pm_.c:155 ../../keyboard.pm_.c:197
msgid "Spanish"
msgstr "Espańol"
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:156 ../../keyboard.pm_.c:198
msgid "Finnish"
msgstr "Finlandés"
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:220
+#: ../../keyboard.pm_.c:157 ../../keyboard.pm_.c:199
msgid "French"
msgstr "Francés"
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:158 ../../keyboard.pm_.c:231
msgid "Norwegian"
msgstr "Noruegués"
-#: ../../keyboard.pm_.c:180
+#: ../../keyboard.pm_.c:159
msgid "Polish"
msgstr "Polaco"
-#: ../../keyboard.pm_.c:181 ../../keyboard.pm_.c:260
+#: ../../keyboard.pm_.c:160 ../../keyboard.pm_.c:239
msgid "Russian"
msgstr "Ruso"
-#: ../../keyboard.pm_.c:183 ../../keyboard.pm_.c:262
+#: ../../keyboard.pm_.c:162 ../../keyboard.pm_.c:241
msgid "Swedish"
msgstr "Sueco"
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:278
+#: ../../keyboard.pm_.c:163 ../../keyboard.pm_.c:257
msgid "UK keyboard"
msgstr "Británico"
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:279
+#: ../../keyboard.pm_.c:164 ../../keyboard.pm_.c:258
msgid "US keyboard"
msgstr "Estadounidense"
-#: ../../keyboard.pm_.c:187
+#: ../../keyboard.pm_.c:166
#, fuzzy
msgid "Albanian"
msgstr "Iraniano"
-#: ../../keyboard.pm_.c:188
+#: ../../keyboard.pm_.c:167
msgid "Armenian (old)"
msgstr "Armenio (antigo)"
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:168
msgid "Armenian (typewriter)"
msgstr "Armenio (máquina de escribir)"
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:169
msgid "Armenian (phonetic)"
msgstr "Armenio (fonético)"
-#: ../../keyboard.pm_.c:195
+#: ../../keyboard.pm_.c:174
msgid "Azerbaidjani (latin)"
msgstr "Azerbaianí (latín)"
-#: ../../keyboard.pm_.c:197
+#: ../../keyboard.pm_.c:176
msgid "Belgian"
msgstr "Belga"
-#: ../../keyboard.pm_.c:198
+#: ../../keyboard.pm_.c:177
#, fuzzy
msgid "Bengali"
msgstr "activar"
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:178
#, fuzzy
msgid "Bulgarian (phonetic)"
msgstr "Armenio (fonético)"
-#: ../../keyboard.pm_.c:200
+#: ../../keyboard.pm_.c:179
#, fuzzy
msgid "Bulgarian (BDS)"
msgstr "Búlgaro"
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:180
msgid "Brazilian (ABNT-2)"
msgstr "Brasileiro (ABNT-2)"
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:183
#, fuzzy
msgid "Bosnian"
msgstr "Estonio"
-#: ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:184
msgid "Belarusian"
msgstr "Bielorruso"
-#: ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:185
msgid "Swiss (German layout)"
msgstr "Suízo (alemán)"
-#: ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:186
msgid "Swiss (French layout)"
msgstr "Suízo (francés)"
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:188
msgid "Czech (QWERTY)"
msgstr "Checo (QWERTY)"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:190
msgid "German (no dead keys)"
msgstr "Alemán (sen teclas acentuadas)"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:191
msgid "Devanagari"
msgstr ""
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:192
msgid "Danish"
msgstr "Dinamarqués"
-#: ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:193
msgid "Dvorak (US)"
msgstr "Dvorak (EUA)"
-#: ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:194
msgid "Dvorak (Norwegian)"
msgstr "Dvorak (Noruegués)"
-#: ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:195
#, fuzzy
msgid "Dvorak (Swedish)"
msgstr "Dvorak (EUA)"
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:196
msgid "Estonian"
msgstr "Estonio"
-#: ../../keyboard.pm_.c:221
+#: ../../keyboard.pm_.c:200
msgid "Georgian (\"Russian\" layout)"
msgstr "Xeorxiano (\"ruso\")"
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:201
msgid "Georgian (\"Latin\" layout)"
msgstr "Xeorxiano (\"latino\")"
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:202
msgid "Greek"
msgstr "Grego"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:203
msgid "Gujarati"
msgstr ""
-#: ../../keyboard.pm_.c:225
+#: ../../keyboard.pm_.c:204
msgid "Gurmukhi"
msgstr ""
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:205
msgid "Hungarian"
msgstr "Húngaro"
-#: ../../keyboard.pm_.c:227
+#: ../../keyboard.pm_.c:206
msgid "Croatian"
msgstr "Croata"
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:207
msgid "Israeli"
msgstr "Israelí"
-#: ../../keyboard.pm_.c:229
+#: ../../keyboard.pm_.c:208
msgid "Israeli (Phonetic)"
msgstr "Israelí (Fonético)"
-#: ../../keyboard.pm_.c:230
+#: ../../keyboard.pm_.c:209
msgid "Iranian"
msgstr "Iraniano"
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:210
msgid "Icelandic"
msgstr "Islandés"
-#: ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:211
msgid "Italian"
msgstr "Italiano"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:212
msgid "Inuktitut"
msgstr ""
-#: ../../keyboard.pm_.c:234
+#: ../../keyboard.pm_.c:213
msgid "Japanese 106 keys"
msgstr "Xaponés de 106 teclas"
-#: ../../keyboard.pm_.c:237
+#: ../../keyboard.pm_.c:216
#, fuzzy
msgid "Korean keyboard"
msgstr "Británico"
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:217
msgid "Latin American"
msgstr "Latinoamericano"
-#: ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:218
#, fuzzy
msgid "Laotian"
msgstr "Localización"
-#: ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:219
msgid "Lithuanian AZERTY (old)"
msgstr "Lituano AZERTY (antigo)"
-#: ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:221
msgid "Lithuanian AZERTY (new)"
msgstr "Lituano AZERTY (novo)"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:222
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Lituano \"ringleira de números\" QWERTY"
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:223
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "Lituano \"fonético\" QWERTY"
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:224
#, fuzzy
msgid "Latvian"
msgstr "Localización"
-#: ../../keyboard.pm_.c:246
+#: ../../keyboard.pm_.c:225
msgid "Macedonian"
msgstr "Macedonio"
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:226
msgid "Myanmar (Burmese)"
msgstr ""
-#: ../../keyboard.pm_.c:248
+#: ../../keyboard.pm_.c:227
#, fuzzy
msgid "Mongolian (cyrillic)"
msgstr "Azerbaianí (cirílico)"
-#: ../../keyboard.pm_.c:249
+#: ../../keyboard.pm_.c:228
msgid "Maltese (UK)"
msgstr ""
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:229
msgid "Maltese (US)"
msgstr ""
-#: ../../keyboard.pm_.c:251
+#: ../../keyboard.pm_.c:230
msgid "Dutch"
msgstr "Holandés"
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:232
msgid "Polish (qwerty layout)"
msgstr "Polaco (disposición qwerty)"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:233
msgid "Polish (qwertz layout)"
msgstr "Polaco (disposición qwertz)"
-#: ../../keyboard.pm_.c:255
+#: ../../keyboard.pm_.c:234
msgid "Portuguese"
msgstr "Portugués"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:235
msgid "Canadian (Quebec)"
msgstr "Canadiano (Québec)"
-#: ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:237
#, fuzzy
msgid "Romanian (qwertz)"
msgstr "Ruso (Yawerty)"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:238
#, fuzzy
msgid "Romanian (qwerty)"
msgstr "Ruso (Yawerty)"
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:240
msgid "Russian (Yawerty)"
msgstr "Ruso (Yawerty)"
-#: ../../keyboard.pm_.c:263
+#: ../../keyboard.pm_.c:242
msgid "Slovenian"
msgstr "Esloveno"
-#: ../../keyboard.pm_.c:264
+#: ../../keyboard.pm_.c:243
msgid "Slovakian (QWERTZ)"
msgstr "Eslovaco (QWERTZ)"
-#: ../../keyboard.pm_.c:265
+#: ../../keyboard.pm_.c:244
msgid "Slovakian (QWERTY)"
msgstr "Eslovaco (QWERTY)"
-#: ../../keyboard.pm_.c:267
+#: ../../keyboard.pm_.c:246
#, fuzzy
msgid "Serbian (cyrillic)"
msgstr "Azerbaianí (cirílico)"
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:248
msgid "Tamil (Unicode)"
msgstr ""
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:249
msgid "Tamil (TSCII)"
msgstr ""
-#: ../../keyboard.pm_.c:271
+#: ../../keyboard.pm_.c:250
msgid "Thai keyboard"
msgstr "Teclado Thai"
-#: ../../keyboard.pm_.c:273
+#: ../../keyboard.pm_.c:252
#, fuzzy
msgid "Tajik keyboard"
msgstr "Teclado Thai"
-#: ../../keyboard.pm_.c:274
+#: ../../keyboard.pm_.c:253
msgid "Turkish (traditional \"F\" model)"
msgstr "Turco (tradicional modelo \"F\")"
-#: ../../keyboard.pm_.c:275
+#: ../../keyboard.pm_.c:254
msgid "Turkish (modern \"Q\" model)"
msgstr "Turco (moderno modelo \"Q\")"
-#: ../../keyboard.pm_.c:277
+#: ../../keyboard.pm_.c:256
msgid "Ukrainian"
msgstr "Ucraíno"
-#: ../../keyboard.pm_.c:280
+#: ../../keyboard.pm_.c:259
msgid "US keyboard (international)"
msgstr "Estadounidense (internacional)"
-#: ../../keyboard.pm_.c:281
+#: ../../keyboard.pm_.c:260
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "Vietnamita \"ringleira de números\" QWERTY"
-#: ../../keyboard.pm_.c:282
+#: ../../keyboard.pm_.c:261
#, fuzzy
msgid "Yugoslavian (latin)"
msgstr "Iugoslavo (latín/cirílico)"
-#: ../../keyboard.pm_.c:289
+#: ../../keyboard.pm_.c:268
msgid "Right Alt key"
msgstr ""
-#: ../../keyboard.pm_.c:290
+#: ../../keyboard.pm_.c:269
msgid "Both Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:291
+#: ../../keyboard.pm_.c:270
msgid "Control and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:292
+#: ../../keyboard.pm_.c:271
msgid "CapsLock key"
msgstr ""
-#: ../../keyboard.pm_.c:293
+#: ../../keyboard.pm_.c:272
msgid "Ctrl and Alt keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:294
+#: ../../keyboard.pm_.c:273
msgid "Alt and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:295
+#: ../../keyboard.pm_.c:274
msgid "\"Menu\" key"
msgstr ""
-#: ../../keyboard.pm_.c:296
+#: ../../keyboard.pm_.c:275
msgid "Left \"Windows\" key"
msgstr ""
-#: ../../keyboard.pm_.c:297
+#: ../../keyboard.pm_.c:276
msgid "Right \"Windows\" key"
msgstr ""
@@ -5803,11 +5886,11 @@ msgstr "Rato de roda PS2 xenérico"
msgid "GlidePoint"
msgstr "GlidePoint"
-#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:63
+#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:65
msgid "Kensington Thinking Mouse"
msgstr "Kensington Thinking Mouse"
-#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:59
+#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:61
msgid "Genius NetMouse"
msgstr "Genius NetMouse"
@@ -5815,115 +5898,124 @@ msgstr "Genius NetMouse"
msgid "Genius NetScroll"
msgstr "Genius NetScroll"
-#: ../../mouse.pm_.c:43 ../../mouse.pm_.c:68
+#: ../../mouse.pm_.c:39 ../../mouse.pm_.c:48
+#, fuzzy
+msgid "Microsoft Explorer"
+msgstr "Microsoft IntelliMouse"
+
+#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:70
msgid "1 button"
msgstr "1 botón"
-#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:51
+#: ../../mouse.pm_.c:45 ../../mouse.pm_.c:53
msgid "Generic 2 Button Mouse"
msgstr "Rato de 2 botóns xenérico"
-#: ../../mouse.pm_.c:46
+#: ../../mouse.pm_.c:47
msgid "Wheel"
msgstr "Roda"
-#: ../../mouse.pm_.c:49
+#: ../../mouse.pm_.c:51
msgid "serial"
msgstr "serie"
-#: ../../mouse.pm_.c:52
+#: ../../mouse.pm_.c:54
msgid "Generic 3 Button Mouse"
msgstr "Rato de 3 botóns xenérico"
-#: ../../mouse.pm_.c:53
+#: ../../mouse.pm_.c:55
msgid "Microsoft IntelliMouse"
msgstr "Microsoft IntelliMouse"
-#: ../../mouse.pm_.c:54
+#: ../../mouse.pm_.c:56
msgid "Logitech MouseMan"
msgstr "Logitech MouseMan"
-#: ../../mouse.pm_.c:55
+#: ../../mouse.pm_.c:57
msgid "Mouse Systems"
msgstr "Mouse Systems"
-#: ../../mouse.pm_.c:57
+#: ../../mouse.pm_.c:59
msgid "Logitech CC Series"
msgstr "Logitech CC Series"
-#: ../../mouse.pm_.c:58
+#: ../../mouse.pm_.c:60
msgid "Logitech MouseMan+/FirstMouse+"
msgstr "Logitech MouseMan+/FirstMouse+"
-#: ../../mouse.pm_.c:60
+#: ../../mouse.pm_.c:62
msgid "MM Series"
msgstr "MM Series"
-#: ../../mouse.pm_.c:61
+#: ../../mouse.pm_.c:63
msgid "MM HitTablet"
msgstr "MM HitTablet"
-#: ../../mouse.pm_.c:62
+#: ../../mouse.pm_.c:64
msgid "Logitech Mouse (serial, old C7 type)"
msgstr "Rato Logitech (serie, antigo tipo C7)"
-#: ../../mouse.pm_.c:66
+#: ../../mouse.pm_.c:68
msgid "busmouse"
msgstr "busmouse"
-#: ../../mouse.pm_.c:69
+#: ../../mouse.pm_.c:71
msgid "2 buttons"
msgstr "2 botóns"
-#: ../../mouse.pm_.c:70
+#: ../../mouse.pm_.c:72
msgid "3 buttons"
msgstr "3 botóns"
-#: ../../mouse.pm_.c:73
+#: ../../mouse.pm_.c:75
msgid "none"
msgstr "ningún"
-#: ../../mouse.pm_.c:75
+#: ../../mouse.pm_.c:77
msgid "No mouse"
msgstr "Ningún rato"
-#: ../../mouse.pm_.c:445
+#: ../../mouse.pm_.c:482
msgid "Please test the mouse"
msgstr "Probe o seu rato"
-#: ../../mouse.pm_.c:446
+#: ../../mouse.pm_.c:483
msgid "To activate the mouse,"
msgstr "Para activar o rato,"
-#: ../../mouse.pm_.c:447
+#: ../../mouse.pm_.c:484
msgid "MOVE YOUR WHEEL!"
msgstr "ĄMOVA A RODA!"
-#: ../../my_gtk.pm_.c:156
+#: ../../my_gtk.pm_.c:64
+msgid "-adobe-utopia-regular-r-*-*-25-*-*-*-p-*-iso8859-*,*-r-*"
+msgstr ""
+
+#: ../../my_gtk.pm_.c:159
msgid "Finish"
msgstr "Finalizar"
-#: ../../my_gtk.pm_.c:156 ../../printerdrake.pm_.c:1992
+#: ../../my_gtk.pm_.c:159 ../../printerdrake.pm_.c:2126
msgid "Next ->"
msgstr "Seguinte ->"
-#: ../../my_gtk.pm_.c:284
+#: ../../my_gtk.pm_.c:287
msgid "Is this correct?"
msgstr "żÉ isto correcto?"
-#: ../../my_gtk.pm_.c:356 ../../services.pm_.c:222
+#: ../../my_gtk.pm_.c:359 ../../services.pm_.c:222
msgid "Info"
msgstr "Info"
-#: ../../my_gtk.pm_.c:377
+#: ../../my_gtk.pm_.c:380
msgid "Expand Tree"
msgstr "Expandir árbore"
-#: ../../my_gtk.pm_.c:378
+#: ../../my_gtk.pm_.c:381
msgid "Collapse Tree"
msgstr "Pechar árbore"
-#: ../../my_gtk.pm_.c:379
+#: ../../my_gtk.pm_.c:382
msgid "Toggle between flat and group sorted"
msgstr "Mudar entre lista completa e ordenada por grupos"
@@ -5961,6 +6053,68 @@ msgstr "usar pppoe"
msgid "use pptp"
msgstr "usar pptp"
+#: ../../network/drakfirewall.pm_.c:12
+#, fuzzy
+msgid "Web Server"
+msgstr "Servidor"
+
+#: ../../network/drakfirewall.pm_.c:17
+#, fuzzy
+msgid "Domain Name Server"
+msgstr "Nome de dominio"
+
+#: ../../network/drakfirewall.pm_.c:32
+#, fuzzy
+msgid "Mail Server"
+msgstr "Bases de datos"
+
+#: ../../network/drakfirewall.pm_.c:37
+#, fuzzy
+msgid "POP and IMAP Server"
+msgstr "Servidor"
+
+#: ../../network/drakfirewall.pm_.c:111
+#, fuzzy
+msgid "No network card"
+msgstr "non se atopou ningunha tarxeta de rede"
+
+#: ../../network/drakfirewall.pm_.c:129
+msgid ""
+"drakfirewall configurator\n"
+"\n"
+"This configures a personal firewall for this Mandrake Linux machine.\n"
+"For a powerful dedicated firewall solution, please look to the\n"
+"specialized MandrakeSecurity Firewall distribution."
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:147
+msgid "Which services would you like to allow the Internet to connect to?"
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:148
+msgid ""
+"You can enter miscellaneous ports. \n"
+"Valid examples are: 139/tcp 139/udp.\n"
+"Have a look at /etc/services for information."
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:154
+#, c-format
+msgid ""
+"Invalid port given: %s.\n"
+"The proper format is \"port/tcp\" or \"port/udp\", \n"
+"where port is between 1 and 65535."
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:162
+msgid "Everything (no firewall)"
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:164
+#, fuzzy
+msgid "Other ports"
+msgstr "Probar portos"
+
#: ../../network/ethernet.pm_.c:37
msgid ""
"Which dhcp client do you want to use?\n"
@@ -5977,7 +6131,7 @@ msgstr ""
"Non se detectou ningún adaptador de rede ethernet no seu sistema.\n"
"Non se pode configurar este tipo de conexión."
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:247
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:240
msgid "Choose the network interface"
msgstr "Escolla a interface de rede"
@@ -5990,7 +6144,7 @@ msgstr "Escolla o adaptador de rede que desexa usar para conectar á Internet"
msgid "no network card found"
msgstr "non se atopou ningunha tarxeta de rede"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:366
msgid "Configuring network"
msgstr "Configurando a rede"
@@ -6006,7 +6160,7 @@ msgstr ""
"Este nome debe ser completamente cualificado,\n"
"como ``mińamaquina.meulab.mińacomp.es''."
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:370
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:371
msgid "Host name"
msgstr "Nome de máquina"
@@ -6306,13 +6460,13 @@ msgstr "Escolla o perfil para configurar"
msgid "Use auto detection"
msgstr "Usar detección automática"
-#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2930
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:3151
#: ../../standalone/drakconnect_.c:274 ../../standalone/drakconnect_.c:277
#: ../../standalone/drakfloppy_.c:145
msgid "Expert Mode"
msgstr "Modo experto"
-#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:283
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:386
msgid "Detecting devices..."
msgstr "Detectando os dispositivos..."
@@ -6477,11 +6631,11 @@ msgstr "IP automático"
msgid "Start at boot"
msgstr "Iniciado o arrincar"
-#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:753
+#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:860
msgid "IP address should be in format 1.2.3.4"
msgstr "Os enderezos IP deben estar no formato 1.2.3.4"
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:367
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -6493,43 +6647,55 @@ msgstr ""
"como ``mińamaquina.meulab.mińacomp.es''.\n"
"Pode tamén introducir o enderezo IP da pasarela se usa unha"
-#: ../../network/network.pm_.c:371
+#: ../../network/network.pm_.c:372
msgid "DNS server"
msgstr "Servidor DNS"
-#: ../../network/network.pm_.c:372
+#: ../../network/network.pm_.c:373
#, c-format
msgid "Gateway (e.g. %s)"
msgstr ""
-#: ../../network/network.pm_.c:374
+#: ../../network/network.pm_.c:375
msgid "Gateway device"
msgstr "Dispositivo de pasarela"
-#: ../../network/network.pm_.c:386
+#: ../../network/network.pm_.c:387
msgid "Proxies configuration"
msgstr "Configuración dos proxys"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:388
msgid "HTTP proxy"
msgstr "Proxy HTTP"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:389
msgid "FTP proxy"
msgstr "Proxy FTP"
-#: ../../network/network.pm_.c:389
+#: ../../network/network.pm_.c:390
msgid "Track network card id (useful for laptops)"
msgstr ""
-#: ../../network/network.pm_.c:392
+#: ../../network/network.pm_.c:393
msgid "Proxy should be http://..."
msgstr "O proxy debería ser http://..."
-#: ../../network/network.pm_.c:393
+#: ../../network/network.pm_.c:394
msgid "Proxy should be ftp://..."
msgstr "O proxy debería ser ftp://..."
+#: ../../network/shorewall.pm_.c:24
+msgid "Firewalling configuration detected!"
+msgstr "ĄDetectouse unha configuración de firewall!"
+
+#: ../../network/shorewall.pm_.c:25
+msgid ""
+"Warning! An existing firewalling configuration has been detected. You may "
+"need some manual fix after installation."
+msgstr ""
+"ĄAtención! Detectouse unha configuración de firewall existente. Pode que "
+"teńa que facer algún arranxo manual trala instalación."
+
#: ../../network/tools.pm_.c:41
msgid "Internet configuration"
msgstr "Configuración de Internet"
@@ -6638,15 +6804,15 @@ msgstr "Contrasinal da conta"
msgid "United Kingdom"
msgstr ""
-#: ../../partition_table.pm_.c:606
+#: ../../partition_table.pm_.c:602
msgid "mount failed: "
msgstr "mount fallou: "
-#: ../../partition_table.pm_.c:670
+#: ../../partition_table.pm_.c:666
msgid "Extended partition not supported on this platform"
msgstr "As particións estendidas non están soportadas nesta plataforma"
-#: ../../partition_table.pm_.c:688
+#: ../../partition_table.pm_.c:684
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
@@ -6656,21 +6822,21 @@ msgstr ""
"A única solución é desprazar as particións primarias para que\n"
"o burato esté despois das particións estendidas"
-#: ../../partition_table.pm_.c:778
+#: ../../partition_table.pm_.c:774
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "Fallou a restauración a partir do ficheiro %s: %s"
-#: ../../partition_table.pm_.c:780
+#: ../../partition_table.pm_.c:776
msgid "Bad backup file"
msgstr "Ficheiro de backup incorrecto"
-#: ../../partition_table.pm_.c:802
+#: ../../partition_table.pm_.c:798
#, c-format
msgid "Error writing to file %s"
msgstr "Erro escribindo ó ficheiro %s"
-#: ../../partition_table/raw.pm_.c:187
+#: ../../partition_table/raw.pm_.c:189
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
@@ -6716,157 +6882,161 @@ msgstr ""
msgid "PDQ - Print, Don't Queue"
msgstr ""
-#: ../../printer.pm_.c:35 ../../printer.pm_.c:854
+#: ../../printer.pm_.c:34 ../../printer.pm_.c:1125
msgid "CUPS"
msgstr ""
-#: ../../printer.pm_.c:36
+#: ../../printer.pm_.c:35
msgid "LPRng"
msgstr ""
-#: ../../printer.pm_.c:37
+#: ../../printer.pm_.c:36
msgid "LPD"
msgstr ""
-#: ../../printer.pm_.c:38
+#: ../../printer.pm_.c:37
msgid "PDQ"
msgstr ""
-#: ../../printer.pm_.c:50
+#: ../../printer.pm_.c:49
msgid "Local printer"
msgstr "Impresora local"
-#: ../../printer.pm_.c:51
+#: ../../printer.pm_.c:50
msgid "Remote printer"
msgstr "Impresora remota"
-#: ../../printer.pm_.c:52
+#: ../../printer.pm_.c:51
#, fuzzy
msgid "Printer on remote CUPS server"
msgstr "Servidor CUPS remoto"
-#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:776
+#: ../../printer.pm_.c:52 ../../printerdrake.pm_.c:883
#, fuzzy
msgid "Printer on remote lpd server"
msgstr "Servidor lpd remoto"
-#: ../../printer.pm_.c:54
+#: ../../printer.pm_.c:53
msgid "Network printer (TCP/Socket)"
msgstr "Impresora de rede (TCP/Socket)"
-#: ../../printer.pm_.c:55
+#: ../../printer.pm_.c:54
#, fuzzy
msgid "Printer on SMB/Windows 95/98/NT server"
msgstr "Impresora SMB/Windows 95/98/NT"
-#: ../../printer.pm_.c:56
+#: ../../printer.pm_.c:55
#, fuzzy
msgid "Printer on NetWare server"
msgstr "Servidor de impresión"
-#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:780
+#: ../../printer.pm_.c:56 ../../printerdrake.pm_.c:887
#, fuzzy
msgid "Enter a printer device URI"
msgstr "URI do dispositivo de impresión"
-#: ../../printer.pm_.c:58
+#: ../../printer.pm_.c:57
msgid "Pipe job into a command"
msgstr ""
-#: ../../printer.pm_.c:487 ../../printer.pm_.c:678 ../../printer.pm_.c:1000
-#: ../../printerdrake.pm_.c:2070 ../../printerdrake.pm_.c:3189
+#: ../../printer.pm_.c:324 ../../printer.pm_.c:366 ../../printer.pm_.c:533
+msgid "Unknown Model"
+msgstr ""
+
+#: ../../printer.pm_.c:735 ../../printer.pm_.c:926 ../../printer.pm_.c:1318
+#: ../../printerdrake.pm_.c:2260 ../../printerdrake.pm_.c:3414
msgid "Unknown model"
msgstr ""
-#: ../../printer.pm_.c:515
+#: ../../printer.pm_.c:763
#, fuzzy
msgid "Local Printers"
msgstr "Impresora local"
-#: ../../printer.pm_.c:517 ../../printer.pm_.c:855
+#: ../../printer.pm_.c:765 ../../printer.pm_.c:1126
#, fuzzy
msgid "Remote Printers"
msgstr "Impresora remota"
-#: ../../printer.pm_.c:524 ../../printerdrake.pm_.c:301
+#: ../../printer.pm_.c:772 ../../printerdrake.pm_.c:404
#, c-format
msgid " on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:527 ../../printerdrake.pm_.c:303
+#: ../../printer.pm_.c:775 ../../printerdrake.pm_.c:406
#, c-format
msgid ", USB printer \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:532
+#: ../../printer.pm_.c:780
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:535
+#: ../../printer.pm_.c:783
msgid ", multi-function device on USB"
msgstr ""
-#: ../../printer.pm_.c:537
+#: ../../printer.pm_.c:785
msgid ", multi-function device on HP JetDirect"
msgstr ""
-#: ../../printer.pm_.c:539
+#: ../../printer.pm_.c:787
msgid ", multi-function device"
msgstr ""
-#: ../../printer.pm_.c:542
+#: ../../printer.pm_.c:790
#, fuzzy, c-format
msgid ", printing to %s"
msgstr "Erro escribindo ó ficheiro %s"
-#: ../../printer.pm_.c:544
+#: ../../printer.pm_.c:792
#, c-format
msgid " on LPD server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:546
+#: ../../printer.pm_.c:794
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ""
-#: ../../printer.pm_.c:550
+#: ../../printer.pm_.c:798
#, c-format
msgid " on SMB/Windows server \"%s\", share \"%s\""
msgstr ""
-#: ../../printer.pm_.c:554
+#: ../../printer.pm_.c:802
#, c-format
msgid " on Novell server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:556
+#: ../../printer.pm_.c:804
#, c-format
msgid ", using command %s"
msgstr ""
-#: ../../printer.pm_.c:675 ../../printerdrake.pm_.c:1540
+#: ../../printer.pm_.c:923 ../../printerdrake.pm_.c:1656
msgid "Raw printer (No driver)"
msgstr ""
-#: ../../printer.pm_.c:824
+#: ../../printer.pm_.c:1095
#, fuzzy, c-format
msgid "(on %s)"
msgstr "(módulo %s)"
-#: ../../printer.pm_.c:826
+#: ../../printer.pm_.c:1097
msgid "(on this machine)"
msgstr ""
-#: ../../printer.pm_.c:851
+#: ../../printer.pm_.c:1122
#, fuzzy, c-format
msgid "On CUPS server \"%s\""
msgstr "IP do servidor CUPS"
-#: ../../printer.pm_.c:857 ../../printerdrake.pm_.c:2851
-#: ../../printerdrake.pm_.c:2862 ../../printerdrake.pm_.c:3078
-#: ../../printerdrake.pm_.c:3130 ../../printerdrake.pm_.c:3156
-#: ../../printerdrake.pm_.c:3326 ../../printerdrake.pm_.c:3328
+#: ../../printer.pm_.c:1128 ../../printerdrake.pm_.c:3071
+#: ../../printerdrake.pm_.c:3082 ../../printerdrake.pm_.c:3303
+#: ../../printerdrake.pm_.c:3355 ../../printerdrake.pm_.c:3381
+#: ../../printerdrake.pm_.c:3556 ../../printerdrake.pm_.c:3558
msgid " (Default)"
msgstr " (Por omisión)"
@@ -6893,12 +7063,12 @@ msgstr ""
msgid "Printer auto-detection (Local, TCP/Socket, and SMB printers)"
msgstr ""
-#: ../../printerdrake.pm_.c:84 ../../printerdrake.pm_.c:2914
+#: ../../printerdrake.pm_.c:84 ../../printerdrake.pm_.c:3135
#, fuzzy
msgid "CUPS configuration"
msgstr "Configuración da LAN"
-#: ../../printerdrake.pm_.c:85 ../../printerdrake.pm_.c:2915
+#: ../../printerdrake.pm_.c:85 ../../printerdrake.pm_.c:3136
#, fuzzy
msgid "Specify CUPS server"
msgstr "Servidor CUPS remoto"
@@ -6929,7 +7099,7 @@ msgstr ""
msgid "The IP address should look like 192.168.1.20"
msgstr "Os enderezos IP deben estar no formato 1.2.3.4"
-#: ../../printerdrake.pm_.c:95 ../../printerdrake.pm_.c:987
+#: ../../printerdrake.pm_.c:95 ../../printerdrake.pm_.c:1094
#, fuzzy
msgid "The port number should be an integer!"
msgstr "O número de porto debe ser numérico"
@@ -6938,7 +7108,7 @@ msgstr "O número de porto debe ser numérico"
msgid "CUPS server IP"
msgstr "IP do servidor CUPS"
-#: ../../printerdrake.pm_.c:103 ../../printerdrake.pm_.c:1007
+#: ../../printerdrake.pm_.c:103 ../../printerdrake.pm_.c:1114
msgid "Port"
msgstr "Porto"
@@ -6947,13 +7117,129 @@ msgstr "Porto"
msgid "Automatic CUPS configuration"
msgstr "Configuración do estilo de arrinque"
-#: ../../printerdrake.pm_.c:183 ../../printerdrake.pm_.c:192
-#: ../../printerdrake.pm_.c:2897 ../../printerdrake.pm_.c:3017
+#: ../../printerdrake.pm_.c:177 ../../printerdrake.pm_.c:247
+#: ../../printerdrake.pm_.c:1529 ../../printerdrake.pm_.c:1533
+#: ../../printerdrake.pm_.c:1651 ../../printerdrake.pm_.c:2203
+#: ../../printerdrake.pm_.c:2356 ../../printerdrake.pm_.c:2415
+#: ../../printerdrake.pm_.c:2488 ../../printerdrake.pm_.c:2509
+#: ../../printerdrake.pm_.c:2699 ../../printerdrake.pm_.c:2740
+#: ../../printerdrake.pm_.c:2745 ../../printerdrake.pm_.c:2779
+#: ../../printerdrake.pm_.c:2784 ../../printerdrake.pm_.c:2821
+#: ../../printerdrake.pm_.c:2874 ../../printerdrake.pm_.c:2894
+#: ../../printerdrake.pm_.c:2908 ../../printerdrake.pm_.c:2942
+#: ../../printerdrake.pm_.c:2988 ../../printerdrake.pm_.c:3006
+#: ../../printerdrake.pm_.c:3095 ../../printerdrake.pm_.c:3169
+#: ../../printerdrake.pm_.c:3471 ../../printerdrake.pm_.c:3526
+#: ../../printerdrake.pm_.c:3579 ../../standalone/printerdrake_.c:57
+msgid "Printerdrake"
+msgstr "Printerdrake"
+
+#: ../../printerdrake.pm_.c:178
+#, fuzzy
+msgid "Checking your system..."
+msgstr "żQue sistema de impresión desexa usar?"
+
+#: ../../printerdrake.pm_.c:186
+msgid ""
+"There are no printers found which are directly connected to your machine"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:198
+#, fuzzy
+msgid ""
+"The following printers\n"
+"\n"
+msgstr "Vanse eliminar os seguintes paquetes"
+
+#: ../../printerdrake.pm_.c:199
+#, fuzzy
+msgid ""
+"The following printer\n"
+"\n"
+msgstr "Vanse eliminar os seguintes paquetes"
+
+#: ../../printerdrake.pm_.c:201
+msgid ""
+"\n"
+"and one unknown printer are "
+msgstr ""
+
+#: ../../printerdrake.pm_.c:203
+#, c-format
+msgid ""
+"\n"
+"and %d unknown printers are "
+msgstr ""
+
+#: ../../printerdrake.pm_.c:207
+msgid ""
+"\n"
+"are "
+msgstr ""
+
+#: ../../printerdrake.pm_.c:208
+msgid ""
+"\n"
+"is "
+msgstr ""
+
+#: ../../printerdrake.pm_.c:210
+#, fuzzy
+msgid "directly connected to your system"
+msgstr "ĄNon hai ningún adaptador de rede no seu sistema!"
+
+#: ../../printerdrake.pm_.c:213
+msgid ""
+"\n"
+"There is one unknown printer directly connected to your system"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:215
+#, c-format
+msgid ""
+"\n"
+"There are %d unknown printers directly connected to your system"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:221
+#, fuzzy
+msgid " (Make sure that all your printers are connected and turned on).\n"
+msgstr "Escolla o porto serie onde está conectado o seu módem."
+
+#: ../../printerdrake.pm_.c:235
+msgid ""
+"Do you want to enable printing on the printers mentioned above or on "
+"printers in the local network?\n"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:236
+#, fuzzy
+msgid "Do you want to enable printing on printers in the local network?\n"
+msgstr "żDesexa probar a impresión?"
+
+#: ../../printerdrake.pm_.c:238
+#, fuzzy
+msgid "Do you want to enable printing on the printers mentioned above?\n"
+msgstr "żDesexa que a conexión se inicie ó arrincar?"
+
+#: ../../printerdrake.pm_.c:239
+msgid "Are you sure that you want to set up printing on this machine?\n"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:240
+#, c-format
+msgid ""
+"NOTE: Depending on the printer model and the printing system up to %d MB of "
+"additional software will be installed."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:269 ../../printerdrake.pm_.c:278
+#: ../../printerdrake.pm_.c:3117 ../../printerdrake.pm_.c:3242
#, fuzzy
msgid "Add a new printer"
msgstr "Sen impresora"
-#: ../../printerdrake.pm_.c:184
+#: ../../printerdrake.pm_.c:270
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -6966,7 +7252,7 @@ msgid ""
"connection types."
msgstr ""
-#: ../../printerdrake.pm_.c:193
+#: ../../printerdrake.pm_.c:280
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -6975,7 +7261,7 @@ msgid ""
"computer, connected directly to the network or to a remote Windows machine.\n"
"\n"
"If you have printer(s) connected to this machine, Please plug it/them in on "
-"this computer and turn it/them on so that they can be auto-detected. Also "
+"this computer and turn it/them on so that it/they can be auto-detected. Also "
"your network printer(s) and you Windows machines must be connected and "
"turned on.\n"
"\n"
@@ -6988,7 +7274,22 @@ msgid ""
"want to set up your printer(s) now."
msgstr ""
-#: ../../printerdrake.pm_.c:202
+#: ../../printerdrake.pm_.c:289 ../../printerdrake.pm_.c:306
+msgid ""
+"\n"
+"Welcome to the Printer Setup Wizard\n"
+"\n"
+"This wizard will help you to install your printer(s) connected to this "
+"computer.\n"
+"\n"
+"If you have printer(s) connected to this machine, Please plug it/them in on "
+"this computer and turn it/them on so that it/they can be auto-detected.\n"
+"\n"
+" Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
+"want to set up your printer(s) now."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:297
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -6997,7 +7298,7 @@ msgid ""
"computer or connected directly to the network.\n"
"\n"
"If you have printer(s) connected to this machine, Please plug it/them in on "
-"this computer and turn it/them on so that they can be auto-detected. Also "
+"this computer and turn it/them on so that it/they can be auto-detected. Also "
"your network printer(s) must be connected and turned on.\n"
"\n"
"Note that auto-detecting printers on the network takes longer than the auto-"
@@ -7008,26 +7309,26 @@ msgid ""
"want to set up your printer(s) now."
msgstr ""
-#: ../../printerdrake.pm_.c:213
+#: ../../printerdrake.pm_.c:315
#, fuzzy
msgid "Auto-detect printers connected to this machine"
msgstr "Impresora remota"
-#: ../../printerdrake.pm_.c:215
+#: ../../printerdrake.pm_.c:318
msgid "Auto-detect printers connected directly to the local network"
msgstr ""
-#: ../../printerdrake.pm_.c:218
+#: ../../printerdrake.pm_.c:321
msgid "Auto-detect printers connected to machines running Microsoft Windows"
msgstr ""
-#: ../../printerdrake.pm_.c:245 ../../printerdrake.pm_.c:459
-#: ../../printerdrake.pm_.c:484
+#: ../../printerdrake.pm_.c:348 ../../printerdrake.pm_.c:562
+#: ../../printerdrake.pm_.c:587
#, fuzzy
msgid "Local Printer"
msgstr "Impresora local"
-#: ../../printerdrake.pm_.c:246
+#: ../../printerdrake.pm_.c:349
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -7041,50 +7342,50 @@ msgid ""
"Center."
msgstr ""
-#: ../../printerdrake.pm_.c:283 ../../printerdrake.pm_.c:474
-#: ../../printerdrake.pm_.c:683 ../../printerdrake.pm_.c:923
+#: ../../printerdrake.pm_.c:386 ../../printerdrake.pm_.c:577
+#: ../../printerdrake.pm_.c:790 ../../printerdrake.pm_.c:1030
#, fuzzy
msgid "Printer auto-detection"
msgstr "Usar detección automática"
-#: ../../printerdrake.pm_.c:305
+#: ../../printerdrake.pm_.c:408
#, c-format
msgid ", network printer \"%s\", port %s"
msgstr ""
-#: ../../printerdrake.pm_.c:307
+#: ../../printerdrake.pm_.c:410
#, fuzzy, c-format
msgid ", printer \"%s\" on SMB/Windows server \"%s\""
msgstr "Impresora SMB/Windows 95/98/NT"
-#: ../../printerdrake.pm_.c:313
+#: ../../printerdrake.pm_.c:416
#, fuzzy, c-format
msgid "Detected %s"
msgstr "detectouse %s"
-#: ../../printerdrake.pm_.c:317 ../../printerdrake.pm_.c:348
-#: ../../printerdrake.pm_.c:367
+#: ../../printerdrake.pm_.c:420 ../../printerdrake.pm_.c:451
+#: ../../printerdrake.pm_.c:470
#, c-format
msgid "Printer on parallel port \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:319 ../../printerdrake.pm_.c:350
-#: ../../printerdrake.pm_.c:372
+#: ../../printerdrake.pm_.c:422 ../../printerdrake.pm_.c:453
+#: ../../printerdrake.pm_.c:475
#, c-format
msgid "USB printer \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:321
+#: ../../printerdrake.pm_.c:424
#, fuzzy, c-format
msgid "Network printer \"%s\", port %s"
msgstr "Impresora de rede (TCP/Socket)"
-#: ../../printerdrake.pm_.c:323
+#: ../../printerdrake.pm_.c:426
#, fuzzy, c-format
msgid "Printer \"%s\" on SMB/Windows server \"%s\""
msgstr "Impresora SMB/Windows 95/98/NT"
-#: ../../printerdrake.pm_.c:460
+#: ../../printerdrake.pm_.c:563
msgid ""
"No local printer found! To manually install a printer enter a device name/"
"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
@@ -7092,34 +7393,34 @@ msgid ""
"printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:464
+#: ../../printerdrake.pm_.c:567
#, fuzzy
msgid "You must enter a device or file name!"
msgstr "URI do dispositivo de impresión"
-#: ../../printerdrake.pm_.c:475
+#: ../../printerdrake.pm_.c:578
#, fuzzy
msgid "No printer found!"
msgstr "Impresora local"
-#: ../../printerdrake.pm_.c:485
+#: ../../printerdrake.pm_.c:588
#, fuzzy
msgid "Available printers"
msgstr "Impresora local"
-#: ../../printerdrake.pm_.c:489
+#: ../../printerdrake.pm_.c:592
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:490
+#: ../../printerdrake.pm_.c:593
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up or enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:492
+#: ../../printerdrake.pm_.c:595
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
@@ -7127,7 +7428,7 @@ msgid ""
"configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:493
+#: ../../printerdrake.pm_.c:596
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
@@ -7135,38 +7436,38 @@ msgid ""
"customized printer configuration, turn on \"Manual configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:495
+#: ../../printerdrake.pm_.c:598
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:496
+#: ../../printerdrake.pm_.c:599
#, fuzzy
msgid "Please choose the port where your printer is connected to."
msgstr "Escolla o porto serie onde está conectado o seu módem."
-#: ../../printerdrake.pm_.c:498
+#: ../../printerdrake.pm_.c:601
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:503
+#: ../../printerdrake.pm_.c:606
#, fuzzy
msgid "You must choose/enter a printer/device!"
msgstr "URI do dispositivo de impresión"
-#: ../../printerdrake.pm_.c:523
+#: ../../printerdrake.pm_.c:626
#, fuzzy
msgid "Manual configuration"
msgstr "Configuración"
-#: ../../printerdrake.pm_.c:577
+#: ../../printerdrake.pm_.c:680
msgid "Remote lpd Printer Options"
msgstr "Opcións da impresora remota lpd"
-#: ../../printerdrake.pm_.c:578
+#: ../../printerdrake.pm_.c:681
#, fuzzy
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
@@ -7176,51 +7477,51 @@ msgstr ""
"que indique o nome do servidor de impresión e o nome da fila\n"
"nese servidor."
-#: ../../printerdrake.pm_.c:579
+#: ../../printerdrake.pm_.c:682
#, fuzzy
msgid "Remote host name"
msgstr "Nome do servidor"
-#: ../../printerdrake.pm_.c:580
+#: ../../printerdrake.pm_.c:683
#, fuzzy
msgid "Remote printer name"
msgstr "Impresora remota"
-#: ../../printerdrake.pm_.c:583
+#: ../../printerdrake.pm_.c:686
#, fuzzy
msgid "Remote host name missing!"
msgstr "Nome do servidor"
-#: ../../printerdrake.pm_.c:587
+#: ../../printerdrake.pm_.c:690
#, fuzzy
msgid "Remote printer name missing!"
msgstr "Nome do servidor"
-#: ../../printerdrake.pm_.c:609 ../../printerdrake.pm_.c:1119
+#: ../../printerdrake.pm_.c:712 ../../printerdrake.pm_.c:1225
#, fuzzy, c-format
msgid "Detected model: %s %s"
msgstr "detectouse %s"
-#: ../../printerdrake.pm_.c:683 ../../printerdrake.pm_.c:923
+#: ../../printerdrake.pm_.c:790 ../../printerdrake.pm_.c:1030
#, fuzzy
msgid "Scanning network..."
msgstr "Probando a conexión..."
-#: ../../printerdrake.pm_.c:692 ../../printerdrake.pm_.c:713
+#: ../../printerdrake.pm_.c:799 ../../printerdrake.pm_.c:820
#, c-format
msgid ", printer \"%s\" on server \"%s\""
msgstr ""
-#: ../../printerdrake.pm_.c:695 ../../printerdrake.pm_.c:716
+#: ../../printerdrake.pm_.c:802 ../../printerdrake.pm_.c:823
#, fuzzy, c-format
msgid "Printer \"%s\" on server \"%s\""
msgstr "Desactivando a rede"
-#: ../../printerdrake.pm_.c:736
+#: ../../printerdrake.pm_.c:843
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "Opcións de impresora SMB (Windows 9x/NT)"
-#: ../../printerdrake.pm_.c:737
+#: ../../printerdrake.pm_.c:844
#, fuzzy
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
@@ -7235,46 +7536,46 @@ msgstr ""
"da impresora que quere usar, así como calquera nome de usuario,\n"
"grupo de traballo ou contrasinal que for necesario."
-#: ../../printerdrake.pm_.c:738
+#: ../../printerdrake.pm_.c:845
msgid ""
" If the desired printer was auto-detected, simply choose it from the list "
"and then add user name, password, and/or workgroup if needed."
msgstr ""
-#: ../../printerdrake.pm_.c:739
+#: ../../printerdrake.pm_.c:846
msgid "SMB server host"
msgstr "Servidor de SMB"
-#: ../../printerdrake.pm_.c:740
+#: ../../printerdrake.pm_.c:847
msgid "SMB server IP"
msgstr "IP do servidor SMB"
-#: ../../printerdrake.pm_.c:741
+#: ../../printerdrake.pm_.c:848
msgid "Share name"
msgstr "Nome de recurso compartido"
-#: ../../printerdrake.pm_.c:744
+#: ../../printerdrake.pm_.c:851
msgid "Workgroup"
msgstr "Grupo de traballo"
-#: ../../printerdrake.pm_.c:746
+#: ../../printerdrake.pm_.c:853
#, fuzzy
msgid "Auto-detected"
msgstr "Usar detección automática"
-#: ../../printerdrake.pm_.c:757
+#: ../../printerdrake.pm_.c:864
msgid "Either the server name or the server's IP must be given!"
msgstr ""
-#: ../../printerdrake.pm_.c:761
+#: ../../printerdrake.pm_.c:868
msgid "Samba share name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:767
+#: ../../printerdrake.pm_.c:874
msgid "SECURITY WARNING!"
msgstr ""
-#: ../../printerdrake.pm_.c:768
+#: ../../printerdrake.pm_.c:875
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -7298,7 +7599,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:778
+#: ../../printerdrake.pm_.c:885
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -7307,7 +7608,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:781
+#: ../../printerdrake.pm_.c:888
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
@@ -7315,11 +7616,11 @@ msgid ""
"Do you really want to continue setting up this printer as you are doing now?"
msgstr ""
-#: ../../printerdrake.pm_.c:853
+#: ../../printerdrake.pm_.c:960
msgid "NetWare Printer Options"
msgstr "Opcións de impresora NetWare"
-#: ../../printerdrake.pm_.c:854
+#: ../../printerdrake.pm_.c:961
#, fuzzy
msgid ""
"To print on a NetWare printer, you need to provide the NetWare print server "
@@ -7333,44 +7634,44 @@ msgstr ""
"que desexa usar, así como calquera nome de usuario ou contrasinal\n"
"que for necesario."
-#: ../../printerdrake.pm_.c:855
+#: ../../printerdrake.pm_.c:962
msgid "Printer Server"
msgstr "Servidor de impresión"
-#: ../../printerdrake.pm_.c:856
+#: ../../printerdrake.pm_.c:963
msgid "Print Queue Name"
msgstr "Nome da fila de impresión"
-#: ../../printerdrake.pm_.c:861
+#: ../../printerdrake.pm_.c:968
msgid "NCP server name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:865
+#: ../../printerdrake.pm_.c:972
msgid "NCP queue name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:932 ../../printerdrake.pm_.c:952
+#: ../../printerdrake.pm_.c:1039 ../../printerdrake.pm_.c:1059
#, c-format
msgid ", host \"%s\", port %s"
msgstr ""
-#: ../../printerdrake.pm_.c:935 ../../printerdrake.pm_.c:955
+#: ../../printerdrake.pm_.c:1042 ../../printerdrake.pm_.c:1062
#, c-format
msgid "Host \"%s\", port %s"
msgstr ""
-#: ../../printerdrake.pm_.c:975
+#: ../../printerdrake.pm_.c:1082
#, fuzzy
msgid "TCP/Socket Printer Options"
msgstr "Opcións da impresora de socket"
-#: ../../printerdrake.pm_.c:977
+#: ../../printerdrake.pm_.c:1084
msgid ""
"Choose one of the auto-detected printers from the list or enter the hostname "
"or IP and the optional port number (default is 9100) into the input fields."
msgstr ""
-#: ../../printerdrake.pm_.c:978
+#: ../../printerdrake.pm_.c:1085
#, fuzzy
msgid ""
"To print to a TCP or socket printer, you need to provide the host name or IP "
@@ -7381,61 +7682,61 @@ msgstr ""
"Para imprimir nunha impresora de socket, ten que fornecer\n"
"o nome do servidor da impresora, e opcionalmente o número do porto."
-#: ../../printerdrake.pm_.c:983
+#: ../../printerdrake.pm_.c:1090
#, fuzzy
msgid "Printer host name or IP missing!"
msgstr "Servidor de impresión"
-#: ../../printerdrake.pm_.c:1005
+#: ../../printerdrake.pm_.c:1112
#, fuzzy
msgid "Printer host name or IP"
msgstr "Servidor de impresión"
-#: ../../printerdrake.pm_.c:1054 ../../printerdrake.pm_.c:1056
+#: ../../printerdrake.pm_.c:1160 ../../printerdrake.pm_.c:1162
msgid "Printer Device URI"
msgstr "URI do dispositivo de impresión"
-#: ../../printerdrake.pm_.c:1055
+#: ../../printerdrake.pm_.c:1161
msgid ""
"You can specify directly the URI to access the printer. The URI must fulfill "
"either the CUPS or the Foomatic specifications. Note that not all URI types "
"are supported by all the spoolers."
msgstr ""
-#: ../../printerdrake.pm_.c:1070
+#: ../../printerdrake.pm_.c:1176
msgid "A valid URI must be entered!"
msgstr ""
-#: ../../printerdrake.pm_.c:1402
+#: ../../printerdrake.pm_.c:1515
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
"Location fields do not need to be filled in. They are comments for the users."
msgstr ""
-#: ../../printerdrake.pm_.c:1403
+#: ../../printerdrake.pm_.c:1516
msgid "Name of printer"
msgstr "Nome da impresora"
-#: ../../printerdrake.pm_.c:1405
+#: ../../printerdrake.pm_.c:1518
msgid "Location"
msgstr "Localización"
-#: ../../printerdrake.pm_.c:1416 ../../printerdrake.pm_.c:1536
+#: ../../printerdrake.pm_.c:1530 ../../printerdrake.pm_.c:1652
#, fuzzy
msgid "Reading printer database..."
msgstr "Lendo a base de datos de controladores de CUPS..."
-#: ../../printerdrake.pm_.c:1419
+#: ../../printerdrake.pm_.c:1534
#, fuzzy
msgid "Preparing printer database..."
msgstr "Lendo a base de datos de controladores de CUPS..."
-#: ../../printerdrake.pm_.c:1516
+#: ../../printerdrake.pm_.c:1631
#, fuzzy
msgid "Your printer model"
msgstr "Impresora remota"
-#: ../../printerdrake.pm_.c:1517
+#: ../../printerdrake.pm_.c:1632
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -7450,28 +7751,28 @@ msgid ""
"%s"
msgstr ""
-#: ../../printerdrake.pm_.c:1522 ../../printerdrake.pm_.c:1525
+#: ../../printerdrake.pm_.c:1637 ../../printerdrake.pm_.c:1640
#, fuzzy
msgid "The model is correct"
msgstr "żÉ isto correcto?"
-#: ../../printerdrake.pm_.c:1523 ../../printerdrake.pm_.c:1524
-#: ../../printerdrake.pm_.c:1527
+#: ../../printerdrake.pm_.c:1638 ../../printerdrake.pm_.c:1639
+#: ../../printerdrake.pm_.c:1642
#, fuzzy
msgid "Select model manually"
msgstr "Impresora remota"
-#: ../../printerdrake.pm_.c:1543
+#: ../../printerdrake.pm_.c:1659
#, fuzzy
msgid "Printer model selection"
msgstr "Conexión da impresora"
-#: ../../printerdrake.pm_.c:1544
+#: ../../printerdrake.pm_.c:1660
#, fuzzy
msgid "Which printer model do you have?"
msgstr "żQué tipo de impresora ten?"
-#: ../../printerdrake.pm_.c:1545
+#: ../../printerdrake.pm_.c:1661
msgid ""
"\n"
"\n"
@@ -7480,18 +7781,18 @@ msgid ""
"standing on a wrong model or on \"Raw printer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1548
+#: ../../printerdrake.pm_.c:1664
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
msgstr ""
-#: ../../printerdrake.pm_.c:1624
+#: ../../printerdrake.pm_.c:1741
#, fuzzy
msgid "OKI winprinter configuration"
msgstr "Configuración de Internet"
-#: ../../printerdrake.pm_.c:1625
+#: ../../printerdrake.pm_.c:1742
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -7501,12 +7802,12 @@ msgid ""
"not work. Your connection type setting will be ignored by the driver."
msgstr ""
-#: ../../printerdrake.pm_.c:1668 ../../printerdrake.pm_.c:1695
+#: ../../printerdrake.pm_.c:1785 ../../printerdrake.pm_.c:1812
#, fuzzy
msgid "Lexmark inkjet configuration"
msgstr "Configuración de Internet"
-#: ../../printerdrake.pm_.c:1669
+#: ../../printerdrake.pm_.c:1786
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
"no printers on remote machines or print server boxes. Please connect your "
@@ -7514,20 +7815,46 @@ msgid ""
"to."
msgstr ""
-#: ../../printerdrake.pm_.c:1696
+#: ../../printerdrake.pm_.c:1813
msgid ""
"To be able to print with your Lexmark inkjet and this configuration, you "
"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
-"com/). Go to the US site and click on the \"Drivers\" button. Then choose "
-"your model and afterwards \"Linux\" as operating system. The drivers come as "
-"RPM packages or shell scripts with interactive graphical installation. You "
-"do not need to do this configuration by the graphical frontends. Cancel "
-"directly after the license agreement. Then print printhead alignment pages "
-"with \"lexmarkmaintain\" and adjust the head alignment settings with this "
-"program."
+"com/). Click on the \"Drivers\" link. Then choose your model and afterwards "
+"\"Linux\" as operating system. The drivers come as RPM packages or shell "
+"scripts with interactive graphical installation. You do not need to do this "
+"configuration by the graphical frontends. Cancel directly after the license "
+"agreement. Then print printhead alignment pages with \"lexmarkmaintain\" and "
+"adjust the head alignment settings with this program."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:1816
+msgid "GDI Laser Printer using the Zenographics ZJ-Stream Format"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:1817
+msgid ""
+"Your printer belongs to the group of GDI laser printers (winprinters) sold "
+"by different manufacturers which uses the Zenographics ZJ-stream raster "
+"format for the data sent to the printer. The driver for these printers is "
+"still in a very early development stage and so it will perhaps not always "
+"work properly. Especially it is possible that the printer only works when "
+"you choose the A4 paper size.\n"
+"\n"
+"Some of these printers, as the HP LaserJet 1000, for which this driver was "
+"originally created, need their firmware to be uploaded to them after they "
+"are turned on. In the case of the HP LaserJet 1000 you have to search the "
+"printer's Windows driver CD or your Windows partition for the file "
+"\"sihp1000.img\" and upload the file to the printer with one of the "
+"following commands:\n"
+"\n"
+" lpr -o raw sihp1000.img\n"
+" cat sihp1000.img > /dev/usb/lp0\n"
+"\n"
+"The first command can be given by any normal user, the second must be given "
+"as root. After having done so you can print normally.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1912
+#: ../../printerdrake.pm_.c:2040
msgid ""
"Printer default settings\n"
"\n"
@@ -7537,34 +7864,34 @@ msgid ""
"printout quality/resolution printing can get substantially slower."
msgstr ""
-#: ../../printerdrake.pm_.c:1921
+#: ../../printerdrake.pm_.c:2049
#, c-format
msgid "Option %s must be an integer number!"
msgstr ""
-#: ../../printerdrake.pm_.c:1925
+#: ../../printerdrake.pm_.c:2053
#, c-format
msgid "Option %s must be a number!"
msgstr ""
-#: ../../printerdrake.pm_.c:1930
+#: ../../printerdrake.pm_.c:2058
#, c-format
msgid "Option %s out of range!"
msgstr ""
-#: ../../printerdrake.pm_.c:1969
+#: ../../printerdrake.pm_.c:2097
#, fuzzy, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
"as the default printer?"
msgstr "żDesexa probar a impresión?"
-#: ../../printerdrake.pm_.c:1986
+#: ../../printerdrake.pm_.c:2120
#, fuzzy
msgid "Test pages"
msgstr "Probar portos"
-#: ../../printerdrake.pm_.c:1987
+#: ../../printerdrake.pm_.c:2121
msgid ""
"Please select the test pages you want to print.\n"
"Note: the photo test page can take a rather long time to get printed and on "
@@ -7572,45 +7899,45 @@ msgid ""
"it is enough to print the standard test page."
msgstr ""
-#: ../../printerdrake.pm_.c:1991
+#: ../../printerdrake.pm_.c:2125
#, fuzzy
msgid "No test pages"
msgstr "Si, imprimir ambas páxinas de proba"
-#: ../../printerdrake.pm_.c:1992
+#: ../../printerdrake.pm_.c:2126
#, fuzzy
msgid "Print"
msgstr "Impresora"
-#: ../../printerdrake.pm_.c:1994
+#: ../../printerdrake.pm_.c:2183
#, fuzzy
msgid "Standard test page"
msgstr "Ferramentas estándar"
-#: ../../printerdrake.pm_.c:1997
+#: ../../printerdrake.pm_.c:2186
msgid "Alternative test page (Letter)"
msgstr ""
-#: ../../printerdrake.pm_.c:2000
+#: ../../printerdrake.pm_.c:2189
#, fuzzy
msgid "Alternative test page (A4)"
msgstr "Imprimindo páxina(s) de proba..."
-#: ../../printerdrake.pm_.c:2002
+#: ../../printerdrake.pm_.c:2191
#, fuzzy
msgid "Photo test page"
msgstr "Imprimindo páxina(s) de proba..."
-#: ../../printerdrake.pm_.c:2006
+#: ../../printerdrake.pm_.c:2195
#, fuzzy
msgid "Do not print any test page"
msgstr "Imprimindo páxina(s) de proba..."
-#: ../../printerdrake.pm_.c:2014 ../../printerdrake.pm_.c:2166
+#: ../../printerdrake.pm_.c:2204 ../../printerdrake.pm_.c:2357
msgid "Printing test page(s)..."
msgstr "Imprimindo páxina(s) de proba..."
-#: ../../printerdrake.pm_.c:2039
+#: ../../printerdrake.pm_.c:2229
#, fuzzy, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -7626,7 +7953,7 @@ msgstr ""
"\n"
"żFunciona correctamente?"
-#: ../../printerdrake.pm_.c:2043
+#: ../../printerdrake.pm_.c:2233
#, fuzzy
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -7636,16 +7963,16 @@ msgstr ""
"Pode que lle leve un pouco ata que a impresora comece.\n"
"żFunciona correctamente?"
-#: ../../printerdrake.pm_.c:2050
+#: ../../printerdrake.pm_.c:2240
msgid "Did it work properly?"
msgstr ""
-#: ../../printerdrake.pm_.c:2072 ../../printerdrake.pm_.c:3191
+#: ../../printerdrake.pm_.c:2262 ../../printerdrake.pm_.c:3416
#, fuzzy
msgid "Raw printer"
msgstr "Sen impresora"
-#: ../../printerdrake.pm_.c:2098
+#: ../../printerdrake.pm_.c:2288
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -7654,15 +7981,15 @@ msgid ""
"to modify the option settings easily.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2100
+#: ../../printerdrake.pm_.c:2290
msgid ""
"These commands you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications, but here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2103 ../../printerdrake.pm_.c:2120
-#: ../../printerdrake.pm_.c:2130
+#: ../../printerdrake.pm_.c:2293 ../../printerdrake.pm_.c:2310
+#: ../../printerdrake.pm_.c:2320
#, c-format
msgid ""
"\n"
@@ -7671,7 +7998,7 @@ msgid ""
"line, e. g. \"%s <file>\". "
msgstr ""
-#: ../../printerdrake.pm_.c:2106 ../../printerdrake.pm_.c:2146
+#: ../../printerdrake.pm_.c:2296 ../../printerdrake.pm_.c:2336
#, c-format
msgid ""
"To know about the options available for the current printer read either the "
@@ -7679,41 +8006,41 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2110
+#: ../../printerdrake.pm_.c:2300
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2115 ../../printerdrake.pm_.c:2125
+#: ../../printerdrake.pm_.c:2305 ../../printerdrake.pm_.c:2315
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2117 ../../printerdrake.pm_.c:2127
-#: ../../printerdrake.pm_.c:2137
+#: ../../printerdrake.pm_.c:2307 ../../printerdrake.pm_.c:2317
+#: ../../printerdrake.pm_.c:2327
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2122 ../../printerdrake.pm_.c:2132
+#: ../../printerdrake.pm_.c:2312 ../../printerdrake.pm_.c:2322
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
msgstr ""
-#: ../../printerdrake.pm_.c:2135
+#: ../../printerdrake.pm_.c:2325
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\" or \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2139
+#: ../../printerdrake.pm_.c:2329
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -7723,7 +8050,7 @@ msgid ""
"jams.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2143
+#: ../../printerdrake.pm_.c:2333
#, c-format
msgid ""
"\n"
@@ -7732,42 +8059,42 @@ msgid ""
"line, e. g. \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2153
+#: ../../printerdrake.pm_.c:2343
#, fuzzy, c-format
msgid "Printing/Scanning/Photo Cards on \"%s\""
msgstr "Desactivando a rede"
-#: ../../printerdrake.pm_.c:2154
+#: ../../printerdrake.pm_.c:2344
#, fuzzy, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "Desactivando a rede"
-#: ../../printerdrake.pm_.c:2156
+#: ../../printerdrake.pm_.c:2346
#, fuzzy, c-format
msgid "Printing/Photo Card Access on \"%s\""
msgstr "Desactivando a rede"
-#: ../../printerdrake.pm_.c:2157
+#: ../../printerdrake.pm_.c:2347
#, fuzzy, c-format
msgid "Printing on the printer \"%s\""
msgstr "Desactivando a rede"
-#: ../../printerdrake.pm_.c:2160 ../../printerdrake.pm_.c:2163
-#: ../../printerdrake.pm_.c:2164 ../../printerdrake.pm_.c:2165
-#: ../../printerdrake.pm_.c:3175 ../../standalone/drakTermServ_.c:248
-#: ../../standalone/drakbackup_.c:1485 ../../standalone/drakbackup_.c:3530
-#: ../../standalone/drakbug_.c:129 ../../standalone/drakfont_.c:705
+#: ../../printerdrake.pm_.c:2350 ../../printerdrake.pm_.c:2353
+#: ../../printerdrake.pm_.c:2354 ../../printerdrake.pm_.c:2355
+#: ../../printerdrake.pm_.c:3400 ../../standalone/drakTermServ_.c:248
+#: ../../standalone/drakbackup_.c:1560 ../../standalone/drakbackup_.c:4208
+#: ../../standalone/drakbug_.c:130 ../../standalone/drakfont_.c:705
#: ../../standalone/drakfont_.c:1014
#, fuzzy
msgid "Close"
msgstr "Rato"
-#: ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2353
#, fuzzy
msgid "Print option list"
msgstr "Opcións da impresora"
-#: ../../printerdrake.pm_.c:2182
+#: ../../printerdrake.pm_.c:2373
#, c-format
msgid ""
"Your multi-function device was configured automatically to be able to scan. "
@@ -7781,7 +8108,7 @@ msgid ""
"Do not use \"scannerdrake\" for this device!"
msgstr ""
-#: ../../printerdrake.pm_.c:2202
+#: ../../printerdrake.pm_.c:2394
msgid ""
"Your printer was configured automatically to give you access to the photo "
"card drives from your PC. Now you can access your photo cards using the "
@@ -7794,19 +8121,19 @@ msgid ""
"of the file lists."
msgstr ""
-#: ../../printerdrake.pm_.c:2223 ../../printerdrake.pm_.c:2673
-#: ../../printerdrake.pm_.c:2945
+#: ../../printerdrake.pm_.c:2416 ../../printerdrake.pm_.c:2875
+#: ../../printerdrake.pm_.c:3170
#, fuzzy
msgid "Reading printer data..."
msgstr "Lendo a base de datos de controladores de CUPS..."
-#: ../../printerdrake.pm_.c:2243 ../../printerdrake.pm_.c:2271
-#: ../../printerdrake.pm_.c:2306
+#: ../../printerdrake.pm_.c:2436 ../../printerdrake.pm_.c:2464
+#: ../../printerdrake.pm_.c:2499
#, fuzzy
msgid "Transfer printer configuration"
msgstr "Configuración de Internet"
-#: ../../printerdrake.pm_.c:2244
+#: ../../printerdrake.pm_.c:2437
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -7816,51 +8143,51 @@ msgid ""
"Not all queues can be transferred due to the following reasons:\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2247
+#: ../../printerdrake.pm_.c:2440
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2249
+#: ../../printerdrake.pm_.c:2442
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2251
+#: ../../printerdrake.pm_.c:2444
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2253
+#: ../../printerdrake.pm_.c:2446
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:2254
+#: ../../printerdrake.pm_.c:2447
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
"or with native CUPS drivers cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:2255
+#: ../../printerdrake.pm_.c:2448
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
"\"Transfer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:2258
+#: ../../printerdrake.pm_.c:2451
msgid "Do not transfer printers"
msgstr ""
-#: ../../printerdrake.pm_.c:2259 ../../printerdrake.pm_.c:2276
+#: ../../printerdrake.pm_.c:2452 ../../printerdrake.pm_.c:2469
msgid "Transfer"
msgstr ""
-#: ../../printerdrake.pm_.c:2272
+#: ../../printerdrake.pm_.c:2465
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -7868,62 +8195,62 @@ msgid ""
"You can also type a new name or skip this printer."
msgstr ""
-#: ../../printerdrake.pm_.c:2280
+#: ../../printerdrake.pm_.c:2473
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr ""
-#: ../../printerdrake.pm_.c:2285
+#: ../../printerdrake.pm_.c:2478
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
"do you really want to overwrite its configuration?"
msgstr ""
-#: ../../printerdrake.pm_.c:2293
+#: ../../printerdrake.pm_.c:2486
#, fuzzy
msgid "New printer name"
msgstr "Sen impresora"
-#: ../../printerdrake.pm_.c:2296
+#: ../../printerdrake.pm_.c:2489
#, c-format
msgid "Transferring %s..."
msgstr ""
-#: ../../printerdrake.pm_.c:2307
+#: ../../printerdrake.pm_.c:2500
#, c-format
msgid ""
"You have transferred your former default printer (\"%s\"), Should it be also "
"the default printer under the new printing system %s?"
msgstr ""
-#: ../../printerdrake.pm_.c:2316
+#: ../../printerdrake.pm_.c:2510
#, fuzzy
msgid "Refreshing printer data..."
msgstr "Lendo a base de datos de controladores de CUPS..."
-#: ../../printerdrake.pm_.c:2324 ../../printerdrake.pm_.c:2395
-#: ../../printerdrake.pm_.c:2407
+#: ../../printerdrake.pm_.c:2518 ../../printerdrake.pm_.c:2590
+#: ../../printerdrake.pm_.c:2602
#, fuzzy
msgid "Configuration of a remote printer"
msgstr "Configurar a impresora"
-#: ../../printerdrake.pm_.c:2325
+#: ../../printerdrake.pm_.c:2519
#, fuzzy
msgid "Starting network..."
msgstr "Probando a conexión..."
-#: ../../printerdrake.pm_.c:2359 ../../printerdrake.pm_.c:2363
-#: ../../printerdrake.pm_.c:2365
+#: ../../printerdrake.pm_.c:2554 ../../printerdrake.pm_.c:2558
+#: ../../printerdrake.pm_.c:2560
#, fuzzy
msgid "Configure the network now"
msgstr "Configurar a rede"
-#: ../../printerdrake.pm_.c:2360
+#: ../../printerdrake.pm_.c:2555
#, fuzzy
msgid "Network functionality not configured"
msgstr "O monitor non está configurado"
-#: ../../printerdrake.pm_.c:2361
+#: ../../printerdrake.pm_.c:2556
msgid ""
"You are going to configure a remote printer. This needs working network "
"access, but your network is not configured yet. If you go on without network "
@@ -7931,12 +8258,12 @@ msgid ""
"configuring now. How do you want to proceed?"
msgstr ""
-#: ../../printerdrake.pm_.c:2364
+#: ../../printerdrake.pm_.c:2559
#, fuzzy
msgid "Go on without configuring the network"
msgstr "Configurando a rede"
-#: ../../printerdrake.pm_.c:2397
+#: ../../printerdrake.pm_.c:2592
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -7946,34 +8273,34 @@ msgid ""
"\"Printer\""
msgstr ""
-#: ../../printerdrake.pm_.c:2398
+#: ../../printerdrake.pm_.c:2593
msgid ""
"The network access was not running and could not be started. Please check "
"your configuration and your hardware. Then try to configure your remote "
"printer again."
msgstr ""
-#: ../../printerdrake.pm_.c:2408
+#: ../../printerdrake.pm_.c:2603
#, fuzzy
msgid "Restarting printing system..."
msgstr "żQue sistema de impresión desexa usar?"
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2641
#, fuzzy
msgid "high"
msgstr "Alto"
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2641
#, fuzzy
msgid "paranoid"
msgstr "Paranoico"
-#: ../../printerdrake.pm_.c:2447
+#: ../../printerdrake.pm_.c:2642
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr ""
-#: ../../printerdrake.pm_.c:2448
+#: ../../printerdrake.pm_.c:2643
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -7988,12 +8315,12 @@ msgid ""
"Do you really want to configure printing on this machine?"
msgstr ""
-#: ../../printerdrake.pm_.c:2480
+#: ../../printerdrake.pm_.c:2675
#, fuzzy
msgid "Starting the printing system at boot time"
msgstr "żQue sistema de impresión desexa usar?"
-#: ../../printerdrake.pm_.c:2481
+#: ../../printerdrake.pm_.c:2676
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -8007,80 +8334,76 @@ msgid ""
"again?"
msgstr ""
-#: ../../printerdrake.pm_.c:2504 ../../printerdrake.pm_.c:2544
-#: ../../printerdrake.pm_.c:2581 ../../printerdrake.pm_.c:2621
-#: ../../printerdrake.pm_.c:2733
+#: ../../printerdrake.pm_.c:2700 ../../printerdrake.pm_.c:2741
+#: ../../printerdrake.pm_.c:2780 ../../printerdrake.pm_.c:2822
+#: ../../printerdrake.pm_.c:2943
msgid "Checking installed software..."
msgstr ""
-#: ../../printerdrake.pm_.c:2548
+#: ../../printerdrake.pm_.c:2746
msgid "Removing LPRng..."
msgstr ""
-#: ../../printerdrake.pm_.c:2585
+#: ../../printerdrake.pm_.c:2785
msgid "Removing LPD..."
msgstr ""
-#: ../../printerdrake.pm_.c:2657
+#: ../../printerdrake.pm_.c:2858
#, fuzzy
msgid "Select Printer Spooler"
msgstr "Selección da conexión da impresora"
-#: ../../printerdrake.pm_.c:2658
+#: ../../printerdrake.pm_.c:2859
#, fuzzy
msgid "Which printing system (spooler) do you want to use?"
msgstr "żQue sistema de impresión desexa usar?"
-#: ../../printerdrake.pm_.c:2691
+#: ../../printerdrake.pm_.c:2895
#, fuzzy, c-format
msgid "Configuring printer \"%s\"..."
msgstr "Configurar impresora"
-#: ../../printerdrake.pm_.c:2704
+#: ../../printerdrake.pm_.c:2909
#, fuzzy
msgid "Installing Foomatic..."
msgstr "Instalando o paquete %s"
-#: ../../printerdrake.pm_.c:2769 ../../printerdrake.pm_.c:2808
-#: ../../printerdrake.pm_.c:3192 ../../printerdrake.pm_.c:3262
+#: ../../printerdrake.pm_.c:2979 ../../printerdrake.pm_.c:3020
+#: ../../printerdrake.pm_.c:3417 ../../printerdrake.pm_.c:3490
msgid "Printer options"
msgstr "Opcións da impresora"
-#: ../../printerdrake.pm_.c:2778
+#: ../../printerdrake.pm_.c:2989
#, fuzzy
-msgid "Preparing PrinterDrake..."
+msgid "Preparing Printerdrake..."
msgstr "Lendo a base de datos de controladores de CUPS..."
-#: ../../printerdrake.pm_.c:2795 ../../printerdrake.pm_.c:3349
+#: ../../printerdrake.pm_.c:3007 ../../printerdrake.pm_.c:3580
#, fuzzy
msgid "Configuring applications..."
msgstr "Configurar impresora"
-#: ../../printerdrake.pm_.c:2815
+#: ../../printerdrake.pm_.c:3027
#, fuzzy
msgid "Would you like to configure printing?"
msgstr "żDesexa configurar unha impresora?"
-#: ../../printerdrake.pm_.c:2827
+#: ../../printerdrake.pm_.c:3039
msgid "Printing system: "
msgstr ""
-#: ../../printerdrake.pm_.c:2875
-msgid "Printerdrake"
-msgstr "Printerdrake"
-
-#: ../../printerdrake.pm_.c:2879
+#: ../../printerdrake.pm_.c:3099
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; to view information about it; "
"or to make a printer on a remote CUPS server available for Star Office/"
-"OpenOffice.org."
+"OpenOffice.org/GIMP."
msgstr ""
"Estas son as filas de impresión.\n"
"Pode engadir unha nova ou cambiar as que xa existen."
-#: ../../printerdrake.pm_.c:2880
+#: ../../printerdrake.pm_.c:3100
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
@@ -8090,137 +8413,139 @@ msgstr ""
"Estas son as filas de impresión.\n"
"Pode engadir unha nova ou cambiar as que xa existen."
-#: ../../printerdrake.pm_.c:2906
+#: ../../printerdrake.pm_.c:3127
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr ""
-#: ../../printerdrake.pm_.c:2924
+#: ../../printerdrake.pm_.c:3145
#, fuzzy
msgid "Change the printing system"
msgstr "Configurar a rede"
-#: ../../printerdrake.pm_.c:2929 ../../standalone/drakconnect_.c:277
+#: ../../printerdrake.pm_.c:3150 ../../standalone/drakconnect_.c:277
msgid "Normal Mode"
msgstr ""
-#: ../../printerdrake.pm_.c:3085 ../../printerdrake.pm_.c:3135
-#: ../../printerdrake.pm_.c:3343
+#: ../../printerdrake.pm_.c:3310 ../../printerdrake.pm_.c:3360
+#: ../../printerdrake.pm_.c:3573
#, fuzzy
msgid "Do you want to configure another printer?"
msgstr "żDesexa probar a configuración?"
-#: ../../printerdrake.pm_.c:3170
+#: ../../printerdrake.pm_.c:3395
#, fuzzy
msgid "Modify printer configuration"
msgstr "Configuración de Internet"
-#: ../../printerdrake.pm_.c:3172
+#: ../../printerdrake.pm_.c:3397
#, fuzzy, c-format
msgid ""
"Printer %s\n"
"What do you want to modify on this printer?"
msgstr "żDesexa probar a configuración?"
-#: ../../printerdrake.pm_.c:3176
+#: ../../printerdrake.pm_.c:3401
msgid "Do it!"
msgstr ""
-#: ../../printerdrake.pm_.c:3181 ../../printerdrake.pm_.c:3236
+#: ../../printerdrake.pm_.c:3406 ../../printerdrake.pm_.c:3461
#, fuzzy
msgid "Printer connection type"
msgstr "Compartición da conexión á Internet"
-#: ../../printerdrake.pm_.c:3182 ../../printerdrake.pm_.c:3240
+#: ../../printerdrake.pm_.c:3407 ../../printerdrake.pm_.c:3465
#, fuzzy
msgid "Printer name, description, location"
msgstr "Conexión da impresora"
-#: ../../printerdrake.pm_.c:3184 ../../printerdrake.pm_.c:3255
+#: ../../printerdrake.pm_.c:3409 ../../printerdrake.pm_.c:3483
msgid "Printer manufacturer, model, driver"
msgstr ""
-#: ../../printerdrake.pm_.c:3185 ../../printerdrake.pm_.c:3256
+#: ../../printerdrake.pm_.c:3410 ../../printerdrake.pm_.c:3484
msgid "Printer manufacturer, model"
msgstr ""
-#: ../../printerdrake.pm_.c:3194 ../../printerdrake.pm_.c:3266
+#: ../../printerdrake.pm_.c:3419 ../../printerdrake.pm_.c:3494
msgid "Set this printer as the default"
msgstr ""
-#: ../../printerdrake.pm_.c:3196 ../../printerdrake.pm_.c:3271
-msgid "Add this printer to Star Office/OpenOffice.org"
+#: ../../printerdrake.pm_.c:3421 ../../printerdrake.pm_.c:3499
+msgid "Add this printer to Star Office/OpenOffice.org/GIMP"
msgstr ""
-#: ../../printerdrake.pm_.c:3197 ../../printerdrake.pm_.c:3280
-msgid "Remove this printer from Star Office/OpenOffice.org"
+#: ../../printerdrake.pm_.c:3422 ../../printerdrake.pm_.c:3508
+msgid "Remove this printer from Star Office/OpenOffice.org/GIMP"
msgstr ""
-#: ../../printerdrake.pm_.c:3198 ../../printerdrake.pm_.c:3289
+#: ../../printerdrake.pm_.c:3423 ../../printerdrake.pm_.c:3517
#, fuzzy
msgid "Print test pages"
msgstr "Imprimindo páxina(s) de proba..."
-#: ../../printerdrake.pm_.c:3199 ../../printerdrake.pm_.c:3291
+#: ../../printerdrake.pm_.c:3424 ../../printerdrake.pm_.c:3519
#, fuzzy
msgid "Know how to use this printer"
msgstr "żDesexa probar a configuración?"
-#: ../../printerdrake.pm_.c:3201 ../../printerdrake.pm_.c:3293
+#: ../../printerdrake.pm_.c:3426 ../../printerdrake.pm_.c:3521
#, fuzzy
msgid "Remove printer"
msgstr "Impresora remota"
-#: ../../printerdrake.pm_.c:3245
+#: ../../printerdrake.pm_.c:3472
#, fuzzy, c-format
msgid "Removing old printer \"%s\"..."
msgstr "Lendo a base de datos de controladores de CUPS..."
-#: ../../printerdrake.pm_.c:3269
+#: ../../printerdrake.pm_.c:3497
#, fuzzy
msgid "Default printer"
msgstr "Impresora local"
-#: ../../printerdrake.pm_.c:3270
+#: ../../printerdrake.pm_.c:3498
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr ""
-#: ../../printerdrake.pm_.c:3274 ../../printerdrake.pm_.c:3277
-msgid "Adding printer to Star Office/OpenOffice.org"
+#: ../../printerdrake.pm_.c:3502 ../../printerdrake.pm_.c:3505
+msgid "Adding printer to Star Office/OpenOffice.org/GIMP"
msgstr ""
-#: ../../printerdrake.pm_.c:3275
+#: ../../printerdrake.pm_.c:3503
#, c-format
msgid ""
-"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
+"The printer \"%s\" was successfully added to Star Office/OpenOffice.org/GIMP."
msgstr ""
-#: ../../printerdrake.pm_.c:3278
+#: ../../printerdrake.pm_.c:3506
#, c-format
-msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
+msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org/GIMP."
msgstr ""
-#: ../../printerdrake.pm_.c:3283 ../../printerdrake.pm_.c:3286
-msgid "Removing printer from Star Office/OpenOffice.org"
+#: ../../printerdrake.pm_.c:3511 ../../printerdrake.pm_.c:3514
+msgid "Removing printer from Star Office/OpenOffice.org/GIMP"
msgstr ""
-#: ../../printerdrake.pm_.c:3284
+#: ../../printerdrake.pm_.c:3512
#, c-format
msgid ""
-"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
+"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org/"
+"GIMP."
msgstr ""
-#: ../../printerdrake.pm_.c:3287
+#: ../../printerdrake.pm_.c:3515
#, c-format
-msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
+msgid ""
+"Failed to remove the printer \"%s\" from Star Office/OpenOffice.org/GIMP."
msgstr ""
-#: ../../printerdrake.pm_.c:3295
+#: ../../printerdrake.pm_.c:3523
#, fuzzy, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr "żDesexa reiniciar a rede?"
-#: ../../printerdrake.pm_.c:3297
+#: ../../printerdrake.pm_.c:3527
#, fuzzy, c-format
msgid "Removing printer \"%s\"..."
msgstr "Lendo a base de datos de controladores de CUPS..."
@@ -8622,7 +8947,7 @@ msgstr "Internet"
msgid "File sharing"
msgstr ""
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1669
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1744
#, fuzzy
msgid "System"
msgstr "Mouse Systems"
@@ -8681,192 +9006,228 @@ msgstr "Estado:"
msgid "Stop"
msgstr "Sector"
-#: ../../share/advertising/00-thanks.pl_.c:9
-msgid "Thank you for choosing Mandrake Linux 8.2"
+#: ../../share/advertising/01-thanks.pl_.c:9
+msgid "Thank you for choosing Mandrake Linux 9.0"
msgstr ""
-#: ../../share/advertising/00-thanks.pl_.c:10
+#: ../../share/advertising/01-thanks.pl_.c:10
msgid "Welcome to the Open Source world"
msgstr ""
-#: ../../share/advertising/00-thanks.pl_.c:11
+#: ../../share/advertising/01-thanks.pl_.c:11
msgid ""
"The success of MandrakeSoft is based upon the principle of Free Software. "
"Your new operating system is the result of collaborative work on the part of "
"the worldwide Linux Community"
msgstr ""
-#: ../../share/advertising/01-gnu.pl_.c:9
+#: ../../share/advertising/02-community.pl_.c:9
#, fuzzy
-msgid "Join the Free Software world"
+msgid "Get involved in the Free Software world"
msgstr "Resto do mundo"
-#: ../../share/advertising/01-gnu.pl_.c:10
+#: ../../share/advertising/02-community.pl_.c:10
+msgid "Want to know more about the Open Source community?"
+msgstr ""
+
+#: ../../share/advertising/02-community.pl_.c:11
msgid ""
-"Get to know the Open Source community and become a member. Learn, teach, and "
-"help others by joining the many discussion forums that you will find in our "
-"\"Community\" webpages"
+"To share your own knowledge and help build Linux tools, join the discussions "
+"forum you'll find on our \"Community\" webpages"
msgstr ""
-#: ../../share/advertising/02-internet.pl_.c:9
+#: ../../share/advertising/03-internet.pl_.c:9
#, fuzzy
-msgid "Internet and Messaging"
-msgstr "Acceso á Internet"
+msgid "Get the most from the Internet"
+msgstr "Conectar á Internet"
-#: ../../share/advertising/02-internet.pl_.c:10
+#: ../../share/advertising/03-internet.pl_.c:10
msgid ""
-"Mandrake Linux 8.2 provides the best software to access everything the "
-"Internet has to offer: Surf the web & view animations with Mozilla and "
-"Konqueror, exchange email & organize your personal information with "
-"Evolution and Kmail, and much more"
+"Mandrake Linux 9.0 has selected the best software for you. Surf the Web and "
+"view animations with Mozilla and Konqueror, or read your mail and handle "
+"your personal information with Evolution and Kmail"
msgstr ""
-#: ../../share/advertising/03-graphic.pl_.c:9
-#, fuzzy
-msgid "Multimedia and Graphics"
-msgstr "Multimedia - Gráficos"
+#: ../../share/advertising/04-multimedia.pl_.c:9
+msgid "Discover the most up-to-date graphics and multimedia tools!"
+msgstr ""
+
+#: ../../share/advertising/04-multimedia.pl_.c:10
+msgid "Push multimedia to its limits!"
+msgstr ""
-#: ../../share/advertising/03-graphic.pl_.c:10
+#: ../../share/advertising/04-multimedia.pl_.c:11
msgid ""
-"Mandrake Linux 8.2 lets you push your multimedia computer to its limits! Use "
-"the latest software to play music and audio files, edit and organize your "
-"images and photos, watch TV and videos, and much more"
+"Mandrake Linux 9.0 enables you to use the very latest software to play audio "
+"files, edit and handle your images or photos, and play videos"
msgstr ""
-#: ../../share/advertising/04-develop.pl_.c:9
-msgid "Development"
-msgstr "Desenvolvemento"
+#: ../../share/advertising/05-games.pl_.c:9
+msgid "Games"
+msgstr "Xogos"
-#: ../../share/advertising/04-develop.pl_.c:10
+#: ../../share/advertising/05-games.pl_.c:10
msgid ""
-"Mandrake Linux 8.2 is the ultimate development platform. Discover the power "
-"of the GNU gcc compiler as well as the best Open Source development "
-"environments"
+"Mandrake Linux 9.0 provides the best Open Source games - arcade, action, "
+"cards, sports, strategy..."
msgstr ""
-#: ../../share/advertising/05-contcenter.pl_.c:9
-#: ../../standalone/drakbug_.c:69
+#: ../../share/advertising/06-mcc.pl_.c:9 ../../standalone/drakbug_.c:69
#, fuzzy
msgid "Mandrake Control Center"
msgstr "Centro de control"
-#: ../../share/advertising/05-contcenter.pl_.c:10
+#: ../../share/advertising/06-mcc.pl_.c:10
msgid ""
-"The Mandrake Linux 8.2 Control Center is a one-stop location for fully "
-"customizing and configuring your Mandrake system"
+"Mandrake Linux 9.0 provides a powerful tool to fully customize and configure "
+"your machine"
msgstr ""
-#: ../../share/advertising/06-user.pl_.c:9
+#: ../../share/advertising/07-desktop.pl_.c:9
#, fuzzy
msgid "User interfaces"
msgstr "Interface de rede"
-#: ../../share/advertising/06-user.pl_.c:10
+#: ../../share/advertising/07-desktop.pl_.c:10
msgid ""
-"Mandrake Linux 8.2 provides 11 different graphical desktop environments and "
-"window managers to choose from including GNOME 1.4, KDE 2.2.2, Window Maker "
-"0.8, and the rest"
+"Mandrake Linux 9.0 provides 11 user interfaces which can be fully modified: "
+"KDE 3, Gnome 2, WindowMaker..."
msgstr ""
-#: ../../share/advertising/07-server.pl_.c:9
+#: ../../share/advertising/08-development.pl_.c:9
#, fuzzy
-msgid "Server Software"
-msgstr "Servidor de SMB"
+msgid "Development simplified"
+msgstr "Desenvolvemento"
+
+#: ../../share/advertising/08-development.pl_.c:10
+msgid "Mandrake Linux 9.0 is the ultimate development platform"
+msgstr ""
-#: ../../share/advertising/07-server.pl_.c:10
+#: ../../share/advertising/08-development.pl_.c:11
msgid ""
-"Transform your machine into a powerful server with just a few clicks of the "
-"mouse: Web server, email, firewall, router, file and print server, ..."
+"Use the full power of the GNU gcc 3 compiler as well as the best Open Source "
+"development environments"
msgstr ""
-#: ../../share/advertising/08-games.pl_.c:9
-msgid "Games"
-msgstr "Xogos"
+#: ../../share/advertising/09-server.pl_.c:9
+msgid "Turn your machine into a reliable server"
+msgstr ""
-#: ../../share/advertising/08-games.pl_.c:10
+#: ../../share/advertising/09-server.pl_.c:10
msgid ""
-"Mandrake Linux 8.2 provides the best Open Source games - arcade, action, "
-"cards, sports, strategy, ..."
+"Transform your machine into a powerful server in a few clicks of your mouse: "
+"Web server, mail, firewall, router, file and print server..."
msgstr ""
-#: ../../share/advertising/09-MDKcampus.pl_.c:9
-msgid "MandrakeCampus"
+#: ../../share/advertising/10-mnf.pl_.c:9
+msgid "Optimize your security"
msgstr ""
-#: ../../share/advertising/09-MDKcampus.pl_.c:10
+#: ../../share/advertising/10-mnf.pl_.c:10
msgid ""
-"Would you like to learn Linux simply, quickly, and for free? MandrakeSoft "
-"provides free Linux training, as well as a way to test your progress, at "
-"MandrakeCampus -- our online training center"
+"The MandrakeSecurity range includes the Multi Network Firewall product (M.N."
+"F.)"
msgstr ""
-#: ../../share/advertising/10-MDKexpert.pl_.c:9
-#, fuzzy
-msgid "MandrakeExpert"
-msgstr "Experto"
+#: ../../share/advertising/10-mnf.pl_.c:11
+msgid ""
+"This firewall product includes network features which allow you to fulfill "
+"all your security needs"
+msgstr ""
+
+#: ../../share/advertising/10-mnf.pl_.c:12
+msgid "This product is available on MandrakeStore website"
+msgstr ""
+
+#: ../../share/advertising/11-mdkstore.pl_.c:9
+msgid "The official MandrakeSoft store"
+msgstr ""
+
+#: ../../share/advertising/11-mdkstore.pl_.c:10
+msgid ""
+"Our full range of Linux solutions, as well as special offers on products and "
+"'goodies', are available online at our e-store"
+msgstr ""
+
+#: ../../share/advertising/12-mdkstore.pl_.c:9
+msgid "Strategic partners"
+msgstr ""
-#: ../../share/advertising/10-MDKexpert.pl_.c:10
+#: ../../share/advertising/12-mdkstore.pl_.c:10
msgid ""
-"Quality support from the Linux Community, and from MandrakeSoft, is just "
-"around the corner. And if you're already a Linux veteran, become an \"Expert"
-"\" and share your knowledge at our support website"
+"MandrakeSoft works alongside a selection of companies offering professional "
+"solutions compatible with Mandrake Linux; a list of these partners is "
+"available on the MandrakeStore"
msgstr ""
-#: ../../share/advertising/11-consul.pl_.c:9
-msgid "MandrakeConsulting"
+#: ../../share/advertising/13-mdkcampus.pl_.c:9
+msgid "Discover MandrakeSoft's training catalogue Linux-Campus"
msgstr ""
-#: ../../share/advertising/11-consul.pl_.c:10
+#: ../../share/advertising/13-mdkcampus.pl_.c:10
msgid ""
-"For all of your IT projects, our consultants are ready to analyze your "
-"requirements and offer a customized solution. Benefit from MandrakeSoft's "
-"vast experience as a Linux producer to provide a true IT alternative for "
-"your business organization"
+"The training program has been create to respond to the needs of both users "
+"and experts (Network and System administrations)"
msgstr ""
-#: ../../share/advertising/12-MDKstore.pl_.c:9
+#: ../../share/advertising/13-mdkcampus.pl_.c:11
+msgid "Certify yourself on Linux"
+msgstr ""
+
+#: ../../share/advertising/13-mdkcampus.pl_.c:12
+msgid ""
+"Whether you choose to teach yourself online or via our network of training "
+"partners, the Linux-Campus catalogue prepares you for the acknowledged LPI "
+"certification program (worldwide professional technical certification)"
+msgstr ""
+
+#: ../../share/advertising/14-mdkexpert.pl_.c:9
#, fuzzy
-msgid "MandrakeStore"
-msgstr "obrigatorio"
+msgid "Become a MandrakeExpert"
+msgstr "Experto"
-#: ../../share/advertising/12-MDKstore.pl_.c:10
+#: ../../share/advertising/14-mdkexpert.pl_.c:10
msgid ""
-"A full range of Linux solutions, as well as special offers on products and "
-"'goodies', are available online at our e-store"
+"Find the solutions to your problems via MandrakeSoft's online support "
+"platform"
msgstr ""
-#: ../../share/advertising/13-Nvert.pl_.c:9
+#: ../../share/advertising/14-mdkexpert.pl_.c:11
msgid ""
-"For more information on MandrakeSoft's Professional Services and commercial "
-"offerings, please see the following web page:"
+"Join the MandrakeSoft support teams and the Linux Community online to share "
+"your knowledge and help others by becoming a recognized Expert on the online "
+"technical support website:"
msgstr ""
-#: ../../share/advertising/13-Nvert.pl_.c:11
-msgid "http://www.mandrakesoft.com/sales/contact"
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:9
+#, fuzzy
+msgid "MandrakeExpert Corporate"
+msgstr "Experto"
+
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:10
+msgid "An online platform to respond to company's specific support needs"
+msgstr ""
+
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:11
+msgid ""
+"All incidents will be followed up by a single qualified MandrakeSoft "
+"technical expert."
msgstr ""
-#: ../../standalone.pm_.c:40
+#: ../../standalone.pm_.c:41
#, fuzzy
msgid "Installing packages..."
msgstr "Instalando o paquete %s"
-#: ../../standalone/XFdrake_.c:143
+#: ../../standalone/XFdrake_.c:145
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "Saia da sesión e use Ctrl-Alt-BackSpace"
-#: ../../standalone/XFdrake_.c:147
+#: ../../standalone/XFdrake_.c:149
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "Entre de novo en %s para activar os cambios"
-#: ../../standalone/diskdrake_.c:81
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I'll try to go on blanking bad partitions"
-msgstr ""
-"Non se pode ler a táboa de particións, está demasiado deteriorada :-(\n"
-"Probarase a ir pońendo en branco as particións erróneas"
-
#: ../../standalone/drakTermServ_.c:188
#, fuzzy
msgid "Mandrake Terminal Server Configuration"
@@ -8910,12 +9271,13 @@ msgstr "Engadir usuario"
msgid "Add/Del Clients"
msgstr "Cliente DHCP"
-#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3282
-#: ../../standalone/drakbackup_.c:3315 ../../standalone/drakbackup_.c:3341
-#: ../../standalone/drakbackup_.c:3368 ../../standalone/drakbackup_.c:3395
-#: ../../standalone/drakbackup_.c:3434 ../../standalone/drakbackup_.c:3455
-#: ../../standalone/drakbackup_.c:3482 ../../standalone/drakbackup_.c:3508
-#: ../../standalone/drakbackup_.c:3533 ../../standalone/drakfont_.c:700
+#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3930
+#: ../../standalone/drakbackup_.c:3963 ../../standalone/drakbackup_.c:3989
+#: ../../standalone/drakbackup_.c:4016 ../../standalone/drakbackup_.c:4043
+#: ../../standalone/drakbackup_.c:4082 ../../standalone/drakbackup_.c:4103
+#: ../../standalone/drakbackup_.c:4130 ../../standalone/drakbackup_.c:4160
+#: ../../standalone/drakbackup_.c:4186 ../../standalone/drakbackup_.c:4211
+#: ../../standalone/drakfont_.c:700
msgid "Help"
msgstr "Axuda"
@@ -9075,8 +9437,8 @@ msgid ""
"The parameters of the auto-install are available in the sections on the left"
msgstr ""
-#: ../../standalone/drakautoinst_.c:239 ../../standalone/drakgw_.c:548
-#: ../../standalone/scannerdrake_.c:105
+#: ../../standalone/drakautoinst_.c:239 ../../standalone/drakgw_.c:484
+#: ../../standalone/scannerdrake_.c:119
msgid "Congratulations!"
msgstr "ĄNoraboa!"
@@ -9101,27 +9463,31 @@ msgstr "Engadir usuario"
msgid "Remove the last item"
msgstr "Formatando o ficheiro loopback %s"
-#: ../../standalone/drakbackup_.c:625
+#: ../../standalone/drakbackup_.c:619
msgid "Cron not available yet as non-root"
msgstr ""
-#: ../../standalone/drakbackup_.c:731
+#: ../../standalone/drakbackup_.c:725
msgid "WARNING"
msgstr ""
-#: ../../standalone/drakbackup_.c:732
+#: ../../standalone/drakbackup_.c:726
#, fuzzy
msgid "FATAL"
msgstr "FAT"
-#: ../../standalone/drakbackup_.c:744
+#: ../../standalone/drakbackup_.c:727
+msgid "INFO"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:739
msgid ""
"\n"
" DrakBackup Report \n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:745
+#: ../../standalone/drakbackup_.c:740
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -9129,7 +9495,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:749
+#: ../../standalone/drakbackup_.c:744
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -9137,13 +9503,20 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:770 ../../standalone/drakbackup_.c:840
-#: ../../standalone/drakbackup_.c:894
+#: ../../standalone/drakbackup_.c:765 ../../standalone/drakbackup_.c:835
+#: ../../standalone/drakbackup_.c:889
#, fuzzy
msgid "Total progess"
msgstr "Probar portos"
-#: ../../standalone/drakbackup_.c:822
+#: ../../standalone/drakbackup_.c:788
+msgid ""
+"Sorry, perl-Expect is not installed/enabled. To use\n"
+"this feature, install perl-Expect and comment lines 772-774,\n"
+" as well as 788,789. Then uncomment line 787."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:817
#, c-format
msgid ""
"%s exists, delete?\n"
@@ -9152,16 +9525,41 @@ msgid ""
" need to purge the entry from authorized_keys on the server."
msgstr ""
-#: ../../standalone/drakbackup_.c:831
+#: ../../standalone/drakbackup_.c:826
msgid "This may take a moment to generate the keys."
msgstr ""
-#: ../../standalone/drakbackup_.c:838
+#: ../../standalone/drakbackup_.c:833
#, c-format
msgid "ERROR: Cannot spawn %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:865
+#: ../../standalone/drakbackup_.c:850
+#, c-format
+msgid "No password prompt on %s at port %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:851
+#, fuzzy, c-format
+msgid "Bad password on %s"
+msgstr "Sen contrasinal"
+
+#: ../../standalone/drakbackup_.c:852
+#, c-format
+msgid "Permission denied transferring %s to %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:853
+#, fuzzy, c-format
+msgid "Can't find %s on %s"
+msgstr "Adaptador %s: %s"
+
+#: ../../standalone/drakbackup_.c:856
+#, c-format
+msgid "%s not responding"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:860
#, c-format
msgid ""
"Transfer successful\n"
@@ -9172,63 +9570,68 @@ msgid ""
"without being prompted for a password."
msgstr ""
-#: ../../standalone/drakbackup_.c:908
+#: ../../standalone/drakbackup_.c:903
msgid "WebDAV remote site already in sync!"
msgstr ""
-#: ../../standalone/drakbackup_.c:912
+#: ../../standalone/drakbackup_.c:907
msgid "WebDAV transfer failed!"
msgstr ""
-#: ../../standalone/drakbackup_.c:934
+#: ../../standalone/drakbackup_.c:928
msgid "No CDR/DVDR in drive!"
msgstr ""
-#: ../../standalone/drakbackup_.c:938
+#: ../../standalone/drakbackup_.c:932
msgid "Does not appear to be recordable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:942
+#: ../../standalone/drakbackup_.c:936
msgid "Not erasable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:981
+#: ../../standalone/drakbackup_.c:975
msgid "This may take a moment to erase the media."
msgstr ""
-#: ../../standalone/drakbackup_.c:1045
+#: ../../standalone/drakbackup_.c:1060
msgid "Permission problem accessing CD."
msgstr ""
-#: ../../standalone/drakbackup_.c:1144 ../../standalone/drakbackup_.c:1193
+#: ../../standalone/drakbackup_.c:1087
+#, c-format
+msgid "No tape in %s!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1199 ../../standalone/drakbackup_.c:1248
msgid "Backup system files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:1194 ../../standalone/drakbackup_.c:1261
+#: ../../standalone/drakbackup_.c:1249 ../../standalone/drakbackup_.c:1316
#, fuzzy
msgid "Hard Disk Backup files..."
msgstr "Ficheiro de backup incorrecto"
-#: ../../standalone/drakbackup_.c:1206
+#: ../../standalone/drakbackup_.c:1261
#, fuzzy
msgid "Backup User files..."
msgstr "Ficheiro de backup incorrecto"
-#: ../../standalone/drakbackup_.c:1207
+#: ../../standalone/drakbackup_.c:1262
msgid "Hard Disk Backup Progress..."
msgstr ""
-#: ../../standalone/drakbackup_.c:1260
+#: ../../standalone/drakbackup_.c:1315
#, fuzzy
msgid "Backup Other files..."
msgstr "Ficheiro de backup incorrecto"
-#: ../../standalone/drakbackup_.c:1266
+#: ../../standalone/drakbackup_.c:1321
#, fuzzy
msgid "No changes to backup!"
msgstr "Ficheiro de backup incorrecto"
-#: ../../standalone/drakbackup_.c:1282 ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1337 ../../standalone/drakbackup_.c:1360
#, c-format
msgid ""
"\n"
@@ -9236,799 +9639,922 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1289
+#: ../../standalone/drakbackup_.c:1344
#, c-format
msgid ""
-"file list sent by FTP : %s\n"
+"file list sent by FTP: %s\n"
" "
msgstr ""
-#: ../../standalone/drakbackup_.c:1292
+#: ../../standalone/drakbackup_.c:1347
msgid ""
"\n"
" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1310
+#: ../../standalone/drakbackup_.c:1365
msgid ""
"\n"
"Drakbackup activities via CD:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1315
+#: ../../standalone/drakbackup_.c:1370
msgid ""
"\n"
"Drakbackup activities via tape:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1324
+#: ../../standalone/drakbackup_.c:1379
#, fuzzy
msgid " Error during mail sending. \n"
msgstr "Erro lendo o ficheiro %s"
-#: ../../standalone/drakbackup_.c:1346
+#: ../../standalone/drakbackup_.c:1404
msgid "Can't create catalog!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1459 ../../standalone/drakbackup_.c:1470
-#: ../../standalone/drakbackup_.c:1481 ../../standalone/drakfont_.c:1004
+#: ../../standalone/drakbackup_.c:1517 ../../standalone/drakbackup_.c:1528
+#: ../../standalone/drakfont_.c:1004
#, fuzzy
msgid "File Selection"
msgstr "Selección dos grupos de paquetes"
-#: ../../standalone/drakbackup_.c:1486
+#: ../../standalone/drakbackup_.c:1556
msgid "Select the files or directories and click on 'Add'"
msgstr ""
-#: ../../standalone/drakbackup_.c:1525
+#: ../../standalone/drakbackup_.c:1600
msgid ""
"\n"
"Please check all options that you need.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1526
+#: ../../standalone/drakbackup_.c:1601
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1527
+#: ../../standalone/drakbackup_.c:1602
#, fuzzy
msgid "Backup your System files. (/etc directory)"
msgstr "Ficheiro de backup incorrecto"
-#: ../../standalone/drakbackup_.c:1528
+#: ../../standalone/drakbackup_.c:1603
msgid "Use incremental backup (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1529
+#: ../../standalone/drakbackup_.c:1604
msgid "Do not include critical files (passwd, group, fstab)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1530
+#: ../../standalone/drakbackup_.c:1605
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr ""
-#: ../../standalone/drakbackup_.c:1547
+#: ../../standalone/drakbackup_.c:1622
#, fuzzy
msgid "Please check all users that you want to include in your backup."
msgstr "Escolla os paquetes que desexa instalar."
-#: ../../standalone/drakbackup_.c:1574
+#: ../../standalone/drakbackup_.c:1649
msgid "Do not include the browser cache"
msgstr ""
-#: ../../standalone/drakbackup_.c:1575 ../../standalone/drakbackup_.c:1599
+#: ../../standalone/drakbackup_.c:1650 ../../standalone/drakbackup_.c:1674
msgid "Use Incremental Backups (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1597 ../../standalone/drakfont_.c:1058
+#: ../../standalone/drakbackup_.c:1672 ../../standalone/drakfont_.c:1058
#, fuzzy
msgid "Remove Selected"
msgstr "Eliminar fila"
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:1710
msgid "Windows (FAT32)"
msgstr "Windows(FAT32)"
-#: ../../standalone/drakbackup_.c:1674
+#: ../../standalone/drakbackup_.c:1749
msgid "Users"
msgstr "Usuarios"
-#: ../../standalone/drakbackup_.c:1700
+#: ../../standalone/drakbackup_.c:1775
#, fuzzy
msgid "Use network connection to backup"
msgstr "Ficheiro de backup incorrecto"
-#: ../../standalone/drakbackup_.c:1706
+#: ../../standalone/drakbackup_.c:1777
+msgid "Net Method:"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1781
msgid "Use Expect for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1707
+#: ../../standalone/drakbackup_.c:1782
msgid ""
"Create/Transfer\n"
"backup keys for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1708
+#: ../../standalone/drakbackup_.c:1783
msgid ""
" Transfer \n"
"Now"
msgstr ""
-#: ../../standalone/drakbackup_.c:1709
+#: ../../standalone/drakbackup_.c:1784
msgid "Keys in place already"
msgstr ""
-#: ../../standalone/drakbackup_.c:1713
+#: ../../standalone/drakbackup_.c:1788
#, fuzzy
msgid "Please enter the host name or IP."
msgstr "Probe o seu rato"
-#: ../../standalone/drakbackup_.c:1718
+#: ../../standalone/drakbackup_.c:1793
msgid ""
"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
-#: ../../standalone/drakbackup_.c:1723
+#: ../../standalone/drakbackup_.c:1798
#, fuzzy
msgid "Please enter your login"
msgstr "Tente de novo"
-#: ../../standalone/drakbackup_.c:1728
+#: ../../standalone/drakbackup_.c:1803
#, fuzzy
msgid "Please enter your password"
msgstr "Tente de novo"
-#: ../../standalone/drakbackup_.c:1734
+#: ../../standalone/drakbackup_.c:1809
#, fuzzy
msgid "Remember this password"
msgstr "Sen contrasinal"
-#: ../../standalone/drakbackup_.c:1745
+#: ../../standalone/drakbackup_.c:1820
msgid "Need hostname, username and password!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1841
+#: ../../standalone/drakbackup_.c:1915
msgid "Use CD/DVDROM to backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1844
+#: ../../standalone/drakbackup_.c:1918
msgid ""
"Please choose your CD/DVD device\n"
"(Press Enter to propogate settings to other fields.\n"
"This field isn't necessary, only a tool to fill in the form.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1849
+#: ../../standalone/drakbackup_.c:1923
#, fuzzy
msgid "Please choose your CD/DVD media size"
msgstr "Escolla a disposición do seu teclado."
-#: ../../standalone/drakbackup_.c:1855
+#: ../../standalone/drakbackup_.c:1929
#, fuzzy
msgid "Please check for multisession CD"
msgstr "Prema nunha partición"
-#: ../../standalone/drakbackup_.c:1861
+#: ../../standalone/drakbackup_.c:1935
#, fuzzy
msgid "Please check if you are using CDRW media"
msgstr "Prema nunha partición"
-#: ../../standalone/drakbackup_.c:1867
+#: ../../standalone/drakbackup_.c:1941
#, fuzzy
msgid "Please check if you want to erase your RW media (1st Session)"
msgstr "Prema nunha partición"
-#: ../../standalone/drakbackup_.c:1868
+#: ../../standalone/drakbackup_.c:1942
msgid " Erase Now "
msgstr ""
-#: ../../standalone/drakbackup_.c:1874
+#: ../../standalone/drakbackup_.c:1948
#, fuzzy
msgid "Please check if you are using a DVDR device"
msgstr "Prema nunha partición"
-#: ../../standalone/drakbackup_.c:1880
+#: ../../standalone/drakbackup_.c:1954
#, fuzzy
msgid "Please check if you are using a DVDRAM device"
msgstr "Prema nunha partición"
-#: ../../standalone/drakbackup_.c:1893
+#: ../../standalone/drakbackup_.c:1967
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
msgstr ""
-#: ../../standalone/drakbackup_.c:1926
+#: ../../standalone/drakbackup_.c:2000
#, fuzzy
msgid "No CD device defined!"
msgstr "Seleccione un ficheiro"
-#: ../../standalone/drakbackup_.c:1974
+#: ../../standalone/drakbackup_.c:2048
#, fuzzy
msgid "Use tape to backup"
msgstr "Ficheiro de backup incorrecto"
-#: ../../standalone/drakbackup_.c:1977
+#: ../../standalone/drakbackup_.c:2051
msgid "Please enter the device name to use for backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1983
+#: ../../standalone/drakbackup_.c:2057
#, fuzzy
msgid "Please check if you want to use the non-rewinding device."
msgstr "Escolla os paquetes que desexa instalar."
-#: ../../standalone/drakbackup_.c:1989
+#: ../../standalone/drakbackup_.c:2063
#, fuzzy
msgid "Please check if you want to erase your tape before the backup."
msgstr "Escolla os paquetes que desexa instalar."
-#: ../../standalone/drakbackup_.c:1995
+#: ../../standalone/drakbackup_.c:2069
#, fuzzy
msgid "Please check if you want to eject your tape after the backup."
msgstr "Escolla os paquetes que desexa instalar."
-#: ../../standalone/drakbackup_.c:2001 ../../standalone/drakbackup_.c:2074
-#: ../../standalone/drakbackup_.c:3025
+#: ../../standalone/drakbackup_.c:2075 ../../standalone/drakbackup_.c:2149
+#: ../../standalone/drakbackup_.c:3116
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:2066
+#: ../../standalone/drakbackup_.c:2140
#, fuzzy
msgid "Please enter the directory to save to:"
msgstr "Probe o seu rato"
-#: ../../standalone/drakbackup_.c:2080 ../../standalone/drakbackup_.c:3031
+#: ../../standalone/drakbackup_.c:2155 ../../standalone/drakbackup_.c:3122
#, fuzzy
msgid "Use quota for backup files."
msgstr "Ficheiro de backup incorrecto"
-#: ../../standalone/drakbackup_.c:2146
+#: ../../standalone/drakbackup_.c:2221
#, fuzzy
msgid "Network"
msgstr "Interface de rede"
-#: ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:2226
msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2156
+#: ../../standalone/drakbackup_.c:2231
msgid "HardDrive / NFS"
msgstr ""
-#: ../../standalone/drakbackup_.c:2161
+#: ../../standalone/drakbackup_.c:2236
#, fuzzy
msgid "Tape"
msgstr "Tipo"
-#: ../../standalone/drakbackup_.c:2175 ../../standalone/drakbackup_.c:2179
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2250 ../../standalone/drakbackup_.c:2254
+#: ../../standalone/drakbackup_.c:2258
msgid "hourly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2176 ../../standalone/drakbackup_.c:2180
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2251 ../../standalone/drakbackup_.c:2255
+#: ../../standalone/drakbackup_.c:2258
msgid "daily"
msgstr ""
-#: ../../standalone/drakbackup_.c:2177 ../../standalone/drakbackup_.c:2181
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2252 ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2258
msgid "weekly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2178 ../../standalone/drakbackup_.c:2182
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2253 ../../standalone/drakbackup_.c:2257
+#: ../../standalone/drakbackup_.c:2258
msgid "monthly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2196
+#: ../../standalone/drakbackup_.c:2271
#, fuzzy
msgid "Use daemon"
msgstr "Nome de usuario"
-#: ../../standalone/drakbackup_.c:2201
+#: ../../standalone/drakbackup_.c:2276
#, fuzzy
msgid ""
"Please choose the time \n"
"interval between each backup"
msgstr "Escolla os paquetes que desexa instalar."
-#: ../../standalone/drakbackup_.c:2207
+#: ../../standalone/drakbackup_.c:2282
#, fuzzy
msgid ""
"Please choose the\n"
"media for backup."
msgstr "Escolla a lingua que desexe usar."
-#: ../../standalone/drakbackup_.c:2214
+#: ../../standalone/drakbackup_.c:2289
msgid ""
"Please be sure that the cron daemon is included in your services. \n"
"\n"
"Note that currently all 'net' medias also use the hard drive."
msgstr ""
-#: ../../standalone/drakbackup_.c:2251
-msgid "Send mail report after each backup to :"
+#: ../../standalone/drakbackup_.c:2326
+msgid "Send mail report after each backup to:"
msgstr ""
-#: ../../standalone/drakbackup_.c:2257
+#: ../../standalone/drakbackup_.c:2332
msgid "Delete Hard Drive tar files after backup to other media."
msgstr ""
-#: ../../standalone/drakbackup_.c:2296
+#: ../../standalone/drakbackup_.c:2371
#, fuzzy
msgid "What"
msgstr "Agarde"
-#: ../../standalone/drakbackup_.c:2301
+#: ../../standalone/drakbackup_.c:2376
#, fuzzy
msgid "Where"
msgstr "Roda"
-#: ../../standalone/drakbackup_.c:2306
+#: ../../standalone/drakbackup_.c:2381
#, fuzzy
msgid "When"
msgstr "Roda"
-#: ../../standalone/drakbackup_.c:2311
+#: ../../standalone/drakbackup_.c:2386
#, fuzzy
msgid "More Options"
msgstr "Opcións do módulo:"
-#: ../../standalone/drakbackup_.c:2330 ../../standalone/drakbackup_.c:3873
+#: ../../standalone/drakbackup_.c:2405 ../../standalone/drakbackup_.c:4530
#, fuzzy
msgid "Drakbackup Configuration"
msgstr "Configuración da rede"
-#: ../../standalone/drakbackup_.c:2348
+#: ../../standalone/drakbackup_.c:2423
#, fuzzy
msgid "Please choose where you want to backup"
msgstr "Escolla os paquetes que desexa instalar."
-#: ../../standalone/drakbackup_.c:2350
+#: ../../standalone/drakbackup_.c:2425
msgid "on Hard Drive"
msgstr ""
-#: ../../standalone/drakbackup_.c:2360
+#: ../../standalone/drakbackup_.c:2435
msgid "across Network"
msgstr ""
-#: ../../standalone/drakbackup_.c:2370
+#: ../../standalone/drakbackup_.c:2445
msgid "on CDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2378
+#: ../../standalone/drakbackup_.c:2453
msgid "on Tape Device"
msgstr ""
-#: ../../standalone/drakbackup_.c:2421
+#: ../../standalone/drakbackup_.c:2496
#, fuzzy
msgid "Please choose what you want to backup"
msgstr "Escolla os paquetes que desexa instalar."
-#: ../../standalone/drakbackup_.c:2422
+#: ../../standalone/drakbackup_.c:2497
#, fuzzy
msgid "Backup system"
msgstr "Sistemas de ficheiros"
-#: ../../standalone/drakbackup_.c:2423
+#: ../../standalone/drakbackup_.c:2498
msgid "Backup Users"
msgstr ""
-#: ../../standalone/drakbackup_.c:2426
+#: ../../standalone/drakbackup_.c:2501
msgid "Select user manually"
msgstr ""
-#: ../../standalone/drakbackup_.c:2508
+#: ../../standalone/drakbackup_.c:2584
msgid ""
"\n"
"Backup Sources: \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2509
+#: ../../standalone/drakbackup_.c:2585
msgid ""
"\n"
"- System Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2511
+#: ../../standalone/drakbackup_.c:2587
#, fuzzy
msgid ""
"\n"
"- User Files:\n"
msgstr "Ficheiros:\n"
-#: ../../standalone/drakbackup_.c:2513
+#: ../../standalone/drakbackup_.c:2589
#, fuzzy
msgid ""
"\n"
"- Other Files:\n"
msgstr "Ficheiros:\n"
-#: ../../standalone/drakbackup_.c:2515
+#: ../../standalone/drakbackup_.c:2591
#, c-format
msgid ""
"\n"
-"- Save on Hard drive on path : %s\n"
+"- Save on Hard drive on path: %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2518
+#: ../../standalone/drakbackup_.c:2594
msgid ""
"\n"
"- Delete hard drive tar files after backup.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2524
+#: ../../standalone/drakbackup_.c:2600
msgid ""
"\n"
"- Burn to CD"
msgstr ""
-#: ../../standalone/drakbackup_.c:2525
+#: ../../standalone/drakbackup_.c:2601
msgid "RW"
msgstr ""
-#: ../../standalone/drakbackup_.c:2526
+#: ../../standalone/drakbackup_.c:2602
#, fuzzy, c-format
-msgid " on device : %s"
+msgid " on device: %s"
msgstr "Dispositivo do rato: %s\n"
-#: ../../standalone/drakbackup_.c:2527
+#: ../../standalone/drakbackup_.c:2603
msgid " (multi-session)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2528
+#: ../../standalone/drakbackup_.c:2604
#, c-format
msgid ""
"\n"
-"- Save to Tape on device : %s"
+"- Save to Tape on device: %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2529
+#: ../../standalone/drakbackup_.c:2605
#, c-format
msgid "\t\tErase=%s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2532
+#: ../../standalone/drakbackup_.c:2608
#, c-format
msgid ""
"\n"
-"- Save via %s on host : %s\n"
+"- Save via %s on host: %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2533
+#: ../../standalone/drakbackup_.c:2609
#, c-format
msgid ""
"\t\t user name: %s\n"
"\t\t on path: %s \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2534
+#: ../../standalone/drakbackup_.c:2610
#, fuzzy
msgid ""
"\n"
"- Options:\n"
msgstr "Opcións"
-#: ../../standalone/drakbackup_.c:2535
+#: ../../standalone/drakbackup_.c:2611
msgid "\tDo not include System Files\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2538
+#: ../../standalone/drakbackup_.c:2614
msgid "\tBackups use tar and bzip2\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2540
+#: ../../standalone/drakbackup_.c:2616
msgid "\tBackups use tar and gzip\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2543
+#: ../../standalone/drakbackup_.c:2619
#, c-format
msgid ""
"\n"
-"- Daemon (%s) include :\n"
+"- Daemon (%s) include:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2544
+#: ../../standalone/drakbackup_.c:2620
msgid "\t-Hard drive.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2545
+#: ../../standalone/drakbackup_.c:2621
msgid "\t-CDROM.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2546
+#: ../../standalone/drakbackup_.c:2622
msgid "\t-Tape \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2547
+#: ../../standalone/drakbackup_.c:2623
msgid "\t-Network by FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2548
+#: ../../standalone/drakbackup_.c:2624
msgid "\t-Network by SSH.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2549
+#: ../../standalone/drakbackup_.c:2625
msgid "\t-Network by rsync.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2550
+#: ../../standalone/drakbackup_.c:2626
msgid "\t-Network by webdav.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2552
+#: ../../standalone/drakbackup_.c:2628
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2558
+#: ../../standalone/drakbackup_.c:2634
msgid ""
"List of data to restore:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2725
+#: ../../standalone/drakbackup_.c:2801
msgid ""
"List of data corrupted:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2727
+#: ../../standalone/drakbackup_.c:2803
#, fuzzy
msgid "Please uncheck or remove it on next time."
msgstr "Escolla o porto serie onde está conectado o seu módem."
-#: ../../standalone/drakbackup_.c:2737
+#: ../../standalone/drakbackup_.c:2813
msgid "Backup files are corrupted"
msgstr ""
-#: ../../standalone/drakbackup_.c:2758
+#: ../../standalone/drakbackup_.c:2834
msgid " All of your selected data have been "
msgstr ""
-#: ../../standalone/drakbackup_.c:2759
+#: ../../standalone/drakbackup_.c:2835
#, c-format
msgid " Successfuly Restored on %s "
msgstr ""
-#: ../../standalone/drakbackup_.c:2877
+#: ../../standalone/drakbackup_.c:2953
#, fuzzy
msgid " Restore Configuration "
msgstr "Configuración da rede"
-#: ../../standalone/drakbackup_.c:2895
+#: ../../standalone/drakbackup_.c:2971
msgid "OK to restore the other files."
msgstr ""
-#: ../../standalone/drakbackup_.c:2912
+#: ../../standalone/drakbackup_.c:2988
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2975
+#: ../../standalone/drakbackup_.c:3066
#, fuzzy
msgid "Backup the system files before:"
msgstr "Ficheiro de backup incorrecto"
-#: ../../standalone/drakbackup_.c:2977
+#: ../../standalone/drakbackup_.c:3068
#, fuzzy
msgid "please choose the date to restore"
msgstr "Escolla o seu tipo de rato."
-#: ../../standalone/drakbackup_.c:3014
+#: ../../standalone/drakbackup_.c:3105
#, fuzzy
msgid "Use Hard Disk to backup"
msgstr "Ficheiro de backup incorrecto"
-#: ../../standalone/drakbackup_.c:3017
+#: ../../standalone/drakbackup_.c:3108
#, fuzzy
msgid "Please enter the directory to save:"
msgstr "Probe o seu rato"
-#: ../../standalone/drakbackup_.c:3060
+#: ../../standalone/drakbackup_.c:3151
#, fuzzy
msgid "FTP Connection"
msgstr "Conexión LAN"
-#: ../../standalone/drakbackup_.c:3067
+#: ../../standalone/drakbackup_.c:3158
#, fuzzy
msgid "Secure Connection"
msgstr "Selección da conexión da impresora"
-#: ../../standalone/drakbackup_.c:3093
+#: ../../standalone/drakbackup_.c:3184
#, fuzzy
msgid "Restore from Hard Disk."
msgstr "Restaurar a partir dun disquete"
-#: ../../standalone/drakbackup_.c:3095
+#: ../../standalone/drakbackup_.c:3186
msgid "Please enter the directory where backups are stored"
msgstr ""
-#: ../../standalone/drakbackup_.c:3157
+#: ../../standalone/drakbackup_.c:3254
#, fuzzy
msgid "Select another media to restore from"
msgstr "Escolla o seu tipo de rato."
-#: ../../standalone/drakbackup_.c:3159
+#: ../../standalone/drakbackup_.c:3256
#, fuzzy
msgid "Other Media"
msgstr "Outros"
-#: ../../standalone/drakbackup_.c:3164
+#: ../../standalone/drakbackup_.c:3261
#, fuzzy
msgid "Restore system"
msgstr "Instalar sistema"
-#: ../../standalone/drakbackup_.c:3165
+#: ../../standalone/drakbackup_.c:3262
#, fuzzy
msgid "Restore Users"
msgstr "Restaurar a partir dun ficheiro"
-#: ../../standalone/drakbackup_.c:3166
+#: ../../standalone/drakbackup_.c:3263
#, fuzzy
msgid "Restore Other"
msgstr "Restaurar a partir dun ficheiro"
-#: ../../standalone/drakbackup_.c:3168
+#: ../../standalone/drakbackup_.c:3265
#, fuzzy
msgid "select path to restore (instead of /)"
msgstr "Escolla o seu tipo de rato."
-#: ../../standalone/drakbackup_.c:3172
+#: ../../standalone/drakbackup_.c:3269
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:3174
+#: ../../standalone/drakbackup_.c:3271
msgid "Remove user directories before restore."
msgstr ""
-#: ../../standalone/drakbackup_.c:3232
+#: ../../standalone/drakbackup_.c:3384
+msgid ""
+"Restore Selected\n"
+"Catalog Entry"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3394
+#, fuzzy
+msgid ""
+"Restore Selected\n"
+"Files"
+msgstr "Eliminar fila"
+
+#: ../../standalone/drakbackup_.c:3411
+#, fuzzy
+msgid ""
+"Change\n"
+"Restore Path"
+msgstr "Restaurar a partir dun ficheiro"
+
+#: ../../standalone/drakbackup_.c:3477
+#, c-format
+msgid "Backup files not found at %s."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3490
+#, c-format
+msgid ""
+"Insert the CD with volume label %s\n"
+" in the CD drive under mount point /mnt/cdrom"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3490
+#, fuzzy
+msgid "Restore From CD"
+msgstr "Restaurar a partir dun disquete"
+
+#: ../../standalone/drakbackup_.c:3492
+#, c-format
+msgid "Not the correct CD label. Disk is labelled %s."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3502
+#, c-format
+msgid ""
+"Insert the tape with volume label %s\n"
+" in the tape drive device %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3502
+#, fuzzy
+msgid "Restore From Tape"
+msgstr "Táboa de particións de rescate"
+
+#: ../../standalone/drakbackup_.c:3504
+#, c-format
+msgid "Not the correct tape label. Tape is labelled %s."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3524
+#, fuzzy
+msgid "Restore Via Network"
+msgstr "Restaurar a partir dun ficheiro"
+
+#: ../../standalone/drakbackup_.c:3524
+#, c-format
+msgid "Restore Via Network Protocol: %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3525
+#, fuzzy
+msgid "Host Name"
+msgstr "Nome de máquina"
+
+#: ../../standalone/drakbackup_.c:3526
+msgid "Host Path or Module"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3533
+#, fuzzy
+msgid "Password required"
+msgstr "Contrasinal"
+
+#: ../../standalone/drakbackup_.c:3539
+#, fuzzy
+msgid "Username required"
+msgstr "Nome de usuario"
+
+#: ../../standalone/drakbackup_.c:3542
+#, fuzzy
+msgid "Hostname required"
+msgstr "Nome de máquina: "
+
+#: ../../standalone/drakbackup_.c:3547
+msgid "Path or Module required"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3560
+msgid "Files Restored..."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3563
+#, fuzzy
+msgid "Restore Failed..."
+msgstr "Restaurar a partir dun ficheiro"
+
+#: ../../standalone/drakbackup_.c:3801
msgid "Restore all backups"
msgstr ""
-#: ../../standalone/drakbackup_.c:3241
+#: ../../standalone/drakbackup_.c:3810
#, fuzzy
msgid "Custom Restore"
msgstr "Personalizado"
-#: ../../standalone/drakbackup_.c:3287 ../../standalone/drakbackup_.c:3320
-#: ../../standalone/drakbackup_.c:3346 ../../standalone/drakbackup_.c:3373
-#: ../../standalone/drakbackup_.c:3400 ../../standalone/drakbackup_.c:3460
-#: ../../standalone/drakbackup_.c:3487 ../../standalone/drakbackup_.c:3513
+#: ../../standalone/drakbackup_.c:3856
+msgid "CD in place - continue."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3862
+msgid "Browse to new restore repository."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3865
+#, fuzzy
+msgid "Restore From Catalog"
+msgstr "Táboa de particións de rescate"
+
+#: ../../standalone/drakbackup_.c:3893
+#, fuzzy
+msgid "Restore Progress"
+msgstr "Restaurar a partir dun ficheiro"
+
+#: ../../standalone/drakbackup_.c:3935 ../../standalone/drakbackup_.c:3968
+#: ../../standalone/drakbackup_.c:3994 ../../standalone/drakbackup_.c:4021
+#: ../../standalone/drakbackup_.c:4048 ../../standalone/drakbackup_.c:4108
+#: ../../standalone/drakbackup_.c:4135 ../../standalone/drakbackup_.c:4165
+#: ../../standalone/drakbackup_.c:4191
msgid "Previous"
msgstr "Anterior"
-#: ../../standalone/drakbackup_.c:3291 ../../standalone/drakbackup_.c:3377
+#: ../../standalone/drakbackup_.c:3939 ../../standalone/drakbackup_.c:4025
#: ../../standalone/logdrake_.c:223
#, fuzzy
msgid "Save"
msgstr "Estado:"
-#: ../../standalone/drakbackup_.c:3350
+#: ../../standalone/drakbackup_.c:3998
#, fuzzy
msgid "Build Backup"
msgstr "Ficheiro de backup incorrecto"
-#: ../../standalone/drakbackup_.c:3404 ../../standalone/drakbackup_.c:3974
+#: ../../standalone/drakbackup_.c:4052 ../../standalone/drakbackup_.c:4632
msgid "Restore"
msgstr "Restaurar"
-#: ../../standalone/drakbackup_.c:3553
+#: ../../standalone/drakbackup_.c:4231
msgid ""
-"Please Build backup before to restore it...\n"
-" or verify that your path to save is correct."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3574
-msgid ""
-"Error during sendmail\n"
-" your report mail was not sent\n"
+"Error during sendmail.\n"
+" Your report mail was not sent.\n"
" Please configure sendmail"
msgstr ""
-#: ../../standalone/drakbackup_.c:3598
+#: ../../standalone/drakbackup_.c:4255
#, fuzzy
msgid ""
"The following packages need to be installed:\n"
" @list_of_rpm_to_install"
msgstr "Vanse instalar os seguintes paquetes"
-#: ../../standalone/drakbackup_.c:3621
+#: ../../standalone/drakbackup_.c:4278
msgid ""
"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
-#: ../../standalone/drakbackup_.c:3644
+#: ../../standalone/drakbackup_.c:4301
#, fuzzy
msgid "Please select data to restore..."
msgstr "Escolla a lingua que desexe usar."
-#: ../../standalone/drakbackup_.c:3665
+#: ../../standalone/drakbackup_.c:4322
#, fuzzy
msgid "Please select media for backup..."
msgstr "Escolla a lingua que desexe usar."
-#: ../../standalone/drakbackup_.c:3687
+#: ../../standalone/drakbackup_.c:4344
#, fuzzy
msgid "Please select data to backup..."
msgstr "Escolla a lingua que desexe usar."
-#: ../../standalone/drakbackup_.c:3709
+#: ../../standalone/drakbackup_.c:4366
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
msgstr ""
-#: ../../standalone/drakbackup_.c:3730
+#: ../../standalone/drakbackup_.c:4387
msgid "Under Devel ... please wait."
msgstr ""
-#: ../../standalone/drakbackup_.c:3811
+#: ../../standalone/drakbackup_.c:4468
#, fuzzy
msgid "Backup system files"
msgstr "Ficheiro de backup incorrecto"
-#: ../../standalone/drakbackup_.c:3813
+#: ../../standalone/drakbackup_.c:4470
#, fuzzy
msgid "Backup user files"
msgstr "Ficheiro de backup incorrecto"
-#: ../../standalone/drakbackup_.c:3815
+#: ../../standalone/drakbackup_.c:4472
#, fuzzy
msgid "Backup other files"
msgstr "Ficheiro de backup incorrecto"
-#: ../../standalone/drakbackup_.c:3817 ../../standalone/drakbackup_.c:3850
+#: ../../standalone/drakbackup_.c:4474 ../../standalone/drakbackup_.c:4507
msgid "Total Progress"
msgstr ""
-#: ../../standalone/drakbackup_.c:3841
+#: ../../standalone/drakbackup_.c:4498
msgid "files sending by FTP"
msgstr ""
-#: ../../standalone/drakbackup_.c:3845
+#: ../../standalone/drakbackup_.c:4502
#, fuzzy
msgid "Sending files..."
msgstr "Gardar nun ficheiro"
-#: ../../standalone/drakbackup_.c:3931
+#: ../../standalone/drakbackup_.c:4588
#, fuzzy
msgid "Backup Now from configuration file"
msgstr "Configuración da rede"
-#: ../../standalone/drakbackup_.c:3936
+#: ../../standalone/drakbackup_.c:4593
#, fuzzy
msgid "View Backup Configuration."
msgstr "Configuración da rede"
-#: ../../standalone/drakbackup_.c:3956
+#: ../../standalone/drakbackup_.c:4614
#, fuzzy
msgid "Wizard Configuration"
msgstr "Configuración da LAN"
-#: ../../standalone/drakbackup_.c:3961
+#: ../../standalone/drakbackup_.c:4619
#, fuzzy
msgid "Advanced Configuration"
msgstr "Configuración da LAN"
-#: ../../standalone/drakbackup_.c:3966
+#: ../../standalone/drakbackup_.c:4624
#, fuzzy
msgid "Backup Now"
msgstr "Sistemas de ficheiros"
-#: ../../standalone/drakbackup_.c:3996
+#: ../../standalone/drakbackup_.c:4658
msgid "Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:4045
+#: ../../standalone/drakbackup_.c:4707
msgid ""
"options description:\n"
"\n"
@@ -10060,7 +10586,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4075
+#: ../../standalone/drakbackup_.c:4737
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -10069,7 +10595,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4083
+#: ../../standalone/drakbackup_.c:4745
msgid ""
"options description:\n"
"\n"
@@ -10110,45 +10636,45 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4122
+#: ../../standalone/drakbackup_.c:4784
msgid ""
"restore description:\n"
" \n"
-"Only the most recent date will be used ,because with incremental \n"
-"backups it is necesarry to restore one by one each older backups.\n"
+"Only the most recent date will be used, because with incremental \n"
+"backups it is necessary to restore one by one each older backup.\n"
"\n"
-"So if you don't like to restore a user please unselect all his\n"
-"check box.\n"
+"So if you don't want to restore a user please unselect all their\n"
+"check boxes.\n"
"\n"
-"Otherwise, you are able to select only one of this\n"
+"Otherwise, you are able to select only one of these.\n"
"\n"
" - Incremental Backups:\n"
"\n"
"\tThe incremental backup is the most powerful \n"
-"\toption to use backup, this option allow you \n"
-"\tto backup all your data the first time, and \n"
-"\tonly the changed after.\n"
-"\tSo you will be able during the restore\n"
+"\toption to use. This option allows you to \n"
+"\tbackup all of your data the first time, and \n"
+"\tonly the changed data after.\n"
+"\tSo you will be able, during the restore\n"
"\tstep, to restore your data from a specified\n"
"\tdate.\n"
-"\tIf you have not selected this options all\n"
+"\tIf you have not selected this option all\n"
"\told backups are deleted before each backup. \n"
"\n"
"\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4148 ../../standalone/drakbackup_.c:4225
+#: ../../standalone/drakbackup_.c:4810 ../../standalone/drakbackup_.c:4887
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
-#: ../../standalone/drakbackup_.c:4150 ../../standalone/drakbackup_.c:4227
+#: ../../standalone/drakbackup_.c:4812 ../../standalone/drakbackup_.c:4889
msgid ""
" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
-#: ../../standalone/drakbackup_.c:4152 ../../standalone/drakbackup_.c:4229
+#: ../../standalone/drakbackup_.c:4814 ../../standalone/drakbackup_.c:4891
msgid ""
" This program is free software; you can redistribute it and/or modify\n"
" it under the terms of the GNU General Public License as published by\n"
@@ -10165,7 +10691,7 @@ msgid ""
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
msgstr ""
-#: ../../standalone/drakbackup_.c:4166
+#: ../../standalone/drakbackup_.c:4828
msgid ""
"Description:\n"
"\n"
@@ -10205,7 +10731,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4204
+#: ../../standalone/drakbackup_.c:4866
msgid ""
"options description:\n"
"\n"
@@ -10216,7 +10742,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4213
+#: ../../standalone/drakbackup_.c:4875
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -10229,7 +10755,7 @@ msgid ""
"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4243
+#: ../../standalone/drakbackup_.c:4905
msgid ""
"Description:\n"
"\n"
@@ -10310,9 +10836,9 @@ msgstr ""
msgid "Synchronization tool"
msgstr ""
-#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:85
-#: ../../standalone/drakbug_.c:150 ../../standalone/drakbug_.c:152
-#: ../../standalone/drakbug_.c:156
+#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:86
+#: ../../standalone/drakbug_.c:151 ../../standalone/drakbug_.c:153
+#: ../../standalone/drakbug_.c:157
#, fuzzy
msgid "Standalone Tools"
msgstr "Ferramentas de consola"
@@ -10364,26 +10890,26 @@ msgstr "Printerdrake"
msgid "Configuration Wizards"
msgstr "Axudante da configuración de rede"
-#: ../../standalone/drakbug_.c:96
+#: ../../standalone/drakbug_.c:97
#, fuzzy
msgid "Application:"
msgstr "Autenticación"
-#: ../../standalone/drakbug_.c:97
+#: ../../standalone/drakbug_.c:98
#, fuzzy
msgid "Package: "
msgstr "Selección dos grupos de paquetes"
-#: ../../standalone/drakbug_.c:98
+#: ../../standalone/drakbug_.c:99
msgid "Kernel:"
msgstr ""
-#: ../../standalone/drakbug_.c:99
+#: ../../standalone/drakbug_.c:100
#, fuzzy
msgid "Release: "
msgstr "Agarde, por favor"
-#: ../../standalone/drakbug_.c:114
+#: ../../standalone/drakbug_.c:115
msgid ""
"\n"
"\n"
@@ -10395,21 +10921,21 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbug_.c:135
+#: ../../standalone/drakbug_.c:136
#, fuzzy
msgid "Report"
msgstr "Porto"
-#: ../../standalone/drakbug_.c:165
+#: ../../standalone/drakbug_.c:166
#, fuzzy
msgid "Not installed"
msgstr "Saír da instalación"
-#: ../../standalone/drakbug_.c:182
+#: ../../standalone/drakbug_.c:183
msgid "connecting to Bugzilla wizard ..."
msgstr ""
-#: ../../standalone/drakbug_.c:189
+#: ../../standalone/drakbug_.c:190
#, fuzzy
msgid "No browser available! Please install one"
msgstr "Pode escoller outras linguas que estarán dispońibles trala instalación"
@@ -10852,7 +11378,7 @@ msgstr "Punto de montaxe"
#: ../../standalone/drakfont_.c:909
#, fuzzy
-msgid "Choose the applications that will support the fonts :"
+msgid "Choose the applications that will support the fonts:"
msgstr "Elixa as particións que desexa formatar"
#: ../../standalone/drakfont_.c:918
@@ -10934,19 +11460,19 @@ msgstr "ĄNon hai ningún adaptador de rede no seu sistema!"
msgid "Post Uninstall"
msgstr "Saír da instalación"
-#: ../../standalone/drakgw_.c:42 ../../standalone/drakgw_.c:195
+#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:188
msgid "Internet Connection Sharing"
msgstr "Compartición da conexión á Internet"
-#: ../../standalone/drakgw_.c:121
+#: ../../standalone/drakgw_.c:119
msgid "Sorry, we support only 2.4 kernels."
msgstr ""
-#: ../../standalone/drakgw_.c:133
+#: ../../standalone/drakgw_.c:130
msgid "Internet Connection Sharing currently enabled"
msgstr "A compartición da conexión á Internet está activada"
-#: ../../standalone/drakgw_.c:134
+#: ../../standalone/drakgw_.c:131
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -10958,31 +11484,31 @@ msgstr ""
"\n"
"żQue desexa facer?"
-#: ../../standalone/drakgw_.c:138
+#: ../../standalone/drakgw_.c:135
msgid "disable"
msgstr "desactivar"
-#: ../../standalone/drakgw_.c:138 ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:135 ../../standalone/drakgw_.c:160
msgid "dismiss"
msgstr ""
-#: ../../standalone/drakgw_.c:138 ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:135 ../../standalone/drakgw_.c:160
msgid "reconfigure"
msgstr "reconfigurar"
-#: ../../standalone/drakgw_.c:141
+#: ../../standalone/drakgw_.c:138
msgid "Disabling servers..."
msgstr "Desactivando os servidores..."
-#: ../../standalone/drakgw_.c:149
+#: ../../standalone/drakgw_.c:146
msgid "Internet connection sharing is now disabled."
msgstr "A compartición da conexión á Internet está agora desactivada."
-#: ../../standalone/drakgw_.c:158
+#: ../../standalone/drakgw_.c:155
msgid "Internet Connection Sharing currently disabled"
msgstr "A compartición da conexión á Internet está desactivada"
-#: ../../standalone/drakgw_.c:159
+#: ../../standalone/drakgw_.c:156
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
@@ -10994,19 +11520,19 @@ msgstr ""
"\n"
"żQue desexa facer?"
-#: ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:160
msgid "enable"
msgstr "activar"
-#: ../../standalone/drakgw_.c:170
+#: ../../standalone/drakgw_.c:167
msgid "Enabling servers..."
msgstr "Activando os servidores..."
-#: ../../standalone/drakgw_.c:175
+#: ../../standalone/drakgw_.c:172
msgid "Internet connection sharing is now enabled."
msgstr "A compartición da conexión á Internet está agora activada."
-#: ../../standalone/drakgw_.c:196
+#: ../../standalone/drakgw_.c:189
#, fuzzy
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
@@ -11022,21 +11548,21 @@ msgstr ""
"Nota: necesita un adaptador de rede dedicado para configurar unha rede de "
"área local (LAN)."
-#: ../../standalone/drakgw_.c:222
+#: ../../standalone/drakgw_.c:215
#, c-format
msgid "Interface %s (using module %s)"
msgstr "Interface %s (usando o módulo %s)"
-#: ../../standalone/drakgw_.c:223
+#: ../../standalone/drakgw_.c:216
#, c-format
msgid "Interface %s"
msgstr "Interface %s"
-#: ../../standalone/drakgw_.c:231
+#: ../../standalone/drakgw_.c:224
msgid "No network adapter on your system!"
msgstr "ĄNon hai ningún adaptador de rede no seu sistema!"
-#: ../../standalone/drakgw_.c:232
+#: ../../standalone/drakgw_.c:225
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
@@ -11044,11 +11570,11 @@ msgstr ""
"Non se detectou ningún adaptador de rede ethernet no seu sistema. Execute a "
"ferramenta de configuración de hardware."
-#: ../../standalone/drakgw_.c:238
+#: ../../standalone/drakgw_.c:231
msgid "Network interface"
msgstr "Interface de rede"
-#: ../../standalone/drakgw_.c:239
+#: ../../standalone/drakgw_.c:232
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -11063,19 +11589,19 @@ msgstr ""
"\n"
"Vaise configurar a rede de área local usando ese adaptador."
-#: ../../standalone/drakgw_.c:248
+#: ../../standalone/drakgw_.c:241
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
msgstr ""
"Escolla o adaptador de rede que vai estar conectado á rede de área local."
-#: ../../standalone/drakgw_.c:266
+#: ../../standalone/drakgw_.c:259
#, fuzzy
msgid "Network interface already configured"
msgstr "O monitor non está configurado"
-#: ../../standalone/drakgw_.c:267
+#: ../../standalone/drakgw_.c:260
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -11085,17 +11611,17 @@ msgid ""
"You can do it manually but you need to know what you're doing."
msgstr ""
-#: ../../standalone/drakgw_.c:272
+#: ../../standalone/drakgw_.c:265
#, fuzzy
msgid "Automatic reconfiguration"
msgstr "Configuración do estilo de arrinque"
-#: ../../standalone/drakgw_.c:273
+#: ../../standalone/drakgw_.c:266
#, fuzzy
msgid "Show current interface configuration"
msgstr "Configuración de Internet"
-#: ../../standalone/drakgw_.c:275
+#: ../../standalone/drakgw_.c:268
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -11106,7 +11632,7 @@ msgid ""
"Driver: %s"
msgstr ""
-#: ../../standalone/drakgw_.c:287
+#: ../../standalone/drakgw_.c:280
msgid ""
"I can keep your current configuration and assume you already set up a DHCP "
"server; in that case please verify I correctly read the C-Class Network that "
@@ -11118,57 +11644,45 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakgw_.c:292
+#: ../../standalone/drakgw_.c:285
msgid "C-Class Local Network"
msgstr ""
-#: ../../standalone/drakgw_.c:293
+#: ../../standalone/drakgw_.c:286
#, fuzzy
msgid "(This) DHCP Server IP"
msgstr "IP do servidor CUPS"
-#: ../../standalone/drakgw_.c:294
+#: ../../standalone/drakgw_.c:287
msgid "Re-configure interface and DHCP server"
msgstr ""
-#: ../../standalone/drakgw_.c:301
+#: ../../standalone/drakgw_.c:294
msgid "The Local Network did not finish with `.0', bailing out."
msgstr ""
-#: ../../standalone/drakgw_.c:312
+#: ../../standalone/drakgw_.c:305
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr ""
"ĄAtopouse un conflicto potencial de enderezos da LAN na configuración actual "
"de %s!\n"
-#: ../../standalone/drakgw_.c:320
-msgid "Firewalling configuration detected!"
-msgstr "ĄDetectouse unha configuración de firewall!"
-
-#: ../../standalone/drakgw_.c:321
-msgid ""
-"Warning! An existing firewalling configuration has been detected. You may "
-"need some manual fix after installation."
-msgstr ""
-"ĄAtención! Detectouse unha configuración de firewall existente. Pode que "
-"teńa que facer algún arranxo manual trala instalación."
-
-#: ../../standalone/drakgw_.c:328
+#: ../../standalone/drakgw_.c:315
msgid "Configuring..."
msgstr "Configurando..."
-#: ../../standalone/drakgw_.c:329
+#: ../../standalone/drakgw_.c:316
msgid "Configuring scripts, installing software, starting servers..."
msgstr ""
"Configurando os scripts, instalando o software, iniciando os servidores..."
-#: ../../standalone/drakgw_.c:365
+#: ../../standalone/drakgw_.c:352
#, c-format
msgid "Problems installing package %s"
msgstr "Problemas instalando o paquete %s"
-#: ../../standalone/drakgw_.c:549
+#: ../../standalone/drakgw_.c:485
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
@@ -11178,7 +11692,7 @@ msgstr ""
"Agora pode compartir a conexión á Internet con outros ordenadores da rede de "
"área local, usando a configuración automática de rede (DHCP)."
-#: ../../standalone/drakgw_.c:566
+#: ../../standalone/drakgw_.c:504
#, fuzzy
msgid "The setup has already been done, but it's currently disabled."
msgstr ""
@@ -11187,23 +11701,23 @@ msgstr ""
"\n"
"żQue desexa facer?"
-#: ../../standalone/drakgw_.c:567
+#: ../../standalone/drakgw_.c:505
msgid "The setup has already been done, and it's currently enabled."
msgstr ""
"A configuración da compartición da conexión á Internet xa foi feita.\n"
"Actualmente está activada."
-#: ../../standalone/drakgw_.c:568
+#: ../../standalone/drakgw_.c:506
#, fuzzy
msgid "No Internet Connection Sharing has ever been configured."
msgstr "A compartición da conexión á Internet está activada"
-#: ../../standalone/drakgw_.c:573
+#: ../../standalone/drakgw_.c:511
#, fuzzy
msgid "Internet connection sharing configuration"
msgstr "Conexión e configuración de Internet"
-#: ../../standalone/drakgw_.c:580
+#: ../../standalone/drakgw_.c:518
#, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -11213,6 +11727,158 @@ msgid ""
"Click on Configure to launch the setup wizard."
msgstr ""
+#: ../../standalone/draksound_.c:46
+#, fuzzy
+msgid "No Sound Card detected!"
+msgstr "Non conectado"
+
+#: ../../standalone/draksound_.c:47
+msgid ""
+"No Sound Card has been detected on your machine. Please verify that a Linux-"
+"supported Sound Card is correctly plugged in.\n"
+"\n"
+"\n"
+"You can visit our hardware database at:\n"
+"\n"
+"\n"
+"http://www.linux-mandrake.com/en/hardware.php3"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:32
+msgid "package ImageMagick is required for correct working"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:76
+#, fuzzy
+msgid "first step creation"
+msgstr "creación do disquete de arrinque"
+
+#: ../../standalone/draksplash_.c:77
+#, fuzzy
+msgid "final resolution"
+msgstr "Resolución"
+
+#: ../../standalone/draksplash_.c:78 ../../standalone/draksplash_.c:170
+#, fuzzy
+msgid "choose image file"
+msgstr "Escolla a acción"
+
+#: ../../standalone/draksplash_.c:79
+#, fuzzy
+msgid "Theme name"
+msgstr "Nome de recurso compartido"
+
+#: ../../standalone/draksplash_.c:81
+msgid "make bootsplash step 2"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:82
+#, fuzzy
+msgid "go to lilosplash configuration"
+msgstr "Configuración trala instalación"
+
+#: ../../standalone/draksplash_.c:83
+#, fuzzy
+msgid "quit"
+msgstr "Saír"
+
+#: ../../standalone/draksplash_.c:84
+#, fuzzy
+msgid "save theme"
+msgstr "Instalar sistema"
+
+#: ../../standalone/draksplash_.c:85
+msgid "browse"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:98 ../../standalone/draksplash_.c:159
+#, fuzzy
+msgid "Configure bootsplash picture"
+msgstr "Configurar servicios"
+
+#: ../../standalone/draksplash_.c:99
+msgid "x coordinate of text box in number of character"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:100
+msgid "y coordinate of text box in number of character"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:101
+msgid "text width"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:102
+msgid "text box height"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:103
+msgid "the progress bar x coordinate of its upper left corner"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:104
+msgid "the progress bar y coordinate of its upper left corner"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:105
+msgid "the width of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:106
+msgid "the heigth of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:107
+msgid "the color of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:119
+#, fuzzy
+msgid "go back"
+msgstr "Loopback"
+
+#: ../../standalone/draksplash_.c:120
+#, fuzzy
+msgid "preview"
+msgstr "dispositivo"
+
+#: ../../standalone/draksplash_.c:121
+#, fuzzy
+msgid "choose color"
+msgstr "Escolla o monitor"
+
+#: ../../standalone/draksplash_.c:124
+msgid "Display logo on Console"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:125
+msgid "Make kernel message quiet by default"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:161 ../../standalone/draksplash_.c:330
+#, c-format
+msgid "This theme haven't yet any bootsplash in %s !"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:213
+msgid "saving Bootsplash theme..."
+msgstr ""
+
+#: ../../standalone/draksplash_.c:436
+#, fuzzy
+msgid "ProgressBar color selection"
+msgstr "Conexión da impresora"
+
+#: ../../standalone/draksplash_.c:454
+#, fuzzy
+msgid "You must choose an image file first!"
+msgstr "URI do dispositivo de impresión"
+
+#: ../../standalone/draksplash_.c:463
+#, fuzzy
+msgid "Generating preview ..."
+msgstr "Detectando os dispositivos..."
+
#: ../../standalone/drakxtv_.c:49
msgid ""
"XawTV isn't installed!\n"
@@ -11305,11 +11971,11 @@ msgid ""
msgstr ""
#: ../../standalone/drakxtv_.c:109
-msgid "TV norm :"
+msgid "TV norm:"
msgstr ""
#: ../../standalone/drakxtv_.c:110
-msgid "Area :"
+msgid "Area:"
msgstr ""
#: ../../standalone/drakxtv_.c:114
@@ -11386,7 +12052,7 @@ msgstr ""
msgid "The change is done, but to be effective you must logout"
msgstr ""
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:517
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:515
#, fuzzy
msgid "logdrake"
msgstr "draknet"
@@ -11566,7 +12232,7 @@ msgstr "interesante"
#: ../../standalone/logdrake_.c:431
msgid ""
-"You will receive an alert if one of the selected service is no more running"
+"You will receive an alert if one of the selected services is no more running"
msgstr ""
#: ../../standalone/logdrake_.c:443
@@ -11588,19 +12254,19 @@ msgstr "Configuración"
msgid "Please enter your email address below "
msgstr "Tente de novo"
-#: ../../standalone/logdrake_.c:499
+#: ../../standalone/logdrake_.c:497
msgid "Save as.."
msgstr "Gardar como..."
-#: ../../standalone/mousedrake_.c:43
+#: ../../standalone/mousedrake_.c:45
msgid "Please, choose the type of your mouse."
msgstr "Escolla o seu tipo de rato."
-#: ../../standalone/mousedrake_.c:57
+#: ../../standalone/mousedrake_.c:58
msgid "Emulate third button?"
msgstr "żEmular o terceiro botón?"
-#: ../../standalone/printerdrake_.c:48
+#: ../../standalone/printerdrake_.c:57
#, fuzzy
msgid "Reading printer data ..."
msgstr "Lendo a base de datos de controladores de CUPS..."
@@ -11614,34 +12280,45 @@ msgstr "Detectando os dispositivos..."
msgid "Test ports"
msgstr "Probar portos"
-#: ../../standalone/scannerdrake_.c:52
+#: ../../standalone/scannerdrake_.c:53 ../../standalone/scannerdrake_.c:68
+#: ../../standalone/scannerdrake_.c:81
#, c-format
-msgid "%s found on %s, configure it ?"
+msgid "The %s is not supported by this version of Mandrake Linux."
msgstr ""
+#: ../../standalone/scannerdrake_.c:56
+#, fuzzy, c-format
+msgid "%s found on %s, configure it?"
+msgstr "żDesexa configurar unha impresora?"
+
#: ../../standalone/scannerdrake_.c:59
+#, c-format
+msgid "%s is not in the scanner database, configure it manually?"
+msgstr ""
+
+#: ../../standalone/scannerdrake_.c:65
#, fuzzy
msgid "Select a scanner"
msgstr "Seleccione unha tarxeta gráfica"
-#: ../../standalone/scannerdrake_.c:79
+#: ../../standalone/scannerdrake_.c:93
#, c-format
msgid "This %s scanner is unsupported"
msgstr ""
-#: ../../standalone/scannerdrake_.c:93
+#: ../../standalone/scannerdrake_.c:107
#, c-format
msgid ""
"Scannerdrake was not able to detect your %s scanner.\n"
"Please select the device where your scanner is plugged"
msgstr ""
-#: ../../standalone/scannerdrake_.c:95
+#: ../../standalone/scannerdrake_.c:109
#, fuzzy
msgid "choose device"
msgstr "Dispositivo de arrinque"
-#: ../../standalone/scannerdrake_.c:101
+#: ../../standalone/scannerdrake_.c:115
#, c-format
msgid ""
"This %s scanner must be configured by printerdrake.\n"
@@ -11649,7 +12326,7 @@ msgid ""
"section."
msgstr ""
-#: ../../standalone/scannerdrake_.c:106
+#: ../../standalone/scannerdrake_.c:120
#, c-format
msgid ""
"Your %s scanner has been configured.\n"
@@ -11657,43 +12334,18 @@ msgid ""
"applications menu."
msgstr ""
-#: ../../standalone/service_harddrake_.c:57
+#: ../../standalone/service_harddrake_.c:39
#, c-format
msgid "Some devices in the \"%s\" hardware class were removed:\n"
msgstr ""
-#: ../../standalone/service_harddrake_.c:61
+#: ../../standalone/service_harddrake_.c:43
#, c-format
msgid ""
"\n"
"Some devices in the %s class were added:\n"
msgstr ""
-#: ../../standalone/tinyfirewall_.c:30
-#, fuzzy
-msgid "Firewalling Configuration"
-msgstr "lendo a configuración"
-
-#: ../../standalone/tinyfirewall_.c:43
-#, fuzzy
-msgid "Firewalling configuration"
-msgstr "lendo a configuración"
-
-#: ../../standalone/tinyfirewall_.c:78
-msgid ""
-"Firewalling\n"
-"\n"
-"You already have set up a firewall.\n"
-"Click on Configure to change or remove the firewall"
-msgstr ""
-
-#: ../../standalone/tinyfirewall_.c:82
-msgid ""
-"Firewalling\n"
-"\n"
-"Click on Configure to set up a standard firewall"
-msgstr ""
-
#: ../../steps.pm_.c:14
msgid "Choose your language"
msgstr "Escoller a lingua"
@@ -11767,169 +12419,7 @@ msgstr "Instalar sistema"
msgid "Exit install"
msgstr "Saír da instalación"
-#: ../../tinyfirewall.pm_.c:9
-msgid ""
-"tinyfirewall configurator\n"
-"\n"
-"This configures a personal firewall for this Mandrake Linux machine.\n"
-"For a powerful dedicated firewall solution, please look to the\n"
-"specialized MandrakeSecurity Firewall distribution."
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:14
-msgid ""
-"We'll now ask you questions about which services you'd like to allow\n"
-"the Internet to connect to. Please think carefully about these\n"
-"questions, as your computer's security is important.\n"
-"\n"
-"Please, if you're not currently using one of these services, firewall\n"
-"it off. You can change this configuration anytime you like by\n"
-"re-running this application!"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:21
-msgid ""
-"Are you running a web server on this machine that you need the whole\n"
-"Internet to see? If you are running a webserver that only needs to be\n"
-"accessed by this machine, you can safely answer NO here.\n"
-"\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:26
-msgid ""
-"Are you running a name server on this machine? If you didn't set one\n"
-"up to give away IP and zone information to the whole Internet, please\n"
-"answer no.\n"
-"\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:31
-msgid ""
-"Do you want to allow incoming Secure Shell (ssh) connections? This\n"
-"is a telnet-replacement that you might use to login. If you're using\n"
-"telnet now, you should definitely switch to ssh. telnet is not\n"
-"encrypted -- so some attackers can steal your password if you use\n"
-"it. ssh is encrypted and doesn't allow for this eavesdropping."
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:36
-msgid ""
-"Do you want to allow incoming telnet connections?\n"
-"This is horribly unsafe, as we explained in the previous screen. We\n"
-"strongly recommend answering No here and using ssh in place of\n"
-"telnet.\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:41
-msgid ""
-"Are you running an FTP server here that you need accessible to the\n"
-"Internet? If you are, we strongly recommend that you only use it for\n"
-"Anonymous transfers. Any passwords sent by FTP can be stolen by some\n"
-"attackers, since FTP also uses no encryption for transferring passwords.\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:46
-msgid ""
-"Are you running a mail server here? If you're sending you \n"
-"messages through pine, mutt or any other text-based mail client,\n"
-"you probably are. Otherwise, you should firewall this off.\n"
-"\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:51
-msgid ""
-"Are you running a POP or IMAP server here? This would\n"
-"be used to host non-web-based mail accounts for people via \n"
-"this machine.\n"
-"\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:56
-msgid ""
-"You appear to be running a 2.2 kernel. If your network IP\n"
-"is automatically set by a computer in your home or office \n"
-"(dynamically assigned), we need to allow for this. Is\n"
-"this the case?\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:61
-msgid ""
-"Is your computer getting time syncronized to another computer?\n"
-"Mostly, this is used by medium-large Unix/Linux organizations\n"
-"to synchronize time for logging and such. If you're not part\n"
-"of a larger office and haven't heard of this, you probably \n"
-"aren't."
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:66
-msgid ""
-"Configuration complete. May we write these changes to disk?\n"
-"\n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:82
-#, fuzzy, c-format
-msgid "Can't open %s: %s\n"
-msgstr "Adaptador %s: %s"
-
-#: ../../tinyfirewall.pm_.c:84
-#, fuzzy, c-format
-msgid "Can't open %s for writing: %s\n"
-msgstr "Erro ó abrir %s para escritura: %s"
-
-#: ../../tinyfirewall.pm_.c:178
-msgid "No I don't need DHCP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:178
-msgid "Yes I need DHCP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:179
-msgid "No I don't need NTP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:179
-msgid "Yes I need NTP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:180 ../../tinyfirewall.pm_.c:184
-msgid "Don't Save"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:180 ../../tinyfirewall.pm_.c:184
-#: ../../tinyfirewall.pm_.c:204
-msgid "Save & Quit"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:195 ../../tinyfirewall.pm_.c:199
-#, fuzzy
-msgid "Firewall Configuration Wizard"
-msgstr "lendo a configuración"
-
-#: ../../tinyfirewall.pm_.c:197
-msgid "No (firewall this off from the internet)"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:198
-msgid "Yes (allow this through the firewall)"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:230
-#, fuzzy
-msgid "Please Wait... Verifying installed packages"
-msgstr "Por favor, agarde, preparando a instalación"
-
-#: ../../tinyfirewall.pm_.c:236
-#, c-format
-msgid ""
-"Failure installing the needed packages : %s and Bastille.\n"
-" Try to install them manually."
-msgstr ""
-
-#: ../../ugtk.pm_.c:619
+#: ../../ugtk.pm_.c:594
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr ""
@@ -12065,6 +12555,10 @@ msgid "Graphical Environment"
msgstr ""
#: ../../share/compssUsers:999
+msgid "Development"
+msgstr "Desenvolvemento"
+
+#: ../../share/compssUsers:999
msgid "Apache, Pro-ftpd"
msgstr ""
@@ -12178,95 +12672,25 @@ msgstr "Multimedia - Gravación de CD"
msgid "Scientific Workstation"
msgstr "Estación de traballo científica"
-#~ msgid "$mode: $warning"
-#~ msgstr "$mode: $warning"
+#~ msgid "LBA (doesn't work on old BIOSes)"
+#~ msgstr "LBA (non funciona en BIOS antigas)"
-#, fuzzy
-#~ msgid ""
-#~ "This level is to be used with care. It makes your system more easy to "
-#~ "use,\n"
-#~ " but very sensitive: it must not be used for a machine "
-#~ "connected to others\n"
-#~ " or to the Internet. There is no password access."
-#~ msgstr ""
-#~ "Este nivel hai que usalo con coidado. Fai que o seu sistema sexa máis\n"
-#~ "sinxelo de utilizar, pero é moi sensible: non debe usarse nunha máquina\n"
-#~ "conectada a outras ou á Internet. Non hai contrasinais de acceso."
+#~ msgid "You don't have any partitions!"
+#~ msgstr "ĄNon ten ningunha partición!"
-#, fuzzy
#~ msgid ""
-#~ "With this security level, the use of this system as a server becomes "
-#~ "possible.\n"
-#~ " The security is now high enough to use the system as a "
-#~ "server which can accept\n"
-#~ " connections from many clients. Note: if your machine is "
-#~ "only a client on the Internet, you should choose a lower level."
+#~ "DiskDrake failed to read correctly the partition table.\n"
+#~ "Continue at your own risk!"
#~ msgstr ""
-#~ "Con este nivel de seguridade, é posible usar este sistema coma servidor.\n"
-#~ "A seguridade é agora alta dabondo para usar o sistema coma un servidor\n"
-#~ "que acepta conexións de múltiples clientes."
+#~ "O DiskDrake non puido ler correctamente a táboa de particións.\n"
+#~ "ĄContinúe ó seu propio risco!"
-#, fuzzy
-#~ msgid "Basic Options"
-#~ msgstr "Opcións"
-
-#, fuzzy
-#~ msgid "Security Checks"
-#~ msgstr "Establecendo o nivel de seguridade"
-
-#, fuzzy
-#~ msgid "Please choose your CD space"
-#~ msgstr "Escolla a disposición do seu teclado."
-
-#, fuzzy
-#~ msgid "Please enter the cd writer speed"
-#~ msgstr "Probe o seu rato"
-
-#, fuzzy
-#~ msgid "Please check if you want to include install boot on your CD."
-#~ msgstr "Escolla os paquetes que desexa instalar."
-
-#, fuzzy
-#~ msgid "Url should begin with 'ftp:'"
-#~ msgstr "O proxy debería ser ftp://..."
-
-#, fuzzy
#~ msgid ""
-#~ "Please check if you want to include\n"
-#~ " install boot on your CD."
-#~ msgstr "Escolla os paquetes que desexa instalar."
-
-#, fuzzy
-#~ msgid "Windows PDC"
-#~ msgstr "Windows(FAT32)"
-
-#, fuzzy
-#~ msgid "Tamil"
-#~ msgstr "Táboa"
-
-#, fuzzy
-#~ msgid "PDC Server Name"
-#~ msgstr "Servidor NIS"
-
-#, fuzzy
-#~ msgid "Set up printer manually"
-#~ msgstr "Impresora remota"
-
-#, fuzzy
-#~ msgid "Installing HPOJ package..."
-#~ msgstr "Instalando o paquete %s"
-
-#, fuzzy
-#~ msgid "Installing SANE packages..."
-#~ msgstr "Instalando o paquete %s"
-
-#, fuzzy
-#~ msgid "Installing mtools packages..."
-#~ msgstr "Instalando o paquete %s"
-
-#, fuzzy
-#~ msgid "Making printer port available for CUPS..."
-#~ msgstr "Lendo a base de datos de controladores de CUPS..."
+#~ "I can't read your partition table, it's too corrupted for me :(\n"
+#~ "I'll try to go on blanking bad partitions"
+#~ msgstr ""
+#~ "Non se pode ler a táboa de particións, está demasiado deteriorada :-(\n"
+#~ "Probarase a ir pońendo en branco as particións erróneas"
#~ msgid "Control Center"
#~ msgstr "Centro de control"
@@ -12344,9 +12768,6 @@ msgstr "Estación de traballo científica"
#~ msgid "Select a graphics card"
#~ msgstr "Seleccione unha tarxeta gráfica"
-#~ msgid "Warning: testing this graphics card may freeze your computer"
-#~ msgstr "Aviso: probar esta tarxeta gráfica pode colgar o ordenador"
-
#~ msgid "Standard VGA, 640x480 at 60 Hz"
#~ msgstr "VGA estándar, 640x480 a 60 Hz"
diff --git a/perl-install/share/po/hr.po b/perl-install/share/po/hr.po
index 00979df9e..99eda3c38 100644
--- a/perl-install/share/po/hr.po
+++ b/perl-install/share/po/hr.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX\n"
-"POT-Creation-Date: 2002-08-21 15:44+0200\n"
+"POT-Creation-Date: 2002-09-02 20:14+0200\n"
"PO-Revision-Date: 2002-03-22 05:58CET\n"
"Last-Translator: Vlatko Kosturjak <kost@iname.com>\n"
"Language-Team: Croatian <lokalizacija@linux.hr>\n"
@@ -51,19 +51,19 @@ msgstr "32 MB"
msgid "64 MB or more"
msgstr "64 MB ili viče"
-#: ../../Xconfig/card.pm_.c:201
+#: ../../Xconfig/card.pm_.c:203
msgid "Choose a X server"
msgstr "Odaberite X posluŸitelj"
-#: ../../Xconfig/card.pm_.c:201
+#: ../../Xconfig/card.pm_.c:203
msgid "X server"
msgstr "X posluŸitelj"
-#: ../../Xconfig/card.pm_.c:228
+#: ../../Xconfig/card.pm_.c:230
msgid "Multi-head configuration"
msgstr "Viče-zaslonska postava"
-#: ../../Xconfig/card.pm_.c:229
+#: ../../Xconfig/card.pm_.c:231
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
@@ -71,27 +71,27 @@ msgstr ""
"Vač sustav podrŸava postavu sa viče zaslona.\n"
"©to Ÿelite napraviti?"
-#: ../../Xconfig/card.pm_.c:284
+#: ../../Xconfig/card.pm_.c:286
msgid "Select the memory size of your graphics card"
msgstr "Odaberite kolièinu memorije na grafièkoj kartici"
-#: ../../Xconfig/card.pm_.c:345
+#: ../../Xconfig/card.pm_.c:347
msgid "XFree configuration"
msgstr "XFree postavke"
-#: ../../Xconfig/card.pm_.c:347
+#: ../../Xconfig/card.pm_.c:349
msgid "Which configuration of XFree do you want to have?"
msgstr "Koju konfiguraciju XFree-a Ÿelite imati?"
-#: ../../Xconfig/card.pm_.c:379
+#: ../../Xconfig/card.pm_.c:381
msgid "Configure all heads independently"
msgstr "Podesi sve zaslone nezavisno"
-#: ../../Xconfig/card.pm_.c:380
+#: ../../Xconfig/card.pm_.c:382
msgid "Use Xinerama extension"
msgstr "Koristi Xinerama pročirenje"
-#: ../../Xconfig/card.pm_.c:384
+#: ../../Xconfig/card.pm_.c:386
#, fuzzy, c-format
msgid "Configure only card \"%s\"%s"
msgstr "Podesi samo karticu \"%s\" (%s)"
@@ -102,13 +102,13 @@ msgstr "Podesi samo karticu \"%s\" (%s)"
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:435
+#: ../../Xconfig/card.pm_.c:410 ../../Xconfig/card.pm_.c:436
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s with 3D hardware acceleration"
msgstr "XFree %s sa 3D hardware akceleracijom"
-#: ../../Xconfig/card.pm_.c:412
+#: ../../Xconfig/card.pm_.c:413
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -117,17 +117,17 @@ msgstr ""
"Vača video kartica moŸe imati 3D ubrzanje samo sa XFree %s.\n"
"Vača kartica je podrŸana od XFree %s koji moŸda ima bolju podrčku u 2D."
-#: ../../Xconfig/card.pm_.c:414 ../../Xconfig/card.pm_.c:437
+#: ../../Xconfig/card.pm_.c:415 ../../Xconfig/card.pm_.c:438
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr "Vača kartica moŸe imati 3D hardware-sku akceleraciju sa XFree %s."
-#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:443
+#: ../../Xconfig/card.pm_.c:423 ../../Xconfig/card.pm_.c:444
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s sa EXPERIMENTALNOM 3D hardware akceleracijom"
-#: ../../Xconfig/card.pm_.c:425
+#: ../../Xconfig/card.pm_.c:426
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -139,7 +139,7 @@ msgstr ""
"RAÈUNALO.Vača kartica je podrŸana od XFree %s koja moŸe imati bolju podrčku "
"u 2D."
-#: ../../Xconfig/card.pm_.c:428 ../../Xconfig/card.pm_.c:445
+#: ../../Xconfig/card.pm_.c:429 ../../Xconfig/card.pm_.c:446
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
@@ -149,53 +149,54 @@ msgstr ""
"UPOZORAVAMO VAS DA JE OVO EKSPERIMENTALNA PODR©KA I MOźE ZAMRZNUTI VA©E "
"RAÈUNALO."
-#: ../../Xconfig/card.pm_.c:451
+#: ../../Xconfig/card.pm_.c:452
msgid "Xpmac (installation display driver)"
msgstr "Xpmac (instalacijski zaslonski upravljaèki program)"
-#: ../../Xconfig/main.pm_.c:78 ../../Xconfig/main.pm_.c:79
-#: ../../Xconfig/monitor.pm_.c:94 ../../any.pm_.c:974
+#: ../../Xconfig/main.pm_.c:76 ../../Xconfig/main.pm_.c:77
+#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:977
msgid "Custom"
msgstr "Prilagođeno"
-#: ../../Xconfig/main.pm_.c:104
+#: ../../Xconfig/main.pm_.c:102
#, fuzzy
msgid "Graphic Card"
msgstr "Grafièka kartica"
-#: ../../Xconfig/main.pm_.c:107 ../../Xconfig/monitor.pm_.c:91
+#: ../../Xconfig/main.pm_.c:105 ../../Xconfig/monitor.pm_.c:93
msgid "Monitor"
msgstr "Monitor"
-#: ../../Xconfig/main.pm_.c:110 ../../Xconfig/resolution_and_depth.pm_.c:209
+#: ../../Xconfig/main.pm_.c:108 ../../Xconfig/resolution_and_depth.pm_.c:209
msgid "Resolution"
msgstr "Rezolucija"
-#: ../../Xconfig/main.pm_.c:114
+#: ../../Xconfig/main.pm_.c:113
msgid "Test"
msgstr ""
-#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:59
-#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/removable.pm_.c:25
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:63
+#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/removable.pm_.c:25
#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "Opcije"
#: ../../Xconfig/main.pm_.c:121 ../../Xconfig/resolution_and_depth.pm_.c:268
-#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:281
+#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:275
#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
-#: ../../interactive.pm_.c:351 ../../interactive/http.pm_.c:104
+#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:104
#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
-#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:156
-#: ../../my_gtk.pm_.c:284 ../../my_gtk.pm_.c:307
-#: ../../standalone/drakbackup_.c:3324 ../../standalone/drakbackup_.c:3419
-#: ../../standalone/drakbackup_.c:3438
+#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:159
+#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310
+#: ../../standalone/drakbackup_.c:3972 ../../standalone/drakbackup_.c:4067
+#: ../../standalone/drakbackup_.c:4086
msgid "Ok"
msgstr "U redu"
#: ../../Xconfig/main.pm_.c:121 ../../diskdrake/dav.pm_.c:24
-#: ../../printerdrake.pm_.c:2933 ../../standalone/logdrake_.c:224
+#: ../../harddrake/ui.pm_.c:98 ../../printerdrake.pm_.c:3155
+#: ../../standalone/logdrake_.c:224
msgid "Quit"
msgstr "Zavrči"
@@ -212,28 +213,28 @@ msgstr ""
"\n"
"%s"
-#: ../../Xconfig/monitor.pm_.c:91
+#: ../../Xconfig/monitor.pm_.c:93
msgid "Choose a monitor"
msgstr "Odaberite monitor"
-#: ../../Xconfig/monitor.pm_.c:95
+#: ../../Xconfig/monitor.pm_.c:97
msgid "Plug'n Play"
msgstr ""
-#: ../../Xconfig/monitor.pm_.c:96 ../../mouse.pm_.c:45
+#: ../../Xconfig/monitor.pm_.c:98 ../../mouse.pm_.c:46
msgid "Generic"
msgstr "Generièki"
-#: ../../Xconfig/monitor.pm_.c:97 ../../harddrake/ui.pm_.c:36
+#: ../../Xconfig/monitor.pm_.c:99 ../../harddrake/ui.pm_.c:37
#, fuzzy
msgid "Vendor"
msgstr "Vrati"
-#: ../../Xconfig/monitor.pm_.c:107
+#: ../../Xconfig/monitor.pm_.c:109
msgid "Plug'n Play probing failed. Please choose a precise monitor"
msgstr ""
-#: ../../Xconfig/monitor.pm_.c:112
+#: ../../Xconfig/monitor.pm_.c:114
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -257,11 +258,11 @@ msgstr ""
"veæi od moguænosti vačeg monitora jer moŸete očtetiti vač monitor.\n"
" Ukoliko ste u nedoumici, izaberite konzervativne postavke."
-#: ../../Xconfig/monitor.pm_.c:119
+#: ../../Xconfig/monitor.pm_.c:121
msgid "Horizontal refresh rate"
msgstr "Horizontalna vrijednost osvjeŸavanja"
-#: ../../Xconfig/monitor.pm_.c:120
+#: ../../Xconfig/monitor.pm_.c:122
msgid "Vertical refresh rate"
msgstr "Vertikalna vrijednost osvjeŸavanja"
@@ -298,36 +299,41 @@ msgstr "Odaberite rezoluciju i color depth"
msgid "Graphics card: %s"
msgstr "Grafièka kartica: %s"
-#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1015
-#: ../../bootlook.pm_.c:334 ../../diskdrake/smbnfs_gtk.pm_.c:87
-#: ../../install_steps_gtk.pm_.c:412 ../../install_steps_gtk.pm_.c:470
-#: ../../install_steps_interactive.pm_.c:576 ../../interactive.pm_.c:142
-#: ../../interactive.pm_.c:351 ../../interactive/http.pm_.c:105
+#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1018
+#: ../../bootlook.pm_.c:338 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:406 ../../install_steps_gtk.pm_.c:464
+#: ../../install_steps_interactive.pm_.c:560 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:105
#: ../../interactive/newt.pm_.c:174 ../../interactive/stdio.pm_.c:39
-#: ../../interactive/stdio.pm_.c:143 ../../my_gtk.pm_.c:155
-#: ../../my_gtk.pm_.c:159 ../../my_gtk.pm_.c:284
-#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1990
-#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3278
-#: ../../standalone/drakbackup_.c:3311 ../../standalone/drakbackup_.c:3337
-#: ../../standalone/drakbackup_.c:3364 ../../standalone/drakbackup_.c:3391
-#: ../../standalone/drakbackup_.c:3451 ../../standalone/drakbackup_.c:3478
-#: ../../standalone/drakbackup_.c:3504 ../../standalone/drakconnect_.c:115
-#: ../../standalone/drakconnect_.c:147 ../../standalone/drakconnect_.c:289
-#: ../../standalone/drakconnect_.c:537 ../../standalone/drakconnect_.c:679
-#: ../../standalone/drakfloppy_.c:234 ../../standalone/drakfloppy_.c:383
-#: ../../standalone/drakfont_.c:970 ../../standalone/drakgw_.c:598
-#: ../../standalone/logdrake_.c:224 ../../standalone/logdrake_.c:528
-#: ../../standalone/tinyfirewall_.c:64
+#: ../../interactive/stdio.pm_.c:143 ../../my_gtk.pm_.c:158
+#: ../../my_gtk.pm_.c:162 ../../my_gtk.pm_.c:287
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:2124
+#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3926
+#: ../../standalone/drakbackup_.c:3959 ../../standalone/drakbackup_.c:3985
+#: ../../standalone/drakbackup_.c:4012 ../../standalone/drakbackup_.c:4039
+#: ../../standalone/drakbackup_.c:4099 ../../standalone/drakbackup_.c:4126
+#: ../../standalone/drakbackup_.c:4156 ../../standalone/drakbackup_.c:4182
+#: ../../standalone/drakconnect_.c:115 ../../standalone/drakconnect_.c:147
+#: ../../standalone/drakconnect_.c:289 ../../standalone/drakconnect_.c:537
+#: ../../standalone/drakconnect_.c:679 ../../standalone/drakfloppy_.c:234
+#: ../../standalone/drakfloppy_.c:383 ../../standalone/drakfont_.c:970
+#: ../../standalone/drakgw_.c:536 ../../standalone/logdrake_.c:224
+#: ../../standalone/logdrake_.c:526
msgid "Cancel"
msgstr "Odustani"
-#: ../../Xconfig/test.pm_.c:26
+#: ../../Xconfig/test.pm_.c:30
+msgid "Test of the configuration"
+msgstr "Iskučaj postavu"
+
+#: ../../Xconfig/test.pm_.c:31
msgid "Do you want to test the configuration?"
msgstr "Da li Ÿelite iskučati postavu ?"
-#: ../../Xconfig/test.pm_.c:26
-msgid "Test of the configuration"
-msgstr "Iskučaj postavu"
+#: ../../Xconfig/test.pm_.c:31
+#, fuzzy
+msgid "Warning: testing this graphic card may freeze your computer"
+msgstr "Upozorenje: testiranje grafièke kartice moŸe zamrzunti vače raèunalo"
#: ../../Xconfig/various.pm_.c:29
#, c-format
@@ -463,26 +469,22 @@ msgstr "Podizanje sa DOS/Windows-a (loadlin)"
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:158 ../../any.pm_.c:190
+#: ../../any.pm_.c:159 ../../any.pm_.c:190
msgid "Bootloader main options"
msgstr "Glavne postavke bootloadera"
-#: ../../any.pm_.c:159 ../../any.pm_.c:191
+#: ../../any.pm_.c:160 ../../any.pm_.c:191
msgid "Bootloader to use"
msgstr "Koristiti Bootloader"
-#: ../../any.pm_.c:161
+#: ../../any.pm_.c:162
msgid "Bootloader installation"
msgstr "Bootloader instalacija"
-#: ../../any.pm_.c:163 ../../any.pm_.c:193
+#: ../../any.pm_.c:164 ../../any.pm_.c:193
msgid "Boot device"
msgstr "Boot uređaj"
-#: ../../any.pm_.c:164
-msgid "LBA (doesn't work on old BIOSes)"
-msgstr "LBA (ne radi na starim BIOSima)"
-
#: ../../any.pm_.c:165
msgid "Compact"
msgstr "Zbijeno"
@@ -499,16 +501,17 @@ msgstr "Video mod"
msgid "Delay before booting default image"
msgstr "Odgoda prije bootiranja uobièajenog imagea"
-#: ../../any.pm_.c:170 ../../any.pm_.c:786
+#: ../../any.pm_.c:170 ../../any.pm_.c:788
#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1111 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:743 ../../printerdrake.pm_.c:858
-#: ../../standalone/drakconnect_.c:624 ../../standalone/drakconnect_.c:649
+#: ../../install_steps_interactive.pm_.c:1096 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:850 ../../printerdrake.pm_.c:965
+#: ../../standalone/drakbackup_.c:3528 ../../standalone/drakconnect_.c:624
+#: ../../standalone/drakconnect_.c:649
msgid "Password"
msgstr "Lozinka"
-#: ../../any.pm_.c:171 ../../any.pm_.c:787
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../any.pm_.c:171 ../../any.pm_.c:789
+#: ../../install_steps_interactive.pm_.c:1097
msgid "Password (again)"
msgstr "Lozinka (provjera)"
@@ -544,14 +547,14 @@ msgstr ""
"Postavka ``Ogranièene opcije na komandnoj liniji'' nema svrhe ako ne unesete "
"lozinku"
-#: ../../any.pm_.c:184 ../../any.pm_.c:762
-#: ../../diskdrake/interactive.pm_.c:1180
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../any.pm_.c:184 ../../any.pm_.c:764
+#: ../../diskdrake/interactive.pm_.c:1191
+#: ../../install_steps_interactive.pm_.c:1091
msgid "Please try again"
msgstr "Molim pokučajte ponovo"
-#: ../../any.pm_.c:184 ../../any.pm_.c:762
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../any.pm_.c:184 ../../any.pm_.c:764
+#: ../../install_steps_interactive.pm_.c:1091
msgid "The passwords do not match"
msgstr "Lozinke se ne podudaraju"
@@ -601,16 +604,16 @@ msgstr ""
"Ovo su trenutni zapisi.\n"
"MoŸete dodati joč koji ili urediti postojeæi."
-#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1483
-#: ../../standalone/drakbackup_.c:1596 ../../standalone/drakfont_.c:1011
+#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1558
+#: ../../standalone/drakbackup_.c:1671 ../../standalone/drakfont_.c:1011
#: ../../standalone/drakfont_.c:1054
msgid "Add"
msgstr "Dodaj"
-#: ../../any.pm_.c:257 ../../any.pm_.c:774 ../../diskdrake/dav.pm_.c:60
+#: ../../any.pm_.c:257 ../../any.pm_.c:776 ../../diskdrake/dav.pm_.c:64
#: ../../diskdrake/hd_gtk.pm_.c:153 ../../diskdrake/removable.pm_.c:27
#: ../../diskdrake/smbnfs_gtk.pm_.c:88 ../../interactive/http.pm_.c:153
-#: ../../standalone/drakbackup_.c:2696
+#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2772
msgid "Done"
msgstr "Gotov"
@@ -622,7 +625,7 @@ msgstr "Promjeni"
msgid "Which type of entry do you want to add?"
msgstr "Kakvu vrstu zapisa Ÿelite dodati"
-#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1630
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1705
msgid "Linux"
msgstr "Linux"
@@ -716,13 +719,13 @@ msgstr "Da li imate joč koji?"
msgid "Do you have any %s interfaces?"
msgstr "Da li imate %s međusklopova?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:821 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:283
+#: ../../any.pm_.c:660 ../../any.pm_.c:823 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:286
msgid "No"
msgstr "Ne"
-#: ../../any.pm_.c:660 ../../any.pm_.c:820 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:283
+#: ../../any.pm_.c:660 ../../any.pm_.c:822 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:286
msgid "Yes"
msgstr "Da"
@@ -824,38 +827,48 @@ msgstr "dozvoli \"su\""
msgid "access to administrative files"
msgstr "pristup administracijskim datotekama"
-#: ../../any.pm_.c:758
+#: ../../any.pm_.c:754
+#, fuzzy
+msgid "access to network tools"
+msgstr "pristup rpm alatima"
+
+#: ../../any.pm_.c:755
+#, fuzzy
+msgid "access to compilation tools"
+msgstr "pristup rpm alatima"
+
+#: ../../any.pm_.c:760
#, c-format
msgid "(already added %s)"
msgstr "(veæ postoji %s)"
-#: ../../any.pm_.c:763
+#: ../../any.pm_.c:765
msgid "This password is too simple"
msgstr "Lozinka je prejednostavna"
-#: ../../any.pm_.c:764
+#: ../../any.pm_.c:766
msgid "Please give a user name"
msgstr "Molim dajte korisniku korisnièko ime"
-#: ../../any.pm_.c:765
+#: ../../any.pm_.c:767
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr "Korisnièko ime moŸe sadrŸavati samo mala slova, brojeve, `-' i `_'"
-#: ../../any.pm_.c:766
+#: ../../any.pm_.c:768
#, fuzzy
msgid "The user name is too long"
msgstr "Ovaj korisnik veæ postoji"
-#: ../../any.pm_.c:767
+#: ../../any.pm_.c:769
msgid "This user name is already added"
msgstr "Ovaj korisnik veæ postoji"
-#: ../../any.pm_.c:771
+#: ../../any.pm_.c:773
msgid "Add user"
msgstr "Dodaj korisnika"
-#: ../../any.pm_.c:772
+#: ../../any.pm_.c:774
#, c-format
msgid ""
"Enter a user\n"
@@ -864,32 +877,32 @@ msgstr ""
"Unesite korisnika\n"
"%s"
-#: ../../any.pm_.c:773
+#: ../../any.pm_.c:775
msgid "Accept user"
msgstr "Prihvati korisnika"
-#: ../../any.pm_.c:784
+#: ../../any.pm_.c:786
msgid "Real name"
msgstr "Puno ime"
-#: ../../any.pm_.c:785 ../../printerdrake.pm_.c:742
-#: ../../printerdrake.pm_.c:857
+#: ../../any.pm_.c:787 ../../printerdrake.pm_.c:849
+#: ../../printerdrake.pm_.c:964
msgid "User name"
msgstr "Korisnièko ime"
-#: ../../any.pm_.c:788
+#: ../../any.pm_.c:790
msgid "Shell"
msgstr "Ljuska"
-#: ../../any.pm_.c:790
+#: ../../any.pm_.c:792
msgid "Icon"
msgstr "Ikona"
-#: ../../any.pm_.c:817
+#: ../../any.pm_.c:819
msgid "Autologin"
msgstr "Auto-prijava"
-#: ../../any.pm_.c:818
+#: ../../any.pm_.c:820
msgid ""
"I can set up your computer to automatically log on one user.\n"
"Do you want to use this feature?"
@@ -897,54 +910,54 @@ msgstr ""
"Mogu podesiti da se vače raèunalo automatski prijavi kao jedan korisnik.\n"
"Da li Ÿelite koristiti tu pogodnost?"
-#: ../../any.pm_.c:822
+#: ../../any.pm_.c:824
msgid "Choose the default user:"
msgstr "Izaberite uobièajenog korisnika:"
-#: ../../any.pm_.c:823
+#: ../../any.pm_.c:825
msgid "Choose the window manager to run:"
msgstr "Izaberite prozorski upravitelj koji Ÿelite pokrenuti:"
-#: ../../any.pm_.c:838
+#: ../../any.pm_.c:840
msgid "Please choose a language to use."
msgstr "Molim izaberite jezik koji Ÿelite koristiti."
-#: ../../any.pm_.c:840
+#: ../../any.pm_.c:842
msgid ""
"Mandrake Linux can support multiple languages. Select\n"
"the languages you would like to install. They will be available\n"
"when your installation is complete and you restart your system."
msgstr "MoŸete izabrati druge jezike koji æe biti dostupni nakon instalacije"
-#: ../../any.pm_.c:854 ../../install_steps_interactive.pm_.c:708
+#: ../../any.pm_.c:856 ../../install_steps_interactive.pm_.c:692
#: ../../standalone/drakxtv_.c:73
msgid "All"
msgstr "Sve"
-#: ../../any.pm_.c:974
+#: ../../any.pm_.c:977
msgid "Allow all users"
msgstr "Dozvoli svim korisnicima"
-#: ../../any.pm_.c:974
+#: ../../any.pm_.c:977
msgid "No sharing"
msgstr "Nema dijeljenja"
-#: ../../any.pm_.c:984 ../../standalone.pm_.c:57
+#: ../../any.pm_.c:987 ../../install_any.pm_.c:1183 ../../standalone.pm_.c:58
#, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "Paket %s treba instalirati. Da li ga Ÿelite instalirati?"
-#: ../../any.pm_.c:987
+#: ../../any.pm_.c:990
msgid ""
"You can export using NFS or Samba. Please select which you'd like to use."
msgstr "MoŸete izvesti koristeæi NFS ili Sambu. Koji od njih Ÿelite"
-#: ../../any.pm_.c:995 ../../standalone.pm_.c:61
+#: ../../any.pm_.c:998 ../../install_any.pm_.c:1188 ../../standalone.pm_.c:63
#, c-format
msgid "Mandatory package %s is missing"
msgstr "NuŸni paket %s nedostaje"
-#: ../../any.pm_.c:1001
+#: ../../any.pm_.c:1004
msgid ""
"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
@@ -960,11 +973,11 @@ msgstr ""
"\n"
"\"Proizvoljno\" æe omoguæiti dozvoljavanje po korisniku.\n"
-#: ../../any.pm_.c:1015
+#: ../../any.pm_.c:1018
msgid "Launch userdrake"
msgstr "Pokreni userdrake"
-#: ../../any.pm_.c:1017
+#: ../../any.pm_.c:1020
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
@@ -972,31 +985,31 @@ msgstr ""
"Dijeljenje po korisniku koristi grupu \"fileshare\". \n"
"MoŸete koristiti userdrake za dodavanje korisnika u navedenu grupu."
-#: ../../any.pm_.c:1068
+#: ../../any.pm_.c:1071
msgid "Welcome To Crackers"
msgstr "Dobrodočli Crackeri"
-#: ../../any.pm_.c:1069
+#: ../../any.pm_.c:1072
msgid "Poor"
msgstr "Slab"
-#: ../../any.pm_.c:1070 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1073 ../../mouse.pm_.c:31
msgid "Standard"
msgstr "Standardno"
-#: ../../any.pm_.c:1071
+#: ../../any.pm_.c:1074
msgid "High"
msgstr "Visok"
-#: ../../any.pm_.c:1072
+#: ../../any.pm_.c:1075
msgid "Higher"
msgstr "Viči"
-#: ../../any.pm_.c:1073
+#: ../../any.pm_.c:1076
msgid "Paranoid"
msgstr "Paranoidan"
-#: ../../any.pm_.c:1076
+#: ../../any.pm_.c:1079
msgid ""
"This level is to be used with care. It makes your system more easy to use,\n"
"but very sensitive: it must not be used for a machine connected to others\n"
@@ -1007,7 +1020,7 @@ msgstr ""
"ali vrlo osjetljiv: ne smije biti koričten za raèunala koja su povezana u "
"mreŸi ili na Internet. Naime, nema lozinke za pristup."
-#: ../../any.pm_.c:1079
+#: ../../any.pm_.c:1082
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -1015,7 +1028,7 @@ msgstr ""
"Lozinke su sada ukljuèene međutim joč ne preporuèam koričtenje ovog raèunala "
"u mreŸnom okoliču."
-#: ../../any.pm_.c:1080
+#: ../../any.pm_.c:1083
msgid ""
"This is the standard security recommended for a computer that will be used "
"to connect to the Internet as a client."
@@ -1023,7 +1036,7 @@ msgstr ""
"Ovo je standardna sigurnosna razina preporuèena za raèunala koja æe biti "
"koričtena za spajanje na Internet kao klijent."
-#: ../../any.pm_.c:1081
+#: ../../any.pm_.c:1084
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
@@ -1031,7 +1044,7 @@ msgstr ""
"Veæ postoje neka ogranièenja i viče automatskih provjera se pokreæe svake "
"noæi."
-#: ../../any.pm_.c:1082
+#: ../../any.pm_.c:1085
msgid ""
"With this security level, the use of this system as a server becomes "
"possible.\n"
@@ -1046,7 +1059,7 @@ msgstr ""
"koji prima zahtjeve od mnogo klijenata. Upozorenje: ako je vače raèunalo "
"samo klijent na Internetu, bolje da izaberete niŸu razinu."
-#: ../../any.pm_.c:1085
+#: ../../any.pm_.c:1088
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
"security features are at their maximum."
@@ -1054,31 +1067,31 @@ msgstr ""
"Temeljeno na prijačnjoj razini, ali je sustav potpuno zatvoren.\n"
"Sigurnosne znaèajke su na maksimumu."
-#: ../../any.pm_.c:1091
+#: ../../any.pm_.c:1094
#, fuzzy
msgid "DrakSec Basic Options"
msgstr "Opcije"
-#: ../../any.pm_.c:1092
+#: ../../any.pm_.c:1095
#, fuzzy
msgid "Please choose the desired security level"
msgstr "Izaberite sigurnosni nivo"
-#: ../../any.pm_.c:1095
+#: ../../any.pm_.c:1098
msgid "Security level"
msgstr "Sigurnosna razina"
-#: ../../any.pm_.c:1097
+#: ../../any.pm_.c:1100
msgid "Use libsafe for servers"
msgstr "Koristi libsafe za posluŸitelje"
-#: ../../any.pm_.c:1098
+#: ../../any.pm_.c:1101
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
"Biblioteka koja čtiti od prekoraèenja spremnika i format string napada."
-#: ../../any.pm_.c:1099
+#: ../../any.pm_.c:1102
msgid "Security Administrator (login or email)"
msgstr ""
@@ -1118,57 +1131,57 @@ msgstr ""
# and only one line per string for the GRUB messages
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:935
+#: ../../bootloader.pm_.c:932
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Dobro dosli u GRUB izbornik operativnih sustava!"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:938
+#: ../../bootloader.pm_.c:935
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "Za mijenjanje izabranog sustava pritisnite tipke %c i %c."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:941
+#: ../../bootloader.pm_.c:938
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Pritisnite ENTER za bootiranje izabranog OS, 'e' za promjenu"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:941
msgid "commands before booting, or 'c' for a command-line."
msgstr "naredbe prije bootiranja ili 'c' za komandnu liniju."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:947
+#: ../../bootloader.pm_.c:944
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "Osvjetljeni zapis biti æe bootiran automatski za %d sekundi."
-#: ../../bootloader.pm_.c:951
+#: ../../bootloader.pm_.c:948
msgid "not enough room in /boot"
msgstr "nema dovoljno mjesta u /boot"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1051
+#: ../../bootloader.pm_.c:1048
msgid "Desktop"
msgstr "Radna povrčina"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1053
+#: ../../bootloader.pm_.c:1050
msgid "Start Menu"
msgstr "Start Menu"
-#: ../../bootloader.pm_.c:1072
+#: ../../bootloader.pm_.c:1069
#, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "Ne moŸete instalirati bootloader na %s particiju\n"
-#: ../../bootlook.pm_.c:45
+#: ../../bootlook.pm_.c:45 ../../standalone/draksplash_.c:25
msgid "no help implemented yet.\n"
msgstr "nema joč implementirane pomoæi.\n"
@@ -1176,8 +1189,8 @@ msgstr "nema joč implementirane pomoæi.\n"
msgid "Boot Style Configuration"
msgstr "Postava Stila Podizanja"
-#: ../../bootlook.pm_.c:78 ../../harddrake/ui.pm_.c:59
-#: ../../harddrake/ui.pm_.c:60 ../../standalone/drakfloppy_.c:81
+#: ../../bootlook.pm_.c:78 ../../harddrake/ui.pm_.c:62
+#: ../../harddrake/ui.pm_.c:63 ../../standalone/drakfloppy_.c:81
#: ../../standalone/logdrake_.c:101
msgid "/_File"
msgstr "/_Datoteka"
@@ -1187,7 +1200,7 @@ msgstr "/_Datoteka"
msgid "/File/_Quit"
msgstr "/Datoteka/_Izlaz"
-#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:60
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:63
#: ../../standalone/drakfloppy_.c:82 ../../standalone/logdrake_.c:107
msgid "<control>Q"
msgstr "<control>Q"
@@ -1229,94 +1242,101 @@ msgstr "Instaliraj sustav"
msgid "Display theme under console"
msgstr ""
-#: ../../bootlook.pm_.c:166
+#: ../../bootlook.pm_.c:145
+#, fuzzy
+msgid "Create new theme"
+msgstr "Stvori novu particiju"
+
+#: ../../bootlook.pm_.c:169
msgid "Can't create Bootsplash preview"
msgstr ""
-#: ../../bootlook.pm_.c:166 ../../bootlook.pm_.c:184 ../../bootlook.pm_.c:187
-#: ../../bootlook.pm_.c:190 ../../bootlook.pm_.c:220 ../../bootlook.pm_.c:222
-#: ../../bootlook.pm_.c:232 ../../bootlook.pm_.c:241 ../../bootlook.pm_.c:248
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:336
-#: ../../diskdrake/interactive.pm_.c:351 ../../diskdrake/interactive.pm_.c:464
-#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../bootlook.pm_.c:169 ../../bootlook.pm_.c:187 ../../bootlook.pm_.c:190
+#: ../../bootlook.pm_.c:193 ../../bootlook.pm_.c:223 ../../bootlook.pm_.c:225
+#: ../../bootlook.pm_.c:235 ../../bootlook.pm_.c:244 ../../bootlook.pm_.c:251
+#: ../../diskdrake/dav.pm_.c:73 ../../diskdrake/hd_gtk.pm_.c:116
+#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/interactive.pm_.c:355
+#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/interactive.pm_.c:474
+#: ../../diskdrake/smbnfs_gtk.pm_.c:45 ../../fsedit.pm_.c:239
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:365 ../../interactive/http.pm_.c:119
-#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:80
+#: ../../interactive/http.pm_.c:119 ../../interactive/http.pm_.c:120
+#: ../../standalone/draksplash_.c:32
msgid "Error"
msgstr "Grečka"
-#: ../../bootlook.pm_.c:183
+#: ../../bootlook.pm_.c:186
#, c-format
msgid "Backup %s to %s.old"
msgstr ""
-#: ../../bootlook.pm_.c:184
+#: ../../bootlook.pm_.c:187
msgid "unable to backup lilo message"
msgstr ""
-#: ../../bootlook.pm_.c:186
+#: ../../bootlook.pm_.c:189
#, fuzzy, c-format
msgid "Copy %s to %s"
msgstr "Kopiram %s"
-#: ../../bootlook.pm_.c:187
+#: ../../bootlook.pm_.c:190
msgid "can't change lilo message"
msgstr ""
-#: ../../bootlook.pm_.c:190
+#: ../../bootlook.pm_.c:193
msgid "Lilo message not found"
msgstr ""
-#: ../../bootlook.pm_.c:220
+#: ../../bootlook.pm_.c:223
msgid "Can't write /etc/sysconfig/bootsplash."
msgstr ""
-#: ../../bootlook.pm_.c:220
+#: ../../bootlook.pm_.c:223
#, fuzzy, c-format
msgid "Write %s"
msgstr "XFree %s"
-#: ../../bootlook.pm_.c:222
+#: ../../bootlook.pm_.c:225
msgid ""
"Can't write /etc/sysconfig/bootsplash\n"
"File not found."
msgstr ""
-#: ../../bootlook.pm_.c:233
+#: ../../bootlook.pm_.c:236
#, c-format
msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
msgstr ""
-#: ../../bootlook.pm_.c:236
+#: ../../bootlook.pm_.c:239
#, c-format
-msgid "Make initrd 'mkinird -f /boot/initrd-%s.img %s'."
+msgid "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
msgstr ""
-#: ../../bootlook.pm_.c:242
+#: ../../bootlook.pm_.c:245
msgid ""
"Can't relaunch LiLo!\n"
"Launch \"lilo\" as root in command line to complete LiLo theme installation."
msgstr ""
-#: ../../bootlook.pm_.c:246
+#: ../../bootlook.pm_.c:249
msgid "Relaunch 'lilo'"
msgstr ""
-#: ../../bootlook.pm_.c:248
+#: ../../bootlook.pm_.c:251 ../../standalone/draksplash_.c:161
+#: ../../standalone/draksplash_.c:330 ../../standalone/draksplash_.c:454
#, fuzzy
msgid "Notice"
msgstr "NemaVidea"
-#: ../../bootlook.pm_.c:249
+#: ../../bootlook.pm_.c:252
msgid "LiLo and Bootsplash themes installation successfull"
msgstr ""
-#: ../../bootlook.pm_.c:249
+#: ../../bootlook.pm_.c:252
#, fuzzy
msgid "Theme installation failed!"
msgstr "Odaberite razred instalacije"
-#: ../../bootlook.pm_.c:258
+#: ../../bootlook.pm_.c:261
#, c-format
msgid ""
"You are currently using %s as your boot manager.\n"
@@ -1325,23 +1345,22 @@ msgstr ""
"Trenutno koristite %s kao Upravitelj Boot-a.\n"
"Pritisnite na Podesi za pokretanje èarobnjaka za postavljanje."
-#: ../../bootlook.pm_.c:260 ../../standalone/drakbackup_.c:2352
-#: ../../standalone/drakbackup_.c:2362 ../../standalone/drakbackup_.c:2372
-#: ../../standalone/drakbackup_.c:2380 ../../standalone/drakgw_.c:592
-#: ../../standalone/tinyfirewall_.c:58
+#: ../../bootlook.pm_.c:263 ../../standalone/drakbackup_.c:2427
+#: ../../standalone/drakbackup_.c:2437 ../../standalone/drakbackup_.c:2447
+#: ../../standalone/drakbackup_.c:2455 ../../standalone/drakgw_.c:530
msgid "Configure"
msgstr "Podesi"
-#: ../../bootlook.pm_.c:267
+#: ../../bootlook.pm_.c:270
#, fuzzy
msgid "Splash selection"
msgstr "Spremi odabir paketa"
-#: ../../bootlook.pm_.c:270
+#: ../../bootlook.pm_.c:273
msgid "Themes"
msgstr ""
-#: ../../bootlook.pm_.c:272
+#: ../../bootlook.pm_.c:275
msgid ""
"\n"
"Select a theme for\n"
@@ -1350,44 +1369,44 @@ msgid ""
"them separatly"
msgstr ""
-#: ../../bootlook.pm_.c:275
+#: ../../bootlook.pm_.c:278
msgid "Lilo screen"
msgstr ""
-#: ../../bootlook.pm_.c:279
+#: ../../bootlook.pm_.c:283
msgid "Bootsplash"
msgstr ""
-#: ../../bootlook.pm_.c:314
+#: ../../bootlook.pm_.c:318
msgid "System mode"
msgstr "Sistemski mod"
-#: ../../bootlook.pm_.c:316
+#: ../../bootlook.pm_.c:320
msgid "Launch the graphical environment when your system starts"
msgstr "Pokreni X-Window sustav pri podizanju"
-#: ../../bootlook.pm_.c:321
+#: ../../bootlook.pm_.c:325
msgid "No, I don't want autologin"
msgstr "Ne, ne Ÿelim automatsko prijavljivanje"
-#: ../../bootlook.pm_.c:323
+#: ../../bootlook.pm_.c:327
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "Da, Ÿelim automatsko prijavljivanje sa ovim korisnikom i okruŸjem"
-#: ../../bootlook.pm_.c:333 ../../network/netconnect.pm_.c:101
+#: ../../bootlook.pm_.c:337 ../../network/netconnect.pm_.c:101
#: ../../standalone/drakTermServ_.c:173 ../../standalone/drakTermServ_.c:300
-#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:3513
-#: ../../standalone/drakbackup_.c:4290 ../../standalone/drakconnect_.c:108
+#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4191
+#: ../../standalone/drakbackup_.c:4952 ../../standalone/drakconnect_.c:108
#: ../../standalone/drakconnect_.c:140 ../../standalone/drakconnect_.c:296
#: ../../standalone/drakconnect_.c:435 ../../standalone/drakconnect_.c:521
#: ../../standalone/drakconnect_.c:564 ../../standalone/drakconnect_.c:667
#: ../../standalone/drakfloppy_.c:376 ../../standalone/drakfont_.c:612
#: ../../standalone/drakfont_.c:799 ../../standalone/drakfont_.c:876
-#: ../../standalone/drakfont_.c:963 ../../standalone/logdrake_.c:521
+#: ../../standalone/drakfont_.c:963 ../../standalone/logdrake_.c:519
msgid "OK"
msgstr "U redu"
-#: ../../bootlook.pm_.c:403
+#: ../../bootlook.pm_.c:407
#, c-format
msgid "can not open /etc/inittab for reading: %s"
msgstr "ne mogu otvoriti /etc/inittab za èitanje: %s"
@@ -1484,49 +1503,53 @@ msgstr "Austrija"
msgid "United States"
msgstr "Sjedinjene Amerièke DrŸave"
-#: ../../detect_devices.pm_.c:599 ../../detect_devices.pm_.c:641
-#: ../../detect_devices.pm_.c:803
-#, fuzzy
-msgid "Unknown Model"
-msgstr "Nepoznati model"
-
#: ../../diskdrake/dav.pm_.c:23
#, fuzzy
msgid "New"
msgstr "novi"
-#: ../../diskdrake/dav.pm_.c:57
+#: ../../diskdrake/dav.pm_.c:59 ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/smbnfs_gtk.pm_.c:81
+msgid "Unmount"
+msgstr "Demontiraj"
+
+#: ../../diskdrake/dav.pm_.c:60 ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/smbnfs_gtk.pm_.c:82
+msgid "Mount"
+msgstr "Montiraj"
+
+#: ../../diskdrake/dav.pm_.c:61
msgid "Server"
msgstr "PosluŸitelj"
-#: ../../diskdrake/dav.pm_.c:58 ../../diskdrake/interactive.pm_.c:375
-#: ../../diskdrake/interactive.pm_.c:558 ../../diskdrake/interactive.pm_.c:585
+#: ../../diskdrake/dav.pm_.c:62 ../../diskdrake/interactive.pm_.c:379
+#: ../../diskdrake/interactive.pm_.c:568 ../../diskdrake/interactive.pm_.c:595
#: ../../diskdrake/removable.pm_.c:24 ../../diskdrake/removable_gtk.pm_.c:15
#: ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr "Toèka montiranja"
-#: ../../diskdrake/dav.pm_.c:68
+#: ../../diskdrake/dav.pm_.c:81
#, fuzzy
msgid "Please enter the WebDAV server URL"
msgstr "Upičite brzinu cd snimaèa"
-#: ../../diskdrake/dav.pm_.c:71
+#: ../../diskdrake/dav.pm_.c:84
msgid "The URL must begin with http:// or https://"
msgstr ""
-#: ../../diskdrake/dav.pm_.c:92
+#: ../../diskdrake/dav.pm_.c:105
#, fuzzy
msgid "Server: "
msgstr "PosluŸitelj"
-#: ../../diskdrake/dav.pm_.c:93 ../../diskdrake/interactive.pm_.c:435
-#: ../../diskdrake/interactive.pm_.c:1079
-#: ../../diskdrake/interactive.pm_.c:1153
+#: ../../diskdrake/dav.pm_.c:106 ../../diskdrake/interactive.pm_.c:440
+#: ../../diskdrake/interactive.pm_.c:1089
+#: ../../diskdrake/interactive.pm_.c:1164
msgid "Mount point: "
msgstr "Mjesto montiranja:"
-#: ../../diskdrake/dav.pm_.c:94 ../../diskdrake/interactive.pm_.c:1159
+#: ../../diskdrake/dav.pm_.c:107 ../../diskdrake/interactive.pm_.c:1170
#, c-format
msgid "Options: %s"
msgstr "Opcije: %s"
@@ -1535,8 +1558,9 @@ msgstr "Opcije: %s"
msgid "Please make a backup of your data first"
msgstr "Prvo napravite backup podataka"
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:924
-#: ../../diskdrake/interactive.pm_.c:933 ../../diskdrake/interactive.pm_.c:999
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:934
+#: ../../diskdrake/interactive.pm_.c:943
+#: ../../diskdrake/interactive.pm_.c:1009
msgid "Read carefully!"
msgstr "Proèitajte paŸljivo!"
@@ -1575,10 +1599,17 @@ msgid "Please click on a partition"
msgstr "Molim kliknite na particiju"
#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
-#: ../../install_steps_gtk.pm_.c:471
+#: ../../install_steps_gtk.pm_.c:465
msgid "Details"
msgstr "Detalji"
+#: ../../diskdrake/hd_gtk.pm_.c:252
+#, fuzzy
+msgid "No hard drives found"
+msgstr ""
+"Nije pronađen lokalni pisaè!\n"
+"\n"
+
#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Ext2"
msgstr "Ext2"
@@ -1603,13 +1634,13 @@ msgstr "SunOS"
msgid "Swap"
msgstr "Swap"
-#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1105
msgid "Empty"
msgstr "Prazno"
-#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:331
-#: ../../install_steps_gtk.pm_.c:389 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1679
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:325
+#: ../../install_steps_gtk.pm_.c:383 ../../mouse.pm_.c:165
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1754
msgid "Other"
msgstr "Ostali"
@@ -1617,12 +1648,12 @@ msgstr "Ostali"
msgid "Filesystem types:"
msgstr "Vrste datoteènih sustava:"
-#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:397
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:402
msgid "Create"
msgstr "Napravi"
-#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:376
-#: ../../diskdrake/interactive.pm_.c:521 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:380
+#: ../../diskdrake/interactive.pm_.c:531 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "Vrsta"
@@ -1632,7 +1663,7 @@ msgstr "Vrsta"
msgid "Use ``%s'' instead"
msgstr "Umjesto toga koristi ``%s''"
-#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:389
msgid "Delete"
msgstr "Obriči"
@@ -1640,7 +1671,7 @@ msgstr "Obriči"
msgid "Use ``Unmount'' first"
msgstr "Prvo pritisnite ``Demontiraj''"
-#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:513
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:518
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
@@ -1648,72 +1679,72 @@ msgstr ""
"Nakon mijenjanja tipa particije %s svi podaci na ovoj particiji biti æe "
"obrisani"
-#: ../../diskdrake/interactive.pm_.c:173
+#: ../../diskdrake/interactive.pm_.c:174
msgid "Choose a partition"
msgstr "Izaberite particiju"
-#: ../../diskdrake/interactive.pm_.c:173
+#: ../../diskdrake/interactive.pm_.c:174
msgid "Choose another partition"
msgstr "Izaberite drugu particiju"
-#: ../../diskdrake/interactive.pm_.c:198
+#: ../../diskdrake/interactive.pm_.c:199
msgid "Exit"
msgstr "Izlaz"
-#: ../../diskdrake/interactive.pm_.c:220
+#: ../../diskdrake/interactive.pm_.c:221
msgid "Toggle to expert mode"
msgstr "Normalno > Ekspert"
-#: ../../diskdrake/interactive.pm_.c:220
+#: ../../diskdrake/interactive.pm_.c:221
msgid "Toggle to normal mode"
msgstr "Prebaci u normalni mod"
-#: ../../diskdrake/interactive.pm_.c:220
+#: ../../diskdrake/interactive.pm_.c:221
msgid "Undo"
msgstr "Vrati"
-#: ../../diskdrake/interactive.pm_.c:239
+#: ../../diskdrake/interactive.pm_.c:240
msgid "Continue anyway?"
msgstr "Da ipak nastavim?"
-#: ../../diskdrake/interactive.pm_.c:244
+#: ../../diskdrake/interactive.pm_.c:245
msgid "Quit without saving"
msgstr "Da zavrčim bez spremanja"
-#: ../../diskdrake/interactive.pm_.c:244
+#: ../../diskdrake/interactive.pm_.c:245
msgid "Quit without writing the partition table?"
msgstr "Da zavrčim bez zapisivanje particijske tablice?"
-#: ../../diskdrake/interactive.pm_.c:249
+#: ../../diskdrake/interactive.pm_.c:250
msgid "Do you want to save /etc/fstab modifications"
msgstr "Da li Ÿelite spremiti /etc/fstab promjene?"
-#: ../../diskdrake/interactive.pm_.c:261
+#: ../../diskdrake/interactive.pm_.c:263
msgid "Auto allocate"
msgstr "Raspodijeli automatski"
-#: ../../diskdrake/interactive.pm_.c:261
+#: ../../diskdrake/interactive.pm_.c:263
msgid "Clear all"
msgstr "Oèisti sve"
-#: ../../diskdrake/interactive.pm_.c:261
+#: ../../diskdrake/interactive.pm_.c:263
#: ../../install_steps_interactive.pm_.c:214
msgid "More"
msgstr "Viče"
-#: ../../diskdrake/interactive.pm_.c:264
+#: ../../diskdrake/interactive.pm_.c:267
msgid "Hard drive information"
msgstr "Hard disk informacije"
-#: ../../diskdrake/interactive.pm_.c:294
+#: ../../diskdrake/interactive.pm_.c:298
msgid "All primary partitions are used"
msgstr "Sve primarne particije su iskoričtene"
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:299
msgid "I can't add any more partition"
msgstr "Ne mogu dodati niti jednu dodatnu particiju"
-#: ../../diskdrake/interactive.pm_.c:296
+#: ../../diskdrake/interactive.pm_.c:300
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -1722,31 +1753,31 @@ msgstr ""
"bi\n"
"mogli stvoriti jednu extended particiju."
-#: ../../diskdrake/interactive.pm_.c:306
+#: ../../diskdrake/interactive.pm_.c:310
msgid "Save partition table"
msgstr "Spremi particijsku tabelu"
-#: ../../diskdrake/interactive.pm_.c:307
+#: ../../diskdrake/interactive.pm_.c:311
msgid "Restore partition table"
msgstr "Vrati particijsku tabelu"
-#: ../../diskdrake/interactive.pm_.c:308
+#: ../../diskdrake/interactive.pm_.c:312
msgid "Rescue partition table"
msgstr "Spasi particijsku tabelu"
-#: ../../diskdrake/interactive.pm_.c:310
+#: ../../diskdrake/interactive.pm_.c:314
msgid "Reload partition table"
msgstr "Ponovno uèitaj particijsku tabelu"
-#: ../../diskdrake/interactive.pm_.c:315
+#: ../../diskdrake/interactive.pm_.c:319
msgid "Removable media automounting"
msgstr "Automatsko montiranje prenosivog medija"
-#: ../../diskdrake/interactive.pm_.c:324 ../../diskdrake/interactive.pm_.c:344
+#: ../../diskdrake/interactive.pm_.c:328 ../../diskdrake/interactive.pm_.c:348
msgid "Select file"
msgstr "Odaberite datoteku"
-#: ../../diskdrake/interactive.pm_.c:331
+#: ../../diskdrake/interactive.pm_.c:335
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1754,11 +1785,11 @@ msgstr ""
"Backup particijske tablice nema istu velièinu\n"
"Da ipak nastavim?"
-#: ../../diskdrake/interactive.pm_.c:345
+#: ../../diskdrake/interactive.pm_.c:349
msgid "Warning"
msgstr "Upozorenje"
-#: ../../diskdrake/interactive.pm_.c:346
+#: ../../diskdrake/interactive.pm_.c:350
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1766,112 +1797,104 @@ msgstr ""
"Umetnite disketu u pogon\n"
"Svi podaci na disketi biti æe izbrisani"
-#: ../../diskdrake/interactive.pm_.c:357
+#: ../../diskdrake/interactive.pm_.c:361
msgid "Trying to rescue partition table"
msgstr "Pokučavam spasiti particijsku tablicu"
-#: ../../diskdrake/interactive.pm_.c:363
+#: ../../diskdrake/interactive.pm_.c:367
msgid "Detailed information"
msgstr "Detaljne informacije"
-#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:652
+#: ../../diskdrake/interactive.pm_.c:382 ../../diskdrake/interactive.pm_.c:662
msgid "Resize"
msgstr "Promijeni velièinu"
-#: ../../diskdrake/interactive.pm_.c:379 ../../diskdrake/interactive.pm_.c:705
+#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/interactive.pm_.c:715
msgid "Move"
msgstr "Premjesti"
-#: ../../diskdrake/interactive.pm_.c:380
+#: ../../diskdrake/interactive.pm_.c:384
msgid "Format"
msgstr "Formatiraj"
-#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/smbnfs_gtk.pm_.c:82
-msgid "Mount"
-msgstr "Montiraj"
-
-#: ../../diskdrake/interactive.pm_.c:382
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Add to RAID"
msgstr "Dodaj RAID-u"
-#: ../../diskdrake/interactive.pm_.c:383
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Add to LVM"
msgstr "Dodaj LVM-u"
-#: ../../diskdrake/interactive.pm_.c:384 ../../diskdrake/smbnfs_gtk.pm_.c:81
-msgid "Unmount"
-msgstr "Demontiraj"
-
-#: ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/interactive.pm_.c:390
msgid "Remove from RAID"
msgstr "Ukloni sa RAID-a"
-#: ../../diskdrake/interactive.pm_.c:387
+#: ../../diskdrake/interactive.pm_.c:391
msgid "Remove from LVM"
msgstr "Ukloni sa LVM-a"
-#: ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/interactive.pm_.c:392
msgid "Modify RAID"
msgstr "Promijeni RAID"
-#: ../../diskdrake/interactive.pm_.c:389
+#: ../../diskdrake/interactive.pm_.c:393
msgid "Use for loopback"
msgstr "Koristi za loopback"
-#: ../../diskdrake/interactive.pm_.c:428
+#: ../../diskdrake/interactive.pm_.c:433
msgid "Create a new partition"
msgstr "Stvori novu particiju"
-#: ../../diskdrake/interactive.pm_.c:431
+#: ../../diskdrake/interactive.pm_.c:436
msgid "Start sector: "
msgstr "Poèetni sektor:"
-#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:805
+#: ../../diskdrake/interactive.pm_.c:438 ../../diskdrake/interactive.pm_.c:815
msgid "Size in MB: "
msgstr "Velièina u MB:"
-#: ../../diskdrake/interactive.pm_.c:434 ../../diskdrake/interactive.pm_.c:806
+#: ../../diskdrake/interactive.pm_.c:439 ../../diskdrake/interactive.pm_.c:816
msgid "Filesystem type: "
msgstr "Vrsta datoteènog sustava:"
-#: ../../diskdrake/interactive.pm_.c:439
+#: ../../diskdrake/interactive.pm_.c:444
msgid "Preference: "
msgstr "Postavke:"
-#: ../../diskdrake/interactive.pm_.c:464
+#: ../../diskdrake/interactive.pm_.c:469
msgid ""
"You can't create a new partition\n"
"(since you reached the maximal number of primary partitions).\n"
"First remove a primary partition and create an extended partition."
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:494
+#: ../../diskdrake/interactive.pm_.c:499
msgid "Remove the loopback file?"
msgstr "Ukloniti loopback datoteku?"
-#: ../../diskdrake/interactive.pm_.c:519
+#: ../../diskdrake/interactive.pm_.c:529
msgid "Change partition type"
msgstr "Mijenjam tip particije"
-#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:530 ../../diskdrake/removable.pm_.c:48
msgid "Which filesystem do you want?"
msgstr "Koji datoteèni sustav Ÿelite?"
-#: ../../diskdrake/interactive.pm_.c:526
+#: ../../diskdrake/interactive.pm_.c:536
msgid "Switching from ext2 to ext3"
msgstr "Mijenjam iz ext2 u ext3"
-#: ../../diskdrake/interactive.pm_.c:556
+#: ../../diskdrake/interactive.pm_.c:566
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "Gdje Ÿelite montirati loopback datoteku %s?"
-#: ../../diskdrake/interactive.pm_.c:557
+#: ../../diskdrake/interactive.pm_.c:567
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Gdje Ÿelite montirati uređaj %s?"
-#: ../../diskdrake/interactive.pm_.c:563
+#: ../../diskdrake/interactive.pm_.c:573
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1880,138 +1903,138 @@ msgstr ""
"loop back.\n"
"Uklonite loopback prvo"
-#: ../../diskdrake/interactive.pm_.c:584
+#: ../../diskdrake/interactive.pm_.c:594
#, fuzzy, c-format
msgid "Where do you want to mount %s?"
msgstr "Gdje Ÿelite montirati uređaj %s?"
-#: ../../diskdrake/interactive.pm_.c:608
+#: ../../diskdrake/interactive.pm_.c:618
msgid "Computing FAT filesystem bounds"
msgstr "Izraèunavam granice fat datoteènog sustava"
-#: ../../diskdrake/interactive.pm_.c:608 ../../diskdrake/interactive.pm_.c:667
-#: ../../install_interactive.pm_.c:131
+#: ../../diskdrake/interactive.pm_.c:618 ../../diskdrake/interactive.pm_.c:677
+#: ../../install_interactive.pm_.c:133
msgid "Resizing"
msgstr "Mijenjam velièinu"
-#: ../../diskdrake/interactive.pm_.c:640
+#: ../../diskdrake/interactive.pm_.c:650
msgid "This partition is not resizeable"
msgstr "Ova particija nije promjenjiva u velièini"
-#: ../../diskdrake/interactive.pm_.c:645
+#: ../../diskdrake/interactive.pm_.c:655
msgid "All data on this partition should be backed-up"
msgstr "Preporuèam da prvo backupirate sve podatke s ove particije"
-#: ../../diskdrake/interactive.pm_.c:647
+#: ../../diskdrake/interactive.pm_.c:657
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr ""
"Nakon mijenjanja velièine particije %s svi podaci na ovoj particiji biti æe "
"izgubljeni"
-#: ../../diskdrake/interactive.pm_.c:652
+#: ../../diskdrake/interactive.pm_.c:662
msgid "Choose the new size"
msgstr "Odaberite novu velièinu"
-#: ../../diskdrake/interactive.pm_.c:653
+#: ../../diskdrake/interactive.pm_.c:663
msgid "New size in MB: "
msgstr "Nova velièina u MB: "
-#: ../../diskdrake/interactive.pm_.c:706
+#: ../../diskdrake/interactive.pm_.c:716
msgid "Which disk do you want to move it to?"
msgstr "Na koji disk se Ÿelite premjestiti?"
-#: ../../diskdrake/interactive.pm_.c:707
+#: ../../diskdrake/interactive.pm_.c:717
msgid "Sector"
msgstr "Sektor"
-#: ../../diskdrake/interactive.pm_.c:708
+#: ../../diskdrake/interactive.pm_.c:718
msgid "Which sector do you want to move it to?"
msgstr "Na koji se sektor Ÿelite premjestiti?"
-#: ../../diskdrake/interactive.pm_.c:711
+#: ../../diskdrake/interactive.pm_.c:721
msgid "Moving"
msgstr "Premječtam"
-#: ../../diskdrake/interactive.pm_.c:711
+#: ../../diskdrake/interactive.pm_.c:721
msgid "Moving partition..."
msgstr "Premječtam particiju..."
-#: ../../diskdrake/interactive.pm_.c:728
+#: ../../diskdrake/interactive.pm_.c:738
msgid "Choose an existing RAID to add to"
msgstr "Izaberite postojeæi RAID na koji Ÿelite dodati "
-#: ../../diskdrake/interactive.pm_.c:729 ../../diskdrake/interactive.pm_.c:746
+#: ../../diskdrake/interactive.pm_.c:739 ../../diskdrake/interactive.pm_.c:756
msgid "new"
msgstr "novi"
-#: ../../diskdrake/interactive.pm_.c:744
+#: ../../diskdrake/interactive.pm_.c:754
msgid "Choose an existing LVM to add to"
msgstr "Izaberite postojeæi LVM na koji Ÿelite dodati "
-#: ../../diskdrake/interactive.pm_.c:749
+#: ../../diskdrake/interactive.pm_.c:759
msgid "LVM name?"
msgstr "LVM ime?"
-#: ../../diskdrake/interactive.pm_.c:790
+#: ../../diskdrake/interactive.pm_.c:800
msgid "This partition can't be used for loopback"
msgstr "Ova particija se ne moŸe koristiti za loopback"
-#: ../../diskdrake/interactive.pm_.c:803
+#: ../../diskdrake/interactive.pm_.c:813
msgid "Loopback"
msgstr "Loopback"
-#: ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:814
msgid "Loopback file name: "
msgstr "Ime loopback datoteke:"
-#: ../../diskdrake/interactive.pm_.c:809
+#: ../../diskdrake/interactive.pm_.c:819
msgid "Give a file name"
msgstr "Dajte ime datoteke"
-#: ../../diskdrake/interactive.pm_.c:812
+#: ../../diskdrake/interactive.pm_.c:822
msgid "File already used by another loopback, choose another one"
msgstr ""
"Datoteku koristi neki drugi loopback. Molim izaberite neku drugu datoteku"
-#: ../../diskdrake/interactive.pm_.c:813
+#: ../../diskdrake/interactive.pm_.c:823
msgid "File already exists. Use it?"
msgstr "Datoteka veæ postoji. Da li da nju upotrijebim?"
-#: ../../diskdrake/interactive.pm_.c:836
+#: ../../diskdrake/interactive.pm_.c:846
msgid "Mount options"
msgstr "Opcije montiranja"
-#: ../../diskdrake/interactive.pm_.c:843
+#: ../../diskdrake/interactive.pm_.c:853
msgid "Various"
msgstr "Razno"
-#: ../../diskdrake/interactive.pm_.c:907 ../../standalone/drakfloppy_.c:103
+#: ../../diskdrake/interactive.pm_.c:917 ../../standalone/drakfloppy_.c:103
msgid "device"
msgstr "uređaj"
-#: ../../diskdrake/interactive.pm_.c:908
+#: ../../diskdrake/interactive.pm_.c:918
msgid "level"
msgstr "razina"
-#: ../../diskdrake/interactive.pm_.c:909
+#: ../../diskdrake/interactive.pm_.c:919
msgid "chunk size"
msgstr "chunk velièina"
-#: ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:934
msgid "Be careful: this operation is dangerous."
msgstr "Budite oprezni: ova operacija je opasna"
-#: ../../diskdrake/interactive.pm_.c:939
+#: ../../diskdrake/interactive.pm_.c:949
msgid "What type of partitioning?"
msgstr "Kakav tip particioniranja?"
-#: ../../diskdrake/interactive.pm_.c:955
+#: ../../diskdrake/interactive.pm_.c:965
#, fuzzy, c-format
msgid "The package %s is needed. Install it?"
msgstr "Paket %s treba instalirati. Da li ga Ÿelite instalirati?"
-#: ../../diskdrake/interactive.pm_.c:969
+#: ../../diskdrake/interactive.pm_.c:979
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -2023,7 +2046,7 @@ msgstr ""
"Imate dvije opcije ili æete koristiti LILO pa neæe raditi ili neæete\n"
"koristiti LILO pa vam /boot neæe ni trebati."
-#: ../../diskdrake/interactive.pm_.c:973
+#: ../../diskdrake/interactive.pm_.c:983
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -2035,7 +2058,7 @@ msgstr ""
"Ukoliko planirate koristiti LILO boot menadŸer, budite paŸljivi da dodate/"
"boot particiju"
-#: ../../diskdrake/interactive.pm_.c:979
+#: ../../diskdrake/interactive.pm_.c:989
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
@@ -2045,45 +2068,45 @@ msgstr ""
"Nema bootloader-a koji je u moguænosti to podrŸati bez /boot particije.\n"
"Zato budite paŸljivi da dodate /boot particiju"
-#: ../../diskdrake/interactive.pm_.c:999
+#: ../../diskdrake/interactive.pm_.c:1009
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "Particijska tablica pogona %s æe sada biti zapisana na disk!"
-#: ../../diskdrake/interactive.pm_.c:1003
+#: ../../diskdrake/interactive.pm_.c:1013
msgid "You'll need to reboot before the modification can take place"
msgstr "Trebate ponovo pokrenuti sustav prije nego promjene postanu aktivne"
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1024
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr ""
"Nakon formatiranja particije %s svi podaci na ovoj particiji biti æe obrisani"
-#: ../../diskdrake/interactive.pm_.c:1016
+#: ../../diskdrake/interactive.pm_.c:1026
msgid "Formatting"
msgstr "Formatiram"
-#: ../../diskdrake/interactive.pm_.c:1017
+#: ../../diskdrake/interactive.pm_.c:1027
#, c-format
msgid "Formatting loopback file %s"
msgstr "Formatiram loopback datoteku %s"
-#: ../../diskdrake/interactive.pm_.c:1018
-#: ../../install_steps_interactive.pm_.c:476
+#: ../../diskdrake/interactive.pm_.c:1028
+#: ../../install_steps_interactive.pm_.c:459
#, c-format
msgid "Formatting partition %s"
msgstr "Formatiram particiju %s"
-#: ../../diskdrake/interactive.pm_.c:1029
+#: ../../diskdrake/interactive.pm_.c:1039
msgid "Hide files"
msgstr "Sakrij datoteku"
-#: ../../diskdrake/interactive.pm_.c:1029
+#: ../../diskdrake/interactive.pm_.c:1039
msgid "Move files to the new partition"
msgstr "Premijesti datoteku na novu particiju"
-#: ../../diskdrake/interactive.pm_.c:1030
+#: ../../diskdrake/interactive.pm_.c:1040
#, c-format
msgid ""
"Directory %s already contains data\n"
@@ -2092,83 +2115,83 @@ msgstr ""
"Direktorij %s veæ sadrŸi neke podatke\n"
"(%s)"
-#: ../../diskdrake/interactive.pm_.c:1041
+#: ../../diskdrake/interactive.pm_.c:1051
msgid "Moving files to the new partition"
msgstr "Premiječteam datoteke na novu particiju"
-#: ../../diskdrake/interactive.pm_.c:1045
+#: ../../diskdrake/interactive.pm_.c:1055
#, c-format
msgid "Copying %s"
msgstr "Kopiram %s"
-#: ../../diskdrake/interactive.pm_.c:1049
+#: ../../diskdrake/interactive.pm_.c:1059
#, c-format
msgid "Removing %s"
msgstr "Uklanjam %s"
-#: ../../diskdrake/interactive.pm_.c:1059
+#: ../../diskdrake/interactive.pm_.c:1069
#, c-format
msgid "partition %s is now known as %s"
msgstr "particija %s je sada poznata kao %s"
-#: ../../diskdrake/interactive.pm_.c:1080
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1090
+#: ../../diskdrake/interactive.pm_.c:1149
msgid "Device: "
msgstr "Uređaj:"
-#: ../../diskdrake/interactive.pm_.c:1081
+#: ../../diskdrake/interactive.pm_.c:1091
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "DOS uređaj slovo: %s (nagađanje)\n"
-#: ../../diskdrake/interactive.pm_.c:1085
-#: ../../diskdrake/interactive.pm_.c:1093
-#: ../../diskdrake/interactive.pm_.c:1157
+#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1103
+#: ../../diskdrake/interactive.pm_.c:1168
msgid "Type: "
msgstr "Vrsta: "
-#: ../../diskdrake/interactive.pm_.c:1089
+#: ../../diskdrake/interactive.pm_.c:1099
msgid "Name: "
msgstr "Ime: "
-#: ../../diskdrake/interactive.pm_.c:1097
+#: ../../diskdrake/interactive.pm_.c:1107
#, c-format
msgid "Start: sector %s\n"
msgstr "Poèetak: sektor %s\n"
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1108
#, c-format
msgid "Size: %s"
msgstr "Velièina: %s"
-#: ../../diskdrake/interactive.pm_.c:1100
+#: ../../diskdrake/interactive.pm_.c:1110
#, c-format
msgid ", %s sectors"
msgstr ", %s sektora"
-#: ../../diskdrake/interactive.pm_.c:1102
+#: ../../diskdrake/interactive.pm_.c:1112
#, c-format
msgid "Cylinder %d to %d\n"
msgstr "Cilindar %d do %d\n"
-#: ../../diskdrake/interactive.pm_.c:1103
+#: ../../diskdrake/interactive.pm_.c:1113
msgid "Formatted\n"
msgstr "Formatiran\n"
-#: ../../diskdrake/interactive.pm_.c:1104
+#: ../../diskdrake/interactive.pm_.c:1114
msgid "Not formatted\n"
msgstr "Nije formatiran\n"
-#: ../../diskdrake/interactive.pm_.c:1105
+#: ../../diskdrake/interactive.pm_.c:1115
msgid "Mounted\n"
msgstr "Montiran\n"
-#: ../../diskdrake/interactive.pm_.c:1106
+#: ../../diskdrake/interactive.pm_.c:1116
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1108
+#: ../../diskdrake/interactive.pm_.c:1118
#, c-format
msgid ""
"Loopback file(s):\n"
@@ -2177,7 +2200,7 @@ msgstr ""
"Loopback datoteka(e):\n"
" %s\n"
-#: ../../diskdrake/interactive.pm_.c:1109
+#: ../../diskdrake/interactive.pm_.c:1119
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -2185,27 +2208,27 @@ msgstr ""
"Podrazumijevana boot particija\n"
" (za MS-DOS boot, ne za LILO)\n"
-#: ../../diskdrake/interactive.pm_.c:1111
+#: ../../diskdrake/interactive.pm_.c:1121
#, c-format
msgid "Level %s\n"
msgstr "Razina %s\n"
-#: ../../diskdrake/interactive.pm_.c:1112
+#: ../../diskdrake/interactive.pm_.c:1122
#, c-format
msgid "Chunk size %s\n"
msgstr "Chunk velièina %s\n"
-#: ../../diskdrake/interactive.pm_.c:1113
+#: ../../diskdrake/interactive.pm_.c:1123
#, c-format
msgid "RAID-disks %s\n"
msgstr "RAID-diskovi %s\n"
-#: ../../diskdrake/interactive.pm_.c:1115
+#: ../../diskdrake/interactive.pm_.c:1125
#, c-format
msgid "Loopback file name: %s"
msgstr "Ime loopback datoteke: %s"
-#: ../../diskdrake/interactive.pm_.c:1118
+#: ../../diskdrake/interactive.pm_.c:1128
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -2217,7 +2240,7 @@ msgstr ""
"ustvari particija upravljaèkog programa, vjerojatno\n"
"biste ju trebali ostaviti.\n"
-#: ../../diskdrake/interactive.pm_.c:1121
+#: ../../diskdrake/interactive.pm_.c:1131
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2229,59 +2252,63 @@ msgstr ""
"particija je za\n"
"dvostruko-podizanje (dual-boot) vačeg sustava.\n"
-#: ../../diskdrake/interactive.pm_.c:1140
+#: ../../diskdrake/interactive.pm_.c:1150
+msgid "Read-only"
+msgstr ""
+
+#: ../../diskdrake/interactive.pm_.c:1151
#, c-format
msgid "Size: %s\n"
msgstr "Velièina: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1141
+#: ../../diskdrake/interactive.pm_.c:1152
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Geometrija: %s cilindara, %s glava, %s sektora\n"
-#: ../../diskdrake/interactive.pm_.c:1142
+#: ../../diskdrake/interactive.pm_.c:1153
msgid "Info: "
msgstr "Info: "
-#: ../../diskdrake/interactive.pm_.c:1143
+#: ../../diskdrake/interactive.pm_.c:1154
#, c-format
msgid "LVM-disks %s\n"
msgstr "LVM-diskovi %s\n"
-#: ../../diskdrake/interactive.pm_.c:1144
+#: ../../diskdrake/interactive.pm_.c:1155
#, c-format
msgid "Partition table type: %s\n"
msgstr "Vrsta particijske tabele: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1145
+#: ../../diskdrake/interactive.pm_.c:1156
#, fuzzy, c-format
msgid "on channel %d id %d\n"
msgstr "na sabirnici %d id %d\n"
-#: ../../diskdrake/interactive.pm_.c:1175
+#: ../../diskdrake/interactive.pm_.c:1186
msgid "Filesystem encryption key"
msgstr "Kljuè enkriptiranja datoteènog sustava"
-#: ../../diskdrake/interactive.pm_.c:1176
+#: ../../diskdrake/interactive.pm_.c:1187
msgid "Choose your filesystem encryption key"
msgstr "Izaberite vač kljuè za enkriptiranje datoteènog sustava"
-#: ../../diskdrake/interactive.pm_.c:1179
+#: ../../diskdrake/interactive.pm_.c:1190
#, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr ""
"Upisani enkripcijski kljuè je prejednostavan (mora biti dug najmanje %d "
"znakova)"
-#: ../../diskdrake/interactive.pm_.c:1180
+#: ../../diskdrake/interactive.pm_.c:1191
msgid "The encryption keys do not match"
msgstr "Enkripcijski kljuèevi se ne slaŸu"
-#: ../../diskdrake/interactive.pm_.c:1183
+#: ../../diskdrake/interactive.pm_.c:1194
msgid "Encryption key"
msgstr "Enkripcijski kljuè"
-#: ../../diskdrake/interactive.pm_.c:1184
+#: ../../diskdrake/interactive.pm_.c:1195
msgid "Encryption key (again)"
msgstr "Enkripcijski kljuè (ponovno)"
@@ -2318,7 +2345,7 @@ msgid ""
"Please enter your username, password and domain name to access this host."
msgstr ""
-#: ../../diskdrake/smbnfs_gtk.pm_.c:178
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3527
#, fuzzy
msgid "Username"
msgstr "Korisnièko ime"
@@ -2332,23 +2359,23 @@ msgstr "NIS domena"
msgid "Search servers"
msgstr "PosluŸitelji za pretraŸivanje"
-#: ../../fs.pm_.c:552 ../../fs.pm_.c:562 ../../fs.pm_.c:566 ../../fs.pm_.c:570
-#: ../../fs.pm_.c:574 ../../fs.pm_.c:578
+#: ../../fs.pm_.c:544 ../../fs.pm_.c:554 ../../fs.pm_.c:558 ../../fs.pm_.c:562
+#: ../../fs.pm_.c:566 ../../fs.pm_.c:570
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s formatiranje %s nije uspjelo"
-#: ../../fs.pm_.c:615
+#: ../../fs.pm_.c:607
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "ne znam kako formatirati %s kao vrstu %s"
-#: ../../fs.pm_.c:687 ../../fs.pm_.c:731
+#: ../../fs.pm_.c:681 ../../fs.pm_.c:724
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr "montiranje particije %s u direktorij %s neuspječno"
-#: ../../fs.pm_.c:746 ../../partition_table.pm_.c:602
+#: ../../fs.pm_.c:739 ../../partition_table.pm_.c:598
#, c-format
msgid "error unmounting %s: %s"
msgstr "grečka kod demontiranja %s: %s"
@@ -2365,33 +2392,51 @@ msgstr "sa /usr"
msgid "server"
msgstr "posluŸitelj"
-#: ../../fsedit.pm_.c:472
+#: ../../fsedit.pm_.c:240
+#, fuzzy, c-format
+msgid ""
+"I can't read the partition table of device %s, it's too corrupted for me :(\n"
+"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
+"The other solution is to not allow DrakX to modify the partition table.\n"
+"(the error is %s)\n"
+"\n"
+"Do you agree to loose all the partitions?\n"
+msgstr ""
+"Ne mogu proèitati particijsku tablicu, previče je koruptirana za mene :(\n"
+"Mogu pokučati sa brisanjem ločih particija (SVI PODACI æe biti "
+"izgubljeni!).\n"
+"Drugo rječenje je onemoguæiti DrakX-u da mjenja particijsku tablicu.\n"
+"(grečka je %s)\n"
+"\n"
+"Da li se slaŸete da izgubite sve particije?\n"
+
+#: ../../fsedit.pm_.c:501
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr "JFS se ne moŸe koristiti na particijama koje su manje od 16 MB"
-#: ../../fsedit.pm_.c:473
+#: ../../fsedit.pm_.c:502
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr "ReiserFS se ne moŸe koristiti na particijama koje su manje od 32 MB"
-#: ../../fsedit.pm_.c:492
+#: ../../fsedit.pm_.c:521
msgid "Mount points must begin with a leading /"
msgstr "Mjesto montiranja mora poèeti sa /"
-#: ../../fsedit.pm_.c:493
+#: ../../fsedit.pm_.c:522
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Veæ postoji particija sa mjestom montiranja %s\n"
-#: ../../fsedit.pm_.c:497
+#: ../../fsedit.pm_.c:526
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr "Ne moŸete koristiti LVM logièki prostor za mjesto montiranja %s"
-#: ../../fsedit.pm_.c:499
+#: ../../fsedit.pm_.c:528
msgid "This directory should remain within the root filesystem"
msgstr "Ovaj direktorij bi trebao ostati unutar root datoteènog sustava"
-#: ../../fsedit.pm_.c:501
+#: ../../fsedit.pm_.c:530
#, fuzzy
msgid ""
"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
@@ -2400,232 +2445,279 @@ msgstr ""
"Treba vam istinski datoteèni sustav (ex2, reiserfs) za ovo mjesto "
"montiranja\n"
-#: ../../fsedit.pm_.c:503
+#: ../../fsedit.pm_.c:532
#, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr ""
"Ne moŸete koristiti enkriptirani datoteèni sustav za toèku montiranja %s"
-#: ../../fsedit.pm_.c:570
+#: ../../fsedit.pm_.c:599
msgid "Not enough free space for auto-allocating"
msgstr "Nema dovoljno slobodnog prostora za auto-alokaciju"
-#: ../../fsedit.pm_.c:572
+#: ../../fsedit.pm_.c:601
msgid "Nothing to do"
msgstr "Nema ničta za uraditi"
-#: ../../fsedit.pm_.c:665
+#: ../../fsedit.pm_.c:694
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Grečka prilikom otvaranja %s za pisanje: %s"
-#: ../../fsedit.pm_.c:750
+#: ../../harddrake/sound.pm_.c:155
+msgid "No alternative driver"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:156
+#, c-format
+msgid "There's no known OSS/ALSA alternative driver for your sound card (%s)"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:158
+#, fuzzy
+msgid "Sound configuration"
+msgstr "CUPS postavke"
+
+#: ../../harddrake/sound.pm_.c:159
+#, c-format
msgid ""
-"An error occurred - no valid devices were found on which to create new "
-"filesystems. Please check your hardware for the cause of this problem"
+"Here you can select an alternative driver (either OSS or ALSA) for your "
+"sound card (%s)"
msgstr ""
-"Pojavila se grečka - ne mogu pronaæi niti jedan valjani uređaj na kojem\n"
-"bih mogao instalirati datoteèni sustav. Provjerite da li je sa vačim "
-"hardverom sve u redu."
-#: ../../fsedit.pm_.c:773
-msgid "You don't have any partitions!"
-msgstr "Nemate niti jednu particiju!"
+#: ../../harddrake/sound.pm_.c:162
+#, fuzzy
+msgid "Driver:"
+msgstr "Upravljaèki program"
-#: ../../harddrake/ui.pm_.c:15
+#: ../../harddrake/sound.pm_.c:173
+#, fuzzy
+msgid "No known driver"
+msgstr "X upravljaèki program"
+
+#: ../../harddrake/sound.pm_.c:174
+#, c-format
+msgid "There's no known driver for your sound card (%s)"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:177
+#, fuzzy
+msgid "Unkown driver"
+msgstr "Nepoznati model"
+
+#: ../../harddrake/sound.pm_.c:178
+#, c-format
+msgid ""
+"The \"%s\" driver for your sound card is unlisted\n"
+"\n"
+"Please send the output of the \"lspcidrake -v\" command to\n"
+"<install at mandrakesoft dot com>\n"
+"with subject: unlisted sound driver \"%s\""
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:16
#, fuzzy
msgid "Model"
msgstr "Mič"
-#: ../../harddrake/ui.pm_.c:15
+#: ../../harddrake/ui.pm_.c:16
#, fuzzy
msgid "hard disk model"
msgstr "Memorija kartice (DMA)"
-#: ../../harddrake/ui.pm_.c:16
+#: ../../harddrake/ui.pm_.c:17
#, fuzzy
msgid "Channel"
msgstr "Odustani"
-#: ../../harddrake/ui.pm_.c:16
+#: ../../harddrake/ui.pm_.c:17
msgid "EIDE/SCSI channel"
msgstr ""
-#: ../../harddrake/ui.pm_.c:18
+#: ../../harddrake/ui.pm_.c:19
msgid "Bus"
msgstr ""
-#: ../../harddrake/ui.pm_.c:19
+#: ../../harddrake/ui.pm_.c:20
msgid ""
"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
msgstr ""
-#: ../../harddrake/ui.pm_.c:20
+#: ../../harddrake/ui.pm_.c:21
#, fuzzy
msgid "Module"
msgstr "Mič"
-#: ../../harddrake/ui.pm_.c:20
+#: ../../harddrake/ui.pm_.c:21
msgid "the module of the GNU/Linux kernel that handle that device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:21
+#: ../../harddrake/ui.pm_.c:22
msgid "Media class"
msgstr ""
-#: ../../harddrake/ui.pm_.c:21
+#: ../../harddrake/ui.pm_.c:22
msgid "class of hardware device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:22 ../../printerdrake.pm_.c:1404
+#: ../../harddrake/ui.pm_.c:23 ../../printerdrake.pm_.c:1517
msgid "Description"
msgstr "Opis"
-#: ../../harddrake/ui.pm_.c:22
+#: ../../harddrake/ui.pm_.c:23
msgid "this field describe the device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:24
+#: ../../harddrake/ui.pm_.c:25
#, fuzzy
msgid "Bus identification"
msgstr "Provjera autentiènosti"
-#: ../../harddrake/ui.pm_.c:25
+#: ../../harddrake/ui.pm_.c:26
msgid ""
-"- PCI and USB devices : this list the vendor, device, subvendor and "
-"subdevice PCI/USB ids"
+"- PCI and USB devices: this list the vendor, device, subvendor and subdevice "
+"PCI/USB ids"
msgstr ""
-#: ../../harddrake/ui.pm_.c:27
+#: ../../harddrake/ui.pm_.c:28
msgid "Location on the bus"
msgstr ""
-#: ../../harddrake/ui.pm_.c:28
+#: ../../harddrake/ui.pm_.c:29
msgid ""
"- pci devices: this gives the PCI slot, device and function of this card\n"
"- eide devices: the device is either a slave or a master device\n"
"- scsi devices: the scsi bus and the scsi device ids"
msgstr ""
-#: ../../harddrake/ui.pm_.c:31
+#: ../../harddrake/ui.pm_.c:32
#, fuzzy
msgid "Old device file"
msgstr "Odaberite datoteku"
-#: ../../harddrake/ui.pm_.c:32
+#: ../../harddrake/ui.pm_.c:33
msgid "old static device name used in dev package"
msgstr ""
-#: ../../harddrake/ui.pm_.c:33
+#: ../../harddrake/ui.pm_.c:34
#, fuzzy
msgid "New devfs device"
msgstr "Gateway uređaj"
-#: ../../harddrake/ui.pm_.c:34
+#: ../../harddrake/ui.pm_.c:35
msgid "new dinamic device name generated by incore kernel devfs"
msgstr ""
-#: ../../harddrake/ui.pm_.c:35
+#: ../../harddrake/ui.pm_.c:36
#, fuzzy
msgid "Number of buttons"
msgstr "2 gumba"
-#: ../../harddrake/ui.pm_.c:36
+#: ../../harddrake/ui.pm_.c:37
msgid "the vendor name of the device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:60
+#: ../../harddrake/ui.pm_.c:38
+#, fuzzy
+msgid "Alternative drivers"
+msgstr "Alternativna testna stranica (A4)"
+
+#: ../../harddrake/ui.pm_.c:39
+msgid "the list of alternative drivers for this sound card"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:63
#, fuzzy
msgid "/_Quit"
msgstr "Zavrči"
-#: ../../harddrake/ui.pm_.c:61 ../../harddrake/ui.pm_.c:62
-#: ../../harddrake/ui.pm_.c:68 ../../standalone/logdrake_.c:110
+#: ../../harddrake/ui.pm_.c:64 ../../harddrake/ui.pm_.c:65
+#: ../../harddrake/ui.pm_.c:71 ../../standalone/logdrake_.c:110
msgid "/_Help"
msgstr "/_Pomoæ"
-#: ../../harddrake/ui.pm_.c:62
+#: ../../harddrake/ui.pm_.c:65
#, fuzzy
msgid "/_Help..."
msgstr "/_Pomoæ"
-#: ../../harddrake/ui.pm_.c:63
+#: ../../harddrake/ui.pm_.c:66
msgid "Harddrake help"
msgstr ""
-#: ../../harddrake/ui.pm_.c:64
+#: ../../harddrake/ui.pm_.c:67
msgid ""
"Description of the fields:\n"
"\n"
msgstr ""
-#: ../../harddrake/ui.pm_.c:68
+#: ../../harddrake/ui.pm_.c:71
#, fuzzy
msgid "/_About..."
msgstr "/Pomoæ/_O programu"
-#: ../../harddrake/ui.pm_.c:69
+#: ../../harddrake/ui.pm_.c:72
msgid "About Harddrake"
msgstr ""
-#: ../../harddrake/ui.pm_.c:70
+#: ../../harddrake/ui.pm_.c:73
msgid ""
"This is HardDrake, a Mandrake hardware configuration tool.\n"
"Version:"
msgstr ""
-#: ../../harddrake/ui.pm_.c:71
+#: ../../harddrake/ui.pm_.c:74
#, fuzzy
msgid "Author:"
msgstr "Auto. ispitaj"
-#: ../../harddrake/ui.pm_.c:83
+#: ../../harddrake/ui.pm_.c:86
#, fuzzy
msgid "Harddrake2 version "
msgstr "Otkrivanje hard diskova"
-#: ../../harddrake/ui.pm_.c:91
+#: ../../harddrake/ui.pm_.c:103
#, fuzzy
msgid "Detected hardware"
msgstr "PokaŸi info o hardveru"
-#: ../../harddrake/ui.pm_.c:92
+#: ../../harddrake/ui.pm_.c:105
#, fuzzy
-msgid "Configure module"
-msgstr "Podesi mič"
+msgid "Information"
+msgstr "PrikaŸi informacije"
-#: ../../harddrake/ui.pm_.c:92
+#: ../../harddrake/ui.pm_.c:108
#, fuzzy
-msgid "Informations"
-msgstr "PrikaŸi informacije"
+msgid "Configure module"
+msgstr "Podesi mič"
-#: ../../harddrake/ui.pm_.c:92
+#: ../../harddrake/ui.pm_.c:109
msgid "Run config tool"
msgstr ""
-#: ../../harddrake/ui.pm_.c:96
+#: ../../harddrake/ui.pm_.c:113
#, fuzzy
msgid "Detection in progress"
msgstr "detektiran na portu %s"
-#: ../../harddrake/ui.pm_.c:96 ../../interactive.pm_.c:388
+#: ../../harddrake/ui.pm_.c:113 ../../interactive.pm_.c:391
msgid "Please wait"
msgstr "Molim prièekajte"
-#: ../../harddrake/ui.pm_.c:139
+#: ../../harddrake/ui.pm_.c:156
msgid "primary"
msgstr ""
-#: ../../harddrake/ui.pm_.c:139
+#: ../../harddrake/ui.pm_.c:156
#, fuzzy
msgid "secondary"
msgstr "%d sekundi"
-#: ../../harddrake/ui.pm_.c:176
+#: ../../harddrake/ui.pm_.c:197
msgid "You can configure each parameter of the module here."
msgstr ""
-#: ../../harddrake/ui.pm_.c:192
+#: ../../harddrake/ui.pm_.c:213
#, fuzzy, c-format
msgid "Running \"%s\" ..."
msgstr "Uklanjam pisaè \"%s\" ..."
@@ -2658,16 +2750,16 @@ msgstr ""
#: ../../harddrake/v4l.pm_.c:213
#, fuzzy
-msgid "Card model :"
+msgid "Card model:"
msgstr "Memorija kartice (DMA)"
#: ../../harddrake/v4l.pm_.c:214
#, fuzzy
-msgid "Tuner type :"
+msgid "Tuner type:"
msgstr "Promijeni tip"
#: ../../harddrake/v4l.pm_.c:215
-msgid "Number of capture buffers :"
+msgid "Number of capture buffers:"
msgstr ""
#: ../../harddrake/v4l.pm_.c:215
@@ -2676,11 +2768,11 @@ msgstr ""
#: ../../harddrake/v4l.pm_.c:217
#, fuzzy
-msgid "PLL setting :"
+msgid "PLL setting:"
msgstr "Postavka optereæenja"
#: ../../harddrake/v4l.pm_.c:218
-msgid "Radio support :"
+msgid "Radio support:"
msgstr ""
#: ../../harddrake/v4l.pm_.c:218
@@ -2692,22 +2784,22 @@ msgid ""
"GNU/Linux is a multiuser system, and this means that each user can have his\n"
"own preferences, his own files and so on. You can read the ``User Guide''\n"
"to learn more. But unlike \"root\", which is the administrator, the users\n"
-"you will add here will not be entitled to change anything except their own\n"
-"files and their own configuration. You will have to create at least one\n"
-"regular user for yourself. That account is where you should log in for\n"
-"routine use. Although it is very practical to log in as \"root\" everyday,\n"
-"it may also be very dangerous! The slightest mistake could mean that your\n"
-"system would not work any more. If you make a serious mistake as a regular\n"
-"user, you may only lose some information, but not the entire system.\n"
+"you add here will not be entitled to change anything except their own files\n"
+"and their own configuration. You will have to create at least one regular\n"
+"user for yourself. That account is where you should log in for routine use.\n"
+"Although it is very practical to log in as \"root\" everyday, it may also\n"
+"be very dangerous! The slightest mistake could mean that your system would\n"
+"not work any more. If you make a serious mistake as a regular user, you may\n"
+"only lose some information, but not the entire system.\n"
"\n"
"First, you have to enter your real name. This is not mandatory, of course -\n"
"as you can actually enter whatever you want. DrakX will then take the first\n"
"word you have entered in the box and will bring it over to the \"User\n"
"name\". This is the name this particular user will use to log onto the\n"
"system. You can change it. You then have to enter a password here. A\n"
-"non-privileged (regular) user's password is not as crucial as \"root\"' one\n"
-"from a security point of view, but that is no reason to neglect it: after\n"
-"all, your files are at risk.\n"
+"non-privileged (regular) user's password is not as crucial as the \"root\"'\n"
+"one from a security point of view, but that is no reason to neglect it:\n"
+"after all, your files are at risk.\n"
"\n"
"If you click on \"Accept user\", you can then add as many as you want. Add\n"
"a user for each one of your friends: your father or your sister, for\n"
@@ -2861,7 +2953,7 @@ msgid ""
"to have a graphical workstation!\n"
"\n"
"Moving the mouse cursor over a group name will display a short explanatory\n"
-"text about that group. If you deselect all groups when performing a regular\n"
+"text about that group. If you unselect all groups when performing a regular\n"
"installation (by opposition to an upgrade), a dialog will pop up proposing\n"
"different options for a minimal installation:\n"
"\n"
@@ -2948,10 +3040,10 @@ msgstr ""
#: ../../help.pm_.c:128
msgid ""
-"Finally, depending on whether or not you selected individual packages, you\n"
-"will be presented a tree containing all packages classified by groups and\n"
-"subgroups. While browsing the tree, you can select entire groups,\n"
-"subgroups, or individual packages.\n"
+"Finally, depending on whether or not you chose to be able to select\n"
+"individual packages, you will be presented a tree containing all packages\n"
+"classified by groups and subgroups. While browsing the tree, you can select\n"
+"entire groups, subgroups, or individual packages.\n"
"\n"
"Whenever you select a package on the tree, a description appears on the\n"
"right. When your selection is finished, click the \"Install\" button which\n"
@@ -3031,11 +3123,11 @@ msgstr ""
#: ../../help.pm_.c:164
msgid ""
-"You are now proposed to set up your Internet/network connection. If you\n"
-"wish to connect your computer to the Internet or to a local network, click\n"
-"\"OK\". The autodetection of network devices and modem will be launched. If\n"
-"this detection fails, uncheck the \"Use auto detection\" box next time. You\n"
-"may also choose not to configure the network, or do it later; in that case,\n"
+"You are now able to set up your Internet/network connection. If you wish to\n"
+"connect your computer to the Internet or to a local network, click \"OK\".\n"
+"The autodetection of network devices and modem will be launched. If this\n"
+"detection fails, uncheck the \"Use auto detection\" box next time. You may\n"
+"also choose not to configure the network, or do it later; in that case,\n"
"simply click the \"Cancel\" button.\n"
"\n"
"Available connections are: traditional modem, ISDN modem, ADSL connection,\n"
@@ -3119,7 +3211,7 @@ msgstr ""
msgid ""
"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
"local time according to the time zone you selected. It is however possible\n"
-"to deactivate this by deselecting \"Hardware clock set to GMT\" so that the\n"
+"to deactivate this by unselecting \"Hardware clock set to GMT\" so that the\n"
"hardware clock is the same as the system clock. This is useful when the\n"
"machine is hosting another operating system like Windows.\n"
"\n"
@@ -3165,7 +3257,9 @@ msgid ""
"If you can see the message during the test, and answer \"Yes\", then DrakX\n"
"will proceed to the next step. If you cannot see the message, it simply\n"
"means that the configuration was wrong and the test will automatically end\n"
-"after 10 seconds, restoring the screen."
+"after 10 seconds, restoring the screen. Refer then to the Video\n"
+"configuration section of the user guide for more information on how to\n"
+"configure your display."
msgstr ""
"X (od X Window System) jest srce GNU/Linux grafièkog suèelja, na kojem "
"poèivaju\n"
@@ -3190,38 +3284,7 @@ msgstr ""
"te\n"
"povratiti ekran."
-#: ../../help.pm_.c:237
-msgid ""
-"The first time you try the X configuration, you may not be very satisfied\n"
-"with its display (screen is too small, shifted left or right...). Hence,\n"
-"even if X starts up correctly, DrakX then asks you if the configuration\n"
-"suits you. It will also propose to change it by displaying a list of valid\n"
-"modes it could find, asking you to select one.\n"
-"\n"
-"As a last resort, if you still cannot get X to work, choose \"Change\n"
-"graphics card\", select \"Unlisted card\", and when prompted on which\n"
-"server, choose \"FBDev\". This is a failsafe option which works with any\n"
-"modern graphics card. Then choose \"Test again\" to be sure."
-msgstr ""
-"Kada prvi put isprobate X konfiguraciju, moŸda neæete biti vrlo zadovoljni\n"
-"prikazom (premaleni ekran, pomaknut ulijevo ili udesno...). Stoga, i ako se\n"
-"Xi pokrenu normalno, DrakX æe vas pitati da li vam postavke odgovaraju. "
-"Također\n"
-"æe predloŸiti da ih promijenite izabiranjem jednog od ispravnih modova sa "
-"popisa\n"
-" pronađenih.\n"
-"\n"
-"Kao posljednju mjeru, ako joč uvijek niste uspjeli natjerati Xe da rade, "
-"izaberite\n"
-"\"Promijeni grafièku karticu\", opcija \"Nenavedena kartica\", i kada "
-"budete\n"
-"upitani za posluŸitelj, izaberite \"FBDev\". Ovo je sigurnosna opcija koja "
-"radi\n"
-"sa svakom suvremenom grafièkom karticom. Potom izaberite \"Ponovno isprobaj"
-"\" da\n"
-"biste bili sigurni."
-
-#: ../../help.pm_.c:249
+#: ../../help.pm_.c:239
msgid ""
"Finally, you will be asked whether you want to see the graphical interface\n"
"at boot. Note this question will be asked even if you chose not to test the\n"
@@ -3237,7 +3300,8 @@ msgstr ""
"raditi kao posluŸitelj, ili ako niste bili uspječni u konfiguriranju vačeg\n"
"zaslona."
-#: ../../help.pm_.c:256
+#: ../../help.pm_.c:246
+#, fuzzy
msgid ""
"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
@@ -3257,10 +3321,10 @@ msgid ""
"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
"password, or any other reason.\n"
"\n"
-"When you click on this step, you will be asked to enter a disk inside the\n"
-"drive. The floppy disk you will insert must be empty or contain data which\n"
-"you do not need. You will not have to format it since DrakX will rewrite\n"
-"the whole disk."
+"If you say \"Yes\", you will be asked to enter a disk inside the drive. The\n"
+"floppy disk you will insert must be empty or contain data which you do not\n"
+"need. You will not have to format it since DrakX will rewrite the whole\n"
+"disk."
msgstr ""
"Mandrake Linux CD-ROM ima ugrađeni mod za spačavanje. MoŸete mu pristupiti\n"
"pokretanjem sustava sa CD-ROMa, pritiskanjem >>F1<< tipke pri podizanju "
@@ -3292,7 +3356,7 @@ msgstr ""
"nisu\n"
"potrebni. Neæete je morati formatirati, jer æe je DrakX potpuno prepisati."
-#: ../../help.pm_.c:280
+#: ../../help.pm_.c:270
msgid ""
"At this point, you need to choose where you want to install the Mandrake\n"
"Linux operating system on your hard drive. If your hard drive is empty or\n"
@@ -3325,7 +3389,9 @@ msgid ""
"\n"
" * \"Use existing partition\": the wizard has detected one or more existing\n"
"Linux partitions on your hard drive. If you want to use them, choose this\n"
-"option;\n"
+"option. You will then be asked to choose the mount points associated to\n"
+"each of the partitions. The legacy mount points are selected by default,\n"
+"and you should generally keep them.\n"
"\n"
" * \"Use the free space on the Windows; partition\": if Microsoft Windows\n"
"is installed on your hard drive and takes all the space available on it,\n"
@@ -3358,7 +3424,9 @@ msgid ""
" * \"Expert mode\": choose this option if you want to manually partition\n"
"your hard drive. Be careful - it is a powerful but dangerous choice. You\n"
"can very easily lose all your data. Hence, do not choose this unless you\n"
-"know what you are doing."
+"know what you are doing. To know how do use the DiskDrake utility used\n"
+"here, refer to the section ``Managing Your Partitions'' of the ````User\n"
+"Guide''''"
msgstr ""
"U ovom trenutku, trebate izabrati gdje æete instalirati vač\n"
"Mandrake Linux operativni sustav na vačem tvrdom disku. Ukoliko je prazan "
@@ -3433,7 +3501,7 @@ msgstr ""
"izgubiti sve vače podatke vrlo lako. Zato,\n"
"nemojte izabrati ovo rječenje ukoliko ne znate čto radite."
-#: ../../help.pm_.c:347
+#: ../../help.pm_.c:341
msgid ""
"There you are. Installation is now complete and your GNU/Linux system is\n"
"ready to use. Just click \"OK\" to reboot the system. You can start\n"
@@ -3503,7 +3571,7 @@ msgstr ""
"napičite\n"
"\"mformat a:\")"
-#: ../../help.pm_.c:378
+#: ../../help.pm_.c:372
msgid ""
"Any partitions that have been newly defined must be formatted for use\n"
"(formatting means creating a filesystem).\n"
@@ -3556,7 +3624,7 @@ msgstr ""
"Pritisnite na \"Napredno\" ako Ÿelite izabrati particije koje æe biti\n"
"provjeravane radi ločih blokova (bad blocks)."
-#: ../../help.pm_.c:404
+#: ../../help.pm_.c:398
msgid ""
"Your new Mandrake Linux operating system is currently being installed.\n"
"Depending on the number of packages you will be installing and the speed of\n"
@@ -3573,12 +3641,12 @@ msgstr ""
"\n"
"Molimo budite strpljivi."
-#: ../../help.pm_.c:412
+#: ../../help.pm_.c:406
msgid ""
"At the time you are installing Mandrake Linux, it is likely that some\n"
"packages have been updated since the initial release. Some bugs may have\n"
"been fixed, and security issues solved. To allow you to benefit from these\n"
-"updates, you are now proposed to download them from the Internet. Choose\n"
+"updates, you are now able to download them from the Internet. Choose\n"
"\"Yes\" if you have a working Internet connection, or \"No\" if you prefer\n"
"to install updated packages later.\n"
"\n"
@@ -3600,7 +3668,7 @@ msgstr ""
"odabrane\n"
"pakete, ili \"Odustani\" za prekid."
-#: ../../help.pm_.c:425
+#: ../../help.pm_.c:419
msgid ""
"Before continuing, you should read carefully the terms of the license. It\n"
"covers the whole Mandrake Linux distribution, and if you do not agree with\n"
@@ -3614,14 +3682,14 @@ msgstr ""
"zavrčiti instalaciju. Za nastavak instalacije, kliknite na\n"
"\"Prihvati\" gumb."
-#: ../../help.pm_.c:432
+#: ../../help.pm_.c:426
msgid ""
"At this point, it is time to choose the security level desired for the\n"
"machine. As a rule of thumb, the more exposed the machine is, and the more\n"
"the data stored in it is crucial, the higher the security level should be.\n"
"However, a higher security level is generally obtained at the expense of\n"
-"easiness of use. Refer to the \"msec\" chapter of the ``Reference Manual''\n"
-"to get more information about the meaning of these levels.\n"
+"ease of use. Refer to the \"msec\" chapter of the ``Reference Manual'' to\n"
+"get more information about the meaning of these levels.\n"
"\n"
"If you do not know what to choose, keep the default option."
msgstr ""
@@ -3636,7 +3704,7 @@ msgstr ""
"\n"
"Ako ne znate čto biste odabrali, ostavite podrazumijevanu opciju."
-#: ../../help.pm_.c:442
+#: ../../help.pm_.c:436
msgid ""
"At this point, you need to choose which partition(s) will be used for the\n"
"installation of your Mandrake Linux system. If partitions have already been\n"
@@ -3653,26 +3721,26 @@ msgid ""
" * \"Clear all\": this option deletes all partitions on the selected hard\n"
"drive;\n"
"\n"
-" * \"Auto allocate\": this option enables to automatically create \"Ext2\"\n"
-"and swap partitions in free space of your hard drive;\n"
+" * \"Auto allocate\": this option enables to automatically create ext3 and\n"
+"swap partitions in free space of your hard drive;\n"
"\n"
-" * \"More\": gives access to additional features:\n"
+"\"More\": gives access to additional features:\n"
"\n"
-" * \"Save partition table\": saves the partition table to a floppy.\n"
-"Useful for later partition-table recovery if necessary. It is strongly\n"
-"recommended to perform this step;\n"
+" * \"Save partition table\": saves the partition table to a floppy. Useful\n"
+"for later partition-table recovery if necessary. It is strongly recommended\n"
+"to perform this step;\n"
"\n"
-" * \"Restore partition table\": allows to restore a previously saved\n"
+" * \"Restore partition table\": allows to restore a previously saved\n"
"partition table from floppy disk;\n"
"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you\n"
-"can try to recover it using this option. Please be careful and remember\n"
-"that it can fail;\n"
+" * \"Rescue partition table\": if your partition table is damaged, you can\n"
+"try to recover it using this option. Please be careful and remember that it\n"
+"can fail;\n"
"\n"
-" * \"Reload partition table\": discards all changes and loads your\n"
-"initial partition table;\n"
+" * \"Reload partition table\": discards all changes and loads your initial\n"
+"partition table;\n"
"\n"
-" * \"Removable media automounting\": unchecking this option will force\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
"users to manually mount and unmount removable medias such as floppies and\n"
"CD-ROMs.\n"
"\n"
@@ -3700,7 +3768,7 @@ msgid ""
" * Ctrl-m to set the mount point.\n"
"\n"
"To get information about the different filesystem types available, please\n"
-"read the ext2fs chapter from the ``Reference Manual''.\n"
+"read the ext2FS chapter from the ``Reference Manual''.\n"
"\n"
"If you are installing on a PPC machine, you will want to create a small HFS\n"
"``bootstrap'' partition of at least 1MB, which will be used by the yaboot\n"
@@ -3777,7 +3845,7 @@ msgstr ""
"particije, recimo 50MB, moŸete ju pronaæi korisnom za stavljanje\n"
"dodatnog kernela i ramdisk slike u sluèaju nuŸde."
-#: ../../help.pm_.c:513
+#: ../../help.pm_.c:507
msgid ""
"More than one Microsoft partition has been detected on your hard drive.\n"
"Please choose the one you want to resize in order to install your new\n"
@@ -3841,34 +3909,34 @@ msgstr ""
"\"Windows ime\" je slovo vačeg hard diska pod Windows-ima (prvi disk\n"
"ili particija se zove \"C:\")."
-#: ../../help.pm_.c:544
+#: ../../help.pm_.c:538
msgid "Please be patient. This operation can take several minutes."
msgstr "Molimo budite strpljivi. Ova operacija moŸe potrajati nekoliko minuta."
-#: ../../help.pm_.c:547
+#: ../../help.pm_.c:541
msgid ""
"DrakX now needs to know if you want to perform a default (\"Recommended\")\n"
"installation or if you want to have greater control (\"Expert\"). You can\n"
"also choose to do a new install or an upgrade of an existing Mandrake Linux\n"
"system:\n"
"\n"
-" * \"Install\": completely wipes out the old system. In fact, depending on\n"
-"what currently holds your machine, you will be able to keep some old (Linux\n"
-"or other) partitions unchanged;\n"
+" * \"Install\": completely wipes out the old system, however, depending on\n"
+"what is currently installed on your machine, you may be able to keep some\n"
+"old partitions (Linux or otherwise) unchanged;\n"
"\n"
" * \"Upgrade\": this installation class allows to simply update the\n"
"packages currently installed on your Mandrake Linux system. It keeps the\n"
"current partitions of your hard drives as well as user configurations. All\n"
-"other configuration steps remain available with respect to plain\n"
+"other configuration steps remain available, similar to a normal\n"
"installation;\n"
"\n"
-" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
-"existing Mandrake Linux system while keeping all system configurations\n"
-"unchanged. Adding new packages to the current installation is also\n"
-"possible.\n"
+" * \"Upgrade Packages Only\": this new installation class allows you to\n"
+"upgrade an existing Mandrake Linux system while keeping all system\n"
+"configurations unchanged. Adding new packages to the current installation\n"
+"is also possible.\n"
"\n"
-"Upgrades should work fine for Mandrake Linux systems starting from \"8.1\"\n"
-"release.\n"
+"Upgrades should work fine on Mandrake Linux systems containing version\n"
+"\"8.1\" or later.\n"
"\n"
"Depending on your knowledge of GNU/Linux, select one of the following\n"
"choices:\n"
@@ -3877,11 +3945,11 @@ msgid ""
"operating system. The installation will be very easy and you will only be\n"
"asked a few questions;\n"
"\n"
-" * Expert: if you have a good knowledge of GNU/Linux, you can choose this\n"
-"installation class. The expert installation will allow you to perform a\n"
-"highly-customized installation. Answering some of the questions can be\n"
-"difficult if you do not have a good knowledge of GNU/Linux, so do not\n"
-"choose this unless you know what you are doing."
+" * Expert: if you have a good understanding of GNU/Linux, you may wish to\n"
+"perform a highly customized installation. Some of the decisions you will\n"
+"have to make may be difficult if you do not have good knowledge of\n"
+"GNU/Linux, so it is not recommended that those without a fair amount of\n"
+"experience select this installation class."
msgstr ""
"DrakX sada treba znati da li Ÿelite raditi podrazumijevanu instalaciju\n"
"(\"Preporuèeno\") ili Ÿelite li imati veæu kontrolu (\"Struènjak\"). MoŸete\n"
@@ -3936,19 +4004,22 @@ msgstr ""
"GNU/Linux. Dakle, nemojte izabrati\n"
"ovu instalacijsku klasu ukoliko ne znate čto radite."
-#: ../../help.pm_.c:584
+#: ../../help.pm_.c:578
msgid ""
"Normally, DrakX selects the right keyboard for you (depending on the\n"
-"language you have chosen) and you won't even see this step. However, you\n"
-"might not have a keyboard that corresponds exactly to your language: for\n"
-"example, if you are an English speaking Swiss person, you may still want\n"
-"your keyboard to be a Swiss keyboard. Or if you speak English but are\n"
-"located in Quebec, you may find yourself in the same situation. In both\n"
-"cases, you will have to go back to this installation step and select an\n"
-"appropriate keyboard from the list.\n"
+"language you have chosen). However, you might not have a keyboard that\n"
+"corresponds exactly to your language: for example, if you are an English\n"
+"speaking Swiss person, you may still want your keyboard to be a Swiss\n"
+"keyboard. Or if you speak English but are located in Quebec, you may find\n"
+"yourself in the same situation. In both cases, you will have to go back to\n"
+"this installation step and select an appropriate keyboard from the list.\n"
"\n"
"Click on the \"More\" button to be presented with the complete list of\n"
-"supported keyboards."
+"supported keyboards.\n"
+"\n"
+"If you choose a keyboard layout based on a non-latin alphabet, you will be\n"
+"asked on next dialog to choose the key binding that will switch the\n"
+"keyboard layout between the latin and non latin layouts."
msgstr ""
"Obièno, DrakX izabere pravu tipkovnicu za vas (ovisno o jeziku koji ste "
"odabrali)\n"
@@ -3961,8 +4032,10 @@ msgstr ""
"\n"
"Pristisnite \"Dodatno\" da biste dobili potpun popis podrŸanih tipkovnica."
-#: ../../help.pm_.c:597
+#: ../../help.pm_.c:594
msgid ""
+"The first step is to choose your preferred language.\n"
+"\n"
"Please choose your preferred language for installation and system usage.\n"
"\n"
"Clicking on the \"Advanced\" button will allow you to select other\n"
@@ -3991,7 +4064,7 @@ msgstr ""
"dodatne\n"
"lokale, stisnite \"U redu\" za nastavak."
-#: ../../help.pm_.c:610
+#: ../../help.pm_.c:609
msgid ""
"DrakX generally detects the number of buttons your mouse has. If not, it\n"
"assumes you have a two-button mouse and will set it up for third-button\n"
@@ -4004,7 +4077,14 @@ msgid ""
"If you choose a mouse other than the default, a test screen will be\n"
"displayed. Use the buttons and wheel to verify that the settings are\n"
"correct. If the mouse is not working well, press the space bar or [Return]\n"
-"to \"Cancel\" and choose again."
+"to \"Cancel\" and choose again.\n"
+"\n"
+"Wheel mouses are sometimes not automatically detected. You will need to\n"
+"manually select it in the list. Be sure to select the one corresponding to\n"
+"the correct port it is attached to. After you have pressed the \"OK\"\n"
+"button, a mouse image is displayed. You then need to move the wheel of your\n"
+"mouse to activate it correctly. Then test all buttons and movements are\n"
+"correct."
msgstr ""
"DrakX obièno prepozna koliko vač mič ima dugmeta. Ako ne, pretpostavlja da\n"
"imate mič sa dva dugmeta, a treæe æe emulirati. DrakX æe automatski znati da "
@@ -4021,7 +4101,7 @@ msgstr ""
"radi\n"
"dobro, stisnite razmaknicu ili [Return] da bi odustali i ponovno izabirali."
-#: ../../help.pm_.c:624
+#: ../../help.pm_.c:630
msgid ""
"Please select the correct port. For example, the \"COM1\" port under\n"
"Windows is named \"ttyS0\" under GNU/Linux."
@@ -4029,7 +4109,7 @@ msgstr ""
"Molim odaberite ispravni port. Na primjer, COM1 port pod MS Windowsima\n"
"se, pod GNU/Linuxom zove \"ttyS0\"."
-#: ../../help.pm_.c:628
+#: ../../help.pm_.c:634
msgid ""
"This is the most crucial decision point for the security of your GNU/Linux\n"
"system: you have to enter the \"root\" password. \"root\" is the system\n"
@@ -4059,9 +4139,9 @@ msgid ""
"In Expert mode, you will be asked if you will be connecting to an\n"
"authentication server, like NIS or LDAP.\n"
"\n"
-"If your network uses the LDAP (or NIS) protocol for authentication, select\n"
-"\"LDAP\" (or \"NIS\") as authentication. If you do not know, ask your\n"
-"network administrator.\n"
+"If your network uses either of the LDAP, NIS, or PDC Windows Domain\n"
+"authentication services, select the appropriate one as \"authentication\".\n"
+"If you do not know, ask your network administrator.\n"
"\n"
"If your computer is not connected to any administrated network, you will\n"
"want to choose \"Local files\" for authentication."
@@ -4113,7 +4193,7 @@ msgstr ""
"izabrati\n"
"\"Lokalne datoteke\" za autentifikaciju."
-#: ../../help.pm_.c:664
+#: ../../help.pm_.c:670
msgid ""
"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
@@ -4152,16 +4232,7 @@ msgid ""
"options. !!\n"
"\n"
"Clicking the \"Advanced\" button in this dialog will offer many advanced\n"
-"options, which are reserved to the expert user.\n"
-"\n"
-"After you have configured the general bootloader parameters, the list of\n"
-"boot options which will be available at boot time will be displayed.\n"
-"\n"
-"If there is another operating system installed on your machine, it will\n"
-"automatically be added to the boot menu. Here, you can choose to fine-tune\n"
-"the existing options. Select an entry and click \"Modify\" to modify or\n"
-"remove it; \"Add\" creates a new entry; and \"Done\" goes on to the next\n"
-"installation step."
+"options, which are reserved for the expert user."
msgstr ""
"LILO i grub su GNU/Linux bootloaderi. Ovaj korak je obièno potpuno "
"automatiziran.\n"
@@ -4219,13 +4290,16 @@ msgstr ""
"stvara\n"
"novu stavku; i \"Zavrči\" kreæe dalje na slijedeæi instalacijski korak."
-#: ../../help.pm_.c:713
+#: ../../help.pm_.c:710
msgid ""
-"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
-"either GNU/Linux or any other operating system present on your computer.\n"
-"Normally, these other operating systems are correctly detected and\n"
-"installed. If this is not the case, you can add an entry by hand in this\n"
-"screen. Be careful to choose the correct parameters.\n"
+"After you have configured the general bootloader parameters, the list of\n"
+"boot options which will be available at boot time will be displayed.\n"
+"\n"
+"If there is another operating system installed on your machine, it will\n"
+"automatically be added to the boot menu. Here, you can choose to fine-tune\n"
+"the existing options. Select an entry and click \"Modify\" to modify or\n"
+"remove it; \"Add\" creates a new entry; and \"Done\" goes on to the next\n"
+"installation step.\n"
"\n"
"You may also not want to give access to these other operating systems to\n"
"anyone. In which case, you can delete the corresponding entries. But then,\n"
@@ -4325,18 +4399,18 @@ msgstr ""
#: ../../help.pm_.c:759
msgid ""
-"DrakX now detects any IDE device present in your computer. It will also\n"
-"scan for one or more PCI SCSI card(s) on your system. If a SCSI card is\n"
+"DrakX now detects any IDE devices present in your computer. It will also\n"
+"scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
"found, DrakX will automatically install the appropriate driver.\n"
"\n"
"Because hardware detection does not always detect a piece of hardware,\n"
"DrakX will ask you to confirm if a PCI SCSI card is present. Click \"Yes\"\n"
"if you know that there is a SCSI card installed in your machine. You will\n"
-"be presented a list of SCSI cards to choose from. Click \"No\" if you have\n"
-"no SCSI hardware. If you are unsure, you can check the list of hardware\n"
-"detected in your machine by selecting \"See hardware info\" and clicking\n"
-"\"OK\". Examine the list of hardware and then click on the \"OK\" button to\n"
-"return to the SCSI interface question.\n"
+"be presented with a list of SCSI cards to choose from. Click \"No\" if you\n"
+"have no SCSI hardware. If you are unsure, you can check the list of\n"
+"hardware detected in your machine by selecting \"See hardware info\" and\n"
+"clicking \"OK\". Examine the list of hardware and then click on the \"OK\"\n"
+"button to return to the SCSI interface question.\n"
"\n"
"If you have to manually specify your adapter, DrakX will ask if you want to\n"
"specify options for it. You should allow DrakX to probe the hardware for\n"
@@ -4560,7 +4634,9 @@ msgid ""
"order to configure the clock according to the time zone you are in;\n"
"\n"
" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
-"configuration wizard;\n"
+"configuration wizard. Consult the corresponding chapter of the ``User\n"
+"Guide'' for more information on how to setup a new printer. The interface\n"
+"presented there is similar to the one used during installation;\n"
"\n"
" * \"Sound card\": if a sound card is detected on your system, it is\n"
"displayed here. No modification possible at installation time;\n"
@@ -4604,7 +4680,7 @@ msgstr ""
"MoŸete\n"
"mijenjati njene parametre pritiskom na dugme."
-#: ../../help.pm_.c:894
+#: ../../help.pm_.c:896
msgid ""
"Choose the hard drive you want to erase in order to install your new\n"
"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
@@ -4614,7 +4690,7 @@ msgstr ""
"novu Mandrake Linux particiju. Budite paŸljivi, svi postojeæi podaci\n"
"biti æe izgubljen i neæe se moæi povratiti!"
-#: ../../help.pm_.c:899
+#: ../../help.pm_.c:901
msgid ""
"Click on \"OK\" if you want to delete all data and partitions present on\n"
"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
@@ -4649,7 +4725,7 @@ msgstr ""
msgid "You must also format %s"
msgstr "Morate također formatirati %s"
-#: ../../install_any.pm_.c:418
+#: ../../install_any.pm_.c:423
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -4675,20 +4751,29 @@ msgstr ""
"\n"
"Da li zaista Ÿelite instalirati te posluŸitelje?\n"
-#: ../../install_any.pm_.c:453
+#: ../../install_any.pm_.c:441
+#, c-format
+msgid ""
+"The following packages will be removed to allow upgrading your system: %s\n"
+"\n"
+"\n"
+"Do you really want to remove these packages?\n"
+msgstr ""
+
+#: ../../install_any.pm_.c:471
msgid "Can't use broadcast with no NIS domain"
msgstr "Ne mogu koristiti broadcast bez NIS domene"
-#: ../../install_any.pm_.c:841
+#: ../../install_any.pm_.c:862
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Umetnite FAT formatiranu disketu u pogon %s"
-#: ../../install_any.pm_.c:845
+#: ../../install_any.pm_.c:866
msgid "This floppy is not FAT formatted"
msgstr "Ova disketa nije FAT formatirana"
-#: ../../install_any.pm_.c:857
+#: ../../install_any.pm_.c:878
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -4696,11 +4781,20 @@ msgstr ""
"Za koričtenje spremljenog odabira paketa, podignite instalaciju sa ``linux "
"defcfg=floppy''"
-#: ../../install_any.pm_.c:880 ../../partition_table.pm_.c:771
+#: ../../install_any.pm_.c:901 ../../partition_table.pm_.c:767
#, c-format
msgid "Error reading file %s"
msgstr "Grečka prilikom èitanja datoteke %s"
+#: ../../install_any.pm_.c:1023
+msgid ""
+"An error occurred - no valid devices were found on which to create new "
+"filesystems. Please check your hardware for the cause of this problem"
+msgstr ""
+"Pojavila se grečka - ne mogu pronaæi niti jedan valjani uređaj na kojem\n"
+"bih mogao instalirati datoteèni sustav. Provjerite da li je sa vačim "
+"hardverom sve u redu."
+
#: ../../install_interactive.pm_.c:23
#, c-format
msgid ""
@@ -4734,59 +4828,59 @@ msgstr ""
"\n"
"Da ipak nastavim?"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:168
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:169
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "Morate imati FAT particiju montiranu na /boot/efi"
-#: ../../install_interactive.pm_.c:91
+#: ../../install_interactive.pm_.c:92
msgid "Use free space"
msgstr "Koristi slobodan prostor"
-#: ../../install_interactive.pm_.c:93
+#: ../../install_interactive.pm_.c:94
msgid "Not enough free space to allocate new partitions"
msgstr "Nema dovoljno slobodnog prostora za pravljenje novih particija"
-#: ../../install_interactive.pm_.c:101
+#: ../../install_interactive.pm_.c:102
msgid "Use existing partitions"
msgstr "Koristi postojeæe particije"
-#: ../../install_interactive.pm_.c:103
+#: ../../install_interactive.pm_.c:104
msgid "There is no existing partition to use"
msgstr "Nema postojeæih particija koje bih mogao upotrijebiti"
-#: ../../install_interactive.pm_.c:110
+#: ../../install_interactive.pm_.c:111
msgid "Use the Windows partition for loopback"
msgstr "Koristi Windows particiju za loopback"
-#: ../../install_interactive.pm_.c:113
+#: ../../install_interactive.pm_.c:114
msgid "Which partition do you want to use for Linux4Win?"
msgstr "Koju particiju Ÿelite koristiti za Linux4Win?"
-#: ../../install_interactive.pm_.c:115
+#: ../../install_interactive.pm_.c:116
msgid "Choose the sizes"
msgstr "Odaberite velièinu"
-#: ../../install_interactive.pm_.c:116
+#: ../../install_interactive.pm_.c:117
msgid "Root partition size in MB: "
msgstr "Velièina korijenske particije u MB: "
-#: ../../install_interactive.pm_.c:117
+#: ../../install_interactive.pm_.c:118
msgid "Swap partition size in MB: "
msgstr "Velièina swap particiju u MB: "
-#: ../../install_interactive.pm_.c:126
+#: ../../install_interactive.pm_.c:128
msgid "Use the free space on the Windows partition"
msgstr "Iskoristi slobodan prostor na Windows particiji"
-#: ../../install_interactive.pm_.c:129
+#: ../../install_interactive.pm_.c:131
msgid "Which partition do you want to resize?"
msgstr "Kojoj particiji Ÿelite promijeniti velièinu?"
-#: ../../install_interactive.pm_.c:131
+#: ../../install_interactive.pm_.c:133
msgid "Resizing Windows partition"
msgstr "Izraèunavam granice Windows datoteènog sustava"
-#: ../../install_interactive.pm_.c:134
+#: ../../install_interactive.pm_.c:136
#, c-format
msgid ""
"The FAT resizer is unable to handle your partition, \n"
@@ -4795,7 +4889,7 @@ msgstr ""
"Program koji mjenja velièinu FAT-a ne moŸe rukovati vačom particijom, \n"
"slijedeæa grečka se dogodila: %s"
-#: ../../install_interactive.pm_.c:137
+#: ../../install_interactive.pm_.c:139
msgid ""
"Your Windows partition is too fragmented. Please reboot your computer under "
"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
@@ -4803,7 +4897,7 @@ msgid ""
msgstr ""
"Vača Windows particija je prefragmentirana, molim pokrenite ``defrag'' prvo."
-#: ../../install_interactive.pm_.c:138
+#: ../../install_interactive.pm_.c:140
msgid ""
"WARNING!\n"
"\n"
@@ -4824,21 +4918,21 @@ msgstr ""
"Također preporuèljivo je da saèuvate vače podatke (napravite backup).\n"
"Kada ste sigurni da Ÿelite nastaviti, pritisnite U redu."
-#: ../../install_interactive.pm_.c:148
+#: ../../install_interactive.pm_.c:150
msgid "Which size do you want to keep for Windows on"
msgstr "Koliku velièinu Ÿelite zadrŸati za windowse"
-#: ../../install_interactive.pm_.c:149
+#: ../../install_interactive.pm_.c:151
#, c-format
msgid "partition %s"
msgstr "particija %s"
-#: ../../install_interactive.pm_.c:156
+#: ../../install_interactive.pm_.c:158
#, c-format
msgid "FAT resizing failed: %s"
msgstr "Mijenjanje FAT velièine nije uspjelo: %s"
-#: ../../install_interactive.pm_.c:171
+#: ../../install_interactive.pm_.c:173
msgid ""
"There is no FAT partition to resize or to use as loopback (or not enough "
"space left)"
@@ -4846,32 +4940,32 @@ msgstr ""
"Nema FAT particije za mjenjanje velièine ili za koričtenje loopback-a (ili "
"nema dovoljno prostora)"
-#: ../../install_interactive.pm_.c:177
+#: ../../install_interactive.pm_.c:179
msgid "Erase entire disk"
msgstr "Obriči cijeli disk"
-#: ../../install_interactive.pm_.c:177
+#: ../../install_interactive.pm_.c:179
msgid "Remove Windows(TM)"
msgstr "Ukloni Windowse(TM)"
-#: ../../install_interactive.pm_.c:180
+#: ../../install_interactive.pm_.c:182
msgid "You have more than one hard drive, which one do you install linux on?"
msgstr "Imate viče od jednog hard diska, na koji Ÿelite instalirati Linux?"
-#: ../../install_interactive.pm_.c:183
+#: ../../install_interactive.pm_.c:185
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr "SVE postojeæe particije i podaci biti æe izgubljeni na disku %s"
-#: ../../install_interactive.pm_.c:191
+#: ../../install_interactive.pm_.c:193
msgid "Custom disk partitioning"
msgstr "Proizvoljno particioniranje diska"
-#: ../../install_interactive.pm_.c:195
+#: ../../install_interactive.pm_.c:197
msgid "Use fdisk"
msgstr "Koristi fdisk"
-#: ../../install_interactive.pm_.c:198
+#: ../../install_interactive.pm_.c:200
#, c-format
msgid ""
"You can now partition %s.\n"
@@ -4880,28 +4974,28 @@ msgstr ""
"Sada moŸete razdijeliti %s.\n"
"Kada ste gotovi ne zaboravite spremiti postavu sa `w'"
-#: ../../install_interactive.pm_.c:227
+#: ../../install_interactive.pm_.c:229
msgid "You don't have enough free space on your Windows partition"
msgstr "Nemate dovoljno slobodnog prostora na vačoj Windows particiji"
-#: ../../install_interactive.pm_.c:243
+#: ../../install_interactive.pm_.c:245
msgid "I can't find any room for installing"
msgstr "Ne mogu pronaæi bilo kakvo mjesto za instaliranje"
-#: ../../install_interactive.pm_.c:246
+#: ../../install_interactive.pm_.c:248
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr "DrakX èarobnjak za particioniranje je pronačao slijedeæa rječenja:"
-#: ../../install_interactive.pm_.c:250
+#: ../../install_interactive.pm_.c:252
#, c-format
msgid "Partitioning failed: %s"
msgstr "Particioniranje neuspjelo: %s"
-#: ../../install_interactive.pm_.c:260
+#: ../../install_interactive.pm_.c:262
msgid "Bringing up the network"
msgstr "PodiŸem mreŸu"
-#: ../../install_interactive.pm_.c:265
+#: ../../install_interactive.pm_.c:267
msgid "Bringing down the network"
msgstr "Onemoguæujem mreŸu"
@@ -4913,12 +5007,12 @@ msgstr ""
"Dogodila se grečka, ali neznam kako s njom lijepo rukovati.\n"
"Nastavite dalje na vlastiti rizik."
-#: ../../install_steps.pm_.c:210
+#: ../../install_steps.pm_.c:211
#, c-format
msgid "Duplicate mount point %s"
msgstr "Dupliciraj mjesto monitranja %s"
-#: ../../install_steps.pm_.c:379
+#: ../../install_steps.pm_.c:380
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -4930,12 +5024,12 @@ msgstr ""
"Provjerite cdrom na instaliranom raèunalu koristeæi \"rpm -qpl Mandrake/RPMS/"
"*.rpm\"\n"
-#: ../../install_steps.pm_.c:451
+#: ../../install_steps.pm_.c:452
#, c-format
msgid "Welcome to %s"
msgstr "Dobrodočli u %s"
-#: ../../install_steps.pm_.c:530 ../../install_steps.pm_.c:770
+#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:772
msgid "No floppy drive available"
msgstr "Disketni pogon nije dostupan"
@@ -4964,71 +5058,71 @@ msgstr "Instalacijski razred"
msgid "Please choose one of the following classes of installation:"
msgstr "Molim izaberite jedan od slijedeæih razreda instalacije:"
-#: ../../install_steps_gtk.pm_.c:243 ../../install_steps_interactive.pm_.c:694
+#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:678
msgid "Package Group Selection"
msgstr "Odabir grupe paketa"
-#: ../../install_steps_gtk.pm_.c:276 ../../install_steps_interactive.pm_.c:709
+#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:693
msgid "Individual package selection"
msgstr "Individualan odabir paketa"
-#: ../../install_steps_gtk.pm_.c:299 ../../install_steps_interactive.pm_.c:633
+#: ../../install_steps_gtk.pm_.c:293 ../../install_steps_interactive.pm_.c:617
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Ukupna velièina: %d / %d MB"
-#: ../../install_steps_gtk.pm_.c:341
+#: ../../install_steps_gtk.pm_.c:335
msgid "Bad package"
msgstr "Loč paket"
-#: ../../install_steps_gtk.pm_.c:342
+#: ../../install_steps_gtk.pm_.c:336
#, c-format
msgid "Name: %s\n"
msgstr "Ime: %s\n"
-#: ../../install_steps_gtk.pm_.c:343
+#: ../../install_steps_gtk.pm_.c:337
#, c-format
msgid "Version: %s\n"
msgstr "Inaèica: %s\n"
-#: ../../install_steps_gtk.pm_.c:344
+#: ../../install_steps_gtk.pm_.c:338
#, c-format
msgid "Size: %d KB\n"
msgstr "Velièina: %d KB\n"
-#: ../../install_steps_gtk.pm_.c:345
+#: ../../install_steps_gtk.pm_.c:339
#, c-format
msgid "Importance: %s\n"
msgstr "Znaèaj: %s\n"
-#: ../../install_steps_gtk.pm_.c:367
+#: ../../install_steps_gtk.pm_.c:361
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr ""
"Ne moŸete oznaèiti ovaj paket buduæi da nema dovoljno mjesta gdje ga se moŸe "
"instalirati"
-#: ../../install_steps_gtk.pm_.c:372
+#: ../../install_steps_gtk.pm_.c:366
msgid "The following packages are going to be installed"
msgstr "Slijedeæi paketi æe biti instalirani"
-#: ../../install_steps_gtk.pm_.c:373
+#: ../../install_steps_gtk.pm_.c:367
msgid "The following packages are going to be removed"
msgstr "Slijedeæi paketi æe biti uklonjeni"
-#: ../../install_steps_gtk.pm_.c:385
+#: ../../install_steps_gtk.pm_.c:379
msgid "You can't select/unselect this package"
msgstr "Ne moŸete oznaèiti/odznaèiti ovaj paket"
-#: ../../install_steps_gtk.pm_.c:397
+#: ../../install_steps_gtk.pm_.c:391
msgid "This is a mandatory package, it can't be unselected"
msgstr "Buduæi da je ovo obvezni paket ne moŸete ga odznaèiti"
-#: ../../install_steps_gtk.pm_.c:399
+#: ../../install_steps_gtk.pm_.c:393
msgid "You can't unselect this package. It is already installed"
msgstr "Ne moŸete odznaèiti ovaj paket buduæi da je veæ instaliran"
-#: ../../install_steps_gtk.pm_.c:402
+#: ../../install_steps_gtk.pm_.c:396
msgid ""
"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
@@ -5036,74 +5130,74 @@ msgstr ""
"Ovaj paket treba nadograditi\n"
"Da li ste sigurni da ga Ÿelite odznaèiti?"
-#: ../../install_steps_gtk.pm_.c:405
+#: ../../install_steps_gtk.pm_.c:399
msgid "You can't unselect this package. It must be upgraded"
msgstr "Ne moŸete odznaèiti ovaj paket buduæi da ga treba nadograditi"
-#: ../../install_steps_gtk.pm_.c:410
+#: ../../install_steps_gtk.pm_.c:404
msgid "Show automatically selected packages"
msgstr "PrikaŸi automatski odabrane pakete"
-#: ../../install_steps_gtk.pm_.c:411 ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_gtk.pm_.c:405 ../../install_steps_interactive.pm_.c:255
#: ../../install_steps_interactive.pm_.c:259
-#: ../../standalone/drakbackup_.c:3600
+#: ../../standalone/drakbackup_.c:4257
msgid "Install"
msgstr "Instaliraj"
-#: ../../install_steps_gtk.pm_.c:414
+#: ../../install_steps_gtk.pm_.c:408
msgid "Load/Save on floppy"
msgstr "Uèitaj/Spremi na disketu"
-#: ../../install_steps_gtk.pm_.c:415
+#: ../../install_steps_gtk.pm_.c:409
msgid "Updating package selection"
msgstr "Dograđujem izbor paketa"
-#: ../../install_steps_gtk.pm_.c:420
+#: ../../install_steps_gtk.pm_.c:414
msgid "Minimal install"
msgstr "Minimalna instalacija"
-#: ../../install_steps_gtk.pm_.c:435 ../../install_steps_interactive.pm_.c:538
+#: ../../install_steps_gtk.pm_.c:429 ../../install_steps_interactive.pm_.c:522
msgid "Choose the packages you want to install"
msgstr "Odaberite pakete koje Ÿelite instalirati"
-#: ../../install_steps_gtk.pm_.c:451 ../../install_steps_interactive.pm_.c:778
+#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:762
msgid "Installing"
msgstr "Instaliram"
-#: ../../install_steps_gtk.pm_.c:457
+#: ../../install_steps_gtk.pm_.c:451
msgid "Estimating"
msgstr "Procjenjujem"
-#: ../../install_steps_gtk.pm_.c:464
+#: ../../install_steps_gtk.pm_.c:458
msgid "Time remaining "
msgstr "Preostalo vrijeme"
-#: ../../install_steps_gtk.pm_.c:476
+#: ../../install_steps_gtk.pm_.c:470
msgid "Please wait, preparing installation..."
msgstr "Molimo prièekajte, Pripremam instalaciju"
-#: ../../install_steps_gtk.pm_.c:560
+#: ../../install_steps_gtk.pm_.c:554
#, c-format
msgid "%d packages"
msgstr "%d paketa"
-#: ../../install_steps_gtk.pm_.c:565
+#: ../../install_steps_gtk.pm_.c:559
#, c-format
msgid "Installing package %s"
msgstr "Instaliram paket %s"
-#: ../../install_steps_gtk.pm_.c:602 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:802
+#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:786
#: ../../standalone/drakautoinst_.c:202
msgid "Accept"
msgstr "Prihvati"
-#: ../../install_steps_gtk.pm_.c:602 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:802
+#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:786
msgid "Refuse"
msgstr "Odbij"
-#: ../../install_steps_gtk.pm_.c:603 ../../install_steps_interactive.pm_.c:803
+#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:787
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -5119,17 +5213,17 @@ msgstr ""
"Ukoliko ga nemate, pritisnite Odustani kako bi izbjegli instalaciju sa ovog "
"Cd-Rom-a."
-#: ../../install_steps_gtk.pm_.c:617 ../../install_steps_gtk.pm_.c:621
-#: ../../install_steps_interactive.pm_.c:815
-#: ../../install_steps_interactive.pm_.c:819
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_gtk.pm_.c:615
+#: ../../install_steps_interactive.pm_.c:799
+#: ../../install_steps_interactive.pm_.c:803
msgid "Go on anyway?"
msgstr "Da ipak nastavim?"
-#: ../../install_steps_gtk.pm_.c:617 ../../install_steps_interactive.pm_.c:815
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:799
msgid "There was an error ordering packages:"
msgstr "Javila se grečka prilikom sortiranja paketa:"
-#: ../../install_steps_gtk.pm_.c:621 ../../install_steps_interactive.pm_.c:819
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:803
msgid "There was an error installing packages:"
msgstr "Pojavila se grečka kod instalacije paketa:"
@@ -5445,7 +5539,7 @@ msgid "Are you sure you refuse the licence?"
msgstr ""
#: ../../install_steps_interactive.pm_.c:211
-#: ../../install_steps_interactive.pm_.c:1038
+#: ../../install_steps_interactive.pm_.c:1023
#: ../../standalone/keyboarddrake_.c:31
msgid "Keyboard"
msgstr "Tipkovnica"
@@ -5493,11 +5587,11 @@ msgstr "Samo dogradi pakete"
msgid "Please choose the type of your mouse."
msgstr "Molim izaberite vaču vrstu miča."
-#: ../../install_steps_interactive.pm_.c:281 ../../standalone/mousedrake_.c:59
+#: ../../install_steps_interactive.pm_.c:281 ../../standalone/mousedrake_.c:60
msgid "Mouse Port"
msgstr "Port miča"
-#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:61
msgid "Please choose on which serial port your mouse is connected to."
msgstr "Izaberite na kojem serijskom portu je mič prikljuèen."
@@ -5529,46 +5623,20 @@ msgstr "Podečavam IDE"
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:336
+#: ../../install_steps_interactive.pm_.c:338
msgid "No partition available"
msgstr "nema dostupnih particija"
-#: ../../install_steps_interactive.pm_.c:339
+#: ../../install_steps_interactive.pm_.c:341
msgid "Scanning partitions to find mount points"
msgstr "TraŸim particije kako bi pronačao mjesta montiranja"
-#: ../../install_steps_interactive.pm_.c:347
+#: ../../install_steps_interactive.pm_.c:349
msgid "Choose the mount points"
msgstr "Odaberite mjesta montiranja"
-#: ../../install_steps_interactive.pm_.c:366
-#, c-format
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to not allow DrakX to modify the partition table.\n"
-"(the error is %s)\n"
-"\n"
-"Do you agree to loose all the partitions?\n"
-msgstr ""
-"Ne mogu proèitati particijsku tablicu, previče je koruptirana za mene :(\n"
-"Mogu pokučati sa brisanjem ločih particija (SVI PODACI æe biti "
-"izgubljeni!).\n"
-"Drugo rječenje je onemoguæiti DrakX-u da mjenja particijsku tablicu.\n"
-"(grečka je %s)\n"
-"\n"
-"Da li se slaŸete da izgubite sve particije?\n"
-
#: ../../install_steps_interactive.pm_.c:379
msgid ""
-"DiskDrake failed to read correctly the partition table.\n"
-"Continue at your own risk!"
-msgstr ""
-"DiskDrake nije uspio proèitati vaču particijsku tablice.\n"
-"Nastavite o vlastitoj odgovornosti."
-
-#: ../../install_steps_interactive.pm_.c:396
-msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
msgstr ""
@@ -5576,71 +5644,71 @@ msgstr ""
"podizanje vačeg sustava, trebati æete napraviti bootstrap particiju u "
"DiskDrake-u"
-#: ../../install_steps_interactive.pm_.c:405
+#: ../../install_steps_interactive.pm_.c:388
msgid "No root partition found to perform an upgrade"
msgstr "Niti jedna root particija nije pronađena da se obavi dogradnja"
-#: ../../install_steps_interactive.pm_.c:406
+#: ../../install_steps_interactive.pm_.c:389
msgid "Root Partition"
msgstr "Korijenska particija"
-#: ../../install_steps_interactive.pm_.c:407
+#: ../../install_steps_interactive.pm_.c:390
msgid "What is the root partition (/) of your system?"
msgstr "Koja je korijenska particija (/) vačeg sustava?"
-#: ../../install_steps_interactive.pm_.c:421
+#: ../../install_steps_interactive.pm_.c:404
msgid "You need to reboot for the partition table modifications to take place"
msgstr ""
"Morate ponovo pokrenuti sustav kako bi se aktivirala promjena particijske "
"tablice"
-#: ../../install_steps_interactive.pm_.c:445
+#: ../../install_steps_interactive.pm_.c:428
msgid "Choose the partitions you want to format"
msgstr "Izaberite particije koje Ÿelite formatirati"
-#: ../../install_steps_interactive.pm_.c:446
+#: ../../install_steps_interactive.pm_.c:429
msgid "Check bad blocks?"
msgstr "Provjeri za loče blokove?"
-#: ../../install_steps_interactive.pm_.c:473
+#: ../../install_steps_interactive.pm_.c:456
msgid "Formatting partitions"
msgstr "Formatiram particije"
-#: ../../install_steps_interactive.pm_.c:475
+#: ../../install_steps_interactive.pm_.c:458
#, c-format
msgid "Creating and formatting file %s"
msgstr "Stvaram i formatiram datoteku %s"
-#: ../../install_steps_interactive.pm_.c:480
+#: ../../install_steps_interactive.pm_.c:463
#, c-format
msgid ""
"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
"you can loose data)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:482
+#: ../../install_steps_interactive.pm_.c:465
msgid "Not enough swap space to fulfill installation, please add some"
msgstr "Nema dovoljno swapa za zavrčetak instalacije, molim dodajte joč"
-#: ../../install_steps_interactive.pm_.c:489
+#: ../../install_steps_interactive.pm_.c:472
#, fuzzy
msgid "Looking for available packages and rebuilding rpm database..."
msgstr "TraŸim dostupne pakete"
-#: ../../install_steps_interactive.pm_.c:490
+#: ../../install_steps_interactive.pm_.c:473
msgid "Looking for available packages..."
msgstr "TraŸim dostupne pakete"
-#: ../../install_steps_interactive.pm_.c:493
+#: ../../install_steps_interactive.pm_.c:476
#, fuzzy
msgid "Looking at packages already installed..."
msgstr "Ne moŸete odznaèiti ovaj paket buduæi da je veæ instaliran"
-#: ../../install_steps_interactive.pm_.c:497
+#: ../../install_steps_interactive.pm_.c:480
msgid "Finding packages to upgrade..."
msgstr "TraŸim pakete koje mogu nadograditi"
-#: ../../install_steps_interactive.pm_.c:515
+#: ../../install_steps_interactive.pm_.c:498
#, c-format
msgid ""
"Your system does not have enough space left for installation or upgrade (%d "
@@ -5648,7 +5716,7 @@ msgid ""
msgstr ""
"Vač sustav nema dovoljno prostora za instalaciju ili dogradnju (%d > %d)"
-#: ../../install_steps_interactive.pm_.c:550
+#: ../../install_steps_interactive.pm_.c:534
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
@@ -5656,35 +5724,35 @@ msgstr ""
"Molimo izaberite uèitivanje ili spremanje izbora paketa na disketu.\n"
"Format je isto kao auto_install napravljene diskete."
-#: ../../install_steps_interactive.pm_.c:553
+#: ../../install_steps_interactive.pm_.c:537
msgid "Load from floppy"
msgstr "Uèitaj sa diskete"
-#: ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_interactive.pm_.c:539
msgid "Loading from floppy"
msgstr "Uèitavam sa diskete"
-#: ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_interactive.pm_.c:539
msgid "Package selection"
msgstr "Odabir paketa"
-#: ../../install_steps_interactive.pm_.c:560
+#: ../../install_steps_interactive.pm_.c:544
msgid "Insert a floppy containing package selection"
msgstr "Umetnite disketu koja sadrŸava izbor paketa"
-#: ../../install_steps_interactive.pm_.c:572
+#: ../../install_steps_interactive.pm_.c:556
msgid "Save on floppy"
msgstr "Spremi na disketu"
-#: ../../install_steps_interactive.pm_.c:646
+#: ../../install_steps_interactive.pm_.c:630
msgid "Selected size is larger than available space"
msgstr "Izabrana velièina je veæa nego raspoloŸiv prostor"
-#: ../../install_steps_interactive.pm_.c:660
+#: ../../install_steps_interactive.pm_.c:644
msgid "Type of install"
msgstr "Tip instalacije"
-#: ../../install_steps_interactive.pm_.c:661
+#: ../../install_steps_interactive.pm_.c:645
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
@@ -5692,19 +5760,19 @@ msgstr ""
"Niste izabrali niti jednu grupu paketa\n"
"Izaberite minimalnu instalaciju ako Ÿelite"
-#: ../../install_steps_interactive.pm_.c:664
+#: ../../install_steps_interactive.pm_.c:648
msgid "With X"
msgstr "Sa X-ima"
-#: ../../install_steps_interactive.pm_.c:666
+#: ../../install_steps_interactive.pm_.c:650
msgid "With basic documentation (recommended!)"
msgstr "Sa osnovnom dokumentacijom (preporuèeno!)"
-#: ../../install_steps_interactive.pm_.c:667
+#: ../../install_steps_interactive.pm_.c:651
msgid "Truly minimal install (especially no urpmi)"
msgstr "Stvarno malena instalacija (posebice bez urpmia)"
-#: ../../install_steps_interactive.pm_.c:752
+#: ../../install_steps_interactive.pm_.c:736
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -5715,16 +5783,16 @@ msgstr ""
"Ako imate samo neke od dolje navedenih CDa odznaèite one koje nemate i "
"kliknite U redu."
-#: ../../install_steps_interactive.pm_.c:757
+#: ../../install_steps_interactive.pm_.c:741
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "Cd-Rom naslovljen \"%s\""
-#: ../../install_steps_interactive.pm_.c:778
+#: ../../install_steps_interactive.pm_.c:762
msgid "Preparing installation"
msgstr "Pripremam instalaciju"
-#: ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:771
#, c-format
msgid ""
"Installing package %s\n"
@@ -5733,21 +5801,21 @@ msgstr ""
"Instaliram paket %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:833
+#: ../../install_steps_interactive.pm_.c:817
msgid "Post-install configuration"
msgstr "Postava nakon instalacije"
-#: ../../install_steps_interactive.pm_.c:839
+#: ../../install_steps_interactive.pm_.c:823
#, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Molim, umetnite Boot disketu u pogon %s"
-#: ../../install_steps_interactive.pm_.c:845
+#: ../../install_steps_interactive.pm_.c:829
#, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Molim, umetnite Update Modules disketu u pogon %s"
-#: ../../install_steps_interactive.pm_.c:865
+#: ../../install_steps_interactive.pm_.c:849
msgid ""
"You now have the opportunity to download encryption software.\n"
"\n"
@@ -5818,7 +5886,7 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:904
+#: ../../install_steps_interactive.pm_.c:888
#, fuzzy
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
@@ -5838,160 +5906,160 @@ msgstr ""
"\n"
"Da li Ÿelite instalirati dogradnju?"
-#: ../../install_steps_interactive.pm_.c:919
+#: ../../install_steps_interactive.pm_.c:903
msgid ""
"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr ""
"Kontaktiram Mandrake Linux web site za dobivanje popisa raspoloŸivih mirrora"
-#: ../../install_steps_interactive.pm_.c:924
+#: ../../install_steps_interactive.pm_.c:908
msgid "Choose a mirror from which to get the packages"
msgstr "Izaberite mirror sa kojeg Ÿelite skinuti pakete"
-#: ../../install_steps_interactive.pm_.c:933
+#: ../../install_steps_interactive.pm_.c:917
msgid "Contacting the mirror to get the list of available packages..."
msgstr "Spajam se na mirror kako bih pribavio popis dostupnih paketa"
-#: ../../install_steps_interactive.pm_.c:960
+#: ../../install_steps_interactive.pm_.c:945
msgid "Which is your timezone?"
msgstr "Koja je vača vremenska zona?"
-#: ../../install_steps_interactive.pm_.c:965
+#: ../../install_steps_interactive.pm_.c:950
msgid "Hardware clock set to GMT"
msgstr "Vač hardverski sat namječten je na GMT"
-#: ../../install_steps_interactive.pm_.c:966
+#: ../../install_steps_interactive.pm_.c:951
msgid "Automatic time synchronization (using NTP)"
msgstr "Automatska vremenska sinkronizacija (koristeæi NTP)"
-#: ../../install_steps_interactive.pm_.c:973
+#: ../../install_steps_interactive.pm_.c:958
msgid "NTP Server"
msgstr "NTP PosluŸitelj"
-#: ../../install_steps_interactive.pm_.c:1007
-#: ../../install_steps_interactive.pm_.c:1015
+#: ../../install_steps_interactive.pm_.c:992
+#: ../../install_steps_interactive.pm_.c:1000
msgid "Remote CUPS server"
msgstr "Udaljeni CUPS posluŸitelj"
-#: ../../install_steps_interactive.pm_.c:1008
+#: ../../install_steps_interactive.pm_.c:993
msgid "No printer"
msgstr "Nema pisaèa"
-#: ../../install_steps_interactive.pm_.c:1025
+#: ../../install_steps_interactive.pm_.c:1010
msgid "Do you have an ISA sound card?"
msgstr "Da li imate ISA zvuènu karticu?"
-#: ../../install_steps_interactive.pm_.c:1027
+#: ../../install_steps_interactive.pm_.c:1012
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
"Pokrenite \"sndconfig\" poslije instalacije za podečavanje vače zvuène "
"kartice"
-#: ../../install_steps_interactive.pm_.c:1029
+#: ../../install_steps_interactive.pm_.c:1014
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
"Nije pronađena zvuèna kartica. Probajte \"harddrake\" poslije instalacije"
-#: ../../install_steps_interactive.pm_.c:1034 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1019 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Sumarno"
-#: ../../install_steps_interactive.pm_.c:1037
+#: ../../install_steps_interactive.pm_.c:1022
msgid "Mouse"
msgstr "Mič"
-#: ../../install_steps_interactive.pm_.c:1039
+#: ../../install_steps_interactive.pm_.c:1024
msgid "Timezone"
msgstr "Vremenska zona"
-#: ../../install_steps_interactive.pm_.c:1040 ../../printerdrake.pm_.c:2728
-#: ../../printerdrake.pm_.c:2814
+#: ../../install_steps_interactive.pm_.c:1025 ../../printerdrake.pm_.c:2937
+#: ../../printerdrake.pm_.c:3026
msgid "Printer"
msgstr "Pisac"
-#: ../../install_steps_interactive.pm_.c:1042
+#: ../../install_steps_interactive.pm_.c:1027
msgid "ISDN card"
msgstr "ISDN kartica"
-#: ../../install_steps_interactive.pm_.c:1045
-#: ../../install_steps_interactive.pm_.c:1047
+#: ../../install_steps_interactive.pm_.c:1030
+#: ../../install_steps_interactive.pm_.c:1032
msgid "Sound card"
msgstr "Zvuèna kartica"
-#: ../../install_steps_interactive.pm_.c:1049
+#: ../../install_steps_interactive.pm_.c:1034
msgid "TV card"
msgstr "TV kartica"
-#: ../../install_steps_interactive.pm_.c:1089
-#: ../../install_steps_interactive.pm_.c:1114
-#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1074
+#: ../../install_steps_interactive.pm_.c:1099
+#: ../../install_steps_interactive.pm_.c:1103
msgid "LDAP"
msgstr "LDAP"
-#: ../../install_steps_interactive.pm_.c:1090
-#: ../../install_steps_interactive.pm_.c:1114
-#: ../../install_steps_interactive.pm_.c:1127
+#: ../../install_steps_interactive.pm_.c:1075
+#: ../../install_steps_interactive.pm_.c:1099
+#: ../../install_steps_interactive.pm_.c:1112
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1091
-#: ../../install_steps_interactive.pm_.c:1114
-#: ../../install_steps_interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1141
+#: ../../install_steps_interactive.pm_.c:1076
+#: ../../install_steps_interactive.pm_.c:1099
+#: ../../install_steps_interactive.pm_.c:1120
+#: ../../install_steps_interactive.pm_.c:1126
#, fuzzy
msgid "Windows Domain"
msgstr "Dobavi Windows fontove"
-#: ../../install_steps_interactive.pm_.c:1092
-#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1077
+#: ../../install_steps_interactive.pm_.c:1099
msgid "Local files"
msgstr "Lokalne datoteke"
-#: ../../install_steps_interactive.pm_.c:1101
-#: ../../install_steps_interactive.pm_.c:1102 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1086
+#: ../../install_steps_interactive.pm_.c:1087 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Podečavanje root lozinke"
-#: ../../install_steps_interactive.pm_.c:1103
+#: ../../install_steps_interactive.pm_.c:1088
msgid "No password"
msgstr "Bez lozinke"
-#: ../../install_steps_interactive.pm_.c:1108
+#: ../../install_steps_interactive.pm_.c:1093
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr ""
"Ova lozinka je prejednostavna (lozinka mora sadrŸavati barem %d znakova)"
-#: ../../install_steps_interactive.pm_.c:1114 ../../network/modem.pm_.c:49
+#: ../../install_steps_interactive.pm_.c:1099 ../../network/modem.pm_.c:49
#: ../../standalone/drakconnect_.c:625 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Provjera autentiènosti"
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1107
msgid "Authentication LDAP"
msgstr "LDAP Autentifikacija"
-#: ../../install_steps_interactive.pm_.c:1123
+#: ../../install_steps_interactive.pm_.c:1108
msgid "LDAP Base dn"
msgstr "LDAP Base dn"
-#: ../../install_steps_interactive.pm_.c:1124
+#: ../../install_steps_interactive.pm_.c:1109
msgid "LDAP Server"
msgstr "LDAP PosluŸitelj"
-#: ../../install_steps_interactive.pm_.c:1130
+#: ../../install_steps_interactive.pm_.c:1115
msgid "Authentication NIS"
msgstr "NIS Autentifikacija"
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1116
msgid "NIS Domain"
msgstr "NIS domena"
-#: ../../install_steps_interactive.pm_.c:1132
+#: ../../install_steps_interactive.pm_.c:1117
msgid "NIS Server"
msgstr "NIS PosluŸitelj"
-#: ../../install_steps_interactive.pm_.c:1138
+#: ../../install_steps_interactive.pm_.c:1123
msgid ""
"For this to work for a W2K PDC, you will probably need to have the admin "
"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
@@ -6007,21 +6075,21 @@ msgid ""
"good."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1140
+#: ../../install_steps_interactive.pm_.c:1125
#, fuzzy
msgid "Authentication Windows Domain"
msgstr "LDAP Autentifikacija"
-#: ../../install_steps_interactive.pm_.c:1142
+#: ../../install_steps_interactive.pm_.c:1127
#, fuzzy
msgid "Domain Admin User Name"
msgstr "Ime domene"
-#: ../../install_steps_interactive.pm_.c:1143
+#: ../../install_steps_interactive.pm_.c:1128
msgid "Domain Admin Password"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1178
+#: ../../install_steps_interactive.pm_.c:1163
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
"depending on the normal bootloader. This is useful if you don't want to "
@@ -6052,19 +6120,19 @@ msgstr ""
"Ako Ÿelite napraviti boot disketu za vač sustav, ubacite disketu u prvi\n"
" pogon i pritisnite \"U redu\"."
-#: ../../install_steps_interactive.pm_.c:1194
+#: ../../install_steps_interactive.pm_.c:1179
msgid "First floppy drive"
msgstr "Prvi disketni pogon"
-#: ../../install_steps_interactive.pm_.c:1195
+#: ../../install_steps_interactive.pm_.c:1180
msgid "Second floppy drive"
msgstr "Drugi disketni pogon"
-#: ../../install_steps_interactive.pm_.c:1196 ../../printerdrake.pm_.c:2277
+#: ../../install_steps_interactive.pm_.c:1181 ../../printerdrake.pm_.c:2470
msgid "Skip"
msgstr "Preskoèi"
-#: ../../install_steps_interactive.pm_.c:1201
+#: ../../install_steps_interactive.pm_.c:1186
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -6091,7 +6159,7 @@ msgstr ""
"Da li Ÿelite napraviti proizvoljnu boot disketu za vač sustav?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1207
+#: ../../install_steps_interactive.pm_.c:1192
msgid ""
"\n"
"\n"
@@ -6105,28 +6173,28 @@ msgstr ""
"stvaranje boot diskete na disketi kapaciteta 1.44 Mb vjerojatno\n"
"neæe uspjeti, jer XFS treba vrlo velik pokretaèki program)."
-#: ../../install_steps_interactive.pm_.c:1215
+#: ../../install_steps_interactive.pm_.c:1200
msgid "Sorry, no floppy drive available"
msgstr "źalim, međutim disketni pogon nije dostupan"
-#: ../../install_steps_interactive.pm_.c:1219
+#: ../../install_steps_interactive.pm_.c:1204
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "Izaberite disketni pogon koji Ÿelite koristiti za izradu boot diskete"
-#: ../../install_steps_interactive.pm_.c:1223
+#: ../../install_steps_interactive.pm_.c:1208
#, c-format
msgid "Insert a floppy in %s"
msgstr "Umetnite disketu u pogon %s"
-#: ../../install_steps_interactive.pm_.c:1226
+#: ../../install_steps_interactive.pm_.c:1211
msgid "Creating bootdisk..."
msgstr "Stvaram boot disketu"
-#: ../../install_steps_interactive.pm_.c:1233
+#: ../../install_steps_interactive.pm_.c:1218
msgid "Preparing bootloader..."
msgstr "Pripremam bootloader"
-#: ../../install_steps_interactive.pm_.c:1244
+#: ../../install_steps_interactive.pm_.c:1229
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -6138,11 +6206,11 @@ msgstr ""
"Instalacija æe nastaviti, ali æete morati\n"
" koristiti BootX da podignete vače raèunalo"
-#: ../../install_steps_interactive.pm_.c:1250
+#: ../../install_steps_interactive.pm_.c:1235
msgid "Do you want to use aboot?"
msgstr "Da li Ÿelite koristiti aboot?"
-#: ../../install_steps_interactive.pm_.c:1253
+#: ../../install_steps_interactive.pm_.c:1238
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -6150,16 +6218,16 @@ msgstr ""
"Grečka prilikom instalacije aboot-a, \n"
"probati nasilno instalirati iako to moŸe uničtiti prvu particiju?"
-#: ../../install_steps_interactive.pm_.c:1260
+#: ../../install_steps_interactive.pm_.c:1245
msgid "Installing bootloader"
msgstr "Instaliranje bootloadera"
-#: ../../install_steps_interactive.pm_.c:1266
+#: ../../install_steps_interactive.pm_.c:1251
msgid "Installation of bootloader failed. The following error occured:"
msgstr ""
"Instalacija bootloader-a nije uspjela. Prijavljena je slijedeæa grečska:"
-#: ../../install_steps_interactive.pm_.c:1274
+#: ../../install_steps_interactive.pm_.c:1259
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -6176,17 +6244,17 @@ msgstr ""
" Tada napičite: shut-down\n"
"Pri slijedeæem podizanju trebali biste vidjeti prompt bootloadera."
-#: ../../install_steps_interactive.pm_.c:1308
+#: ../../install_steps_interactive.pm_.c:1293
#: ../../standalone/drakautoinst_.c:79
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Umetnite praznu disketu u pogon %s"
-#: ../../install_steps_interactive.pm_.c:1312
+#: ../../install_steps_interactive.pm_.c:1297
msgid "Creating auto install floppy..."
msgstr "Pravim auto instalacijsku disketu"
-#: ../../install_steps_interactive.pm_.c:1323
+#: ../../install_steps_interactive.pm_.c:1308
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -6196,7 +6264,7 @@ msgstr ""
"\n"
"źelite li zaista zavrčiti?"
-#: ../../install_steps_interactive.pm_.c:1334
+#: ../../install_steps_interactive.pm_.c:1319
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
@@ -6229,16 +6297,16 @@ msgstr ""
"Informacije o konfiguriranju vačeg sustava je raspoloŸivo u poslije\n"
"instalacijskom poglavlju od Official Mandrake Linux User's Guide."
-#: ../../install_steps_interactive.pm_.c:1347
+#: ../../install_steps_interactive.pm_.c:1332
#, fuzzy
msgid "http://www.mandrakelinux.com/en/90errata.php3"
msgstr "http://www.mandrakesoft.com/sales/contact"
-#: ../../install_steps_interactive.pm_.c:1352
+#: ../../install_steps_interactive.pm_.c:1337
msgid "Generate auto install floppy"
msgstr "Napravi auto instalacijsku disketu"
-#: ../../install_steps_interactive.pm_.c:1354
+#: ../../install_steps_interactive.pm_.c:1339
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -6252,15 +6320,15 @@ msgstr ""
"\n"
"MoŸete preferirati da ponovite instalaciju.\n"
-#: ../../install_steps_interactive.pm_.c:1359
+#: ../../install_steps_interactive.pm_.c:1344
msgid "Automated"
msgstr "Automatski"
-#: ../../install_steps_interactive.pm_.c:1359
+#: ../../install_steps_interactive.pm_.c:1344
msgid "Replay"
msgstr "Ponovno prikaŸi"
-#: ../../install_steps_interactive.pm_.c:1362
+#: ../../install_steps_interactive.pm_.c:1347
msgid "Save packages selection"
msgstr "Spremi odabir paketa"
@@ -6269,7 +6337,8 @@ msgstr "Spremi odabir paketa"
msgid "Mandrake Linux Installation %s"
msgstr "Mandrake Linux instalacija %s"
-#: ../../install_steps_newt.pm_.c:34
+#. -PO This string must fit in a 80-char wide text screen
+#: ../../install_steps_newt.pm_.c:35
msgid ""
" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
msgstr ""
@@ -6287,22 +6356,22 @@ msgstr "nedostaje consolehelper"
msgid "Choose a file"
msgstr "Izaberite datoteku"
-#: ../../interactive.pm_.c:317
+#: ../../interactive.pm_.c:320
msgid "Advanced"
msgstr "Napredno"
-#: ../../interactive.pm_.c:318
+#: ../../interactive.pm_.c:321
msgid "Basic"
msgstr "Osnovno"
-#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:155
-#: ../../printerdrake.pm_.c:1990
+#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:158
+#: ../../printerdrake.pm_.c:2124
msgid "<- Previous"
msgstr "<- Prijačnje"
#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
-#: ../../standalone/drakbackup_.c:3464 ../../standalone/drakbackup_.c:3491
-#: ../../standalone/drakbackup_.c:3517
+#: ../../standalone/drakbackup_.c:4112 ../../standalone/drakbackup_.c:4139
+#: ../../standalone/drakbackup_.c:4169 ../../standalone/drakbackup_.c:4195
msgid "Next"
msgstr "Slijedeæe"
@@ -6375,375 +6444,375 @@ msgstr ""
msgid "Re-submit"
msgstr "Ponovno Počalji"
-#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:152 ../../keyboard.pm_.c:187
msgid "Czech (QWERTZ)"
msgstr "Èečka (QWERTZ)"
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:153 ../../keyboard.pm_.c:189
msgid "German"
msgstr "Njemaèka"
-#: ../../keyboard.pm_.c:175
+#: ../../keyboard.pm_.c:154
msgid "Dvorak"
msgstr "Dvorak"
-#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:218
+#: ../../keyboard.pm_.c:155 ../../keyboard.pm_.c:197
msgid "Spanish"
msgstr "©panjolska"
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:156 ../../keyboard.pm_.c:198
msgid "Finnish"
msgstr "Finska"
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:220
+#: ../../keyboard.pm_.c:157 ../../keyboard.pm_.c:199
msgid "French"
msgstr "Francuska"
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:158 ../../keyboard.pm_.c:231
msgid "Norwegian"
msgstr "Norvečka"
-#: ../../keyboard.pm_.c:180
+#: ../../keyboard.pm_.c:159
msgid "Polish"
msgstr "Poljska"
-#: ../../keyboard.pm_.c:181 ../../keyboard.pm_.c:260
+#: ../../keyboard.pm_.c:160 ../../keyboard.pm_.c:239
msgid "Russian"
msgstr "Ruska"
-#: ../../keyboard.pm_.c:183 ../../keyboard.pm_.c:262
+#: ../../keyboard.pm_.c:162 ../../keyboard.pm_.c:241
msgid "Swedish"
msgstr "©vedska"
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:278
+#: ../../keyboard.pm_.c:163 ../../keyboard.pm_.c:257
msgid "UK keyboard"
msgstr "UK tipkovnica"
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:279
+#: ../../keyboard.pm_.c:164 ../../keyboard.pm_.c:258
msgid "US keyboard"
msgstr "US tipkovnica"
-#: ../../keyboard.pm_.c:187
+#: ../../keyboard.pm_.c:166
msgid "Albanian"
msgstr "Albanska"
-#: ../../keyboard.pm_.c:188
+#: ../../keyboard.pm_.c:167
msgid "Armenian (old)"
msgstr "Armenska (stara)"
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:168
msgid "Armenian (typewriter)"
msgstr "Armenska (pisaæa mačina)"
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:169
msgid "Armenian (phonetic)"
msgstr "Armenska (fonetska)"
-#: ../../keyboard.pm_.c:195
+#: ../../keyboard.pm_.c:174
msgid "Azerbaidjani (latin)"
msgstr "AzerbejdŸanska (latinica)"
-#: ../../keyboard.pm_.c:197
+#: ../../keyboard.pm_.c:176
msgid "Belgian"
msgstr "Belgijska"
-#: ../../keyboard.pm_.c:198
+#: ../../keyboard.pm_.c:177
#, fuzzy
msgid "Bengali"
msgstr "omoguæi"
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:178
msgid "Bulgarian (phonetic)"
msgstr "Bugarska (fonetska)"
-#: ../../keyboard.pm_.c:200
+#: ../../keyboard.pm_.c:179
msgid "Bulgarian (BDS)"
msgstr "Bugarska (BDS)"
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:180
msgid "Brazilian (ABNT-2)"
msgstr "Brazilska (ABNT-2)"
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:183
#, fuzzy
msgid "Bosnian"
msgstr "Estonska"
-#: ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:184
msgid "Belarusian"
msgstr "Bjeloruska"
-#: ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:185
msgid "Swiss (German layout)"
msgstr "©vicarska (Njemaèki raspored)"
-#: ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:186
msgid "Swiss (French layout)"
msgstr "©vicarska (francuski raspored)"
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:188
msgid "Czech (QWERTY)"
msgstr "Èečka (QWERTY)"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:190
msgid "German (no dead keys)"
msgstr "Njemaèka (bez mrtvih tipaka)"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:191
msgid "Devanagari"
msgstr ""
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:192
msgid "Danish"
msgstr "Danska"
-#: ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:193
msgid "Dvorak (US)"
msgstr "Dvorak (USA)"
-#: ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:194
msgid "Dvorak (Norwegian)"
msgstr "Dvorak (Norvečka)"
-#: ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:195
msgid "Dvorak (Swedish)"
msgstr "Dvorak (©vedska)"
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:196
msgid "Estonian"
msgstr "Estonska"
-#: ../../keyboard.pm_.c:221
+#: ../../keyboard.pm_.c:200
msgid "Georgian (\"Russian\" layout)"
msgstr "Gruzijska (\"Ruski\" raspored)"
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:201
msgid "Georgian (\"Latin\" layout)"
msgstr "Gruzijska (\"Latin\" raspored)"
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:202
msgid "Greek"
msgstr "Grèka"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:203
msgid "Gujarati"
msgstr ""
-#: ../../keyboard.pm_.c:225
+#: ../../keyboard.pm_.c:204
msgid "Gurmukhi"
msgstr ""
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:205
msgid "Hungarian"
msgstr "Mađarska"
-#: ../../keyboard.pm_.c:227
+#: ../../keyboard.pm_.c:206
msgid "Croatian"
msgstr "Hrvatska"
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:207
msgid "Israeli"
msgstr "Izraelska"
-#: ../../keyboard.pm_.c:229
+#: ../../keyboard.pm_.c:208
msgid "Israeli (Phonetic)"
msgstr "Izraelska (fonetska)"
-#: ../../keyboard.pm_.c:230
+#: ../../keyboard.pm_.c:209
msgid "Iranian"
msgstr "Iranska"
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:210
msgid "Icelandic"
msgstr "Islandska"
-#: ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:211
msgid "Italian"
msgstr "Talijanska"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:212
msgid "Inuktitut"
msgstr ""
-#: ../../keyboard.pm_.c:234
+#: ../../keyboard.pm_.c:213
msgid "Japanese 106 keys"
msgstr "Japanska (106 tipaka)"
-#: ../../keyboard.pm_.c:237
+#: ../../keyboard.pm_.c:216
msgid "Korean keyboard"
msgstr "Korejska tipkovnica"
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:217
msgid "Latin American"
msgstr "Latino amerièka"
-#: ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:218
#, fuzzy
msgid "Laotian"
msgstr "Latvija"
-#: ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:219
msgid "Lithuanian AZERTY (old)"
msgstr "Lituanska AZERTY (stara)"
-#: ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:221
msgid "Lithuanian AZERTY (new)"
msgstr "Lituanska AZERTY (nova)"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:222
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Lituanska \"number row\" QWERTY"
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:223
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "Lituanska \"fonetska\" QWERTY"
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:224
msgid "Latvian"
msgstr "Latvija"
-#: ../../keyboard.pm_.c:246
+#: ../../keyboard.pm_.c:225
msgid "Macedonian"
msgstr "Makedonska"
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:226
msgid "Myanmar (Burmese)"
msgstr ""
-#: ../../keyboard.pm_.c:248
+#: ../../keyboard.pm_.c:227
#, fuzzy
msgid "Mongolian (cyrillic)"
msgstr "Srpska (èirilica)"
-#: ../../keyboard.pm_.c:249
+#: ../../keyboard.pm_.c:228
msgid "Maltese (UK)"
msgstr ""
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:229
msgid "Maltese (US)"
msgstr ""
-#: ../../keyboard.pm_.c:251
+#: ../../keyboard.pm_.c:230
msgid "Dutch"
msgstr "Nizozemska"
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:232
msgid "Polish (qwerty layout)"
msgstr "Poljska (qwerty raspored)"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:233
msgid "Polish (qwertz layout)"
msgstr "Poljska (qwertz raspored)"
-#: ../../keyboard.pm_.c:255
+#: ../../keyboard.pm_.c:234
msgid "Portuguese"
msgstr "Portugalska"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:235
msgid "Canadian (Quebec)"
msgstr "Kanadska (Quebec)"
-#: ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:237
msgid "Romanian (qwertz)"
msgstr "Rumunjska (qwertz)"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:238
msgid "Romanian (qwerty)"
msgstr "Rumunjska (qwerty)"
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:240
msgid "Russian (Yawerty)"
msgstr "Ruska (Yawerty)"
-#: ../../keyboard.pm_.c:263
+#: ../../keyboard.pm_.c:242
msgid "Slovenian"
msgstr "Slovenska"
-#: ../../keyboard.pm_.c:264
+#: ../../keyboard.pm_.c:243
msgid "Slovakian (QWERTZ)"
msgstr "Slovaèka (QWERTZ)"
-#: ../../keyboard.pm_.c:265
+#: ../../keyboard.pm_.c:244
msgid "Slovakian (QWERTY)"
msgstr "Slovaèka (QWERTY)"
-#: ../../keyboard.pm_.c:267
+#: ../../keyboard.pm_.c:246
msgid "Serbian (cyrillic)"
msgstr "Srpska (èirilica)"
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:248
msgid "Tamil (Unicode)"
msgstr "Tamil (Unicode)"
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:249
msgid "Tamil (TSCII)"
msgstr "Tamil (TSCII)"
-#: ../../keyboard.pm_.c:271
+#: ../../keyboard.pm_.c:250
msgid "Thai keyboard"
msgstr "Tajlandska tipkovnica"
-#: ../../keyboard.pm_.c:273
+#: ../../keyboard.pm_.c:252
msgid "Tajik keyboard"
msgstr "Tajik tipkovnica"
-#: ../../keyboard.pm_.c:274
+#: ../../keyboard.pm_.c:253
msgid "Turkish (traditional \"F\" model)"
msgstr "Turska (tradicionalni \"F\" model)"
-#: ../../keyboard.pm_.c:275
+#: ../../keyboard.pm_.c:254
msgid "Turkish (modern \"Q\" model)"
msgstr "Turska (moderna \"Q\" model)"
-#: ../../keyboard.pm_.c:277
+#: ../../keyboard.pm_.c:256
msgid "Ukrainian"
msgstr "Ukrajinska"
-#: ../../keyboard.pm_.c:280
+#: ../../keyboard.pm_.c:259
msgid "US keyboard (international)"
msgstr "US keyboard (internacionalna)"
-#: ../../keyboard.pm_.c:281
+#: ../../keyboard.pm_.c:260
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "Vijetnamska \"numeric row\" QWERTY"
-#: ../../keyboard.pm_.c:282
+#: ../../keyboard.pm_.c:261
msgid "Yugoslavian (latin)"
msgstr "Jugoslavenska (latinièna)"
-#: ../../keyboard.pm_.c:289
+#: ../../keyboard.pm_.c:268
msgid "Right Alt key"
msgstr "Desna Alt tipka"
-#: ../../keyboard.pm_.c:290
+#: ../../keyboard.pm_.c:269
msgid "Both Shift keys simultaneously"
msgstr "Obe Shift tipke istodobno"
-#: ../../keyboard.pm_.c:291
+#: ../../keyboard.pm_.c:270
msgid "Control and Shift keys simultaneously"
msgstr "Control i Shift tipke istodobno"
-#: ../../keyboard.pm_.c:292
+#: ../../keyboard.pm_.c:271
msgid "CapsLock key"
msgstr "CapsLock tipka"
-#: ../../keyboard.pm_.c:293
+#: ../../keyboard.pm_.c:272
msgid "Ctrl and Alt keys simultaneously"
msgstr "Ctrl i Alt tipke istodobno"
-#: ../../keyboard.pm_.c:294
+#: ../../keyboard.pm_.c:273
msgid "Alt and Shift keys simultaneously"
msgstr "Alt i Shift tipku istodobno"
-#: ../../keyboard.pm_.c:295
+#: ../../keyboard.pm_.c:274
msgid "\"Menu\" key"
msgstr "\"Menu\" tipka"
-#: ../../keyboard.pm_.c:296
+#: ../../keyboard.pm_.c:275
msgid "Left \"Windows\" key"
msgstr "Lijeva \"Windows\" tipka"
-#: ../../keyboard.pm_.c:297
+#: ../../keyboard.pm_.c:276
msgid "Right \"Windows\" key"
msgstr "Desna \"Windows\" tipka"
@@ -6802,11 +6871,11 @@ msgstr "Generièki PS2 mič s kotaèiæem"
msgid "GlidePoint"
msgstr "GlidePoint"
-#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:63
+#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:65
msgid "Kensington Thinking Mouse"
msgstr "Kensington Thinking Mouse"
-#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:59
+#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:61
msgid "Genius NetMouse"
msgstr "Genius NetMouse"
@@ -6814,115 +6883,125 @@ msgstr "Genius NetMouse"
msgid "Genius NetScroll"
msgstr "Genius NetScroll"
-#: ../../mouse.pm_.c:43 ../../mouse.pm_.c:68
+#: ../../mouse.pm_.c:39 ../../mouse.pm_.c:48
+#, fuzzy
+msgid "Microsoft Explorer"
+msgstr "Microsoft IntelliMouse"
+
+#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:70
msgid "1 button"
msgstr "1 gumb"
-#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:51
+#: ../../mouse.pm_.c:45 ../../mouse.pm_.c:53
msgid "Generic 2 Button Mouse"
msgstr "Generièki mič s 2 gumba"
-#: ../../mouse.pm_.c:46
+#: ../../mouse.pm_.c:47
msgid "Wheel"
msgstr "Kotaèiæ"
-#: ../../mouse.pm_.c:49
+#: ../../mouse.pm_.c:51
msgid "serial"
msgstr "serijski"
-#: ../../mouse.pm_.c:52
+#: ../../mouse.pm_.c:54
msgid "Generic 3 Button Mouse"
msgstr "Generièki mič s 3 gumba"
-#: ../../mouse.pm_.c:53
+#: ../../mouse.pm_.c:55
msgid "Microsoft IntelliMouse"
msgstr "Microsoft IntelliMouse"
-#: ../../mouse.pm_.c:54
+#: ../../mouse.pm_.c:56
msgid "Logitech MouseMan"
msgstr "Logitech MouseMan"
-#: ../../mouse.pm_.c:55
+#: ../../mouse.pm_.c:57
msgid "Mouse Systems"
msgstr "Mouse Systems"
-#: ../../mouse.pm_.c:57
+#: ../../mouse.pm_.c:59
msgid "Logitech CC Series"
msgstr "Logitech CC serije"
-#: ../../mouse.pm_.c:58
+#: ../../mouse.pm_.c:60
msgid "Logitech MouseMan+/FirstMouse+"
msgstr "Logitech MouseMan+/FirstMouse+"
-#: ../../mouse.pm_.c:60
+#: ../../mouse.pm_.c:62
msgid "MM Series"
msgstr "MM Serije"
-#: ../../mouse.pm_.c:61
+#: ../../mouse.pm_.c:63
msgid "MM HitTablet"
msgstr "MM HitTablet"
-#: ../../mouse.pm_.c:62
+#: ../../mouse.pm_.c:64
msgid "Logitech Mouse (serial, old C7 type)"
msgstr "Logitech Mič (serijski, stari C7 tip)"
-#: ../../mouse.pm_.c:66
+#: ../../mouse.pm_.c:68
msgid "busmouse"
msgstr "busmič"
-#: ../../mouse.pm_.c:69
+#: ../../mouse.pm_.c:71
msgid "2 buttons"
msgstr "2 gumba"
-#: ../../mouse.pm_.c:70
+#: ../../mouse.pm_.c:72
msgid "3 buttons"
msgstr "3 gumba"
-#: ../../mouse.pm_.c:73
+#: ../../mouse.pm_.c:75
msgid "none"
msgstr "niti jedan"
-#: ../../mouse.pm_.c:75
+#: ../../mouse.pm_.c:77
msgid "No mouse"
msgstr "Nema miča"
-#: ../../mouse.pm_.c:445
+#: ../../mouse.pm_.c:482
msgid "Please test the mouse"
msgstr "Molimo istestirajte miča."
-#: ../../mouse.pm_.c:446
+#: ../../mouse.pm_.c:483
msgid "To activate the mouse,"
msgstr "Za aktiviranje miča,"
-#: ../../mouse.pm_.c:447
+#: ../../mouse.pm_.c:484
msgid "MOVE YOUR WHEEL!"
msgstr "POMAKNITE VA© KOTAÈIÆ!"
-#: ../../my_gtk.pm_.c:156
+#: ../../my_gtk.pm_.c:64
+#, fuzzy
+msgid "-adobe-utopia-regular-r-*-*-25-*-*-*-p-*-iso8859-*,*-r-*"
+msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-2,*-r-*"
+
+#: ../../my_gtk.pm_.c:159
msgid "Finish"
msgstr "Zavrči"
-#: ../../my_gtk.pm_.c:156 ../../printerdrake.pm_.c:1992
+#: ../../my_gtk.pm_.c:159 ../../printerdrake.pm_.c:2126
msgid "Next ->"
msgstr "Slijedeæe ->"
-#: ../../my_gtk.pm_.c:284
+#: ../../my_gtk.pm_.c:287
msgid "Is this correct?"
msgstr "Da li je ovo ispravno?"
-#: ../../my_gtk.pm_.c:356 ../../services.pm_.c:222
+#: ../../my_gtk.pm_.c:359 ../../services.pm_.c:222
msgid "Info"
msgstr "Info"
-#: ../../my_gtk.pm_.c:377
+#: ../../my_gtk.pm_.c:380
msgid "Expand Tree"
msgstr "Pročiri stablo"
-#: ../../my_gtk.pm_.c:378
+#: ../../my_gtk.pm_.c:381
msgid "Collapse Tree"
msgstr "SaŸmi stablo"
-#: ../../my_gtk.pm_.c:379
+#: ../../my_gtk.pm_.c:382
msgid "Toggle between flat and group sorted"
msgstr "Prebaci između ravno i grupno sortiranog"
@@ -6960,6 +7039,75 @@ msgstr "koristi pppoe"
msgid "use pptp"
msgstr "koristi pptp"
+#: ../../network/drakfirewall.pm_.c:12
+#, fuzzy
+msgid "Web Server"
+msgstr "PosluŸitelj"
+
+#: ../../network/drakfirewall.pm_.c:17
+#, fuzzy
+msgid "Domain Name Server"
+msgstr "Ime domene"
+
+# ../../share/compssUsers
+#: ../../network/drakfirewall.pm_.c:32
+#, fuzzy
+msgid "Mail Server"
+msgstr "PosluŸitelj baza podataka"
+
+#: ../../network/drakfirewall.pm_.c:37
+#, fuzzy
+msgid "POP and IMAP Server"
+msgstr "LDAP PosluŸitelj"
+
+#: ../../network/drakfirewall.pm_.c:111
+#, fuzzy
+msgid "No network card"
+msgstr "ne mogu pronaæi niti jednu mreŸnu karticu"
+
+#: ../../network/drakfirewall.pm_.c:129
+#, fuzzy
+msgid ""
+"drakfirewall configurator\n"
+"\n"
+"This configures a personal firewall for this Mandrake Linux machine.\n"
+"For a powerful dedicated firewall solution, please look to the\n"
+"specialized MandrakeSecurity Firewall distribution."
+msgstr ""
+"tinyfirewall podečavanje\n"
+"\n"
+"Ovo podečava osobni vatrozid za ovo Mandrake Linux raèunalo.\n"
+"Za snaŸno primjenjena vatrozidna rječenja, molimo pogledajte\n"
+"specijaliziranu MandrakeSecurity Firewall distribuciju."
+
+#: ../../network/drakfirewall.pm_.c:147
+msgid "Which services would you like to allow the Internet to connect to?"
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:148
+msgid ""
+"You can enter miscellaneous ports. \n"
+"Valid examples are: 139/tcp 139/udp.\n"
+"Have a look at /etc/services for information."
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:154
+#, c-format
+msgid ""
+"Invalid port given: %s.\n"
+"The proper format is \"port/tcp\" or \"port/udp\", \n"
+"where port is between 1 and 65535."
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:162
+msgid "Everything (no firewall)"
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:164
+#, fuzzy
+msgid "Other ports"
+msgstr "Iskučaj portove"
+
#: ../../network/ethernet.pm_.c:37
msgid ""
"Which dhcp client do you want to use?\n"
@@ -6976,7 +7124,7 @@ msgstr ""
"Nije pronađen niti jedan mreŸni adapter na vačem sustavu.\n"
"Ne mogu postaviti ovu vrstu veze."
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:247
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:240
msgid "Choose the network interface"
msgstr "Odaberite mreŸni međusklop"
@@ -6990,7 +7138,7 @@ msgstr ""
msgid "no network card found"
msgstr "ne mogu pronaæi niti jednu mreŸnu karticu"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:366
msgid "Configuring network"
msgstr "Podečavam mreŸu"
@@ -7006,7 +7154,7 @@ msgstr ""
"Vače ime raèunala bi trebalo biti potpuno-kvalificirano ime raèunala,\n"
"kao čto je ``mybox.mylab.myco.com''."
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:370
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:371
msgid "Host name"
msgstr "Ime raèunala"
@@ -7311,13 +7459,13 @@ msgstr "Izaberite profil za konfiguriranje"
msgid "Use auto detection"
msgstr "Koristi auto detekciju"
-#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2930
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:3151
#: ../../standalone/drakconnect_.c:274 ../../standalone/drakconnect_.c:277
#: ../../standalone/drakfloppy_.c:145
msgid "Expert Mode"
msgstr "Ekspertni mod"
-#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:283
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:386
msgid "Detecting devices..."
msgstr "Otkrivanje uređaja..."
@@ -7487,11 +7635,11 @@ msgstr "Automatski IP"
msgid "Start at boot"
msgstr "Pokrenuto pri podizanju"
-#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:753
+#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:860
msgid "IP address should be in format 1.2.3.4"
msgstr "IP adresa treba biti oblika 1.2.3.4"
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:367
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -7503,43 +7651,55 @@ msgstr ""
"primjerice mojeracunalo.odjel.domena.hr.\n"
"Također unesite IP adresu gateway raèunala ako gateway postoji"
-#: ../../network/network.pm_.c:371
+#: ../../network/network.pm_.c:372
msgid "DNS server"
msgstr "DNS posluŸitelj"
-#: ../../network/network.pm_.c:372
+#: ../../network/network.pm_.c:373
#, c-format
msgid "Gateway (e.g. %s)"
msgstr "Gateway (npr. %s)"
-#: ../../network/network.pm_.c:374
+#: ../../network/network.pm_.c:375
msgid "Gateway device"
msgstr "Gateway uređaj"
-#: ../../network/network.pm_.c:386
+#: ../../network/network.pm_.c:387
msgid "Proxies configuration"
msgstr "Postava proxy-a"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:388
msgid "HTTP proxy"
msgstr "HTTP proxy"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:389
msgid "FTP proxy"
msgstr "FTP proxy"
-#: ../../network/network.pm_.c:389
+#: ../../network/network.pm_.c:390
msgid "Track network card id (useful for laptops)"
msgstr "Prati id mreŸne kartice (korisno za laptope)"
-#: ../../network/network.pm_.c:392
+#: ../../network/network.pm_.c:393
msgid "Proxy should be http://..."
msgstr "Proxy treba biti http://..."
-#: ../../network/network.pm_.c:393
+#: ../../network/network.pm_.c:394
msgid "Proxy should be ftp://..."
msgstr "Proxy treba biti ftp://..."
+#: ../../network/shorewall.pm_.c:24
+msgid "Firewalling configuration detected!"
+msgstr "Detektirana je vatrozidna konfiguracija!"
+
+#: ../../network/shorewall.pm_.c:25
+msgid ""
+"Warning! An existing firewalling configuration has been detected. You may "
+"need some manual fix after installation."
+msgstr ""
+"Upozorenje! Postojeæa vatrozidna konfiguracija je pronađena. Morati æete "
+"ruèno popraviti neke dijelove nakon instalacije."
+
#: ../../network/tools.pm_.c:41
msgid "Internet configuration"
msgstr "Postava Interneta"
@@ -7645,15 +7805,15 @@ msgstr "Korisnièka Lozinka"
msgid "United Kingdom"
msgstr ""
-#: ../../partition_table.pm_.c:606
+#: ../../partition_table.pm_.c:602
msgid "mount failed: "
msgstr "montiranje nije uspjelo: "
-#: ../../partition_table.pm_.c:670
+#: ../../partition_table.pm_.c:666
msgid "Extended partition not supported on this platform"
msgstr "Pročirene particije nisu podrŸane na ovoj platformi"
-#: ../../partition_table.pm_.c:688
+#: ../../partition_table.pm_.c:684
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
@@ -7663,21 +7823,21 @@ msgstr ""
"Jedino rječenje je da pomaknete vaču primarnu particiju kako bi rupa bila\n"
"odmah do pročirenih particija."
-#: ../../partition_table.pm_.c:778
+#: ../../partition_table.pm_.c:774
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "Vraæanje iz datoteke %s nije uspjelo: %s"
-#: ../../partition_table.pm_.c:780
+#: ../../partition_table.pm_.c:776
msgid "Bad backup file"
msgstr "Loča backup datoteka"
-#: ../../partition_table.pm_.c:802
+#: ../../partition_table.pm_.c:798
#, c-format
msgid "Error writing to file %s"
msgstr "Grečka prilikom pisanja u datoteku %s"
-#: ../../partition_table/raw.pm_.c:187
+#: ../../partition_table/raw.pm_.c:189
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
@@ -7723,150 +7883,155 @@ msgstr "LPD - Line Printer Daemon"
msgid "PDQ - Print, Don't Queue"
msgstr "PDQ - Ispiči, Bez Reda"
-#: ../../printer.pm_.c:35 ../../printer.pm_.c:854
+#: ../../printer.pm_.c:34 ../../printer.pm_.c:1125
msgid "CUPS"
msgstr "CUPS"
-#: ../../printer.pm_.c:36
+#: ../../printer.pm_.c:35
msgid "LPRng"
msgstr "LPRng"
-#: ../../printer.pm_.c:37
+#: ../../printer.pm_.c:36
msgid "LPD"
msgstr "LPD"
-#: ../../printer.pm_.c:38
+#: ../../printer.pm_.c:37
msgid "PDQ"
msgstr "PDQ"
-#: ../../printer.pm_.c:50
+#: ../../printer.pm_.c:49
msgid "Local printer"
msgstr "Lokalni pisaè"
-#: ../../printer.pm_.c:51
+#: ../../printer.pm_.c:50
msgid "Remote printer"
msgstr "Udaljeni pisaè"
-#: ../../printer.pm_.c:52
+#: ../../printer.pm_.c:51
msgid "Printer on remote CUPS server"
msgstr "Pisaè na udaljenom CUPS posluŸitelju"
-#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:776
+#: ../../printer.pm_.c:52 ../../printerdrake.pm_.c:883
msgid "Printer on remote lpd server"
msgstr "Pisaè na udaljenom lpd posluŸitelju"
-#: ../../printer.pm_.c:54
+#: ../../printer.pm_.c:53
msgid "Network printer (TCP/Socket)"
msgstr "MreŸni pisaè (TCP/socket)"
-#: ../../printer.pm_.c:55
+#: ../../printer.pm_.c:54
msgid "Printer on SMB/Windows 95/98/NT server"
msgstr "Pisaè na SMB/Windows 95/98/NT posluŸitelju"
-#: ../../printer.pm_.c:56
+#: ../../printer.pm_.c:55
msgid "Printer on NetWare server"
msgstr "Pisaè na NetWare posluŸitelju"
-#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:780
+#: ../../printer.pm_.c:56 ../../printerdrake.pm_.c:887
msgid "Enter a printer device URI"
msgstr "Unesite URI pisaèa"
-#: ../../printer.pm_.c:58
+#: ../../printer.pm_.c:57
msgid "Pipe job into a command"
msgstr "Proslijedi (pipe) na komandu"
-#: ../../printer.pm_.c:487 ../../printer.pm_.c:678 ../../printer.pm_.c:1000
-#: ../../printerdrake.pm_.c:2070 ../../printerdrake.pm_.c:3189
+#: ../../printer.pm_.c:324 ../../printer.pm_.c:366 ../../printer.pm_.c:533
+#, fuzzy
+msgid "Unknown Model"
+msgstr "Nepoznati model"
+
+#: ../../printer.pm_.c:735 ../../printer.pm_.c:926 ../../printer.pm_.c:1318
+#: ../../printerdrake.pm_.c:2260 ../../printerdrake.pm_.c:3414
msgid "Unknown model"
msgstr "Nepoznati model"
-#: ../../printer.pm_.c:515
+#: ../../printer.pm_.c:763
msgid "Local Printers"
msgstr "Lokalni pisaèi"
-#: ../../printer.pm_.c:517 ../../printer.pm_.c:855
+#: ../../printer.pm_.c:765 ../../printer.pm_.c:1126
msgid "Remote Printers"
msgstr "Udaljeni pisaèi"
-#: ../../printer.pm_.c:524 ../../printerdrake.pm_.c:301
+#: ../../printer.pm_.c:772 ../../printerdrake.pm_.c:404
#, c-format
msgid " on parallel port \\/*%s"
msgstr " na paralelnom portu \\/*%s"
-#: ../../printer.pm_.c:527 ../../printerdrake.pm_.c:303
+#: ../../printer.pm_.c:775 ../../printerdrake.pm_.c:406
#, c-format
msgid ", USB printer \\/*%s"
msgstr ", USB pisaè \\/*%s"
-#: ../../printer.pm_.c:532
+#: ../../printer.pm_.c:780
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ", multi-funkcionalan uređaj na paralelnom portu \\/*%s"
-#: ../../printer.pm_.c:535
+#: ../../printer.pm_.c:783
msgid ", multi-function device on USB"
msgstr ", multi-funkcionalan uređaj na USBu"
-#: ../../printer.pm_.c:537
+#: ../../printer.pm_.c:785
msgid ", multi-function device on HP JetDirect"
msgstr ", multi-funkcionalan uređaj na HP JetDirectu"
-#: ../../printer.pm_.c:539
+#: ../../printer.pm_.c:787
msgid ", multi-function device"
msgstr ", multi-funkcionalan uređaj"
-#: ../../printer.pm_.c:542
+#: ../../printer.pm_.c:790
#, c-format
msgid ", printing to %s"
msgstr ", ispis na %s"
-#: ../../printer.pm_.c:544
+#: ../../printer.pm_.c:792
#, fuzzy, c-format
msgid " on LPD server \"%s\", printer \"%s\""
msgstr "na LPD posluŸitelju \"%s\", pisaè \"%s\""
-#: ../../printer.pm_.c:546
+#: ../../printer.pm_.c:794
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ", TCP/IP host \"%s\", port %s"
-#: ../../printer.pm_.c:550
+#: ../../printer.pm_.c:798
#, fuzzy, c-format
msgid " on SMB/Windows server \"%s\", share \"%s\""
msgstr "na Windows posluŸitelju \"%s\", dijeli \"%s\""
-#: ../../printer.pm_.c:554
+#: ../../printer.pm_.c:802
#, fuzzy, c-format
msgid " on Novell server \"%s\", printer \"%s\""
msgstr "na Novell posluŸitelju \"%s\", pisaè \"%s\""
-#: ../../printer.pm_.c:556
+#: ../../printer.pm_.c:804
#, c-format
msgid ", using command %s"
msgstr ", koričtenjem komande %s"
-#: ../../printer.pm_.c:675 ../../printerdrake.pm_.c:1540
+#: ../../printer.pm_.c:923 ../../printerdrake.pm_.c:1656
msgid "Raw printer (No driver)"
msgstr "Raw printer (Bez upravljaèkog programa)"
-#: ../../printer.pm_.c:824
+#: ../../printer.pm_.c:1095
#, c-format
msgid "(on %s)"
msgstr "(na %s)"
-#: ../../printer.pm_.c:826
+#: ../../printer.pm_.c:1097
msgid "(on this machine)"
msgstr "(na ovom raèunalu)"
-#: ../../printer.pm_.c:851
+#: ../../printer.pm_.c:1122
#, c-format
msgid "On CUPS server \"%s\""
msgstr "Na CUPS posluŸitelju \"%s\""
-#: ../../printer.pm_.c:857 ../../printerdrake.pm_.c:2851
-#: ../../printerdrake.pm_.c:2862 ../../printerdrake.pm_.c:3078
-#: ../../printerdrake.pm_.c:3130 ../../printerdrake.pm_.c:3156
-#: ../../printerdrake.pm_.c:3326 ../../printerdrake.pm_.c:3328
+#: ../../printer.pm_.c:1128 ../../printerdrake.pm_.c:3071
+#: ../../printerdrake.pm_.c:3082 ../../printerdrake.pm_.c:3303
+#: ../../printerdrake.pm_.c:3355 ../../printerdrake.pm_.c:3381
+#: ../../printerdrake.pm_.c:3556 ../../printerdrake.pm_.c:3558
msgid " (Default)"
msgstr " (Uobièajeno)"
@@ -7892,11 +8057,11 @@ msgstr ""
msgid "Printer auto-detection (Local, TCP/Socket, and SMB printers)"
msgstr ""
-#: ../../printerdrake.pm_.c:84 ../../printerdrake.pm_.c:2914
+#: ../../printerdrake.pm_.c:84 ../../printerdrake.pm_.c:3135
msgid "CUPS configuration"
msgstr "CUPS postavke"
-#: ../../printerdrake.pm_.c:85 ../../printerdrake.pm_.c:2915
+#: ../../printerdrake.pm_.c:85 ../../printerdrake.pm_.c:3136
msgid "Specify CUPS server"
msgstr "Odredi CUPS posluŸitelj"
@@ -7938,7 +8103,7 @@ msgstr ""
msgid "The IP address should look like 192.168.1.20"
msgstr "IP adresa treba izgledati poput 192.168.1.20"
-#: ../../printerdrake.pm_.c:95 ../../printerdrake.pm_.c:987
+#: ../../printerdrake.pm_.c:95 ../../printerdrake.pm_.c:1094
msgid "The port number should be an integer!"
msgstr "Broj porta bi trebao biti cjelobrojni broj!"
@@ -7946,7 +8111,7 @@ msgstr "Broj porta bi trebao biti cjelobrojni broj!"
msgid "CUPS server IP"
msgstr "IP CUPS posluŸitelja"
-#: ../../printerdrake.pm_.c:103 ../../printerdrake.pm_.c:1007
+#: ../../printerdrake.pm_.c:103 ../../printerdrake.pm_.c:1114
msgid "Port"
msgstr "Port"
@@ -7954,12 +8119,130 @@ msgstr "Port"
msgid "Automatic CUPS configuration"
msgstr "Automatska CUPS konfiguracija"
-#: ../../printerdrake.pm_.c:183 ../../printerdrake.pm_.c:192
-#: ../../printerdrake.pm_.c:2897 ../../printerdrake.pm_.c:3017
+#: ../../printerdrake.pm_.c:177 ../../printerdrake.pm_.c:247
+#: ../../printerdrake.pm_.c:1529 ../../printerdrake.pm_.c:1533
+#: ../../printerdrake.pm_.c:1651 ../../printerdrake.pm_.c:2203
+#: ../../printerdrake.pm_.c:2356 ../../printerdrake.pm_.c:2415
+#: ../../printerdrake.pm_.c:2488 ../../printerdrake.pm_.c:2509
+#: ../../printerdrake.pm_.c:2699 ../../printerdrake.pm_.c:2740
+#: ../../printerdrake.pm_.c:2745 ../../printerdrake.pm_.c:2779
+#: ../../printerdrake.pm_.c:2784 ../../printerdrake.pm_.c:2821
+#: ../../printerdrake.pm_.c:2874 ../../printerdrake.pm_.c:2894
+#: ../../printerdrake.pm_.c:2908 ../../printerdrake.pm_.c:2942
+#: ../../printerdrake.pm_.c:2988 ../../printerdrake.pm_.c:3006
+#: ../../printerdrake.pm_.c:3095 ../../printerdrake.pm_.c:3169
+#: ../../printerdrake.pm_.c:3471 ../../printerdrake.pm_.c:3526
+#: ../../printerdrake.pm_.c:3579 ../../standalone/printerdrake_.c:57
+msgid "Printerdrake"
+msgstr "Printerdrake"
+
+#: ../../printerdrake.pm_.c:178
+#, fuzzy
+msgid "Checking your system..."
+msgstr "Ponovno pokreæem ispisni sutav ..."
+
+#: ../../printerdrake.pm_.c:186
+msgid ""
+"There are no printers found which are directly connected to your machine"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:198
+#, fuzzy
+msgid ""
+"The following printers\n"
+"\n"
+msgstr "Slijedeæi paketi æe biti uklonjeni"
+
+#: ../../printerdrake.pm_.c:199
+#, fuzzy
+msgid ""
+"The following printer\n"
+"\n"
+msgstr "Slijedeæi paketi æe biti uklonjeni"
+
+#: ../../printerdrake.pm_.c:201
+msgid ""
+"\n"
+"and one unknown printer are "
+msgstr ""
+
+#: ../../printerdrake.pm_.c:203
+#, c-format
+msgid ""
+"\n"
+"and %d unknown printers are "
+msgstr ""
+
+#: ../../printerdrake.pm_.c:207
+msgid ""
+"\n"
+"are "
+msgstr ""
+
+#: ../../printerdrake.pm_.c:208
+msgid ""
+"\n"
+"is "
+msgstr ""
+
+#: ../../printerdrake.pm_.c:210
+#, fuzzy
+msgid "directly connected to your system"
+msgstr "Kopiraj fontove na vač sustav"
+
+#: ../../printerdrake.pm_.c:213
+msgid ""
+"\n"
+"There is one unknown printer directly connected to your system"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:215
+#, c-format
+msgid ""
+"\n"
+"There are %d unknown printers directly connected to your system"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:221
+#, fuzzy
+msgid " (Make sure that all your printers are connected and turned on).\n"
+msgstr "Izaberite port na kojem se nalazi pisaè."
+
+#: ../../printerdrake.pm_.c:235
+msgid ""
+"Do you want to enable printing on the printers mentioned above or on "
+"printers in the local network?\n"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:236
+#, fuzzy
+msgid "Do you want to enable printing on printers in the local network?\n"
+msgstr ""
+"Da li Ÿelite postaviti ovaj pisaè (\"%s\")\n"
+"kao podrazumijevani pisaè?"
+
+#: ../../printerdrake.pm_.c:238
+#, fuzzy
+msgid "Do you want to enable printing on the printers mentioned above?\n"
+msgstr "Da li Ÿelite pokreniti vaču vezu kod svakog podizanja (boot) sustava ?"
+
+#: ../../printerdrake.pm_.c:239
+msgid "Are you sure that you want to set up printing on this machine?\n"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:240
+#, c-format
+msgid ""
+"NOTE: Depending on the printer model and the printing system up to %d MB of "
+"additional software will be installed."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:269 ../../printerdrake.pm_.c:278
+#: ../../printerdrake.pm_.c:3117 ../../printerdrake.pm_.c:3242
msgid "Add a new printer"
msgstr "Dodaj novi pisaè"
-#: ../../printerdrake.pm_.c:184
+#: ../../printerdrake.pm_.c:270
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7982,7 +8265,7 @@ msgstr ""
"pristupsvim dostupnim pokretaèkim programima za pisaèe, njihovim opcijama i "
"vrstamaveza prema pisaèima."
-#: ../../printerdrake.pm_.c:193
+#: ../../printerdrake.pm_.c:280
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7991,7 +8274,7 @@ msgid ""
"computer, connected directly to the network or to a remote Windows machine.\n"
"\n"
"If you have printer(s) connected to this machine, Please plug it/them in on "
-"this computer and turn it/them on so that they can be auto-detected. Also "
+"this computer and turn it/them on so that it/they can be auto-detected. Also "
"your network printer(s) and you Windows machines must be connected and "
"turned on.\n"
"\n"
@@ -8004,7 +8287,22 @@ msgid ""
"want to set up your printer(s) now."
msgstr ""
-#: ../../printerdrake.pm_.c:202
+#: ../../printerdrake.pm_.c:289 ../../printerdrake.pm_.c:306
+msgid ""
+"\n"
+"Welcome to the Printer Setup Wizard\n"
+"\n"
+"This wizard will help you to install your printer(s) connected to this "
+"computer.\n"
+"\n"
+"If you have printer(s) connected to this machine, Please plug it/them in on "
+"this computer and turn it/them on so that it/they can be auto-detected.\n"
+"\n"
+" Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
+"want to set up your printer(s) now."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:297
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -8013,7 +8311,7 @@ msgid ""
"computer or connected directly to the network.\n"
"\n"
"If you have printer(s) connected to this machine, Please plug it/them in on "
-"this computer and turn it/them on so that they can be auto-detected. Also "
+"this computer and turn it/them on so that it/they can be auto-detected. Also "
"your network printer(s) must be connected and turned on.\n"
"\n"
"Note that auto-detecting printers on the network takes longer than the auto-"
@@ -8024,25 +8322,25 @@ msgid ""
"want to set up your printer(s) now."
msgstr ""
-#: ../../printerdrake.pm_.c:213
+#: ../../printerdrake.pm_.c:315
#, fuzzy
msgid "Auto-detect printers connected to this machine"
msgstr "Automatski prepoznaj pisaè"
-#: ../../printerdrake.pm_.c:215
+#: ../../printerdrake.pm_.c:318
msgid "Auto-detect printers connected directly to the local network"
msgstr ""
-#: ../../printerdrake.pm_.c:218
+#: ../../printerdrake.pm_.c:321
msgid "Auto-detect printers connected to machines running Microsoft Windows"
msgstr ""
-#: ../../printerdrake.pm_.c:245 ../../printerdrake.pm_.c:459
-#: ../../printerdrake.pm_.c:484
+#: ../../printerdrake.pm_.c:348 ../../printerdrake.pm_.c:562
+#: ../../printerdrake.pm_.c:587
msgid "Local Printer"
msgstr "Lokalni pisaè"
-#: ../../printerdrake.pm_.c:246
+#: ../../printerdrake.pm_.c:349
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -8066,50 +8364,50 @@ msgstr ""
"ispisa,...),izaberite \"Pisaè\" u \"Hardver\" odjeljku Mandrake kontrolnog "
"centra."
-#: ../../printerdrake.pm_.c:283 ../../printerdrake.pm_.c:474
-#: ../../printerdrake.pm_.c:683 ../../printerdrake.pm_.c:923
+#: ../../printerdrake.pm_.c:386 ../../printerdrake.pm_.c:577
+#: ../../printerdrake.pm_.c:790 ../../printerdrake.pm_.c:1030
#, fuzzy
msgid "Printer auto-detection"
msgstr "Koristi auto detekciju"
-#: ../../printerdrake.pm_.c:305
+#: ../../printerdrake.pm_.c:408
#, fuzzy, c-format
msgid ", network printer \"%s\", port %s"
msgstr ", TCP/IP host \"%s\", port %s"
-#: ../../printerdrake.pm_.c:307
+#: ../../printerdrake.pm_.c:410
#, fuzzy, c-format
msgid ", printer \"%s\" on SMB/Windows server \"%s\""
msgstr "Pisaè na SMB/Windows 95/98/NT posluŸitelju"
-#: ../../printerdrake.pm_.c:313
+#: ../../printerdrake.pm_.c:416
#, c-format
msgid "Detected %s"
msgstr "Detektirano %s"
-#: ../../printerdrake.pm_.c:317 ../../printerdrake.pm_.c:348
-#: ../../printerdrake.pm_.c:367
+#: ../../printerdrake.pm_.c:420 ../../printerdrake.pm_.c:451
+#: ../../printerdrake.pm_.c:470
#, c-format
msgid "Printer on parallel port \\/*%s"
msgstr "Pisaè na paralelnom portu \\/*%s"
-#: ../../printerdrake.pm_.c:319 ../../printerdrake.pm_.c:350
-#: ../../printerdrake.pm_.c:372
+#: ../../printerdrake.pm_.c:422 ../../printerdrake.pm_.c:453
+#: ../../printerdrake.pm_.c:475
#, c-format
msgid "USB printer \\/*%s"
msgstr "USB pisaè \\/*%s"
-#: ../../printerdrake.pm_.c:321
+#: ../../printerdrake.pm_.c:424
#, fuzzy, c-format
msgid "Network printer \"%s\", port %s"
msgstr "MreŸni pisaè (TCP/socket)"
-#: ../../printerdrake.pm_.c:323
+#: ../../printerdrake.pm_.c:426
#, fuzzy, c-format
msgid "Printer \"%s\" on SMB/Windows server \"%s\""
msgstr "Pisaè na SMB/Windows 95/98/NT posluŸitelju"
-#: ../../printerdrake.pm_.c:460
+#: ../../printerdrake.pm_.c:563
msgid ""
"No local printer found! To manually install a printer enter a device name/"
"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
@@ -8121,23 +8419,23 @@ msgstr ""
"odgovara LPT1:, LPT2:, ..., prvi USB pisaè: /dev/usb/lp0, drugi USB pisaè:/"
"dev/usb/lp1, ...)."
-#: ../../printerdrake.pm_.c:464
+#: ../../printerdrake.pm_.c:567
msgid "You must enter a device or file name!"
msgstr "Morate unijeti ime uređaja ili datoteke!"
-#: ../../printerdrake.pm_.c:475
+#: ../../printerdrake.pm_.c:578
#, fuzzy
msgid "No printer found!"
msgstr ""
"Nije pronađen lokalni pisaè!\n"
"\n"
-#: ../../printerdrake.pm_.c:485
+#: ../../printerdrake.pm_.c:588
#, fuzzy
msgid "Available printers"
msgstr "Lokalni pisaè"
-#: ../../printerdrake.pm_.c:489
+#: ../../printerdrake.pm_.c:592
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
@@ -8145,7 +8443,7 @@ msgstr ""
"Ovaj pisaè je prepoznat, ako to nije onaj kojeg Ÿelite podečavati, "
"upičiteime uređaja/datoteke u liniju za unos."
-#: ../../printerdrake.pm_.c:490
+#: ../../printerdrake.pm_.c:593
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up or enter a device name/file name in the input line"
@@ -8153,7 +8451,7 @@ msgstr ""
"Ovo je popis svih prepoznatih pisaèa. Izaberite kojeg Ÿelite podesitiili "
"upičite ime uređaja/datoteke u liniju za unos"
-#: ../../printerdrake.pm_.c:492
+#: ../../printerdrake.pm_.c:595
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
@@ -8164,7 +8462,7 @@ msgstr ""
"vač pisaè nije ispravno prepoznat ili ako biste radije ruèno "
"namječtalipisaè, ukljuèite \"Ruèno namječtanje\"."
-#: ../../printerdrake.pm_.c:493
+#: ../../printerdrake.pm_.c:596
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
@@ -8176,7 +8474,7 @@ msgstr ""
"prepoznat ili ako biste radije ruèno namječtalipisaè, ukljuèite \"Ruèno "
"namječtanje\"."
-#: ../../printerdrake.pm_.c:495
+#: ../../printerdrake.pm_.c:598
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
@@ -8184,11 +8482,11 @@ msgstr ""
"Izaberite port preko kojeg je vač pisaè povezan ili upičite ime uređaja/"
"datotekeu liniju za unos."
-#: ../../printerdrake.pm_.c:496
+#: ../../printerdrake.pm_.c:599
msgid "Please choose the port where your printer is connected to."
msgstr "Izaberite port na kojem se nalazi pisaè."
-#: ../../printerdrake.pm_.c:498
+#: ../../printerdrake.pm_.c:601
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
@@ -8196,19 +8494,19 @@ msgstr ""
" (paralelni portovi:/dev/lp0, /dev/lp1, ...,odgovara LPT1:, LPT2:, ..., prvi "
"USB pisaè: /dev/usb/lp0, drugi USB pisaè: /dev/usb/lp1, ...)."
-#: ../../printerdrake.pm_.c:503
+#: ../../printerdrake.pm_.c:606
msgid "You must choose/enter a printer/device!"
msgstr "Morate izabrati/upisati pisaè/uređaj!"
-#: ../../printerdrake.pm_.c:523
+#: ../../printerdrake.pm_.c:626
msgid "Manual configuration"
msgstr "Ruèno namječtanje"
-#: ../../printerdrake.pm_.c:577
+#: ../../printerdrake.pm_.c:680
msgid "Remote lpd Printer Options"
msgstr "Postavke udaljenog lpd pisaèa"
-#: ../../printerdrake.pm_.c:578
+#: ../../printerdrake.pm_.c:681
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
"server and the printer name on that server."
@@ -8216,47 +8514,47 @@ msgstr ""
"Ukoliko Ÿelite koristiti udaljeni lpd pisaè, morate unijetiime ispisnog "
"posluŸitelja te ime pisaèa na tom posluŸitelju."
-#: ../../printerdrake.pm_.c:579
+#: ../../printerdrake.pm_.c:682
msgid "Remote host name"
msgstr "Udaljeno ime raèunala"
-#: ../../printerdrake.pm_.c:580
+#: ../../printerdrake.pm_.c:683
msgid "Remote printer name"
msgstr "Ime udaljenog pisaèa"
-#: ../../printerdrake.pm_.c:583
+#: ../../printerdrake.pm_.c:686
msgid "Remote host name missing!"
msgstr "Nedostaje ime raèunala udaljenog pisaèa!"
-#: ../../printerdrake.pm_.c:587
+#: ../../printerdrake.pm_.c:690
msgid "Remote printer name missing!"
msgstr "Nedostaje ime udaljenog pisaèa!"
-#: ../../printerdrake.pm_.c:609 ../../printerdrake.pm_.c:1119
+#: ../../printerdrake.pm_.c:712 ../../printerdrake.pm_.c:1225
#, fuzzy, c-format
msgid "Detected model: %s %s"
msgstr "Detektirano %s"
-#: ../../printerdrake.pm_.c:683 ../../printerdrake.pm_.c:923
+#: ../../printerdrake.pm_.c:790 ../../printerdrake.pm_.c:1030
#, fuzzy
msgid "Scanning network..."
msgstr "Pokreæem mreŸu ..."
-#: ../../printerdrake.pm_.c:692 ../../printerdrake.pm_.c:713
+#: ../../printerdrake.pm_.c:799 ../../printerdrake.pm_.c:820
#, fuzzy, c-format
msgid ", printer \"%s\" on server \"%s\""
msgstr "na Windows posluŸitelju \"%s\", dijeli \"%s\""
-#: ../../printerdrake.pm_.c:695 ../../printerdrake.pm_.c:716
+#: ../../printerdrake.pm_.c:802 ../../printerdrake.pm_.c:823
#, fuzzy, c-format
msgid "Printer \"%s\" on server \"%s\""
msgstr "Ispis na pisaèu \"%s\""
-#: ../../printerdrake.pm_.c:736
+#: ../../printerdrake.pm_.c:843
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "Postavke SMB (Windows 9x/NT) pisaèa"
-#: ../../printerdrake.pm_.c:737
+#: ../../printerdrake.pm_.c:844
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
"may be different from its TCP/IP hostname!) and possibly the IP address of "
@@ -8268,46 +8566,46 @@ msgstr ""
"posluŸitelja, kao iime dijeljenog resursa za pisaè kojem Ÿelite pristupiti i "
"bilo kojeprimjenjivo korisnièko ime, lozinku ili informacije o radnoj grupi."
-#: ../../printerdrake.pm_.c:738
+#: ../../printerdrake.pm_.c:845
msgid ""
" If the desired printer was auto-detected, simply choose it from the list "
"and then add user name, password, and/or workgroup if needed."
msgstr ""
-#: ../../printerdrake.pm_.c:739
+#: ../../printerdrake.pm_.c:846
msgid "SMB server host"
msgstr "SMB posluŸitelj"
-#: ../../printerdrake.pm_.c:740
+#: ../../printerdrake.pm_.c:847
msgid "SMB server IP"
msgstr "IP SMB posluŸitelja"
-#: ../../printerdrake.pm_.c:741
+#: ../../printerdrake.pm_.c:848
msgid "Share name"
msgstr "Ime sharea"
-#: ../../printerdrake.pm_.c:744
+#: ../../printerdrake.pm_.c:851
msgid "Workgroup"
msgstr "Radna grupa"
-#: ../../printerdrake.pm_.c:746
+#: ../../printerdrake.pm_.c:853
#, fuzzy
msgid "Auto-detected"
msgstr "Koristi auto detekciju"
-#: ../../printerdrake.pm_.c:757
+#: ../../printerdrake.pm_.c:864
msgid "Either the server name or the server's IP must be given!"
msgstr "Ime posluŸitelja ili IP posluŸitelja mora biti naveden!"
-#: ../../printerdrake.pm_.c:761
+#: ../../printerdrake.pm_.c:868
msgid "Samba share name missing!"
msgstr "Ime dijeljenog samba resursa nedostaje!"
-#: ../../printerdrake.pm_.c:767
+#: ../../printerdrake.pm_.c:874
msgid "SECURITY WARNING!"
msgstr "SIGURNOSNO UPOZORENJE!"
-#: ../../printerdrake.pm_.c:768
+#: ../../printerdrake.pm_.c:875
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -8350,7 +8648,7 @@ msgstr ""
"uPrinterdrakeu.\n"
"\n"
-#: ../../printerdrake.pm_.c:778
+#: ../../printerdrake.pm_.c:885
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -8363,7 +8661,7 @@ msgstr ""
"Printerdrakeu.\n"
"\n"
-#: ../../printerdrake.pm_.c:781
+#: ../../printerdrake.pm_.c:888
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
@@ -8375,11 +8673,11 @@ msgstr ""
"\n"
"Da li stvarno Ÿelite nastaviti namječtati ovaj pisaè kao čto èinite sada?"
-#: ../../printerdrake.pm_.c:853
+#: ../../printerdrake.pm_.c:960
msgid "NetWare Printer Options"
msgstr "Postavke NetWare pisaèa"
-#: ../../printerdrake.pm_.c:854
+#: ../../printerdrake.pm_.c:961
msgid ""
"To print on a NetWare printer, you need to provide the NetWare print server "
"name (Note! it may be different from its TCP/IP hostname!) as well as the "
@@ -8391,43 +8689,43 @@ msgstr ""
"ime ispisnog reda za pisaè kojimŸelite pristupiti, te neko primjenjivo "
"korisnièko ime i lozinku."
-#: ../../printerdrake.pm_.c:855
+#: ../../printerdrake.pm_.c:962
msgid "Printer Server"
msgstr "Ispisni posluŸitelj"
-#: ../../printerdrake.pm_.c:856
+#: ../../printerdrake.pm_.c:963
msgid "Print Queue Name"
msgstr "Ime reda pisaèa"
-#: ../../printerdrake.pm_.c:861
+#: ../../printerdrake.pm_.c:968
msgid "NCP server name missing!"
msgstr "Ime NCP posluŸitelja nedostaje!"
-#: ../../printerdrake.pm_.c:865
+#: ../../printerdrake.pm_.c:972
msgid "NCP queue name missing!"
msgstr "Nedostaje ime NCP reda!"
-#: ../../printerdrake.pm_.c:932 ../../printerdrake.pm_.c:952
+#: ../../printerdrake.pm_.c:1039 ../../printerdrake.pm_.c:1059
#, fuzzy, c-format
msgid ", host \"%s\", port %s"
msgstr ", TCP/IP host \"%s\", port %s"
-#: ../../printerdrake.pm_.c:935 ../../printerdrake.pm_.c:955
+#: ../../printerdrake.pm_.c:1042 ../../printerdrake.pm_.c:1062
#, fuzzy, c-format
msgid "Host \"%s\", port %s"
msgstr ", TCP/IP host \"%s\", port %s"
-#: ../../printerdrake.pm_.c:975
+#: ../../printerdrake.pm_.c:1082
msgid "TCP/Socket Printer Options"
msgstr "Opcije TCP/Socket pisaèa"
-#: ../../printerdrake.pm_.c:977
+#: ../../printerdrake.pm_.c:1084
msgid ""
"Choose one of the auto-detected printers from the list or enter the hostname "
"or IP and the optional port number (default is 9100) into the input fields."
msgstr ""
-#: ../../printerdrake.pm_.c:978
+#: ../../printerdrake.pm_.c:1085
#, fuzzy
msgid ""
"To print to a TCP or socket printer, you need to provide the host name or IP "
@@ -8440,21 +8738,21 @@ msgstr ""
"na drugim posluŸiteljima moŸe biti drugaèije.Pogledajte priruènik vačeg "
"hardvera."
-#: ../../printerdrake.pm_.c:983
+#: ../../printerdrake.pm_.c:1090
#, fuzzy
msgid "Printer host name or IP missing!"
msgstr "Nedostaje ime raèunala od pisaèa!"
-#: ../../printerdrake.pm_.c:1005
+#: ../../printerdrake.pm_.c:1112
#, fuzzy
msgid "Printer host name or IP"
msgstr "Ime raèunala od pisaèa"
-#: ../../printerdrake.pm_.c:1054 ../../printerdrake.pm_.c:1056
+#: ../../printerdrake.pm_.c:1160 ../../printerdrake.pm_.c:1162
msgid "Printer Device URI"
msgstr "URI Uređaja pisaèa"
-#: ../../printerdrake.pm_.c:1055
+#: ../../printerdrake.pm_.c:1161
msgid ""
"You can specify directly the URI to access the printer. The URI must fulfill "
"either the CUPS or the Foomatic specifications. Note that not all URI types "
@@ -8464,11 +8762,11 @@ msgstr ""
"ili Foomatic specifikacijama. Primjetite da nisu svi URI tipovi podrŸani od "
"svih spoolera."
-#: ../../printerdrake.pm_.c:1070
+#: ../../printerdrake.pm_.c:1176
msgid "A valid URI must be entered!"
msgstr "Ispravan URI mora biti unečen!"
-#: ../../printerdrake.pm_.c:1402
+#: ../../printerdrake.pm_.c:1515
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
"Location fields do not need to be filled in. They are comments for the users."
@@ -8476,27 +8774,27 @@ msgstr ""
"Svaki pisaè treba ime (na primjer \"pisaè\").Polja opisa i lokacije ne "
"moraju biti popunjena. To su komentari za korisnike."
-#: ../../printerdrake.pm_.c:1403
+#: ../../printerdrake.pm_.c:1516
msgid "Name of printer"
msgstr "Ime pisaèa"
-#: ../../printerdrake.pm_.c:1405
+#: ../../printerdrake.pm_.c:1518
msgid "Location"
msgstr "Lokacija"
-#: ../../printerdrake.pm_.c:1416 ../../printerdrake.pm_.c:1536
+#: ../../printerdrake.pm_.c:1530 ../../printerdrake.pm_.c:1652
msgid "Reading printer database..."
msgstr "Èitam bazu pisaèa ..."
-#: ../../printerdrake.pm_.c:1419
+#: ../../printerdrake.pm_.c:1534
msgid "Preparing printer database..."
msgstr "Pripremam bazu pisaèa ..."
-#: ../../printerdrake.pm_.c:1516
+#: ../../printerdrake.pm_.c:1631
msgid "Your printer model"
msgstr "Model vačeg pisaèa"
-#: ../../printerdrake.pm_.c:1517
+#: ../../printerdrake.pm_.c:1632
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -8521,24 +8819,24 @@ msgstr ""
"\n"
"%s"
-#: ../../printerdrake.pm_.c:1522 ../../printerdrake.pm_.c:1525
+#: ../../printerdrake.pm_.c:1637 ../../printerdrake.pm_.c:1640
msgid "The model is correct"
msgstr "Model je toèan"
-#: ../../printerdrake.pm_.c:1523 ../../printerdrake.pm_.c:1524
-#: ../../printerdrake.pm_.c:1527
+#: ../../printerdrake.pm_.c:1638 ../../printerdrake.pm_.c:1639
+#: ../../printerdrake.pm_.c:1642
msgid "Select model manually"
msgstr "Ruèno izaberi model"
-#: ../../printerdrake.pm_.c:1543
+#: ../../printerdrake.pm_.c:1659
msgid "Printer model selection"
msgstr "Izabir modela pisaèa"
-#: ../../printerdrake.pm_.c:1544
+#: ../../printerdrake.pm_.c:1660
msgid "Which printer model do you have?"
msgstr "Kakav model pisaèa imate?"
-#: ../../printerdrake.pm_.c:1545
+#: ../../printerdrake.pm_.c:1661
msgid ""
"\n"
"\n"
@@ -8552,7 +8850,7 @@ msgstr ""
"pisaèaispravno. Pronađite ispravan model upopisu kada pokazivaè pokazuje "
"nakrivi model ili na \"Raw pisaè\"."
-#: ../../printerdrake.pm_.c:1548
+#: ../../printerdrake.pm_.c:1664
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
@@ -8560,11 +8858,11 @@ msgstr ""
"Ako vač pisaè nije prikazan, izaberite kombatibilni (pogledajte priruènik "
"odpisaèa) ili neki slièni."
-#: ../../printerdrake.pm_.c:1624
+#: ../../printerdrake.pm_.c:1741
msgid "OKI winprinter configuration"
msgstr "OKI winprinter konfiguracija"
-#: ../../printerdrake.pm_.c:1625
+#: ../../printerdrake.pm_.c:1742
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -8580,11 +8878,11 @@ msgstr ""
"ispisaprobne stranice. Inaèe pisaè neæe raditi. Vaču postavu tipa veze "
"pokretaèkiprogram æe ignorirati."
-#: ../../printerdrake.pm_.c:1668 ../../printerdrake.pm_.c:1695
+#: ../../printerdrake.pm_.c:1785 ../../printerdrake.pm_.c:1812
msgid "Lexmark inkjet configuration"
msgstr "Lexmark inkjet konfiguracija"
-#: ../../printerdrake.pm_.c:1669
+#: ../../printerdrake.pm_.c:1786
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
"no printers on remote machines or print server boxes. Please connect your "
@@ -8596,17 +8894,17 @@ msgstr ""
"Spojitevač pisaè na lokalni port ili ga namjestite na raèunalu u kojeg je "
"ukljuèen."
-#: ../../printerdrake.pm_.c:1696
+#: ../../printerdrake.pm_.c:1813
+#, fuzzy
msgid ""
"To be able to print with your Lexmark inkjet and this configuration, you "
"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
-"com/). Go to the US site and click on the \"Drivers\" button. Then choose "
-"your model and afterwards \"Linux\" as operating system. The drivers come as "
-"RPM packages or shell scripts with interactive graphical installation. You "
-"do not need to do this configuration by the graphical frontends. Cancel "
-"directly after the license agreement. Then print printhead alignment pages "
-"with \"lexmarkmaintain\" and adjust the head alignment settings with this "
-"program."
+"com/). Click on the \"Drivers\" link. Then choose your model and afterwards "
+"\"Linux\" as operating system. The drivers come as RPM packages or shell "
+"scripts with interactive graphical installation. You do not need to do this "
+"configuration by the graphical frontends. Cancel directly after the license "
+"agreement. Then print printhead alignment pages with \"lexmarkmaintain\" and "
+"adjust the head alignment settings with this program."
msgstr ""
"Da bi mogli ispisivati sa svojim Lexmark inkjetom i ovom postavom, "
"trebateLexmarkove inkjet pokretaèke programe za pisaèe (http://www.lexmark."
@@ -8618,7 +8916,34 @@ msgstr ""
"stranice za namječtanje glavepisaèa sa \"lexmarkmaintain\" i podesite "
"postavke za namječtanje glave saovim programom."
-#: ../../printerdrake.pm_.c:1912
+#: ../../printerdrake.pm_.c:1816
+msgid "GDI Laser Printer using the Zenographics ZJ-Stream Format"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:1817
+msgid ""
+"Your printer belongs to the group of GDI laser printers (winprinters) sold "
+"by different manufacturers which uses the Zenographics ZJ-stream raster "
+"format for the data sent to the printer. The driver for these printers is "
+"still in a very early development stage and so it will perhaps not always "
+"work properly. Especially it is possible that the printer only works when "
+"you choose the A4 paper size.\n"
+"\n"
+"Some of these printers, as the HP LaserJet 1000, for which this driver was "
+"originally created, need their firmware to be uploaded to them after they "
+"are turned on. In the case of the HP LaserJet 1000 you have to search the "
+"printer's Windows driver CD or your Windows partition for the file "
+"\"sihp1000.img\" and upload the file to the printer with one of the "
+"following commands:\n"
+"\n"
+" lpr -o raw sihp1000.img\n"
+" cat sihp1000.img > /dev/usb/lp0\n"
+"\n"
+"The first command can be given by any normal user, the second must be given "
+"as root. After having done so you can print normally.\n"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:2040
msgid ""
"Printer default settings\n"
"\n"
@@ -8634,22 +8959,22 @@ msgstr ""
"(memorija,duplex jedinica, dodatne ladice) postavljeni ispravno. Primjetite "
"dasa vrlo velikom kakvoæom ispisa/rezolucijom ispis moŸe znatno usporiti."
-#: ../../printerdrake.pm_.c:1921
+#: ../../printerdrake.pm_.c:2049
#, c-format
msgid "Option %s must be an integer number!"
msgstr "Opcija %s mora biti cijeli broj!"
-#: ../../printerdrake.pm_.c:1925
+#: ../../printerdrake.pm_.c:2053
#, c-format
msgid "Option %s must be a number!"
msgstr "Opcija %s mora biti broj!"
-#: ../../printerdrake.pm_.c:1930
+#: ../../printerdrake.pm_.c:2058
#, c-format
msgid "Option %s out of range!"
msgstr "Opcija %s je izvan dosega!<"
-#: ../../printerdrake.pm_.c:1969
+#: ../../printerdrake.pm_.c:2097
#, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
@@ -8658,11 +8983,11 @@ msgstr ""
"Da li Ÿelite postaviti ovaj pisaè (\"%s\")\n"
"kao podrazumijevani pisaè?"
-#: ../../printerdrake.pm_.c:1986
+#: ../../printerdrake.pm_.c:2120
msgid "Test pages"
msgstr "Testne stranice"
-#: ../../printerdrake.pm_.c:1987
+#: ../../printerdrake.pm_.c:2121
msgid ""
"Please select the test pages you want to print.\n"
"Note: the photo test page can take a rather long time to get printed and on "
@@ -8674,39 +8999,39 @@ msgstr ""
"laserskimpisaèima sa malo memorije i uopæe se ne ispisati. U veæini "
"sluèajeva jedovoljno ispisati standardnu probnu stranicu."
-#: ../../printerdrake.pm_.c:1991
+#: ../../printerdrake.pm_.c:2125
msgid "No test pages"
msgstr "Bez testnih stranica"
-#: ../../printerdrake.pm_.c:1992
+#: ../../printerdrake.pm_.c:2126
msgid "Print"
msgstr "Ispiči"
-#: ../../printerdrake.pm_.c:1994
+#: ../../printerdrake.pm_.c:2183
msgid "Standard test page"
msgstr "Standardna testna stranica"
-#: ../../printerdrake.pm_.c:1997
+#: ../../printerdrake.pm_.c:2186
msgid "Alternative test page (Letter)"
msgstr "Alternativna testna stranica (Letter)"
-#: ../../printerdrake.pm_.c:2000
+#: ../../printerdrake.pm_.c:2189
msgid "Alternative test page (A4)"
msgstr "Alternativna testna stranica (A4)"
-#: ../../printerdrake.pm_.c:2002
+#: ../../printerdrake.pm_.c:2191
msgid "Photo test page"
msgstr "Foto testna stranica"
-#: ../../printerdrake.pm_.c:2006
+#: ../../printerdrake.pm_.c:2195
msgid "Do not print any test page"
msgstr "Ne ispiči nikakve probne stranice"
-#: ../../printerdrake.pm_.c:2014 ../../printerdrake.pm_.c:2166
+#: ../../printerdrake.pm_.c:2204 ../../printerdrake.pm_.c:2357
msgid "Printing test page(s)..."
msgstr "Ispisujem probnu stranicu(e)..."
-#: ../../printerdrake.pm_.c:2039
+#: ../../printerdrake.pm_.c:2229
#, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -8721,7 +9046,7 @@ msgstr ""
"%s\n"
"\n"
-#: ../../printerdrake.pm_.c:2043
+#: ../../printerdrake.pm_.c:2233
msgid ""
"Test page(s) have been sent to the printer.\n"
"It may take some time before the printer starts.\n"
@@ -8729,15 +9054,15 @@ msgstr ""
"Probna stranica(e) poslana je na pisaè.\n"
"Ponekad je potrebno par sekundi prije nego pisaè poène s ispisom.\n"
-#: ../../printerdrake.pm_.c:2050
+#: ../../printerdrake.pm_.c:2240
msgid "Did it work properly?"
msgstr "Da li je sve radilo ispravno?"
-#: ../../printerdrake.pm_.c:2072 ../../printerdrake.pm_.c:3191
+#: ../../printerdrake.pm_.c:2262 ../../printerdrake.pm_.c:3416
msgid "Raw printer"
msgstr "Raw pisaè"
-#: ../../printerdrake.pm_.c:2098
+#: ../../printerdrake.pm_.c:2288
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -8750,7 +9075,7 @@ msgstr ""
"\"kprinter <datoteka>\". Grafièki alati vam omoguæuju da lako izaberetepisaè "
"i podesite opcije.\n"
-#: ../../printerdrake.pm_.c:2100
+#: ../../printerdrake.pm_.c:2290
msgid ""
"These commands you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications, but here do not supply the file name "
@@ -8760,8 +9085,8 @@ msgstr ""
"ispis mnogih aplikacija, ali ovdje ne stavljate ime datoteke jerdatoteku za "
"ispis dobavlja sama aplikacija.\n"
-#: ../../printerdrake.pm_.c:2103 ../../printerdrake.pm_.c:2120
-#: ../../printerdrake.pm_.c:2130
+#: ../../printerdrake.pm_.c:2293 ../../printerdrake.pm_.c:2310
+#: ../../printerdrake.pm_.c:2320
#, c-format
msgid ""
"\n"
@@ -8773,7 +9098,7 @@ msgstr ""
"\"%s\" komanda dozvoljava da podesite opcije za pojedini posao ispisa.Samo "
"dodajte Ÿeljene postavke u komandnu liniju, npr. \"%s <datoteka>\"."
-#: ../../printerdrake.pm_.c:2106 ../../printerdrake.pm_.c:2146
+#: ../../printerdrake.pm_.c:2296 ../../printerdrake.pm_.c:2336
#, fuzzy, c-format
msgid ""
"To know about the options available for the current printer read either the "
@@ -8783,7 +9108,7 @@ msgstr ""
"Da bi saznali o dostupnim opcijama za trenutni pisaè proèitajte ili "
"popisprikazan dolje ili stisnite na \"Popis ispisnih opcija\".%s\n"
-#: ../../printerdrake.pm_.c:2110
+#: ../../printerdrake.pm_.c:2300
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
@@ -8791,7 +9116,7 @@ msgstr ""
"Ovo je popis dostupnih opcija za ispis za trenutni pisaè:\n"
"\n"
-#: ../../printerdrake.pm_.c:2115 ../../printerdrake.pm_.c:2125
+#: ../../printerdrake.pm_.c:2305 ../../printerdrake.pm_.c:2315
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
@@ -8800,8 +9125,8 @@ msgstr ""
"Da bi ipisali datoteku iz komandne linije (terminalski prozor) "
"koristitekomandu \"%s <datoteka>\".\n"
-#: ../../printerdrake.pm_.c:2117 ../../printerdrake.pm_.c:2127
-#: ../../printerdrake.pm_.c:2137
+#: ../../printerdrake.pm_.c:2307 ../../printerdrake.pm_.c:2317
+#: ../../printerdrake.pm_.c:2327
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
@@ -8811,7 +9136,7 @@ msgstr ""
"dijalogamnogih aplikacija. Ali tamo ne upisujete ime datoteke jer datoteku "
"za ispisdobavlja sama aplikacija.\n"
-#: ../../printerdrake.pm_.c:2122 ../../printerdrake.pm_.c:2132
+#: ../../printerdrake.pm_.c:2312 ../../printerdrake.pm_.c:2322
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
@@ -8819,7 +9144,7 @@ msgstr ""
"Da bi dobili popis opcija dostupnih za trenutni pisaè stisnite na "
"\"Popisispisnih opcija\"."
-#: ../../printerdrake.pm_.c:2135
+#: ../../printerdrake.pm_.c:2325
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
@@ -8828,7 +9153,7 @@ msgstr ""
"Da bi ispisali datoteku iz komandne linije (terminalskog prozora) "
"koristitenaredbu \"%s <datoteka>\" ili \"%s <datoteka>\".\n"
-#: ../../printerdrake.pm_.c:2139
+#: ../../printerdrake.pm_.c:2329
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -8843,7 +9168,7 @@ msgstr ""
"nazvanu \"ZAUSTAVI pisaè!\", koja zaustavlja sve poslove ispisa èim "
"jestisnete. Ovo je korisno kad se, npr., zaglavi papir.\n"
-#: ../../printerdrake.pm_.c:2143
+#: ../../printerdrake.pm_.c:2333
#, c-format
msgid ""
"\n"
@@ -8856,40 +9181,40 @@ msgstr ""
"određeniposao ispisa. Jednostavno dodajte Ÿeljene postavke u komandnu "
"liniju, npr.\"%s <datoteka>\".\n"
-#: ../../printerdrake.pm_.c:2153
+#: ../../printerdrake.pm_.c:2343
#, fuzzy, c-format
msgid "Printing/Scanning/Photo Cards on \"%s\""
msgstr "Ispis/skeniranje na \"%s\""
-#: ../../printerdrake.pm_.c:2154
+#: ../../printerdrake.pm_.c:2344
#, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "Ispis/skeniranje na \"%s\""
-#: ../../printerdrake.pm_.c:2156
+#: ../../printerdrake.pm_.c:2346
#, fuzzy, c-format
msgid "Printing/Photo Card Access on \"%s\""
msgstr "Ispis/skeniranje na \"%s\""
-#: ../../printerdrake.pm_.c:2157
+#: ../../printerdrake.pm_.c:2347
#, c-format
msgid "Printing on the printer \"%s\""
msgstr "Ispis na pisaèu \"%s\""
-#: ../../printerdrake.pm_.c:2160 ../../printerdrake.pm_.c:2163
-#: ../../printerdrake.pm_.c:2164 ../../printerdrake.pm_.c:2165
-#: ../../printerdrake.pm_.c:3175 ../../standalone/drakTermServ_.c:248
-#: ../../standalone/drakbackup_.c:1485 ../../standalone/drakbackup_.c:3530
-#: ../../standalone/drakbug_.c:129 ../../standalone/drakfont_.c:705
+#: ../../printerdrake.pm_.c:2350 ../../printerdrake.pm_.c:2353
+#: ../../printerdrake.pm_.c:2354 ../../printerdrake.pm_.c:2355
+#: ../../printerdrake.pm_.c:3400 ../../standalone/drakTermServ_.c:248
+#: ../../standalone/drakbackup_.c:1560 ../../standalone/drakbackup_.c:4208
+#: ../../standalone/drakbug_.c:130 ../../standalone/drakfont_.c:705
#: ../../standalone/drakfont_.c:1014
msgid "Close"
msgstr "Zatvori"
-#: ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2353
msgid "Print option list"
msgstr "Popis ispisnih opcija"
-#: ../../printerdrake.pm_.c:2182
+#: ../../printerdrake.pm_.c:2373
#, fuzzy, c-format
msgid ""
"Your multi-function device was configured automatically to be able to scan. "
@@ -8912,7 +9237,7 @@ msgstr ""
"\n"
"Ne koristite \"scannerdrake\" za ovaj uređaj!"
-#: ../../printerdrake.pm_.c:2202
+#: ../../printerdrake.pm_.c:2394
msgid ""
"Your printer was configured automatically to give you access to the photo "
"card drives from your PC. Now you can access your photo cards using the "
@@ -8925,17 +9250,17 @@ msgid ""
"of the file lists."
msgstr ""
-#: ../../printerdrake.pm_.c:2223 ../../printerdrake.pm_.c:2673
-#: ../../printerdrake.pm_.c:2945
+#: ../../printerdrake.pm_.c:2416 ../../printerdrake.pm_.c:2875
+#: ../../printerdrake.pm_.c:3170
msgid "Reading printer data..."
msgstr "Èitam podatke o pisaèu ..."
-#: ../../printerdrake.pm_.c:2243 ../../printerdrake.pm_.c:2271
-#: ../../printerdrake.pm_.c:2306
+#: ../../printerdrake.pm_.c:2436 ../../printerdrake.pm_.c:2464
+#: ../../printerdrake.pm_.c:2499
msgid "Transfer printer configuration"
msgstr "Prebaci postavke pisaèa"
-#: ../../printerdrake.pm_.c:2244
+#: ../../printerdrake.pm_.c:2437
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -8949,7 +9274,7 @@ msgstr ""
"vrsta veze i podrazumijevane opcije) su preuzeti, ali ne i poslovi.\n"
"Ne mogu se svi redovi prebaciti zbog:\n"
-#: ../../printerdrake.pm_.c:2247
+#: ../../printerdrake.pm_.c:2440
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
@@ -8957,18 +9282,18 @@ msgstr ""
"CUPS ne podrŸava pisaèe na Novell posluŸiteljima ili pisaèe koji "
"čaljupodatke u naredbu slobodne forme.\n"
-#: ../../printerdrake.pm_.c:2249
+#: ../../printerdrake.pm_.c:2442
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
msgstr ""
"PDQ podrŸava samo lokalne pisaèe, udaljene LPD pisaèe i socket/TCPpisaèe.\n"
-#: ../../printerdrake.pm_.c:2251
+#: ../../printerdrake.pm_.c:2444
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr "LPD i LPRng ne podrŸavaju IPP pisaèe.\n"
-#: ../../printerdrake.pm_.c:2253
+#: ../../printerdrake.pm_.c:2446
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
@@ -8976,7 +9301,7 @@ msgstr ""
"Uz to, ovaj program ne moŸe stvarati redove ili \"foomatic-configure\" sene "
"moŸe prebaciti."
-#: ../../printerdrake.pm_.c:2254
+#: ../../printerdrake.pm_.c:2447
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
@@ -8986,7 +9311,7 @@ msgstr ""
"Također, pisaèi podečeni sa PPD datotekama od svog proizvođaèa ili sanative "
"CUPS pokretaèkim programima se ne mogu prebaciti."
-#: ../../printerdrake.pm_.c:2255
+#: ../../printerdrake.pm_.c:2448
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
@@ -8995,15 +9320,15 @@ msgstr ""
"\n"
"Oznaèite pisaèe koje Ÿelite prebaciti i stisnite \"Prebaci\"."
-#: ../../printerdrake.pm_.c:2258
+#: ../../printerdrake.pm_.c:2451
msgid "Do not transfer printers"
msgstr "Ne prebacuj pisaèe"
-#: ../../printerdrake.pm_.c:2259 ../../printerdrake.pm_.c:2276
+#: ../../printerdrake.pm_.c:2452 ../../printerdrake.pm_.c:2469
msgid "Transfer"
msgstr "Prebaci"
-#: ../../printerdrake.pm_.c:2272
+#: ../../printerdrake.pm_.c:2465
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -9014,11 +9339,11 @@ msgstr ""
"Stisnite \"Prebaci\" da prepičete preko njega.\n"
"MoŸete i upisati novo ime ili preskoèiti ovaj pisaè."
-#: ../../printerdrake.pm_.c:2280
+#: ../../printerdrake.pm_.c:2473
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr "Ime pisaèa moŸe sadrŸavati samo slova, brojeve i podvlaku"
-#: ../../printerdrake.pm_.c:2285
+#: ../../printerdrake.pm_.c:2478
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
@@ -9027,16 +9352,16 @@ msgstr ""
"Pisaè \"%s\" veæ postoji,\n"
"da li zaista Ÿelite prepisati njegovu konfiguraciju?"
-#: ../../printerdrake.pm_.c:2293
+#: ../../printerdrake.pm_.c:2486
msgid "New printer name"
msgstr "Novo ime pisaèa"
-#: ../../printerdrake.pm_.c:2296
+#: ../../printerdrake.pm_.c:2489
#, c-format
msgid "Transferring %s..."
msgstr "Prebacujem %s ..."
-#: ../../printerdrake.pm_.c:2307
+#: ../../printerdrake.pm_.c:2500
#, c-format
msgid ""
"You have transferred your former default printer (\"%s\"), Should it be also "
@@ -9045,29 +9370,29 @@ msgstr ""
"Prebacili ste vač bivči podrazumijevani pisaè(\"%s\"), da li bi trebao "
"bitipodrazumijevani pisaè i u novom sustavu %s?"
-#: ../../printerdrake.pm_.c:2316
+#: ../../printerdrake.pm_.c:2510
msgid "Refreshing printer data..."
msgstr "OsvjeŸavam padatke o pisaèu ..."
-#: ../../printerdrake.pm_.c:2324 ../../printerdrake.pm_.c:2395
-#: ../../printerdrake.pm_.c:2407
+#: ../../printerdrake.pm_.c:2518 ../../printerdrake.pm_.c:2590
+#: ../../printerdrake.pm_.c:2602
msgid "Configuration of a remote printer"
msgstr "Postavke udaljenog pisaèa"
-#: ../../printerdrake.pm_.c:2325
+#: ../../printerdrake.pm_.c:2519
msgid "Starting network..."
msgstr "Pokreæem mreŸu ..."
-#: ../../printerdrake.pm_.c:2359 ../../printerdrake.pm_.c:2363
-#: ../../printerdrake.pm_.c:2365
+#: ../../printerdrake.pm_.c:2554 ../../printerdrake.pm_.c:2558
+#: ../../printerdrake.pm_.c:2560
msgid "Configure the network now"
msgstr "Podesi mreŸu"
-#: ../../printerdrake.pm_.c:2360
+#: ../../printerdrake.pm_.c:2555
msgid "Network functionality not configured"
msgstr "MreŸa nije podečena"
-#: ../../printerdrake.pm_.c:2361
+#: ../../printerdrake.pm_.c:2556
msgid ""
"You are going to configure a remote printer. This needs working network "
"access, but your network is not configured yet. If you go on without network "
@@ -9078,11 +9403,11 @@ msgstr ""
"joč nije podečena. Ako nastavite bez ispravne mreŸe, neæete moæikoristiti "
"pisaè kojeg sada podečavate. Kako Ÿelite nastaviti?"
-#: ../../printerdrake.pm_.c:2364
+#: ../../printerdrake.pm_.c:2559
msgid "Go on without configuring the network"
msgstr "Nastavi bez podečavanja mreŸe"
-#: ../../printerdrake.pm_.c:2397
+#: ../../printerdrake.pm_.c:2592
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -9097,7 +9422,7 @@ msgstr ""
"Internet\"/\"Veza\", i poslije podesite pisaè, također iz Mandrake "
"kontrolnog centra,odjeljak \"Hardver\"/\"Pisaè\""
-#: ../../printerdrake.pm_.c:2398
+#: ../../printerdrake.pm_.c:2593
msgid ""
"The network access was not running and could not be started. Please check "
"your configuration and your hardware. Then try to configure your remote "
@@ -9106,24 +9431,24 @@ msgstr ""
"MreŸa nije pokrenuta. Provjerite postavke i hardver. Zatim probajte "
"ponovnopodesiti vač udaljeni pisaè."
-#: ../../printerdrake.pm_.c:2408
+#: ../../printerdrake.pm_.c:2603
msgid "Restarting printing system..."
msgstr "Ponovno pokreæem ispisni sutav ..."
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2641
msgid "high"
msgstr "Visoka"
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2641
msgid "paranoid"
msgstr "Paranoidna"
-#: ../../printerdrake.pm_.c:2447
+#: ../../printerdrake.pm_.c:2642
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr "Instaliram ispisni sustav s %s sigurnosnom razinom."
-#: ../../printerdrake.pm_.c:2448
+#: ../../printerdrake.pm_.c:2643
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -9146,11 +9471,11 @@ msgstr ""
"\n"
"Da li stvarno Ÿelite namjestiti ispisivanje na ovom raèunalu?"
-#: ../../printerdrake.pm_.c:2480
+#: ../../printerdrake.pm_.c:2675
msgid "Starting the printing system at boot time"
msgstr "Pokretanje ispisnog sustava prilikom podizanja sustava"
-#: ../../printerdrake.pm_.c:2481
+#: ../../printerdrake.pm_.c:2676
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -9170,75 +9495,72 @@ msgstr ""
"\n"
"źelite li ponovno ukljuèiti automatsko podizanje ispisnog sustava?"
-#: ../../printerdrake.pm_.c:2504 ../../printerdrake.pm_.c:2544
-#: ../../printerdrake.pm_.c:2581 ../../printerdrake.pm_.c:2621
-#: ../../printerdrake.pm_.c:2733
+#: ../../printerdrake.pm_.c:2700 ../../printerdrake.pm_.c:2741
+#: ../../printerdrake.pm_.c:2780 ../../printerdrake.pm_.c:2822
+#: ../../printerdrake.pm_.c:2943
msgid "Checking installed software..."
msgstr "Provjeravam instalirani softver..."
-#: ../../printerdrake.pm_.c:2548
+#: ../../printerdrake.pm_.c:2746
msgid "Removing LPRng..."
msgstr "Uklanjam LPRng..."
-#: ../../printerdrake.pm_.c:2585
+#: ../../printerdrake.pm_.c:2785
msgid "Removing LPD..."
msgstr "Uklanjam LPD..."
-#: ../../printerdrake.pm_.c:2657
+#: ../../printerdrake.pm_.c:2858
msgid "Select Printer Spooler"
msgstr "Odaberite spooler pisaèa"
-#: ../../printerdrake.pm_.c:2658
+#: ../../printerdrake.pm_.c:2859
msgid "Which printing system (spooler) do you want to use?"
msgstr "Koji ispisni sustav (spooler) Ÿelite koristiti?"
-#: ../../printerdrake.pm_.c:2691
+#: ../../printerdrake.pm_.c:2895
#, fuzzy, c-format
msgid "Configuring printer \"%s\"..."
msgstr "Podečavam pisaè \"%s\" ..."
-#: ../../printerdrake.pm_.c:2704
+#: ../../printerdrake.pm_.c:2909
msgid "Installing Foomatic..."
msgstr "Instaliram Foomatic ..."
-#: ../../printerdrake.pm_.c:2769 ../../printerdrake.pm_.c:2808
-#: ../../printerdrake.pm_.c:3192 ../../printerdrake.pm_.c:3262
+#: ../../printerdrake.pm_.c:2979 ../../printerdrake.pm_.c:3020
+#: ../../printerdrake.pm_.c:3417 ../../printerdrake.pm_.c:3490
msgid "Printer options"
msgstr "Postavke pisaèa"
-#: ../../printerdrake.pm_.c:2778
-msgid "Preparing PrinterDrake..."
+#: ../../printerdrake.pm_.c:2989
+#, fuzzy
+msgid "Preparing Printerdrake..."
msgstr "Pripremam PrinterDrake ..."
-#: ../../printerdrake.pm_.c:2795 ../../printerdrake.pm_.c:3349
+#: ../../printerdrake.pm_.c:3007 ../../printerdrake.pm_.c:3580
msgid "Configuring applications..."
msgstr "Podečavam aplikacije..."
-#: ../../printerdrake.pm_.c:2815
+#: ../../printerdrake.pm_.c:3027
msgid "Would you like to configure printing?"
msgstr "Da li Ÿelite podesiti ispisivanje?"
-#: ../../printerdrake.pm_.c:2827
+#: ../../printerdrake.pm_.c:3039
msgid "Printing system: "
msgstr "Ispisni sustav:"
-#: ../../printerdrake.pm_.c:2875
-msgid "Printerdrake"
-msgstr "Printerdrake"
-
-#: ../../printerdrake.pm_.c:2879
+#: ../../printerdrake.pm_.c:3099
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; to view information about it; "
"or to make a printer on a remote CUPS server available for Star Office/"
-"OpenOffice.org."
+"OpenOffice.org/GIMP."
msgstr ""
"Navedeni pisaèi su podečeni. Dvostruko kliknite na pisaè da bi mu "
"promijenilipostavke; da bi ga odredili za podrazumijevani pisaè; da bi "
"pogledali informacijeo njemu; ili da bi pisaè sa udaljenog CUPS posluŸitelja "
-"uèinili dostupnimStarOfficeu/OpenOffice.orgu."
+"uèinili dostupnimStarOfficeu/OpenOffice.org/GIMPu."
-#: ../../printerdrake.pm_.c:2880
+#: ../../printerdrake.pm_.c:3100
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; or to view information about "
@@ -9248,28 +9570,28 @@ msgstr ""
"promijenilipostavke; da ga odredite za podrazumijevani pisaè; ili da bi "
"pogledaliinformacije o njemu."
-#: ../../printerdrake.pm_.c:2906
+#: ../../printerdrake.pm_.c:3127
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr "OsvjeŸi popis pisaèa (za prikaz svih dostupnih udaljenih CUPS pisaèa)"
-#: ../../printerdrake.pm_.c:2924
+#: ../../printerdrake.pm_.c:3145
msgid "Change the printing system"
msgstr "Promijeni ispisni sustav"
-#: ../../printerdrake.pm_.c:2929 ../../standalone/drakconnect_.c:277
+#: ../../printerdrake.pm_.c:3150 ../../standalone/drakconnect_.c:277
msgid "Normal Mode"
msgstr "Normalni mod"
-#: ../../printerdrake.pm_.c:3085 ../../printerdrake.pm_.c:3135
-#: ../../printerdrake.pm_.c:3343
+#: ../../printerdrake.pm_.c:3310 ../../printerdrake.pm_.c:3360
+#: ../../printerdrake.pm_.c:3573
msgid "Do you want to configure another printer?"
msgstr "źelite li podesiti neki drugi pisaè?"
-#: ../../printerdrake.pm_.c:3170
+#: ../../printerdrake.pm_.c:3395
msgid "Modify printer configuration"
msgstr "Promijeni postavke pisaèa"
-#: ../../printerdrake.pm_.c:3172
+#: ../../printerdrake.pm_.c:3397
#, c-format
msgid ""
"Printer %s\n"
@@ -9278,100 +9600,102 @@ msgstr ""
"Pisaè %s\n"
"©to Ÿelite promijeniti na ovom pisaèu?"
-#: ../../printerdrake.pm_.c:3176
+#: ../../printerdrake.pm_.c:3401
msgid "Do it!"
msgstr "Napravi!"
-#: ../../printerdrake.pm_.c:3181 ../../printerdrake.pm_.c:3236
+#: ../../printerdrake.pm_.c:3406 ../../printerdrake.pm_.c:3461
msgid "Printer connection type"
msgstr "Vrsta veze s pisaèem"
-#: ../../printerdrake.pm_.c:3182 ../../printerdrake.pm_.c:3240
+#: ../../printerdrake.pm_.c:3407 ../../printerdrake.pm_.c:3465
msgid "Printer name, description, location"
msgstr "Ime pisaèa, opis, lokacija"
-#: ../../printerdrake.pm_.c:3184 ../../printerdrake.pm_.c:3255
+#: ../../printerdrake.pm_.c:3409 ../../printerdrake.pm_.c:3483
msgid "Printer manufacturer, model, driver"
msgstr "Proizvođaè pisaèa, model, pokretaèki program"
-#: ../../printerdrake.pm_.c:3185 ../../printerdrake.pm_.c:3256
+#: ../../printerdrake.pm_.c:3410 ../../printerdrake.pm_.c:3484
msgid "Printer manufacturer, model"
msgstr "Proizvođaè pisaèa, model"
-#: ../../printerdrake.pm_.c:3194 ../../printerdrake.pm_.c:3266
+#: ../../printerdrake.pm_.c:3419 ../../printerdrake.pm_.c:3494
msgid "Set this printer as the default"
msgstr "Odredi ovaj pisaè za podrazumijevani"
-#: ../../printerdrake.pm_.c:3196 ../../printerdrake.pm_.c:3271
-msgid "Add this printer to Star Office/OpenOffice.org"
-msgstr "Dodaj ovaj pisaè StarOfficeu/OpenOffice.orgu"
+#: ../../printerdrake.pm_.c:3421 ../../printerdrake.pm_.c:3499
+msgid "Add this printer to Star Office/OpenOffice.org/GIMP"
+msgstr "Dodaj ovaj pisaè StarOfficeu/OpenOffice.org/GIMPu"
-#: ../../printerdrake.pm_.c:3197 ../../printerdrake.pm_.c:3280
-msgid "Remove this printer from Star Office/OpenOffice.org"
-msgstr "Ukloni ovaj pisaè iz StarOfficea/OpenOffice.orga"
+#: ../../printerdrake.pm_.c:3422 ../../printerdrake.pm_.c:3508
+msgid "Remove this printer from Star Office/OpenOffice.org/GIMP"
+msgstr "Ukloni ovaj pisaè iz StarOfficea/OpenOffice.org/GIMPa"
-#: ../../printerdrake.pm_.c:3198 ../../printerdrake.pm_.c:3289
+#: ../../printerdrake.pm_.c:3423 ../../printerdrake.pm_.c:3517
msgid "Print test pages"
msgstr "Ispiči probne stranice"
-#: ../../printerdrake.pm_.c:3199 ../../printerdrake.pm_.c:3291
+#: ../../printerdrake.pm_.c:3424 ../../printerdrake.pm_.c:3519
msgid "Know how to use this printer"
msgstr "Saznajte kako koristiti ovaj pisaè"
-#: ../../printerdrake.pm_.c:3201 ../../printerdrake.pm_.c:3293
+#: ../../printerdrake.pm_.c:3426 ../../printerdrake.pm_.c:3521
msgid "Remove printer"
msgstr "Ukloni pisaè"
-#: ../../printerdrake.pm_.c:3245
+#: ../../printerdrake.pm_.c:3472
#, fuzzy, c-format
msgid "Removing old printer \"%s\"..."
msgstr "Uklanjam stari pisaè \"%s\" ..."
-#: ../../printerdrake.pm_.c:3269
+#: ../../printerdrake.pm_.c:3497
msgid "Default printer"
msgstr "Podrazumijevani pisaè"
-#: ../../printerdrake.pm_.c:3270
+#: ../../printerdrake.pm_.c:3498
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr "Pisaè \"%s\" je sada određen za podrazumijevani."
-#: ../../printerdrake.pm_.c:3274 ../../printerdrake.pm_.c:3277
-msgid "Adding printer to Star Office/OpenOffice.org"
-msgstr "Dodavanje pisaèa StarOfficeu/OpenOffice.orgu"
+#: ../../printerdrake.pm_.c:3502 ../../printerdrake.pm_.c:3505
+msgid "Adding printer to Star Office/OpenOffice.org/GIMP"
+msgstr "Dodavanje pisaèa StarOfficeu/OpenOffice.org/GIMPu"
-#: ../../printerdrake.pm_.c:3275
+#: ../../printerdrake.pm_.c:3503
#, c-format
msgid ""
-"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
-msgstr "Pisaè \"%s\" je uspječno dodan StarOfficeu/OpenOffice.orgu."
+"The printer \"%s\" was successfully added to Star Office/OpenOffice.org/GIMP."
+msgstr "Pisaè \"%s\" je uspječno dodan StarOfficeu/OpenOffice.org/GIMPu."
-#: ../../printerdrake.pm_.c:3278
+#: ../../printerdrake.pm_.c:3506
#, c-format
-msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
-msgstr "Nisam uspio dodati \"%s\" StarOfficeu/OpenOffice.orgu."
+msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org/GIMP."
+msgstr "Nisam uspio dodati \"%s\" StarOfficeu/OpenOffice.org/GIMPu."
-#: ../../printerdrake.pm_.c:3283 ../../printerdrake.pm_.c:3286
-msgid "Removing printer from Star Office/OpenOffice.org"
-msgstr "Uklanjam pisaè iz StarOfficea/OpenOffice.orga"
+#: ../../printerdrake.pm_.c:3511 ../../printerdrake.pm_.c:3514
+msgid "Removing printer from Star Office/OpenOffice.org/GIMP"
+msgstr "Uklanjam pisaè iz StarOfficea/OpenOffice.org/GIMPa"
-#: ../../printerdrake.pm_.c:3284
+#: ../../printerdrake.pm_.c:3512
#, c-format
msgid ""
-"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
-msgstr "Pisaè \"%s\" je uspječno uklonjen iz StarOfficea/OpenOffice.orga."
+"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org/"
+"GIMP."
+msgstr "Pisaè \"%s\" je uspječno uklonjen iz StarOfficea/OpenOffice.org/GIMPa."
-#: ../../printerdrake.pm_.c:3287
+#: ../../printerdrake.pm_.c:3515
#, c-format
-msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
-msgstr "Nisam uspio ukloniti pisaè \"%s\" iz StarOfficea/OpenOffice.orga."
+msgid ""
+"Failed to remove the printer \"%s\" from Star Office/OpenOffice.org/GIMP."
+msgstr "Nisam uspio ukloniti pisaè \"%s\" iz StarOfficea/OpenOffice.org/GIMPa."
-#: ../../printerdrake.pm_.c:3295
+#: ../../printerdrake.pm_.c:3523
#, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr "Da li stvarno Ÿelite ukloniti pisaè \"%s\"?"
-#: ../../printerdrake.pm_.c:3297
+#: ../../printerdrake.pm_.c:3527
#, fuzzy, c-format
msgid "Removing printer \"%s\"..."
msgstr "Uklanjam pisaè \"%s\" ..."
@@ -9785,7 +10109,7 @@ msgstr "Internet"
msgid "File sharing"
msgstr "Dijeljenje datoteka"
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1669
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1744
msgid "System"
msgstr "Sustav"
@@ -9839,15 +10163,15 @@ msgstr "Pokretanje"
msgid "Stop"
msgstr "Zaustavljanje"
-#: ../../share/advertising/00-thanks.pl_.c:9
-msgid "Thank you for choosing Mandrake Linux 8.2"
-msgstr "Hvala vam čto ste izabrali Mandrake Linux 8.2"
+#: ../../share/advertising/01-thanks.pl_.c:9
+msgid "Thank you for choosing Mandrake Linux 9.0"
+msgstr "Hvala vam čto ste izabrali Mandrake Linux 9.0"
-#: ../../share/advertising/00-thanks.pl_.c:10
+#: ../../share/advertising/01-thanks.pl_.c:10
msgid "Welcome to the Open Source world"
msgstr "Dobrodočli u Open Source svijet"
-#: ../../share/advertising/00-thanks.pl_.c:11
+#: ../../share/advertising/01-thanks.pl_.c:11
msgid ""
"The success of MandrakeSoft is based upon the principle of Free Software. "
"Your new operating system is the result of collaborative work on the part of "
@@ -9856,205 +10180,237 @@ msgstr ""
"Uspjeh MandrakeSofta se temelji na principima slobodnog softvera. Vačnovi "
"operativni sustav je rezultat udruŸenog rada svjetske Linux zajednice"
-#: ../../share/advertising/01-gnu.pl_.c:9
-msgid "Join the Free Software world"
+#: ../../share/advertising/02-community.pl_.c:9
+msgid "Get involved in the Free Software world"
msgstr "PridruŸite se svijetu slobodnog softvera"
-#: ../../share/advertising/01-gnu.pl_.c:10
+#: ../../share/advertising/02-community.pl_.c:10
+msgid "Want to know more about the Open Source community?"
+msgstr ""
+
+#: ../../share/advertising/02-community.pl_.c:11
msgid ""
-"Get to know the Open Source community and become a member. Learn, teach, and "
-"help others by joining the many discussion forums that you will find in our "
-"\"Community\" webpages"
+"To share your own knowledge and help build Linux tools, join the discussions "
+"forum you'll find on our \"Community\" webpages"
msgstr ""
"Upoznajte Open Source zajednicu i postanite èlanom. Uèite, poduèavajte "
"ipomaŸite drugima uèestvovanjem u diskusijama u mnogim forumima koje "
"æetepronaæi na \"Community\" web stranicama"
-#: ../../share/advertising/02-internet.pl_.c:9
-msgid "Internet and Messaging"
-msgstr "Internet i slanje poruka"
+#: ../../share/advertising/03-internet.pl_.c:9
+#, fuzzy
+msgid "Get the most from the Internet"
+msgstr "Spoji se na Internet"
-#: ../../share/advertising/02-internet.pl_.c:10
+#: ../../share/advertising/03-internet.pl_.c:10
msgid ""
-"Mandrake Linux 8.2 provides the best software to access everything the "
-"Internet has to offer: Surf the web & view animations with Mozilla and "
-"Konqueror, exchange email & organize your personal information with "
-"Evolution and Kmail, and much more"
+"Mandrake Linux 9.0 has selected the best software for you. Surf the Web and "
+"view animations with Mozilla and Konqueror, or read your mail and handle "
+"your personal information with Evolution and Kmail"
msgstr ""
-"Mandrake Linux 8.2 pruŸa najbolji softver za pristupanje svemu čto "
+"Mandrake Linux 9.0 pruŸa najbolji softver za pristupanje svemu čto "
"Internetima za ponuditi: surfajte webom i gledajte animacije sa Mozillom i "
"Koquererom,razmjenjujte emailove i organizirajte vače osobne informacije sa "
"Evolutionomi Kmailom, i joč mnogo toga"
-#: ../../share/advertising/03-graphic.pl_.c:9
-msgid "Multimedia and Graphics"
-msgstr "Multimedija - Grafika"
+#: ../../share/advertising/04-multimedia.pl_.c:9
+msgid "Discover the most up-to-date graphics and multimedia tools!"
+msgstr ""
-#: ../../share/advertising/03-graphic.pl_.c:10
+#: ../../share/advertising/04-multimedia.pl_.c:10
+msgid "Push multimedia to its limits!"
+msgstr ""
+
+#: ../../share/advertising/04-multimedia.pl_.c:11
+#, fuzzy
msgid ""
-"Mandrake Linux 8.2 lets you push your multimedia computer to its limits! Use "
-"the latest software to play music and audio files, edit and organize your "
-"images and photos, watch TV and videos, and much more"
+"Mandrake Linux 9.0 enables you to use the very latest software to play audio "
+"files, edit and handle your images or photos, and play videos"
msgstr ""
"Mandrake Linux 8.2 vam omoguæuje da potpuno ostvarite "
"multimedijalnipotencijal vačeg raèunala! Koristite najnovije programe za "
"reprodukcijuglazbe i zvuènih datoteka, uređujte i organizirajte slike i "
"fotografije,gledajte TV i video zapise, i joč mnogo toga"
-#: ../../share/advertising/04-develop.pl_.c:9
-msgid "Development"
-msgstr "Razvoj"
+#: ../../share/advertising/05-games.pl_.c:9
+msgid "Games"
+msgstr "Igre"
-#: ../../share/advertising/04-develop.pl_.c:10
+#: ../../share/advertising/05-games.pl_.c:10
+#, fuzzy
msgid ""
-"Mandrake Linux 8.2 is the ultimate development platform. Discover the power "
-"of the GNU gcc compiler as well as the best Open Source development "
-"environments"
+"Mandrake Linux 9.0 provides the best Open Source games - arcade, action, "
+"cards, sports, strategy..."
msgstr ""
-"Mandrake Linux 8.2 je najbolja platforma za razvoj aplikacija. Otkrijte moæ "
-"GNU gcc prevoditelja kao i najbolja Open Source okruŸja za razvojaplikacija."
+"Mandrake Linux 8.2 dolazi sa najboljim Open Source igrama - arkade, akcijske,"
+"kartanje, sport, strategije, ..."
-#: ../../share/advertising/05-contcenter.pl_.c:9
-#: ../../standalone/drakbug_.c:69
+#: ../../share/advertising/06-mcc.pl_.c:9 ../../standalone/drakbug_.c:69
msgid "Mandrake Control Center"
msgstr "Mandrake Kontrolni Centar"
-#: ../../share/advertising/05-contcenter.pl_.c:10
+#: ../../share/advertising/06-mcc.pl_.c:10
+#, fuzzy
msgid ""
-"The Mandrake Linux 8.2 Control Center is a one-stop location for fully "
-"customizing and configuring your Mandrake system"
+"Mandrake Linux 9.0 provides a powerful tool to fully customize and configure "
+"your machine"
msgstr ""
"Mandrake Linux 8.2 Kontrolni Centar je mjesto gdje si potpuno "
"moŸetepodrediti i podesiti vač Mandrake sustav"
-#: ../../share/advertising/06-user.pl_.c:9
+#: ../../share/advertising/07-desktop.pl_.c:9
msgid "User interfaces"
msgstr "Korisnièka suèelja"
-#: ../../share/advertising/06-user.pl_.c:10
+#: ../../share/advertising/07-desktop.pl_.c:10
+msgid ""
+"Mandrake Linux 9.0 provides 11 user interfaces which can be fully modified: "
+"KDE 3, Gnome 2, WindowMaker..."
+msgstr ""
+
+#: ../../share/advertising/08-development.pl_.c:9
+#, fuzzy
+msgid "Development simplified"
+msgstr "Razvoj"
+
+#: ../../share/advertising/08-development.pl_.c:10
+msgid "Mandrake Linux 9.0 is the ultimate development platform"
+msgstr ""
+
+#: ../../share/advertising/08-development.pl_.c:11
+#, fuzzy
msgid ""
-"Mandrake Linux 8.2 provides 11 different graphical desktop environments and "
-"window managers to choose from including GNOME 1.4, KDE 2.2.2, Window Maker "
-"0.8, and the rest"
+"Use the full power of the GNU gcc 3 compiler as well as the best Open Source "
+"development environments"
msgstr ""
-"Mandrake Linux 8.2 ima izbor od 11 razlièitih grafièkih suèelja za radni "
-"stol i prozorne menađere koji ukljuèuje GNOME 1.4, KDE 2.2.2, WindowMaker "
-"0.8 i ostale"
+"Mandrake Linux 8.2 je najbolja platforma za razvoj aplikacija. Otkrijte moæ "
+"GNU gcc prevoditelja kao i najbolja Open Source okruŸja za razvojaplikacija."
-#: ../../share/advertising/07-server.pl_.c:9
-msgid "Server Software"
-msgstr "PosluŸiteljski softver"
+#: ../../share/advertising/09-server.pl_.c:9
+msgid "Turn your machine into a reliable server"
+msgstr ""
-#: ../../share/advertising/07-server.pl_.c:10
+#: ../../share/advertising/09-server.pl_.c:10
+#, fuzzy
msgid ""
-"Transform your machine into a powerful server with just a few clicks of the "
-"mouse: Web server, email, firewall, router, file and print server, ..."
+"Transform your machine into a powerful server in a few clicks of your mouse: "
+"Web server, mail, firewall, router, file and print server..."
msgstr ""
"Uèinite od svog raèunala moæni posluŸitelj sa samo nekoliko pritisaka na "
"miču:Web posluŸitelj, email, vatrozid, router, datoteèni i ispisni "
"posluŸitelj, ..."
-#: ../../share/advertising/08-games.pl_.c:9
-msgid "Games"
-msgstr "Igre"
+#: ../../share/advertising/10-mnf.pl_.c:9
+msgid "Optimize your security"
+msgstr ""
-#: ../../share/advertising/08-games.pl_.c:10
+#: ../../share/advertising/10-mnf.pl_.c:10
msgid ""
-"Mandrake Linux 8.2 provides the best Open Source games - arcade, action, "
-"cards, sports, strategy, ..."
+"The MandrakeSecurity range includes the Multi Network Firewall product (M.N."
+"F.)"
msgstr ""
-"Mandrake Linux 8.2 dolazi sa najboljim Open Source igrama - arkade, akcijske,"
-"kartanje, sport, strategije, ..."
-#: ../../share/advertising/09-MDKcampus.pl_.c:9
-msgid "MandrakeCampus"
-msgstr "MandrakeCampus"
+#: ../../share/advertising/10-mnf.pl_.c:11
+msgid ""
+"This firewall product includes network features which allow you to fulfill "
+"all your security needs"
+msgstr ""
+
+#: ../../share/advertising/10-mnf.pl_.c:12
+msgid "This product is available on MandrakeStore website"
+msgstr ""
+
+#: ../../share/advertising/11-mdkstore.pl_.c:9
+msgid "The official MandrakeSoft store"
+msgstr ""
-#: ../../share/advertising/09-MDKcampus.pl_.c:10
+#: ../../share/advertising/11-mdkstore.pl_.c:10
+#, fuzzy
msgid ""
-"Would you like to learn Linux simply, quickly, and for free? MandrakeSoft "
-"provides free Linux training, as well as a way to test your progress, at "
-"MandrakeCampus -- our online training center"
+"Our full range of Linux solutions, as well as special offers on products and "
+"'goodies', are available online at our e-store"
msgstr ""
-"źelite li nauèiti Linux jednostavno, brzo i besplatno? MandrakeSoftvam "
-"omoguæuje besplatnu Linux obuku, kao i naèin da provjerite svojnapredak, u "
-"MandrakeCampusu -- načem online centru za obuku"
+"Potpun raspon Linux rječenja, kao i posebne ponude proizvoda i 'goodiesa', "
+"sudostupni online preko nače e-trgovine"
-#: ../../share/advertising/10-MDKexpert.pl_.c:9
-msgid "MandrakeExpert"
-msgstr "MandrakeExpert"
+#: ../../share/advertising/12-mdkstore.pl_.c:9
+msgid "Strategic partners"
+msgstr ""
-#: ../../share/advertising/10-MDKexpert.pl_.c:10
+#: ../../share/advertising/12-mdkstore.pl_.c:10
msgid ""
-"Quality support from the Linux Community, and from MandrakeSoft, is just "
-"around the corner. And if you're already a Linux veteran, become an \"Expert"
-"\" and share your knowledge at our support website"
+"MandrakeSoft works alongside a selection of companies offering professional "
+"solutions compatible with Mandrake Linux; a list of these partners is "
+"available on the MandrakeStore"
msgstr ""
-"Kvalitetna podrčka od Linux zajednice, kao i od MandrakeSofta, je iza ugla.A "
-"ako veæ jeste Linux veteran, postanite \"Struènjak\" i podijelite "
-"svojeznanje na načem websiteu za podrčku"
-#: ../../share/advertising/11-consul.pl_.c:9
-msgid "MandrakeConsulting"
-msgstr "MandrakConsulting"
+#: ../../share/advertising/13-mdkcampus.pl_.c:9
+msgid "Discover MandrakeSoft's training catalogue Linux-Campus"
+msgstr ""
-#: ../../share/advertising/11-consul.pl_.c:10
+#: ../../share/advertising/13-mdkcampus.pl_.c:10
msgid ""
-"For all of your IT projects, our consultants are ready to analyze your "
-"requirements and offer a customized solution. Benefit from MandrakeSoft's "
-"vast experience as a Linux producer to provide a true IT alternative for "
-"your business organization"
+"The training program has been create to respond to the needs of both users "
+"and experts (Network and System administrations)"
msgstr ""
-"Za sve vače IT projekte, nači savjetnici su spremni analizirati vačezahtjeve "
-"i ponuditi konkretno rječenje. Iskoristite MandrakeSoftovogolemo iskustvo "
-"kao Linux stvaratelja da bi dobili ozbiljnu IT alternativuvačoj poslovnoj "
-"organizaciji"
-#: ../../share/advertising/12-MDKstore.pl_.c:9
-msgid "MandrakeStore"
-msgstr "MandrakeStore"
+#: ../../share/advertising/13-mdkcampus.pl_.c:11
+msgid "Certify yourself on Linux"
+msgstr ""
-#: ../../share/advertising/12-MDKstore.pl_.c:10
+#: ../../share/advertising/13-mdkcampus.pl_.c:12
msgid ""
-"A full range of Linux solutions, as well as special offers on products and "
-"'goodies', are available online at our e-store"
+"Whether you choose to teach yourself online or via our network of training "
+"partners, the Linux-Campus catalogue prepares you for the acknowledged LPI "
+"certification program (worldwide professional technical certification)"
msgstr ""
-"Potpun raspon Linux rječenja, kao i posebne ponude proizvoda i 'goodiesa', "
-"sudostupni online preko nače e-trgovine"
-#: ../../share/advertising/13-Nvert.pl_.c:9
+#: ../../share/advertising/14-mdkexpert.pl_.c:9
+#, fuzzy
+msgid "Become a MandrakeExpert"
+msgstr "MandrakeExpert"
+
+#: ../../share/advertising/14-mdkexpert.pl_.c:10
msgid ""
-"For more information on MandrakeSoft's Professional Services and commercial "
-"offerings, please see the following web page:"
+"Find the solutions to your problems via MandrakeSoft's online support "
+"platform"
msgstr ""
-"Za viče informacija o MandrakeSoftovim profesionalnim uslugama i "
-"komercijalnimponudama, pogledajte web stranice:"
-#: ../../share/advertising/13-Nvert.pl_.c:11
-msgid "http://www.mandrakesoft.com/sales/contact"
-msgstr "http://www.mandrakesoft.com/sales/contact"
+#: ../../share/advertising/14-mdkexpert.pl_.c:11
+msgid ""
+"Join the MandrakeSoft support teams and the Linux Community online to share "
+"your knowledge and help others by becoming a recognized Expert on the online "
+"technical support website:"
+msgstr ""
+
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:9
+#, fuzzy
+msgid "MandrakeExpert Corporate"
+msgstr "MandrakeExpert"
+
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:10
+msgid "An online platform to respond to company's specific support needs"
+msgstr ""
+
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:11
+msgid ""
+"All incidents will be followed up by a single qualified MandrakeSoft "
+"technical expert."
+msgstr ""
-#: ../../standalone.pm_.c:40
+#: ../../standalone.pm_.c:41
msgid "Installing packages..."
msgstr "Instaliram pakete..."
-#: ../../standalone/XFdrake_.c:143
+#: ../../standalone/XFdrake_.c:145
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "Molim prvo se odjavite te pritisnite Ctrl-Alt-BackSpace"
-#: ../../standalone/XFdrake_.c:147
+#: ../../standalone/XFdrake_.c:149
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "Molim ponovo se logirajte u %s kako bi aktivirali promjenjeno"
-#: ../../standalone/diskdrake_.c:81
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I'll try to go on blanking bad partitions"
-msgstr ""
-"Ne mogu proèitati vaču particijsku tablicu, previče je uničtena za mene :(\n"
-"Pokučati æu sa brisanjem ločih particija"
-
#: ../../standalone/drakTermServ_.c:188
#, fuzzy
msgid "Mandrake Terminal Server Configuration"
@@ -10100,12 +10456,13 @@ msgstr "Dodaj korisnika"
msgid "Add/Del Clients"
msgstr "DHCP klijent"
-#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3282
-#: ../../standalone/drakbackup_.c:3315 ../../standalone/drakbackup_.c:3341
-#: ../../standalone/drakbackup_.c:3368 ../../standalone/drakbackup_.c:3395
-#: ../../standalone/drakbackup_.c:3434 ../../standalone/drakbackup_.c:3455
-#: ../../standalone/drakbackup_.c:3482 ../../standalone/drakbackup_.c:3508
-#: ../../standalone/drakbackup_.c:3533 ../../standalone/drakfont_.c:700
+#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3930
+#: ../../standalone/drakbackup_.c:3963 ../../standalone/drakbackup_.c:3989
+#: ../../standalone/drakbackup_.c:4016 ../../standalone/drakbackup_.c:4043
+#: ../../standalone/drakbackup_.c:4082 ../../standalone/drakbackup_.c:4103
+#: ../../standalone/drakbackup_.c:4130 ../../standalone/drakbackup_.c:4160
+#: ../../standalone/drakbackup_.c:4186 ../../standalone/drakbackup_.c:4211
+#: ../../standalone/drakfont_.c:700
msgid "Help"
msgstr "Pomoæ"
@@ -10281,8 +10638,8 @@ msgstr ""
"\n"
"Parametri automatske instalacije su dostupni u odjeljku na lijevoj strani"
-#: ../../standalone/drakautoinst_.c:239 ../../standalone/drakgw_.c:548
-#: ../../standalone/scannerdrake_.c:105
+#: ../../standalone/drakautoinst_.c:239 ../../standalone/drakgw_.c:484
+#: ../../standalone/scannerdrake_.c:119
msgid "Congratulations!"
msgstr "Èestitke!"
@@ -10306,20 +10663,24 @@ msgstr "Dodaj stavku"
msgid "Remove the last item"
msgstr "Ukloni posljednju stavku"
-#: ../../standalone/drakbackup_.c:625
+#: ../../standalone/drakbackup_.c:619
msgid "Cron not available yet as non-root"
msgstr ""
-#: ../../standalone/drakbackup_.c:731
+#: ../../standalone/drakbackup_.c:725
msgid "WARNING"
msgstr ""
-#: ../../standalone/drakbackup_.c:732
+#: ../../standalone/drakbackup_.c:726
#, fuzzy
msgid "FATAL"
msgstr "FAT"
-#: ../../standalone/drakbackup_.c:744
+#: ../../standalone/drakbackup_.c:727
+msgid "INFO"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:739
msgid ""
"\n"
" DrakBackup Report \n"
@@ -10329,7 +10690,7 @@ msgstr ""
" DrakBackup Report \n"
"\n"
-#: ../../standalone/drakbackup_.c:745
+#: ../../standalone/drakbackup_.c:740
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -10341,7 +10702,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:749
+#: ../../standalone/drakbackup_.c:744
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -10353,13 +10714,20 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:770 ../../standalone/drakbackup_.c:840
-#: ../../standalone/drakbackup_.c:894
+#: ../../standalone/drakbackup_.c:765 ../../standalone/drakbackup_.c:835
+#: ../../standalone/drakbackup_.c:889
#, fuzzy
msgid "Total progess"
msgstr "ukupni progres"
-#: ../../standalone/drakbackup_.c:822
+#: ../../standalone/drakbackup_.c:788
+msgid ""
+"Sorry, perl-Expect is not installed/enabled. To use\n"
+"this feature, install perl-Expect and comment lines 772-774,\n"
+" as well as 788,789. Then uncomment line 787."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:817
#, c-format
msgid ""
"%s exists, delete?\n"
@@ -10368,16 +10736,41 @@ msgid ""
" need to purge the entry from authorized_keys on the server."
msgstr ""
-#: ../../standalone/drakbackup_.c:831
+#: ../../standalone/drakbackup_.c:826
msgid "This may take a moment to generate the keys."
msgstr ""
-#: ../../standalone/drakbackup_.c:838
+#: ../../standalone/drakbackup_.c:833
#, c-format
msgid "ERROR: Cannot spawn %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:865
+#: ../../standalone/drakbackup_.c:850
+#, c-format
+msgid "No password prompt on %s at port %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:851
+#, fuzzy, c-format
+msgid "Bad password on %s"
+msgstr "Bez lozinke"
+
+#: ../../standalone/drakbackup_.c:852
+#, c-format
+msgid "Permission denied transferring %s to %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:853
+#, fuzzy, c-format
+msgid "Can't find %s on %s"
+msgstr "Ne mogu otvoriti %s: %s\n"
+
+#: ../../standalone/drakbackup_.c:856
+#, c-format
+msgid "%s not responding"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:860
#, c-format
msgid ""
"Transfer successful\n"
@@ -10388,60 +10781,65 @@ msgid ""
"without being prompted for a password."
msgstr ""
-#: ../../standalone/drakbackup_.c:908
+#: ../../standalone/drakbackup_.c:903
msgid "WebDAV remote site already in sync!"
msgstr ""
-#: ../../standalone/drakbackup_.c:912
+#: ../../standalone/drakbackup_.c:907
msgid "WebDAV transfer failed!"
msgstr ""
-#: ../../standalone/drakbackup_.c:934
+#: ../../standalone/drakbackup_.c:928
msgid "No CDR/DVDR in drive!"
msgstr ""
-#: ../../standalone/drakbackup_.c:938
+#: ../../standalone/drakbackup_.c:932
msgid "Does not appear to be recordable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:942
+#: ../../standalone/drakbackup_.c:936
msgid "Not erasable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:981
+#: ../../standalone/drakbackup_.c:975
msgid "This may take a moment to erase the media."
msgstr ""
-#: ../../standalone/drakbackup_.c:1045
+#: ../../standalone/drakbackup_.c:1060
msgid "Permission problem accessing CD."
msgstr ""
-#: ../../standalone/drakbackup_.c:1144 ../../standalone/drakbackup_.c:1193
+#: ../../standalone/drakbackup_.c:1087
+#, c-format
+msgid "No tape in %s!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1199 ../../standalone/drakbackup_.c:1248
msgid "Backup system files..."
msgstr "Sigurnosna pohrana sustavskih datoteka"
-#: ../../standalone/drakbackup_.c:1194 ../../standalone/drakbackup_.c:1261
+#: ../../standalone/drakbackup_.c:1249 ../../standalone/drakbackup_.c:1316
msgid "Hard Disk Backup files..."
msgstr "Sigurnosna pohrana datoteka na tvrdom disku..."
-#: ../../standalone/drakbackup_.c:1206
+#: ../../standalone/drakbackup_.c:1261
msgid "Backup User files..."
msgstr "Sigurnosna pohrana korisnièkih datoteka"
-#: ../../standalone/drakbackup_.c:1207
+#: ../../standalone/drakbackup_.c:1262
msgid "Hard Disk Backup Progress..."
msgstr "Progres sigurnosne pohrane tvrdog diska"
-#: ../../standalone/drakbackup_.c:1260
+#: ../../standalone/drakbackup_.c:1315
msgid "Backup Other files..."
msgstr "Sigurnosna pohrana drugih datoteka"
-#: ../../standalone/drakbackup_.c:1266
+#: ../../standalone/drakbackup_.c:1321
#, fuzzy
msgid "No changes to backup!"
msgstr "Koristi vrpcu za pohranu"
-#: ../../standalone/drakbackup_.c:1282 ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1337 ../../standalone/drakbackup_.c:1360
#, c-format
msgid ""
"\n"
@@ -10449,16 +10847,16 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1289
+#: ../../standalone/drakbackup_.c:1344
#, fuzzy, c-format
msgid ""
-"file list sent by FTP : %s\n"
+"file list sent by FTP: %s\n"
" "
msgstr ""
-"popis datoteka poslan FTPom : %s\n"
+"popis datoteka poslan FTPom: %s\n"
" "
-#: ../../standalone/drakbackup_.c:1292
+#: ../../standalone/drakbackup_.c:1347
#, fuzzy
msgid ""
"\n"
@@ -10469,39 +10867,39 @@ msgstr ""
"(!) problem sa FTP vezom: nije bilo moguæe poslati vače pohranjene "
"datotekeFTPom.\n"
-#: ../../standalone/drakbackup_.c:1310
+#: ../../standalone/drakbackup_.c:1365
msgid ""
"\n"
"Drakbackup activities via CD:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1315
+#: ../../standalone/drakbackup_.c:1370
msgid ""
"\n"
"Drakbackup activities via tape:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1324
+#: ../../standalone/drakbackup_.c:1379
#, fuzzy
msgid " Error during mail sending. \n"
msgstr "Grečka prilikom èitanja datoteke %s"
-#: ../../standalone/drakbackup_.c:1346
+#: ../../standalone/drakbackup_.c:1404
msgid "Can't create catalog!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1459 ../../standalone/drakbackup_.c:1470
-#: ../../standalone/drakbackup_.c:1481 ../../standalone/drakfont_.c:1004
+#: ../../standalone/drakbackup_.c:1517 ../../standalone/drakbackup_.c:1528
+#: ../../standalone/drakfont_.c:1004
msgid "File Selection"
msgstr "Odabir datoteka"
-#: ../../standalone/drakbackup_.c:1486
+#: ../../standalone/drakbackup_.c:1556
msgid "Select the files or directories and click on 'Add'"
msgstr "Izaberi datoteke ili mape i stisni 'Dodaj'"
-#: ../../standalone/drakbackup_.c:1525
+#: ../../standalone/drakbackup_.c:1600
msgid ""
"\n"
"Please check all options that you need.\n"
@@ -10509,26 +10907,26 @@ msgstr ""
"\n"
"Provjerite sve opcije koje trebate.\n"
-#: ../../standalone/drakbackup_.c:1526
+#: ../../standalone/drakbackup_.c:1601
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
"Ove opcije mogu pohraniti i povratiti sve datoteke u vačoj /etc mapi.\n"
-#: ../../standalone/drakbackup_.c:1527
+#: ../../standalone/drakbackup_.c:1602
#, fuzzy
msgid "Backup your System files. (/etc directory)"
msgstr "Sigurnosno pohranjivanje vačih sustavskih datoteka ( /etc mapa )"
-#: ../../standalone/drakbackup_.c:1528
+#: ../../standalone/drakbackup_.c:1603
msgid "Use incremental backup (do not replace old backups)"
msgstr "Koristi inkrementalno pohranjivanje (ne zamjenjuje staru pohranu)"
-#: ../../standalone/drakbackup_.c:1529
+#: ../../standalone/drakbackup_.c:1604
msgid "Do not include critical files (passwd, group, fstab)"
msgstr "Izostavi kritiène datoteke (passwd, group, fstab)"
-#: ../../standalone/drakbackup_.c:1530
+#: ../../standalone/drakbackup_.c:1605
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
@@ -10536,129 +10934,133 @@ msgstr ""
"S ovom opcijom moæi æete povratiti bilo koju inaèicu\n"
"vačeg /etc direktorija."
-#: ../../standalone/drakbackup_.c:1547
+#: ../../standalone/drakbackup_.c:1622
msgid "Please check all users that you want to include in your backup."
msgstr "Odaberite sve korisnike koje Ÿelite ukljuèiti u pohranu."
-#: ../../standalone/drakbackup_.c:1574
+#: ../../standalone/drakbackup_.c:1649
msgid "Do not include the browser cache"
msgstr "Izostavi cache preglednika (browsera)"
-#: ../../standalone/drakbackup_.c:1575 ../../standalone/drakbackup_.c:1599
+#: ../../standalone/drakbackup_.c:1650 ../../standalone/drakbackup_.c:1674
msgid "Use Incremental Backups (do not replace old backups)"
msgstr "Koristi inkrementalnu pohranu (ne zamjenjuje stare pohrane)"
-#: ../../standalone/drakbackup_.c:1597 ../../standalone/drakfont_.c:1058
+#: ../../standalone/drakbackup_.c:1672 ../../standalone/drakfont_.c:1058
msgid "Remove Selected"
msgstr "Ukloni izabrano"
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:1710
msgid "Windows (FAT32)"
msgstr "Windowse (FAT32)"
-#: ../../standalone/drakbackup_.c:1674
+#: ../../standalone/drakbackup_.c:1749
msgid "Users"
msgstr "Korisnici"
-#: ../../standalone/drakbackup_.c:1700
+#: ../../standalone/drakbackup_.c:1775
#, fuzzy
msgid "Use network connection to backup"
msgstr "Koristi FTP vezu za pohranu"
-#: ../../standalone/drakbackup_.c:1706
+#: ../../standalone/drakbackup_.c:1777
+msgid "Net Method:"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1781
msgid "Use Expect for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1707
+#: ../../standalone/drakbackup_.c:1782
msgid ""
"Create/Transfer\n"
"backup keys for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1708
+#: ../../standalone/drakbackup_.c:1783
#, fuzzy
msgid ""
" Transfer \n"
"Now"
msgstr "Prebaci"
-#: ../../standalone/drakbackup_.c:1709
+#: ../../standalone/drakbackup_.c:1784
msgid "Keys in place already"
msgstr ""
-#: ../../standalone/drakbackup_.c:1713
+#: ../../standalone/drakbackup_.c:1788
msgid "Please enter the host name or IP."
msgstr "Upičite ime hosta ili IP."
-#: ../../standalone/drakbackup_.c:1718
+#: ../../standalone/drakbackup_.c:1793
#, fuzzy
msgid ""
"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr "Upičite mapu na ovom hostu u koju æete staviti pohranu."
-#: ../../standalone/drakbackup_.c:1723
+#: ../../standalone/drakbackup_.c:1798
msgid "Please enter your login"
msgstr "Upičite svoje korisnièko ime"
-#: ../../standalone/drakbackup_.c:1728
+#: ../../standalone/drakbackup_.c:1803
msgid "Please enter your password"
msgstr "Upičite svoju lozinku"
-#: ../../standalone/drakbackup_.c:1734
+#: ../../standalone/drakbackup_.c:1809
msgid "Remember this password"
msgstr "Zapamti ovu lozinku"
-#: ../../standalone/drakbackup_.c:1745
+#: ../../standalone/drakbackup_.c:1820
msgid "Need hostname, username and password!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1841
+#: ../../standalone/drakbackup_.c:1915
msgid "Use CD/DVDROM to backup"
msgstr "Koristi CD/DVDROM za pohranu"
-#: ../../standalone/drakbackup_.c:1844
+#: ../../standalone/drakbackup_.c:1918
msgid ""
"Please choose your CD/DVD device\n"
"(Press Enter to propogate settings to other fields.\n"
"This field isn't necessary, only a tool to fill in the form.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1849
+#: ../../standalone/drakbackup_.c:1923
#, fuzzy
msgid "Please choose your CD/DVD media size"
msgstr "Izaberite prostor na CDu"
-#: ../../standalone/drakbackup_.c:1855
+#: ../../standalone/drakbackup_.c:1929
#, fuzzy
msgid "Please check for multisession CD"
msgstr "Naznaèite da li koristite CDRW medij"
-#: ../../standalone/drakbackup_.c:1861
+#: ../../standalone/drakbackup_.c:1935
msgid "Please check if you are using CDRW media"
msgstr "Naznaèite da li koristite CDRW medij"
-#: ../../standalone/drakbackup_.c:1867
+#: ../../standalone/drakbackup_.c:1941
#, fuzzy
msgid "Please check if you want to erase your RW media (1st Session)"
msgstr "Naznaèite da li prethodno Ÿelite obrisati vač CDRW"
-#: ../../standalone/drakbackup_.c:1868
+#: ../../standalone/drakbackup_.c:1942
#, fuzzy
msgid " Erase Now "
msgstr "Prebaci"
-#: ../../standalone/drakbackup_.c:1874
+#: ../../standalone/drakbackup_.c:1948
#, fuzzy
msgid "Please check if you are using a DVDR device"
msgstr "Naznaèite da li koristite CDRW medij"
-#: ../../standalone/drakbackup_.c:1880
+#: ../../standalone/drakbackup_.c:1954
#, fuzzy
msgid "Please check if you are using a DVDRAM device"
msgstr "Naznaèite da li koristite CDRW medij"
-#: ../../standalone/drakbackup_.c:1893
+#: ../../standalone/drakbackup_.c:1967
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
@@ -10666,36 +11068,36 @@ msgstr ""
"Upičite ime vačeg CD snimaèa\n"
" ex: 0,1,0"
-#: ../../standalone/drakbackup_.c:1926
+#: ../../standalone/drakbackup_.c:2000
#, fuzzy
msgid "No CD device defined!"
msgstr "Odaberite datoteku"
-#: ../../standalone/drakbackup_.c:1974
+#: ../../standalone/drakbackup_.c:2048
msgid "Use tape to backup"
msgstr "Koristi vrpcu za pohranu"
-#: ../../standalone/drakbackup_.c:1977
+#: ../../standalone/drakbackup_.c:2051
msgid "Please enter the device name to use for backup"
msgstr "Upičite ime uređaja kojeg æete koristiti za sigurnosnu pohranu"
-#: ../../standalone/drakbackup_.c:1983
+#: ../../standalone/drakbackup_.c:2057
#, fuzzy
msgid "Please check if you want to use the non-rewinding device."
msgstr "Naznaèite da li prethodno Ÿelite obrisati vač CDRW"
-#: ../../standalone/drakbackup_.c:1989
+#: ../../standalone/drakbackup_.c:2063
#, fuzzy
msgid "Please check if you want to erase your tape before the backup."
msgstr "Naznaèite da li prethodno Ÿelite obrisati vač CDRW"
-#: ../../standalone/drakbackup_.c:1995
+#: ../../standalone/drakbackup_.c:2069
#, fuzzy
msgid "Please check if you want to eject your tape after the backup."
msgstr "Naznaèite da li prethodno Ÿelite obrisati vač CDRW"
-#: ../../standalone/drakbackup_.c:2001 ../../standalone/drakbackup_.c:2074
-#: ../../standalone/drakbackup_.c:3025
+#: ../../standalone/drakbackup_.c:2075 ../../standalone/drakbackup_.c:2149
+#: ../../standalone/drakbackup_.c:3116
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
@@ -10703,57 +11105,57 @@ msgstr ""
"Upičite maksimalnu dozvoljenu\n"
" velièinu za Drakbackup"
-#: ../../standalone/drakbackup_.c:2066
+#: ../../standalone/drakbackup_.c:2140
#, fuzzy
msgid "Please enter the directory to save to:"
msgstr "Upičite mapu za snimanje:"
-#: ../../standalone/drakbackup_.c:2080 ../../standalone/drakbackup_.c:3031
+#: ../../standalone/drakbackup_.c:2155 ../../standalone/drakbackup_.c:3122
msgid "Use quota for backup files."
msgstr "Koristi quotu za pohranjene datoteke"
-#: ../../standalone/drakbackup_.c:2146
+#: ../../standalone/drakbackup_.c:2221
msgid "Network"
msgstr "MreŸa"
-#: ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:2226
msgid "CDROM / DVDROM"
msgstr "CDROM / DVDROM"
-#: ../../standalone/drakbackup_.c:2156
+#: ../../standalone/drakbackup_.c:2231
msgid "HardDrive / NFS"
msgstr "Tvrdi disk / NFS"
-#: ../../standalone/drakbackup_.c:2161
+#: ../../standalone/drakbackup_.c:2236
#, fuzzy
msgid "Tape"
msgstr "Vrsta"
-#: ../../standalone/drakbackup_.c:2175 ../../standalone/drakbackup_.c:2179
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2250 ../../standalone/drakbackup_.c:2254
+#: ../../standalone/drakbackup_.c:2258
msgid "hourly"
msgstr "svaki sat"
-#: ../../standalone/drakbackup_.c:2176 ../../standalone/drakbackup_.c:2180
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2251 ../../standalone/drakbackup_.c:2255
+#: ../../standalone/drakbackup_.c:2258
msgid "daily"
msgstr "svaki dan"
-#: ../../standalone/drakbackup_.c:2177 ../../standalone/drakbackup_.c:2181
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2252 ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2258
msgid "weekly"
msgstr "svaki tjedan"
-#: ../../standalone/drakbackup_.c:2178 ../../standalone/drakbackup_.c:2182
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2253 ../../standalone/drakbackup_.c:2257
+#: ../../standalone/drakbackup_.c:2258
msgid "monthly"
msgstr "svaki mjesec"
-#: ../../standalone/drakbackup_.c:2196
+#: ../../standalone/drakbackup_.c:2271
msgid "Use daemon"
msgstr "Koristi daemon"
-#: ../../standalone/drakbackup_.c:2201
+#: ../../standalone/drakbackup_.c:2276
msgid ""
"Please choose the time \n"
"interval between each backup"
@@ -10761,13 +11163,13 @@ msgstr ""
"Izaberite vremenski razmak između\n"
"dvije sigurnosne pohrane"
-#: ../../standalone/drakbackup_.c:2207
+#: ../../standalone/drakbackup_.c:2282
msgid ""
"Please choose the\n"
"media for backup."
msgstr "Izaberite medij za pohranu."
-#: ../../standalone/drakbackup_.c:2214
+#: ../../standalone/drakbackup_.c:2289
#, fuzzy
msgid ""
"Please be sure that the cron daemon is included in your services. \n"
@@ -10775,71 +11177,71 @@ msgid ""
"Note that currently all 'net' medias also use the hard drive."
msgstr "Osigurajte da je cron daemon ukljuèen u vače servise"
-#: ../../standalone/drakbackup_.c:2251
-msgid "Send mail report after each backup to :"
+#: ../../standalone/drakbackup_.c:2326
+msgid "Send mail report after each backup to:"
msgstr "Ovjde počalji izvječtaj mailom poslije svake pohrane:"
-#: ../../standalone/drakbackup_.c:2257
+#: ../../standalone/drakbackup_.c:2332
msgid "Delete Hard Drive tar files after backup to other media."
msgstr ""
-#: ../../standalone/drakbackup_.c:2296
+#: ../../standalone/drakbackup_.c:2371
msgid "What"
msgstr "©to"
-#: ../../standalone/drakbackup_.c:2301
+#: ../../standalone/drakbackup_.c:2376
msgid "Where"
msgstr "Gdje"
-#: ../../standalone/drakbackup_.c:2306
+#: ../../standalone/drakbackup_.c:2381
msgid "When"
msgstr "Kada"
-#: ../../standalone/drakbackup_.c:2311
+#: ../../standalone/drakbackup_.c:2386
msgid "More Options"
msgstr "Joč opcija"
-#: ../../standalone/drakbackup_.c:2330 ../../standalone/drakbackup_.c:3873
+#: ../../standalone/drakbackup_.c:2405 ../../standalone/drakbackup_.c:4530
msgid "Drakbackup Configuration"
msgstr "Drakbackup postava"
-#: ../../standalone/drakbackup_.c:2348
+#: ../../standalone/drakbackup_.c:2423
msgid "Please choose where you want to backup"
msgstr "Izaberite gdje Ÿelite pohranjivati"
-#: ../../standalone/drakbackup_.c:2350
+#: ../../standalone/drakbackup_.c:2425
msgid "on Hard Drive"
msgstr "na tvrdi disk"
-#: ../../standalone/drakbackup_.c:2360
+#: ../../standalone/drakbackup_.c:2435
msgid "across Network"
msgstr "preko mreŸe"
-#: ../../standalone/drakbackup_.c:2370
+#: ../../standalone/drakbackup_.c:2445
msgid "on CDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2378
+#: ../../standalone/drakbackup_.c:2453
msgid "on Tape Device"
msgstr ""
-#: ../../standalone/drakbackup_.c:2421
+#: ../../standalone/drakbackup_.c:2496
msgid "Please choose what you want to backup"
msgstr "Izaberite čto Ÿelite pohranjivati"
-#: ../../standalone/drakbackup_.c:2422
+#: ../../standalone/drakbackup_.c:2497
msgid "Backup system"
msgstr "Pohrani sustav"
-#: ../../standalone/drakbackup_.c:2423
+#: ../../standalone/drakbackup_.c:2498
msgid "Backup Users"
msgstr "Pohrani korisnike"
-#: ../../standalone/drakbackup_.c:2426
+#: ../../standalone/drakbackup_.c:2501
msgid "Select user manually"
msgstr "Ruèno izaberi korisnika"
-#: ../../standalone/drakbackup_.c:2508
+#: ../../standalone/drakbackup_.c:2584
msgid ""
"\n"
"Backup Sources: \n"
@@ -10847,7 +11249,7 @@ msgstr ""
"\n"
"Izvori za pohranu: \n"
-#: ../../standalone/drakbackup_.c:2509
+#: ../../standalone/drakbackup_.c:2585
msgid ""
"\n"
"- System Files:\n"
@@ -10855,7 +11257,7 @@ msgstr ""
"\n"
"- Sustavske datoteke:\n"
-#: ../../standalone/drakbackup_.c:2511
+#: ../../standalone/drakbackup_.c:2587
msgid ""
"\n"
"- User Files:\n"
@@ -10863,7 +11265,7 @@ msgstr ""
"\n"
"- Korisnièke datoteke:\n"
-#: ../../standalone/drakbackup_.c:2513
+#: ../../standalone/drakbackup_.c:2589
msgid ""
"\n"
"- Other Files:\n"
@@ -10871,64 +11273,64 @@ msgstr ""
"\n"
"- Druge datoteke:\n"
-#: ../../standalone/drakbackup_.c:2515
+#: ../../standalone/drakbackup_.c:2591
#, c-format
msgid ""
"\n"
-"- Save on Hard drive on path : %s\n"
+"- Save on Hard drive on path: %s\n"
msgstr ""
"\n"
-"- Snimi na tvrdi disk u putanju : %s\n"
+"- Snimi na tvrdi disk u putanju: %s\n"
-#: ../../standalone/drakbackup_.c:2518
+#: ../../standalone/drakbackup_.c:2594
msgid ""
"\n"
"- Delete hard drive tar files after backup.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2524
+#: ../../standalone/drakbackup_.c:2600
msgid ""
"\n"
"- Burn to CD"
msgstr ""
-#: ../../standalone/drakbackup_.c:2525
+#: ../../standalone/drakbackup_.c:2601
msgid "RW"
msgstr ""
-#: ../../standalone/drakbackup_.c:2526
+#: ../../standalone/drakbackup_.c:2602
#, fuzzy, c-format
-msgid " on device : %s"
+msgid " on device: %s"
msgstr "Uređaj miča: %s\n"
-#: ../../standalone/drakbackup_.c:2527
+#: ../../standalone/drakbackup_.c:2603
msgid " (multi-session)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2528
+#: ../../standalone/drakbackup_.c:2604
#, fuzzy, c-format
msgid ""
"\n"
-"- Save to Tape on device : %s"
+"- Save to Tape on device: %s"
msgstr ""
"\n"
-"Snimi FTPom na host : %s\n"
+"Snimi FTPom na host: %s\n"
-#: ../../standalone/drakbackup_.c:2529
+#: ../../standalone/drakbackup_.c:2605
#, c-format
msgid "\t\tErase=%s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2532
+#: ../../standalone/drakbackup_.c:2608
#, fuzzy, c-format
msgid ""
"\n"
-"- Save via %s on host : %s\n"
+"- Save via %s on host: %s\n"
msgstr ""
"\n"
-"Snimi FTPom na host : %s\n"
+"Snimi FTPom na host: %s\n"
-#: ../../standalone/drakbackup_.c:2533
+#: ../../standalone/drakbackup_.c:2609
#, c-format
msgid ""
"\t\t user name: %s\n"
@@ -10937,7 +11339,7 @@ msgstr ""
"\t\t korisnièko ime: %s\n"
"\t\t u putanju: %s \n"
-#: ../../standalone/drakbackup_.c:2534
+#: ../../standalone/drakbackup_.c:2610
msgid ""
"\n"
"- Options:\n"
@@ -10945,62 +11347,62 @@ msgstr ""
"\n"
"- Opcije:\n"
-#: ../../standalone/drakbackup_.c:2535
+#: ../../standalone/drakbackup_.c:2611
msgid "\tDo not include System Files\n"
msgstr "\tIzostavi sustavske datoteke\n"
-#: ../../standalone/drakbackup_.c:2538
+#: ../../standalone/drakbackup_.c:2614
msgid "\tBackups use tar and bzip2\n"
msgstr "\tPohrana koristi tar i bzip2\n"
-#: ../../standalone/drakbackup_.c:2540
+#: ../../standalone/drakbackup_.c:2616
msgid "\tBackups use tar and gzip\n"
msgstr "\tPohrana koristi tar i gzip\n"
-#: ../../standalone/drakbackup_.c:2543
+#: ../../standalone/drakbackup_.c:2619
#, c-format
msgid ""
"\n"
-"- Daemon (%s) include :\n"
+"- Daemon (%s) include:\n"
msgstr ""
"\n"
"- Daemon (%s) ukljuèi :\n"
-#: ../../standalone/drakbackup_.c:2544
+#: ../../standalone/drakbackup_.c:2620
msgid "\t-Hard drive.\n"
msgstr "\t-Tvrdi disk.\n"
-#: ../../standalone/drakbackup_.c:2545
+#: ../../standalone/drakbackup_.c:2621
msgid "\t-CDROM.\n"
msgstr "\t-CDROM.\n"
-#: ../../standalone/drakbackup_.c:2546
+#: ../../standalone/drakbackup_.c:2622
msgid "\t-Tape \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2547
+#: ../../standalone/drakbackup_.c:2623
msgid "\t-Network by FTP.\n"
msgstr "\t-MreŸu FTPom.\n"
-#: ../../standalone/drakbackup_.c:2548
+#: ../../standalone/drakbackup_.c:2624
msgid "\t-Network by SSH.\n"
msgstr "\t-MreŸu SSHom.\n"
-#: ../../standalone/drakbackup_.c:2549
+#: ../../standalone/drakbackup_.c:2625
#, fuzzy
msgid "\t-Network by rsync.\n"
msgstr "\t-MreŸu FTPom.\n"
-#: ../../standalone/drakbackup_.c:2550
+#: ../../standalone/drakbackup_.c:2626
#, fuzzy
msgid "\t-Network by webdav.\n"
msgstr "\t-MreŸu FTPom.\n"
-#: ../../standalone/drakbackup_.c:2552
+#: ../../standalone/drakbackup_.c:2628
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr "Nema postavki, molimo izaberite Èarobnjaka ili Napredno.\n"
-#: ../../standalone/drakbackup_.c:2558
+#: ../../standalone/drakbackup_.c:2634
msgid ""
"List of data to restore:\n"
"\n"
@@ -11008,7 +11410,7 @@ msgstr ""
"Popis podataka za povrat:\n"
"\n"
-#: ../../standalone/drakbackup_.c:2725
+#: ../../standalone/drakbackup_.c:2801
msgid ""
"List of data corrupted:\n"
"\n"
@@ -11016,159 +11418,277 @@ msgstr ""
"Popis očteæenih podataka:\n"
"\n"
-#: ../../standalone/drakbackup_.c:2727
+#: ../../standalone/drakbackup_.c:2803
msgid "Please uncheck or remove it on next time."
msgstr "Molimo poničtite odabir ili ga uklonite iduæi put"
-#: ../../standalone/drakbackup_.c:2737
+#: ../../standalone/drakbackup_.c:2813
msgid "Backup files are corrupted"
msgstr "Pohranjene datoteke su očteæene"
-#: ../../standalone/drakbackup_.c:2758
+#: ../../standalone/drakbackup_.c:2834
#, fuzzy
msgid " All of your selected data have been "
msgstr " Svi vači izabrani podaci su "
-#: ../../standalone/drakbackup_.c:2759
+#: ../../standalone/drakbackup_.c:2835
#, c-format
msgid " Successfuly Restored on %s "
msgstr " Uspječno povraæeni na %s "
-#: ../../standalone/drakbackup_.c:2877
+#: ../../standalone/drakbackup_.c:2953
msgid " Restore Configuration "
msgstr " Povrati postavke "
-#: ../../standalone/drakbackup_.c:2895
+#: ../../standalone/drakbackup_.c:2971
msgid "OK to restore the other files."
msgstr "U redu da bi povratili ostale datoteke"
-#: ../../standalone/drakbackup_.c:2912
+#: ../../standalone/drakbackup_.c:2988
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
"Popis korisnika za povrat (samo je najnoviji nadnevak vaŸan za svakog "
"korisnika)"
-#: ../../standalone/drakbackup_.c:2975
+#: ../../standalone/drakbackup_.c:3066
msgid "Backup the system files before:"
msgstr "Pohrani sustavske datoteke prije:"
-#: ../../standalone/drakbackup_.c:2977
+#: ../../standalone/drakbackup_.c:3068
msgid "please choose the date to restore"
msgstr "izaberite nadnevak za povrat"
-#: ../../standalone/drakbackup_.c:3014
+#: ../../standalone/drakbackup_.c:3105
msgid "Use Hard Disk to backup"
msgstr "Koristi tvrdi disk za pohranu"
-#: ../../standalone/drakbackup_.c:3017
+#: ../../standalone/drakbackup_.c:3108
msgid "Please enter the directory to save:"
msgstr "Upičite mapu za snimanje:"
-#: ../../standalone/drakbackup_.c:3060
+#: ../../standalone/drakbackup_.c:3151
msgid "FTP Connection"
msgstr "FTP veza"
-#: ../../standalone/drakbackup_.c:3067
+#: ../../standalone/drakbackup_.c:3158
msgid "Secure Connection"
msgstr "Sigurna veza"
-#: ../../standalone/drakbackup_.c:3093
+#: ../../standalone/drakbackup_.c:3184
msgid "Restore from Hard Disk."
msgstr "Povrati s tvrdog diska"
-#: ../../standalone/drakbackup_.c:3095
+#: ../../standalone/drakbackup_.c:3186
msgid "Please enter the directory where backups are stored"
msgstr "Upičite mapu u koju ste pohranili podatke"
-#: ../../standalone/drakbackup_.c:3157
+#: ../../standalone/drakbackup_.c:3254
msgid "Select another media to restore from"
msgstr "Izaberite drugi medij s kojeg æete povratiti podatke"
-#: ../../standalone/drakbackup_.c:3159
+#: ../../standalone/drakbackup_.c:3256
msgid "Other Media"
msgstr "Ostali mediji"
-#: ../../standalone/drakbackup_.c:3164
+#: ../../standalone/drakbackup_.c:3261
msgid "Restore system"
msgstr "Povrati sustav"
-#: ../../standalone/drakbackup_.c:3165
+#: ../../standalone/drakbackup_.c:3262
msgid "Restore Users"
msgstr "Povrati korisnike"
-#: ../../standalone/drakbackup_.c:3166
+#: ../../standalone/drakbackup_.c:3263
msgid "Restore Other"
msgstr "Povrati ostalo"
-#: ../../standalone/drakbackup_.c:3168
+#: ../../standalone/drakbackup_.c:3265
#, fuzzy
msgid "select path to restore (instead of /)"
msgstr "izaberi putanju za povrat (umjesto / )"
-#: ../../standalone/drakbackup_.c:3172
+#: ../../standalone/drakbackup_.c:3269
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
"Napravi novu sigurnosnu pohranu prije povrata (samo za inkrementalne "
"pohrane.)"
-#: ../../standalone/drakbackup_.c:3174
+#: ../../standalone/drakbackup_.c:3271
msgid "Remove user directories before restore."
msgstr "Ukloni mape korisnika prije povrata."
-#: ../../standalone/drakbackup_.c:3232
+#: ../../standalone/drakbackup_.c:3384
+msgid ""
+"Restore Selected\n"
+"Catalog Entry"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3394
+#, fuzzy
+msgid ""
+"Restore Selected\n"
+"Files"
+msgstr "Ukloni izabrano"
+
+#: ../../standalone/drakbackup_.c:3411
+#, fuzzy
+msgid ""
+"Change\n"
+"Restore Path"
+msgstr "Povrati ostalo"
+
+#: ../../standalone/drakbackup_.c:3477
+#, fuzzy, c-format
+msgid "Backup files not found at %s."
+msgstr "Pohranjene datoteke su očteæene"
+
+#: ../../standalone/drakbackup_.c:3490
+#, c-format
+msgid ""
+"Insert the CD with volume label %s\n"
+" in the CD drive under mount point /mnt/cdrom"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3490
+#, fuzzy
+msgid "Restore From CD"
+msgstr "Povrati s tvrdog diska"
+
+#: ../../standalone/drakbackup_.c:3492
+#, c-format
+msgid "Not the correct CD label. Disk is labelled %s."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3502
+#, c-format
+msgid ""
+"Insert the tape with volume label %s\n"
+" in the tape drive device %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3502
+#, fuzzy
+msgid "Restore From Tape"
+msgstr "Vrati particijsku tabelu"
+
+#: ../../standalone/drakbackup_.c:3504
+#, c-format
+msgid "Not the correct tape label. Tape is labelled %s."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3524
+#, fuzzy
+msgid "Restore Via Network"
+msgstr "Povrati korisnike"
+
+#: ../../standalone/drakbackup_.c:3524
+#, c-format
+msgid "Restore Via Network Protocol: %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3525
+#, fuzzy
+msgid "Host Name"
+msgstr "Ime raèunala"
+
+#: ../../standalone/drakbackup_.c:3526
+msgid "Host Path or Module"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3533
+#, fuzzy
+msgid "Password required"
+msgstr "Lozinka"
+
+#: ../../standalone/drakbackup_.c:3539
+#, fuzzy
+msgid "Username required"
+msgstr "Korisnièko ime"
+
+#: ../../standalone/drakbackup_.c:3542
+#, fuzzy
+msgid "Hostname required"
+msgstr "Ime raèunala: "
+
+#: ../../standalone/drakbackup_.c:3547
+msgid "Path or Module required"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3560
+msgid "Files Restored..."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3563
+#, fuzzy
+msgid "Restore Failed..."
+msgstr "Povrati ostalo"
+
+#: ../../standalone/drakbackup_.c:3801
msgid "Restore all backups"
msgstr "Povrati sve pohrane"
-#: ../../standalone/drakbackup_.c:3241
+#: ../../standalone/drakbackup_.c:3810
msgid "Custom Restore"
msgstr "Prilagođena pohrana"
-#: ../../standalone/drakbackup_.c:3287 ../../standalone/drakbackup_.c:3320
-#: ../../standalone/drakbackup_.c:3346 ../../standalone/drakbackup_.c:3373
-#: ../../standalone/drakbackup_.c:3400 ../../standalone/drakbackup_.c:3460
-#: ../../standalone/drakbackup_.c:3487 ../../standalone/drakbackup_.c:3513
+#: ../../standalone/drakbackup_.c:3856
+msgid "CD in place - continue."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3862
+msgid "Browse to new restore repository."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3865
+#, fuzzy
+msgid "Restore From Catalog"
+msgstr "Vrati particijsku tabelu"
+
+#: ../../standalone/drakbackup_.c:3893
+#, fuzzy
+msgid "Restore Progress"
+msgstr "Povrati korisnike"
+
+#: ../../standalone/drakbackup_.c:3935 ../../standalone/drakbackup_.c:3968
+#: ../../standalone/drakbackup_.c:3994 ../../standalone/drakbackup_.c:4021
+#: ../../standalone/drakbackup_.c:4048 ../../standalone/drakbackup_.c:4108
+#: ../../standalone/drakbackup_.c:4135 ../../standalone/drakbackup_.c:4165
+#: ../../standalone/drakbackup_.c:4191
msgid "Previous"
msgstr "Prijačnje"
-#: ../../standalone/drakbackup_.c:3291 ../../standalone/drakbackup_.c:3377
+#: ../../standalone/drakbackup_.c:3939 ../../standalone/drakbackup_.c:4025
#: ../../standalone/logdrake_.c:223
msgid "Save"
msgstr "Snimi"
-#: ../../standalone/drakbackup_.c:3350
+#: ../../standalone/drakbackup_.c:3998
msgid "Build Backup"
msgstr "SloŸi sigurnosnu pohranu"
-#: ../../standalone/drakbackup_.c:3404 ../../standalone/drakbackup_.c:3974
+#: ../../standalone/drakbackup_.c:4052 ../../standalone/drakbackup_.c:4632
msgid "Restore"
msgstr "Povrati"
-#: ../../standalone/drakbackup_.c:3553
-msgid ""
-"Please Build backup before to restore it...\n"
-" or verify that your path to save is correct."
-msgstr ""
-"Molimo sloŸite pohranu prije povrata...\n"
-"ili provjerite da je putanja ispravna"
-
-#: ../../standalone/drakbackup_.c:3574
+#: ../../standalone/drakbackup_.c:4231
+#, fuzzy
msgid ""
-"Error during sendmail\n"
-" your report mail was not sent\n"
+"Error during sendmail.\n"
+" Your report mail was not sent.\n"
" Please configure sendmail"
msgstr ""
"Grečka tijekom slanja počte\n"
" vač mail sa izvječtajem nije poslan\n"
" molimo podesite sendmail"
-#: ../../standalone/drakbackup_.c:3598
+#: ../../standalone/drakbackup_.c:4255
#, fuzzy
msgid ""
"The following packages need to be installed:\n"
" @list_of_rpm_to_install"
msgstr "Slijedeæi paketi æe biti instalirani"
-#: ../../standalone/drakbackup_.c:3621
+#: ../../standalone/drakbackup_.c:4278
#, fuzzy
msgid ""
"Error during sending file via FTP.\n"
@@ -11177,19 +11697,19 @@ msgstr ""
"Grečka tijekom slanja datoteke putem FTPa.\n"
" Ispravite svoje FTP postavke."
-#: ../../standalone/drakbackup_.c:3644
+#: ../../standalone/drakbackup_.c:4301
msgid "Please select data to restore..."
msgstr "Izaberite podatke za povrat"
-#: ../../standalone/drakbackup_.c:3665
+#: ../../standalone/drakbackup_.c:4322
msgid "Please select media for backup..."
msgstr "Izaberite medij za sigurnosnu pohranu..."
-#: ../../standalone/drakbackup_.c:3687
+#: ../../standalone/drakbackup_.c:4344
msgid "Please select data to backup..."
msgstr "Izaberite podatke koje æete pohraniti..."
-#: ../../standalone/drakbackup_.c:3709
+#: ../../standalone/drakbackup_.c:4366
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
@@ -11197,59 +11717,59 @@ msgstr ""
"Nije pronađena datoteka s postavkama \n"
"pritisnite Èarobnjaka ili Napredno."
-#: ../../standalone/drakbackup_.c:3730
+#: ../../standalone/drakbackup_.c:4387
msgid "Under Devel ... please wait."
msgstr "Razvija se ... molimo saèekajte."
-#: ../../standalone/drakbackup_.c:3811
+#: ../../standalone/drakbackup_.c:4468
msgid "Backup system files"
msgstr "Pohrani sustavske datoteke"
-#: ../../standalone/drakbackup_.c:3813
+#: ../../standalone/drakbackup_.c:4470
msgid "Backup user files"
msgstr "Pohrani korisnièke datoteke"
-#: ../../standalone/drakbackup_.c:3815
+#: ../../standalone/drakbackup_.c:4472
msgid "Backup other files"
msgstr "Pohrani ostale datoteke"
-#: ../../standalone/drakbackup_.c:3817 ../../standalone/drakbackup_.c:3850
+#: ../../standalone/drakbackup_.c:4474 ../../standalone/drakbackup_.c:4507
msgid "Total Progress"
msgstr "Ukupni progres"
-#: ../../standalone/drakbackup_.c:3841
+#: ../../standalone/drakbackup_.c:4498
msgid "files sending by FTP"
msgstr "slanje datoteka FTPom"
-#: ../../standalone/drakbackup_.c:3845
+#: ../../standalone/drakbackup_.c:4502
msgid "Sending files..."
msgstr "©aljem datoteke..."
-#: ../../standalone/drakbackup_.c:3931
+#: ../../standalone/drakbackup_.c:4588
msgid "Backup Now from configuration file"
msgstr "Pohrani iz datoteke sa postavkama"
-#: ../../standalone/drakbackup_.c:3936
+#: ../../standalone/drakbackup_.c:4593
msgid "View Backup Configuration."
msgstr "Pogledaj postavke sigurnosne pohrane"
-#: ../../standalone/drakbackup_.c:3956
+#: ../../standalone/drakbackup_.c:4614
msgid "Wizard Configuration"
msgstr "Postavke èarobnjaka"
-#: ../../standalone/drakbackup_.c:3961
+#: ../../standalone/drakbackup_.c:4619
msgid "Advanced Configuration"
msgstr "Napredne postavke"
-#: ../../standalone/drakbackup_.c:3966
+#: ../../standalone/drakbackup_.c:4624
msgid "Backup Now"
msgstr "Pohrani sada"
-#: ../../standalone/drakbackup_.c:3996
+#: ../../standalone/drakbackup_.c:4658
msgid "Drakbackup"
msgstr "Drakbackup"
-#: ../../standalone/drakbackup_.c:4045
+#: ../../standalone/drakbackup_.c:4707
#, fuzzy
msgid ""
"options description:\n"
@@ -11310,7 +11830,7 @@ msgstr ""
" \n"
"\n"
-#: ../../standalone/drakbackup_.c:4075
+#: ../../standalone/drakbackup_.c:4737
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -11324,7 +11844,7 @@ msgstr ""
" namjesiti myhostname ili mydomain u /etc/postfix/main.cf\n"
"\n"
-#: ../../standalone/drakbackup_.c:4083
+#: ../../standalone/drakbackup_.c:4745
msgid ""
"options description:\n"
"\n"
@@ -11402,28 +11922,29 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:4122
+#: ../../standalone/drakbackup_.c:4784
+#, fuzzy
msgid ""
"restore description:\n"
" \n"
-"Only the most recent date will be used ,because with incremental \n"
-"backups it is necesarry to restore one by one each older backups.\n"
+"Only the most recent date will be used, because with incremental \n"
+"backups it is necessary to restore one by one each older backup.\n"
"\n"
-"So if you don't like to restore a user please unselect all his\n"
-"check box.\n"
+"So if you don't want to restore a user please unselect all their\n"
+"check boxes.\n"
"\n"
-"Otherwise, you are able to select only one of this\n"
+"Otherwise, you are able to select only one of these.\n"
"\n"
" - Incremental Backups:\n"
"\n"
"\tThe incremental backup is the most powerful \n"
-"\toption to use backup, this option allow you \n"
-"\tto backup all your data the first time, and \n"
-"\tonly the changed after.\n"
-"\tSo you will be able during the restore\n"
+"\toption to use. This option allows you to \n"
+"\tbackup all of your data the first time, and \n"
+"\tonly the changed data after.\n"
+"\tSo you will be able, during the restore\n"
"\tstep, to restore your data from a specified\n"
"\tdate.\n"
-"\tIf you have not selected this options all\n"
+"\tIf you have not selected this option all\n"
"\told backups are deleted before each backup. \n"
"\n"
"\n"
@@ -11454,18 +11975,18 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:4148 ../../standalone/drakbackup_.c:4225
+#: ../../standalone/drakbackup_.c:4810 ../../standalone/drakbackup_.c:4887
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
-#: ../../standalone/drakbackup_.c:4150 ../../standalone/drakbackup_.c:4227
+#: ../../standalone/drakbackup_.c:4812 ../../standalone/drakbackup_.c:4889
msgid ""
" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
-#: ../../standalone/drakbackup_.c:4152 ../../standalone/drakbackup_.c:4229
+#: ../../standalone/drakbackup_.c:4814 ../../standalone/drakbackup_.c:4891
msgid ""
" This program is free software; you can redistribute it and/or modify\n"
" it under the terms of the GNU General Public License as published by\n"
@@ -11495,7 +12016,7 @@ msgstr ""
"sa ovim programom; ako ne, pičite na Free Software Foundation,\n"
"Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
-#: ../../standalone/drakbackup_.c:4166
+#: ../../standalone/drakbackup_.c:4828
msgid ""
"Description:\n"
"\n"
@@ -11573,7 +12094,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:4204
+#: ../../standalone/drakbackup_.c:4866
msgid ""
"options description:\n"
"\n"
@@ -11591,7 +12112,7 @@ msgstr ""
"no čto je počaljete posluŸitelju.\n"
"\n"
-#: ../../standalone/drakbackup_.c:4213
+#: ../../standalone/drakbackup_.c:4875
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -11612,7 +12133,7 @@ msgstr ""
"mapu, i izgubit æete sve podatke. VaŸno je biti\n"
"oprezan i ne mijenjati podatke u pohrani ruèno.\n"
-#: ../../standalone/drakbackup_.c:4243
+#: ../../standalone/drakbackup_.c:4905
msgid ""
"Description:\n"
"\n"
@@ -11731,9 +12252,9 @@ msgid "Synchronization tool"
msgstr ""
# ../../share/compssUsers
-#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:85
-#: ../../standalone/drakbug_.c:150 ../../standalone/drakbug_.c:152
-#: ../../standalone/drakbug_.c:156
+#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:86
+#: ../../standalone/drakbug_.c:151 ../../standalone/drakbug_.c:153
+#: ../../standalone/drakbug_.c:157
#, fuzzy
msgid "Standalone Tools"
msgstr "Konzolni Alati"
@@ -11786,26 +12307,26 @@ msgstr "Printerdrake"
msgid "Configuration Wizards"
msgstr "Èarobnjak mreŸnih postavki"
-#: ../../standalone/drakbug_.c:96
+#: ../../standalone/drakbug_.c:97
#, fuzzy
msgid "Application:"
msgstr "Provjera autentiènosti"
-#: ../../standalone/drakbug_.c:97
+#: ../../standalone/drakbug_.c:98
#, fuzzy
msgid "Package: "
msgstr "Odabir paketa"
-#: ../../standalone/drakbug_.c:98
+#: ../../standalone/drakbug_.c:99
msgid "Kernel:"
msgstr ""
-#: ../../standalone/drakbug_.c:99
+#: ../../standalone/drakbug_.c:100
#, fuzzy
msgid "Release: "
msgstr "Molim prièekajte"
-#: ../../standalone/drakbug_.c:114
+#: ../../standalone/drakbug_.c:115
msgid ""
"\n"
"\n"
@@ -11817,21 +12338,21 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbug_.c:135
+#: ../../standalone/drakbug_.c:136
#, fuzzy
msgid "Report"
msgstr "port"
-#: ../../standalone/drakbug_.c:165
+#: ../../standalone/drakbug_.c:166
#, fuzzy
msgid "Not installed"
msgstr "Post deinstalacija"
-#: ../../standalone/drakbug_.c:182
+#: ../../standalone/drakbug_.c:183
msgid "connecting to Bugzilla wizard ..."
msgstr ""
-#: ../../standalone/drakbug_.c:189
+#: ../../standalone/drakbug_.c:190
#, fuzzy
msgid "No browser available! Please install one"
msgstr "Screenshotovi æe biti raspoloŸivi poslije instalaciju u %s"
@@ -12280,7 +12801,7 @@ msgid "Font List"
msgstr "Popis fontova"
#: ../../standalone/drakfont_.c:909
-msgid "Choose the applications that will support the fonts :"
+msgid "Choose the applications that will support the fonts:"
msgstr "Izaberite aplikacije koje æe podrŸavati fontove :"
#: ../../standalone/drakfont_.c:918
@@ -12351,19 +12872,19 @@ msgstr "Ukloni fontove s vačeg sustava"
msgid "Post Uninstall"
msgstr "Post deinstalacija"
-#: ../../standalone/drakgw_.c:42 ../../standalone/drakgw_.c:195
+#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:188
msgid "Internet Connection Sharing"
msgstr "Dijeljenje Internet Veze"
-#: ../../standalone/drakgw_.c:121
+#: ../../standalone/drakgw_.c:119
msgid "Sorry, we support only 2.4 kernels."
msgstr ""
-#: ../../standalone/drakgw_.c:133
+#: ../../standalone/drakgw_.c:130
msgid "Internet Connection Sharing currently enabled"
msgstr "Dijeljenje veze prema internetu je trenutno omoguæeno"
-#: ../../standalone/drakgw_.c:134
+#: ../../standalone/drakgw_.c:131
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -12375,31 +12896,31 @@ msgstr ""
"\n"
"©to Ÿelite napraviti?"
-#: ../../standalone/drakgw_.c:138
+#: ../../standalone/drakgw_.c:135
msgid "disable"
msgstr "onemoguæi"
-#: ../../standalone/drakgw_.c:138 ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:135 ../../standalone/drakgw_.c:160
msgid "dismiss"
msgstr "odustani"
-#: ../../standalone/drakgw_.c:138 ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:135 ../../standalone/drakgw_.c:160
msgid "reconfigure"
msgstr "ponovno postavi"
-#: ../../standalone/drakgw_.c:141
+#: ../../standalone/drakgw_.c:138
msgid "Disabling servers..."
msgstr "Onemoguæujem posluŸitelje..."
-#: ../../standalone/drakgw_.c:149
+#: ../../standalone/drakgw_.c:146
msgid "Internet connection sharing is now disabled."
msgstr "Dijeljenje veze prema Internetu je trenutno onemoguæeno."
-#: ../../standalone/drakgw_.c:158
+#: ../../standalone/drakgw_.c:155
msgid "Internet Connection Sharing currently disabled"
msgstr "Dijeljenje veze prema Internetu je trenutno onemoguæeno"
-#: ../../standalone/drakgw_.c:159
+#: ../../standalone/drakgw_.c:156
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
@@ -12411,19 +12932,19 @@ msgstr ""
"\n"
"©to Ÿelite napraviti?"
-#: ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:160
msgid "enable"
msgstr "omoguæi"
-#: ../../standalone/drakgw_.c:170
+#: ../../standalone/drakgw_.c:167
msgid "Enabling servers..."
msgstr "Omoguæujem posluŸitelje..."
-#: ../../standalone/drakgw_.c:175
+#: ../../standalone/drakgw_.c:172
msgid "Internet connection sharing is now enabled."
msgstr "Dijeljenje veze prema internetu je trenutno omoguæeno."
-#: ../../standalone/drakgw_.c:196
+#: ../../standalone/drakgw_.c:189
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
"With that feature, other computers on your local network will be able to use "
@@ -12439,21 +12960,21 @@ msgstr ""
"Upozorenje: trebati æete primjenjeni MreŸni Uređaj za postavljanje lokalne "
"mreŸe (LAN)."
-#: ../../standalone/drakgw_.c:222
+#: ../../standalone/drakgw_.c:215
#, c-format
msgid "Interface %s (using module %s)"
msgstr "Međusklop %s (koristi modul %s)"
-#: ../../standalone/drakgw_.c:223
+#: ../../standalone/drakgw_.c:216
#, c-format
msgid "Interface %s"
msgstr "Međusklop %s"
-#: ../../standalone/drakgw_.c:231
+#: ../../standalone/drakgw_.c:224
msgid "No network adapter on your system!"
msgstr "Nema mreŸnog adaptera na vačem sustavu!"
-#: ../../standalone/drakgw_.c:232
+#: ../../standalone/drakgw_.c:225
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
@@ -12461,11 +12982,11 @@ msgstr ""
"Nije pronađen niti jedan mreŸni adapter na vačem sustavu. Molimo pokrenite "
"hardware-ski konfiguracijski alat."
-#: ../../standalone/drakgw_.c:238
+#: ../../standalone/drakgw_.c:231
msgid "Network interface"
msgstr "MreŸni međusklop"
-#: ../../standalone/drakgw_.c:239
+#: ../../standalone/drakgw_.c:232
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -12480,18 +13001,18 @@ msgstr ""
"\n"
"Postaviti æu lokalnu mreŸu (LAN) sa tim adapterom."
-#: ../../standalone/drakgw_.c:248
+#: ../../standalone/drakgw_.c:241
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
msgstr ""
"Molimo odaberite koji mreŸni adapter æe biti povezan na vaču lokalnu mreŸu."
-#: ../../standalone/drakgw_.c:266
+#: ../../standalone/drakgw_.c:259
msgid "Network interface already configured"
msgstr "MreŸno suèelje veæ podečeno"
-#: ../../standalone/drakgw_.c:267
+#: ../../standalone/drakgw_.c:260
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -12506,15 +13027,15 @@ msgstr ""
"\n"
"MoŸete je podesiti i ruèno, ali trebate znati čto radite."
-#: ../../standalone/drakgw_.c:272
+#: ../../standalone/drakgw_.c:265
msgid "Automatic reconfiguration"
msgstr "Automatska rekonfiguracija"
-#: ../../standalone/drakgw_.c:273
+#: ../../standalone/drakgw_.c:266
msgid "Show current interface configuration"
msgstr "PokaŸi trenutne postavke suèelja"
-#: ../../standalone/drakgw_.c:275
+#: ../../standalone/drakgw_.c:268
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -12531,7 +13052,7 @@ msgstr ""
"IP atribut: %s\n"
"Pokretaèki program: %s"
-#: ../../standalone/drakgw_.c:287
+#: ../../standalone/drakgw_.c:280
msgid ""
"I can keep your current configuration and assume you already set up a DHCP "
"server; in that case please verify I correctly read the C-Class Network that "
@@ -12551,54 +13072,42 @@ msgstr ""
"posluŸitelj.\n"
"\n"
-#: ../../standalone/drakgw_.c:292
+#: ../../standalone/drakgw_.c:285
msgid "C-Class Local Network"
msgstr "C-Class lokalna mreŸa"
-#: ../../standalone/drakgw_.c:293
+#: ../../standalone/drakgw_.c:286
msgid "(This) DHCP Server IP"
msgstr "IP (ovog) DHCP posluŸitelja"
-#: ../../standalone/drakgw_.c:294
+#: ../../standalone/drakgw_.c:287
msgid "Re-configure interface and DHCP server"
msgstr "Re-konfiguriraj suèelje i DHCP posluŸitelj"
-#: ../../standalone/drakgw_.c:301
+#: ../../standalone/drakgw_.c:294
msgid "The Local Network did not finish with `.0', bailing out."
msgstr "Lokalna mreŸa nije zavrčila sa '.0', odustajem."
-#: ../../standalone/drakgw_.c:312
+#: ../../standalone/drakgw_.c:305
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr ""
"Potencijalni LAN adresni konflikt je pronađen u trenutnoj konfiguraciji %s!\n"
-#: ../../standalone/drakgw_.c:320
-msgid "Firewalling configuration detected!"
-msgstr "Detektirana je vatrozidna konfiguracija!"
-
-#: ../../standalone/drakgw_.c:321
-msgid ""
-"Warning! An existing firewalling configuration has been detected. You may "
-"need some manual fix after installation."
-msgstr ""
-"Upozorenje! Postojeæa vatrozidna konfiguracija je pronađena. Morati æete "
-"ruèno popraviti neke dijelove nakon instalacije."
-
-#: ../../standalone/drakgw_.c:328
+#: ../../standalone/drakgw_.c:315
msgid "Configuring..."
msgstr "Podečavam..."
-#: ../../standalone/drakgw_.c:329
+#: ../../standalone/drakgw_.c:316
msgid "Configuring scripts, installing software, starting servers..."
msgstr "Podečavam skriptove, instaliram softver, pokreæem posluŸitelje..."
-#: ../../standalone/drakgw_.c:365
+#: ../../standalone/drakgw_.c:352
#, c-format
msgid "Problems installing package %s"
msgstr "Problem prilikom instaliranja paketa %s"
-#: ../../standalone/drakgw_.c:549
+#: ../../standalone/drakgw_.c:485
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
@@ -12608,23 +13117,23 @@ msgstr ""
"Sada moŸete dijeliti vaču internet vezu sa drugim raèunalima na vačoj "
"lokalnoj mreŸi, koristeæi automatsku mreŸnu konfiguraciju (DHCP)."
-#: ../../standalone/drakgw_.c:566
+#: ../../standalone/drakgw_.c:504
msgid "The setup has already been done, but it's currently disabled."
msgstr "Postavljanje je veæ urađeno, ali je trenutno onemoguæeno."
-#: ../../standalone/drakgw_.c:567
+#: ../../standalone/drakgw_.c:505
msgid "The setup has already been done, and it's currently enabled."
msgstr "Postavljanje je veæ urađeno, ali je trenutno omoguæeno."
-#: ../../standalone/drakgw_.c:568
+#: ../../standalone/drakgw_.c:506
msgid "No Internet Connection Sharing has ever been configured."
msgstr "Dijeljenje veze prema internetu nije bilo konfigurirano."
-#: ../../standalone/drakgw_.c:573
+#: ../../standalone/drakgw_.c:511
msgid "Internet connection sharing configuration"
msgstr "Postavke dijeljenja internet veze"
-#: ../../standalone/drakgw_.c:580
+#: ../../standalone/drakgw_.c:518
#, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -12639,6 +13148,167 @@ msgstr ""
"\n"
"Kliknite na Postavke ukoliko Ÿelite pokreniti èarobnjak za postavljanja."
+#: ../../standalone/draksound_.c:46
+#, fuzzy
+msgid "No Sound Card detected!"
+msgstr "Nema TV kartice!"
+
+#: ../../standalone/draksound_.c:47
+#, fuzzy
+msgid ""
+"No Sound Card has been detected on your machine. Please verify that a Linux-"
+"supported Sound Card is correctly plugged in.\n"
+"\n"
+"\n"
+"You can visit our hardware database at:\n"
+"\n"
+"\n"
+"http://www.linux-mandrake.com/en/hardware.php3"
+msgstr ""
+"TV kartica nije prepoznata na vačem raèunalu. Provjerite da li je Linux-"
+"podrŸana Video/TV kartica ispravno ukljuèena.\n"
+"\n"
+"\n"
+"MoŸete posjetiti naču bazu hardvera na:\n"
+"\n"
+"\n"
+"http://www.linux-mandrake.com/en/hardware.php3"
+
+#: ../../standalone/draksplash_.c:32
+msgid "package ImageMagick is required for correct working"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:76
+#, fuzzy
+msgid "first step creation"
+msgstr "pravljenje boot diskete"
+
+#: ../../standalone/draksplash_.c:77
+#, fuzzy
+msgid "final resolution"
+msgstr "Rezolucija"
+
+#: ../../standalone/draksplash_.c:78 ../../standalone/draksplash_.c:170
+#, fuzzy
+msgid "choose image file"
+msgstr "Izaberite datoteku"
+
+#: ../../standalone/draksplash_.c:79
+#, fuzzy
+msgid "Theme name"
+msgstr "Ime sharea"
+
+#: ../../standalone/draksplash_.c:81
+msgid "make bootsplash step 2"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:82
+#, fuzzy
+msgid "go to lilosplash configuration"
+msgstr "Postava nakon instalacije"
+
+#: ../../standalone/draksplash_.c:83
+#, fuzzy
+msgid "quit"
+msgstr "Zavrči"
+
+#: ../../standalone/draksplash_.c:84
+#, fuzzy
+msgid "save theme"
+msgstr "Instaliraj sustav"
+
+#: ../../standalone/draksplash_.c:85
+msgid "browse"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:98 ../../standalone/draksplash_.c:159
+#, fuzzy
+msgid "Configure bootsplash picture"
+msgstr "Podečavanje servisa"
+
+#: ../../standalone/draksplash_.c:99
+msgid "x coordinate of text box in number of character"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:100
+msgid "y coordinate of text box in number of character"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:101
+msgid "text width"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:102
+msgid "text box height"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:103
+msgid "the progress bar x coordinate of its upper left corner"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:104
+msgid "the progress bar y coordinate of its upper left corner"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:105
+msgid "the width of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:106
+msgid "the heigth of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:107
+msgid "the color of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:119
+#, fuzzy
+msgid "go back"
+msgstr "Loopback"
+
+#: ../../standalone/draksplash_.c:120
+#, fuzzy
+msgid "preview"
+msgstr "uređaj"
+
+#: ../../standalone/draksplash_.c:121
+#, fuzzy
+msgid "choose color"
+msgstr "Odaberite monitor"
+
+#: ../../standalone/draksplash_.c:124
+msgid "Display logo on Console"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:125
+msgid "Make kernel message quiet by default"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:161 ../../standalone/draksplash_.c:330
+#, c-format
+msgid "This theme haven't yet any bootsplash in %s !"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:213
+msgid "saving Bootsplash theme..."
+msgstr ""
+
+#: ../../standalone/draksplash_.c:436
+#, fuzzy
+msgid "ProgressBar color selection"
+msgstr "Izabir modela pisaèa"
+
+#: ../../standalone/draksplash_.c:454
+#, fuzzy
+msgid "You must choose an image file first!"
+msgstr "Morate izabrati/upisati pisaè/uređaj!"
+
+#: ../../standalone/draksplash_.c:463
+#, fuzzy
+msgid "Generating preview ..."
+msgstr "Otkrivanje uređaja ..."
+
#: ../../standalone/drakxtv_.c:49
msgid ""
"XawTV isn't installed!\n"
@@ -12727,11 +13397,11 @@ msgstr ""
"upičite svoj tv standard i zemlju"
#: ../../standalone/drakxtv_.c:109
-msgid "TV norm :"
+msgid "TV norm:"
msgstr "TV standard :"
#: ../../standalone/drakxtv_.c:110
-msgid "Area :"
+msgid "Area:"
msgstr "Podruèje :"
#: ../../standalone/drakxtv_.c:114
@@ -12816,7 +13486,7 @@ msgstr "Ne mogu pokrenuti Ÿivu nadogradnju !!!\n"
msgid "The change is done, but to be effective you must logout"
msgstr "Promjena je izvrčena, ali da bi imala uèinak, morate se odlogirati"
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:517
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:515
msgid "logdrake"
msgstr "logdrake"
@@ -12994,8 +13664,9 @@ msgid "service setting"
msgstr "postavljanje servisa"
#: ../../standalone/logdrake_.c:431
+#, fuzzy
msgid ""
-"You will receive an alert if one of the selected service is no more running"
+"You will receive an alert if one of the selected services is no more running"
msgstr "Primit æete upozorenje ako jedan od izabranih servisa viče ne radi"
#: ../../standalone/logdrake_.c:443
@@ -13015,19 +13686,19 @@ msgstr "postava upozoravanja"
msgid "Please enter your email address below "
msgstr "Upičite svoju lozinku"
-#: ../../standalone/logdrake_.c:499
+#: ../../standalone/logdrake_.c:497
msgid "Save as.."
msgstr "Snimi kao.."
-#: ../../standalone/mousedrake_.c:43
+#: ../../standalone/mousedrake_.c:45
msgid "Please, choose the type of your mouse."
msgstr "Molim izaberite koju vrstu miča koristite."
-#: ../../standalone/mousedrake_.c:57
+#: ../../standalone/mousedrake_.c:58
msgid "Emulate third button?"
msgstr "Emuliranje treæe tipke?"
-#: ../../standalone/printerdrake_.c:48
+#: ../../standalone/printerdrake_.c:57
#, fuzzy
msgid "Reading printer data ..."
msgstr "Èitam podatke o pisaèu ..."
@@ -13040,21 +13711,32 @@ msgstr "Otkrivanje uređaja ..."
msgid "Test ports"
msgstr "Iskučaj portove"
-#: ../../standalone/scannerdrake_.c:52
+#: ../../standalone/scannerdrake_.c:53 ../../standalone/scannerdrake_.c:68
+#: ../../standalone/scannerdrake_.c:81
#, c-format
-msgid "%s found on %s, configure it ?"
+msgid "The %s is not supported by this version of Mandrake Linux."
+msgstr ""
+
+#: ../../standalone/scannerdrake_.c:56
+#, fuzzy, c-format
+msgid "%s found on %s, configure it?"
msgstr "%s nađen na %s, podesi?"
#: ../../standalone/scannerdrake_.c:59
+#, c-format
+msgid "%s is not in the scanner database, configure it manually?"
+msgstr ""
+
+#: ../../standalone/scannerdrake_.c:65
msgid "Select a scanner"
msgstr "Odaberite skener"
-#: ../../standalone/scannerdrake_.c:79
+#: ../../standalone/scannerdrake_.c:93
#, c-format
msgid "This %s scanner is unsupported"
msgstr "Skener %s nije podrŸan"
-#: ../../standalone/scannerdrake_.c:93
+#: ../../standalone/scannerdrake_.c:107
#, c-format
msgid ""
"Scannerdrake was not able to detect your %s scanner.\n"
@@ -13063,11 +13745,11 @@ msgstr ""
"Scannerdrake nije uspio prepoznati vač %s skener.\n"
"Izaberite uređaj gdje je skener ukljuèen"
-#: ../../standalone/scannerdrake_.c:95
+#: ../../standalone/scannerdrake_.c:109
msgid "choose device"
msgstr "Izaberite uređaj"
-#: ../../standalone/scannerdrake_.c:101
+#: ../../standalone/scannerdrake_.c:115
#, c-format
msgid ""
"This %s scanner must be configured by printerdrake.\n"
@@ -13078,7 +13760,7 @@ msgstr ""
"MoŸete pokrenuti printerdrake iz Mandrake kontrolnog centra uHardver "
"odjeljku."
-#: ../../standalone/scannerdrake_.c:106
+#: ../../standalone/scannerdrake_.c:120
#, c-format
msgid ""
"Your %s scanner has been configured.\n"
@@ -13089,48 +13771,18 @@ msgstr ""
"MoŸete sada skenirati dokumente koričtenjem ''XSanea'' izMultimedija/Grafika "
"u aplikacijskom izborniku."
-#: ../../standalone/service_harddrake_.c:57
+#: ../../standalone/service_harddrake_.c:39
#, c-format
msgid "Some devices in the \"%s\" hardware class were removed:\n"
msgstr ""
-#: ../../standalone/service_harddrake_.c:61
+#: ../../standalone/service_harddrake_.c:43
#, c-format
msgid ""
"\n"
"Some devices in the %s class were added:\n"
msgstr ""
-#: ../../standalone/tinyfirewall_.c:30
-msgid "Firewalling Configuration"
-msgstr "Vatrozidne postave"
-
-#: ../../standalone/tinyfirewall_.c:43
-msgid "Firewalling configuration"
-msgstr "Vatrozidne postave"
-
-#: ../../standalone/tinyfirewall_.c:78
-msgid ""
-"Firewalling\n"
-"\n"
-"You already have set up a firewall.\n"
-"Click on Configure to change or remove the firewall"
-msgstr ""
-"Vatrozidi\n"
-"\n"
-"Veæ ste postavili vatrozid.\n"
-"Kliknite na Podesi za promjenu ili brisanje vatrozida"
-
-#: ../../standalone/tinyfirewall_.c:82
-msgid ""
-"Firewalling\n"
-"\n"
-"Click on Configure to set up a standard firewall"
-msgstr ""
-"Vatrozidi\n"
-"\n"
-"Kliknite na Podesi za postavljanje standardnog vatrozida"
-
#: ../../steps.pm_.c:14
msgid "Choose your language"
msgstr "Odaberite jezik"
@@ -13203,226 +13855,7 @@ msgstr "Instaliraj dogradnje sustava"
msgid "Exit install"
msgstr "Izlaz iz instalacije"
-#: ../../tinyfirewall.pm_.c:9
-msgid ""
-"tinyfirewall configurator\n"
-"\n"
-"This configures a personal firewall for this Mandrake Linux machine.\n"
-"For a powerful dedicated firewall solution, please look to the\n"
-"specialized MandrakeSecurity Firewall distribution."
-msgstr ""
-"tinyfirewall podečavanje\n"
-"\n"
-"Ovo podečava osobni vatrozid za ovo Mandrake Linux raèunalo.\n"
-"Za snaŸno primjenjena vatrozidna rječenja, molimo pogledajte\n"
-"specijaliziranu MandrakeSecurity Firewall distribuciju."
-
-#: ../../tinyfirewall.pm_.c:14
-msgid ""
-"We'll now ask you questions about which services you'd like to allow\n"
-"the Internet to connect to. Please think carefully about these\n"
-"questions, as your computer's security is important.\n"
-"\n"
-"Please, if you're not currently using one of these services, firewall\n"
-"it off. You can change this configuration anytime you like by\n"
-"re-running this application!"
-msgstr ""
-"Sada æemo vas pitati nekoliko pitanja o servisima koje Ÿelite dozvoliti\n"
-"Internetu da se spoji. Molimo razmislite paŸljivo o tim\n"
-"pitanjima, jer sigurnost vačeg raèunala je vaŸna.\n"
-"\n"
-"Molimo, ukoliko ne koristite trenutno jedan od tih servisa, postavite\n"
-"vatrozid. MoŸete promjeniti ovu konfiguraciju bilo kad zaŸelite\n"
-"pokretanjem ponovno ove aplikacije!"
-
-#: ../../tinyfirewall.pm_.c:21
-msgid ""
-"Are you running a web server on this machine that you need the whole\n"
-"Internet to see? If you are running a webserver that only needs to be\n"
-"accessed by this machine, you can safely answer NO here.\n"
-"\n"
-msgstr ""
-"Da li imate pokrenut web posluŸitelj na ovom raèunalu kojeg treba cijeli\n"
-"Internet vidjeti? Ukoliko trebate web posluŸitelj kojemu æe biti pristupan\n"
-"samo sa ovog raèunala, moŸete sigurno odgovoriti NE ovdje.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:26
-msgid ""
-"Are you running a name server on this machine? If you didn't set one\n"
-"up to give away IP and zone information to the whole Internet, please\n"
-"answer no.\n"
-"\n"
-msgstr ""
-"Da li imate pokrenut imenski posluŸitelj na ovom raèunalu? Ukoliko niste "
-"postavili jedan\n"
-"da daje IP i informacije o zoni cijelom Internet-u, molimo\n"
-"odgovorite ne.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:31
-msgid ""
-"Do you want to allow incoming Secure Shell (ssh) connections? This\n"
-"is a telnet-replacement that you might use to login. If you're using\n"
-"telnet now, you should definitely switch to ssh. telnet is not\n"
-"encrypted -- so some attackers can steal your password if you use\n"
-"it. ssh is encrypted and doesn't allow for this eavesdropping."
-msgstr ""
-"Da li Ÿelite omoguæiti dolazeæe Secure Shell (ssh) veze? To je\n"
-"je telnet zamjena čto moŸete koristiti za prijavljivanje. Ako sada "
-"koristite\n"
-"telnet, trebali biste definitivno se prebaciti na ssh. telnet nije\n"
-"enkriptiran -- tako da neki napadaèi mogu ukrasti vače lozinke ako ga "
-"koristite\n"
-"ssh je enkriptiran i nedozvoljava prislučkivanje (sniffanje)."
-
-#: ../../tinyfirewall.pm_.c:36
-msgid ""
-"Do you want to allow incoming telnet connections?\n"
-"This is horribly unsafe, as we explained in the previous screen. We\n"
-"strongly recommend answering No here and using ssh in place of\n"
-"telnet.\n"
-msgstr ""
-"Da li Ÿelite dopustiti dolazeæe telnet veze?\n"
-"Ovo je uŸasno nesigurno, kao čto smo objasnili na prethodnom zaslonu. Mi\n"
-"jako preporuèamo odgovaranjem Ne ovdje i koričtenjem ssh-a umjesto\n"
-"telnet-a.\n"
-
-#: ../../tinyfirewall.pm_.c:41
-msgid ""
-"Are you running an FTP server here that you need accessible to the\n"
-"Internet? If you are, we strongly recommend that you only use it for\n"
-"Anonymous transfers. Any passwords sent by FTP can be stolen by some\n"
-"attackers, since FTP also uses no encryption for transferring passwords.\n"
-msgstr ""
-"Da li imate pokrenut FTP posluŸitelj ovdje koji treba biti dostupan\n"
-"Internet-u? Ukoliko da, jako preporuèamo da ga koristite samo za\n"
-"anonimni prijenos. Svaka lozinka prenesena FTP-om moŸe biti ukradena od\n"
-"nekih napadaèa, jer FTP također ne koristi enkripciju za prijenos lozinki.\n"
-
-#: ../../tinyfirewall.pm_.c:46
-msgid ""
-"Are you running a mail server here? If you're sending you \n"
-"messages through pine, mutt or any other text-based mail client,\n"
-"you probably are. Otherwise, you should firewall this off.\n"
-"\n"
-msgstr ""
-"Da li imate pokrenut mail posluŸitelj ovdje? Ako čaljete vače \n"
-"poruke kroz pine, mutt ili neki drugi tekst-bazirani mail klijent,\n"
-"vjerojatno ga koristite. Ako ne, trebali biste ga odijeliti vatrozidom.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:51
-msgid ""
-"Are you running a POP or IMAP server here? This would\n"
-"be used to host non-web-based mail accounts for people via \n"
-"this machine.\n"
-"\n"
-msgstr ""
-"Da li imate pokrenut POP ili IMAP posluŸitelj ovdje? Ovo moŸe\n"
-"koristiti za posluŸivanje ne-web-baziranih mail raèuna za osobe preko\n"
-"ovog raèunala.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:56
-msgid ""
-"You appear to be running a 2.2 kernel. If your network IP\n"
-"is automatically set by a computer in your home or office \n"
-"(dynamically assigned), we need to allow for this. Is\n"
-"this the case?\n"
-msgstr ""
-"Èini se da imate pokrenut 2.2 kernel. Ukoliko je vača IP\n"
-"adresa automatski postavljena u vačem domu ili uredu\n"
-"(dinamièki dodjeljenja), moramo to dozvoliti. Da\n"
-"li je to sluèaj?\n"
-
-#: ../../tinyfirewall.pm_.c:61
-msgid ""
-"Is your computer getting time syncronized to another computer?\n"
-"Mostly, this is used by medium-large Unix/Linux organizations\n"
-"to synchronize time for logging and such. If you're not part\n"
-"of a larger office and haven't heard of this, you probably \n"
-"aren't."
-msgstr ""
-"Da li se vače raèunalo vremenski sinkronizira sa drugim raèunalom?\n"
-"Veæinom, ovo se koristi kod srednje-velikih Unix/Linux organizacija\n"
-"za sinkronizaciju vremena za zapisivanje/logiranje i slièno. Ukoliko\n"
-"niste dio veæeg ureda ili niste èuli za ovo, vjerojatno\n"
-"ne."
-
-#: ../../tinyfirewall.pm_.c:66
-msgid ""
-"Configuration complete. May we write these changes to disk?\n"
-"\n"
-"\n"
-"\n"
-msgstr ""
-"Podečavanje zavrčeno. MoŸemo li zapisati ove promjene na disk?\n"
-"\n"
-"\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:82
-#, c-format
-msgid "Can't open %s: %s\n"
-msgstr "Ne mogu otvoriti %s: %s\n"
-
-#: ../../tinyfirewall.pm_.c:84
-#, c-format
-msgid "Can't open %s for writing: %s\n"
-msgstr "Ne mogu otvoriti %s za pisanje: %s\n"
-
-#: ../../tinyfirewall.pm_.c:178
-msgid "No I don't need DHCP"
-msgstr "Ne, ne trebam DHCP"
-
-#: ../../tinyfirewall.pm_.c:178
-msgid "Yes I need DHCP"
-msgstr "Da, trebam DHCP"
-
-#: ../../tinyfirewall.pm_.c:179
-msgid "No I don't need NTP"
-msgstr "Ne, ne trebam NTP"
-
-#: ../../tinyfirewall.pm_.c:179
-msgid "Yes I need NTP"
-msgstr "Da, trebam NTP"
-
-#: ../../tinyfirewall.pm_.c:180 ../../tinyfirewall.pm_.c:184
-msgid "Don't Save"
-msgstr "Nemoj snimiti"
-
-#: ../../tinyfirewall.pm_.c:180 ../../tinyfirewall.pm_.c:184
-#: ../../tinyfirewall.pm_.c:204
-msgid "Save & Quit"
-msgstr "Snimi & izađi"
-
-#: ../../tinyfirewall.pm_.c:195 ../../tinyfirewall.pm_.c:199
-msgid "Firewall Configuration Wizard"
-msgstr "Èarobnjak za postavu vatrozida"
-
-#: ../../tinyfirewall.pm_.c:197
-msgid "No (firewall this off from the internet)"
-msgstr "Ne (sadrŸi ovo s interneta na vatrozidu)"
-
-#: ../../tinyfirewall.pm_.c:198
-msgid "Yes (allow this through the firewall)"
-msgstr "Da (propusti ovo kroz vatrozid)"
-
-#: ../../tinyfirewall.pm_.c:230
-msgid "Please Wait... Verifying installed packages"
-msgstr "Molimo prièekajte... Provjeravam instalirane pakete"
-
-#: ../../tinyfirewall.pm_.c:236
-#, c-format
-msgid ""
-"Failure installing the needed packages : %s and Bastille.\n"
-" Try to install them manually."
-msgstr ""
-"Neuspjela instalacija potrebnih paketa : %s i Bastille.\n"
-" Pokučajte ih instalirati ruèno."
-
-#: ../../ugtk.pm_.c:619
+#: ../../ugtk.pm_.c:594
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-2,*-r-*"
@@ -13566,6 +13999,10 @@ msgstr ""
msgid "Graphical Environment"
msgstr "Grafièko OkruŸje"
+#: ../../share/compssUsers:999
+msgid "Development"
+msgstr "Razvoj"
+
# ../../share/compssUsers
#: ../../share/compssUsers:999
msgid "Apache, Pro-ftpd"
@@ -13697,45 +14134,332 @@ msgstr "Multimedija - CD prŸenje"
msgid "Scientific Workstation"
msgstr "Znanstvena radna stanica"
-#~ msgid "$mode: $warning"
-#~ msgstr "$mode: $warning"
+#~ msgid ""
+#~ "The first time you try the X configuration, you may not be very "
+#~ "satisfied\n"
+#~ "with its display (screen is too small, shifted left or right...). Hence,\n"
+#~ "even if X starts up correctly, DrakX then asks you if the configuration\n"
+#~ "suits you. It will also propose to change it by displaying a list of "
+#~ "valid\n"
+#~ "modes it could find, asking you to select one.\n"
+#~ "\n"
+#~ "As a last resort, if you still cannot get X to work, choose \"Change\n"
+#~ "graphics card\", select \"Unlisted card\", and when prompted on which\n"
+#~ "server, choose \"FBDev\". This is a failsafe option which works with any\n"
+#~ "modern graphics card. Then choose \"Test again\" to be sure."
+#~ msgstr ""
+#~ "Kada prvi put isprobate X konfiguraciju, moŸda neæete biti vrlo "
+#~ "zadovoljni\n"
+#~ "prikazom (premaleni ekran, pomaknut ulijevo ili udesno...). Stoga, i ako "
+#~ "se\n"
+#~ "Xi pokrenu normalno, DrakX æe vas pitati da li vam postavke odgovaraju. "
+#~ "Također\n"
+#~ "æe predloŸiti da ih promijenite izabiranjem jednog od ispravnih modova sa "
+#~ "popisa\n"
+#~ " pronađenih.\n"
+#~ "\n"
+#~ "Kao posljednju mjeru, ako joč uvijek niste uspjeli natjerati Xe da rade, "
+#~ "izaberite\n"
+#~ "\"Promijeni grafièku karticu\", opcija \"Nenavedena kartica\", i kada "
+#~ "budete\n"
+#~ "upitani za posluŸitelj, izaberite \"FBDev\". Ovo je sigurnosna opcija "
+#~ "koja radi\n"
+#~ "sa svakom suvremenom grafièkom karticom. Potom izaberite \"Ponovno "
+#~ "isprobaj\" da\n"
+#~ "biste bili sigurni."
+
+#~ msgid "Internet and Messaging"
+#~ msgstr "Internet i slanje poruka"
+
+#~ msgid "Multimedia and Graphics"
+#~ msgstr "Multimedija - Grafika"
-#, fuzzy
#~ msgid ""
-#~ "This level is to be used with care. It makes your system more easy to "
-#~ "use,\n"
-#~ " but very sensitive: it must not be used for a machine "
-#~ "connected to others\n"
-#~ " or to the Internet. There is no password access."
+#~ "Mandrake Linux 8.2 provides 11 different graphical desktop environments "
+#~ "and window managers to choose from including GNOME 1.4, KDE 2.2.2, Window "
+#~ "Maker 0.8, and the rest"
#~ msgstr ""
-#~ "Ova razina se treba koristiti sa paŸnjom. Ona èini vač sustav mnogo "
-#~ "lakčim za koričtenje,\n"
-#~ "ali vrlo osjetljiv: ne smije biti koričten za raèunala koja su povezana u "
-#~ "mreŸi ili na Internet. Naime, nema lozinke za pristup."
+#~ "Mandrake Linux 8.2 ima izbor od 11 razlièitih grafièkih suèelja za radni "
+#~ "stol i prozorne menađere koji ukljuèuje GNOME 1.4, KDE 2.2.2, WindowMaker "
+#~ "0.8 i ostale"
+
+#~ msgid "Server Software"
+#~ msgstr "PosluŸiteljski softver"
+
+#~ msgid "MandrakeCampus"
+#~ msgstr "MandrakeCampus"
-#, fuzzy
#~ msgid ""
-#~ "With this security level, the use of this system as a server becomes "
-#~ "possible.\n"
-#~ " The security is now high enough to use the system as a "
-#~ "server which can accept\n"
-#~ " connections from many clients. Note: if your machine is "
-#~ "only a client on the Internet, you should choose a lower level."
+#~ "Would you like to learn Linux simply, quickly, and for free? MandrakeSoft "
+#~ "provides free Linux training, as well as a way to test your progress, at "
+#~ "MandrakeCampus -- our online training center"
#~ msgstr ""
-#~ "Sa ovom sigurnosnom razinom, koričtenje ovog sustava kao posluŸitelj "
-#~ "postaje moguæe.\n"
-#~ "Sigurnost je sada toliko visoka da se sustav moŸe koristiti kao "
-#~ "posluŸitelj\n"
-#~ "koji prima zahtjeve od mnogo klijenata. Upozorenje: ako je vače raèunalo "
-#~ "samo klijent na Internetu, bolje da izaberete niŸu razinu."
+#~ "źelite li nauèiti Linux jednostavno, brzo i besplatno? MandrakeSoftvam "
+#~ "omoguæuje besplatnu Linux obuku, kao i naèin da provjerite svojnapredak, "
+#~ "u MandrakeCampusu -- načem online centru za obuku"
-#, fuzzy
-#~ msgid "Basic Options"
-#~ msgstr "Opcije"
+#~ msgid ""
+#~ "Quality support from the Linux Community, and from MandrakeSoft, is just "
+#~ "around the corner. And if you're already a Linux veteran, become an "
+#~ "\"Expert\" and share your knowledge at our support website"
+#~ msgstr ""
+#~ "Kvalitetna podrčka od Linux zajednice, kao i od MandrakeSofta, je iza "
+#~ "ugla.A ako veæ jeste Linux veteran, postanite \"Struènjak\" i podijelite "
+#~ "svojeznanje na načem websiteu za podrčku"
-#, fuzzy
-#~ msgid "Security Checks"
-#~ msgstr "Sigurnost"
+#~ msgid "MandrakeConsulting"
+#~ msgstr "MandrakConsulting"
+
+#~ msgid ""
+#~ "For all of your IT projects, our consultants are ready to analyze your "
+#~ "requirements and offer a customized solution. Benefit from MandrakeSoft's "
+#~ "vast experience as a Linux producer to provide a true IT alternative for "
+#~ "your business organization"
+#~ msgstr ""
+#~ "Za sve vače IT projekte, nači savjetnici su spremni analizirati "
+#~ "vačezahtjeve i ponuditi konkretno rječenje. Iskoristite "
+#~ "MandrakeSoftovogolemo iskustvo kao Linux stvaratelja da bi dobili "
+#~ "ozbiljnu IT alternativuvačoj poslovnoj organizaciji"
+
+#~ msgid "MandrakeStore"
+#~ msgstr "MandrakeStore"
+
+#~ msgid ""
+#~ "For more information on MandrakeSoft's Professional Services and "
+#~ "commercial offerings, please see the following web page:"
+#~ msgstr ""
+#~ "Za viče informacija o MandrakeSoftovim profesionalnim uslugama i "
+#~ "komercijalnimponudama, pogledajte web stranice:"
+
+#~ msgid "LBA (doesn't work on old BIOSes)"
+#~ msgstr "LBA (ne radi na starim BIOSima)"
+
+#~ msgid "You don't have any partitions!"
+#~ msgstr "Nemate niti jednu particiju!"
+
+#~ msgid ""
+#~ "DiskDrake failed to read correctly the partition table.\n"
+#~ "Continue at your own risk!"
+#~ msgstr ""
+#~ "DiskDrake nije uspio proèitati vaču particijsku tablice.\n"
+#~ "Nastavite o vlastitoj odgovornosti."
+
+#~ msgid ""
+#~ "I can't read your partition table, it's too corrupted for me :(\n"
+#~ "I'll try to go on blanking bad partitions"
+#~ msgstr ""
+#~ "Ne mogu proèitati vaču particijsku tablicu, previče je uničtena za mene :"
+#~ "(\n"
+#~ "Pokučati æu sa brisanjem ločih particija"
+
+#~ msgid ""
+#~ "Please Build backup before to restore it...\n"
+#~ " or verify that your path to save is correct."
+#~ msgstr ""
+#~ "Molimo sloŸite pohranu prije povrata...\n"
+#~ "ili provjerite da je putanja ispravna"
+
+#~ msgid "Firewalling Configuration"
+#~ msgstr "Vatrozidne postave"
+
+#~ msgid "Firewalling configuration"
+#~ msgstr "Vatrozidne postave"
+
+#~ msgid ""
+#~ "Firewalling\n"
+#~ "\n"
+#~ "You already have set up a firewall.\n"
+#~ "Click on Configure to change or remove the firewall"
+#~ msgstr ""
+#~ "Vatrozidi\n"
+#~ "\n"
+#~ "Veæ ste postavili vatrozid.\n"
+#~ "Kliknite na Podesi za promjenu ili brisanje vatrozida"
+
+#~ msgid ""
+#~ "Firewalling\n"
+#~ "\n"
+#~ "Click on Configure to set up a standard firewall"
+#~ msgstr ""
+#~ "Vatrozidi\n"
+#~ "\n"
+#~ "Kliknite na Podesi za postavljanje standardnog vatrozida"
+
+#~ msgid ""
+#~ "We'll now ask you questions about which services you'd like to allow\n"
+#~ "the Internet to connect to. Please think carefully about these\n"
+#~ "questions, as your computer's security is important.\n"
+#~ "\n"
+#~ "Please, if you're not currently using one of these services, firewall\n"
+#~ "it off. You can change this configuration anytime you like by\n"
+#~ "re-running this application!"
+#~ msgstr ""
+#~ "Sada æemo vas pitati nekoliko pitanja o servisima koje Ÿelite dozvoliti\n"
+#~ "Internetu da se spoji. Molimo razmislite paŸljivo o tim\n"
+#~ "pitanjima, jer sigurnost vačeg raèunala je vaŸna.\n"
+#~ "\n"
+#~ "Molimo, ukoliko ne koristite trenutno jedan od tih servisa, postavite\n"
+#~ "vatrozid. MoŸete promjeniti ovu konfiguraciju bilo kad zaŸelite\n"
+#~ "pokretanjem ponovno ove aplikacije!"
+
+#~ msgid ""
+#~ "Are you running a web server on this machine that you need the whole\n"
+#~ "Internet to see? If you are running a webserver that only needs to be\n"
+#~ "accessed by this machine, you can safely answer NO here.\n"
+#~ "\n"
+#~ msgstr ""
+#~ "Da li imate pokrenut web posluŸitelj na ovom raèunalu kojeg treba cijeli\n"
+#~ "Internet vidjeti? Ukoliko trebate web posluŸitelj kojemu æe biti "
+#~ "pristupan\n"
+#~ "samo sa ovog raèunala, moŸete sigurno odgovoriti NE ovdje.\n"
+#~ "\n"
+
+#~ msgid ""
+#~ "Are you running a name server on this machine? If you didn't set one\n"
+#~ "up to give away IP and zone information to the whole Internet, please\n"
+#~ "answer no.\n"
+#~ "\n"
+#~ msgstr ""
+#~ "Da li imate pokrenut imenski posluŸitelj na ovom raèunalu? Ukoliko niste "
+#~ "postavili jedan\n"
+#~ "da daje IP i informacije o zoni cijelom Internet-u, molimo\n"
+#~ "odgovorite ne.\n"
+#~ "\n"
+
+#~ msgid ""
+#~ "Do you want to allow incoming Secure Shell (ssh) connections? This\n"
+#~ "is a telnet-replacement that you might use to login. If you're using\n"
+#~ "telnet now, you should definitely switch to ssh. telnet is not\n"
+#~ "encrypted -- so some attackers can steal your password if you use\n"
+#~ "it. ssh is encrypted and doesn't allow for this eavesdropping."
+#~ msgstr ""
+#~ "Da li Ÿelite omoguæiti dolazeæe Secure Shell (ssh) veze? To je\n"
+#~ "je telnet zamjena čto moŸete koristiti za prijavljivanje. Ako sada "
+#~ "koristite\n"
+#~ "telnet, trebali biste definitivno se prebaciti na ssh. telnet nije\n"
+#~ "enkriptiran -- tako da neki napadaèi mogu ukrasti vače lozinke ako ga "
+#~ "koristite\n"
+#~ "ssh je enkriptiran i nedozvoljava prislučkivanje (sniffanje)."
+
+#~ msgid ""
+#~ "Do you want to allow incoming telnet connections?\n"
+#~ "This is horribly unsafe, as we explained in the previous screen. We\n"
+#~ "strongly recommend answering No here and using ssh in place of\n"
+#~ "telnet.\n"
+#~ msgstr ""
+#~ "Da li Ÿelite dopustiti dolazeæe telnet veze?\n"
+#~ "Ovo je uŸasno nesigurno, kao čto smo objasnili na prethodnom zaslonu. Mi\n"
+#~ "jako preporuèamo odgovaranjem Ne ovdje i koričtenjem ssh-a umjesto\n"
+#~ "telnet-a.\n"
+
+#~ msgid ""
+#~ "Are you running an FTP server here that you need accessible to the\n"
+#~ "Internet? If you are, we strongly recommend that you only use it for\n"
+#~ "Anonymous transfers. Any passwords sent by FTP can be stolen by some\n"
+#~ "attackers, since FTP also uses no encryption for transferring passwords.\n"
+#~ msgstr ""
+#~ "Da li imate pokrenut FTP posluŸitelj ovdje koji treba biti dostupan\n"
+#~ "Internet-u? Ukoliko da, jako preporuèamo da ga koristite samo za\n"
+#~ "anonimni prijenos. Svaka lozinka prenesena FTP-om moŸe biti ukradena od\n"
+#~ "nekih napadaèa, jer FTP također ne koristi enkripciju za prijenos "
+#~ "lozinki.\n"
+
+#~ msgid ""
+#~ "Are you running a mail server here? If you're sending you \n"
+#~ "messages through pine, mutt or any other text-based mail client,\n"
+#~ "you probably are. Otherwise, you should firewall this off.\n"
+#~ "\n"
+#~ msgstr ""
+#~ "Da li imate pokrenut mail posluŸitelj ovdje? Ako čaljete vače \n"
+#~ "poruke kroz pine, mutt ili neki drugi tekst-bazirani mail klijent,\n"
+#~ "vjerojatno ga koristite. Ako ne, trebali biste ga odijeliti vatrozidom.\n"
+#~ "\n"
+
+#~ msgid ""
+#~ "Are you running a POP or IMAP server here? This would\n"
+#~ "be used to host non-web-based mail accounts for people via \n"
+#~ "this machine.\n"
+#~ "\n"
+#~ msgstr ""
+#~ "Da li imate pokrenut POP ili IMAP posluŸitelj ovdje? Ovo moŸe\n"
+#~ "koristiti za posluŸivanje ne-web-baziranih mail raèuna za osobe preko\n"
+#~ "ovog raèunala.\n"
+#~ "\n"
+
+#~ msgid ""
+#~ "You appear to be running a 2.2 kernel. If your network IP\n"
+#~ "is automatically set by a computer in your home or office \n"
+#~ "(dynamically assigned), we need to allow for this. Is\n"
+#~ "this the case?\n"
+#~ msgstr ""
+#~ "Èini se da imate pokrenut 2.2 kernel. Ukoliko je vača IP\n"
+#~ "adresa automatski postavljena u vačem domu ili uredu\n"
+#~ "(dinamièki dodjeljenja), moramo to dozvoliti. Da\n"
+#~ "li je to sluèaj?\n"
+
+#~ msgid ""
+#~ "Is your computer getting time syncronized to another computer?\n"
+#~ "Mostly, this is used by medium-large Unix/Linux organizations\n"
+#~ "to synchronize time for logging and such. If you're not part\n"
+#~ "of a larger office and haven't heard of this, you probably \n"
+#~ "aren't."
+#~ msgstr ""
+#~ "Da li se vače raèunalo vremenski sinkronizira sa drugim raèunalom?\n"
+#~ "Veæinom, ovo se koristi kod srednje-velikih Unix/Linux organizacija\n"
+#~ "za sinkronizaciju vremena za zapisivanje/logiranje i slièno. Ukoliko\n"
+#~ "niste dio veæeg ureda ili niste èuli za ovo, vjerojatno\n"
+#~ "ne."
+
+#~ msgid ""
+#~ "Configuration complete. May we write these changes to disk?\n"
+#~ "\n"
+#~ "\n"
+#~ "\n"
+#~ msgstr ""
+#~ "Podečavanje zavrčeno. MoŸemo li zapisati ove promjene na disk?\n"
+#~ "\n"
+#~ "\n"
+#~ "\n"
+
+#~ msgid "Can't open %s for writing: %s\n"
+#~ msgstr "Ne mogu otvoriti %s za pisanje: %s\n"
+
+#~ msgid "No I don't need DHCP"
+#~ msgstr "Ne, ne trebam DHCP"
+
+#~ msgid "Yes I need DHCP"
+#~ msgstr "Da, trebam DHCP"
+
+#~ msgid "No I don't need NTP"
+#~ msgstr "Ne, ne trebam NTP"
+
+#~ msgid "Yes I need NTP"
+#~ msgstr "Da, trebam NTP"
+
+#~ msgid "Don't Save"
+#~ msgstr "Nemoj snimiti"
+
+#~ msgid "Save & Quit"
+#~ msgstr "Snimi & izađi"
+
+#~ msgid "Firewall Configuration Wizard"
+#~ msgstr "Èarobnjak za postavu vatrozida"
+
+#~ msgid "No (firewall this off from the internet)"
+#~ msgstr "Ne (sadrŸi ovo s interneta na vatrozidu)"
+
+#~ msgid "Yes (allow this through the firewall)"
+#~ msgstr "Da (propusti ovo kroz vatrozid)"
+
+#~ msgid "Please Wait... Verifying installed packages"
+#~ msgstr "Molimo prièekajte... Provjeravam instalirane pakete"
+
+#~ msgid ""
+#~ "Failure installing the needed packages: %s and Bastille.\n"
+#~ " Try to install them manually."
+#~ msgstr ""
+#~ "Neuspjela instalacija potrebnih paketa: %s i Bastille.\n"
+#~ " Pokučajte ih instalirati ruèno."
#~ msgid "Data list to include on CDROM."
#~ msgstr "Popis datoteka koje æe biti na CDu."
@@ -13766,14 +14490,6 @@ msgstr "Znanstvena radna stanica"
#~ "Naznaèite da li Ÿelite ukljuèiti podizanje instalacije pri\n"
#~ "dizanju raèunala sa CDa."
-#, fuzzy
-#~ msgid "Windows PDC"
-#~ msgstr "Windowse (FAT32)"
-
-#, fuzzy
-#~ msgid "PDC Server Name"
-#~ msgstr "NTP PosluŸitelj"
-
#~ msgid ""
#~ "\n"
#~ "Welcome to the Printer Setup Wizard\n"
@@ -13842,36 +14558,15 @@ msgstr "Znanstvena radna stanica"
#~ "Da bi instalirali mreŸne pisaèe, stisnite \"Odustani\", prebacite se u"
#~ "\"Struènjak\" mod i ponovno stisnite \"Dodaj novi pisaè\"."
-#, fuzzy
-#~ msgid ""
-#~ "Is your printer a multi-function device from HP (OfficeJet, PSC, LaserJet "
-#~ "1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart or an HP "
-#~ "LaserJet 2200?"
-#~ msgstr ""
-#~ "Da li je vač pisaè HPov multi-funkcijski uređaj (OfficeJet, PSC, "
-#~ "PhotoSmart,LaserJet 1100/1200/1220/3200/3300 sa skenerom)?"
-
#~ msgid "Installing HPOJ package..."
#~ msgstr "Instaliram HPOJ paket"
#~ msgid "Checking device and configuring HPOJ..."
#~ msgstr "Provjeravam uređaj i namječtam HPOJ ..."
-#, fuzzy
-#~ msgid "Installing SANE packages..."
-#~ msgstr "Instaliram SANE paket..."
-
-#, fuzzy
-#~ msgid "Installing mtools packages..."
-#~ msgstr "Instaliram pakete..."
-
#~ msgid "Scanning on your HP multi-function device"
#~ msgstr "Skeniram na vačem HP multi-funkcijskom uređaju"
-#, fuzzy
-#~ msgid "Photo memory card access on your HP multi-function device"
-#~ msgstr "Skeniram na vačem HP multi-funkcijskom uređaju"
-
#~ msgid "Making printer port available for CUPS..."
#~ msgstr "Èinim pisaè dostupnim CUPSu ..."
@@ -14005,13 +14700,6 @@ msgstr "Znanstvena radna stanica"
#~ msgid "Choose a X driver"
#~ msgstr "Odaberite X upravljaèki program"
-#~ msgid "X driver"
-#~ msgstr "X upravljaèki program"
-
-#~ msgid "Warning: testing this graphics card may freeze your computer"
-#~ msgstr ""
-#~ "Upozorenje: testiranje grafièke kartice moŸe zamrzunti vače raèunalo"
-
#~ msgid "Standard VGA, 640x480 at 60 Hz"
#~ msgstr "Standardni VGA, 640x480 na 60 Hz"
diff --git a/perl-install/share/po/id.po b/perl-install/share/po/id.po
index dd230bae2..61efebbb6 100644
--- a/perl-install/share/po/id.po
+++ b/perl-install/share/po/id.po
@@ -9,7 +9,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX 0.1\n"
-"POT-Creation-Date: 2002-08-21 15:44+0200\n"
+"POT-Creation-Date: 2002-09-02 20:14+0200\n"
"PO-Revision-Date: 2002-08-17 22:55+09:00\n"
"Last-Translator: Budi Rachmanto <rac@linux-mandrake.com>\n"
"Language-Team: Bahasa Indonesia <id@li.org>\n"
@@ -54,19 +54,19 @@ msgstr "32 MB"
msgid "64 MB or more"
msgstr "64 MB atau lebih"
-#: ../../Xconfig/card.pm_.c:201
+#: ../../Xconfig/card.pm_.c:203
msgid "Choose a X server"
msgstr "Pilih server X"
-#: ../../Xconfig/card.pm_.c:201
+#: ../../Xconfig/card.pm_.c:203
msgid "X server"
msgstr "Server X"
-#: ../../Xconfig/card.pm_.c:228
+#: ../../Xconfig/card.pm_.c:230
msgid "Multi-head configuration"
msgstr "Konfigurasi head majemuk"
-#: ../../Xconfig/card.pm_.c:229
+#: ../../Xconfig/card.pm_.c:231
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
@@ -74,27 +74,27 @@ msgstr ""
"Sistem Anda mendukung konfigurasi head majemuk.\n"
"Apa yg ingin Anda lakukan?"
-#: ../../Xconfig/card.pm_.c:284
+#: ../../Xconfig/card.pm_.c:286
msgid "Select the memory size of your graphics card"
msgstr "Pilih memori kartu grafis Anda"
-#: ../../Xconfig/card.pm_.c:345
+#: ../../Xconfig/card.pm_.c:347
msgid "XFree configuration"
msgstr "Konfigurasi XFree"
-#: ../../Xconfig/card.pm_.c:347
+#: ../../Xconfig/card.pm_.c:349
msgid "Which configuration of XFree do you want to have?"
msgstr "Konfigurasi XFree mana yang Anda inginkan?"
-#: ../../Xconfig/card.pm_.c:379
+#: ../../Xconfig/card.pm_.c:381
msgid "Configure all heads independently"
msgstr "Konfigurasikan semua head secara terpisah"
-#: ../../Xconfig/card.pm_.c:380
+#: ../../Xconfig/card.pm_.c:382
msgid "Use Xinerama extension"
msgstr "Gunakan ekstensi Xinerama"
-#: ../../Xconfig/card.pm_.c:384
+#: ../../Xconfig/card.pm_.c:386
#, c-format
msgid "Configure only card \"%s\"%s"
msgstr "Konfigurasikan hanya kartu \"%s\"%s"
@@ -105,13 +105,13 @@ msgstr "Konfigurasikan hanya kartu \"%s\"%s"
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:435
+#: ../../Xconfig/card.pm_.c:410 ../../Xconfig/card.pm_.c:436
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s with 3D hardware acceleration"
msgstr "XFree %s dengan akselerasi hardware 3D"
-#: ../../Xconfig/card.pm_.c:412
+#: ../../Xconfig/card.pm_.c:413
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -121,17 +121,17 @@ msgstr ""
"XFree %s.\n"
"Kartu Anda ini dapat dipakai pada XFree %s yg punya dukungan baik dalam 2D."
-#: ../../Xconfig/card.pm_.c:414 ../../Xconfig/card.pm_.c:437
+#: ../../Xconfig/card.pm_.c:415 ../../Xconfig/card.pm_.c:438
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr "Kartu Anda dapat menggunakan akselerasi hardware 3D pada XFree %s."
-#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:443
+#: ../../Xconfig/card.pm_.c:423 ../../Xconfig/card.pm_.c:444
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s dengan akselerasi hardware 3D PERCOBAAN"
-#: ../../Xconfig/card.pm_.c:425
+#: ../../Xconfig/card.pm_.c:426
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -142,7 +142,7 @@ msgstr ""
"NAMUN INI BARU DALAM TAHAP PERCOBAAN DAN DAPAT MEMBUAT KOMPUTER ANDA HANG.\n"
"Kartu Anda ini dapat digunakan XFree %s yang lebih baik dalam 2D."
-#: ../../Xconfig/card.pm_.c:428 ../../Xconfig/card.pm_.c:445
+#: ../../Xconfig/card.pm_.c:429 ../../Xconfig/card.pm_.c:446
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
@@ -151,52 +151,53 @@ msgstr ""
"Kartu Anda dapat menggunakan akselerasi hardware 3D pada XFree %s,\n"
"NAMUN INI BARU DALAM TAHAP PERCOBAAN DAN DAPAT MEMBUAT KOMPUTER ANDA HANG."
-#: ../../Xconfig/card.pm_.c:451
+#: ../../Xconfig/card.pm_.c:452
msgid "Xpmac (installation display driver)"
msgstr "Xpmac (instalasi driver display)"
-#: ../../Xconfig/main.pm_.c:78 ../../Xconfig/main.pm_.c:79
-#: ../../Xconfig/monitor.pm_.c:94 ../../any.pm_.c:974
+#: ../../Xconfig/main.pm_.c:76 ../../Xconfig/main.pm_.c:77
+#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:977
msgid "Custom"
msgstr "Customized"
-#: ../../Xconfig/main.pm_.c:104
+#: ../../Xconfig/main.pm_.c:102
msgid "Graphic Card"
msgstr "Kartu Grafik"
-#: ../../Xconfig/main.pm_.c:107 ../../Xconfig/monitor.pm_.c:91
+#: ../../Xconfig/main.pm_.c:105 ../../Xconfig/monitor.pm_.c:93
msgid "Monitor"
msgstr "Monitor"
-#: ../../Xconfig/main.pm_.c:110 ../../Xconfig/resolution_and_depth.pm_.c:209
+#: ../../Xconfig/main.pm_.c:108 ../../Xconfig/resolution_and_depth.pm_.c:209
msgid "Resolution"
msgstr "Resolusi"
-#: ../../Xconfig/main.pm_.c:114
+#: ../../Xconfig/main.pm_.c:113
msgid "Test"
msgstr "Tes"
-#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:59
-#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/removable.pm_.c:25
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:63
+#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/removable.pm_.c:25
#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "Pilihan"
#: ../../Xconfig/main.pm_.c:121 ../../Xconfig/resolution_and_depth.pm_.c:268
-#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:281
+#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:275
#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
-#: ../../interactive.pm_.c:351 ../../interactive/http.pm_.c:104
+#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:104
#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
-#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:156
-#: ../../my_gtk.pm_.c:284 ../../my_gtk.pm_.c:307
-#: ../../standalone/drakbackup_.c:3324 ../../standalone/drakbackup_.c:3419
-#: ../../standalone/drakbackup_.c:3438
+#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:159
+#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310
+#: ../../standalone/drakbackup_.c:3972 ../../standalone/drakbackup_.c:4067
+#: ../../standalone/drakbackup_.c:4086
msgid "Ok"
msgstr "Ok"
#: ../../Xconfig/main.pm_.c:121 ../../diskdrake/dav.pm_.c:24
-#: ../../printerdrake.pm_.c:2933 ../../standalone/logdrake_.c:224
+#: ../../harddrake/ui.pm_.c:98 ../../printerdrake.pm_.c:3155
+#: ../../standalone/logdrake_.c:224
msgid "Quit"
msgstr "Keluar"
@@ -213,27 +214,27 @@ msgstr ""
"\n"
"%s"
-#: ../../Xconfig/monitor.pm_.c:91
+#: ../../Xconfig/monitor.pm_.c:93
msgid "Choose a monitor"
msgstr "Pilih monitor"
-#: ../../Xconfig/monitor.pm_.c:95
+#: ../../Xconfig/monitor.pm_.c:97
msgid "Plug'n Play"
msgstr "Plug'n Play"
-#: ../../Xconfig/monitor.pm_.c:96 ../../mouse.pm_.c:45
+#: ../../Xconfig/monitor.pm_.c:98 ../../mouse.pm_.c:46
msgid "Generic"
msgstr "Generik"
-#: ../../Xconfig/monitor.pm_.c:97 ../../harddrake/ui.pm_.c:36
+#: ../../Xconfig/monitor.pm_.c:99 ../../harddrake/ui.pm_.c:37
msgid "Vendor"
msgstr "Pembuat"
-#: ../../Xconfig/monitor.pm_.c:107
+#: ../../Xconfig/monitor.pm_.c:109
msgid "Plug'n Play probing failed. Please choose a precise monitor"
msgstr ""
-#: ../../Xconfig/monitor.pm_.c:112
+#: ../../Xconfig/monitor.pm_.c:114
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -255,11 +256,11 @@ msgstr ""
"Anda akan rusak berat.\n"
"Kalau Anda ragu, gunakan setting yang umum."
-#: ../../Xconfig/monitor.pm_.c:119
+#: ../../Xconfig/monitor.pm_.c:121
msgid "Horizontal refresh rate"
msgstr "Laju refresh horisontal"
-#: ../../Xconfig/monitor.pm_.c:120
+#: ../../Xconfig/monitor.pm_.c:122
msgid "Vertical refresh rate"
msgstr "Laju refresh vertikal"
@@ -296,36 +297,41 @@ msgstr "Pilih resolusi dan kedalaman warna"
msgid "Graphics card: %s"
msgstr "Kartu grafis: %s"
-#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1015
-#: ../../bootlook.pm_.c:334 ../../diskdrake/smbnfs_gtk.pm_.c:87
-#: ../../install_steps_gtk.pm_.c:412 ../../install_steps_gtk.pm_.c:470
-#: ../../install_steps_interactive.pm_.c:576 ../../interactive.pm_.c:142
-#: ../../interactive.pm_.c:351 ../../interactive/http.pm_.c:105
+#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1018
+#: ../../bootlook.pm_.c:338 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:406 ../../install_steps_gtk.pm_.c:464
+#: ../../install_steps_interactive.pm_.c:560 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:105
#: ../../interactive/newt.pm_.c:174 ../../interactive/stdio.pm_.c:39
-#: ../../interactive/stdio.pm_.c:143 ../../my_gtk.pm_.c:155
-#: ../../my_gtk.pm_.c:159 ../../my_gtk.pm_.c:284
-#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1990
-#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3278
-#: ../../standalone/drakbackup_.c:3311 ../../standalone/drakbackup_.c:3337
-#: ../../standalone/drakbackup_.c:3364 ../../standalone/drakbackup_.c:3391
-#: ../../standalone/drakbackup_.c:3451 ../../standalone/drakbackup_.c:3478
-#: ../../standalone/drakbackup_.c:3504 ../../standalone/drakconnect_.c:115
-#: ../../standalone/drakconnect_.c:147 ../../standalone/drakconnect_.c:289
-#: ../../standalone/drakconnect_.c:537 ../../standalone/drakconnect_.c:679
-#: ../../standalone/drakfloppy_.c:234 ../../standalone/drakfloppy_.c:383
-#: ../../standalone/drakfont_.c:970 ../../standalone/drakgw_.c:598
-#: ../../standalone/logdrake_.c:224 ../../standalone/logdrake_.c:528
-#: ../../standalone/tinyfirewall_.c:64
+#: ../../interactive/stdio.pm_.c:143 ../../my_gtk.pm_.c:158
+#: ../../my_gtk.pm_.c:162 ../../my_gtk.pm_.c:287
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:2124
+#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3926
+#: ../../standalone/drakbackup_.c:3959 ../../standalone/drakbackup_.c:3985
+#: ../../standalone/drakbackup_.c:4012 ../../standalone/drakbackup_.c:4039
+#: ../../standalone/drakbackup_.c:4099 ../../standalone/drakbackup_.c:4126
+#: ../../standalone/drakbackup_.c:4156 ../../standalone/drakbackup_.c:4182
+#: ../../standalone/drakconnect_.c:115 ../../standalone/drakconnect_.c:147
+#: ../../standalone/drakconnect_.c:289 ../../standalone/drakconnect_.c:537
+#: ../../standalone/drakconnect_.c:679 ../../standalone/drakfloppy_.c:234
+#: ../../standalone/drakfloppy_.c:383 ../../standalone/drakfont_.c:970
+#: ../../standalone/drakgw_.c:536 ../../standalone/logdrake_.c:224
+#: ../../standalone/logdrake_.c:526
msgid "Cancel"
msgstr "Batal"
-#: ../../Xconfig/test.pm_.c:26
+#: ../../Xconfig/test.pm_.c:30
+msgid "Test of the configuration"
+msgstr "Tes konfigurasi"
+
+#: ../../Xconfig/test.pm_.c:31
msgid "Do you want to test the configuration?"
msgstr "Anda ingin tes konfigurasi ini?"
-#: ../../Xconfig/test.pm_.c:26
-msgid "Test of the configuration"
-msgstr "Tes konfigurasi"
+#: ../../Xconfig/test.pm_.c:31
+#, fuzzy
+msgid "Warning: testing this graphic card may freeze your computer"
+msgstr "Awas: tes kartu grafis ini dapat membekukan komputer Anda"
#: ../../Xconfig/various.pm_.c:29
#, c-format
@@ -468,26 +474,22 @@ msgstr "Boot dari DOS/windows (loadlin)"
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:158 ../../any.pm_.c:190
+#: ../../any.pm_.c:159 ../../any.pm_.c:190
msgid "Bootloader main options"
msgstr "Parameter Bootloader utama"
-#: ../../any.pm_.c:159 ../../any.pm_.c:191
+#: ../../any.pm_.c:160 ../../any.pm_.c:191
msgid "Bootloader to use"
msgstr "Bootloader yang hendak digunakan"
-#: ../../any.pm_.c:161
+#: ../../any.pm_.c:162
msgid "Bootloader installation"
msgstr "Instalasi Bootloader"
-#: ../../any.pm_.c:163 ../../any.pm_.c:193
+#: ../../any.pm_.c:164 ../../any.pm_.c:193
msgid "Boot device"
msgstr "Device boot"
-#: ../../any.pm_.c:164
-msgid "LBA (doesn't work on old BIOSes)"
-msgstr "LBA (tak bisa dipakai pada BIOS kuno)"
-
#: ../../any.pm_.c:165
msgid "Compact"
msgstr "Kompak"
@@ -504,16 +506,17 @@ msgstr "Mode video"
msgid "Delay before booting default image"
msgstr "Delay sebelum boot ke image default"
-#: ../../any.pm_.c:170 ../../any.pm_.c:786
+#: ../../any.pm_.c:170 ../../any.pm_.c:788
#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1111 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:743 ../../printerdrake.pm_.c:858
-#: ../../standalone/drakconnect_.c:624 ../../standalone/drakconnect_.c:649
+#: ../../install_steps_interactive.pm_.c:1096 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:850 ../../printerdrake.pm_.c:965
+#: ../../standalone/drakbackup_.c:3528 ../../standalone/drakconnect_.c:624
+#: ../../standalone/drakconnect_.c:649
msgid "Password"
msgstr "Katasandi"
-#: ../../any.pm_.c:171 ../../any.pm_.c:787
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../any.pm_.c:171 ../../any.pm_.c:789
+#: ../../install_steps_interactive.pm_.c:1097
msgid "Password (again)"
msgstr "Katasandi (lagi)"
@@ -548,14 +551,14 @@ msgid ""
msgstr ""
"Pilihan ``Batasi parameter command line'' tidak ada gunanya tanpa katasandi"
-#: ../../any.pm_.c:184 ../../any.pm_.c:762
-#: ../../diskdrake/interactive.pm_.c:1180
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../any.pm_.c:184 ../../any.pm_.c:764
+#: ../../diskdrake/interactive.pm_.c:1191
+#: ../../install_steps_interactive.pm_.c:1091
msgid "Please try again"
msgstr "Silakan ulangi"
-#: ../../any.pm_.c:184 ../../any.pm_.c:762
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../any.pm_.c:184 ../../any.pm_.c:764
+#: ../../install_steps_interactive.pm_.c:1091
msgid "The passwords do not match"
msgstr "Katasandi tidak sama"
@@ -605,16 +608,16 @@ msgstr ""
"Ini adalah entri yang lain lagi.\n"
"Anda boleh tambahkan atau mengubah yang sudah ada."
-#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1483
-#: ../../standalone/drakbackup_.c:1596 ../../standalone/drakfont_.c:1011
+#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1558
+#: ../../standalone/drakbackup_.c:1671 ../../standalone/drakfont_.c:1011
#: ../../standalone/drakfont_.c:1054
msgid "Add"
msgstr "Tambah"
-#: ../../any.pm_.c:257 ../../any.pm_.c:774 ../../diskdrake/dav.pm_.c:60
+#: ../../any.pm_.c:257 ../../any.pm_.c:776 ../../diskdrake/dav.pm_.c:64
#: ../../diskdrake/hd_gtk.pm_.c:153 ../../diskdrake/removable.pm_.c:27
#: ../../diskdrake/smbnfs_gtk.pm_.c:88 ../../interactive/http.pm_.c:153
-#: ../../standalone/drakbackup_.c:2696
+#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2772
msgid "Done"
msgstr "Selesai"
@@ -626,7 +629,7 @@ msgstr "Modifikasi"
msgid "Which type of entry do you want to add?"
msgstr "Tipe entri mana yang hendak ditambahkan?"
-#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1630
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1705
msgid "Linux"
msgstr "Linux"
@@ -720,13 +723,13 @@ msgstr "Anda punya lagi?"
msgid "Do you have any %s interfaces?"
msgstr "Punya antarmuka %s?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:821 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:283
+#: ../../any.pm_.c:660 ../../any.pm_.c:823 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:286
msgid "No"
msgstr "Tidak"
-#: ../../any.pm_.c:660 ../../any.pm_.c:820 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:283
+#: ../../any.pm_.c:660 ../../any.pm_.c:822 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:286
msgid "Yes"
msgstr "Ya"
@@ -825,37 +828,47 @@ msgstr "izinkan \"su\""
msgid "access to administrative files"
msgstr "akses ke file administratif"
-#: ../../any.pm_.c:758
+#: ../../any.pm_.c:754
+#, fuzzy
+msgid "access to network tools"
+msgstr "akses ke peralatan rpm"
+
+#: ../../any.pm_.c:755
+#, fuzzy
+msgid "access to compilation tools"
+msgstr "akses ke peralatan rpm"
+
+#: ../../any.pm_.c:760
#, c-format
msgid "(already added %s)"
msgstr "(sudah ditambahkan %s)"
-#: ../../any.pm_.c:763
+#: ../../any.pm_.c:765
msgid "This password is too simple"
msgstr "Katasandi ini terlalu sederhana"
-#: ../../any.pm_.c:764
+#: ../../any.pm_.c:766
msgid "Please give a user name"
msgstr "Silakan tulis nama user"
-#: ../../any.pm_.c:765
+#: ../../any.pm_.c:767
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr "Nama user hanya boleh terdiri dari huruf, angka, `-' dan `_'"
-#: ../../any.pm_.c:766
+#: ../../any.pm_.c:768
msgid "The user name is too long"
msgstr "Nama user terlalu panjang"
-#: ../../any.pm_.c:767
+#: ../../any.pm_.c:769
msgid "This user name is already added"
msgstr "User ini sudah ada sebelumnya"
-#: ../../any.pm_.c:771
+#: ../../any.pm_.c:773
msgid "Add user"
msgstr "Tambah user"
-#: ../../any.pm_.c:772
+#: ../../any.pm_.c:774
#, c-format
msgid ""
"Enter a user\n"
@@ -864,32 +877,32 @@ msgstr ""
"Masukkan user\n"
"%s"
-#: ../../any.pm_.c:773
+#: ../../any.pm_.c:775
msgid "Accept user"
msgstr "Buat user"
-#: ../../any.pm_.c:784
+#: ../../any.pm_.c:786
msgid "Real name"
msgstr "Nama Lengkap"
-#: ../../any.pm_.c:785 ../../printerdrake.pm_.c:742
-#: ../../printerdrake.pm_.c:857
+#: ../../any.pm_.c:787 ../../printerdrake.pm_.c:849
+#: ../../printerdrake.pm_.c:964
msgid "User name"
msgstr "Nama user"
-#: ../../any.pm_.c:788
+#: ../../any.pm_.c:790
msgid "Shell"
msgstr "Shell"
-#: ../../any.pm_.c:790
+#: ../../any.pm_.c:792
msgid "Icon"
msgstr "Ikon"
-#: ../../any.pm_.c:817
+#: ../../any.pm_.c:819
msgid "Autologin"
msgstr "Autologin"
-#: ../../any.pm_.c:818
+#: ../../any.pm_.c:820
msgid ""
"I can set up your computer to automatically log on one user.\n"
"Do you want to use this feature?"
@@ -897,54 +910,54 @@ msgstr ""
"Komputer Anda dapat diset agar secara otomatis login dg satu user.\n"
"Anda ingin pakai feature ini?"
-#: ../../any.pm_.c:822
+#: ../../any.pm_.c:824
msgid "Choose the default user:"
msgstr "Pilih user default:"
-#: ../../any.pm_.c:823
+#: ../../any.pm_.c:825
msgid "Choose the window manager to run:"
msgstr "Pilih manajer window yg akan dipakai:"
-#: ../../any.pm_.c:838
+#: ../../any.pm_.c:840
msgid "Please choose a language to use."
msgstr "Pilih bahasan yg akan dipakai."
-#: ../../any.pm_.c:840
+#: ../../any.pm_.c:842
msgid ""
"Mandrake Linux can support multiple languages. Select\n"
"the languages you would like to install. They will be available\n"
"when your installation is complete and you restart your system."
msgstr "Anda bisa pilih bahasa lain yang akan tersedia setelah install selesai"
-#: ../../any.pm_.c:854 ../../install_steps_interactive.pm_.c:708
+#: ../../any.pm_.c:856 ../../install_steps_interactive.pm_.c:692
#: ../../standalone/drakxtv_.c:73
msgid "All"
msgstr "Semua"
-#: ../../any.pm_.c:974
+#: ../../any.pm_.c:977
msgid "Allow all users"
msgstr "Izinkan semua user"
-#: ../../any.pm_.c:974
+#: ../../any.pm_.c:977
msgid "No sharing"
msgstr "Tiada pemakaian bersama"
-#: ../../any.pm_.c:984 ../../standalone.pm_.c:57
+#: ../../any.pm_.c:987 ../../install_any.pm_.c:1183 ../../standalone.pm_.c:58
#, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "Paket %s perlu diupgrade. Anda ingin instal?"
-#: ../../any.pm_.c:987
+#: ../../any.pm_.c:990
msgid ""
"You can export using NFS or Samba. Please select which you'd like to use."
msgstr "Anda dapat mengekspor dg NFS atau Samba. Pilih yg Anda ingin."
-#: ../../any.pm_.c:995 ../../standalone.pm_.c:61
+#: ../../any.pm_.c:998 ../../install_any.pm_.c:1188 ../../standalone.pm_.c:63
#, c-format
msgid "Mandatory package %s is missing"
msgstr "Paket wajib %s hilang"
-#: ../../any.pm_.c:1001
+#: ../../any.pm_.c:1004
msgid ""
"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
@@ -958,11 +971,11 @@ msgstr ""
"\n"
"\"Custom\" memungkinkan tuning masing-masing user.\n"
-#: ../../any.pm_.c:1015
+#: ../../any.pm_.c:1018
msgid "Launch userdrake"
msgstr "Luncurkan userdrake"
-#: ../../any.pm_.c:1017
+#: ../../any.pm_.c:1020
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
@@ -970,31 +983,31 @@ msgstr ""
"Sharing per-user menggunakan grup \"fileshare\". \n"
"Anda dapat memakai userdrake utk menambah user di grup ini."
-#: ../../any.pm_.c:1068
+#: ../../any.pm_.c:1071
msgid "Welcome To Crackers"
msgstr "Selamat Datang di Crackers"
-#: ../../any.pm_.c:1069
+#: ../../any.pm_.c:1072
msgid "Poor"
msgstr "Lemah"
-#: ../../any.pm_.c:1070 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1073 ../../mouse.pm_.c:31
msgid "Standard"
msgstr "Standar"
-#: ../../any.pm_.c:1071
+#: ../../any.pm_.c:1074
msgid "High"
msgstr "Kuat"
-#: ../../any.pm_.c:1072
+#: ../../any.pm_.c:1075
msgid "Higher"
msgstr "Lebih Kuat"
-#: ../../any.pm_.c:1073
+#: ../../any.pm_.c:1076
msgid "Paranoid"
msgstr "Pengecut"
-#: ../../any.pm_.c:1076
+#: ../../any.pm_.c:1079
msgid ""
"This level is to be used with care. It makes your system more easy to use,\n"
"but very sensitive: it must not be used for a machine connected to others\n"
@@ -1005,13 +1018,13 @@ msgstr ""
"mesin yang terhubung ke mesin lain atau ke ke Internet. Tidak akan ada\n"
"akses katasandi."
-#: ../../any.pm_.c:1079
+#: ../../any.pm_.c:1082
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
msgstr "Katasandi akan diaktifkan, tapi mohon jangan disambungkan ke jaringan."
-#: ../../any.pm_.c:1080
+#: ../../any.pm_.c:1083
msgid ""
"This is the standard security recommended for a computer that will be used "
"to connect to the Internet as a client."
@@ -1019,7 +1032,7 @@ msgstr ""
"Ini adalah sekuriti standar, dianjurkan untuk komputer yang akan\n"
"terkoneksi ke Internet sebagai klien."
-#: ../../any.pm_.c:1081
+#: ../../any.pm_.c:1084
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
@@ -1027,7 +1040,7 @@ msgstr ""
"Sudah ada beberapa batasan, dan beberapa pengecekan otomatis berjalan tiap "
"malam."
-#: ../../any.pm_.c:1082
+#: ../../any.pm_.c:1085
msgid ""
"With this security level, the use of this system as a server becomes "
"possible.\n"
@@ -1040,7 +1053,7 @@ msgstr ""
"Sekuriti kini cukup tinggi untuk dapat melayani koneksi banyak klien.\n"
"Jika mesin Anda hanya berfungsi sebagai klien, pilihlah level lebih rendah."
-#: ../../any.pm_.c:1085
+#: ../../any.pm_.c:1088
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
"security features are at their maximum."
@@ -1048,28 +1061,28 @@ msgstr ""
"Sama dengan level sebelumnya, tapi sistem sepenuhnya ditutup.\n"
"Fitur sekuriti maksimum."
-#: ../../any.pm_.c:1091
+#: ../../any.pm_.c:1094
msgid "DrakSec Basic Options"
msgstr "Opsi Dasar DrakSec"
-#: ../../any.pm_.c:1092
+#: ../../any.pm_.c:1095
msgid "Please choose the desired security level"
msgstr "Pilih tingkat keamanan yg Anda inginkan"
-#: ../../any.pm_.c:1095
+#: ../../any.pm_.c:1098
msgid "Security level"
msgstr "Tingkat keamanan"
-#: ../../any.pm_.c:1097
+#: ../../any.pm_.c:1100
msgid "Use libsafe for servers"
msgstr "Gunakan libsafe utk server"
-#: ../../any.pm_.c:1098
+#: ../../any.pm_.c:1101
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr "Library penahan serangan string format dan overflow buffer"
-#: ../../any.pm_.c:1099
+#: ../../any.pm_.c:1102
msgid "Security Administrator (login or email)"
msgstr "Admin Keamanan (login / email)"
@@ -1113,57 +1126,57 @@ msgstr ""
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:935
+#: ../../bootloader.pm_.c:932
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Selamat datang di sang pemilih sistem operasi, GRUB"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:938
+#: ../../bootloader.pm_.c:935
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "Gunakan tombol %c dan %c untuk memilih entri yang disorot"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:941
+#: ../../bootloader.pm_.c:938
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Tekan enter untuk memboot OS yang terpilih, atau tekan 'e' untuk edit"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:941
msgid "commands before booting, or 'c' for a command-line."
msgstr "perintah sebelum booting, atau 'c' untuk command line."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:947
+#: ../../bootloader.pm_.c:944
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "Entri yang dipilih akan diboot secara otomatis dalam %d detik."
-#: ../../bootloader.pm_.c:951
+#: ../../bootloader.pm_.c:948
msgid "not enough room in /boot"
msgstr "tak cukup ruang di /boot"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1051
+#: ../../bootloader.pm_.c:1048
msgid "Desktop"
msgstr "Desktop"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1053
+#: ../../bootloader.pm_.c:1050
msgid "Start Menu"
msgstr "Start Menu"
-#: ../../bootloader.pm_.c:1072
+#: ../../bootloader.pm_.c:1069
#, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "Anda tak dapat menginstal bootloader pada partisi %s\n"
-#: ../../bootlook.pm_.c:45
+#: ../../bootlook.pm_.c:45 ../../standalone/draksplash_.c:25
msgid "no help implemented yet.\n"
msgstr "belum ada help.\n"
@@ -1171,8 +1184,8 @@ msgstr "belum ada help.\n"
msgid "Boot Style Configuration"
msgstr "Konfigurasi Tipe Boot"
-#: ../../bootlook.pm_.c:78 ../../harddrake/ui.pm_.c:59
-#: ../../harddrake/ui.pm_.c:60 ../../standalone/drakfloppy_.c:81
+#: ../../bootlook.pm_.c:78 ../../harddrake/ui.pm_.c:62
+#: ../../harddrake/ui.pm_.c:63 ../../standalone/drakfloppy_.c:81
#: ../../standalone/logdrake_.c:101
msgid "/_File"
msgstr "/_File"
@@ -1182,7 +1195,7 @@ msgstr "/_File"
msgid "/File/_Quit"
msgstr "/File/_Keluar"
-#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:60
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:63
#: ../../standalone/drakfloppy_.c:82 ../../standalone/logdrake_.c:107
msgid "<control>Q"
msgstr "<control>Q"
@@ -1223,54 +1236,60 @@ msgstr "Instal tema"
msgid "Display theme under console"
msgstr "Display tema di konsol"
-#: ../../bootlook.pm_.c:166
+#: ../../bootlook.pm_.c:145
+#, fuzzy
+msgid "Create new theme"
+msgstr "Membuat partisi baru"
+
+#: ../../bootlook.pm_.c:169
msgid "Can't create Bootsplash preview"
msgstr "Gagal membuat preview Bootsplash"
-#: ../../bootlook.pm_.c:166 ../../bootlook.pm_.c:184 ../../bootlook.pm_.c:187
-#: ../../bootlook.pm_.c:190 ../../bootlook.pm_.c:220 ../../bootlook.pm_.c:222
-#: ../../bootlook.pm_.c:232 ../../bootlook.pm_.c:241 ../../bootlook.pm_.c:248
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:336
-#: ../../diskdrake/interactive.pm_.c:351 ../../diskdrake/interactive.pm_.c:464
-#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../bootlook.pm_.c:169 ../../bootlook.pm_.c:187 ../../bootlook.pm_.c:190
+#: ../../bootlook.pm_.c:193 ../../bootlook.pm_.c:223 ../../bootlook.pm_.c:225
+#: ../../bootlook.pm_.c:235 ../../bootlook.pm_.c:244 ../../bootlook.pm_.c:251
+#: ../../diskdrake/dav.pm_.c:73 ../../diskdrake/hd_gtk.pm_.c:116
+#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/interactive.pm_.c:355
+#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/interactive.pm_.c:474
+#: ../../diskdrake/smbnfs_gtk.pm_.c:45 ../../fsedit.pm_.c:239
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:365 ../../interactive/http.pm_.c:119
-#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:80
+#: ../../interactive/http.pm_.c:119 ../../interactive/http.pm_.c:120
+#: ../../standalone/draksplash_.c:32
msgid "Error"
msgstr "Ada Kesalahan"
-#: ../../bootlook.pm_.c:183
+#: ../../bootlook.pm_.c:186
#, c-format
msgid "Backup %s to %s.old"
msgstr "Backup %s ke %s.old"
-#: ../../bootlook.pm_.c:184
+#: ../../bootlook.pm_.c:187
msgid "unable to backup lilo message"
msgstr "gagal mem-backup pesan lilo"
-#: ../../bootlook.pm_.c:186
+#: ../../bootlook.pm_.c:189
#, c-format
msgid "Copy %s to %s"
msgstr "Salin %s ke %s"
-#: ../../bootlook.pm_.c:187
+#: ../../bootlook.pm_.c:190
msgid "can't change lilo message"
msgstr "tak dapat mengubah pesan lilo"
-#: ../../bootlook.pm_.c:190
+#: ../../bootlook.pm_.c:193
msgid "Lilo message not found"
msgstr "Pesan lilo tak ditemukan"
-#: ../../bootlook.pm_.c:220
+#: ../../bootlook.pm_.c:223
msgid "Can't write /etc/sysconfig/bootsplash."
msgstr "Tak dapat menulis /etc/sysconfig/bootsplash."
-#: ../../bootlook.pm_.c:220
+#: ../../bootlook.pm_.c:223
#, c-format
msgid "Write %s"
msgstr "Tulis %s"
-#: ../../bootlook.pm_.c:222
+#: ../../bootlook.pm_.c:225
msgid ""
"Can't write /etc/sysconfig/bootsplash\n"
"File not found."
@@ -1278,17 +1297,17 @@ msgstr ""
"Tak dapat menulis /etc/sysconfig/bootsplash\n"
"File tak ditemukan."
-#: ../../bootlook.pm_.c:233
+#: ../../bootlook.pm_.c:236
#, c-format
msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
msgstr "Tak dapat meluncurkan mkinitrd -f /boot/initrd-%s.img %s."
-#: ../../bootlook.pm_.c:236
+#: ../../bootlook.pm_.c:239
#, c-format
-msgid "Make initrd 'mkinird -f /boot/initrd-%s.img %s'."
-msgstr "Buat initrd 'mkinird -f /boot/initrd-%s.img %s'."
+msgid "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
+msgstr "Buat initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
-#: ../../bootlook.pm_.c:242
+#: ../../bootlook.pm_.c:245
msgid ""
"Can't relaunch LiLo!\n"
"Launch \"lilo\" as root in command line to complete LiLo theme installation."
@@ -1297,45 +1316,45 @@ msgstr ""
"Luncurkan \"lilo\" sbg root di baris perintah utk menyelesaikan instalasi "
"tema LiLo."
-#: ../../bootlook.pm_.c:246
+#: ../../bootlook.pm_.c:249
msgid "Relaunch 'lilo'"
msgstr "Luncur ulang 'lilo'"
-#: ../../bootlook.pm_.c:248
+#: ../../bootlook.pm_.c:251 ../../standalone/draksplash_.c:161
+#: ../../standalone/draksplash_.c:330 ../../standalone/draksplash_.c:454
msgid "Notice"
msgstr "Catatan"
-#: ../../bootlook.pm_.c:249
+#: ../../bootlook.pm_.c:252
msgid "LiLo and Bootsplash themes installation successfull"
msgstr "Instalasi tema LiLo dan Bootsplash sukses"
-#: ../../bootlook.pm_.c:249
+#: ../../bootlook.pm_.c:252
msgid "Theme installation failed!"
msgstr "Instalasi tema gagal!"
-#: ../../bootlook.pm_.c:258
+#: ../../bootlook.pm_.c:261
#, c-format
msgid ""
"You are currently using %s as your boot manager.\n"
"Click on Configure to launch the setup wizard."
msgstr "Manajer Boot: %s. Klik Configure untuk memanggil ahli setup."
-#: ../../bootlook.pm_.c:260 ../../standalone/drakbackup_.c:2352
-#: ../../standalone/drakbackup_.c:2362 ../../standalone/drakbackup_.c:2372
-#: ../../standalone/drakbackup_.c:2380 ../../standalone/drakgw_.c:592
-#: ../../standalone/tinyfirewall_.c:58
+#: ../../bootlook.pm_.c:263 ../../standalone/drakbackup_.c:2427
+#: ../../standalone/drakbackup_.c:2437 ../../standalone/drakbackup_.c:2447
+#: ../../standalone/drakbackup_.c:2455 ../../standalone/drakgw_.c:530
msgid "Configure"
msgstr "Konfigurasikan"
-#: ../../bootlook.pm_.c:267
+#: ../../bootlook.pm_.c:270
msgid "Splash selection"
msgstr "Pilihan Splash"
-#: ../../bootlook.pm_.c:270
+#: ../../bootlook.pm_.c:273
msgid "Themes"
msgstr "Tema"
-#: ../../bootlook.pm_.c:272
+#: ../../bootlook.pm_.c:275
msgid ""
"\n"
"Select a theme for\n"
@@ -1349,44 +1368,44 @@ msgstr ""
"Anda dapat memilih\n"
"secara terpisah"
-#: ../../bootlook.pm_.c:275
+#: ../../bootlook.pm_.c:278
msgid "Lilo screen"
msgstr "Layar lilo"
-#: ../../bootlook.pm_.c:279
+#: ../../bootlook.pm_.c:283
msgid "Bootsplash"
msgstr "Bootsplash"
-#: ../../bootlook.pm_.c:314
+#: ../../bootlook.pm_.c:318
msgid "System mode"
msgstr "Mode sistem"
-#: ../../bootlook.pm_.c:316
+#: ../../bootlook.pm_.c:320
msgid "Launch the graphical environment when your system starts"
msgstr "Jalankan X-Window saat sistem dimulai"
-#: ../../bootlook.pm_.c:321
+#: ../../bootlook.pm_.c:325
msgid "No, I don't want autologin"
msgstr "Tidak, saya tak mau autologin"
-#: ../../bootlook.pm_.c:323
+#: ../../bootlook.pm_.c:327
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "Ya, saya mau autologin dg (user,desktop) ini"
-#: ../../bootlook.pm_.c:333 ../../network/netconnect.pm_.c:101
+#: ../../bootlook.pm_.c:337 ../../network/netconnect.pm_.c:101
#: ../../standalone/drakTermServ_.c:173 ../../standalone/drakTermServ_.c:300
-#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:3513
-#: ../../standalone/drakbackup_.c:4290 ../../standalone/drakconnect_.c:108
+#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4191
+#: ../../standalone/drakbackup_.c:4952 ../../standalone/drakconnect_.c:108
#: ../../standalone/drakconnect_.c:140 ../../standalone/drakconnect_.c:296
#: ../../standalone/drakconnect_.c:435 ../../standalone/drakconnect_.c:521
#: ../../standalone/drakconnect_.c:564 ../../standalone/drakconnect_.c:667
#: ../../standalone/drakfloppy_.c:376 ../../standalone/drakfont_.c:612
#: ../../standalone/drakfont_.c:799 ../../standalone/drakfont_.c:876
-#: ../../standalone/drakfont_.c:963 ../../standalone/logdrake_.c:521
+#: ../../standalone/drakfont_.c:963 ../../standalone/logdrake_.c:519
msgid "OK"
msgstr "OK"
-#: ../../bootlook.pm_.c:403
+#: ../../bootlook.pm_.c:407
#, c-format
msgid "can not open /etc/inittab for reading: %s"
msgstr "gagal baca file /etc/inittab: %s"
@@ -1483,45 +1502,50 @@ msgstr "Austria"
msgid "United States"
msgstr "Amerika Serikat"
-#: ../../detect_devices.pm_.c:599 ../../detect_devices.pm_.c:641
-#: ../../detect_devices.pm_.c:803
-msgid "Unknown Model"
-msgstr "Model Tak Dikenal"
-
#: ../../diskdrake/dav.pm_.c:23
msgid "New"
msgstr "Baru"
-#: ../../diskdrake/dav.pm_.c:57
+#: ../../diskdrake/dav.pm_.c:59 ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/smbnfs_gtk.pm_.c:81
+msgid "Unmount"
+msgstr "Unmount"
+
+#: ../../diskdrake/dav.pm_.c:60 ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/smbnfs_gtk.pm_.c:82
+msgid "Mount"
+msgstr "Mount"
+
+#: ../../diskdrake/dav.pm_.c:61
msgid "Server"
msgstr "Server"
-#: ../../diskdrake/dav.pm_.c:58 ../../diskdrake/interactive.pm_.c:375
-#: ../../diskdrake/interactive.pm_.c:558 ../../diskdrake/interactive.pm_.c:585
+#: ../../diskdrake/dav.pm_.c:62 ../../diskdrake/interactive.pm_.c:379
+#: ../../diskdrake/interactive.pm_.c:568 ../../diskdrake/interactive.pm_.c:595
#: ../../diskdrake/removable.pm_.c:24 ../../diskdrake/removable_gtk.pm_.c:15
#: ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr "Posisi mount"
-#: ../../diskdrake/dav.pm_.c:68
+#: ../../diskdrake/dav.pm_.c:81
msgid "Please enter the WebDAV server URL"
msgstr "Masukkan URL server WebDAV"
-#: ../../diskdrake/dav.pm_.c:71
+#: ../../diskdrake/dav.pm_.c:84
msgid "The URL must begin with http:// or https://"
msgstr "URL harus dimulai dg http:// atau https://"
-#: ../../diskdrake/dav.pm_.c:92
+#: ../../diskdrake/dav.pm_.c:105
msgid "Server: "
msgstr "Server: "
-#: ../../diskdrake/dav.pm_.c:93 ../../diskdrake/interactive.pm_.c:435
-#: ../../diskdrake/interactive.pm_.c:1079
-#: ../../diskdrake/interactive.pm_.c:1153
+#: ../../diskdrake/dav.pm_.c:106 ../../diskdrake/interactive.pm_.c:440
+#: ../../diskdrake/interactive.pm_.c:1089
+#: ../../diskdrake/interactive.pm_.c:1164
msgid "Mount point: "
msgstr "Posisi mount: "
-#: ../../diskdrake/dav.pm_.c:94 ../../diskdrake/interactive.pm_.c:1159
+#: ../../diskdrake/dav.pm_.c:107 ../../diskdrake/interactive.pm_.c:1170
#, c-format
msgid "Options: %s"
msgstr "Pilihan: %s"
@@ -1530,8 +1554,9 @@ msgstr "Pilihan: %s"
msgid "Please make a backup of your data first"
msgstr "Lebih dulu buatlah backup data Anda"
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:924
-#: ../../diskdrake/interactive.pm_.c:933 ../../diskdrake/interactive.pm_.c:999
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:934
+#: ../../diskdrake/interactive.pm_.c:943
+#: ../../diskdrake/interactive.pm_.c:1009
msgid "Read carefully!"
msgstr "Baca dengan seksama!"
@@ -1568,10 +1593,15 @@ msgid "Please click on a partition"
msgstr "Silakan pilih partisi"
#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
-#: ../../install_steps_gtk.pm_.c:471
+#: ../../install_steps_gtk.pm_.c:465
msgid "Details"
msgstr "Detil"
+#: ../../diskdrake/hd_gtk.pm_.c:252
+#, fuzzy
+msgid "No hard drives found"
+msgstr "Printer tak ditemukan!"
+
#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Ext2"
msgstr "Ext2"
@@ -1596,13 +1626,13 @@ msgstr "SunOS"
msgid "Swap"
msgstr "Swap"
-#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1105
msgid "Empty"
msgstr "Kosong"
-#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:331
-#: ../../install_steps_gtk.pm_.c:389 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1679
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:325
+#: ../../install_steps_gtk.pm_.c:383 ../../mouse.pm_.c:165
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1754
msgid "Other"
msgstr "Lainnya"
@@ -1610,12 +1640,12 @@ msgstr "Lainnya"
msgid "Filesystem types:"
msgstr "Tipe filesystem:"
-#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:397
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:402
msgid "Create"
msgstr "Buat"
-#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:376
-#: ../../diskdrake/interactive.pm_.c:521 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:380
+#: ../../diskdrake/interactive.pm_.c:531 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "Tipe"
@@ -1625,7 +1655,7 @@ msgstr "Tipe"
msgid "Use ``%s'' instead"
msgstr "Gunakan ``%s'' saja"
-#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:389
msgid "Delete"
msgstr "Hapus"
@@ -1633,110 +1663,110 @@ msgstr "Hapus"
msgid "Use ``Unmount'' first"
msgstr "Gunakan ``unmount'' terlebih dahulu"
-#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:513
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:518
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
msgstr ""
"Setelah mengganti tipe partisi %s, semua data pada partisi ini akan hilang"
-#: ../../diskdrake/interactive.pm_.c:173
+#: ../../diskdrake/interactive.pm_.c:174
msgid "Choose a partition"
msgstr "Pilih partisi"
-#: ../../diskdrake/interactive.pm_.c:173
+#: ../../diskdrake/interactive.pm_.c:174
msgid "Choose another partition"
msgstr "Pilih partisi lain"
-#: ../../diskdrake/interactive.pm_.c:198
+#: ../../diskdrake/interactive.pm_.c:199
msgid "Exit"
msgstr "Keluar"
-#: ../../diskdrake/interactive.pm_.c:220
+#: ../../diskdrake/interactive.pm_.c:221
msgid "Toggle to expert mode"
msgstr "Ubah ke modus ahli"
-#: ../../diskdrake/interactive.pm_.c:220
+#: ../../diskdrake/interactive.pm_.c:221
msgid "Toggle to normal mode"
msgstr "Ubah ke modus normal"
-#: ../../diskdrake/interactive.pm_.c:220
+#: ../../diskdrake/interactive.pm_.c:221
msgid "Undo"
msgstr "Kembali"
-#: ../../diskdrake/interactive.pm_.c:239
+#: ../../diskdrake/interactive.pm_.c:240
msgid "Continue anyway?"
msgstr "Jalan terus?"
-#: ../../diskdrake/interactive.pm_.c:244
+#: ../../diskdrake/interactive.pm_.c:245
msgid "Quit without saving"
msgstr "Keluar tanpa menyimpan"
-#: ../../diskdrake/interactive.pm_.c:244
+#: ../../diskdrake/interactive.pm_.c:245
msgid "Quit without writing the partition table?"
msgstr "Keluar dari program tanpa menyimpan dalam tabel partisi?"
-#: ../../diskdrake/interactive.pm_.c:249
+#: ../../diskdrake/interactive.pm_.c:250
msgid "Do you want to save /etc/fstab modifications"
msgstr "Ingin simpan modifikasi /etc/fstab"
-#: ../../diskdrake/interactive.pm_.c:261
+#: ../../diskdrake/interactive.pm_.c:263
msgid "Auto allocate"
msgstr "Alokasi otomatis"
-#: ../../diskdrake/interactive.pm_.c:261
+#: ../../diskdrake/interactive.pm_.c:263
msgid "Clear all"
msgstr "Hapus semua"
-#: ../../diskdrake/interactive.pm_.c:261
+#: ../../diskdrake/interactive.pm_.c:263
#: ../../install_steps_interactive.pm_.c:214
msgid "More"
msgstr "Tambahan"
-#: ../../diskdrake/interactive.pm_.c:264
+#: ../../diskdrake/interactive.pm_.c:267
msgid "Hard drive information"
msgstr "Info hard drive"
-#: ../../diskdrake/interactive.pm_.c:294
+#: ../../diskdrake/interactive.pm_.c:298
msgid "All primary partitions are used"
msgstr "Semua partisi primary telah digunakan"
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:299
msgid "I can't add any more partition"
msgstr "Partisi tak dapat ditambah"
-#: ../../diskdrake/interactive.pm_.c:296
+#: ../../diskdrake/interactive.pm_.c:300
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
msgstr ""
"Untuk menambahkan partisi, hapus satu agar dapat membuat partisi extended"
-#: ../../diskdrake/interactive.pm_.c:306
+#: ../../diskdrake/interactive.pm_.c:310
msgid "Save partition table"
msgstr "Simpan tabel partisi"
-#: ../../diskdrake/interactive.pm_.c:307
+#: ../../diskdrake/interactive.pm_.c:311
msgid "Restore partition table"
msgstr "Kembalikan tabel partisi"
-#: ../../diskdrake/interactive.pm_.c:308
+#: ../../diskdrake/interactive.pm_.c:312
msgid "Rescue partition table"
msgstr "Selamatkan tabel partisi"
-#: ../../diskdrake/interactive.pm_.c:310
+#: ../../diskdrake/interactive.pm_.c:314
msgid "Reload partition table"
msgstr "Muat ulang tabel partisi"
-#: ../../diskdrake/interactive.pm_.c:315
+#: ../../diskdrake/interactive.pm_.c:319
msgid "Removable media automounting"
msgstr "Mount otomatis media lepas"
-#: ../../diskdrake/interactive.pm_.c:324 ../../diskdrake/interactive.pm_.c:344
+#: ../../diskdrake/interactive.pm_.c:328 ../../diskdrake/interactive.pm_.c:348
msgid "Select file"
msgstr "Pilih file"
-#: ../../diskdrake/interactive.pm_.c:331
+#: ../../diskdrake/interactive.pm_.c:335
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1744,11 +1774,11 @@ msgstr ""
"Backup tabel partisi tidak memiliki ukuran yg sama\n"
"Jalan terus?"
-#: ../../diskdrake/interactive.pm_.c:345
+#: ../../diskdrake/interactive.pm_.c:349
msgid "Warning"
msgstr "Awas"
-#: ../../diskdrake/interactive.pm_.c:346
+#: ../../diskdrake/interactive.pm_.c:350
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1756,79 +1786,71 @@ msgstr ""
"Masukkan disket ke drive\n"
"semua data di disket ini akan hilang"
-#: ../../diskdrake/interactive.pm_.c:357
+#: ../../diskdrake/interactive.pm_.c:361
msgid "Trying to rescue partition table"
msgstr "Sedang mencoba menyelamatkan tabel partisi"
-#: ../../diskdrake/interactive.pm_.c:363
+#: ../../diskdrake/interactive.pm_.c:367
msgid "Detailed information"
msgstr "Info detil"
-#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:652
+#: ../../diskdrake/interactive.pm_.c:382 ../../diskdrake/interactive.pm_.c:662
msgid "Resize"
msgstr "Ubah ukuran"
-#: ../../diskdrake/interactive.pm_.c:379 ../../diskdrake/interactive.pm_.c:705
+#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/interactive.pm_.c:715
msgid "Move"
msgstr "Pindah"
-#: ../../diskdrake/interactive.pm_.c:380
+#: ../../diskdrake/interactive.pm_.c:384
msgid "Format"
msgstr "Format"
-#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/smbnfs_gtk.pm_.c:82
-msgid "Mount"
-msgstr "Mount"
-
-#: ../../diskdrake/interactive.pm_.c:382
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Add to RAID"
msgstr "Tambahkan ke RAID"
-#: ../../diskdrake/interactive.pm_.c:383
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Add to LVM"
msgstr "Tambahkan ke LVM"
-#: ../../diskdrake/interactive.pm_.c:384 ../../diskdrake/smbnfs_gtk.pm_.c:81
-msgid "Unmount"
-msgstr "Unmount"
-
-#: ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/interactive.pm_.c:390
msgid "Remove from RAID"
msgstr "Hapus dari RAID"
-#: ../../diskdrake/interactive.pm_.c:387
+#: ../../diskdrake/interactive.pm_.c:391
msgid "Remove from LVM"
msgstr "Hapus dari LVM"
-#: ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/interactive.pm_.c:392
msgid "Modify RAID"
msgstr "Ganti RAID"
-#: ../../diskdrake/interactive.pm_.c:389
+#: ../../diskdrake/interactive.pm_.c:393
msgid "Use for loopback"
msgstr "digunakan untuk loopback"
-#: ../../diskdrake/interactive.pm_.c:428
+#: ../../diskdrake/interactive.pm_.c:433
msgid "Create a new partition"
msgstr "Membuat partisi baru"
-#: ../../diskdrake/interactive.pm_.c:431
+#: ../../diskdrake/interactive.pm_.c:436
msgid "Start sector: "
msgstr "Sektor awal: "
-#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:805
+#: ../../diskdrake/interactive.pm_.c:438 ../../diskdrake/interactive.pm_.c:815
msgid "Size in MB: "
msgstr "Ukuran dalam MB: "
-#: ../../diskdrake/interactive.pm_.c:434 ../../diskdrake/interactive.pm_.c:806
+#: ../../diskdrake/interactive.pm_.c:439 ../../diskdrake/interactive.pm_.c:816
msgid "Filesystem type: "
msgstr "Tipe filesystem: "
-#: ../../diskdrake/interactive.pm_.c:439
+#: ../../diskdrake/interactive.pm_.c:444
msgid "Preference: "
msgstr "Kesukaan: "
-#: ../../diskdrake/interactive.pm_.c:464
+#: ../../diskdrake/interactive.pm_.c:469
msgid ""
"You can't create a new partition\n"
"(since you reached the maximal number of primary partitions).\n"
@@ -1838,33 +1860,33 @@ msgstr ""
"(karena jumlah maksimal partisi primer telah tercapai).\n"
"Hapuslah satu partisi primer dan buatlah partisi extended."
-#: ../../diskdrake/interactive.pm_.c:494
+#: ../../diskdrake/interactive.pm_.c:499
msgid "Remove the loopback file?"
msgstr "Hapus file loopback?"
-#: ../../diskdrake/interactive.pm_.c:519
+#: ../../diskdrake/interactive.pm_.c:529
msgid "Change partition type"
msgstr "Mengubah tipe partisi"
-#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:530 ../../diskdrake/removable.pm_.c:48
msgid "Which filesystem do you want?"
msgstr "Filesystem apa yang Anda inginkan?"
-#: ../../diskdrake/interactive.pm_.c:526
+#: ../../diskdrake/interactive.pm_.c:536
msgid "Switching from ext2 to ext3"
msgstr "Pindah dari ext2 ke ext3"
-#: ../../diskdrake/interactive.pm_.c:556
+#: ../../diskdrake/interactive.pm_.c:566
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "Device loopback %s akan dimount ke mana?"
-#: ../../diskdrake/interactive.pm_.c:557
+#: ../../diskdrake/interactive.pm_.c:567
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Mount device %s akan dimount ke mana?"
-#: ../../diskdrake/interactive.pm_.c:563
+#: ../../diskdrake/interactive.pm_.c:573
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1872,135 +1894,135 @@ msgstr ""
"Tak bisa unset mount point karena partisi ini sudah digunakan untuk\n"
"loopback. Hapus dulu loopbacknya."
-#: ../../diskdrake/interactive.pm_.c:584
+#: ../../diskdrake/interactive.pm_.c:594
#, c-format
msgid "Where do you want to mount %s?"
msgstr "%s akan dimount ke mana?"
-#: ../../diskdrake/interactive.pm_.c:608
+#: ../../diskdrake/interactive.pm_.c:618
msgid "Computing FAT filesystem bounds"
msgstr "Sedang menghitung bound filesystem FAT"
-#: ../../diskdrake/interactive.pm_.c:608 ../../diskdrake/interactive.pm_.c:667
-#: ../../install_interactive.pm_.c:131
+#: ../../diskdrake/interactive.pm_.c:618 ../../diskdrake/interactive.pm_.c:677
+#: ../../install_interactive.pm_.c:133
msgid "Resizing"
msgstr "Sedang mengubah ukuran"
-#: ../../diskdrake/interactive.pm_.c:640
+#: ../../diskdrake/interactive.pm_.c:650
msgid "This partition is not resizeable"
msgstr "Ukuran partisi ini tidak dapat diubah"
-#: ../../diskdrake/interactive.pm_.c:645
+#: ../../diskdrake/interactive.pm_.c:655
msgid "All data on this partition should be backed-up"
msgstr "Semua data pada partisi ini sebaiknya dibackup dulu"
-#: ../../diskdrake/interactive.pm_.c:647
+#: ../../diskdrake/interactive.pm_.c:657
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr "Sehabis meresize partisi %s, semua data pada partisi ini akan hilang"
-#: ../../diskdrake/interactive.pm_.c:652
+#: ../../diskdrake/interactive.pm_.c:662
msgid "Choose the new size"
msgstr "Pilih ukuran baru"
-#: ../../diskdrake/interactive.pm_.c:653
+#: ../../diskdrake/interactive.pm_.c:663
msgid "New size in MB: "
msgstr "Ukuran baru dalam MB: "
-#: ../../diskdrake/interactive.pm_.c:706
+#: ../../diskdrake/interactive.pm_.c:716
msgid "Which disk do you want to move it to?"
msgstr "Disk mana yang hendak dipindah?"
-#: ../../diskdrake/interactive.pm_.c:707
+#: ../../diskdrake/interactive.pm_.c:717
msgid "Sector"
msgstr "Sektor"
-#: ../../diskdrake/interactive.pm_.c:708
+#: ../../diskdrake/interactive.pm_.c:718
msgid "Which sector do you want to move it to?"
msgstr "Sektor mana yang hendak dipindah"
-#: ../../diskdrake/interactive.pm_.c:711
+#: ../../diskdrake/interactive.pm_.c:721
msgid "Moving"
msgstr "Pindah"
-#: ../../diskdrake/interactive.pm_.c:711
+#: ../../diskdrake/interactive.pm_.c:721
msgid "Moving partition..."
msgstr "Memindahkan partisi..."
-#: ../../diskdrake/interactive.pm_.c:728
+#: ../../diskdrake/interactive.pm_.c:738
msgid "Choose an existing RAID to add to"
msgstr "Pilih RAID yang ada untuk ditambahkan ke"
-#: ../../diskdrake/interactive.pm_.c:729 ../../diskdrake/interactive.pm_.c:746
+#: ../../diskdrake/interactive.pm_.c:739 ../../diskdrake/interactive.pm_.c:756
msgid "new"
msgstr "baru"
-#: ../../diskdrake/interactive.pm_.c:744
+#: ../../diskdrake/interactive.pm_.c:754
msgid "Choose an existing LVM to add to"
msgstr "Pilih LVM yang ada untuk ditambahkan ke"
-#: ../../diskdrake/interactive.pm_.c:749
+#: ../../diskdrake/interactive.pm_.c:759
msgid "LVM name?"
msgstr "nama LVM?"
-#: ../../diskdrake/interactive.pm_.c:790
+#: ../../diskdrake/interactive.pm_.c:800
msgid "This partition can't be used for loopback"
msgstr "Partisi ini tak bisa dipakai sebagai loopback"
-#: ../../diskdrake/interactive.pm_.c:803
+#: ../../diskdrake/interactive.pm_.c:813
msgid "Loopback"
msgstr "Loopback"
-#: ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:814
msgid "Loopback file name: "
msgstr "Nama file loopback: "
-#: ../../diskdrake/interactive.pm_.c:809
+#: ../../diskdrake/interactive.pm_.c:819
msgid "Give a file name"
msgstr "Berikan nama file"
-#: ../../diskdrake/interactive.pm_.c:812
+#: ../../diskdrake/interactive.pm_.c:822
msgid "File already used by another loopback, choose another one"
msgstr "File sudah digunakan loopback yang lain, pilih yang lainnya dong"
-#: ../../diskdrake/interactive.pm_.c:813
+#: ../../diskdrake/interactive.pm_.c:823
msgid "File already exists. Use it?"
msgstr "File sudah ada. Gunakan file ini ?"
-#: ../../diskdrake/interactive.pm_.c:836
+#: ../../diskdrake/interactive.pm_.c:846
msgid "Mount options"
msgstr "Opsi mount"
-#: ../../diskdrake/interactive.pm_.c:843
+#: ../../diskdrake/interactive.pm_.c:853
msgid "Various"
msgstr "Macam-macam"
-#: ../../diskdrake/interactive.pm_.c:907 ../../standalone/drakfloppy_.c:103
+#: ../../diskdrake/interactive.pm_.c:917 ../../standalone/drakfloppy_.c:103
msgid "device"
msgstr "device"
-#: ../../diskdrake/interactive.pm_.c:908
+#: ../../diskdrake/interactive.pm_.c:918
msgid "level"
msgstr "level"
-#: ../../diskdrake/interactive.pm_.c:909
+#: ../../diskdrake/interactive.pm_.c:919
msgid "chunk size"
msgstr "ukuran chunk"
-#: ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:934
msgid "Be careful: this operation is dangerous."
msgstr "Hati-hati: operasi ini berbahaya"
-#: ../../diskdrake/interactive.pm_.c:939
+#: ../../diskdrake/interactive.pm_.c:949
msgid "What type of partitioning?"
msgstr "Tipe partisi apa yang hendak digunakan?"
-#: ../../diskdrake/interactive.pm_.c:955
+#: ../../diskdrake/interactive.pm_.c:965
#, c-format
msgid "The package %s is needed. Install it?"
msgstr "Perlu paket %s. Anda ingin instal?"
-#: ../../diskdrake/interactive.pm_.c:969
+#: ../../diskdrake/interactive.pm_.c:979
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -2011,7 +2033,7 @@ msgstr ""
"Kalau Anda pakai LILO dan tak jalan, atau Anda tak mau LILO dan tak mau /"
"boot juga"
-#: ../../diskdrake/interactive.pm_.c:973
+#: ../../diskdrake/interactive.pm_.c:983
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -2022,7 +2044,7 @@ msgstr ""
"dan Anda tidak memiliki partisi /boot. Apabila Anda akan menggunakan lilo\n"
"(boot manager), hati-hati dalam menambahkan partisi /boot"
-#: ../../diskdrake/interactive.pm_.c:979
+#: ../../diskdrake/interactive.pm_.c:989
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
@@ -2032,44 +2054,44 @@ msgstr ""
"Sekarang bootloader tak ada yang bisa handel tanpa partisi /boot.\n"
"Jadi hati-hati dalam menambahkan partisi /boot"
-#: ../../diskdrake/interactive.pm_.c:999
+#: ../../diskdrake/interactive.pm_.c:1009
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "Tabel partisi pada drive %s akan ditulis ke disk!"
-#: ../../diskdrake/interactive.pm_.c:1003
+#: ../../diskdrake/interactive.pm_.c:1013
msgid "You'll need to reboot before the modification can take place"
msgstr "Anda harus reboot agar perubahan tabel partisi dapat berlaku"
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1024
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr "Sehabis memformat partisi %s semua data pada partisi ini akan hilang"
-#: ../../diskdrake/interactive.pm_.c:1016
+#: ../../diskdrake/interactive.pm_.c:1026
msgid "Formatting"
msgstr "Sedang memformat"
-#: ../../diskdrake/interactive.pm_.c:1017
+#: ../../diskdrake/interactive.pm_.c:1027
#, c-format
msgid "Formatting loopback file %s"
msgstr "Sekarang sedang memformat file loopback %s"
-#: ../../diskdrake/interactive.pm_.c:1018
-#: ../../install_steps_interactive.pm_.c:476
+#: ../../diskdrake/interactive.pm_.c:1028
+#: ../../install_steps_interactive.pm_.c:459
#, c-format
msgid "Formatting partition %s"
msgstr "Melakukan format partisi %s"
-#: ../../diskdrake/interactive.pm_.c:1029
+#: ../../diskdrake/interactive.pm_.c:1039
msgid "Hide files"
msgstr "Sembunyikan file"
-#: ../../diskdrake/interactive.pm_.c:1029
+#: ../../diskdrake/interactive.pm_.c:1039
msgid "Move files to the new partition"
msgstr "Pindah file ke partisi baru"
-#: ../../diskdrake/interactive.pm_.c:1030
+#: ../../diskdrake/interactive.pm_.c:1040
#, c-format
msgid ""
"Directory %s already contains data\n"
@@ -2078,83 +2100,83 @@ msgstr ""
"Direktori %s telah berisi data\n"
"(%s)"
-#: ../../diskdrake/interactive.pm_.c:1041
+#: ../../diskdrake/interactive.pm_.c:1051
msgid "Moving files to the new partition"
msgstr "Pindah file ke partisi baru"
-#: ../../diskdrake/interactive.pm_.c:1045
+#: ../../diskdrake/interactive.pm_.c:1055
#, c-format
msgid "Copying %s"
msgstr "Salin %s"
-#: ../../diskdrake/interactive.pm_.c:1049
+#: ../../diskdrake/interactive.pm_.c:1059
#, c-format
msgid "Removing %s"
msgstr "Hapus %s"
-#: ../../diskdrake/interactive.pm_.c:1059
+#: ../../diskdrake/interactive.pm_.c:1069
#, c-format
msgid "partition %s is now known as %s"
msgstr "partisi %s sekarang jadi %s"
-#: ../../diskdrake/interactive.pm_.c:1080
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1090
+#: ../../diskdrake/interactive.pm_.c:1149
msgid "Device: "
msgstr "Device: "
-#: ../../diskdrake/interactive.pm_.c:1081
+#: ../../diskdrake/interactive.pm_.c:1091
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "DOS letter: %s (hanya tebakan)\n"
-#: ../../diskdrake/interactive.pm_.c:1085
-#: ../../diskdrake/interactive.pm_.c:1093
-#: ../../diskdrake/interactive.pm_.c:1157
+#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1103
+#: ../../diskdrake/interactive.pm_.c:1168
msgid "Type: "
msgstr "Tipe: "
-#: ../../diskdrake/interactive.pm_.c:1089
+#: ../../diskdrake/interactive.pm_.c:1099
msgid "Name: "
msgstr "Nama: "
-#: ../../diskdrake/interactive.pm_.c:1097
+#: ../../diskdrake/interactive.pm_.c:1107
#, c-format
msgid "Start: sector %s\n"
msgstr "Mulai: sektor %s\n"
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1108
#, c-format
msgid "Size: %s"
msgstr "Ukuran: %s"
-#: ../../diskdrake/interactive.pm_.c:1100
+#: ../../diskdrake/interactive.pm_.c:1110
#, c-format
msgid ", %s sectors"
msgstr ", %s sektor"
-#: ../../diskdrake/interactive.pm_.c:1102
+#: ../../diskdrake/interactive.pm_.c:1112
#, c-format
msgid "Cylinder %d to %d\n"
msgstr "Silinder %d sampai %d\n"
-#: ../../diskdrake/interactive.pm_.c:1103
+#: ../../diskdrake/interactive.pm_.c:1113
msgid "Formatted\n"
msgstr "Telah diformat\n"
-#: ../../diskdrake/interactive.pm_.c:1104
+#: ../../diskdrake/interactive.pm_.c:1114
msgid "Not formatted\n"
msgstr "Belum diformat\n"
-#: ../../diskdrake/interactive.pm_.c:1105
+#: ../../diskdrake/interactive.pm_.c:1115
msgid "Mounted\n"
msgstr "Telah di-mount\n"
-#: ../../diskdrake/interactive.pm_.c:1106
+#: ../../diskdrake/interactive.pm_.c:1116
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1108
+#: ../../diskdrake/interactive.pm_.c:1118
#, c-format
msgid ""
"Loopback file(s):\n"
@@ -2163,7 +2185,7 @@ msgstr ""
"File loopback:\n"
" %s\n"
-#: ../../diskdrake/interactive.pm_.c:1109
+#: ../../diskdrake/interactive.pm_.c:1119
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -2171,27 +2193,27 @@ msgstr ""
"Partisi di-boot secara default\n"
" (untuk MS-DOS boot, bukan untuk lilo)\n"
-#: ../../diskdrake/interactive.pm_.c:1111
+#: ../../diskdrake/interactive.pm_.c:1121
#, c-format
msgid "Level %s\n"
msgstr "Level %s\n"
-#: ../../diskdrake/interactive.pm_.c:1112
+#: ../../diskdrake/interactive.pm_.c:1122
#, c-format
msgid "Chunk size %s\n"
msgstr "Ukuran chunk %s\n"
-#: ../../diskdrake/interactive.pm_.c:1113
+#: ../../diskdrake/interactive.pm_.c:1123
#, c-format
msgid "RAID-disks %s\n"
msgstr "Disk RAID %s\n"
-#: ../../diskdrake/interactive.pm_.c:1115
+#: ../../diskdrake/interactive.pm_.c:1125
#, c-format
msgid "Loopback file name: %s"
msgstr "Nama file loopback: %s"
-#: ../../diskdrake/interactive.pm_.c:1118
+#: ../../diskdrake/interactive.pm_.c:1128
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -2203,7 +2225,7 @@ msgstr ""
"partisi Driver, sebaiknya\n"
"biarkan begitu saja.\n"
-#: ../../diskdrake/interactive.pm_.c:1121
+#: ../../diskdrake/interactive.pm_.c:1131
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2215,57 +2237,61 @@ msgstr ""
"yang khusus digunakan \n"
"oleh sistem dual boot.\n"
-#: ../../diskdrake/interactive.pm_.c:1140
+#: ../../diskdrake/interactive.pm_.c:1150
+msgid "Read-only"
+msgstr ""
+
+#: ../../diskdrake/interactive.pm_.c:1151
#, c-format
msgid "Size: %s\n"
msgstr "Ukuran: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1141
+#: ../../diskdrake/interactive.pm_.c:1152
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Ukuran: %s silinber, %s head, %s sektor\n"
-#: ../../diskdrake/interactive.pm_.c:1142
+#: ../../diskdrake/interactive.pm_.c:1153
msgid "Info: "
msgstr "Info: "
-#: ../../diskdrake/interactive.pm_.c:1143
+#: ../../diskdrake/interactive.pm_.c:1154
#, c-format
msgid "LVM-disks %s\n"
msgstr "Disk LVM %s\n"
-#: ../../diskdrake/interactive.pm_.c:1144
+#: ../../diskdrake/interactive.pm_.c:1155
#, c-format
msgid "Partition table type: %s\n"
msgstr "Partisi tipe: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1145
+#: ../../diskdrake/interactive.pm_.c:1156
#, c-format
msgid "on channel %d id %d\n"
msgstr "pada kanal %d id %d\n"
-#: ../../diskdrake/interactive.pm_.c:1175
+#: ../../diskdrake/interactive.pm_.c:1186
msgid "Filesystem encryption key"
msgstr "Kunci sandi sistem file"
-#: ../../diskdrake/interactive.pm_.c:1176
+#: ../../diskdrake/interactive.pm_.c:1187
msgid "Choose your filesystem encryption key"
msgstr "Pilih kunci sandi sistem file Anda"
-#: ../../diskdrake/interactive.pm_.c:1179
+#: ../../diskdrake/interactive.pm_.c:1190
#, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr "Katasandi ini terlalu mudah (harus paling tidak %d karakter)"
-#: ../../diskdrake/interactive.pm_.c:1180
+#: ../../diskdrake/interactive.pm_.c:1191
msgid "The encryption keys do not match"
msgstr "Kunci sandi tak cocok"
-#: ../../diskdrake/interactive.pm_.c:1183
+#: ../../diskdrake/interactive.pm_.c:1194
msgid "Encryption key"
msgstr "Kunci sandi"
-#: ../../diskdrake/interactive.pm_.c:1184
+#: ../../diskdrake/interactive.pm_.c:1195
msgid "Encryption key (again)"
msgstr "Kunci sandi (lagi)"
@@ -2299,7 +2325,7 @@ msgid ""
"Please enter your username, password and domain name to access this host."
msgstr "Masukkan nama user, katakunci dan nama domain utk mengakses host ini."
-#: ../../diskdrake/smbnfs_gtk.pm_.c:178
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3527
msgid "Username"
msgstr "Nama user"
@@ -2311,23 +2337,23 @@ msgstr "Domain"
msgid "Search servers"
msgstr "Cari Server"
-#: ../../fs.pm_.c:552 ../../fs.pm_.c:562 ../../fs.pm_.c:566 ../../fs.pm_.c:570
-#: ../../fs.pm_.c:574 ../../fs.pm_.c:578
+#: ../../fs.pm_.c:544 ../../fs.pm_.c:554 ../../fs.pm_.c:558 ../../fs.pm_.c:562
+#: ../../fs.pm_.c:566 ../../fs.pm_.c:570
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s proses format dari %s gagal"
-#: ../../fs.pm_.c:615
+#: ../../fs.pm_.c:607
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "tidak bisa melakukan format %s dengan tipe %s"
-#: ../../fs.pm_.c:687 ../../fs.pm_.c:731
+#: ../../fs.pm_.c:681 ../../fs.pm_.c:724
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr "penyambungan partisi %s ke direktori %s gagal"
-#: ../../fs.pm_.c:746 ../../partition_table.pm_.c:602
+#: ../../fs.pm_.c:739 ../../partition_table.pm_.c:598
#, c-format
msgid "error unmounting %s: %s"
msgstr "error melepas mount %s: %s"
@@ -2344,33 +2370,50 @@ msgstr "dengan /usr"
msgid "server"
msgstr "server"
-#: ../../fsedit.pm_.c:472
+#: ../../fsedit.pm_.c:240
+#, fuzzy, c-format
+msgid ""
+"I can't read the partition table of device %s, it's too corrupted for me :(\n"
+"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
+"The other solution is to not allow DrakX to modify the partition table.\n"
+"(the error is %s)\n"
+"\n"
+"Do you agree to loose all the partitions?\n"
+msgstr ""
+"Tabel partisi rusak tak terbaca :(\n"
+"Partisi buruk dapat dicoba dihapus (SEMUA DATA AKAN HILANG!).\n"
+"Solusi lainnya adalah melarang DrakX memodifikasi tabel partisi.\n"
+"(pesan errornya adalah %s)\n"
+"\n"
+"Anda setuju untuk menghapus semua partisi?\n"
+
+#: ../../fsedit.pm_.c:501
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr "JFS tak dapat dipakai utk partisi berukuran di bawah 16MB"
-#: ../../fsedit.pm_.c:473
+#: ../../fsedit.pm_.c:502
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr "ReiserFS tak dapat dipakai utk partisi berukuran di bawah 32MB"
-#: ../../fsedit.pm_.c:492
+#: ../../fsedit.pm_.c:521
msgid "Mount points must begin with a leading /"
msgstr "Mount point harus diawali dengan /"
-#: ../../fsedit.pm_.c:493
+#: ../../fsedit.pm_.c:522
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Partisi dengan titik mount %s sudah ada\n"
-#: ../../fsedit.pm_.c:497
+#: ../../fsedit.pm_.c:526
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr "Anda tak dapat menggunakan LVM Logical Volume untuk titik mount %s."
-#: ../../fsedit.pm_.c:499
+#: ../../fsedit.pm_.c:528
msgid "This directory should remain within the root filesystem"
msgstr "Direktori ini harus ada di filesystem root"
-#: ../../fsedit.pm_.c:501
+#: ../../fsedit.pm_.c:530
msgid ""
"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
"point\n"
@@ -2378,102 +2421,141 @@ msgstr ""
"Anda perlu filesystem yg benar (ext2, reiserfs, xfs, atau jfs) utk titik "
"mount ini\n"
-#: ../../fsedit.pm_.c:503
+#: ../../fsedit.pm_.c:532
#, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr "Anda tak dapat menggunakan sistem file bersandi utk mount point %s"
-#: ../../fsedit.pm_.c:570
+#: ../../fsedit.pm_.c:599
msgid "Not enough free space for auto-allocating"
msgstr "Tak cukup ruangan untuk alokasi otomatis"
-#: ../../fsedit.pm_.c:572
+#: ../../fsedit.pm_.c:601
msgid "Nothing to do"
msgstr "Tiada yang dikerjakan"
-#: ../../fsedit.pm_.c:665
+#: ../../fsedit.pm_.c:694
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "error membuka file %s untuk ditulisi: %s"
-#: ../../fsedit.pm_.c:750
+#: ../../harddrake/sound.pm_.c:155
+msgid "No alternative driver"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:156
+#, c-format
+msgid "There's no known OSS/ALSA alternative driver for your sound card (%s)"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:158
+#, fuzzy
+msgid "Sound configuration"
+msgstr "konfigurasi CUPS"
+
+#: ../../harddrake/sound.pm_.c:159
+#, c-format
msgid ""
-"An error occurred - no valid devices were found on which to create new "
-"filesystems. Please check your hardware for the cause of this problem"
+"Here you can select an alternative driver (either OSS or ALSA) for your "
+"sound card (%s)"
msgstr ""
-"Error - tidak ada device yang valid untuk membuat filesystem baru. Periksa "
-"kembali hardware untuk mencari penyebabnya"
-#: ../../fsedit.pm_.c:773
-msgid "You don't have any partitions!"
-msgstr "Anda tak punya partisi!"
+#: ../../harddrake/sound.pm_.c:162
+#, fuzzy
+msgid "Driver:"
+msgstr "Driver"
+
+#: ../../harddrake/sound.pm_.c:173
+#, fuzzy
+msgid "No known driver"
+msgstr "Driver X"
+
+#: ../../harddrake/sound.pm_.c:174
+#, c-format
+msgid "There's no known driver for your sound card (%s)"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:177
+#, fuzzy
+msgid "Unkown driver"
+msgstr "Model tak dikenal"
+
+#: ../../harddrake/sound.pm_.c:178
+#, c-format
+msgid ""
+"The \"%s\" driver for your sound card is unlisted\n"
+"\n"
+"Please send the output of the \"lspcidrake -v\" command to\n"
+"<install at mandrakesoft dot com>\n"
+"with subject: unlisted sound driver \"%s\""
+msgstr ""
-#: ../../harddrake/ui.pm_.c:15
+#: ../../harddrake/ui.pm_.c:16
msgid "Model"
msgstr "Model"
-#: ../../harddrake/ui.pm_.c:15
+#: ../../harddrake/ui.pm_.c:16
msgid "hard disk model"
msgstr "model harddisk"
-#: ../../harddrake/ui.pm_.c:16
+#: ../../harddrake/ui.pm_.c:17
msgid "Channel"
msgstr "Kanal"
-#: ../../harddrake/ui.pm_.c:16
+#: ../../harddrake/ui.pm_.c:17
msgid "EIDE/SCSI channel"
msgstr "Kanal EIDE/SCSI"
-#: ../../harddrake/ui.pm_.c:18
+#: ../../harddrake/ui.pm_.c:19
msgid "Bus"
msgstr "Bus"
-#: ../../harddrake/ui.pm_.c:19
+#: ../../harddrake/ui.pm_.c:20
msgid ""
"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
msgstr "ini adalah bus fisik tempat alat tersambung (mis: PCI, USB, ...)"
-#: ../../harddrake/ui.pm_.c:20
+#: ../../harddrake/ui.pm_.c:21
msgid "Module"
msgstr "Modul"
-#: ../../harddrake/ui.pm_.c:20
+#: ../../harddrake/ui.pm_.c:21
msgid "the module of the GNU/Linux kernel that handle that device"
msgstr "modul kernel GNU/Linux yang menangani alat tersebut"
-#: ../../harddrake/ui.pm_.c:21
+#: ../../harddrake/ui.pm_.c:22
msgid "Media class"
msgstr "Kelas media"
-#: ../../harddrake/ui.pm_.c:21
+#: ../../harddrake/ui.pm_.c:22
msgid "class of hardware device"
msgstr "kelas alat hardware"
-#: ../../harddrake/ui.pm_.c:22 ../../printerdrake.pm_.c:1404
+#: ../../harddrake/ui.pm_.c:23 ../../printerdrake.pm_.c:1517
msgid "Description"
msgstr "Keterangan"
-#: ../../harddrake/ui.pm_.c:22
+#: ../../harddrake/ui.pm_.c:23
msgid "this field describe the device"
msgstr "keterangan alat"
-#: ../../harddrake/ui.pm_.c:24
+#: ../../harddrake/ui.pm_.c:25
msgid "Bus identification"
msgstr "Identifikasi bus"
-#: ../../harddrake/ui.pm_.c:25
+#: ../../harddrake/ui.pm_.c:26
msgid ""
-"- PCI and USB devices : this list the vendor, device, subvendor and "
-"subdevice PCI/USB ids"
+"- PCI and USB devices: this list the vendor, device, subvendor and subdevice "
+"PCI/USB ids"
msgstr ""
"- Alat PCI dan USB : daftar identitas PCI/USB penjual, alat, sub-penjual dan "
"sub-alat"
-#: ../../harddrake/ui.pm_.c:27
+#: ../../harddrake/ui.pm_.c:28
msgid "Location on the bus"
msgstr "Lokasi di bus"
-#: ../../harddrake/ui.pm_.c:28
+#: ../../harddrake/ui.pm_.c:29
msgid ""
"- pci devices: this gives the PCI slot, device and function of this card\n"
"- eide devices: the device is either a slave or a master device\n"
@@ -2483,48 +2565,57 @@ msgstr ""
"- alat eide: alat adalah majikan atau budak\n"
"- alat scsi: bus scsi dan id alat scsi"
-#: ../../harddrake/ui.pm_.c:31
+#: ../../harddrake/ui.pm_.c:32
msgid "Old device file"
msgstr "File device lama"
-#: ../../harddrake/ui.pm_.c:32
+#: ../../harddrake/ui.pm_.c:33
msgid "old static device name used in dev package"
msgstr "nama alat statis lama yg dipakai di paket dev"
-#: ../../harddrake/ui.pm_.c:33
+#: ../../harddrake/ui.pm_.c:34
msgid "New devfs device"
msgstr "Device devfs baru"
-#: ../../harddrake/ui.pm_.c:34
+#: ../../harddrake/ui.pm_.c:35
msgid "new dinamic device name generated by incore kernel devfs"
msgstr "nama alat dinamis baru yg dihasilkan oleh devfs kernel incore"
-#: ../../harddrake/ui.pm_.c:35
+#: ../../harddrake/ui.pm_.c:36
msgid "Number of buttons"
msgstr "Jumlah tombol"
-#: ../../harddrake/ui.pm_.c:36
+#: ../../harddrake/ui.pm_.c:37
msgid "the vendor name of the device"
msgstr "nama pembuat device"
-#: ../../harddrake/ui.pm_.c:60
+#: ../../harddrake/ui.pm_.c:38
+#, fuzzy
+msgid "Alternative drivers"
+msgstr "Halaman tes alternatif (A4)"
+
+#: ../../harddrake/ui.pm_.c:39
+msgid "the list of alternative drivers for this sound card"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:63
msgid "/_Quit"
msgstr "/_Keluar"
-#: ../../harddrake/ui.pm_.c:61 ../../harddrake/ui.pm_.c:62
-#: ../../harddrake/ui.pm_.c:68 ../../standalone/logdrake_.c:110
+#: ../../harddrake/ui.pm_.c:64 ../../harddrake/ui.pm_.c:65
+#: ../../harddrake/ui.pm_.c:71 ../../standalone/logdrake_.c:110
msgid "/_Help"
msgstr "/_Tolong"
-#: ../../harddrake/ui.pm_.c:62
+#: ../../harddrake/ui.pm_.c:65
msgid "/_Help..."
msgstr "/_Tolong..."
-#: ../../harddrake/ui.pm_.c:63
+#: ../../harddrake/ui.pm_.c:66
msgid "Harddrake help"
msgstr "Pertolongan Harddrake"
-#: ../../harddrake/ui.pm_.c:64
+#: ../../harddrake/ui.pm_.c:67
msgid ""
"Description of the fields:\n"
"\n"
@@ -2532,15 +2623,15 @@ msgstr ""
"Penjelasan isian:\n"
"\n"
-#: ../../harddrake/ui.pm_.c:68
+#: ../../harddrake/ui.pm_.c:71
msgid "/_About..."
msgstr "/_About..."
-#: ../../harddrake/ui.pm_.c:69
+#: ../../harddrake/ui.pm_.c:72
msgid "About Harddrake"
msgstr "Tentang Harddrake"
-#: ../../harddrake/ui.pm_.c:70
+#: ../../harddrake/ui.pm_.c:73
msgid ""
"This is HardDrake, a Mandrake hardware configuration tool.\n"
"Version:"
@@ -2548,51 +2639,51 @@ msgstr ""
"Inilah HardDrake, alat konfigurasi hardware Mandrake.\n"
"Versi:"
-#: ../../harddrake/ui.pm_.c:71
+#: ../../harddrake/ui.pm_.c:74
msgid "Author:"
msgstr "Pengarang:"
-#: ../../harddrake/ui.pm_.c:83
+#: ../../harddrake/ui.pm_.c:86
msgid "Harddrake2 version "
msgstr "Harddrake2 versi "
-#: ../../harddrake/ui.pm_.c:91
+#: ../../harddrake/ui.pm_.c:103
msgid "Detected hardware"
msgstr "Hardware terdeteksi"
-#: ../../harddrake/ui.pm_.c:92
+#: ../../harddrake/ui.pm_.c:105
+msgid "Information"
+msgstr "Info"
+
+#: ../../harddrake/ui.pm_.c:108
msgid "Configure module"
msgstr "Konfigurasi modul"
-#: ../../harddrake/ui.pm_.c:92
-msgid "Informations"
-msgstr "Info"
-
-#: ../../harddrake/ui.pm_.c:92
+#: ../../harddrake/ui.pm_.c:109
msgid "Run config tool"
msgstr "Jalankan alat konfigurasi"
-#: ../../harddrake/ui.pm_.c:96
+#: ../../harddrake/ui.pm_.c:113
msgid "Detection in progress"
msgstr "Pendeteksian sedang berjalan"
-#: ../../harddrake/ui.pm_.c:96 ../../interactive.pm_.c:388
+#: ../../harddrake/ui.pm_.c:113 ../../interactive.pm_.c:391
msgid "Please wait"
msgstr "Tunggulah"
-#: ../../harddrake/ui.pm_.c:139
+#: ../../harddrake/ui.pm_.c:156
msgid "primary"
msgstr "primer"
-#: ../../harddrake/ui.pm_.c:139
+#: ../../harddrake/ui.pm_.c:156
msgid "secondary"
msgstr "sekunder"
-#: ../../harddrake/ui.pm_.c:176
+#: ../../harddrake/ui.pm_.c:197
msgid "You can configure each parameter of the module here."
msgstr "Konfigurasi tiap parameter modul dapat dilakukan di sini."
-#: ../../harddrake/ui.pm_.c:192
+#: ../../harddrake/ui.pm_.c:213
#, c-format
msgid "Running \"%s\" ..."
msgstr "Jalankan \"%s\"..."
@@ -2626,15 +2717,15 @@ msgstr ""
"parameter kartu tv Anda jika perlu"
#: ../../harddrake/v4l.pm_.c:213
-msgid "Card model :"
+msgid "Card model:"
msgstr "Model kartu :"
#: ../../harddrake/v4l.pm_.c:214
-msgid "Tuner type :"
+msgid "Tuner type:"
msgstr "Tipe tuner :"
#: ../../harddrake/v4l.pm_.c:215
-msgid "Number of capture buffers :"
+msgid "Number of capture buffers:"
msgstr "Jumlah buffer penangkap :"
#: ../../harddrake/v4l.pm_.c:215
@@ -2642,11 +2733,11 @@ msgid "number of capture buffers for mmap'ed capture"
msgstr "Jumlah buffer penangkap utk penangkapan mmap"
#: ../../harddrake/v4l.pm_.c:217
-msgid "PLL setting :"
+msgid "PLL setting:"
msgstr "setting PLL :"
#: ../../harddrake/v4l.pm_.c:218
-msgid "Radio support :"
+msgid "Radio support:"
msgstr "Support radio :"
#: ../../harddrake/v4l.pm_.c:218
@@ -2658,22 +2749,22 @@ msgid ""
"GNU/Linux is a multiuser system, and this means that each user can have his\n"
"own preferences, his own files and so on. You can read the ``User Guide''\n"
"to learn more. But unlike \"root\", which is the administrator, the users\n"
-"you will add here will not be entitled to change anything except their own\n"
-"files and their own configuration. You will have to create at least one\n"
-"regular user for yourself. That account is where you should log in for\n"
-"routine use. Although it is very practical to log in as \"root\" everyday,\n"
-"it may also be very dangerous! The slightest mistake could mean that your\n"
-"system would not work any more. If you make a serious mistake as a regular\n"
-"user, you may only lose some information, but not the entire system.\n"
+"you add here will not be entitled to change anything except their own files\n"
+"and their own configuration. You will have to create at least one regular\n"
+"user for yourself. That account is where you should log in for routine use.\n"
+"Although it is very practical to log in as \"root\" everyday, it may also\n"
+"be very dangerous! The slightest mistake could mean that your system would\n"
+"not work any more. If you make a serious mistake as a regular user, you may\n"
+"only lose some information, but not the entire system.\n"
"\n"
"First, you have to enter your real name. This is not mandatory, of course -\n"
"as you can actually enter whatever you want. DrakX will then take the first\n"
"word you have entered in the box and will bring it over to the \"User\n"
"name\". This is the name this particular user will use to log onto the\n"
"system. You can change it. You then have to enter a password here. A\n"
-"non-privileged (regular) user's password is not as crucial as \"root\"' one\n"
-"from a security point of view, but that is no reason to neglect it: after\n"
-"all, your files are at risk.\n"
+"non-privileged (regular) user's password is not as crucial as the \"root\"'\n"
+"one from a security point of view, but that is no reason to neglect it:\n"
+"after all, your files are at risk.\n"
"\n"
"If you click on \"Accept user\", you can then add as many as you want. Add\n"
"a user for each one of your friends: your father or your sister, for\n"
@@ -2807,7 +2898,7 @@ msgid ""
"to have a graphical workstation!\n"
"\n"
"Moving the mouse cursor over a group name will display a short explanatory\n"
-"text about that group. If you deselect all groups when performing a regular\n"
+"text about that group. If you unselect all groups when performing a regular\n"
"installation (by opposition to an upgrade), a dialog will pop up proposing\n"
"different options for a minimal installation:\n"
"\n"
@@ -2876,10 +2967,10 @@ msgstr ""
#: ../../help.pm_.c:128
msgid ""
-"Finally, depending on whether or not you selected individual packages, you\n"
-"will be presented a tree containing all packages classified by groups and\n"
-"subgroups. While browsing the tree, you can select entire groups,\n"
-"subgroups, or individual packages.\n"
+"Finally, depending on whether or not you chose to be able to select\n"
+"individual packages, you will be presented a tree containing all packages\n"
+"classified by groups and subgroups. While browsing the tree, you can select\n"
+"entire groups, subgroups, or individual packages.\n"
"\n"
"Whenever you select a package on the tree, a description appears on the\n"
"right. When your selection is finished, click the \"Install\" button which\n"
@@ -2941,11 +3032,11 @@ msgstr ""
#: ../../help.pm_.c:164
msgid ""
-"You are now proposed to set up your Internet/network connection. If you\n"
-"wish to connect your computer to the Internet or to a local network, click\n"
-"\"OK\". The autodetection of network devices and modem will be launched. If\n"
-"this detection fails, uncheck the \"Use auto detection\" box next time. You\n"
-"may also choose not to configure the network, or do it later; in that case,\n"
+"You are now able to set up your Internet/network connection. If you wish to\n"
+"connect your computer to the Internet or to a local network, click \"OK\".\n"
+"The autodetection of network devices and modem will be launched. If this\n"
+"detection fails, uncheck the \"Use auto detection\" box next time. You may\n"
+"also choose not to configure the network, or do it later; in that case,\n"
"simply click the \"Cancel\" button.\n"
"\n"
"Available connections are: traditional modem, ISDN modem, ADSL connection,\n"
@@ -3016,7 +3107,7 @@ msgstr ""
msgid ""
"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
"local time according to the time zone you selected. It is however possible\n"
-"to deactivate this by deselecting \"Hardware clock set to GMT\" so that the\n"
+"to deactivate this by unselecting \"Hardware clock set to GMT\" so that the\n"
"hardware clock is the same as the system clock. This is useful when the\n"
"machine is hosting another operating system like Windows.\n"
"\n"
@@ -3057,7 +3148,9 @@ msgid ""
"If you can see the message during the test, and answer \"Yes\", then DrakX\n"
"will proceed to the next step. If you cannot see the message, it simply\n"
"means that the configuration was wrong and the test will automatically end\n"
-"after 10 seconds, restoring the screen."
+"after 10 seconds, restoring the screen. Refer then to the Video\n"
+"configuration section of the user guide for more information on how to\n"
+"configure your display."
msgstr ""
"X (Sistem Window X) adalah jantung antarmuka grafis GNU/Linux tempat sandar\n"
"semua lingkungan grafis (KDE, Gnome, AfterStep, WindowMaker...) Mandrake\n"
@@ -3074,30 +3167,7 @@ msgstr ""
"berikut. Jika Anda tak dapat melihat pesan, berarti konfigurasi salah dan\n"
"10 detik kemudian tes otomatis berakhir dg kembali ke layar semula."
-#: ../../help.pm_.c:237
-msgid ""
-"The first time you try the X configuration, you may not be very satisfied\n"
-"with its display (screen is too small, shifted left or right...). Hence,\n"
-"even if X starts up correctly, DrakX then asks you if the configuration\n"
-"suits you. It will also propose to change it by displaying a list of valid\n"
-"modes it could find, asking you to select one.\n"
-"\n"
-"As a last resort, if you still cannot get X to work, choose \"Change\n"
-"graphics card\", select \"Unlisted card\", and when prompted on which\n"
-"server, choose \"FBDev\". This is a failsafe option which works with any\n"
-"modern graphics card. Then choose \"Test again\" to be sure."
-msgstr ""
-"Pertama kali mencoba konfigurasi X, Anda mungkin tak puas dg tampilannya\n"
-"(layar terlalu kecil, tergeser ke kiri/kanan...). Jadi walau X jalan dengan\n"
-"baik, DrakX akan bertanya apakah konfigurasi ini memuaskan. Mode valid yang\n"
-"ditemukan juga akan disajikan untuk dipilih.\n"
-"\n"
-"Jika Anda tetap gagal menjalankan X, pilih \"Ubah kartu grafis\", lalu\n"
-"\"Kartu tak terdaftar\", dan saat ditanya server apa yg Anda inginkan,\n"
-"pilih \"FBDev\". Ini adalah opsi failsafe yg jalan di kartu grafis modern.\n"
-"Lalu pilih \"Tes lagi\" agar yakin."
-
-#: ../../help.pm_.c:249
+#: ../../help.pm_.c:239
msgid ""
"Finally, you will be asked whether you want to see the graphical interface\n"
"at boot. Note this question will be asked even if you chose not to test the\n"
@@ -3110,7 +3180,8 @@ msgstr ""
"Jelas, Anda ingin menjawab \"Tidak\" jika mesin Anda dijadikan server, atau\n"
"jika Anda gagal mengkonfigurasi display."
-#: ../../help.pm_.c:256
+#: ../../help.pm_.c:246
+#, fuzzy
msgid ""
"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
@@ -3130,10 +3201,10 @@ msgid ""
"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
"password, or any other reason.\n"
"\n"
-"When you click on this step, you will be asked to enter a disk inside the\n"
-"drive. The floppy disk you will insert must be empty or contain data which\n"
-"you do not need. You will not have to format it since DrakX will rewrite\n"
-"the whole disk."
+"If you say \"Yes\", you will be asked to enter a disk inside the drive. The\n"
+"floppy disk you will insert must be empty or contain data which you do not\n"
+"need. You will not have to format it since DrakX will rewrite the whole\n"
+"disk."
msgstr ""
"CDROM Mandrake Linux punya mode pertolongan built-in, yg bisa diakses dg\n"
"mem-boot dari CDROM, tekan >>F1<< dan ketik >>rescue<< di prompt. Tapi jika\n"
@@ -3143,7 +3214,7 @@ msgstr ""
" * saat instalasi bootloader, DrakX akan menulis ulang sektor boot (MBR)\n"
"disk utama Anda (kecuali jika Anda memakai manajer boot lain) sehingga Anda\n"
"dapat menjalankan GNU/Linux atau Mindows (jika Anda punya Mindows di sistem\n"
-"Anda). Jika Anda menginstal Mindows lagi, proses instal micro$oft akan\n"
+"Anda). Jika Anda menginstal Mindows lagi, proses instal microsoft akan\n"
"menulis ulang sektor boot, dan Anda takkan dapat menjalankan GNU/Linux!\n"
"\n"
" * jika ada masalah sehingga Anda tak dapat menjalankan GNU/Linux dari hard\n"
@@ -3155,7 +3226,7 @@ msgstr ""
"harus kosong / berisi data yg tak Anda perlukan. Tak perlu diformat sebab\n"
"DrakX akan menulis ulang seluruh disket."
-#: ../../help.pm_.c:280
+#: ../../help.pm_.c:270
msgid ""
"At this point, you need to choose where you want to install the Mandrake\n"
"Linux operating system on your hard drive. If your hard drive is empty or\n"
@@ -3188,7 +3259,9 @@ msgid ""
"\n"
" * \"Use existing partition\": the wizard has detected one or more existing\n"
"Linux partitions on your hard drive. If you want to use them, choose this\n"
-"option;\n"
+"option. You will then be asked to choose the mount points associated to\n"
+"each of the partitions. The legacy mount points are selected by default,\n"
+"and you should generally keep them.\n"
"\n"
" * \"Use the free space on the Windows; partition\": if Microsoft Windows\n"
"is installed on your hard drive and takes all the space available on it,\n"
@@ -3221,7 +3294,9 @@ msgid ""
" * \"Expert mode\": choose this option if you want to manually partition\n"
"your hard drive. Be careful - it is a powerful but dangerous choice. You\n"
"can very easily lose all your data. Hence, do not choose this unless you\n"
-"know what you are doing."
+"know what you are doing. To know how do use the DiskDrake utility used\n"
+"here, refer to the section ``Managing Your Partitions'' of the ````User\n"
+"Guide''''"
msgstr ""
"Pada tahap ini, pilihlah tempat Mandrake Linux akan diinstal di harddisk.\n"
"Bila harddisk masih kosong / ada sistem operasi lain yg mengisi seluruhnya,\n"
@@ -3279,7 +3354,7 @@ msgstr ""
"Awas! Cara ini amat perkasa tapi juga berbahaya. Anda bisa kehilangan data\n"
"dg mudah. Jangan pilih kecuali Anda tahu yg Anda lakukan."
-#: ../../help.pm_.c:347
+#: ../../help.pm_.c:341
msgid ""
"There you are. Installation is now complete and your GNU/Linux system is\n"
"ready to use. Just click \"OK\" to reboot the system. You can start\n"
@@ -3340,7 +3415,7 @@ msgstr ""
"(*) Anda perlu floppy berformat FAT (utk membuatnya di GNU/Linux, jalankan\n"
"\"mformat a:\")"
-#: ../../help.pm_.c:378
+#: ../../help.pm_.c:372
msgid ""
"Any partitions that have been newly defined must be formatted for use\n"
"(formatting means creating a filesystem).\n"
@@ -3389,7 +3464,7 @@ msgstr ""
"Klik \"Tambahan\" jika ingin memilih partisi yg akan dicek blok rusaknya\n"
"di disk."
-#: ../../help.pm_.c:404
+#: ../../help.pm_.c:398
msgid ""
"Your new Mandrake Linux operating system is currently being installed.\n"
"Depending on the number of packages you will be installing and the speed of\n"
@@ -3404,12 +3479,12 @@ msgstr ""
"\n"
"Sabar..."
-#: ../../help.pm_.c:412
+#: ../../help.pm_.c:406
msgid ""
"At the time you are installing Mandrake Linux, it is likely that some\n"
"packages have been updated since the initial release. Some bugs may have\n"
"been fixed, and security issues solved. To allow you to benefit from these\n"
-"updates, you are now proposed to download them from the Internet. Choose\n"
+"updates, you are now able to download them from the Internet. Choose\n"
"\"Yes\" if you have a working Internet connection, or \"No\" if you prefer\n"
"to install updated packages later.\n"
"\n"
@@ -3428,7 +3503,7 @@ msgstr ""
"dekat. Lalu muncul pohon seleksi paket: lihat lagi pilihan Anda, tekan\n"
"\"Instal\" untuk mengambil/nstal paket atau \"Batal\" jika tak jadi."
-#: ../../help.pm_.c:425
+#: ../../help.pm_.c:419
msgid ""
"Before continuing, you should read carefully the terms of the license. It\n"
"covers the whole Mandrake Linux distribution, and if you do not agree with\n"
@@ -3441,14 +3516,14 @@ msgstr ""
"dalamnya, klik \"Tolak\" agar instalasi terhenti. Untuk melanjutkan, klik\n"
"\"Terima\"."
-#: ../../help.pm_.c:432
+#: ../../help.pm_.c:426
msgid ""
"At this point, it is time to choose the security level desired for the\n"
"machine. As a rule of thumb, the more exposed the machine is, and the more\n"
"the data stored in it is crucial, the higher the security level should be.\n"
"However, a higher security level is generally obtained at the expense of\n"
-"easiness of use. Refer to the \"msec\" chapter of the ``Reference Manual''\n"
-"to get more information about the meaning of these levels.\n"
+"ease of use. Refer to the \"msec\" chapter of the ``Reference Manual'' to\n"
+"get more information about the meaning of these levels.\n"
"\n"
"If you do not know what to choose, keep the default option."
msgstr ""
@@ -3459,7 +3534,7 @@ msgstr ""
"\n"
"Jika Anda tak tahu apa yg dipilih, tetaplah pada opsi standar."
-#: ../../help.pm_.c:442
+#: ../../help.pm_.c:436
msgid ""
"At this point, you need to choose which partition(s) will be used for the\n"
"installation of your Mandrake Linux system. If partitions have already been\n"
@@ -3476,26 +3551,26 @@ msgid ""
" * \"Clear all\": this option deletes all partitions on the selected hard\n"
"drive;\n"
"\n"
-" * \"Auto allocate\": this option enables to automatically create \"Ext2\"\n"
-"and swap partitions in free space of your hard drive;\n"
+" * \"Auto allocate\": this option enables to automatically create ext3 and\n"
+"swap partitions in free space of your hard drive;\n"
"\n"
-" * \"More\": gives access to additional features:\n"
+"\"More\": gives access to additional features:\n"
"\n"
-" * \"Save partition table\": saves the partition table to a floppy.\n"
-"Useful for later partition-table recovery if necessary. It is strongly\n"
-"recommended to perform this step;\n"
+" * \"Save partition table\": saves the partition table to a floppy. Useful\n"
+"for later partition-table recovery if necessary. It is strongly recommended\n"
+"to perform this step;\n"
"\n"
-" * \"Restore partition table\": allows to restore a previously saved\n"
+" * \"Restore partition table\": allows to restore a previously saved\n"
"partition table from floppy disk;\n"
"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you\n"
-"can try to recover it using this option. Please be careful and remember\n"
-"that it can fail;\n"
+" * \"Rescue partition table\": if your partition table is damaged, you can\n"
+"try to recover it using this option. Please be careful and remember that it\n"
+"can fail;\n"
"\n"
-" * \"Reload partition table\": discards all changes and loads your\n"
-"initial partition table;\n"
+" * \"Reload partition table\": discards all changes and loads your initial\n"
+"partition table;\n"
"\n"
-" * \"Removable media automounting\": unchecking this option will force\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
"users to manually mount and unmount removable medias such as floppies and\n"
"CD-ROMs.\n"
"\n"
@@ -3523,7 +3598,7 @@ msgid ""
" * Ctrl-m to set the mount point.\n"
"\n"
"To get information about the different filesystem types available, please\n"
-"read the ext2fs chapter from the ``Reference Manual''.\n"
+"read the ext2FS chapter from the ``Reference Manual''.\n"
"\n"
"If you are installing on a PPC machine, you will want to create a small HFS\n"
"``bootstrap'' partition of at least 1MB, which will be used by the yaboot\n"
@@ -3590,7 +3665,7 @@ msgstr ""
"lebih besar, katakan 50MB, Anda bisa memanfaatkannya utk menyimpan kernel\n"
"cadangan dan image ramdisk utk situasi boot darurat."
-#: ../../help.pm_.c:513
+#: ../../help.pm_.c:507
msgid ""
"More than one Microsoft partition has been detected on your hard drive.\n"
"Please choose the one you want to resize in order to install your new\n"
@@ -3651,34 +3726,34 @@ msgstr ""
"\"Nama windows\" adalah huruf hard drive Anda pada windows (disk pertama\n"
"pada partisi disebut \"C:\")."
-#: ../../help.pm_.c:544
+#: ../../help.pm_.c:538
msgid "Please be patient. This operation can take several minutes."
msgstr "Sabar... Proses ini akan makan waktu beberapa menit"
-#: ../../help.pm_.c:547
+#: ../../help.pm_.c:541
msgid ""
"DrakX now needs to know if you want to perform a default (\"Recommended\")\n"
"installation or if you want to have greater control (\"Expert\"). You can\n"
"also choose to do a new install or an upgrade of an existing Mandrake Linux\n"
"system:\n"
"\n"
-" * \"Install\": completely wipes out the old system. In fact, depending on\n"
-"what currently holds your machine, you will be able to keep some old (Linux\n"
-"or other) partitions unchanged;\n"
+" * \"Install\": completely wipes out the old system, however, depending on\n"
+"what is currently installed on your machine, you may be able to keep some\n"
+"old partitions (Linux or otherwise) unchanged;\n"
"\n"
" * \"Upgrade\": this installation class allows to simply update the\n"
"packages currently installed on your Mandrake Linux system. It keeps the\n"
"current partitions of your hard drives as well as user configurations. All\n"
-"other configuration steps remain available with respect to plain\n"
+"other configuration steps remain available, similar to a normal\n"
"installation;\n"
"\n"
-" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
-"existing Mandrake Linux system while keeping all system configurations\n"
-"unchanged. Adding new packages to the current installation is also\n"
-"possible.\n"
+" * \"Upgrade Packages Only\": this new installation class allows you to\n"
+"upgrade an existing Mandrake Linux system while keeping all system\n"
+"configurations unchanged. Adding new packages to the current installation\n"
+"is also possible.\n"
"\n"
-"Upgrades should work fine for Mandrake Linux systems starting from \"8.1\"\n"
-"release.\n"
+"Upgrades should work fine on Mandrake Linux systems containing version\n"
+"\"8.1\" or later.\n"
"\n"
"Depending on your knowledge of GNU/Linux, select one of the following\n"
"choices:\n"
@@ -3687,11 +3762,11 @@ msgid ""
"operating system. The installation will be very easy and you will only be\n"
"asked a few questions;\n"
"\n"
-" * Expert: if you have a good knowledge of GNU/Linux, you can choose this\n"
-"installation class. The expert installation will allow you to perform a\n"
-"highly-customized installation. Answering some of the questions can be\n"
-"difficult if you do not have a good knowledge of GNU/Linux, so do not\n"
-"choose this unless you know what you are doing."
+" * Expert: if you have a good understanding of GNU/Linux, you may wish to\n"
+"perform a highly customized installation. Some of the decisions you will\n"
+"have to make may be difficult if you do not have good knowledge of\n"
+"GNU/Linux, so it is not recommended that those without a fair amount of\n"
+"experience select this installation class."
msgstr ""
"DrakX kini perlu tahu Anda ingin instalasi standar (\"Disarankan\") atau\n"
"ingin punya kontrol lebih besar (\"Ahli\"). Anda juga punya pilihan utk\n"
@@ -3721,19 +3796,22 @@ msgstr ""
"Bbrp pertanyaan sulit dijawab jika Anda tak berpengetahuan kuat tentang\n"
"GNU/Linux. Jangan pilih kelas ini kecuali Anda tahu apa yang Anda lakukan."
-#: ../../help.pm_.c:584
+#: ../../help.pm_.c:578
msgid ""
"Normally, DrakX selects the right keyboard for you (depending on the\n"
-"language you have chosen) and you won't even see this step. However, you\n"
-"might not have a keyboard that corresponds exactly to your language: for\n"
-"example, if you are an English speaking Swiss person, you may still want\n"
-"your keyboard to be a Swiss keyboard. Or if you speak English but are\n"
-"located in Quebec, you may find yourself in the same situation. In both\n"
-"cases, you will have to go back to this installation step and select an\n"
-"appropriate keyboard from the list.\n"
+"language you have chosen). However, you might not have a keyboard that\n"
+"corresponds exactly to your language: for example, if you are an English\n"
+"speaking Swiss person, you may still want your keyboard to be a Swiss\n"
+"keyboard. Or if you speak English but are located in Quebec, you may find\n"
+"yourself in the same situation. In both cases, you will have to go back to\n"
+"this installation step and select an appropriate keyboard from the list.\n"
"\n"
"Click on the \"More\" button to be presented with the complete list of\n"
-"supported keyboards."
+"supported keyboards.\n"
+"\n"
+"If you choose a keyboard layout based on a non-latin alphabet, you will be\n"
+"asked on next dialog to choose the key binding that will switch the\n"
+"keyboard layout between the latin and non latin layouts."
msgstr ""
"Normalnya, DrakX memilih papanketik utk Anda (sesuai bahasa yg Anda pilih)\n"
"dan Anda bahkan takkan melihat tahap ini. Tapi Anda mungkin tak punya papan\n"
@@ -3745,8 +3823,10 @@ msgstr ""
"\n"
"Klik \"Lagi\" utk menampilkan daftar lengkap keyboard ter-support."
-#: ../../help.pm_.c:597
+#: ../../help.pm_.c:594
msgid ""
+"The first step is to choose your preferred language.\n"
+"\n"
"Please choose your preferred language for installation and system usage.\n"
"\n"
"Clicking on the \"Advanced\" button will allow you to select other\n"
@@ -3770,7 +3850,7 @@ msgstr ""
"Anda dapat menginstal banyak bahasa. Setelah Anda selesai memilih tambahan\n"
"bahasa (locale) klik \"OK\" untuk melanjutkan."
-#: ../../help.pm_.c:610
+#: ../../help.pm_.c:609
msgid ""
"DrakX generally detects the number of buttons your mouse has. If not, it\n"
"assumes you have a two-button mouse and will set it up for third-button\n"
@@ -3783,7 +3863,14 @@ msgid ""
"If you choose a mouse other than the default, a test screen will be\n"
"displayed. Use the buttons and wheel to verify that the settings are\n"
"correct. If the mouse is not working well, press the space bar or [Return]\n"
-"to \"Cancel\" and choose again."
+"to \"Cancel\" and choose again.\n"
+"\n"
+"Wheel mouses are sometimes not automatically detected. You will need to\n"
+"manually select it in the list. Be sure to select the one corresponding to\n"
+"the correct port it is attached to. After you have pressed the \"OK\"\n"
+"button, a mouse image is displayed. You then need to move the wheel of your\n"
+"mouse to activate it correctly. Then test all buttons and movements are\n"
+"correct."
msgstr ""
"Secara standar DrakX berasumsi mouse Anda bertombol dua dan akan menset-up\n"
"emulasi 3-tombol. DrakX otomatis tahu itu mouse PS/2, serial atau USB.\n"
@@ -3795,7 +3882,7 @@ msgstr ""
"mouse. Gunakan tombol dan roda untuk verifikasi setting. Jika mouse tak\n"
"bekerja baik tekan spasi atau RETURN untuk \"Batal\" dan pilih lagi."
-#: ../../help.pm_.c:624
+#: ../../help.pm_.c:630
msgid ""
"Please select the correct port. For example, the \"COM1\" port under\n"
"Windows is named \"ttyS0\" under GNU/Linux."
@@ -3803,7 +3890,7 @@ msgstr ""
"Pilih port yang benar. Misalnya \"COM1\" di Mindows bernama \"ttyS0\" di \n"
"GNU/Linux."
-#: ../../help.pm_.c:628
+#: ../../help.pm_.c:634
msgid ""
"This is the most crucial decision point for the security of your GNU/Linux\n"
"system: you have to enter the \"root\" password. \"root\" is the system\n"
@@ -3833,9 +3920,9 @@ msgid ""
"In Expert mode, you will be asked if you will be connecting to an\n"
"authentication server, like NIS or LDAP.\n"
"\n"
-"If your network uses the LDAP (or NIS) protocol for authentication, select\n"
-"\"LDAP\" (or \"NIS\") as authentication. If you do not know, ask your\n"
-"network administrator.\n"
+"If your network uses either of the LDAP, NIS, or PDC Windows Domain\n"
+"authentication services, select the appropriate one as \"authentication\".\n"
+"If you do not know, ask your network administrator.\n"
"\n"
"If your computer is not connected to any administrated network, you will\n"
"want to choose \"Local files\" for authentication."
@@ -3871,7 +3958,7 @@ msgstr ""
"Jika komputer Anda tak terhubung dengan jaringan terkelola, pilihlah\n"
"\"File lokal\" untuk otentikasi."
-#: ../../help.pm_.c:664
+#: ../../help.pm_.c:670
msgid ""
"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
@@ -3910,16 +3997,7 @@ msgid ""
"options. !!\n"
"\n"
"Clicking the \"Advanced\" button in this dialog will offer many advanced\n"
-"options, which are reserved to the expert user.\n"
-"\n"
-"After you have configured the general bootloader parameters, the list of\n"
-"boot options which will be available at boot time will be displayed.\n"
-"\n"
-"If there is another operating system installed on your machine, it will\n"
-"automatically be added to the boot menu. Here, you can choose to fine-tune\n"
-"the existing options. Select an entry and click \"Modify\" to modify or\n"
-"remove it; \"Add\" creates a new entry; and \"Done\" goes on to the next\n"
-"installation step."
+"options, which are reserved for the expert user."
msgstr ""
"LILO/GRUB adalah pemuat boot GNU/Linux. Step ini biasanya otomatis penuh.\n"
"DrakX menganalisa sektor boot disk dan beraksi menurut apa yg ditemukan:\n"
@@ -3961,13 +4039,16 @@ msgstr ""
"membuat masukan baru; dan \"Selesai\" membawa Anda ke tahap instalasi\n"
"berikutnya."
-#: ../../help.pm_.c:713
+#: ../../help.pm_.c:710
msgid ""
-"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
-"either GNU/Linux or any other operating system present on your computer.\n"
-"Normally, these other operating systems are correctly detected and\n"
-"installed. If this is not the case, you can add an entry by hand in this\n"
-"screen. Be careful to choose the correct parameters.\n"
+"After you have configured the general bootloader parameters, the list of\n"
+"boot options which will be available at boot time will be displayed.\n"
+"\n"
+"If there is another operating system installed on your machine, it will\n"
+"automatically be added to the boot menu. Here, you can choose to fine-tune\n"
+"the existing options. Select an entry and click \"Modify\" to modify or\n"
+"remove it; \"Add\" creates a new entry; and \"Done\" goes on to the next\n"
+"installation step.\n"
"\n"
"You may also not want to give access to these other operating systems to\n"
"anyone. In which case, you can delete the corresponding entries. But then,\n"
@@ -4053,18 +4134,18 @@ msgstr ""
#: ../../help.pm_.c:759
msgid ""
-"DrakX now detects any IDE device present in your computer. It will also\n"
-"scan for one or more PCI SCSI card(s) on your system. If a SCSI card is\n"
+"DrakX now detects any IDE devices present in your computer. It will also\n"
+"scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
"found, DrakX will automatically install the appropriate driver.\n"
"\n"
"Because hardware detection does not always detect a piece of hardware,\n"
"DrakX will ask you to confirm if a PCI SCSI card is present. Click \"Yes\"\n"
"if you know that there is a SCSI card installed in your machine. You will\n"
-"be presented a list of SCSI cards to choose from. Click \"No\" if you have\n"
-"no SCSI hardware. If you are unsure, you can check the list of hardware\n"
-"detected in your machine by selecting \"See hardware info\" and clicking\n"
-"\"OK\". Examine the list of hardware and then click on the \"OK\" button to\n"
-"return to the SCSI interface question.\n"
+"be presented with a list of SCSI cards to choose from. Click \"No\" if you\n"
+"have no SCSI hardware. If you are unsure, you can check the list of\n"
+"hardware detected in your machine by selecting \"See hardware info\" and\n"
+"clicking \"OK\". Examine the list of hardware and then click on the \"OK\"\n"
+"button to return to the SCSI interface question.\n"
"\n"
"If you have to manually specify your adapter, DrakX will ask if you want to\n"
"specify options for it. You should allow DrakX to probe the hardware for\n"
@@ -4270,7 +4351,9 @@ msgid ""
"order to configure the clock according to the time zone you are in;\n"
"\n"
" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
-"configuration wizard;\n"
+"configuration wizard. Consult the corresponding chapter of the ``User\n"
+"Guide'' for more information on how to setup a new printer. The interface\n"
+"presented there is similar to the one used during installation;\n"
"\n"
" * \"Sound card\": if a sound card is detected on your system, it is\n"
"displayed here. No modification possible at installation time;\n"
@@ -4306,7 +4389,7 @@ msgstr ""
" * \"Kartu ISDN\": kartu ISDN yg terdeteksi di sistem Anda akan ditampilkan\n"
"di sini. Anda dapat meng-klik tombol utk mengubah parameternya."
-#: ../../help.pm_.c:894
+#: ../../help.pm_.c:896
msgid ""
"Choose the hard drive you want to erase in order to install your new\n"
"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
@@ -4316,7 +4399,7 @@ msgstr ""
"Linux Mandrake. Hati-hati, semua data di situ akan hilang dan\n"
"tak dapat dikembalikan seperti semula!"
-#: ../../help.pm_.c:899
+#: ../../help.pm_.c:901
msgid ""
"Click on \"OK\" if you want to delete all data and partitions present on\n"
"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
@@ -4349,7 +4432,7 @@ msgstr ""
msgid "You must also format %s"
msgstr "Anda harus juga memformat %s"
-#: ../../install_any.pm_.c:418
+#: ../../install_any.pm_.c:423
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -4371,20 +4454,29 @@ msgstr ""
"\n"
"Jadi instal server ini?\n"
-#: ../../install_any.pm_.c:453
+#: ../../install_any.pm_.c:441
+#, c-format
+msgid ""
+"The following packages will be removed to allow upgrading your system: %s\n"
+"\n"
+"\n"
+"Do you really want to remove these packages?\n"
+msgstr ""
+
+#: ../../install_any.pm_.c:471
msgid "Can't use broadcast with no NIS domain"
msgstr "Tanpa domain NIS, broadcast tak dapat dipakai"
-#: ../../install_any.pm_.c:841
+#: ../../install_any.pm_.c:862
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Masukkan disket yang sudah diformat dengan tipe FAT di drive %s"
-#: ../../install_any.pm_.c:845
+#: ../../install_any.pm_.c:866
msgid "This floppy is not FAT formatted"
msgstr "Disket ini tak diformat dengan sistem FAT"
-#: ../../install_any.pm_.c:857
+#: ../../install_any.pm_.c:878
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -4392,11 +4484,19 @@ msgstr ""
"Untuk menggunakan pilihan paket yang sudah disimpan sebelumnya, bootlah "
"instalasi dengan pilihan ''linux defcfg=floppy''"
-#: ../../install_any.pm_.c:880 ../../partition_table.pm_.c:771
+#: ../../install_any.pm_.c:901 ../../partition_table.pm_.c:767
#, c-format
msgid "Error reading file %s"
msgstr "Error saat membaca file %s"
+#: ../../install_any.pm_.c:1023
+msgid ""
+"An error occurred - no valid devices were found on which to create new "
+"filesystems. Please check your hardware for the cause of this problem"
+msgstr ""
+"Error - tidak ada device yang valid untuk membuat filesystem baru. Periksa "
+"kembali hardware untuk mencari penyebabnya"
+
#: ../../install_interactive.pm_.c:23
#, c-format
msgid ""
@@ -4430,59 +4530,59 @@ msgstr ""
"\n"
"Jalan terus?"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:168
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:169
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "Anda harus punya partisi FAT termount pada /boot/efi"
-#: ../../install_interactive.pm_.c:91
+#: ../../install_interactive.pm_.c:92
msgid "Use free space"
msgstr "Pakai ruang kosong"
-#: ../../install_interactive.pm_.c:93
+#: ../../install_interactive.pm_.c:94
msgid "Not enough free space to allocate new partitions"
msgstr "Tidak ada cukup ruangan untuk mengalokasikan partisi baru"
-#: ../../install_interactive.pm_.c:101
+#: ../../install_interactive.pm_.c:102
msgid "Use existing partitions"
msgstr "Pakai partisi yang sudah ada"
-#: ../../install_interactive.pm_.c:103
+#: ../../install_interactive.pm_.c:104
msgid "There is no existing partition to use"
msgstr "Tidak ada partisi yang bisa digunakan"
-#: ../../install_interactive.pm_.c:110
+#: ../../install_interactive.pm_.c:111
msgid "Use the Windows partition for loopback"
msgstr "Gunakan partisi windows untuk loopback"
-#: ../../install_interactive.pm_.c:113
+#: ../../install_interactive.pm_.c:114
msgid "Which partition do you want to use for Linux4Win?"
msgstr "Partisi mana yang hendak dipakai oleh Linux4Win?"
-#: ../../install_interactive.pm_.c:115
+#: ../../install_interactive.pm_.c:116
msgid "Choose the sizes"
msgstr "Pilih ukurannya"
-#: ../../install_interactive.pm_.c:116
+#: ../../install_interactive.pm_.c:117
msgid "Root partition size in MB: "
msgstr "Ukuran partisi root dalam MB: "
-#: ../../install_interactive.pm_.c:117
+#: ../../install_interactive.pm_.c:118
msgid "Swap partition size in MB: "
msgstr "Ukuran partisi swap dalam MB: "
-#: ../../install_interactive.pm_.c:126
+#: ../../install_interactive.pm_.c:128
msgid "Use the free space on the Windows partition"
msgstr "Pakai ruang kosong pada partisi windows"
-#: ../../install_interactive.pm_.c:129
+#: ../../install_interactive.pm_.c:131
msgid "Which partition do you want to resize?"
msgstr "partisi mana yang mau Anda ubah ukurannya?"
-#: ../../install_interactive.pm_.c:131
+#: ../../install_interactive.pm_.c:133
msgid "Resizing Windows partition"
msgstr "Sedang menghitung bound sistem file Mindows"
-#: ../../install_interactive.pm_.c:134
+#: ../../install_interactive.pm_.c:136
#, c-format
msgid ""
"The FAT resizer is unable to handle your partition, \n"
@@ -4491,14 +4591,14 @@ msgstr ""
"Saya tidak dapat mengubah ukuran partisi FAT ini,\n"
"Ada error ini yang terjadi: %s"
-#: ../../install_interactive.pm_.c:137
+#: ../../install_interactive.pm_.c:139
msgid ""
"Your Windows partition is too fragmented. Please reboot your computer under "
"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
"installation."
msgstr "Partisi Mindows Anda terlalu terfragmen, jalankan ``defrag'' dulu"
-#: ../../install_interactive.pm_.c:138
+#: ../../install_interactive.pm_.c:140
msgid ""
"WARNING!\n"
"\n"
@@ -4517,21 +4617,21 @@ msgstr ""
"jalankan scandisk (dan defrag juga) di partisi ini lalu backup datanya.\n"
"Setelah yakin, tekan Ok."
-#: ../../install_interactive.pm_.c:148
+#: ../../install_interactive.pm_.c:150
msgid "Which size do you want to keep for Windows on"
msgstr "Tentukan ukuran untuk menyimpan Mindows"
-#: ../../install_interactive.pm_.c:149
+#: ../../install_interactive.pm_.c:151
#, c-format
msgid "partition %s"
msgstr "Partisi %s"
-#: ../../install_interactive.pm_.c:156
+#: ../../install_interactive.pm_.c:158
#, c-format
msgid "FAT resizing failed: %s"
msgstr "Resize FAT gagal: %s"
-#: ../../install_interactive.pm_.c:171
+#: ../../install_interactive.pm_.c:173
msgid ""
"There is no FAT partition to resize or to use as loopback (or not enough "
"space left)"
@@ -4539,32 +4639,32 @@ msgstr ""
"Tidak ada partisi FAT untuk diubah ukurannya atau untuk digunakan sebagai "
"loopback (atau tidak ada cukup ruangan)"
-#: ../../install_interactive.pm_.c:177
+#: ../../install_interactive.pm_.c:179
msgid "Erase entire disk"
msgstr "Hapus seluruh disk"
-#: ../../install_interactive.pm_.c:177
+#: ../../install_interactive.pm_.c:179
msgid "Remove Windows(TM)"
msgstr "Buang Mindows"
-#: ../../install_interactive.pm_.c:180
+#: ../../install_interactive.pm_.c:182
msgid "You have more than one hard drive, which one do you install linux on?"
msgstr "Anda punya beberapa harddisk, yang mana yang ingin di-instal linux?"
-#: ../../install_interactive.pm_.c:183
+#: ../../install_interactive.pm_.c:185
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr "SEMUA partisi yang ada beserta data pada drive %s akan hilang"
-#: ../../install_interactive.pm_.c:191
+#: ../../install_interactive.pm_.c:193
msgid "Custom disk partitioning"
msgstr "Lakukan partisi disk secara custom"
-#: ../../install_interactive.pm_.c:195
+#: ../../install_interactive.pm_.c:197
msgid "Use fdisk"
msgstr "gunakan fdisk"
-#: ../../install_interactive.pm_.c:198
+#: ../../install_interactive.pm_.c:200
#, c-format
msgid ""
"You can now partition %s.\n"
@@ -4573,28 +4673,28 @@ msgstr ""
"Anda kini dapat membuat partisi %s. \n"
"Ketika selesai jangan lupa simpan dengan menekan tombol `w'"
-#: ../../install_interactive.pm_.c:227
+#: ../../install_interactive.pm_.c:229
msgid "You don't have enough free space on your Windows partition"
msgstr "Anda tak punya cukup ruangan pada partisi Mindows!"
-#: ../../install_interactive.pm_.c:243
+#: ../../install_interactive.pm_.c:245
msgid "I can't find any room for installing"
msgstr "Tiada ruang untuk instalasi"
-#: ../../install_interactive.pm_.c:246
+#: ../../install_interactive.pm_.c:248
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr "Wizard partisi DrakX menemukan solusi berikut:"
-#: ../../install_interactive.pm_.c:250
+#: ../../install_interactive.pm_.c:252
#, c-format
msgid "Partitioning failed: %s"
msgstr "Proses partisi gagal: %s"
-#: ../../install_interactive.pm_.c:260
+#: ../../install_interactive.pm_.c:262
msgid "Bringing up the network"
msgstr "Aktifkan jaringan"
-#: ../../install_interactive.pm_.c:265
+#: ../../install_interactive.pm_.c:267
msgid "Bringing down the network"
msgstr "Matikan jaringan"
@@ -4606,12 +4706,12 @@ msgstr ""
"Ada error, tapi cara mengatasinya tak diketahui.\n"
"Jalan terus tapi resiko tanggung sendiri."
-#: ../../install_steps.pm_.c:210
+#: ../../install_steps.pm_.c:211
#, c-format
msgid "Duplicate mount point %s"
msgstr "Lokasi mount %s ada dua"
-#: ../../install_steps.pm_.c:379
+#: ../../install_steps.pm_.c:380
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -4623,12 +4723,12 @@ msgstr ""
"Cek dulu cdromnya di komputer yang sudah terinstal Linux dengan\n"
"perintah \"rpm -qpl Mandrake/RPMS/*.rpm\"\n"
-#: ../../install_steps.pm_.c:451
+#: ../../install_steps.pm_.c:452
#, c-format
msgid "Welcome to %s"
msgstr "Selamat Datang di %s"
-#: ../../install_steps.pm_.c:530 ../../install_steps.pm_.c:770
+#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:772
msgid "No floppy drive available"
msgstr "Tidak ada floppy drive"
@@ -4657,69 +4757,69 @@ msgstr "Kelas Instalasi"
msgid "Please choose one of the following classes of installation:"
msgstr "Pilihlah kelas instalasi berikut:"
-#: ../../install_steps_gtk.pm_.c:243 ../../install_steps_interactive.pm_.c:694
+#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:678
msgid "Package Group Selection"
msgstr "Pilihan Grup Paket"
-#: ../../install_steps_gtk.pm_.c:276 ../../install_steps_interactive.pm_.c:709
+#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:693
msgid "Individual package selection"
msgstr "Pilih paket sendiri"
-#: ../../install_steps_gtk.pm_.c:299 ../../install_steps_interactive.pm_.c:633
+#: ../../install_steps_gtk.pm_.c:293 ../../install_steps_interactive.pm_.c:617
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Ukuran total: %d / %d MB"
-#: ../../install_steps_gtk.pm_.c:341
+#: ../../install_steps_gtk.pm_.c:335
msgid "Bad package"
msgstr "Paket buruk"
-#: ../../install_steps_gtk.pm_.c:342
+#: ../../install_steps_gtk.pm_.c:336
#, c-format
msgid "Name: %s\n"
msgstr "Nama: %s\n"
-#: ../../install_steps_gtk.pm_.c:343
+#: ../../install_steps_gtk.pm_.c:337
#, c-format
msgid "Version: %s\n"
msgstr "Versi: %s\n"
-#: ../../install_steps_gtk.pm_.c:344
+#: ../../install_steps_gtk.pm_.c:338
#, c-format
msgid "Size: %d KB\n"
msgstr "Ukuran: %d KB\n"
-#: ../../install_steps_gtk.pm_.c:345
+#: ../../install_steps_gtk.pm_.c:339
#, c-format
msgid "Importance: %s\n"
msgstr "Derajat kepentingan: %s\n"
-#: ../../install_steps_gtk.pm_.c:367
+#: ../../install_steps_gtk.pm_.c:361
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr "Paket ini tak dapat dipilih sebab tak ada ruang untuk menginstalnya"
-#: ../../install_steps_gtk.pm_.c:372
+#: ../../install_steps_gtk.pm_.c:366
msgid "The following packages are going to be installed"
msgstr "Paket berikut akan diinstal"
-#: ../../install_steps_gtk.pm_.c:373
+#: ../../install_steps_gtk.pm_.c:367
msgid "The following packages are going to be removed"
msgstr "Paket berikut akan dihapus"
-#: ../../install_steps_gtk.pm_.c:385
+#: ../../install_steps_gtk.pm_.c:379
msgid "You can't select/unselect this package"
msgstr "Anda tak bisa pilih/buang paket ini"
-#: ../../install_steps_gtk.pm_.c:397
+#: ../../install_steps_gtk.pm_.c:391
msgid "This is a mandatory package, it can't be unselected"
msgstr "Paket ini harus diinstal, tak bisa dibuang"
-#: ../../install_steps_gtk.pm_.c:399
+#: ../../install_steps_gtk.pm_.c:393
msgid "You can't unselect this package. It is already installed"
msgstr "Anda tak bisa buang paket ini, sebab dia sudah diinstal"
-#: ../../install_steps_gtk.pm_.c:402
+#: ../../install_steps_gtk.pm_.c:396
msgid ""
"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
@@ -4727,74 +4827,74 @@ msgstr ""
"Paket ini mesti diupgrade\n"
"Benar tak mau dipilih?"
-#: ../../install_steps_gtk.pm_.c:405
+#: ../../install_steps_gtk.pm_.c:399
msgid "You can't unselect this package. It must be upgraded"
msgstr "Anda tak bisa buang paket ini. dia mesti diupgrade"
-#: ../../install_steps_gtk.pm_.c:410
+#: ../../install_steps_gtk.pm_.c:404
msgid "Show automatically selected packages"
msgstr "Tunjukkan paket yang sudah dipilih secara otomatis"
-#: ../../install_steps_gtk.pm_.c:411 ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_gtk.pm_.c:405 ../../install_steps_interactive.pm_.c:255
#: ../../install_steps_interactive.pm_.c:259
-#: ../../standalone/drakbackup_.c:3600
+#: ../../standalone/drakbackup_.c:4257
msgid "Install"
msgstr "Instal"
-#: ../../install_steps_gtk.pm_.c:414
+#: ../../install_steps_gtk.pm_.c:408
msgid "Load/Save on floppy"
msgstr "Muat/Simpan di floppy"
-#: ../../install_steps_gtk.pm_.c:415
+#: ../../install_steps_gtk.pm_.c:409
msgid "Updating package selection"
msgstr "Update pilihan paket"
-#: ../../install_steps_gtk.pm_.c:420
+#: ../../install_steps_gtk.pm_.c:414
msgid "Minimal install"
msgstr "Instalasi minimal"
-#: ../../install_steps_gtk.pm_.c:435 ../../install_steps_interactive.pm_.c:538
+#: ../../install_steps_gtk.pm_.c:429 ../../install_steps_interactive.pm_.c:522
msgid "Choose the packages you want to install"
msgstr "Pilih paket yang akan diinstal"
-#: ../../install_steps_gtk.pm_.c:451 ../../install_steps_interactive.pm_.c:778
+#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:762
msgid "Installing"
msgstr "Instalasi"
-#: ../../install_steps_gtk.pm_.c:457
+#: ../../install_steps_gtk.pm_.c:451
msgid "Estimating"
msgstr "Perkiraan"
-#: ../../install_steps_gtk.pm_.c:464
+#: ../../install_steps_gtk.pm_.c:458
msgid "Time remaining "
msgstr "Sisa waktu"
-#: ../../install_steps_gtk.pm_.c:476
+#: ../../install_steps_gtk.pm_.c:470
msgid "Please wait, preparing installation..."
msgstr "Tunggu, instalasi sedang disiapkan..."
-#: ../../install_steps_gtk.pm_.c:560
+#: ../../install_steps_gtk.pm_.c:554
#, c-format
msgid "%d packages"
msgstr "%d paket"
-#: ../../install_steps_gtk.pm_.c:565
+#: ../../install_steps_gtk.pm_.c:559
#, c-format
msgid "Installing package %s"
msgstr "Instalasi paket %s"
-#: ../../install_steps_gtk.pm_.c:602 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:802
+#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:786
#: ../../standalone/drakautoinst_.c:202
msgid "Accept"
msgstr "Terima"
-#: ../../install_steps_gtk.pm_.c:602 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:802
+#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:786
msgid "Refuse"
msgstr "Tolak"
-#: ../../install_steps_gtk.pm_.c:603 ../../install_steps_interactive.pm_.c:803
+#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:787
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4808,17 +4908,17 @@ msgstr ""
"Masukkan Cd-Rom berlabel \"%s\" ke drive dan tekan Ok. Jika Anda tak punya,\n"
"tekan Batal untuk menghindari instalasi dari Cd-Rom ini."
-#: ../../install_steps_gtk.pm_.c:617 ../../install_steps_gtk.pm_.c:621
-#: ../../install_steps_interactive.pm_.c:815
-#: ../../install_steps_interactive.pm_.c:819
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_gtk.pm_.c:615
+#: ../../install_steps_interactive.pm_.c:799
+#: ../../install_steps_interactive.pm_.c:803
msgid "Go on anyway?"
msgstr "Jalan terus?"
-#: ../../install_steps_gtk.pm_.c:617 ../../install_steps_interactive.pm_.c:815
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:799
msgid "There was an error ordering packages:"
msgstr "Ada error mengurutkan paket:"
-#: ../../install_steps_gtk.pm_.c:621 ../../install_steps_interactive.pm_.c:819
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:803
msgid "There was an error installing packages:"
msgstr "Ada error saat instalasi paket:"
@@ -5143,7 +5243,7 @@ msgid "Are you sure you refuse the licence?"
msgstr "Benarkah Anda menolak lisensi?"
#: ../../install_steps_interactive.pm_.c:211
-#: ../../install_steps_interactive.pm_.c:1038
+#: ../../install_steps_interactive.pm_.c:1023
#: ../../standalone/keyboarddrake_.c:31
msgid "Keyboard"
msgstr "Keyboard"
@@ -5191,11 +5291,11 @@ msgstr "Hanya upgrade paket"
msgid "Please choose the type of your mouse."
msgstr "Pilihlah tipe mouse Anda."
-#: ../../install_steps_interactive.pm_.c:281 ../../standalone/mousedrake_.c:59
+#: ../../install_steps_interactive.pm_.c:281 ../../standalone/mousedrake_.c:60
msgid "Mouse Port"
msgstr "Port Mouse"
-#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:61
msgid "Please choose on which serial port your mouse is connected to."
msgstr "Di serial port mana mouse Anda dicolokkan ?"
@@ -5227,85 +5327,60 @@ msgstr "Konfigurasi IDE"
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:336
+#: ../../install_steps_interactive.pm_.c:338
msgid "No partition available"
msgstr "Tidak ada partisi"
-#: ../../install_steps_interactive.pm_.c:339
+#: ../../install_steps_interactive.pm_.c:341
msgid "Scanning partitions to find mount points"
msgstr "Mendeteksi partisi untuk mencari lokasi mount"
-#: ../../install_steps_interactive.pm_.c:347
+#: ../../install_steps_interactive.pm_.c:349
msgid "Choose the mount points"
msgstr "Pilih lokasi mount"
-#: ../../install_steps_interactive.pm_.c:366
-#, c-format
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to not allow DrakX to modify the partition table.\n"
-"(the error is %s)\n"
-"\n"
-"Do you agree to loose all the partitions?\n"
-msgstr ""
-"Tabel partisi rusak tak terbaca :(\n"
-"Partisi buruk dapat dicoba dihapus (SEMUA DATA AKAN HILANG!).\n"
-"Solusi lainnya adalah melarang DrakX memodifikasi tabel partisi.\n"
-"(pesan errornya adalah %s)\n"
-"\n"
-"Anda setuju untuk menghapus semua partisi?\n"
-
#: ../../install_steps_interactive.pm_.c:379
msgid ""
-"DiskDrake failed to read correctly the partition table.\n"
-"Continue at your own risk!"
-msgstr ""
-"DiskDrake gagal membaca tabel partisi Anda.\n"
-"Lanjutkan tapi resiko tanggung sendiri!"
-
-#: ../../install_steps_interactive.pm_.c:396
-msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
msgstr ""
"Tiada ruang 1MB utk bootstrap! Instal akan berlanjut, tetapi utk mem-boot "
"sistem, Anda perlu membuat partisi bootstrap di DiskDrake"
-#: ../../install_steps_interactive.pm_.c:405
+#: ../../install_steps_interactive.pm_.c:388
msgid "No root partition found to perform an upgrade"
msgstr "Tiada partisi root ditemukam utk upgrade"
-#: ../../install_steps_interactive.pm_.c:406
+#: ../../install_steps_interactive.pm_.c:389
msgid "Root Partition"
msgstr "Partisi root"
-#: ../../install_steps_interactive.pm_.c:407
+#: ../../install_steps_interactive.pm_.c:390
msgid "What is the root partition (/) of your system?"
msgstr "Manakah partisi root (/) di sistem Anda?"
-#: ../../install_steps_interactive.pm_.c:421
+#: ../../install_steps_interactive.pm_.c:404
msgid "You need to reboot for the partition table modifications to take place"
msgstr "Anda harus reboot agar perubahan tabel partisi dapat berlaku"
-#: ../../install_steps_interactive.pm_.c:445
+#: ../../install_steps_interactive.pm_.c:428
msgid "Choose the partitions you want to format"
msgstr "Pilih partisi yang akan diformat"
-#: ../../install_steps_interactive.pm_.c:446
+#: ../../install_steps_interactive.pm_.c:429
msgid "Check bad blocks?"
msgstr "Periksa bad blok?"
-#: ../../install_steps_interactive.pm_.c:473
+#: ../../install_steps_interactive.pm_.c:456
msgid "Formatting partitions"
msgstr "Melakukan format partisi"
-#: ../../install_steps_interactive.pm_.c:475
+#: ../../install_steps_interactive.pm_.c:458
#, c-format
msgid "Creating and formatting file %s"
msgstr "Membuat dan memformat file %s"
-#: ../../install_steps_interactive.pm_.c:480
+#: ../../install_steps_interactive.pm_.c:463
#, c-format
msgid ""
"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
@@ -5313,34 +5388,34 @@ msgid ""
msgstr ""
"Gagal mencek sistem file %s. Ingin direparasi? (awas, data Anda bisa hilang)"
-#: ../../install_steps_interactive.pm_.c:482
+#: ../../install_steps_interactive.pm_.c:465
msgid "Not enough swap space to fulfill installation, please add some"
msgstr "Instalasi tak dapat diteruskan karena swap kurang, tambahkan"
-#: ../../install_steps_interactive.pm_.c:489
+#: ../../install_steps_interactive.pm_.c:472
msgid "Looking for available packages and rebuilding rpm database..."
msgstr "Sedang mencari paket yg tersedia dan bangun ulang database rpm..."
-#: ../../install_steps_interactive.pm_.c:490
+#: ../../install_steps_interactive.pm_.c:473
msgid "Looking for available packages..."
msgstr "Sedang mencari paket yang tersedia..."
-#: ../../install_steps_interactive.pm_.c:493
+#: ../../install_steps_interactive.pm_.c:476
msgid "Looking at packages already installed..."
msgstr "Mencari paket terinstal"
-#: ../../install_steps_interactive.pm_.c:497
+#: ../../install_steps_interactive.pm_.c:480
msgid "Finding packages to upgrade..."
msgstr "Mencari paket untuk diupgrade"
-#: ../../install_steps_interactive.pm_.c:515
+#: ../../install_steps_interactive.pm_.c:498
#, c-format
msgid ""
"Your system does not have enough space left for installation or upgrade (%d "
"> %d)"
msgstr "Tak cukup ruang untuk instalasi atau upgrade (%d > %d)"
-#: ../../install_steps_interactive.pm_.c:550
+#: ../../install_steps_interactive.pm_.c:534
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
@@ -5348,35 +5423,35 @@ msgstr ""
"Pilih muat/simpan seleksi paket di floppy.\n"
"Formatnya sama dengan floppy buatan auto_install."
-#: ../../install_steps_interactive.pm_.c:553
+#: ../../install_steps_interactive.pm_.c:537
msgid "Load from floppy"
msgstr "Muat dari floppy"
-#: ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_interactive.pm_.c:539
msgid "Loading from floppy"
msgstr "Memuat dari floppy"
-#: ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_interactive.pm_.c:539
msgid "Package selection"
msgstr "Pilihan paket"
-#: ../../install_steps_interactive.pm_.c:560
+#: ../../install_steps_interactive.pm_.c:544
msgid "Insert a floppy containing package selection"
msgstr "Masukkan disket yg berisi seleksi paket"
-#: ../../install_steps_interactive.pm_.c:572
+#: ../../install_steps_interactive.pm_.c:556
msgid "Save on floppy"
msgstr "Simpan di floppy"
-#: ../../install_steps_interactive.pm_.c:646
+#: ../../install_steps_interactive.pm_.c:630
msgid "Selected size is larger than available space"
msgstr "Ukuran terpilih melebihi area yg ada"
-#: ../../install_steps_interactive.pm_.c:660
+#: ../../install_steps_interactive.pm_.c:644
msgid "Type of install"
msgstr "Tipe instalasi"
-#: ../../install_steps_interactive.pm_.c:661
+#: ../../install_steps_interactive.pm_.c:645
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
@@ -5384,19 +5459,19 @@ msgstr ""
"Anda belum memilih grup paket.\n"
"Pilih instalasi minimal yang Anda ingin:"
-#: ../../install_steps_interactive.pm_.c:664
+#: ../../install_steps_interactive.pm_.c:648
msgid "With X"
msgstr "Dengan X"
-#: ../../install_steps_interactive.pm_.c:666
+#: ../../install_steps_interactive.pm_.c:650
msgid "With basic documentation (recommended!)"
msgstr "Dengan dokumentasi dasar (disarankan!)"
-#: ../../install_steps_interactive.pm_.c:667
+#: ../../install_steps_interactive.pm_.c:651
msgid "Truly minimal install (especially no urpmi)"
msgstr "Sungguh instalasi minimal (khususnya tanpa urpmi)"
-#: ../../install_steps_interactive.pm_.c:752
+#: ../../install_steps_interactive.pm_.c:736
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -5406,16 +5481,16 @@ msgstr ""
"Kalau tak punya sama sekali, click Cancel.\n"
"Kalau cuma punya beberapa aja, pilih aja, trus klik Ok."
-#: ../../install_steps_interactive.pm_.c:757
+#: ../../install_steps_interactive.pm_.c:741
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "Label CD-ROM \"%s\""
-#: ../../install_steps_interactive.pm_.c:778
+#: ../../install_steps_interactive.pm_.c:762
msgid "Preparing installation"
msgstr "Sedang menyiapkan instalasi"
-#: ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:771
#, c-format
msgid ""
"Installing package %s\n"
@@ -5424,21 +5499,21 @@ msgstr ""
"Instalasi paket %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:833
+#: ../../install_steps_interactive.pm_.c:817
msgid "Post-install configuration"
msgstr "Konfigurasi instalasi akhir"
-#: ../../install_steps_interactive.pm_.c:839
+#: ../../install_steps_interactive.pm_.c:823
#, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Masukkan floppy boot ke drive %s"
-#: ../../install_steps_interactive.pm_.c:845
+#: ../../install_steps_interactive.pm_.c:829
#, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Masukkan disket Update Modules ke drive %s"
-#: ../../install_steps_interactive.pm_.c:865
+#: ../../install_steps_interactive.pm_.c:849
msgid ""
"You now have the opportunity to download encryption software.\n"
"\n"
@@ -5505,7 +5580,7 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:904
+#: ../../install_steps_interactive.pm_.c:888
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
"have been released after the distribution was released. They may\n"
@@ -5523,154 +5598,154 @@ msgstr ""
"\n"
"Ingin instal update ?"
-#: ../../install_steps_interactive.pm_.c:919
+#: ../../install_steps_interactive.pm_.c:903
msgid ""
"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr "Mandrake Linux sedang dihubungi untuk mengambil daftar mirror"
-#: ../../install_steps_interactive.pm_.c:924
+#: ../../install_steps_interactive.pm_.c:908
msgid "Choose a mirror from which to get the packages"
msgstr "Pilih mirror tempat Anda ingin mengambil paket program"
-#: ../../install_steps_interactive.pm_.c:933
+#: ../../install_steps_interactive.pm_.c:917
msgid "Contacting the mirror to get the list of available packages..."
msgstr "Saya sedang mencek mirror untuk mengambil daftar paket yang tersedia"
-#: ../../install_steps_interactive.pm_.c:960
+#: ../../install_steps_interactive.pm_.c:945
msgid "Which is your timezone?"
msgstr "Pilih zonawaktu Anda"
-#: ../../install_steps_interactive.pm_.c:965
+#: ../../install_steps_interactive.pm_.c:950
msgid "Hardware clock set to GMT"
msgstr "Jam hardware diset ke GMT"
-#: ../../install_steps_interactive.pm_.c:966
+#: ../../install_steps_interactive.pm_.c:951
msgid "Automatic time synchronization (using NTP)"
msgstr "sinkronisasi waktu otomatis (dg NTP)"
-#: ../../install_steps_interactive.pm_.c:973
+#: ../../install_steps_interactive.pm_.c:958
msgid "NTP Server"
msgstr "Server NTP"
-#: ../../install_steps_interactive.pm_.c:1007
-#: ../../install_steps_interactive.pm_.c:1015
+#: ../../install_steps_interactive.pm_.c:992
+#: ../../install_steps_interactive.pm_.c:1000
msgid "Remote CUPS server"
msgstr "Server CUPS remote"
-#: ../../install_steps_interactive.pm_.c:1008
+#: ../../install_steps_interactive.pm_.c:993
msgid "No printer"
msgstr "Tidak ada printer"
-#: ../../install_steps_interactive.pm_.c:1025
+#: ../../install_steps_interactive.pm_.c:1010
msgid "Do you have an ISA sound card?"
msgstr "Anda punya kartu suara ISA?"
-#: ../../install_steps_interactive.pm_.c:1027
+#: ../../install_steps_interactive.pm_.c:1012
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr "Jalankan \"sndconfig\" setelah instalasi untuk konfigurasi kartu suara"
-#: ../../install_steps_interactive.pm_.c:1029
+#: ../../install_steps_interactive.pm_.c:1014
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr "Kartu suara tak terdeteksi. Coba \"harddrake\" setelah instalasi"
-#: ../../install_steps_interactive.pm_.c:1034 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1019 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Ringkasan"
-#: ../../install_steps_interactive.pm_.c:1037
+#: ../../install_steps_interactive.pm_.c:1022
msgid "Mouse"
msgstr "Mouse"
-#: ../../install_steps_interactive.pm_.c:1039
+#: ../../install_steps_interactive.pm_.c:1024
msgid "Timezone"
msgstr "Zonawaktu"
-#: ../../install_steps_interactive.pm_.c:1040 ../../printerdrake.pm_.c:2728
-#: ../../printerdrake.pm_.c:2814
+#: ../../install_steps_interactive.pm_.c:1025 ../../printerdrake.pm_.c:2937
+#: ../../printerdrake.pm_.c:3026
msgid "Printer"
msgstr "Printer"
-#: ../../install_steps_interactive.pm_.c:1042
+#: ../../install_steps_interactive.pm_.c:1027
msgid "ISDN card"
msgstr "Kartu ISDN"
-#: ../../install_steps_interactive.pm_.c:1045
-#: ../../install_steps_interactive.pm_.c:1047
+#: ../../install_steps_interactive.pm_.c:1030
+#: ../../install_steps_interactive.pm_.c:1032
msgid "Sound card"
msgstr "Kartu suara"
-#: ../../install_steps_interactive.pm_.c:1049
+#: ../../install_steps_interactive.pm_.c:1034
msgid "TV card"
msgstr "Kartu TV"
-#: ../../install_steps_interactive.pm_.c:1089
-#: ../../install_steps_interactive.pm_.c:1114
-#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1074
+#: ../../install_steps_interactive.pm_.c:1099
+#: ../../install_steps_interactive.pm_.c:1103
msgid "LDAP"
msgstr "LDAP"
-#: ../../install_steps_interactive.pm_.c:1090
-#: ../../install_steps_interactive.pm_.c:1114
-#: ../../install_steps_interactive.pm_.c:1127
+#: ../../install_steps_interactive.pm_.c:1075
+#: ../../install_steps_interactive.pm_.c:1099
+#: ../../install_steps_interactive.pm_.c:1112
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1091
-#: ../../install_steps_interactive.pm_.c:1114
-#: ../../install_steps_interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1141
+#: ../../install_steps_interactive.pm_.c:1076
+#: ../../install_steps_interactive.pm_.c:1099
+#: ../../install_steps_interactive.pm_.c:1120
+#: ../../install_steps_interactive.pm_.c:1126
msgid "Windows Domain"
msgstr "Domain Mindows"
-#: ../../install_steps_interactive.pm_.c:1092
-#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1077
+#: ../../install_steps_interactive.pm_.c:1099
msgid "Local files"
msgstr "File lokal"
-#: ../../install_steps_interactive.pm_.c:1101
-#: ../../install_steps_interactive.pm_.c:1102 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1086
+#: ../../install_steps_interactive.pm_.c:1087 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Set katasandi root"
-#: ../../install_steps_interactive.pm_.c:1103
+#: ../../install_steps_interactive.pm_.c:1088
msgid "No password"
msgstr "Tiada katasandi"
-#: ../../install_steps_interactive.pm_.c:1108
+#: ../../install_steps_interactive.pm_.c:1093
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr "Katasandinya terlalu mudah (harus paling tidak %d karakter)"
-#: ../../install_steps_interactive.pm_.c:1114 ../../network/modem.pm_.c:49
+#: ../../install_steps_interactive.pm_.c:1099 ../../network/modem.pm_.c:49
#: ../../standalone/drakconnect_.c:625 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Otentikasi"
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1107
msgid "Authentication LDAP"
msgstr "Otentikasi LDAP"
-#: ../../install_steps_interactive.pm_.c:1123
+#: ../../install_steps_interactive.pm_.c:1108
msgid "LDAP Base dn"
msgstr "Basis dn LDAP"
-#: ../../install_steps_interactive.pm_.c:1124
+#: ../../install_steps_interactive.pm_.c:1109
msgid "LDAP Server"
msgstr "Server LDAP"
-#: ../../install_steps_interactive.pm_.c:1130
+#: ../../install_steps_interactive.pm_.c:1115
msgid "Authentication NIS"
msgstr "Otentikasi NIS"
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1116
msgid "NIS Domain"
msgstr "Domain NIS"
-#: ../../install_steps_interactive.pm_.c:1132
+#: ../../install_steps_interactive.pm_.c:1117
msgid "NIS Server"
msgstr "Server NIS"
-#: ../../install_steps_interactive.pm_.c:1138
+#: ../../install_steps_interactive.pm_.c:1123
msgid ""
"For this to work for a W2K PDC, you will probably need to have the admin "
"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
@@ -5697,19 +5772,19 @@ msgstr ""
"Admin, setelah boot system.\n"
"Perintah 'wbinfo -t' akan mengetes apakah rahasia otentikasi Anda baik."
-#: ../../install_steps_interactive.pm_.c:1140
+#: ../../install_steps_interactive.pm_.c:1125
msgid "Authentication Windows Domain"
msgstr "Otentikasi Domain Mindows"
-#: ../../install_steps_interactive.pm_.c:1142
+#: ../../install_steps_interactive.pm_.c:1127
msgid "Domain Admin User Name"
msgstr "Nama User Admin Domain"
-#: ../../install_steps_interactive.pm_.c:1143
+#: ../../install_steps_interactive.pm_.c:1128
msgid "Domain Admin Password"
msgstr "Katakunci Admin Domain"
-#: ../../install_steps_interactive.pm_.c:1178
+#: ../../install_steps_interactive.pm_.c:1163
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
"depending on the normal bootloader. This is useful if you don't want to "
@@ -5734,19 +5809,19 @@ msgstr ""
"merecover sistem dari kegagalan. Jika Anda mau bikin bootdisk, masukkan\n"
"disket ke drive pertama dan tekan \"Ok\"."
-#: ../../install_steps_interactive.pm_.c:1194
+#: ../../install_steps_interactive.pm_.c:1179
msgid "First floppy drive"
msgstr "Drive disket Pertama"
-#: ../../install_steps_interactive.pm_.c:1195
+#: ../../install_steps_interactive.pm_.c:1180
msgid "Second floppy drive"
msgstr "Drive disket kedua"
-#: ../../install_steps_interactive.pm_.c:1196 ../../printerdrake.pm_.c:2277
+#: ../../install_steps_interactive.pm_.c:1181 ../../printerdrake.pm_.c:2470
msgid "Skip"
msgstr "Lewatkan"
-#: ../../install_steps_interactive.pm_.c:1201
+#: ../../install_steps_interactive.pm_.c:1186
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5769,7 +5844,7 @@ msgstr ""
"memudahkan kita untuk merecover sistem dari kegagalan. Ingin buat bootdisk?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1207
+#: ../../install_steps_interactive.pm_.c:1192
msgid ""
"\n"
"\n"
@@ -5783,28 +5858,28 @@ msgstr ""
"pembuatan bootdisk di disket 1.44 Mb mungkin gagal,\n"
"karena XFS perlu driver amat besar)."
-#: ../../install_steps_interactive.pm_.c:1215
+#: ../../install_steps_interactive.pm_.c:1200
msgid "Sorry, no floppy drive available"
msgstr "Tiada floppy drive tersedia"
-#: ../../install_steps_interactive.pm_.c:1219
+#: ../../install_steps_interactive.pm_.c:1204
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "Pilih drive floppy untuk membuat bootdisk"
-#: ../../install_steps_interactive.pm_.c:1223
+#: ../../install_steps_interactive.pm_.c:1208
#, c-format
msgid "Insert a floppy in %s"
msgstr "Masukkan disket ke %s"
-#: ../../install_steps_interactive.pm_.c:1226
+#: ../../install_steps_interactive.pm_.c:1211
msgid "Creating bootdisk..."
msgstr "Membuat bootdisk"
-#: ../../install_steps_interactive.pm_.c:1233
+#: ../../install_steps_interactive.pm_.c:1218
msgid "Preparing bootloader..."
msgstr "Membuat bootloader"
-#: ../../install_steps_interactive.pm_.c:1244
+#: ../../install_steps_interactive.pm_.c:1229
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5816,11 +5891,11 @@ msgstr ""
"Instal akan berlanjut, tapi Anda perlu memakai\n"
"BootX utk mem-boot mesin Anda"
-#: ../../install_steps_interactive.pm_.c:1250
+#: ../../install_steps_interactive.pm_.c:1235
msgid "Do you want to use aboot?"
msgstr "Ingin pakai aboot?"
-#: ../../install_steps_interactive.pm_.c:1253
+#: ../../install_steps_interactive.pm_.c:1238
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -5828,15 +5903,15 @@ msgstr ""
"Ada error saat install aboot,\n"
"paksakan instalasi walau merusak partisi awal?"
-#: ../../install_steps_interactive.pm_.c:1260
+#: ../../install_steps_interactive.pm_.c:1245
msgid "Installing bootloader"
msgstr "Instalasi bootloader"
-#: ../../install_steps_interactive.pm_.c:1266
+#: ../../install_steps_interactive.pm_.c:1251
msgid "Installation of bootloader failed. The following error occured:"
msgstr "Instalasi bootloader gagal. Ada kesalahan berikut:"
-#: ../../install_steps_interactive.pm_.c:1274
+#: ../../install_steps_interactive.pm_.c:1259
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -5853,17 +5928,17 @@ msgstr ""
" kemudian: shut-down\n"
"Anda akan melihat prompt bootloader pada boot selanjutnya."
-#: ../../install_steps_interactive.pm_.c:1308
+#: ../../install_steps_interactive.pm_.c:1293
#: ../../standalone/drakautoinst_.c:79
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Masukkan disket kosong di drive %s"
-#: ../../install_steps_interactive.pm_.c:1312
+#: ../../install_steps_interactive.pm_.c:1297
msgid "Creating auto install floppy..."
msgstr "Lagi buat disket auto install"
-#: ../../install_steps_interactive.pm_.c:1323
+#: ../../install_steps_interactive.pm_.c:1308
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -5873,7 +5948,7 @@ msgstr ""
"\n"
"Anda ingin keluar sekarang?"
-#: ../../install_steps_interactive.pm_.c:1334
+#: ../../install_steps_interactive.pm_.c:1319
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
@@ -5905,15 +5980,15 @@ msgstr ""
"Informasi untuk konfigurasi sistem juga tersedia di \n"
"bab Instalasi akhir di Buku Petunjuk Resmi Linux Mandrake."
-#: ../../install_steps_interactive.pm_.c:1347
+#: ../../install_steps_interactive.pm_.c:1332
msgid "http://www.mandrakelinux.com/en/90errata.php3"
msgstr "http://www.mandrakelinux.com/en/90errata.php3"
-#: ../../install_steps_interactive.pm_.c:1352
+#: ../../install_steps_interactive.pm_.c:1337
msgid "Generate auto install floppy"
msgstr "Buat floppy instalasi otomatis"
-#: ../../install_steps_interactive.pm_.c:1354
+#: ../../install_steps_interactive.pm_.c:1339
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -5927,15 +6002,15 @@ msgstr ""
"\n"
"Mungkin Anda perlu mengulangi instalasinya.\n"
-#: ../../install_steps_interactive.pm_.c:1359
+#: ../../install_steps_interactive.pm_.c:1344
msgid "Automated"
msgstr "Otomatis"
-#: ../../install_steps_interactive.pm_.c:1359
+#: ../../install_steps_interactive.pm_.c:1344
msgid "Replay"
msgstr "Ulang"
-#: ../../install_steps_interactive.pm_.c:1362
+#: ../../install_steps_interactive.pm_.c:1347
msgid "Save packages selection"
msgstr "Simpan pilihan paket"
@@ -5944,7 +6019,8 @@ msgstr "Simpan pilihan paket"
msgid "Mandrake Linux Installation %s"
msgstr "Instalasi Linux Mandrake %s"
-#: ../../install_steps_newt.pm_.c:34
+#. -PO This string must fit in a 80-char wide text screen
+#: ../../install_steps_newt.pm_.c:35
msgid ""
" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
msgstr ""
@@ -5962,22 +6038,22 @@ msgstr "consolehelper hilang"
msgid "Choose a file"
msgstr "Pilih file"
-#: ../../interactive.pm_.c:317
+#: ../../interactive.pm_.c:320
msgid "Advanced"
msgstr "Tambahan"
-#: ../../interactive.pm_.c:318
+#: ../../interactive.pm_.c:321
msgid "Basic"
msgstr "Dasar"
-#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:155
-#: ../../printerdrake.pm_.c:1990
+#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:158
+#: ../../printerdrake.pm_.c:2124
msgid "<- Previous"
msgstr "<- Tahap sebelumnya"
#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
-#: ../../standalone/drakbackup_.c:3464 ../../standalone/drakbackup_.c:3491
-#: ../../standalone/drakbackup_.c:3517
+#: ../../standalone/drakbackup_.c:4112 ../../standalone/drakbackup_.c:4139
+#: ../../standalone/drakbackup_.c:4169 ../../standalone/drakbackup_.c:4195
msgid "Next"
msgstr "Lanjut"
@@ -6050,375 +6126,375 @@ msgstr ""
msgid "Re-submit"
msgstr "Kirim ulang"
-#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:152 ../../keyboard.pm_.c:187
msgid "Czech (QWERTZ)"
msgstr "Ceko (QWERTZ)"
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:153 ../../keyboard.pm_.c:189
msgid "German"
msgstr "Jerman"
-#: ../../keyboard.pm_.c:175
+#: ../../keyboard.pm_.c:154
msgid "Dvorak"
msgstr "Dvorak"
-#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:218
+#: ../../keyboard.pm_.c:155 ../../keyboard.pm_.c:197
msgid "Spanish"
msgstr "Spanyol"
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:156 ../../keyboard.pm_.c:198
msgid "Finnish"
msgstr "Finland"
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:220
+#: ../../keyboard.pm_.c:157 ../../keyboard.pm_.c:199
msgid "French"
msgstr "Perancis"
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:158 ../../keyboard.pm_.c:231
msgid "Norwegian"
msgstr "Norwegia"
-#: ../../keyboard.pm_.c:180
+#: ../../keyboard.pm_.c:159
msgid "Polish"
msgstr "Polandia"
-#: ../../keyboard.pm_.c:181 ../../keyboard.pm_.c:260
+#: ../../keyboard.pm_.c:160 ../../keyboard.pm_.c:239
msgid "Russian"
msgstr "Rusia"
-#: ../../keyboard.pm_.c:183 ../../keyboard.pm_.c:262
+#: ../../keyboard.pm_.c:162 ../../keyboard.pm_.c:241
msgid "Swedish"
msgstr "Swedia"
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:278
+#: ../../keyboard.pm_.c:163 ../../keyboard.pm_.c:257
msgid "UK keyboard"
msgstr "Keyboard UK"
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:279
+#: ../../keyboard.pm_.c:164 ../../keyboard.pm_.c:258
msgid "US keyboard"
msgstr "Keyboard US"
-#: ../../keyboard.pm_.c:187
+#: ../../keyboard.pm_.c:166
msgid "Albanian"
msgstr "Albania"
-#: ../../keyboard.pm_.c:188
+#: ../../keyboard.pm_.c:167
msgid "Armenian (old)"
msgstr "Armenia (lama)"
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:168
msgid "Armenian (typewriter)"
msgstr "Armenia (mesintik)"
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:169
msgid "Armenian (phonetic)"
msgstr "Armenia (fonetik)"
-#: ../../keyboard.pm_.c:195
+#: ../../keyboard.pm_.c:174
msgid "Azerbaidjani (latin)"
msgstr "Azerbaijan (latin)"
-#: ../../keyboard.pm_.c:197
+#: ../../keyboard.pm_.c:176
msgid "Belgian"
msgstr "Belgia"
-#: ../../keyboard.pm_.c:198
+#: ../../keyboard.pm_.c:177
#, fuzzy
msgid "Bengali"
msgstr "aktifkan"
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:178
msgid "Bulgarian (phonetic)"
msgstr "Bulagaria (fonetik)"
-#: ../../keyboard.pm_.c:200
+#: ../../keyboard.pm_.c:179
msgid "Bulgarian (BDS)"
msgstr "Bulgaria (BDS)"
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:180
msgid "Brazilian (ABNT-2)"
msgstr "Brazil (ABNT-2)"
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:183
#, fuzzy
msgid "Bosnian"
msgstr "Estonia"
-#: ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:184
msgid "Belarusian"
msgstr "Belarusia"
-#: ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:185
msgid "Swiss (German layout)"
msgstr "Swis (layout Jerman)"
-#: ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:186
msgid "Swiss (French layout)"
msgstr "Swis (layout Prancis)"
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:188
msgid "Czech (QWERTY)"
msgstr "Ceko (QWERTY)"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:190
msgid "German (no dead keys)"
msgstr "Jerman (tanpa dead key)"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:191
msgid "Devanagari"
msgstr ""
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:192
msgid "Danish"
msgstr "Denmark"
-#: ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:193
msgid "Dvorak (US)"
msgstr "Dvorak (US)"
-#: ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:194
msgid "Dvorak (Norwegian)"
msgstr "Dvorak (Norwegia)"
-#: ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:195
msgid "Dvorak (Swedish)"
msgstr "Dvorak (Swedia)"
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:196
msgid "Estonian"
msgstr "Estonia"
-#: ../../keyboard.pm_.c:221
+#: ../../keyboard.pm_.c:200
msgid "Georgian (\"Russian\" layout)"
msgstr "Georgia (layout \"Rusia\")"
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:201
msgid "Georgian (\"Latin\" layout)"
msgstr "Georgia (layout \"Latin\")"
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:202
msgid "Greek"
msgstr "Yunani"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:203
msgid "Gujarati"
msgstr ""
-#: ../../keyboard.pm_.c:225
+#: ../../keyboard.pm_.c:204
msgid "Gurmukhi"
msgstr ""
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:205
msgid "Hungarian"
msgstr "Hungaria"
-#: ../../keyboard.pm_.c:227
+#: ../../keyboard.pm_.c:206
msgid "Croatian"
msgstr "Kroasia"
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:207
msgid "Israeli"
msgstr "Ibrani"
-#: ../../keyboard.pm_.c:229
+#: ../../keyboard.pm_.c:208
msgid "Israeli (Phonetic)"
msgstr "Ibrani (fonetik)"
-#: ../../keyboard.pm_.c:230
+#: ../../keyboard.pm_.c:209
msgid "Iranian"
msgstr "Iran"
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:210
msgid "Icelandic"
msgstr "Islandia"
-#: ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:211
msgid "Italian"
msgstr "Itali"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:212
msgid "Inuktitut"
msgstr ""
-#: ../../keyboard.pm_.c:234
+#: ../../keyboard.pm_.c:213
msgid "Japanese 106 keys"
msgstr "Jepang 106 tombol"
-#: ../../keyboard.pm_.c:237
+#: ../../keyboard.pm_.c:216
msgid "Korean keyboard"
msgstr "Keyboard Korea"
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:217
msgid "Latin American"
msgstr "Amerika Latin"
-#: ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:218
#, fuzzy
msgid "Laotian"
msgstr "Latvia"
-#: ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:219
msgid "Lithuanian AZERTY (old)"
msgstr "Lithuania AZERTY (lama)"
-#: ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:221
msgid "Lithuanian AZERTY (new)"
msgstr "Lithuania AZERTY (baru)"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:222
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Lithuania \"number row\" QWERTY"
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:223
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "Lithuania \"fonetik\" QWERTY"
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:224
msgid "Latvian"
msgstr "Latvia"
-#: ../../keyboard.pm_.c:246
+#: ../../keyboard.pm_.c:225
msgid "Macedonian"
msgstr "Macedonia"
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:226
msgid "Myanmar (Burmese)"
msgstr ""
-#: ../../keyboard.pm_.c:248
+#: ../../keyboard.pm_.c:227
#, fuzzy
msgid "Mongolian (cyrillic)"
msgstr "Serbia (cyrillic)"
-#: ../../keyboard.pm_.c:249
+#: ../../keyboard.pm_.c:228
msgid "Maltese (UK)"
msgstr ""
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:229
msgid "Maltese (US)"
msgstr ""
-#: ../../keyboard.pm_.c:251
+#: ../../keyboard.pm_.c:230
msgid "Dutch"
msgstr "Belanda"
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:232
msgid "Polish (qwerty layout)"
msgstr "Polandia (layout qwerty)"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:233
msgid "Polish (qwertz layout)"
msgstr "Polandia (layout qwertz)"
-#: ../../keyboard.pm_.c:255
+#: ../../keyboard.pm_.c:234
msgid "Portuguese"
msgstr "Portugis"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:235
msgid "Canadian (Quebec)"
msgstr "Kanada (Quebec)"
-#: ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:237
msgid "Romanian (qwertz)"
msgstr "Romania (qwertz)"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:238
msgid "Romanian (qwerty)"
msgstr "Romania (qwerty)"
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:240
msgid "Russian (Yawerty)"
msgstr "Rusia (Yawerty)"
-#: ../../keyboard.pm_.c:263
+#: ../../keyboard.pm_.c:242
msgid "Slovenian"
msgstr "Slovenia"
-#: ../../keyboard.pm_.c:264
+#: ../../keyboard.pm_.c:243
msgid "Slovakian (QWERTZ)"
msgstr "Slovakia (QWERTZ)"
-#: ../../keyboard.pm_.c:265
+#: ../../keyboard.pm_.c:244
msgid "Slovakian (QWERTY)"
msgstr "Slovakia (QWERTY)"
-#: ../../keyboard.pm_.c:267
+#: ../../keyboard.pm_.c:246
msgid "Serbian (cyrillic)"
msgstr "Serbia (cyrillic)"
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:248
msgid "Tamil (Unicode)"
msgstr "Tamil (Unicode)"
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:249
msgid "Tamil (TSCII)"
msgstr "Tamil (TSCII)"
-#: ../../keyboard.pm_.c:271
+#: ../../keyboard.pm_.c:250
msgid "Thai keyboard"
msgstr "Papanketik Muangthai"
-#: ../../keyboard.pm_.c:273
+#: ../../keyboard.pm_.c:252
msgid "Tajik keyboard"
msgstr "Papanketik Tajik"
-#: ../../keyboard.pm_.c:274
+#: ../../keyboard.pm_.c:253
msgid "Turkish (traditional \"F\" model)"
msgstr "Turki (model \"F\" tradisional)"
-#: ../../keyboard.pm_.c:275
+#: ../../keyboard.pm_.c:254
msgid "Turkish (modern \"Q\" model)"
msgstr "Turki (model \"Q\" modern)"
-#: ../../keyboard.pm_.c:277
+#: ../../keyboard.pm_.c:256
msgid "Ukrainian"
msgstr "Ukraina"
-#: ../../keyboard.pm_.c:280
+#: ../../keyboard.pm_.c:259
msgid "US keyboard (international)"
msgstr "Keyboard US (internasional)"
-#: ../../keyboard.pm_.c:281
+#: ../../keyboard.pm_.c:260
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "Vietnam \"numeric row\" QWERTY"
-#: ../../keyboard.pm_.c:282
+#: ../../keyboard.pm_.c:261
msgid "Yugoslavian (latin)"
msgstr "Yugoslavia (latin)"
-#: ../../keyboard.pm_.c:289
+#: ../../keyboard.pm_.c:268
msgid "Right Alt key"
msgstr "kunci Alt Kanan"
-#: ../../keyboard.pm_.c:290
+#: ../../keyboard.pm_.c:269
msgid "Both Shift keys simultaneously"
msgstr "Kedua Shift bersamaan"
-#: ../../keyboard.pm_.c:291
+#: ../../keyboard.pm_.c:270
msgid "Control and Shift keys simultaneously"
msgstr "Control dan Shift bersamaan"
-#: ../../keyboard.pm_.c:292
+#: ../../keyboard.pm_.c:271
msgid "CapsLock key"
msgstr "CapsLock"
-#: ../../keyboard.pm_.c:293
+#: ../../keyboard.pm_.c:272
msgid "Ctrl and Alt keys simultaneously"
msgstr "Ctrl dan Alt bersamaan"
-#: ../../keyboard.pm_.c:294
+#: ../../keyboard.pm_.c:273
msgid "Alt and Shift keys simultaneously"
msgstr "Alt dan Shift bersamaan"
-#: ../../keyboard.pm_.c:295
+#: ../../keyboard.pm_.c:274
msgid "\"Menu\" key"
msgstr "Kunci \"Menu\""
-#: ../../keyboard.pm_.c:296
+#: ../../keyboard.pm_.c:275
msgid "Left \"Windows\" key"
msgstr "Kunci \"Mindows\" kiri"
-#: ../../keyboard.pm_.c:297
+#: ../../keyboard.pm_.c:276
msgid "Right \"Windows\" key"
msgstr "Kunci \"Mindows\" kanan"
@@ -6474,11 +6550,11 @@ msgstr "Mouse PS2 wheel generik"
msgid "GlidePoint"
msgstr "GlidePoint"
-#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:63
+#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:65
msgid "Kensington Thinking Mouse"
msgstr "Kensington Thinking Mouse"
-#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:59
+#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:61
msgid "Genius NetMouse"
msgstr "Genius NetMouse"
@@ -6486,115 +6562,125 @@ msgstr "Genius NetMouse"
msgid "Genius NetScroll"
msgstr "Genius NetScroll"
-#: ../../mouse.pm_.c:43 ../../mouse.pm_.c:68
+#: ../../mouse.pm_.c:39 ../../mouse.pm_.c:48
+#, fuzzy
+msgid "Microsoft Explorer"
+msgstr "Microsoft IntelliMouse"
+
+#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:70
msgid "1 button"
msgstr "1 tombol"
-#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:51
+#: ../../mouse.pm_.c:45 ../../mouse.pm_.c:53
msgid "Generic 2 Button Mouse"
msgstr "Mouse Generik 2 Tombol"
-#: ../../mouse.pm_.c:46
+#: ../../mouse.pm_.c:47
msgid "Wheel"
msgstr "Wheel"
-#: ../../mouse.pm_.c:49
+#: ../../mouse.pm_.c:51
msgid "serial"
msgstr "serial"
-#: ../../mouse.pm_.c:52
+#: ../../mouse.pm_.c:54
msgid "Generic 3 Button Mouse"
msgstr "Mouse Generik 3 Tombol"
-#: ../../mouse.pm_.c:53
+#: ../../mouse.pm_.c:55
msgid "Microsoft IntelliMouse"
msgstr "Microsoft IntelliMouse"
-#: ../../mouse.pm_.c:54
+#: ../../mouse.pm_.c:56
msgid "Logitech MouseMan"
msgstr "Logitech MouseMan"
-#: ../../mouse.pm_.c:55
+#: ../../mouse.pm_.c:57
msgid "Mouse Systems"
msgstr "Sistem Mouse (serial)"
-#: ../../mouse.pm_.c:57
+#: ../../mouse.pm_.c:59
msgid "Logitech CC Series"
msgstr "Logitech CC Series"
-#: ../../mouse.pm_.c:58
+#: ../../mouse.pm_.c:60
msgid "Logitech MouseMan+/FirstMouse+"
msgstr "Logitech MouseMan+/FirstMouse+"
-#: ../../mouse.pm_.c:60
+#: ../../mouse.pm_.c:62
msgid "MM Series"
msgstr "MM Series"
-#: ../../mouse.pm_.c:61
+#: ../../mouse.pm_.c:63
msgid "MM HitTablet"
msgstr "MM HitTablet"
-#: ../../mouse.pm_.c:62
+#: ../../mouse.pm_.c:64
msgid "Logitech Mouse (serial, old C7 type)"
msgstr "Logitech Mouse (serial, old C7 type)"
-#: ../../mouse.pm_.c:66
+#: ../../mouse.pm_.c:68
msgid "busmouse"
msgstr "busmouse"
-#: ../../mouse.pm_.c:69
+#: ../../mouse.pm_.c:71
msgid "2 buttons"
msgstr "2 tombol"
-#: ../../mouse.pm_.c:70
+#: ../../mouse.pm_.c:72
msgid "3 buttons"
msgstr "3 tombol"
-#: ../../mouse.pm_.c:73
+#: ../../mouse.pm_.c:75
msgid "none"
msgstr "tiada"
-#: ../../mouse.pm_.c:75
+#: ../../mouse.pm_.c:77
msgid "No mouse"
msgstr "Tidak pakai mouse"
-#: ../../mouse.pm_.c:445
+#: ../../mouse.pm_.c:482
msgid "Please test the mouse"
msgstr "Silakan tes mouse Anda"
-#: ../../mouse.pm_.c:446
+#: ../../mouse.pm_.c:483
msgid "To activate the mouse,"
msgstr "Untuk mengaktifkan mouse,"
-#: ../../mouse.pm_.c:447
+#: ../../mouse.pm_.c:484
msgid "MOVE YOUR WHEEL!"
msgstr "gerakkan rodanya!"
-#: ../../my_gtk.pm_.c:156
+#: ../../my_gtk.pm_.c:64
+#, fuzzy
+msgid "-adobe-utopia-regular-r-*-*-25-*-*-*-p-*-iso8859-*,*-r-*"
+msgstr "-adobe-utopia-medium-r-normal-*-12-*-*-*-p-*-iso8859-*,*-r-*"
+
+#: ../../my_gtk.pm_.c:159
msgid "Finish"
msgstr "Selesai"
-#: ../../my_gtk.pm_.c:156 ../../printerdrake.pm_.c:1992
+#: ../../my_gtk.pm_.c:159 ../../printerdrake.pm_.c:2126
msgid "Next ->"
msgstr "Lanjutkan ->"
-#: ../../my_gtk.pm_.c:284
+#: ../../my_gtk.pm_.c:287
msgid "Is this correct?"
msgstr "Sudah sesuai?"
-#: ../../my_gtk.pm_.c:356 ../../services.pm_.c:222
+#: ../../my_gtk.pm_.c:359 ../../services.pm_.c:222
msgid "Info"
msgstr "Info"
-#: ../../my_gtk.pm_.c:377
+#: ../../my_gtk.pm_.c:380
msgid "Expand Tree"
msgstr "Buka Tree"
-#: ../../my_gtk.pm_.c:378
+#: ../../my_gtk.pm_.c:381
msgid "Collapse Tree"
msgstr "Tutup Tree"
-#: ../../my_gtk.pm_.c:379
+#: ../../my_gtk.pm_.c:382
msgid "Toggle between flat and group sorted"
msgstr "Togel tampilan rata dan terurut grupnya"
@@ -6632,6 +6718,74 @@ msgstr "gunakan pppoe"
msgid "use pptp"
msgstr "gunakan pptp"
+#: ../../network/drakfirewall.pm_.c:12
+#, fuzzy
+msgid "Web Server"
+msgstr "Server"
+
+#: ../../network/drakfirewall.pm_.c:17
+#, fuzzy
+msgid "Domain Name Server"
+msgstr "Perumus Nama Domain"
+
+#: ../../network/drakfirewall.pm_.c:32
+#, fuzzy
+msgid "Mail Server"
+msgstr "Aktifkan Server"
+
+#: ../../network/drakfirewall.pm_.c:37
+#, fuzzy
+msgid "POP and IMAP Server"
+msgstr "Server LDAP"
+
+#: ../../network/drakfirewall.pm_.c:111
+#, fuzzy
+msgid "No network card"
+msgstr "kartu jaringan tak ditemukan"
+
+#: ../../network/drakfirewall.pm_.c:129
+#, fuzzy
+msgid ""
+"drakfirewall configurator\n"
+"\n"
+"This configures a personal firewall for this Mandrake Linux machine.\n"
+"For a powerful dedicated firewall solution, please look to the\n"
+"specialized MandrakeSecurity Firewall distribution."
+msgstr ""
+"konfigurator tinyfirewall\n"
+"\n"
+"Program ini mengkonfigurasi firewall pribadi sistem Linux Mandrake.\n"
+"Untuk membuat solusi firewall yang lebih baik, cobalah\n"
+"distribusi Mandrake Security Firewall"
+
+#: ../../network/drakfirewall.pm_.c:147
+msgid "Which services would you like to allow the Internet to connect to?"
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:148
+msgid ""
+"You can enter miscellaneous ports. \n"
+"Valid examples are: 139/tcp 139/udp.\n"
+"Have a look at /etc/services for information."
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:154
+#, c-format
+msgid ""
+"Invalid port given: %s.\n"
+"The proper format is \"port/tcp\" or \"port/udp\", \n"
+"where port is between 1 and 65535."
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:162
+msgid "Everything (no firewall)"
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:164
+#, fuzzy
+msgid "Other ports"
+msgstr "Tes port"
+
#: ../../network/ethernet.pm_.c:37
msgid ""
"Which dhcp client do you want to use?\n"
@@ -6648,7 +6802,7 @@ msgstr ""
"Tidak ada adapter jaringan ethernet yang terdeteksi di sistem ini.\n"
"Tipe koneksi ini tak dapat diset up."
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:247
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:240
msgid "Choose the network interface"
msgstr "Pilih interface jaringan"
@@ -6661,7 +6815,7 @@ msgstr "Pilih adapter jaringan yang akan digunakan untuk terhubung ke Internet"
msgid "no network card found"
msgstr "kartu jaringan tak ditemukan"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:366
msgid "Configuring network"
msgstr "Konfigureasi jaringan"
@@ -6676,7 +6830,7 @@ msgstr ""
"Hostname (nama komputer) sebaiknya merupakan nama host yg fully-qualified\n"
"misalnya ``mesinku.labku.kotaku.com''."
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:370
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:371
msgid "Host name"
msgstr "Nama Host"
@@ -6981,13 +7135,13 @@ msgstr "Pilih profil yang hendak Anda konfigurasikan"
msgid "Use auto detection"
msgstr "Gunakan deteksi otomatis"
-#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2930
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:3151
#: ../../standalone/drakconnect_.c:274 ../../standalone/drakconnect_.c:277
#: ../../standalone/drakfloppy_.c:145
msgid "Expert Mode"
msgstr "Mode Ahli"
-#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:283
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:386
msgid "Detecting devices..."
msgstr "Mendeteksi alat..."
@@ -7157,11 +7311,11 @@ msgstr "IP otomatis"
msgid "Start at boot"
msgstr "Start saat boot"
-#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:753
+#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:860
msgid "IP address should be in format 1.2.3.4"
msgstr "Alamat IP harus dalam format 1.2.3.4"
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:367
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -7173,43 +7327,55 @@ msgstr ""
"misalnya ``mesin.lab.grup.com''.\n"
"Anda juga bisa masukkan alamat IP gateway kalau ada"
-#: ../../network/network.pm_.c:371
+#: ../../network/network.pm_.c:372
msgid "DNS server"
msgstr "Server DNS"
-#: ../../network/network.pm_.c:372
+#: ../../network/network.pm_.c:373
#, c-format
msgid "Gateway (e.g. %s)"
msgstr "Gateway (mis. %s)"
-#: ../../network/network.pm_.c:374
+#: ../../network/network.pm_.c:375
msgid "Gateway device"
msgstr "Device gateway"
-#: ../../network/network.pm_.c:386
+#: ../../network/network.pm_.c:387
msgid "Proxies configuration"
msgstr "Konfigurasi proxy"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:388
msgid "HTTP proxy"
msgstr "Proxy HTTP"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:389
msgid "FTP proxy"
msgstr "Proxy FTP"
-#: ../../network/network.pm_.c:389
+#: ../../network/network.pm_.c:390
msgid "Track network card id (useful for laptops)"
msgstr "Lacak ID kartu network (berguna di laptop)"
-#: ../../network/network.pm_.c:392
+#: ../../network/network.pm_.c:393
msgid "Proxy should be http://..."
msgstr "Proxy biasanya http://..."
-#: ../../network/network.pm_.c:393
+#: ../../network/network.pm_.c:394
msgid "Proxy should be ftp://..."
msgstr "Proxy biasanya ftp://..."
+#: ../../network/shorewall.pm_.c:24
+msgid "Firewalling configuration detected!"
+msgstr "Konfigurasi firewall terdeteksi!"
+
+#: ../../network/shorewall.pm_.c:25
+msgid ""
+"Warning! An existing firewalling configuration has been detected. You may "
+"need some manual fix after installation."
+msgstr ""
+"Awas! Sudah ada konfigurasi firewall. Anda perlu mengecek dan membetulkan "
+"secara manual setelah instalasi."
+
#: ../../network/tools.pm_.c:41
msgid "Internet configuration"
msgstr "Konfigurasi Internet"
@@ -7315,15 +7481,15 @@ msgstr "Katasandi Account"
msgid "United Kingdom"
msgstr "Inggris"
-#: ../../partition_table.pm_.c:606
+#: ../../partition_table.pm_.c:602
msgid "mount failed: "
msgstr "gagal melakukan mount: "
-#: ../../partition_table.pm_.c:670
+#: ../../partition_table.pm_.c:666
msgid "Extended partition not supported on this platform"
msgstr "Partisi extended tak bisa dipakai di platform ini"
-#: ../../partition_table.pm_.c:688
+#: ../../partition_table.pm_.c:684
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
@@ -7333,21 +7499,21 @@ msgstr ""
"Satu-satunya cara adalah memindahkan partisi primary Anda ke partisi\n"
"extended selanjutnya"
-#: ../../partition_table.pm_.c:778
+#: ../../partition_table.pm_.c:774
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "Proses restore dari file %s gagal: %s"
-#: ../../partition_table.pm_.c:780
+#: ../../partition_table.pm_.c:776
msgid "Bad backup file"
msgstr "File backup rusak"
-#: ../../partition_table.pm_.c:802
+#: ../../partition_table.pm_.c:798
#, c-format
msgid "Error writing to file %s"
msgstr "Error pada saat menulis file %s"
-#: ../../partition_table/raw.pm_.c:187
+#: ../../partition_table/raw.pm_.c:189
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
@@ -7393,150 +7559,154 @@ msgstr "LPD - Line Printer Daemon"
msgid "PDQ - Print, Don't Queue"
msgstr "PDQ - Print, Don't Queue"
-#: ../../printer.pm_.c:35 ../../printer.pm_.c:854
+#: ../../printer.pm_.c:34 ../../printer.pm_.c:1125
msgid "CUPS"
msgstr "CUPS"
-#: ../../printer.pm_.c:36
+#: ../../printer.pm_.c:35
msgid "LPRng"
msgstr "LPRng"
-#: ../../printer.pm_.c:37
+#: ../../printer.pm_.c:36
msgid "LPD"
msgstr "LPD"
-#: ../../printer.pm_.c:38
+#: ../../printer.pm_.c:37
msgid "PDQ"
msgstr "PDQ"
-#: ../../printer.pm_.c:50
+#: ../../printer.pm_.c:49
msgid "Local printer"
msgstr "Printer lokal"
-#: ../../printer.pm_.c:51
+#: ../../printer.pm_.c:50
msgid "Remote printer"
msgstr "printer remote"
-#: ../../printer.pm_.c:52
+#: ../../printer.pm_.c:51
msgid "Printer on remote CUPS server"
msgstr "Printer di server CUPS remote"
-#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:776
+#: ../../printer.pm_.c:52 ../../printerdrake.pm_.c:883
msgid "Printer on remote lpd server"
msgstr "Printer di server lpd remote"
-#: ../../printer.pm_.c:54
+#: ../../printer.pm_.c:53
msgid "Network printer (TCP/Socket)"
msgstr "Printer jaringan (TCP/Socket)"
-#: ../../printer.pm_.c:55
+#: ../../printer.pm_.c:54
msgid "Printer on SMB/Windows 95/98/NT server"
msgstr "Printer di server SMB/windows 95/98/NT"
-#: ../../printer.pm_.c:56
+#: ../../printer.pm_.c:55
msgid "Printer on NetWare server"
msgstr "Printer di server NetWare"
-#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:780
+#: ../../printer.pm_.c:56 ../../printerdrake.pm_.c:887
msgid "Enter a printer device URI"
msgstr "Masukkan URI device printer"
-#: ../../printer.pm_.c:58
+#: ../../printer.pm_.c:57
msgid "Pipe job into a command"
msgstr "Pipe job ke perintah"
-#: ../../printer.pm_.c:487 ../../printer.pm_.c:678 ../../printer.pm_.c:1000
-#: ../../printerdrake.pm_.c:2070 ../../printerdrake.pm_.c:3189
+#: ../../printer.pm_.c:324 ../../printer.pm_.c:366 ../../printer.pm_.c:533
+msgid "Unknown Model"
+msgstr "Model Tak Dikenal"
+
+#: ../../printer.pm_.c:735 ../../printer.pm_.c:926 ../../printer.pm_.c:1318
+#: ../../printerdrake.pm_.c:2260 ../../printerdrake.pm_.c:3414
msgid "Unknown model"
msgstr "Model tak dikenal"
-#: ../../printer.pm_.c:515
+#: ../../printer.pm_.c:763
msgid "Local Printers"
msgstr "Printer Lokal"
-#: ../../printer.pm_.c:517 ../../printer.pm_.c:855
+#: ../../printer.pm_.c:765 ../../printer.pm_.c:1126
msgid "Remote Printers"
msgstr "Printer Remote"
-#: ../../printer.pm_.c:524 ../../printerdrake.pm_.c:301
+#: ../../printer.pm_.c:772 ../../printerdrake.pm_.c:404
#, c-format
msgid " on parallel port \\/*%s"
msgstr " di port paralel \\/*%s"
-#: ../../printer.pm_.c:527 ../../printerdrake.pm_.c:303
+#: ../../printer.pm_.c:775 ../../printerdrake.pm_.c:406
#, c-format
msgid ", USB printer \\/*%s"
msgstr ", printer USB \\/*%s"
-#: ../../printer.pm_.c:532
+#: ../../printer.pm_.c:780
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ", alat multifungsi di port paralel \\/*%s"
-#: ../../printer.pm_.c:535
+#: ../../printer.pm_.c:783
msgid ", multi-function device on USB"
msgstr ", alat multifungsi di USB"
-#: ../../printer.pm_.c:537
+#: ../../printer.pm_.c:785
msgid ", multi-function device on HP JetDirect"
msgstr ", alat multifungsi di HP JetDirect"
-#: ../../printer.pm_.c:539
+#: ../../printer.pm_.c:787
msgid ", multi-function device"
msgstr ", alat multifungsi"
-#: ../../printer.pm_.c:542
+#: ../../printer.pm_.c:790
#, c-format
msgid ", printing to %s"
msgstr ", cetak ke %s"
-#: ../../printer.pm_.c:544
+#: ../../printer.pm_.c:792
#, c-format
msgid " on LPD server \"%s\", printer \"%s\""
msgstr " di server LPD \"%s\", printer \"%s\""
-#: ../../printer.pm_.c:546
+#: ../../printer.pm_.c:794
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ", host TCP/IP \"%s\", port %s"
-#: ../../printer.pm_.c:550
+#: ../../printer.pm_.c:798
#, c-format
msgid " on SMB/Windows server \"%s\", share \"%s\""
msgstr " di server SMB/Mindows \"%s\", share \"%s\""
-#: ../../printer.pm_.c:554
+#: ../../printer.pm_.c:802
#, c-format
msgid " on Novell server \"%s\", printer \"%s\""
msgstr " di server Novell \"%s\", printer \"%s\""
-#: ../../printer.pm_.c:556
+#: ../../printer.pm_.c:804
#, c-format
msgid ", using command %s"
msgstr ", menggunakan perintah %s"
-#: ../../printer.pm_.c:675 ../../printerdrake.pm_.c:1540
+#: ../../printer.pm_.c:923 ../../printerdrake.pm_.c:1656
msgid "Raw printer (No driver)"
msgstr "Printer telanjang (tanpa driver)"
-#: ../../printer.pm_.c:824
+#: ../../printer.pm_.c:1095
#, c-format
msgid "(on %s)"
msgstr "(di %s)"
-#: ../../printer.pm_.c:826
+#: ../../printer.pm_.c:1097
msgid "(on this machine)"
msgstr "(di mesin ini)"
-#: ../../printer.pm_.c:851
+#: ../../printer.pm_.c:1122
#, c-format
msgid "On CUPS server \"%s\""
msgstr "Di server CUPS \"%s\""
-#: ../../printer.pm_.c:857 ../../printerdrake.pm_.c:2851
-#: ../../printerdrake.pm_.c:2862 ../../printerdrake.pm_.c:3078
-#: ../../printerdrake.pm_.c:3130 ../../printerdrake.pm_.c:3156
-#: ../../printerdrake.pm_.c:3326 ../../printerdrake.pm_.c:3328
+#: ../../printer.pm_.c:1128 ../../printerdrake.pm_.c:3071
+#: ../../printerdrake.pm_.c:3082 ../../printerdrake.pm_.c:3303
+#: ../../printerdrake.pm_.c:3355 ../../printerdrake.pm_.c:3381
+#: ../../printerdrake.pm_.c:3556 ../../printerdrake.pm_.c:3558
msgid " (Default)"
msgstr " (Default)"
@@ -7562,11 +7732,11 @@ msgstr ""
msgid "Printer auto-detection (Local, TCP/Socket, and SMB printers)"
msgstr "Printer deteksi otomatis (Lokal, TCP/Socket, dan SMB)"
-#: ../../printerdrake.pm_.c:84 ../../printerdrake.pm_.c:2914
+#: ../../printerdrake.pm_.c:84 ../../printerdrake.pm_.c:3135
msgid "CUPS configuration"
msgstr "konfigurasi CUPS"
-#: ../../printerdrake.pm_.c:85 ../../printerdrake.pm_.c:2915
+#: ../../printerdrake.pm_.c:85 ../../printerdrake.pm_.c:3136
msgid "Specify CUPS server"
msgstr "Tentukan server CUPS"
@@ -7607,7 +7777,7 @@ msgstr ""
msgid "The IP address should look like 192.168.1.20"
msgstr "Alamat IP harus seperti 192.168.1.20"
-#: ../../printerdrake.pm_.c:95 ../../printerdrake.pm_.c:987
+#: ../../printerdrake.pm_.c:95 ../../printerdrake.pm_.c:1094
msgid "The port number should be an integer!"
msgstr "Nomor port harus berupa bilangan bulat"
@@ -7615,7 +7785,7 @@ msgstr "Nomor port harus berupa bilangan bulat"
msgid "CUPS server IP"
msgstr "IP server CUPS"
-#: ../../printerdrake.pm_.c:103 ../../printerdrake.pm_.c:1007
+#: ../../printerdrake.pm_.c:103 ../../printerdrake.pm_.c:1114
msgid "Port"
msgstr "Port"
@@ -7623,12 +7793,130 @@ msgstr "Port"
msgid "Automatic CUPS configuration"
msgstr "Konfigurasi CUPS otomatis"
-#: ../../printerdrake.pm_.c:183 ../../printerdrake.pm_.c:192
-#: ../../printerdrake.pm_.c:2897 ../../printerdrake.pm_.c:3017
+#: ../../printerdrake.pm_.c:177 ../../printerdrake.pm_.c:247
+#: ../../printerdrake.pm_.c:1529 ../../printerdrake.pm_.c:1533
+#: ../../printerdrake.pm_.c:1651 ../../printerdrake.pm_.c:2203
+#: ../../printerdrake.pm_.c:2356 ../../printerdrake.pm_.c:2415
+#: ../../printerdrake.pm_.c:2488 ../../printerdrake.pm_.c:2509
+#: ../../printerdrake.pm_.c:2699 ../../printerdrake.pm_.c:2740
+#: ../../printerdrake.pm_.c:2745 ../../printerdrake.pm_.c:2779
+#: ../../printerdrake.pm_.c:2784 ../../printerdrake.pm_.c:2821
+#: ../../printerdrake.pm_.c:2874 ../../printerdrake.pm_.c:2894
+#: ../../printerdrake.pm_.c:2908 ../../printerdrake.pm_.c:2942
+#: ../../printerdrake.pm_.c:2988 ../../printerdrake.pm_.c:3006
+#: ../../printerdrake.pm_.c:3095 ../../printerdrake.pm_.c:3169
+#: ../../printerdrake.pm_.c:3471 ../../printerdrake.pm_.c:3526
+#: ../../printerdrake.pm_.c:3579 ../../standalone/printerdrake_.c:57
+msgid "Printerdrake"
+msgstr "Printerdrake"
+
+#: ../../printerdrake.pm_.c:178
+#, fuzzy
+msgid "Checking your system..."
+msgstr "Mulai ulang sistem cetak ..."
+
+#: ../../printerdrake.pm_.c:186
+msgid ""
+"There are no printers found which are directly connected to your machine"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:198
+#, fuzzy
+msgid ""
+"The following printers\n"
+"\n"
+msgstr "Paket berikut akan dihapus"
+
+#: ../../printerdrake.pm_.c:199
+#, fuzzy
+msgid ""
+"The following printer\n"
+"\n"
+msgstr "Paket berikut akan dihapus"
+
+#: ../../printerdrake.pm_.c:201
+msgid ""
+"\n"
+"and one unknown printer are "
+msgstr ""
+
+#: ../../printerdrake.pm_.c:203
+#, c-format
+msgid ""
+"\n"
+"and %d unknown printers are "
+msgstr ""
+
+#: ../../printerdrake.pm_.c:207
+msgid ""
+"\n"
+"are "
+msgstr ""
+
+#: ../../printerdrake.pm_.c:208
+msgid ""
+"\n"
+"is "
+msgstr ""
+
+#: ../../printerdrake.pm_.c:210
+#, fuzzy
+msgid "directly connected to your system"
+msgstr "Salin font di sistem Anda"
+
+#: ../../printerdrake.pm_.c:213
+msgid ""
+"\n"
+"There is one unknown printer directly connected to your system"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:215
+#, c-format
+msgid ""
+"\n"
+"There are %d unknown printers directly connected to your system"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:221
+#, fuzzy
+msgid " (Make sure that all your printers are connected and turned on).\n"
+msgstr "Pilihlah port tempat printer Anda terhubung."
+
+#: ../../printerdrake.pm_.c:235
+msgid ""
+"Do you want to enable printing on the printers mentioned above or on "
+"printers in the local network?\n"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:236
+#, fuzzy
+msgid "Do you want to enable printing on printers in the local network?\n"
+msgstr ""
+"Ingin menset printer ini (\"%s\")\n"
+"sbg printer standar?"
+
+#: ../../printerdrake.pm_.c:238
+#, fuzzy
+msgid "Do you want to enable printing on the printers mentioned above?\n"
+msgstr "Anda mau jalankan koneksi ini saat boot?"
+
+#: ../../printerdrake.pm_.c:239
+msgid "Are you sure that you want to set up printing on this machine?\n"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:240
+#, c-format
+msgid ""
+"NOTE: Depending on the printer model and the printing system up to %d MB of "
+"additional software will be installed."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:269 ../../printerdrake.pm_.c:278
+#: ../../printerdrake.pm_.c:3117 ../../printerdrake.pm_.c:3242
msgid "Add a new printer"
msgstr "Tambah printer baru"
-#: ../../printerdrake.pm_.c:184
+#: ../../printerdrake.pm_.c:270
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7650,7 +7938,8 @@ msgstr ""
"Anda akses ke semua driver printer tersedia, opsi driver, dan tipe koneksi "
"printer."
-#: ../../printerdrake.pm_.c:193
+#: ../../printerdrake.pm_.c:280
+#, fuzzy
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7659,7 +7948,7 @@ msgid ""
"computer, connected directly to the network or to a remote Windows machine.\n"
"\n"
"If you have printer(s) connected to this machine, Please plug it/them in on "
-"this computer and turn it/them on so that they can be auto-detected. Also "
+"this computer and turn it/them on so that it/they can be auto-detected. Also "
"your network printer(s) and you Windows machines must be connected and "
"turned on.\n"
"\n"
@@ -7688,7 +7977,40 @@ msgstr ""
" Klik \"Lanjut\" jika siap, dan \"Batal\" jika Anda tak ingin men-setup "
"printer(s) sekarang."
-#: ../../printerdrake.pm_.c:202
+#: ../../printerdrake.pm_.c:289 ../../printerdrake.pm_.c:306
+#, fuzzy
+msgid ""
+"\n"
+"Welcome to the Printer Setup Wizard\n"
+"\n"
+"This wizard will help you to install your printer(s) connected to this "
+"computer.\n"
+"\n"
+"If you have printer(s) connected to this machine, Please plug it/them in on "
+"this computer and turn it/them on so that it/they can be auto-detected.\n"
+"\n"
+" Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
+"want to set up your printer(s) now."
+msgstr ""
+"\n"
+"Selamat Datang di Dukun Setup Printer\n"
+"\n"
+"Dukun ini menolong Anda menginstal printer yg terhubung dg komputer ini atau "
+"jaringan.\n"
+"\n"
+"Jika Anda punya printer terhubung dg mesin ini, hubungkan dan nyalakan "
+"sehingga ia/mereka dapat dideteksi. Juga printer jaringan harus terhubung "
+"dan dinyalakan.\n"
+"\n"
+"Ingat, deteksi printer jaringan membutuhkan waktu lebih lama daripada "
+"printer lokal yg terhubung langsung dg mesin ini. Jadi matikan deteksi "
+"printer jaringan jika tak perlu.\n"
+"\n"
+" Klik \"Lanjut\" jika siap, dan \"Batal\" jika Anda tak ingin men-setup "
+"printer(s) sekarang."
+
+#: ../../printerdrake.pm_.c:297
+#, fuzzy
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7697,7 +8019,7 @@ msgid ""
"computer or connected directly to the network.\n"
"\n"
"If you have printer(s) connected to this machine, Please plug it/them in on "
-"this computer and turn it/them on so that they can be auto-detected. Also "
+"this computer and turn it/them on so that it/they can be auto-detected. Also "
"your network printer(s) must be connected and turned on.\n"
"\n"
"Note that auto-detecting printers on the network takes longer than the auto-"
@@ -7724,24 +8046,24 @@ msgstr ""
" Klik \"Lanjut\" jika siap, dan \"Batal\" jika Anda tak ingin men-setup "
"printer(s) sekarang."
-#: ../../printerdrake.pm_.c:213
+#: ../../printerdrake.pm_.c:315
msgid "Auto-detect printers connected to this machine"
msgstr "Deteksi printer yg terhubung dg mesin ini"
-#: ../../printerdrake.pm_.c:215
+#: ../../printerdrake.pm_.c:318
msgid "Auto-detect printers connected directly to the local network"
msgstr "Deteksi printer yang terhubung dengan jaringan lokal"
-#: ../../printerdrake.pm_.c:218
+#: ../../printerdrake.pm_.c:321
msgid "Auto-detect printers connected to machines running Microsoft Windows"
msgstr "Deteksi printer yg terhubung dg mesin Microsoft Windows"
-#: ../../printerdrake.pm_.c:245 ../../printerdrake.pm_.c:459
-#: ../../printerdrake.pm_.c:484
+#: ../../printerdrake.pm_.c:348 ../../printerdrake.pm_.c:562
+#: ../../printerdrake.pm_.c:587
msgid "Local Printer"
msgstr "Printer Lokal"
-#: ../../printerdrake.pm_.c:246
+#: ../../printerdrake.pm_.c:349
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -7764,49 +8086,49 @@ msgstr ""
"ingin mengubah opsi standar setting (tray kertas, kualitas cetak, ...), "
"pilih \"Printer\" di bagian \"Perangkat Keras\" Pusat Kontrol Mandrake."
-#: ../../printerdrake.pm_.c:283 ../../printerdrake.pm_.c:474
-#: ../../printerdrake.pm_.c:683 ../../printerdrake.pm_.c:923
+#: ../../printerdrake.pm_.c:386 ../../printerdrake.pm_.c:577
+#: ../../printerdrake.pm_.c:790 ../../printerdrake.pm_.c:1030
msgid "Printer auto-detection"
msgstr "Deteksi otomatis printer"
-#: ../../printerdrake.pm_.c:305
+#: ../../printerdrake.pm_.c:408
#, c-format
msgid ", network printer \"%s\", port %s"
msgstr ", printer jaringan \"%s\", port %s"
-#: ../../printerdrake.pm_.c:307
+#: ../../printerdrake.pm_.c:410
#, c-format
msgid ", printer \"%s\" on SMB/Windows server \"%s\""
msgstr ", printer \"%s\" di server SMB/Windows \"%s\""
-#: ../../printerdrake.pm_.c:313
+#: ../../printerdrake.pm_.c:416
#, c-format
msgid "Detected %s"
msgstr "Terdeteksi %s"
-#: ../../printerdrake.pm_.c:317 ../../printerdrake.pm_.c:348
-#: ../../printerdrake.pm_.c:367
+#: ../../printerdrake.pm_.c:420 ../../printerdrake.pm_.c:451
+#: ../../printerdrake.pm_.c:470
#, c-format
msgid "Printer on parallel port \\/*%s"
msgstr "Printer di port paralel \\/*%s"
-#: ../../printerdrake.pm_.c:319 ../../printerdrake.pm_.c:350
-#: ../../printerdrake.pm_.c:372
+#: ../../printerdrake.pm_.c:422 ../../printerdrake.pm_.c:453
+#: ../../printerdrake.pm_.c:475
#, c-format
msgid "USB printer \\/*%s"
msgstr "printer USB \\/*%s"
-#: ../../printerdrake.pm_.c:321
+#: ../../printerdrake.pm_.c:424
#, c-format
msgid "Network printer \"%s\", port %s"
msgstr "Printer jaringan \"%s\", port %s"
-#: ../../printerdrake.pm_.c:323
+#: ../../printerdrake.pm_.c:426
#, c-format
msgid "Printer \"%s\" on SMB/Windows server \"%s\""
msgstr "Printer \"%s\" di server SMB/Windows \"%s\""
-#: ../../printerdrake.pm_.c:460
+#: ../../printerdrake.pm_.c:563
msgid ""
"No local printer found! To manually install a printer enter a device name/"
"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
@@ -7818,19 +8140,19 @@ msgstr ""
"sebanding dg LPT1:, LPT2:, ..., printer USB pertama: /dev/usb/lp0, printer "
"USB kedua: /dev/usb/lp1, ...)."
-#: ../../printerdrake.pm_.c:464
+#: ../../printerdrake.pm_.c:567
msgid "You must enter a device or file name!"
msgstr "Masukkan nama alat atau file!"
-#: ../../printerdrake.pm_.c:475
+#: ../../printerdrake.pm_.c:578
msgid "No printer found!"
msgstr "Printer tak ditemukan!"
-#: ../../printerdrake.pm_.c:485
+#: ../../printerdrake.pm_.c:588
msgid "Available printers"
msgstr "Printer yg tersedia"
-#: ../../printerdrake.pm_.c:489
+#: ../../printerdrake.pm_.c:592
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
@@ -7838,7 +8160,7 @@ msgstr ""
"Printer berikut terdeteksi otomatis, jika bukan yang ingin dikonfigurasikan, "
"masukkan nama alat/file di baris masukan"
-#: ../../printerdrake.pm_.c:490
+#: ../../printerdrake.pm_.c:593
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up or enter a device name/file name in the input line"
@@ -7846,7 +8168,7 @@ msgstr ""
"Daftar printer terdeteksi otomatis. Pilihlah printer yang ingin diset up "
"atau masukkan nama alat/file di baris masukan"
-#: ../../printerdrake.pm_.c:492
+#: ../../printerdrake.pm_.c:595
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
@@ -7857,7 +8179,7 @@ msgstr ""
"otomatis. Jika printer Anda tak terdeteksi dengan benar atau jika ingin Anda "
"konfigurasi sendiri, jalankan \"Konfigurasi manual\"."
-#: ../../printerdrake.pm_.c:493
+#: ../../printerdrake.pm_.c:596
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
@@ -7869,7 +8191,7 @@ msgstr ""
"dengan benar atau jika ingin Anda konfigurasi sendiri, jalankan "
"\"Konfigurasi manual\"."
-#: ../../printerdrake.pm_.c:495
+#: ../../printerdrake.pm_.c:598
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
@@ -7877,11 +8199,11 @@ msgstr ""
"Pilih port tempat printer Anda terhubung atau masukkan nama alat/file di "
"baris masukan"
-#: ../../printerdrake.pm_.c:496
+#: ../../printerdrake.pm_.c:599
msgid "Please choose the port where your printer is connected to."
msgstr "Pilihlah port tempat printer Anda terhubung."
-#: ../../printerdrake.pm_.c:498
+#: ../../printerdrake.pm_.c:601
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
@@ -7889,19 +8211,19 @@ msgstr ""
" (Port Paralel: /dev/lp0, /dev/lp1, ..., sebanding dengan LPT1:, LPT2:, ..., "
"printer USB pertama: /dev/usb/lp0, printer USB kedua: /dev/usb/lp1, ...)."
-#: ../../printerdrake.pm_.c:503
+#: ../../printerdrake.pm_.c:606
msgid "You must choose/enter a printer/device!"
msgstr "Pilih/masukkan printer/device!"
-#: ../../printerdrake.pm_.c:523
+#: ../../printerdrake.pm_.c:626
msgid "Manual configuration"
msgstr "Konfigurasi manual"
-#: ../../printerdrake.pm_.c:577
+#: ../../printerdrake.pm_.c:680
msgid "Remote lpd Printer Options"
msgstr "Pilihan printer lpd remote"
-#: ../../printerdrake.pm_.c:578
+#: ../../printerdrake.pm_.c:681
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
"server and the printer name on that server."
@@ -7909,46 +8231,46 @@ msgstr ""
"Untuk memakai printer lpd remote, berikan nama host\n"
"server printer dan nama printer di server tsb."
-#: ../../printerdrake.pm_.c:579
+#: ../../printerdrake.pm_.c:682
msgid "Remote host name"
msgstr "Nama host remote"
-#: ../../printerdrake.pm_.c:580
+#: ../../printerdrake.pm_.c:683
msgid "Remote printer name"
msgstr "Nama printer remote"
-#: ../../printerdrake.pm_.c:583
+#: ../../printerdrake.pm_.c:686
msgid "Remote host name missing!"
msgstr "Nama host remote hilang!"
-#: ../../printerdrake.pm_.c:587
+#: ../../printerdrake.pm_.c:690
msgid "Remote printer name missing!"
msgstr "Nama printer remote hilang!"
-#: ../../printerdrake.pm_.c:609 ../../printerdrake.pm_.c:1119
+#: ../../printerdrake.pm_.c:712 ../../printerdrake.pm_.c:1225
#, c-format
msgid "Detected model: %s %s"
msgstr "Terdeteksi model: %s %s"
-#: ../../printerdrake.pm_.c:683 ../../printerdrake.pm_.c:923
+#: ../../printerdrake.pm_.c:790 ../../printerdrake.pm_.c:1030
msgid "Scanning network..."
msgstr "Jaringan sedang di-scan..."
-#: ../../printerdrake.pm_.c:692 ../../printerdrake.pm_.c:713
+#: ../../printerdrake.pm_.c:799 ../../printerdrake.pm_.c:820
#, c-format
msgid ", printer \"%s\" on server \"%s\""
msgstr ", printer \"%s\" di server \"%s\""
-#: ../../printerdrake.pm_.c:695 ../../printerdrake.pm_.c:716
+#: ../../printerdrake.pm_.c:802 ../../printerdrake.pm_.c:823
#, c-format
msgid "Printer \"%s\" on server \"%s\""
msgstr "Printer \"%s\" di server \"%s\""
-#: ../../printerdrake.pm_.c:736
+#: ../../printerdrake.pm_.c:843
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "Pilihan printer SMB (windows 95/NT)"
-#: ../../printerdrake.pm_.c:737
+#: ../../printerdrake.pm_.c:844
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
"may be different from its TCP/IP hostname!) and possibly the IP address of "
@@ -7960,7 +8282,7 @@ msgstr ""
"share printer yang ingin Anda akses, juga nama user, katasandi, dan info "
"workgroup."
-#: ../../printerdrake.pm_.c:738
+#: ../../printerdrake.pm_.c:845
msgid ""
" If the desired printer was auto-detected, simply choose it from the list "
"and then add user name, password, and/or workgroup if needed."
@@ -7968,39 +8290,39 @@ msgstr ""
" Jika printer yg diinginkan terdeteksi, pilihlah dari daftar lalu tambahkan "
"nama user, katakunci, dan/atau grupkerja jika perlu."
-#: ../../printerdrake.pm_.c:739
+#: ../../printerdrake.pm_.c:846
msgid "SMB server host"
msgstr "Host server SMB"
-#: ../../printerdrake.pm_.c:740
+#: ../../printerdrake.pm_.c:847
msgid "SMB server IP"
msgstr "IP server SMB"
-#: ../../printerdrake.pm_.c:741
+#: ../../printerdrake.pm_.c:848
msgid "Share name"
msgstr "Nama share"
-#: ../../printerdrake.pm_.c:744
+#: ../../printerdrake.pm_.c:851
msgid "Workgroup"
msgstr "Grupkerja"
-#: ../../printerdrake.pm_.c:746
+#: ../../printerdrake.pm_.c:853
msgid "Auto-detected"
msgstr "Otomatis terdeteksi"
-#: ../../printerdrake.pm_.c:757
+#: ../../printerdrake.pm_.c:864
msgid "Either the server name or the server's IP must be given!"
msgstr "Harus ada nama/IP server!"
-#: ../../printerdrake.pm_.c:761
+#: ../../printerdrake.pm_.c:868
msgid "Samba share name missing!"
msgstr "Nama share Samba hilang!"
-#: ../../printerdrake.pm_.c:767
+#: ../../printerdrake.pm_.c:874
msgid "SECURITY WARNING!"
msgstr "PERINGATAN KEAMANAN!"
-#: ../../printerdrake.pm_.c:768
+#: ../../printerdrake.pm_.c:875
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -8042,7 +8364,7 @@ msgstr ""
"Printerdrake.\n"
"\n"
-#: ../../printerdrake.pm_.c:778
+#: ../../printerdrake.pm_.c:885
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -8053,7 +8375,7 @@ msgstr ""
"Set up server Windows Anda agar printer tersedia di protokol IPP dan set up "
"pencetakan dari mesin ini dengan tipe koneksi \"%s\" di Printerdrake.\n"
-#: ../../printerdrake.pm_.c:781
+#: ../../printerdrake.pm_.c:888
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
@@ -8065,11 +8387,11 @@ msgstr ""
"\n"
"Anda ingin lanjutkan set up printer ini seperti yang Anda lakukan sekarang?"
-#: ../../printerdrake.pm_.c:853
+#: ../../printerdrake.pm_.c:960
msgid "NetWare Printer Options"
msgstr "Pilihan printer NetWare"
-#: ../../printerdrake.pm_.c:854
+#: ../../printerdrake.pm_.c:961
msgid ""
"To print on a NetWare printer, you need to provide the NetWare print server "
"name (Note! it may be different from its TCP/IP hostname!) as well as the "
@@ -8080,37 +8402,37 @@ msgstr ""
"NetWare (tak selalu sama dengan nama TCP/IPnya) juga nama antrian printer "
"yang ingin digunakan beserta nama user dan katasandinya."
-#: ../../printerdrake.pm_.c:855
+#: ../../printerdrake.pm_.c:962
msgid "Printer Server"
msgstr "Server Printer"
-#: ../../printerdrake.pm_.c:856
+#: ../../printerdrake.pm_.c:963
msgid "Print Queue Name"
msgstr "Nama antrian printer"
-#: ../../printerdrake.pm_.c:861
+#: ../../printerdrake.pm_.c:968
msgid "NCP server name missing!"
msgstr "Nama server NCP hilang!"
-#: ../../printerdrake.pm_.c:865
+#: ../../printerdrake.pm_.c:972
msgid "NCP queue name missing!"
msgstr "Nama antrian NCP hilang!"
-#: ../../printerdrake.pm_.c:932 ../../printerdrake.pm_.c:952
+#: ../../printerdrake.pm_.c:1039 ../../printerdrake.pm_.c:1059
#, c-format
msgid ", host \"%s\", port %s"
msgstr ", host \"%s\", port %s"
-#: ../../printerdrake.pm_.c:935 ../../printerdrake.pm_.c:955
+#: ../../printerdrake.pm_.c:1042 ../../printerdrake.pm_.c:1062
#, c-format
msgid "Host \"%s\", port %s"
msgstr "Host \"%s\", port %s"
-#: ../../printerdrake.pm_.c:975
+#: ../../printerdrake.pm_.c:1082
msgid "TCP/Socket Printer Options"
msgstr "Opsi Printer TCP/Soket"
-#: ../../printerdrake.pm_.c:977
+#: ../../printerdrake.pm_.c:1084
msgid ""
"Choose one of the auto-detected printers from the list or enter the hostname "
"or IP and the optional port number (default is 9100) into the input fields."
@@ -8118,7 +8440,7 @@ msgstr ""
"Pilih satu printer dari daftar atau isilah namahost atau IP dan nomor port "
"opsional (default 9100)."
-#: ../../printerdrake.pm_.c:978
+#: ../../printerdrake.pm_.c:1085
msgid ""
"To print to a TCP or socket printer, you need to provide the host name or IP "
"of the printer and optionally the port number (default is 9100). On HP "
@@ -8129,19 +8451,19 @@ msgstr ""
"nomor portnya (default 9100). Nomor port server HP JetDirect biasanya 9100, "
"server lain mungkin bervariasi. Lihat manual perangkat keras Anda."
-#: ../../printerdrake.pm_.c:983
+#: ../../printerdrake.pm_.c:1090
msgid "Printer host name or IP missing!"
msgstr "Nama host printer atau IP tidak ada!"
-#: ../../printerdrake.pm_.c:1005
+#: ../../printerdrake.pm_.c:1112
msgid "Printer host name or IP"
msgstr "Nama host atau IP printer"
-#: ../../printerdrake.pm_.c:1054 ../../printerdrake.pm_.c:1056
+#: ../../printerdrake.pm_.c:1160 ../../printerdrake.pm_.c:1162
msgid "Printer Device URI"
msgstr "Device Printer URI"
-#: ../../printerdrake.pm_.c:1055
+#: ../../printerdrake.pm_.c:1161
msgid ""
"You can specify directly the URI to access the printer. The URI must fulfill "
"either the CUPS or the Foomatic specifications. Note that not all URI types "
@@ -8151,11 +8473,11 @@ msgstr ""
"spesifikasi CUPS/Foomatic. Ingat, tak semua tipe URI di-support oleh semua "
"spooler."
-#: ../../printerdrake.pm_.c:1070
+#: ../../printerdrake.pm_.c:1176
msgid "A valid URI must be entered!"
msgstr "Harus diisi URI valid!"
-#: ../../printerdrake.pm_.c:1402
+#: ../../printerdrake.pm_.c:1515
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
"Location fields do not need to be filled in. They are comments for the users."
@@ -8163,27 +8485,27 @@ msgstr ""
"Tiap printer perlu nama (misalnya \"printer\"). Kolom Penjelasan / Lokasi "
"tak harus terisi. Itu komentar utk user."
-#: ../../printerdrake.pm_.c:1403
+#: ../../printerdrake.pm_.c:1516
msgid "Name of printer"
msgstr "Nama Printer"
-#: ../../printerdrake.pm_.c:1405
+#: ../../printerdrake.pm_.c:1518
msgid "Location"
msgstr "Lokasi"
-#: ../../printerdrake.pm_.c:1416 ../../printerdrake.pm_.c:1536
+#: ../../printerdrake.pm_.c:1530 ../../printerdrake.pm_.c:1652
msgid "Reading printer database..."
msgstr "Pembacaan database printer..."
-#: ../../printerdrake.pm_.c:1419
+#: ../../printerdrake.pm_.c:1534
msgid "Preparing printer database..."
msgstr "Persiapan database printer ..."
-#: ../../printerdrake.pm_.c:1516
+#: ../../printerdrake.pm_.c:1631
msgid "Your printer model"
msgstr "Model printer Anda"
-#: ../../printerdrake.pm_.c:1517
+#: ../../printerdrake.pm_.c:1632
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -8208,24 +8530,24 @@ msgstr ""
"\n"
"%s"
-#: ../../printerdrake.pm_.c:1522 ../../printerdrake.pm_.c:1525
+#: ../../printerdrake.pm_.c:1637 ../../printerdrake.pm_.c:1640
msgid "The model is correct"
msgstr "Model sudah benar"
-#: ../../printerdrake.pm_.c:1523 ../../printerdrake.pm_.c:1524
-#: ../../printerdrake.pm_.c:1527
+#: ../../printerdrake.pm_.c:1638 ../../printerdrake.pm_.c:1639
+#: ../../printerdrake.pm_.c:1642
msgid "Select model manually"
msgstr "Pilih model secara manual"
-#: ../../printerdrake.pm_.c:1543
+#: ../../printerdrake.pm_.c:1659
msgid "Printer model selection"
msgstr "Seleksi model printer"
-#: ../../printerdrake.pm_.c:1544
+#: ../../printerdrake.pm_.c:1660
msgid "Which printer model do you have?"
msgstr "Anda punya model printer mana?"
-#: ../../printerdrake.pm_.c:1545
+#: ../../printerdrake.pm_.c:1661
msgid ""
"\n"
"\n"
@@ -8239,7 +8561,7 @@ msgstr ""
"benar. Cari model yang benar di daftar jika kursor menunjukkan model yang "
"salah atau di \"Printer telanjang\"."
-#: ../../printerdrake.pm_.c:1548
+#: ../../printerdrake.pm_.c:1664
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
@@ -8247,11 +8569,11 @@ msgstr ""
"Jika printer Anda tak terdaftar, pilih yang kompatibel (lihat manual) atau "
"yang mirip."
-#: ../../printerdrake.pm_.c:1624
+#: ../../printerdrake.pm_.c:1741
msgid "OKI winprinter configuration"
msgstr "Konfigurasi winprinter OKI"
-#: ../../printerdrake.pm_.c:1625
+#: ../../printerdrake.pm_.c:1742
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -8267,11 +8589,11 @@ msgstr ""
"cetak. Jika tidak, printer takkan bekerja. Setting tipe koneksi Anda akan "
"diabaikan oleh driver."
-#: ../../printerdrake.pm_.c:1668 ../../printerdrake.pm_.c:1695
+#: ../../printerdrake.pm_.c:1785 ../../printerdrake.pm_.c:1812
msgid "Lexmark inkjet configuration"
msgstr "Konfigurasi Lexmark inkjet"
-#: ../../printerdrake.pm_.c:1669
+#: ../../printerdrake.pm_.c:1786
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
"no printers on remote machines or print server boxes. Please connect your "
@@ -8282,17 +8604,17 @@ msgstr ""
"bukan printer di mesin remote atau kotak server cetak. Hubungkan printer "
"Anda ke port lokal atau konfigurasikan di mesin yang terhubung dengannya."
-#: ../../printerdrake.pm_.c:1696
+#: ../../printerdrake.pm_.c:1813
+#, fuzzy
msgid ""
"To be able to print with your Lexmark inkjet and this configuration, you "
"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
-"com/). Go to the US site and click on the \"Drivers\" button. Then choose "
-"your model and afterwards \"Linux\" as operating system. The drivers come as "
-"RPM packages or shell scripts with interactive graphical installation. You "
-"do not need to do this configuration by the graphical frontends. Cancel "
-"directly after the license agreement. Then print printhead alignment pages "
-"with \"lexmarkmaintain\" and adjust the head alignment settings with this "
-"program."
+"com/). Click on the \"Drivers\" link. Then choose your model and afterwards "
+"\"Linux\" as operating system. The drivers come as RPM packages or shell "
+"scripts with interactive graphical installation. You do not need to do this "
+"configuration by the graphical frontends. Cancel directly after the license "
+"agreement. Then print printhead alignment pages with \"lexmarkmaintain\" and "
+"adjust the head alignment settings with this program."
msgstr ""
"Agar dapat mencetak dg Lexmark inkjet Anda dan konfigurasi ini, Anda perlu "
"driver printer inkjet yg disediakan Lexmark (http://www.lexmark.com/). "
@@ -8303,7 +8625,34 @@ msgstr ""
"halaman printhead alignment dg \"lexmarkmaintain\" dan cocokkan setting head "
"alignmentdd dg program ini."
-#: ../../printerdrake.pm_.c:1912
+#: ../../printerdrake.pm_.c:1816
+msgid "GDI Laser Printer using the Zenographics ZJ-Stream Format"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:1817
+msgid ""
+"Your printer belongs to the group of GDI laser printers (winprinters) sold "
+"by different manufacturers which uses the Zenographics ZJ-stream raster "
+"format for the data sent to the printer. The driver for these printers is "
+"still in a very early development stage and so it will perhaps not always "
+"work properly. Especially it is possible that the printer only works when "
+"you choose the A4 paper size.\n"
+"\n"
+"Some of these printers, as the HP LaserJet 1000, for which this driver was "
+"originally created, need their firmware to be uploaded to them after they "
+"are turned on. In the case of the HP LaserJet 1000 you have to search the "
+"printer's Windows driver CD or your Windows partition for the file "
+"\"sihp1000.img\" and upload the file to the printer with one of the "
+"following commands:\n"
+"\n"
+" lpr -o raw sihp1000.img\n"
+" cat sihp1000.img > /dev/usb/lp0\n"
+"\n"
+"The first command can be given by any normal user, the second must be given "
+"as root. After having done so you can print normally.\n"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:2040
msgid ""
"Printer default settings\n"
"\n"
@@ -8318,22 +8667,22 @@ msgstr ""
"perangkat keras printer laser (memori, unit duplex, tray extra). Ingat, "
"pencetakan dg kualitas tinggi berjalan amat lambat."
-#: ../../printerdrake.pm_.c:1921
+#: ../../printerdrake.pm_.c:2049
#, c-format
msgid "Option %s must be an integer number!"
msgstr "Opsi %s harus berupa integer!"
-#: ../../printerdrake.pm_.c:1925
+#: ../../printerdrake.pm_.c:2053
#, c-format
msgid "Option %s must be a number!"
msgstr "Opsi %s harus berupa bilangan!"
-#: ../../printerdrake.pm_.c:1930
+#: ../../printerdrake.pm_.c:2058
#, c-format
msgid "Option %s out of range!"
msgstr "Opsi %s keluar batas!"
-#: ../../printerdrake.pm_.c:1969
+#: ../../printerdrake.pm_.c:2097
#, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
@@ -8342,11 +8691,11 @@ msgstr ""
"Ingin menset printer ini (\"%s\")\n"
"sbg printer standar?"
-#: ../../printerdrake.pm_.c:1986
+#: ../../printerdrake.pm_.c:2120
msgid "Test pages"
msgstr "Halaman tes"
-#: ../../printerdrake.pm_.c:1987
+#: ../../printerdrake.pm_.c:2121
msgid ""
"Please select the test pages you want to print.\n"
"Note: the photo test page can take a rather long time to get printed and on "
@@ -8357,39 +8706,39 @@ msgstr ""
"Ingat: halaman tes photo perlu waktu lama untuk dicetak. Di printer laser "
"bermemori rendah itu bahkan takkan muncul. Umumnya cukup halaman tes standar."
-#: ../../printerdrake.pm_.c:1991
+#: ../../printerdrake.pm_.c:2125
msgid "No test pages"
msgstr "Tiada halaman tes"
-#: ../../printerdrake.pm_.c:1992
+#: ../../printerdrake.pm_.c:2126
msgid "Print"
msgstr "Cetak"
-#: ../../printerdrake.pm_.c:1994
+#: ../../printerdrake.pm_.c:2183
msgid "Standard test page"
msgstr "Halaman tes standar"
-#: ../../printerdrake.pm_.c:1997
+#: ../../printerdrake.pm_.c:2186
msgid "Alternative test page (Letter)"
msgstr "Halaman tes alternatif (Letter)"
-#: ../../printerdrake.pm_.c:2000
+#: ../../printerdrake.pm_.c:2189
msgid "Alternative test page (A4)"
msgstr "Halaman tes alternatif (A4)"
-#: ../../printerdrake.pm_.c:2002
+#: ../../printerdrake.pm_.c:2191
msgid "Photo test page"
msgstr "Halaman tes foto"
-#: ../../printerdrake.pm_.c:2006
+#: ../../printerdrake.pm_.c:2195
msgid "Do not print any test page"
msgstr "Jangan cetak halaman tes"
-#: ../../printerdrake.pm_.c:2014 ../../printerdrake.pm_.c:2166
+#: ../../printerdrake.pm_.c:2204 ../../printerdrake.pm_.c:2357
msgid "Printing test page(s)..."
msgstr "Pencetakan halaman tes..."
-#: ../../printerdrake.pm_.c:2039
+#: ../../printerdrake.pm_.c:2229
#, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -8404,7 +8753,7 @@ msgstr ""
"%s\n"
"\n"
-#: ../../printerdrake.pm_.c:2043
+#: ../../printerdrake.pm_.c:2233
msgid ""
"Test page(s) have been sent to the printer.\n"
"It may take some time before the printer starts.\n"
@@ -8412,15 +8761,15 @@ msgstr ""
"Halaman test telah dikirim ke printer.\n"
"Akan butuh waktu sebentar untuk mulai mencetak.\n"
-#: ../../printerdrake.pm_.c:2050
+#: ../../printerdrake.pm_.c:2240
msgid "Did it work properly?"
msgstr "Bekerja dg baik?"
-#: ../../printerdrake.pm_.c:2072 ../../printerdrake.pm_.c:3191
+#: ../../printerdrake.pm_.c:2262 ../../printerdrake.pm_.c:3416
msgid "Raw printer"
msgstr "Printer telanjang"
-#: ../../printerdrake.pm_.c:2098
+#: ../../printerdrake.pm_.c:2288
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -8433,7 +8782,7 @@ msgstr ""
"<file>\". Alat grafis memungkinkan Anda memilih printer dan memodifikasi "
"setting dengan mudah.\n"
-#: ../../printerdrake.pm_.c:2100
+#: ../../printerdrake.pm_.c:2290
msgid ""
"These commands you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications, but here do not supply the file name "
@@ -8443,8 +8792,8 @@ msgstr ""
"banyak aplikasi, tapi jangan berikan nama file di sini karena file yang "
"dicetak akan diberikan oleh aplikasi.\n"
-#: ../../printerdrake.pm_.c:2103 ../../printerdrake.pm_.c:2120
-#: ../../printerdrake.pm_.c:2130
+#: ../../printerdrake.pm_.c:2293 ../../printerdrake.pm_.c:2310
+#: ../../printerdrake.pm_.c:2320
#, c-format
msgid ""
"\n"
@@ -8456,7 +8805,7 @@ msgstr ""
"Komando \"%s\" juga memungkinkan modifikasi setting job cetak tertentu. "
"Tambahkan setting yang diinginkan ke baris perintah, mis. \"%s <file>\". "
-#: ../../printerdrake.pm_.c:2106 ../../printerdrake.pm_.c:2146
+#: ../../printerdrake.pm_.c:2296 ../../printerdrake.pm_.c:2336
#, c-format
msgid ""
"To know about the options available for the current printer read either the "
@@ -8467,7 +8816,7 @@ msgstr ""
"\"Daftar opsi cetak\".%s%s\n"
"\n"
-#: ../../printerdrake.pm_.c:2110
+#: ../../printerdrake.pm_.c:2300
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
@@ -8475,7 +8824,7 @@ msgstr ""
"Daftar opsi cetak tersedia untuk printer ini:\n"
"\n"
-#: ../../printerdrake.pm_.c:2115 ../../printerdrake.pm_.c:2125
+#: ../../printerdrake.pm_.c:2305 ../../printerdrake.pm_.c:2315
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
@@ -8484,8 +8833,8 @@ msgstr ""
"Utk mencetak file dari baris komando (window terminal) gunakan perintah \"%s "
"<file>\".\n"
-#: ../../printerdrake.pm_.c:2117 ../../printerdrake.pm_.c:2127
-#: ../../printerdrake.pm_.c:2137
+#: ../../printerdrake.pm_.c:2307 ../../printerdrake.pm_.c:2317
+#: ../../printerdrake.pm_.c:2327
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
@@ -8495,13 +8844,13 @@ msgstr ""
"aplikasi. Tapi jangan berikan nama file di sini karena file yg dicetak akan "
"diberikan oleh aplikasi.\n"
-#: ../../printerdrake.pm_.c:2122 ../../printerdrake.pm_.c:2132
+#: ../../printerdrake.pm_.c:2312 ../../printerdrake.pm_.c:2322
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
msgstr "Untuk mendapat daftar opsi printer klik \"Daftar opsi cetak\"."
-#: ../../printerdrake.pm_.c:2135
+#: ../../printerdrake.pm_.c:2325
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
@@ -8510,7 +8859,7 @@ msgstr ""
"Utk mencetak file dari baris komando (jendela terminal) gunakan komando \"%s "
"<file>\" atau \"%s <file>\".\n"
-#: ../../printerdrake.pm_.c:2139
+#: ../../printerdrake.pm_.c:2329
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -8525,7 +8874,7 @@ msgstr ""
"di desktop, berlabel \"STOP Printer!\", yang menghentikan semua job cetak "
"seketika bila Anda tekan. Ini berguna contohnya saat kertas macet.\n"
-#: ../../printerdrake.pm_.c:2143
+#: ../../printerdrake.pm_.c:2333
#, c-format
msgid ""
"\n"
@@ -8538,40 +8887,40 @@ msgstr ""
"cetak tertentu. Tambahkan setting yg diinginkan ke baris perintah, misalnya "
"\"%s <file>\".\n"
-#: ../../printerdrake.pm_.c:2153
+#: ../../printerdrake.pm_.c:2343
#, c-format
msgid "Printing/Scanning/Photo Cards on \"%s\""
msgstr "Cetak/Scan/Kartu Foto di \"%s\""
-#: ../../printerdrake.pm_.c:2154
+#: ../../printerdrake.pm_.c:2344
#, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "Cetak/Scan di \"%s\""
-#: ../../printerdrake.pm_.c:2156
+#: ../../printerdrake.pm_.c:2346
#, c-format
msgid "Printing/Photo Card Access on \"%s\""
msgstr "Cetak/Akses Kartu Foto di \"%s\""
-#: ../../printerdrake.pm_.c:2157
+#: ../../printerdrake.pm_.c:2347
#, c-format
msgid "Printing on the printer \"%s\""
msgstr "Pencetakan di printer \"%s\""
-#: ../../printerdrake.pm_.c:2160 ../../printerdrake.pm_.c:2163
-#: ../../printerdrake.pm_.c:2164 ../../printerdrake.pm_.c:2165
-#: ../../printerdrake.pm_.c:3175 ../../standalone/drakTermServ_.c:248
-#: ../../standalone/drakbackup_.c:1485 ../../standalone/drakbackup_.c:3530
-#: ../../standalone/drakbug_.c:129 ../../standalone/drakfont_.c:705
+#: ../../printerdrake.pm_.c:2350 ../../printerdrake.pm_.c:2353
+#: ../../printerdrake.pm_.c:2354 ../../printerdrake.pm_.c:2355
+#: ../../printerdrake.pm_.c:3400 ../../standalone/drakTermServ_.c:248
+#: ../../standalone/drakbackup_.c:1560 ../../standalone/drakbackup_.c:4208
+#: ../../standalone/drakbug_.c:130 ../../standalone/drakfont_.c:705
#: ../../standalone/drakfont_.c:1014
msgid "Close"
msgstr "Tutup"
-#: ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2353
msgid "Print option list"
msgstr "Daftar opsi cetak"
-#: ../../printerdrake.pm_.c:2182
+#: ../../printerdrake.pm_.c:2373
#, c-format
msgid ""
"Your multi-function device was configured automatically to be able to scan. "
@@ -8593,7 +8942,7 @@ msgstr ""
"\n"
"Jangan pakai \"scannerdrake\" utk alat ini!"
-#: ../../printerdrake.pm_.c:2202
+#: ../../printerdrake.pm_.c:2394
msgid ""
"Your printer was configured automatically to give you access to the photo "
"card drives from your PC. Now you can access your photo cards using the "
@@ -8614,17 +8963,17 @@ msgstr ""
"printer HP dengan drive kartu foto. Di \"MtoolsFM\" Anda dapat men-switch "
"drive dg isian di sudut kanan atas daftar file."
-#: ../../printerdrake.pm_.c:2223 ../../printerdrake.pm_.c:2673
-#: ../../printerdrake.pm_.c:2945
+#: ../../printerdrake.pm_.c:2416 ../../printerdrake.pm_.c:2875
+#: ../../printerdrake.pm_.c:3170
msgid "Reading printer data..."
msgstr "Pembacaan data printer..."
-#: ../../printerdrake.pm_.c:2243 ../../printerdrake.pm_.c:2271
-#: ../../printerdrake.pm_.c:2306
+#: ../../printerdrake.pm_.c:2436 ../../printerdrake.pm_.c:2464
+#: ../../printerdrake.pm_.c:2499
msgid "Transfer printer configuration"
msgstr "Transfer konfigurasi printer"
-#: ../../printerdrake.pm_.c:2244
+#: ../../printerdrake.pm_.c:2437
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -8639,7 +8988,7 @@ msgstr ""
"ditransfer. \n"
"Tak semua antrian dapat ditransfer karena alasan berikut:\n"
-#: ../../printerdrake.pm_.c:2247
+#: ../../printerdrake.pm_.c:2440
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
@@ -8647,17 +8996,17 @@ msgstr ""
"CUPS tak men-support printer server Novell atau printer yg mengirim data ke "
"perintah format-bebas.\n"
-#: ../../printerdrake.pm_.c:2249
+#: ../../printerdrake.pm_.c:2442
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
msgstr "PDQ hanya men-support printer lokal, LPD remote, dan Soket/TCP.\n"
-#: ../../printerdrake.pm_.c:2251
+#: ../../printerdrake.pm_.c:2444
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr "LPD and LPRng tak men-support printer IPP.\n"
-#: ../../printerdrake.pm_.c:2253
+#: ../../printerdrake.pm_.c:2446
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
@@ -8665,7 +9014,7 @@ msgstr ""
"Antrian tak dibuat oleh program ini atau \"foomatic-configure\" tak dapat "
"ditransfer."
-#: ../../printerdrake.pm_.c:2254
+#: ../../printerdrake.pm_.c:2447
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
@@ -8675,7 +9024,7 @@ msgstr ""
"Juga printer yg terkonfigurasi dengan file PPD dari pabrik atau driver CUPS "
"asli tak dapat ditransfer."
-#: ../../printerdrake.pm_.c:2255
+#: ../../printerdrake.pm_.c:2448
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
@@ -8684,15 +9033,15 @@ msgstr ""
"\n"
"Tandai printer yg ingin Anda transfer lalu klik\"Transfer\"."
-#: ../../printerdrake.pm_.c:2258
+#: ../../printerdrake.pm_.c:2451
msgid "Do not transfer printers"
msgstr "Jangan transfer printer"
-#: ../../printerdrake.pm_.c:2259 ../../printerdrake.pm_.c:2276
+#: ../../printerdrake.pm_.c:2452 ../../printerdrake.pm_.c:2469
msgid "Transfer"
msgstr "Transfer"
-#: ../../printerdrake.pm_.c:2272
+#: ../../printerdrake.pm_.c:2465
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -8703,27 +9052,27 @@ msgstr ""
"Klik \"Transfer\" untuk menindihnya.\n"
"Anda juga dapat menuliskan nama baru atau melewatkan printer ini."
-#: ../../printerdrake.pm_.c:2280
+#: ../../printerdrake.pm_.c:2473
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr "Nama printer harus hanya berupa huruf, angka, atau garisbawah"
-#: ../../printerdrake.pm_.c:2285
+#: ../../printerdrake.pm_.c:2478
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
"do you really want to overwrite its configuration?"
msgstr "Sudah ada printer \"%s\", Anda benar ingin menindih konfigurasinya?"
-#: ../../printerdrake.pm_.c:2293
+#: ../../printerdrake.pm_.c:2486
msgid "New printer name"
msgstr "Nama printer baru"
-#: ../../printerdrake.pm_.c:2296
+#: ../../printerdrake.pm_.c:2489
#, c-format
msgid "Transferring %s..."
msgstr "Pemindahan %s ..."
-#: ../../printerdrake.pm_.c:2307
+#: ../../printerdrake.pm_.c:2500
#, c-format
msgid ""
"You have transferred your former default printer (\"%s\"), Should it be also "
@@ -8732,29 +9081,29 @@ msgstr ""
"Anda telah men-transfer printer standar lama Anda (\"%s\"), Akankah ia juga "
"dijadikan printer default pada sistem cetak baru %s?"
-#: ../../printerdrake.pm_.c:2316
+#: ../../printerdrake.pm_.c:2510
msgid "Refreshing printer data..."
msgstr "Penyegaran data printer..."
-#: ../../printerdrake.pm_.c:2324 ../../printerdrake.pm_.c:2395
-#: ../../printerdrake.pm_.c:2407
+#: ../../printerdrake.pm_.c:2518 ../../printerdrake.pm_.c:2590
+#: ../../printerdrake.pm_.c:2602
msgid "Configuration of a remote printer"
msgstr "Konfigurasi printer remote"
-#: ../../printerdrake.pm_.c:2325
+#: ../../printerdrake.pm_.c:2519
msgid "Starting network..."
msgstr "Pemulaian network..."
-#: ../../printerdrake.pm_.c:2359 ../../printerdrake.pm_.c:2363
-#: ../../printerdrake.pm_.c:2365
+#: ../../printerdrake.pm_.c:2554 ../../printerdrake.pm_.c:2558
+#: ../../printerdrake.pm_.c:2560
msgid "Configure the network now"
msgstr "Konfigurasikan jaringan sekarang"
-#: ../../printerdrake.pm_.c:2360
+#: ../../printerdrake.pm_.c:2555
msgid "Network functionality not configured"
msgstr "Fungsi network tak dikonfigurasi"
-#: ../../printerdrake.pm_.c:2361
+#: ../../printerdrake.pm_.c:2556
msgid ""
"You are going to configure a remote printer. This needs working network "
"access, but your network is not configured yet. If you go on without network "
@@ -8766,11 +9115,11 @@ msgstr ""
"tanpa konfigurasi network, Anda takkan dapat menggunakan printer yang Anda "
"konfigurasikan sekarang. Bagaimana Anda mau teruskan?"
-#: ../../printerdrake.pm_.c:2364
+#: ../../printerdrake.pm_.c:2559
msgid "Go on without configuring the network"
msgstr "Jalan tanpa konfigurasi jaringan"
-#: ../../printerdrake.pm_.c:2397
+#: ../../printerdrake.pm_.c:2592
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -8785,7 +9134,7 @@ msgstr ""
"\"Koneksi\", lalu set printer juga dg Pusat Kontrol Mandrake, bagian "
"\"Hardware\"/\"Printer\""
-#: ../../printerdrake.pm_.c:2398
+#: ../../printerdrake.pm_.c:2593
msgid ""
"The network access was not running and could not be started. Please check "
"your configuration and your hardware. Then try to configure your remote "
@@ -8794,24 +9143,24 @@ msgstr ""
"Akses network tak jalan dan tak dapat dimulai. Cek konfigurasi dan hardware "
"Anda, lalu coba konfigurasikan printer remote Anda lagi."
-#: ../../printerdrake.pm_.c:2408
+#: ../../printerdrake.pm_.c:2603
msgid "Restarting printing system..."
msgstr "Mulai ulang sistem cetak ..."
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2641
msgid "high"
msgstr "tinggi"
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2641
msgid "paranoid"
msgstr "pengecut"
-#: ../../printerdrake.pm_.c:2447
+#: ../../printerdrake.pm_.c:2642
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr "Instalasi sistem cetak dalam level keamanan %s"
-#: ../../printerdrake.pm_.c:2448
+#: ../../printerdrake.pm_.c:2643
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -8834,11 +9183,11 @@ msgstr ""
"\n"
"Benarkah Anda ingin mengkonfigurasikan printer di mesin ini?"
-#: ../../printerdrake.pm_.c:2480
+#: ../../printerdrake.pm_.c:2675
msgid "Starting the printing system at boot time"
msgstr "Inisiasi sistem cetak pada saat boot"
-#: ../../printerdrake.pm_.c:2481
+#: ../../printerdrake.pm_.c:2676
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -8858,75 +9207,72 @@ msgstr ""
"\n"
"Anda ingin auto-start sistem cetak dinyalakan lagi?"
-#: ../../printerdrake.pm_.c:2504 ../../printerdrake.pm_.c:2544
-#: ../../printerdrake.pm_.c:2581 ../../printerdrake.pm_.c:2621
-#: ../../printerdrake.pm_.c:2733
+#: ../../printerdrake.pm_.c:2700 ../../printerdrake.pm_.c:2741
+#: ../../printerdrake.pm_.c:2780 ../../printerdrake.pm_.c:2822
+#: ../../printerdrake.pm_.c:2943
msgid "Checking installed software..."
msgstr "Pemeriksaan perangkat lunak terinstal"
-#: ../../printerdrake.pm_.c:2548
+#: ../../printerdrake.pm_.c:2746
msgid "Removing LPRng..."
msgstr "Hapus LPRng..."
-#: ../../printerdrake.pm_.c:2585
+#: ../../printerdrake.pm_.c:2785
msgid "Removing LPD..."
msgstr "Hapus LPD..."
-#: ../../printerdrake.pm_.c:2657
+#: ../../printerdrake.pm_.c:2858
msgid "Select Printer Spooler"
msgstr "Pilih spooler printer"
-#: ../../printerdrake.pm_.c:2658
+#: ../../printerdrake.pm_.c:2859
msgid "Which printing system (spooler) do you want to use?"
msgstr "Sistem (spooler) printer mana yang ingin digunakan?"
-#: ../../printerdrake.pm_.c:2691
+#: ../../printerdrake.pm_.c:2895
#, c-format
msgid "Configuring printer \"%s\"..."
msgstr "Konfigurasikan printer \"%s\"..."
-#: ../../printerdrake.pm_.c:2704
+#: ../../printerdrake.pm_.c:2909
msgid "Installing Foomatic..."
msgstr "Instalasi Foomatic ..."
-#: ../../printerdrake.pm_.c:2769 ../../printerdrake.pm_.c:2808
-#: ../../printerdrake.pm_.c:3192 ../../printerdrake.pm_.c:3262
+#: ../../printerdrake.pm_.c:2979 ../../printerdrake.pm_.c:3020
+#: ../../printerdrake.pm_.c:3417 ../../printerdrake.pm_.c:3490
msgid "Printer options"
msgstr "Opsi printer"
-#: ../../printerdrake.pm_.c:2778
-msgid "Preparing PrinterDrake..."
+#: ../../printerdrake.pm_.c:2989
+#, fuzzy
+msgid "Preparing Printerdrake..."
msgstr "Persiapan PrinterDrake ..."
-#: ../../printerdrake.pm_.c:2795 ../../printerdrake.pm_.c:3349
+#: ../../printerdrake.pm_.c:3007 ../../printerdrake.pm_.c:3580
msgid "Configuring applications..."
msgstr "Konfigurasi aplikasi..."
-#: ../../printerdrake.pm_.c:2815
+#: ../../printerdrake.pm_.c:3027
msgid "Would you like to configure printing?"
msgstr "Ingin konfigurasi printer?"
-#: ../../printerdrake.pm_.c:2827
+#: ../../printerdrake.pm_.c:3039
msgid "Printing system: "
msgstr "Sistem cetak: "
-#: ../../printerdrake.pm_.c:2875
-msgid "Printerdrake"
-msgstr "Printerdrake"
-
-#: ../../printerdrake.pm_.c:2879
+#: ../../printerdrake.pm_.c:3099
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; to view information about it; "
"or to make a printer on a remote CUPS server available for Star Office/"
-"OpenOffice.org."
+"OpenOffice.org/GIMP."
msgstr ""
"Printer berikut telah dikonfigurasikan. Klik-dobel printer utk memodifikasi "
"setting; membuatnya printer default; atau melihat info tentangnya; atau "
"membuat printer di server CUPS remote dapat dipakai oleh Star Office/"
-"OpenOffice.org."
+"OpenOffice.org/GIMP."
-#: ../../printerdrake.pm_.c:2880
+#: ../../printerdrake.pm_.c:3100
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; or to view information about "
@@ -8935,28 +9281,28 @@ msgstr ""
"Printer berikut telah dikonfigurasikan. Klik-dobel printer utk memodifikasi "
"setting; membuatnya printer default; atau melihat info tentangnya."
-#: ../../printerdrake.pm_.c:2906
+#: ../../printerdrake.pm_.c:3127
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr "Penyegaran daftar printer (utk menampilkan semua printer CUPS remote)"
-#: ../../printerdrake.pm_.c:2924
+#: ../../printerdrake.pm_.c:3145
msgid "Change the printing system"
msgstr "Ubah sistem cetak"
-#: ../../printerdrake.pm_.c:2929 ../../standalone/drakconnect_.c:277
+#: ../../printerdrake.pm_.c:3150 ../../standalone/drakconnect_.c:277
msgid "Normal Mode"
msgstr "Modus Normal"
-#: ../../printerdrake.pm_.c:3085 ../../printerdrake.pm_.c:3135
-#: ../../printerdrake.pm_.c:3343
+#: ../../printerdrake.pm_.c:3310 ../../printerdrake.pm_.c:3360
+#: ../../printerdrake.pm_.c:3573
msgid "Do you want to configure another printer?"
msgstr "Ingin konfigurasikan printer lain?"
-#: ../../printerdrake.pm_.c:3170
+#: ../../printerdrake.pm_.c:3395
msgid "Modify printer configuration"
msgstr "Modifikasi konfigurasi printer"
-#: ../../printerdrake.pm_.c:3172
+#: ../../printerdrake.pm_.c:3397
#, c-format
msgid ""
"Printer %s\n"
@@ -8965,100 +9311,102 @@ msgstr ""
"Printer %s\n"
"Apa yg Anda inginkan utk modifikasi printer ini?"
-#: ../../printerdrake.pm_.c:3176
+#: ../../printerdrake.pm_.c:3401
msgid "Do it!"
msgstr "Kerjakan!"
-#: ../../printerdrake.pm_.c:3181 ../../printerdrake.pm_.c:3236
+#: ../../printerdrake.pm_.c:3406 ../../printerdrake.pm_.c:3461
msgid "Printer connection type"
msgstr "Tipe koneksi printer"
-#: ../../printerdrake.pm_.c:3182 ../../printerdrake.pm_.c:3240
+#: ../../printerdrake.pm_.c:3407 ../../printerdrake.pm_.c:3465
msgid "Printer name, description, location"
msgstr "Nama, penjelasan, lokasi printer"
-#: ../../printerdrake.pm_.c:3184 ../../printerdrake.pm_.c:3255
+#: ../../printerdrake.pm_.c:3409 ../../printerdrake.pm_.c:3483
msgid "Printer manufacturer, model, driver"
msgstr "Pembuat, model, driver printer"
-#: ../../printerdrake.pm_.c:3185 ../../printerdrake.pm_.c:3256
+#: ../../printerdrake.pm_.c:3410 ../../printerdrake.pm_.c:3484
msgid "Printer manufacturer, model"
msgstr "Pembuat, model printer"
-#: ../../printerdrake.pm_.c:3194 ../../printerdrake.pm_.c:3266
+#: ../../printerdrake.pm_.c:3419 ../../printerdrake.pm_.c:3494
msgid "Set this printer as the default"
msgstr "Set printer ini sebagai standar"
-#: ../../printerdrake.pm_.c:3196 ../../printerdrake.pm_.c:3271
-msgid "Add this printer to Star Office/OpenOffice.org"
-msgstr "Tambah printer ini ke Star Office/OpenOffice.org"
+#: ../../printerdrake.pm_.c:3421 ../../printerdrake.pm_.c:3499
+msgid "Add this printer to Star Office/OpenOffice.org/GIMP"
+msgstr "Tambah printer ini ke Star Office/OpenOffice.org/GIMP"
-#: ../../printerdrake.pm_.c:3197 ../../printerdrake.pm_.c:3280
-msgid "Remove this printer from Star Office/OpenOffice.org"
-msgstr "Hapus printer ini dari Star Office/OpenOffice.org"
+#: ../../printerdrake.pm_.c:3422 ../../printerdrake.pm_.c:3508
+msgid "Remove this printer from Star Office/OpenOffice.org/GIMP"
+msgstr "Hapus printer ini dari Star Office/OpenOffice.org/GIMP"
-#: ../../printerdrake.pm_.c:3198 ../../printerdrake.pm_.c:3289
+#: ../../printerdrake.pm_.c:3423 ../../printerdrake.pm_.c:3517
msgid "Print test pages"
msgstr "Cetak halaman tes"
-#: ../../printerdrake.pm_.c:3199 ../../printerdrake.pm_.c:3291
+#: ../../printerdrake.pm_.c:3424 ../../printerdrake.pm_.c:3519
msgid "Know how to use this printer"
msgstr "Cara penggunaan printer ini"
-#: ../../printerdrake.pm_.c:3201 ../../printerdrake.pm_.c:3293
+#: ../../printerdrake.pm_.c:3426 ../../printerdrake.pm_.c:3521
msgid "Remove printer"
msgstr "Hapus printer"
-#: ../../printerdrake.pm_.c:3245
+#: ../../printerdrake.pm_.c:3472
#, c-format
msgid "Removing old printer \"%s\"..."
msgstr "Menghapus printer lama \"%s\"..."
-#: ../../printerdrake.pm_.c:3269
+#: ../../printerdrake.pm_.c:3497
msgid "Default printer"
msgstr "Printer standar"
-#: ../../printerdrake.pm_.c:3270
+#: ../../printerdrake.pm_.c:3498
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr "Printer \"%s\" kini diset sbg printer standar."
-#: ../../printerdrake.pm_.c:3274 ../../printerdrake.pm_.c:3277
-msgid "Adding printer to Star Office/OpenOffice.org"
-msgstr "Penambahan printer ke Star Office/OpenOffice.org"
+#: ../../printerdrake.pm_.c:3502 ../../printerdrake.pm_.c:3505
+msgid "Adding printer to Star Office/OpenOffice.org/GIMP"
+msgstr "Penambahan printer ke Star Office/OpenOffice.org/GIMP"
-#: ../../printerdrake.pm_.c:3275
+#: ../../printerdrake.pm_.c:3503
#, c-format
msgid ""
-"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
-msgstr "Printer \"%s\" sukses ditambahkan ke Star Office/OpenOffice.org."
+"The printer \"%s\" was successfully added to Star Office/OpenOffice.org/GIMP."
+msgstr "Printer \"%s\" sukses ditambahkan ke Star Office/OpenOffice.org/GIMP."
-#: ../../printerdrake.pm_.c:3278
+#: ../../printerdrake.pm_.c:3506
#, c-format
-msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
-msgstr "Gagal menambahkan printer \"%s\" ke Star Office/OpenOffice.org."
+msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org/GIMP."
+msgstr "Gagal menambahkan printer \"%s\" ke Star Office/OpenOffice.org/GIMP."
-#: ../../printerdrake.pm_.c:3283 ../../printerdrake.pm_.c:3286
-msgid "Removing printer from Star Office/OpenOffice.org"
-msgstr "Hapus printer dari Star Office/OpenOffice.org"
+#: ../../printerdrake.pm_.c:3511 ../../printerdrake.pm_.c:3514
+msgid "Removing printer from Star Office/OpenOffice.org/GIMP"
+msgstr "Hapus printer dari Star Office/OpenOffice.org/GIMP"
-#: ../../printerdrake.pm_.c:3284
+#: ../../printerdrake.pm_.c:3512
#, c-format
msgid ""
-"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
-msgstr "Printer \"%s\" sukses dihapus dari Star Office/OpenOffice.org."
+"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org/"
+"GIMP."
+msgstr "Printer \"%s\" sukses dihapus dari Star Office/OpenOffice.org/GIMP."
-#: ../../printerdrake.pm_.c:3287
+#: ../../printerdrake.pm_.c:3515
#, c-format
-msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
-msgstr "Gagal menghapus printer \"%s\" dari Star Office/OpenOffice.org."
+msgid ""
+"Failed to remove the printer \"%s\" from Star Office/OpenOffice.org/GIMP."
+msgstr "Gagal menghapus printer \"%s\" dari Star Office/OpenOffice.org/GIMP."
-#: ../../printerdrake.pm_.c:3295
+#: ../../printerdrake.pm_.c:3523
#, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr "Anda ingin menghapus printer \"%s\"?"
-#: ../../printerdrake.pm_.c:3297
+#: ../../printerdrake.pm_.c:3527
#, c-format
msgid "Removing printer \"%s\"..."
msgstr "Menghapus printer \"%s\"..."
@@ -9458,7 +9806,7 @@ msgstr "Internet"
msgid "File sharing"
msgstr "Pemakaian file bersama"
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1669
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1744
msgid "System"
msgstr "Sistem"
@@ -9511,15 +9859,15 @@ msgstr "Mulai"
msgid "Stop"
msgstr "Stop"
-#: ../../share/advertising/00-thanks.pl_.c:9
-msgid "Thank you for choosing Mandrake Linux 8.2"
-msgstr "Terima kasih memilih Mandrake Linux 8.2"
+#: ../../share/advertising/01-thanks.pl_.c:9
+msgid "Thank you for choosing Mandrake Linux 9.0"
+msgstr "Terima kasih memilih Mandrake Linux 9.0"
-#: ../../share/advertising/00-thanks.pl_.c:10
+#: ../../share/advertising/01-thanks.pl_.c:10
msgid "Welcome to the Open Source world"
msgstr "Selamat datang di dunia Source Terbuka"
-#: ../../share/advertising/00-thanks.pl_.c:11
+#: ../../share/advertising/01-thanks.pl_.c:11
msgid ""
"The success of MandrakeSoft is based upon the principle of Free Software. "
"Your new operating system is the result of collaborative work on the part of "
@@ -9528,202 +9876,235 @@ msgstr ""
"Sukses MandrakeSoft berdasar prinsip Perangkat Lunak Bebas. OS baru Anda "
"adalah hasil kerja kolaborasi Komunitas Linux seluruh dunia"
-#: ../../share/advertising/01-gnu.pl_.c:9
-msgid "Join the Free Software world"
+#: ../../share/advertising/02-community.pl_.c:9
+msgid "Get involved in the Free Software world"
msgstr "Gabung dunia Perangkat Lunak Bebas"
-#: ../../share/advertising/01-gnu.pl_.c:10
+#: ../../share/advertising/02-community.pl_.c:10
+msgid "Want to know more about the Open Source community?"
+msgstr ""
+
+#: ../../share/advertising/02-community.pl_.c:11
msgid ""
-"Get to know the Open Source community and become a member. Learn, teach, and "
-"help others by joining the many discussion forums that you will find in our "
-"\"Community\" webpages"
+"To share your own knowledge and help build Linux tools, join the discussions "
+"forum you'll find on our \"Community\" webpages"
msgstr ""
"Cari tahu tentang komunitas Sumber Bebas dan jadi anggota. Belajar, ajari, "
"dan bantulah sesama dengan bergabung dalam banyak forum diskusi di halaman "
"web \"Komunitas\" kami"
-#: ../../share/advertising/02-internet.pl_.c:9
-msgid "Internet and Messaging"
-msgstr "Internet dan Pesan"
+#: ../../share/advertising/03-internet.pl_.c:9
+#, fuzzy
+msgid "Get the most from the Internet"
+msgstr "Hubungan ke Internet"
-#: ../../share/advertising/02-internet.pl_.c:10
+#: ../../share/advertising/03-internet.pl_.c:10
msgid ""
-"Mandrake Linux 8.2 provides the best software to access everything the "
-"Internet has to offer: Surf the web & view animations with Mozilla and "
-"Konqueror, exchange email & organize your personal information with "
-"Evolution and Kmail, and much more"
+"Mandrake Linux 9.0 has selected the best software for you. Surf the Web and "
+"view animations with Mozilla and Konqueror, or read your mail and handle "
+"your personal information with Evolution and Kmail"
msgstr ""
-"Mandrake Linux 8.2 menyajikan software terbaik untuk mengakses segala yang "
+"Mandrake Linux 9.0 menyajikan software terbaik untuk mengakses segala yang "
"disediakan Internet: Jelajah web & lihat animasi dengan Mozilla dan "
"Konqueror, tukar email & atur info pribadi Anda dengan Evolution dan Kmail, "
"dan banyak lagi"
-#: ../../share/advertising/03-graphic.pl_.c:9
-msgid "Multimedia and Graphics"
-msgstr "Multimedia dan Grafik"
+#: ../../share/advertising/04-multimedia.pl_.c:9
+msgid "Discover the most up-to-date graphics and multimedia tools!"
+msgstr ""
+
+#: ../../share/advertising/04-multimedia.pl_.c:10
+msgid "Push multimedia to its limits!"
+msgstr ""
-#: ../../share/advertising/03-graphic.pl_.c:10
+#: ../../share/advertising/04-multimedia.pl_.c:11
+#, fuzzy
msgid ""
-"Mandrake Linux 8.2 lets you push your multimedia computer to its limits! Use "
-"the latest software to play music and audio files, edit and organize your "
-"images and photos, watch TV and videos, and much more"
+"Mandrake Linux 9.0 enables you to use the very latest software to play audio "
+"files, edit and handle your images or photos, and play videos"
msgstr ""
"Mandrake Linux 8.2 memaksimalkan komputer multimedia Anda! Gunakan software "
"mutakhir untuk memainkan file music dan audio, edit dan mengatur gambar dan "
"foto, melihat TV dan video, dan banyak lagi"
-#: ../../share/advertising/04-develop.pl_.c:9
-msgid "Development"
-msgstr "Development"
+#: ../../share/advertising/05-games.pl_.c:9
+msgid "Games"
+msgstr "Game"
-#: ../../share/advertising/04-develop.pl_.c:10
+#: ../../share/advertising/05-games.pl_.c:10
+#, fuzzy
msgid ""
-"Mandrake Linux 8.2 is the ultimate development platform. Discover the power "
-"of the GNU gcc compiler as well as the best Open Source development "
-"environments"
+"Mandrake Linux 9.0 provides the best Open Source games - arcade, action, "
+"cards, sports, strategy..."
msgstr ""
-"Mandrake Linux 8.2 adalah platform development terampuh. Temukan power "
-"compiler gcc GNU, juga lingkungan development Sumber Bebas terbaik"
+"Mandrake Linux 8.2 menyediakan game terbaik Source Terbuka - arcade, aksi, "
+"kartu, olah raga, strategi, ..."
-#: ../../share/advertising/05-contcenter.pl_.c:9
-#: ../../standalone/drakbug_.c:69
+#: ../../share/advertising/06-mcc.pl_.c:9 ../../standalone/drakbug_.c:69
msgid "Mandrake Control Center"
msgstr "Pusat Kontrol Mandrake"
-#: ../../share/advertising/05-contcenter.pl_.c:10
+#: ../../share/advertising/06-mcc.pl_.c:10
+#, fuzzy
msgid ""
-"The Mandrake Linux 8.2 Control Center is a one-stop location for fully "
-"customizing and configuring your Mandrake system"
+"Mandrake Linux 9.0 provides a powerful tool to fully customize and configure "
+"your machine"
msgstr ""
"Pusat Kontrol Mandrake Linux 8.2 adalah tempat terpadu untuk mengkonfigurasi "
"sistem Mandrake Anda"
-#: ../../share/advertising/06-user.pl_.c:9
+#: ../../share/advertising/07-desktop.pl_.c:9
msgid "User interfaces"
msgstr "Antarmuka user"
-#: ../../share/advertising/06-user.pl_.c:10
+#: ../../share/advertising/07-desktop.pl_.c:10
+msgid ""
+"Mandrake Linux 9.0 provides 11 user interfaces which can be fully modified: "
+"KDE 3, Gnome 2, WindowMaker..."
+msgstr ""
+
+#: ../../share/advertising/08-development.pl_.c:9
+#, fuzzy
+msgid "Development simplified"
+msgstr "Development"
+
+#: ../../share/advertising/08-development.pl_.c:10
+msgid "Mandrake Linux 9.0 is the ultimate development platform"
+msgstr ""
+
+#: ../../share/advertising/08-development.pl_.c:11
+#, fuzzy
msgid ""
-"Mandrake Linux 8.2 provides 11 different graphical desktop environments and "
-"window managers to choose from including GNOME 1.4, KDE 2.2.2, Window Maker "
-"0.8, and the rest"
+"Use the full power of the GNU gcc 3 compiler as well as the best Open Source "
+"development environments"
msgstr ""
-"Mandrake Linux 8.2 menyediakan 11 lingkungan desktop grafis dan manajer "
-"window termasuk GNOME 1.4, KDE 2.2.2, Window Maker 0.8, dan lain-lain"
+"Mandrake Linux 8.2 adalah platform development terampuh. Temukan power "
+"compiler gcc GNU, juga lingkungan development Sumber Bebas terbaik"
-#: ../../share/advertising/07-server.pl_.c:9
-msgid "Server Software"
-msgstr "Piranti Lunak Server"
+#: ../../share/advertising/09-server.pl_.c:9
+msgid "Turn your machine into a reliable server"
+msgstr ""
-#: ../../share/advertising/07-server.pl_.c:10
+#: ../../share/advertising/09-server.pl_.c:10
+#, fuzzy
msgid ""
-"Transform your machine into a powerful server with just a few clicks of the "
-"mouse: Web server, email, firewall, router, file and print server, ..."
+"Transform your machine into a powerful server in a few clicks of your mouse: "
+"Web server, mail, firewall, router, file and print server..."
msgstr ""
"Jadikan mesin Anda server powerful dengan hanya beberapa klik mouse: server "
"Web, email, firewall, router, server file dan cetak, ..."
-#: ../../share/advertising/08-games.pl_.c:9
-msgid "Games"
-msgstr "Game"
+#: ../../share/advertising/10-mnf.pl_.c:9
+msgid "Optimize your security"
+msgstr ""
-#: ../../share/advertising/08-games.pl_.c:10
+#: ../../share/advertising/10-mnf.pl_.c:10
msgid ""
-"Mandrake Linux 8.2 provides the best Open Source games - arcade, action, "
-"cards, sports, strategy, ..."
+"The MandrakeSecurity range includes the Multi Network Firewall product (M.N."
+"F.)"
msgstr ""
-"Mandrake Linux 8.2 menyediakan game terbaik Source Terbuka - arcade, aksi, "
-"kartu, olah raga, strategi, ..."
-#: ../../share/advertising/09-MDKcampus.pl_.c:9
-msgid "MandrakeCampus"
-msgstr "KampusMandrake"
+#: ../../share/advertising/10-mnf.pl_.c:11
+msgid ""
+"This firewall product includes network features which allow you to fulfill "
+"all your security needs"
+msgstr ""
+
+#: ../../share/advertising/10-mnf.pl_.c:12
+msgid "This product is available on MandrakeStore website"
+msgstr ""
+
+#: ../../share/advertising/11-mdkstore.pl_.c:9
+msgid "The official MandrakeSoft store"
+msgstr ""
-#: ../../share/advertising/09-MDKcampus.pl_.c:10
+#: ../../share/advertising/11-mdkstore.pl_.c:10
+#, fuzzy
msgid ""
-"Would you like to learn Linux simply, quickly, and for free? MandrakeSoft "
-"provides free Linux training, as well as a way to test your progress, at "
-"MandrakeCampus -- our online training center"
+"Our full range of Linux solutions, as well as special offers on products and "
+"'goodies', are available online at our e-store"
msgstr ""
-"Inginkah Anda belajar Linux secara mudah, cepat dan gratis? MandrakeSoft "
-"menyediakan training Linux gratis, beserta cara mentes kemajuan Anda, di "
-"KampusMandrake -- pusat training online kami"
+"Solusi Linux lengkap, termasuk sajian khusus produk dan 'goodies', tersedia "
+"online di e-store kami"
-#: ../../share/advertising/10-MDKexpert.pl_.c:9
-msgid "MandrakeExpert"
-msgstr "AhliMandrake"
+#: ../../share/advertising/12-mdkstore.pl_.c:9
+msgid "Strategic partners"
+msgstr ""
-#: ../../share/advertising/10-MDKexpert.pl_.c:10
+#: ../../share/advertising/12-mdkstore.pl_.c:10
msgid ""
-"Quality support from the Linux Community, and from MandrakeSoft, is just "
-"around the corner. And if you're already a Linux veteran, become an \"Expert"
-"\" and share your knowledge at our support website"
+"MandrakeSoft works alongside a selection of companies offering professional "
+"solutions compatible with Mandrake Linux; a list of these partners is "
+"available on the MandrakeStore"
msgstr ""
-"Support kualitas dari Komunitas Linux, dan dari MandrakeSoft, ada di sekitar "
-"pojok. Jika Anda veteran Linux, jadilah \"Ahli\" dan bagilah pengetahuan "
-"Anda di situs web support kami"
-#: ../../share/advertising/11-consul.pl_.c:9
-msgid "MandrakeConsulting"
-msgstr "KonsultasiMandrake"
+#: ../../share/advertising/13-mdkcampus.pl_.c:9
+msgid "Discover MandrakeSoft's training catalogue Linux-Campus"
+msgstr ""
-#: ../../share/advertising/11-consul.pl_.c:10
+#: ../../share/advertising/13-mdkcampus.pl_.c:10
msgid ""
-"For all of your IT projects, our consultants are ready to analyze your "
-"requirements and offer a customized solution. Benefit from MandrakeSoft's "
-"vast experience as a Linux producer to provide a true IT alternative for "
-"your business organization"
+"The training program has been create to respond to the needs of both users "
+"and experts (Network and System administrations)"
msgstr ""
-"Untuk semua proyek IT, konsultan kami siap menganalisa kebutuhan Anda dan "
-"menyediakan solusi pilihan. Hasil pengalaman total MandrakeSoft sebagai "
-"produser Linux menyediakan Teknologi Informasi sesungguhnya untuk organisasi "
-"bisnis Anda"
-#: ../../share/advertising/12-MDKstore.pl_.c:9
-msgid "MandrakeStore"
-msgstr "TokoMandrake"
+#: ../../share/advertising/13-mdkcampus.pl_.c:11
+msgid "Certify yourself on Linux"
+msgstr ""
-#: ../../share/advertising/12-MDKstore.pl_.c:10
+#: ../../share/advertising/13-mdkcampus.pl_.c:12
msgid ""
-"A full range of Linux solutions, as well as special offers on products and "
-"'goodies', are available online at our e-store"
+"Whether you choose to teach yourself online or via our network of training "
+"partners, the Linux-Campus catalogue prepares you for the acknowledged LPI "
+"certification program (worldwide professional technical certification)"
msgstr ""
-"Solusi Linux lengkap, termasuk sajian khusus produk dan 'goodies', tersedia "
-"online di e-store kami"
-#: ../../share/advertising/13-Nvert.pl_.c:9
+#: ../../share/advertising/14-mdkexpert.pl_.c:9
+#, fuzzy
+msgid "Become a MandrakeExpert"
+msgstr "AhliMandrake"
+
+#: ../../share/advertising/14-mdkexpert.pl_.c:10
msgid ""
-"For more information on MandrakeSoft's Professional Services and commercial "
-"offerings, please see the following web page:"
+"Find the solutions to your problems via MandrakeSoft's online support "
+"platform"
+msgstr ""
+
+#: ../../share/advertising/14-mdkexpert.pl_.c:11
+msgid ""
+"Join the MandrakeSoft support teams and the Linux Community online to share "
+"your knowledge and help others by becoming a recognized Expert on the online "
+"technical support website:"
+msgstr ""
+
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:9
+#, fuzzy
+msgid "MandrakeExpert Corporate"
+msgstr "AhliMandrake"
+
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:10
+msgid "An online platform to respond to company's specific support needs"
msgstr ""
-"Untuk info lebih lanjut tentang Servis Profesional MandrakeSoft dan sajian "
-"komersial, lihat halaman web berikut:"
-#: ../../share/advertising/13-Nvert.pl_.c:11
-msgid "http://www.mandrakesoft.com/sales/contact"
-msgstr "http://www.mandrakesoft.com/sales/contact"
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:11
+msgid ""
+"All incidents will be followed up by a single qualified MandrakeSoft "
+"technical expert."
+msgstr ""
-#: ../../standalone.pm_.c:40
+#: ../../standalone.pm_.c:41
msgid "Installing packages..."
msgstr "Instalasi paket..."
-#: ../../standalone/XFdrake_.c:143
+#: ../../standalone/XFdrake_.c:145
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "Silakan log out dan tekan Ctrl-Alt-BackSpace"
-#: ../../standalone/XFdrake_.c:147
+#: ../../standalone/XFdrake_.c:149
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "Silakan masuk lagi ke %s untuk mengaktifkan perubahan"
-#: ../../standalone/diskdrake_.c:81
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I'll try to go on blanking bad partitions"
-msgstr ""
-"Tabel partisi rusak tak terbaca :(\n"
-"Partisi buruk akan dicoba dihapus"
-
#: ../../standalone/drakTermServ_.c:188
msgid "Mandrake Terminal Server Configuration"
msgstr "Konfigurasi Server Terminal Mandrake"
@@ -9760,12 +10141,13 @@ msgstr "Tambah/Hapus User"
msgid "Add/Del Clients"
msgstr "Tambah/Hapus Klien DHCP"
-#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3282
-#: ../../standalone/drakbackup_.c:3315 ../../standalone/drakbackup_.c:3341
-#: ../../standalone/drakbackup_.c:3368 ../../standalone/drakbackup_.c:3395
-#: ../../standalone/drakbackup_.c:3434 ../../standalone/drakbackup_.c:3455
-#: ../../standalone/drakbackup_.c:3482 ../../standalone/drakbackup_.c:3508
-#: ../../standalone/drakbackup_.c:3533 ../../standalone/drakfont_.c:700
+#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3930
+#: ../../standalone/drakbackup_.c:3963 ../../standalone/drakbackup_.c:3989
+#: ../../standalone/drakbackup_.c:4016 ../../standalone/drakbackup_.c:4043
+#: ../../standalone/drakbackup_.c:4082 ../../standalone/drakbackup_.c:4103
+#: ../../standalone/drakbackup_.c:4130 ../../standalone/drakbackup_.c:4160
+#: ../../standalone/drakbackup_.c:4186 ../../standalone/drakbackup_.c:4211
+#: ../../standalone/drakfont_.c:700
msgid "Help"
msgstr "Pertolongan"
@@ -9928,8 +10310,8 @@ msgstr ""
"\n"
"Parameter instalasi otomatis tersedia di bagian sebelah kiri"
-#: ../../standalone/drakautoinst_.c:239 ../../standalone/drakgw_.c:548
-#: ../../standalone/scannerdrake_.c:105
+#: ../../standalone/drakautoinst_.c:239 ../../standalone/drakgw_.c:484
+#: ../../standalone/scannerdrake_.c:119
msgid "Congratulations!"
msgstr "Selamat!"
@@ -9951,20 +10333,24 @@ msgstr "Tambah item"
msgid "Remove the last item"
msgstr "Hapus item terakhir"
-#: ../../standalone/drakbackup_.c:625
+#: ../../standalone/drakbackup_.c:619
msgid "Cron not available yet as non-root"
msgstr ""
-#: ../../standalone/drakbackup_.c:731
+#: ../../standalone/drakbackup_.c:725
msgid "WARNING"
msgstr ""
-#: ../../standalone/drakbackup_.c:732
+#: ../../standalone/drakbackup_.c:726
#, fuzzy
msgid "FATAL"
msgstr "FAT"
-#: ../../standalone/drakbackup_.c:744
+#: ../../standalone/drakbackup_.c:727
+msgid "INFO"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:739
msgid ""
"\n"
" DrakBackup Report \n"
@@ -9974,7 +10360,7 @@ msgstr ""
" Laporan DrakBackup \n"
"\n"
-#: ../../standalone/drakbackup_.c:745
+#: ../../standalone/drakbackup_.c:740
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -9986,7 +10372,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:749
+#: ../../standalone/drakbackup_.c:744
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -9998,12 +10384,19 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:770 ../../standalone/drakbackup_.c:840
-#: ../../standalone/drakbackup_.c:894
+#: ../../standalone/drakbackup_.c:765 ../../standalone/drakbackup_.c:835
+#: ../../standalone/drakbackup_.c:889
msgid "Total progess"
msgstr "Total perkembangan"
-#: ../../standalone/drakbackup_.c:822
+#: ../../standalone/drakbackup_.c:788
+msgid ""
+"Sorry, perl-Expect is not installed/enabled. To use\n"
+"this feature, install perl-Expect and comment lines 772-774,\n"
+" as well as 788,789. Then uncomment line 787."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:817
#, c-format
msgid ""
"%s exists, delete?\n"
@@ -10016,16 +10409,41 @@ msgstr ""
"Awas: Jika Anda telah melakukan proses ini Anda mungkin perlu\n"
" membersihkan entri dari authorized_keys pada server."
-#: ../../standalone/drakbackup_.c:831
+#: ../../standalone/drakbackup_.c:826
msgid "This may take a moment to generate the keys."
msgstr "Perlu waktu untuk membuat kunci"
-#: ../../standalone/drakbackup_.c:838
+#: ../../standalone/drakbackup_.c:833
#, c-format
msgid "ERROR: Cannot spawn %s."
msgstr "ERROR: Tak dapat menghasilkan %s."
-#: ../../standalone/drakbackup_.c:865
+#: ../../standalone/drakbackup_.c:850
+#, c-format
+msgid "No password prompt on %s at port %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:851
+#, fuzzy, c-format
+msgid "Bad password on %s"
+msgstr "Tiada katasandi"
+
+#: ../../standalone/drakbackup_.c:852
+#, c-format
+msgid "Permission denied transferring %s to %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:853
+#, fuzzy, c-format
+msgid "Can't find %s on %s"
+msgstr "Tidak bisa buka %s: %s\n"
+
+#: ../../standalone/drakbackup_.c:856
+#, c-format
+msgid "%s not responding"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:860
#, c-format
msgid ""
"Transfer successful\n"
@@ -10042,61 +10460,66 @@ msgstr ""
"\n"
"tanpa ditanyai katakunci."
-#: ../../standalone/drakbackup_.c:908
+#: ../../standalone/drakbackup_.c:903
msgid "WebDAV remote site already in sync!"
msgstr ""
-#: ../../standalone/drakbackup_.c:912
+#: ../../standalone/drakbackup_.c:907
msgid "WebDAV transfer failed!"
msgstr ""
-#: ../../standalone/drakbackup_.c:934
+#: ../../standalone/drakbackup_.c:928
msgid "No CDR/DVDR in drive!"
msgstr ""
-#: ../../standalone/drakbackup_.c:938
+#: ../../standalone/drakbackup_.c:932
msgid "Does not appear to be recordable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:942
+#: ../../standalone/drakbackup_.c:936
#, fuzzy
msgid "Not erasable media!"
msgstr "Media removable"
-#: ../../standalone/drakbackup_.c:981
+#: ../../standalone/drakbackup_.c:975
msgid "This may take a moment to erase the media."
msgstr "Perlu waktu untuk menghapus media."
-#: ../../standalone/drakbackup_.c:1045
+#: ../../standalone/drakbackup_.c:1060
msgid "Permission problem accessing CD."
msgstr ""
-#: ../../standalone/drakbackup_.c:1144 ../../standalone/drakbackup_.c:1193
+#: ../../standalone/drakbackup_.c:1087
+#, c-format
+msgid "No tape in %s!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1199 ../../standalone/drakbackup_.c:1248
msgid "Backup system files..."
msgstr "Backup file sistem..."
-#: ../../standalone/drakbackup_.c:1194 ../../standalone/drakbackup_.c:1261
+#: ../../standalone/drakbackup_.c:1249 ../../standalone/drakbackup_.c:1316
msgid "Hard Disk Backup files..."
msgstr "File Backup Hard Disk..."
-#: ../../standalone/drakbackup_.c:1206
+#: ../../standalone/drakbackup_.c:1261
msgid "Backup User files..."
msgstr "Backup file User..."
-#: ../../standalone/drakbackup_.c:1207
+#: ../../standalone/drakbackup_.c:1262
msgid "Hard Disk Backup Progress..."
msgstr "Kemajuan Backup Hard Disk..."
-#: ../../standalone/drakbackup_.c:1260
+#: ../../standalone/drakbackup_.c:1315
msgid "Backup Other files..."
msgstr "Backup file lain..."
-#: ../../standalone/drakbackup_.c:1266
+#: ../../standalone/drakbackup_.c:1321
#, fuzzy
msgid "No changes to backup!"
msgstr "Gunakan pita utk backup"
-#: ../../standalone/drakbackup_.c:1282 ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1337 ../../standalone/drakbackup_.c:1360
#, c-format
msgid ""
"\n"
@@ -10107,16 +10530,16 @@ msgstr ""
"Aktivitas drakbackup via %s:\n"
"\n"
-#: ../../standalone/drakbackup_.c:1289
+#: ../../standalone/drakbackup_.c:1344
#, c-format
msgid ""
-"file list sent by FTP : %s\n"
+"file list sent by FTP: %s\n"
" "
msgstr ""
-"daftar file yg dikirim oleh FTP : %s\n"
+"daftar file yg dikirim oleh FTP: %s\n"
" "
-#: ../../standalone/drakbackup_.c:1292
+#: ../../standalone/drakbackup_.c:1347
msgid ""
"\n"
" FTP connection problem: It was not possible to send your backup files by "
@@ -10125,7 +10548,7 @@ msgstr ""
"\n"
" Problem koneksi FTP: Gagal mengirim file backup dengan FTP.\n"
-#: ../../standalone/drakbackup_.c:1310
+#: ../../standalone/drakbackup_.c:1365
msgid ""
"\n"
"Drakbackup activities via CD:\n"
@@ -10135,7 +10558,7 @@ msgstr ""
"Aktivitas drakbackup via CD:\n"
"\n"
-#: ../../standalone/drakbackup_.c:1315
+#: ../../standalone/drakbackup_.c:1370
msgid ""
"\n"
"Drakbackup activities via tape:\n"
@@ -10145,24 +10568,24 @@ msgstr ""
"Aktivitas drakbackup via tape:\n"
"\n"
-#: ../../standalone/drakbackup_.c:1324
+#: ../../standalone/drakbackup_.c:1379
msgid " Error during mail sending. \n"
msgstr " Kesalahan saat pengiriman surat. \n"
-#: ../../standalone/drakbackup_.c:1346
+#: ../../standalone/drakbackup_.c:1404
msgid "Can't create catalog!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1459 ../../standalone/drakbackup_.c:1470
-#: ../../standalone/drakbackup_.c:1481 ../../standalone/drakfont_.c:1004
+#: ../../standalone/drakbackup_.c:1517 ../../standalone/drakbackup_.c:1528
+#: ../../standalone/drakfont_.c:1004
msgid "File Selection"
msgstr "Pilihan File"
-#: ../../standalone/drakbackup_.c:1486
+#: ../../standalone/drakbackup_.c:1556
msgid "Select the files or directories and click on 'Add'"
msgstr "Pilih file atau direktori dan klik 'Tambah'"
-#: ../../standalone/drakbackup_.c:1525
+#: ../../standalone/drakbackup_.c:1600
msgid ""
"\n"
"Please check all options that you need.\n"
@@ -10170,63 +10593,67 @@ msgstr ""
"\n"
"Periksa semua opsi yang Anda inginkan.\n"
-#: ../../standalone/drakbackup_.c:1526
+#: ../../standalone/drakbackup_.c:1601
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
"Opsi ini memungkinkan backup / restorasi semua file di direktori /etc.\n"
-#: ../../standalone/drakbackup_.c:1527
+#: ../../standalone/drakbackup_.c:1602
msgid "Backup your System files. (/etc directory)"
msgstr "Backup file System Anda. (direktori /etc)"
-#: ../../standalone/drakbackup_.c:1528
+#: ../../standalone/drakbackup_.c:1603
msgid "Use incremental backup (do not replace old backups)"
msgstr "Pakai backup incremental (tidak menghapus backup lama)"
-#: ../../standalone/drakbackup_.c:1529
+#: ../../standalone/drakbackup_.c:1604
msgid "Do not include critical files (passwd, group, fstab)"
msgstr "Tidak memasukkan file penting (passwd, group, fstab)"
-#: ../../standalone/drakbackup_.c:1530
+#: ../../standalone/drakbackup_.c:1605
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr "Dengan opsi ini Anda dapat menyimpan ulang semua versi direktori /etc."
-#: ../../standalone/drakbackup_.c:1547
+#: ../../standalone/drakbackup_.c:1622
msgid "Please check all users that you want to include in your backup."
msgstr "Periksa semua user yang ingin Anda masukkan ke backup."
-#: ../../standalone/drakbackup_.c:1574
+#: ../../standalone/drakbackup_.c:1649
msgid "Do not include the browser cache"
msgstr "Jangan masukkan cache browser"
-#: ../../standalone/drakbackup_.c:1575 ../../standalone/drakbackup_.c:1599
+#: ../../standalone/drakbackup_.c:1650 ../../standalone/drakbackup_.c:1674
msgid "Use Incremental Backups (do not replace old backups)"
msgstr "Pakai Backup Incremental (tidak menghapus backup lama)"
-#: ../../standalone/drakbackup_.c:1597 ../../standalone/drakfont_.c:1058
+#: ../../standalone/drakbackup_.c:1672 ../../standalone/drakfont_.c:1058
msgid "Remove Selected"
msgstr "Hapus Pilihan"
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:1710
msgid "Windows (FAT32)"
msgstr "Mindows (FAT32)"
-#: ../../standalone/drakbackup_.c:1674
+#: ../../standalone/drakbackup_.c:1749
msgid "Users"
msgstr "User"
-#: ../../standalone/drakbackup_.c:1700
+#: ../../standalone/drakbackup_.c:1775
msgid "Use network connection to backup"
msgstr "Pakai koneksi jaringan utk backup"
-#: ../../standalone/drakbackup_.c:1706
+#: ../../standalone/drakbackup_.c:1777
+msgid "Net Method:"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1781
msgid "Use Expect for SSH"
msgstr "Pakai Expect utk SSH"
-#: ../../standalone/drakbackup_.c:1707
+#: ../../standalone/drakbackup_.c:1782
msgid ""
"Create/Transfer\n"
"backup keys for SSH"
@@ -10234,7 +10661,7 @@ msgstr ""
"Buat/Transfer\n"
"kunci cadangan SSH"
-#: ../../standalone/drakbackup_.c:1708
+#: ../../standalone/drakbackup_.c:1783
msgid ""
" Transfer \n"
"Now"
@@ -10242,15 +10669,15 @@ msgstr ""
" Transfer \n"
"Sekarang"
-#: ../../standalone/drakbackup_.c:1709
+#: ../../standalone/drakbackup_.c:1784
msgid "Keys in place already"
msgstr "Kunci sudah ada di tempat"
-#: ../../standalone/drakbackup_.c:1713
+#: ../../standalone/drakbackup_.c:1788
msgid "Please enter the host name or IP."
msgstr "Masukkan nama host atau IP."
-#: ../../standalone/drakbackup_.c:1718
+#: ../../standalone/drakbackup_.c:1793
msgid ""
"Please enter the directory (or module) to\n"
" put the backup on this host."
@@ -10258,27 +10685,27 @@ msgstr ""
"Masukkan direktori (atau modul) utk\n"
" meletakkan backup di host ini."
-#: ../../standalone/drakbackup_.c:1723
+#: ../../standalone/drakbackup_.c:1798
msgid "Please enter your login"
msgstr "Masukkan login"
-#: ../../standalone/drakbackup_.c:1728
+#: ../../standalone/drakbackup_.c:1803
msgid "Please enter your password"
msgstr "Masukkan katasandi"
-#: ../../standalone/drakbackup_.c:1734
+#: ../../standalone/drakbackup_.c:1809
msgid "Remember this password"
msgstr "Ingat katasandi ini"
-#: ../../standalone/drakbackup_.c:1745
+#: ../../standalone/drakbackup_.c:1820
msgid "Need hostname, username and password!"
msgstr "Perlu namahost, namauser dan katakunci!"
-#: ../../standalone/drakbackup_.c:1841
+#: ../../standalone/drakbackup_.c:1915
msgid "Use CD/DVDROM to backup"
msgstr "Pakai CD/DVDROM utk backup"
-#: ../../standalone/drakbackup_.c:1844
+#: ../../standalone/drakbackup_.c:1918
msgid ""
"Please choose your CD/DVD device\n"
"(Press Enter to propogate settings to other fields.\n"
@@ -10288,35 +10715,35 @@ msgstr ""
"(Tekan Enter untuk menyalurkan setting ke tempat isian lain.\n"
"Field ini tak diperlukan, hanya alat utk mengisi formulir.)"
-#: ../../standalone/drakbackup_.c:1849
+#: ../../standalone/drakbackup_.c:1923
msgid "Please choose your CD/DVD media size"
msgstr "Pilih ukuran media CD/DVD Anda"
-#: ../../standalone/drakbackup_.c:1855
+#: ../../standalone/drakbackup_.c:1929
msgid "Please check for multisession CD"
msgstr "Mohon cek perihal CD multisession"
-#: ../../standalone/drakbackup_.c:1861
+#: ../../standalone/drakbackup_.c:1935
msgid "Please check if you are using CDRW media"
msgstr "Periksa apakah Anda menggunakan media CDRW"
-#: ../../standalone/drakbackup_.c:1867
+#: ../../standalone/drakbackup_.c:1941
msgid "Please check if you want to erase your RW media (1st Session)"
msgstr "Cek apakah Anda ingin menghapus media RW (session pertama)"
-#: ../../standalone/drakbackup_.c:1868
+#: ../../standalone/drakbackup_.c:1942
msgid " Erase Now "
msgstr " Hapus Sekarang "
-#: ../../standalone/drakbackup_.c:1874
+#: ../../standalone/drakbackup_.c:1948
msgid "Please check if you are using a DVDR device"
msgstr "Periksa apakah Anda menggunakan alat DVDR"
-#: ../../standalone/drakbackup_.c:1880
+#: ../../standalone/drakbackup_.c:1954
msgid "Please check if you are using a DVDRAM device"
msgstr "Periksa apakah Anda menggunakan alat DVDRAM"
-#: ../../standalone/drakbackup_.c:1893
+#: ../../standalone/drakbackup_.c:1967
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
@@ -10324,32 +10751,32 @@ msgstr ""
"Masukkan nama alat Penulis CD Anda\n"
" mis: 0,1,0"
-#: ../../standalone/drakbackup_.c:1926
+#: ../../standalone/drakbackup_.c:2000
msgid "No CD device defined!"
msgstr "Tidak ada alat CD didefinisikan!"
-#: ../../standalone/drakbackup_.c:1974
+#: ../../standalone/drakbackup_.c:2048
msgid "Use tape to backup"
msgstr "Gunakan pita utk backup"
-#: ../../standalone/drakbackup_.c:1977
+#: ../../standalone/drakbackup_.c:2051
msgid "Please enter the device name to use for backup"
msgstr "Masukkan nama alat utk backup"
-#: ../../standalone/drakbackup_.c:1983
+#: ../../standalone/drakbackup_.c:2057
msgid "Please check if you want to use the non-rewinding device."
msgstr "Cek apakah Anda ingin menggunakan alat non-rewinding."
-#: ../../standalone/drakbackup_.c:1989
+#: ../../standalone/drakbackup_.c:2063
msgid "Please check if you want to erase your tape before the backup."
msgstr "Cek apakah Anda ingin menghapus tape sebelum backup."
-#: ../../standalone/drakbackup_.c:1995
+#: ../../standalone/drakbackup_.c:2069
msgid "Please check if you want to eject your tape after the backup."
msgstr "Cek apakah Anda ingin meng-eject tape setelah backup."
-#: ../../standalone/drakbackup_.c:2001 ../../standalone/drakbackup_.c:2074
-#: ../../standalone/drakbackup_.c:3025
+#: ../../standalone/drakbackup_.c:2075 ../../standalone/drakbackup_.c:2149
+#: ../../standalone/drakbackup_.c:3116
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
@@ -10357,67 +10784,67 @@ msgstr ""
"Masukkan ukuran maximum\n"
" yg diizinkan utk Drakbackup"
-#: ../../standalone/drakbackup_.c:2066
+#: ../../standalone/drakbackup_.c:2140
msgid "Please enter the directory to save to:"
msgstr "Masukkan direktori utk penyimpanan:"
-#: ../../standalone/drakbackup_.c:2080 ../../standalone/drakbackup_.c:3031
+#: ../../standalone/drakbackup_.c:2155 ../../standalone/drakbackup_.c:3122
msgid "Use quota for backup files."
msgstr "Pakai quota utk file backup."
-#: ../../standalone/drakbackup_.c:2146
+#: ../../standalone/drakbackup_.c:2221
msgid "Network"
msgstr "Jaringan"
-#: ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:2226
msgid "CDROM / DVDROM"
msgstr "CDROM / DVDROM"
-#: ../../standalone/drakbackup_.c:2156
+#: ../../standalone/drakbackup_.c:2231
msgid "HardDrive / NFS"
msgstr "HardDrive / NFS"
-#: ../../standalone/drakbackup_.c:2161
+#: ../../standalone/drakbackup_.c:2236
msgid "Tape"
msgstr "Tape"
-#: ../../standalone/drakbackup_.c:2175 ../../standalone/drakbackup_.c:2179
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2250 ../../standalone/drakbackup_.c:2254
+#: ../../standalone/drakbackup_.c:2258
msgid "hourly"
msgstr "perjam"
-#: ../../standalone/drakbackup_.c:2176 ../../standalone/drakbackup_.c:2180
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2251 ../../standalone/drakbackup_.c:2255
+#: ../../standalone/drakbackup_.c:2258
msgid "daily"
msgstr "harian"
-#: ../../standalone/drakbackup_.c:2177 ../../standalone/drakbackup_.c:2181
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2252 ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2258
msgid "weekly"
msgstr "mingguan"
-#: ../../standalone/drakbackup_.c:2178 ../../standalone/drakbackup_.c:2182
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2253 ../../standalone/drakbackup_.c:2257
+#: ../../standalone/drakbackup_.c:2258
msgid "monthly"
msgstr "bulanan"
-#: ../../standalone/drakbackup_.c:2196
+#: ../../standalone/drakbackup_.c:2271
msgid "Use daemon"
msgstr "Pakai daemon"
-#: ../../standalone/drakbackup_.c:2201
+#: ../../standalone/drakbackup_.c:2276
msgid ""
"Please choose the time \n"
"interval between each backup"
msgstr "Pilih interval waktu backup"
-#: ../../standalone/drakbackup_.c:2207
+#: ../../standalone/drakbackup_.c:2282
msgid ""
"Please choose the\n"
"media for backup."
msgstr "Pilih media backup."
-#: ../../standalone/drakbackup_.c:2214
+#: ../../standalone/drakbackup_.c:2289
msgid ""
"Please be sure that the cron daemon is included in your services. \n"
"\n"
@@ -10427,71 +10854,71 @@ msgstr ""
"\n"
"Ingat bahwa kini semua media 'net' juga menggunakan harddisk."
-#: ../../standalone/drakbackup_.c:2251
-msgid "Send mail report after each backup to :"
+#: ../../standalone/drakbackup_.c:2326
+msgid "Send mail report after each backup to:"
msgstr "Kirim laporan mail setelah tiap backup ke :"
-#: ../../standalone/drakbackup_.c:2257
+#: ../../standalone/drakbackup_.c:2332
msgid "Delete Hard Drive tar files after backup to other media."
msgstr ""
-#: ../../standalone/drakbackup_.c:2296
+#: ../../standalone/drakbackup_.c:2371
msgid "What"
msgstr "Apa"
-#: ../../standalone/drakbackup_.c:2301
+#: ../../standalone/drakbackup_.c:2376
msgid "Where"
msgstr "Mana"
-#: ../../standalone/drakbackup_.c:2306
+#: ../../standalone/drakbackup_.c:2381
msgid "When"
msgstr "Kapan"
-#: ../../standalone/drakbackup_.c:2311
+#: ../../standalone/drakbackup_.c:2386
msgid "More Options"
msgstr "Opsi Tambahan"
-#: ../../standalone/drakbackup_.c:2330 ../../standalone/drakbackup_.c:3873
+#: ../../standalone/drakbackup_.c:2405 ../../standalone/drakbackup_.c:4530
msgid "Drakbackup Configuration"
msgstr "Konfigurasi Drakbackup"
-#: ../../standalone/drakbackup_.c:2348
+#: ../../standalone/drakbackup_.c:2423
msgid "Please choose where you want to backup"
msgstr "Pilih tempat backup"
-#: ../../standalone/drakbackup_.c:2350
+#: ../../standalone/drakbackup_.c:2425
msgid "on Hard Drive"
msgstr "di Hard Drive"
-#: ../../standalone/drakbackup_.c:2360
+#: ../../standalone/drakbackup_.c:2435
msgid "across Network"
msgstr "lewat Network"
-#: ../../standalone/drakbackup_.c:2370
+#: ../../standalone/drakbackup_.c:2445
msgid "on CDROM"
msgstr "di CDROM"
-#: ../../standalone/drakbackup_.c:2378
+#: ../../standalone/drakbackup_.c:2453
msgid "on Tape Device"
msgstr "di Device Pita"
-#: ../../standalone/drakbackup_.c:2421
+#: ../../standalone/drakbackup_.c:2496
msgid "Please choose what you want to backup"
msgstr "Pilih apa yang akan di-backup"
-#: ../../standalone/drakbackup_.c:2422
+#: ../../standalone/drakbackup_.c:2497
msgid "Backup system"
msgstr "Backup sistem"
-#: ../../standalone/drakbackup_.c:2423
+#: ../../standalone/drakbackup_.c:2498
msgid "Backup Users"
msgstr "Backup User"
-#: ../../standalone/drakbackup_.c:2426
+#: ../../standalone/drakbackup_.c:2501
msgid "Select user manually"
msgstr "Pilih user secara manual"
-#: ../../standalone/drakbackup_.c:2508
+#: ../../standalone/drakbackup_.c:2584
msgid ""
"\n"
"Backup Sources: \n"
@@ -10499,7 +10926,7 @@ msgstr ""
"\n"
"Sumber Backup: \n"
-#: ../../standalone/drakbackup_.c:2509
+#: ../../standalone/drakbackup_.c:2585
msgid ""
"\n"
"- System Files:\n"
@@ -10507,7 +10934,7 @@ msgstr ""
"\n"
"- File Sistem:\n"
-#: ../../standalone/drakbackup_.c:2511
+#: ../../standalone/drakbackup_.c:2587
msgid ""
"\n"
"- User Files:\n"
@@ -10515,7 +10942,7 @@ msgstr ""
"\n"
"- File User:\n"
-#: ../../standalone/drakbackup_.c:2513
+#: ../../standalone/drakbackup_.c:2589
msgid ""
"\n"
"- Other Files:\n"
@@ -10523,22 +10950,22 @@ msgstr ""
"\n"
"- File Lain:\n"
-#: ../../standalone/drakbackup_.c:2515
+#: ../../standalone/drakbackup_.c:2591
#, c-format
msgid ""
"\n"
-"- Save on Hard drive on path : %s\n"
+"- Save on Hard drive on path: %s\n"
msgstr ""
"\n"
-"- Simpan di Hard drive di path : %s\n"
+"- Simpan di Hard drive di path: %s\n"
-#: ../../standalone/drakbackup_.c:2518
+#: ../../standalone/drakbackup_.c:2594
msgid ""
"\n"
"- Delete hard drive tar files after backup.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2524
+#: ../../standalone/drakbackup_.c:2600
msgid ""
"\n"
"- Burn to CD"
@@ -10546,43 +10973,43 @@ msgstr ""
"\n"
"- Bakar ke CD"
-#: ../../standalone/drakbackup_.c:2525
+#: ../../standalone/drakbackup_.c:2601
msgid "RW"
msgstr "RW"
-#: ../../standalone/drakbackup_.c:2526
+#: ../../standalone/drakbackup_.c:2602
#, c-format
-msgid " on device : %s"
-msgstr " di device : %s"
+msgid " on device: %s"
+msgstr " di device: %s"
-#: ../../standalone/drakbackup_.c:2527
+#: ../../standalone/drakbackup_.c:2603
msgid " (multi-session)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2528
+#: ../../standalone/drakbackup_.c:2604
#, c-format
msgid ""
"\n"
-"- Save to Tape on device : %s"
+"- Save to Tape on device: %s"
msgstr ""
"\n"
-"- Simpan ke tape di alat : %s"
+"- Simpan ke tape di alat: %s"
-#: ../../standalone/drakbackup_.c:2529
+#: ../../standalone/drakbackup_.c:2605
#, c-format
msgid "\t\tErase=%s"
msgstr "\t\tHapus=%s"
-#: ../../standalone/drakbackup_.c:2532
+#: ../../standalone/drakbackup_.c:2608
#, c-format
msgid ""
"\n"
-"- Save via %s on host : %s\n"
+"- Save via %s on host: %s\n"
msgstr ""
"\n"
-"- Simpan via %s di host : %s\n"
+"- Simpan via %s di host: %s\n"
-#: ../../standalone/drakbackup_.c:2533
+#: ../../standalone/drakbackup_.c:2609
#, c-format
msgid ""
"\t\t user name: %s\n"
@@ -10591,7 +11018,7 @@ msgstr ""
"\t\t name user: %s\n"
"\t\t di path: %s \n"
-#: ../../standalone/drakbackup_.c:2534
+#: ../../standalone/drakbackup_.c:2610
msgid ""
"\n"
"- Options:\n"
@@ -10599,60 +11026,60 @@ msgstr ""
"\n"
"- Opsi:\n"
-#: ../../standalone/drakbackup_.c:2535
+#: ../../standalone/drakbackup_.c:2611
msgid "\tDo not include System Files\n"
msgstr "\tJangan masukkan File Sistem\n"
-#: ../../standalone/drakbackup_.c:2538
+#: ../../standalone/drakbackup_.c:2614
msgid "\tBackups use tar and bzip2\n"
msgstr "\tBackup dengan tar dan bzip2\n"
-#: ../../standalone/drakbackup_.c:2540
+#: ../../standalone/drakbackup_.c:2616
msgid "\tBackups use tar and gzip\n"
msgstr "\tBackup dengan tar dan gzip\n"
-#: ../../standalone/drakbackup_.c:2543
+#: ../../standalone/drakbackup_.c:2619
#, c-format
msgid ""
"\n"
-"- Daemon (%s) include :\n"
+"- Daemon (%s) include:\n"
msgstr ""
"\n"
"- Cakupan daemon (%s) :\n"
-#: ../../standalone/drakbackup_.c:2544
+#: ../../standalone/drakbackup_.c:2620
msgid "\t-Hard drive.\n"
msgstr "\t-Hard drive.\n"
-#: ../../standalone/drakbackup_.c:2545
+#: ../../standalone/drakbackup_.c:2621
msgid "\t-CDROM.\n"
msgstr "\t-CDROM.\n"
-#: ../../standalone/drakbackup_.c:2546
+#: ../../standalone/drakbackup_.c:2622
msgid "\t-Tape \n"
msgstr "\t-Tape \n"
-#: ../../standalone/drakbackup_.c:2547
+#: ../../standalone/drakbackup_.c:2623
msgid "\t-Network by FTP.\n"
msgstr "\t-Network dg FTP.\n"
-#: ../../standalone/drakbackup_.c:2548
+#: ../../standalone/drakbackup_.c:2624
msgid "\t-Network by SSH.\n"
msgstr "\t-Network dg SSH.\n"
-#: ../../standalone/drakbackup_.c:2549
+#: ../../standalone/drakbackup_.c:2625
msgid "\t-Network by rsync.\n"
msgstr "\t-Network dg rsync.\n"
-#: ../../standalone/drakbackup_.c:2550
+#: ../../standalone/drakbackup_.c:2626
msgid "\t-Network by webdav.\n"
msgstr "\t-Network dg webdav.\n"
-#: ../../standalone/drakbackup_.c:2552
+#: ../../standalone/drakbackup_.c:2628
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr "Tiada konfigurasi, mohon klik Dukun atau Lanjutan.\n"
-#: ../../standalone/drakbackup_.c:2558
+#: ../../standalone/drakbackup_.c:2634
msgid ""
"List of data to restore:\n"
"\n"
@@ -10660,7 +11087,7 @@ msgstr ""
"Daftar data restorasi:\n"
"\n"
-#: ../../standalone/drakbackup_.c:2725
+#: ../../standalone/drakbackup_.c:2801
msgid ""
"List of data corrupted:\n"
"\n"
@@ -10668,146 +11095,265 @@ msgstr ""
"Daftar data rusak:\n"
"\n"
-#: ../../standalone/drakbackup_.c:2727
+#: ../../standalone/drakbackup_.c:2803
msgid "Please uncheck or remove it on next time."
msgstr "Mohon uncheck atau hapus nanti."
-#: ../../standalone/drakbackup_.c:2737
+#: ../../standalone/drakbackup_.c:2813
msgid "Backup files are corrupted"
msgstr "File backup rusak"
-#: ../../standalone/drakbackup_.c:2758
+#: ../../standalone/drakbackup_.c:2834
msgid " All of your selected data have been "
msgstr " Semua data terpilih telah "
-#: ../../standalone/drakbackup_.c:2759
+#: ../../standalone/drakbackup_.c:2835
#, c-format
msgid " Successfuly Restored on %s "
msgstr " Berhasil Direstorasi di %s "
-#: ../../standalone/drakbackup_.c:2877
+#: ../../standalone/drakbackup_.c:2953
msgid " Restore Configuration "
msgstr " Restorasi Konfigurasi "
-#: ../../standalone/drakbackup_.c:2895
+#: ../../standalone/drakbackup_.c:2971
msgid "OK to restore the other files."
msgstr "OK utk restorasi file lain."
-#: ../../standalone/drakbackup_.c:2912
+#: ../../standalone/drakbackup_.c:2988
msgid "User list to restore (only the most recent date per user is important)"
msgstr "Daftar user restorasi (hanya tanggal terakhir per user yg penting)"
-#: ../../standalone/drakbackup_.c:2975
+#: ../../standalone/drakbackup_.c:3066
msgid "Backup the system files before:"
msgstr "Backup file sistem sebelum:"
-#: ../../standalone/drakbackup_.c:2977
+#: ../../standalone/drakbackup_.c:3068
msgid "please choose the date to restore"
msgstr "pilih tanggal restorasi"
-#: ../../standalone/drakbackup_.c:3014
+#: ../../standalone/drakbackup_.c:3105
msgid "Use Hard Disk to backup"
msgstr "Pakai Hard Disk utk backup"
-#: ../../standalone/drakbackup_.c:3017
+#: ../../standalone/drakbackup_.c:3108
msgid "Please enter the directory to save:"
msgstr "Masukkan direktori utk penyimpanan:"
-#: ../../standalone/drakbackup_.c:3060
+#: ../../standalone/drakbackup_.c:3151
msgid "FTP Connection"
msgstr "Koneksi FTP"
-#: ../../standalone/drakbackup_.c:3067
+#: ../../standalone/drakbackup_.c:3158
msgid "Secure Connection"
msgstr "Koneksi Aman"
-#: ../../standalone/drakbackup_.c:3093
+#: ../../standalone/drakbackup_.c:3184
msgid "Restore from Hard Disk."
msgstr "Restorasi dari Hard Disk."
-#: ../../standalone/drakbackup_.c:3095
+#: ../../standalone/drakbackup_.c:3186
msgid "Please enter the directory where backups are stored"
msgstr "Masukkan direktori tempat backup disimpan"
-#: ../../standalone/drakbackup_.c:3157
+#: ../../standalone/drakbackup_.c:3254
msgid "Select another media to restore from"
msgstr "Pilih media lain utk direstorasi"
-#: ../../standalone/drakbackup_.c:3159
+#: ../../standalone/drakbackup_.c:3256
msgid "Other Media"
msgstr "Media Lain"
-#: ../../standalone/drakbackup_.c:3164
+#: ../../standalone/drakbackup_.c:3261
msgid "Restore system"
msgstr "Restorasi sistem"
-#: ../../standalone/drakbackup_.c:3165
+#: ../../standalone/drakbackup_.c:3262
msgid "Restore Users"
msgstr "Restorasi User"
-#: ../../standalone/drakbackup_.c:3166
+#: ../../standalone/drakbackup_.c:3263
msgid "Restore Other"
msgstr "Restorasi Lain-lain"
-#: ../../standalone/drakbackup_.c:3168
+#: ../../standalone/drakbackup_.c:3265
msgid "select path to restore (instead of /)"
msgstr "pilih path utk restorasi (selain /)"
-#: ../../standalone/drakbackup_.c:3172
+#: ../../standalone/drakbackup_.c:3269
msgid "Do new backup before restore (only for incremental backups.)"
msgstr "Lakukan backup baru sebelum restorasi (hanya utk backup incremental.)"
-#: ../../standalone/drakbackup_.c:3174
+#: ../../standalone/drakbackup_.c:3271
msgid "Remove user directories before restore."
msgstr "Hapus direktori user sebelum restorasi."
-#: ../../standalone/drakbackup_.c:3232
+#: ../../standalone/drakbackup_.c:3384
+msgid ""
+"Restore Selected\n"
+"Catalog Entry"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3394
+#, fuzzy
+msgid ""
+"Restore Selected\n"
+"Files"
+msgstr "Hapus Pilihan"
+
+#: ../../standalone/drakbackup_.c:3411
+#, fuzzy
+msgid ""
+"Change\n"
+"Restore Path"
+msgstr "Restorasi Lain-lain"
+
+#: ../../standalone/drakbackup_.c:3477
+#, fuzzy, c-format
+msgid "Backup files not found at %s."
+msgstr "Backup %s ke %s.old"
+
+#: ../../standalone/drakbackup_.c:3490
+#, c-format
+msgid ""
+"Insert the CD with volume label %s\n"
+" in the CD drive under mount point /mnt/cdrom"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3490
+#, fuzzy
+msgid "Restore From CD"
+msgstr "Restorasi dari Hard Disk."
+
+#: ../../standalone/drakbackup_.c:3492
+#, c-format
+msgid "Not the correct CD label. Disk is labelled %s."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3502
+#, c-format
+msgid ""
+"Insert the tape with volume label %s\n"
+" in the tape drive device %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3502
+#, fuzzy
+msgid "Restore From Tape"
+msgstr "Kembalikan tabel partisi"
+
+#: ../../standalone/drakbackup_.c:3504
+#, c-format
+msgid "Not the correct tape label. Tape is labelled %s."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3524
+#, fuzzy
+msgid "Restore Via Network"
+msgstr "Restorasi User"
+
+#: ../../standalone/drakbackup_.c:3524
+#, c-format
+msgid "Restore Via Network Protocol: %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3525
+#, fuzzy
+msgid "Host Name"
+msgstr "Nama Host"
+
+#: ../../standalone/drakbackup_.c:3526
+msgid "Host Path or Module"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3533
+#, fuzzy
+msgid "Password required"
+msgstr "Katasandi"
+
+#: ../../standalone/drakbackup_.c:3539
+#, fuzzy
+msgid "Username required"
+msgstr "Nama user"
+
+#: ../../standalone/drakbackup_.c:3542
+#, fuzzy
+msgid "Hostname required"
+msgstr "Nama Host: "
+
+#: ../../standalone/drakbackup_.c:3547
+msgid "Path or Module required"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3560
+msgid "Files Restored..."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3563
+#, fuzzy
+msgid "Restore Failed..."
+msgstr "Restorasi Lain-lain"
+
+#: ../../standalone/drakbackup_.c:3801
msgid "Restore all backups"
msgstr "Restorasi semua backup"
-#: ../../standalone/drakbackup_.c:3241
+#: ../../standalone/drakbackup_.c:3810
msgid "Custom Restore"
msgstr "Restorasi pilihan sendiri"
-#: ../../standalone/drakbackup_.c:3287 ../../standalone/drakbackup_.c:3320
-#: ../../standalone/drakbackup_.c:3346 ../../standalone/drakbackup_.c:3373
-#: ../../standalone/drakbackup_.c:3400 ../../standalone/drakbackup_.c:3460
-#: ../../standalone/drakbackup_.c:3487 ../../standalone/drakbackup_.c:3513
+#: ../../standalone/drakbackup_.c:3856
+#, fuzzy
+msgid "CD in place - continue."
+msgstr "Tekan Lanjutkan utk melanjutkan"
+
+#: ../../standalone/drakbackup_.c:3862
+msgid "Browse to new restore repository."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3865
+#, fuzzy
+msgid "Restore From Catalog"
+msgstr "Kembalikan tabel partisi"
+
+#: ../../standalone/drakbackup_.c:3893
+#, fuzzy
+msgid "Restore Progress"
+msgstr "Restorasi User"
+
+#: ../../standalone/drakbackup_.c:3935 ../../standalone/drakbackup_.c:3968
+#: ../../standalone/drakbackup_.c:3994 ../../standalone/drakbackup_.c:4021
+#: ../../standalone/drakbackup_.c:4048 ../../standalone/drakbackup_.c:4108
+#: ../../standalone/drakbackup_.c:4135 ../../standalone/drakbackup_.c:4165
+#: ../../standalone/drakbackup_.c:4191
msgid "Previous"
msgstr "Sebelumnya"
-#: ../../standalone/drakbackup_.c:3291 ../../standalone/drakbackup_.c:3377
+#: ../../standalone/drakbackup_.c:3939 ../../standalone/drakbackup_.c:4025
#: ../../standalone/logdrake_.c:223
msgid "Save"
msgstr "Simpan"
-#: ../../standalone/drakbackup_.c:3350
+#: ../../standalone/drakbackup_.c:3998
msgid "Build Backup"
msgstr "Bangun Backup"
-#: ../../standalone/drakbackup_.c:3404 ../../standalone/drakbackup_.c:3974
+#: ../../standalone/drakbackup_.c:4052 ../../standalone/drakbackup_.c:4632
msgid "Restore"
msgstr "Restorasi"
-#: ../../standalone/drakbackup_.c:3553
-msgid ""
-"Please Build backup before to restore it...\n"
-" or verify that your path to save is correct."
-msgstr ""
-"Buatlah backup sebelum menyimpan ulang...\n"
-" atau pastikan path utk menyimpan sudah benar."
-
-#: ../../standalone/drakbackup_.c:3574
+#: ../../standalone/drakbackup_.c:4231
+#, fuzzy
msgid ""
-"Error during sendmail\n"
-" your report mail was not sent\n"
+"Error during sendmail.\n"
+" Your report mail was not sent.\n"
" Please configure sendmail"
msgstr ""
"Error saat sendmail\n"
" surat laporan Anda tak terkirim\n"
" Mohon konfigurasikan sendmail"
-#: ../../standalone/drakbackup_.c:3598
+#: ../../standalone/drakbackup_.c:4255
msgid ""
"The following packages need to be installed:\n"
" @list_of_rpm_to_install"
@@ -10815,7 +11361,7 @@ msgstr ""
"Paket berikut perlu diinstal:\n"
" @list_of_rpm_to_install"
-#: ../../standalone/drakbackup_.c:3621
+#: ../../standalone/drakbackup_.c:4278
msgid ""
"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
@@ -10823,19 +11369,19 @@ msgstr ""
"Error saat pengiriman file via FTP.\n"
" Betulkan konfigurasi FTP Anda."
-#: ../../standalone/drakbackup_.c:3644
+#: ../../standalone/drakbackup_.c:4301
msgid "Please select data to restore..."
msgstr "Pilih data utk direstorasi..."
-#: ../../standalone/drakbackup_.c:3665
+#: ../../standalone/drakbackup_.c:4322
msgid "Please select media for backup..."
msgstr "Pilih media backup..."
-#: ../../standalone/drakbackup_.c:3687
+#: ../../standalone/drakbackup_.c:4344
msgid "Please select data to backup..."
msgstr "Pilih data backup..."
-#: ../../standalone/drakbackup_.c:3709
+#: ../../standalone/drakbackup_.c:4366
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
@@ -10843,59 +11389,59 @@ msgstr ""
"Tiada file konfigurasi \n"
"Mohon klik Dukun atau Lanjutan"
-#: ../../standalone/drakbackup_.c:3730
+#: ../../standalone/drakbackup_.c:4387
msgid "Under Devel ... please wait."
msgstr "Sedang dibangun ... tunggu."
-#: ../../standalone/drakbackup_.c:3811
+#: ../../standalone/drakbackup_.c:4468
msgid "Backup system files"
msgstr "Backup file sistem"
-#: ../../standalone/drakbackup_.c:3813
+#: ../../standalone/drakbackup_.c:4470
msgid "Backup user files"
msgstr "Backup file user"
-#: ../../standalone/drakbackup_.c:3815
+#: ../../standalone/drakbackup_.c:4472
msgid "Backup other files"
msgstr "Backup file lain"
-#: ../../standalone/drakbackup_.c:3817 ../../standalone/drakbackup_.c:3850
+#: ../../standalone/drakbackup_.c:4474 ../../standalone/drakbackup_.c:4507
msgid "Total Progress"
msgstr "Total Kemajuan"
-#: ../../standalone/drakbackup_.c:3841
+#: ../../standalone/drakbackup_.c:4498
msgid "files sending by FTP"
msgstr "file dikirim dg FTP"
-#: ../../standalone/drakbackup_.c:3845
+#: ../../standalone/drakbackup_.c:4502
msgid "Sending files..."
msgstr "Kirim file..."
-#: ../../standalone/drakbackup_.c:3931
+#: ../../standalone/drakbackup_.c:4588
msgid "Backup Now from configuration file"
msgstr "Backup Sekarang dari file konfigurasi"
-#: ../../standalone/drakbackup_.c:3936
+#: ../../standalone/drakbackup_.c:4593
msgid "View Backup Configuration."
msgstr "Lihat Konfigurasi Backup."
-#: ../../standalone/drakbackup_.c:3956
+#: ../../standalone/drakbackup_.c:4614
msgid "Wizard Configuration"
msgstr "Konfigurasi Dukun"
-#: ../../standalone/drakbackup_.c:3961
+#: ../../standalone/drakbackup_.c:4619
msgid "Advanced Configuration"
msgstr "Konfigurasi Lanjutan"
-#: ../../standalone/drakbackup_.c:3966
+#: ../../standalone/drakbackup_.c:4624
msgid "Backup Now"
msgstr "Backup Sekarang"
-#: ../../standalone/drakbackup_.c:3996
+#: ../../standalone/drakbackup_.c:4658
msgid "Drakbackup"
msgstr "Drakbackup"
-#: ../../standalone/drakbackup_.c:4045
+#: ../../standalone/drakbackup_.c:4707
msgid ""
"options description:\n"
"\n"
@@ -10955,7 +11501,7 @@ msgstr ""
" \n"
"\n"
-#: ../../standalone/drakbackup_.c:4075
+#: ../../standalone/drakbackup_.c:4737
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -10969,7 +11515,7 @@ msgstr ""
" myhostname atau mydomain di /etc/postfix/main.cf harus diset\n"
"\n"
-#: ../../standalone/drakbackup_.c:4083
+#: ../../standalone/drakbackup_.c:4745
msgid ""
"options description:\n"
"\n"
@@ -11044,28 +11590,29 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:4122
+#: ../../standalone/drakbackup_.c:4784
+#, fuzzy
msgid ""
"restore description:\n"
" \n"
-"Only the most recent date will be used ,because with incremental \n"
-"backups it is necesarry to restore one by one each older backups.\n"
+"Only the most recent date will be used, because with incremental \n"
+"backups it is necessary to restore one by one each older backup.\n"
"\n"
-"So if you don't like to restore a user please unselect all his\n"
-"check box.\n"
+"So if you don't want to restore a user please unselect all their\n"
+"check boxes.\n"
"\n"
-"Otherwise, you are able to select only one of this\n"
+"Otherwise, you are able to select only one of these.\n"
"\n"
" - Incremental Backups:\n"
"\n"
"\tThe incremental backup is the most powerful \n"
-"\toption to use backup, this option allow you \n"
-"\tto backup all your data the first time, and \n"
-"\tonly the changed after.\n"
-"\tSo you will be able during the restore\n"
+"\toption to use. This option allows you to \n"
+"\tbackup all of your data the first time, and \n"
+"\tonly the changed data after.\n"
+"\tSo you will be able, during the restore\n"
"\tstep, to restore your data from a specified\n"
"\tdate.\n"
-"\tIf you have not selected this options all\n"
+"\tIf you have not selected this option all\n"
"\told backups are deleted before each backup. \n"
"\n"
"\n"
@@ -11094,19 +11641,19 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:4148 ../../standalone/drakbackup_.c:4225
+#: ../../standalone/drakbackup_.c:4810 ../../standalone/drakbackup_.c:4887
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
" Haksalin (C) 2001 MandrakeSoft oleh DUPONT Sebastien <dupont_s\\@epita.fr>"
-#: ../../standalone/drakbackup_.c:4150 ../../standalone/drakbackup_.c:4227
+#: ../../standalone/drakbackup_.c:4812 ../../standalone/drakbackup_.c:4889
msgid ""
" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
" update 2002 MandrakeSoft oleh Stew Benedict <sbenedict\\@mandrakesoft.com>"
-#: ../../standalone/drakbackup_.c:4152 ../../standalone/drakbackup_.c:4229
+#: ../../standalone/drakbackup_.c:4814 ../../standalone/drakbackup_.c:4891
msgid ""
" This program is free software; you can redistribute it and/or modify\n"
" it under the terms of the GNU General Public License as published by\n"
@@ -11134,7 +11681,7 @@ msgstr ""
" ini; jika tidak, tulis ke the Free Software\n"
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
-#: ../../standalone/drakbackup_.c:4166
+#: ../../standalone/drakbackup_.c:4828
msgid ""
"Description:\n"
"\n"
@@ -11210,7 +11757,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:4204
+#: ../../standalone/drakbackup_.c:4866
msgid ""
"options description:\n"
"\n"
@@ -11227,7 +11774,7 @@ msgstr ""
"membangun backup di harddrive Anda sebelum mengirimnya ke server.\n"
"\n"
-#: ../../standalone/drakbackup_.c:4213
+#: ../../standalone/drakbackup_.c:4875
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -11248,7 +11795,7 @@ msgstr ""
"akan kehilangan semua data. Hati-hati dan jangan mengubah\n"
"file data backup secara manual.\n"
-#: ../../standalone/drakbackup_.c:4243
+#: ../../standalone/drakbackup_.c:4905
msgid ""
"Description:\n"
"\n"
@@ -11372,9 +11919,9 @@ msgstr "Dukun Kali Pertama"
msgid "Synchronization tool"
msgstr "Sinkronisator"
-#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:85
-#: ../../standalone/drakbug_.c:150 ../../standalone/drakbug_.c:152
-#: ../../standalone/drakbug_.c:156
+#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:86
+#: ../../standalone/drakbug_.c:151 ../../standalone/drakbug_.c:153
+#: ../../standalone/drakbug_.c:157
msgid "Standalone Tools"
msgstr "Alat Mandiri"
@@ -11418,23 +11965,23 @@ msgstr "Userdrake"
msgid "Configuration Wizards"
msgstr "Dukun Konfigurasi"
-#: ../../standalone/drakbug_.c:96
+#: ../../standalone/drakbug_.c:97
msgid "Application:"
msgstr "Aplikasi:"
-#: ../../standalone/drakbug_.c:97
+#: ../../standalone/drakbug_.c:98
msgid "Package: "
msgstr "Paket: "
-#: ../../standalone/drakbug_.c:98
+#: ../../standalone/drakbug_.c:99
msgid "Kernel:"
msgstr "Kernel:"
-#: ../../standalone/drakbug_.c:99
+#: ../../standalone/drakbug_.c:100
msgid "Release: "
msgstr "Release: "
-#: ../../standalone/drakbug_.c:114
+#: ../../standalone/drakbug_.c:115
msgid ""
"\n"
"\n"
@@ -11453,19 +12000,19 @@ msgstr ""
"ditransfer ke server tsb\n"
"\n"
-#: ../../standalone/drakbug_.c:135
+#: ../../standalone/drakbug_.c:136
msgid "Report"
msgstr "Laporan"
-#: ../../standalone/drakbug_.c:165
+#: ../../standalone/drakbug_.c:166
msgid "Not installed"
msgstr "Tak terinstal"
-#: ../../standalone/drakbug_.c:182
+#: ../../standalone/drakbug_.c:183
msgid "connecting to Bugzilla wizard ..."
msgstr "koneksi ke dukun Bugzilla ..."
-#: ../../standalone/drakbug_.c:189
+#: ../../standalone/drakbug_.c:190
msgid "No browser available! Please install one"
msgstr "Browser tak tersedia! Installah satu"
@@ -11910,7 +12457,7 @@ msgid "Font List"
msgstr "Daftaf Font"
#: ../../standalone/drakfont_.c:909
-msgid "Choose the applications that will support the fonts :"
+msgid "Choose the applications that will support the fonts:"
msgstr "Pilih aplikasi yang mensupport font :"
#: ../../standalone/drakfont_.c:918
@@ -11981,19 +12528,19 @@ msgstr "Hapus font di sistem Anda"
msgid "Post Uninstall"
msgstr "Un-Instalasi Akhir"
-#: ../../standalone/drakgw_.c:42 ../../standalone/drakgw_.c:195
+#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:188
msgid "Internet Connection Sharing"
msgstr "Pemakaian Bersama Koneksi Internet"
-#: ../../standalone/drakgw_.c:121
+#: ../../standalone/drakgw_.c:119
msgid "Sorry, we support only 2.4 kernels."
msgstr "Maaf, support hanya untuk kernel 2.4"
-#: ../../standalone/drakgw_.c:133
+#: ../../standalone/drakgw_.c:130
msgid "Internet Connection Sharing currently enabled"
msgstr "Pemakaian Bersama Koneksi Internet telah aktif"
-#: ../../standalone/drakgw_.c:134
+#: ../../standalone/drakgw_.c:131
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -12005,31 +12552,31 @@ msgstr ""
"\n"
"Apa yang ingin Anda lakukan?"
-#: ../../standalone/drakgw_.c:138
+#: ../../standalone/drakgw_.c:135
msgid "disable"
msgstr "matikan"
-#: ../../standalone/drakgw_.c:138 ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:135 ../../standalone/drakgw_.c:160
msgid "dismiss"
msgstr "tutup"
-#: ../../standalone/drakgw_.c:138 ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:135 ../../standalone/drakgw_.c:160
msgid "reconfigure"
msgstr "konfigurasi ulang"
-#: ../../standalone/drakgw_.c:141
+#: ../../standalone/drakgw_.c:138
msgid "Disabling servers..."
msgstr "Server-server sedang dimatikan"
-#: ../../standalone/drakgw_.c:149
+#: ../../standalone/drakgw_.c:146
msgid "Internet connection sharing is now disabled."
msgstr "Internet Connection Sharing telah dimatikan"
-#: ../../standalone/drakgw_.c:158
+#: ../../standalone/drakgw_.c:155
msgid "Internet Connection Sharing currently disabled"
msgstr "Internet Connection Sharing masih dimatikan"
-#: ../../standalone/drakgw_.c:159
+#: ../../standalone/drakgw_.c:156
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
@@ -12041,19 +12588,19 @@ msgstr ""
"\n"
"Apa yang ingin Anda lakukan?"
-#: ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:160
msgid "enable"
msgstr "aktifkan"
-#: ../../standalone/drakgw_.c:170
+#: ../../standalone/drakgw_.c:167
msgid "Enabling servers..."
msgstr "Server-server akan dinyalakan"
-#: ../../standalone/drakgw_.c:175
+#: ../../standalone/drakgw_.c:172
msgid "Internet connection sharing is now enabled."
msgstr "Internet Connection Sharing sudah aktif"
-#: ../../standalone/drakgw_.c:196
+#: ../../standalone/drakgw_.c:189
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
"With that feature, other computers on your local network will be able to use "
@@ -12069,32 +12616,32 @@ msgstr ""
"Perhatikan: Anda mesti punya adapter jaringan untuk mensetup Local Area "
"Network (LAN)."
-#: ../../standalone/drakgw_.c:222
+#: ../../standalone/drakgw_.c:215
#, c-format
msgid "Interface %s (using module %s)"
msgstr "Interface %s (pakai module %s)"
-#: ../../standalone/drakgw_.c:223
+#: ../../standalone/drakgw_.c:216
#, c-format
msgid "Interface %s"
msgstr "Antarmuka %s"
-#: ../../standalone/drakgw_.c:231
+#: ../../standalone/drakgw_.c:224
msgid "No network adapter on your system!"
msgstr "Tidak ada adaptor jaringan di sistem ini!"
-#: ../../standalone/drakgw_.c:232
+#: ../../standalone/drakgw_.c:225
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
msgstr ""
"Tiada adapter jaringan ethernet terdeteksi. Jalankan konfigurator hardware."
-#: ../../standalone/drakgw_.c:238
+#: ../../standalone/drakgw_.c:231
msgid "Network interface"
msgstr "Antarmuka jaringan"
-#: ../../standalone/drakgw_.c:239
+#: ../../standalone/drakgw_.c:232
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -12109,7 +12656,7 @@ msgstr ""
"\n"
"Apakah Anda mau melakukan setup Local Area Network untuk adapter itu?"
-#: ../../standalone/drakgw_.c:248
+#: ../../standalone/drakgw_.c:241
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
@@ -12117,11 +12664,11 @@ msgstr ""
"Silakan pilih adapter jaringan yang hendak disambung ke Local Area Network "
"Anda."
-#: ../../standalone/drakgw_.c:266
+#: ../../standalone/drakgw_.c:259
msgid "Network interface already configured"
msgstr "Antarmuka network telah dikonfigurasi"
-#: ../../standalone/drakgw_.c:267
+#: ../../standalone/drakgw_.c:260
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -12136,15 +12683,15 @@ msgstr ""
"\n"
"Anda dapat melakukannya secara manual tapi Anda perlu tahu yg Anda kerjakan."
-#: ../../standalone/drakgw_.c:272
+#: ../../standalone/drakgw_.c:265
msgid "Automatic reconfiguration"
msgstr "Konfigurasi ulang otomatis"
-#: ../../standalone/drakgw_.c:273
+#: ../../standalone/drakgw_.c:266
msgid "Show current interface configuration"
msgstr "Tampilkan konfigurasi antarmuka"
-#: ../../standalone/drakgw_.c:275
+#: ../../standalone/drakgw_.c:268
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -12161,7 +12708,7 @@ msgstr ""
"Atribut IP: %s\n"
"Driver: %s"
-#: ../../standalone/drakgw_.c:287
+#: ../../standalone/drakgw_.c:280
msgid ""
"I can keep your current configuration and assume you already set up a DHCP "
"server; in that case please verify I correctly read the C-Class Network that "
@@ -12180,53 +12727,41 @@ msgstr ""
"Atau, antarmuka dan server DHCP dapat dikonfigurasikan (lagi).\n"
"\n"
-#: ../../standalone/drakgw_.c:292
+#: ../../standalone/drakgw_.c:285
msgid "C-Class Local Network"
msgstr "Jaringan Lokal Kelas-C"
-#: ../../standalone/drakgw_.c:293
+#: ../../standalone/drakgw_.c:286
msgid "(This) DHCP Server IP"
msgstr "IP Server DHCP (Ini)"
-#: ../../standalone/drakgw_.c:294
+#: ../../standalone/drakgw_.c:287
msgid "Re-configure interface and DHCP server"
msgstr "Konfigurasi ulang antarmuka dan server DHCP"
-#: ../../standalone/drakgw_.c:301
+#: ../../standalone/drakgw_.c:294
msgid "The Local Network did not finish with `.0', bailing out."
msgstr "Jaringan Lokal tak berakhiran `.0', keluar."
-#: ../../standalone/drakgw_.c:312
+#: ../../standalone/drakgw_.c:305
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr "Ada potensi konflik alamat LAN pada konfigurasi %s!\n"
-#: ../../standalone/drakgw_.c:320
-msgid "Firewalling configuration detected!"
-msgstr "Konfigurasi firewall terdeteksi!"
-
-#: ../../standalone/drakgw_.c:321
-msgid ""
-"Warning! An existing firewalling configuration has been detected. You may "
-"need some manual fix after installation."
-msgstr ""
-"Awas! Sudah ada konfigurasi firewall. Anda perlu mengecek dan membetulkan "
-"secara manual setelah instalasi."
-
-#: ../../standalone/drakgw_.c:328
+#: ../../standalone/drakgw_.c:315
msgid "Configuring..."
msgstr "Konfigurasi..."
-#: ../../standalone/drakgw_.c:329
+#: ../../standalone/drakgw_.c:316
msgid "Configuring scripts, installing software, starting servers..."
msgstr "Mengkonfigurasikan skrip, menginstall software, menjalankan server..."
-#: ../../standalone/drakgw_.c:365
+#: ../../standalone/drakgw_.c:352
#, c-format
msgid "Problems installing package %s"
msgstr "Problem instalasi paket %s"
-#: ../../standalone/drakgw_.c:549
+#: ../../standalone/drakgw_.c:485
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
@@ -12237,23 +12772,23 @@ msgstr ""
"pada Local Area Network di tempat Anda, dengan menggunakan konfigurasi "
"jaringan otomatis (DHCP)."
-#: ../../standalone/drakgw_.c:566
+#: ../../standalone/drakgw_.c:504
msgid "The setup has already been done, but it's currently disabled."
msgstr "Konfigurasi telah seleasi.Namun sekarang masih dimatikan."
-#: ../../standalone/drakgw_.c:567
+#: ../../standalone/drakgw_.c:505
msgid "The setup has already been done, and it's currently enabled."
msgstr "Konfigurasi telah selesai.Namun sekarang sudah aktif."
-#: ../../standalone/drakgw_.c:568
+#: ../../standalone/drakgw_.c:506
msgid "No Internet Connection Sharing has ever been configured."
msgstr "Internet Connection Sharing belum pernah dikonfigurasikan"
-#: ../../standalone/drakgw_.c:573
+#: ../../standalone/drakgw_.c:511
msgid "Internet connection sharing configuration"
msgstr "Koneksi dan konfigurasi sharing Internet"
-#: ../../standalone/drakgw_.c:580
+#: ../../standalone/drakgw_.c:518
#, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -12268,6 +12803,168 @@ msgstr ""
"\n"
"Silakan pencet Konfigurasikan untuk mulai."
+#: ../../standalone/draksound_.c:46
+#, fuzzy
+msgid "No Sound Card detected!"
+msgstr "Kartu TV tak terdeteksi!"
+
+#: ../../standalone/draksound_.c:47
+#, fuzzy
+msgid ""
+"No Sound Card has been detected on your machine. Please verify that a Linux-"
+"supported Sound Card is correctly plugged in.\n"
+"\n"
+"\n"
+"You can visit our hardware database at:\n"
+"\n"
+"\n"
+"http://www.linux-mandrake.com/en/hardware.php3"
+msgstr ""
+"Kartu TV tak terdeteksi. Pastikan Kartu Video/TV yg disupport Linux "
+"terhubung dengan benar.\n"
+"\n"
+"\n"
+"Kunjungi database piranti keras di:\n"
+"\n"
+"\n"
+"http://www.linux-mandrake.com/en/hardware.php3"
+
+#: ../../standalone/draksplash_.c:32
+msgid "package ImageMagick is required for correct working"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:76
+#, fuzzy
+msgid "first step creation"
+msgstr "pembuatan bootdisk"
+
+#: ../../standalone/draksplash_.c:77
+#, fuzzy
+msgid "final resolution"
+msgstr "Resolusi"
+
+#: ../../standalone/draksplash_.c:78 ../../standalone/draksplash_.c:170
+#, fuzzy
+msgid "choose image file"
+msgstr "Pilih file"
+
+#: ../../standalone/draksplash_.c:79
+#, fuzzy
+msgid "Theme name"
+msgstr "Nama share"
+
+#: ../../standalone/draksplash_.c:81
+msgid "make bootsplash step 2"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:82
+#, fuzzy
+msgid "go to lilosplash configuration"
+msgstr "Konfigurasi instalasi akhir"
+
+#: ../../standalone/draksplash_.c:83
+#, fuzzy
+msgid "quit"
+msgstr "Keluar"
+
+#: ../../standalone/draksplash_.c:84
+#, fuzzy
+msgid "save theme"
+msgstr "Instal tema"
+
+#: ../../standalone/draksplash_.c:85
+msgid "browse"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:98 ../../standalone/draksplash_.c:159
+#, fuzzy
+msgid "Configure bootsplash picture"
+msgstr "Gagal membuat preview Bootsplash"
+
+#: ../../standalone/draksplash_.c:99
+msgid "x coordinate of text box in number of character"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:100
+msgid "y coordinate of text box in number of character"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:101
+msgid "text width"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:102
+msgid "text box height"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:103
+msgid "the progress bar x coordinate of its upper left corner"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:104
+msgid "the progress bar y coordinate of its upper left corner"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:105
+msgid "the width of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:106
+msgid "the heigth of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:107
+msgid "the color of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:119
+#, fuzzy
+msgid "go back"
+msgstr "Loopback"
+
+#: ../../standalone/draksplash_.c:120
+#, fuzzy
+msgid "preview"
+msgstr "device"
+
+#: ../../standalone/draksplash_.c:121
+#, fuzzy
+msgid "choose color"
+msgstr "Pilih monitor"
+
+#: ../../standalone/draksplash_.c:124
+#, fuzzy
+msgid "Display logo on Console"
+msgstr "Display tema di konsol"
+
+#: ../../standalone/draksplash_.c:125
+msgid "Make kernel message quiet by default"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:161 ../../standalone/draksplash_.c:330
+#, c-format
+msgid "This theme haven't yet any bootsplash in %s !"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:213
+msgid "saving Bootsplash theme..."
+msgstr ""
+
+#: ../../standalone/draksplash_.c:436
+#, fuzzy
+msgid "ProgressBar color selection"
+msgstr "Seleksi model printer"
+
+#: ../../standalone/draksplash_.c:454
+#, fuzzy
+msgid "You must choose an image file first!"
+msgstr "Pilih/masukkan printer/device!"
+
+#: ../../standalone/draksplash_.c:463
+#, fuzzy
+msgid "Generating preview ..."
+msgstr "Pendeteksian alat..."
+
#: ../../standalone/drakxtv_.c:49
msgid ""
"XawTV isn't installed!\n"
@@ -12367,11 +13064,11 @@ msgstr ""
"tuliskan standar dan daerah tv Anda"
#: ../../standalone/drakxtv_.c:109
-msgid "TV norm :"
+msgid "TV norm:"
msgstr "standar TV :"
#: ../../standalone/drakxtv_.c:110
-msgid "Area :"
+msgid "Area:"
msgstr "Area :"
#: ../../standalone/drakxtv_.c:114
@@ -12454,7 +13151,7 @@ msgstr "Gagal memulai upgrade live !!!\n"
msgid "The change is done, but to be effective you must logout"
msgstr "Perubahan telah dilakukan, Anda harus logout agar perubahan berlaku"
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:517
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:515
msgid "logdrake"
msgstr "logdrake"
@@ -12622,8 +13319,9 @@ msgid "service setting"
msgstr "setting servis"
#: ../../standalone/logdrake_.c:431
+#, fuzzy
msgid ""
-"You will receive an alert if one of the selected service is no more running"
+"You will receive an alert if one of the selected services is no more running"
msgstr "Anda akan menerima peringatan bila salah satu servis terpilih terhenti"
#: ../../standalone/logdrake_.c:443
@@ -12642,19 +13340,19 @@ msgstr "konfigurasi peringatan"
msgid "Please enter your email address below "
msgstr "Masukkan alamat email Anda di bawah "
-#: ../../standalone/logdrake_.c:499
+#: ../../standalone/logdrake_.c:497
msgid "Save as.."
msgstr "Simpan sbg.."
-#: ../../standalone/mousedrake_.c:43
+#: ../../standalone/mousedrake_.c:45
msgid "Please, choose the type of your mouse."
msgstr "Tipe mouse yang anda punya?"
-#: ../../standalone/mousedrake_.c:57
+#: ../../standalone/mousedrake_.c:58
msgid "Emulate third button?"
msgstr "Emulasikan tombol ketiga?"
-#: ../../standalone/printerdrake_.c:48
+#: ../../standalone/printerdrake_.c:57
msgid "Reading printer data ..."
msgstr "Pembacaan data printer ..."
@@ -12666,21 +13364,32 @@ msgstr "Pendeteksian alat..."
msgid "Test ports"
msgstr "Tes port"
-#: ../../standalone/scannerdrake_.c:52
+#: ../../standalone/scannerdrake_.c:53 ../../standalone/scannerdrake_.c:68
+#: ../../standalone/scannerdrake_.c:81
#, c-format
-msgid "%s found on %s, configure it ?"
+msgid "The %s is not supported by this version of Mandrake Linux."
+msgstr ""
+
+#: ../../standalone/scannerdrake_.c:56
+#, fuzzy, c-format
+msgid "%s found on %s, configure it?"
msgstr "%s ditemukan di %s, konfigurasikan?"
#: ../../standalone/scannerdrake_.c:59
+#, c-format
+msgid "%s is not in the scanner database, configure it manually?"
+msgstr ""
+
+#: ../../standalone/scannerdrake_.c:65
msgid "Select a scanner"
msgstr "Pilih scanner"
-#: ../../standalone/scannerdrake_.c:79
+#: ../../standalone/scannerdrake_.c:93
#, c-format
msgid "This %s scanner is unsupported"
msgstr "Scanner %s ini tak disupport"
-#: ../../standalone/scannerdrake_.c:93
+#: ../../standalone/scannerdrake_.c:107
#, c-format
msgid ""
"Scannerdrake was not able to detect your %s scanner.\n"
@@ -12689,11 +13398,11 @@ msgstr ""
"Scannerdrake gagal mendeteksi scanner %s Anda.\n"
"Pilihlah device tempat scanner terhubung"
-#: ../../standalone/scannerdrake_.c:95
+#: ../../standalone/scannerdrake_.c:109
msgid "choose device"
msgstr "pilih device"
-#: ../../standalone/scannerdrake_.c:101
+#: ../../standalone/scannerdrake_.c:115
#, c-format
msgid ""
"This %s scanner must be configured by printerdrake.\n"
@@ -12704,7 +13413,7 @@ msgstr ""
"Anda dapat meluncurkan printerdrake dari Pusat Kontrol Mandrake bagian "
"Hardware."
-#: ../../standalone/scannerdrake_.c:106
+#: ../../standalone/scannerdrake_.c:120
#, c-format
msgid ""
"Your %s scanner has been configured.\n"
@@ -12715,12 +13424,12 @@ msgstr ""
"Anda dapat men-scan dokumen dengan ``XSane'' dari Multimedia/Grafik di menu "
"aplikasi."
-#: ../../standalone/service_harddrake_.c:57
+#: ../../standalone/service_harddrake_.c:39
#, c-format
msgid "Some devices in the \"%s\" hardware class were removed:\n"
msgstr "Some devices in the \"%s\" hardware class were removed:\n"
-#: ../../standalone/service_harddrake_.c:61
+#: ../../standalone/service_harddrake_.c:43
#, c-format
msgid ""
"\n"
@@ -12729,36 +13438,6 @@ msgstr ""
"\n"
"Bbrp device di kelas %s ditambahkan:\n"
-#: ../../standalone/tinyfirewall_.c:30
-msgid "Firewalling Configuration"
-msgstr "konfigurasi firewall"
-
-#: ../../standalone/tinyfirewall_.c:43
-msgid "Firewalling configuration"
-msgstr "konfigurasi firewall"
-
-#: ../../standalone/tinyfirewall_.c:78
-msgid ""
-"Firewalling\n"
-"\n"
-"You already have set up a firewall.\n"
-"Click on Configure to change or remove the firewall"
-msgstr ""
-"Firewall\n"
-"\n"
-"Anda sudah ada firewall.\n"
-"Silakan tekan Konfigurasikan untuk mengganti atau menghapus firewall"
-
-#: ../../standalone/tinyfirewall_.c:82
-msgid ""
-"Firewalling\n"
-"\n"
-"Click on Configure to set up a standard firewall"
-msgstr ""
-"Firewall\n"
-"\n"
-"Silakan tekan Konfigurasikan untuk mensetup firewall standar"
-
#: ../../steps.pm_.c:14
msgid "Choose your language"
msgstr "Pilih bahasa Anda"
@@ -12831,224 +13510,7 @@ msgstr "Instal update sistem"
msgid "Exit install"
msgstr "Keluar dari proses instal"
-#: ../../tinyfirewall.pm_.c:9
-msgid ""
-"tinyfirewall configurator\n"
-"\n"
-"This configures a personal firewall for this Mandrake Linux machine.\n"
-"For a powerful dedicated firewall solution, please look to the\n"
-"specialized MandrakeSecurity Firewall distribution."
-msgstr ""
-"konfigurator tinyfirewall\n"
-"\n"
-"Program ini mengkonfigurasi firewall pribadi sistem Linux Mandrake.\n"
-"Untuk membuat solusi firewall yang lebih baik, cobalah\n"
-"distribusi Mandrake Security Firewall"
-
-#: ../../tinyfirewall.pm_.c:14
-msgid ""
-"We'll now ask you questions about which services you'd like to allow\n"
-"the Internet to connect to. Please think carefully about these\n"
-"questions, as your computer's security is important.\n"
-"\n"
-"Please, if you're not currently using one of these services, firewall\n"
-"it off. You can change this configuration anytime you like by\n"
-"re-running this application!"
-msgstr ""
-"Sekarang saya akan tanyakan layanan mana saja yang hendak Anda bolehkan\n"
-"untuk dapat diakses dari Internet. Silakan fikirkan dulu masak-masak akan\n"
-"hal ini, karena keamanan komputer Anda sangat penting kan.\n"
-"\n"
-"Ayo, bila Anda tidak pakai layanan-layanan ini, matikan saja lewat "
-"firewall.\n"
-"Anda bisa ubah konfigurasikan lagi kapan-kapan dengan menjalankan\n"
-"aplikasi ini lagi nantinya."
-
-#: ../../tinyfirewall.pm_.c:21
-msgid ""
-"Are you running a web server on this machine that you need the whole\n"
-"Internet to see? If you are running a webserver that only needs to be\n"
-"accessed by this machine, you can safely answer NO here.\n"
-"\n"
-msgstr ""
-"Apakah Anda ingin webserver Anda juga dapat diakses dari Internet ??\n"
-"Bila Anda ingin webserver Anda HANYA ingin diakses dari KOMPUTER INI SAJA\n"
-"maka jawab saja TIDAK di sini.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:26
-msgid ""
-"Are you running a name server on this machine? If you didn't set one\n"
-"up to give away IP and zone information to the whole Internet, please\n"
-"answer no.\n"
-"\n"
-msgstr ""
-"Apakah Anda menjalankan Name server di komputer ini? Bila Anda\n"
-"tidak menjalankan nameserver untuk menjawab informasi IP dan zone untuk "
-"Internet\n"
-"silakan jawab TIDAK.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:31
-msgid ""
-"Do you want to allow incoming Secure Shell (ssh) connections? This\n"
-"is a telnet-replacement that you might use to login. If you're using\n"
-"telnet now, you should definitely switch to ssh. telnet is not\n"
-"encrypted -- so some attackers can steal your password if you use\n"
-"it. ssh is encrypted and doesn't allow for this eavesdropping."
-msgstr ""
-"Apakah Anda ingin membuka koneksi Secure Shell (ssh) ?\n"
-"SSH adalah pengganti telnet yang mungkin hendak Anda gunakan.\n"
-"Bila Anda hanya menggunakan telnet sekarang, silakan ganti ke ssh.\n"
-"telnet tidak dienkripsi loh -- jadi orang lain bisa mencuri katasandi Anda\n"
-"saat telnet. SSH dienkripsi dan tidak bisa disadap."
-
-#: ../../tinyfirewall.pm_.c:36
-msgid ""
-"Do you want to allow incoming telnet connections?\n"
-"This is horribly unsafe, as we explained in the previous screen. We\n"
-"strongly recommend answering No here and using ssh in place of\n"
-"telnet.\n"
-msgstr ""
-"Apakah Anda ingin membuka koneksi telnet?\n"
-"Ini sangat tidak aman sebagaimana dijelaskan pada layar sebelumnya.\n"
-"Sebaiknya jawab TIDAK dan gunakan SSH.\n"
-
-#: ../../tinyfirewall.pm_.c:41
-msgid ""
-"Are you running an FTP server here that you need accessible to the\n"
-"Internet? If you are, we strongly recommend that you only use it for\n"
-"Anonymous transfers. Any passwords sent by FTP can be stolen by some\n"
-"attackers, since FTP also uses no encryption for transferring passwords.\n"
-msgstr ""
-"Apakah Anda hendak membuka koneksi FTP yang ingin diakses dari Internet?\n"
-"Bila ya, silakan gunakan saja untuk transfer anonimous. Katasandi yang "
-"dikirimkan\n"
-"oleh FTP bisa dicuri oleh cracker, karena FTP tidak diacak saat pertukaran "
-"katasandi terjadi.\n"
-
-#: ../../tinyfirewall.pm_.c:46
-msgid ""
-"Are you running a mail server here? If you're sending you \n"
-"messages through pine, mutt or any other text-based mail client,\n"
-"you probably are. Otherwise, you should firewall this off.\n"
-"\n"
-msgstr ""
-"Apakah Anda menjalankan server mail ? Bila Anda mengirim email dengan\n"
-"menggunakan pine, mutt, atau klien mail teks, maka sebaiknya iya.\n"
-"Selainnya, matikan saja.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:51
-msgid ""
-"Are you running a POP or IMAP server here? This would\n"
-"be used to host non-web-based mail accounts for people via \n"
-"this machine.\n"
-"\n"
-msgstr ""
-"Apakah Anda menjalankan server POP atau IMAP ?\n"
-"Fasilitas ini bisa digunakan untuk menampung account email non web untuk\n"
-"umum.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:56
-msgid ""
-"You appear to be running a 2.2 kernel. If your network IP\n"
-"is automatically set by a computer in your home or office \n"
-"(dynamically assigned), we need to allow for this. Is\n"
-"this the case?\n"
-msgstr ""
-"Kelihatannya Anda memakai kernel 2.2. Bila IP jaringan Anda diset sendiri\n"
-"oleh komputer di kantor atau rumah (secara dinamis) maka kita harus jawab\n"
-"YA di sini. Benarkah demikian?\n"
-
-#: ../../tinyfirewall.pm_.c:61
-msgid ""
-"Is your computer getting time syncronized to another computer?\n"
-"Mostly, this is used by medium-large Unix/Linux organizations\n"
-"to synchronize time for logging and such. If you're not part\n"
-"of a larger office and haven't heard of this, you probably \n"
-"aren't."
-msgstr ""
-"Apakah komputer Anda mendapatkan informasi jam dari komputer lain?\n"
-"Biasanya, fasilitas ini digunakan oleh organisasi sedang/besar Unix/Linux\n"
-"untuk sinkronisasi waktu untuk logging dan sebagainya. Bila Anda\n"
-"tidak tergabung dari kantor yang besar atau belum pernah dengar ini\n"
-"sebelumnya, jawab TIDAK."
-
-#: ../../tinyfirewall.pm_.c:66
-msgid ""
-"Configuration complete. May we write these changes to disk?\n"
-"\n"
-"\n"
-"\n"
-msgstr ""
-"Konfigurasi tamat. Simpan perubahan ini ke disk?\n"
-"\n"
-"\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:82
-#, c-format
-msgid "Can't open %s: %s\n"
-msgstr "Tidak bisa buka %s: %s\n"
-
-#: ../../tinyfirewall.pm_.c:84
-#, c-format
-msgid "Can't open %s for writing: %s\n"
-msgstr "Tak dapat membuka file %s untuk ditulisi: %s\n"
-
-#: ../../tinyfirewall.pm_.c:178
-msgid "No I don't need DHCP"
-msgstr "Tidak, tak perlu DHCP"
-
-#: ../../tinyfirewall.pm_.c:178
-msgid "Yes I need DHCP"
-msgstr "Ya, perlu DHCP"
-
-#: ../../tinyfirewall.pm_.c:179
-msgid "No I don't need NTP"
-msgstr "Tidak, tak perlu NTP"
-
-#: ../../tinyfirewall.pm_.c:179
-msgid "Yes I need NTP"
-msgstr "Ya, perlu NTP"
-
-#: ../../tinyfirewall.pm_.c:180 ../../tinyfirewall.pm_.c:184
-msgid "Don't Save"
-msgstr "Jangan Simpan"
-
-#: ../../tinyfirewall.pm_.c:180 ../../tinyfirewall.pm_.c:184
-#: ../../tinyfirewall.pm_.c:204
-msgid "Save & Quit"
-msgstr "Simpan & Keluar"
-
-#: ../../tinyfirewall.pm_.c:195 ../../tinyfirewall.pm_.c:199
-msgid "Firewall Configuration Wizard"
-msgstr "Dukun Konfigurasi Firewall"
-
-#: ../../tinyfirewall.pm_.c:197
-msgid "No (firewall this off from the internet)"
-msgstr "Tidak (lindungi dari internet)"
-
-#: ../../tinyfirewall.pm_.c:198
-msgid "Yes (allow this through the firewall)"
-msgstr "Ya (izinkan ini melewati firewall)"
-
-#: ../../tinyfirewall.pm_.c:230
-msgid "Please Wait... Verifying installed packages"
-msgstr "Tunggu, paket terinstal sedang diverifikasi"
-
-#: ../../tinyfirewall.pm_.c:236
-#, c-format
-msgid ""
-"Failure installing the needed packages : %s and Bastille.\n"
-" Try to install them manually."
-msgstr ""
-"Gagal menginstal paket kebutuhan : %s dan Bastille.\n"
-" Coba instal secara manual."
-
-#: ../../ugtk.pm_.c:619
+#: ../../ugtk.pm_.c:594
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
@@ -13181,6 +13643,10 @@ msgid "Graphical Environment"
msgstr "Mode Grafis"
#: ../../share/compssUsers:999
+msgid "Development"
+msgstr "Development"
+
+#: ../../share/compssUsers:999
msgid "Apache, Pro-ftpd"
msgstr "Apache dan Pro-ftpd"
@@ -13292,20 +13758,325 @@ msgstr "Multimedia - CD Burning"
msgid "Scientific Workstation"
msgstr "Aplikasi Ilmu pengetahuan"
-#~ msgid "$mode: $warning"
-#~ msgstr "$mode: $warning"
+#~ msgid ""
+#~ "The first time you try the X configuration, you may not be very "
+#~ "satisfied\n"
+#~ "with its display (screen is too small, shifted left or right...). Hence,\n"
+#~ "even if X starts up correctly, DrakX then asks you if the configuration\n"
+#~ "suits you. It will also propose to change it by displaying a list of "
+#~ "valid\n"
+#~ "modes it could find, asking you to select one.\n"
+#~ "\n"
+#~ "As a last resort, if you still cannot get X to work, choose \"Change\n"
+#~ "graphics card\", select \"Unlisted card\", and when prompted on which\n"
+#~ "server, choose \"FBDev\". This is a failsafe option which works with any\n"
+#~ "modern graphics card. Then choose \"Test again\" to be sure."
+#~ msgstr ""
+#~ "Pertama kali mencoba konfigurasi X, Anda mungkin tak puas dg tampilannya\n"
+#~ "(layar terlalu kecil, tergeser ke kiri/kanan...). Jadi walau X jalan "
+#~ "dengan\n"
+#~ "baik, DrakX akan bertanya apakah konfigurasi ini memuaskan. Mode valid "
+#~ "yang\n"
+#~ "ditemukan juga akan disajikan untuk dipilih.\n"
+#~ "\n"
+#~ "Jika Anda tetap gagal menjalankan X, pilih \"Ubah kartu grafis\", lalu\n"
+#~ "\"Kartu tak terdaftar\", dan saat ditanya server apa yg Anda inginkan,\n"
+#~ "pilih \"FBDev\". Ini adalah opsi failsafe yg jalan di kartu grafis "
+#~ "modern.\n"
+#~ "Lalu pilih \"Tes lagi\" agar yakin."
+
+#~ msgid "Internet and Messaging"
+#~ msgstr "Internet dan Pesan"
+
+#~ msgid "Multimedia and Graphics"
+#~ msgstr "Multimedia dan Grafik"
+
+#~ msgid ""
+#~ "Mandrake Linux 8.2 provides 11 different graphical desktop environments "
+#~ "and window managers to choose from including GNOME 1.4, KDE 2.2.2, Window "
+#~ "Maker 0.8, and the rest"
+#~ msgstr ""
+#~ "Mandrake Linux 8.2 menyediakan 11 lingkungan desktop grafis dan manajer "
+#~ "window termasuk GNOME 1.4, KDE 2.2.2, Window Maker 0.8, dan lain-lain"
+
+#~ msgid "Server Software"
+#~ msgstr "Piranti Lunak Server"
+
+#~ msgid "MandrakeCampus"
+#~ msgstr "KampusMandrake"
+
+#~ msgid ""
+#~ "Would you like to learn Linux simply, quickly, and for free? MandrakeSoft "
+#~ "provides free Linux training, as well as a way to test your progress, at "
+#~ "MandrakeCampus -- our online training center"
+#~ msgstr ""
+#~ "Inginkah Anda belajar Linux secara mudah, cepat dan gratis? MandrakeSoft "
+#~ "menyediakan training Linux gratis, beserta cara mentes kemajuan Anda, di "
+#~ "KampusMandrake -- pusat training online kami"
+
+#~ msgid ""
+#~ "Quality support from the Linux Community, and from MandrakeSoft, is just "
+#~ "around the corner. And if you're already a Linux veteran, become an "
+#~ "\"Expert\" and share your knowledge at our support website"
+#~ msgstr ""
+#~ "Support kualitas dari Komunitas Linux, dan dari MandrakeSoft, ada di "
+#~ "sekitar pojok. Jika Anda veteran Linux, jadilah \"Ahli\" dan bagilah "
+#~ "pengetahuan Anda di situs web support kami"
+
+#~ msgid "MandrakeConsulting"
+#~ msgstr "KonsultasiMandrake"
+
+#~ msgid ""
+#~ "For all of your IT projects, our consultants are ready to analyze your "
+#~ "requirements and offer a customized solution. Benefit from MandrakeSoft's "
+#~ "vast experience as a Linux producer to provide a true IT alternative for "
+#~ "your business organization"
+#~ msgstr ""
+#~ "Untuk semua proyek IT, konsultan kami siap menganalisa kebutuhan Anda dan "
+#~ "menyediakan solusi pilihan. Hasil pengalaman total MandrakeSoft sebagai "
+#~ "produser Linux menyediakan Teknologi Informasi sesungguhnya untuk "
+#~ "organisasi bisnis Anda"
+
+#~ msgid "MandrakeStore"
+#~ msgstr "TokoMandrake"
+
+#~ msgid ""
+#~ "For more information on MandrakeSoft's Professional Services and "
+#~ "commercial offerings, please see the following web page:"
+#~ msgstr ""
+#~ "Untuk info lebih lanjut tentang Servis Profesional MandrakeSoft dan "
+#~ "sajian komersial, lihat halaman web berikut:"
+
+#~ msgid "LBA (doesn't work on old BIOSes)"
+#~ msgstr "LBA (tak bisa dipakai pada BIOS kuno)"
+
+#~ msgid "You don't have any partitions!"
+#~ msgstr "Anda tak punya partisi!"
+
+#~ msgid ""
+#~ "DiskDrake failed to read correctly the partition table.\n"
+#~ "Continue at your own risk!"
+#~ msgstr ""
+#~ "DiskDrake gagal membaca tabel partisi Anda.\n"
+#~ "Lanjutkan tapi resiko tanggung sendiri!"
+
+#~ msgid ""
+#~ "I can't read your partition table, it's too corrupted for me :(\n"
+#~ "I'll try to go on blanking bad partitions"
+#~ msgstr ""
+#~ "Tabel partisi rusak tak terbaca :(\n"
+#~ "Partisi buruk akan dicoba dihapus"
+
+#~ msgid ""
+#~ "Please Build backup before to restore it...\n"
+#~ " or verify that your path to save is correct."
+#~ msgstr ""
+#~ "Buatlah backup sebelum menyimpan ulang...\n"
+#~ " atau pastikan path utk menyimpan sudah benar."
+
+#~ msgid "Firewalling Configuration"
+#~ msgstr "konfigurasi firewall"
+
+#~ msgid "Firewalling configuration"
+#~ msgstr "konfigurasi firewall"
+
+#~ msgid ""
+#~ "Firewalling\n"
+#~ "\n"
+#~ "You already have set up a firewall.\n"
+#~ "Click on Configure to change or remove the firewall"
+#~ msgstr ""
+#~ "Firewall\n"
+#~ "\n"
+#~ "Anda sudah ada firewall.\n"
+#~ "Silakan tekan Konfigurasikan untuk mengganti atau menghapus firewall"
+
+#~ msgid ""
+#~ "Firewalling\n"
+#~ "\n"
+#~ "Click on Configure to set up a standard firewall"
+#~ msgstr ""
+#~ "Firewall\n"
+#~ "\n"
+#~ "Silakan tekan Konfigurasikan untuk mensetup firewall standar"
+
+#~ msgid ""
+#~ "We'll now ask you questions about which services you'd like to allow\n"
+#~ "the Internet to connect to. Please think carefully about these\n"
+#~ "questions, as your computer's security is important.\n"
+#~ "\n"
+#~ "Please, if you're not currently using one of these services, firewall\n"
+#~ "it off. You can change this configuration anytime you like by\n"
+#~ "re-running this application!"
+#~ msgstr ""
+#~ "Sekarang saya akan tanyakan layanan mana saja yang hendak Anda bolehkan\n"
+#~ "untuk dapat diakses dari Internet. Silakan fikirkan dulu masak-masak "
+#~ "akan\n"
+#~ "hal ini, karena keamanan komputer Anda sangat penting kan.\n"
+#~ "\n"
+#~ "Ayo, bila Anda tidak pakai layanan-layanan ini, matikan saja lewat "
+#~ "firewall.\n"
+#~ "Anda bisa ubah konfigurasikan lagi kapan-kapan dengan menjalankan\n"
+#~ "aplikasi ini lagi nantinya."
+
+#~ msgid ""
+#~ "Are you running a web server on this machine that you need the whole\n"
+#~ "Internet to see? If you are running a webserver that only needs to be\n"
+#~ "accessed by this machine, you can safely answer NO here.\n"
+#~ "\n"
+#~ msgstr ""
+#~ "Apakah Anda ingin webserver Anda juga dapat diakses dari Internet ??\n"
+#~ "Bila Anda ingin webserver Anda HANYA ingin diakses dari KOMPUTER INI "
+#~ "SAJA\n"
+#~ "maka jawab saja TIDAK di sini.\n"
+#~ "\n"
+
+#~ msgid ""
+#~ "Are you running a name server on this machine? If you didn't set one\n"
+#~ "up to give away IP and zone information to the whole Internet, please\n"
+#~ "answer no.\n"
+#~ "\n"
+#~ msgstr ""
+#~ "Apakah Anda menjalankan Name server di komputer ini? Bila Anda\n"
+#~ "tidak menjalankan nameserver untuk menjawab informasi IP dan zone untuk "
+#~ "Internet\n"
+#~ "silakan jawab TIDAK.\n"
+#~ "\n"
+
+#~ msgid ""
+#~ "Do you want to allow incoming Secure Shell (ssh) connections? This\n"
+#~ "is a telnet-replacement that you might use to login. If you're using\n"
+#~ "telnet now, you should definitely switch to ssh. telnet is not\n"
+#~ "encrypted -- so some attackers can steal your password if you use\n"
+#~ "it. ssh is encrypted and doesn't allow for this eavesdropping."
+#~ msgstr ""
+#~ "Apakah Anda ingin membuka koneksi Secure Shell (ssh) ?\n"
+#~ "SSH adalah pengganti telnet yang mungkin hendak Anda gunakan.\n"
+#~ "Bila Anda hanya menggunakan telnet sekarang, silakan ganti ke ssh.\n"
+#~ "telnet tidak dienkripsi loh -- jadi orang lain bisa mencuri katasandi "
+#~ "Anda\n"
+#~ "saat telnet. SSH dienkripsi dan tidak bisa disadap."
+
+#~ msgid ""
+#~ "Do you want to allow incoming telnet connections?\n"
+#~ "This is horribly unsafe, as we explained in the previous screen. We\n"
+#~ "strongly recommend answering No here and using ssh in place of\n"
+#~ "telnet.\n"
+#~ msgstr ""
+#~ "Apakah Anda ingin membuka koneksi telnet?\n"
+#~ "Ini sangat tidak aman sebagaimana dijelaskan pada layar sebelumnya.\n"
+#~ "Sebaiknya jawab TIDAK dan gunakan SSH.\n"
+
+#~ msgid ""
+#~ "Are you running an FTP server here that you need accessible to the\n"
+#~ "Internet? If you are, we strongly recommend that you only use it for\n"
+#~ "Anonymous transfers. Any passwords sent by FTP can be stolen by some\n"
+#~ "attackers, since FTP also uses no encryption for transferring passwords.\n"
+#~ msgstr ""
+#~ "Apakah Anda hendak membuka koneksi FTP yang ingin diakses dari Internet?\n"
+#~ "Bila ya, silakan gunakan saja untuk transfer anonimous. Katasandi yang "
+#~ "dikirimkan\n"
+#~ "oleh FTP bisa dicuri oleh cracker, karena FTP tidak diacak saat "
+#~ "pertukaran katasandi terjadi.\n"
+
+#~ msgid ""
+#~ "Are you running a mail server here? If you're sending you \n"
+#~ "messages through pine, mutt or any other text-based mail client,\n"
+#~ "you probably are. Otherwise, you should firewall this off.\n"
+#~ "\n"
+#~ msgstr ""
+#~ "Apakah Anda menjalankan server mail ? Bila Anda mengirim email dengan\n"
+#~ "menggunakan pine, mutt, atau klien mail teks, maka sebaiknya iya.\n"
+#~ "Selainnya, matikan saja.\n"
+#~ "\n"
+
+#~ msgid ""
+#~ "Are you running a POP or IMAP server here? This would\n"
+#~ "be used to host non-web-based mail accounts for people via \n"
+#~ "this machine.\n"
+#~ "\n"
+#~ msgstr ""
+#~ "Apakah Anda menjalankan server POP atau IMAP ?\n"
+#~ "Fasilitas ini bisa digunakan untuk menampung account email non web untuk\n"
+#~ "umum.\n"
+#~ "\n"
+
+#~ msgid ""
+#~ "You appear to be running a 2.2 kernel. If your network IP\n"
+#~ "is automatically set by a computer in your home or office \n"
+#~ "(dynamically assigned), we need to allow for this. Is\n"
+#~ "this the case?\n"
+#~ msgstr ""
+#~ "Kelihatannya Anda memakai kernel 2.2. Bila IP jaringan Anda diset "
+#~ "sendiri\n"
+#~ "oleh komputer di kantor atau rumah (secara dinamis) maka kita harus "
+#~ "jawab\n"
+#~ "YA di sini. Benarkah demikian?\n"
+
+#~ msgid ""
+#~ "Is your computer getting time syncronized to another computer?\n"
+#~ "Mostly, this is used by medium-large Unix/Linux organizations\n"
+#~ "to synchronize time for logging and such. If you're not part\n"
+#~ "of a larger office and haven't heard of this, you probably \n"
+#~ "aren't."
+#~ msgstr ""
+#~ "Apakah komputer Anda mendapatkan informasi jam dari komputer lain?\n"
+#~ "Biasanya, fasilitas ini digunakan oleh organisasi sedang/besar Unix/"
+#~ "Linux\n"
+#~ "untuk sinkronisasi waktu untuk logging dan sebagainya. Bila Anda\n"
+#~ "tidak tergabung dari kantor yang besar atau belum pernah dengar ini\n"
+#~ "sebelumnya, jawab TIDAK."
#~ msgid ""
+#~ "Configuration complete. May we write these changes to disk?\n"
+#~ "\n"
#~ "\n"
-#~ "Drakbackup activities via $net_proto:\n"
#~ "\n"
#~ msgstr ""
+#~ "Konfigurasi tamat. Simpan perubahan ini ke disk?\n"
#~ "\n"
-#~ "Aktivitas drakbackup via $net_proto:\n"
#~ "\n"
+#~ "\n"
+
+#~ msgid "Can't open %s for writing: %s\n"
+#~ msgstr "Tak dapat membuka file %s untuk ditulisi: %s\n"
+
+#~ msgid "No I don't need DHCP"
+#~ msgstr "Tidak, tak perlu DHCP"
+
+#~ msgid "Yes I need DHCP"
+#~ msgstr "Ya, perlu DHCP"
-#~ msgid "\n"
-#~ msgstr "\n"
+#~ msgid "No I don't need NTP"
+#~ msgstr "Tidak, tak perlu NTP"
+
+#~ msgid "Yes I need NTP"
+#~ msgstr "Ya, perlu NTP"
+
+#~ msgid "Don't Save"
+#~ msgstr "Jangan Simpan"
+
+#~ msgid "Save & Quit"
+#~ msgstr "Simpan & Keluar"
+
+#~ msgid "Firewall Configuration Wizard"
+#~ msgstr "Dukun Konfigurasi Firewall"
+
+#~ msgid "No (firewall this off from the internet)"
+#~ msgstr "Tidak (lindungi dari internet)"
+
+#~ msgid "Yes (allow this through the firewall)"
+#~ msgstr "Ya (izinkan ini melewati firewall)"
+
+#~ msgid "Please Wait... Verifying installed packages"
+#~ msgstr "Tunggu, paket terinstal sedang diverifikasi"
+
+#~ msgid ""
+#~ "Failure installing the needed packages: %s and Bastille.\n"
+#~ " Try to install them manually."
+#~ msgstr ""
+#~ "Gagal menginstal paket kebutuhan: %s dan Bastille.\n"
+#~ " Coba instal secara manual."
#~ msgid ""
#~ "This level is to be used with care. It makes your system more easy to "
@@ -13341,12 +14112,6 @@ msgstr "Aplikasi Ilmu pengetahuan"
#~ msgid "Security Checks"
#~ msgstr "Cek Keamanan"
-#~ msgid "WARNING: $warning"
-#~ msgstr "AWAS: $warning"
-
-#~ msgid "$descr"
-#~ msgstr "$descr"
-
#~ msgid "Data list to include on CDROM."
#~ msgstr "Daftar data utk dimasukkan ke CDROM."
@@ -13946,7 +14711,7 @@ msgstr "Aplikasi Ilmu pengetahuan"
#~ "Anda\n"
#~ "dapat menjalankan GNU/Linux atau Mindows (jika Anda punya Mindows di "
#~ "sistem\n"
-#~ "Anda). Jika Anda menginstal Mindows lagi, proses instal micro$oft akan\n"
+#~ "Anda). Jika Anda menginstal Mindows lagi, proses instal microsoft akan\n"
#~ "menulis ulang sektor boot, dan Anda takkan dapat menjalankan GNU/Linux!\n"
#~ "\n"
#~ " * jika ada masalah sehingga Anda tak dapat menjalankan GNU/Linux dari "
@@ -15053,12 +15818,6 @@ msgstr "Aplikasi Ilmu pengetahuan"
#~ msgid "Choose a X driver"
#~ msgstr "Pilih driver X"
-#~ msgid "X driver"
-#~ msgstr "Driver X"
-
-#~ msgid "Warning: testing this graphics card may freeze your computer"
-#~ msgstr "Awas: tes kartu grafis ini dapat membekukan komputer Anda"
-
#~ msgid "Standard VGA, 640x480 at 60 Hz"
#~ msgstr "VGA Standar, 640x480 pada 60 Hz"
@@ -15214,18 +15973,12 @@ msgstr "Aplikasi Ilmu pengetahuan"
#~ "Anda harus menginstalnya.\n"
#~ " Ketikkan \"urpmi xawtv\""
-#~ msgid "-adobe-utopia-medium-r-normal-*-12-*-*-*-p-*-iso8859-*,*-r-*"
-#~ msgstr "-adobe-utopia-medium-r-normal-*-12-*-*-*-p-*-iso8859-*,*-r-*"
-
#~ msgid ""
#~ "Can't access kernel modules corresponding to your kernel (file %s is "
#~ "missing)"
#~ msgstr ""
#~ "Tak dapat mengakses modul kernel yg sesuai dg kernel Anda (file %s hilang)"
-#~ msgid "$f-$g %s)"
-#~ msgstr "$f-$g %s)"
-
#~ msgid "None"
#~ msgstr "Tiada"
@@ -15394,9 +16147,6 @@ msgstr "Aplikasi Ilmu pengetahuan"
#~ "Device mana yang terhubung ke printer\n"
#~ "(ingat, /dev/lp0 = LPT1:) ?\n"
-#~ msgid "%s"
-#~ msgstr "%s"
-
#~ msgid ""
#~ "Warning, the network adapter is already configured. I will reconfigure it."
#~ msgstr ""
@@ -15478,9 +16228,6 @@ msgstr "Aplikasi Ilmu pengetahuan"
#~ msgid "Test the mouse here."
#~ msgstr "Silakan tes mouse Anda"
-#~ msgid "Press next to continue."
-#~ msgstr "Tekan Lanjutkan utk melanjutkan"
-
#~ msgid ""
#~ "Please choose your preferred language for installation and system usage."
#~ msgstr "Pilihlan bahasa yang ingin Anda gunakan untuk instalasi dan sistem."
diff --git a/perl-install/share/po/is.po b/perl-install/share/po/is.po
index 3b7edab59..9f1163b8e 100644
--- a/perl-install/share/po/is.po
+++ b/perl-install/share/po/is.po
@@ -8,7 +8,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2002-08-21 15:44+0200\n"
+"POT-Creation-Date: 2002-09-02 20:14+0200\n"
"PO-Revision-Date: 2000-01-05 18:53-0500\n"
"Last-Translator: Thorarinn Einarsson <teinarsson@nc.rr.com>\n"
"Language-Team: Icelandic\n"
@@ -52,48 +52,48 @@ msgstr "32 MB"
msgid "64 MB or more"
msgstr "64 MB eđa meira"
-#: ../../Xconfig/card.pm_.c:201
+#: ../../Xconfig/card.pm_.c:203
msgid "Choose a X server"
msgstr "Veldu X țjón"
-#: ../../Xconfig/card.pm_.c:201
+#: ../../Xconfig/card.pm_.c:203
msgid "X server"
msgstr "X țjónn"
-#: ../../Xconfig/card.pm_.c:228
+#: ../../Xconfig/card.pm_.c:230
#, fuzzy
msgid "Multi-head configuration"
msgstr "Les uppsetningarskrá"
-#: ../../Xconfig/card.pm_.c:229
+#: ../../Xconfig/card.pm_.c:231
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
msgstr ""
-#: ../../Xconfig/card.pm_.c:284
+#: ../../Xconfig/card.pm_.c:286
msgid "Select the memory size of your graphics card"
msgstr "Veldu minnisstærđ skjákortsins"
-#: ../../Xconfig/card.pm_.c:345
+#: ../../Xconfig/card.pm_.c:347
#, fuzzy
msgid "XFree configuration"
msgstr "Lokauppsetning"
-#: ../../Xconfig/card.pm_.c:347
+#: ../../Xconfig/card.pm_.c:349
#, fuzzy
msgid "Which configuration of XFree do you want to have?"
msgstr "Hverju viltu bæta viđ?"
-#: ../../Xconfig/card.pm_.c:379
+#: ../../Xconfig/card.pm_.c:381
msgid "Configure all heads independently"
msgstr ""
-#: ../../Xconfig/card.pm_.c:380
+#: ../../Xconfig/card.pm_.c:382
msgid "Use Xinerama extension"
msgstr ""
-#: ../../Xconfig/card.pm_.c:384
+#: ../../Xconfig/card.pm_.c:386
#, fuzzy, c-format
msgid "Configure only card \"%s\"%s"
msgstr "Netstillingar"
@@ -104,30 +104,30 @@ msgstr "Netstillingar"
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:435
+#: ../../Xconfig/card.pm_.c:410 ../../Xconfig/card.pm_.c:436
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s with 3D hardware acceleration"
msgstr ""
-#: ../../Xconfig/card.pm_.c:412
+#: ../../Xconfig/card.pm_.c:413
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
"Your card is supported by XFree %s which may have a better support in 2D."
msgstr ""
-#: ../../Xconfig/card.pm_.c:414 ../../Xconfig/card.pm_.c:437
+#: ../../Xconfig/card.pm_.c:415 ../../Xconfig/card.pm_.c:438
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr ""
-#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:443
+#: ../../Xconfig/card.pm_.c:423 ../../Xconfig/card.pm_.c:444
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr ""
-#: ../../Xconfig/card.pm_.c:425
+#: ../../Xconfig/card.pm_.c:426
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -135,62 +135,63 @@ msgid ""
"Your card is supported by XFree %s which may have a better support in 2D."
msgstr ""
-#: ../../Xconfig/card.pm_.c:428 ../../Xconfig/card.pm_.c:445
+#: ../../Xconfig/card.pm_.c:429 ../../Xconfig/card.pm_.c:446
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
msgstr ""
-#: ../../Xconfig/card.pm_.c:451
+#: ../../Xconfig/card.pm_.c:452
msgid "Xpmac (installation display driver)"
msgstr ""
-#: ../../Xconfig/main.pm_.c:78 ../../Xconfig/main.pm_.c:79
-#: ../../Xconfig/monitor.pm_.c:94 ../../any.pm_.c:974
+#: ../../Xconfig/main.pm_.c:76 ../../Xconfig/main.pm_.c:77
+#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:977
#, fuzzy
msgid "Custom"
msgstr "Sérlagađa"
-#: ../../Xconfig/main.pm_.c:104
+#: ../../Xconfig/main.pm_.c:102
#, fuzzy
msgid "Graphic Card"
msgstr "Skjákort"
-#: ../../Xconfig/main.pm_.c:107 ../../Xconfig/monitor.pm_.c:91
+#: ../../Xconfig/main.pm_.c:105 ../../Xconfig/monitor.pm_.c:93
msgid "Monitor"
msgstr "Skjár"
-#: ../../Xconfig/main.pm_.c:110 ../../Xconfig/resolution_and_depth.pm_.c:209
+#: ../../Xconfig/main.pm_.c:108 ../../Xconfig/resolution_and_depth.pm_.c:209
msgid "Resolution"
msgstr "Upplausn"
-#: ../../Xconfig/main.pm_.c:114
+#: ../../Xconfig/main.pm_.c:113
msgid "Test"
msgstr ""
-#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:59
-#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/removable.pm_.c:25
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:63
+#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/removable.pm_.c:25
#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
#, fuzzy
msgid "Options"
msgstr "Upplęsingar"
#: ../../Xconfig/main.pm_.c:121 ../../Xconfig/resolution_and_depth.pm_.c:268
-#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:281
+#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:275
#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
-#: ../../interactive.pm_.c:351 ../../interactive/http.pm_.c:104
+#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:104
#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
-#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:156
-#: ../../my_gtk.pm_.c:284 ../../my_gtk.pm_.c:307
-#: ../../standalone/drakbackup_.c:3324 ../../standalone/drakbackup_.c:3419
-#: ../../standalone/drakbackup_.c:3438
+#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:159
+#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310
+#: ../../standalone/drakbackup_.c:3972 ../../standalone/drakbackup_.c:4067
+#: ../../standalone/drakbackup_.c:4086
msgid "Ok"
msgstr "Í lagi"
#: ../../Xconfig/main.pm_.c:121 ../../diskdrake/dav.pm_.c:24
-#: ../../printerdrake.pm_.c:2933 ../../standalone/logdrake_.c:224
+#: ../../harddrake/ui.pm_.c:98 ../../printerdrake.pm_.c:3155
+#: ../../standalone/logdrake_.c:224
msgid "Quit"
msgstr "Hætta"
@@ -203,28 +204,28 @@ msgid ""
"%s"
msgstr "Halda núverandi IP stillingum"
-#: ../../Xconfig/monitor.pm_.c:91
+#: ../../Xconfig/monitor.pm_.c:93
msgid "Choose a monitor"
msgstr "Veldu skjá"
-#: ../../Xconfig/monitor.pm_.c:95
+#: ../../Xconfig/monitor.pm_.c:97
msgid "Plug'n Play"
msgstr ""
-#: ../../Xconfig/monitor.pm_.c:96 ../../mouse.pm_.c:45
+#: ../../Xconfig/monitor.pm_.c:98 ../../mouse.pm_.c:46
msgid "Generic"
msgstr ""
-#: ../../Xconfig/monitor.pm_.c:97 ../../harddrake/ui.pm_.c:36
+#: ../../Xconfig/monitor.pm_.c:99 ../../harddrake/ui.pm_.c:37
#, fuzzy
msgid "Vendor"
msgstr "Endurheimta"
-#: ../../Xconfig/monitor.pm_.c:107
+#: ../../Xconfig/monitor.pm_.c:109
msgid "Plug'n Play probing failed. Please choose a precise monitor"
msgstr ""
-#: ../../Xconfig/monitor.pm_.c:112
+#: ../../Xconfig/monitor.pm_.c:114
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -244,11 +245,11 @@ msgstr ""
"țađ er MJÖG MIKILVÆGT ađ velja ekki of hátt tíđnisviđ fyrir skjáinn. Hafir\n"
"țú einhverjar efasemdir, veldu țá lægri stillingar."
-#: ../../Xconfig/monitor.pm_.c:119
+#: ../../Xconfig/monitor.pm_.c:121
msgid "Horizontal refresh rate"
msgstr "Lárétt tíđni"
-#: ../../Xconfig/monitor.pm_.c:120
+#: ../../Xconfig/monitor.pm_.c:122
msgid "Vertical refresh rate"
msgstr "Lóđrétt tíđni"
@@ -285,36 +286,40 @@ msgstr "Veldu upplausn og fjölda lita"
msgid "Graphics card: %s"
msgstr "Skjákort: %s"
-#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1015
-#: ../../bootlook.pm_.c:334 ../../diskdrake/smbnfs_gtk.pm_.c:87
-#: ../../install_steps_gtk.pm_.c:412 ../../install_steps_gtk.pm_.c:470
-#: ../../install_steps_interactive.pm_.c:576 ../../interactive.pm_.c:142
-#: ../../interactive.pm_.c:351 ../../interactive/http.pm_.c:105
+#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1018
+#: ../../bootlook.pm_.c:338 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:406 ../../install_steps_gtk.pm_.c:464
+#: ../../install_steps_interactive.pm_.c:560 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:105
#: ../../interactive/newt.pm_.c:174 ../../interactive/stdio.pm_.c:39
-#: ../../interactive/stdio.pm_.c:143 ../../my_gtk.pm_.c:155
-#: ../../my_gtk.pm_.c:159 ../../my_gtk.pm_.c:284
-#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1990
-#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3278
-#: ../../standalone/drakbackup_.c:3311 ../../standalone/drakbackup_.c:3337
-#: ../../standalone/drakbackup_.c:3364 ../../standalone/drakbackup_.c:3391
-#: ../../standalone/drakbackup_.c:3451 ../../standalone/drakbackup_.c:3478
-#: ../../standalone/drakbackup_.c:3504 ../../standalone/drakconnect_.c:115
-#: ../../standalone/drakconnect_.c:147 ../../standalone/drakconnect_.c:289
-#: ../../standalone/drakconnect_.c:537 ../../standalone/drakconnect_.c:679
-#: ../../standalone/drakfloppy_.c:234 ../../standalone/drakfloppy_.c:383
-#: ../../standalone/drakfont_.c:970 ../../standalone/drakgw_.c:598
-#: ../../standalone/logdrake_.c:224 ../../standalone/logdrake_.c:528
-#: ../../standalone/tinyfirewall_.c:64
+#: ../../interactive/stdio.pm_.c:143 ../../my_gtk.pm_.c:158
+#: ../../my_gtk.pm_.c:162 ../../my_gtk.pm_.c:287
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:2124
+#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3926
+#: ../../standalone/drakbackup_.c:3959 ../../standalone/drakbackup_.c:3985
+#: ../../standalone/drakbackup_.c:4012 ../../standalone/drakbackup_.c:4039
+#: ../../standalone/drakbackup_.c:4099 ../../standalone/drakbackup_.c:4126
+#: ../../standalone/drakbackup_.c:4156 ../../standalone/drakbackup_.c:4182
+#: ../../standalone/drakconnect_.c:115 ../../standalone/drakconnect_.c:147
+#: ../../standalone/drakconnect_.c:289 ../../standalone/drakconnect_.c:537
+#: ../../standalone/drakconnect_.c:679 ../../standalone/drakfloppy_.c:234
+#: ../../standalone/drakfloppy_.c:383 ../../standalone/drakfont_.c:970
+#: ../../standalone/drakgw_.c:536 ../../standalone/logdrake_.c:224
+#: ../../standalone/logdrake_.c:526
msgid "Cancel"
msgstr "Hætta viđ"
-#: ../../Xconfig/test.pm_.c:26
+#: ../../Xconfig/test.pm_.c:30
+msgid "Test of the configuration"
+msgstr "Prófunar skilgreining"
+
+#: ../../Xconfig/test.pm_.c:31
msgid "Do you want to test the configuration?"
msgstr "Viltu prófa skilgreininguna"
-#: ../../Xconfig/test.pm_.c:26
-msgid "Test of the configuration"
-msgstr "Prófunar skilgreining"
+#: ../../Xconfig/test.pm_.c:31
+msgid "Warning: testing this graphic card may freeze your computer"
+msgstr ""
#: ../../Xconfig/various.pm_.c:29
#, c-format
@@ -453,29 +458,25 @@ msgstr ""
msgid "Yaboot"
msgstr "Rót"
-#: ../../any.pm_.c:158 ../../any.pm_.c:190
+#: ../../any.pm_.c:159 ../../any.pm_.c:190
#, fuzzy
msgid "Bootloader main options"
msgstr "Stillingar LILO"
-#: ../../any.pm_.c:159 ../../any.pm_.c:191
+#: ../../any.pm_.c:160 ../../any.pm_.c:191
#, fuzzy
msgid "Bootloader to use"
msgstr "Stillingar LILO"
-#: ../../any.pm_.c:161
+#: ../../any.pm_.c:162
#, fuzzy
msgid "Bootloader installation"
msgstr "Stillingar LILO"
-#: ../../any.pm_.c:163 ../../any.pm_.c:193
+#: ../../any.pm_.c:164 ../../any.pm_.c:193
msgid "Boot device"
msgstr "Ræsitæki"
-#: ../../any.pm_.c:164
-msgid "LBA (doesn't work on old BIOSes)"
-msgstr ""
-
#: ../../any.pm_.c:165
msgid "Compact"
msgstr "Samțjappađ"
@@ -492,16 +493,17 @@ msgstr "Skjáhamur"
msgid "Delay before booting default image"
msgstr "Töf áđur en sjálfgefin ræsing byrjar"
-#: ../../any.pm_.c:170 ../../any.pm_.c:786
+#: ../../any.pm_.c:170 ../../any.pm_.c:788
#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1111 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:743 ../../printerdrake.pm_.c:858
-#: ../../standalone/drakconnect_.c:624 ../../standalone/drakconnect_.c:649
+#: ../../install_steps_interactive.pm_.c:1096 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:850 ../../printerdrake.pm_.c:965
+#: ../../standalone/drakbackup_.c:3528 ../../standalone/drakconnect_.c:624
+#: ../../standalone/drakconnect_.c:649
msgid "Password"
msgstr "Lykilorđ"
-#: ../../any.pm_.c:171 ../../any.pm_.c:787
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../any.pm_.c:171 ../../any.pm_.c:789
+#: ../../install_steps_interactive.pm_.c:1097
msgid "Password (again)"
msgstr "Lykilorđ (aftur)"
@@ -536,14 +538,14 @@ msgid ""
msgstr ""
"Valkosturinn ``Takmarka alla rofa á skipanalínu'' gerir ekkert án lykilorđs"
-#: ../../any.pm_.c:184 ../../any.pm_.c:762
-#: ../../diskdrake/interactive.pm_.c:1180
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../any.pm_.c:184 ../../any.pm_.c:764
+#: ../../diskdrake/interactive.pm_.c:1191
+#: ../../install_steps_interactive.pm_.c:1091
msgid "Please try again"
msgstr "Reyndu aftur"
-#: ../../any.pm_.c:184 ../../any.pm_.c:762
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../any.pm_.c:184 ../../any.pm_.c:764
+#: ../../install_steps_interactive.pm_.c:1091
msgid "The passwords do not match"
msgstr "Mismunandi lykilorđ"
@@ -590,16 +592,16 @@ msgstr ""
"Hérna eru núverandi stillingar LILO .\n"
"Țú getur bætt viđ fleirum eđa breytt țessum."
-#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1483
-#: ../../standalone/drakbackup_.c:1596 ../../standalone/drakfont_.c:1011
+#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1558
+#: ../../standalone/drakbackup_.c:1671 ../../standalone/drakfont_.c:1011
#: ../../standalone/drakfont_.c:1054
msgid "Add"
msgstr "Bæta viđ"
-#: ../../any.pm_.c:257 ../../any.pm_.c:774 ../../diskdrake/dav.pm_.c:60
+#: ../../any.pm_.c:257 ../../any.pm_.c:776 ../../diskdrake/dav.pm_.c:64
#: ../../diskdrake/hd_gtk.pm_.c:153 ../../diskdrake/removable.pm_.c:27
#: ../../diskdrake/smbnfs_gtk.pm_.c:88 ../../interactive/http.pm_.c:153
-#: ../../standalone/drakbackup_.c:2696
+#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2772
msgid "Done"
msgstr "Búiđ"
@@ -612,7 +614,7 @@ msgstr "Breyta RAID"
msgid "Which type of entry do you want to add?"
msgstr "Hverju viltu bæta viđ?"
-#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1630
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1705
msgid "Linux"
msgstr "Linux"
@@ -709,13 +711,13 @@ msgstr "Er kannski eitt enn í vélinni?"
msgid "Do you have any %s interfaces?"
msgstr "Eru einhver %s tengi í tölvunni?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:821 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:283
+#: ../../any.pm_.c:660 ../../any.pm_.c:823 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:286
msgid "No"
msgstr "Nei"
-#: ../../any.pm_.c:660 ../../any.pm_.c:820 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:283
+#: ../../any.pm_.c:660 ../../any.pm_.c:822 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:286
msgid "Yes"
msgstr "Já"
@@ -814,38 +816,46 @@ msgstr ""
msgid "access to administrative files"
msgstr ""
-#: ../../any.pm_.c:758
+#: ../../any.pm_.c:754
+msgid "access to network tools"
+msgstr ""
+
+#: ../../any.pm_.c:755
+msgid "access to compilation tools"
+msgstr ""
+
+#: ../../any.pm_.c:760
#, c-format
msgid "(already added %s)"
msgstr "(%s er nú țegar til)"
-#: ../../any.pm_.c:763
+#: ../../any.pm_.c:765
msgid "This password is too simple"
msgstr "Țetta lykilorđ er of einfalt"
-#: ../../any.pm_.c:764
+#: ../../any.pm_.c:766
msgid "Please give a user name"
msgstr "Vinsamlega sláđu inn notandanafn"
-#: ../../any.pm_.c:765
+#: ../../any.pm_.c:767
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr "Notandanafniđ má bara innihalda litla stafi, tölustafi, `-' og `_'"
-#: ../../any.pm_.c:766
+#: ../../any.pm_.c:768
#, fuzzy
msgid "The user name is too long"
msgstr "Țetta notandanafn er nú țegar til"
-#: ../../any.pm_.c:767
+#: ../../any.pm_.c:769
msgid "This user name is already added"
msgstr "Țetta notandanafn er nú țegar til"
-#: ../../any.pm_.c:771
+#: ../../any.pm_.c:773
msgid "Add user"
msgstr "Bæta viđ notanda"
-#: ../../any.pm_.c:772
+#: ../../any.pm_.c:774
#, c-format
msgid ""
"Enter a user\n"
@@ -854,32 +864,32 @@ msgstr ""
"Sláđu inn notanda\n"
"%s"
-#: ../../any.pm_.c:773
+#: ../../any.pm_.c:775
msgid "Accept user"
msgstr "Samțykkja notanda"
-#: ../../any.pm_.c:784
+#: ../../any.pm_.c:786
msgid "Real name"
msgstr "Nafn notanda"
-#: ../../any.pm_.c:785 ../../printerdrake.pm_.c:742
-#: ../../printerdrake.pm_.c:857
+#: ../../any.pm_.c:787 ../../printerdrake.pm_.c:849
+#: ../../printerdrake.pm_.c:964
msgid "User name"
msgstr "Notandanafn:"
-#: ../../any.pm_.c:788
+#: ../../any.pm_.c:790
msgid "Shell"
msgstr "Skel"
-#: ../../any.pm_.c:790
+#: ../../any.pm_.c:792
msgid "Icon"
msgstr ""
-#: ../../any.pm_.c:817
+#: ../../any.pm_.c:819
msgid "Autologin"
msgstr ""
-#: ../../any.pm_.c:818
+#: ../../any.pm_.c:820
#, fuzzy
msgid ""
"I can set up your computer to automatically log on one user.\n"
@@ -888,59 +898,59 @@ msgstr ""
"Ég get stillt tölvuna țína til ađ kveikja sjálfvirkt á X viđ ræsingu\n"
"Vilt țú kveikja á X viđ endurræsingu?"
-#: ../../any.pm_.c:822
+#: ../../any.pm_.c:824
#, fuzzy
msgid "Choose the default user:"
msgstr "Veldu nęja stærđ"
-#: ../../any.pm_.c:823
+#: ../../any.pm_.c:825
#, fuzzy
msgid "Choose the window manager to run:"
msgstr "Veldu forritiđ sem țú vilt nota"
-#: ../../any.pm_.c:838
+#: ../../any.pm_.c:840
#, fuzzy
msgid "Please choose a language to use."
msgstr "Hvernig mús ertu međ?"
-#: ../../any.pm_.c:840
+#: ../../any.pm_.c:842
msgid ""
"Mandrake Linux can support multiple languages. Select\n"
"the languages you would like to install. They will be available\n"
"when your installation is complete and you restart your system."
msgstr ""
-#: ../../any.pm_.c:854 ../../install_steps_interactive.pm_.c:708
+#: ../../any.pm_.c:856 ../../install_steps_interactive.pm_.c:692
#: ../../standalone/drakxtv_.c:73
msgid "All"
msgstr ""
-#: ../../any.pm_.c:974
+#: ../../any.pm_.c:977
#, fuzzy
msgid "Allow all users"
msgstr "Bæta viđ notanda"
-#: ../../any.pm_.c:974
+#: ../../any.pm_.c:977
#, fuzzy
msgid "No sharing"
msgstr "Stađbundinn prentari"
-#: ../../any.pm_.c:984 ../../standalone.pm_.c:57
+#: ../../any.pm_.c:987 ../../install_any.pm_.c:1183 ../../standalone.pm_.c:58
#, fuzzy, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "Hvađa pakka viltu setja inn"
-#: ../../any.pm_.c:987
+#: ../../any.pm_.c:990
msgid ""
"You can export using NFS or Samba. Please select which you'd like to use."
msgstr ""
-#: ../../any.pm_.c:995 ../../standalone.pm_.c:61
+#: ../../any.pm_.c:998 ../../install_any.pm_.c:1188 ../../standalone.pm_.c:63
#, c-format
msgid "Mandatory package %s is missing"
msgstr ""
-#: ../../any.pm_.c:1001
+#: ../../any.pm_.c:1004
msgid ""
"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
@@ -949,55 +959,55 @@ msgid ""
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:1015
+#: ../../any.pm_.c:1018
msgid "Launch userdrake"
msgstr ""
-#: ../../any.pm_.c:1017
+#: ../../any.pm_.c:1020
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
msgstr ""
-#: ../../any.pm_.c:1068
+#: ../../any.pm_.c:1071
msgid "Welcome To Crackers"
msgstr "Velkomin(n) í tölvuțrjótinn"
-#: ../../any.pm_.c:1069
+#: ../../any.pm_.c:1072
msgid "Poor"
msgstr "Lélegt"
-#: ../../any.pm_.c:1070 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1073 ../../mouse.pm_.c:31
msgid "Standard"
msgstr ""
-#: ../../any.pm_.c:1071
+#: ../../any.pm_.c:1074
msgid "High"
msgstr "Hátt"
-#: ../../any.pm_.c:1072
+#: ../../any.pm_.c:1075
#, fuzzy
msgid "Higher"
msgstr "Hátt"
-#: ../../any.pm_.c:1073
+#: ../../any.pm_.c:1076
msgid "Paranoid"
msgstr "Taugaveiklađ"
-#: ../../any.pm_.c:1076
+#: ../../any.pm_.c:1079
msgid ""
"This level is to be used with care. It makes your system more easy to use,\n"
"but very sensitive: it must not be used for a machine connected to others\n"
"or to the Internet. There is no password access."
msgstr ""
-#: ../../any.pm_.c:1079
+#: ../../any.pm_.c:1082
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
msgstr ""
-#: ../../any.pm_.c:1080
+#: ../../any.pm_.c:1083
#, fuzzy
msgid ""
"This is the standard security recommended for a computer that will be used "
@@ -1006,13 +1016,13 @@ msgstr ""
"Țetta er hiđ hefđbundna öryggi sem mælt er međ fyrir tölvu sem verđur notuđ\n"
"til ađ tengja viđ netiđ sem biđill. Öryggisathuganir eru núna í gangi. "
-#: ../../any.pm_.c:1081
+#: ../../any.pm_.c:1084
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr ""
-#: ../../any.pm_.c:1082
+#: ../../any.pm_.c:1085
#, fuzzy
msgid ""
"With this security level, the use of this system as a server becomes "
@@ -1026,7 +1036,7 @@ msgstr ""
"Öryggiđ er nógu nógu mikiđ til ađ taka viđ fyrirspurnum frá\n"
"mörgum biđlum. "
-#: ../../any.pm_.c:1085
+#: ../../any.pm_.c:1088
#, fuzzy
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
@@ -1035,32 +1045,32 @@ msgstr ""
"Kerfiđ er komiđ á 4. stig og er nú alveg lokađ.\n"
"Öryggiđ er á hæsta stigi."
-#: ../../any.pm_.c:1091
+#: ../../any.pm_.c:1094
#, fuzzy
msgid "DrakSec Basic Options"
msgstr "Upplęsingar"
-#: ../../any.pm_.c:1092
+#: ../../any.pm_.c:1095
#, fuzzy
msgid "Please choose the desired security level"
msgstr "Hvernig mús ertu međ?"
-#: ../../any.pm_.c:1095
+#: ../../any.pm_.c:1098
#, fuzzy
msgid "Security level"
msgstr "Stilli öryggisțrep"
-#: ../../any.pm_.c:1097
+#: ../../any.pm_.c:1100
#, fuzzy
msgid "Use libsafe for servers"
msgstr "Veldu valmöguleika fyrir țjón"
-#: ../../any.pm_.c:1098
+#: ../../any.pm_.c:1101
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
-#: ../../any.pm_.c:1099
+#: ../../any.pm_.c:1102
msgid "Security Administrator (login or email)"
msgstr ""
@@ -1104,57 +1114,57 @@ msgstr ""
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:935
+#: ../../bootloader.pm_.c:932
msgid "Welcome to GRUB the operating system chooser!"
msgstr ""
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:938
+#: ../../bootloader.pm_.c:935
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr ""
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:941
+#: ../../bootloader.pm_.c:938
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr ""
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:941
msgid "commands before booting, or 'c' for a command-line."
msgstr ""
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:947
+#: ../../bootloader.pm_.c:944
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr ""
-#: ../../bootloader.pm_.c:951
+#: ../../bootloader.pm_.c:948
msgid "not enough room in /boot"
msgstr ""
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1051
+#: ../../bootloader.pm_.c:1048
msgid "Desktop"
msgstr ""
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1053
+#: ../../bootloader.pm_.c:1050
msgid "Start Menu"
msgstr ""
-#: ../../bootloader.pm_.c:1072
+#: ../../bootloader.pm_.c:1069
#, fuzzy, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "Hvert viltu setja ræsistjórann?"
-#: ../../bootlook.pm_.c:45
+#: ../../bootlook.pm_.c:45 ../../standalone/draksplash_.c:25
msgid "no help implemented yet.\n"
msgstr ""
@@ -1163,8 +1173,8 @@ msgstr ""
msgid "Boot Style Configuration"
msgstr "Lokauppsetning"
-#: ../../bootlook.pm_.c:78 ../../harddrake/ui.pm_.c:59
-#: ../../harddrake/ui.pm_.c:60 ../../standalone/drakfloppy_.c:81
+#: ../../bootlook.pm_.c:78 ../../harddrake/ui.pm_.c:62
+#: ../../harddrake/ui.pm_.c:63 ../../standalone/drakfloppy_.c:81
#: ../../standalone/logdrake_.c:101
#, fuzzy
msgid "/_File"
@@ -1175,7 +1185,7 @@ msgstr "Skrár:\n"
msgid "/File/_Quit"
msgstr ""
-#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:60
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:63
#: ../../standalone/drakfloppy_.c:82 ../../standalone/logdrake_.c:107
msgid "<control>Q"
msgstr ""
@@ -1221,119 +1231,125 @@ msgstr "Setja kerfiđ inn"
msgid "Display theme under console"
msgstr ""
-#: ../../bootlook.pm_.c:166
+#: ../../bootlook.pm_.c:145
+#, fuzzy
+msgid "Create new theme"
+msgstr "Búa til nęja disksneiđ"
+
+#: ../../bootlook.pm_.c:169
msgid "Can't create Bootsplash preview"
msgstr ""
-#: ../../bootlook.pm_.c:166 ../../bootlook.pm_.c:184 ../../bootlook.pm_.c:187
-#: ../../bootlook.pm_.c:190 ../../bootlook.pm_.c:220 ../../bootlook.pm_.c:222
-#: ../../bootlook.pm_.c:232 ../../bootlook.pm_.c:241 ../../bootlook.pm_.c:248
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:336
-#: ../../diskdrake/interactive.pm_.c:351 ../../diskdrake/interactive.pm_.c:464
-#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../bootlook.pm_.c:169 ../../bootlook.pm_.c:187 ../../bootlook.pm_.c:190
+#: ../../bootlook.pm_.c:193 ../../bootlook.pm_.c:223 ../../bootlook.pm_.c:225
+#: ../../bootlook.pm_.c:235 ../../bootlook.pm_.c:244 ../../bootlook.pm_.c:251
+#: ../../diskdrake/dav.pm_.c:73 ../../diskdrake/hd_gtk.pm_.c:116
+#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/interactive.pm_.c:355
+#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/interactive.pm_.c:474
+#: ../../diskdrake/smbnfs_gtk.pm_.c:45 ../../fsedit.pm_.c:239
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:365 ../../interactive/http.pm_.c:119
-#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:80
+#: ../../interactive/http.pm_.c:119 ../../interactive/http.pm_.c:120
+#: ../../standalone/draksplash_.c:32
msgid "Error"
msgstr "Villa"
-#: ../../bootlook.pm_.c:183
+#: ../../bootlook.pm_.c:186
#, c-format
msgid "Backup %s to %s.old"
msgstr ""
-#: ../../bootlook.pm_.c:184
+#: ../../bootlook.pm_.c:187
msgid "unable to backup lilo message"
msgstr ""
-#: ../../bootlook.pm_.c:186
+#: ../../bootlook.pm_.c:189
#, c-format
msgid "Copy %s to %s"
msgstr ""
-#: ../../bootlook.pm_.c:187
+#: ../../bootlook.pm_.c:190
msgid "can't change lilo message"
msgstr ""
-#: ../../bootlook.pm_.c:190
+#: ../../bootlook.pm_.c:193
msgid "Lilo message not found"
msgstr ""
-#: ../../bootlook.pm_.c:220
+#: ../../bootlook.pm_.c:223
msgid "Can't write /etc/sysconfig/bootsplash."
msgstr ""
-#: ../../bootlook.pm_.c:220
+#: ../../bootlook.pm_.c:223
#, fuzzy, c-format
msgid "Write %s"
msgstr "XFree %s"
-#: ../../bootlook.pm_.c:222
+#: ../../bootlook.pm_.c:225
msgid ""
"Can't write /etc/sysconfig/bootsplash\n"
"File not found."
msgstr ""
-#: ../../bootlook.pm_.c:233
+#: ../../bootlook.pm_.c:236
#, c-format
msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
msgstr ""
-#: ../../bootlook.pm_.c:236
+#: ../../bootlook.pm_.c:239
#, c-format
-msgid "Make initrd 'mkinird -f /boot/initrd-%s.img %s'."
+msgid "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
msgstr ""
-#: ../../bootlook.pm_.c:242
+#: ../../bootlook.pm_.c:245
msgid ""
"Can't relaunch LiLo!\n"
"Launch \"lilo\" as root in command line to complete LiLo theme installation."
msgstr ""
-#: ../../bootlook.pm_.c:246
+#: ../../bootlook.pm_.c:249
msgid "Relaunch 'lilo'"
msgstr ""
-#: ../../bootlook.pm_.c:248
+#: ../../bootlook.pm_.c:251 ../../standalone/draksplash_.c:161
+#: ../../standalone/draksplash_.c:330 ../../standalone/draksplash_.c:454
#, fuzzy
msgid "Notice"
msgstr "tæki"
-#: ../../bootlook.pm_.c:249
+#: ../../bootlook.pm_.c:252
msgid "LiLo and Bootsplash themes installation successfull"
msgstr ""
-#: ../../bootlook.pm_.c:249
+#: ../../bootlook.pm_.c:252
#, fuzzy
msgid "Theme installation failed!"
msgstr "Veldu innsetningarflokk"
-#: ../../bootlook.pm_.c:258
+#: ../../bootlook.pm_.c:261
#, fuzzy, c-format
msgid ""
"You are currently using %s as your boot manager.\n"
"Click on Configure to launch the setup wizard."
msgstr "Veldu prenttengingu"
-#: ../../bootlook.pm_.c:260 ../../standalone/drakbackup_.c:2352
-#: ../../standalone/drakbackup_.c:2362 ../../standalone/drakbackup_.c:2372
-#: ../../standalone/drakbackup_.c:2380 ../../standalone/drakgw_.c:592
-#: ../../standalone/tinyfirewall_.c:58
+#: ../../bootlook.pm_.c:263 ../../standalone/drakbackup_.c:2427
+#: ../../standalone/drakbackup_.c:2437 ../../standalone/drakbackup_.c:2447
+#: ../../standalone/drakbackup_.c:2455 ../../standalone/drakgw_.c:530
#, fuzzy
msgid "Configure"
msgstr "Stilla X"
-#: ../../bootlook.pm_.c:267
+#: ../../bootlook.pm_.c:270
#, fuzzy
msgid "Splash selection"
msgstr "Val á pakkahóp"
-#: ../../bootlook.pm_.c:270
+#: ../../bootlook.pm_.c:273
#, fuzzy
msgid "Themes"
msgstr "Tré"
-#: ../../bootlook.pm_.c:272
+#: ../../bootlook.pm_.c:275
msgid ""
"\n"
"Select a theme for\n"
@@ -1342,44 +1358,44 @@ msgid ""
"them separatly"
msgstr ""
-#: ../../bootlook.pm_.c:275
+#: ../../bootlook.pm_.c:278
msgid "Lilo screen"
msgstr ""
-#: ../../bootlook.pm_.c:279
+#: ../../bootlook.pm_.c:283
msgid "Bootsplash"
msgstr ""
-#: ../../bootlook.pm_.c:314
+#: ../../bootlook.pm_.c:318
msgid "System mode"
msgstr ""
-#: ../../bootlook.pm_.c:316
+#: ../../bootlook.pm_.c:320
msgid "Launch the graphical environment when your system starts"
msgstr ""
-#: ../../bootlook.pm_.c:321
+#: ../../bootlook.pm_.c:325
msgid "No, I don't want autologin"
msgstr ""
-#: ../../bootlook.pm_.c:323
+#: ../../bootlook.pm_.c:327
msgid "Yes, I want autologin with this (user, desktop)"
msgstr ""
-#: ../../bootlook.pm_.c:333 ../../network/netconnect.pm_.c:101
+#: ../../bootlook.pm_.c:337 ../../network/netconnect.pm_.c:101
#: ../../standalone/drakTermServ_.c:173 ../../standalone/drakTermServ_.c:300
-#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:3513
-#: ../../standalone/drakbackup_.c:4290 ../../standalone/drakconnect_.c:108
+#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4191
+#: ../../standalone/drakbackup_.c:4952 ../../standalone/drakconnect_.c:108
#: ../../standalone/drakconnect_.c:140 ../../standalone/drakconnect_.c:296
#: ../../standalone/drakconnect_.c:435 ../../standalone/drakconnect_.c:521
#: ../../standalone/drakconnect_.c:564 ../../standalone/drakconnect_.c:667
#: ../../standalone/drakfloppy_.c:376 ../../standalone/drakfont_.c:612
#: ../../standalone/drakfont_.c:799 ../../standalone/drakfont_.c:876
-#: ../../standalone/drakfont_.c:963 ../../standalone/logdrake_.c:521
+#: ../../standalone/drakfont_.c:963 ../../standalone/logdrake_.c:519
msgid "OK"
msgstr ""
-#: ../../bootlook.pm_.c:403
+#: ../../bootlook.pm_.c:407
#, c-format
msgid "can not open /etc/inittab for reading: %s"
msgstr ""
@@ -1485,48 +1501,53 @@ msgstr "rađtengd"
msgid "United States"
msgstr ""
-#: ../../detect_devices.pm_.c:599 ../../detect_devices.pm_.c:641
-#: ../../detect_devices.pm_.c:803
-msgid "Unknown Model"
-msgstr ""
-
#: ../../diskdrake/dav.pm_.c:23
msgid "New"
msgstr "Nę"
-#: ../../diskdrake/dav.pm_.c:57
+#: ../../diskdrake/dav.pm_.c:59 ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/smbnfs_gtk.pm_.c:81
+msgid "Unmount"
+msgstr "Aftengja"
+
+#: ../../diskdrake/dav.pm_.c:60 ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/smbnfs_gtk.pm_.c:82
+msgid "Mount"
+msgstr "Tengipunktur"
+
+#: ../../diskdrake/dav.pm_.c:61
#, fuzzy
msgid "Server"
msgstr "netțjónn"
-#: ../../diskdrake/dav.pm_.c:58 ../../diskdrake/interactive.pm_.c:375
-#: ../../diskdrake/interactive.pm_.c:558 ../../diskdrake/interactive.pm_.c:585
+#: ../../diskdrake/dav.pm_.c:62 ../../diskdrake/interactive.pm_.c:379
+#: ../../diskdrake/interactive.pm_.c:568 ../../diskdrake/interactive.pm_.c:595
#: ../../diskdrake/removable.pm_.c:24 ../../diskdrake/removable_gtk.pm_.c:15
#: ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr "Tengipunktur"
-#: ../../diskdrake/dav.pm_.c:68
+#: ../../diskdrake/dav.pm_.c:81
#, fuzzy
msgid "Please enter the WebDAV server URL"
msgstr "Hvernig mús ertu međ?"
-#: ../../diskdrake/dav.pm_.c:71
+#: ../../diskdrake/dav.pm_.c:84
msgid "The URL must begin with http:// or https://"
msgstr ""
-#: ../../diskdrake/dav.pm_.c:92
+#: ../../diskdrake/dav.pm_.c:105
#, fuzzy
msgid "Server: "
msgstr "netțjónn"
-#: ../../diskdrake/dav.pm_.c:93 ../../diskdrake/interactive.pm_.c:435
-#: ../../diskdrake/interactive.pm_.c:1079
-#: ../../diskdrake/interactive.pm_.c:1153
+#: ../../diskdrake/dav.pm_.c:106 ../../diskdrake/interactive.pm_.c:440
+#: ../../diskdrake/interactive.pm_.c:1089
+#: ../../diskdrake/interactive.pm_.c:1164
msgid "Mount point: "
msgstr "Tengipunktur: "
-#: ../../diskdrake/dav.pm_.c:94 ../../diskdrake/interactive.pm_.c:1159
+#: ../../diskdrake/dav.pm_.c:107 ../../diskdrake/interactive.pm_.c:1170
#, fuzzy, c-format
msgid "Options: %s"
msgstr "Rótardisksneiđ"
@@ -1535,8 +1556,9 @@ msgstr "Rótardisksneiđ"
msgid "Please make a backup of your data first"
msgstr "Vinsamlega taktu fyrst afrit af öllum gögnum"
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:924
-#: ../../diskdrake/interactive.pm_.c:933 ../../diskdrake/interactive.pm_.c:999
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:934
+#: ../../diskdrake/interactive.pm_.c:943
+#: ../../diskdrake/interactive.pm_.c:1009
msgid "Read carefully!"
msgstr "Lestu vandlega!"
@@ -1573,10 +1595,15 @@ msgid "Please click on a partition"
msgstr "Smelltu á disksneiđ"
#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
-#: ../../install_steps_gtk.pm_.c:471
+#: ../../install_steps_gtk.pm_.c:465
msgid "Details"
msgstr "Ítarleg atriđi"
+#: ../../diskdrake/hd_gtk.pm_.c:252
+#, fuzzy
+msgid "No hard drives found"
+msgstr "Stađbundinn prentari"
+
#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Ext2"
msgstr "Ext2"
@@ -1602,13 +1629,13 @@ msgstr ""
msgid "Swap"
msgstr "Diskminni"
-#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1105
msgid "Empty"
msgstr "Tóm"
-#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:331
-#: ../../install_steps_gtk.pm_.c:389 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1679
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:325
+#: ../../install_steps_gtk.pm_.c:383 ../../mouse.pm_.c:165
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1754
msgid "Other"
msgstr "Annađ"
@@ -1616,12 +1643,12 @@ msgstr "Annađ"
msgid "Filesystem types:"
msgstr "Tegundir skráakerfa:"
-#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:397
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:402
msgid "Create"
msgstr "Búa til"
-#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:376
-#: ../../diskdrake/interactive.pm_.c:521 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:380
+#: ../../diskdrake/interactive.pm_.c:531 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "Tegund"
@@ -1631,7 +1658,7 @@ msgstr "Tegund"
msgid "Use ``%s'' instead"
msgstr "Nota ``%s'' í stađinn"
-#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:389
msgid "Delete"
msgstr "Eyđa"
@@ -1639,84 +1666,84 @@ msgstr "Eyđa"
msgid "Use ``Unmount'' first"
msgstr "Nota ``Aftengja'' fyrst"
-#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:513
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:518
#, fuzzy, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
msgstr "öll gögn á țessari disksneiđ tapast"
-#: ../../diskdrake/interactive.pm_.c:173
+#: ../../diskdrake/interactive.pm_.c:174
#, fuzzy
msgid "Choose a partition"
msgstr "Veldu ađgerđ"
-#: ../../diskdrake/interactive.pm_.c:173
+#: ../../diskdrake/interactive.pm_.c:174
#, fuzzy
msgid "Choose another partition"
msgstr "Búa til nęja disksneiđ"
-#: ../../diskdrake/interactive.pm_.c:198
+#: ../../diskdrake/interactive.pm_.c:199
#, fuzzy
msgid "Exit"
msgstr "Ext2"
-#: ../../diskdrake/interactive.pm_.c:220
+#: ../../diskdrake/interactive.pm_.c:221
msgid "Toggle to expert mode"
msgstr "Færa í snillingsham"
-#: ../../diskdrake/interactive.pm_.c:220
+#: ../../diskdrake/interactive.pm_.c:221
msgid "Toggle to normal mode"
msgstr "Fara í venjulegan ham"
-#: ../../diskdrake/interactive.pm_.c:220
+#: ../../diskdrake/interactive.pm_.c:221
msgid "Undo"
msgstr "Endurheimta"
-#: ../../diskdrake/interactive.pm_.c:239
+#: ../../diskdrake/interactive.pm_.c:240
msgid "Continue anyway?"
msgstr "Halda samt áfram?"
-#: ../../diskdrake/interactive.pm_.c:244
+#: ../../diskdrake/interactive.pm_.c:245
msgid "Quit without saving"
msgstr "Hætta án țess ađ vista"
-#: ../../diskdrake/interactive.pm_.c:244
+#: ../../diskdrake/interactive.pm_.c:245
msgid "Quit without writing the partition table?"
msgstr "Hætta án țess ađ skrifa sneiđatöfluna?"
-#: ../../diskdrake/interactive.pm_.c:249
+#: ../../diskdrake/interactive.pm_.c:250
#, fuzzy
msgid "Do you want to save /etc/fstab modifications"
msgstr "Viltu prófa skilgreininguna"
-#: ../../diskdrake/interactive.pm_.c:261
+#: ../../diskdrake/interactive.pm_.c:263
msgid "Auto allocate"
msgstr "Ráđstafa skjálfkrafa"
-#: ../../diskdrake/interactive.pm_.c:261
+#: ../../diskdrake/interactive.pm_.c:263
msgid "Clear all"
msgstr "Hreinsa allt"
-#: ../../diskdrake/interactive.pm_.c:261
+#: ../../diskdrake/interactive.pm_.c:263
#: ../../install_steps_interactive.pm_.c:214
#, fuzzy
msgid "More"
msgstr "Færa"
-#: ../../diskdrake/interactive.pm_.c:264
+#: ../../diskdrake/interactive.pm_.c:267
#, fuzzy
msgid "Hard drive information"
msgstr "Sęna upplęsingar"
-#: ../../diskdrake/interactive.pm_.c:294
+#: ../../diskdrake/interactive.pm_.c:298
msgid "All primary partitions are used"
msgstr "Öll ađal skráarsniđ eru í notkun"
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:299
msgid "I can't add any more partition"
msgstr "Get ekki bætt viđ disksneiđum"
-#: ../../diskdrake/interactive.pm_.c:296
+#: ../../diskdrake/interactive.pm_.c:300
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -1724,36 +1751,36 @@ msgstr ""
"Til ađ fá fleiri disksneiđar, vinsamlega eyddu einni til ađ búa til "
"viđbótarsneiđ"
-#: ../../diskdrake/interactive.pm_.c:306
+#: ../../diskdrake/interactive.pm_.c:310
#, fuzzy
msgid "Save partition table"
msgstr "Skrifa sneiđatöflu"
-#: ../../diskdrake/interactive.pm_.c:307
+#: ../../diskdrake/interactive.pm_.c:311
#, fuzzy
msgid "Restore partition table"
msgstr "Bjarga sneiđatöflunni"
-#: ../../diskdrake/interactive.pm_.c:308
+#: ../../diskdrake/interactive.pm_.c:312
msgid "Rescue partition table"
msgstr "Bjarga sneiđatöflunni"
-#: ../../diskdrake/interactive.pm_.c:310
+#: ../../diskdrake/interactive.pm_.c:314
#, fuzzy
msgid "Reload partition table"
msgstr "Bjarga sneiđatöflunni"
# ## skrytid
-#: ../../diskdrake/interactive.pm_.c:315
+#: ../../diskdrake/interactive.pm_.c:319
#, fuzzy
msgid "Removable media automounting"
msgstr "Sjálfvirk tenging aukatækja"
-#: ../../diskdrake/interactive.pm_.c:324 ../../diskdrake/interactive.pm_.c:344
+#: ../../diskdrake/interactive.pm_.c:328 ../../diskdrake/interactive.pm_.c:348
msgid "Select file"
msgstr "Veljiđ skrá"
-#: ../../diskdrake/interactive.pm_.c:331
+#: ../../diskdrake/interactive.pm_.c:335
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1761,11 +1788,11 @@ msgstr ""
"Disksneiđin sem var tekin sem afrit er ekki af sömu stærđ\n"
"Halda áfram?"
-#: ../../diskdrake/interactive.pm_.c:345
+#: ../../diskdrake/interactive.pm_.c:349
msgid "Warning"
msgstr "Ađvörun"
-#: ../../diskdrake/interactive.pm_.c:346
+#: ../../diskdrake/interactive.pm_.c:350
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1773,256 +1800,248 @@ msgstr ""
"Settu diskling í drifiđ\n"
"Öll gögn á țessum diskling tapast"
-#: ../../diskdrake/interactive.pm_.c:357
+#: ../../diskdrake/interactive.pm_.c:361
msgid "Trying to rescue partition table"
msgstr "Reyni ađ endurheimta disksneiđatöfluna"
-#: ../../diskdrake/interactive.pm_.c:363
+#: ../../diskdrake/interactive.pm_.c:367
#, fuzzy
msgid "Detailed information"
msgstr "Sęna upplęsingar"
-#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:652
+#: ../../diskdrake/interactive.pm_.c:382 ../../diskdrake/interactive.pm_.c:662
msgid "Resize"
msgstr "Endurstækka"
-#: ../../diskdrake/interactive.pm_.c:379 ../../diskdrake/interactive.pm_.c:705
+#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/interactive.pm_.c:715
msgid "Move"
msgstr "Færa"
-#: ../../diskdrake/interactive.pm_.c:380
+#: ../../diskdrake/interactive.pm_.c:384
msgid "Format"
msgstr "Forsníđa"
-#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/smbnfs_gtk.pm_.c:82
-msgid "Mount"
-msgstr "Tengipunktur"
-
-#: ../../diskdrake/interactive.pm_.c:382
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Add to RAID"
msgstr "Bæta viđ RAID"
-#: ../../diskdrake/interactive.pm_.c:383
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Add to LVM"
msgstr "Bæta viđ LVM"
-#: ../../diskdrake/interactive.pm_.c:384 ../../diskdrake/smbnfs_gtk.pm_.c:81
-msgid "Unmount"
-msgstr "Aftengja"
-
-#: ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/interactive.pm_.c:390
msgid "Remove from RAID"
msgstr "Taka úr RAID"
-#: ../../diskdrake/interactive.pm_.c:387
+#: ../../diskdrake/interactive.pm_.c:391
msgid "Remove from LVM"
msgstr "Taka úr LVM"
-#: ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/interactive.pm_.c:392
msgid "Modify RAID"
msgstr "Breyta RAID"
-#: ../../diskdrake/interactive.pm_.c:389
+#: ../../diskdrake/interactive.pm_.c:393
msgid "Use for loopback"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:428
+#: ../../diskdrake/interactive.pm_.c:433
msgid "Create a new partition"
msgstr "Búa til nęja disksneiđ"
-#: ../../diskdrake/interactive.pm_.c:431
+#: ../../diskdrake/interactive.pm_.c:436
msgid "Start sector: "
msgstr "Byrjunar geiri"
-#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:805
+#: ../../diskdrake/interactive.pm_.c:438 ../../diskdrake/interactive.pm_.c:815
msgid "Size in MB: "
msgstr "Stærđ í MB: "
-#: ../../diskdrake/interactive.pm_.c:434 ../../diskdrake/interactive.pm_.c:806
+#: ../../diskdrake/interactive.pm_.c:439 ../../diskdrake/interactive.pm_.c:816
msgid "Filesystem type: "
msgstr "Tegund skráakerfis:"
-#: ../../diskdrake/interactive.pm_.c:439
+#: ../../diskdrake/interactive.pm_.c:444
msgid "Preference: "
msgstr "Valkostur:"
-#: ../../diskdrake/interactive.pm_.c:464
+#: ../../diskdrake/interactive.pm_.c:469
msgid ""
"You can't create a new partition\n"
"(since you reached the maximal number of primary partitions).\n"
"First remove a primary partition and create an extended partition."
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:494
+#: ../../diskdrake/interactive.pm_.c:499
#, fuzzy
msgid "Remove the loopback file?"
msgstr "Forsníđ disksneiđ %s"
-#: ../../diskdrake/interactive.pm_.c:519
+#: ../../diskdrake/interactive.pm_.c:529
msgid "Change partition type"
msgstr "Breyta tegund sneiđar"
-#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:530 ../../diskdrake/removable.pm_.c:48
#, fuzzy
msgid "Which filesystem do you want?"
msgstr "Hvađa sneiđtegund viltu?"
-#: ../../diskdrake/interactive.pm_.c:526
+#: ../../diskdrake/interactive.pm_.c:536
msgid "Switching from ext2 to ext3"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:556
+#: ../../diskdrake/interactive.pm_.c:566
#, fuzzy, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "Hvar viltu tengja tæki %s?"
-#: ../../diskdrake/interactive.pm_.c:557
+#: ../../diskdrake/interactive.pm_.c:567
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Hvar viltu tengja tæki %s?"
-#: ../../diskdrake/interactive.pm_.c:563
+#: ../../diskdrake/interactive.pm_.c:573
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:584
+#: ../../diskdrake/interactive.pm_.c:594
#, fuzzy, c-format
msgid "Where do you want to mount %s?"
msgstr "Hvar viltu tengja tæki %s?"
-#: ../../diskdrake/interactive.pm_.c:608
+#: ../../diskdrake/interactive.pm_.c:618
msgid "Computing FAT filesystem bounds"
msgstr "Reikna takmarkanir FAT skráarkerfis..."
-#: ../../diskdrake/interactive.pm_.c:608 ../../diskdrake/interactive.pm_.c:667
-#: ../../install_interactive.pm_.c:131
+#: ../../diskdrake/interactive.pm_.c:618 ../../diskdrake/interactive.pm_.c:677
+#: ../../install_interactive.pm_.c:133
msgid "Resizing"
msgstr "Endursníđ"
-#: ../../diskdrake/interactive.pm_.c:640
+#: ../../diskdrake/interactive.pm_.c:650
#, fuzzy
msgid "This partition is not resizeable"
msgstr "Hvađa sneiđtegund viltu?"
-#: ../../diskdrake/interactive.pm_.c:645
+#: ../../diskdrake/interactive.pm_.c:655
#, fuzzy
msgid "All data on this partition should be backed-up"
msgstr "öll gögn á țessari disksneiđ tapast"
-#: ../../diskdrake/interactive.pm_.c:647
+#: ../../diskdrake/interactive.pm_.c:657
#, fuzzy, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr "öll gögn á țessari disksneiđ tapast"
-#: ../../diskdrake/interactive.pm_.c:652
+#: ../../diskdrake/interactive.pm_.c:662
msgid "Choose the new size"
msgstr "Veldu nęja stærđ"
-#: ../../diskdrake/interactive.pm_.c:653
+#: ../../diskdrake/interactive.pm_.c:663
#, fuzzy
msgid "New size in MB: "
msgstr "Stærđ í MB: "
-#: ../../diskdrake/interactive.pm_.c:706
+#: ../../diskdrake/interactive.pm_.c:716
msgid "Which disk do you want to move it to?"
msgstr "Hvađa disk viltu færa til?"
-#: ../../diskdrake/interactive.pm_.c:707
+#: ../../diskdrake/interactive.pm_.c:717
msgid "Sector"
msgstr "Geiri"
-#: ../../diskdrake/interactive.pm_.c:708
+#: ../../diskdrake/interactive.pm_.c:718
msgid "Which sector do you want to move it to?"
msgstr "Hvađa geira viltu færa gögn til?"
-#: ../../diskdrake/interactive.pm_.c:711
+#: ../../diskdrake/interactive.pm_.c:721
msgid "Moving"
msgstr "Færi"
-#: ../../diskdrake/interactive.pm_.c:711
+#: ../../diskdrake/interactive.pm_.c:721
msgid "Moving partition..."
msgstr "Færi disksneiđ..."
-#: ../../diskdrake/interactive.pm_.c:728
+#: ../../diskdrake/interactive.pm_.c:738
msgid "Choose an existing RAID to add to"
msgstr "Veldu RAID sem til er fyrir til ađ bæta viđ"
-#: ../../diskdrake/interactive.pm_.c:729 ../../diskdrake/interactive.pm_.c:746
+#: ../../diskdrake/interactive.pm_.c:739 ../../diskdrake/interactive.pm_.c:756
msgid "new"
msgstr "nę"
-#: ../../diskdrake/interactive.pm_.c:744
+#: ../../diskdrake/interactive.pm_.c:754
msgid "Choose an existing LVM to add to"
msgstr "Veldu LVM sem til er fyrir til ađ bæta viđ"
-#: ../../diskdrake/interactive.pm_.c:749
+#: ../../diskdrake/interactive.pm_.c:759
msgid "LVM name?"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:790
+#: ../../diskdrake/interactive.pm_.c:800
msgid "This partition can't be used for loopback"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:803
+#: ../../diskdrake/interactive.pm_.c:813
msgid "Loopback"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:814
msgid "Loopback file name: "
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:809
+#: ../../diskdrake/interactive.pm_.c:819
#, fuzzy
msgid "Give a file name"
msgstr "Nafn notanda"
-#: ../../diskdrake/interactive.pm_.c:812
+#: ../../diskdrake/interactive.pm_.c:822
msgid "File already used by another loopback, choose another one"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:813
+#: ../../diskdrake/interactive.pm_.c:823
#, fuzzy
msgid "File already exists. Use it?"
msgstr "Nafniđ %s er țegar í notkun"
-#: ../../diskdrake/interactive.pm_.c:836
+#: ../../diskdrake/interactive.pm_.c:846
#, fuzzy
msgid "Mount options"
msgstr "Stillingar kjarnaeininga:"
-#: ../../diskdrake/interactive.pm_.c:843
+#: ../../diskdrake/interactive.pm_.c:853
msgid "Various"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:907 ../../standalone/drakfloppy_.c:103
+#: ../../diskdrake/interactive.pm_.c:917 ../../standalone/drakfloppy_.c:103
msgid "device"
msgstr "tæki"
-#: ../../diskdrake/interactive.pm_.c:908
+#: ../../diskdrake/interactive.pm_.c:918
msgid "level"
msgstr "stig"
-#: ../../diskdrake/interactive.pm_.c:909
+#: ../../diskdrake/interactive.pm_.c:919
msgid "chunk size"
msgstr "stærđ hlutar"
-#: ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:934
msgid "Be careful: this operation is dangerous."
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:939
+#: ../../diskdrake/interactive.pm_.c:949
#, fuzzy
msgid "What type of partitioning?"
msgstr "Hvernig prentara ertu međ?"
-#: ../../diskdrake/interactive.pm_.c:955
+#: ../../diskdrake/interactive.pm_.c:965
#, fuzzy, c-format
msgid "The package %s is needed. Install it?"
msgstr "Hvađa pakka viltu setja inn"
-#: ../../diskdrake/interactive.pm_.c:969
+#: ../../diskdrake/interactive.pm_.c:979
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -2034,7 +2053,7 @@ msgstr ""
"Annađhvort notar țú LILO og țađ mun ekki virka, eđa țú notar ekki LILO og "
"sleppir țví ađ hafa /boot"
-#: ../../diskdrake/interactive.pm_.c:973
+#: ../../diskdrake/interactive.pm_.c:983
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -2045,143 +2064,143 @@ msgstr ""
"1024. sívalnings á harđa disknum og țú hefur enga /boot sneiđ.\n"
"Ef țú ætlar ađ nota LILO ræsistjórann skaltu muna ađ bæta viđ /boot sneiđ"
-#: ../../diskdrake/interactive.pm_.c:979
+#: ../../diskdrake/interactive.pm_.c:989
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
"So be careful to add a /boot partition"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:999
+#: ../../diskdrake/interactive.pm_.c:1009
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "Disksneiđatafla drifs %s mun verđa skrifuđ á disk!"
-#: ../../diskdrake/interactive.pm_.c:1003
+#: ../../diskdrake/interactive.pm_.c:1013
msgid "You'll need to reboot before the modification can take place"
msgstr "Țú țarft ađ endurræsa áđur en breytingar taka gildi"
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1024
#, fuzzy, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr "öll gögn á țessari disksneiđ tapast"
-#: ../../diskdrake/interactive.pm_.c:1016
+#: ../../diskdrake/interactive.pm_.c:1026
msgid "Formatting"
msgstr "Forsníđing"
-#: ../../diskdrake/interactive.pm_.c:1017
+#: ../../diskdrake/interactive.pm_.c:1027
#, fuzzy, c-format
msgid "Formatting loopback file %s"
msgstr "Forsníđ disksneiđ %s"
-#: ../../diskdrake/interactive.pm_.c:1018
-#: ../../install_steps_interactive.pm_.c:476
+#: ../../diskdrake/interactive.pm_.c:1028
+#: ../../install_steps_interactive.pm_.c:459
#, c-format
msgid "Formatting partition %s"
msgstr "Forsníđ disksneiđ %s"
-#: ../../diskdrake/interactive.pm_.c:1029
+#: ../../diskdrake/interactive.pm_.c:1039
msgid "Hide files"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1029
+#: ../../diskdrake/interactive.pm_.c:1039
#, fuzzy
msgid "Move files to the new partition"
msgstr "Búa til nęja disksneiđ"
-#: ../../diskdrake/interactive.pm_.c:1030
+#: ../../diskdrake/interactive.pm_.c:1040
#, c-format
msgid ""
"Directory %s already contains data\n"
"(%s)"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1041
+#: ../../diskdrake/interactive.pm_.c:1051
#, fuzzy
msgid "Moving files to the new partition"
msgstr "Búa til nęja disksneiđ"
-#: ../../diskdrake/interactive.pm_.c:1045
+#: ../../diskdrake/interactive.pm_.c:1055
#, c-format
msgid "Copying %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1049
+#: ../../diskdrake/interactive.pm_.c:1059
#, fuzzy, c-format
msgid "Removing %s"
msgstr "Upplausnir"
-#: ../../diskdrake/interactive.pm_.c:1059
+#: ../../diskdrake/interactive.pm_.c:1069
#, c-format
msgid "partition %s is now known as %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1080
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1090
+#: ../../diskdrake/interactive.pm_.c:1149
msgid "Device: "
msgstr "Tæki: "
-#: ../../diskdrake/interactive.pm_.c:1081
+#: ../../diskdrake/interactive.pm_.c:1091
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "DOS drifstafur: %s (bara ágiskun)\n"
-#: ../../diskdrake/interactive.pm_.c:1085
-#: ../../diskdrake/interactive.pm_.c:1093
-#: ../../diskdrake/interactive.pm_.c:1157
+#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1103
+#: ../../diskdrake/interactive.pm_.c:1168
msgid "Type: "
msgstr "Tegund: "
-#: ../../diskdrake/interactive.pm_.c:1089
+#: ../../diskdrake/interactive.pm_.c:1099
msgid "Name: "
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1097
+#: ../../diskdrake/interactive.pm_.c:1107
#, c-format
msgid "Start: sector %s\n"
msgstr "Byrja: geiri %s\n"
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1108
#, c-format
msgid "Size: %s"
msgstr "Stærđ: %s"
-#: ../../diskdrake/interactive.pm_.c:1100
+#: ../../diskdrake/interactive.pm_.c:1110
#, c-format
msgid ", %s sectors"
msgstr ", %s geirar"
-#: ../../diskdrake/interactive.pm_.c:1102
+#: ../../diskdrake/interactive.pm_.c:1112
#, fuzzy, c-format
msgid "Cylinder %d to %d\n"
msgstr "Sívalningur %d til %d\n"
-#: ../../diskdrake/interactive.pm_.c:1103
+#: ../../diskdrake/interactive.pm_.c:1113
msgid "Formatted\n"
msgstr "Forsniđinn\n"
-#: ../../diskdrake/interactive.pm_.c:1104
+#: ../../diskdrake/interactive.pm_.c:1114
msgid "Not formatted\n"
msgstr "Ekki forsniđinn\n"
-#: ../../diskdrake/interactive.pm_.c:1105
+#: ../../diskdrake/interactive.pm_.c:1115
msgid "Mounted\n"
msgstr "Tengdur\n"
-#: ../../diskdrake/interactive.pm_.c:1106
+#: ../../diskdrake/interactive.pm_.c:1116
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1108
+#: ../../diskdrake/interactive.pm_.c:1118
#, c-format
msgid ""
"Loopback file(s):\n"
" %s\n"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1109
+#: ../../diskdrake/interactive.pm_.c:1119
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -2189,27 +2208,27 @@ msgstr ""
"Sjálfgefin disksneiđ ræst\n"
" (fyrir MS-DOS ræsingu, ekki fyrir LILO)\n"
-#: ../../diskdrake/interactive.pm_.c:1111
+#: ../../diskdrake/interactive.pm_.c:1121
#, c-format
msgid "Level %s\n"
msgstr "Stig %s\n"
-#: ../../diskdrake/interactive.pm_.c:1112
+#: ../../diskdrake/interactive.pm_.c:1122
#, c-format
msgid "Chunk size %s\n"
msgstr "Hlunkastærđ %s\n"
-#: ../../diskdrake/interactive.pm_.c:1113
+#: ../../diskdrake/interactive.pm_.c:1123
#, c-format
msgid "RAID-disks %s\n"
msgstr "RAID-diskar %s\n"
-#: ../../diskdrake/interactive.pm_.c:1115
+#: ../../diskdrake/interactive.pm_.c:1125
#, c-format
msgid "Loopback file name: %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1118
+#: ../../diskdrake/interactive.pm_.c:1128
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -2217,7 +2236,7 @@ msgid ""
"probably leave it alone.\n"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1121
+#: ../../diskdrake/interactive.pm_.c:1131
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2225,59 +2244,63 @@ msgid ""
"dual-booting your system.\n"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1140
+#: ../../diskdrake/interactive.pm_.c:1150
+msgid "Read-only"
+msgstr ""
+
+#: ../../diskdrake/interactive.pm_.c:1151
#, c-format
msgid "Size: %s\n"
msgstr "Stærđ: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1141
+#: ../../diskdrake/interactive.pm_.c:1152
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Skilgreining: %s sívalningar, %s hausar, %s geirar\n"
-#: ../../diskdrake/interactive.pm_.c:1142
+#: ../../diskdrake/interactive.pm_.c:1153
msgid "Info: "
msgstr "Upplęsingar: "
-#: ../../diskdrake/interactive.pm_.c:1143
+#: ../../diskdrake/interactive.pm_.c:1154
#, c-format
msgid "LVM-disks %s\n"
msgstr "LVM-diskar %s\n"
-#: ../../diskdrake/interactive.pm_.c:1144
+#: ../../diskdrake/interactive.pm_.c:1155
#, fuzzy, c-format
msgid "Partition table type: %s\n"
msgstr "Rótardisksneiđ"
-#: ../../diskdrake/interactive.pm_.c:1145
+#: ../../diskdrake/interactive.pm_.c:1156
#, fuzzy, c-format
msgid "on channel %d id %d\n"
msgstr "á gagnabraut %d id %d\n"
-#: ../../diskdrake/interactive.pm_.c:1175
+#: ../../diskdrake/interactive.pm_.c:1186
#, fuzzy
msgid "Filesystem encryption key"
msgstr "Tegund skráakerfis:"
-#: ../../diskdrake/interactive.pm_.c:1176
+#: ../../diskdrake/interactive.pm_.c:1187
msgid "Choose your filesystem encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1179
+#: ../../diskdrake/interactive.pm_.c:1190
#, fuzzy, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr "Țetta lykilorđ er of einfalt (verđur ađ vera minnst %d stafa langt)"
-#: ../../diskdrake/interactive.pm_.c:1180
+#: ../../diskdrake/interactive.pm_.c:1191
#, fuzzy
msgid "The encryption keys do not match"
msgstr "Mismunandi lykilorđ"
-#: ../../diskdrake/interactive.pm_.c:1183
+#: ../../diskdrake/interactive.pm_.c:1194
msgid "Encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1184
+#: ../../diskdrake/interactive.pm_.c:1195
msgid "Encryption key (again)"
msgstr ""
@@ -2316,7 +2339,7 @@ msgid ""
"Please enter your username, password and domain name to access this host."
msgstr ""
-#: ../../diskdrake/smbnfs_gtk.pm_.c:178
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3527
#, fuzzy
msgid "Username"
msgstr "Notandanafn:"
@@ -2331,23 +2354,23 @@ msgstr "NIS lén"
msgid "Search servers"
msgstr "Nafnamiđlari"
-#: ../../fs.pm_.c:552 ../../fs.pm_.c:562 ../../fs.pm_.c:566 ../../fs.pm_.c:570
-#: ../../fs.pm_.c:574 ../../fs.pm_.c:578
+#: ../../fs.pm_.c:544 ../../fs.pm_.c:554 ../../fs.pm_.c:558 ../../fs.pm_.c:562
+#: ../../fs.pm_.c:566 ../../fs.pm_.c:570
#, fuzzy, c-format
msgid "%s formatting of %s failed"
msgstr "gat ekki forsniđiđ %s"
-#: ../../fs.pm_.c:615
+#: ../../fs.pm_.c:607
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "kann ekki ađ forsníđa %s af tegundinni %s"
-#: ../../fs.pm_.c:687 ../../fs.pm_.c:731
+#: ../../fs.pm_.c:681 ../../fs.pm_.c:724
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../fs.pm_.c:746 ../../partition_table.pm_.c:602
+#: ../../fs.pm_.c:739 ../../partition_table.pm_.c:598
#, c-format
msgid "error unmounting %s: %s"
msgstr "villa viđ ađ aftengja %s: %s"
@@ -2365,262 +2388,321 @@ msgstr ""
msgid "server"
msgstr "netțjónn"
-#: ../../fsedit.pm_.c:472
+#: ../../fsedit.pm_.c:240
+#, fuzzy, c-format
+msgid ""
+"I can't read the partition table of device %s, it's too corrupted for me :(\n"
+"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
+"The other solution is to not allow DrakX to modify the partition table.\n"
+"(the error is %s)\n"
+"\n"
+"Do you agree to loose all the partitions?\n"
+msgstr ""
+"Ég get ekki lesiđ disksneiđatöflu țína, hún er of skemmd fyrir mig :-(\n"
+"Ég mun reyna ađ halda áfram međ țví ađ hreinsa skemmdar disksneiđar"
+
+#: ../../fsedit.pm_.c:501
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr ""
-#: ../../fsedit.pm_.c:473
+#: ../../fsedit.pm_.c:502
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr ""
-#: ../../fsedit.pm_.c:492
+#: ../../fsedit.pm_.c:521
msgid "Mount points must begin with a leading /"
msgstr "Heiti tengipunkta verđa ađ byrja á /."
-#: ../../fsedit.pm_.c:493
+#: ../../fsedit.pm_.c:522
#, fuzzy, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Țađ er țegar disksneiđ međ tengipunktinn %s"
-#: ../../fsedit.pm_.c:497
+#: ../../fsedit.pm_.c:526
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr ""
-#: ../../fsedit.pm_.c:499
+#: ../../fsedit.pm_.c:528
msgid "This directory should remain within the root filesystem"
msgstr ""
-#: ../../fsedit.pm_.c:501
+#: ../../fsedit.pm_.c:530
msgid ""
"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
"point\n"
msgstr ""
-#: ../../fsedit.pm_.c:503
+#: ../../fsedit.pm_.c:532
#, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr ""
-#: ../../fsedit.pm_.c:570
+#: ../../fsedit.pm_.c:599
msgid "Not enough free space for auto-allocating"
msgstr ""
-#: ../../fsedit.pm_.c:572
+#: ../../fsedit.pm_.c:601
msgid "Nothing to do"
msgstr ""
-#: ../../fsedit.pm_.c:665
+#: ../../fsedit.pm_.c:694
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Villa viđ ađ opna %s til skriftar: %s"
-#: ../../fsedit.pm_.c:750
+#: ../../harddrake/sound.pm_.c:155
+msgid "No alternative driver"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:156
+#, c-format
+msgid "There's no known OSS/ALSA alternative driver for your sound card (%s)"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:158
+#, fuzzy
+msgid "Sound configuration"
+msgstr "Uppsetning"
+
+#: ../../harddrake/sound.pm_.c:159
+#, c-format
msgid ""
-"An error occurred - no valid devices were found on which to create new "
-"filesystems. Please check your hardware for the cause of this problem"
+"Here you can select an alternative driver (either OSS or ALSA) for your "
+"sound card (%s)"
msgstr ""
-"Țađ kom upp villa. Engin tæki fundust sem unnt er ađ búa til nę skráakerfi "
-"á. Vinsamlegast athugađu vélbúnađinn í leit ađ orsök vandamálsins."
-#: ../../fsedit.pm_.c:773
-msgid "You don't have any partitions!"
-msgstr "Țú hefur ekki neinar disksneiđar"
+#: ../../harddrake/sound.pm_.c:162
+#, fuzzy
+msgid "Driver:"
+msgstr "Sem țjón"
+
+#: ../../harddrake/sound.pm_.c:173
+msgid "No known driver"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:174
+#, c-format
+msgid "There's no known driver for your sound card (%s)"
+msgstr ""
-#: ../../harddrake/ui.pm_.c:15
+#: ../../harddrake/sound.pm_.c:177
+msgid "Unkown driver"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:178
+#, c-format
+msgid ""
+"The \"%s\" driver for your sound card is unlisted\n"
+"\n"
+"Please send the output of the \"lspcidrake -v\" command to\n"
+"<install at mandrakesoft dot com>\n"
+"with subject: unlisted sound driver \"%s\""
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:16
#, fuzzy
msgid "Model"
msgstr "USB mús"
-#: ../../harddrake/ui.pm_.c:15
+#: ../../harddrake/ui.pm_.c:16
msgid "hard disk model"
msgstr ""
-#: ../../harddrake/ui.pm_.c:16
+#: ../../harddrake/ui.pm_.c:17
#, fuzzy
msgid "Channel"
msgstr "Hætta viđ"
-#: ../../harddrake/ui.pm_.c:16
+#: ../../harddrake/ui.pm_.c:17
msgid "EIDE/SCSI channel"
msgstr ""
-#: ../../harddrake/ui.pm_.c:18
+#: ../../harddrake/ui.pm_.c:19
msgid "Bus"
msgstr ""
-#: ../../harddrake/ui.pm_.c:19
+#: ../../harddrake/ui.pm_.c:20
msgid ""
"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
msgstr ""
-#: ../../harddrake/ui.pm_.c:20
+#: ../../harddrake/ui.pm_.c:21
#, fuzzy
msgid "Module"
msgstr "USB mús"
-#: ../../harddrake/ui.pm_.c:20
+#: ../../harddrake/ui.pm_.c:21
msgid "the module of the GNU/Linux kernel that handle that device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:21
+#: ../../harddrake/ui.pm_.c:22
msgid "Media class"
msgstr ""
-#: ../../harddrake/ui.pm_.c:21
+#: ../../harddrake/ui.pm_.c:22
msgid "class of hardware device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:22 ../../printerdrake.pm_.c:1404
+#: ../../harddrake/ui.pm_.c:23 ../../printerdrake.pm_.c:1517
#, fuzzy
msgid "Description"
msgstr "Stilla handvirkt"
-#: ../../harddrake/ui.pm_.c:22
+#: ../../harddrake/ui.pm_.c:23
msgid "this field describe the device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:24
+#: ../../harddrake/ui.pm_.c:25
#, fuzzy
msgid "Bus identification"
msgstr "Auđkenning"
-#: ../../harddrake/ui.pm_.c:25
+#: ../../harddrake/ui.pm_.c:26
msgid ""
-"- PCI and USB devices : this list the vendor, device, subvendor and "
-"subdevice PCI/USB ids"
+"- PCI and USB devices: this list the vendor, device, subvendor and subdevice "
+"PCI/USB ids"
msgstr ""
-#: ../../harddrake/ui.pm_.c:27
+#: ../../harddrake/ui.pm_.c:28
msgid "Location on the bus"
msgstr ""
-#: ../../harddrake/ui.pm_.c:28
+#: ../../harddrake/ui.pm_.c:29
msgid ""
"- pci devices: this gives the PCI slot, device and function of this card\n"
"- eide devices: the device is either a slave or a master device\n"
"- scsi devices: the scsi bus and the scsi device ids"
msgstr ""
-#: ../../harddrake/ui.pm_.c:31
+#: ../../harddrake/ui.pm_.c:32
#, fuzzy
msgid "Old device file"
msgstr "Veljiđ skrá"
-#: ../../harddrake/ui.pm_.c:32
+#: ../../harddrake/ui.pm_.c:33
msgid "old static device name used in dev package"
msgstr ""
-#: ../../harddrake/ui.pm_.c:33
+#: ../../harddrake/ui.pm_.c:34
#, fuzzy
msgid "New devfs device"
msgstr "Gátt (tækiđ)"
-#: ../../harddrake/ui.pm_.c:34
+#: ../../harddrake/ui.pm_.c:35
msgid "new dinamic device name generated by incore kernel devfs"
msgstr ""
-#: ../../harddrake/ui.pm_.c:35
+#: ../../harddrake/ui.pm_.c:36
msgid "Number of buttons"
msgstr ""
-#: ../../harddrake/ui.pm_.c:36
+#: ../../harddrake/ui.pm_.c:37
msgid "the vendor name of the device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:60
+#: ../../harddrake/ui.pm_.c:38
+#, fuzzy
+msgid "Alternative drivers"
+msgstr "Prenta út prufublađsíđu(r)..."
+
+#: ../../harddrake/ui.pm_.c:39
+msgid "the list of alternative drivers for this sound card"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:63
#, fuzzy
msgid "/_Quit"
msgstr "Hætta"
-#: ../../harddrake/ui.pm_.c:61 ../../harddrake/ui.pm_.c:62
-#: ../../harddrake/ui.pm_.c:68 ../../standalone/logdrake_.c:110
+#: ../../harddrake/ui.pm_.c:64 ../../harddrake/ui.pm_.c:65
+#: ../../harddrake/ui.pm_.c:71 ../../standalone/logdrake_.c:110
#, fuzzy
msgid "/_Help"
msgstr "Hjálp"
-#: ../../harddrake/ui.pm_.c:62
+#: ../../harddrake/ui.pm_.c:65
#, fuzzy
msgid "/_Help..."
msgstr "Hjálp"
-#: ../../harddrake/ui.pm_.c:63
+#: ../../harddrake/ui.pm_.c:66
msgid "Harddrake help"
msgstr ""
-#: ../../harddrake/ui.pm_.c:64
+#: ../../harddrake/ui.pm_.c:67
msgid ""
"Description of the fields:\n"
"\n"
msgstr ""
-#: ../../harddrake/ui.pm_.c:68
+#: ../../harddrake/ui.pm_.c:71
#, fuzzy
msgid "/_About..."
msgstr "Tengipunktur"
-#: ../../harddrake/ui.pm_.c:69
+#: ../../harddrake/ui.pm_.c:72
msgid "About Harddrake"
msgstr ""
-#: ../../harddrake/ui.pm_.c:70
+#: ../../harddrake/ui.pm_.c:73
msgid ""
"This is HardDrake, a Mandrake hardware configuration tool.\n"
"Version:"
msgstr ""
-#: ../../harddrake/ui.pm_.c:71
+#: ../../harddrake/ui.pm_.c:74
#, fuzzy
msgid "Author:"
msgstr "Stilla sjálfvirkt"
-#: ../../harddrake/ui.pm_.c:83
+#: ../../harddrake/ui.pm_.c:86
#, fuzzy
msgid "Harddrake2 version "
msgstr "Nota fínstillingar á hörđum disk(um)"
-#: ../../harddrake/ui.pm_.c:91
+#: ../../harddrake/ui.pm_.c:103
#, fuzzy
msgid "Detected hardware"
msgstr "Skođađu vélbúnađarupplęsingar"
-#: ../../harddrake/ui.pm_.c:92
+#: ../../harddrake/ui.pm_.c:105
#, fuzzy
-msgid "Configure module"
-msgstr "Tilgreindu mús"
+msgid "Information"
+msgstr "Sęna upplęsingar"
-#: ../../harddrake/ui.pm_.c:92
+#: ../../harddrake/ui.pm_.c:108
#, fuzzy
-msgid "Informations"
-msgstr "Sęna upplęsingar"
+msgid "Configure module"
+msgstr "Tilgreindu mús"
-#: ../../harddrake/ui.pm_.c:92
+#: ../../harddrake/ui.pm_.c:109
msgid "Run config tool"
msgstr ""
-#: ../../harddrake/ui.pm_.c:96
+#: ../../harddrake/ui.pm_.c:113
#, fuzzy
msgid "Detection in progress"
msgstr "%s tengipunktur er nú țegar til"
-#: ../../harddrake/ui.pm_.c:96 ../../interactive.pm_.c:388
+#: ../../harddrake/ui.pm_.c:113 ../../interactive.pm_.c:391
msgid "Please wait"
msgstr "Augnablik..."
-#: ../../harddrake/ui.pm_.c:139
+#: ../../harddrake/ui.pm_.c:156
msgid "primary"
msgstr ""
-#: ../../harddrake/ui.pm_.c:139
+#: ../../harddrake/ui.pm_.c:156
#, fuzzy
msgid "secondary"
msgstr "Hætti eftir %d sekúndur"
-#: ../../harddrake/ui.pm_.c:176
+#: ../../harddrake/ui.pm_.c:197
msgid "You can configure each parameter of the module here."
msgstr ""
-#: ../../harddrake/ui.pm_.c:192
+#: ../../harddrake/ui.pm_.c:213
#, fuzzy, c-format
msgid "Running \"%s\" ..."
msgstr "Viđföng fyrir fjartengda lpd prentara"
@@ -2651,16 +2733,16 @@ msgid ""
msgstr ""
#: ../../harddrake/v4l.pm_.c:213
-msgid "Card model :"
+msgid "Card model:"
msgstr ""
#: ../../harddrake/v4l.pm_.c:214
#, fuzzy
-msgid "Tuner type :"
+msgid "Tuner type:"
msgstr "Breyta tegund sneiđar"
#: ../../harddrake/v4l.pm_.c:215
-msgid "Number of capture buffers :"
+msgid "Number of capture buffers:"
msgstr ""
#: ../../harddrake/v4l.pm_.c:215
@@ -2669,11 +2751,11 @@ msgstr ""
#: ../../harddrake/v4l.pm_.c:217
#, fuzzy
-msgid "PLL setting :"
+msgid "PLL setting:"
msgstr "forsníđ"
#: ../../harddrake/v4l.pm_.c:218
-msgid "Radio support :"
+msgid "Radio support:"
msgstr ""
#: ../../harddrake/v4l.pm_.c:218
@@ -2685,22 +2767,22 @@ msgid ""
"GNU/Linux is a multiuser system, and this means that each user can have his\n"
"own preferences, his own files and so on. You can read the ``User Guide''\n"
"to learn more. But unlike \"root\", which is the administrator, the users\n"
-"you will add here will not be entitled to change anything except their own\n"
-"files and their own configuration. You will have to create at least one\n"
-"regular user for yourself. That account is where you should log in for\n"
-"routine use. Although it is very practical to log in as \"root\" everyday,\n"
-"it may also be very dangerous! The slightest mistake could mean that your\n"
-"system would not work any more. If you make a serious mistake as a regular\n"
-"user, you may only lose some information, but not the entire system.\n"
+"you add here will not be entitled to change anything except their own files\n"
+"and their own configuration. You will have to create at least one regular\n"
+"user for yourself. That account is where you should log in for routine use.\n"
+"Although it is very practical to log in as \"root\" everyday, it may also\n"
+"be very dangerous! The slightest mistake could mean that your system would\n"
+"not work any more. If you make a serious mistake as a regular user, you may\n"
+"only lose some information, but not the entire system.\n"
"\n"
"First, you have to enter your real name. This is not mandatory, of course -\n"
"as you can actually enter whatever you want. DrakX will then take the first\n"
"word you have entered in the box and will bring it over to the \"User\n"
"name\". This is the name this particular user will use to log onto the\n"
"system. You can change it. You then have to enter a password here. A\n"
-"non-privileged (regular) user's password is not as crucial as \"root\"' one\n"
-"from a security point of view, but that is no reason to neglect it: after\n"
-"all, your files are at risk.\n"
+"non-privileged (regular) user's password is not as crucial as the \"root\"'\n"
+"one from a security point of view, but that is no reason to neglect it:\n"
+"after all, your files are at risk.\n"
"\n"
"If you click on \"Accept user\", you can then add as many as you want. Add\n"
"a user for each one of your friends: your father or your sister, for\n"
@@ -2779,7 +2861,7 @@ msgid ""
"to have a graphical workstation!\n"
"\n"
"Moving the mouse cursor over a group name will display a short explanatory\n"
-"text about that group. If you deselect all groups when performing a regular\n"
+"text about that group. If you unselect all groups when performing a regular\n"
"installation (by opposition to an upgrade), a dialog will pop up proposing\n"
"different options for a minimal installation:\n"
"\n"
@@ -2805,10 +2887,10 @@ msgstr ""
#: ../../help.pm_.c:128
msgid ""
-"Finally, depending on whether or not you selected individual packages, you\n"
-"will be presented a tree containing all packages classified by groups and\n"
-"subgroups. While browsing the tree, you can select entire groups,\n"
-"subgroups, or individual packages.\n"
+"Finally, depending on whether or not you chose to be able to select\n"
+"individual packages, you will be presented a tree containing all packages\n"
+"classified by groups and subgroups. While browsing the tree, you can select\n"
+"entire groups, subgroups, or individual packages.\n"
"\n"
"Whenever you select a package on the tree, a description appears on the\n"
"right. When your selection is finished, click the \"Install\" button which\n"
@@ -2843,11 +2925,11 @@ msgstr ""
#: ../../help.pm_.c:164
msgid ""
-"You are now proposed to set up your Internet/network connection. If you\n"
-"wish to connect your computer to the Internet or to a local network, click\n"
-"\"OK\". The autodetection of network devices and modem will be launched. If\n"
-"this detection fails, uncheck the \"Use auto detection\" box next time. You\n"
-"may also choose not to configure the network, or do it later; in that case,\n"
+"You are now able to set up your Internet/network connection. If you wish to\n"
+"connect your computer to the Internet or to a local network, click \"OK\".\n"
+"The autodetection of network devices and modem will be launched. If this\n"
+"detection fails, uncheck the \"Use auto detection\" box next time. You may\n"
+"also choose not to configure the network, or do it later; in that case,\n"
"simply click the \"Cancel\" button.\n"
"\n"
"Available connections are: traditional modem, ISDN modem, ADSL connection,\n"
@@ -2888,7 +2970,7 @@ msgstr ""
msgid ""
"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
"local time according to the time zone you selected. It is however possible\n"
-"to deactivate this by deselecting \"Hardware clock set to GMT\" so that the\n"
+"to deactivate this by unselecting \"Hardware clock set to GMT\" so that the\n"
"hardware clock is the same as the system clock. This is useful when the\n"
"machine is hosting another operating system like Windows.\n"
"\n"
@@ -2919,24 +3001,12 @@ msgid ""
"If you can see the message during the test, and answer \"Yes\", then DrakX\n"
"will proceed to the next step. If you cannot see the message, it simply\n"
"means that the configuration was wrong and the test will automatically end\n"
-"after 10 seconds, restoring the screen."
-msgstr ""
-
-#: ../../help.pm_.c:237
-msgid ""
-"The first time you try the X configuration, you may not be very satisfied\n"
-"with its display (screen is too small, shifted left or right...). Hence,\n"
-"even if X starts up correctly, DrakX then asks you if the configuration\n"
-"suits you. It will also propose to change it by displaying a list of valid\n"
-"modes it could find, asking you to select one.\n"
-"\n"
-"As a last resort, if you still cannot get X to work, choose \"Change\n"
-"graphics card\", select \"Unlisted card\", and when prompted on which\n"
-"server, choose \"FBDev\". This is a failsafe option which works with any\n"
-"modern graphics card. Then choose \"Test again\" to be sure."
+"after 10 seconds, restoring the screen. Refer then to the Video\n"
+"configuration section of the user guide for more information on how to\n"
+"configure your display."
msgstr ""
-#: ../../help.pm_.c:249
+#: ../../help.pm_.c:239
msgid ""
"Finally, you will be asked whether you want to see the graphical interface\n"
"at boot. Note this question will be asked even if you chose not to test the\n"
@@ -2945,7 +3015,7 @@ msgid ""
"configured."
msgstr ""
-#: ../../help.pm_.c:256
+#: ../../help.pm_.c:246
msgid ""
"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
@@ -2965,13 +3035,13 @@ msgid ""
"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
"password, or any other reason.\n"
"\n"
-"When you click on this step, you will be asked to enter a disk inside the\n"
-"drive. The floppy disk you will insert must be empty or contain data which\n"
-"you do not need. You will not have to format it since DrakX will rewrite\n"
-"the whole disk."
+"If you say \"Yes\", you will be asked to enter a disk inside the drive. The\n"
+"floppy disk you will insert must be empty or contain data which you do not\n"
+"need. You will not have to format it since DrakX will rewrite the whole\n"
+"disk."
msgstr ""
-#: ../../help.pm_.c:280
+#: ../../help.pm_.c:270
msgid ""
"At this point, you need to choose where you want to install the Mandrake\n"
"Linux operating system on your hard drive. If your hard drive is empty or\n"
@@ -3004,7 +3074,9 @@ msgid ""
"\n"
" * \"Use existing partition\": the wizard has detected one or more existing\n"
"Linux partitions on your hard drive. If you want to use them, choose this\n"
-"option;\n"
+"option. You will then be asked to choose the mount points associated to\n"
+"each of the partitions. The legacy mount points are selected by default,\n"
+"and you should generally keep them.\n"
"\n"
" * \"Use the free space on the Windows; partition\": if Microsoft Windows\n"
"is installed on your hard drive and takes all the space available on it,\n"
@@ -3037,10 +3109,12 @@ msgid ""
" * \"Expert mode\": choose this option if you want to manually partition\n"
"your hard drive. Be careful - it is a powerful but dangerous choice. You\n"
"can very easily lose all your data. Hence, do not choose this unless you\n"
-"know what you are doing."
+"know what you are doing. To know how do use the DiskDrake utility used\n"
+"here, refer to the section ``Managing Your Partitions'' of the ````User\n"
+"Guide''''"
msgstr ""
-#: ../../help.pm_.c:347
+#: ../../help.pm_.c:341
msgid ""
"There you are. Installation is now complete and your GNU/Linux system is\n"
"ready to use. Just click \"OK\" to reboot the system. You can start\n"
@@ -3073,7 +3147,7 @@ msgid ""
"\"mformat a:\")"
msgstr ""
-#: ../../help.pm_.c:378
+#: ../../help.pm_.c:372
msgid ""
"Any partitions that have been newly defined must be formatted for use\n"
"(formatting means creating a filesystem).\n"
@@ -3101,7 +3175,7 @@ msgid ""
"for bad blocks on the disk."
msgstr ""
-#: ../../help.pm_.c:404
+#: ../../help.pm_.c:398
msgid ""
"Your new Mandrake Linux operating system is currently being installed.\n"
"Depending on the number of packages you will be installing and the speed of\n"
@@ -3111,12 +3185,12 @@ msgid ""
"Please be patient."
msgstr ""
-#: ../../help.pm_.c:412
+#: ../../help.pm_.c:406
msgid ""
"At the time you are installing Mandrake Linux, it is likely that some\n"
"packages have been updated since the initial release. Some bugs may have\n"
"been fixed, and security issues solved. To allow you to benefit from these\n"
-"updates, you are now proposed to download them from the Internet. Choose\n"
+"updates, you are now able to download them from the Internet. Choose\n"
"\"Yes\" if you have a working Internet connection, or \"No\" if you prefer\n"
"to install updated packages later.\n"
"\n"
@@ -3126,7 +3200,7 @@ msgid ""
"install the selected package(s), or \"Cancel\" to abort."
msgstr ""
-#: ../../help.pm_.c:425
+#: ../../help.pm_.c:419
msgid ""
"Before continuing, you should read carefully the terms of the license. It\n"
"covers the whole Mandrake Linux distribution, and if you do not agree with\n"
@@ -3135,19 +3209,19 @@ msgid ""
"\"Accept\" button."
msgstr ""
-#: ../../help.pm_.c:432
+#: ../../help.pm_.c:426
msgid ""
"At this point, it is time to choose the security level desired for the\n"
"machine. As a rule of thumb, the more exposed the machine is, and the more\n"
"the data stored in it is crucial, the higher the security level should be.\n"
"However, a higher security level is generally obtained at the expense of\n"
-"easiness of use. Refer to the \"msec\" chapter of the ``Reference Manual''\n"
-"to get more information about the meaning of these levels.\n"
+"ease of use. Refer to the \"msec\" chapter of the ``Reference Manual'' to\n"
+"get more information about the meaning of these levels.\n"
"\n"
"If you do not know what to choose, keep the default option."
msgstr ""
-#: ../../help.pm_.c:442
+#: ../../help.pm_.c:436
msgid ""
"At this point, you need to choose which partition(s) will be used for the\n"
"installation of your Mandrake Linux system. If partitions have already been\n"
@@ -3164,26 +3238,26 @@ msgid ""
" * \"Clear all\": this option deletes all partitions on the selected hard\n"
"drive;\n"
"\n"
-" * \"Auto allocate\": this option enables to automatically create \"Ext2\"\n"
-"and swap partitions in free space of your hard drive;\n"
+" * \"Auto allocate\": this option enables to automatically create ext3 and\n"
+"swap partitions in free space of your hard drive;\n"
"\n"
-" * \"More\": gives access to additional features:\n"
+"\"More\": gives access to additional features:\n"
"\n"
-" * \"Save partition table\": saves the partition table to a floppy.\n"
-"Useful for later partition-table recovery if necessary. It is strongly\n"
-"recommended to perform this step;\n"
+" * \"Save partition table\": saves the partition table to a floppy. Useful\n"
+"for later partition-table recovery if necessary. It is strongly recommended\n"
+"to perform this step;\n"
"\n"
-" * \"Restore partition table\": allows to restore a previously saved\n"
+" * \"Restore partition table\": allows to restore a previously saved\n"
"partition table from floppy disk;\n"
"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you\n"
-"can try to recover it using this option. Please be careful and remember\n"
-"that it can fail;\n"
+" * \"Rescue partition table\": if your partition table is damaged, you can\n"
+"try to recover it using this option. Please be careful and remember that it\n"
+"can fail;\n"
"\n"
-" * \"Reload partition table\": discards all changes and loads your\n"
-"initial partition table;\n"
+" * \"Reload partition table\": discards all changes and loads your initial\n"
+"partition table;\n"
"\n"
-" * \"Removable media automounting\": unchecking this option will force\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
"users to manually mount and unmount removable medias such as floppies and\n"
"CD-ROMs.\n"
"\n"
@@ -3211,7 +3285,7 @@ msgid ""
" * Ctrl-m to set the mount point.\n"
"\n"
"To get information about the different filesystem types available, please\n"
-"read the ext2fs chapter from the ``Reference Manual''.\n"
+"read the ext2FS chapter from the ``Reference Manual''.\n"
"\n"
"If you are installing on a PPC machine, you will want to create a small HFS\n"
"``bootstrap'' partition of at least 1MB, which will be used by the yaboot\n"
@@ -3220,7 +3294,7 @@ msgid ""
"emergency boot situations."
msgstr ""
-#: ../../help.pm_.c:513
+#: ../../help.pm_.c:507
msgid ""
"More than one Microsoft partition has been detected on your hard drive.\n"
"Please choose the one you want to resize in order to install your new\n"
@@ -3253,34 +3327,34 @@ msgid ""
"disk or partition is called \"C:\")."
msgstr ""
-#: ../../help.pm_.c:544
+#: ../../help.pm_.c:538
msgid "Please be patient. This operation can take several minutes."
msgstr ""
-#: ../../help.pm_.c:547
+#: ../../help.pm_.c:541
msgid ""
"DrakX now needs to know if you want to perform a default (\"Recommended\")\n"
"installation or if you want to have greater control (\"Expert\"). You can\n"
"also choose to do a new install or an upgrade of an existing Mandrake Linux\n"
"system:\n"
"\n"
-" * \"Install\": completely wipes out the old system. In fact, depending on\n"
-"what currently holds your machine, you will be able to keep some old (Linux\n"
-"or other) partitions unchanged;\n"
+" * \"Install\": completely wipes out the old system, however, depending on\n"
+"what is currently installed on your machine, you may be able to keep some\n"
+"old partitions (Linux or otherwise) unchanged;\n"
"\n"
" * \"Upgrade\": this installation class allows to simply update the\n"
"packages currently installed on your Mandrake Linux system. It keeps the\n"
"current partitions of your hard drives as well as user configurations. All\n"
-"other configuration steps remain available with respect to plain\n"
+"other configuration steps remain available, similar to a normal\n"
"installation;\n"
"\n"
-" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
-"existing Mandrake Linux system while keeping all system configurations\n"
-"unchanged. Adding new packages to the current installation is also\n"
-"possible.\n"
+" * \"Upgrade Packages Only\": this new installation class allows you to\n"
+"upgrade an existing Mandrake Linux system while keeping all system\n"
+"configurations unchanged. Adding new packages to the current installation\n"
+"is also possible.\n"
"\n"
-"Upgrades should work fine for Mandrake Linux systems starting from \"8.1\"\n"
-"release.\n"
+"Upgrades should work fine on Mandrake Linux systems containing version\n"
+"\"8.1\" or later.\n"
"\n"
"Depending on your knowledge of GNU/Linux, select one of the following\n"
"choices:\n"
@@ -3289,30 +3363,35 @@ msgid ""
"operating system. The installation will be very easy and you will only be\n"
"asked a few questions;\n"
"\n"
-" * Expert: if you have a good knowledge of GNU/Linux, you can choose this\n"
-"installation class. The expert installation will allow you to perform a\n"
-"highly-customized installation. Answering some of the questions can be\n"
-"difficult if you do not have a good knowledge of GNU/Linux, so do not\n"
-"choose this unless you know what you are doing."
+" * Expert: if you have a good understanding of GNU/Linux, you may wish to\n"
+"perform a highly customized installation. Some of the decisions you will\n"
+"have to make may be difficult if you do not have good knowledge of\n"
+"GNU/Linux, so it is not recommended that those without a fair amount of\n"
+"experience select this installation class."
msgstr ""
-#: ../../help.pm_.c:584
+#: ../../help.pm_.c:578
msgid ""
"Normally, DrakX selects the right keyboard for you (depending on the\n"
-"language you have chosen) and you won't even see this step. However, you\n"
-"might not have a keyboard that corresponds exactly to your language: for\n"
-"example, if you are an English speaking Swiss person, you may still want\n"
-"your keyboard to be a Swiss keyboard. Or if you speak English but are\n"
-"located in Quebec, you may find yourself in the same situation. In both\n"
-"cases, you will have to go back to this installation step and select an\n"
-"appropriate keyboard from the list.\n"
+"language you have chosen). However, you might not have a keyboard that\n"
+"corresponds exactly to your language: for example, if you are an English\n"
+"speaking Swiss person, you may still want your keyboard to be a Swiss\n"
+"keyboard. Or if you speak English but are located in Quebec, you may find\n"
+"yourself in the same situation. In both cases, you will have to go back to\n"
+"this installation step and select an appropriate keyboard from the list.\n"
"\n"
"Click on the \"More\" button to be presented with the complete list of\n"
-"supported keyboards."
+"supported keyboards.\n"
+"\n"
+"If you choose a keyboard layout based on a non-latin alphabet, you will be\n"
+"asked on next dialog to choose the key binding that will switch the\n"
+"keyboard layout between the latin and non latin layouts."
msgstr ""
-#: ../../help.pm_.c:597
+#: ../../help.pm_.c:594
msgid ""
+"The first step is to choose your preferred language.\n"
+"\n"
"Please choose your preferred language for installation and system usage.\n"
"\n"
"Clicking on the \"Advanced\" button will allow you to select other\n"
@@ -3326,7 +3405,7 @@ msgid ""
"additional locales, click the \"OK\" button to continue."
msgstr ""
-#: ../../help.pm_.c:610
+#: ../../help.pm_.c:609
msgid ""
"DrakX generally detects the number of buttons your mouse has. If not, it\n"
"assumes you have a two-button mouse and will set it up for third-button\n"
@@ -3339,10 +3418,17 @@ msgid ""
"If you choose a mouse other than the default, a test screen will be\n"
"displayed. Use the buttons and wheel to verify that the settings are\n"
"correct. If the mouse is not working well, press the space bar or [Return]\n"
-"to \"Cancel\" and choose again."
+"to \"Cancel\" and choose again.\n"
+"\n"
+"Wheel mouses are sometimes not automatically detected. You will need to\n"
+"manually select it in the list. Be sure to select the one corresponding to\n"
+"the correct port it is attached to. After you have pressed the \"OK\"\n"
+"button, a mouse image is displayed. You then need to move the wheel of your\n"
+"mouse to activate it correctly. Then test all buttons and movements are\n"
+"correct."
msgstr ""
-#: ../../help.pm_.c:624
+#: ../../help.pm_.c:630
#, fuzzy
msgid ""
"Please select the correct port. For example, the \"COM1\" port under\n"
@@ -3351,7 +3437,7 @@ msgstr ""
"Veldu tengiđ sem țú vilt nota. Tengiđ COM1 í MS Windows er kallađ\n"
"ttyS0 í Linux, COM2 er ttyS1, o.s.frv."
-#: ../../help.pm_.c:628
+#: ../../help.pm_.c:634
msgid ""
"This is the most crucial decision point for the security of your GNU/Linux\n"
"system: you have to enter the \"root\" password. \"root\" is the system\n"
@@ -3381,15 +3467,15 @@ msgid ""
"In Expert mode, you will be asked if you will be connecting to an\n"
"authentication server, like NIS or LDAP.\n"
"\n"
-"If your network uses the LDAP (or NIS) protocol for authentication, select\n"
-"\"LDAP\" (or \"NIS\") as authentication. If you do not know, ask your\n"
-"network administrator.\n"
+"If your network uses either of the LDAP, NIS, or PDC Windows Domain\n"
+"authentication services, select the appropriate one as \"authentication\".\n"
+"If you do not know, ask your network administrator.\n"
"\n"
"If your computer is not connected to any administrated network, you will\n"
"want to choose \"Local files\" for authentication."
msgstr ""
-#: ../../help.pm_.c:664
+#: ../../help.pm_.c:670
msgid ""
"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
@@ -3428,8 +3514,11 @@ msgid ""
"options. !!\n"
"\n"
"Clicking the \"Advanced\" button in this dialog will offer many advanced\n"
-"options, which are reserved to the expert user.\n"
-"\n"
+"options, which are reserved for the expert user."
+msgstr ""
+
+#: ../../help.pm_.c:710
+msgid ""
"After you have configured the general bootloader parameters, the list of\n"
"boot options which will be available at boot time will be displayed.\n"
"\n"
@@ -3437,16 +3526,7 @@ msgid ""
"automatically be added to the boot menu. Here, you can choose to fine-tune\n"
"the existing options. Select an entry and click \"Modify\" to modify or\n"
"remove it; \"Add\" creates a new entry; and \"Done\" goes on to the next\n"
-"installation step."
-msgstr ""
-
-#: ../../help.pm_.c:713
-msgid ""
-"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
-"either GNU/Linux or any other operating system present on your computer.\n"
-"Normally, these other operating systems are correctly detected and\n"
-"installed. If this is not the case, you can add an entry by hand in this\n"
-"screen. Be careful to choose the correct parameters.\n"
+"installation step.\n"
"\n"
"You may also not want to give access to these other operating systems to\n"
"anyone. In which case, you can delete the corresponding entries. But then,\n"
@@ -3501,18 +3581,18 @@ msgstr ""
#: ../../help.pm_.c:759
msgid ""
-"DrakX now detects any IDE device present in your computer. It will also\n"
-"scan for one or more PCI SCSI card(s) on your system. If a SCSI card is\n"
+"DrakX now detects any IDE devices present in your computer. It will also\n"
+"scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
"found, DrakX will automatically install the appropriate driver.\n"
"\n"
"Because hardware detection does not always detect a piece of hardware,\n"
"DrakX will ask you to confirm if a PCI SCSI card is present. Click \"Yes\"\n"
"if you know that there is a SCSI card installed in your machine. You will\n"
-"be presented a list of SCSI cards to choose from. Click \"No\" if you have\n"
-"no SCSI hardware. If you are unsure, you can check the list of hardware\n"
-"detected in your machine by selecting \"See hardware info\" and clicking\n"
-"\"OK\". Examine the list of hardware and then click on the \"OK\" button to\n"
-"return to the SCSI interface question.\n"
+"be presented with a list of SCSI cards to choose from. Click \"No\" if you\n"
+"have no SCSI hardware. If you are unsure, you can check the list of\n"
+"hardware detected in your machine by selecting \"See hardware info\" and\n"
+"clicking \"OK\". Examine the list of hardware and then click on the \"OK\"\n"
+"button to return to the SCSI interface question.\n"
"\n"
"If you have to manually specify your adapter, DrakX will ask if you want to\n"
"specify options for it. You should allow DrakX to probe the hardware for\n"
@@ -3629,7 +3709,9 @@ msgid ""
"order to configure the clock according to the time zone you are in;\n"
"\n"
" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
-"configuration wizard;\n"
+"configuration wizard. Consult the corresponding chapter of the ``User\n"
+"Guide'' for more information on how to setup a new printer. The interface\n"
+"presented there is similar to the one used during installation;\n"
"\n"
" * \"Sound card\": if a sound card is detected on your system, it is\n"
"displayed here. No modification possible at installation time;\n"
@@ -3642,14 +3724,14 @@ msgid ""
"associated with it."
msgstr ""
-#: ../../help.pm_.c:894
+#: ../../help.pm_.c:896
msgid ""
"Choose the hard drive you want to erase in order to install your new\n"
"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
"and will not be recoverable!"
msgstr ""
-#: ../../help.pm_.c:899
+#: ../../help.pm_.c:901
msgid ""
"Click on \"OK\" if you want to delete all data and partitions present on\n"
"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
@@ -3673,7 +3755,7 @@ msgstr ""
msgid "You must also format %s"
msgstr ""
-#: ../../install_any.pm_.c:418
+#: ../../install_any.pm_.c:423
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -3688,30 +3770,47 @@ msgid ""
"Do you really want to install these servers?\n"
msgstr ""
-#: ../../install_any.pm_.c:453
+#: ../../install_any.pm_.c:441
+#, c-format
+msgid ""
+"The following packages will be removed to allow upgrading your system: %s\n"
+"\n"
+"\n"
+"Do you really want to remove these packages?\n"
+msgstr ""
+
+#: ../../install_any.pm_.c:471
msgid "Can't use broadcast with no NIS domain"
msgstr "Get ekki notađ útsendingu án NIS léns"
-#: ../../install_any.pm_.c:841
+#: ../../install_any.pm_.c:862
#, fuzzy, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Settu tóman diskling í drif %s"
-#: ../../install_any.pm_.c:845
+#: ../../install_any.pm_.c:866
msgid "This floppy is not FAT formatted"
msgstr ""
-#: ../../install_any.pm_.c:857
+#: ../../install_any.pm_.c:878
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
msgstr ""
-#: ../../install_any.pm_.c:880 ../../partition_table.pm_.c:771
+#: ../../install_any.pm_.c:901 ../../partition_table.pm_.c:767
#, c-format
msgid "Error reading file %s"
msgstr "villa viđ lestur úr skránni %s"
+#: ../../install_any.pm_.c:1023
+msgid ""
+"An error 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 athugađu vélbúnađinn í leit ađ orsök vandamálsins."
+
#: ../../install_interactive.pm_.c:23
#, c-format
msgid ""
@@ -3743,83 +3842,83 @@ msgstr ""
"\n"
"Halda samt áfram?"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:168
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:169
#, fuzzy
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "Țú verđur ađ hafa diskminni"
-#: ../../install_interactive.pm_.c:91
+#: ../../install_interactive.pm_.c:92
#, fuzzy
msgid "Use free space"
msgstr "Notandanafn:"
-#: ../../install_interactive.pm_.c:93
+#: ../../install_interactive.pm_.c:94
msgid "Not enough free space to allocate new partitions"
msgstr ""
-#: ../../install_interactive.pm_.c:101
+#: ../../install_interactive.pm_.c:102
#, fuzzy
msgid "Use existing partitions"
msgstr "Forsníđ disksneiđ %s"
-#: ../../install_interactive.pm_.c:103
+#: ../../install_interactive.pm_.c:104
#, fuzzy
msgid "There is no existing partition to use"
msgstr "Reyni ađ endurheimta disksneiđatöfluna"
-#: ../../install_interactive.pm_.c:110
+#: ../../install_interactive.pm_.c:111
msgid "Use the Windows partition for loopback"
msgstr ""
-#: ../../install_interactive.pm_.c:113
+#: ../../install_interactive.pm_.c:114
#, fuzzy
msgid "Which partition do you want to use for Linux4Win?"
msgstr "Hvađa disksneiđ vilt țú nota sem rótardisksneiđ"
-#: ../../install_interactive.pm_.c:115
+#: ../../install_interactive.pm_.c:116
#, fuzzy
msgid "Choose the sizes"
msgstr "Veldu nęja stærđ"
-#: ../../install_interactive.pm_.c:116
+#: ../../install_interactive.pm_.c:117
#, fuzzy
msgid "Root partition size in MB: "
msgstr "Rótardisksneiđ"
-#: ../../install_interactive.pm_.c:117
+#: ../../install_interactive.pm_.c:118
#, fuzzy
msgid "Swap partition size in MB: "
msgstr "Stærđ í MB: "
-#: ../../install_interactive.pm_.c:126
+#: ../../install_interactive.pm_.c:128
msgid "Use the free space on the Windows partition"
msgstr ""
-#: ../../install_interactive.pm_.c:129
+#: ../../install_interactive.pm_.c:131
#, fuzzy
msgid "Which partition do you want to resize?"
msgstr "Hvađa sneiđtegund viltu?"
-#: ../../install_interactive.pm_.c:131
+#: ../../install_interactive.pm_.c:133
#, fuzzy
msgid "Resizing Windows partition"
msgstr "Reikna takmarkanir FAT skráarkerfis..."
-#: ../../install_interactive.pm_.c:134
+#: ../../install_interactive.pm_.c:136
#, c-format
msgid ""
"The FAT resizer is unable to handle your partition, \n"
"the following error occured: %s"
msgstr ""
-#: ../../install_interactive.pm_.c:137
+#: ../../install_interactive.pm_.c:139
msgid ""
"Your Windows partition is too fragmented. Please reboot your computer under "
"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
"installation."
msgstr ""
-#: ../../install_interactive.pm_.c:138
+#: ../../install_interactive.pm_.c:140
#, fuzzy
msgid ""
"WARNING!\n"
@@ -3842,12 +3941,12 @@ msgstr ""
"gögnunum țínum.\n"
"Sláđu á 'Í lagi' til ađ halda áfram."
-#: ../../install_interactive.pm_.c:148
+#: ../../install_interactive.pm_.c:150
#, fuzzy
msgid "Which size do you want to keep for Windows on"
msgstr "Hvađa geira viltu færa gögn til?"
-#: ../../install_interactive.pm_.c:149
+#: ../../install_interactive.pm_.c:151
#, fuzzy, c-format
msgid "partition %s"
msgstr "Rótardisksneiđ"
@@ -3857,74 +3956,74 @@ msgstr "Rótardisksneiđ"
# *** ATH: Țađ er sumt eftir fyrir ofan ***
# ******************************************
#
-#: ../../install_interactive.pm_.c:156
+#: ../../install_interactive.pm_.c:158
#, fuzzy, c-format
msgid "FAT resizing failed: %s"
msgstr "Sjálfvirk endurstækkun brást"
-#: ../../install_interactive.pm_.c:171
+#: ../../install_interactive.pm_.c:173
msgid ""
"There is no FAT partition to resize or to use as loopback (or not enough "
"space left)"
msgstr ""
-#: ../../install_interactive.pm_.c:177
+#: ../../install_interactive.pm_.c:179
msgid "Erase entire disk"
msgstr ""
-#: ../../install_interactive.pm_.c:177
+#: ../../install_interactive.pm_.c:179
msgid "Remove Windows(TM)"
msgstr ""
-#: ../../install_interactive.pm_.c:180
+#: ../../install_interactive.pm_.c:182
msgid "You have more than one hard drive, which one do you install linux on?"
msgstr ""
-#: ../../install_interactive.pm_.c:183
+#: ../../install_interactive.pm_.c:185
#, fuzzy, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr "öll gögn á țessari disksneiđ tapast"
-#: ../../install_interactive.pm_.c:191
+#: ../../install_interactive.pm_.c:193
#, fuzzy
msgid "Custom disk partitioning"
msgstr "Forsníđ disksneiđ %s"
-#: ../../install_interactive.pm_.c:195
+#: ../../install_interactive.pm_.c:197
msgid "Use fdisk"
msgstr ""
-#: ../../install_interactive.pm_.c:198
+#: ../../install_interactive.pm_.c:200
#, c-format
msgid ""
"You can now partition %s.\n"
"When you are done, don't forget to save using `w'"
msgstr ""
-#: ../../install_interactive.pm_.c:227
+#: ../../install_interactive.pm_.c:229
#, fuzzy
msgid "You don't have enough free space on your Windows partition"
msgstr "Țú hefur ekki neinar disksneiđar"
-#: ../../install_interactive.pm_.c:243
+#: ../../install_interactive.pm_.c:245
#, fuzzy
msgid "I can't find any room for installing"
msgstr "Get ekki bætt viđ disksneiđum"
-#: ../../install_interactive.pm_.c:246
+#: ../../install_interactive.pm_.c:248
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr ""
-#: ../../install_interactive.pm_.c:250
+#: ../../install_interactive.pm_.c:252
#, fuzzy, c-format
msgid "Partitioning failed: %s"
msgstr "Rótardisksneiđ"
-#: ../../install_interactive.pm_.c:260
+#: ../../install_interactive.pm_.c:262
msgid "Bringing up the network"
msgstr "Keyri upp netiđ"
-#: ../../install_interactive.pm_.c:265
+#: ../../install_interactive.pm_.c:267
#, fuzzy
msgid "Bringing down the network"
msgstr "Keyri upp netiđ"
@@ -3937,12 +4036,12 @@ msgstr ""
"Óțekkt villa kom upp sem ekki er hægt ađ međhöndla.\n"
"Haltu áfram á eigin ábyrgđ."
-#: ../../install_steps.pm_.c:210
+#: ../../install_steps.pm_.c:211
#, c-format
msgid "Duplicate mount point %s"
msgstr "%s tengipunktur er nú țegar til"
-#: ../../install_steps.pm_.c:379
+#: ../../install_steps.pm_.c:380
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -3950,12 +4049,12 @@ msgid ""
"\"\n"
msgstr ""
-#: ../../install_steps.pm_.c:451
+#: ../../install_steps.pm_.c:452
#, fuzzy, c-format
msgid "Welcome to %s"
msgstr "Velkomin(n) í tölvuțrjótinn"
-#: ../../install_steps.pm_.c:530 ../../install_steps.pm_.c:770
+#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:772
msgid "No floppy drive available"
msgstr "Ekkert disklingadrif ađgengilegt"
@@ -3982,151 +4081,151 @@ msgstr "Innsetningarađferđ"
msgid "Please choose one of the following classes of installation:"
msgstr "Vinsamlega tilgreindu eftirfarandi"
-#: ../../install_steps_gtk.pm_.c:243 ../../install_steps_interactive.pm_.c:694
+#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:678
msgid "Package Group Selection"
msgstr "Val á pakkahóp"
-#: ../../install_steps_gtk.pm_.c:276 ../../install_steps_interactive.pm_.c:709
+#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:693
#, fuzzy
msgid "Individual package selection"
msgstr "Val á pakkahóp"
-#: ../../install_steps_gtk.pm_.c:299 ../../install_steps_interactive.pm_.c:633
+#: ../../install_steps_gtk.pm_.c:293 ../../install_steps_interactive.pm_.c:617
#, fuzzy, c-format
msgid "Total size: %d / %d MB"
msgstr "Heildarstærđ: "
-#: ../../install_steps_gtk.pm_.c:341
+#: ../../install_steps_gtk.pm_.c:335
msgid "Bad package"
msgstr "Skemmdur pakki"
-#: ../../install_steps_gtk.pm_.c:342
+#: ../../install_steps_gtk.pm_.c:336
#, c-format
msgid "Name: %s\n"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:343
+#: ../../install_steps_gtk.pm_.c:337
#, c-format
msgid "Version: %s\n"
msgstr "Útgáfa: %s\n"
-#: ../../install_steps_gtk.pm_.c:344
+#: ../../install_steps_gtk.pm_.c:338
#, c-format
msgid "Size: %d KB\n"
msgstr "Stærđ: %d KB\n"
-#: ../../install_steps_gtk.pm_.c:345
+#: ../../install_steps_gtk.pm_.c:339
#, c-format
msgid "Importance: %s\n"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:367
+#: ../../install_steps_gtk.pm_.c:361
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:372
+#: ../../install_steps_gtk.pm_.c:366
#, fuzzy
msgid "The following packages are going to be installed"
msgstr "Eftirfarandi pakkar verđa fjarlægđir"
-#: ../../install_steps_gtk.pm_.c:373
+#: ../../install_steps_gtk.pm_.c:367
#, fuzzy
msgid "The following packages are going to be removed"
msgstr "Eftirfarandi pakkar verđa fjarlægđir"
-#: ../../install_steps_gtk.pm_.c:385
+#: ../../install_steps_gtk.pm_.c:379
msgid "You can't select/unselect this package"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:397
+#: ../../install_steps_gtk.pm_.c:391
msgid "This is a mandatory package, it can't be unselected"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:399
+#: ../../install_steps_gtk.pm_.c:393
msgid "You can't unselect this package. It is already installed"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:402
+#: ../../install_steps_gtk.pm_.c:396
msgid ""
"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:405
+#: ../../install_steps_gtk.pm_.c:399
msgid "You can't unselect this package. It must be upgraded"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:410
+#: ../../install_steps_gtk.pm_.c:404
msgid "Show automatically selected packages"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:411 ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_gtk.pm_.c:405 ../../install_steps_interactive.pm_.c:255
#: ../../install_steps_interactive.pm_.c:259
-#: ../../standalone/drakbackup_.c:3600
+#: ../../standalone/drakbackup_.c:4257
msgid "Install"
msgstr "Innsetning"
-#: ../../install_steps_gtk.pm_.c:414
+#: ../../install_steps_gtk.pm_.c:408
#, fuzzy
msgid "Load/Save on floppy"
msgstr "Vista á diskling"
-#: ../../install_steps_gtk.pm_.c:415
+#: ../../install_steps_gtk.pm_.c:409
#, fuzzy
msgid "Updating package selection"
msgstr "Val á pakkahóp"
-#: ../../install_steps_gtk.pm_.c:420
+#: ../../install_steps_gtk.pm_.c:414
#, fuzzy
msgid "Minimal install"
msgstr "Fjarlægja"
-#: ../../install_steps_gtk.pm_.c:435 ../../install_steps_interactive.pm_.c:538
+#: ../../install_steps_gtk.pm_.c:429 ../../install_steps_interactive.pm_.c:522
msgid "Choose the packages you want to install"
msgstr "Veldu pakkana sem țú vilt setja inn"
-#: ../../install_steps_gtk.pm_.c:451 ../../install_steps_interactive.pm_.c:778
+#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:762
msgid "Installing"
msgstr "Set inn"
-#: ../../install_steps_gtk.pm_.c:457
+#: ../../install_steps_gtk.pm_.c:451
msgid "Estimating"
msgstr "Áætla"
-#: ../../install_steps_gtk.pm_.c:464
+#: ../../install_steps_gtk.pm_.c:458
msgid "Time remaining "
msgstr "Tími eftir "
-#: ../../install_steps_gtk.pm_.c:476
+#: ../../install_steps_gtk.pm_.c:470
#, fuzzy
msgid "Please wait, preparing installation..."
msgstr "Undirbę innsetningu"
-#: ../../install_steps_gtk.pm_.c:560
+#: ../../install_steps_gtk.pm_.c:554
#, c-format
msgid "%d packages"
msgstr "%d pakkar"
-#: ../../install_steps_gtk.pm_.c:565
+#: ../../install_steps_gtk.pm_.c:559
#, c-format
msgid "Installing package %s"
msgstr "Set inn pakka %s"
-#: ../../install_steps_gtk.pm_.c:602 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:802
+#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:786
#: ../../standalone/drakautoinst_.c:202
#, fuzzy
msgid "Accept"
msgstr "Samțykkja notanda"
-#: ../../install_steps_gtk.pm_.c:602 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:802
+#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:786
#, fuzzy
msgid "Refuse"
msgstr "Endurstækka"
-#: ../../install_steps_gtk.pm_.c:603 ../../install_steps_interactive.pm_.c:803
+#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:787
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4136,17 +4235,17 @@ msgid ""
"If you don't have it, press Cancel to avoid installation from this Cd-Rom."
msgstr ""
-#: ../../install_steps_gtk.pm_.c:617 ../../install_steps_gtk.pm_.c:621
-#: ../../install_steps_interactive.pm_.c:815
-#: ../../install_steps_interactive.pm_.c:819
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_gtk.pm_.c:615
+#: ../../install_steps_interactive.pm_.c:799
+#: ../../install_steps_interactive.pm_.c:803
msgid "Go on anyway?"
msgstr "Viltu samt halda áfram?"
-#: ../../install_steps_gtk.pm_.c:617 ../../install_steps_interactive.pm_.c:815
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:799
msgid "There was an error ordering packages:"
msgstr "Țađ kom upp villa viđ ađ rađa pökkum:"
-#: ../../install_steps_gtk.pm_.c:621 ../../install_steps_interactive.pm_.c:819
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:803
#, fuzzy
msgid "There was an error installing packages:"
msgstr "Țađ kom upp villa viđ ađ rađa pökkum:"
@@ -4322,7 +4421,7 @@ msgid "Are you sure you refuse the licence?"
msgstr ""
#: ../../install_steps_interactive.pm_.c:211
-#: ../../install_steps_interactive.pm_.c:1038
+#: ../../install_steps_interactive.pm_.c:1023
#: ../../standalone/keyboarddrake_.c:31
msgid "Keyboard"
msgstr "Lyklaborđ"
@@ -4377,11 +4476,11 @@ msgstr "Val á pakkahóp"
msgid "Please choose the type of your mouse."
msgstr "Hvernig mús ertu međ?"
-#: ../../install_steps_interactive.pm_.c:281 ../../standalone/mousedrake_.c:59
+#: ../../install_steps_interactive.pm_.c:281 ../../standalone/mousedrake_.c:60
msgid "Mouse Port"
msgstr "Músartengi"
-#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:61
#, fuzzy
msgid "Please choose on which serial port your mouse is connected to."
msgstr "Viđ hvađa rađtengi er músin țín tengd?"
@@ -4415,192 +4514,171 @@ msgstr "Uppsetning"
msgid "IDE"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:336
+#: ../../install_steps_interactive.pm_.c:338
msgid "No partition available"
msgstr "engar reiđubúnar disksneiđar"
-#: ../../install_steps_interactive.pm_.c:339
+#: ../../install_steps_interactive.pm_.c:341
msgid "Scanning partitions to find mount points"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:347
+#: ../../install_steps_interactive.pm_.c:349
msgid "Choose the mount points"
msgstr "Veldu tengipunktana"
-#: ../../install_steps_interactive.pm_.c:366
-#, fuzzy, c-format
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to not allow DrakX to modify the partition table.\n"
-"(the error is %s)\n"
-"\n"
-"Do you agree to loose all the partitions?\n"
-msgstr ""
-"Ég get ekki lesiđ disksneiđatöflu țína, hún er of skemmd fyrir mig :-(\n"
-"Ég mun reyna ađ halda áfram međ țví ađ hreinsa skemmdar disksneiđar"
-
#: ../../install_steps_interactive.pm_.c:379
msgid ""
-"DiskDrake failed to read correctly the partition table.\n"
-"Continue at your own risk!"
-msgstr ""
-"DiskDrake gat ekki lesiđ sneiđatöfluna.\n"
-"Haltu áfram á eigin ábyrgđ!"
-
-#: ../../install_steps_interactive.pm_.c:396
-msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:405
+#: ../../install_steps_interactive.pm_.c:388
#, fuzzy
msgid "No root partition found to perform an upgrade"
msgstr "Engin rótarsneiđ fannst"
-#: ../../install_steps_interactive.pm_.c:406
+#: ../../install_steps_interactive.pm_.c:389
msgid "Root Partition"
msgstr "Rótardisksneiđ"
-#: ../../install_steps_interactive.pm_.c:407
+#: ../../install_steps_interactive.pm_.c:390
msgid "What is the root partition (/) of your system?"
msgstr "Hver er rótardisksneiđ (/) kerfisins?"
-#: ../../install_steps_interactive.pm_.c:421
+#: ../../install_steps_interactive.pm_.c:404
msgid "You need to reboot for the partition table modifications to take place"
msgstr ""
"Țú verđur ađ ræsa tölvuna aftur svo breytingar á sneiđatöflunni taki gildi"
-#: ../../install_steps_interactive.pm_.c:445
+#: ../../install_steps_interactive.pm_.c:428
msgid "Choose the partitions you want to format"
msgstr "Veldu țær disksneiđar sem á ađ forsníđa"
-#: ../../install_steps_interactive.pm_.c:446
+#: ../../install_steps_interactive.pm_.c:429
msgid "Check bad blocks?"
msgstr "Athuga skemmdar blokkir?"
-#: ../../install_steps_interactive.pm_.c:473
+#: ../../install_steps_interactive.pm_.c:456
#, fuzzy
msgid "Formatting partitions"
msgstr "Forsníđ disksneiđ %s"
-#: ../../install_steps_interactive.pm_.c:475
+#: ../../install_steps_interactive.pm_.c:458
#, c-format
msgid "Creating and formatting file %s"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:480
+#: ../../install_steps_interactive.pm_.c:463
#, c-format
msgid ""
"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
"you can loose data)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:482
+#: ../../install_steps_interactive.pm_.c:465
msgid "Not enough swap space to fulfill installation, please add some"
msgstr "Ekki nægjanlegt diskminni fyrir innsetningu. Bættu viđ țađ"
-#: ../../install_steps_interactive.pm_.c:489
+#: ../../install_steps_interactive.pm_.c:472
#, fuzzy
msgid "Looking for available packages and rebuilding rpm database..."
msgstr "Leita ađ fáanlegum pökkum"
-#: ../../install_steps_interactive.pm_.c:490
+#: ../../install_steps_interactive.pm_.c:473
msgid "Looking for available packages..."
msgstr "Leita ađ fáanlegum pökkum"
-#: ../../install_steps_interactive.pm_.c:493
+#: ../../install_steps_interactive.pm_.c:476
#, fuzzy
msgid "Looking at packages already installed..."
msgstr "Eftirfarandi pakkar verđa fjarlægđir"
-#: ../../install_steps_interactive.pm_.c:497
+#: ../../install_steps_interactive.pm_.c:480
msgid "Finding packages to upgrade..."
msgstr "Leita ađ pökkum til ađ uppfæra"
-#: ../../install_steps_interactive.pm_.c:515
+#: ../../install_steps_interactive.pm_.c:498
#, c-format
msgid ""
"Your system does not have enough space left for installation or upgrade (%d "
"> %d)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:550
+#: ../../install_steps_interactive.pm_.c:534
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:553
+#: ../../install_steps_interactive.pm_.c:537
#, fuzzy
msgid "Load from floppy"
msgstr "Endurheimta frá diskling"
-#: ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_interactive.pm_.c:539
#, fuzzy
msgid "Loading from floppy"
msgstr "Endurheimta frá diskling"
-#: ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_interactive.pm_.c:539
#, fuzzy
msgid "Package selection"
msgstr "Val á pakkahóp"
-#: ../../install_steps_interactive.pm_.c:560
+#: ../../install_steps_interactive.pm_.c:544
#, fuzzy
msgid "Insert a floppy containing package selection"
msgstr "Settu tóman diskling í drif %s"
-#: ../../install_steps_interactive.pm_.c:572
+#: ../../install_steps_interactive.pm_.c:556
msgid "Save on floppy"
msgstr "Vista á diskling"
-#: ../../install_steps_interactive.pm_.c:646
+#: ../../install_steps_interactive.pm_.c:630
msgid "Selected size is larger than available space"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:660
+#: ../../install_steps_interactive.pm_.c:644
#, fuzzy
msgid "Type of install"
msgstr "Veldu pakka til ađ setja inn"
-#: ../../install_steps_interactive.pm_.c:661
+#: ../../install_steps_interactive.pm_.c:645
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:664
+#: ../../install_steps_interactive.pm_.c:648
#, fuzzy
msgid "With X"
msgstr "Augnablik"
-#: ../../install_steps_interactive.pm_.c:666
+#: ../../install_steps_interactive.pm_.c:650
msgid "With basic documentation (recommended!)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:667
+#: ../../install_steps_interactive.pm_.c:651
msgid "Truly minimal install (especially no urpmi)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:752
+#: ../../install_steps_interactive.pm_.c:736
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
"If only some CDs are missing, unselect them, then click Ok."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:757
+#: ../../install_steps_interactive.pm_.c:741
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr ""
-#: ../../install_steps_interactive.pm_.c:778
+#: ../../install_steps_interactive.pm_.c:762
msgid "Preparing installation"
msgstr "Undirbę innsetningu"
-#: ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:771
#, c-format
msgid ""
"Installing package %s\n"
@@ -4609,21 +4687,21 @@ msgstr ""
"Set inn pakka %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:833
+#: ../../install_steps_interactive.pm_.c:817
msgid "Post-install configuration"
msgstr "Lokauppsetning"
-#: ../../install_steps_interactive.pm_.c:839
+#: ../../install_steps_interactive.pm_.c:823
#, fuzzy, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Settu tóman diskling í drif %s"
-#: ../../install_steps_interactive.pm_.c:845
+#: ../../install_steps_interactive.pm_.c:829
#, fuzzy, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Settu tóman diskling í drif %s"
-#: ../../install_steps_interactive.pm_.c:865
+#: ../../install_steps_interactive.pm_.c:849
#, fuzzy
msgid ""
"You now have the opportunity to download encryption software.\n"
@@ -4706,7 +4784,7 @@ msgstr ""
"Altadena, California, 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:904
+#: ../../install_steps_interactive.pm_.c:888
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
"have been released after the distribution was released. They may\n"
@@ -4718,168 +4796,168 @@ msgid ""
"Do you want to install the updates ?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:919
+#: ../../install_steps_interactive.pm_.c:903
#, fuzzy
msgid ""
"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr "Hef samband viđ vélina til ađ sækja lista yfir fáanlega pakka"
-#: ../../install_steps_interactive.pm_.c:924
+#: ../../install_steps_interactive.pm_.c:908
msgid "Choose a mirror from which to get the packages"
msgstr "Veldu spegilvélina țađan sem á ađ sækja pakkanna"
-#: ../../install_steps_interactive.pm_.c:933
+#: ../../install_steps_interactive.pm_.c:917
msgid "Contacting the mirror to get the list of available packages..."
msgstr "Hef samband viđ vélina til ađ sækja lista yfir fáanlega pakka"
-#: ../../install_steps_interactive.pm_.c:960
+#: ../../install_steps_interactive.pm_.c:945
#, fuzzy
msgid "Which is your timezone?"
msgstr "Á hvađa tímasvæđi ertu?"
-#: ../../install_steps_interactive.pm_.c:965
+#: ../../install_steps_interactive.pm_.c:950
#, fuzzy
msgid "Hardware clock set to GMT"
msgstr "Veltu stilla tölvuklukkuna á GMT?"
-#: ../../install_steps_interactive.pm_.c:966
+#: ../../install_steps_interactive.pm_.c:951
msgid "Automatic time synchronization (using NTP)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:973
+#: ../../install_steps_interactive.pm_.c:958
#, fuzzy
msgid "NTP Server"
msgstr "NIS țjónn"
-#: ../../install_steps_interactive.pm_.c:1007
-#: ../../install_steps_interactive.pm_.c:1015
+#: ../../install_steps_interactive.pm_.c:992
+#: ../../install_steps_interactive.pm_.c:1000
#, fuzzy
msgid "Remote CUPS server"
msgstr "Fjartengd prentröđ"
-#: ../../install_steps_interactive.pm_.c:1008
+#: ../../install_steps_interactive.pm_.c:993
#, fuzzy
msgid "No printer"
msgstr "Stađbundinn prentari"
-#: ../../install_steps_interactive.pm_.c:1025
+#: ../../install_steps_interactive.pm_.c:1010
#, fuzzy
msgid "Do you have an ISA sound card?"
msgstr "Er kannski eitt enn í vélinni?"
-#: ../../install_steps_interactive.pm_.c:1027
+#: ../../install_steps_interactive.pm_.c:1012
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1029
+#: ../../install_steps_interactive.pm_.c:1014
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1034 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1019 ../../steps.pm_.c:27
msgid "Summary"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1037
+#: ../../install_steps_interactive.pm_.c:1022
#, fuzzy
msgid "Mouse"
msgstr "USB mús"
-#: ../../install_steps_interactive.pm_.c:1039
+#: ../../install_steps_interactive.pm_.c:1024
msgid "Timezone"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1040 ../../printerdrake.pm_.c:2728
-#: ../../printerdrake.pm_.c:2814
+#: ../../install_steps_interactive.pm_.c:1025 ../../printerdrake.pm_.c:2937
+#: ../../printerdrake.pm_.c:3026
msgid "Printer"
msgstr "Prentari"
-#: ../../install_steps_interactive.pm_.c:1042
+#: ../../install_steps_interactive.pm_.c:1027
msgid "ISDN card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1045
-#: ../../install_steps_interactive.pm_.c:1047
+#: ../../install_steps_interactive.pm_.c:1030
+#: ../../install_steps_interactive.pm_.c:1032
msgid "Sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1049
+#: ../../install_steps_interactive.pm_.c:1034
msgid "TV card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1089
-#: ../../install_steps_interactive.pm_.c:1114
-#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1074
+#: ../../install_steps_interactive.pm_.c:1099
+#: ../../install_steps_interactive.pm_.c:1103
msgid "LDAP"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1090
-#: ../../install_steps_interactive.pm_.c:1114
-#: ../../install_steps_interactive.pm_.c:1127
+#: ../../install_steps_interactive.pm_.c:1075
+#: ../../install_steps_interactive.pm_.c:1099
+#: ../../install_steps_interactive.pm_.c:1112
#, fuzzy
msgid "NIS"
msgstr "Nota NIS"
-#: ../../install_steps_interactive.pm_.c:1091
-#: ../../install_steps_interactive.pm_.c:1114
-#: ../../install_steps_interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1141
+#: ../../install_steps_interactive.pm_.c:1076
+#: ../../install_steps_interactive.pm_.c:1099
+#: ../../install_steps_interactive.pm_.c:1120
+#: ../../install_steps_interactive.pm_.c:1126
#, fuzzy
msgid "Windows Domain"
msgstr "Upplęsingar"
-#: ../../install_steps_interactive.pm_.c:1092
-#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1077
+#: ../../install_steps_interactive.pm_.c:1099
#, fuzzy
msgid "Local files"
msgstr "Stađbundinn prentari"
-#: ../../install_steps_interactive.pm_.c:1101
-#: ../../install_steps_interactive.pm_.c:1102 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1086
+#: ../../install_steps_interactive.pm_.c:1087 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Ákveđa rótarlykilorđ"
-#: ../../install_steps_interactive.pm_.c:1103
+#: ../../install_steps_interactive.pm_.c:1088
msgid "No password"
msgstr "Ekkert lykilorđ"
-#: ../../install_steps_interactive.pm_.c:1108
+#: ../../install_steps_interactive.pm_.c:1093
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr "Țetta lykilorđ er of einfalt (verđur ađ vera minnst %d stafa langt)"
-#: ../../install_steps_interactive.pm_.c:1114 ../../network/modem.pm_.c:49
+#: ../../install_steps_interactive.pm_.c:1099 ../../network/modem.pm_.c:49
#: ../../standalone/drakconnect_.c:625 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Auđkenning"
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1107
#, fuzzy
msgid "Authentication LDAP"
msgstr "Auđkenning"
-#: ../../install_steps_interactive.pm_.c:1123
+#: ../../install_steps_interactive.pm_.c:1108
msgid "LDAP Base dn"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1124
+#: ../../install_steps_interactive.pm_.c:1109
#, fuzzy
msgid "LDAP Server"
msgstr "netțjónn"
-#: ../../install_steps_interactive.pm_.c:1130
+#: ../../install_steps_interactive.pm_.c:1115
#, fuzzy
msgid "Authentication NIS"
msgstr "Auđkenning NIS"
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1116
msgid "NIS Domain"
msgstr "NIS lén"
-#: ../../install_steps_interactive.pm_.c:1132
+#: ../../install_steps_interactive.pm_.c:1117
msgid "NIS Server"
msgstr "NIS țjónn"
-#: ../../install_steps_interactive.pm_.c:1138
+#: ../../install_steps_interactive.pm_.c:1123
msgid ""
"For this to work for a W2K PDC, you will probably need to have the admin "
"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
@@ -4895,21 +4973,21 @@ msgid ""
"good."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1140
+#: ../../install_steps_interactive.pm_.c:1125
#, fuzzy
msgid "Authentication Windows Domain"
msgstr "Auđkenning"
-#: ../../install_steps_interactive.pm_.c:1142
+#: ../../install_steps_interactive.pm_.c:1127
#, fuzzy
msgid "Domain Admin User Name"
msgstr "Nafn léns"
-#: ../../install_steps_interactive.pm_.c:1143
+#: ../../install_steps_interactive.pm_.c:1128
msgid "Domain Admin Password"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1178
+#: ../../install_steps_interactive.pm_.c:1163
#, fuzzy
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -4938,21 +5016,21 @@ msgstr ""
" vélinni ef alvarleg vandamál koma upp.\n"
"Viltu búa til ræsidiskling fyrir vélina țína?"
-#: ../../install_steps_interactive.pm_.c:1194
+#: ../../install_steps_interactive.pm_.c:1179
#, fuzzy
msgid "First floppy drive"
msgstr "Fyrsta drif"
-#: ../../install_steps_interactive.pm_.c:1195
+#: ../../install_steps_interactive.pm_.c:1180
#, fuzzy
msgid "Second floppy drive"
msgstr "Annađ drif"
-#: ../../install_steps_interactive.pm_.c:1196 ../../printerdrake.pm_.c:2277
+#: ../../install_steps_interactive.pm_.c:1181 ../../printerdrake.pm_.c:2470
msgid "Skip"
msgstr "Sleppa"
-#: ../../install_steps_interactive.pm_.c:1201
+#: ../../install_steps_interactive.pm_.c:1186
#, fuzzy, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -4979,7 +5057,7 @@ msgstr ""
"Viltu búa til ræsidiskling fyrir vélina țína?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1207
+#: ../../install_steps_interactive.pm_.c:1192
msgid ""
"\n"
"\n"
@@ -4988,28 +5066,28 @@ msgid ""
"because XFS needs a very large driver)."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1215
+#: ../../install_steps_interactive.pm_.c:1200
msgid "Sorry, no floppy drive available"
msgstr "Ekkert disklingadrif til stađar"
-#: ../../install_steps_interactive.pm_.c:1219
+#: ../../install_steps_interactive.pm_.c:1204
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "Veldu disklingadrifiđ sem țú vilt nota til ađ gera ræsidisk"
-#: ../../install_steps_interactive.pm_.c:1223
+#: ../../install_steps_interactive.pm_.c:1208
#, fuzzy, c-format
msgid "Insert a floppy in %s"
msgstr "Settu tóman diskling í drif %s"
-#: ../../install_steps_interactive.pm_.c:1226
+#: ../../install_steps_interactive.pm_.c:1211
msgid "Creating bootdisk..."
msgstr "Bę til ræsidiskling..."
-#: ../../install_steps_interactive.pm_.c:1233
+#: ../../install_steps_interactive.pm_.c:1218
msgid "Preparing bootloader..."
msgstr "Set upp ræsistjórann..."
-#: ../../install_steps_interactive.pm_.c:1244
+#: ../../install_steps_interactive.pm_.c:1229
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5017,28 +5095,28 @@ msgid ""
" need to use BootX to boot your machine"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1250
+#: ../../install_steps_interactive.pm_.c:1235
#, fuzzy
msgid "Do you want to use aboot?"
msgstr "Viltu nota SILO?"
-#: ../../install_steps_interactive.pm_.c:1253
+#: ../../install_steps_interactive.pm_.c:1238
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1260
+#: ../../install_steps_interactive.pm_.c:1245
#, fuzzy
msgid "Installing bootloader"
msgstr "Setja inn ræsihlađara"
-#: ../../install_steps_interactive.pm_.c:1266
+#: ../../install_steps_interactive.pm_.c:1251
#, fuzzy
msgid "Installation of bootloader failed. The following error occured:"
msgstr "Innsetning LILO brást sökum eftirfarandi villu:"
-#: ../../install_steps_interactive.pm_.c:1274
+#: ../../install_steps_interactive.pm_.c:1259
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -5049,18 +5127,18 @@ msgid ""
"At your next boot you should see the bootloader prompt."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1308
+#: ../../install_steps_interactive.pm_.c:1293
#: ../../standalone/drakautoinst_.c:79
#, fuzzy, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Settu tóman diskling í drif %s"
-#: ../../install_steps_interactive.pm_.c:1312
+#: ../../install_steps_interactive.pm_.c:1297
#, fuzzy
msgid "Creating auto install floppy..."
msgstr "Undirbę innsetningu"
-#: ../../install_steps_interactive.pm_.c:1323
+#: ../../install_steps_interactive.pm_.c:1308
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -5070,7 +5148,7 @@ msgstr ""
"\n"
"Viltu virkilega hætta núna?"
-#: ../../install_steps_interactive.pm_.c:1334
+#: ../../install_steps_interactive.pm_.c:1319
#, fuzzy, c-format
msgid ""
"Congratulations, installation is complete.\n"
@@ -5100,16 +5178,16 @@ msgstr ""
"Frekari upplęsingar um hvernig á ađ stilla vélina eftir innsetninguna er ađ\n"
"finna í viđeigandi kafla í Official Mandrake Linux User's Guide bókinni."
-#: ../../install_steps_interactive.pm_.c:1347
+#: ../../install_steps_interactive.pm_.c:1332
msgid "http://www.mandrakelinux.com/en/90errata.php3"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1352
+#: ../../install_steps_interactive.pm_.c:1337
#, fuzzy
msgid "Generate auto install floppy"
msgstr "Undirbę innsetningu"
-#: ../../install_steps_interactive.pm_.c:1354
+#: ../../install_steps_interactive.pm_.c:1339
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -5118,17 +5196,17 @@ msgid ""
"You may prefer to replay the installation.\n"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1359
+#: ../../install_steps_interactive.pm_.c:1344
#, fuzzy
msgid "Automated"
msgstr "Sjálfvirkt IP"
-#: ../../install_steps_interactive.pm_.c:1359
+#: ../../install_steps_interactive.pm_.c:1344
#, fuzzy
msgid "Replay"
msgstr "Endurhlađa"
-#: ../../install_steps_interactive.pm_.c:1362
+#: ../../install_steps_interactive.pm_.c:1347
#, fuzzy
msgid "Save packages selection"
msgstr "Val á pakkahóp"
@@ -5138,7 +5216,8 @@ msgstr "Val á pakkahóp"
msgid "Mandrake Linux Installation %s"
msgstr "Mandrake Linux innsetning %s"
-#: ../../install_steps_newt.pm_.c:34
+#. -PO This string must fit in a 80-char wide text screen
+#: ../../install_steps_newt.pm_.c:35
msgid ""
" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
msgstr ""
@@ -5157,22 +5236,22 @@ msgstr ""
msgid "Choose a file"
msgstr "Veldu ađgerđ"
-#: ../../interactive.pm_.c:317
+#: ../../interactive.pm_.c:320
msgid "Advanced"
msgstr ""
-#: ../../interactive.pm_.c:318
+#: ../../interactive.pm_.c:321
msgid "Basic"
msgstr ""
-#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:155
-#: ../../printerdrake.pm_.c:1990
+#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:158
+#: ../../printerdrake.pm_.c:2124
msgid "<- Previous"
msgstr ""
#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
-#: ../../standalone/drakbackup_.c:3464 ../../standalone/drakbackup_.c:3491
-#: ../../standalone/drakbackup_.c:3517
+#: ../../standalone/drakbackup_.c:4112 ../../standalone/drakbackup_.c:4139
+#: ../../standalone/drakbackup_.c:4169 ../../standalone/drakbackup_.c:4195
#, fuzzy
msgid "Next"
msgstr "Texta"
@@ -5240,397 +5319,397 @@ msgstr ""
msgid "Re-submit"
msgstr ""
-#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:152 ../../keyboard.pm_.c:187
msgid "Czech (QWERTZ)"
msgstr "Tékkneskt (QWERTZ)"
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:153 ../../keyboard.pm_.c:189
msgid "German"
msgstr "Țęskt"
-#: ../../keyboard.pm_.c:175
+#: ../../keyboard.pm_.c:154
msgid "Dvorak"
msgstr "Dvorak"
-#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:218
+#: ../../keyboard.pm_.c:155 ../../keyboard.pm_.c:197
msgid "Spanish"
msgstr "Spænskt"
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:156 ../../keyboard.pm_.c:198
msgid "Finnish"
msgstr "Finnskt"
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:220
+#: ../../keyboard.pm_.c:157 ../../keyboard.pm_.c:199
msgid "French"
msgstr "Franskt"
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:158 ../../keyboard.pm_.c:231
msgid "Norwegian"
msgstr "Norkst"
-#: ../../keyboard.pm_.c:180
+#: ../../keyboard.pm_.c:159
msgid "Polish"
msgstr "Pólskt"
-#: ../../keyboard.pm_.c:181 ../../keyboard.pm_.c:260
+#: ../../keyboard.pm_.c:160 ../../keyboard.pm_.c:239
msgid "Russian"
msgstr "Rússneskt"
-#: ../../keyboard.pm_.c:183 ../../keyboard.pm_.c:262
+#: ../../keyboard.pm_.c:162 ../../keyboard.pm_.c:241
msgid "Swedish"
msgstr "Sænskt"
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:278
+#: ../../keyboard.pm_.c:163 ../../keyboard.pm_.c:257
msgid "UK keyboard"
msgstr "Breskt lyklaborđ"
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:279
+#: ../../keyboard.pm_.c:164 ../../keyboard.pm_.c:258
msgid "US keyboard"
msgstr "Bandarískt lyklaborđ"
-#: ../../keyboard.pm_.c:187
+#: ../../keyboard.pm_.c:166
#, fuzzy
msgid "Albanian"
msgstr "Úkraínkst"
-#: ../../keyboard.pm_.c:188
+#: ../../keyboard.pm_.c:167
#, fuzzy
msgid "Armenian (old)"
msgstr "Armenískt"
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:168
#, fuzzy
msgid "Armenian (typewriter)"
msgstr "Armenískt (hljóđfræđilegt)"
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:169
msgid "Armenian (phonetic)"
msgstr "Armenískt (hljóđfræđilegt)"
-#: ../../keyboard.pm_.c:195
+#: ../../keyboard.pm_.c:174
msgid "Azerbaidjani (latin)"
msgstr ""
-#: ../../keyboard.pm_.c:197
+#: ../../keyboard.pm_.c:176
msgid "Belgian"
msgstr "Belgískt"
-#: ../../keyboard.pm_.c:198
+#: ../../keyboard.pm_.c:177
#, fuzzy
msgid "Bengali"
msgstr "Tafla"
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:178
#, fuzzy
msgid "Bulgarian (phonetic)"
msgstr "Armenískt (hljóđfræđilegt)"
-#: ../../keyboard.pm_.c:200
+#: ../../keyboard.pm_.c:179
#, fuzzy
msgid "Bulgarian (BDS)"
msgstr "Búlgarskt"
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:180
msgid "Brazilian (ABNT-2)"
msgstr "Brasilískt"
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:183
#, fuzzy
msgid "Bosnian"
msgstr "Eistlenskt"
-#: ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:184
#, fuzzy
msgid "Belarusian"
msgstr "Búlgarskt"
-#: ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:185
msgid "Swiss (German layout)"
msgstr "Svissneskt (țęsk uppsetn.)"
-#: ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:186
msgid "Swiss (French layout)"
msgstr "Svissneskt (frönsk uppsetn.)"
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:188
msgid "Czech (QWERTY)"
msgstr "Tékkneskt (QWERTY)"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:190
msgid "German (no dead keys)"
msgstr ""
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:191
msgid "Devanagari"
msgstr ""
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:192
msgid "Danish"
msgstr "Danskt"
-#: ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:193
#, fuzzy
msgid "Dvorak (US)"
msgstr "Dvorak"
-#: ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:194
#, fuzzy
msgid "Dvorak (Norwegian)"
msgstr "Norkst"
-#: ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:195
#, fuzzy
msgid "Dvorak (Swedish)"
msgstr "Dvorak"
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:196
msgid "Estonian"
msgstr "Eistlenskt"
-#: ../../keyboard.pm_.c:221
+#: ../../keyboard.pm_.c:200
msgid "Georgian (\"Russian\" layout)"
msgstr "Georgískt (\"Rússneskt\")"
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:201
msgid "Georgian (\"Latin\" layout)"
msgstr "Georgískt (\"Latínu\")"
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:202
msgid "Greek"
msgstr "Grískt"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:203
msgid "Gujarati"
msgstr ""
-#: ../../keyboard.pm_.c:225
+#: ../../keyboard.pm_.c:204
msgid "Gurmukhi"
msgstr ""
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:205
msgid "Hungarian"
msgstr "Ungverskt"
-#: ../../keyboard.pm_.c:227
+#: ../../keyboard.pm_.c:206
msgid "Croatian"
msgstr ""
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:207
msgid "Israeli"
msgstr "Ísraelískt"
-#: ../../keyboard.pm_.c:229
+#: ../../keyboard.pm_.c:208
msgid "Israeli (Phonetic)"
msgstr "Ísraelískt (hljóđfr.)"
-#: ../../keyboard.pm_.c:230
+#: ../../keyboard.pm_.c:209
#, fuzzy
msgid "Iranian"
msgstr "Úkraínkst"
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:210
msgid "Icelandic"
msgstr "Íslenskt"
-#: ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:211
msgid "Italian"
msgstr "Ítalskt"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:212
msgid "Inuktitut"
msgstr ""
-#: ../../keyboard.pm_.c:234
+#: ../../keyboard.pm_.c:213
msgid "Japanese 106 keys"
msgstr ""
-#: ../../keyboard.pm_.c:237
+#: ../../keyboard.pm_.c:216
#, fuzzy
msgid "Korean keyboard"
msgstr "Breskt lyklaborđ"
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:217
msgid "Latin American"
msgstr "Suđur amerískt"
-#: ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:218
#, fuzzy
msgid "Laotian"
msgstr "Upplęsingar"
-#: ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:219
#, fuzzy
msgid "Lithuanian AZERTY (old)"
msgstr "Litháenískt AZERTY"
-#: ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:221
#, fuzzy
msgid "Lithuanian AZERTY (new)"
msgstr "Litháenískt AZERTY"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:222
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Litháenískt \"töluröđ\" QWERTY"
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:223
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "Litháenískt \"hljóđfræđilegt\" QWERTY"
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:224
#, fuzzy
msgid "Latvian"
msgstr "Upplęsingar"
-#: ../../keyboard.pm_.c:246
+#: ../../keyboard.pm_.c:225
msgid "Macedonian"
msgstr ""
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:226
msgid "Myanmar (Burmese)"
msgstr ""
-#: ../../keyboard.pm_.c:248
+#: ../../keyboard.pm_.c:227
#, fuzzy
msgid "Mongolian (cyrillic)"
msgstr "Júgoslavneskt (Latínu upps.)"
-#: ../../keyboard.pm_.c:249
+#: ../../keyboard.pm_.c:228
msgid "Maltese (UK)"
msgstr ""
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:229
msgid "Maltese (US)"
msgstr ""
-#: ../../keyboard.pm_.c:251
+#: ../../keyboard.pm_.c:230
msgid "Dutch"
msgstr "Hollenskt"
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:232
#, fuzzy
msgid "Polish (qwerty layout)"
msgstr "Svissneskt (țęsk uppsetn.)"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:233
#, fuzzy
msgid "Polish (qwertz layout)"
msgstr "Svissneskt (țęsk uppsetn.)"
-#: ../../keyboard.pm_.c:255
+#: ../../keyboard.pm_.c:234
msgid "Portuguese"
msgstr "Portúgískt"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:235
msgid "Canadian (Quebec)"
msgstr "Kanadískt (Quebec)"
-#: ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:237
#, fuzzy
msgid "Romanian (qwertz)"
msgstr "Rússneskt (Yawerty)"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:238
#, fuzzy
msgid "Romanian (qwerty)"
msgstr "Rússneskt (Yawerty)"
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:240
msgid "Russian (Yawerty)"
msgstr "Rússneskt (Yawerty)"
-#: ../../keyboard.pm_.c:263
+#: ../../keyboard.pm_.c:242
msgid "Slovenian"
msgstr "Slóvenskt"
-#: ../../keyboard.pm_.c:264
+#: ../../keyboard.pm_.c:243
msgid "Slovakian (QWERTZ)"
msgstr "Slóvakískt (QWERTZ)"
-#: ../../keyboard.pm_.c:265
+#: ../../keyboard.pm_.c:244
msgid "Slovakian (QWERTY)"
msgstr "Slóvakískt (QWERTY)"
-#: ../../keyboard.pm_.c:267
+#: ../../keyboard.pm_.c:246
#, fuzzy
msgid "Serbian (cyrillic)"
msgstr "Júgoslavneskt (Latínu upps.)"
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:248
msgid "Tamil (Unicode)"
msgstr ""
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:249
msgid "Tamil (TSCII)"
msgstr ""
-#: ../../keyboard.pm_.c:271
+#: ../../keyboard.pm_.c:250
msgid "Thai keyboard"
msgstr "Thælenskt lyklaborđ"
-#: ../../keyboard.pm_.c:273
+#: ../../keyboard.pm_.c:252
#, fuzzy
msgid "Tajik keyboard"
msgstr "Thælenskt lyklaborđ"
-#: ../../keyboard.pm_.c:274
+#: ../../keyboard.pm_.c:253
msgid "Turkish (traditional \"F\" model)"
msgstr "Tyrkneskt (hefđbundiđ \"F\" módel)"
-#: ../../keyboard.pm_.c:275
+#: ../../keyboard.pm_.c:254
msgid "Turkish (modern \"Q\" model)"
msgstr "Tyrkneskt (nútíma \"Q\" módel)"
-#: ../../keyboard.pm_.c:277
+#: ../../keyboard.pm_.c:256
msgid "Ukrainian"
msgstr "Úkraínkst"
-#: ../../keyboard.pm_.c:280
+#: ../../keyboard.pm_.c:259
msgid "US keyboard (international)"
msgstr "Bandarískt (alțjóđlegt)"
-#: ../../keyboard.pm_.c:281
+#: ../../keyboard.pm_.c:260
#, fuzzy
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "Litháenískt \"töluröđ\" QWERTY"
-#: ../../keyboard.pm_.c:282
+#: ../../keyboard.pm_.c:261
#, fuzzy
msgid "Yugoslavian (latin)"
msgstr "Júgoslavneskt (Latínu upps.)"
-#: ../../keyboard.pm_.c:289
+#: ../../keyboard.pm_.c:268
msgid "Right Alt key"
msgstr ""
-#: ../../keyboard.pm_.c:290
+#: ../../keyboard.pm_.c:269
msgid "Both Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:291
+#: ../../keyboard.pm_.c:270
msgid "Control and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:292
+#: ../../keyboard.pm_.c:271
msgid "CapsLock key"
msgstr ""
-#: ../../keyboard.pm_.c:293
+#: ../../keyboard.pm_.c:272
msgid "Ctrl and Alt keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:294
+#: ../../keyboard.pm_.c:273
msgid "Alt and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:295
+#: ../../keyboard.pm_.c:274
msgid "\"Menu\" key"
msgstr ""
-#: ../../keyboard.pm_.c:296
+#: ../../keyboard.pm_.c:275
msgid "Left \"Windows\" key"
msgstr ""
-#: ../../keyboard.pm_.c:297
+#: ../../keyboard.pm_.c:276
msgid "Right \"Windows\" key"
msgstr ""
@@ -5690,11 +5769,11 @@ msgstr "Almenn mús"
msgid "GlidePoint"
msgstr "GlidePoint"
-#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:63
+#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:65
msgid "Kensington Thinking Mouse"
msgstr "Kensington Thinking Mouse"
-#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:59
+#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:61
msgid "Genius NetMouse"
msgstr "Genius NetMouse"
@@ -5702,121 +5781,130 @@ msgstr "Genius NetMouse"
msgid "Genius NetScroll"
msgstr "Genius NetScroll"
-#: ../../mouse.pm_.c:43 ../../mouse.pm_.c:68
+#: ../../mouse.pm_.c:39 ../../mouse.pm_.c:48
+#, fuzzy
+msgid "Microsoft Explorer"
+msgstr "Microsoft IntelliMouse"
+
+#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:70
msgid "1 button"
msgstr ""
-#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:51
+#: ../../mouse.pm_.c:45 ../../mouse.pm_.c:53
msgid "Generic 2 Button Mouse"
msgstr ""
-#: ../../mouse.pm_.c:46
+#: ../../mouse.pm_.c:47
#, fuzzy
msgid "Wheel"
msgstr "stig"
-#: ../../mouse.pm_.c:49
+#: ../../mouse.pm_.c:51
msgid "serial"
msgstr "rađtengd"
-#: ../../mouse.pm_.c:52
+#: ../../mouse.pm_.c:54
msgid "Generic 3 Button Mouse"
msgstr "Almenn țriggja hnappa mús"
-#: ../../mouse.pm_.c:53
+#: ../../mouse.pm_.c:55
msgid "Microsoft IntelliMouse"
msgstr "Microsoft IntelliMouse"
-#: ../../mouse.pm_.c:54
+#: ../../mouse.pm_.c:56
msgid "Logitech MouseMan"
msgstr "Logitech MouseMan"
-#: ../../mouse.pm_.c:55
+#: ../../mouse.pm_.c:57
msgid "Mouse Systems"
msgstr "Mouse Systems"
-#: ../../mouse.pm_.c:57
+#: ../../mouse.pm_.c:59
msgid "Logitech CC Series"
msgstr "Logitech CC Series"
-#: ../../mouse.pm_.c:58
+#: ../../mouse.pm_.c:60
msgid "Logitech MouseMan+/FirstMouse+"
msgstr "Logitech MouseMan+/FirstMouse+"
-#: ../../mouse.pm_.c:60
+#: ../../mouse.pm_.c:62
msgid "MM Series"
msgstr "MM Series"
-#: ../../mouse.pm_.c:61
+#: ../../mouse.pm_.c:63
msgid "MM HitTablet"
msgstr "MM HitTablet"
-#: ../../mouse.pm_.c:62
+#: ../../mouse.pm_.c:64
msgid "Logitech Mouse (serial, old C7 type)"
msgstr "Logitech mús (rađtengd, gömul C7 tegund)"
-#: ../../mouse.pm_.c:66
+#: ../../mouse.pm_.c:68
#, fuzzy
msgid "busmouse"
msgstr "Engin mús"
-#: ../../mouse.pm_.c:69
+#: ../../mouse.pm_.c:71
msgid "2 buttons"
msgstr ""
-#: ../../mouse.pm_.c:70
+#: ../../mouse.pm_.c:72
msgid "3 buttons"
msgstr ""
-#: ../../mouse.pm_.c:73
+#: ../../mouse.pm_.c:75
#, fuzzy
msgid "none"
msgstr "Búiđ"
-#: ../../mouse.pm_.c:75
+#: ../../mouse.pm_.c:77
msgid "No mouse"
msgstr "Engin mús"
-#: ../../mouse.pm_.c:445
+#: ../../mouse.pm_.c:482
#, fuzzy
msgid "Please test the mouse"
msgstr "Hvernig mús ertu međ?"
-#: ../../mouse.pm_.c:446
+#: ../../mouse.pm_.c:483
#, fuzzy
msgid "To activate the mouse,"
msgstr "Hvernig mús ertu međ?"
-#: ../../mouse.pm_.c:447
+#: ../../mouse.pm_.c:484
msgid "MOVE YOUR WHEEL!"
msgstr ""
-#: ../../my_gtk.pm_.c:156
+#: ../../my_gtk.pm_.c:64
+msgid "-adobe-utopia-regular-r-*-*-25-*-*-*-p-*-iso8859-*,*-r-*"
+msgstr ""
+
+#: ../../my_gtk.pm_.c:159
#, fuzzy
msgid "Finish"
msgstr "Finnskt"
-#: ../../my_gtk.pm_.c:156 ../../printerdrake.pm_.c:1992
+#: ../../my_gtk.pm_.c:159 ../../printerdrake.pm_.c:2126
msgid "Next ->"
msgstr ""
-#: ../../my_gtk.pm_.c:284
+#: ../../my_gtk.pm_.c:287
msgid "Is this correct?"
msgstr "Er țetta rétt?"
-#: ../../my_gtk.pm_.c:356 ../../services.pm_.c:222
+#: ../../my_gtk.pm_.c:359 ../../services.pm_.c:222
msgid "Info"
msgstr "Upplęsingar"
-#: ../../my_gtk.pm_.c:377
+#: ../../my_gtk.pm_.c:380
msgid "Expand Tree"
msgstr "Opna tré"
-#: ../../my_gtk.pm_.c:378
+#: ../../my_gtk.pm_.c:381
msgid "Collapse Tree"
msgstr "Loka tré"
-#: ../../my_gtk.pm_.c:379
+#: ../../my_gtk.pm_.c:382
msgid "Toggle between flat and group sorted"
msgstr ""
@@ -5852,6 +5940,68 @@ msgstr ""
msgid "use pptp"
msgstr ""
+#: ../../network/drakfirewall.pm_.c:12
+#, fuzzy
+msgid "Web Server"
+msgstr "netțjónn"
+
+#: ../../network/drakfirewall.pm_.c:17
+#, fuzzy
+msgid "Domain Name Server"
+msgstr "Nafn léns"
+
+#: ../../network/drakfirewall.pm_.c:32
+#, fuzzy
+msgid "Mail Server"
+msgstr "Prentțjónn"
+
+#: ../../network/drakfirewall.pm_.c:37
+#, fuzzy
+msgid "POP and IMAP Server"
+msgstr "netțjónn"
+
+#: ../../network/drakfirewall.pm_.c:111
+#, fuzzy
+msgid "No network card"
+msgstr "ekkert netkort fannst"
+
+#: ../../network/drakfirewall.pm_.c:129
+msgid ""
+"drakfirewall configurator\n"
+"\n"
+"This configures a personal firewall for this Mandrake Linux machine.\n"
+"For a powerful dedicated firewall solution, please look to the\n"
+"specialized MandrakeSecurity Firewall distribution."
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:147
+msgid "Which services would you like to allow the Internet to connect to?"
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:148
+msgid ""
+"You can enter miscellaneous ports. \n"
+"Valid examples are: 139/tcp 139/udp.\n"
+"Have a look at /etc/services for information."
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:154
+#, c-format
+msgid ""
+"Invalid port given: %s.\n"
+"The proper format is \"port/tcp\" or \"port/udp\", \n"
+"where port is between 1 and 65535."
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:162
+msgid "Everything (no firewall)"
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:164
+#, fuzzy
+msgid "Other ports"
+msgstr "Prófa tengi"
+
#: ../../network/ethernet.pm_.c:37
#, fuzzy
msgid ""
@@ -5865,7 +6015,7 @@ msgid ""
"I cannot set up this connection type."
msgstr ""
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:247
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:240
#, fuzzy
msgid "Choose the network interface"
msgstr "Veldu nęja stærđ"
@@ -5880,7 +6030,7 @@ msgstr "Viđ hvađa rađtengi er músin țín tengd?"
msgid "no network card found"
msgstr "ekkert netkort fannst"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:366
msgid "Configuring network"
msgstr "Stilli stađarnetstenginu"
@@ -5897,7 +6047,7 @@ msgstr ""
"vistfang gáttarinnar ef țú veist hvađ țađ vistfang er.\n"
"Gáttin gefur țér ađgang út úr stađarnetinu (t.d. á Internetiđ)."
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:370
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:371
#, fuzzy
msgid "Host name"
msgstr "Vélarheiti:"
@@ -6186,14 +6336,14 @@ msgstr "Veldu nęja stærđ"
msgid "Use auto detection"
msgstr ""
-#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2930
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:3151
#: ../../standalone/drakconnect_.c:274 ../../standalone/drakconnect_.c:277
#: ../../standalone/drakfloppy_.c:145
#, fuzzy
msgid "Expert Mode"
msgstr "F. snillinga"
-#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:283
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:386
msgid "Detecting devices..."
msgstr "Leita ađ tækjum..."
@@ -6357,11 +6507,11 @@ msgstr "Sjálfvirkt IP"
msgid "Start at boot"
msgstr "Búa til ræsidiskling"
-#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:753
+#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:860
msgid "IP address should be in format 1.2.3.4"
msgstr "IP vistfang á ađ vera á sniđinu 192.168.1.10"
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:367
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -6373,44 +6523,55 @@ msgstr ""
"vistfang gáttarinnar ef țú veist hvađ țađ vistfang er.\n"
"Gáttin gefur țér ađgang út úr stađarnetinu (t.d. á Internetiđ)."
-#: ../../network/network.pm_.c:371
+#: ../../network/network.pm_.c:372
msgid "DNS server"
msgstr "Nafnamiđlari"
-#: ../../network/network.pm_.c:372
+#: ../../network/network.pm_.c:373
#, c-format
msgid "Gateway (e.g. %s)"
msgstr ""
-#: ../../network/network.pm_.c:374
+#: ../../network/network.pm_.c:375
msgid "Gateway device"
msgstr "Gátt (tækiđ)"
-#: ../../network/network.pm_.c:386
+#: ../../network/network.pm_.c:387
#, fuzzy
msgid "Proxies configuration"
msgstr "Lokauppsetning"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:388
msgid "HTTP proxy"
msgstr "HTTP sel:"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:389
msgid "FTP proxy"
msgstr "FTP Sel:"
-#: ../../network/network.pm_.c:389
+#: ../../network/network.pm_.c:390
msgid "Track network card id (useful for laptops)"
msgstr ""
-#: ../../network/network.pm_.c:392
+#: ../../network/network.pm_.c:393
msgid "Proxy should be http://..."
msgstr "Sel á ađ vera http://..."
-#: ../../network/network.pm_.c:393
+#: ../../network/network.pm_.c:394
msgid "Proxy should be ftp://..."
msgstr "Sel á ađ vera ftp://..."
+#: ../../network/shorewall.pm_.c:24
+#, fuzzy
+msgid "Firewalling configuration detected!"
+msgstr "Les uppsetningarskrá"
+
+#: ../../network/shorewall.pm_.c:25
+msgid ""
+"Warning! An existing firewalling configuration has been detected. You may "
+"need some manual fix after installation."
+msgstr ""
+
#: ../../network/tools.pm_.c:41
#, fuzzy
msgid "Internet configuration"
@@ -6529,15 +6690,15 @@ msgstr "Lykilorđ"
msgid "United Kingdom"
msgstr ""
-#: ../../partition_table.pm_.c:606
+#: ../../partition_table.pm_.c:602
msgid "mount failed: "
msgstr "tókst ekki ađ tengja: "
-#: ../../partition_table.pm_.c:670
+#: ../../partition_table.pm_.c:666
msgid "Extended partition not supported on this platform"
msgstr ""
-#: ../../partition_table.pm_.c:688
+#: ../../partition_table.pm_.c:684
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
@@ -6547,21 +6708,21 @@ msgstr ""
"Eina lausnins er ađ færa ađalsneiđar svo ađ gatiđ verđi viđ hliđina á "
"viđbótasneiđ"
-#: ../../partition_table.pm_.c:778
+#: ../../partition_table.pm_.c:774
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "Villa viđ lestur úr skránni %s: %s"
-#: ../../partition_table.pm_.c:780
+#: ../../partition_table.pm_.c:776
msgid "Bad backup file"
msgstr "Skemmd afritsskrá"
-#: ../../partition_table.pm_.c:802
+#: ../../partition_table.pm_.c:798
#, c-format
msgid "Error writing to file %s"
msgstr "Villa viđ ađ skrifa í skrána %s"
-#: ../../partition_table/raw.pm_.c:187
+#: ../../partition_table/raw.pm_.c:189
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
@@ -6606,159 +6767,163 @@ msgstr ""
msgid "PDQ - Print, Don't Queue"
msgstr ""
-#: ../../printer.pm_.c:35 ../../printer.pm_.c:854
+#: ../../printer.pm_.c:34 ../../printer.pm_.c:1125
msgid "CUPS"
msgstr ""
-#: ../../printer.pm_.c:36
+#: ../../printer.pm_.c:35
msgid "LPRng"
msgstr ""
-#: ../../printer.pm_.c:37
+#: ../../printer.pm_.c:36
msgid "LPD"
msgstr ""
-#: ../../printer.pm_.c:38
+#: ../../printer.pm_.c:37
msgid "PDQ"
msgstr ""
-#: ../../printer.pm_.c:50
+#: ../../printer.pm_.c:49
msgid "Local printer"
msgstr "Stađbundinn prentari"
-#: ../../printer.pm_.c:51
+#: ../../printer.pm_.c:50
#, fuzzy
msgid "Remote printer"
msgstr "Viđföng fyrir fjartengda lpd prentara"
-#: ../../printer.pm_.c:52
+#: ../../printer.pm_.c:51
#, fuzzy
msgid "Printer on remote CUPS server"
msgstr "Fjartengd prentröđ"
-#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:776
+#: ../../printer.pm_.c:52 ../../printerdrake.pm_.c:883
#, fuzzy
msgid "Printer on remote lpd server"
msgstr "Fjartengdur"
-#: ../../printer.pm_.c:54
+#: ../../printer.pm_.c:53
#, fuzzy
msgid "Network printer (TCP/Socket)"
msgstr "Viđföng NetWare prentara"
-#: ../../printer.pm_.c:55
+#: ../../printer.pm_.c:54
#, fuzzy
msgid "Printer on SMB/Windows 95/98/NT server"
msgstr "SMB/Windows 95/98/NT"
-#: ../../printer.pm_.c:56
+#: ../../printer.pm_.c:55
#, fuzzy
msgid "Printer on NetWare server"
msgstr "Prentțjónn"
-#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:780
+#: ../../printer.pm_.c:56 ../../printerdrake.pm_.c:887
#, fuzzy
msgid "Enter a printer device URI"
msgstr "Prenttæki:"
-#: ../../printer.pm_.c:58
+#: ../../printer.pm_.c:57
msgid "Pipe job into a command"
msgstr ""
-#: ../../printer.pm_.c:487 ../../printer.pm_.c:678 ../../printer.pm_.c:1000
-#: ../../printerdrake.pm_.c:2070 ../../printerdrake.pm_.c:3189
+#: ../../printer.pm_.c:324 ../../printer.pm_.c:366 ../../printer.pm_.c:533
+msgid "Unknown Model"
+msgstr ""
+
+#: ../../printer.pm_.c:735 ../../printer.pm_.c:926 ../../printer.pm_.c:1318
+#: ../../printerdrake.pm_.c:2260 ../../printerdrake.pm_.c:3414
msgid "Unknown model"
msgstr ""
-#: ../../printer.pm_.c:515
+#: ../../printer.pm_.c:763
#, fuzzy
msgid "Local Printers"
msgstr "Stađbundinn prentari"
-#: ../../printer.pm_.c:517 ../../printer.pm_.c:855
+#: ../../printer.pm_.c:765 ../../printer.pm_.c:1126
#, fuzzy
msgid "Remote Printers"
msgstr "Viđföng fyrir fjartengda lpd prentara"
-#: ../../printer.pm_.c:524 ../../printerdrake.pm_.c:301
+#: ../../printer.pm_.c:772 ../../printerdrake.pm_.c:404
#, c-format
msgid " on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:527 ../../printerdrake.pm_.c:303
+#: ../../printer.pm_.c:775 ../../printerdrake.pm_.c:406
#, c-format
msgid ", USB printer \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:532
+#: ../../printer.pm_.c:780
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:535
+#: ../../printer.pm_.c:783
msgid ", multi-function device on USB"
msgstr ""
-#: ../../printer.pm_.c:537
+#: ../../printer.pm_.c:785
msgid ", multi-function device on HP JetDirect"
msgstr ""
-#: ../../printer.pm_.c:539
+#: ../../printer.pm_.c:787
msgid ", multi-function device"
msgstr ""
-#: ../../printer.pm_.c:542
+#: ../../printer.pm_.c:790
#, fuzzy, c-format
msgid ", printing to %s"
msgstr "Villa viđ ađ skrifa í skrána %s"
-#: ../../printer.pm_.c:544
+#: ../../printer.pm_.c:792
#, c-format
msgid " on LPD server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:546
+#: ../../printer.pm_.c:794
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ""
-#: ../../printer.pm_.c:550
+#: ../../printer.pm_.c:798
#, c-format
msgid " on SMB/Windows server \"%s\", share \"%s\""
msgstr ""
-#: ../../printer.pm_.c:554
+#: ../../printer.pm_.c:802
#, c-format
msgid " on Novell server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:556
+#: ../../printer.pm_.c:804
#, c-format
msgid ", using command %s"
msgstr ""
-#: ../../printer.pm_.c:675 ../../printerdrake.pm_.c:1540
+#: ../../printer.pm_.c:923 ../../printerdrake.pm_.c:1656
msgid "Raw printer (No driver)"
msgstr ""
-#: ../../printer.pm_.c:824
+#: ../../printer.pm_.c:1095
#, fuzzy, c-format
msgid "(on %s)"
msgstr "(eining %s)"
-#: ../../printer.pm_.c:826
+#: ../../printer.pm_.c:1097
msgid "(on this machine)"
msgstr ""
-#: ../../printer.pm_.c:851
+#: ../../printer.pm_.c:1122
#, fuzzy, c-format
msgid "On CUPS server \"%s\""
msgstr "Vistfang SMB țjóns"
-#: ../../printer.pm_.c:857 ../../printerdrake.pm_.c:2851
-#: ../../printerdrake.pm_.c:2862 ../../printerdrake.pm_.c:3078
-#: ../../printerdrake.pm_.c:3130 ../../printerdrake.pm_.c:3156
-#: ../../printerdrake.pm_.c:3326 ../../printerdrake.pm_.c:3328
+#: ../../printer.pm_.c:1128 ../../printerdrake.pm_.c:3071
+#: ../../printerdrake.pm_.c:3082 ../../printerdrake.pm_.c:3303
+#: ../../printerdrake.pm_.c:3355 ../../printerdrake.pm_.c:3381
+#: ../../printerdrake.pm_.c:3556 ../../printerdrake.pm_.c:3558
msgid " (Default)"
msgstr " (Sjálfgefiđ)"
@@ -6781,12 +6946,12 @@ msgstr ""
msgid "Printer auto-detection (Local, TCP/Socket, and SMB printers)"
msgstr ""
-#: ../../printerdrake.pm_.c:84 ../../printerdrake.pm_.c:2914
+#: ../../printerdrake.pm_.c:84 ../../printerdrake.pm_.c:3135
#, fuzzy
msgid "CUPS configuration"
msgstr "Uppsetning"
-#: ../../printerdrake.pm_.c:85 ../../printerdrake.pm_.c:2915
+#: ../../printerdrake.pm_.c:85 ../../printerdrake.pm_.c:3136
#, fuzzy
msgid "Specify CUPS server"
msgstr "Fjartengd prentröđ"
@@ -6817,7 +6982,7 @@ msgstr ""
msgid "The IP address should look like 192.168.1.20"
msgstr "IP vistfang á ađ vera á sniđinu 192.168.1.10"
-#: ../../printerdrake.pm_.c:95 ../../printerdrake.pm_.c:987
+#: ../../printerdrake.pm_.c:95 ../../printerdrake.pm_.c:1094
msgid "The port number should be an integer!"
msgstr ""
@@ -6826,7 +6991,7 @@ msgstr ""
msgid "CUPS server IP"
msgstr "Vistfang SMB țjóns"
-#: ../../printerdrake.pm_.c:103 ../../printerdrake.pm_.c:1007
+#: ../../printerdrake.pm_.c:103 ../../printerdrake.pm_.c:1114
#, fuzzy
msgid "Port"
msgstr "Lélegt"
@@ -6836,13 +7001,130 @@ msgstr "Lélegt"
msgid "Automatic CUPS configuration"
msgstr "Lokauppsetning"
-#: ../../printerdrake.pm_.c:183 ../../printerdrake.pm_.c:192
-#: ../../printerdrake.pm_.c:2897 ../../printerdrake.pm_.c:3017
+#: ../../printerdrake.pm_.c:177 ../../printerdrake.pm_.c:247
+#: ../../printerdrake.pm_.c:1529 ../../printerdrake.pm_.c:1533
+#: ../../printerdrake.pm_.c:1651 ../../printerdrake.pm_.c:2203
+#: ../../printerdrake.pm_.c:2356 ../../printerdrake.pm_.c:2415
+#: ../../printerdrake.pm_.c:2488 ../../printerdrake.pm_.c:2509
+#: ../../printerdrake.pm_.c:2699 ../../printerdrake.pm_.c:2740
+#: ../../printerdrake.pm_.c:2745 ../../printerdrake.pm_.c:2779
+#: ../../printerdrake.pm_.c:2784 ../../printerdrake.pm_.c:2821
+#: ../../printerdrake.pm_.c:2874 ../../printerdrake.pm_.c:2894
+#: ../../printerdrake.pm_.c:2908 ../../printerdrake.pm_.c:2942
+#: ../../printerdrake.pm_.c:2988 ../../printerdrake.pm_.c:3006
+#: ../../printerdrake.pm_.c:3095 ../../printerdrake.pm_.c:3169
+#: ../../printerdrake.pm_.c:3471 ../../printerdrake.pm_.c:3526
+#: ../../printerdrake.pm_.c:3579 ../../standalone/printerdrake_.c:57
+#, fuzzy
+msgid "Printerdrake"
+msgstr "Prentari"
+
+#: ../../printerdrake.pm_.c:178
+#, fuzzy
+msgid "Checking your system..."
+msgstr "Hvađa sneiđtegund viltu?"
+
+#: ../../printerdrake.pm_.c:186
+msgid ""
+"There are no printers found which are directly connected to your machine"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:198
+#, fuzzy
+msgid ""
+"The following printers\n"
+"\n"
+msgstr "Eftirfarandi pakkar verđa fjarlægđir"
+
+#: ../../printerdrake.pm_.c:199
+#, fuzzy
+msgid ""
+"The following printer\n"
+"\n"
+msgstr "Eftirfarandi pakkar verđa fjarlægđir"
+
+#: ../../printerdrake.pm_.c:201
+msgid ""
+"\n"
+"and one unknown printer are "
+msgstr ""
+
+#: ../../printerdrake.pm_.c:203
+#, c-format
+msgid ""
+"\n"
+"and %d unknown printers are "
+msgstr ""
+
+#: ../../printerdrake.pm_.c:207
+msgid ""
+"\n"
+"are "
+msgstr ""
+
+#: ../../printerdrake.pm_.c:208
+msgid ""
+"\n"
+"is "
+msgstr ""
+
+#: ../../printerdrake.pm_.c:210
+#, fuzzy
+msgid "directly connected to your system"
+msgstr "Hvađa disk viltu færa til?"
+
+#: ../../printerdrake.pm_.c:213
+msgid ""
+"\n"
+"There is one unknown printer directly connected to your system"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:215
+#, c-format
+msgid ""
+"\n"
+"There are %d unknown printers directly connected to your system"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:221
+#, fuzzy
+msgid " (Make sure that all your printers are connected and turned on).\n"
+msgstr "Hvađa rađtengi er mótaldiđ tengt viđ?"
+
+#: ../../printerdrake.pm_.c:235
+msgid ""
+"Do you want to enable printing on the printers mentioned above or on "
+"printers in the local network?\n"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:236
+#, fuzzy
+msgid "Do you want to enable printing on printers in the local network?\n"
+msgstr "Viltu prenta út prufublađsíđu?"
+
+#: ../../printerdrake.pm_.c:238
+#, fuzzy
+msgid "Do you want to enable printing on the printers mentioned above?\n"
+msgstr "Viltu nota aboot?"
+
+#: ../../printerdrake.pm_.c:239
+msgid "Are you sure that you want to set up printing on this machine?\n"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:240
+#, c-format
+msgid ""
+"NOTE: Depending on the printer model and the printing system up to %d MB of "
+"additional software will be installed."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:269 ../../printerdrake.pm_.c:278
+#: ../../printerdrake.pm_.c:3117 ../../printerdrake.pm_.c:3242
#, fuzzy
msgid "Add a new printer"
msgstr "Stađbundinn prentari"
-#: ../../printerdrake.pm_.c:184
+#: ../../printerdrake.pm_.c:270
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -6855,7 +7137,7 @@ msgid ""
"connection types."
msgstr ""
-#: ../../printerdrake.pm_.c:193
+#: ../../printerdrake.pm_.c:280
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -6864,7 +7146,7 @@ msgid ""
"computer, connected directly to the network or to a remote Windows machine.\n"
"\n"
"If you have printer(s) connected to this machine, Please plug it/them in on "
-"this computer and turn it/them on so that they can be auto-detected. Also "
+"this computer and turn it/them on so that it/they can be auto-detected. Also "
"your network printer(s) and you Windows machines must be connected and "
"turned on.\n"
"\n"
@@ -6877,7 +7159,22 @@ msgid ""
"want to set up your printer(s) now."
msgstr ""
-#: ../../printerdrake.pm_.c:202
+#: ../../printerdrake.pm_.c:289 ../../printerdrake.pm_.c:306
+msgid ""
+"\n"
+"Welcome to the Printer Setup Wizard\n"
+"\n"
+"This wizard will help you to install your printer(s) connected to this "
+"computer.\n"
+"\n"
+"If you have printer(s) connected to this machine, Please plug it/them in on "
+"this computer and turn it/them on so that it/they can be auto-detected.\n"
+"\n"
+" Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
+"want to set up your printer(s) now."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:297
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -6886,7 +7183,7 @@ msgid ""
"computer or connected directly to the network.\n"
"\n"
"If you have printer(s) connected to this machine, Please plug it/them in on "
-"this computer and turn it/them on so that they can be auto-detected. Also "
+"this computer and turn it/them on so that it/they can be auto-detected. Also "
"your network printer(s) must be connected and turned on.\n"
"\n"
"Note that auto-detecting printers on the network takes longer than the auto-"
@@ -6897,26 +7194,26 @@ msgid ""
"want to set up your printer(s) now."
msgstr ""
-#: ../../printerdrake.pm_.c:213
+#: ../../printerdrake.pm_.c:315
#, fuzzy
msgid "Auto-detect printers connected to this machine"
msgstr "Viđföng fyrir fjartengda lpd prentara"
-#: ../../printerdrake.pm_.c:215
+#: ../../printerdrake.pm_.c:318
msgid "Auto-detect printers connected directly to the local network"
msgstr ""
-#: ../../printerdrake.pm_.c:218
+#: ../../printerdrake.pm_.c:321
msgid "Auto-detect printers connected to machines running Microsoft Windows"
msgstr ""
-#: ../../printerdrake.pm_.c:245 ../../printerdrake.pm_.c:459
-#: ../../printerdrake.pm_.c:484
+#: ../../printerdrake.pm_.c:348 ../../printerdrake.pm_.c:562
+#: ../../printerdrake.pm_.c:587
#, fuzzy
msgid "Local Printer"
msgstr "Stađbundinn prentari"
-#: ../../printerdrake.pm_.c:246
+#: ../../printerdrake.pm_.c:349
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -6930,50 +7227,50 @@ msgid ""
"Center."
msgstr ""
-#: ../../printerdrake.pm_.c:283 ../../printerdrake.pm_.c:474
-#: ../../printerdrake.pm_.c:683 ../../printerdrake.pm_.c:923
+#: ../../printerdrake.pm_.c:386 ../../printerdrake.pm_.c:577
+#: ../../printerdrake.pm_.c:790 ../../printerdrake.pm_.c:1030
#, fuzzy
msgid "Printer auto-detection"
msgstr "Viđföng fyrir fjartengda lpd prentara"
-#: ../../printerdrake.pm_.c:305
+#: ../../printerdrake.pm_.c:408
#, c-format
msgid ", network printer \"%s\", port %s"
msgstr ""
-#: ../../printerdrake.pm_.c:307
+#: ../../printerdrake.pm_.c:410
#, fuzzy, c-format
msgid ", printer \"%s\" on SMB/Windows server \"%s\""
msgstr "SMB/Windows 95/98/NT"
-#: ../../printerdrake.pm_.c:313
+#: ../../printerdrake.pm_.c:416
#, fuzzy, c-format
msgid "Detected %s"
msgstr "%s tengipunktur er nú țegar til"
-#: ../../printerdrake.pm_.c:317 ../../printerdrake.pm_.c:348
-#: ../../printerdrake.pm_.c:367
+#: ../../printerdrake.pm_.c:420 ../../printerdrake.pm_.c:451
+#: ../../printerdrake.pm_.c:470
#, c-format
msgid "Printer on parallel port \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:319 ../../printerdrake.pm_.c:350
-#: ../../printerdrake.pm_.c:372
+#: ../../printerdrake.pm_.c:422 ../../printerdrake.pm_.c:453
+#: ../../printerdrake.pm_.c:475
#, c-format
msgid "USB printer \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:321
+#: ../../printerdrake.pm_.c:424
#, fuzzy, c-format
msgid "Network printer \"%s\", port %s"
msgstr "Viđföng NetWare prentara"
-#: ../../printerdrake.pm_.c:323
+#: ../../printerdrake.pm_.c:426
#, fuzzy, c-format
msgid "Printer \"%s\" on SMB/Windows server \"%s\""
msgstr "SMB/Windows 95/98/NT"
-#: ../../printerdrake.pm_.c:460
+#: ../../printerdrake.pm_.c:563
msgid ""
"No local printer found! To manually install a printer enter a device name/"
"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
@@ -6981,33 +7278,33 @@ msgid ""
"printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:464
+#: ../../printerdrake.pm_.c:567
msgid "You must enter a device or file name!"
msgstr ""
-#: ../../printerdrake.pm_.c:475
+#: ../../printerdrake.pm_.c:578
#, fuzzy
msgid "No printer found!"
msgstr "Stađbundinn prentari"
-#: ../../printerdrake.pm_.c:485
+#: ../../printerdrake.pm_.c:588
#, fuzzy
msgid "Available printers"
msgstr "Tiltækir pakkar"
-#: ../../printerdrake.pm_.c:489
+#: ../../printerdrake.pm_.c:592
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:490
+#: ../../printerdrake.pm_.c:593
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up or enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:492
+#: ../../printerdrake.pm_.c:595
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
@@ -7015,7 +7312,7 @@ msgid ""
"configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:493
+#: ../../printerdrake.pm_.c:596
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
@@ -7023,38 +7320,38 @@ msgid ""
"customized printer configuration, turn on \"Manual configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:495
+#: ../../printerdrake.pm_.c:598
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:496
+#: ../../printerdrake.pm_.c:599
#, fuzzy
msgid "Please choose the port where your printer is connected to."
msgstr "Hvađa rađtengi er mótaldiđ tengt viđ?"
-#: ../../printerdrake.pm_.c:498
+#: ../../printerdrake.pm_.c:601
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:503
+#: ../../printerdrake.pm_.c:606
#, fuzzy
msgid "You must choose/enter a printer/device!"
msgstr "Prenttæki:"
-#: ../../printerdrake.pm_.c:523
+#: ../../printerdrake.pm_.c:626
#, fuzzy
msgid "Manual configuration"
msgstr "Uppsetning"
-#: ../../printerdrake.pm_.c:577
+#: ../../printerdrake.pm_.c:680
msgid "Remote lpd Printer Options"
msgstr "Viđföng fyrir fjartengda lpd prentara"
-#: ../../printerdrake.pm_.c:578
+#: ../../printerdrake.pm_.c:681
#, fuzzy
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
@@ -7064,51 +7361,51 @@ msgstr ""
"upp vélarheiti prentțjónsins og prentröđina á țeim sem\n"
"țú vilt senda prentverkin í."
-#: ../../printerdrake.pm_.c:579
+#: ../../printerdrake.pm_.c:682
#, fuzzy
msgid "Remote host name"
msgstr "Prentțjónn:"
-#: ../../printerdrake.pm_.c:580
+#: ../../printerdrake.pm_.c:683
#, fuzzy
msgid "Remote printer name"
msgstr "Viđföng fyrir fjartengda lpd prentara"
-#: ../../printerdrake.pm_.c:583
+#: ../../printerdrake.pm_.c:686
#, fuzzy
msgid "Remote host name missing!"
msgstr "Prentțjónn:"
-#: ../../printerdrake.pm_.c:587
+#: ../../printerdrake.pm_.c:690
#, fuzzy
msgid "Remote printer name missing!"
msgstr "Prentțjónn:"
-#: ../../printerdrake.pm_.c:609 ../../printerdrake.pm_.c:1119
+#: ../../printerdrake.pm_.c:712 ../../printerdrake.pm_.c:1225
#, fuzzy, c-format
msgid "Detected model: %s %s"
msgstr "%s tengipunktur er nú țegar til"
-#: ../../printerdrake.pm_.c:683 ../../printerdrake.pm_.c:923
+#: ../../printerdrake.pm_.c:790 ../../printerdrake.pm_.c:1030
#, fuzzy
msgid "Scanning network..."
msgstr "Stilla nettengingu"
-#: ../../printerdrake.pm_.c:692 ../../printerdrake.pm_.c:713
+#: ../../printerdrake.pm_.c:799 ../../printerdrake.pm_.c:820
#, c-format
msgid ", printer \"%s\" on server \"%s\""
msgstr ""
-#: ../../printerdrake.pm_.c:695 ../../printerdrake.pm_.c:716
+#: ../../printerdrake.pm_.c:802 ../../printerdrake.pm_.c:823
#, fuzzy, c-format
msgid "Printer \"%s\" on server \"%s\""
msgstr "Keyri upp netiđ"
-#: ../../printerdrake.pm_.c:736
+#: ../../printerdrake.pm_.c:843
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "SMB/Windows 9x/NT prentviđföng"
-#: ../../printerdrake.pm_.c:737
+#: ../../printerdrake.pm_.c:844
#, fuzzy
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
@@ -7122,46 +7419,46 @@ msgstr ""
"ásamt samnętingarheiti prentarans, notandaheiti, lykilorđi og\n"
"vinnuhópsupplęsingum fyrir prentarann."
-#: ../../printerdrake.pm_.c:738
+#: ../../printerdrake.pm_.c:845
msgid ""
" If the desired printer was auto-detected, simply choose it from the list "
"and then add user name, password, and/or workgroup if needed."
msgstr ""
-#: ../../printerdrake.pm_.c:739
+#: ../../printerdrake.pm_.c:846
msgid "SMB server host"
msgstr "Heiti SMB țjóns"
-#: ../../printerdrake.pm_.c:740
+#: ../../printerdrake.pm_.c:847
msgid "SMB server IP"
msgstr "Vistfang SMB țjóns"
-#: ../../printerdrake.pm_.c:741
+#: ../../printerdrake.pm_.c:848
msgid "Share name"
msgstr "Samnętingarheiti"
-#: ../../printerdrake.pm_.c:744
+#: ../../printerdrake.pm_.c:851
msgid "Workgroup"
msgstr "Vinnuhópur"
-#: ../../printerdrake.pm_.c:746
+#: ../../printerdrake.pm_.c:853
#, fuzzy
msgid "Auto-detected"
msgstr "Viđföng fyrir fjartengda lpd prentara"
-#: ../../printerdrake.pm_.c:757
+#: ../../printerdrake.pm_.c:864
msgid "Either the server name or the server's IP must be given!"
msgstr ""
-#: ../../printerdrake.pm_.c:761
+#: ../../printerdrake.pm_.c:868
msgid "Samba share name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:767
+#: ../../printerdrake.pm_.c:874
msgid "SECURITY WARNING!"
msgstr ""
-#: ../../printerdrake.pm_.c:768
+#: ../../printerdrake.pm_.c:875
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -7185,7 +7482,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:778
+#: ../../printerdrake.pm_.c:885
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -7194,7 +7491,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:781
+#: ../../printerdrake.pm_.c:888
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
@@ -7202,11 +7499,11 @@ msgid ""
"Do you really want to continue setting up this printer as you are doing now?"
msgstr ""
-#: ../../printerdrake.pm_.c:853
+#: ../../printerdrake.pm_.c:960
msgid "NetWare Printer Options"
msgstr "Viđföng NetWare prentara"
-#: ../../printerdrake.pm_.c:854
+#: ../../printerdrake.pm_.c:961
#, fuzzy
msgid ""
"To print on a NetWare printer, you need to provide the NetWare print server "
@@ -7219,44 +7516,44 @@ msgstr ""
"ásamt heiti prentarađar, notandaheiti og lykilorđi fyrir\n"
"prentarann."
-#: ../../printerdrake.pm_.c:855
+#: ../../printerdrake.pm_.c:962
msgid "Printer Server"
msgstr "Prentțjónn"
-#: ../../printerdrake.pm_.c:856
+#: ../../printerdrake.pm_.c:963
msgid "Print Queue Name"
msgstr "Heiti prentrađar"
-#: ../../printerdrake.pm_.c:861
+#: ../../printerdrake.pm_.c:968
msgid "NCP server name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:865
+#: ../../printerdrake.pm_.c:972
msgid "NCP queue name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:932 ../../printerdrake.pm_.c:952
+#: ../../printerdrake.pm_.c:1039 ../../printerdrake.pm_.c:1059
#, c-format
msgid ", host \"%s\", port %s"
msgstr ""
-#: ../../printerdrake.pm_.c:935 ../../printerdrake.pm_.c:955
+#: ../../printerdrake.pm_.c:1042 ../../printerdrake.pm_.c:1062
#, c-format
msgid "Host \"%s\", port %s"
msgstr ""
-#: ../../printerdrake.pm_.c:975
+#: ../../printerdrake.pm_.c:1082
#, fuzzy
msgid "TCP/Socket Printer Options"
msgstr "Viđföng stađbundinna prentara"
-#: ../../printerdrake.pm_.c:977
+#: ../../printerdrake.pm_.c:1084
msgid ""
"Choose one of the auto-detected printers from the list or enter the hostname "
"or IP and the optional port number (default is 9100) into the input fields."
msgstr ""
-#: ../../printerdrake.pm_.c:978
+#: ../../printerdrake.pm_.c:1085
msgid ""
"To print to a TCP or socket printer, you need to provide the host name or IP "
"of the printer and optionally the port number (default is 9100). On HP "
@@ -7264,62 +7561,62 @@ msgid ""
"vary. See the manual of your hardware."
msgstr ""
-#: ../../printerdrake.pm_.c:983
+#: ../../printerdrake.pm_.c:1090
#, fuzzy
msgid "Printer host name or IP missing!"
msgstr "Stillingar á prentara"
-#: ../../printerdrake.pm_.c:1005
+#: ../../printerdrake.pm_.c:1112
#, fuzzy
msgid "Printer host name or IP"
msgstr "Stillingar á prentara"
-#: ../../printerdrake.pm_.c:1054 ../../printerdrake.pm_.c:1056
+#: ../../printerdrake.pm_.c:1160 ../../printerdrake.pm_.c:1162
#, fuzzy
msgid "Printer Device URI"
msgstr "Prenttæki:"
-#: ../../printerdrake.pm_.c:1055
+#: ../../printerdrake.pm_.c:1161
msgid ""
"You can specify directly the URI to access the printer. The URI must fulfill "
"either the CUPS or the Foomatic specifications. Note that not all URI types "
"are supported by all the spoolers."
msgstr ""
-#: ../../printerdrake.pm_.c:1070
+#: ../../printerdrake.pm_.c:1176
msgid "A valid URI must be entered!"
msgstr ""
-#: ../../printerdrake.pm_.c:1402
+#: ../../printerdrake.pm_.c:1515
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
"Location fields do not need to be filled in. They are comments for the users."
msgstr ""
-#: ../../printerdrake.pm_.c:1403
+#: ../../printerdrake.pm_.c:1516
#, fuzzy
msgid "Name of printer"
msgstr "Stađbundinn prentari"
-#: ../../printerdrake.pm_.c:1405
+#: ../../printerdrake.pm_.c:1518
#, fuzzy
msgid "Location"
msgstr "Upplęsingar"
-#: ../../printerdrake.pm_.c:1416 ../../printerdrake.pm_.c:1536
+#: ../../printerdrake.pm_.c:1530 ../../printerdrake.pm_.c:1652
msgid "Reading printer database..."
msgstr ""
-#: ../../printerdrake.pm_.c:1419
+#: ../../printerdrake.pm_.c:1534
msgid "Preparing printer database..."
msgstr ""
-#: ../../printerdrake.pm_.c:1516
+#: ../../printerdrake.pm_.c:1631
#, fuzzy
msgid "Your printer model"
msgstr "Viđföng fyrir fjartengda lpd prentara"
-#: ../../printerdrake.pm_.c:1517
+#: ../../printerdrake.pm_.c:1632
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -7334,28 +7631,28 @@ msgid ""
"%s"
msgstr ""
-#: ../../printerdrake.pm_.c:1522 ../../printerdrake.pm_.c:1525
+#: ../../printerdrake.pm_.c:1637 ../../printerdrake.pm_.c:1640
#, fuzzy
msgid "The model is correct"
msgstr "Er țetta rétt?"
-#: ../../printerdrake.pm_.c:1523 ../../printerdrake.pm_.c:1524
-#: ../../printerdrake.pm_.c:1527
+#: ../../printerdrake.pm_.c:1638 ../../printerdrake.pm_.c:1639
+#: ../../printerdrake.pm_.c:1642
#, fuzzy
msgid "Select model manually"
msgstr "Viđföng fyrir fjartengda lpd prentara"
-#: ../../printerdrake.pm_.c:1543
+#: ../../printerdrake.pm_.c:1659
#, fuzzy
msgid "Printer model selection"
msgstr "Veldu prenttengingu"
-#: ../../printerdrake.pm_.c:1544
+#: ../../printerdrake.pm_.c:1660
#, fuzzy
msgid "Which printer model do you have?"
msgstr "Hvernig prentara ertu međ?"
-#: ../../printerdrake.pm_.c:1545
+#: ../../printerdrake.pm_.c:1661
msgid ""
"\n"
"\n"
@@ -7364,18 +7661,18 @@ msgid ""
"standing on a wrong model or on \"Raw printer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1548
+#: ../../printerdrake.pm_.c:1664
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
msgstr ""
-#: ../../printerdrake.pm_.c:1624
+#: ../../printerdrake.pm_.c:1741
#, fuzzy
msgid "OKI winprinter configuration"
msgstr "Sel stillingar"
-#: ../../printerdrake.pm_.c:1625
+#: ../../printerdrake.pm_.c:1742
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -7385,12 +7682,12 @@ msgid ""
"not work. Your connection type setting will be ignored by the driver."
msgstr ""
-#: ../../printerdrake.pm_.c:1668 ../../printerdrake.pm_.c:1695
+#: ../../printerdrake.pm_.c:1785 ../../printerdrake.pm_.c:1812
#, fuzzy
msgid "Lexmark inkjet configuration"
msgstr "Sel stillingar"
-#: ../../printerdrake.pm_.c:1669
+#: ../../printerdrake.pm_.c:1786
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
"no printers on remote machines or print server boxes. Please connect your "
@@ -7398,20 +7695,46 @@ msgid ""
"to."
msgstr ""
-#: ../../printerdrake.pm_.c:1696
+#: ../../printerdrake.pm_.c:1813
msgid ""
"To be able to print with your Lexmark inkjet and this configuration, you "
"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
-"com/). Go to the US site and click on the \"Drivers\" button. Then choose "
-"your model and afterwards \"Linux\" as operating system. The drivers come as "
-"RPM packages or shell scripts with interactive graphical installation. You "
-"do not need to do this configuration by the graphical frontends. Cancel "
-"directly after the license agreement. Then print printhead alignment pages "
-"with \"lexmarkmaintain\" and adjust the head alignment settings with this "
-"program."
+"com/). Click on the \"Drivers\" link. Then choose your model and afterwards "
+"\"Linux\" as operating system. The drivers come as RPM packages or shell "
+"scripts with interactive graphical installation. You do not need to do this "
+"configuration by the graphical frontends. Cancel directly after the license "
+"agreement. Then print printhead alignment pages with \"lexmarkmaintain\" and "
+"adjust the head alignment settings with this program."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:1816
+msgid "GDI Laser Printer using the Zenographics ZJ-Stream Format"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:1817
+msgid ""
+"Your printer belongs to the group of GDI laser printers (winprinters) sold "
+"by different manufacturers which uses the Zenographics ZJ-stream raster "
+"format for the data sent to the printer. The driver for these printers is "
+"still in a very early development stage and so it will perhaps not always "
+"work properly. Especially it is possible that the printer only works when "
+"you choose the A4 paper size.\n"
+"\n"
+"Some of these printers, as the HP LaserJet 1000, for which this driver was "
+"originally created, need their firmware to be uploaded to them after they "
+"are turned on. In the case of the HP LaserJet 1000 you have to search the "
+"printer's Windows driver CD or your Windows partition for the file "
+"\"sihp1000.img\" and upload the file to the printer with one of the "
+"following commands:\n"
+"\n"
+" lpr -o raw sihp1000.img\n"
+" cat sihp1000.img > /dev/usb/lp0\n"
+"\n"
+"The first command can be given by any normal user, the second must be given "
+"as root. After having done so you can print normally.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1912
+#: ../../printerdrake.pm_.c:2040
msgid ""
"Printer default settings\n"
"\n"
@@ -7421,34 +7744,34 @@ msgid ""
"printout quality/resolution printing can get substantially slower."
msgstr ""
-#: ../../printerdrake.pm_.c:1921
+#: ../../printerdrake.pm_.c:2049
#, c-format
msgid "Option %s must be an integer number!"
msgstr ""
-#: ../../printerdrake.pm_.c:1925
+#: ../../printerdrake.pm_.c:2053
#, c-format
msgid "Option %s must be a number!"
msgstr ""
-#: ../../printerdrake.pm_.c:1930
+#: ../../printerdrake.pm_.c:2058
#, c-format
msgid "Option %s out of range!"
msgstr ""
-#: ../../printerdrake.pm_.c:1969
+#: ../../printerdrake.pm_.c:2097
#, fuzzy, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
"as the default printer?"
msgstr "Viltu prenta út prufublađsíđu?"
-#: ../../printerdrake.pm_.c:1986
+#: ../../printerdrake.pm_.c:2120
#, fuzzy
msgid "Test pages"
msgstr "Prófa tengi"
-#: ../../printerdrake.pm_.c:1987
+#: ../../printerdrake.pm_.c:2121
msgid ""
"Please select the test pages you want to print.\n"
"Note: the photo test page can take a rather long time to get printed and on "
@@ -7456,45 +7779,45 @@ msgid ""
"it is enough to print the standard test page."
msgstr ""
-#: ../../printerdrake.pm_.c:1991
+#: ../../printerdrake.pm_.c:2125
#, fuzzy
msgid "No test pages"
msgstr "Já, prenta báđar prufusíđur"
-#: ../../printerdrake.pm_.c:1992
+#: ../../printerdrake.pm_.c:2126
#, fuzzy
msgid "Print"
msgstr "Prentari"
-#: ../../printerdrake.pm_.c:1994
+#: ../../printerdrake.pm_.c:2183
#, fuzzy
msgid "Standard test page"
msgstr "Forritun"
-#: ../../printerdrake.pm_.c:1997
+#: ../../printerdrake.pm_.c:2186
msgid "Alternative test page (Letter)"
msgstr ""
-#: ../../printerdrake.pm_.c:2000
+#: ../../printerdrake.pm_.c:2189
#, fuzzy
msgid "Alternative test page (A4)"
msgstr "Prenta út prufublađsíđu(r)..."
-#: ../../printerdrake.pm_.c:2002
+#: ../../printerdrake.pm_.c:2191
#, fuzzy
msgid "Photo test page"
msgstr "Prenta út prufublađsíđu(r)..."
-#: ../../printerdrake.pm_.c:2006
+#: ../../printerdrake.pm_.c:2195
#, fuzzy
msgid "Do not print any test page"
msgstr "Prenta út prufublađsíđu(r)..."
-#: ../../printerdrake.pm_.c:2014 ../../printerdrake.pm_.c:2166
+#: ../../printerdrake.pm_.c:2204 ../../printerdrake.pm_.c:2357
msgid "Printing test page(s)..."
msgstr "Prenta út prufublađsíđu(r)..."
-#: ../../printerdrake.pm_.c:2039
+#: ../../printerdrake.pm_.c:2229
#, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -7504,22 +7827,22 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2043
+#: ../../printerdrake.pm_.c:2233
msgid ""
"Test page(s) have been sent to the printer.\n"
"It may take some time before the printer starts.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2050
+#: ../../printerdrake.pm_.c:2240
msgid "Did it work properly?"
msgstr ""
-#: ../../printerdrake.pm_.c:2072 ../../printerdrake.pm_.c:3191
+#: ../../printerdrake.pm_.c:2262 ../../printerdrake.pm_.c:3416
#, fuzzy
msgid "Raw printer"
msgstr "Stađbundinn prentari"
-#: ../../printerdrake.pm_.c:2098
+#: ../../printerdrake.pm_.c:2288
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -7528,15 +7851,15 @@ msgid ""
"to modify the option settings easily.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2100
+#: ../../printerdrake.pm_.c:2290
msgid ""
"These commands you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications, but here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2103 ../../printerdrake.pm_.c:2120
-#: ../../printerdrake.pm_.c:2130
+#: ../../printerdrake.pm_.c:2293 ../../printerdrake.pm_.c:2310
+#: ../../printerdrake.pm_.c:2320
#, c-format
msgid ""
"\n"
@@ -7545,7 +7868,7 @@ msgid ""
"line, e. g. \"%s <file>\". "
msgstr ""
-#: ../../printerdrake.pm_.c:2106 ../../printerdrake.pm_.c:2146
+#: ../../printerdrake.pm_.c:2296 ../../printerdrake.pm_.c:2336
#, c-format
msgid ""
"To know about the options available for the current printer read either the "
@@ -7553,41 +7876,41 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2110
+#: ../../printerdrake.pm_.c:2300
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2115 ../../printerdrake.pm_.c:2125
+#: ../../printerdrake.pm_.c:2305 ../../printerdrake.pm_.c:2315
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2117 ../../printerdrake.pm_.c:2127
-#: ../../printerdrake.pm_.c:2137
+#: ../../printerdrake.pm_.c:2307 ../../printerdrake.pm_.c:2317
+#: ../../printerdrake.pm_.c:2327
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2122 ../../printerdrake.pm_.c:2132
+#: ../../printerdrake.pm_.c:2312 ../../printerdrake.pm_.c:2322
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
msgstr ""
-#: ../../printerdrake.pm_.c:2135
+#: ../../printerdrake.pm_.c:2325
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\" or \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2139
+#: ../../printerdrake.pm_.c:2329
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -7597,7 +7920,7 @@ msgid ""
"jams.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2143
+#: ../../printerdrake.pm_.c:2333
#, c-format
msgid ""
"\n"
@@ -7606,42 +7929,42 @@ msgid ""
"line, e. g. \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2153
+#: ../../printerdrake.pm_.c:2343
#, fuzzy, c-format
msgid "Printing/Scanning/Photo Cards on \"%s\""
msgstr "Keyri upp netiđ"
-#: ../../printerdrake.pm_.c:2154
+#: ../../printerdrake.pm_.c:2344
#, fuzzy, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "Keyri upp netiđ"
-#: ../../printerdrake.pm_.c:2156
+#: ../../printerdrake.pm_.c:2346
#, fuzzy, c-format
msgid "Printing/Photo Card Access on \"%s\""
msgstr "Keyri upp netiđ"
-#: ../../printerdrake.pm_.c:2157
+#: ../../printerdrake.pm_.c:2347
#, fuzzy, c-format
msgid "Printing on the printer \"%s\""
msgstr "Keyri upp netiđ"
-#: ../../printerdrake.pm_.c:2160 ../../printerdrake.pm_.c:2163
-#: ../../printerdrake.pm_.c:2164 ../../printerdrake.pm_.c:2165
-#: ../../printerdrake.pm_.c:3175 ../../standalone/drakTermServ_.c:248
-#: ../../standalone/drakbackup_.c:1485 ../../standalone/drakbackup_.c:3530
-#: ../../standalone/drakbug_.c:129 ../../standalone/drakfont_.c:705
+#: ../../printerdrake.pm_.c:2350 ../../printerdrake.pm_.c:2353
+#: ../../printerdrake.pm_.c:2354 ../../printerdrake.pm_.c:2355
+#: ../../printerdrake.pm_.c:3400 ../../standalone/drakTermServ_.c:248
+#: ../../standalone/drakbackup_.c:1560 ../../standalone/drakbackup_.c:4208
+#: ../../standalone/drakbug_.c:130 ../../standalone/drakfont_.c:705
#: ../../standalone/drakfont_.c:1014
#, fuzzy
msgid "Close"
msgstr "USB mús"
-#: ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2353
#, fuzzy
msgid "Print option list"
msgstr "Stillingar á prentara"
-#: ../../printerdrake.pm_.c:2182
+#: ../../printerdrake.pm_.c:2373
#, c-format
msgid ""
"Your multi-function device was configured automatically to be able to scan. "
@@ -7655,7 +7978,7 @@ msgid ""
"Do not use \"scannerdrake\" for this device!"
msgstr ""
-#: ../../printerdrake.pm_.c:2202
+#: ../../printerdrake.pm_.c:2394
msgid ""
"Your printer was configured automatically to give you access to the photo "
"card drives from your PC. Now you can access your photo cards using the "
@@ -7668,18 +7991,18 @@ msgid ""
"of the file lists."
msgstr ""
-#: ../../printerdrake.pm_.c:2223 ../../printerdrake.pm_.c:2673
-#: ../../printerdrake.pm_.c:2945
+#: ../../printerdrake.pm_.c:2416 ../../printerdrake.pm_.c:2875
+#: ../../printerdrake.pm_.c:3170
msgid "Reading printer data..."
msgstr ""
-#: ../../printerdrake.pm_.c:2243 ../../printerdrake.pm_.c:2271
-#: ../../printerdrake.pm_.c:2306
+#: ../../printerdrake.pm_.c:2436 ../../printerdrake.pm_.c:2464
+#: ../../printerdrake.pm_.c:2499
#, fuzzy
msgid "Transfer printer configuration"
msgstr "Sel stillingar"
-#: ../../printerdrake.pm_.c:2244
+#: ../../printerdrake.pm_.c:2437
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -7689,51 +8012,51 @@ msgid ""
"Not all queues can be transferred due to the following reasons:\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2247
+#: ../../printerdrake.pm_.c:2440
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2249
+#: ../../printerdrake.pm_.c:2442
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2251
+#: ../../printerdrake.pm_.c:2444
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2253
+#: ../../printerdrake.pm_.c:2446
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:2254
+#: ../../printerdrake.pm_.c:2447
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
"or with native CUPS drivers cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:2255
+#: ../../printerdrake.pm_.c:2448
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
"\"Transfer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:2258
+#: ../../printerdrake.pm_.c:2451
msgid "Do not transfer printers"
msgstr ""
-#: ../../printerdrake.pm_.c:2259 ../../printerdrake.pm_.c:2276
+#: ../../printerdrake.pm_.c:2452 ../../printerdrake.pm_.c:2469
msgid "Transfer"
msgstr ""
-#: ../../printerdrake.pm_.c:2272
+#: ../../printerdrake.pm_.c:2465
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -7741,61 +8064,61 @@ msgid ""
"You can also type a new name or skip this printer."
msgstr ""
-#: ../../printerdrake.pm_.c:2280
+#: ../../printerdrake.pm_.c:2473
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr ""
-#: ../../printerdrake.pm_.c:2285
+#: ../../printerdrake.pm_.c:2478
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
"do you really want to overwrite its configuration?"
msgstr ""
-#: ../../printerdrake.pm_.c:2293
+#: ../../printerdrake.pm_.c:2486
#, fuzzy
msgid "New printer name"
msgstr "Stađbundinn prentari"
-#: ../../printerdrake.pm_.c:2296
+#: ../../printerdrake.pm_.c:2489
#, c-format
msgid "Transferring %s..."
msgstr ""
-#: ../../printerdrake.pm_.c:2307
+#: ../../printerdrake.pm_.c:2500
#, c-format
msgid ""
"You have transferred your former default printer (\"%s\"), Should it be also "
"the default printer under the new printing system %s?"
msgstr ""
-#: ../../printerdrake.pm_.c:2316
+#: ../../printerdrake.pm_.c:2510
msgid "Refreshing printer data..."
msgstr ""
-#: ../../printerdrake.pm_.c:2324 ../../printerdrake.pm_.c:2395
-#: ../../printerdrake.pm_.c:2407
+#: ../../printerdrake.pm_.c:2518 ../../printerdrake.pm_.c:2590
+#: ../../printerdrake.pm_.c:2602
#, fuzzy
msgid "Configuration of a remote printer"
msgstr "Stilla prentara"
-#: ../../printerdrake.pm_.c:2325
+#: ../../printerdrake.pm_.c:2519
#, fuzzy
msgid "Starting network..."
msgstr "Stilla nettengingu"
-#: ../../printerdrake.pm_.c:2359 ../../printerdrake.pm_.c:2363
-#: ../../printerdrake.pm_.c:2365
+#: ../../printerdrake.pm_.c:2554 ../../printerdrake.pm_.c:2558
+#: ../../printerdrake.pm_.c:2560
#, fuzzy
msgid "Configure the network now"
msgstr "Stilla nettengingu"
-#: ../../printerdrake.pm_.c:2360
+#: ../../printerdrake.pm_.c:2555
#, fuzzy
msgid "Network functionality not configured"
msgstr "Skjár ekki skilgreindur"
-#: ../../printerdrake.pm_.c:2361
+#: ../../printerdrake.pm_.c:2556
msgid ""
"You are going to configure a remote printer. This needs working network "
"access, but your network is not configured yet. If you go on without network "
@@ -7803,12 +8126,12 @@ msgid ""
"configuring now. How do you want to proceed?"
msgstr ""
-#: ../../printerdrake.pm_.c:2364
+#: ../../printerdrake.pm_.c:2559
#, fuzzy
msgid "Go on without configuring the network"
msgstr "Stilli stađarnetstenginu"
-#: ../../printerdrake.pm_.c:2397
+#: ../../printerdrake.pm_.c:2592
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -7818,34 +8141,34 @@ msgid ""
"\"Printer\""
msgstr ""
-#: ../../printerdrake.pm_.c:2398
+#: ../../printerdrake.pm_.c:2593
msgid ""
"The network access was not running and could not be started. Please check "
"your configuration and your hardware. Then try to configure your remote "
"printer again."
msgstr ""
-#: ../../printerdrake.pm_.c:2408
+#: ../../printerdrake.pm_.c:2603
#, fuzzy
msgid "Restarting printing system..."
msgstr "Hvađa sneiđtegund viltu?"
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2641
#, fuzzy
msgid "high"
msgstr "Hátt"
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2641
#, fuzzy
msgid "paranoid"
msgstr "Taugaveiklađ"
-#: ../../printerdrake.pm_.c:2447
+#: ../../printerdrake.pm_.c:2642
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr ""
-#: ../../printerdrake.pm_.c:2448
+#: ../../printerdrake.pm_.c:2643
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -7860,12 +8183,12 @@ msgid ""
"Do you really want to configure printing on this machine?"
msgstr ""
-#: ../../printerdrake.pm_.c:2480
+#: ../../printerdrake.pm_.c:2675
#, fuzzy
msgid "Starting the printing system at boot time"
msgstr "Hvađa sneiđtegund viltu?"
-#: ../../printerdrake.pm_.c:2481
+#: ../../printerdrake.pm_.c:2676
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -7879,215 +8202,213 @@ msgid ""
"again?"
msgstr ""
-#: ../../printerdrake.pm_.c:2504 ../../printerdrake.pm_.c:2544
-#: ../../printerdrake.pm_.c:2581 ../../printerdrake.pm_.c:2621
-#: ../../printerdrake.pm_.c:2733
+#: ../../printerdrake.pm_.c:2700 ../../printerdrake.pm_.c:2741
+#: ../../printerdrake.pm_.c:2780 ../../printerdrake.pm_.c:2822
+#: ../../printerdrake.pm_.c:2943
msgid "Checking installed software..."
msgstr ""
-#: ../../printerdrake.pm_.c:2548
+#: ../../printerdrake.pm_.c:2746
msgid "Removing LPRng..."
msgstr ""
-#: ../../printerdrake.pm_.c:2585
+#: ../../printerdrake.pm_.c:2785
msgid "Removing LPD..."
msgstr ""
-#: ../../printerdrake.pm_.c:2657
+#: ../../printerdrake.pm_.c:2858
#, fuzzy
msgid "Select Printer Spooler"
msgstr "Veldu prenttengingu"
-#: ../../printerdrake.pm_.c:2658
+#: ../../printerdrake.pm_.c:2859
#, fuzzy
msgid "Which printing system (spooler) do you want to use?"
msgstr "Hvađa sneiđtegund viltu?"
-#: ../../printerdrake.pm_.c:2691
+#: ../../printerdrake.pm_.c:2895
#, fuzzy, c-format
msgid "Configuring printer \"%s\"..."
msgstr "Setja upp prentara"
-#: ../../printerdrake.pm_.c:2704
+#: ../../printerdrake.pm_.c:2909
#, fuzzy
msgid "Installing Foomatic..."
msgstr "Set inn pakka %s"
-#: ../../printerdrake.pm_.c:2769 ../../printerdrake.pm_.c:2808
-#: ../../printerdrake.pm_.c:3192 ../../printerdrake.pm_.c:3262
+#: ../../printerdrake.pm_.c:2979 ../../printerdrake.pm_.c:3020
+#: ../../printerdrake.pm_.c:3417 ../../printerdrake.pm_.c:3490
msgid "Printer options"
msgstr "Stillingar á prentara"
-#: ../../printerdrake.pm_.c:2778
-msgid "Preparing PrinterDrake..."
-msgstr ""
+#: ../../printerdrake.pm_.c:2989
+#, fuzzy
+msgid "Preparing Printerdrake..."
+msgstr "Viđföng fyrir fjartengda lpd prentara"
-#: ../../printerdrake.pm_.c:2795 ../../printerdrake.pm_.c:3349
+#: ../../printerdrake.pm_.c:3007 ../../printerdrake.pm_.c:3580
#, fuzzy
msgid "Configuring applications..."
msgstr "Setja upp prentara"
-#: ../../printerdrake.pm_.c:2815
+#: ../../printerdrake.pm_.c:3027
#, fuzzy
msgid "Would you like to configure printing?"
msgstr "Viltu setja upp prentara?"
-#: ../../printerdrake.pm_.c:2827
+#: ../../printerdrake.pm_.c:3039
msgid "Printing system: "
msgstr ""
-#: ../../printerdrake.pm_.c:2875
-#, fuzzy
-msgid "Printerdrake"
-msgstr "Prentari"
-
-#: ../../printerdrake.pm_.c:2879
+#: ../../printerdrake.pm_.c:3099
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; to view information about it; "
"or to make a printer on a remote CUPS server available for Star Office/"
-"OpenOffice.org."
+"OpenOffice.org/GIMP."
msgstr ""
-#: ../../printerdrake.pm_.c:2880
+#: ../../printerdrake.pm_.c:3100
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; or to view information about "
"it."
msgstr ""
-#: ../../printerdrake.pm_.c:2906
+#: ../../printerdrake.pm_.c:3127
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr ""
-#: ../../printerdrake.pm_.c:2924
+#: ../../printerdrake.pm_.c:3145
#, fuzzy
msgid "Change the printing system"
msgstr "Stilla nettengingu"
-#: ../../printerdrake.pm_.c:2929 ../../standalone/drakconnect_.c:277
+#: ../../printerdrake.pm_.c:3150 ../../standalone/drakconnect_.c:277
#, fuzzy
msgid "Normal Mode"
msgstr "Venjulega"
-#: ../../printerdrake.pm_.c:3085 ../../printerdrake.pm_.c:3135
-#: ../../printerdrake.pm_.c:3343
+#: ../../printerdrake.pm_.c:3310 ../../printerdrake.pm_.c:3360
+#: ../../printerdrake.pm_.c:3573
#, fuzzy
msgid "Do you want to configure another printer?"
msgstr "Viltu prófa skilgreininguna"
-#: ../../printerdrake.pm_.c:3170
+#: ../../printerdrake.pm_.c:3395
#, fuzzy
msgid "Modify printer configuration"
msgstr "Sel stillingar"
-#: ../../printerdrake.pm_.c:3172
+#: ../../printerdrake.pm_.c:3397
#, fuzzy, c-format
msgid ""
"Printer %s\n"
"What do you want to modify on this printer?"
msgstr "Viltu prófa skilgreininguna"
-#: ../../printerdrake.pm_.c:3176
+#: ../../printerdrake.pm_.c:3401
msgid "Do it!"
msgstr ""
-#: ../../printerdrake.pm_.c:3181 ../../printerdrake.pm_.c:3236
+#: ../../printerdrake.pm_.c:3406 ../../printerdrake.pm_.c:3461
#, fuzzy
msgid "Printer connection type"
msgstr "Veldu prenttengingu"
-#: ../../printerdrake.pm_.c:3182 ../../printerdrake.pm_.c:3240
+#: ../../printerdrake.pm_.c:3407 ../../printerdrake.pm_.c:3465
#, fuzzy
msgid "Printer name, description, location"
msgstr "Veldu prenttengingu"
-#: ../../printerdrake.pm_.c:3184 ../../printerdrake.pm_.c:3255
+#: ../../printerdrake.pm_.c:3409 ../../printerdrake.pm_.c:3483
msgid "Printer manufacturer, model, driver"
msgstr ""
-#: ../../printerdrake.pm_.c:3185 ../../printerdrake.pm_.c:3256
+#: ../../printerdrake.pm_.c:3410 ../../printerdrake.pm_.c:3484
msgid "Printer manufacturer, model"
msgstr ""
-#: ../../printerdrake.pm_.c:3194 ../../printerdrake.pm_.c:3266
+#: ../../printerdrake.pm_.c:3419 ../../printerdrake.pm_.c:3494
msgid "Set this printer as the default"
msgstr ""
-#: ../../printerdrake.pm_.c:3196 ../../printerdrake.pm_.c:3271
-msgid "Add this printer to Star Office/OpenOffice.org"
+#: ../../printerdrake.pm_.c:3421 ../../printerdrake.pm_.c:3499
+msgid "Add this printer to Star Office/OpenOffice.org/GIMP"
msgstr ""
-#: ../../printerdrake.pm_.c:3197 ../../printerdrake.pm_.c:3280
-msgid "Remove this printer from Star Office/OpenOffice.org"
+#: ../../printerdrake.pm_.c:3422 ../../printerdrake.pm_.c:3508
+msgid "Remove this printer from Star Office/OpenOffice.org/GIMP"
msgstr ""
-#: ../../printerdrake.pm_.c:3198 ../../printerdrake.pm_.c:3289
+#: ../../printerdrake.pm_.c:3423 ../../printerdrake.pm_.c:3517
#, fuzzy
msgid "Print test pages"
msgstr "Prenta út prufublađsíđu(r)..."
-#: ../../printerdrake.pm_.c:3199 ../../printerdrake.pm_.c:3291
+#: ../../printerdrake.pm_.c:3424 ../../printerdrake.pm_.c:3519
#, fuzzy
msgid "Know how to use this printer"
msgstr "Viltu prófa skilgreininguna"
-#: ../../printerdrake.pm_.c:3201 ../../printerdrake.pm_.c:3293
+#: ../../printerdrake.pm_.c:3426 ../../printerdrake.pm_.c:3521
#, fuzzy
msgid "Remove printer"
msgstr "Viđföng fyrir fjartengda lpd prentara"
-#: ../../printerdrake.pm_.c:3245
+#: ../../printerdrake.pm_.c:3472
#, fuzzy, c-format
msgid "Removing old printer \"%s\"..."
msgstr "Viđföng fyrir fjartengda lpd prentara"
-#: ../../printerdrake.pm_.c:3269
+#: ../../printerdrake.pm_.c:3497
#, fuzzy
msgid "Default printer"
msgstr "Stađbundinn prentari"
-#: ../../printerdrake.pm_.c:3270
+#: ../../printerdrake.pm_.c:3498
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr ""
-#: ../../printerdrake.pm_.c:3274 ../../printerdrake.pm_.c:3277
-msgid "Adding printer to Star Office/OpenOffice.org"
+#: ../../printerdrake.pm_.c:3502 ../../printerdrake.pm_.c:3505
+msgid "Adding printer to Star Office/OpenOffice.org/GIMP"
msgstr ""
-#: ../../printerdrake.pm_.c:3275
+#: ../../printerdrake.pm_.c:3503
#, c-format
msgid ""
-"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
+"The printer \"%s\" was successfully added to Star Office/OpenOffice.org/GIMP."
msgstr ""
-#: ../../printerdrake.pm_.c:3278
+#: ../../printerdrake.pm_.c:3506
#, c-format
-msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
+msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org/GIMP."
msgstr ""
-#: ../../printerdrake.pm_.c:3283 ../../printerdrake.pm_.c:3286
-msgid "Removing printer from Star Office/OpenOffice.org"
+#: ../../printerdrake.pm_.c:3511 ../../printerdrake.pm_.c:3514
+msgid "Removing printer from Star Office/OpenOffice.org/GIMP"
msgstr ""
-#: ../../printerdrake.pm_.c:3284
+#: ../../printerdrake.pm_.c:3512
#, c-format
msgid ""
-"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
+"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org/"
+"GIMP."
msgstr ""
-#: ../../printerdrake.pm_.c:3287
+#: ../../printerdrake.pm_.c:3515
#, c-format
-msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
+msgid ""
+"Failed to remove the printer \"%s\" from Star Office/OpenOffice.org/GIMP."
msgstr ""
-#: ../../printerdrake.pm_.c:3295
+#: ../../printerdrake.pm_.c:3523
#, fuzzy, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr "Viltu prófa skilgreininguna"
-#: ../../printerdrake.pm_.c:3297
+#: ../../printerdrake.pm_.c:3527
#, fuzzy, c-format
msgid "Removing printer \"%s\"..."
msgstr "Viđföng fyrir fjartengda lpd prentara"
@@ -8424,7 +8745,7 @@ msgstr "Endursníđ..."
msgid "File sharing"
msgstr ""
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1669
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1744
#, fuzzy
msgid "System"
msgstr "Mouse Systems"
@@ -8484,193 +8805,229 @@ msgstr "takmarka"
msgid "Stop"
msgstr "Geiri"
-#: ../../share/advertising/00-thanks.pl_.c:9
-msgid "Thank you for choosing Mandrake Linux 8.2"
+#: ../../share/advertising/01-thanks.pl_.c:9
+msgid "Thank you for choosing Mandrake Linux 9.0"
msgstr ""
-#: ../../share/advertising/00-thanks.pl_.c:10
+#: ../../share/advertising/01-thanks.pl_.c:10
msgid "Welcome to the Open Source world"
msgstr ""
-#: ../../share/advertising/00-thanks.pl_.c:11
+#: ../../share/advertising/01-thanks.pl_.c:11
msgid ""
"The success of MandrakeSoft is based upon the principle of Free Software. "
"Your new operating system is the result of collaborative work on the part of "
"the worldwide Linux Community"
msgstr ""
-#: ../../share/advertising/01-gnu.pl_.c:9
+#: ../../share/advertising/02-community.pl_.c:9
#, fuzzy
-msgid "Join the Free Software world"
+msgid "Get involved in the Free Software world"
msgstr "Prófunar skilgreining"
-#: ../../share/advertising/01-gnu.pl_.c:10
+#: ../../share/advertising/02-community.pl_.c:10
+msgid "Want to know more about the Open Source community?"
+msgstr ""
+
+#: ../../share/advertising/02-community.pl_.c:11
msgid ""
-"Get to know the Open Source community and become a member. Learn, teach, and "
-"help others by joining the many discussion forums that you will find in our "
-"\"Community\" webpages"
+"To share your own knowledge and help build Linux tools, join the discussions "
+"forum you'll find on our \"Community\" webpages"
msgstr ""
-#: ../../share/advertising/02-internet.pl_.c:9
+#: ../../share/advertising/03-internet.pl_.c:9
#, fuzzy
-msgid "Internet and Messaging"
-msgstr "Endursníđ..."
+msgid "Get the most from the Internet"
+msgstr "Nafn tengingar"
-#: ../../share/advertising/02-internet.pl_.c:10
+#: ../../share/advertising/03-internet.pl_.c:10
msgid ""
-"Mandrake Linux 8.2 provides the best software to access everything the "
-"Internet has to offer: Surf the web & view animations with Mozilla and "
-"Konqueror, exchange email & organize your personal information with "
-"Evolution and Kmail, and much more"
+"Mandrake Linux 9.0 has selected the best software for you. Surf the Web and "
+"view animations with Mozilla and Konqueror, or read your mail and handle "
+"your personal information with Evolution and Kmail"
msgstr ""
-#: ../../share/advertising/03-graphic.pl_.c:9
-#, fuzzy
-msgid "Multimedia and Graphics"
-msgstr "Margmiđlun"
+#: ../../share/advertising/04-multimedia.pl_.c:9
+msgid "Discover the most up-to-date graphics and multimedia tools!"
+msgstr ""
+
+#: ../../share/advertising/04-multimedia.pl_.c:10
+msgid "Push multimedia to its limits!"
+msgstr ""
-#: ../../share/advertising/03-graphic.pl_.c:10
+#: ../../share/advertising/04-multimedia.pl_.c:11
msgid ""
-"Mandrake Linux 8.2 lets you push your multimedia computer to its limits! Use "
-"the latest software to play music and audio files, edit and organize your "
-"images and photos, watch TV and videos, and much more"
+"Mandrake Linux 9.0 enables you to use the very latest software to play audio "
+"files, edit and handle your images or photos, and play videos"
msgstr ""
-#: ../../share/advertising/04-develop.pl_.c:9
+#: ../../share/advertising/05-games.pl_.c:9
#, fuzzy
-msgid "Development"
-msgstr "Forritun"
+msgid "Games"
+msgstr "Búiđ"
-#: ../../share/advertising/04-develop.pl_.c:10
+#: ../../share/advertising/05-games.pl_.c:10
msgid ""
-"Mandrake Linux 8.2 is the ultimate development platform. Discover the power "
-"of the GNU gcc compiler as well as the best Open Source development "
-"environments"
+"Mandrake Linux 9.0 provides the best Open Source games - arcade, action, "
+"cards, sports, strategy..."
msgstr ""
-#: ../../share/advertising/05-contcenter.pl_.c:9
-#: ../../standalone/drakbug_.c:69
+#: ../../share/advertising/06-mcc.pl_.c:9 ../../standalone/drakbug_.c:69
#, fuzzy
msgid "Mandrake Control Center"
msgstr "Nafn tengingar"
-#: ../../share/advertising/05-contcenter.pl_.c:10
+#: ../../share/advertising/06-mcc.pl_.c:10
msgid ""
-"The Mandrake Linux 8.2 Control Center is a one-stop location for fully "
-"customizing and configuring your Mandrake system"
+"Mandrake Linux 9.0 provides a powerful tool to fully customize and configure "
+"your machine"
msgstr ""
-#: ../../share/advertising/06-user.pl_.c:9
+#: ../../share/advertising/07-desktop.pl_.c:9
#, fuzzy
msgid "User interfaces"
msgstr "Endursníđ..."
-#: ../../share/advertising/06-user.pl_.c:10
+#: ../../share/advertising/07-desktop.pl_.c:10
msgid ""
-"Mandrake Linux 8.2 provides 11 different graphical desktop environments and "
-"window managers to choose from including GNOME 1.4, KDE 2.2.2, Window Maker "
-"0.8, and the rest"
+"Mandrake Linux 9.0 provides 11 user interfaces which can be fully modified: "
+"KDE 3, Gnome 2, WindowMaker..."
msgstr ""
-#: ../../share/advertising/07-server.pl_.c:9
+#: ../../share/advertising/08-development.pl_.c:9
#, fuzzy
-msgid "Server Software"
-msgstr "Heiti SMB țjóns"
+msgid "Development simplified"
+msgstr "Forritun"
+
+#: ../../share/advertising/08-development.pl_.c:10
+msgid "Mandrake Linux 9.0 is the ultimate development platform"
+msgstr ""
-#: ../../share/advertising/07-server.pl_.c:10
+#: ../../share/advertising/08-development.pl_.c:11
msgid ""
-"Transform your machine into a powerful server with just a few clicks of the "
-"mouse: Web server, email, firewall, router, file and print server, ..."
+"Use the full power of the GNU gcc 3 compiler as well as the best Open Source "
+"development environments"
msgstr ""
-#: ../../share/advertising/08-games.pl_.c:9
-#, fuzzy
-msgid "Games"
-msgstr "Búiđ"
+#: ../../share/advertising/09-server.pl_.c:9
+msgid "Turn your machine into a reliable server"
+msgstr ""
-#: ../../share/advertising/08-games.pl_.c:10
+#: ../../share/advertising/09-server.pl_.c:10
msgid ""
-"Mandrake Linux 8.2 provides the best Open Source games - arcade, action, "
-"cards, sports, strategy, ..."
+"Transform your machine into a powerful server in a few clicks of your mouse: "
+"Web server, mail, firewall, router, file and print server..."
msgstr ""
-#: ../../share/advertising/09-MDKcampus.pl_.c:9
-msgid "MandrakeCampus"
+#: ../../share/advertising/10-mnf.pl_.c:9
+msgid "Optimize your security"
msgstr ""
-#: ../../share/advertising/09-MDKcampus.pl_.c:10
+#: ../../share/advertising/10-mnf.pl_.c:10
msgid ""
-"Would you like to learn Linux simply, quickly, and for free? MandrakeSoft "
-"provides free Linux training, as well as a way to test your progress, at "
-"MandrakeCampus -- our online training center"
+"The MandrakeSecurity range includes the Multi Network Firewall product (M.N."
+"F.)"
msgstr ""
-#: ../../share/advertising/10-MDKexpert.pl_.c:9
-#, fuzzy
-msgid "MandrakeExpert"
-msgstr "snillingur"
+#: ../../share/advertising/10-mnf.pl_.c:11
+msgid ""
+"This firewall product includes network features which allow you to fulfill "
+"all your security needs"
+msgstr ""
+
+#: ../../share/advertising/10-mnf.pl_.c:12
+msgid "This product is available on MandrakeStore website"
+msgstr ""
-#: ../../share/advertising/10-MDKexpert.pl_.c:10
+#: ../../share/advertising/11-mdkstore.pl_.c:9
+msgid "The official MandrakeSoft store"
+msgstr ""
+
+#: ../../share/advertising/11-mdkstore.pl_.c:10
msgid ""
-"Quality support from the Linux Community, and from MandrakeSoft, is just "
-"around the corner. And if you're already a Linux veteran, become an \"Expert"
-"\" and share your knowledge at our support website"
+"Our full range of Linux solutions, as well as special offers on products and "
+"'goodies', are available online at our e-store"
msgstr ""
-#: ../../share/advertising/11-consul.pl_.c:9
-msgid "MandrakeConsulting"
+#: ../../share/advertising/12-mdkstore.pl_.c:9
+msgid "Strategic partners"
msgstr ""
-#: ../../share/advertising/11-consul.pl_.c:10
+#: ../../share/advertising/12-mdkstore.pl_.c:10
msgid ""
-"For all of your IT projects, our consultants are ready to analyze your "
-"requirements and offer a customized solution. Benefit from MandrakeSoft's "
-"vast experience as a Linux producer to provide a true IT alternative for "
-"your business organization"
+"MandrakeSoft works alongside a selection of companies offering professional "
+"solutions compatible with Mandrake Linux; a list of these partners is "
+"available on the MandrakeStore"
msgstr ""
-#: ../../share/advertising/12-MDKstore.pl_.c:9
-msgid "MandrakeStore"
+#: ../../share/advertising/13-mdkcampus.pl_.c:9
+msgid "Discover MandrakeSoft's training catalogue Linux-Campus"
msgstr ""
-#: ../../share/advertising/12-MDKstore.pl_.c:10
+#: ../../share/advertising/13-mdkcampus.pl_.c:10
msgid ""
-"A full range of Linux solutions, as well as special offers on products and "
-"'goodies', are available online at our e-store"
+"The training program has been create to respond to the needs of both users "
+"and experts (Network and System administrations)"
+msgstr ""
+
+#: ../../share/advertising/13-mdkcampus.pl_.c:11
+msgid "Certify yourself on Linux"
+msgstr ""
+
+#: ../../share/advertising/13-mdkcampus.pl_.c:12
+msgid ""
+"Whether you choose to teach yourself online or via our network of training "
+"partners, the Linux-Campus catalogue prepares you for the acknowledged LPI "
+"certification program (worldwide professional technical certification)"
+msgstr ""
+
+#: ../../share/advertising/14-mdkexpert.pl_.c:9
+#, fuzzy
+msgid "Become a MandrakeExpert"
+msgstr "snillingur"
+
+#: ../../share/advertising/14-mdkexpert.pl_.c:10
+msgid ""
+"Find the solutions to your problems via MandrakeSoft's online support "
+"platform"
msgstr ""
-#: ../../share/advertising/13-Nvert.pl_.c:9
+#: ../../share/advertising/14-mdkexpert.pl_.c:11
msgid ""
-"For more information on MandrakeSoft's Professional Services and commercial "
-"offerings, please see the following web page:"
+"Join the MandrakeSoft support teams and the Linux Community online to share "
+"your knowledge and help others by becoming a recognized Expert on the online "
+"technical support website:"
+msgstr ""
+
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:9
+#, fuzzy
+msgid "MandrakeExpert Corporate"
+msgstr "snillingur"
+
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:10
+msgid "An online platform to respond to company's specific support needs"
msgstr ""
-#: ../../share/advertising/13-Nvert.pl_.c:11
-msgid "http://www.mandrakesoft.com/sales/contact"
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:11
+msgid ""
+"All incidents will be followed up by a single qualified MandrakeSoft "
+"technical expert."
msgstr ""
-#: ../../standalone.pm_.c:40
+#: ../../standalone.pm_.c:41
#, fuzzy
msgid "Installing packages..."
msgstr "Set inn pakka %s"
-#: ../../standalone/XFdrake_.c:143
+#: ../../standalone/XFdrake_.c:145
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "Stimplađu țig út og sláđu á Ctrl-Alt-Backspace"
-#: ../../standalone/XFdrake_.c:147
+#: ../../standalone/XFdrake_.c:149
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "Stimplađu țig aftur inn í %s til ađ virkja breytingarnar"
-#: ../../standalone/diskdrake_.c:81
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I'll try to go on blanking bad partitions"
-msgstr ""
-"Ég get ekki lesiđ disksneiđatöflu țína, hún er of skemmd fyrir mig :-(\n"
-"Ég mun reyna ađ halda áfram međ țví ađ hreinsa skemmdar disksneiđar"
-
#: ../../standalone/drakTermServ_.c:188
#, fuzzy
msgid "Mandrake Terminal Server Configuration"
@@ -8714,12 +9071,13 @@ msgstr "Bæta viđ notanda"
msgid "Add/Del Clients"
msgstr ""
-#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3282
-#: ../../standalone/drakbackup_.c:3315 ../../standalone/drakbackup_.c:3341
-#: ../../standalone/drakbackup_.c:3368 ../../standalone/drakbackup_.c:3395
-#: ../../standalone/drakbackup_.c:3434 ../../standalone/drakbackup_.c:3455
-#: ../../standalone/drakbackup_.c:3482 ../../standalone/drakbackup_.c:3508
-#: ../../standalone/drakbackup_.c:3533 ../../standalone/drakfont_.c:700
+#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3930
+#: ../../standalone/drakbackup_.c:3963 ../../standalone/drakbackup_.c:3989
+#: ../../standalone/drakbackup_.c:4016 ../../standalone/drakbackup_.c:4043
+#: ../../standalone/drakbackup_.c:4082 ../../standalone/drakbackup_.c:4103
+#: ../../standalone/drakbackup_.c:4130 ../../standalone/drakbackup_.c:4160
+#: ../../standalone/drakbackup_.c:4186 ../../standalone/drakbackup_.c:4211
+#: ../../standalone/drakfont_.c:700
#, fuzzy
msgid "Help"
msgstr "Hjálp"
@@ -8879,8 +9237,8 @@ msgid ""
"The parameters of the auto-install are available in the sections on the left"
msgstr ""
-#: ../../standalone/drakautoinst_.c:239 ../../standalone/drakgw_.c:548
-#: ../../standalone/scannerdrake_.c:105
+#: ../../standalone/drakautoinst_.c:239 ../../standalone/drakgw_.c:484
+#: ../../standalone/scannerdrake_.c:119
msgid "Congratulations!"
msgstr "Til hamingju!"
@@ -8905,27 +9263,31 @@ msgstr "Bæta viđ notanda"
msgid "Remove the last item"
msgstr "Forsníđ disksneiđ %s"
-#: ../../standalone/drakbackup_.c:625
+#: ../../standalone/drakbackup_.c:619
msgid "Cron not available yet as non-root"
msgstr ""
-#: ../../standalone/drakbackup_.c:731
+#: ../../standalone/drakbackup_.c:725
msgid "WARNING"
msgstr ""
-#: ../../standalone/drakbackup_.c:732
+#: ../../standalone/drakbackup_.c:726
#, fuzzy
msgid "FATAL"
msgstr "FAT"
-#: ../../standalone/drakbackup_.c:744
+#: ../../standalone/drakbackup_.c:727
+msgid "INFO"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:739
msgid ""
"\n"
" DrakBackup Report \n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:745
+#: ../../standalone/drakbackup_.c:740
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -8933,7 +9295,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:749
+#: ../../standalone/drakbackup_.c:744
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -8941,13 +9303,20 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:770 ../../standalone/drakbackup_.c:840
-#: ../../standalone/drakbackup_.c:894
+#: ../../standalone/drakbackup_.c:765 ../../standalone/drakbackup_.c:835
+#: ../../standalone/drakbackup_.c:889
#, fuzzy
msgid "Total progess"
msgstr "Prófa tengi"
-#: ../../standalone/drakbackup_.c:822
+#: ../../standalone/drakbackup_.c:788
+msgid ""
+"Sorry, perl-Expect is not installed/enabled. To use\n"
+"this feature, install perl-Expect and comment lines 772-774,\n"
+" as well as 788,789. Then uncomment line 787."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:817
#, c-format
msgid ""
"%s exists, delete?\n"
@@ -8956,16 +9325,41 @@ msgid ""
" need to purge the entry from authorized_keys on the server."
msgstr ""
-#: ../../standalone/drakbackup_.c:831
+#: ../../standalone/drakbackup_.c:826
msgid "This may take a moment to generate the keys."
msgstr ""
-#: ../../standalone/drakbackup_.c:838
+#: ../../standalone/drakbackup_.c:833
#, c-format
msgid "ERROR: Cannot spawn %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:865
+#: ../../standalone/drakbackup_.c:850
+#, c-format
+msgid "No password prompt on %s at port %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:851
+#, fuzzy, c-format
+msgid "Bad password on %s"
+msgstr "Ekkert lykilorđ"
+
+#: ../../standalone/drakbackup_.c:852
+#, c-format
+msgid "Permission denied transferring %s to %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:853
+#, fuzzy, c-format
+msgid "Can't find %s on %s"
+msgstr "Villa viđ ađ opna %s til skriftar: %s"
+
+#: ../../standalone/drakbackup_.c:856
+#, c-format
+msgid "%s not responding"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:860
#, c-format
msgid ""
"Transfer successful\n"
@@ -8976,62 +9370,67 @@ msgid ""
"without being prompted for a password."
msgstr ""
-#: ../../standalone/drakbackup_.c:908
+#: ../../standalone/drakbackup_.c:903
msgid "WebDAV remote site already in sync!"
msgstr ""
-#: ../../standalone/drakbackup_.c:912
+#: ../../standalone/drakbackup_.c:907
msgid "WebDAV transfer failed!"
msgstr ""
-#: ../../standalone/drakbackup_.c:934
+#: ../../standalone/drakbackup_.c:928
msgid "No CDR/DVDR in drive!"
msgstr ""
-#: ../../standalone/drakbackup_.c:938
+#: ../../standalone/drakbackup_.c:932
msgid "Does not appear to be recordable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:942
+#: ../../standalone/drakbackup_.c:936
msgid "Not erasable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:981
+#: ../../standalone/drakbackup_.c:975
msgid "This may take a moment to erase the media."
msgstr ""
-#: ../../standalone/drakbackup_.c:1045
+#: ../../standalone/drakbackup_.c:1060
msgid "Permission problem accessing CD."
msgstr ""
-#: ../../standalone/drakbackup_.c:1144 ../../standalone/drakbackup_.c:1193
+#: ../../standalone/drakbackup_.c:1087
+#, c-format
+msgid "No tape in %s!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1199 ../../standalone/drakbackup_.c:1248
msgid "Backup system files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:1194 ../../standalone/drakbackup_.c:1261
+#: ../../standalone/drakbackup_.c:1249 ../../standalone/drakbackup_.c:1316
#, fuzzy
msgid "Hard Disk Backup files..."
msgstr "Skemmd afritsskrá"
-#: ../../standalone/drakbackup_.c:1206
+#: ../../standalone/drakbackup_.c:1261
#, fuzzy
msgid "Backup User files..."
msgstr "Skemmd afritsskrá"
-#: ../../standalone/drakbackup_.c:1207
+#: ../../standalone/drakbackup_.c:1262
msgid "Hard Disk Backup Progress..."
msgstr ""
-#: ../../standalone/drakbackup_.c:1260
+#: ../../standalone/drakbackup_.c:1315
#, fuzzy
msgid "Backup Other files..."
msgstr "Skemmd afritsskrá"
-#: ../../standalone/drakbackup_.c:1266
+#: ../../standalone/drakbackup_.c:1321
msgid "No changes to backup!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1282 ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1337 ../../standalone/drakbackup_.c:1360
#, c-format
msgid ""
"\n"
@@ -9039,785 +9438,908 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1289
+#: ../../standalone/drakbackup_.c:1344
#, c-format
msgid ""
-"file list sent by FTP : %s\n"
+"file list sent by FTP: %s\n"
" "
msgstr ""
-#: ../../standalone/drakbackup_.c:1292
+#: ../../standalone/drakbackup_.c:1347
msgid ""
"\n"
" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1310
+#: ../../standalone/drakbackup_.c:1365
msgid ""
"\n"
"Drakbackup activities via CD:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1315
+#: ../../standalone/drakbackup_.c:1370
msgid ""
"\n"
"Drakbackup activities via tape:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1324
+#: ../../standalone/drakbackup_.c:1379
#, fuzzy
msgid " Error during mail sending. \n"
-msgstr "Villa viđ lestur skráarinnar $f"
+msgstr "Villa viđ lestur skráarinnar %s"
-#: ../../standalone/drakbackup_.c:1346
+#: ../../standalone/drakbackup_.c:1404
msgid "Can't create catalog!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1459 ../../standalone/drakbackup_.c:1470
-#: ../../standalone/drakbackup_.c:1481 ../../standalone/drakfont_.c:1004
+#: ../../standalone/drakbackup_.c:1517 ../../standalone/drakbackup_.c:1528
+#: ../../standalone/drakfont_.c:1004
#, fuzzy
msgid "File Selection"
msgstr "Val á pakkahóp"
-#: ../../standalone/drakbackup_.c:1486
+#: ../../standalone/drakbackup_.c:1556
msgid "Select the files or directories and click on 'Add'"
msgstr ""
-#: ../../standalone/drakbackup_.c:1525
+#: ../../standalone/drakbackup_.c:1600
msgid ""
"\n"
"Please check all options that you need.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1526
+#: ../../standalone/drakbackup_.c:1601
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1527
+#: ../../standalone/drakbackup_.c:1602
msgid "Backup your System files. (/etc directory)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1528
+#: ../../standalone/drakbackup_.c:1603
msgid "Use incremental backup (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1529
+#: ../../standalone/drakbackup_.c:1604
msgid "Do not include critical files (passwd, group, fstab)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1530
+#: ../../standalone/drakbackup_.c:1605
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr ""
-#: ../../standalone/drakbackup_.c:1547
+#: ../../standalone/drakbackup_.c:1622
msgid "Please check all users that you want to include in your backup."
msgstr ""
-#: ../../standalone/drakbackup_.c:1574
+#: ../../standalone/drakbackup_.c:1649
msgid "Do not include the browser cache"
msgstr ""
-#: ../../standalone/drakbackup_.c:1575 ../../standalone/drakbackup_.c:1599
+#: ../../standalone/drakbackup_.c:1650 ../../standalone/drakbackup_.c:1674
msgid "Use Incremental Backups (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1597 ../../standalone/drakfont_.c:1058
+#: ../../standalone/drakbackup_.c:1672 ../../standalone/drakfont_.c:1058
#, fuzzy
msgid "Remove Selected"
msgstr "Fjartengd prentröđ"
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:1710
msgid "Windows (FAT32)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1674
+#: ../../standalone/drakbackup_.c:1749
msgid "Users"
msgstr ""
-#: ../../standalone/drakbackup_.c:1700
+#: ../../standalone/drakbackup_.c:1775
#, fuzzy
msgid "Use network connection to backup"
msgstr "Veldu prenttengingu"
-#: ../../standalone/drakbackup_.c:1706
+#: ../../standalone/drakbackup_.c:1777
+msgid "Net Method:"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1781
msgid "Use Expect for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1707
+#: ../../standalone/drakbackup_.c:1782
msgid ""
"Create/Transfer\n"
"backup keys for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1708
+#: ../../standalone/drakbackup_.c:1783
msgid ""
" Transfer \n"
"Now"
msgstr ""
-#: ../../standalone/drakbackup_.c:1709
+#: ../../standalone/drakbackup_.c:1784
msgid "Keys in place already"
msgstr ""
-#: ../../standalone/drakbackup_.c:1713
+#: ../../standalone/drakbackup_.c:1788
#, fuzzy
msgid "Please enter the host name or IP."
msgstr "Hvernig mús ertu međ?"
-#: ../../standalone/drakbackup_.c:1718
+#: ../../standalone/drakbackup_.c:1793
msgid ""
"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
-#: ../../standalone/drakbackup_.c:1723
+#: ../../standalone/drakbackup_.c:1798
#, fuzzy
msgid "Please enter your login"
msgstr "Reyndu aftur"
-#: ../../standalone/drakbackup_.c:1728
+#: ../../standalone/drakbackup_.c:1803
#, fuzzy
msgid "Please enter your password"
msgstr "Hvernig mús ertu međ?"
-#: ../../standalone/drakbackup_.c:1734
+#: ../../standalone/drakbackup_.c:1809
#, fuzzy
msgid "Remember this password"
msgstr "Ákveđa rótarlykilorđ"
-#: ../../standalone/drakbackup_.c:1745
+#: ../../standalone/drakbackup_.c:1820
msgid "Need hostname, username and password!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1841
+#: ../../standalone/drakbackup_.c:1915
msgid "Use CD/DVDROM to backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1844
+#: ../../standalone/drakbackup_.c:1918
msgid ""
"Please choose your CD/DVD device\n"
"(Press Enter to propogate settings to other fields.\n"
"This field isn't necessary, only a tool to fill in the form.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1849
+#: ../../standalone/drakbackup_.c:1923
#, fuzzy
msgid "Please choose your CD/DVD media size"
msgstr "Hvađa lyklaborđsuppsetningu viltu?"
-#: ../../standalone/drakbackup_.c:1855
+#: ../../standalone/drakbackup_.c:1929
#, fuzzy
msgid "Please check for multisession CD"
msgstr "Smelltu á disksneiđ"
-#: ../../standalone/drakbackup_.c:1861
+#: ../../standalone/drakbackup_.c:1935
#, fuzzy
msgid "Please check if you are using CDRW media"
msgstr "Smelltu á disksneiđ"
-#: ../../standalone/drakbackup_.c:1867
+#: ../../standalone/drakbackup_.c:1941
#, fuzzy
msgid "Please check if you want to erase your RW media (1st Session)"
msgstr "Smelltu á disksneiđ"
-#: ../../standalone/drakbackup_.c:1868
+#: ../../standalone/drakbackup_.c:1942
msgid " Erase Now "
msgstr ""
-#: ../../standalone/drakbackup_.c:1874
+#: ../../standalone/drakbackup_.c:1948
#, fuzzy
msgid "Please check if you are using a DVDR device"
msgstr "Smelltu á disksneiđ"
-#: ../../standalone/drakbackup_.c:1880
+#: ../../standalone/drakbackup_.c:1954
#, fuzzy
msgid "Please check if you are using a DVDRAM device"
msgstr "Smelltu á disksneiđ"
-#: ../../standalone/drakbackup_.c:1893
+#: ../../standalone/drakbackup_.c:1967
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
msgstr ""
-#: ../../standalone/drakbackup_.c:1926
+#: ../../standalone/drakbackup_.c:2000
#, fuzzy
msgid "No CD device defined!"
msgstr "Veljiđ skrá"
-#: ../../standalone/drakbackup_.c:1974
+#: ../../standalone/drakbackup_.c:2048
msgid "Use tape to backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1977
+#: ../../standalone/drakbackup_.c:2051
msgid "Please enter the device name to use for backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1983
+#: ../../standalone/drakbackup_.c:2057
#, fuzzy
msgid "Please check if you want to use the non-rewinding device."
msgstr "Veldu pakkana sem țú vilt setja inn"
-#: ../../standalone/drakbackup_.c:1989
+#: ../../standalone/drakbackup_.c:2063
#, fuzzy
msgid "Please check if you want to erase your tape before the backup."
msgstr "Veldu pakkana sem țú vilt setja inn"
-#: ../../standalone/drakbackup_.c:1995
+#: ../../standalone/drakbackup_.c:2069
#, fuzzy
msgid "Please check if you want to eject your tape after the backup."
msgstr "Veldu pakkana sem țú vilt setja inn"
-#: ../../standalone/drakbackup_.c:2001 ../../standalone/drakbackup_.c:2074
-#: ../../standalone/drakbackup_.c:3025
+#: ../../standalone/drakbackup_.c:2075 ../../standalone/drakbackup_.c:2149
+#: ../../standalone/drakbackup_.c:3116
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:2066
+#: ../../standalone/drakbackup_.c:2140
#, fuzzy
msgid "Please enter the directory to save to:"
msgstr "Hvernig mús ertu međ?"
-#: ../../standalone/drakbackup_.c:2080 ../../standalone/drakbackup_.c:3031
+#: ../../standalone/drakbackup_.c:2155 ../../standalone/drakbackup_.c:3122
#, fuzzy
msgid "Use quota for backup files."
msgstr "Skemmd afritsskrá"
-#: ../../standalone/drakbackup_.c:2146
+#: ../../standalone/drakbackup_.c:2221
#, fuzzy
msgid "Network"
msgstr "Geiri"
-#: ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:2226
msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2156
+#: ../../standalone/drakbackup_.c:2231
msgid "HardDrive / NFS"
msgstr ""
-#: ../../standalone/drakbackup_.c:2161
+#: ../../standalone/drakbackup_.c:2236
#, fuzzy
msgid "Tape"
msgstr "Tegund"
-#: ../../standalone/drakbackup_.c:2175 ../../standalone/drakbackup_.c:2179
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2250 ../../standalone/drakbackup_.c:2254
+#: ../../standalone/drakbackup_.c:2258
msgid "hourly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2176 ../../standalone/drakbackup_.c:2180
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2251 ../../standalone/drakbackup_.c:2255
+#: ../../standalone/drakbackup_.c:2258
msgid "daily"
msgstr ""
-#: ../../standalone/drakbackup_.c:2177 ../../standalone/drakbackup_.c:2181
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2252 ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2258
msgid "weekly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2178 ../../standalone/drakbackup_.c:2182
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2253 ../../standalone/drakbackup_.c:2257
+#: ../../standalone/drakbackup_.c:2258
msgid "monthly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2196
+#: ../../standalone/drakbackup_.c:2271
#, fuzzy
msgid "Use daemon"
msgstr "Notandanafn:"
-#: ../../standalone/drakbackup_.c:2201
+#: ../../standalone/drakbackup_.c:2276
msgid ""
"Please choose the time \n"
"interval between each backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:2207
+#: ../../standalone/drakbackup_.c:2282
#, fuzzy
msgid ""
"Please choose the\n"
"media for backup."
msgstr "Hvernig mús ertu međ?"
-#: ../../standalone/drakbackup_.c:2214
+#: ../../standalone/drakbackup_.c:2289
msgid ""
"Please be sure that the cron daemon is included in your services. \n"
"\n"
"Note that currently all 'net' medias also use the hard drive."
msgstr ""
-#: ../../standalone/drakbackup_.c:2251
-msgid "Send mail report after each backup to :"
+#: ../../standalone/drakbackup_.c:2326
+msgid "Send mail report after each backup to:"
msgstr ""
-#: ../../standalone/drakbackup_.c:2257
+#: ../../standalone/drakbackup_.c:2332
msgid "Delete Hard Drive tar files after backup to other media."
msgstr ""
-#: ../../standalone/drakbackup_.c:2296
+#: ../../standalone/drakbackup_.c:2371
#, fuzzy
msgid "What"
msgstr "Augnablik"
-#: ../../standalone/drakbackup_.c:2301
+#: ../../standalone/drakbackup_.c:2376
#, fuzzy
msgid "Where"
msgstr "stig"
-#: ../../standalone/drakbackup_.c:2306
+#: ../../standalone/drakbackup_.c:2381
#, fuzzy
msgid "When"
msgstr "stig"
-#: ../../standalone/drakbackup_.c:2311
+#: ../../standalone/drakbackup_.c:2386
#, fuzzy
msgid "More Options"
msgstr "Stillingar kjarnaeininga:"
-#: ../../standalone/drakbackup_.c:2330 ../../standalone/drakbackup_.c:3873
+#: ../../standalone/drakbackup_.c:2405 ../../standalone/drakbackup_.c:4530
#, fuzzy
msgid "Drakbackup Configuration"
msgstr "Uppsetning"
-#: ../../standalone/drakbackup_.c:2348
+#: ../../standalone/drakbackup_.c:2423
#, fuzzy
msgid "Please choose where you want to backup"
msgstr "Veldu pakkana sem țú vilt setja inn"
-#: ../../standalone/drakbackup_.c:2350
+#: ../../standalone/drakbackup_.c:2425
msgid "on Hard Drive"
msgstr ""
-#: ../../standalone/drakbackup_.c:2360
+#: ../../standalone/drakbackup_.c:2435
msgid "across Network"
msgstr ""
-#: ../../standalone/drakbackup_.c:2370
+#: ../../standalone/drakbackup_.c:2445
msgid "on CDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2378
+#: ../../standalone/drakbackup_.c:2453
msgid "on Tape Device"
msgstr ""
-#: ../../standalone/drakbackup_.c:2421
+#: ../../standalone/drakbackup_.c:2496
#, fuzzy
msgid "Please choose what you want to backup"
msgstr "Veldu pakkana sem țú vilt setja inn"
-#: ../../standalone/drakbackup_.c:2422
+#: ../../standalone/drakbackup_.c:2497
#, fuzzy
msgid "Backup system"
msgstr "Setja upp skráarkerfi"
-#: ../../standalone/drakbackup_.c:2423
+#: ../../standalone/drakbackup_.c:2498
msgid "Backup Users"
msgstr ""
-#: ../../standalone/drakbackup_.c:2426
+#: ../../standalone/drakbackup_.c:2501
msgid "Select user manually"
msgstr ""
-#: ../../standalone/drakbackup_.c:2508
+#: ../../standalone/drakbackup_.c:2584
msgid ""
"\n"
"Backup Sources: \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2509
+#: ../../standalone/drakbackup_.c:2585
msgid ""
"\n"
"- System Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2511
+#: ../../standalone/drakbackup_.c:2587
msgid ""
"\n"
"- User Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2513
+#: ../../standalone/drakbackup_.c:2589
msgid ""
"\n"
"- Other Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2515
+#: ../../standalone/drakbackup_.c:2591
#, c-format
msgid ""
"\n"
-"- Save on Hard drive on path : %s\n"
+"- Save on Hard drive on path: %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2518
+#: ../../standalone/drakbackup_.c:2594
msgid ""
"\n"
"- Delete hard drive tar files after backup.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2524
+#: ../../standalone/drakbackup_.c:2600
msgid ""
"\n"
"- Burn to CD"
msgstr ""
-#: ../../standalone/drakbackup_.c:2525
+#: ../../standalone/drakbackup_.c:2601
msgid "RW"
msgstr ""
-#: ../../standalone/drakbackup_.c:2526
+#: ../../standalone/drakbackup_.c:2602
#, fuzzy, c-format
-msgid " on device : %s"
+msgid " on device: %s"
msgstr "Mús: %s\n"
-#: ../../standalone/drakbackup_.c:2527
+#: ../../standalone/drakbackup_.c:2603
msgid " (multi-session)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2528
+#: ../../standalone/drakbackup_.c:2604
#, c-format
msgid ""
"\n"
-"- Save to Tape on device : %s"
+"- Save to Tape on device: %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2529
+#: ../../standalone/drakbackup_.c:2605
#, c-format
msgid "\t\tErase=%s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2532
+#: ../../standalone/drakbackup_.c:2608
#, c-format
msgid ""
"\n"
-"- Save via %s on host : %s\n"
+"- Save via %s on host: %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2533
+#: ../../standalone/drakbackup_.c:2609
#, c-format
msgid ""
"\t\t user name: %s\n"
"\t\t on path: %s \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2534
+#: ../../standalone/drakbackup_.c:2610
#, fuzzy
msgid ""
"\n"
"- Options:\n"
msgstr "Upplęsingar"
-#: ../../standalone/drakbackup_.c:2535
+#: ../../standalone/drakbackup_.c:2611
msgid "\tDo not include System Files\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2538
+#: ../../standalone/drakbackup_.c:2614
msgid "\tBackups use tar and bzip2\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2540
+#: ../../standalone/drakbackup_.c:2616
msgid "\tBackups use tar and gzip\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2543
+#: ../../standalone/drakbackup_.c:2619
#, c-format
msgid ""
"\n"
-"- Daemon (%s) include :\n"
+"- Daemon (%s) include:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2544
+#: ../../standalone/drakbackup_.c:2620
msgid "\t-Hard drive.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2545
+#: ../../standalone/drakbackup_.c:2621
msgid "\t-CDROM.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2546
+#: ../../standalone/drakbackup_.c:2622
msgid "\t-Tape \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2547
+#: ../../standalone/drakbackup_.c:2623
msgid "\t-Network by FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2548
+#: ../../standalone/drakbackup_.c:2624
msgid "\t-Network by SSH.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2549
+#: ../../standalone/drakbackup_.c:2625
msgid "\t-Network by rsync.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2550
+#: ../../standalone/drakbackup_.c:2626
msgid "\t-Network by webdav.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2552
+#: ../../standalone/drakbackup_.c:2628
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2558
+#: ../../standalone/drakbackup_.c:2634
msgid ""
"List of data to restore:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2725
+#: ../../standalone/drakbackup_.c:2801
msgid ""
"List of data corrupted:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2727
+#: ../../standalone/drakbackup_.c:2803
#, fuzzy
msgid "Please uncheck or remove it on next time."
msgstr "Hvađa rađtengi er mótaldiđ tengt viđ?"
-#: ../../standalone/drakbackup_.c:2737
+#: ../../standalone/drakbackup_.c:2813
msgid "Backup files are corrupted"
msgstr ""
-#: ../../standalone/drakbackup_.c:2758
+#: ../../standalone/drakbackup_.c:2834
msgid " All of your selected data have been "
msgstr ""
-#: ../../standalone/drakbackup_.c:2759
+#: ../../standalone/drakbackup_.c:2835
#, c-format
msgid " Successfuly Restored on %s "
msgstr ""
-#: ../../standalone/drakbackup_.c:2877
+#: ../../standalone/drakbackup_.c:2953
#, fuzzy
msgid " Restore Configuration "
msgstr "Netstillingar"
-#: ../../standalone/drakbackup_.c:2895
+#: ../../standalone/drakbackup_.c:2971
msgid "OK to restore the other files."
msgstr ""
-#: ../../standalone/drakbackup_.c:2912
+#: ../../standalone/drakbackup_.c:2988
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2975
+#: ../../standalone/drakbackup_.c:3066
msgid "Backup the system files before:"
msgstr ""
-#: ../../standalone/drakbackup_.c:2977
+#: ../../standalone/drakbackup_.c:3068
#, fuzzy
msgid "please choose the date to restore"
msgstr "Hvernig mús ertu međ?"
-#: ../../standalone/drakbackup_.c:3014
+#: ../../standalone/drakbackup_.c:3105
msgid "Use Hard Disk to backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:3017
+#: ../../standalone/drakbackup_.c:3108
#, fuzzy
msgid "Please enter the directory to save:"
msgstr "Hvernig mús ertu međ?"
-#: ../../standalone/drakbackup_.c:3060
+#: ../../standalone/drakbackup_.c:3151
#, fuzzy
msgid "FTP Connection"
msgstr "Veldu prenttengingu"
-#: ../../standalone/drakbackup_.c:3067
+#: ../../standalone/drakbackup_.c:3158
#, fuzzy
msgid "Secure Connection"
msgstr "Veldu prenttengingu"
-#: ../../standalone/drakbackup_.c:3093
+#: ../../standalone/drakbackup_.c:3184
#, fuzzy
msgid "Restore from Hard Disk."
msgstr "Endurheimta frá skrá"
-#: ../../standalone/drakbackup_.c:3095
+#: ../../standalone/drakbackup_.c:3186
msgid "Please enter the directory where backups are stored"
msgstr ""
-#: ../../standalone/drakbackup_.c:3157
+#: ../../standalone/drakbackup_.c:3254
msgid "Select another media to restore from"
msgstr ""
-#: ../../standalone/drakbackup_.c:3159
+#: ../../standalone/drakbackup_.c:3256
#, fuzzy
msgid "Other Media"
msgstr "Annađ"
-#: ../../standalone/drakbackup_.c:3164
+#: ../../standalone/drakbackup_.c:3261
#, fuzzy
msgid "Restore system"
msgstr "Setja kerfiđ inn"
-#: ../../standalone/drakbackup_.c:3165
+#: ../../standalone/drakbackup_.c:3262
#, fuzzy
msgid "Restore Users"
msgstr "Endurheimta frá skrá"
-#: ../../standalone/drakbackup_.c:3166
+#: ../../standalone/drakbackup_.c:3263
#, fuzzy
msgid "Restore Other"
msgstr "Endurheimta frá skrá"
-#: ../../standalone/drakbackup_.c:3168
+#: ../../standalone/drakbackup_.c:3265
msgid "select path to restore (instead of /)"
msgstr ""
-#: ../../standalone/drakbackup_.c:3172
+#: ../../standalone/drakbackup_.c:3269
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:3174
+#: ../../standalone/drakbackup_.c:3271
msgid "Remove user directories before restore."
msgstr ""
-#: ../../standalone/drakbackup_.c:3232
+#: ../../standalone/drakbackup_.c:3384
+msgid ""
+"Restore Selected\n"
+"Catalog Entry"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3394
+#, fuzzy
+msgid ""
+"Restore Selected\n"
+"Files"
+msgstr "Fjartengd prentröđ"
+
+#: ../../standalone/drakbackup_.c:3411
+#, fuzzy
+msgid ""
+"Change\n"
+"Restore Path"
+msgstr "Endurheimta frá skrá"
+
+#: ../../standalone/drakbackup_.c:3477
+#, c-format
+msgid "Backup files not found at %s."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3490
+#, c-format
+msgid ""
+"Insert the CD with volume label %s\n"
+" in the CD drive under mount point /mnt/cdrom"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3490
+#, fuzzy
+msgid "Restore From CD"
+msgstr "Endurheimta frá diskling"
+
+#: ../../standalone/drakbackup_.c:3492
+#, c-format
+msgid "Not the correct CD label. Disk is labelled %s."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3502
+#, c-format
+msgid ""
+"Insert the tape with volume label %s\n"
+" in the tape drive device %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3502
+#, fuzzy
+msgid "Restore From Tape"
+msgstr "Endurheimta frá diskling"
+
+#: ../../standalone/drakbackup_.c:3504
+#, c-format
+msgid "Not the correct tape label. Tape is labelled %s."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3524
+#, fuzzy
+msgid "Restore Via Network"
+msgstr "Endurheimta frá skrá"
+
+#: ../../standalone/drakbackup_.c:3524
+#, c-format
+msgid "Restore Via Network Protocol: %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3525
+#, fuzzy
+msgid "Host Name"
+msgstr "Vélarheiti:"
+
+#: ../../standalone/drakbackup_.c:3526
+msgid "Host Path or Module"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3533
+#, fuzzy
+msgid "Password required"
+msgstr "Lykilorđ"
+
+#: ../../standalone/drakbackup_.c:3539
+#, fuzzy
+msgid "Username required"
+msgstr "Notandanafn:"
+
+#: ../../standalone/drakbackup_.c:3542
+#, fuzzy
+msgid "Hostname required"
+msgstr "Vélarheiti:"
+
+#: ../../standalone/drakbackup_.c:3547
+msgid "Path or Module required"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3560
+msgid "Files Restored..."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3563
+#, fuzzy
+msgid "Restore Failed..."
+msgstr "Endurheimta frá skrá"
+
+#: ../../standalone/drakbackup_.c:3801
msgid "Restore all backups"
msgstr ""
-#: ../../standalone/drakbackup_.c:3241
+#: ../../standalone/drakbackup_.c:3810
#, fuzzy
msgid "Custom Restore"
msgstr "Sérlagađa"
-#: ../../standalone/drakbackup_.c:3287 ../../standalone/drakbackup_.c:3320
-#: ../../standalone/drakbackup_.c:3346 ../../standalone/drakbackup_.c:3373
-#: ../../standalone/drakbackup_.c:3400 ../../standalone/drakbackup_.c:3460
-#: ../../standalone/drakbackup_.c:3487 ../../standalone/drakbackup_.c:3513
+#: ../../standalone/drakbackup_.c:3856
+msgid "CD in place - continue."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3862
+msgid "Browse to new restore repository."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3865
+#, fuzzy
+msgid "Restore From Catalog"
+msgstr "Endurheimta frá diskling"
+
+#: ../../standalone/drakbackup_.c:3893
+#, fuzzy
+msgid "Restore Progress"
+msgstr "Endurheimta frá skrá"
+
+#: ../../standalone/drakbackup_.c:3935 ../../standalone/drakbackup_.c:3968
+#: ../../standalone/drakbackup_.c:3994 ../../standalone/drakbackup_.c:4021
+#: ../../standalone/drakbackup_.c:4048 ../../standalone/drakbackup_.c:4108
+#: ../../standalone/drakbackup_.c:4135 ../../standalone/drakbackup_.c:4165
+#: ../../standalone/drakbackup_.c:4191
msgid "Previous"
msgstr ""
-#: ../../standalone/drakbackup_.c:3291 ../../standalone/drakbackup_.c:3377
+#: ../../standalone/drakbackup_.c:3939 ../../standalone/drakbackup_.c:4025
#: ../../standalone/logdrake_.c:223
#, fuzzy
msgid "Save"
msgstr "netțjónn"
-#: ../../standalone/drakbackup_.c:3350
+#: ../../standalone/drakbackup_.c:3998
msgid "Build Backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:3404 ../../standalone/drakbackup_.c:3974
+#: ../../standalone/drakbackup_.c:4052 ../../standalone/drakbackup_.c:4632
#, fuzzy
msgid "Restore"
msgstr "Endurstækka"
-#: ../../standalone/drakbackup_.c:3553
-msgid ""
-"Please Build backup before to restore it...\n"
-" or verify that your path to save is correct."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3574
+#: ../../standalone/drakbackup_.c:4231
msgid ""
-"Error during sendmail\n"
-" your report mail was not sent\n"
+"Error during sendmail.\n"
+" Your report mail was not sent.\n"
" Please configure sendmail"
msgstr ""
-#: ../../standalone/drakbackup_.c:3598
+#: ../../standalone/drakbackup_.c:4255
#, fuzzy
msgid ""
"The following packages need to be installed:\n"
" @list_of_rpm_to_install"
msgstr "Eftirfarandi pakkar verđa fjarlægđir"
-#: ../../standalone/drakbackup_.c:3621
+#: ../../standalone/drakbackup_.c:4278
msgid ""
"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
-#: ../../standalone/drakbackup_.c:3644
+#: ../../standalone/drakbackup_.c:4301
msgid "Please select data to restore..."
msgstr ""
-#: ../../standalone/drakbackup_.c:3665
+#: ../../standalone/drakbackup_.c:4322
msgid "Please select media for backup..."
msgstr ""
-#: ../../standalone/drakbackup_.c:3687
+#: ../../standalone/drakbackup_.c:4344
msgid "Please select data to backup..."
msgstr ""
-#: ../../standalone/drakbackup_.c:3709
+#: ../../standalone/drakbackup_.c:4366
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
msgstr ""
-#: ../../standalone/drakbackup_.c:3730
+#: ../../standalone/drakbackup_.c:4387
msgid "Under Devel ... please wait."
msgstr ""
-#: ../../standalone/drakbackup_.c:3811
+#: ../../standalone/drakbackup_.c:4468
#, fuzzy
msgid "Backup system files"
msgstr "Skemmd afritsskrá"
-#: ../../standalone/drakbackup_.c:3813
+#: ../../standalone/drakbackup_.c:4470
#, fuzzy
msgid "Backup user files"
msgstr "Skemmd afritsskrá"
-#: ../../standalone/drakbackup_.c:3815
+#: ../../standalone/drakbackup_.c:4472
#, fuzzy
msgid "Backup other files"
msgstr "Skemmd afritsskrá"
-#: ../../standalone/drakbackup_.c:3817 ../../standalone/drakbackup_.c:3850
+#: ../../standalone/drakbackup_.c:4474 ../../standalone/drakbackup_.c:4507
msgid "Total Progress"
msgstr ""
-#: ../../standalone/drakbackup_.c:3841
+#: ../../standalone/drakbackup_.c:4498
msgid "files sending by FTP"
msgstr ""
-#: ../../standalone/drakbackup_.c:3845
+#: ../../standalone/drakbackup_.c:4502
#, fuzzy
msgid "Sending files..."
msgstr "Vista í skrá"
-#: ../../standalone/drakbackup_.c:3931
+#: ../../standalone/drakbackup_.c:4588
#, fuzzy
msgid "Backup Now from configuration file"
msgstr "Netstillingar"
-#: ../../standalone/drakbackup_.c:3936
+#: ../../standalone/drakbackup_.c:4593
#, fuzzy
msgid "View Backup Configuration."
msgstr "Netstillingar"
-#: ../../standalone/drakbackup_.c:3956
+#: ../../standalone/drakbackup_.c:4614
#, fuzzy
msgid "Wizard Configuration"
msgstr "Uppsetning"
-#: ../../standalone/drakbackup_.c:3961
+#: ../../standalone/drakbackup_.c:4619
#, fuzzy
msgid "Advanced Configuration"
msgstr "Uppsetning"
-#: ../../standalone/drakbackup_.c:3966
+#: ../../standalone/drakbackup_.c:4624
msgid "Backup Now"
msgstr ""
-#: ../../standalone/drakbackup_.c:3996
+#: ../../standalone/drakbackup_.c:4658
msgid "Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:4045
+#: ../../standalone/drakbackup_.c:4707
msgid ""
"options description:\n"
"\n"
@@ -9849,7 +10371,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4075
+#: ../../standalone/drakbackup_.c:4737
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -9858,7 +10380,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4083
+#: ../../standalone/drakbackup_.c:4745
msgid ""
"options description:\n"
"\n"
@@ -9899,45 +10421,45 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4122
+#: ../../standalone/drakbackup_.c:4784
msgid ""
"restore description:\n"
" \n"
-"Only the most recent date will be used ,because with incremental \n"
-"backups it is necesarry to restore one by one each older backups.\n"
+"Only the most recent date will be used, because with incremental \n"
+"backups it is necessary to restore one by one each older backup.\n"
"\n"
-"So if you don't like to restore a user please unselect all his\n"
-"check box.\n"
+"So if you don't want to restore a user please unselect all their\n"
+"check boxes.\n"
"\n"
-"Otherwise, you are able to select only one of this\n"
+"Otherwise, you are able to select only one of these.\n"
"\n"
" - Incremental Backups:\n"
"\n"
"\tThe incremental backup is the most powerful \n"
-"\toption to use backup, this option allow you \n"
-"\tto backup all your data the first time, and \n"
-"\tonly the changed after.\n"
-"\tSo you will be able during the restore\n"
+"\toption to use. This option allows you to \n"
+"\tbackup all of your data the first time, and \n"
+"\tonly the changed data after.\n"
+"\tSo you will be able, during the restore\n"
"\tstep, to restore your data from a specified\n"
"\tdate.\n"
-"\tIf you have not selected this options all\n"
+"\tIf you have not selected this option all\n"
"\told backups are deleted before each backup. \n"
"\n"
"\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4148 ../../standalone/drakbackup_.c:4225
+#: ../../standalone/drakbackup_.c:4810 ../../standalone/drakbackup_.c:4887
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
-#: ../../standalone/drakbackup_.c:4150 ../../standalone/drakbackup_.c:4227
+#: ../../standalone/drakbackup_.c:4812 ../../standalone/drakbackup_.c:4889
msgid ""
" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
-#: ../../standalone/drakbackup_.c:4152 ../../standalone/drakbackup_.c:4229
+#: ../../standalone/drakbackup_.c:4814 ../../standalone/drakbackup_.c:4891
msgid ""
" This program is free software; you can redistribute it and/or modify\n"
" it under the terms of the GNU General Public License as published by\n"
@@ -9954,7 +10476,7 @@ msgid ""
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
msgstr ""
-#: ../../standalone/drakbackup_.c:4166
+#: ../../standalone/drakbackup_.c:4828
msgid ""
"Description:\n"
"\n"
@@ -9994,7 +10516,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4204
+#: ../../standalone/drakbackup_.c:4866
msgid ""
"options description:\n"
"\n"
@@ -10005,7 +10527,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4213
+#: ../../standalone/drakbackup_.c:4875
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -10018,7 +10540,7 @@ msgid ""
"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4243
+#: ../../standalone/drakbackup_.c:4905
msgid ""
"Description:\n"
"\n"
@@ -10099,9 +10621,9 @@ msgstr ""
msgid "Synchronization tool"
msgstr ""
-#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:85
-#: ../../standalone/drakbug_.c:150 ../../standalone/drakbug_.c:152
-#: ../../standalone/drakbug_.c:156
+#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:86
+#: ../../standalone/drakbug_.c:151 ../../standalone/drakbug_.c:153
+#: ../../standalone/drakbug_.c:157
#, fuzzy
msgid "Standalone Tools"
msgstr "Sel stillingar"
@@ -10154,26 +10676,26 @@ msgstr "Prentari"
msgid "Configuration Wizards"
msgstr "Netstillingar"
-#: ../../standalone/drakbug_.c:96
+#: ../../standalone/drakbug_.c:97
#, fuzzy
msgid "Application:"
msgstr "Auđkenning"
-#: ../../standalone/drakbug_.c:97
+#: ../../standalone/drakbug_.c:98
#, fuzzy
msgid "Package: "
msgstr "Pakka"
-#: ../../standalone/drakbug_.c:98
+#: ../../standalone/drakbug_.c:99
msgid "Kernel:"
msgstr ""
-#: ../../standalone/drakbug_.c:99
+#: ../../standalone/drakbug_.c:100
#, fuzzy
msgid "Release: "
msgstr "Augnablik..."
-#: ../../standalone/drakbug_.c:114
+#: ../../standalone/drakbug_.c:115
msgid ""
"\n"
"\n"
@@ -10185,22 +10707,22 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbug_.c:135
+#: ../../standalone/drakbug_.c:136
#, fuzzy
msgid "Report"
msgstr "Lélegt"
-#: ../../standalone/drakbug_.c:165
+#: ../../standalone/drakbug_.c:166
#, fuzzy
msgid "Not installed"
msgstr "Hætta innsetningu"
-#: ../../standalone/drakbug_.c:182
+#: ../../standalone/drakbug_.c:183
#, fuzzy
msgid "connecting to Bugzilla wizard ..."
msgstr "Uppsetning"
-#: ../../standalone/drakbug_.c:189
+#: ../../standalone/drakbug_.c:190
msgid "No browser available! Please install one"
msgstr ""
@@ -10670,7 +11192,7 @@ msgstr "Tengipunktur"
#: ../../standalone/drakfont_.c:909
#, fuzzy
-msgid "Choose the applications that will support the fonts :"
+msgid "Choose the applications that will support the fonts:"
msgstr "Veldu țær disksneiđar sem á ađ forsníđa"
#: ../../standalone/drakfont_.c:918
@@ -10748,20 +11270,20 @@ msgstr ""
msgid "Post Uninstall"
msgstr "Hætta innsetningu"
-#: ../../standalone/drakgw_.c:42 ../../standalone/drakgw_.c:195
+#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:188
#, fuzzy
msgid "Internet Connection Sharing"
msgstr "Veldu prenttengingu"
-#: ../../standalone/drakgw_.c:121
+#: ../../standalone/drakgw_.c:119
msgid "Sorry, we support only 2.4 kernels."
msgstr ""
-#: ../../standalone/drakgw_.c:133
+#: ../../standalone/drakgw_.c:130
msgid "Internet Connection Sharing currently enabled"
msgstr ""
-#: ../../standalone/drakgw_.c:134
+#: ../../standalone/drakgw_.c:131
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -10769,35 +11291,35 @@ msgid ""
"What would you like to do?"
msgstr ""
-#: ../../standalone/drakgw_.c:138
+#: ../../standalone/drakgw_.c:135
#, fuzzy
msgid "disable"
msgstr "Tafla"
-#: ../../standalone/drakgw_.c:138 ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:135 ../../standalone/drakgw_.c:160
msgid "dismiss"
msgstr ""
-#: ../../standalone/drakgw_.c:138 ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:135 ../../standalone/drakgw_.c:160
#, fuzzy
msgid "reconfigure"
msgstr "Stilla X"
-#: ../../standalone/drakgw_.c:141
+#: ../../standalone/drakgw_.c:138
#, fuzzy
msgid "Disabling servers..."
msgstr "Leita ađ tækjum..."
-#: ../../standalone/drakgw_.c:149
+#: ../../standalone/drakgw_.c:146
#, fuzzy
msgid "Internet connection sharing is now disabled."
msgstr "Veldu prenttengingu"
-#: ../../standalone/drakgw_.c:158
+#: ../../standalone/drakgw_.c:155
msgid "Internet Connection Sharing currently disabled"
msgstr ""
-#: ../../standalone/drakgw_.c:159
+#: ../../standalone/drakgw_.c:156
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
@@ -10805,21 +11327,21 @@ msgid ""
"What would you like to do?"
msgstr ""
-#: ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:160
#, fuzzy
msgid "enable"
msgstr "Tafla"
-#: ../../standalone/drakgw_.c:170
+#: ../../standalone/drakgw_.c:167
msgid "Enabling servers..."
msgstr ""
-#: ../../standalone/drakgw_.c:175
+#: ../../standalone/drakgw_.c:172
#, fuzzy
msgid "Internet connection sharing is now enabled."
msgstr "Veldu prenttengingu"
-#: ../../standalone/drakgw_.c:196
+#: ../../standalone/drakgw_.c:189
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
"With that feature, other computers on your local network will be able to use "
@@ -10829,31 +11351,31 @@ msgid ""
"(LAN)."
msgstr ""
-#: ../../standalone/drakgw_.c:222
+#: ../../standalone/drakgw_.c:215
#, c-format
msgid "Interface %s (using module %s)"
msgstr ""
-#: ../../standalone/drakgw_.c:223
+#: ../../standalone/drakgw_.c:216
#, fuzzy, c-format
msgid "Interface %s"
msgstr "Endursníđ..."
-#: ../../standalone/drakgw_.c:231
+#: ../../standalone/drakgw_.c:224
msgid "No network adapter on your system!"
msgstr ""
-#: ../../standalone/drakgw_.c:232
+#: ../../standalone/drakgw_.c:225
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
msgstr ""
-#: ../../standalone/drakgw_.c:238
+#: ../../standalone/drakgw_.c:231
msgid "Network interface"
msgstr ""
-#: ../../standalone/drakgw_.c:239
+#: ../../standalone/drakgw_.c:232
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -10863,18 +11385,18 @@ msgid ""
"I am about to setup your Local Area Network with that adapter."
msgstr ""
-#: ../../standalone/drakgw_.c:248
+#: ../../standalone/drakgw_.c:241
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
msgstr ""
-#: ../../standalone/drakgw_.c:266
+#: ../../standalone/drakgw_.c:259
#, fuzzy
msgid "Network interface already configured"
msgstr "Skjár ekki skilgreindur"
-#: ../../standalone/drakgw_.c:267
+#: ../../standalone/drakgw_.c:260
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -10884,17 +11406,17 @@ msgid ""
"You can do it manually but you need to know what you're doing."
msgstr ""
-#: ../../standalone/drakgw_.c:272
+#: ../../standalone/drakgw_.c:265
#, fuzzy
msgid "Automatic reconfiguration"
msgstr "Lokauppsetning"
-#: ../../standalone/drakgw_.c:273
+#: ../../standalone/drakgw_.c:266
#, fuzzy
msgid "Show current interface configuration"
msgstr "Sel stillingar"
-#: ../../standalone/drakgw_.c:275
+#: ../../standalone/drakgw_.c:268
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -10905,7 +11427,7 @@ msgid ""
"Driver: %s"
msgstr ""
-#: ../../standalone/drakgw_.c:287
+#: ../../standalone/drakgw_.c:280
msgid ""
"I can keep your current configuration and assume you already set up a DHCP "
"server; in that case please verify I correctly read the C-Class Network that "
@@ -10917,79 +11439,68 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakgw_.c:292
+#: ../../standalone/drakgw_.c:285
msgid "C-Class Local Network"
msgstr ""
-#: ../../standalone/drakgw_.c:293
+#: ../../standalone/drakgw_.c:286
#, fuzzy
msgid "(This) DHCP Server IP"
msgstr "Vistfang SMB țjóns"
-#: ../../standalone/drakgw_.c:294
+#: ../../standalone/drakgw_.c:287
msgid "Re-configure interface and DHCP server"
msgstr ""
-#: ../../standalone/drakgw_.c:301
+#: ../../standalone/drakgw_.c:294
msgid "The Local Network did not finish with `.0', bailing out."
msgstr ""
-#: ../../standalone/drakgw_.c:312
+#: ../../standalone/drakgw_.c:305
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr ""
-#: ../../standalone/drakgw_.c:320
-#, fuzzy
-msgid "Firewalling configuration detected!"
-msgstr "Les uppsetningarskrá"
-
-#: ../../standalone/drakgw_.c:321
-msgid ""
-"Warning! An existing firewalling configuration has been detected. You may "
-"need some manual fix after installation."
-msgstr ""
-
-#: ../../standalone/drakgw_.c:328
+#: ../../standalone/drakgw_.c:315
#, fuzzy
msgid "Configuring..."
msgstr "Uppsetning"
-#: ../../standalone/drakgw_.c:329
+#: ../../standalone/drakgw_.c:316
msgid "Configuring scripts, installing software, starting servers..."
msgstr ""
-#: ../../standalone/drakgw_.c:365
+#: ../../standalone/drakgw_.c:352
#, fuzzy, c-format
msgid "Problems installing package %s"
msgstr "Set inn pakka %s"
-#: ../../standalone/drakgw_.c:549
+#: ../../standalone/drakgw_.c:485
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
"Area Network, using automatic network configuration (DHCP)."
msgstr ""
-#: ../../standalone/drakgw_.c:566
+#: ../../standalone/drakgw_.c:504
msgid "The setup has already been done, but it's currently disabled."
msgstr ""
-#: ../../standalone/drakgw_.c:567
+#: ../../standalone/drakgw_.c:505
msgid "The setup has already been done, and it's currently enabled."
msgstr ""
-#: ../../standalone/drakgw_.c:568
+#: ../../standalone/drakgw_.c:506
#, fuzzy
msgid "No Internet Connection Sharing has ever been configured."
msgstr "Veldu prenttengingu"
-#: ../../standalone/drakgw_.c:573
+#: ../../standalone/drakgw_.c:511
#, fuzzy
msgid "Internet connection sharing configuration"
msgstr "Veldu prenttengingu"
-#: ../../standalone/drakgw_.c:580
+#: ../../standalone/drakgw_.c:518
#, fuzzy, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -10999,6 +11510,157 @@ msgid ""
"Click on Configure to launch the setup wizard."
msgstr "Veldu prenttengingu"
+#: ../../standalone/draksound_.c:46
+#, fuzzy
+msgid "No Sound Card detected!"
+msgstr "Veldu prenttengingu"
+
+#: ../../standalone/draksound_.c:47
+msgid ""
+"No Sound Card has been detected on your machine. Please verify that a Linux-"
+"supported Sound Card is correctly plugged in.\n"
+"\n"
+"\n"
+"You can visit our hardware database at:\n"
+"\n"
+"\n"
+"http://www.linux-mandrake.com/en/hardware.php3"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:32
+msgid "package ImageMagick is required for correct working"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:76
+#, fuzzy
+msgid "first step creation"
+msgstr "Lokauppsetning"
+
+#: ../../standalone/draksplash_.c:77
+#, fuzzy
+msgid "final resolution"
+msgstr "Upplausn"
+
+#: ../../standalone/draksplash_.c:78 ../../standalone/draksplash_.c:170
+#, fuzzy
+msgid "choose image file"
+msgstr "Veldu ađgerđ"
+
+#: ../../standalone/draksplash_.c:79
+#, fuzzy
+msgid "Theme name"
+msgstr "Samnętingarheiti"
+
+#: ../../standalone/draksplash_.c:81
+msgid "make bootsplash step 2"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:82
+#, fuzzy
+msgid "go to lilosplash configuration"
+msgstr "Lokauppsetning"
+
+#: ../../standalone/draksplash_.c:83
+#, fuzzy
+msgid "quit"
+msgstr "Hætta"
+
+#: ../../standalone/draksplash_.c:84
+#, fuzzy
+msgid "save theme"
+msgstr "Setja kerfiđ inn"
+
+#: ../../standalone/draksplash_.c:85
+msgid "browse"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:98 ../../standalone/draksplash_.c:159
+#, fuzzy
+msgid "Configure bootsplash picture"
+msgstr "Setja upp prentara"
+
+#: ../../standalone/draksplash_.c:99
+msgid "x coordinate of text box in number of character"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:100
+msgid "y coordinate of text box in number of character"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:101
+msgid "text width"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:102
+msgid "text box height"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:103
+msgid "the progress bar x coordinate of its upper left corner"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:104
+msgid "the progress bar y coordinate of its upper left corner"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:105
+msgid "the width of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:106
+msgid "the heigth of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:107
+msgid "the color of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:119
+msgid "go back"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:120
+#, fuzzy
+msgid "preview"
+msgstr "tæki"
+
+#: ../../standalone/draksplash_.c:121
+#, fuzzy
+msgid "choose color"
+msgstr "Veldu skjá"
+
+#: ../../standalone/draksplash_.c:124
+msgid "Display logo on Console"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:125
+msgid "Make kernel message quiet by default"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:161 ../../standalone/draksplash_.c:330
+#, c-format
+msgid "This theme haven't yet any bootsplash in %s !"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:213
+msgid "saving Bootsplash theme..."
+msgstr ""
+
+#: ../../standalone/draksplash_.c:436
+#, fuzzy
+msgid "ProgressBar color selection"
+msgstr "Veldu prenttengingu"
+
+#: ../../standalone/draksplash_.c:454
+#, fuzzy
+msgid "You must choose an image file first!"
+msgstr "Prenttæki:"
+
+#: ../../standalone/draksplash_.c:463
+#, fuzzy
+msgid "Generating preview ..."
+msgstr "Leita ađ tækjum..."
+
#: ../../standalone/drakxtv_.c:49
msgid ""
"XawTV isn't installed!\n"
@@ -11089,11 +11751,11 @@ msgid ""
msgstr ""
#: ../../standalone/drakxtv_.c:109
-msgid "TV norm :"
+msgid "TV norm:"
msgstr ""
#: ../../standalone/drakxtv_.c:110
-msgid "Area :"
+msgid "Area:"
msgstr ""
#: ../../standalone/drakxtv_.c:114
@@ -11169,7 +11831,7 @@ msgstr ""
msgid "The change is done, but to be effective you must logout"
msgstr ""
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:517
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:515
msgid "logdrake"
msgstr ""
@@ -11354,7 +12016,7 @@ msgstr "Endursníđ..."
#: ../../standalone/logdrake_.c:431
msgid ""
-"You will receive an alert if one of the selected service is no more running"
+"You will receive an alert if one of the selected services is no more running"
msgstr ""
#: ../../standalone/logdrake_.c:443
@@ -11376,21 +12038,21 @@ msgstr "Uppsetning"
msgid "Please enter your email address below "
msgstr "Hvernig mús ertu međ?"
-#: ../../standalone/logdrake_.c:499
+#: ../../standalone/logdrake_.c:497
#, fuzzy
msgid "Save as.."
msgstr "netțjónn"
-#: ../../standalone/mousedrake_.c:43
+#: ../../standalone/mousedrake_.c:45
#, fuzzy
msgid "Please, choose the type of your mouse."
msgstr "Hvernig mús ertu međ?"
-#: ../../standalone/mousedrake_.c:57
+#: ../../standalone/mousedrake_.c:58
msgid "Emulate third button?"
msgstr "Herma eftir țriđja hnapp?"
-#: ../../standalone/printerdrake_.c:48
+#: ../../standalone/printerdrake_.c:57
#, fuzzy
msgid "Reading printer data ..."
msgstr "Viđföng fyrir fjartengda lpd prentara"
@@ -11404,34 +12066,45 @@ msgstr "Leita ađ tækjum..."
msgid "Test ports"
msgstr "Prófa tengi"
-#: ../../standalone/scannerdrake_.c:52
+#: ../../standalone/scannerdrake_.c:53 ../../standalone/scannerdrake_.c:68
+#: ../../standalone/scannerdrake_.c:81
#, c-format
-msgid "%s found on %s, configure it ?"
+msgid "The %s is not supported by this version of Mandrake Linux."
msgstr ""
+#: ../../standalone/scannerdrake_.c:56
+#, fuzzy, c-format
+msgid "%s found on %s, configure it?"
+msgstr "Viltu setja upp prentara?"
+
#: ../../standalone/scannerdrake_.c:59
+#, c-format
+msgid "%s is not in the scanner database, configure it manually?"
+msgstr ""
+
+#: ../../standalone/scannerdrake_.c:65
#, fuzzy
msgid "Select a scanner"
msgstr "Veldu skjákort"
-#: ../../standalone/scannerdrake_.c:79
+#: ../../standalone/scannerdrake_.c:93
#, c-format
msgid "This %s scanner is unsupported"
msgstr ""
-#: ../../standalone/scannerdrake_.c:93
+#: ../../standalone/scannerdrake_.c:107
#, c-format
msgid ""
"Scannerdrake was not able to detect your %s scanner.\n"
"Please select the device where your scanner is plugged"
msgstr ""
-#: ../../standalone/scannerdrake_.c:95
+#: ../../standalone/scannerdrake_.c:109
#, fuzzy
msgid "choose device"
msgstr "Ræsitæki"
-#: ../../standalone/scannerdrake_.c:101
+#: ../../standalone/scannerdrake_.c:115
#, c-format
msgid ""
"This %s scanner must be configured by printerdrake.\n"
@@ -11439,7 +12112,7 @@ msgid ""
"section."
msgstr ""
-#: ../../standalone/scannerdrake_.c:106
+#: ../../standalone/scannerdrake_.c:120
#, c-format
msgid ""
"Your %s scanner has been configured.\n"
@@ -11447,43 +12120,18 @@ msgid ""
"applications menu."
msgstr ""
-#: ../../standalone/service_harddrake_.c:57
+#: ../../standalone/service_harddrake_.c:39
#, c-format
msgid "Some devices in the \"%s\" hardware class were removed:\n"
msgstr ""
-#: ../../standalone/service_harddrake_.c:61
+#: ../../standalone/service_harddrake_.c:43
#, c-format
msgid ""
"\n"
"Some devices in the %s class were added:\n"
msgstr ""
-#: ../../standalone/tinyfirewall_.c:30
-#, fuzzy
-msgid "Firewalling Configuration"
-msgstr "Les uppsetningarskrá"
-
-#: ../../standalone/tinyfirewall_.c:43
-#, fuzzy
-msgid "Firewalling configuration"
-msgstr "Les uppsetningarskrá"
-
-#: ../../standalone/tinyfirewall_.c:78
-msgid ""
-"Firewalling\n"
-"\n"
-"You already have set up a firewall.\n"
-"Click on Configure to change or remove the firewall"
-msgstr ""
-
-#: ../../standalone/tinyfirewall_.c:82
-msgid ""
-"Firewalling\n"
-"\n"
-"Click on Configure to set up a standard firewall"
-msgstr ""
-
#: ../../steps.pm_.c:14
msgid "Choose your language"
msgstr "Veldu tungumál"
@@ -11559,169 +12207,7 @@ msgstr "Setja kerfiđ inn"
msgid "Exit install"
msgstr "Hætta innsetningu"
-#: ../../tinyfirewall.pm_.c:9
-msgid ""
-"tinyfirewall configurator\n"
-"\n"
-"This configures a personal firewall for this Mandrake Linux machine.\n"
-"For a powerful dedicated firewall solution, please look to the\n"
-"specialized MandrakeSecurity Firewall distribution."
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:14
-msgid ""
-"We'll now ask you questions about which services you'd like to allow\n"
-"the Internet to connect to. Please think carefully about these\n"
-"questions, as your computer's security is important.\n"
-"\n"
-"Please, if you're not currently using one of these services, firewall\n"
-"it off. You can change this configuration anytime you like by\n"
-"re-running this application!"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:21
-msgid ""
-"Are you running a web server on this machine that you need the whole\n"
-"Internet to see? If you are running a webserver that only needs to be\n"
-"accessed by this machine, you can safely answer NO here.\n"
-"\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:26
-msgid ""
-"Are you running a name server on this machine? If you didn't set one\n"
-"up to give away IP and zone information to the whole Internet, please\n"
-"answer no.\n"
-"\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:31
-msgid ""
-"Do you want to allow incoming Secure Shell (ssh) connections? This\n"
-"is a telnet-replacement that you might use to login. If you're using\n"
-"telnet now, you should definitely switch to ssh. telnet is not\n"
-"encrypted -- so some attackers can steal your password if you use\n"
-"it. ssh is encrypted and doesn't allow for this eavesdropping."
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:36
-msgid ""
-"Do you want to allow incoming telnet connections?\n"
-"This is horribly unsafe, as we explained in the previous screen. We\n"
-"strongly recommend answering No here and using ssh in place of\n"
-"telnet.\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:41
-msgid ""
-"Are you running an FTP server here that you need accessible to the\n"
-"Internet? If you are, we strongly recommend that you only use it for\n"
-"Anonymous transfers. Any passwords sent by FTP can be stolen by some\n"
-"attackers, since FTP also uses no encryption for transferring passwords.\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:46
-msgid ""
-"Are you running a mail server here? If you're sending you \n"
-"messages through pine, mutt or any other text-based mail client,\n"
-"you probably are. Otherwise, you should firewall this off.\n"
-"\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:51
-msgid ""
-"Are you running a POP or IMAP server here? This would\n"
-"be used to host non-web-based mail accounts for people via \n"
-"this machine.\n"
-"\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:56
-msgid ""
-"You appear to be running a 2.2 kernel. If your network IP\n"
-"is automatically set by a computer in your home or office \n"
-"(dynamically assigned), we need to allow for this. Is\n"
-"this the case?\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:61
-msgid ""
-"Is your computer getting time syncronized to another computer?\n"
-"Mostly, this is used by medium-large Unix/Linux organizations\n"
-"to synchronize time for logging and such. If you're not part\n"
-"of a larger office and haven't heard of this, you probably \n"
-"aren't."
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:66
-msgid ""
-"Configuration complete. May we write these changes to disk?\n"
-"\n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:82
-#, c-format
-msgid "Can't open %s: %s\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:84
-#, fuzzy, c-format
-msgid "Can't open %s for writing: %s\n"
-msgstr "Villa viđ ađ opna %s til skriftar: %s"
-
-#: ../../tinyfirewall.pm_.c:178
-msgid "No I don't need DHCP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:178
-msgid "Yes I need DHCP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:179
-msgid "No I don't need NTP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:179
-msgid "Yes I need NTP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:180 ../../tinyfirewall.pm_.c:184
-msgid "Don't Save"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:180 ../../tinyfirewall.pm_.c:184
-#: ../../tinyfirewall.pm_.c:204
-msgid "Save & Quit"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:195 ../../tinyfirewall.pm_.c:199
-#, fuzzy
-msgid "Firewall Configuration Wizard"
-msgstr "Netstillingar"
-
-#: ../../tinyfirewall.pm_.c:197
-msgid "No (firewall this off from the internet)"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:198
-msgid "Yes (allow this through the firewall)"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:230
-#, fuzzy
-msgid "Please Wait... Verifying installed packages"
-msgstr "Undirbę innsetningu"
-
-#: ../../tinyfirewall.pm_.c:236
-#, c-format
-msgid ""
-"Failure installing the needed packages : %s and Bastille.\n"
-" Try to install them manually."
-msgstr ""
-
-#: ../../ugtk.pm_.c:619
+#: ../../ugtk.pm_.c:594
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr ""
@@ -11861,6 +12347,11 @@ msgid "Graphical Environment"
msgstr ""
#: ../../share/compssUsers:999
+#, fuzzy
+msgid "Development"
+msgstr "Forritun"
+
+#: ../../share/compssUsers:999
msgid "Apache, Pro-ftpd"
msgstr ""
@@ -11975,79 +12466,22 @@ msgstr "Margmiđlun"
msgid "Scientific Workstation"
msgstr "Upplęsingar"
-#~ msgid "$mode: $warning"
-#~ msgstr "$mode: $warning"
+#~ msgid "You don't have any partitions!"
+#~ msgstr "Țú hefur ekki neinar disksneiđar"
-#, fuzzy
#~ msgid ""
-#~ "With this security level, the use of this system as a server becomes "
-#~ "possible.\n"
-#~ " The security is now high enough to use the system as a "
-#~ "server which can accept\n"
-#~ " connections from many clients. Note: if your machine is "
-#~ "only a client on the Internet, you should choose a lower level."
+#~ "DiskDrake failed to read correctly the partition table.\n"
+#~ "Continue at your own risk!"
#~ msgstr ""
-#~ "Á țessu öryggisstigi er orđiđ mögulegt ađ nota tölvuna sem țjón.\n"
-#~ "Öryggiđ er nógu nógu mikiđ til ađ taka viđ fyrirspurnum frá\n"
-#~ "mörgum biđlum. "
+#~ "DiskDrake gat ekki lesiđ sneiđatöfluna.\n"
+#~ "Haltu áfram á eigin ábyrgđ!"
-#, fuzzy
-#~ msgid "Basic Options"
-#~ msgstr "Upplęsingar"
-
-#, fuzzy
-#~ msgid "Security Checks"
-#~ msgstr "Stilli öryggisțrep"
-
-#, fuzzy
-#~ msgid "Please choose your CD space"
-#~ msgstr "Hvađa lyklaborđsuppsetningu viltu?"
-
-#, fuzzy
-#~ msgid "Please enter the cd writer speed"
-#~ msgstr "Hvernig mús ertu međ?"
-
-#, fuzzy
-#~ msgid "Please check if you want to include install boot on your CD."
-#~ msgstr "Veldu pakkana sem țú vilt setja inn"
-
-#, fuzzy
-#~ msgid "Url should begin with 'ftp:'"
-#~ msgstr "Sel á ađ vera ftp://..."
-
-#, fuzzy
#~ msgid ""
-#~ "Please check if you want to include\n"
-#~ " install boot on your CD."
-#~ msgstr "Veldu pakkana sem țú vilt setja inn"
-
-#, fuzzy
-#~ msgid "Tamil"
-#~ msgstr "Tafla"
-
-#, fuzzy
-#~ msgid "PDC Server Name"
-#~ msgstr "NIS țjónn"
-
-#, fuzzy
-#~ msgid "Set up printer manually"
-#~ msgstr "Viđföng fyrir fjartengda lpd prentara"
-
-#, fuzzy
-#~ msgid "Installing HPOJ package..."
-#~ msgstr "Set inn pakka %s"
-
-#, fuzzy
-#~ msgid "Installing SANE packages..."
-#~ msgstr "Set inn pakka %s"
-
-#, fuzzy
-#~ msgid "Installing mtools packages..."
-#~ msgstr "Set inn pakka %s"
-
-#, fuzzy
-#~ msgid "Control Center"
-#~ msgstr "Nafn tengingar"
+#~ "I can't read your partition table, it's too corrupted for me :(\n"
+#~ "I'll try to go on blanking bad partitions"
+#~ msgstr ""
+#~ "Ég get ekki lesiđ disksneiđatöflu țína, hún er of skemmd fyrir mig :-(\n"
+#~ "Ég mun reyna ađ halda áfram međ țví ađ hreinsa skemmdar disksneiđar"
#~ msgid "Choose the tool you want to use"
#~ msgstr "Veldu forritiđ sem țú vilt nota"
@@ -12302,9 +12736,6 @@ msgstr "Upplęsingar"
#~ msgid "Write /etc/fstab"
#~ msgstr "Skrifa /etc/fstab"
-#~ msgid "Restore from floppy"
-#~ msgstr "Endurheimta frá diskling"
-
#~ msgid "Format all"
#~ msgstr "Forsníđ"
diff --git a/perl-install/share/po/it.po b/perl-install/share/po/it.po
index 5a1689427..cc114c38d 100644
--- a/perl-install/share/po/it.po
+++ b/perl-install/share/po/it.po
@@ -3,18 +3,18 @@
# Paolo Lorenzin <pasusu@tin.it>, 2000.
# Roberto Rosselli Del Turco <rosselli@ling.unipi.it>, 2001.
# Simone Riccio <s.riccio@aeb-informatica.it>, 2002
-#
+# Roberto Rosselli Del Turco <rosselli@ling.unipi.it>, 2002
+#
msgid ""
msgstr ""
-"Project-Id-Version: drakfloppy 0.30\n"
-"POT-Creation-Date: 2002-08-21 15:44+0200\n"
-"PO-Revision-Date: 2002-01-22 12:27GMT\n"
-"Last-Translator: Simone Riccio <s.riccio@aeb-informatica.it>\n"
-"Language-Team: Italian <IT@li.org>\n"
+"Project-Id-Version: DrakX\n"
+"POT-Creation-Date: 2002-09-02 20:14+0200\n"
+"PO-Revision-Date: 2002-08-28 11:34+0200\n"
+"Last-Translator: Roberto Rosselli Del Turco <rosselli@ling.unipi.it>\n"
+"Language-Team: Italian <it@li.org>\n"
"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=ISO-8859-1\n"
+"Content-Type: text/plain; charset=iso-8859-1\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: KBabel 0.9.5\n"
#: ../../Xconfig/card.pm_.c:16
msgid "256 kB"
@@ -52,19 +52,19 @@ msgstr "32 Mb"
msgid "64 MB or more"
msgstr "64 Mb o più"
-#: ../../Xconfig/card.pm_.c:201
+#: ../../Xconfig/card.pm_.c:203
msgid "Choose a X server"
msgstr "Scegli un server X"
-#: ../../Xconfig/card.pm_.c:201
+#: ../../Xconfig/card.pm_.c:203
msgid "X server"
msgstr "Server X"
-#: ../../Xconfig/card.pm_.c:228
+#: ../../Xconfig/card.pm_.c:230
msgid "Multi-head configuration"
msgstr "Configurazione multi-testine"
-#: ../../Xconfig/card.pm_.c:229
+#: ../../Xconfig/card.pm_.c:231
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
@@ -72,27 +72,27 @@ msgstr ""
"Il tuo sistema supporta la configurazione di più testine.\n"
"Cosa vuoi fare?"
-#: ../../Xconfig/card.pm_.c:284
+#: ../../Xconfig/card.pm_.c:286
msgid "Select the memory size of your graphics card"
msgstr "Scegli la quantità di memoria della tua scheda grafica"
-#: ../../Xconfig/card.pm_.c:345
+#: ../../Xconfig/card.pm_.c:347
msgid "XFree configuration"
msgstr "Configurazione di XFree"
-#: ../../Xconfig/card.pm_.c:347
+#: ../../Xconfig/card.pm_.c:349
msgid "Which configuration of XFree do you want to have?"
msgstr "Che configurazione di XFree vuoi avere?"
-#: ../../Xconfig/card.pm_.c:379
+#: ../../Xconfig/card.pm_.c:381
msgid "Configure all heads independently"
msgstr "Configura tutte le testine indipendentemente"
-#: ../../Xconfig/card.pm_.c:380
+#: ../../Xconfig/card.pm_.c:382
msgid "Use Xinerama extension"
msgstr "Usa l'estensione Xinerama"
-#: ../../Xconfig/card.pm_.c:384
+#: ../../Xconfig/card.pm_.c:386
#, fuzzy, c-format
msgid "Configure only card \"%s\"%s"
msgstr "Configura solo la scheda \"%s\" (%s)"
@@ -103,13 +103,13 @@ msgstr "Configura solo la scheda \"%s\" (%s)"
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:435
+#: ../../Xconfig/card.pm_.c:410 ../../Xconfig/card.pm_.c:436
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s with 3D hardware acceleration"
msgstr "XFree %s con accelerazione 3D hardware"
-#: ../../Xconfig/card.pm_.c:412
+#: ../../Xconfig/card.pm_.c:413
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -119,19 +119,19 @@ msgstr ""
"La tua scheda è supportata da XFree %s che potrebbe avere un miglior "
"supporto in 2D."
-#: ../../Xconfig/card.pm_.c:414 ../../Xconfig/card.pm_.c:437
+#: ../../Xconfig/card.pm_.c:415 ../../Xconfig/card.pm_.c:438
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr ""
"La tua scheda può avere il supporto per l'accelerazione 3D hardware con "
"XFree %s."
-#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:443
+#: ../../Xconfig/card.pm_.c:423 ../../Xconfig/card.pm_.c:444
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s con accelerazione 3D hardware SPERIMENTALE"
-#: ../../Xconfig/card.pm_.c:425
+#: ../../Xconfig/card.pm_.c:426
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -143,7 +143,7 @@ msgstr ""
"La tua scheda è supportata da XFree %s che potrebbe avere un miglior "
"supporto in 2D."
-#: ../../Xconfig/card.pm_.c:428 ../../Xconfig/card.pm_.c:445
+#: ../../Xconfig/card.pm_.c:429 ../../Xconfig/card.pm_.c:446
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
@@ -152,53 +152,54 @@ msgstr ""
"La tua scheda può avere l'accelerazione 3D hardware con XFree %s,\n"
"NOTA CHE È UN SUPPORTO SPERIMENTALE E POTREBBE BLOCCARE IL TUO COMPUTER."
-#: ../../Xconfig/card.pm_.c:451
+#: ../../Xconfig/card.pm_.c:452
msgid "Xpmac (installation display driver)"
msgstr "Xpmac (installazione driver video)"
-#: ../../Xconfig/main.pm_.c:78 ../../Xconfig/main.pm_.c:79
-#: ../../Xconfig/monitor.pm_.c:94 ../../any.pm_.c:974
+#: ../../Xconfig/main.pm_.c:76 ../../Xconfig/main.pm_.c:77
+#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:977
msgid "Custom"
msgstr "Condivisione personalizzata"
-#: ../../Xconfig/main.pm_.c:104
+#: ../../Xconfig/main.pm_.c:102
#, fuzzy
msgid "Graphic Card"
msgstr "Scheda grafica"
-#: ../../Xconfig/main.pm_.c:107 ../../Xconfig/monitor.pm_.c:91
+#: ../../Xconfig/main.pm_.c:105 ../../Xconfig/monitor.pm_.c:93
msgid "Monitor"
msgstr "Monitor"
-#: ../../Xconfig/main.pm_.c:110 ../../Xconfig/resolution_and_depth.pm_.c:209
+#: ../../Xconfig/main.pm_.c:108 ../../Xconfig/resolution_and_depth.pm_.c:209
msgid "Resolution"
msgstr "Risoluzione"
-#: ../../Xconfig/main.pm_.c:114
+#: ../../Xconfig/main.pm_.c:113
msgid "Test"
msgstr ""
-#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:59
-#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/removable.pm_.c:25
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:63
+#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/removable.pm_.c:25
#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "Opzioni"
#: ../../Xconfig/main.pm_.c:121 ../../Xconfig/resolution_and_depth.pm_.c:268
-#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:281
+#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:275
#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
-#: ../../interactive.pm_.c:351 ../../interactive/http.pm_.c:104
+#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:104
#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
-#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:156
-#: ../../my_gtk.pm_.c:284 ../../my_gtk.pm_.c:307
-#: ../../standalone/drakbackup_.c:3324 ../../standalone/drakbackup_.c:3419
-#: ../../standalone/drakbackup_.c:3438
+#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:159
+#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310
+#: ../../standalone/drakbackup_.c:3972 ../../standalone/drakbackup_.c:4067
+#: ../../standalone/drakbackup_.c:4086
msgid "Ok"
msgstr "Ok"
#: ../../Xconfig/main.pm_.c:121 ../../diskdrake/dav.pm_.c:24
-#: ../../printerdrake.pm_.c:2933 ../../standalone/logdrake_.c:224
+#: ../../harddrake/ui.pm_.c:98 ../../printerdrake.pm_.c:3155
+#: ../../standalone/logdrake_.c:224
msgid "Quit"
msgstr "Esci"
@@ -215,28 +216,28 @@ msgstr ""
"\n"
"%s"
-#: ../../Xconfig/monitor.pm_.c:91
+#: ../../Xconfig/monitor.pm_.c:93
msgid "Choose a monitor"
msgstr "Scegli un monitor"
-#: ../../Xconfig/monitor.pm_.c:95
+#: ../../Xconfig/monitor.pm_.c:97
msgid "Plug'n Play"
msgstr ""
-#: ../../Xconfig/monitor.pm_.c:96 ../../mouse.pm_.c:45
+#: ../../Xconfig/monitor.pm_.c:98 ../../mouse.pm_.c:46
msgid "Generic"
msgstr "Generico"
-#: ../../Xconfig/monitor.pm_.c:97 ../../harddrake/ui.pm_.c:36
+#: ../../Xconfig/monitor.pm_.c:99 ../../harddrake/ui.pm_.c:37
#, fuzzy
msgid "Vendor"
msgstr "Un passo indietro"
-#: ../../Xconfig/monitor.pm_.c:107
+#: ../../Xconfig/monitor.pm_.c:109
msgid "Plug'n Play probing failed. Please choose a precise monitor"
msgstr ""
-#: ../../Xconfig/monitor.pm_.c:112
+#: ../../Xconfig/monitor.pm_.c:114
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -260,11 +261,11 @@ msgstr ""
"danneggiarlo.\n"
"Se hai dubbi, scegli un settaggio prudente."
-#: ../../Xconfig/monitor.pm_.c:119
+#: ../../Xconfig/monitor.pm_.c:121
msgid "Horizontal refresh rate"
msgstr "Frequenza di refresh orizzontale"
-#: ../../Xconfig/monitor.pm_.c:120
+#: ../../Xconfig/monitor.pm_.c:122
msgid "Vertical refresh rate"
msgstr "Frequenza di refresh verticale"
@@ -301,36 +302,41 @@ msgstr "Seleziona risoluzione e profondità di colore"
msgid "Graphics card: %s"
msgstr "Scheda grafica: %s"
-#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1015
-#: ../../bootlook.pm_.c:334 ../../diskdrake/smbnfs_gtk.pm_.c:87
-#: ../../install_steps_gtk.pm_.c:412 ../../install_steps_gtk.pm_.c:470
-#: ../../install_steps_interactive.pm_.c:576 ../../interactive.pm_.c:142
-#: ../../interactive.pm_.c:351 ../../interactive/http.pm_.c:105
+#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1018
+#: ../../bootlook.pm_.c:338 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:406 ../../install_steps_gtk.pm_.c:464
+#: ../../install_steps_interactive.pm_.c:560 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:105
#: ../../interactive/newt.pm_.c:174 ../../interactive/stdio.pm_.c:39
-#: ../../interactive/stdio.pm_.c:143 ../../my_gtk.pm_.c:155
-#: ../../my_gtk.pm_.c:159 ../../my_gtk.pm_.c:284
-#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1990
-#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3278
-#: ../../standalone/drakbackup_.c:3311 ../../standalone/drakbackup_.c:3337
-#: ../../standalone/drakbackup_.c:3364 ../../standalone/drakbackup_.c:3391
-#: ../../standalone/drakbackup_.c:3451 ../../standalone/drakbackup_.c:3478
-#: ../../standalone/drakbackup_.c:3504 ../../standalone/drakconnect_.c:115
-#: ../../standalone/drakconnect_.c:147 ../../standalone/drakconnect_.c:289
-#: ../../standalone/drakconnect_.c:537 ../../standalone/drakconnect_.c:679
-#: ../../standalone/drakfloppy_.c:234 ../../standalone/drakfloppy_.c:383
-#: ../../standalone/drakfont_.c:970 ../../standalone/drakgw_.c:598
-#: ../../standalone/logdrake_.c:224 ../../standalone/logdrake_.c:528
-#: ../../standalone/tinyfirewall_.c:64
+#: ../../interactive/stdio.pm_.c:143 ../../my_gtk.pm_.c:158
+#: ../../my_gtk.pm_.c:162 ../../my_gtk.pm_.c:287
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:2124
+#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3926
+#: ../../standalone/drakbackup_.c:3959 ../../standalone/drakbackup_.c:3985
+#: ../../standalone/drakbackup_.c:4012 ../../standalone/drakbackup_.c:4039
+#: ../../standalone/drakbackup_.c:4099 ../../standalone/drakbackup_.c:4126
+#: ../../standalone/drakbackup_.c:4156 ../../standalone/drakbackup_.c:4182
+#: ../../standalone/drakconnect_.c:115 ../../standalone/drakconnect_.c:147
+#: ../../standalone/drakconnect_.c:289 ../../standalone/drakconnect_.c:537
+#: ../../standalone/drakconnect_.c:679 ../../standalone/drakfloppy_.c:234
+#: ../../standalone/drakfloppy_.c:383 ../../standalone/drakfont_.c:970
+#: ../../standalone/drakgw_.c:536 ../../standalone/logdrake_.c:224
+#: ../../standalone/logdrake_.c:526
msgid "Cancel"
msgstr "Annulla"
-#: ../../Xconfig/test.pm_.c:26
+#: ../../Xconfig/test.pm_.c:30
+msgid "Test of the configuration"
+msgstr "Test della configurazione"
+
+#: ../../Xconfig/test.pm_.c:31
msgid "Do you want to test the configuration?"
msgstr "Vuoi provare la configurazione ?"
-#: ../../Xconfig/test.pm_.c:26
-msgid "Test of the configuration"
-msgstr "Test della configurazione"
+#: ../../Xconfig/test.pm_.c:31
+#, fuzzy
+msgid "Warning: testing this graphic card may freeze your computer"
+msgstr "Attenzione: il test di questa scheda video può bloccare il computer"
#: ../../Xconfig/various.pm_.c:29
#, c-format
@@ -466,26 +472,22 @@ msgstr "Avvia da DOS/Windows (usando loadlin)"
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:158 ../../any.pm_.c:190
+#: ../../any.pm_.c:159 ../../any.pm_.c:190
msgid "Bootloader main options"
msgstr "Opzioni principali del bootloader"
-#: ../../any.pm_.c:159 ../../any.pm_.c:191
+#: ../../any.pm_.c:160 ../../any.pm_.c:191
msgid "Bootloader to use"
msgstr "Bootloader da usare"
-#: ../../any.pm_.c:161
+#: ../../any.pm_.c:162
msgid "Bootloader installation"
msgstr "Installazione del bootloader"
-#: ../../any.pm_.c:163 ../../any.pm_.c:193
+#: ../../any.pm_.c:164 ../../any.pm_.c:193
msgid "Boot device"
msgstr "Dispositivo di boot"
-#: ../../any.pm_.c:164
-msgid "LBA (doesn't work on old BIOSes)"
-msgstr "LBA (non funziona con vecchi BIOS)"
-
#: ../../any.pm_.c:165
msgid "Compact"
msgstr "Compatta"
@@ -502,16 +504,17 @@ msgstr "Modo video"
msgid "Delay before booting default image"
msgstr "Ritardo prima di avviare con l'immagine predefinita"
-#: ../../any.pm_.c:170 ../../any.pm_.c:786
+#: ../../any.pm_.c:170 ../../any.pm_.c:788
#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1111 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:743 ../../printerdrake.pm_.c:858
-#: ../../standalone/drakconnect_.c:624 ../../standalone/drakconnect_.c:649
+#: ../../install_steps_interactive.pm_.c:1096 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:850 ../../printerdrake.pm_.c:965
+#: ../../standalone/drakbackup_.c:3528 ../../standalone/drakconnect_.c:624
+#: ../../standalone/drakconnect_.c:649
msgid "Password"
msgstr "Password"
-#: ../../any.pm_.c:171 ../../any.pm_.c:787
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../any.pm_.c:171 ../../any.pm_.c:789
+#: ../../install_steps_interactive.pm_.c:1097
msgid "Password (again)"
msgstr "Password (ripeti)"
@@ -547,14 +550,14 @@ msgstr ""
"L'opzione ''Limita opzioni della linea di comando'' è inutile\n"
"senza una password"
-#: ../../any.pm_.c:184 ../../any.pm_.c:762
-#: ../../diskdrake/interactive.pm_.c:1180
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../any.pm_.c:184 ../../any.pm_.c:764
+#: ../../diskdrake/interactive.pm_.c:1191
+#: ../../install_steps_interactive.pm_.c:1091
msgid "Please try again"
msgstr "Per favore prova di nuovo"
-#: ../../any.pm_.c:184 ../../any.pm_.c:762
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../any.pm_.c:184 ../../any.pm_.c:764
+#: ../../install_steps_interactive.pm_.c:1091
msgid "The passwords do not match"
msgstr "Le password non corrispondono"
@@ -605,16 +608,16 @@ msgstr ""
"Queste sono le voci attuali.\n"
"Puoi aggiungerne altre o cambiare quelle esistenti."
-#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1483
-#: ../../standalone/drakbackup_.c:1596 ../../standalone/drakfont_.c:1011
+#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1558
+#: ../../standalone/drakbackup_.c:1671 ../../standalone/drakfont_.c:1011
#: ../../standalone/drakfont_.c:1054
msgid "Add"
msgstr "Aggiungi"
-#: ../../any.pm_.c:257 ../../any.pm_.c:774 ../../diskdrake/dav.pm_.c:60
+#: ../../any.pm_.c:257 ../../any.pm_.c:776 ../../diskdrake/dav.pm_.c:64
#: ../../diskdrake/hd_gtk.pm_.c:153 ../../diskdrake/removable.pm_.c:27
#: ../../diskdrake/smbnfs_gtk.pm_.c:88 ../../interactive/http.pm_.c:153
-#: ../../standalone/drakbackup_.c:2696
+#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2772
msgid "Done"
msgstr "Fatto"
@@ -626,7 +629,7 @@ msgstr "Modifica"
msgid "Which type of entry do you want to add?"
msgstr "Che tipo di voce vuoi aggiungere"
-#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1630
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1705
msgid "Linux"
msgstr "Linux"
@@ -720,13 +723,13 @@ msgstr "Ne hai un'altra?"
msgid "Do you have any %s interfaces?"
msgstr "Hai una qualsiasi interfaccia %s?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:821 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:283
+#: ../../any.pm_.c:660 ../../any.pm_.c:823 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:286
msgid "No"
msgstr "No"
-#: ../../any.pm_.c:660 ../../any.pm_.c:820 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:283
+#: ../../any.pm_.c:660 ../../any.pm_.c:822 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:286
msgid "Yes"
msgstr "Sì"
@@ -747,7 +750,7 @@ msgid "(module %s)"
msgstr "(modulo %s)"
#: ../../any.pm_.c:689
-#, fuzzy, c-format
+#, c-format
msgid ""
"You may now provide its options to module %s.\n"
"Note that any address should be entered with the prefix 0x like '0x123'"
@@ -828,39 +831,48 @@ msgstr "permetti \"su\""
msgid "access to administrative files"
msgstr "accesso ai file di amministrazione del sistema"
-#: ../../any.pm_.c:758
+#: ../../any.pm_.c:754
+#, fuzzy
+msgid "access to network tools"
+msgstr "accesso agli strumenti RPM"
+
+#: ../../any.pm_.c:755
+#, fuzzy
+msgid "access to compilation tools"
+msgstr "accesso agli strumenti RPM"
+
+#: ../../any.pm_.c:760
#, c-format
msgid "(already added %s)"
msgstr "(%s già aggiunto)"
-#: ../../any.pm_.c:763
+#: ../../any.pm_.c:765
msgid "This password is too simple"
msgstr "Questa password è troppo semplice"
-#: ../../any.pm_.c:764
+#: ../../any.pm_.c:766
msgid "Please give a user name"
msgstr "Per favore fornisci un nome utente"
-#: ../../any.pm_.c:765
+#: ../../any.pm_.c:767
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
"Il nome utente deve contenere solo lettere minuscole, numeri, '-' e '_'"
-#: ../../any.pm_.c:766
-#, fuzzy
+#: ../../any.pm_.c:768
msgid "The user name is too long"
-msgstr "Questo nome utente è già stato aggiunto"
+msgstr "Questo nome utente è troppo lungo"
-#: ../../any.pm_.c:767
+#: ../../any.pm_.c:769
msgid "This user name is already added"
msgstr "Questo nome utente è già stato aggiunto"
-#: ../../any.pm_.c:771
+#: ../../any.pm_.c:773
msgid "Add user"
msgstr "Aggiungi utente"
-#: ../../any.pm_.c:772
+#: ../../any.pm_.c:774
#, c-format
msgid ""
"Enter a user\n"
@@ -869,32 +881,32 @@ msgstr ""
"Inserisci un utente\n"
"%s"
-#: ../../any.pm_.c:773
+#: ../../any.pm_.c:775
msgid "Accept user"
msgstr "Accetta utente"
-#: ../../any.pm_.c:784
+#: ../../any.pm_.c:786
msgid "Real name"
msgstr "Vero nome"
-#: ../../any.pm_.c:785 ../../printerdrake.pm_.c:742
-#: ../../printerdrake.pm_.c:857
+#: ../../any.pm_.c:787 ../../printerdrake.pm_.c:849
+#: ../../printerdrake.pm_.c:964
msgid "User name"
msgstr "Nome utente"
-#: ../../any.pm_.c:788
+#: ../../any.pm_.c:790
msgid "Shell"
msgstr "Shell"
-#: ../../any.pm_.c:790
+#: ../../any.pm_.c:792
msgid "Icon"
msgstr "Icona"
-#: ../../any.pm_.c:817
+#: ../../any.pm_.c:819
msgid "Autologin"
msgstr "Autologin"
-#: ../../any.pm_.c:818
+#: ../../any.pm_.c:820
msgid ""
"I can set up your computer to automatically log on one user.\n"
"Do you want to use this feature?"
@@ -903,19 +915,19 @@ msgstr ""
"utente all'avvio.\n"
"Vuoi sfruttare questa caratteristica?"
-#: ../../any.pm_.c:822
+#: ../../any.pm_.c:824
msgid "Choose the default user:"
msgstr "Scegli l'utente predefinito"
-#: ../../any.pm_.c:823
+#: ../../any.pm_.c:825
msgid "Choose the window manager to run:"
msgstr "Scegli il window manager da eseguire:"
-#: ../../any.pm_.c:838
+#: ../../any.pm_.c:840
msgid "Please choose a language to use."
msgstr "Per favore, scegli la lingua da utilizzare."
-#: ../../any.pm_.c:840
+#: ../../any.pm_.c:842
msgid ""
"Mandrake Linux can support multiple languages. Select\n"
"the languages you would like to install. They will be available\n"
@@ -923,35 +935,35 @@ msgid ""
msgstr ""
"Potete scegliere altre lingue che saranno disponibili dopo l'installazione"
-#: ../../any.pm_.c:854 ../../install_steps_interactive.pm_.c:708
+#: ../../any.pm_.c:856 ../../install_steps_interactive.pm_.c:692
#: ../../standalone/drakxtv_.c:73
msgid "All"
msgstr "Tutto"
-#: ../../any.pm_.c:974
+#: ../../any.pm_.c:977
msgid "Allow all users"
msgstr "Permetti a tutti gli utenti"
-#: ../../any.pm_.c:974
+#: ../../any.pm_.c:977
msgid "No sharing"
msgstr "Nessuna condivisione"
-#: ../../any.pm_.c:984 ../../standalone.pm_.c:57
+#: ../../any.pm_.c:987 ../../install_any.pm_.c:1183 ../../standalone.pm_.c:58
#, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "Il pacchetto %s deve essere installato. Volete installarlo?"
-#: ../../any.pm_.c:987
+#: ../../any.pm_.c:990
msgid ""
"You can export using NFS or Samba. Please select which you'd like to use."
msgstr "Potete esportare usando NFS o Samba. Quale desiderate"
-#: ../../any.pm_.c:995 ../../standalone.pm_.c:61
+#: ../../any.pm_.c:998 ../../install_any.pm_.c:1188 ../../standalone.pm_.c:63
#, c-format
msgid "Mandatory package %s is missing"
msgstr "Il pacchetto obbligatorio %s è assente"
-#: ../../any.pm_.c:1001
+#: ../../any.pm_.c:1004
msgid ""
"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
@@ -959,12 +971,18 @@ msgid ""
"\n"
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
+"Volete permettere agli utenti di condividere qualcuna delle loro directory?\n"
+"Se lo consentite gli utenti potranno semplicemente cliccare su \"Share\" in "
+"Konqueror\n"
+"e Nautilus.\n"
+"\n"
+"\"Custom\" permette un controllo più preciso per ogni utente.\n"
-#: ../../any.pm_.c:1015
+#: ../../any.pm_.c:1018
msgid "Launch userdrake"
msgstr "Lancia userdrake"
-#: ../../any.pm_.c:1017
+#: ../../any.pm_.c:1020
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
@@ -972,31 +990,31 @@ msgstr ""
"La condivisione in base all'utente usa il gruppo \"fileshare\". \n"
"Potete utilizzare userdrake per aggiungere un utente a questo gruppo."
-#: ../../any.pm_.c:1068
+#: ../../any.pm_.c:1071
msgid "Welcome To Crackers"
msgstr "Benvenuti cracker"
-#: ../../any.pm_.c:1069
+#: ../../any.pm_.c:1072
msgid "Poor"
msgstr "Scarso"
-#: ../../any.pm_.c:1070 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1073 ../../mouse.pm_.c:31
msgid "Standard"
msgstr "Normale"
-#: ../../any.pm_.c:1071
+#: ../../any.pm_.c:1074
msgid "High"
msgstr "Alto"
-#: ../../any.pm_.c:1072
+#: ../../any.pm_.c:1075
msgid "Higher"
msgstr "Più alto"
-#: ../../any.pm_.c:1073
+#: ../../any.pm_.c:1076
msgid "Paranoid"
msgstr "Paranoico"
-#: ../../any.pm_.c:1076
+#: ../../any.pm_.c:1079
msgid ""
"This level is to be used with care. It makes your system more easy to use,\n"
"but very sensitive: it must not be used for a machine connected to others\n"
@@ -1006,7 +1024,7 @@ msgstr ""
"ma molto delicato: non deve essere usato per una macchina connessa ad altre\n"
"o a Internet. Non c'è nessun accesso con password."
-#: ../../any.pm_.c:1079
+#: ../../any.pm_.c:1082
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -1014,7 +1032,7 @@ msgstr ""
"Ora le password sono abilitate, ma l'uso come computer di rete è comunque\n"
"ancora sconsigliato."
-#: ../../any.pm_.c:1080
+#: ../../any.pm_.c:1083
msgid ""
"This is the standard security recommended for a computer that will be used "
"to connect to the Internet as a client."
@@ -1023,7 +1041,7 @@ msgstr ""
"usare per\n"
"connettersi a Internet come cliente."
-#: ../../any.pm_.c:1081
+#: ../../any.pm_.c:1084
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
@@ -1031,7 +1049,7 @@ msgstr ""
"Esistono già alcuni limiti, e ogni notte vengono eseguiti ulteriori "
"controlli automatici."
-#: ../../any.pm_.c:1082
+#: ../../any.pm_.c:1085
msgid ""
"With this security level, the use of this system as a server becomes "
"possible.\n"
@@ -1049,7 +1067,7 @@ msgstr ""
"livello\n"
"più basso."
-#: ../../any.pm_.c:1085
+#: ../../any.pm_.c:1088
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
"security features are at their maximum."
@@ -1057,32 +1075,32 @@ msgstr ""
"Basato sul livello precedente, ma ora il sistema è completamente\n"
"chiuso. Le funzioni di sicurezza sono al massimo."
-#: ../../any.pm_.c:1091
+#: ../../any.pm_.c:1094
#, fuzzy
msgid "DrakSec Basic Options"
msgstr "Opzioni"
-#: ../../any.pm_.c:1092
+#: ../../any.pm_.c:1095
#, fuzzy
msgid "Please choose the desired security level"
msgstr "Scegli livello di sicurezza"
-#: ../../any.pm_.c:1095
+#: ../../any.pm_.c:1098
msgid "Security level"
msgstr "Livello di sicurezza"
-#: ../../any.pm_.c:1097
+#: ../../any.pm_.c:1100
msgid "Use libsafe for servers"
msgstr "Usa libsafe per i server"
-#: ../../any.pm_.c:1098
+#: ../../any.pm_.c:1101
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
"Una libreria che difende il sistema da attacchi del tipo \"buffer overflow\" "
"e \"format string\"."
-#: ../../any.pm_.c:1099
+#: ../../any.pm_.c:1102
msgid "Security Administrator (login or email)"
msgstr ""
@@ -1110,58 +1128,58 @@ msgstr ""
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:935
+#: ../../bootloader.pm_.c:932
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Benvenuti su GRUB, il selezionatore di sistemi operativi!"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:938
+#: ../../bootloader.pm_.c:935
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "Usate i tasti %c e %c per evidenziare la voce che interessa."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:941
+#: ../../bootloader.pm_.c:938
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr ""
"Premete Invio per avviare il sistema operativo selezionat, 'e' per modificare"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:941
msgid "commands before booting, or 'c' for a command-line."
msgstr "i comandi prima del boot, o 'c' per avere una linea di comando."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:947
+#: ../../bootloader.pm_.c:944
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "La voce evidenziata verrà avviata automaticamente in %d secondi."
-#: ../../bootloader.pm_.c:951
+#: ../../bootloader.pm_.c:948
msgid "not enough room in /boot"
msgstr "spazio insufficiente in /boot"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1051
+#: ../../bootloader.pm_.c:1048
msgid "Desktop"
msgstr "Desktop"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1053
+#: ../../bootloader.pm_.c:1050
msgid "Start Menu"
msgstr "Menu di avvio"
-#: ../../bootloader.pm_.c:1072
+#: ../../bootloader.pm_.c:1069
#, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "Non puoi installare il bootloader su una partizione %s\n"
-#: ../../bootlook.pm_.c:45
+#: ../../bootlook.pm_.c:45 ../../standalone/draksplash_.c:25
msgid "no help implemented yet.\n"
msgstr "nessun aiuto presente (per ora).\n"
@@ -1169,8 +1187,8 @@ msgstr "nessun aiuto presente (per ora).\n"
msgid "Boot Style Configuration"
msgstr "Configurazione stile di avvio"
-#: ../../bootlook.pm_.c:78 ../../harddrake/ui.pm_.c:59
-#: ../../harddrake/ui.pm_.c:60 ../../standalone/drakfloppy_.c:81
+#: ../../bootlook.pm_.c:78 ../../harddrake/ui.pm_.c:62
+#: ../../harddrake/ui.pm_.c:63 ../../standalone/drakfloppy_.c:81
#: ../../standalone/logdrake_.c:101
msgid "/_File"
msgstr "/_File"
@@ -1180,7 +1198,7 @@ msgstr "/_File"
msgid "/File/_Quit"
msgstr "/File/_Esci"
-#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:60
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:63
#: ../../standalone/drakfloppy_.c:82 ../../standalone/logdrake_.c:107
msgid "<control>Q"
msgstr "<control>Q"
@@ -1210,9 +1228,8 @@ msgid "Lilo/grub mode"
msgstr "Modo LILO/GRUB"
#: ../../bootlook.pm_.c:97
-#, fuzzy
msgid "Yaboot mode"
-msgstr "Yaboot"
+msgstr "Modo Yaboot"
#: ../../bootlook.pm_.c:143
#, fuzzy
@@ -1223,95 +1240,102 @@ msgstr "Installa sistema"
msgid "Display theme under console"
msgstr ""
-#: ../../bootlook.pm_.c:166
+#: ../../bootlook.pm_.c:145
+#, fuzzy
+msgid "Create new theme"
+msgstr "Crea una nuova partizione"
+
+#: ../../bootlook.pm_.c:169
msgid "Can't create Bootsplash preview"
msgstr ""
-#: ../../bootlook.pm_.c:166 ../../bootlook.pm_.c:184 ../../bootlook.pm_.c:187
-#: ../../bootlook.pm_.c:190 ../../bootlook.pm_.c:220 ../../bootlook.pm_.c:222
-#: ../../bootlook.pm_.c:232 ../../bootlook.pm_.c:241 ../../bootlook.pm_.c:248
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:336
-#: ../../diskdrake/interactive.pm_.c:351 ../../diskdrake/interactive.pm_.c:464
-#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../bootlook.pm_.c:169 ../../bootlook.pm_.c:187 ../../bootlook.pm_.c:190
+#: ../../bootlook.pm_.c:193 ../../bootlook.pm_.c:223 ../../bootlook.pm_.c:225
+#: ../../bootlook.pm_.c:235 ../../bootlook.pm_.c:244 ../../bootlook.pm_.c:251
+#: ../../diskdrake/dav.pm_.c:73 ../../diskdrake/hd_gtk.pm_.c:116
+#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/interactive.pm_.c:355
+#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/interactive.pm_.c:474
+#: ../../diskdrake/smbnfs_gtk.pm_.c:45 ../../fsedit.pm_.c:239
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:365 ../../interactive/http.pm_.c:119
-#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:80
+#: ../../interactive/http.pm_.c:119 ../../interactive/http.pm_.c:120
+#: ../../standalone/draksplash_.c:32
msgid "Error"
msgstr "Errore"
-#: ../../bootlook.pm_.c:183
+#: ../../bootlook.pm_.c:186
#, c-format
msgid "Backup %s to %s.old"
msgstr ""
-#: ../../bootlook.pm_.c:184
+#: ../../bootlook.pm_.c:187
msgid "unable to backup lilo message"
msgstr ""
-#: ../../bootlook.pm_.c:186
+#: ../../bootlook.pm_.c:189
#, fuzzy, c-format
msgid "Copy %s to %s"
msgstr "Sto copiando %s"
-#: ../../bootlook.pm_.c:187
+#: ../../bootlook.pm_.c:190
msgid "can't change lilo message"
msgstr ""
-#: ../../bootlook.pm_.c:190
+#: ../../bootlook.pm_.c:193
msgid "Lilo message not found"
msgstr ""
-#: ../../bootlook.pm_.c:220
+#: ../../bootlook.pm_.c:223
msgid "Can't write /etc/sysconfig/bootsplash."
msgstr ""
-#: ../../bootlook.pm_.c:220
+#: ../../bootlook.pm_.c:223
#, fuzzy, c-format
msgid "Write %s"
msgstr "XFree %s"
-#: ../../bootlook.pm_.c:222
+#: ../../bootlook.pm_.c:225
msgid ""
"Can't write /etc/sysconfig/bootsplash\n"
"File not found."
msgstr ""
-#: ../../bootlook.pm_.c:233
+#: ../../bootlook.pm_.c:236
#, c-format
msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
msgstr ""
-#: ../../bootlook.pm_.c:236
+#: ../../bootlook.pm_.c:239
#, c-format
-msgid "Make initrd 'mkinird -f /boot/initrd-%s.img %s'."
+msgid "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
msgstr ""
-#: ../../bootlook.pm_.c:242
+#: ../../bootlook.pm_.c:245
msgid ""
"Can't relaunch LiLo!\n"
"Launch \"lilo\" as root in command line to complete LiLo theme installation."
msgstr ""
-#: ../../bootlook.pm_.c:246
+#: ../../bootlook.pm_.c:249
msgid "Relaunch 'lilo'"
msgstr ""
-#: ../../bootlook.pm_.c:248
+#: ../../bootlook.pm_.c:251 ../../standalone/draksplash_.c:161
+#: ../../standalone/draksplash_.c:330 ../../standalone/draksplash_.c:454
#, fuzzy
msgid "Notice"
msgstr "No Video"
-#: ../../bootlook.pm_.c:249
+#: ../../bootlook.pm_.c:252
msgid "LiLo and Bootsplash themes installation successfull"
msgstr ""
# there is no room to put "Scegli classe d'installazione"
-#: ../../bootlook.pm_.c:249
+#: ../../bootlook.pm_.c:252
#, fuzzy
msgid "Theme installation failed!"
msgstr "Classe d'installazione"
-#: ../../bootlook.pm_.c:258
+#: ../../bootlook.pm_.c:261
#, c-format
msgid ""
"You are currently using %s as your boot manager.\n"
@@ -1320,23 +1344,22 @@ msgstr ""
"Al momento state usando %s come Boot Manager.\n"
"Cliccate su Configura per lanciare l'assistente di configurazione."
-#: ../../bootlook.pm_.c:260 ../../standalone/drakbackup_.c:2352
-#: ../../standalone/drakbackup_.c:2362 ../../standalone/drakbackup_.c:2372
-#: ../../standalone/drakbackup_.c:2380 ../../standalone/drakgw_.c:592
-#: ../../standalone/tinyfirewall_.c:58
+#: ../../bootlook.pm_.c:263 ../../standalone/drakbackup_.c:2427
+#: ../../standalone/drakbackup_.c:2437 ../../standalone/drakbackup_.c:2447
+#: ../../standalone/drakbackup_.c:2455 ../../standalone/drakgw_.c:530
msgid "Configure"
msgstr "Configura"
-#: ../../bootlook.pm_.c:267
+#: ../../bootlook.pm_.c:270
#, fuzzy
msgid "Splash selection"
msgstr "Salva scelta pacchetti"
-#: ../../bootlook.pm_.c:270
+#: ../../bootlook.pm_.c:273
msgid "Themes"
msgstr ""
-#: ../../bootlook.pm_.c:272
+#: ../../bootlook.pm_.c:275
msgid ""
"\n"
"Select a theme for\n"
@@ -1345,44 +1368,44 @@ msgid ""
"them separatly"
msgstr ""
-#: ../../bootlook.pm_.c:275
+#: ../../bootlook.pm_.c:278
msgid "Lilo screen"
msgstr ""
-#: ../../bootlook.pm_.c:279
+#: ../../bootlook.pm_.c:283
msgid "Bootsplash"
msgstr ""
-#: ../../bootlook.pm_.c:314
+#: ../../bootlook.pm_.c:318
msgid "System mode"
msgstr "Modo sistema"
-#: ../../bootlook.pm_.c:316
+#: ../../bootlook.pm_.c:320
msgid "Launch the graphical environment when your system starts"
msgstr "Lancia il sistema X Window all'avvio"
-#: ../../bootlook.pm_.c:321
+#: ../../bootlook.pm_.c:325
msgid "No, I don't want autologin"
msgstr "No, non voglio il login automatico"
-#: ../../bootlook.pm_.c:323
+#: ../../bootlook.pm_.c:327
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "Sì, voglio il login automatico con questo (utente, desktop)"
-#: ../../bootlook.pm_.c:333 ../../network/netconnect.pm_.c:101
+#: ../../bootlook.pm_.c:337 ../../network/netconnect.pm_.c:101
#: ../../standalone/drakTermServ_.c:173 ../../standalone/drakTermServ_.c:300
-#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:3513
-#: ../../standalone/drakbackup_.c:4290 ../../standalone/drakconnect_.c:108
+#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4191
+#: ../../standalone/drakbackup_.c:4952 ../../standalone/drakconnect_.c:108
#: ../../standalone/drakconnect_.c:140 ../../standalone/drakconnect_.c:296
#: ../../standalone/drakconnect_.c:435 ../../standalone/drakconnect_.c:521
#: ../../standalone/drakconnect_.c:564 ../../standalone/drakconnect_.c:667
#: ../../standalone/drakfloppy_.c:376 ../../standalone/drakfont_.c:612
#: ../../standalone/drakfont_.c:799 ../../standalone/drakfont_.c:876
-#: ../../standalone/drakfont_.c:963 ../../standalone/logdrake_.c:521
+#: ../../standalone/drakfont_.c:963 ../../standalone/logdrake_.c:519
msgid "OK"
msgstr "OK"
-#: ../../bootlook.pm_.c:403
+#: ../../bootlook.pm_.c:407
#, c-format
msgid "can not open /etc/inittab for reading: %s"
msgstr "Non riesco ad aprire /etc/inittab in lettura: %s"
@@ -1479,49 +1502,53 @@ msgstr "Austria"
msgid "United States"
msgstr "Stati Uniti"
-#: ../../detect_devices.pm_.c:599 ../../detect_devices.pm_.c:641
-#: ../../detect_devices.pm_.c:803
-#, fuzzy
-msgid "Unknown Model"
-msgstr "Modello sconosciuto"
-
#: ../../diskdrake/dav.pm_.c:23
#, fuzzy
msgid "New"
msgstr "nuovo"
-#: ../../diskdrake/dav.pm_.c:57
+#: ../../diskdrake/dav.pm_.c:59 ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/smbnfs_gtk.pm_.c:81
+msgid "Unmount"
+msgstr "Esegui unmount"
+
+#: ../../diskdrake/dav.pm_.c:60 ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/smbnfs_gtk.pm_.c:82
+msgid "Mount"
+msgstr "Esegui mount"
+
+#: ../../diskdrake/dav.pm_.c:61
msgid "Server"
msgstr "Server"
-#: ../../diskdrake/dav.pm_.c:58 ../../diskdrake/interactive.pm_.c:375
-#: ../../diskdrake/interactive.pm_.c:558 ../../diskdrake/interactive.pm_.c:585
+#: ../../diskdrake/dav.pm_.c:62 ../../diskdrake/interactive.pm_.c:379
+#: ../../diskdrake/interactive.pm_.c:568 ../../diskdrake/interactive.pm_.c:595
#: ../../diskdrake/removable.pm_.c:24 ../../diskdrake/removable_gtk.pm_.c:15
#: ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr "Punto di mount"
-#: ../../diskdrake/dav.pm_.c:68
+#: ../../diskdrake/dav.pm_.c:81
#, fuzzy
msgid "Please enter the WebDAV server URL"
msgstr "Per favore, insersci la velocità del masterizzatore"
-#: ../../diskdrake/dav.pm_.c:71
+#: ../../diskdrake/dav.pm_.c:84
msgid "The URL must begin with http:// or https://"
msgstr ""
-#: ../../diskdrake/dav.pm_.c:92
+#: ../../diskdrake/dav.pm_.c:105
#, fuzzy
msgid "Server: "
msgstr "Server"
-#: ../../diskdrake/dav.pm_.c:93 ../../diskdrake/interactive.pm_.c:435
-#: ../../diskdrake/interactive.pm_.c:1079
-#: ../../diskdrake/interactive.pm_.c:1153
+#: ../../diskdrake/dav.pm_.c:106 ../../diskdrake/interactive.pm_.c:440
+#: ../../diskdrake/interactive.pm_.c:1089
+#: ../../diskdrake/interactive.pm_.c:1164
msgid "Mount point: "
msgstr "Punto di mount:"
-#: ../../diskdrake/dav.pm_.c:94 ../../diskdrake/interactive.pm_.c:1159
+#: ../../diskdrake/dav.pm_.c:107 ../../diskdrake/interactive.pm_.c:1170
#, c-format
msgid "Options: %s"
msgstr "Opzioni: %s"
@@ -1530,8 +1557,9 @@ msgstr "Opzioni: %s"
msgid "Please make a backup of your data first"
msgstr "Per favore prima fate un backup dei vostri dati"
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:924
-#: ../../diskdrake/interactive.pm_.c:933 ../../diskdrake/interactive.pm_.c:999
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:934
+#: ../../diskdrake/interactive.pm_.c:943
+#: ../../diskdrake/interactive.pm_.c:1009
msgid "Read carefully!"
msgstr "Leggete con attenzione!"
@@ -1570,10 +1598,15 @@ msgid "Please click on a partition"
msgstr "Per favore clicca su una partizione"
#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
-#: ../../install_steps_gtk.pm_.c:471
+#: ../../install_steps_gtk.pm_.c:465
msgid "Details"
msgstr "Dettagli"
+#: ../../diskdrake/hd_gtk.pm_.c:252
+#, fuzzy
+msgid "No hard drives found"
+msgstr "Non ho trovato nessuna stampante locale!\n"
+
#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Ext2"
msgstr "Ext2"
@@ -1598,13 +1631,13 @@ msgstr "SunOS"
msgid "Swap"
msgstr "Swap"
-#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1105
msgid "Empty"
msgstr "Vuoto"
-#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:331
-#: ../../install_steps_gtk.pm_.c:389 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1679
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:325
+#: ../../install_steps_gtk.pm_.c:383 ../../mouse.pm_.c:165
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1754
msgid "Other"
msgstr "Altro"
@@ -1612,12 +1645,12 @@ msgstr "Altro"
msgid "Filesystem types:"
msgstr "Tipo di filesystem:"
-#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:397
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:402
msgid "Create"
msgstr "Crea"
-#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:376
-#: ../../diskdrake/interactive.pm_.c:521 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:380
+#: ../../diskdrake/interactive.pm_.c:531 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "Tipo"
@@ -1627,7 +1660,7 @@ msgstr "Tipo"
msgid "Use ``%s'' instead"
msgstr "Usa ''%s'' invece"
-#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:389
msgid "Delete"
msgstr "Cancella"
@@ -1635,7 +1668,7 @@ msgstr "Cancella"
msgid "Use ``Unmount'' first"
msgstr "Prima usa ''Unmount''"
-#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:513
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:518
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
@@ -1643,72 +1676,72 @@ msgstr ""
"Dopo aver cambiato tipo di partizione %s, tutti i dati su questa partizione "
"saranno persi"
-#: ../../diskdrake/interactive.pm_.c:173
+#: ../../diskdrake/interactive.pm_.c:174
msgid "Choose a partition"
msgstr "Scegli una partizione"
-#: ../../diskdrake/interactive.pm_.c:173
+#: ../../diskdrake/interactive.pm_.c:174
msgid "Choose another partition"
msgstr "Scegli un'altra partizione"
-#: ../../diskdrake/interactive.pm_.c:198
+#: ../../diskdrake/interactive.pm_.c:199
msgid "Exit"
msgstr "Esci"
-#: ../../diskdrake/interactive.pm_.c:220
+#: ../../diskdrake/interactive.pm_.c:221
msgid "Toggle to expert mode"
msgstr "Passa a modo Esperto"
-#: ../../diskdrake/interactive.pm_.c:220
+#: ../../diskdrake/interactive.pm_.c:221
msgid "Toggle to normal mode"
msgstr "Passa a modo Normale"
-#: ../../diskdrake/interactive.pm_.c:220
+#: ../../diskdrake/interactive.pm_.c:221
msgid "Undo"
msgstr "Un passo indietro"
-#: ../../diskdrake/interactive.pm_.c:239
+#: ../../diskdrake/interactive.pm_.c:240
msgid "Continue anyway?"
msgstr "Continuo comunque?"
-#: ../../diskdrake/interactive.pm_.c:244
+#: ../../diskdrake/interactive.pm_.c:245
msgid "Quit without saving"
msgstr "Esci senza salvare"
-#: ../../diskdrake/interactive.pm_.c:244
+#: ../../diskdrake/interactive.pm_.c:245
msgid "Quit without writing the partition table?"
msgstr "Esci senza scrivere la tabella delle partizioni?"
-#: ../../diskdrake/interactive.pm_.c:249
+#: ../../diskdrake/interactive.pm_.c:250
msgid "Do you want to save /etc/fstab modifications"
msgstr "Vuoi salvare le modifiche a /etc/fstab?"
-#: ../../diskdrake/interactive.pm_.c:261
+#: ../../diskdrake/interactive.pm_.c:263
msgid "Auto allocate"
msgstr "Alloca automaticamente"
-#: ../../diskdrake/interactive.pm_.c:261
+#: ../../diskdrake/interactive.pm_.c:263
msgid "Clear all"
msgstr "Azzera tutto"
-#: ../../diskdrake/interactive.pm_.c:261
+#: ../../diskdrake/interactive.pm_.c:263
#: ../../install_steps_interactive.pm_.c:214
msgid "More"
msgstr "Ancora"
-#: ../../diskdrake/interactive.pm_.c:264
+#: ../../diskdrake/interactive.pm_.c:267
msgid "Hard drive information"
msgstr "Informazioni sul disco fisso"
-#: ../../diskdrake/interactive.pm_.c:294
+#: ../../diskdrake/interactive.pm_.c:298
msgid "All primary partitions are used"
msgstr "Tutte le partizioni primarie sono usate"
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:299
msgid "I can't add any more partition"
msgstr "Non posso aggiungere altre partizioni"
-#: ../../diskdrake/interactive.pm_.c:296
+#: ../../diskdrake/interactive.pm_.c:300
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -1716,31 +1749,31 @@ msgstr ""
"Per avere più partizioni, per favore eliminarne una per essere in grado di "
"crearne una estesa"
-#: ../../diskdrake/interactive.pm_.c:306
+#: ../../diskdrake/interactive.pm_.c:310
msgid "Save partition table"
msgstr "Salva la tabella delle partizioni"
-#: ../../diskdrake/interactive.pm_.c:307
+#: ../../diskdrake/interactive.pm_.c:311
msgid "Restore partition table"
msgstr "Ripristina tabella delle partizioni"
-#: ../../diskdrake/interactive.pm_.c:308
+#: ../../diskdrake/interactive.pm_.c:312
msgid "Rescue partition table"
msgstr "Recupera tabella delle partizioni"
-#: ../../diskdrake/interactive.pm_.c:310
+#: ../../diskdrake/interactive.pm_.c:314
msgid "Reload partition table"
msgstr "Ricarica tabella delle partizioni"
-#: ../../diskdrake/interactive.pm_.c:315
+#: ../../diskdrake/interactive.pm_.c:319
msgid "Removable media automounting"
msgstr "Automounting di media rimovibili"
-#: ../../diskdrake/interactive.pm_.c:324 ../../diskdrake/interactive.pm_.c:344
+#: ../../diskdrake/interactive.pm_.c:328 ../../diskdrake/interactive.pm_.c:348
msgid "Select file"
msgstr "Scegli file"
-#: ../../diskdrake/interactive.pm_.c:331
+#: ../../diskdrake/interactive.pm_.c:335
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1748,11 +1781,11 @@ msgstr ""
"La copia di sicurezza della tabella delle partizioni non ha la stessa\n"
"dimensione. Continuo comunque?"
-#: ../../diskdrake/interactive.pm_.c:345
+#: ../../diskdrake/interactive.pm_.c:349
msgid "Warning"
msgstr "Attenzione"
-#: ../../diskdrake/interactive.pm_.c:346
+#: ../../diskdrake/interactive.pm_.c:350
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1760,112 +1793,104 @@ msgstr ""
"Inserisci un floppy nel drive\n"
"Tutti i dati su questo floppy saranno persi"
-#: ../../diskdrake/interactive.pm_.c:357
+#: ../../diskdrake/interactive.pm_.c:361
msgid "Trying to rescue partition table"
msgstr "Provo a recuperare la tabella delle partizioni"
-#: ../../diskdrake/interactive.pm_.c:363
+#: ../../diskdrake/interactive.pm_.c:367
msgid "Detailed information"
msgstr "Informazioni dettagliate"
-#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:652
+#: ../../diskdrake/interactive.pm_.c:382 ../../diskdrake/interactive.pm_.c:662
msgid "Resize"
msgstr "Ridimensiona"
-#: ../../diskdrake/interactive.pm_.c:379 ../../diskdrake/interactive.pm_.c:705
+#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/interactive.pm_.c:715
msgid "Move"
msgstr "Sposta"
-#: ../../diskdrake/interactive.pm_.c:380
+#: ../../diskdrake/interactive.pm_.c:384
msgid "Format"
msgstr "Formatta"
-#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/smbnfs_gtk.pm_.c:82
-msgid "Mount"
-msgstr "Esegui mount"
-
-#: ../../diskdrake/interactive.pm_.c:382
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Add to RAID"
msgstr "Aggiungi a RAID"
-#: ../../diskdrake/interactive.pm_.c:383
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Add to LVM"
msgstr "Aggiungi a LVM"
-#: ../../diskdrake/interactive.pm_.c:384 ../../diskdrake/smbnfs_gtk.pm_.c:81
-msgid "Unmount"
-msgstr "Esegui unmount"
-
-#: ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/interactive.pm_.c:390
msgid "Remove from RAID"
msgstr "Rimuovi da RAID"
-#: ../../diskdrake/interactive.pm_.c:387
+#: ../../diskdrake/interactive.pm_.c:391
msgid "Remove from LVM"
msgstr "Rimuovi da LVM"
-#: ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/interactive.pm_.c:392
msgid "Modify RAID"
msgstr "Modifica RAID"
-#: ../../diskdrake/interactive.pm_.c:389
+#: ../../diskdrake/interactive.pm_.c:393
msgid "Use for loopback"
msgstr "Usa per loopback"
-#: ../../diskdrake/interactive.pm_.c:428
+#: ../../diskdrake/interactive.pm_.c:433
msgid "Create a new partition"
msgstr "Crea una nuova partizione"
-#: ../../diskdrake/interactive.pm_.c:431
+#: ../../diskdrake/interactive.pm_.c:436
msgid "Start sector: "
msgstr "Settore iniziale: "
-#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:805
+#: ../../diskdrake/interactive.pm_.c:438 ../../diskdrake/interactive.pm_.c:815
msgid "Size in MB: "
msgstr "Dimensione in Mb: "
-#: ../../diskdrake/interactive.pm_.c:434 ../../diskdrake/interactive.pm_.c:806
+#: ../../diskdrake/interactive.pm_.c:439 ../../diskdrake/interactive.pm_.c:816
msgid "Filesystem type: "
msgstr "Tipo di filesystem: "
-#: ../../diskdrake/interactive.pm_.c:439
+#: ../../diskdrake/interactive.pm_.c:444
msgid "Preference: "
msgstr "Preferenza: "
-#: ../../diskdrake/interactive.pm_.c:464
+#: ../../diskdrake/interactive.pm_.c:469
msgid ""
"You can't create a new partition\n"
"(since you reached the maximal number of primary partitions).\n"
"First remove a primary partition and create an extended partition."
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:494
+#: ../../diskdrake/interactive.pm_.c:499
msgid "Remove the loopback file?"
msgstr "Rimuovo il file di loopback?"
-#: ../../diskdrake/interactive.pm_.c:519
+#: ../../diskdrake/interactive.pm_.c:529
msgid "Change partition type"
msgstr "Cambia il tipo di partizione"
-#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:530 ../../diskdrake/removable.pm_.c:48
msgid "Which filesystem do you want?"
msgstr "Quale filesystem vuoi?"
-#: ../../diskdrake/interactive.pm_.c:526
+#: ../../diskdrake/interactive.pm_.c:536
msgid "Switching from ext2 to ext3"
msgstr "Passo da ext2 a ext3"
-#: ../../diskdrake/interactive.pm_.c:556
+#: ../../diskdrake/interactive.pm_.c:566
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "Dove vuoi fare il mount del file loopback %s?"
-#: ../../diskdrake/interactive.pm_.c:557
+#: ../../diskdrake/interactive.pm_.c:567
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Dove vuoi fare il mount del dispositivo %s?"
-#: ../../diskdrake/interactive.pm_.c:563
+#: ../../diskdrake/interactive.pm_.c:573
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1873,137 +1898,137 @@ msgstr ""
"Non puoi deselezionare punti di mount perché questa partizione è usata\n"
"per il loopback. Prima rimuovi il loopback"
-#: ../../diskdrake/interactive.pm_.c:584
+#: ../../diskdrake/interactive.pm_.c:594
#, fuzzy, c-format
msgid "Where do you want to mount %s?"
msgstr "Dove vuoi fare il mount del dispositivo %s?"
-#: ../../diskdrake/interactive.pm_.c:608
+#: ../../diskdrake/interactive.pm_.c:618
msgid "Computing FAT filesystem bounds"
msgstr "Calcolo dei vincoli del filesystem FAT"
-#: ../../diskdrake/interactive.pm_.c:608 ../../diskdrake/interactive.pm_.c:667
-#: ../../install_interactive.pm_.c:131
+#: ../../diskdrake/interactive.pm_.c:618 ../../diskdrake/interactive.pm_.c:677
+#: ../../install_interactive.pm_.c:133
msgid "Resizing"
msgstr "Ridimensionamento"
-#: ../../diskdrake/interactive.pm_.c:640
+#: ../../diskdrake/interactive.pm_.c:650
msgid "This partition is not resizeable"
msgstr "Questa partizione non è ridimensionabile"
-#: ../../diskdrake/interactive.pm_.c:645
+#: ../../diskdrake/interactive.pm_.c:655
msgid "All data on this partition should be backed-up"
msgstr "Dovresti eseguire il backup di tutti i dati su questa partizione"
-#: ../../diskdrake/interactive.pm_.c:647
+#: ../../diskdrake/interactive.pm_.c:657
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr ""
"Dopo aver ridimensionato la partizione %s, tutti i dati su questa partizione "
"saranno persi"
-#: ../../diskdrake/interactive.pm_.c:652
+#: ../../diskdrake/interactive.pm_.c:662
msgid "Choose the new size"
msgstr "Scegli la nuova dimensione"
-#: ../../diskdrake/interactive.pm_.c:653
+#: ../../diskdrake/interactive.pm_.c:663
msgid "New size in MB: "
msgstr "Nuova dimensione in Mb: "
-#: ../../diskdrake/interactive.pm_.c:706
+#: ../../diskdrake/interactive.pm_.c:716
msgid "Which disk do you want to move it to?"
msgstr "Su quale disco vuoi spostarlo?"
-#: ../../diskdrake/interactive.pm_.c:707
+#: ../../diskdrake/interactive.pm_.c:717
msgid "Sector"
msgstr "Settore"
-#: ../../diskdrake/interactive.pm_.c:708
+#: ../../diskdrake/interactive.pm_.c:718
msgid "Which sector do you want to move it to?"
msgstr "Su che settore vuoi spostarlo?"
-#: ../../diskdrake/interactive.pm_.c:711
+#: ../../diskdrake/interactive.pm_.c:721
msgid "Moving"
msgstr "Spostamento"
-#: ../../diskdrake/interactive.pm_.c:711
+#: ../../diskdrake/interactive.pm_.c:721
msgid "Moving partition..."
msgstr "Spostamento partizione..."
-#: ../../diskdrake/interactive.pm_.c:728
+#: ../../diskdrake/interactive.pm_.c:738
msgid "Choose an existing RAID to add to"
msgstr "Scegli un RAID esistente a cui effettuare l'aggiunta"
-#: ../../diskdrake/interactive.pm_.c:729 ../../diskdrake/interactive.pm_.c:746
+#: ../../diskdrake/interactive.pm_.c:739 ../../diskdrake/interactive.pm_.c:756
msgid "new"
msgstr "nuovo"
-#: ../../diskdrake/interactive.pm_.c:744
+#: ../../diskdrake/interactive.pm_.c:754
msgid "Choose an existing LVM to add to"
msgstr "Scegli un LVM esistente a cui effettuare l'aggiunta"
-#: ../../diskdrake/interactive.pm_.c:749
+#: ../../diskdrake/interactive.pm_.c:759
msgid "LVM name?"
msgstr "Nome LVM?"
-#: ../../diskdrake/interactive.pm_.c:790
+#: ../../diskdrake/interactive.pm_.c:800
msgid "This partition can't be used for loopback"
msgstr "Questa partizione non può essere usata per il loopback"
-#: ../../diskdrake/interactive.pm_.c:803
+#: ../../diskdrake/interactive.pm_.c:813
msgid "Loopback"
msgstr "Loopback"
-#: ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:814
msgid "Loopback file name: "
msgstr "Nome file loopback: "
-#: ../../diskdrake/interactive.pm_.c:809
+#: ../../diskdrake/interactive.pm_.c:819
msgid "Give a file name"
msgstr "Assegna un nome di file"
-#: ../../diskdrake/interactive.pm_.c:812
+#: ../../diskdrake/interactive.pm_.c:822
msgid "File already used by another loopback, choose another one"
msgstr "File già usato da un altro loopback, selezionane uno diverso"
-#: ../../diskdrake/interactive.pm_.c:813
+#: ../../diskdrake/interactive.pm_.c:823
msgid "File already exists. Use it?"
msgstr "Il file esiste già. Lo uso?"
-#: ../../diskdrake/interactive.pm_.c:836
+#: ../../diskdrake/interactive.pm_.c:846
msgid "Mount options"
msgstr "Opzioni di mount"
-#: ../../diskdrake/interactive.pm_.c:843
+#: ../../diskdrake/interactive.pm_.c:853
msgid "Various"
msgstr "Varie"
-#: ../../diskdrake/interactive.pm_.c:907 ../../standalone/drakfloppy_.c:103
+#: ../../diskdrake/interactive.pm_.c:917 ../../standalone/drakfloppy_.c:103
msgid "device"
msgstr "dispositivo"
-#: ../../diskdrake/interactive.pm_.c:908
+#: ../../diskdrake/interactive.pm_.c:918
msgid "level"
msgstr "livello"
-#: ../../diskdrake/interactive.pm_.c:909
+#: ../../diskdrake/interactive.pm_.c:919
msgid "chunk size"
msgstr "dimensione del blocco"
-#: ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:934
msgid "Be careful: this operation is dangerous."
msgstr "Fai attenzione: questa operazione è pericolosa."
-#: ../../diskdrake/interactive.pm_.c:939
+#: ../../diskdrake/interactive.pm_.c:949
msgid "What type of partitioning?"
msgstr "Che tipo di partizionamento?"
-#: ../../diskdrake/interactive.pm_.c:955
-#, fuzzy, c-format
+#: ../../diskdrake/interactive.pm_.c:965
+#, c-format
msgid "The package %s is needed. Install it?"
-msgstr "Il pacchetto %s deve essere installato. Volete installarlo?"
+msgstr "Il pacchetto %s è necessario. Volete installarlo?"
-#: ../../diskdrake/interactive.pm_.c:969
+#: ../../diskdrake/interactive.pm_.c:979
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -2015,7 +2040,7 @@ msgstr ""
"Nel caso tu usassi LILO non funzionerebbe, o se non usassi LILO non ti "
"servirebbe /boot"
-#: ../../diskdrake/interactive.pm_.c:973
+#: ../../diskdrake/interactive.pm_.c:983
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -2027,7 +2052,7 @@ msgstr ""
"partizione /boot. Se hai intenzione di usare LILO come boot manager, "
"accertati di creare una partizione /boot"
-#: ../../diskdrake/interactive.pm_.c:979
+#: ../../diskdrake/interactive.pm_.c:989
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
@@ -2037,49 +2062,49 @@ msgstr ""
"Nessun bootloader può gestirla senza una partizione /boot.\n"
"Perciò accertati di aggiungere una partizione /boot."
-#: ../../diskdrake/interactive.pm_.c:999
+#: ../../diskdrake/interactive.pm_.c:1009
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr ""
"La tabella delle partizioni del disco %s sta per essere scritta su disco!"
-#: ../../diskdrake/interactive.pm_.c:1003
+#: ../../diskdrake/interactive.pm_.c:1013
msgid "You'll need to reboot before the modification can take place"
msgstr ""
"Sarà necessario riavviare il sistema prima che le modifiche diventino "
"effettive!"
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1024
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr ""
"Dopo aver formattato la partizione %s, tutti i dati su questa partizione "
"saranno persi"
-#: ../../diskdrake/interactive.pm_.c:1016
+#: ../../diskdrake/interactive.pm_.c:1026
msgid "Formatting"
msgstr "Formattazione"
-#: ../../diskdrake/interactive.pm_.c:1017
+#: ../../diskdrake/interactive.pm_.c:1027
#, c-format
msgid "Formatting loopback file %s"
msgstr "Formattazione file di loopback %s"
-#: ../../diskdrake/interactive.pm_.c:1018
-#: ../../install_steps_interactive.pm_.c:476
+#: ../../diskdrake/interactive.pm_.c:1028
+#: ../../install_steps_interactive.pm_.c:459
#, c-format
msgid "Formatting partition %s"
msgstr "Formattazione partizione %s"
-#: ../../diskdrake/interactive.pm_.c:1029
+#: ../../diskdrake/interactive.pm_.c:1039
msgid "Hide files"
msgstr "Nascondi file"
-#: ../../diskdrake/interactive.pm_.c:1029
+#: ../../diskdrake/interactive.pm_.c:1039
msgid "Move files to the new partition"
msgstr "Sposta i file sulla nuova partizione"
-#: ../../diskdrake/interactive.pm_.c:1030
+#: ../../diskdrake/interactive.pm_.c:1040
#, c-format
msgid ""
"Directory %s already contains data\n"
@@ -2088,83 +2113,83 @@ msgstr ""
"La directory %s contiene già dei dati\n"
"(%s)"
-#: ../../diskdrake/interactive.pm_.c:1041
+#: ../../diskdrake/interactive.pm_.c:1051
msgid "Moving files to the new partition"
msgstr "Sto spostando i file sulla nuova partizione"
-#: ../../diskdrake/interactive.pm_.c:1045
+#: ../../diskdrake/interactive.pm_.c:1055
#, c-format
msgid "Copying %s"
msgstr "Sto copiando %s"
-#: ../../diskdrake/interactive.pm_.c:1049
+#: ../../diskdrake/interactive.pm_.c:1059
#, c-format
msgid "Removing %s"
msgstr "Sto cancellando: %s"
-#: ../../diskdrake/interactive.pm_.c:1059
+#: ../../diskdrake/interactive.pm_.c:1069
#, c-format
msgid "partition %s is now known as %s"
msgstr "la partizione %s adesso è nota come %s"
-#: ../../diskdrake/interactive.pm_.c:1080
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1090
+#: ../../diskdrake/interactive.pm_.c:1149
msgid "Device: "
msgstr "Dispositivo: "
-#: ../../diskdrake/interactive.pm_.c:1081
+#: ../../diskdrake/interactive.pm_.c:1091
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "Lettera di drive DOS: %s (solo una supposizione)\n"
-#: ../../diskdrake/interactive.pm_.c:1085
-#: ../../diskdrake/interactive.pm_.c:1093
-#: ../../diskdrake/interactive.pm_.c:1157
+#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1103
+#: ../../diskdrake/interactive.pm_.c:1168
msgid "Type: "
msgstr "Tipo: "
-#: ../../diskdrake/interactive.pm_.c:1089
+#: ../../diskdrake/interactive.pm_.c:1099
msgid "Name: "
msgstr "Nome: "
-#: ../../diskdrake/interactive.pm_.c:1097
+#: ../../diskdrake/interactive.pm_.c:1107
#, c-format
msgid "Start: sector %s\n"
msgstr "Inizia: settore %s\n"
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1108
#, c-format
msgid "Size: %s"
msgstr "Dimensione: %s"
-#: ../../diskdrake/interactive.pm_.c:1100
+#: ../../diskdrake/interactive.pm_.c:1110
#, c-format
msgid ", %s sectors"
msgstr ", %s settori"
-#: ../../diskdrake/interactive.pm_.c:1102
+#: ../../diskdrake/interactive.pm_.c:1112
#, c-format
msgid "Cylinder %d to %d\n"
msgstr "Da cilindro %d a %d\n"
-#: ../../diskdrake/interactive.pm_.c:1103
+#: ../../diskdrake/interactive.pm_.c:1113
msgid "Formatted\n"
msgstr "Formattato\n"
-#: ../../diskdrake/interactive.pm_.c:1104
+#: ../../diskdrake/interactive.pm_.c:1114
msgid "Not formatted\n"
msgstr "Non formattato\n"
-#: ../../diskdrake/interactive.pm_.c:1105
+#: ../../diskdrake/interactive.pm_.c:1115
msgid "Mounted\n"
msgstr "In linea\n"
-#: ../../diskdrake/interactive.pm_.c:1106
+#: ../../diskdrake/interactive.pm_.c:1116
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1108
+#: ../../diskdrake/interactive.pm_.c:1118
#, c-format
msgid ""
"Loopback file(s):\n"
@@ -2173,7 +2198,7 @@ msgstr ""
"File di loopback:\n"
" %s\n"
-#: ../../diskdrake/interactive.pm_.c:1109
+#: ../../diskdrake/interactive.pm_.c:1119
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -2181,27 +2206,27 @@ msgstr ""
"Partizione di boot predefinita\n"
" (per boot MS-DOS, non per lilo)\n"
-#: ../../diskdrake/interactive.pm_.c:1111
+#: ../../diskdrake/interactive.pm_.c:1121
#, c-format
msgid "Level %s\n"
msgstr "Livello %s\n"
-#: ../../diskdrake/interactive.pm_.c:1112
+#: ../../diskdrake/interactive.pm_.c:1122
#, c-format
msgid "Chunk size %s\n"
msgstr "Dimensione del blocco %s\n"
-#: ../../diskdrake/interactive.pm_.c:1113
+#: ../../diskdrake/interactive.pm_.c:1123
#, c-format
msgid "RAID-disks %s\n"
msgstr "Dischi RAID %s\n"
-#: ../../diskdrake/interactive.pm_.c:1115
+#: ../../diskdrake/interactive.pm_.c:1125
#, c-format
msgid "Loopback file name: %s"
msgstr "Nome file di loopback: %s"
-#: ../../diskdrake/interactive.pm_.c:1118
+#: ../../diskdrake/interactive.pm_.c:1128
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -2213,7 +2238,7 @@ msgstr ""
"una partizione Driver, è meglio\n"
"non toccarla.\n"
-#: ../../diskdrake/interactive.pm_.c:1121
+#: ../../diskdrake/interactive.pm_.c:1131
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2225,59 +2250,63 @@ msgstr ""
"viene utilizzata per effettuare\n"
"il dual-boot del tuo sistema.\n"
-#: ../../diskdrake/interactive.pm_.c:1140
+#: ../../diskdrake/interactive.pm_.c:1150
+msgid "Read-only"
+msgstr ""
+
+#: ../../diskdrake/interactive.pm_.c:1151
#, c-format
msgid "Size: %s\n"
msgstr "Dimensione: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1141
+#: ../../diskdrake/interactive.pm_.c:1152
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Geometria: %s cilindri, %s testine, %s settori\n"
-#: ../../diskdrake/interactive.pm_.c:1142
+#: ../../diskdrake/interactive.pm_.c:1153
msgid "Info: "
msgstr "Info: "
-#: ../../diskdrake/interactive.pm_.c:1143
+#: ../../diskdrake/interactive.pm_.c:1154
#, c-format
msgid "LVM-disks %s\n"
msgstr "Dischi LVM %s\n"
-#: ../../diskdrake/interactive.pm_.c:1144
+#: ../../diskdrake/interactive.pm_.c:1155
#, c-format
msgid "Partition table type: %s\n"
msgstr "Tipo tabella delle partizioni: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1145
-#, fuzzy, c-format
+#: ../../diskdrake/interactive.pm_.c:1156
+#, c-format
msgid "on channel %d id %d\n"
-msgstr "su bus %d id %d\n"
+msgstr "sul canale %d id %d\n"
-#: ../../diskdrake/interactive.pm_.c:1175
+#: ../../diskdrake/interactive.pm_.c:1186
msgid "Filesystem encryption key"
msgstr "Chiave di crittazione del filesystem"
-#: ../../diskdrake/interactive.pm_.c:1176
+#: ../../diskdrake/interactive.pm_.c:1187
msgid "Choose your filesystem encryption key"
msgstr "Scegliete la chiave di crittazione del filesystem"
-#: ../../diskdrake/interactive.pm_.c:1179
+#: ../../diskdrake/interactive.pm_.c:1190
#, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr ""
"Questa chiave di crittazione è troppo semplice (deve essere lunga almeno %d "
"caratteri)"
-#: ../../diskdrake/interactive.pm_.c:1180
+#: ../../diskdrake/interactive.pm_.c:1191
msgid "The encryption keys do not match"
msgstr "Le chiavi di crittazione non corrispondono"
-#: ../../diskdrake/interactive.pm_.c:1183
+#: ../../diskdrake/interactive.pm_.c:1194
msgid "Encryption key"
msgstr "Chiave di crittazione"
-#: ../../diskdrake/interactive.pm_.c:1184
+#: ../../diskdrake/interactive.pm_.c:1195
msgid "Encryption key (again)"
msgstr "Chiave di crittazione (di nuovo)"
@@ -2292,59 +2321,56 @@ msgstr "Per favore clicca su un supporto"
#: ../../diskdrake/smbnfs_gtk.pm_.c:162
#, c-format
msgid "Can't login using username %s (bad password?)"
-msgstr ""
+msgstr "Non posso effettuare il login con il nome %s (password errata?)"
#: ../../diskdrake/smbnfs_gtk.pm_.c:166 ../../diskdrake/smbnfs_gtk.pm_.c:175
-#, fuzzy
msgid "Domain Authentication Required"
-msgstr "Autenticazione"
+msgstr "Richiesta autenticazione del dominio"
#: ../../diskdrake/smbnfs_gtk.pm_.c:167
-#, fuzzy
msgid "Another one"
-msgstr "Internet"
+msgstr "Un'altra"
#: ../../diskdrake/smbnfs_gtk.pm_.c:167
-#, fuzzy
msgid "Which username"
-msgstr "Nome utente"
+msgstr "Quale nome utente"
#: ../../diskdrake/smbnfs_gtk.pm_.c:176
msgid ""
"Please enter your username, password and domain name to access this host."
msgstr ""
+"Per favore digitate il vostro nome utente, la password e il nome di dominio\n"
+"per poter accedere a questo host."
-#: ../../diskdrake/smbnfs_gtk.pm_.c:178
-#, fuzzy
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3527
msgid "Username"
msgstr "Nome utente"
#: ../../diskdrake/smbnfs_gtk.pm_.c:180
-#, fuzzy
msgid "Domain"
-msgstr "Dominio NIS"
+msgstr "Dominio"
#: ../../diskdrake/smbnfs_gtk.pm_.c:200
msgid "Search servers"
msgstr "Ricerca server"
-#: ../../fs.pm_.c:552 ../../fs.pm_.c:562 ../../fs.pm_.c:566 ../../fs.pm_.c:570
-#: ../../fs.pm_.c:574 ../../fs.pm_.c:578
+#: ../../fs.pm_.c:544 ../../fs.pm_.c:554 ../../fs.pm_.c:558 ../../fs.pm_.c:562
+#: ../../fs.pm_.c:566 ../../fs.pm_.c:570
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s formattazione di %s fallita"
-#: ../../fs.pm_.c:615
+#: ../../fs.pm_.c:607
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "Non so come formattare %s in tipo %s"
-#: ../../fs.pm_.c:687 ../../fs.pm_.c:731
+#: ../../fs.pm_.c:681 ../../fs.pm_.c:724
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr "il mount della partizione %s sulla directory %s non è riuscito"
-#: ../../fs.pm_.c:746 ../../partition_table.pm_.c:602
+#: ../../fs.pm_.c:739 ../../partition_table.pm_.c:598
#, c-format
msgid "error unmounting %s: %s"
msgstr "errore in fase di unmount di %s: %s"
@@ -2361,285 +2387,336 @@ msgstr "con /usr"
msgid "server"
msgstr "server"
-#: ../../fsedit.pm_.c:472
+#: ../../fsedit.pm_.c:240
+#, fuzzy, c-format
+msgid ""
+"I can't read the partition table of device %s, it's too corrupted for me :(\n"
+"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
+"The other solution is to not allow DrakX to modify the partition table.\n"
+"(the error is %s)\n"
+"\n"
+"Do you agree to loose all the partitions?\n"
+msgstr ""
+"Non posso leggere la tua tabella delle partizioni, è troppo corrotta \n"
+"per me :( . Posso provare a continuare a svuotare le partizioni danneggiate\n"
+"(TUTTI I DATI verranno persi!). L'altra soluzione è di impedire a DrakX di\n"
+"modificare la tabella delle partizioni. (L'errore è %s)\n"
+"\n"
+"Ti va bene liberare tutte le partizioni?\n"
+
+#: ../../fsedit.pm_.c:501
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr "Non puoi usare JFS per partizioni più piccole di 16 Mb"
-#: ../../fsedit.pm_.c:473
+#: ../../fsedit.pm_.c:502
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr "Non puoi usare ReiserFS per partizioni più piccole di 32MB"
-#: ../../fsedit.pm_.c:492
+#: ../../fsedit.pm_.c:521
msgid "Mount points must begin with a leading /"
msgstr "I punti di mount devono iniziare con /"
-#: ../../fsedit.pm_.c:493
+#: ../../fsedit.pm_.c:522
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "C'è già una partizione con il punto di mount %s\n"
-#: ../../fsedit.pm_.c:497
+#: ../../fsedit.pm_.c:526
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr "Non puoi usare un Volume Logico LVM per il punto di mount %s"
-#: ../../fsedit.pm_.c:499
+#: ../../fsedit.pm_.c:528
msgid "This directory should remain within the root filesystem"
msgstr "Questa directory dovrebbe rimanere all'interno del filesystem root"
-#: ../../fsedit.pm_.c:501
-#, fuzzy
+#: ../../fsedit.pm_.c:530
msgid ""
"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
"point\n"
-msgstr "è un vero filesystem (ext2, reiserfs) per questa punto di mount\n"
+msgstr ""
+"È richiesto un vero filesystem (ext2/ext3, reiserfs, xfs o jfs) per questo "
+"punto di mount\n"
-#: ../../fsedit.pm_.c:503
+#: ../../fsedit.pm_.c:532
#, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr "Non puoi usare un filesystem crittato per il punto di mount %s"
-#: ../../fsedit.pm_.c:570
+#: ../../fsedit.pm_.c:599
msgid "Not enough free space for auto-allocating"
msgstr "Non c'è abbastanza spazio libero per l'allocazione automatica"
-#: ../../fsedit.pm_.c:572
+#: ../../fsedit.pm_.c:601
msgid "Nothing to do"
msgstr "Nulla da fare"
-#: ../../fsedit.pm_.c:665
+#: ../../fsedit.pm_.c:694
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Errore aprendo %s in scrittura: %s"
-#: ../../fsedit.pm_.c:750
+#: ../../harddrake/sound.pm_.c:155
+msgid "No alternative driver"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:156
+#, c-format
+msgid "There's no known OSS/ALSA alternative driver for your sound card (%s)"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:158
+#, fuzzy
+msgid "Sound configuration"
+msgstr "Configurazione di CUPS"
+
+#: ../../harddrake/sound.pm_.c:159
+#, c-format
msgid ""
-"An error occurred - no valid devices were found on which to create new "
-"filesystems. Please check your hardware for the cause of this problem"
+"Here you can select an alternative driver (either OSS or ALSA) for your "
+"sound card (%s)"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:162
+#, fuzzy
+msgid "Driver:"
+msgstr "Driver"
+
+#: ../../harddrake/sound.pm_.c:173
+#, fuzzy
+msgid "No known driver"
+msgstr "Driver X"
+
+#: ../../harddrake/sound.pm_.c:174
+#, c-format
+msgid "There's no known driver for your sound card (%s)"
msgstr ""
-"Si è verificato un errore - non è stato trovata alcuna unità valida su cui "
-"creare nuovi filesystem. Per favore controlla il tuo hardware per stabilire "
-"la causa di questo problema"
-#: ../../fsedit.pm_.c:773
-msgid "You don't have any partitions!"
-msgstr "Non hai alcuna partizione!"
+#: ../../harddrake/sound.pm_.c:177
+#, fuzzy
+msgid "Unkown driver"
+msgstr "Modello sconosciuto"
+
+#: ../../harddrake/sound.pm_.c:178
+#, c-format
+msgid ""
+"The \"%s\" driver for your sound card is unlisted\n"
+"\n"
+"Please send the output of the \"lspcidrake -v\" command to\n"
+"<install at mandrakesoft dot com>\n"
+"with subject: unlisted sound driver \"%s\""
+msgstr ""
-#: ../../harddrake/ui.pm_.c:15
+#: ../../harddrake/ui.pm_.c:16
#, fuzzy
msgid "Model"
msgstr "Mouse"
-#: ../../harddrake/ui.pm_.c:15
+#: ../../harddrake/ui.pm_.c:16
#, fuzzy
msgid "hard disk model"
msgstr "Memoria della scheda (DMA)"
-#: ../../harddrake/ui.pm_.c:16
+#: ../../harddrake/ui.pm_.c:17
#, fuzzy
msgid "Channel"
msgstr "Annulla"
-#: ../../harddrake/ui.pm_.c:16
+#: ../../harddrake/ui.pm_.c:17
msgid "EIDE/SCSI channel"
msgstr ""
-#: ../../harddrake/ui.pm_.c:18
+#: ../../harddrake/ui.pm_.c:19
msgid "Bus"
-msgstr ""
+msgstr "Bus"
-#: ../../harddrake/ui.pm_.c:19
+#: ../../harddrake/ui.pm_.c:20
msgid ""
"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
msgstr ""
-#: ../../harddrake/ui.pm_.c:20
-#, fuzzy
+#: ../../harddrake/ui.pm_.c:21
msgid "Module"
-msgstr "Mouse"
+msgstr "Modulo"
-#: ../../harddrake/ui.pm_.c:20
+#: ../../harddrake/ui.pm_.c:21
msgid "the module of the GNU/Linux kernel that handle that device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:21
+#: ../../harddrake/ui.pm_.c:22
msgid "Media class"
msgstr ""
-#: ../../harddrake/ui.pm_.c:21
+#: ../../harddrake/ui.pm_.c:22
msgid "class of hardware device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:22 ../../printerdrake.pm_.c:1404
+#: ../../harddrake/ui.pm_.c:23 ../../printerdrake.pm_.c:1517
msgid "Description"
msgstr "Descrizione"
-#: ../../harddrake/ui.pm_.c:22
+#: ../../harddrake/ui.pm_.c:23
msgid "this field describe the device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:24
-#, fuzzy
+#: ../../harddrake/ui.pm_.c:25
msgid "Bus identification"
-msgstr "Autenticazione"
+msgstr "Identificazione bus"
-#: ../../harddrake/ui.pm_.c:25
+#: ../../harddrake/ui.pm_.c:26
msgid ""
-"- PCI and USB devices : this list the vendor, device, subvendor and "
-"subdevice PCI/USB ids"
+"- PCI and USB devices: this list the vendor, device, subvendor and subdevice "
+"PCI/USB ids"
msgstr ""
-#: ../../harddrake/ui.pm_.c:27
+#: ../../harddrake/ui.pm_.c:28
msgid "Location on the bus"
msgstr ""
-#: ../../harddrake/ui.pm_.c:28
+#: ../../harddrake/ui.pm_.c:29
msgid ""
"- pci devices: this gives the PCI slot, device and function of this card\n"
"- eide devices: the device is either a slave or a master device\n"
"- scsi devices: the scsi bus and the scsi device ids"
msgstr ""
-#: ../../harddrake/ui.pm_.c:31
+#: ../../harddrake/ui.pm_.c:32
#, fuzzy
msgid "Old device file"
msgstr "Scegli file"
-#: ../../harddrake/ui.pm_.c:32
+#: ../../harddrake/ui.pm_.c:33
msgid "old static device name used in dev package"
msgstr ""
-#: ../../harddrake/ui.pm_.c:33
+#: ../../harddrake/ui.pm_.c:34
#, fuzzy
msgid "New devfs device"
msgstr "Dispositivo di gateway"
-#: ../../harddrake/ui.pm_.c:34
+#: ../../harddrake/ui.pm_.c:35
msgid "new dinamic device name generated by incore kernel devfs"
msgstr ""
-#: ../../harddrake/ui.pm_.c:35
+#: ../../harddrake/ui.pm_.c:36
#, fuzzy
msgid "Number of buttons"
msgstr "2 pulsanti"
-#: ../../harddrake/ui.pm_.c:36
+#: ../../harddrake/ui.pm_.c:37
msgid "the vendor name of the device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:60
+#: ../../harddrake/ui.pm_.c:38
#, fuzzy
+msgid "Alternative drivers"
+msgstr "Pagina di prova alternativa (A4)"
+
+#: ../../harddrake/ui.pm_.c:39
+msgid "the list of alternative drivers for this sound card"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:63
msgid "/_Quit"
-msgstr "Esci"
+msgstr "/_Esci"
-#: ../../harddrake/ui.pm_.c:61 ../../harddrake/ui.pm_.c:62
-#: ../../harddrake/ui.pm_.c:68 ../../standalone/logdrake_.c:110
+#: ../../harddrake/ui.pm_.c:64 ../../harddrake/ui.pm_.c:65
+#: ../../harddrake/ui.pm_.c:71 ../../standalone/logdrake_.c:110
msgid "/_Help"
msgstr "/_Guida"
-#: ../../harddrake/ui.pm_.c:62
-#, fuzzy
+#: ../../harddrake/ui.pm_.c:65
msgid "/_Help..."
-msgstr "/_Guida"
+msgstr "/_Aiuto"
-#: ../../harddrake/ui.pm_.c:63
+#: ../../harddrake/ui.pm_.c:66
msgid "Harddrake help"
msgstr ""
-#: ../../harddrake/ui.pm_.c:64
+#: ../../harddrake/ui.pm_.c:67
msgid ""
"Description of the fields:\n"
"\n"
msgstr ""
-#: ../../harddrake/ui.pm_.c:68
-#, fuzzy
+#: ../../harddrake/ui.pm_.c:71
msgid "/_About..."
-msgstr "/Guida/_Informazioni su..."
+msgstr "/_Informazioni su..."
-#: ../../harddrake/ui.pm_.c:69
+#: ../../harddrake/ui.pm_.c:72
msgid "About Harddrake"
msgstr ""
-#: ../../harddrake/ui.pm_.c:70
+#: ../../harddrake/ui.pm_.c:73
msgid ""
"This is HardDrake, a Mandrake hardware configuration tool.\n"
"Version:"
msgstr ""
-#: ../../harddrake/ui.pm_.c:71
-#, fuzzy
+#: ../../harddrake/ui.pm_.c:74
msgid "Author:"
-msgstr "Investgazione automatica"
+msgstr "Autore:"
-#: ../../harddrake/ui.pm_.c:83
-#, fuzzy
+#: ../../harddrake/ui.pm_.c:86
msgid "Harddrake2 version "
-msgstr "Ricerca del disco fisso"
+msgstr "Versione di Harddrake2 "
-#: ../../harddrake/ui.pm_.c:91
-#, fuzzy
+#: ../../harddrake/ui.pm_.c:103
msgid "Detected hardware"
-msgstr "Vedi informazioni hardware"
+msgstr "Hardware identificato"
-#: ../../harddrake/ui.pm_.c:92
-#, fuzzy
-msgid "Configure module"
-msgstr "Configura mouse"
+#: ../../harddrake/ui.pm_.c:105
+msgid "Information"
+msgstr "Informazioni"
-#: ../../harddrake/ui.pm_.c:92
-#, fuzzy
-msgid "Informations"
-msgstr "Mostra informazioni"
+#: ../../harddrake/ui.pm_.c:108
+msgid "Configure module"
+msgstr "Configura modulo"
-#: ../../harddrake/ui.pm_.c:92
+#: ../../harddrake/ui.pm_.c:109
msgid "Run config tool"
msgstr ""
-#: ../../harddrake/ui.pm_.c:96
-#, fuzzy
+#: ../../harddrake/ui.pm_.c:113
msgid "Detection in progress"
-msgstr "rilevato sulla porta: %s"
+msgstr "Identificazione in corso"
-#: ../../harddrake/ui.pm_.c:96 ../../interactive.pm_.c:388
+#: ../../harddrake/ui.pm_.c:113 ../../interactive.pm_.c:391
msgid "Please wait"
msgstr "Attendere prego"
-#: ../../harddrake/ui.pm_.c:139
+#: ../../harddrake/ui.pm_.c:156
msgid "primary"
msgstr ""
-#: ../../harddrake/ui.pm_.c:139
-#, fuzzy
+#: ../../harddrake/ui.pm_.c:156
msgid "secondary"
-msgstr "%d secondi"
+msgstr "secondario"
-#: ../../harddrake/ui.pm_.c:176
+#: ../../harddrake/ui.pm_.c:197
msgid "You can configure each parameter of the module here."
msgstr ""
-#: ../../harddrake/ui.pm_.c:192
-#, fuzzy, c-format
+#: ../../harddrake/ui.pm_.c:213
+#, c-format
msgid "Running \"%s\" ..."
-msgstr "Sto rimuovendo la stampante \"%s\" ..."
+msgstr "Sto eseguendo \"%s\" ..."
#: ../../harddrake/v4l.pm_.c:15 ../../harddrake/v4l.pm_.c:65
-#, fuzzy
msgid "Auto-detect"
-msgstr "Usa il riconoscimento automatico"
+msgstr "Riconoscimento automatico"
#: ../../harddrake/v4l.pm_.c:66 ../../harddrake/v4l.pm_.c:186
-#, fuzzy
msgid "Unknown|Generic"
-msgstr "Generico"
+msgstr "Sconosciuto|Generico"
#: ../../harddrake/v4l.pm_.c:98
msgid "Unknown|CPH05X (bt878) [many vendors]"
-msgstr ""
+msgstr "CPH05X (bt878) sconosciuto [molti produttori]"
#: ../../harddrake/v4l.pm_.c:99
msgid "Unknown|CPH06X (bt878) [many vendors]"
-msgstr ""
+msgstr "CPH05X (bt878) sconosciuto [molti produttori]"
#: ../../harddrake/v4l.pm_.c:210
msgid ""
@@ -2648,61 +2725,64 @@ msgid ""
"If your card is misdetected, you can force the right tuner and card types "
"here. Just select your tv card parameters if needed"
msgstr ""
+"Per la maggior parte delle schede sintonizzatore TV moderne, il modulo bttv "
+"del kernel GNU/Linux si limita\n"
+"a identificare automaticamente i parametri corretti. Se la vostra scheda non "
+"è stata identificata correttamente, potete indicare il tipo giusto di scheda "
+"e sintonizzatore qui. Dovete solo selezionare i parametri della vostra "
+"scheda TV se necessario."
#: ../../harddrake/v4l.pm_.c:213
-#, fuzzy
-msgid "Card model :"
-msgstr "Memoria della scheda (DMA)"
+msgid "Card model:"
+msgstr "Tipo di scheda:"
#: ../../harddrake/v4l.pm_.c:214
-#, fuzzy
-msgid "Tuner type :"
-msgstr "Cambia tipo"
+msgid "Tuner type:"
+msgstr "Tipo di sintonizzatore:"
#: ../../harddrake/v4l.pm_.c:215
-msgid "Number of capture buffers :"
-msgstr ""
+msgid "Number of capture buffers:"
+msgstr "Numero dei buffer di cattura:"
#: ../../harddrake/v4l.pm_.c:215
msgid "number of capture buffers for mmap'ed capture"
-msgstr ""
+msgstr "numero dei buffer di cattura per una cattura di tipo mmap"
#: ../../harddrake/v4l.pm_.c:217
-#, fuzzy
-msgid "PLL setting :"
-msgstr "carica configurazione"
+msgid "PLL setting:"
+msgstr "Impostazioni PLL:"
#: ../../harddrake/v4l.pm_.c:218
-msgid "Radio support :"
-msgstr ""
+msgid "Radio support:"
+msgstr "Supporto radio:"
#: ../../harddrake/v4l.pm_.c:218
msgid "enable radio support"
msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/it/drakx-help.xml
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/it/drakx-chapter.xml
#: ../../help.pm_.c:13
msgid ""
"GNU/Linux is a multiuser system, and this means that each user can have his\n"
"own preferences, his own files and so on. You can read the ``User Guide''\n"
"to learn more. But unlike \"root\", which is the administrator, the users\n"
-"you will add here will not be entitled to change anything except their own\n"
-"files and their own configuration. You will have to create at least one\n"
-"regular user for yourself. That account is where you should log in for\n"
-"routine use. Although it is very practical to log in as \"root\" everyday,\n"
-"it may also be very dangerous! The slightest mistake could mean that your\n"
-"system would not work any more. If you make a serious mistake as a regular\n"
-"user, you may only lose some information, but not the entire system.\n"
+"you add here will not be entitled to change anything except their own files\n"
+"and their own configuration. You will have to create at least one regular\n"
+"user for yourself. That account is where you should log in for routine use.\n"
+"Although it is very practical to log in as \"root\" everyday, it may also\n"
+"be very dangerous! The slightest mistake could mean that your system would\n"
+"not work any more. If you make a serious mistake as a regular user, you may\n"
+"only lose some information, but not the entire system.\n"
"\n"
"First, you have to enter your real name. This is not mandatory, of course -\n"
"as you can actually enter whatever you want. DrakX will then take the first\n"
"word you have entered in the box and will bring it over to the \"User\n"
"name\". This is the name this particular user will use to log onto the\n"
"system. You can change it. You then have to enter a password here. A\n"
-"non-privileged (regular) user's password is not as crucial as \"root\"' one\n"
-"from a security point of view, but that is no reason to neglect it: after\n"
-"all, your files are at risk.\n"
+"non-privileged (regular) user's password is not as crucial as the \"root\"'\n"
+"one from a security point of view, but that is no reason to neglect it:\n"
+"after all, your files are at risk.\n"
"\n"
"If you click on \"Accept user\", you can then add as many as you want. Add\n"
"a user for each one of your friends: your father or your sister, for\n"
@@ -2743,7 +2823,7 @@ msgstr ""
"quell'utente (come opzione predefinita è bash)."
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/it/drakx-help.xml
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/it/drakx-chapter.xml
#: ../../help.pm_.c:41
msgid ""
"Listed above are the existing Linux partitions detected on your hard drive.\n"
@@ -2800,17 +2880,17 @@ msgstr ""
"\n"
" * \"a\" significa \"disco rigido master sul controller IDE primario\";\n"
"\n"
-" * \"b\" means \"disco rigido slave sul controller IDE primario\";\n"
+" * \"b\" significa \"disco rigido slave sul controller IDE primario\";\n"
"\n"
-" * \"c\" means \"disco rigido master sul controller IDE secondario\";\n"
+" * \"c\" significa \"disco rigido master sul controller IDE secondario\";\n"
"\n"
-" * \"d\" means \"disco rigido slave sul controller IDE secondario\".\n"
+" * \"d\" significa \"disco rigido slave sul controller IDE secondario\".\n"
"\n"
"Per i dischi rigidi di tipo SCSI, invece, una \"a\" significa \"ID SCSI\n"
"più\", una \"b\" significa \"ID SCSI superiore ad a\", etc."
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/it/drakx-help.xml
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/it/drakx-chapter.xml
#: ../../help.pm_.c:72
msgid ""
"The Mandrake Linux installation is spread out over several CD-ROMs. DrakX\n"
@@ -2823,7 +2903,7 @@ msgstr ""
"inserire quello corretto."
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/it/drakx-help.xml
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/it/drakx-chapter.xml
#: ../../help.pm_.c:77
msgid ""
"It is now time to specify which programs you wish to install on your\n"
@@ -2853,7 +2933,7 @@ msgid ""
"to have a graphical workstation!\n"
"\n"
"Moving the mouse cursor over a group name will display a short explanatory\n"
-"text about that group. If you deselect all groups when performing a regular\n"
+"text about that group. If you unselect all groups when performing a regular\n"
"installation (by opposition to an upgrade), a dialog will pop up proposing\n"
"different options for a minimal installation:\n"
"\n"
@@ -2931,13 +3011,13 @@ msgstr ""
"sistema esistente."
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/it/drakx-help.xml
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/it/drakx-chapter.xml
#: ../../help.pm_.c:128
msgid ""
-"Finally, depending on whether or not you selected individual packages, you\n"
-"will be presented a tree containing all packages classified by groups and\n"
-"subgroups. While browsing the tree, you can select entire groups,\n"
-"subgroups, or individual packages.\n"
+"Finally, depending on whether or not you chose to be able to select\n"
+"individual packages, you will be presented a tree containing all packages\n"
+"classified by groups and subgroups. While browsing the tree, you can select\n"
+"entire groups, subgroups, or individual packages.\n"
"\n"
"Whenever you select a package on the tree, a description appears on the\n"
"right. When your selection is finished, click the \"Install\" button which\n"
@@ -2981,10 +3061,10 @@ msgstr ""
"devono essere installati e alla velocità del vostro hardware, l'attesa\n"
"potrebbe anche essere lunga. Una stima del tempo richiesto per finire\n"
"l'installazione è visibile sullo schermo, in questo modo potrete sapere se\n"
-"avete tempo a sufficienza per godervi una tazza di caffe.\n"
+"avete tempo a sufficienza per godervi una tazza di caffé.\n"
"\n"
"!! Se avete selezionato un pacchetto che offre un servizio come server\n"
-"(intenzionalmente, oppure perche faceva parte di un gruppo), vi verrà\n"
+"(intenzionalmente, oppure perché faceva parte di un gruppo), vi verrà\n"
"chiesta conferma riguardo una sua effettiva installazione. Come opzione\n"
"predefinita, in Mandrake Linux tutti i servizi installati vengono avviati\n"
"automaticamente al momento del boot. Anche se si tratta di servizi sicuri\n"
@@ -2999,7 +3079,7 @@ msgstr ""
"disabilitare la finestra di dialogo che compare tutte le volte che il\n"
"programma di installazione seleziona automaticamente uno o più pacchetti.\n"
"Il programma determina in modo automatico, infatti, quali sono i pacchetti\n"
-"che sono indispensabili a un dato pacchetto (''dipendenze'') perche\n"
+"che sono indispensabili a un dato pacchetto (''dipendenze'') perché\n"
"quest'ultimo possa essere installato con successo.\n"
"\n"
"Il piccolo dischetto floppy in fondo alla lista vi permette di caricare una\n"
@@ -3010,14 +3090,14 @@ msgstr ""
"creare questo dischetto."
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/it/drakx-help.xml
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/it/drakx-chapter.xml
#: ../../help.pm_.c:164
msgid ""
-"You are now proposed to set up your Internet/network connection. If you\n"
-"wish to connect your computer to the Internet or to a local network, click\n"
-"\"OK\". The autodetection of network devices and modem will be launched. If\n"
-"this detection fails, uncheck the \"Use auto detection\" box next time. You\n"
-"may also choose not to configure the network, or do it later; in that case,\n"
+"You are now able to set up your Internet/network connection. If you wish to\n"
+"connect your computer to the Internet or to a local network, click \"OK\".\n"
+"The autodetection of network devices and modem will be launched. If this\n"
+"detection fails, uncheck the \"Use auto detection\" box next time. You may\n"
+"also choose not to configure the network, or do it later; in that case,\n"
"simply click the \"Cancel\" button.\n"
"\n"
"Available connections are: traditional modem, ISDN modem, ADSL connection,\n"
@@ -3050,16 +3130,16 @@ msgstr ""
"amministratore di sistema.\n"
"\n"
"Per maggiori dettagli riguardo la configurazione della connessione a\n"
-"Internet potete consultare il relativo capitolo del ''Manuale\n"
-"dell'utente''; in alternativa, potete attendere di aver portato a termine\n"
-"l'installazione e usare poi il programma descritto in tale capitolo per\n"
-"configurare la connessione.\n"
+"Internet potete consultare il relativo capitolo del ''User Guide''; in\n"
+"alternativa, potete attendere di aver portato a termine l'installazione e\n"
+"usare poi il programma descritto in tale capitolo per configurare la\n"
+"connessione.\n"
"\n"
"Se desiderate configurare la rete dopo aver terminato l'installazione, o se\n"
"avete già configurato la vostra rete, cliccate su \"Annulla\"."
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/it/drakx-help.xml
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/it/drakx-chapter.xml
#: ../../help.pm_.c:186
msgid ""
"You may now choose which services you wish to start at boot time.\n"
@@ -3097,12 +3177,12 @@ msgstr ""
"soltanto quelli di cui avete effettivamente bisogno. !!"
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/it/drakx-help.xml
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/it/drakx-chapter.xml
#: ../../help.pm_.c:203
msgid ""
"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
"local time according to the time zone you selected. It is however possible\n"
-"to deactivate this by deselecting \"Hardware clock set to GMT\" so that the\n"
+"to deactivate this by unselecting \"Hardware clock set to GMT\" so that the\n"
"hardware clock is the same as the system clock. This is useful when the\n"
"machine is hosting another operating system like Windows.\n"
"\n"
@@ -3123,14 +3203,14 @@ msgstr ""
"\n"
"L'opzione \"Automatic time synchronization\" provvederà a gestire l'ora\n"
"grazie alla connessione con un server del tempo remoto via Internet.\n"
-"Scegliete un server vicino a voi nella lista che vi verrà mostrata. Perche\n"
+"Scegliete un server vicino a voi nella lista che vi verrà mostrata. Perché\n"
"questa opzione funzioni, naturalmente, dovete disporre di una connessione a\n"
"Internet funzionante. Sulla vostra macchina verrà installato un server del\n"
"tempo che potrà essere usato anche per altre macchine che si trovano sulla\n"
"vostra rete locale."
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/it/drakx-help.xml
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/it/drakx-chapter.xml
#: ../../help.pm_.c:217
msgid ""
"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
@@ -3150,7 +3230,9 @@ msgid ""
"If you can see the message during the test, and answer \"Yes\", then DrakX\n"
"will proceed to the next step. If you cannot see the message, it simply\n"
"means that the configuration was wrong and the test will automatically end\n"
-"after 10 seconds, restoring the screen."
+"after 10 seconds, restoring the screen. Refer then to the Video\n"
+"configuration section of the user guide for more information on how to\n"
+"configure your display."
msgstr ""
"X (che sta per ''X Window System'') è il cuore dell'interfaccia grafica di\n"
"GNU/Linux, sulla quale sono basati tutti gli ambienti grafici che sono\n"
@@ -3170,39 +3252,11 @@ msgstr ""
"Se potete vedere il messaggio e rispondete \"Sì\", allora DrakX passerà\n"
"alla fase successiva. Se non potete vedere il messaggio, significa che la\n"
"configurazione non andava bene, e il test terminerà automaticamente dopo 10\n"
-"secondi, riportandovi alla schermata precedente."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/it/drakx-help.xml
-#: ../../help.pm_.c:237
-msgid ""
-"The first time you try the X configuration, you may not be very satisfied\n"
-"with its display (screen is too small, shifted left or right...). Hence,\n"
-"even if X starts up correctly, DrakX then asks you if the configuration\n"
-"suits you. It will also propose to change it by displaying a list of valid\n"
-"modes it could find, asking you to select one.\n"
-"\n"
-"As a last resort, if you still cannot get X to work, choose \"Change\n"
-"graphics card\", select \"Unlisted card\", and when prompted on which\n"
-"server, choose \"FBDev\". This is a failsafe option which works with any\n"
-"modern graphics card. Then choose \"Test again\" to be sure."
-msgstr ""
-"Può verificarsi il caso che il primo tentativo non sia quello giusto (lo\n"
-"schermo è troppo piccolo, spostato a destra o a sinistra...). Questo è il\n"
-"motivo per cui, anche se X viene lanciato correttamente, DrakX vi chiederà\n"
-"subito dopo se la configurazione va bene, e vi proporrà di cambiarla\n"
-"elencando una lista di modi video validi (in base a quello che ha potuto\n"
-"accertare) chiedendovi di sceglierne uno.\n"
-"\n"
-"Come ultima risorsa, se proprio non riuscite a far funzionare X, scegliete\n"
-"\"Cambia scheda grafica\", selezionate \"Unlisted card\", e quando vi verrà\n"
-"chiesto quale server desiderate utilizzare, scegliete \"FBDev\": si tratta\n"
-"di un'opzione a prova d'errore, che funziona con qualsiasi scheda grafica\n"
-"moderna. Quindi scegliete \"Nuovo test\" per essere sicuri."
+"secondi, riportandovi alla schermata precedente. Consultate la sezione\n"
+"relativa alla configurazione video per avere maggiori informazioni riguardo\n"
+"la configurazione dello schermo."
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/it/drakx-help.xml
-#: ../../help.pm_.c:249
+#: ../../help.pm_.c:239
msgid ""
"Finally, you will be asked whether you want to see the graphical interface\n"
"at boot. Note this question will be asked even if you chose not to test the\n"
@@ -3218,8 +3272,8 @@ msgstr ""
"corretta."
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/it/drakx-help.xml
-#: ../../help.pm_.c:256
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/it/drakx-chapter.xml
+#: ../../help.pm_.c:246
msgid ""
"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
@@ -3239,10 +3293,10 @@ msgid ""
"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
"password, or any other reason.\n"
"\n"
-"When you click on this step, you will be asked to enter a disk inside the\n"
-"drive. The floppy disk you will insert must be empty or contain data which\n"
-"you do not need. You will not have to format it since DrakX will rewrite\n"
-"the whole disk."
+"If you say \"Yes\", you will be asked to enter a disk inside the drive. The\n"
+"floppy disk you will insert must be empty or contain data which you do not\n"
+"need. You will not have to format it since DrakX will rewrite the whole\n"
+"disk."
msgstr ""
"Il CD-ROM di Mandrake Linux ha una modalità ''salvataggio'' preconfigurata.\n"
"Potete accedervi effettuando il boot dal CD-ROM, premendo il tasto >>F1<<\n"
@@ -3250,17 +3304,18 @@ msgstr ""
"può essere avviato dal CD-ROM, dovete effettuare questa operazione (la\n"
"creazione di un disco di avvio) per almeno due ragioni:\n"
"\n"
-" * DrakX riscriverà il settore di boot (MBR) del vostro disco principale (a\n"
-"meno che voi non usiate un altro gestore del boot), in modo che possiate\n"
-"avviare sia Windows che GNU/Linux, se sul vostro sistema è installato anche\n"
-"Windows. Tuttavia, se in futuro si renderà necessario re-installare\n"
-"Windows, il programma di installazione Microsoft riscriverà il settore di\n"
-"boot, e di conseguenza non sarete più in grado di avviare GNU/Linux!\n"
+" * quando il bootloader verrà installato, DrakX riscriverà il settore di\n"
+"boot (MBR) del vostro disco principale (a meno che voi non usiate un altro\n"
+"gestore del boot), in modo che possiate avviare sia Windows che GNU/Linux,\n"
+"se sul vostro sistema è installato anche Windows. Tuttavia, se in futuro si\n"
+"renderà necessario re-installare Windows, il programma di installazione\n"
+"Microsoft riscriverà il settore di boot, e di conseguenza non sarete più in\n"
+"grado di avviare GNU/Linux!\n"
"\n"
" * se si verifica un problema per cui non potete più lanciare GNU/Linux dal\n"
"disco rigido, questo dischetto sarà l'unico mezzo per avviare GNU/Linux:\n"
"contiene un buon numero di programmi di amministrazione del sistema per\n"
-"rimettere in sesto un'installazione che ha subito abbia crash per\n"
+"rimettere in sesto un'installazione che ha subito un crash per\n"
"un'interruzione di corrente, uno sfortunato errore di battitura, una\n"
"password dimenticata o qualsiasi altra ragione.\n"
"\n"
@@ -3270,8 +3325,8 @@ msgstr ""
"necessario formattarlo: DrakX riscriverà l'intero disco."
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/it/drakx-help.xml
-#: ../../help.pm_.c:280
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/it/drakx-chapter.xml
+#: ../../help.pm_.c:270
msgid ""
"At this point, you need to choose where you want to install the Mandrake\n"
"Linux operating system on your hard drive. If your hard drive is empty or\n"
@@ -3304,7 +3359,9 @@ msgid ""
"\n"
" * \"Use existing partition\": the wizard has detected one or more existing\n"
"Linux partitions on your hard drive. If you want to use them, choose this\n"
-"option;\n"
+"option. You will then be asked to choose the mount points associated to\n"
+"each of the partitions. The legacy mount points are selected by default,\n"
+"and you should generally keep them.\n"
"\n"
" * \"Use the free space on the Windows; partition\": if Microsoft Windows\n"
"is installed on your hard drive and takes all the space available on it,\n"
@@ -3337,7 +3394,9 @@ msgid ""
" * \"Expert mode\": choose this option if you want to manually partition\n"
"your hard drive. Be careful - it is a powerful but dangerous choice. You\n"
"can very easily lose all your data. Hence, do not choose this unless you\n"
-"know what you are doing."
+"know what you are doing. To know how do use the DiskDrake utility used\n"
+"here, refer to the section ``Managing Your Partitions'' of the ````User\n"
+"Guide''''"
msgstr ""
"A questo punto dovete scegliere dove installare il vostro sistema operativo\n"
"Mandrake Linux sul disco rigido. Se il vostro disco è vuoto, oppure se un\n"
@@ -3373,9 +3432,11 @@ msgstr ""
"\n"
" * \"Usa partizioni esistenti\": l'assistente ha trovato una o più\n"
"partizioni Linux sul vostro disco rigido. Se desiderate usarle scegliete\n"
-"questa opzione.\n"
+"questa opzione. Vi verrà chiesto di scegliere il punto di mount associato a\n"
+"ciascuna partizione. Come opzione predefinita verranno mantenuti i punti di\n"
+"mount precedenti e, in genere, è buona norma non modificarli.\n"
"\n"
-" * \"Usa lo spazio libero nella partizione Windows\": se Microsoft Windows\n"
+" * \"Usaf lo spazio libero nella partizione Windows\": se Microsoft Windows\n"
"è installato sul vostro disco rigido e occupa tutto lo spazio disponibile,\n"
"dovrete creare spazio libero per i dati relativi a Linux. Per farlo potete\n"
"cancellare la vostra partizione Microsoft Windows e i dati che contiene\n"
@@ -3412,11 +3473,14 @@ msgstr ""
"rigido potete scegliere questa opzione. Fate attenzione prima di optare per\n"
"questa soluzione: è potente, ma molto pericolosa. Potreste facilmente\n"
"causare la perdita di tutti i vostri dati. Quindi, non scegliete questa\n"
-"soluzione se non sapete cosa state facendo."
+"soluzione se non sapete cosa state facendo. Per ulteriori informazioni\n"
+"riguardo il funzionamento di DiskDrake, il programma utilizzato a questo\n"
+"punto, consultate la sezione ''Managing Your Partitions'' della ''''User\n"
+"Guide''''"
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/it/drakx-help.xml
-#: ../../help.pm_.c:347
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/it/drakx-chapter.xml
+#: ../../help.pm_.c:341
msgid ""
"There you are. Installation is now complete and your GNU/Linux system is\n"
"ready to use. Just click \"OK\" to reboot the system. You can start\n"
@@ -3457,7 +3521,7 @@ msgstr ""
"Cliccando sul pulsante \"Avanzato\" (solo in modalità Esperto) avrete altri\n"
"due pulsanti a vostra disposizione:\n"
"\n"
-" * \"Crea il floppy di auto installazione\": per creare un floppy di\n"
+" * \"Crea il floppy di installazione automatica\": per creare un floppy di\n"
"installazione che permette di eseguire automaticamente un' installazione\n"
"completa, del tutto simile a quella che avete appena finito di configurare,\n"
"senza che sia necessario l'intervento di un operatore.\n"
@@ -3477,7 +3541,7 @@ msgstr ""
"su un gran numero di macchine dalle caratteristiche simili. Si veda la\n"
"sezione Installazione automatica sul nostro sito web.\n"
"\n"
-" * \"Salva scelta pacchetti\"(*): salva la selezione dei pacchetti\n"
+" * \"Salva scelta pacchetti\" (*): salva la selezione dei pacchetti\n"
"effettuata in precedenza. Al momento di effettuare un'altra installazione,\n"
"potrete inserire il dischetto nel lettore e installare il sistema\n"
"richiamando lo schermo di aiuto (premendo [F1]) e digitando >>linux\n"
@@ -3487,8 +3551,8 @@ msgstr ""
"formattarne uno sotto GNU/Linux digitate \"mformat a:\""
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/it/drakx-help.xml
-#: ../../help.pm_.c:378
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/it/drakx-chapter.xml
+#: ../../help.pm_.c:372
msgid ""
"Any partitions that have been newly defined must be formatted for use\n"
"(formatting means creating a filesystem).\n"
@@ -3541,8 +3605,8 @@ msgstr ""
"danneggiati."
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/it/drakx-help.xml
-#: ../../help.pm_.c:404
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/it/drakx-chapter.xml
+#: ../../help.pm_.c:398
msgid ""
"Your new Mandrake Linux operating system is currently being installed.\n"
"Depending on the number of packages you will be installing and the speed of\n"
@@ -3559,13 +3623,13 @@ msgstr ""
"Abbiate pazienza, per favore."
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/it/drakx-help.xml
-#: ../../help.pm_.c:412
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/it/drakx-chapter.xml
+#: ../../help.pm_.c:406
msgid ""
"At the time you are installing Mandrake Linux, it is likely that some\n"
"packages have been updated since the initial release. Some bugs may have\n"
"been fixed, and security issues solved. To allow you to benefit from these\n"
-"updates, you are now proposed to download them from the Internet. Choose\n"
+"updates, you are now able to download them from the Internet. Choose\n"
"\"Yes\" if you have a working Internet connection, or \"No\" if you prefer\n"
"to install updated packages later.\n"
"\n"
@@ -3590,8 +3654,8 @@ msgstr ""
"su \"Annulla\" per annullare l'operazione."
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/it/drakx-help.xml
-#: ../../help.pm_.c:425
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/it/drakx-chapter.xml
+#: ../../help.pm_.c:419
msgid ""
"Before continuing, you should read carefully the terms of the license. It\n"
"covers the whole Mandrake Linux distribution, and if you do not agree with\n"
@@ -3607,15 +3671,15 @@ msgstr ""
"\"Accetta\"."
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/it/drakx-help.xml
-#: ../../help.pm_.c:432
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/it/drakx-chapter.xml
+#: ../../help.pm_.c:426
msgid ""
"At this point, it is time to choose the security level desired for the\n"
"machine. As a rule of thumb, the more exposed the machine is, and the more\n"
"the data stored in it is crucial, the higher the security level should be.\n"
"However, a higher security level is generally obtained at the expense of\n"
-"easiness of use. Refer to the \"msec\" chapter of the ``Reference Manual''\n"
-"to get more information about the meaning of these levels.\n"
+"ease of use. Refer to the \"msec\" chapter of the ``Reference Manual'' to\n"
+"get more information about the meaning of these levels.\n"
"\n"
"If you do not know what to choose, keep the default option."
msgstr ""
@@ -3630,8 +3694,8 @@ msgstr ""
"Se non sapete cosa scegliere, mantenete l'opzione predefinita."
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/it/drakx-help.xml
-#: ../../help.pm_.c:442
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/it/drakx-chapter.xml
+#: ../../help.pm_.c:436
msgid ""
"At this point, you need to choose which partition(s) will be used for the\n"
"installation of your Mandrake Linux system. If partitions have already been\n"
@@ -3648,26 +3712,26 @@ msgid ""
" * \"Clear all\": this option deletes all partitions on the selected hard\n"
"drive;\n"
"\n"
-" * \"Auto allocate\": this option enables to automatically create \"Ext2\"\n"
-"and swap partitions in free space of your hard drive;\n"
+" * \"Auto allocate\": this option enables to automatically create ext3 and\n"
+"swap partitions in free space of your hard drive;\n"
"\n"
-" * \"More\": gives access to additional features:\n"
+"\"More\": gives access to additional features:\n"
"\n"
-" * \"Save partition table\": saves the partition table to a floppy.\n"
-"Useful for later partition-table recovery if necessary. It is strongly\n"
-"recommended to perform this step;\n"
+" * \"Save partition table\": saves the partition table to a floppy. Useful\n"
+"for later partition-table recovery if necessary. It is strongly recommended\n"
+"to perform this step;\n"
"\n"
-" * \"Restore partition table\": allows to restore a previously saved\n"
+" * \"Restore partition table\": allows to restore a previously saved\n"
"partition table from floppy disk;\n"
"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you\n"
-"can try to recover it using this option. Please be careful and remember\n"
-"that it can fail;\n"
+" * \"Rescue partition table\": if your partition table is damaged, you can\n"
+"try to recover it using this option. Please be careful and remember that it\n"
+"can fail;\n"
"\n"
-" * \"Reload partition table\": discards all changes and loads your\n"
-"initial partition table;\n"
+" * \"Reload partition table\": discards all changes and loads your initial\n"
+"partition table;\n"
"\n"
-" * \"Removable media automounting\": unchecking this option will force\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
"users to manually mount and unmount removable medias such as floppies and\n"
"CD-ROMs.\n"
"\n"
@@ -3695,7 +3759,7 @@ msgid ""
" * Ctrl-m to set the mount point.\n"
"\n"
"To get information about the different filesystem types available, please\n"
-"read the ext2fs chapter from the ``Reference Manual''.\n"
+"read the ext2FS chapter from the ``Reference Manual''.\n"
"\n"
"If you are installing on a PPC machine, you will want to create a small HFS\n"
"``bootstrap'' partition of at least 1MB, which will be used by the yaboot\n"
@@ -3721,8 +3785,8 @@ msgstr ""
"sul disco selezionato.\n"
"\n"
" * \"Alloca automaticamente\": questa opzione vi permette di creare\n"
-"automaticamente partizioni di sistema e di swap nello spazio libero\n"
-"presente sul vostro disco rigido.\n"
+"automaticamente partizioni di sistema e di swap, usando il filesystem\n"
+"\"Ext3\", nello spazio libero presente sul vostro disco rigido.\n"
"\n"
" * \"Ancora\": permette di accedere a funzionalità avanzate:\n"
"\n"
@@ -3772,18 +3836,18 @@ msgstr ""
" * Ctrl-m per impostare il punto di mount.\n"
"\n"
"Per ottenere informazioni in merito ai diversi tipi di filesystem\n"
-"disponibili, consultate il capitolo ext2fs del ''Manuale di riferimento''.\n"
+"disponibili, consultate il capitolo ext2FS del ''Reference Manual''.\n"
"\n"
"Se state effettuando l'installazione su una macchina PPC, sarà necessario\n"
-"creare una piccola partizione HFS di almeno 11Mb, che verrà utilizzata dal\n"
+"creare una piccola partizione HFS di almeno 11MB, che verrà utilizzata dal\n"
"bootloader yaboot. Se decidete di creare una partizione più grande, diciamo\n"
-"sui 50Mb, potrebbe rappresentare un utile deposito dove conservare un\n"
+"sui 50MB, potrebbe rappresentare un utile deposito dove conservare un\n"
"kernel di riserva e immagini di ''ramdisk'' da utilizzare in caso di\n"
"emergenza."
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/it/drakx-help.xml
-#: ../../help.pm_.c:513
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/it/drakx-chapter.xml
+#: ../../help.pm_.c:507
msgid ""
"More than one Microsoft partition has been detected on your hard drive.\n"
"Please choose the one you want to resize in order to install your new\n"
@@ -3833,11 +3897,11 @@ msgstr ""
"\n"
" * \"a\" significa \"disco rigido master sul controller IDE primario\",\n"
"\n"
-" * \"b\" means \"disco rigido slave sul controller IDE primario\";\n"
+" * \"b\" significa \"disco rigido slave sul controller IDE primario\";\n"
"\n"
-" * \"c\" means \"disco rigido master sul controller IDE secondario\";\n"
+" * \"c\" significa \"disco rigido master sul controller IDE secondario\";\n"
"\n"
-" * \"d\" means \"disco rigido slave sul controller IDE secondario\".\n"
+" * \"d\" significa \"disco rigido slave sul controller IDE secondario\".\n"
"\n"
"Per i dischi rigidi di tipo SCSI, invece, una \"a\" significa \"ID SCSI\n"
"più\", una \"b\" significa \"ID SCSI superiore ad a\", etc.\n"
@@ -3846,38 +3910,38 @@ msgstr ""
"sotto Windows (il primo disco o partizione è chiamato \"C:\")."
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/it/drakx-help.xml
-#: ../../help.pm_.c:544
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/it/drakx-chapter.xml
+#: ../../help.pm_.c:538
msgid "Please be patient. This operation can take several minutes."
msgstr ""
"Per favore siate pazienti. Questa operazione può richiedere diversi minuti."
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/it/drakx-help.xml
-#: ../../help.pm_.c:547
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/it/drakx-chapter.xml
+#: ../../help.pm_.c:541
msgid ""
"DrakX now needs to know if you want to perform a default (\"Recommended\")\n"
"installation or if you want to have greater control (\"Expert\"). You can\n"
"also choose to do a new install or an upgrade of an existing Mandrake Linux\n"
"system:\n"
"\n"
-" * \"Install\": completely wipes out the old system. In fact, depending on\n"
-"what currently holds your machine, you will be able to keep some old (Linux\n"
-"or other) partitions unchanged;\n"
+" * \"Install\": completely wipes out the old system, however, depending on\n"
+"what is currently installed on your machine, you may be able to keep some\n"
+"old partitions (Linux or otherwise) unchanged;\n"
"\n"
" * \"Upgrade\": this installation class allows to simply update the\n"
"packages currently installed on your Mandrake Linux system. It keeps the\n"
"current partitions of your hard drives as well as user configurations. All\n"
-"other configuration steps remain available with respect to plain\n"
+"other configuration steps remain available, similar to a normal\n"
"installation;\n"
"\n"
-" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
-"existing Mandrake Linux system while keeping all system configurations\n"
-"unchanged. Adding new packages to the current installation is also\n"
-"possible.\n"
+" * \"Upgrade Packages Only\": this new installation class allows you to\n"
+"upgrade an existing Mandrake Linux system while keeping all system\n"
+"configurations unchanged. Adding new packages to the current installation\n"
+"is also possible.\n"
"\n"
-"Upgrades should work fine for Mandrake Linux systems starting from \"8.1\"\n"
-"release.\n"
+"Upgrades should work fine on Mandrake Linux systems containing version\n"
+"\"8.1\" or later.\n"
"\n"
"Depending on your knowledge of GNU/Linux, select one of the following\n"
"choices:\n"
@@ -3886,11 +3950,11 @@ msgid ""
"operating system. The installation will be very easy and you will only be\n"
"asked a few questions;\n"
"\n"
-" * Expert: if you have a good knowledge of GNU/Linux, you can choose this\n"
-"installation class. The expert installation will allow you to perform a\n"
-"highly-customized installation. Answering some of the questions can be\n"
-"difficult if you do not have a good knowledge of GNU/Linux, so do not\n"
-"choose this unless you know what you are doing."
+" * Expert: if you have a good understanding of GNU/Linux, you may wish to\n"
+"perform a highly customized installation. Some of the decisions you will\n"
+"have to make may be difficult if you do not have good knowledge of\n"
+"GNU/Linux, so it is not recommended that those without a fair amount of\n"
+"experience select this installation class."
msgstr ""
"A questo punto DrakX deve sapere se intendete effettuare un'installazione\n"
"in modalità predefinita (\"Raccomandata\") o se preferite avere un maggior\n"
@@ -3899,23 +3963,23 @@ msgstr ""
"esistente:\n"
"\n"
" * \"Installazione\" Cancella completamente il vecchio sistema. A seconda\n"
-"di come è strutturato il sistema preesistente potrete mantenere inalterate\n"
-"alcune delle vecchie partizioni (Linux e altre).\n"
+"di come è strutturato il sistema preesistente, tuttavia, è possibile\n"
+"mantenere inalterate alcune delle vecchie partizioni (Linux e altre).\n"
"\n"
" * \"Aggiornamento\" Questo tipo di installazione vi permette di effettuare\n"
"un semplice aggiornamento dei pacchetti installati sul vostro sistema\n"
"Mandrake Linux. Conserva tutte le partizioni attuali del disco rigido, come\n"
"pure le configurazioni individuali degli utenti. Tutti gli altri passi\n"
-"relativi alla configurazione verranno effettuati come per una installazione\n"
-"da zero.\n"
+"relativi alla configurazione restano disponibili, come per una\n"
+"installazione da zero.\n"
"\n"
-" * \"Solo aggiornamento pacchetti\" Questa nuovissima opzione vi permette\n"
-"di aggiornare un sistema Mandrake Linux esistente lasciando intatta la\n"
-"configurazione globale del sistema. è anche possibile aggiungere nuovi\n"
+" * \"Solo aggiornamento pacchetti\" Questa nuova opzione vi permette di\n"
+"aggiornare un sistema Mandrake Linux esistente lasciando intatta la\n"
+"configurazione globale del sistema. È anche possibile aggiungere nuovi\n"
"pacchetti all'installazione corrente.\n"
"\n"
"Gli aggiornamenti dovrebbe svolgersi senza difficoltà per sistemi Mandrake\n"
-"Linux a partire dalla versione \"8.1\".\n"
+"Linux a partire dalla versione \"8.1\" o successive.\n"
"\n"
"Scegliete una delle seguenti modalità di installazione, in base alla vostra\n"
"conoscenza di GNU/Linux:\n"
@@ -3928,41 +3992,55 @@ msgstr ""
"questa modalità, che vi permetterà di effettuare un'installazione altamente\n"
"personalizzata. Rispondere ad alcune delle domande che vi verranno poste\n"
"potrebbe essere difficile se non avete una buona conoscenza di GNU/Linux,\n"
-"pertanto non fate questa scelta se non sapete bene quello che state\n"
-"facendo."
+"pertanto vi sconsigliamo di scegliere questa modalità se non disponete\n"
+"dell'esperienza necessaria.\n"
+"\n"
+"Questo manuale descrive in maniera esauriente la modalità d'installazione\n"
+"\"Esperto\". Se scegliete la modalità \"Raccomandata\", potete\n"
+"semplicemente ignorare i passi relativi alla sola modalità \"Esperto\"."
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/it/drakx-help.xml
-#: ../../help.pm_.c:584
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/it/drakx-chapter.xml
+#: ../../help.pm_.c:578
msgid ""
"Normally, DrakX selects the right keyboard for you (depending on the\n"
-"language you have chosen) and you won't even see this step. However, you\n"
-"might not have a keyboard that corresponds exactly to your language: for\n"
-"example, if you are an English speaking Swiss person, you may still want\n"
-"your keyboard to be a Swiss keyboard. Or if you speak English but are\n"
-"located in Quebec, you may find yourself in the same situation. In both\n"
-"cases, you will have to go back to this installation step and select an\n"
-"appropriate keyboard from the list.\n"
+"language you have chosen). However, you might not have a keyboard that\n"
+"corresponds exactly to your language: for example, if you are an English\n"
+"speaking Swiss person, you may still want your keyboard to be a Swiss\n"
+"keyboard. Or if you speak English but are located in Quebec, you may find\n"
+"yourself in the same situation. In both cases, you will have to go back to\n"
+"this installation step and select an appropriate keyboard from the list.\n"
"\n"
"Click on the \"More\" button to be presented with the complete list of\n"
-"supported keyboards."
+"supported keyboards.\n"
+"\n"
+"If you choose a keyboard layout based on a non-latin alphabet, you will be\n"
+"asked on next dialog to choose the key binding that will switch the\n"
+"keyboard layout between the latin and non latin layouts."
msgstr ""
"Normalmente DrakX provvede a individuare automaticamente la tastiera\n"
-"corretta (in base alla lingua che avete scelto) e voi non vedrete nemmeno\n"
-"questo passo. Tuttavia, potreste avere una tastiera che non corrisponde\n"
-"esattamente alla vostra lingua: se siete un francese che parla italiano, ad\n"
-"esempio, potreste comunque preferire una tastiera francese. Oppure, se\n"
-"parlate italiano ma vivete nel Quebec, potreste trovarvi nella stessa\n"
-"situazione. In entrambi i casi, dovrete tornare a questa fase\n"
-"dell'installazione e selezionare una tastiera appropriata dalla lista.\n"
+"corretta (in base alla lingua che avete scelto). Tuttavia, potreste avere\n"
+"una tastiera che non corrisponde esattamente alla vostra lingua: se siete\n"
+"un francese che parla italiano, ad esempio, potreste comunque preferire una\n"
+"tastiera francese. Oppure, se parlate italiano ma vivete nel Québec,\n"
+"potreste trovarvi nella stessa situazione. In entrambi i casi, dovrete\n"
+"tornare a questa fase dell'installazione e selezionare una tastiera\n"
+"appropriata dalla lista.\n"
"\n"
"Cliccate sul pulsante \"Avanzato\" per vedere una lista completa delle\n"
-"tastiere supportate."
+"tastiere supportate.\n"
+"\n"
+"Se scegliete una mappa di tastiera basata su di un alfabeto non latino,\n"
+"nella prossima finestra di dialogo vi verrà chiesto di scegliere una\n"
+"scorciatoia da tastiera che vi permetterà di passare dalla mappa latina a\n"
+"quella non latina e viceversa."
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/it/drakx-help.xml
-#: ../../help.pm_.c:597
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/it/drakx-chapter.xml
+#: ../../help.pm_.c:594
msgid ""
+"The first step is to choose your preferred language.\n"
+"\n"
"Please choose your preferred language for installation and system usage.\n"
"\n"
"Clicking on the \"Advanced\" button will allow you to select other\n"
@@ -3975,6 +4053,8 @@ msgid ""
"Note that multiple languages may be installed. Once you have selected any\n"
"additional locales, click the \"OK\" button to continue."
msgstr ""
+"Il primo passo è scegliere la lingua che preferite.\n"
+"\n"
"Scegliete la lingua che intendete usare per l'installazione e l'uso del\n"
"sistema.\n"
"\n"
@@ -3991,8 +4071,8 @@ msgstr ""
"scelto quelle che preferite cliccate sul pulsante \"Ok\" per continuare."
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/it/drakx-help.xml
-#: ../../help.pm_.c:610
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/it/drakx-chapter.xml
+#: ../../help.pm_.c:609
msgid ""
"DrakX generally detects the number of buttons your mouse has. If not, it\n"
"assumes you have a two-button mouse and will set it up for third-button\n"
@@ -4005,7 +4085,14 @@ msgid ""
"If you choose a mouse other than the default, a test screen will be\n"
"displayed. Use the buttons and wheel to verify that the settings are\n"
"correct. If the mouse is not working well, press the space bar or [Return]\n"
-"to \"Cancel\" and choose again."
+"to \"Cancel\" and choose again.\n"
+"\n"
+"Wheel mouses are sometimes not automatically detected. You will need to\n"
+"manually select it in the list. Be sure to select the one corresponding to\n"
+"the correct port it is attached to. After you have pressed the \"OK\"\n"
+"button, a mouse image is displayed. You then need to move the wheel of your\n"
+"mouse to activate it correctly. Then test all buttons and movements are\n"
+"correct."
msgstr ""
"In genere DrakX individua automaticamente il numero di pulsanti presente\n"
"sul vostro mouse, in caso contrario conclude che il vostro mouse è un mouse\n"
@@ -4019,11 +4106,19 @@ msgstr ""
"finestra dove potrete provarlo. Provate sia i pulsanti che l'eventuale\n"
"rotellina per controllare che la configurazione sia corretta. Se il mouse\n"
"non funziona correttamente, premete la barra spaziatrice o il tasto [Invio]\n"
-"per premere il pulsante \"Annulla\" ed effettuare una nuova scelta."
+"per premere il pulsante \"Annulla\" ed effettuare una nuova scelta.\n"
+"\n"
+"Talvolta i mouse con rotellina centrale potrebbero non essere individuati\n"
+"automaticamente. In tal caso, dovrete selezionarli personalmente usando la\n"
+"lista. Assicuratevi di indicare correttamente la porta alla quale il mouse\n"
+"è collegato. Premete il pulsante \"OK\", e comparirà l'immagine di un\n"
+"mouse. Fate scorrere la rotellina per attivarla correttamente, quindi\n"
+"provate i pulsanti e spostate il mouse in modo da accertarvi che tutto sia\n"
+"a posto."
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/it/drakx-help.xml
-#: ../../help.pm_.c:624
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/it/drakx-chapter.xml
+#: ../../help.pm_.c:630
msgid ""
"Please select the correct port. For example, the \"COM1\" port under\n"
"Windows is named \"ttyS0\" under GNU/Linux."
@@ -4032,8 +4127,8 @@ msgstr ""
"esempio, è chiamata \"ttyS0\" sotto GNU/Linux."
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/it/drakx-help.xml
-#: ../../help.pm_.c:628
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/it/drakx-chapter.xml
+#: ../../help.pm_.c:634
msgid ""
"This is the most crucial decision point for the security of your GNU/Linux\n"
"system: you have to enter the \"root\" password. \"root\" is the system\n"
@@ -4063,9 +4158,9 @@ msgid ""
"In Expert mode, you will be asked if you will be connecting to an\n"
"authentication server, like NIS or LDAP.\n"
"\n"
-"If your network uses the LDAP (or NIS) protocol for authentication, select\n"
-"\"LDAP\" (or \"NIS\") as authentication. If you do not know, ask your\n"
-"network administrator.\n"
+"If your network uses either of the LDAP, NIS, or PDC Windows Domain\n"
+"authentication services, select the appropriate one as \"authentication\".\n"
+"If you do not know, ask your network administrator.\n"
"\n"
"If your computer is not connected to any administrated network, you will\n"
"want to choose \"Local files\" for authentication."
@@ -4091,7 +4186,7 @@ msgstr ""
"estranei.\n"
"\n"
"Prestate attenzione, tuttavia, a non scegliere una password troppo lunga o\n"
-"complicata, perche dovete essere in grado di ricordarla senza troppo\n"
+"complicata, perché dovete essere in grado di ricordarla senza troppo\n"
"sforzo.\n"
"\n"
"La password non verrà mostrata mentre la digitate. Per questo motivo è\n"
@@ -4101,10 +4196,10 @@ msgstr ""
"volta che vi connetterete al sistema.\n"
"\n"
"In modalità Esperto vi verrà chiesto se il vostro computer è connesso a un\n"
-"server di autenticazione, secondo il protocollo NIS o LDAP.\n"
+"server di autenticazione, secondo il protocollo NIS, LDAP o PDC.\n"
"\n"
-"Se la vostra rete si basa sul protocollo LDAP (o NIS) per l'autenticazione,\n"
-"selezionate il pulsante \"LDAP\" (o \"NIS\") per effettuare\n"
+"Se la vostra rete si basa sul protocollo LDAP, NIS o PDC per\n"
+"l'autenticazione, selezionate il pulsante appropriato per effettuare\n"
"l'autenticazione. Se non siete sicuri, chiedete al vostro amministratore di\n"
"rete.\n"
"\n"
@@ -4112,8 +4207,8 @@ msgstr ""
"scegliete \"File locali\"."
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/it/drakx-help.xml
-#: ../../help.pm_.c:664
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/it/drakx-chapter.xml
+#: ../../help.pm_.c:670
msgid ""
"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
@@ -4152,16 +4247,7 @@ msgid ""
"options. !!\n"
"\n"
"Clicking the \"Advanced\" button in this dialog will offer many advanced\n"
-"options, which are reserved to the expert user.\n"
-"\n"
-"After you have configured the general bootloader parameters, the list of\n"
-"boot options which will be available at boot time will be displayed.\n"
-"\n"
-"If there is another operating system installed on your machine, it will\n"
-"automatically be added to the boot menu. Here, you can choose to fine-tune\n"
-"the existing options. Select an entry and click \"Modify\" to modify or\n"
-"remove it; \"Add\" creates a new entry; and \"Done\" goes on to the next\n"
-"installation step."
+"options, which are reserved for the expert user."
msgstr ""
"LILO e grub sono due ''bootloader'' di GNU/Linux. Un bootloader è un\n"
"programma per l'avvio di uno o più sistemi operativi. Questa fase, in\n"
@@ -4205,44 +4291,41 @@ msgstr ""
"\n"
"Cliccando sul pulsante \"Avanzato\" di questa finestra avrete la\n"
"possibilità di scegliere tra molte opzioni avanzate, riservate agli utenti\n"
-"esperti.\n"
-"\n"
-"Dopo aver configurato i parametri generali del bootloader, verrà mostra la\n"
-"lista delle opzioni disponibili al momento del boot.\n"
-"\n"
-"Se sulla vostra macchina è già installato un altro sistema operativo,\n"
-"quest'ultimo verrà automaticamente aggiunto al menu di avvio. Potete anche\n"
-"scegliere di configurare con precisione le opzioni esistenti: selezionate\n"
-"una voce e cliccate su \"Modifica\" per modificarne i parametri o\n"
-"rimuoverla; \"Aggiungi\" crea una nuova voce, mentre cliccando su \"Fatto\"\n"
-"passerete alla fase di installazione successiva."
+"esperti."
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/it/drakx-help.xml
-#: ../../help.pm_.c:713
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/it/drakx-chapter.xml
+#: ../../help.pm_.c:710
msgid ""
-"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
-"either GNU/Linux or any other operating system present on your computer.\n"
-"Normally, these other operating systems are correctly detected and\n"
-"installed. If this is not the case, you can add an entry by hand in this\n"
-"screen. Be careful to choose the correct parameters.\n"
+"After you have configured the general bootloader parameters, the list of\n"
+"boot options which will be available at boot time will be displayed.\n"
+"\n"
+"If there is another operating system installed on your machine, it will\n"
+"automatically be added to the boot menu. Here, you can choose to fine-tune\n"
+"the existing options. Select an entry and click \"Modify\" to modify or\n"
+"remove it; \"Add\" creates a new entry; and \"Done\" goes on to the next\n"
+"installation step.\n"
"\n"
"You may also not want to give access to these other operating systems to\n"
"anyone. In which case, you can delete the corresponding entries. But then,\n"
"you will need a boot disk in order to boot those other operating systems!"
msgstr ""
-"LILO (il LInux LOader) e GRUB sono bootloader: sono in grado di caricare\n"
-"indifferentemente GNU/Linux o altri sistemi operativi presenti sul vostro\n"
-"computer. Normalmente, questi sistemi operativi sono correttamente rilevati\n"
-"e installati. Se non avviene, potete aggiungere una voce a mano in questo\n"
-"schermo. State attenti a scegliere i parametri corretti.\n"
+"Dopo aver configurato i parametri generali del bootloader, verrà mostrata\n"
+"la lista delle opzioni che saranno disponibili al momento dell'avvio del\n"
+"sistema.\n"
+"\n"
+"Se sulla vostra macchina è installato un altro sistema operativo, verrà\n"
+"automaticamente aggiunto al menu di avvio. Qui potete scegliere una\n"
+"configurazione più precisa delle opzioni disponibili. Cliccate su una delle\n"
+"voci e poi su \"Modifica\" per modificarla o rimuoverla; \"Aggiungi\" crea\n"
+"una nuova voce; cliccando su \"Fatto\" passerete alla fase successiva.\n"
"\n"
"Potreste anche non voler dare l'accesso a questi sistemi operativi a\n"
"chiunque, nel qual caso potete cancellare le voci corrispondenti, ma in\n"
"questo caso avrete bisogno di un boot disk per caricarli!"
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/it/drakx-help.xml
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/it/drakx-chapter.xml
#: ../../help.pm_.c:724
msgid ""
"You must indicate where you wish to place the information required to boot\n"
@@ -4258,7 +4341,7 @@ msgstr ""
"\"Primo settore del disco rigido (MBR)\"."
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/it/drakx-help.xml
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/it/drakx-chapter.xml
#: ../../help.pm_.c:731
msgid ""
"Here, we select a printing system for your computer. Other OSs may offer\n"
@@ -4323,21 +4406,21 @@ msgstr ""
"più semplice e migliore nel gestire stampanti di rete."
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/it/drakx-help.xml
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/it/drakx-chapter.xml
#: ../../help.pm_.c:759
msgid ""
-"DrakX now detects any IDE device present in your computer. It will also\n"
-"scan for one or more PCI SCSI card(s) on your system. If a SCSI card is\n"
+"DrakX now detects any IDE devices present in your computer. It will also\n"
+"scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
"found, DrakX will automatically install the appropriate driver.\n"
"\n"
"Because hardware detection does not always detect a piece of hardware,\n"
"DrakX will ask you to confirm if a PCI SCSI card is present. Click \"Yes\"\n"
"if you know that there is a SCSI card installed in your machine. You will\n"
-"be presented a list of SCSI cards to choose from. Click \"No\" if you have\n"
-"no SCSI hardware. If you are unsure, you can check the list of hardware\n"
-"detected in your machine by selecting \"See hardware info\" and clicking\n"
-"\"OK\". Examine the list of hardware and then click on the \"OK\" button to\n"
-"return to the SCSI interface question.\n"
+"be presented with a list of SCSI cards to choose from. Click \"No\" if you\n"
+"have no SCSI hardware. If you are unsure, you can check the list of\n"
+"hardware detected in your machine by selecting \"See hardware info\" and\n"
+"clicking \"OK\". Examine the list of hardware and then click on the \"OK\"\n"
+"button to return to the SCSI interface question.\n"
"\n"
"If you have to manually specify your adapter, DrakX will ask if you want to\n"
"specify options for it. You should allow DrakX to probe the hardware for\n"
@@ -4385,6 +4468,8 @@ msgstr ""
"Internet) o da Microsoft Windows (se avete utilizzato la stessa scheda con\n"
"Windows sul vostro stesso sistema)."
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/it/drakx-chapter.xml
#: ../../help.pm_.c:786
msgid ""
"You can add additional entries for yaboot, either for other operating\n"
@@ -4433,7 +4518,53 @@ msgid ""
"also be highlighted with a ``*'', if you press [Tab] to see the boot\n"
"selections."
msgstr ""
+"You can add additional entries for yaboot, either for other operating\n"
+"systems, alternate kernels, or for an emergency boot image.\n"
+"\n"
+"For other OS's, the entry consists only of a label and the root partition.\n"
+"\n"
+"For Linux, there are a few possible options:\n"
+"\n"
+" * Label: this is simply the name you will have to type at the yaboot\n"
+"prompt to select this boot option.\n"
+"\n"
+" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
+"or a variation of vmlinux with an extension.\n"
+"\n"
+" * Root: the \"root\" device or \"/\" for your Linux installation.\n"
+"\n"
+" * Append: on Apple hardware, the kernel append option is used quite often\n"
+"to assist in initializing video hardware, or to enable keyboard mouse\n"
+"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
+"Apple mouse. The following are some examples:\n"
+"\n"
+" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111\n"
+"hda=autotune\n"
+"\n"
+" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
+"\n"
+" * Initrd: this option can be used either to load initial modules, before\n"
+"the boot device is available, or to load a ramdisk image for an emergency\n"
+"boot situation.\n"
+"\n"
+" * Initrd-size: the default ramdisk size is generally 4,096 bytes. If you\n"
+"need to allocate a large ramdisk, this option can be used.\n"
+"\n"
+" * Read-write: normally the \"root\" partition is initially brought up in\n"
+"read-only, to allow a file system check before the system becomes \"live\".\n"
+"Here, you can override this option.\n"
+"\n"
+" * NoVideo: should the Apple video hardware prove to be exceptionally\n"
+"problematic, you can select this option to boot in \"novideo\" mode, with\n"
+"native frame buffer support.\n"
+"\n"
+" * Default: selects this entry as being the default Linux selection,\n"
+"selectable by just pressing ENTER at the yaboot prompt. This entry will\n"
+"also be highlighted with a \"*\", if you press [Tab] to see the boot\n"
+"selections."
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/it/drakx-chapter.xml
#: ../../help.pm_.c:833
msgid ""
"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
@@ -4467,53 +4598,40 @@ msgid ""
" * Default OS: you can select which OS will boot by default when the Open\n"
"Firmware Delay expires."
msgstr ""
-"Yaboot è un bootloader per hardware NewWorld MacIntosh. È in grado di\n"
-"avviare GNU/Linux, MacOS, o MacOSX, se presenti sul vostro computer.\n"
-"Normalmente gli altri sistemi operativi sono identificati e installati\n"
-"correttamente. Se così non fosse, potete aggiungere manualmente una voce\n"
-"in questa schermata. Accertatevi di scegliere i parametri corretti.\n"
-"\n"
-"\n"
-"Le opzioni principali di Yaboot sono:\n"
-"\n"
-"\n"
-" - Init Message: un semplice messaggio di testo che viene mostrato prima\n"
-"del prompt di boot.\n"
-"\n"
-"\n"
-" - Boot Device: specificate dove si trovano le informazioni richieste per \n"
-"avviare GNU/Linux. In genere è necessario prima impostare una partizione "
-"di \n"
-"bootstrap che contenga queste informazioni.\n"
-"\n"
-"\n"
-" - Open Firmware Delay: a differenza di LILO, sono possibili due pause \n"
-"diverse. La prima si misura in secondi, e a questo punto potete scegliere \n"
-"CD, OF boot, MacOS, o Linux.\n"
+"Yaboot is a boot loader for NewWorld MacIntosh hardware. It is able to boot\n"
+"either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
+"these other operating systems are correctly detected and installed. If this\n"
+"is not the case, you can add an entry by hand in this screen. Be careful as\n"
+"to choose the correct parameters.\n"
"\n"
+"Yaboot's main options are:\n"
"\n"
-" - Kernel Boot Timeout: questa pausa è simile all'attesa di LILO. Dopo \n"
-"aver selezionato Linux, avrai a disposizione un'attesa misurata in decimi "
-"di\n"
-"secondo prima che venga selezionata la descrizione del kernel predefinita.\n"
+" * Init Message: a simple text message that is displayed before the boot\n"
+"prompt.\n"
"\n"
+" * Boot Device: indicate where you want to place the information required\n"
+"to boot to GNU/Linux. Generally, you setup a bootstrap partition earlier to\n"
+"hold this information.\n"
"\n"
-" - Enable CD Boot?: selezionando questa opzione potrai scegliere 'C' per CD "
-"al\n"
-"primo avvio del sistema.\n"
+" * Open Firmware Delay: unlike LILO, there are two delays available with\n"
+"yaboot. The first delay is measured in seconds and at this point, you can\n"
+"choose between CD, OF boot, MacOS or Linux.\n"
"\n"
+" * Kernel Boot Timeout: this timeout is similar to the LILO boot delay.\n"
+"After selecting Linux, you will have this delay in 0.1 second before your\n"
+"default kernel description is selected.\n"
"\n"
-" - Enable OF Boot?: selezionando questa opzione potrai scegliere 'N' per "
-"Open\n"
-"Firmware al primo avvio del sistema.\n"
+" * Enable CD Boot?: checking this option allows you to choose \"C\" for CD\n"
+"at the first boot prompt.\n"
"\n"
+" * Enable OF Boot?: checking this option allows you to choose \"N\" for\n"
+"Open Firmware at the first boot prompt.\n"
"\n"
-" - Default OS: puoi scegliere qual è il SO predefinito da avviare quando "
-"termina \n"
-"la pausa dell'Open Firmware."
+" * Default OS: you can select which OS will boot by default when the Open\n"
+"Firmware Delay expires."
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/it/drakx-help.xml
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/it/drakx-chapter.xml
#: ../../help.pm_.c:865
msgid ""
"Here are presented various parameters concerning your machine. Depending on\n"
@@ -4532,7 +4650,9 @@ msgid ""
"order to configure the clock according to the time zone you are in;\n"
"\n"
" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
-"configuration wizard;\n"
+"configuration wizard. Consult the corresponding chapter of the ``User\n"
+"Guide'' for more information on how to setup a new printer. The interface\n"
+"presented there is similar to the one used during installation;\n"
"\n"
" * \"Sound card\": if a sound card is detected on your system, it is\n"
"displayed here. No modification possible at installation time;\n"
@@ -4561,7 +4681,10 @@ msgstr ""
"geografica in cui vivete;\n"
"\n"
" * \"Stampante\": cliccando sul pulsante \"Nessuna stampante\" si\n"
-"richiamerà l'assistente di configurazione della stampante;\n"
+"richiamerà l'assistente di configurazione della stampante. Consultate il\n"
+"relativo capitolo della ''User Guide'' per avere maggiori informazioni su\n"
+"come configurare una nuova stampante. L'interfaccia descritta in tale sede\n"
+"è simile a quella utilizzata nel corso dell'installazione;\n"
"\n"
" * \"Scheda audio\": se sul vostro sistema è stata individuata una scheda\n"
"audio, verrà mostrata qui. Al momento dell'installazione non è possibile\n"
@@ -4576,8 +4699,8 @@ msgstr ""
"cambiarne i parametri."
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/it/drakx-help.xml
-#: ../../help.pm_.c:894
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/it/drakx-chapter.xml
+#: ../../help.pm_.c:896
msgid ""
"Choose the hard drive you want to erase in order to install your new\n"
"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
@@ -4588,8 +4711,8 @@ msgstr ""
"andranno perduti e non saranno più recuperabili!"
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/it/drakx-help.xml
-#: ../../help.pm_.c:899
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/it/drakx-chapter.xml
+#: ../../help.pm_.c:901
msgid ""
"Click on \"OK\" if you want to delete all data and partitions present on\n"
"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
@@ -4624,7 +4747,7 @@ msgstr ""
msgid "You must also format %s"
msgstr "Dovete formattare anche %s"
-#: ../../install_any.pm_.c:418
+#: ../../install_any.pm_.c:423
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -4648,20 +4771,29 @@ msgstr ""
"\n"
"Vuoi davvero installare questi server?\n"
-#: ../../install_any.pm_.c:453
+#: ../../install_any.pm_.c:441
+#, c-format
+msgid ""
+"The following packages will be removed to allow upgrading your system: %s\n"
+"\n"
+"\n"
+"Do you really want to remove these packages?\n"
+msgstr ""
+
+#: ../../install_any.pm_.c:471
msgid "Can't use broadcast with no NIS domain"
msgstr "Non posso usare broadcast senza un dominio NIS"
-#: ../../install_any.pm_.c:841
+#: ../../install_any.pm_.c:862
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Inserisci un floppy MS-DOS nel drive %s"
-#: ../../install_any.pm_.c:845
+#: ../../install_any.pm_.c:866
msgid "This floppy is not FAT formatted"
msgstr "Questo floppy non è stato formattato usando MS DOS/Windows"
-#: ../../install_any.pm_.c:857
+#: ../../install_any.pm_.c:878
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -4669,11 +4801,20 @@ msgstr ""
"Per usare la selezione di pacchetti che avete salvato, dovete cominciare "
"l'installazione digitando ``linux defcfg=floppy''"
-#: ../../install_any.pm_.c:880 ../../partition_table.pm_.c:771
+#: ../../install_any.pm_.c:901 ../../partition_table.pm_.c:767
#, c-format
msgid "Error reading file %s"
msgstr "Errore leggendo il file %s"
+#: ../../install_any.pm_.c:1023
+msgid ""
+"An error occurred - no valid devices were found on which to create new "
+"filesystems. Please check your hardware for the cause of this problem"
+msgstr ""
+"Si è verificato un errore - non è stato trovata alcuna unità valida su cui "
+"creare nuovi filesystem. Per favore controlla il tuo hardware per stabilire "
+"la causa di questo problema"
+
#: ../../install_interactive.pm_.c:23
#, c-format
msgid ""
@@ -4707,59 +4848,59 @@ msgstr ""
"\n"
"Continuo comunque?"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:168
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:169
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "Devi avere una partizione FAT montata su /boot/efi"
-#: ../../install_interactive.pm_.c:91
+#: ../../install_interactive.pm_.c:92
msgid "Use free space"
msgstr "Usa lo spazio libero"
-#: ../../install_interactive.pm_.c:93
+#: ../../install_interactive.pm_.c:94
msgid "Not enough free space to allocate new partitions"
msgstr "Non c'è abbastanza spazio libero per allocare nuove partizioni"
-#: ../../install_interactive.pm_.c:101
+#: ../../install_interactive.pm_.c:102
msgid "Use existing partitions"
msgstr "Usa partizione esistente"
-#: ../../install_interactive.pm_.c:103
+#: ../../install_interactive.pm_.c:104
msgid "There is no existing partition to use"
msgstr "Non c'è una partizione esistente da usare"
-#: ../../install_interactive.pm_.c:110
+#: ../../install_interactive.pm_.c:111
msgid "Use the Windows partition for loopback"
msgstr "Usa la partizione Windows per loopback"
-#: ../../install_interactive.pm_.c:113
+#: ../../install_interactive.pm_.c:114
msgid "Which partition do you want to use for Linux4Win?"
msgstr "Che partizione vuoi usare per Linux4Win?"
-#: ../../install_interactive.pm_.c:115
+#: ../../install_interactive.pm_.c:116
msgid "Choose the sizes"
msgstr "Scegli le dimensioni"
-#: ../../install_interactive.pm_.c:116
+#: ../../install_interactive.pm_.c:117
msgid "Root partition size in MB: "
msgstr "Dimensione partizione radice in Mb: "
-#: ../../install_interactive.pm_.c:117
+#: ../../install_interactive.pm_.c:118
msgid "Swap partition size in MB: "
msgstr "Dimensione partizione di swap in Mb: "
-#: ../../install_interactive.pm_.c:126
+#: ../../install_interactive.pm_.c:128
msgid "Use the free space on the Windows partition"
msgstr "Usa lo spazio libero della partizione Windows"
-#: ../../install_interactive.pm_.c:129
+#: ../../install_interactive.pm_.c:131
msgid "Which partition do you want to resize?"
msgstr "Quale partizione vuoi ridimensionare?"
-#: ../../install_interactive.pm_.c:131
+#: ../../install_interactive.pm_.c:133
msgid "Resizing Windows partition"
msgstr "Calcolo i confini del filesystem di Windows "
-#: ../../install_interactive.pm_.c:134
+#: ../../install_interactive.pm_.c:136
#, c-format
msgid ""
"The FAT resizer is unable to handle your partition, \n"
@@ -4768,7 +4909,7 @@ msgstr ""
"Il ridimensionatore della FAT non riesce a gestire la tua partizione, \n"
"si è verificato il seguente errore: %s"
-#: ../../install_interactive.pm_.c:137
+#: ../../install_interactive.pm_.c:139
msgid ""
"Your Windows partition is too fragmented. Please reboot your computer under "
"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
@@ -4777,7 +4918,7 @@ msgstr ""
"La tua partizione Windows è troppo frammentata, per favore prima\n"
"lancia ''defrag''"
-#: ../../install_interactive.pm_.c:138
+#: ../../install_interactive.pm_.c:140
msgid ""
"WARNING!\n"
"\n"
@@ -4798,21 +4939,21 @@ msgstr ""
"dati.\n"
"Quando sei sicuro, premi Ok."
-#: ../../install_interactive.pm_.c:148
+#: ../../install_interactive.pm_.c:150
msgid "Which size do you want to keep for Windows on"
msgstr "Quanto spazio vuoi lasciare per Windows sulla"
-#: ../../install_interactive.pm_.c:149
+#: ../../install_interactive.pm_.c:151
#, c-format
msgid "partition %s"
msgstr "partizione %s"
-#: ../../install_interactive.pm_.c:156
+#: ../../install_interactive.pm_.c:158
#, c-format
msgid "FAT resizing failed: %s"
msgstr "Ridimensionamento FAT fallito: %s"
-#: ../../install_interactive.pm_.c:171
+#: ../../install_interactive.pm_.c:173
msgid ""
"There is no FAT partition to resize or to use as loopback (or not enough "
"space left)"
@@ -4820,33 +4961,33 @@ msgstr ""
"Non c'è una partizione FAT da ridimensionare o da usare come loopback (o \n"
"non c'è abbastanza spazio su di essa)"
-#: ../../install_interactive.pm_.c:177
+#: ../../install_interactive.pm_.c:179
msgid "Erase entire disk"
msgstr "Cancella l'intero disco"
-#: ../../install_interactive.pm_.c:177
+#: ../../install_interactive.pm_.c:179
msgid "Remove Windows(TM)"
msgstr "Rimuovi Windows(TM)"
-#: ../../install_interactive.pm_.c:180
+#: ../../install_interactive.pm_.c:182
msgid "You have more than one hard drive, which one do you install linux on?"
msgstr "Hai più di un disco rigido, su quale vuoi installare linux?"
-#: ../../install_interactive.pm_.c:183
+#: ../../install_interactive.pm_.c:185
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr ""
"TUTTE le partizioni esistenti e i loro dati verranno persi sul disco %s"
-#: ../../install_interactive.pm_.c:191
+#: ../../install_interactive.pm_.c:193
msgid "Custom disk partitioning"
msgstr "Partizionamento personalizzato del disco"
-#: ../../install_interactive.pm_.c:195
+#: ../../install_interactive.pm_.c:197
msgid "Use fdisk"
msgstr "Usa fdisk"
-#: ../../install_interactive.pm_.c:198
+#: ../../install_interactive.pm_.c:200
#, c-format
msgid ""
"You can now partition %s.\n"
@@ -4855,29 +4996,29 @@ msgstr ""
"Adesso puoi partizionare %s\n"
"Quando hai finito, non dimenticare di salvare usando 'w'"
-#: ../../install_interactive.pm_.c:227
+#: ../../install_interactive.pm_.c:229
msgid "You don't have enough free space on your Windows partition"
msgstr "Non hai sufficiente spazio libero sulla partizione Windows"
-#: ../../install_interactive.pm_.c:243
+#: ../../install_interactive.pm_.c:245
msgid "I can't find any room for installing"
msgstr "Non trovo lo spazio per installare Mandrake Linux"
-#: ../../install_interactive.pm_.c:246
+#: ../../install_interactive.pm_.c:248
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr ""
"Il wizard di partizionamento di DrakX ha trovato le seguenti soluzioni:"
-#: ../../install_interactive.pm_.c:250
+#: ../../install_interactive.pm_.c:252
#, c-format
msgid "Partitioning failed: %s"
msgstr "Partizionamento fallito: %s"
-#: ../../install_interactive.pm_.c:260
+#: ../../install_interactive.pm_.c:262
msgid "Bringing up the network"
msgstr "Sto attivando la rete"
-#: ../../install_interactive.pm_.c:265
+#: ../../install_interactive.pm_.c:267
msgid "Bringing down the network"
msgstr "Sto disattivando la rete"
@@ -4889,12 +5030,12 @@ msgstr ""
"C'è stato un errore, ma non so come gestirlo correttamente.\n"
"Continua a tuo rischio e pericolo."
-#: ../../install_steps.pm_.c:210
+#: ../../install_steps.pm_.c:211
#, c-format
msgid "Duplicate mount point %s"
msgstr "Punto di mount doppio: %s"
-#: ../../install_steps.pm_.c:379
+#: ../../install_steps.pm_.c:380
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -4906,12 +5047,12 @@ msgstr ""
"Controlla il cdrom su un sistema già installato digitando \"rpm -qpl "
"mandrake/RPMS/*.rpm\"\n"
-#: ../../install_steps.pm_.c:451
+#: ../../install_steps.pm_.c:452
#, c-format
msgid "Welcome to %s"
msgstr "Benvenuto a %s"
-#: ../../install_steps.pm_.c:530 ../../install_steps.pm_.c:770
+#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:772
msgid "No floppy drive available"
msgstr "Nessun drive floppy disponibile"
@@ -4940,71 +5081,71 @@ msgstr "Classe d'installazione"
msgid "Please choose one of the following classes of installation:"
msgstr "Per favore, scegli una delle seguenti classi d'installazione:"
-#: ../../install_steps_gtk.pm_.c:243 ../../install_steps_interactive.pm_.c:694
+#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:678
msgid "Package Group Selection"
msgstr "Selezione Gruppi di Pacchetti"
-#: ../../install_steps_gtk.pm_.c:276 ../../install_steps_interactive.pm_.c:709
+#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:693
msgid "Individual package selection"
msgstr "Selezione individuale pacchetti"
-#: ../../install_steps_gtk.pm_.c:299 ../../install_steps_interactive.pm_.c:633
+#: ../../install_steps_gtk.pm_.c:293 ../../install_steps_interactive.pm_.c:617
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Domensione totale: %d / %d Mb"
-#: ../../install_steps_gtk.pm_.c:341
+#: ../../install_steps_gtk.pm_.c:335
msgid "Bad package"
msgstr "Pacchetto errato"
-#: ../../install_steps_gtk.pm_.c:342
+#: ../../install_steps_gtk.pm_.c:336
#, c-format
msgid "Name: %s\n"
msgstr "Nome: %s\n"
-#: ../../install_steps_gtk.pm_.c:343
+#: ../../install_steps_gtk.pm_.c:337
#, c-format
msgid "Version: %s\n"
msgstr "Versione: %s\n"
-#: ../../install_steps_gtk.pm_.c:344
+#: ../../install_steps_gtk.pm_.c:338
#, c-format
msgid "Size: %d KB\n"
msgstr "Dimensioni: %d KB\n"
-#: ../../install_steps_gtk.pm_.c:345
+#: ../../install_steps_gtk.pm_.c:339
#, c-format
msgid "Importance: %s\n"
msgstr "Importanza: %s\n"
-#: ../../install_steps_gtk.pm_.c:367
+#: ../../install_steps_gtk.pm_.c:361
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr ""
"Non puoi selezionare questo pacchetto perchè non c'è abbastanza spazio \n"
"rimanente per installarlo"
-#: ../../install_steps_gtk.pm_.c:372
+#: ../../install_steps_gtk.pm_.c:366
msgid "The following packages are going to be installed"
msgstr "I seguenti pacchetti stanno per essere installati"
-#: ../../install_steps_gtk.pm_.c:373
+#: ../../install_steps_gtk.pm_.c:367
msgid "The following packages are going to be removed"
msgstr "I seguenti pacchetti satanno per essere rimossi"
-#: ../../install_steps_gtk.pm_.c:385
+#: ../../install_steps_gtk.pm_.c:379
msgid "You can't select/unselect this package"
msgstr "Non puoi selezionare/deselezionare questo pacchetto"
-#: ../../install_steps_gtk.pm_.c:397
+#: ../../install_steps_gtk.pm_.c:391
msgid "This is a mandatory package, it can't be unselected"
msgstr "Questo è un pacchetto obbligatorio, non può essere deselezionato"
-#: ../../install_steps_gtk.pm_.c:399
+#: ../../install_steps_gtk.pm_.c:393
msgid "You can't unselect this package. It is already installed"
msgstr "Non puoi deselezionare questo pacchetto. è già installato"
-#: ../../install_steps_gtk.pm_.c:402
+#: ../../install_steps_gtk.pm_.c:396
msgid ""
"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
@@ -5012,74 +5153,74 @@ msgstr ""
"Questo pacchetto deve essere aggiornato\n"
"Sei sicuro di volerlo deselezionare?"
-#: ../../install_steps_gtk.pm_.c:405
+#: ../../install_steps_gtk.pm_.c:399
msgid "You can't unselect this package. It must be upgraded"
msgstr "Non puoi deselezionare questo pacchetto. Deve essere aggiornato"
-#: ../../install_steps_gtk.pm_.c:410
+#: ../../install_steps_gtk.pm_.c:404
msgid "Show automatically selected packages"
msgstr "Mostra i pacchetti selezionati automaticamente"
-#: ../../install_steps_gtk.pm_.c:411 ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_gtk.pm_.c:405 ../../install_steps_interactive.pm_.c:255
#: ../../install_steps_interactive.pm_.c:259
-#: ../../standalone/drakbackup_.c:3600
+#: ../../standalone/drakbackup_.c:4257
msgid "Install"
msgstr "Installa"
-#: ../../install_steps_gtk.pm_.c:414
+#: ../../install_steps_gtk.pm_.c:408
msgid "Load/Save on floppy"
msgstr "Carica/Salva su floppy"
-#: ../../install_steps_gtk.pm_.c:415
+#: ../../install_steps_gtk.pm_.c:409
msgid "Updating package selection"
msgstr "Aggiornamento scelta pacchetti"
-#: ../../install_steps_gtk.pm_.c:420
+#: ../../install_steps_gtk.pm_.c:414
msgid "Minimal install"
msgstr "Installazione minima"
-#: ../../install_steps_gtk.pm_.c:435 ../../install_steps_interactive.pm_.c:538
+#: ../../install_steps_gtk.pm_.c:429 ../../install_steps_interactive.pm_.c:522
msgid "Choose the packages you want to install"
msgstr "Scegli i pacchetti da installare"
-#: ../../install_steps_gtk.pm_.c:451 ../../install_steps_interactive.pm_.c:778
+#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:762
msgid "Installing"
msgstr "Installazione"
-#: ../../install_steps_gtk.pm_.c:457
+#: ../../install_steps_gtk.pm_.c:451
msgid "Estimating"
msgstr "Sto valutando"
-#: ../../install_steps_gtk.pm_.c:464
+#: ../../install_steps_gtk.pm_.c:458
msgid "Time remaining "
msgstr "Tempo restante "
-#: ../../install_steps_gtk.pm_.c:476
+#: ../../install_steps_gtk.pm_.c:470
msgid "Please wait, preparing installation..."
msgstr "Per favore attendi, sto preparando l'installazione"
-#: ../../install_steps_gtk.pm_.c:560
+#: ../../install_steps_gtk.pm_.c:554
#, c-format
msgid "%d packages"
msgstr "%d pacchetti"
-#: ../../install_steps_gtk.pm_.c:565
+#: ../../install_steps_gtk.pm_.c:559
#, c-format
msgid "Installing package %s"
msgstr "Installazione del pacchetto %s"
-#: ../../install_steps_gtk.pm_.c:602 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:802
+#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:786
#: ../../standalone/drakautoinst_.c:202
msgid "Accept"
msgstr "Accetta"
-#: ../../install_steps_gtk.pm_.c:602 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:802
+#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:786
msgid "Refuse"
msgstr "Rifiuta"
-#: ../../install_steps_gtk.pm_.c:603 ../../install_steps_interactive.pm_.c:803
+#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:787
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -5095,17 +5236,17 @@ msgstr ""
"pronto. Se non ce l'hai, premi Annulla per evitare l'installazione da questo "
"Cd-Rom."
-#: ../../install_steps_gtk.pm_.c:617 ../../install_steps_gtk.pm_.c:621
-#: ../../install_steps_interactive.pm_.c:815
-#: ../../install_steps_interactive.pm_.c:819
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_gtk.pm_.c:615
+#: ../../install_steps_interactive.pm_.c:799
+#: ../../install_steps_interactive.pm_.c:803
msgid "Go on anyway?"
msgstr "Vado avanti comunque?"
-#: ../../install_steps_gtk.pm_.c:617 ../../install_steps_interactive.pm_.c:815
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:799
msgid "There was an error ordering packages:"
msgstr "C'è stato un errore ordinando i pacchetti:"
-#: ../../install_steps_gtk.pm_.c:621 ../../install_steps_interactive.pm_.c:819
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:803
msgid "There was an error installing packages:"
msgstr "C'è stato un errore installando i pacchetti:"
@@ -5408,7 +5549,7 @@ msgid "Are you sure you refuse the licence?"
msgstr ""
#: ../../install_steps_interactive.pm_.c:211
-#: ../../install_steps_interactive.pm_.c:1038
+#: ../../install_steps_interactive.pm_.c:1023
#: ../../standalone/keyboarddrake_.c:31
msgid "Keyboard"
msgstr "Tastiera"
@@ -5456,11 +5597,11 @@ msgstr "Solo aggiornamento pacchetti"
msgid "Please choose the type of your mouse."
msgstr "Per favore, scegli il tipo del tuo mouse."
-#: ../../install_steps_interactive.pm_.c:281 ../../standalone/mousedrake_.c:59
+#: ../../install_steps_interactive.pm_.c:281 ../../standalone/mousedrake_.c:60
msgid "Mouse Port"
msgstr "Porta del mouse"
-#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:61
msgid "Please choose on which serial port your mouse is connected to."
msgstr "Per favore scegli a che porta seriale è connesso il mouse."
@@ -5492,118 +5633,93 @@ msgstr "Sto configurando IDE"
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:336
+#: ../../install_steps_interactive.pm_.c:338
msgid "No partition available"
msgstr "nessuna partizione disponibile"
-#: ../../install_steps_interactive.pm_.c:339
+#: ../../install_steps_interactive.pm_.c:341
msgid "Scanning partitions to find mount points"
msgstr "Controllo delle partizioni per trovare i punti di mount"
-#: ../../install_steps_interactive.pm_.c:347
+#: ../../install_steps_interactive.pm_.c:349
msgid "Choose the mount points"
msgstr "Scegli i punti di mount"
-#: ../../install_steps_interactive.pm_.c:366
-#, c-format
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to not allow DrakX to modify the partition table.\n"
-"(the error is %s)\n"
-"\n"
-"Do you agree to loose all the partitions?\n"
-msgstr ""
-"Non posso leggere la tua tabella delle partizioni, è troppo corrotta \n"
-"per me :( . Posso provare a continuare a svuotare le partizioni danneggiate\n"
-"(TUTTI I DATI verranno persi!). L'altra soluzione è di impedire a DrakX di\n"
-"modificare la tabella delle partizioni. (L'errore è %s)\n"
-"\n"
-"Ti va bene liberare tutte le partizioni?\n"
-
#: ../../install_steps_interactive.pm_.c:379
msgid ""
-"DiskDrake failed to read correctly the partition table.\n"
-"Continue at your own risk!"
-msgstr ""
-"Diskdrake ha fallito la lettura della tabella delle partizioni.\n"
-"Continua a tuo rischio e pericolo!"
-
-#: ../../install_steps_interactive.pm_.c:396
-msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
msgstr ""
"Non c'è spazio libero per un bootstrap di 1MB! L'installazione continua, ma "
"per avviare il sistema dovrai creare la partizione di bootstrap con DiskDrake"
-#: ../../install_steps_interactive.pm_.c:405
+#: ../../install_steps_interactive.pm_.c:388
msgid "No root partition found to perform an upgrade"
msgstr "Non ho trovato una partizione root da aggiornare"
-#: ../../install_steps_interactive.pm_.c:406
+#: ../../install_steps_interactive.pm_.c:389
msgid "Root Partition"
msgstr "Partizione radice"
-#: ../../install_steps_interactive.pm_.c:407
+#: ../../install_steps_interactive.pm_.c:390
msgid "What is the root partition (/) of your system?"
msgstr "Qual'è la partizione radice (/) del tuo sistema?"
-#: ../../install_steps_interactive.pm_.c:421
+#: ../../install_steps_interactive.pm_.c:404
msgid "You need to reboot for the partition table modifications to take place"
msgstr ""
"Devi resettare affinché le modifiche alla tabella delle partizioni\n"
"abbiano effetto"
-#: ../../install_steps_interactive.pm_.c:445
+#: ../../install_steps_interactive.pm_.c:428
msgid "Choose the partitions you want to format"
msgstr "Scegli le partizioni che vuoi formattare"
-#: ../../install_steps_interactive.pm_.c:446
+#: ../../install_steps_interactive.pm_.c:429
msgid "Check bad blocks?"
msgstr "Controllo blocchi danneggiati?"
-#: ../../install_steps_interactive.pm_.c:473
+#: ../../install_steps_interactive.pm_.c:456
msgid "Formatting partitions"
msgstr "Formattazione partizioni"
-#: ../../install_steps_interactive.pm_.c:475
+#: ../../install_steps_interactive.pm_.c:458
#, c-format
msgid "Creating and formatting file %s"
msgstr "Sto creando e formattando il file %s"
-#: ../../install_steps_interactive.pm_.c:480
+#: ../../install_steps_interactive.pm_.c:463
#, c-format
msgid ""
"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
"you can loose data)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:482
+#: ../../install_steps_interactive.pm_.c:465
msgid "Not enough swap space to fulfill installation, please add some"
msgstr ""
"Swap insufficiente per completare l'installazione. Per favore, aumentane le "
"dimensioni"
-#: ../../install_steps_interactive.pm_.c:489
+#: ../../install_steps_interactive.pm_.c:472
#, fuzzy
msgid "Looking for available packages and rebuilding rpm database..."
msgstr "Sto cercando i pacchetti disponibili"
-#: ../../install_steps_interactive.pm_.c:490
+#: ../../install_steps_interactive.pm_.c:473
msgid "Looking for available packages..."
msgstr "Sto cercando i pacchetti disponibili"
-#: ../../install_steps_interactive.pm_.c:493
+#: ../../install_steps_interactive.pm_.c:476
#, fuzzy
msgid "Looking at packages already installed..."
msgstr "Non puoi deselezionare questo pacchetto. è già installato"
-#: ../../install_steps_interactive.pm_.c:497
+#: ../../install_steps_interactive.pm_.c:480
msgid "Finding packages to upgrade..."
msgstr "Sto cercando i pacchetti da aggiornare"
-#: ../../install_steps_interactive.pm_.c:515
+#: ../../install_steps_interactive.pm_.c:498
#, c-format
msgid ""
"Your system does not have enough space left for installation or upgrade (%d "
@@ -5612,7 +5728,7 @@ msgstr ""
"Il tuo sistema non ha abbastanza spazio rimanente per l'installazione o\n"
"l'aggiornamento (%d > %d)"
-#: ../../install_steps_interactive.pm_.c:550
+#: ../../install_steps_interactive.pm_.c:534
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
@@ -5620,35 +5736,35 @@ msgstr ""
"Per favore scegli di caricare o salvare la selezione pacchetti su floppy.\n"
"Il formato è lo stesso dei floppy generati con auto_install."
-#: ../../install_steps_interactive.pm_.c:553
+#: ../../install_steps_interactive.pm_.c:537
msgid "Load from floppy"
msgstr "Carica da floppy"
-#: ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_interactive.pm_.c:539
msgid "Loading from floppy"
msgstr "Caricamento da floppy"
-#: ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_interactive.pm_.c:539
msgid "Package selection"
msgstr "Selezione pacchetti"
-#: ../../install_steps_interactive.pm_.c:560
+#: ../../install_steps_interactive.pm_.c:544
msgid "Insert a floppy containing package selection"
msgstr "Inserisci un floppy contenente la scelta dei pacchetti"
-#: ../../install_steps_interactive.pm_.c:572
+#: ../../install_steps_interactive.pm_.c:556
msgid "Save on floppy"
msgstr "Salva su floppy"
-#: ../../install_steps_interactive.pm_.c:646
+#: ../../install_steps_interactive.pm_.c:630
msgid "Selected size is larger than available space"
msgstr "Lo spazio indicato è maggiore dello spazio disponibile"
-#: ../../install_steps_interactive.pm_.c:660
+#: ../../install_steps_interactive.pm_.c:644
msgid "Type of install"
msgstr "Tipo di installazione"
-#: ../../install_steps_interactive.pm_.c:661
+#: ../../install_steps_interactive.pm_.c:645
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
@@ -5656,19 +5772,19 @@ msgstr ""
"Non avete selezionato nessun gruppo di pacchetti.\n"
"Per favore scegliete il tipo di installazione minima desiderato:"
-#: ../../install_steps_interactive.pm_.c:664
+#: ../../install_steps_interactive.pm_.c:648
msgid "With X"
msgstr "Con X"
-#: ../../install_steps_interactive.pm_.c:666
+#: ../../install_steps_interactive.pm_.c:650
msgid "With basic documentation (recommended!)"
msgstr "Con la documentazione essenziale (raccomandata!)"
-#: ../../install_steps_interactive.pm_.c:667
+#: ../../install_steps_interactive.pm_.c:651
msgid "Truly minimal install (especially no urpmi)"
msgstr "Installazione veramente minima (in particolare niente urpmi)"
-#: ../../install_steps_interactive.pm_.c:752
+#: ../../install_steps_interactive.pm_.c:736
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -5678,16 +5794,16 @@ msgstr ""
"Se non hai nessuno di questi CDs, clicca su Annulla.\n"
"Se mancano solo alcuni dei CD, deselezionali, e poi clicca Ok."
-#: ../../install_steps_interactive.pm_.c:757
+#: ../../install_steps_interactive.pm_.c:741
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "Cd-Rom chiamato \"%s\""
-#: ../../install_steps_interactive.pm_.c:778
+#: ../../install_steps_interactive.pm_.c:762
msgid "Preparing installation"
msgstr "Sto preparando l'installazione"
-#: ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:771
#, c-format
msgid ""
"Installing package %s\n"
@@ -5696,21 +5812,21 @@ msgstr ""
"Installazione del pacchetto %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:833
+#: ../../install_steps_interactive.pm_.c:817
msgid "Post-install configuration"
msgstr "Configurazione post installazione"
-#: ../../install_steps_interactive.pm_.c:839
+#: ../../install_steps_interactive.pm_.c:823
#, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Per favore inserisci il floppy di avvio utilizzato nel drive %s"
-#: ../../install_steps_interactive.pm_.c:845
+#: ../../install_steps_interactive.pm_.c:829
#, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Per favore inserisci il floppy di aggiornamento moduli nel drive %s"
-#: ../../install_steps_interactive.pm_.c:865
+#: ../../install_steps_interactive.pm_.c:849
msgid ""
"You now have the opportunity to download encryption software.\n"
"\n"
@@ -5786,8 +5902,7 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:904
-#, fuzzy
+#: ../../install_steps_interactive.pm_.c:888
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
"have been released after the distribution was released. They may\n"
@@ -5799,169 +5914,170 @@ msgid ""
"Do you want to install the updates ?"
msgstr ""
"Adesso avete la possibilità di scaricare dei pacchetti aggiornati che sono\n"
-"stati distribuiti dopo l'uscita della distribuzione.\n"
+"stati distribuiti dopo l'uscita della distribuzione. I pacchetti possono "
+"contenere\n"
+"aggiornamenti di sicurezza o risoluzione di bug.\n"
"\n"
-"Riceverete aggiornamenti relativi alla sicurezza e/o bug fix, ma è "
-"necessario\n"
-"disporre di una connessione a Internet per continuare.\n"
+"Per scaricare questi pacchetti è necessario disporre di una connessione a\n"
+"Internet funzionante.\n"
"\n"
"Volete installare gli aggiornamenti?"
-#: ../../install_steps_interactive.pm_.c:919
+#: ../../install_steps_interactive.pm_.c:903
msgid ""
"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr ""
"Connessione con il sito Mandrake Linux per avere la lista dei mirror "
"disponibili"
-#: ../../install_steps_interactive.pm_.c:924
+#: ../../install_steps_interactive.pm_.c:908
msgid "Choose a mirror from which to get the packages"
msgstr "Scegli un mirror da cui prendere i pacchetti"
-#: ../../install_steps_interactive.pm_.c:933
+#: ../../install_steps_interactive.pm_.c:917
msgid "Contacting the mirror to get the list of available packages..."
msgstr "Conessione al mirror per avere la lista dei pacchetti disponibili"
-#: ../../install_steps_interactive.pm_.c:960
+#: ../../install_steps_interactive.pm_.c:945
msgid "Which is your timezone?"
msgstr "Qual'è il tuo fuso orario?"
-#: ../../install_steps_interactive.pm_.c:965
+#: ../../install_steps_interactive.pm_.c:950
msgid "Hardware clock set to GMT"
msgstr "L'orologio del tuo hardware è settato su GMT"
-#: ../../install_steps_interactive.pm_.c:966
+#: ../../install_steps_interactive.pm_.c:951
msgid "Automatic time synchronization (using NTP)"
msgstr "Sincronizzazione automatica dell'ora (usando NTP)"
-#: ../../install_steps_interactive.pm_.c:973
+#: ../../install_steps_interactive.pm_.c:958
msgid "NTP Server"
msgstr "Server NTP"
-#: ../../install_steps_interactive.pm_.c:1007
-#: ../../install_steps_interactive.pm_.c:1015
+#: ../../install_steps_interactive.pm_.c:992
+#: ../../install_steps_interactive.pm_.c:1000
msgid "Remote CUPS server"
msgstr "Server CUPS remoto"
-#: ../../install_steps_interactive.pm_.c:1008
+#: ../../install_steps_interactive.pm_.c:993
msgid "No printer"
msgstr "Nessuna stampante"
-#: ../../install_steps_interactive.pm_.c:1025
+#: ../../install_steps_interactive.pm_.c:1010
msgid "Do you have an ISA sound card?"
msgstr "Hai una scheda audio ISA?"
-#: ../../install_steps_interactive.pm_.c:1027
+#: ../../install_steps_interactive.pm_.c:1012
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
"Lanciate \"sndconfig\" dopo l'installazione per configurare la vostra scheda "
"audio"
-#: ../../install_steps_interactive.pm_.c:1029
+#: ../../install_steps_interactive.pm_.c:1014
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
"Non è stata rilevata nessuna scheda audio. Provate con \"harddrake\"\n"
"dopo l'installazione."
-#: ../../install_steps_interactive.pm_.c:1034 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1019 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Riepilogo"
-#: ../../install_steps_interactive.pm_.c:1037
+#: ../../install_steps_interactive.pm_.c:1022
msgid "Mouse"
msgstr "Mouse"
-#: ../../install_steps_interactive.pm_.c:1039
+#: ../../install_steps_interactive.pm_.c:1024
msgid "Timezone"
msgstr "Fuso orario"
-#: ../../install_steps_interactive.pm_.c:1040 ../../printerdrake.pm_.c:2728
-#: ../../printerdrake.pm_.c:2814
+#: ../../install_steps_interactive.pm_.c:1025 ../../printerdrake.pm_.c:2937
+#: ../../printerdrake.pm_.c:3026
msgid "Printer"
msgstr "Stampante"
-#: ../../install_steps_interactive.pm_.c:1042
+#: ../../install_steps_interactive.pm_.c:1027
msgid "ISDN card"
msgstr "Scheda ISDN"
-#: ../../install_steps_interactive.pm_.c:1045
-#: ../../install_steps_interactive.pm_.c:1047
+#: ../../install_steps_interactive.pm_.c:1030
+#: ../../install_steps_interactive.pm_.c:1032
msgid "Sound card"
msgstr "Scheda audio"
-#: ../../install_steps_interactive.pm_.c:1049
+#: ../../install_steps_interactive.pm_.c:1034
msgid "TV card"
msgstr "Scheda TV"
-#: ../../install_steps_interactive.pm_.c:1089
-#: ../../install_steps_interactive.pm_.c:1114
-#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1074
+#: ../../install_steps_interactive.pm_.c:1099
+#: ../../install_steps_interactive.pm_.c:1103
msgid "LDAP"
msgstr "LDAP"
-#: ../../install_steps_interactive.pm_.c:1090
-#: ../../install_steps_interactive.pm_.c:1114
-#: ../../install_steps_interactive.pm_.c:1127
+#: ../../install_steps_interactive.pm_.c:1075
+#: ../../install_steps_interactive.pm_.c:1099
+#: ../../install_steps_interactive.pm_.c:1112
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1091
-#: ../../install_steps_interactive.pm_.c:1114
-#: ../../install_steps_interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1141
+#: ../../install_steps_interactive.pm_.c:1076
+#: ../../install_steps_interactive.pm_.c:1099
+#: ../../install_steps_interactive.pm_.c:1120
+#: ../../install_steps_interactive.pm_.c:1126
#, fuzzy
msgid "Windows Domain"
msgstr "Prendi i font di Windows"
-#: ../../install_steps_interactive.pm_.c:1092
-#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1077
+#: ../../install_steps_interactive.pm_.c:1099
msgid "Local files"
msgstr "File locali"
-#: ../../install_steps_interactive.pm_.c:1101
-#: ../../install_steps_interactive.pm_.c:1102 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1086
+#: ../../install_steps_interactive.pm_.c:1087 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Scegli password per root"
-#: ../../install_steps_interactive.pm_.c:1103
+#: ../../install_steps_interactive.pm_.c:1088
msgid "No password"
msgstr "Nessuna Password"
-#: ../../install_steps_interactive.pm_.c:1108
+#: ../../install_steps_interactive.pm_.c:1093
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr "Questa password è troppo semplice (deve essere almeno di %d caratteri)"
-#: ../../install_steps_interactive.pm_.c:1114 ../../network/modem.pm_.c:49
+#: ../../install_steps_interactive.pm_.c:1099 ../../network/modem.pm_.c:49
#: ../../standalone/drakconnect_.c:625 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Autenticazione"
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1107
msgid "Authentication LDAP"
msgstr "Autenticazione LDAP"
-#: ../../install_steps_interactive.pm_.c:1123
+#: ../../install_steps_interactive.pm_.c:1108
msgid "LDAP Base dn"
msgstr "LDAP Base dn"
-#: ../../install_steps_interactive.pm_.c:1124
+#: ../../install_steps_interactive.pm_.c:1109
msgid "LDAP Server"
msgstr "Server LDAP"
-#: ../../install_steps_interactive.pm_.c:1130
+#: ../../install_steps_interactive.pm_.c:1115
msgid "Authentication NIS"
msgstr "Autenticazione NIS"
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1116
msgid "NIS Domain"
msgstr "Dominio NIS"
-#: ../../install_steps_interactive.pm_.c:1132
+#: ../../install_steps_interactive.pm_.c:1117
msgid "NIS Server"
msgstr "Server NIS"
-#: ../../install_steps_interactive.pm_.c:1138
+#: ../../install_steps_interactive.pm_.c:1123
msgid ""
"For this to work for a W2K PDC, you will probably need to have the admin "
"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
@@ -5977,21 +6093,21 @@ msgid ""
"good."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1140
+#: ../../install_steps_interactive.pm_.c:1125
#, fuzzy
msgid "Authentication Windows Domain"
msgstr "Autenticazione LDAP"
-#: ../../install_steps_interactive.pm_.c:1142
+#: ../../install_steps_interactive.pm_.c:1127
#, fuzzy
msgid "Domain Admin User Name"
msgstr "Nome dominio"
-#: ../../install_steps_interactive.pm_.c:1143
+#: ../../install_steps_interactive.pm_.c:1128
msgid "Domain Admin Password"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1178
+#: ../../install_steps_interactive.pm_.c:1163
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
"depending on the normal bootloader. This is useful if you don't want to "
@@ -6020,19 +6136,19 @@ msgstr ""
"Se vuoi creare un disco di avvio per il tuo sistema, inserisci un floppy\n"
"nel primo drive e premi \"Ok\"."
-#: ../../install_steps_interactive.pm_.c:1194
+#: ../../install_steps_interactive.pm_.c:1179
msgid "First floppy drive"
msgstr "Primo drive floppy"
-#: ../../install_steps_interactive.pm_.c:1195
+#: ../../install_steps_interactive.pm_.c:1180
msgid "Second floppy drive"
msgstr "Secondo drive floppy"
-#: ../../install_steps_interactive.pm_.c:1196 ../../printerdrake.pm_.c:2277
+#: ../../install_steps_interactive.pm_.c:1181 ../../printerdrake.pm_.c:2470
msgid "Skip"
msgstr "Salta"
-#: ../../install_steps_interactive.pm_.c:1201
+#: ../../install_steps_interactive.pm_.c:1186
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -6058,7 +6174,7 @@ msgstr ""
"del sistema. Vuoi creare un disco di avvio per il tuo sistema?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1207
+#: ../../install_steps_interactive.pm_.c:1192
msgid ""
"\n"
"\n"
@@ -6072,29 +6188,29 @@ msgstr ""
"molto probabilmente non sarà possibile creare un floppy di 1.44 Mb\n"
"perché XFS necessita di in driver molto grande)."
-#: ../../install_steps_interactive.pm_.c:1215
+#: ../../install_steps_interactive.pm_.c:1200
msgid "Sorry, no floppy drive available"
msgstr "Spiacente, nessun drive floppy disponibile"
-#: ../../install_steps_interactive.pm_.c:1219
+#: ../../install_steps_interactive.pm_.c:1204
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr ""
"Scegli il drive floppy che vuoi utilizzare per creare il disco di avvio"
-#: ../../install_steps_interactive.pm_.c:1223
+#: ../../install_steps_interactive.pm_.c:1208
#, c-format
msgid "Insert a floppy in %s"
msgstr "Inserisci un floppy nel drive %s"
-#: ../../install_steps_interactive.pm_.c:1226
+#: ../../install_steps_interactive.pm_.c:1211
msgid "Creating bootdisk..."
msgstr "Creazione disco di avvio"
-#: ../../install_steps_interactive.pm_.c:1233
+#: ../../install_steps_interactive.pm_.c:1218
msgid "Preparing bootloader..."
msgstr "Preparazione del bootloader"
-#: ../../install_steps_interactive.pm_.c:1244
+#: ../../install_steps_interactive.pm_.c:1229
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -6106,11 +6222,11 @@ msgstr ""
"L'installazione continuerà, ma dovrai usare\n"
" BootX per avviare il tuo computer"
-#: ../../install_steps_interactive.pm_.c:1250
+#: ../../install_steps_interactive.pm_.c:1235
msgid "Do you want to use aboot?"
msgstr "Vuoi usare aboot?"
-#: ../../install_steps_interactive.pm_.c:1253
+#: ../../install_steps_interactive.pm_.c:1238
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -6118,16 +6234,16 @@ msgstr ""
"Errore installando aboot, \n"
"provo a forzare l'installazione anche se ciò distrugge la prima partizione?"
-#: ../../install_steps_interactive.pm_.c:1260
+#: ../../install_steps_interactive.pm_.c:1245
msgid "Installing bootloader"
msgstr "Sto installando il bootloader"
-#: ../../install_steps_interactive.pm_.c:1266
+#: ../../install_steps_interactive.pm_.c:1251
msgid "Installation of bootloader failed. The following error occured:"
msgstr ""
"Installazione del bootloader fallita. Si è verificato il seguente errore:"
-#: ../../install_steps_interactive.pm_.c:1274
+#: ../../install_steps_interactive.pm_.c:1259
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -6144,17 +6260,17 @@ msgstr ""
" Poi digitate: shut-down\n"
"Al boot successivo dovreste vedere il prompt del bootloader."
-#: ../../install_steps_interactive.pm_.c:1308
+#: ../../install_steps_interactive.pm_.c:1293
#: ../../standalone/drakautoinst_.c:79
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Inserisci un floppy vuoto nel drive %s"
-#: ../../install_steps_interactive.pm_.c:1312
+#: ../../install_steps_interactive.pm_.c:1297
msgid "Creating auto install floppy..."
-msgstr "Sto creando il floppy di auto installazione"
+msgstr "Sto creando il floppy di installazione automatica ..."
-#: ../../install_steps_interactive.pm_.c:1323
+#: ../../install_steps_interactive.pm_.c:1308
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -6164,7 +6280,7 @@ msgstr ""
"\n"
"Vuoi veramente interrompere adesso?"
-#: ../../install_steps_interactive.pm_.c:1334
+#: ../../install_steps_interactive.pm_.c:1319
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
@@ -6197,15 +6313,15 @@ msgstr ""
"capitolo\n"
"sulla post-installazione della Guida Ufficiale dell'Utente Mandrake Linux."
-#: ../../install_steps_interactive.pm_.c:1347
+#: ../../install_steps_interactive.pm_.c:1332
msgid "http://www.mandrakelinux.com/en/90errata.php3"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1352
+#: ../../install_steps_interactive.pm_.c:1337
msgid "Generate auto install floppy"
-msgstr "Crea il floppy di auto installazione"
+msgstr "Crea il floppy di installazione automatica"
-#: ../../install_steps_interactive.pm_.c:1354
+#: ../../install_steps_interactive.pm_.c:1339
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -6213,21 +6329,22 @@ msgid ""
"\n"
"You may prefer to replay the installation.\n"
msgstr ""
-"L'auto installazione può essere del tutto automatizzata se desiderate,\n"
+"L'installazione automatica può essere del tutto automatizzata se "
+"desiderate,\n"
"ma in tal caso il programma partizionerà automaticamente il disco!!\n"
"(questa opzione è pensata per l'installazione su un'altra macchina).\n"
"\n"
"Probabilmente preferirete ripetere l'installazione.\n"
-#: ../../install_steps_interactive.pm_.c:1359
+#: ../../install_steps_interactive.pm_.c:1344
msgid "Automated"
msgstr "Automatizzata"
-#: ../../install_steps_interactive.pm_.c:1359
+#: ../../install_steps_interactive.pm_.c:1344
msgid "Replay"
msgstr "Ripeti"
-#: ../../install_steps_interactive.pm_.c:1362
+#: ../../install_steps_interactive.pm_.c:1347
msgid "Save packages selection"
msgstr "Salva scelta pacchetti"
@@ -6236,7 +6353,8 @@ msgstr "Salva scelta pacchetti"
msgid "Mandrake Linux Installation %s"
msgstr "Installazione Mandrake Linux %s"
-#: ../../install_steps_newt.pm_.c:34
+#. -PO This string must fit in a 80-char wide text screen
+#: ../../install_steps_newt.pm_.c:35
msgid ""
" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
msgstr ""
@@ -6254,22 +6372,22 @@ msgstr "manca l'aiuto per la console"
msgid "Choose a file"
msgstr "Scegli un file"
-#: ../../interactive.pm_.c:317
+#: ../../interactive.pm_.c:320
msgid "Advanced"
msgstr "Avanzato"
-#: ../../interactive.pm_.c:318
+#: ../../interactive.pm_.c:321
msgid "Basic"
msgstr "Di base"
-#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:155
-#: ../../printerdrake.pm_.c:1990
+#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:158
+#: ../../printerdrake.pm_.c:2124
msgid "<- Previous"
msgstr "<- Indietro"
#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
-#: ../../standalone/drakbackup_.c:3464 ../../standalone/drakbackup_.c:3491
-#: ../../standalone/drakbackup_.c:3517
+#: ../../standalone/drakbackup_.c:4112 ../../standalone/drakbackup_.c:4139
+#: ../../standalone/drakbackup_.c:4169 ../../standalone/drakbackup_.c:4195
msgid "Next"
msgstr "Successivo"
@@ -6342,375 +6460,375 @@ msgstr ""
msgid "Re-submit"
msgstr "Riproporre"
-#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:152 ../../keyboard.pm_.c:187
msgid "Czech (QWERTZ)"
msgstr "Ceca (QWERTZ)"
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:153 ../../keyboard.pm_.c:189
msgid "German"
msgstr "Tedesca"
-#: ../../keyboard.pm_.c:175
+#: ../../keyboard.pm_.c:154
msgid "Dvorak"
msgstr "Dvorak"
-#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:218
+#: ../../keyboard.pm_.c:155 ../../keyboard.pm_.c:197
msgid "Spanish"
msgstr "Spagnola"
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:156 ../../keyboard.pm_.c:198
msgid "Finnish"
msgstr "Finlandese"
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:220
+#: ../../keyboard.pm_.c:157 ../../keyboard.pm_.c:199
msgid "French"
msgstr "Francese"
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:158 ../../keyboard.pm_.c:231
msgid "Norwegian"
msgstr "Norvegese"
-#: ../../keyboard.pm_.c:180
+#: ../../keyboard.pm_.c:159
msgid "Polish"
msgstr "Polacca"
-#: ../../keyboard.pm_.c:181 ../../keyboard.pm_.c:260
+#: ../../keyboard.pm_.c:160 ../../keyboard.pm_.c:239
msgid "Russian"
msgstr "Russa"
-#: ../../keyboard.pm_.c:183 ../../keyboard.pm_.c:262
+#: ../../keyboard.pm_.c:162 ../../keyboard.pm_.c:241
msgid "Swedish"
msgstr "Svedese"
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:278
+#: ../../keyboard.pm_.c:163 ../../keyboard.pm_.c:257
msgid "UK keyboard"
msgstr "Tastiera UK"
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:279
+#: ../../keyboard.pm_.c:164 ../../keyboard.pm_.c:258
msgid "US keyboard"
msgstr "Tastiera US"
-#: ../../keyboard.pm_.c:187
+#: ../../keyboard.pm_.c:166
msgid "Albanian"
msgstr "Albanese"
-#: ../../keyboard.pm_.c:188
+#: ../../keyboard.pm_.c:167
msgid "Armenian (old)"
msgstr "Armena (vecchia)"
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:168
msgid "Armenian (typewriter)"
msgstr "Armena (macchina da scrivere)"
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:169
msgid "Armenian (phonetic)"
msgstr "Armena (fonetica)"
-#: ../../keyboard.pm_.c:195
+#: ../../keyboard.pm_.c:174
msgid "Azerbaidjani (latin)"
msgstr "Azerbaidjana (latina)"
-#: ../../keyboard.pm_.c:197
+#: ../../keyboard.pm_.c:176
msgid "Belgian"
msgstr "Belga"
-#: ../../keyboard.pm_.c:198
+#: ../../keyboard.pm_.c:177
#, fuzzy
msgid "Bengali"
msgstr "abilita"
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:178
msgid "Bulgarian (phonetic)"
msgstr "Bulgara (fonetica)"
-#: ../../keyboard.pm_.c:200
+#: ../../keyboard.pm_.c:179
msgid "Bulgarian (BDS)"
msgstr "Bulgara (BDS)"
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:180
msgid "Brazilian (ABNT-2)"
msgstr "Brasiliana (ABNT-2)"
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:183
#, fuzzy
msgid "Bosnian"
msgstr "Estone"
-#: ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:184
msgid "Belarusian"
msgstr "Bielorussa"
-#: ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:185
msgid "Swiss (German layout)"
msgstr "Svizzera (mappa tedesca)"
-#: ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:186
msgid "Swiss (French layout)"
msgstr "Svizzera (mappa francese)"
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:188
msgid "Czech (QWERTY)"
msgstr "Ceca (QWERTY)"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:190
msgid "German (no dead keys)"
msgstr "Tedesca (nessun tasto morto)"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:191
msgid "Devanagari"
msgstr ""
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:192
msgid "Danish"
msgstr "Danese"
-#: ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:193
msgid "Dvorak (US)"
msgstr "Dvorak (US)"
-#: ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:194
msgid "Dvorak (Norwegian)"
msgstr "Dvorak (Norvegese)"
-#: ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:195
msgid "Dvorak (Swedish)"
msgstr "Dvorak (Svedese)"
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:196
msgid "Estonian"
msgstr "Estone"
-#: ../../keyboard.pm_.c:221
+#: ../../keyboard.pm_.c:200
msgid "Georgian (\"Russian\" layout)"
msgstr "Georgiana (mappa \"Russa\")"
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:201
msgid "Georgian (\"Latin\" layout)"
msgstr "Georgiana (mappa \"Latina\")"
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:202
msgid "Greek"
msgstr "Greca"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:203
msgid "Gujarati"
msgstr ""
-#: ../../keyboard.pm_.c:225
+#: ../../keyboard.pm_.c:204
msgid "Gurmukhi"
msgstr ""
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:205
msgid "Hungarian"
msgstr "Ungherese"
-#: ../../keyboard.pm_.c:227
+#: ../../keyboard.pm_.c:206
msgid "Croatian"
msgstr "Croata"
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:207
msgid "Israeli"
msgstr "Israeliana"
-#: ../../keyboard.pm_.c:229
+#: ../../keyboard.pm_.c:208
msgid "Israeli (Phonetic)"
msgstr "Israeliana (Fonetica)"
-#: ../../keyboard.pm_.c:230
+#: ../../keyboard.pm_.c:209
msgid "Iranian"
msgstr "Iraniana"
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:210
msgid "Icelandic"
msgstr "Islandese"
-#: ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:211
msgid "Italian"
msgstr "Italiana"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:212
msgid "Inuktitut"
msgstr ""
-#: ../../keyboard.pm_.c:234
+#: ../../keyboard.pm_.c:213
msgid "Japanese 106 keys"
msgstr "Giapponese 106 tasti"
-#: ../../keyboard.pm_.c:237
+#: ../../keyboard.pm_.c:216
msgid "Korean keyboard"
msgstr "Tastiera Coreana"
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:217
msgid "Latin American"
msgstr "Latino Americana"
-#: ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:218
#, fuzzy
msgid "Laotian"
msgstr "Lettone"
-#: ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:219
msgid "Lithuanian AZERTY (old)"
msgstr "Lituana AZERTY (vecchia)"
-#: ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:221
msgid "Lithuanian AZERTY (new)"
msgstr "Lituana AZERTY (nuova)"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:222
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Lituana \"numero riga\" QWERTY"
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:223
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "Lituana \"fonetica\" QWERTY"
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:224
msgid "Latvian"
msgstr "Lettone"
-#: ../../keyboard.pm_.c:246
+#: ../../keyboard.pm_.c:225
msgid "Macedonian"
msgstr "Macedone"
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:226
msgid "Myanmar (Burmese)"
msgstr ""
-#: ../../keyboard.pm_.c:248
+#: ../../keyboard.pm_.c:227
#, fuzzy
msgid "Mongolian (cyrillic)"
msgstr "Serba (cirillica)"
-#: ../../keyboard.pm_.c:249
+#: ../../keyboard.pm_.c:228
msgid "Maltese (UK)"
msgstr ""
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:229
msgid "Maltese (US)"
msgstr ""
-#: ../../keyboard.pm_.c:251
+#: ../../keyboard.pm_.c:230
msgid "Dutch"
msgstr "Olandese"
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:232
msgid "Polish (qwerty layout)"
msgstr "Polacca (mappa qwerty)"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:233
msgid "Polish (qwertz layout)"
msgstr "Polacca (mappa qwertz)"
-#: ../../keyboard.pm_.c:255
+#: ../../keyboard.pm_.c:234
msgid "Portuguese"
msgstr "Portoghese"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:235
msgid "Canadian (Quebec)"
msgstr "Canadese (Quebec)"
-#: ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:237
msgid "Romanian (qwertz)"
msgstr "Romena (qwertz)"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:238
msgid "Romanian (qwerty)"
msgstr "Romena (qwerty)"
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:240
msgid "Russian (Yawerty)"
msgstr "Russa (Yawerty)"
-#: ../../keyboard.pm_.c:263
+#: ../../keyboard.pm_.c:242
msgid "Slovenian"
msgstr "Slovena"
-#: ../../keyboard.pm_.c:264
+#: ../../keyboard.pm_.c:243
msgid "Slovakian (QWERTZ)"
msgstr "Slovacca (QWERTZ)"
-#: ../../keyboard.pm_.c:265
+#: ../../keyboard.pm_.c:244
msgid "Slovakian (QWERTY)"
msgstr "Slovacca (QWERTY)"
-#: ../../keyboard.pm_.c:267
+#: ../../keyboard.pm_.c:246
msgid "Serbian (cyrillic)"
msgstr "Serba (cirillica)"
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:248
msgid "Tamil (Unicode)"
msgstr "Tamil (Unicode)"
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:249
msgid "Tamil (TSCII)"
msgstr "Tamil (TSCII)"
-#: ../../keyboard.pm_.c:271
+#: ../../keyboard.pm_.c:250
msgid "Thai keyboard"
msgstr "Tastiera Thai"
-#: ../../keyboard.pm_.c:273
+#: ../../keyboard.pm_.c:252
msgid "Tajik keyboard"
msgstr "Tastiera Tajik"
-#: ../../keyboard.pm_.c:274
+#: ../../keyboard.pm_.c:253
msgid "Turkish (traditional \"F\" model)"
msgstr "Turca (modulo \"F\" tradizionale)"
-#: ../../keyboard.pm_.c:275
+#: ../../keyboard.pm_.c:254
msgid "Turkish (modern \"Q\" model)"
msgstr "Turca (modello \"Q\" moderno)"
-#: ../../keyboard.pm_.c:277
+#: ../../keyboard.pm_.c:256
msgid "Ukrainian"
msgstr "Ucraina"
-#: ../../keyboard.pm_.c:280
+#: ../../keyboard.pm_.c:259
msgid "US keyboard (international)"
msgstr "Tastiera US (internazionale)"
-#: ../../keyboard.pm_.c:281
+#: ../../keyboard.pm_.c:260
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "Vietnamita \"riga numerica\" QWERTY"
-#: ../../keyboard.pm_.c:282
+#: ../../keyboard.pm_.c:261
msgid "Yugoslavian (latin)"
msgstr "Yugoslava (latino)"
-#: ../../keyboard.pm_.c:289
+#: ../../keyboard.pm_.c:268
msgid "Right Alt key"
msgstr "Tasto Alt di destra"
-#: ../../keyboard.pm_.c:290
+#: ../../keyboard.pm_.c:269
msgid "Both Shift keys simultaneously"
msgstr "Entrambi i tasti Shift allo stesso tempo"
-#: ../../keyboard.pm_.c:291
+#: ../../keyboard.pm_.c:270
msgid "Control and Shift keys simultaneously"
msgstr "I tasti Ctrl e Shift allo stesso tempo"
-#: ../../keyboard.pm_.c:292
+#: ../../keyboard.pm_.c:271
msgid "CapsLock key"
msgstr "Il tasto CapsLock"
-#: ../../keyboard.pm_.c:293
+#: ../../keyboard.pm_.c:272
msgid "Ctrl and Alt keys simultaneously"
msgstr "Tasti Ctrl e Alt allo stesso tempo"
-#: ../../keyboard.pm_.c:294
+#: ../../keyboard.pm_.c:273
msgid "Alt and Shift keys simultaneously"
msgstr "I tasti Alt e Shift allo stesso tempo"
-#: ../../keyboard.pm_.c:295
+#: ../../keyboard.pm_.c:274
msgid "\"Menu\" key"
msgstr "Tasto \"Menu\""
-#: ../../keyboard.pm_.c:296
+#: ../../keyboard.pm_.c:275
msgid "Left \"Windows\" key"
msgstr "Tasto \"Windows\" di sinistra"
-#: ../../keyboard.pm_.c:297
+#: ../../keyboard.pm_.c:276
msgid "Right \"Windows\" key"
msgstr "Tasto \"Windows\" di destra"
@@ -6724,9 +6842,8 @@ msgid "Remove the logical volumes first\n"
msgstr "Prima rimuovi i volumi logici\n"
#: ../../modparm.pm_.c:50
-#, fuzzy
msgid "a number"
-msgstr "Numero telefonico"
+msgstr "un numero"
#: ../../modparm.pm_.c:52
#, c-format
@@ -6743,9 +6860,8 @@ msgid "comma separated numbers"
msgstr ""
#: ../../modparm.pm_.c:54
-#, fuzzy
msgid "comma separated strings"
-msgstr "Formatta partizioni"
+msgstr "stringhe separate da virgole"
#: ../../modules.pm_.c:292
msgid ""
@@ -6770,11 +6886,11 @@ msgstr "Mouse con rotellina su porta PS2 generico "
msgid "GlidePoint"
msgstr "GlidePoint"
-#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:63
+#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:65
msgid "Kensington Thinking Mouse"
msgstr "Kensington Thinking Mouse"
-#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:59
+#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:61
msgid "Genius NetMouse"
msgstr "Genius NetMouse"
@@ -6782,115 +6898,125 @@ msgstr "Genius NetMouse"
msgid "Genius NetScroll"
msgstr "Genius Netscorll"
-#: ../../mouse.pm_.c:43 ../../mouse.pm_.c:68
+#: ../../mouse.pm_.c:39 ../../mouse.pm_.c:48
+#, fuzzy
+msgid "Microsoft Explorer"
+msgstr "Microsoft IntelliMouse"
+
+#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:70
msgid "1 button"
msgstr "1 pulsante"
-#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:51
+#: ../../mouse.pm_.c:45 ../../mouse.pm_.c:53
msgid "Generic 2 Button Mouse"
msgstr "Mouse generico a 2 Pulsanti"
-#: ../../mouse.pm_.c:46
+#: ../../mouse.pm_.c:47
msgid "Wheel"
msgstr "Ruota"
-#: ../../mouse.pm_.c:49
+#: ../../mouse.pm_.c:51
msgid "serial"
msgstr "seriale"
-#: ../../mouse.pm_.c:52
+#: ../../mouse.pm_.c:54
msgid "Generic 3 Button Mouse"
msgstr "Mouse generico a 3 Pulsanti"
-#: ../../mouse.pm_.c:53
+#: ../../mouse.pm_.c:55
msgid "Microsoft IntelliMouse"
msgstr "Microsoft IntelliMouse"
-#: ../../mouse.pm_.c:54
+#: ../../mouse.pm_.c:56
msgid "Logitech MouseMan"
msgstr "Logitech MouseMan"
-#: ../../mouse.pm_.c:55
+#: ../../mouse.pm_.c:57
msgid "Mouse Systems"
msgstr "Mouse Systems"
-#: ../../mouse.pm_.c:57
+#: ../../mouse.pm_.c:59
msgid "Logitech CC Series"
msgstr "Logitech serie CC (seriale)"
-#: ../../mouse.pm_.c:58
+#: ../../mouse.pm_.c:60
msgid "Logitech MouseMan+/FirstMouse+"
msgstr "Logitech MouseMan+/FirstMouse+"
-#: ../../mouse.pm_.c:60
+#: ../../mouse.pm_.c:62
msgid "MM Series"
msgstr "Serie MM"
-#: ../../mouse.pm_.c:61
+#: ../../mouse.pm_.c:63
msgid "MM HitTablet"
msgstr "MM HitTablet"
-#: ../../mouse.pm_.c:62
+#: ../../mouse.pm_.c:64
msgid "Logitech Mouse (serial, old C7 type)"
msgstr "Mouse Logitech (seriale, vecchio tipo C7)"
-#: ../../mouse.pm_.c:66
+#: ../../mouse.pm_.c:68
msgid "busmouse"
msgstr "busmouse"
-#: ../../mouse.pm_.c:69
+#: ../../mouse.pm_.c:71
msgid "2 buttons"
msgstr "2 pulsanti"
-#: ../../mouse.pm_.c:70
+#: ../../mouse.pm_.c:72
msgid "3 buttons"
msgstr "3 pulsanti"
-#: ../../mouse.pm_.c:73
+#: ../../mouse.pm_.c:75
msgid "none"
msgstr "nessuno"
-#: ../../mouse.pm_.c:75
+#: ../../mouse.pm_.c:77
msgid "No mouse"
msgstr "Nessun mouse"
-#: ../../mouse.pm_.c:445
+#: ../../mouse.pm_.c:482
msgid "Please test the mouse"
msgstr "Per favore prova il mouse"
-#: ../../mouse.pm_.c:446
+#: ../../mouse.pm_.c:483
msgid "To activate the mouse,"
msgstr "Per attivare il mouse"
-#: ../../mouse.pm_.c:447
+#: ../../mouse.pm_.c:484
msgid "MOVE YOUR WHEEL!"
msgstr "MUOVI LA RUOTA!"
-#: ../../my_gtk.pm_.c:156
+#: ../../my_gtk.pm_.c:64
+#, fuzzy
+msgid "-adobe-utopia-regular-r-*-*-25-*-*-*-p-*-iso8859-*,*-r-*"
+msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
+
+#: ../../my_gtk.pm_.c:159
msgid "Finish"
msgstr "Finisci"
-#: ../../my_gtk.pm_.c:156 ../../printerdrake.pm_.c:1992
+#: ../../my_gtk.pm_.c:159 ../../printerdrake.pm_.c:2126
msgid "Next ->"
msgstr "Avanti ->"
-#: ../../my_gtk.pm_.c:284
+#: ../../my_gtk.pm_.c:287
msgid "Is this correct?"
msgstr "È corretto?"
-#: ../../my_gtk.pm_.c:356 ../../services.pm_.c:222
+#: ../../my_gtk.pm_.c:359 ../../services.pm_.c:222
msgid "Info"
msgstr "Info"
-#: ../../my_gtk.pm_.c:377
+#: ../../my_gtk.pm_.c:380
msgid "Expand Tree"
msgstr "Espandi struttura"
-#: ../../my_gtk.pm_.c:378
+#: ../../my_gtk.pm_.c:381
msgid "Collapse Tree"
msgstr "Raggruppa struttura"
-#: ../../my_gtk.pm_.c:379
+#: ../../my_gtk.pm_.c:382
msgid "Toggle between flat and group sorted"
msgstr "Cambia tra ordinamento semplice o a gruppi"
@@ -6928,6 +7054,74 @@ msgstr "usa pppoe"
msgid "use pptp"
msgstr "usa pptp"
+#: ../../network/drakfirewall.pm_.c:12
+#, fuzzy
+msgid "Web Server"
+msgstr "Server"
+
+#: ../../network/drakfirewall.pm_.c:17
+#, fuzzy
+msgid "Domain Name Server"
+msgstr "Nome dominio"
+
+#: ../../network/drakfirewall.pm_.c:32
+#, fuzzy
+msgid "Mail Server"
+msgstr "Abilita il server"
+
+#: ../../network/drakfirewall.pm_.c:37
+#, fuzzy
+msgid "POP and IMAP Server"
+msgstr "Server LDAP"
+
+#: ../../network/drakfirewall.pm_.c:111
+#, fuzzy
+msgid "No network card"
+msgstr "nessuna scheda di rete trovata"
+
+#: ../../network/drakfirewall.pm_.c:129
+#, fuzzy
+msgid ""
+"drakfirewall configurator\n"
+"\n"
+"This configures a personal firewall for this Mandrake Linux machine.\n"
+"For a powerful dedicated firewall solution, please look to the\n"
+"specialized MandrakeSecurity Firewall distribution."
+msgstr ""
+"Configuratore di firewall minimo\n"
+"\n"
+"Configurazione di un firewall personale per questo sistema Mandrake Linux.\n"
+"Per una soluzione firewall potente e dedicata, per favore rivolgiti\n"
+"alla distribuzione specializzata MandrakeSecurity Firewall."
+
+#: ../../network/drakfirewall.pm_.c:147
+msgid "Which services would you like to allow the Internet to connect to?"
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:148
+msgid ""
+"You can enter miscellaneous ports. \n"
+"Valid examples are: 139/tcp 139/udp.\n"
+"Have a look at /etc/services for information."
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:154
+#, c-format
+msgid ""
+"Invalid port given: %s.\n"
+"The proper format is \"port/tcp\" or \"port/udp\", \n"
+"where port is between 1 and 65535."
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:162
+msgid "Everything (no firewall)"
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:164
+#, fuzzy
+msgid "Other ports"
+msgstr "Test delle porte"
+
#: ../../network/ethernet.pm_.c:37
msgid ""
"Which dhcp client do you want to use?\n"
@@ -6944,7 +7138,7 @@ msgstr ""
"Nessun adattatore di rete ethernet è stato rilevato nel tuo sistema.\n"
"Non posso configurare questo tipo di connessione."
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:247
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:240
msgid "Choose the network interface"
msgstr "Scegli l'interfaccia di rete"
@@ -6959,7 +7153,7 @@ msgstr ""
msgid "no network card found"
msgstr "nessuna scheda di rete trovata"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:366
msgid "Configuring network"
msgstr "Sto configurando la rete"
@@ -6975,7 +7169,7 @@ msgstr ""
"Il tuo nome host dovrebbe essere un nome pienamente qualificato,\n"
"come ''mybox.mylab.myco.com''."
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:370
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:371
msgid "Host name"
msgstr "Nome host"
@@ -7282,13 +7476,13 @@ msgstr "Scegli il profilo da configurare"
msgid "Use auto detection"
msgstr "Usa il riconoscimento automatico"
-#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2930
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:3151
#: ../../standalone/drakconnect_.c:274 ../../standalone/drakconnect_.c:277
#: ../../standalone/drakfloppy_.c:145
msgid "Expert Mode"
msgstr "Modo Esperto"
-#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:283
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:386
msgid "Detecting devices..."
msgstr "Riconoscimento periferiche..."
@@ -7454,15 +7648,14 @@ msgid "Automatic IP"
msgstr "IP automatico"
#: ../../network/network.pm_.c:315
-#, fuzzy
msgid "Start at boot"
-msgstr "Attivato/a al momento del boot"
+msgstr "Attiva al momento del boot"
-#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:753
+#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:860
msgid "IP address should be in format 1.2.3.4"
msgstr "L'indirizzo IP deve essere in formato 1.2.3.4"
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:367
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -7474,43 +7667,55 @@ msgstr ""
"come ''mybox.mylab.myco.com''.\n"
"Puoi anche inserire l'indirizzo IP del gateway se ne hai uno."
-#: ../../network/network.pm_.c:371
+#: ../../network/network.pm_.c:372
msgid "DNS server"
msgstr "Server DNS"
-#: ../../network/network.pm_.c:372
+#: ../../network/network.pm_.c:373
#, c-format
msgid "Gateway (e.g. %s)"
msgstr "Gateway (es. %s)"
-#: ../../network/network.pm_.c:374
+#: ../../network/network.pm_.c:375
msgid "Gateway device"
msgstr "Dispositivo di gateway"
-#: ../../network/network.pm_.c:386
+#: ../../network/network.pm_.c:387
msgid "Proxies configuration"
msgstr "Configurazione dei proxy"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:388
msgid "HTTP proxy"
msgstr "Proxy HTTP"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:389
msgid "FTP proxy"
msgstr "Proxy FTP"
-#: ../../network/network.pm_.c:389
+#: ../../network/network.pm_.c:390
msgid "Track network card id (useful for laptops)"
msgstr "Individua identità della scheda audio (utile per i laptop)"
-#: ../../network/network.pm_.c:392
+#: ../../network/network.pm_.c:393
msgid "Proxy should be http://..."
msgstr "Il proxy dovrebbe essere http://..."
-#: ../../network/network.pm_.c:393
+#: ../../network/network.pm_.c:394
msgid "Proxy should be ftp://..."
msgstr "Il proxy dovrebbe essere ftp://..."
+#: ../../network/shorewall.pm_.c:24
+msgid "Firewalling configuration detected!"
+msgstr "Rilevata configurazione di Firewall!"
+
+#: ../../network/shorewall.pm_.c:25
+msgid ""
+"Warning! An existing firewalling configuration has been detected. You may "
+"need some manual fix after installation."
+msgstr ""
+"Attenzione! È stata rilevata una configurazione di firewall esistente. "
+"Potrebbe avere bisogno di alcuni aggiustamenti manuali dopo l'installazione."
+
#: ../../network/tools.pm_.c:41
msgid "Internet configuration"
msgstr "Configurazione di internet"
@@ -7616,15 +7821,15 @@ msgstr "Password dell'account"
msgid "United Kingdom"
msgstr ""
-#: ../../partition_table.pm_.c:606
+#: ../../partition_table.pm_.c:602
msgid "mount failed: "
msgstr "mount fallito: "
-#: ../../partition_table.pm_.c:670
+#: ../../partition_table.pm_.c:666
msgid "Extended partition not supported on this platform"
msgstr "Partizione estesa non supportata su questa piattaforma"
-#: ../../partition_table.pm_.c:688
+#: ../../partition_table.pm_.c:684
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
@@ -7634,21 +7839,21 @@ msgstr ""
"L'unica soluzione è di muovere le tue partizioni primarie per avere il buco "
"vicino alle partizioni estese"
-#: ../../partition_table.pm_.c:778
+#: ../../partition_table.pm_.c:774
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "Ripristino da file %s fallito: %s"
-#: ../../partition_table.pm_.c:780
+#: ../../partition_table.pm_.c:776
msgid "Bad backup file"
msgstr "File di backup errato"
-#: ../../partition_table.pm_.c:802
+#: ../../partition_table.pm_.c:798
#, c-format
msgid "Error writing to file %s"
msgstr "Errore scrivendo sul file %s"
-#: ../../partition_table/raw.pm_.c:187
+#: ../../partition_table/raw.pm_.c:189
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
@@ -7695,150 +7900,155 @@ msgstr "LPD - Line Printer Daemon"
msgid "PDQ - Print, Don't Queue"
msgstr "PDQ - Print, Don't Queue"
-#: ../../printer.pm_.c:35 ../../printer.pm_.c:854
+#: ../../printer.pm_.c:34 ../../printer.pm_.c:1125
msgid "CUPS"
msgstr "CUPS"
-#: ../../printer.pm_.c:36
+#: ../../printer.pm_.c:35
msgid "LPRng"
msgstr "LPRng"
-#: ../../printer.pm_.c:37
+#: ../../printer.pm_.c:36
msgid "LPD"
msgstr "LPD"
-#: ../../printer.pm_.c:38
+#: ../../printer.pm_.c:37
msgid "PDQ"
msgstr "PDQ"
-#: ../../printer.pm_.c:50
+#: ../../printer.pm_.c:49
msgid "Local printer"
msgstr "Stampante locale"
-#: ../../printer.pm_.c:51
+#: ../../printer.pm_.c:50
msgid "Remote printer"
msgstr "Stampante remota"
-#: ../../printer.pm_.c:52
+#: ../../printer.pm_.c:51
msgid "Printer on remote CUPS server"
msgstr "Stampante su server CUPS remoto"
-#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:776
+#: ../../printer.pm_.c:52 ../../printerdrake.pm_.c:883
msgid "Printer on remote lpd server"
msgstr "Stampante su server lpd remoto"
-#: ../../printer.pm_.c:54
+#: ../../printer.pm_.c:53
msgid "Network printer (TCP/Socket)"
msgstr "Stampante di rete (TCP/Socket)"
-#: ../../printer.pm_.c:55
+#: ../../printer.pm_.c:54
msgid "Printer on SMB/Windows 95/98/NT server"
msgstr "Stampante su server SMB/Windows95/98/NT"
-#: ../../printer.pm_.c:56
+#: ../../printer.pm_.c:55
msgid "Printer on NetWare server"
msgstr "Stampante su server NetWare"
-#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:780
+#: ../../printer.pm_.c:56 ../../printerdrake.pm_.c:887
msgid "Enter a printer device URI"
msgstr "Indica l'URI di un dispositivo di stamp"
-#: ../../printer.pm_.c:58
+#: ../../printer.pm_.c:57
msgid "Pipe job into a command"
msgstr "Invia tramite pipe al comando"
-#: ../../printer.pm_.c:487 ../../printer.pm_.c:678 ../../printer.pm_.c:1000
-#: ../../printerdrake.pm_.c:2070 ../../printerdrake.pm_.c:3189
+#: ../../printer.pm_.c:324 ../../printer.pm_.c:366 ../../printer.pm_.c:533
+#, fuzzy
+msgid "Unknown Model"
+msgstr "Modello sconosciuto"
+
+#: ../../printer.pm_.c:735 ../../printer.pm_.c:926 ../../printer.pm_.c:1318
+#: ../../printerdrake.pm_.c:2260 ../../printerdrake.pm_.c:3414
msgid "Unknown model"
msgstr "Modello sconosciuto"
-#: ../../printer.pm_.c:515
+#: ../../printer.pm_.c:763
msgid "Local Printers"
msgstr "Stampanti locali"
-#: ../../printer.pm_.c:517 ../../printer.pm_.c:855
+#: ../../printer.pm_.c:765 ../../printer.pm_.c:1126
msgid "Remote Printers"
msgstr "Stampanti remote"
-#: ../../printer.pm_.c:524 ../../printerdrake.pm_.c:301
+#: ../../printer.pm_.c:772 ../../printerdrake.pm_.c:404
#, c-format
msgid " on parallel port \\/*%s"
msgstr " sulla porta parallela \\/*%s"
-#: ../../printer.pm_.c:527 ../../printerdrake.pm_.c:303
+#: ../../printer.pm_.c:775 ../../printerdrake.pm_.c:406
#, c-format
msgid ", USB printer \\/*%s"
msgstr ", stampante USB \\/*%s"
-#: ../../printer.pm_.c:532
+#: ../../printer.pm_.c:780
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ", dispositivo multifunzione sulla porta parallela \\/*%s"
-#: ../../printer.pm_.c:535
+#: ../../printer.pm_.c:783
msgid ", multi-function device on USB"
msgstr ", dispositivo multifunzione su USB"
-#: ../../printer.pm_.c:537
+#: ../../printer.pm_.c:785
msgid ", multi-function device on HP JetDirect"
msgstr ", dispositivo multifunzione su HP JetDirect"
-#: ../../printer.pm_.c:539
+#: ../../printer.pm_.c:787
msgid ", multi-function device"
msgstr ", dispositivo multifunzione"
-#: ../../printer.pm_.c:542
+#: ../../printer.pm_.c:790
#, c-format
msgid ", printing to %s"
msgstr ", sto stampando su %s"
-#: ../../printer.pm_.c:544
+#: ../../printer.pm_.c:792
#, fuzzy, c-format
msgid " on LPD server \"%s\", printer \"%s\""
msgstr "sul server LPD \"%s\", stampante \"%s\""
-#: ../../printer.pm_.c:546
+#: ../../printer.pm_.c:794
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ", host TCP/IP \"%s\", porta %s"
-#: ../../printer.pm_.c:550
+#: ../../printer.pm_.c:798
#, fuzzy, c-format
msgid " on SMB/Windows server \"%s\", share \"%s\""
msgstr "sul server Windows \"%s\", condivisione \"%s\""
-#: ../../printer.pm_.c:554
+#: ../../printer.pm_.c:802
#, fuzzy, c-format
msgid " on Novell server \"%s\", printer \"%s\""
msgstr "sul server Novell \"%s\", stampante \"%s\""
-#: ../../printer.pm_.c:556
+#: ../../printer.pm_.c:804
#, c-format
msgid ", using command %s"
msgstr ", uso il comando %s"
-#: ../../printer.pm_.c:675 ../../printerdrake.pm_.c:1540
+#: ../../printer.pm_.c:923 ../../printerdrake.pm_.c:1656
msgid "Raw printer (No driver)"
msgstr "Stampante di tipo raw (nessun driver)"
-#: ../../printer.pm_.c:824
+#: ../../printer.pm_.c:1095
#, c-format
msgid "(on %s)"
msgstr "(su %s)"
-#: ../../printer.pm_.c:826
+#: ../../printer.pm_.c:1097
msgid "(on this machine)"
msgstr "(su questa macchina)"
-#: ../../printer.pm_.c:851
+#: ../../printer.pm_.c:1122
#, c-format
msgid "On CUPS server \"%s\""
msgstr "Sul server CUPS \"%s\""
-#: ../../printer.pm_.c:857 ../../printerdrake.pm_.c:2851
-#: ../../printerdrake.pm_.c:2862 ../../printerdrake.pm_.c:3078
-#: ../../printerdrake.pm_.c:3130 ../../printerdrake.pm_.c:3156
-#: ../../printerdrake.pm_.c:3326 ../../printerdrake.pm_.c:3328
+#: ../../printer.pm_.c:1128 ../../printerdrake.pm_.c:3071
+#: ../../printerdrake.pm_.c:3082 ../../printerdrake.pm_.c:3303
+#: ../../printerdrake.pm_.c:3355 ../../printerdrake.pm_.c:3381
+#: ../../printerdrake.pm_.c:3556 ../../printerdrake.pm_.c:3558
msgid " (Default)"
msgstr " (Predefinito)"
@@ -7864,11 +8074,11 @@ msgstr ""
msgid "Printer auto-detection (Local, TCP/Socket, and SMB printers)"
msgstr ""
-#: ../../printerdrake.pm_.c:84 ../../printerdrake.pm_.c:2914
+#: ../../printerdrake.pm_.c:84 ../../printerdrake.pm_.c:3135
msgid "CUPS configuration"
msgstr "Configurazione di CUPS"
-#: ../../printerdrake.pm_.c:85 ../../printerdrake.pm_.c:2915
+#: ../../printerdrake.pm_.c:85 ../../printerdrake.pm_.c:3136
msgid "Specify CUPS server"
msgstr "Indica il server CUPS"
@@ -7913,7 +8123,7 @@ msgstr ""
msgid "The IP address should look like 192.168.1.20"
msgstr "L'indirizzo IP deve essere in formato 192.168.1.20"
-#: ../../printerdrake.pm_.c:95 ../../printerdrake.pm_.c:987
+#: ../../printerdrake.pm_.c:95 ../../printerdrake.pm_.c:1094
msgid "The port number should be an integer!"
msgstr "Il numero della porta dovrebbe essere un numero intero!"
@@ -7921,7 +8131,7 @@ msgstr "Il numero della porta dovrebbe essere un numero intero!"
msgid "CUPS server IP"
msgstr "IP del server CUPS"
-#: ../../printerdrake.pm_.c:103 ../../printerdrake.pm_.c:1007
+#: ../../printerdrake.pm_.c:103 ../../printerdrake.pm_.c:1114
msgid "Port"
msgstr "Porta"
@@ -7929,12 +8139,131 @@ msgstr "Porta"
msgid "Automatic CUPS configuration"
msgstr "Configurazione automatica di CUPS"
-#: ../../printerdrake.pm_.c:183 ../../printerdrake.pm_.c:192
-#: ../../printerdrake.pm_.c:2897 ../../printerdrake.pm_.c:3017
+#: ../../printerdrake.pm_.c:177 ../../printerdrake.pm_.c:247
+#: ../../printerdrake.pm_.c:1529 ../../printerdrake.pm_.c:1533
+#: ../../printerdrake.pm_.c:1651 ../../printerdrake.pm_.c:2203
+#: ../../printerdrake.pm_.c:2356 ../../printerdrake.pm_.c:2415
+#: ../../printerdrake.pm_.c:2488 ../../printerdrake.pm_.c:2509
+#: ../../printerdrake.pm_.c:2699 ../../printerdrake.pm_.c:2740
+#: ../../printerdrake.pm_.c:2745 ../../printerdrake.pm_.c:2779
+#: ../../printerdrake.pm_.c:2784 ../../printerdrake.pm_.c:2821
+#: ../../printerdrake.pm_.c:2874 ../../printerdrake.pm_.c:2894
+#: ../../printerdrake.pm_.c:2908 ../../printerdrake.pm_.c:2942
+#: ../../printerdrake.pm_.c:2988 ../../printerdrake.pm_.c:3006
+#: ../../printerdrake.pm_.c:3095 ../../printerdrake.pm_.c:3169
+#: ../../printerdrake.pm_.c:3471 ../../printerdrake.pm_.c:3526
+#: ../../printerdrake.pm_.c:3579 ../../standalone/printerdrake_.c:57
+msgid "Printerdrake"
+msgstr "PrinterDrake"
+
+#: ../../printerdrake.pm_.c:178
+#, fuzzy
+msgid "Checking your system..."
+msgstr "Sto riavviando il sistema di stampa ..."
+
+#: ../../printerdrake.pm_.c:186
+msgid ""
+"There are no printers found which are directly connected to your machine"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:198
+#, fuzzy
+msgid ""
+"The following printers\n"
+"\n"
+msgstr "I seguenti pacchetti satanno per essere rimossi"
+
+#: ../../printerdrake.pm_.c:199
+#, fuzzy
+msgid ""
+"The following printer\n"
+"\n"
+msgstr "I seguenti pacchetti satanno per essere rimossi"
+
+#: ../../printerdrake.pm_.c:201
+msgid ""
+"\n"
+"and one unknown printer are "
+msgstr ""
+
+#: ../../printerdrake.pm_.c:203
+#, c-format
+msgid ""
+"\n"
+"and %d unknown printers are "
+msgstr ""
+
+#: ../../printerdrake.pm_.c:207
+msgid ""
+"\n"
+"are "
+msgstr ""
+
+#: ../../printerdrake.pm_.c:208
+msgid ""
+"\n"
+"is "
+msgstr ""
+
+#: ../../printerdrake.pm_.c:210
+#, fuzzy
+msgid "directly connected to your system"
+msgstr "Copia i font sul tuo sistema"
+
+#: ../../printerdrake.pm_.c:213
+msgid ""
+"\n"
+"There is one unknown printer directly connected to your system"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:215
+#, c-format
+msgid ""
+"\n"
+"There are %d unknown printers directly connected to your system"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:221
+#, fuzzy
+msgid " (Make sure that all your printers are connected and turned on).\n"
+msgstr ""
+"Per favore scegliete la porta alla quale è connessa la vostra stampante."
+
+#: ../../printerdrake.pm_.c:235
+msgid ""
+"Do you want to enable printing on the printers mentioned above or on "
+"printers in the local network?\n"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:236
+#, fuzzy
+msgid "Do you want to enable printing on printers in the local network?\n"
+msgstr ""
+"Volete impostare questa stampante (\"%s)\n"
+"come stampante predefinita?"
+
+#: ../../printerdrake.pm_.c:238
+#, fuzzy
+msgid "Do you want to enable printing on the printers mentioned above?\n"
+msgstr "Vuoi effettuare la connessione all'avvio?"
+
+#: ../../printerdrake.pm_.c:239
+msgid "Are you sure that you want to set up printing on this machine?\n"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:240
+#, c-format
+msgid ""
+"NOTE: Depending on the printer model and the printing system up to %d MB of "
+"additional software will be installed."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:269 ../../printerdrake.pm_.c:278
+#: ../../printerdrake.pm_.c:3117 ../../printerdrake.pm_.c:3242
msgid "Add a new printer"
msgstr "Aggiungi nuova stampante"
-#: ../../printerdrake.pm_.c:184
+#: ../../printerdrake.pm_.c:270
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7956,7 +8285,7 @@ msgstr ""
"dandovi accesso a tutti i driver, opzioni dei driver e tipi di connessione "
"disponibili."
-#: ../../printerdrake.pm_.c:193
+#: ../../printerdrake.pm_.c:280
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7965,7 +8294,7 @@ msgid ""
"computer, connected directly to the network or to a remote Windows machine.\n"
"\n"
"If you have printer(s) connected to this machine, Please plug it/them in on "
-"this computer and turn it/them on so that they can be auto-detected. Also "
+"this computer and turn it/them on so that it/they can be auto-detected. Also "
"your network printer(s) and you Windows machines must be connected and "
"turned on.\n"
"\n"
@@ -7978,7 +8307,22 @@ msgid ""
"want to set up your printer(s) now."
msgstr ""
-#: ../../printerdrake.pm_.c:202
+#: ../../printerdrake.pm_.c:289 ../../printerdrake.pm_.c:306
+msgid ""
+"\n"
+"Welcome to the Printer Setup Wizard\n"
+"\n"
+"This wizard will help you to install your printer(s) connected to this "
+"computer.\n"
+"\n"
+"If you have printer(s) connected to this machine, Please plug it/them in on "
+"this computer and turn it/them on so that it/they can be auto-detected.\n"
+"\n"
+" Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
+"want to set up your printer(s) now."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:297
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7987,7 +8331,7 @@ msgid ""
"computer or connected directly to the network.\n"
"\n"
"If you have printer(s) connected to this machine, Please plug it/them in on "
-"this computer and turn it/them on so that they can be auto-detected. Also "
+"this computer and turn it/them on so that it/they can be auto-detected. Also "
"your network printer(s) must be connected and turned on.\n"
"\n"
"Note that auto-detecting printers on the network takes longer than the auto-"
@@ -7998,25 +8342,25 @@ msgid ""
"want to set up your printer(s) now."
msgstr ""
-#: ../../printerdrake.pm_.c:213
+#: ../../printerdrake.pm_.c:315
#, fuzzy
msgid "Auto-detect printers connected to this machine"
msgstr "Riconoscimento automatico stampanti"
-#: ../../printerdrake.pm_.c:215
+#: ../../printerdrake.pm_.c:318
msgid "Auto-detect printers connected directly to the local network"
msgstr ""
-#: ../../printerdrake.pm_.c:218
+#: ../../printerdrake.pm_.c:321
msgid "Auto-detect printers connected to machines running Microsoft Windows"
msgstr ""
-#: ../../printerdrake.pm_.c:245 ../../printerdrake.pm_.c:459
-#: ../../printerdrake.pm_.c:484
+#: ../../printerdrake.pm_.c:348 ../../printerdrake.pm_.c:562
+#: ../../printerdrake.pm_.c:587
msgid "Local Printer"
msgstr "Stampante locale"
-#: ../../printerdrake.pm_.c:246
+#: ../../printerdrake.pm_.c:349
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -8040,50 +8384,50 @@ msgstr ""
"stampa, etc.), selezionate \"Stampante\" nella sezione \"Hardware\" del "
"Centro di controllo Mandrake."
-#: ../../printerdrake.pm_.c:283 ../../printerdrake.pm_.c:474
-#: ../../printerdrake.pm_.c:683 ../../printerdrake.pm_.c:923
+#: ../../printerdrake.pm_.c:386 ../../printerdrake.pm_.c:577
+#: ../../printerdrake.pm_.c:790 ../../printerdrake.pm_.c:1030
#, fuzzy
msgid "Printer auto-detection"
msgstr "Usa il riconoscimento automatico"
-#: ../../printerdrake.pm_.c:305
+#: ../../printerdrake.pm_.c:408
#, fuzzy, c-format
msgid ", network printer \"%s\", port %s"
msgstr ", host TCP/IP \"%s\", porta %s"
-#: ../../printerdrake.pm_.c:307
+#: ../../printerdrake.pm_.c:410
#, fuzzy, c-format
msgid ", printer \"%s\" on SMB/Windows server \"%s\""
msgstr "Stampante su server SMB/Windows95/98/NT"
-#: ../../printerdrake.pm_.c:313
+#: ../../printerdrake.pm_.c:416
#, c-format
msgid "Detected %s"
msgstr "Rilevato %s"
-#: ../../printerdrake.pm_.c:317 ../../printerdrake.pm_.c:348
-#: ../../printerdrake.pm_.c:367
+#: ../../printerdrake.pm_.c:420 ../../printerdrake.pm_.c:451
+#: ../../printerdrake.pm_.c:470
#, c-format
msgid "Printer on parallel port \\/*%s"
msgstr "Stasmpante sulla porta parallela \\/*%s"
-#: ../../printerdrake.pm_.c:319 ../../printerdrake.pm_.c:350
-#: ../../printerdrake.pm_.c:372
+#: ../../printerdrake.pm_.c:422 ../../printerdrake.pm_.c:453
+#: ../../printerdrake.pm_.c:475
#, c-format
msgid "USB printer \\/*%s"
msgstr "Stampante USB \\/*%s"
-#: ../../printerdrake.pm_.c:321
+#: ../../printerdrake.pm_.c:424
#, fuzzy, c-format
msgid "Network printer \"%s\", port %s"
msgstr "Stampante di rete (TCP/Socket)"
-#: ../../printerdrake.pm_.c:323
+#: ../../printerdrake.pm_.c:426
#, fuzzy, c-format
msgid "Printer \"%s\" on SMB/Windows server \"%s\""
msgstr "Stampante su server SMB/Windows95/98/NT"
-#: ../../printerdrake.pm_.c:460
+#: ../../printerdrake.pm_.c:563
msgid ""
"No local printer found! To manually install a printer enter a device name/"
"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
@@ -8096,21 +8440,21 @@ msgstr ""
"lp1, ..., equivalenti a LPT1:, LPT2:, ...; prima stampante USB: /dev/usb/"
"lp0, seconda: /dev/usb/lp1, ...)."
-#: ../../printerdrake.pm_.c:464
+#: ../../printerdrake.pm_.c:567
msgid "You must enter a device or file name!"
msgstr "Devi indicare il nome di un dispositivo o di un file!"
-#: ../../printerdrake.pm_.c:475
+#: ../../printerdrake.pm_.c:578
#, fuzzy
msgid "No printer found!"
msgstr "Non ho trovato nessuna stampante locale!\n"
-#: ../../printerdrake.pm_.c:485
+#: ../../printerdrake.pm_.c:588
#, fuzzy
msgid "Available printers"
msgstr "Stampante locale"
-#: ../../printerdrake.pm_.c:489
+#: ../../printerdrake.pm_.c:592
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
@@ -8119,7 +8463,7 @@ msgstr ""
"che desiderate configurare inserite un nome di dispositivo o di file nel "
"campo immissione testo"
-#: ../../printerdrake.pm_.c:490
+#: ../../printerdrake.pm_.c:593
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up or enter a device name/file name in the input line"
@@ -8129,7 +8473,7 @@ msgstr ""
"inserite il nome di un dispositivo o di un file nel campo di immissione "
"testo."
-#: ../../printerdrake.pm_.c:492
+#: ../../printerdrake.pm_.c:595
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
@@ -8141,7 +8485,7 @@ msgstr ""
"vostra stampante non è stata riconosciuta in modo corretto, o se preferite "
"una configurazione personalizzata, cliccate su \"Configurazione manuale\"."
-#: ../../printerdrake.pm_.c:493
+#: ../../printerdrake.pm_.c:596
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
@@ -8154,7 +8498,7 @@ msgstr ""
"vostra stampante non è stata riconosciuta correttamente, o se preferite una "
"configurazione personalizzata, cliccate su \"Configurazione manuale\"."
-#: ../../printerdrake.pm_.c:495
+#: ../../printerdrake.pm_.c:598
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
@@ -8163,12 +8507,12 @@ msgstr ""
"oppure inserite il nome di un dispositivo o di un file nel campo di "
"immissione testo"
-#: ../../printerdrake.pm_.c:496
+#: ../../printerdrake.pm_.c:599
msgid "Please choose the port where your printer is connected to."
msgstr ""
"Per favore scegliete la porta alla quale è connessa la vostra stampante."
-#: ../../printerdrake.pm_.c:498
+#: ../../printerdrake.pm_.c:601
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
@@ -8176,19 +8520,19 @@ msgstr ""
" (Porte parallele: /dev/lp0, /dev/lp1, ..., equivalenti a LPT1:, LPT2:, ...; "
"prima stampante USB: /dev/usb/lp0, seconda: /dev/usb/lp1, ...)."
-#: ../../printerdrake.pm_.c:503
+#: ../../printerdrake.pm_.c:606
msgid "You must choose/enter a printer/device!"
msgstr "Dovete scegliere/indicare una stampante/un dispositivo!"
-#: ../../printerdrake.pm_.c:523
+#: ../../printerdrake.pm_.c:626
msgid "Manual configuration"
msgstr "Configurazione manuale"
-#: ../../printerdrake.pm_.c:577
+#: ../../printerdrake.pm_.c:680
msgid "Remote lpd Printer Options"
msgstr "Opzioni stampante lpd remota"
-#: ../../printerdrake.pm_.c:578
+#: ../../printerdrake.pm_.c:681
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
"server and the printer name on that server."
@@ -8197,47 +8541,47 @@ msgstr ""
"il nome dell'host del server della stampante e il nome della stampante\n"
"su quel server."
-#: ../../printerdrake.pm_.c:579
+#: ../../printerdrake.pm_.c:682
msgid "Remote host name"
msgstr "Nome host remoto"
-#: ../../printerdrake.pm_.c:580
+#: ../../printerdrake.pm_.c:683
msgid "Remote printer name"
msgstr "Nome della stampante remota"
-#: ../../printerdrake.pm_.c:583
+#: ../../printerdrake.pm_.c:686
msgid "Remote host name missing!"
msgstr "Nome host remoto assente!"
-#: ../../printerdrake.pm_.c:587
+#: ../../printerdrake.pm_.c:690
msgid "Remote printer name missing!"
msgstr "Nome della stampante remota assente!"
-#: ../../printerdrake.pm_.c:609 ../../printerdrake.pm_.c:1119
+#: ../../printerdrake.pm_.c:712 ../../printerdrake.pm_.c:1225
#, fuzzy, c-format
msgid "Detected model: %s %s"
msgstr "Rilevato %s"
-#: ../../printerdrake.pm_.c:683 ../../printerdrake.pm_.c:923
+#: ../../printerdrake.pm_.c:790 ../../printerdrake.pm_.c:1030
#, fuzzy
msgid "Scanning network..."
msgstr "Sto attivando la connessione di rete ..."
-#: ../../printerdrake.pm_.c:692 ../../printerdrake.pm_.c:713
+#: ../../printerdrake.pm_.c:799 ../../printerdrake.pm_.c:820
#, fuzzy, c-format
msgid ", printer \"%s\" on server \"%s\""
msgstr "sul server Windows \"%s\", condivisione \"%s\""
-#: ../../printerdrake.pm_.c:695 ../../printerdrake.pm_.c:716
+#: ../../printerdrake.pm_.c:802 ../../printerdrake.pm_.c:823
#, fuzzy, c-format
msgid "Printer \"%s\" on server \"%s\""
msgstr "Sto stampando con la stampante \"%s\""
-#: ../../printerdrake.pm_.c:736
+#: ../../printerdrake.pm_.c:843
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "Opzioni Stampante SMB (Windows9x/NT)"
-#: ../../printerdrake.pm_.c:737
+#: ../../printerdrake.pm_.c:844
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
"may be different from its TCP/IP hostname!) and possibly the IP address of "
@@ -8250,46 +8594,46 @@ msgstr ""
"pure il nome di condivisione per la stampante cui volete accedere e ogni\n"
"informazione utile riguardo nome dell'utente, password e gruppo di lavoro."
-#: ../../printerdrake.pm_.c:738
+#: ../../printerdrake.pm_.c:845
msgid ""
" If the desired printer was auto-detected, simply choose it from the list "
"and then add user name, password, and/or workgroup if needed."
msgstr ""
-#: ../../printerdrake.pm_.c:739
+#: ../../printerdrake.pm_.c:846
msgid "SMB server host"
msgstr "Host del server SMB"
-#: ../../printerdrake.pm_.c:740
+#: ../../printerdrake.pm_.c:847
msgid "SMB server IP"
msgstr "IP del server SMB"
-#: ../../printerdrake.pm_.c:741
+#: ../../printerdrake.pm_.c:848
msgid "Share name"
msgstr "Nome di condivisione"
-#: ../../printerdrake.pm_.c:744
+#: ../../printerdrake.pm_.c:851
msgid "Workgroup"
msgstr "Gruppo di lavoro"
-#: ../../printerdrake.pm_.c:746
+#: ../../printerdrake.pm_.c:853
#, fuzzy
msgid "Auto-detected"
msgstr "Usa il riconoscimento automatico"
-#: ../../printerdrake.pm_.c:757
+#: ../../printerdrake.pm_.c:864
msgid "Either the server name or the server's IP must be given!"
msgstr "Devi indicare il nome del server o il numero IP dello stesso!"
-#: ../../printerdrake.pm_.c:761
+#: ../../printerdrake.pm_.c:868
msgid "Samba share name missing!"
msgstr "Il nome della condivisione Samba è assente!"
-#: ../../printerdrake.pm_.c:767
+#: ../../printerdrake.pm_.c:874
msgid "SECURITY WARNING!"
msgstr ""
-#: ../../printerdrake.pm_.c:768
+#: ../../printerdrake.pm_.c:875
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -8313,7 +8657,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:778
+#: ../../printerdrake.pm_.c:885
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -8322,7 +8666,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:781
+#: ../../printerdrake.pm_.c:888
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
@@ -8330,11 +8674,11 @@ msgid ""
"Do you really want to continue setting up this printer as you are doing now?"
msgstr ""
-#: ../../printerdrake.pm_.c:853
+#: ../../printerdrake.pm_.c:960
msgid "NetWare Printer Options"
msgstr "Opzioni stampante NetWare"
-#: ../../printerdrake.pm_.c:854
+#: ../../printerdrake.pm_.c:961
msgid ""
"To print on a NetWare printer, you need to provide the NetWare print server "
"name (Note! it may be different from its TCP/IP hostname!) as well as the "
@@ -8346,43 +8690,43 @@ msgstr ""
"del suo host TCP/IP!) insieme al nome della coda di stampa per la\n"
"stampante cui volete accedere e ogni nome utente e password applicabili."
-#: ../../printerdrake.pm_.c:855
+#: ../../printerdrake.pm_.c:962
msgid "Printer Server"
msgstr "Server della stampante"
-#: ../../printerdrake.pm_.c:856
+#: ../../printerdrake.pm_.c:963
msgid "Print Queue Name"
msgstr "Nome della coda di stampa"
-#: ../../printerdrake.pm_.c:861
+#: ../../printerdrake.pm_.c:968
msgid "NCP server name missing!"
msgstr "Il nome del server NCP è assente"
-#: ../../printerdrake.pm_.c:865
+#: ../../printerdrake.pm_.c:972
msgid "NCP queue name missing!"
msgstr "Il nome dellla coda NCP è assente!"
-#: ../../printerdrake.pm_.c:932 ../../printerdrake.pm_.c:952
+#: ../../printerdrake.pm_.c:1039 ../../printerdrake.pm_.c:1059
#, fuzzy, c-format
msgid ", host \"%s\", port %s"
msgstr ", host TCP/IP \"%s\", porta %s"
-#: ../../printerdrake.pm_.c:935 ../../printerdrake.pm_.c:955
+#: ../../printerdrake.pm_.c:1042 ../../printerdrake.pm_.c:1062
#, fuzzy, c-format
msgid "Host \"%s\", port %s"
msgstr ", host TCP/IP \"%s\", porta %s"
-#: ../../printerdrake.pm_.c:975
+#: ../../printerdrake.pm_.c:1082
msgid "TCP/Socket Printer Options"
msgstr "Opzioni della stampante TCP/Socket"
-#: ../../printerdrake.pm_.c:977
+#: ../../printerdrake.pm_.c:1084
msgid ""
"Choose one of the auto-detected printers from the list or enter the hostname "
"or IP and the optional port number (default is 9100) into the input fields."
msgstr ""
-#: ../../printerdrake.pm_.c:978
+#: ../../printerdrake.pm_.c:1085
#, fuzzy
msgid ""
"To print to a TCP or socket printer, you need to provide the host name or IP "
@@ -8396,21 +8740,21 @@ msgstr ""
"altri server potrebbe essere diverso. Consultate il manuale del vostro\n"
"hardware."
-#: ../../printerdrake.pm_.c:983
+#: ../../printerdrake.pm_.c:1090
#, fuzzy
msgid "Printer host name or IP missing!"
msgstr "Nome host della stampante assente!"
-#: ../../printerdrake.pm_.c:1005
+#: ../../printerdrake.pm_.c:1112
#, fuzzy
msgid "Printer host name or IP"
msgstr "Nome host della stampante"
-#: ../../printerdrake.pm_.c:1054 ../../printerdrake.pm_.c:1056
+#: ../../printerdrake.pm_.c:1160 ../../printerdrake.pm_.c:1162
msgid "Printer Device URI"
msgstr "URI della stampante"
-#: ../../printerdrake.pm_.c:1055
+#: ../../printerdrake.pm_.c:1161
msgid ""
"You can specify directly the URI to access the printer. The URI must fulfill "
"either the CUPS or the Foomatic specifications. Note that not all URI types "
@@ -8420,11 +8764,11 @@ msgstr ""
"essere conforme alle specifiche CUPS o Foomatic. Notate che non tutti i i "
"tipi di URI sono supportati da tutti gli spooler."
-#: ../../printerdrake.pm_.c:1070
+#: ../../printerdrake.pm_.c:1176
msgid "A valid URI must be entered!"
msgstr "Dev'essere inserito un'URI valido!"
-#: ../../printerdrake.pm_.c:1402
+#: ../../printerdrake.pm_.c:1515
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
"Location fields do not need to be filled in. They are comments for the users."
@@ -8433,27 +8777,27 @@ msgstr ""
"Non è indispensabile riempire i campi Descrizione e \n"
"Posizione. Si tratta di commenti per gli utenti."
-#: ../../printerdrake.pm_.c:1403
+#: ../../printerdrake.pm_.c:1516
msgid "Name of printer"
msgstr "Nome della stampante"
-#: ../../printerdrake.pm_.c:1405
+#: ../../printerdrake.pm_.c:1518
msgid "Location"
msgstr "Posizione"
-#: ../../printerdrake.pm_.c:1416 ../../printerdrake.pm_.c:1536
+#: ../../printerdrake.pm_.c:1530 ../../printerdrake.pm_.c:1652
msgid "Reading printer database..."
msgstr "Sto leggendo il database delle stampanti"
-#: ../../printerdrake.pm_.c:1419
+#: ../../printerdrake.pm_.c:1534
msgid "Preparing printer database..."
msgstr "Sto preparando il database delle stampanti ..."
-#: ../../printerdrake.pm_.c:1516
+#: ../../printerdrake.pm_.c:1631
msgid "Your printer model"
msgstr "Il modello della vostra stampante"
-#: ../../printerdrake.pm_.c:1517
+#: ../../printerdrake.pm_.c:1632
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -8468,24 +8812,24 @@ msgid ""
"%s"
msgstr ""
-#: ../../printerdrake.pm_.c:1522 ../../printerdrake.pm_.c:1525
+#: ../../printerdrake.pm_.c:1637 ../../printerdrake.pm_.c:1640
msgid "The model is correct"
msgstr "Il modello è corretto"
-#: ../../printerdrake.pm_.c:1523 ../../printerdrake.pm_.c:1524
-#: ../../printerdrake.pm_.c:1527
+#: ../../printerdrake.pm_.c:1638 ../../printerdrake.pm_.c:1639
+#: ../../printerdrake.pm_.c:1642
msgid "Select model manually"
msgstr "Selezionate il modello manualmente"
-#: ../../printerdrake.pm_.c:1543
+#: ../../printerdrake.pm_.c:1659
msgid "Printer model selection"
msgstr "Scelta del modello della stampante"
-#: ../../printerdrake.pm_.c:1544
+#: ../../printerdrake.pm_.c:1660
msgid "Which printer model do you have?"
msgstr "Che modello di stampante hai?"
-#: ../../printerdrake.pm_.c:1545
+#: ../../printerdrake.pm_.c:1661
msgid ""
"\n"
"\n"
@@ -8500,7 +8844,7 @@ msgstr ""
"un modello errato o su \"Stampante di tipo raw\", cercate quello corretto "
"nella lista."
-#: ../../printerdrake.pm_.c:1548
+#: ../../printerdrake.pm_.c:1664
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
@@ -8508,11 +8852,11 @@ msgstr ""
"Se la vostra stampante non è presente nella lista, cercate un modello "
"compatibile o simile (consultate il manuale della stampante)."
-#: ../../printerdrake.pm_.c:1624
+#: ../../printerdrake.pm_.c:1741
msgid "OKI winprinter configuration"
msgstr "Configurazione di una stampante OKI winprinter"
-#: ../../printerdrake.pm_.c:1625
+#: ../../printerdrake.pm_.c:1742
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -8522,11 +8866,11 @@ msgid ""
"not work. Your connection type setting will be ignored by the driver."
msgstr ""
-#: ../../printerdrake.pm_.c:1668 ../../printerdrake.pm_.c:1695
+#: ../../printerdrake.pm_.c:1785 ../../printerdrake.pm_.c:1812
msgid "Lexmark inkjet configuration"
msgstr "Configurazione di una stampante Lexmark a getto d'inchiostro"
-#: ../../printerdrake.pm_.c:1669
+#: ../../printerdrake.pm_.c:1786
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
"no printers on remote machines or print server boxes. Please connect your "
@@ -8534,20 +8878,46 @@ msgid ""
"to."
msgstr ""
-#: ../../printerdrake.pm_.c:1696
+#: ../../printerdrake.pm_.c:1813
msgid ""
"To be able to print with your Lexmark inkjet and this configuration, you "
"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
-"com/). Go to the US site and click on the \"Drivers\" button. Then choose "
-"your model and afterwards \"Linux\" as operating system. The drivers come as "
-"RPM packages or shell scripts with interactive graphical installation. You "
-"do not need to do this configuration by the graphical frontends. Cancel "
-"directly after the license agreement. Then print printhead alignment pages "
-"with \"lexmarkmaintain\" and adjust the head alignment settings with this "
-"program."
+"com/). Click on the \"Drivers\" link. Then choose your model and afterwards "
+"\"Linux\" as operating system. The drivers come as RPM packages or shell "
+"scripts with interactive graphical installation. You do not need to do this "
+"configuration by the graphical frontends. Cancel directly after the license "
+"agreement. Then print printhead alignment pages with \"lexmarkmaintain\" and "
+"adjust the head alignment settings with this program."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:1816
+msgid "GDI Laser Printer using the Zenographics ZJ-Stream Format"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:1817
+msgid ""
+"Your printer belongs to the group of GDI laser printers (winprinters) sold "
+"by different manufacturers which uses the Zenographics ZJ-stream raster "
+"format for the data sent to the printer. The driver for these printers is "
+"still in a very early development stage and so it will perhaps not always "
+"work properly. Especially it is possible that the printer only works when "
+"you choose the A4 paper size.\n"
+"\n"
+"Some of these printers, as the HP LaserJet 1000, for which this driver was "
+"originally created, need their firmware to be uploaded to them after they "
+"are turned on. In the case of the HP LaserJet 1000 you have to search the "
+"printer's Windows driver CD or your Windows partition for the file "
+"\"sihp1000.img\" and upload the file to the printer with one of the "
+"following commands:\n"
+"\n"
+" lpr -o raw sihp1000.img\n"
+" cat sihp1000.img > /dev/usb/lp0\n"
+"\n"
+"The first command can be given by any normal user, the second must be given "
+"as root. After having done so you can print normally.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1912
+#: ../../printerdrake.pm_.c:2040
msgid ""
"Printer default settings\n"
"\n"
@@ -8564,22 +8934,22 @@ msgstr ""
"impostati correttamente. Si noti che quando la qualità/risoluzione di stampa "
"è molto alta, la durata della stampa può diventare sensibilmente più lenta."
-#: ../../printerdrake.pm_.c:1921
+#: ../../printerdrake.pm_.c:2049
#, c-format
msgid "Option %s must be an integer number!"
msgstr "L'opzione %s dev'essere un numero intero!"
-#: ../../printerdrake.pm_.c:1925
+#: ../../printerdrake.pm_.c:2053
#, c-format
msgid "Option %s must be a number!"
msgstr "L'opzione %s dev'essere un numero!"
-#: ../../printerdrake.pm_.c:1930
+#: ../../printerdrake.pm_.c:2058
#, c-format
msgid "Option %s out of range!"
msgstr "Opzione %s fuori scala!"
-#: ../../printerdrake.pm_.c:1969
+#: ../../printerdrake.pm_.c:2097
#, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
@@ -8588,11 +8958,11 @@ msgstr ""
"Volete impostare questa stampante (\"%s)\n"
"come stampante predefinita?"
-#: ../../printerdrake.pm_.c:1986
+#: ../../printerdrake.pm_.c:2120
msgid "Test pages"
msgstr "Pagine di prova"
-#: ../../printerdrake.pm_.c:1987
+#: ../../printerdrake.pm_.c:2121
msgid ""
"Please select the test pages you want to print.\n"
"Note: the photo test page can take a rather long time to get printed and on "
@@ -8600,39 +8970,39 @@ msgid ""
"it is enough to print the standard test page."
msgstr ""
-#: ../../printerdrake.pm_.c:1991
+#: ../../printerdrake.pm_.c:2125
msgid "No test pages"
msgstr "Nessuna pagina di prova"
-#: ../../printerdrake.pm_.c:1992
+#: ../../printerdrake.pm_.c:2126
msgid "Print"
msgstr "Stampa"
-#: ../../printerdrake.pm_.c:1994
+#: ../../printerdrake.pm_.c:2183
msgid "Standard test page"
msgstr "Pagina di prova standard"
-#: ../../printerdrake.pm_.c:1997
+#: ../../printerdrake.pm_.c:2186
msgid "Alternative test page (Letter)"
msgstr ""
-#: ../../printerdrake.pm_.c:2000
+#: ../../printerdrake.pm_.c:2189
msgid "Alternative test page (A4)"
msgstr "Pagina di prova alternativa (A4)"
-#: ../../printerdrake.pm_.c:2002
+#: ../../printerdrake.pm_.c:2191
msgid "Photo test page"
msgstr "Pagina di prova fotografica"
-#: ../../printerdrake.pm_.c:2006
+#: ../../printerdrake.pm_.c:2195
msgid "Do not print any test page"
msgstr "Non stampare nessuna pagina di prova"
-#: ../../printerdrake.pm_.c:2014 ../../printerdrake.pm_.c:2166
+#: ../../printerdrake.pm_.c:2204 ../../printerdrake.pm_.c:2357
msgid "Printing test page(s)..."
msgstr "Stampa della(e) pagina(e) di prova..."
-#: ../../printerdrake.pm_.c:2039
+#: ../../printerdrake.pm_.c:2229
#, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -8646,7 +9016,7 @@ msgstr ""
"Stato della stampa:\n"
"%s\n"
-#: ../../printerdrake.pm_.c:2043
+#: ../../printerdrake.pm_.c:2233
msgid ""
"Test page(s) have been sent to the printer.\n"
"It may take some time before the printer starts.\n"
@@ -8654,15 +9024,15 @@ msgstr ""
"La pagina(e) di prova è stata inviata alla stampante.\n"
"potrebbe occorrere un po' di tempo prima che la stampa inizi.\n"
-#: ../../printerdrake.pm_.c:2050
+#: ../../printerdrake.pm_.c:2240
msgid "Did it work properly?"
msgstr ""
-#: ../../printerdrake.pm_.c:2072 ../../printerdrake.pm_.c:3191
+#: ../../printerdrake.pm_.c:2262 ../../printerdrake.pm_.c:3416
msgid "Raw printer"
msgstr "Stampante in modo raw"
-#: ../../printerdrake.pm_.c:2098
+#: ../../printerdrake.pm_.c:2288
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -8671,15 +9041,15 @@ msgid ""
"to modify the option settings easily.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2100
+#: ../../printerdrake.pm_.c:2290
msgid ""
"These commands you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications, but here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2103 ../../printerdrake.pm_.c:2120
-#: ../../printerdrake.pm_.c:2130
+#: ../../printerdrake.pm_.c:2293 ../../printerdrake.pm_.c:2310
+#: ../../printerdrake.pm_.c:2320
#, c-format
msgid ""
"\n"
@@ -8688,7 +9058,7 @@ msgid ""
"line, e. g. \"%s <file>\". "
msgstr ""
-#: ../../printerdrake.pm_.c:2106 ../../printerdrake.pm_.c:2146
+#: ../../printerdrake.pm_.c:2296 ../../printerdrake.pm_.c:2336
#, c-format
msgid ""
"To know about the options available for the current printer read either the "
@@ -8696,41 +9066,41 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2110
+#: ../../printerdrake.pm_.c:2300
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2115 ../../printerdrake.pm_.c:2125
+#: ../../printerdrake.pm_.c:2305 ../../printerdrake.pm_.c:2315
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2117 ../../printerdrake.pm_.c:2127
-#: ../../printerdrake.pm_.c:2137
+#: ../../printerdrake.pm_.c:2307 ../../printerdrake.pm_.c:2317
+#: ../../printerdrake.pm_.c:2327
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2122 ../../printerdrake.pm_.c:2132
+#: ../../printerdrake.pm_.c:2312 ../../printerdrake.pm_.c:2322
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
msgstr ""
-#: ../../printerdrake.pm_.c:2135
+#: ../../printerdrake.pm_.c:2325
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\" or \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2139
+#: ../../printerdrake.pm_.c:2329
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -8740,7 +9110,7 @@ msgid ""
"jams.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2143
+#: ../../printerdrake.pm_.c:2333
#, c-format
msgid ""
"\n"
@@ -8749,40 +9119,40 @@ msgid ""
"line, e. g. \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2153
+#: ../../printerdrake.pm_.c:2343
#, fuzzy, c-format
msgid "Printing/Scanning/Photo Cards on \"%s\""
msgstr "Stampa/Scansione in corso su \"%s\""
-#: ../../printerdrake.pm_.c:2154
+#: ../../printerdrake.pm_.c:2344
#, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "Stampa/Scansione in corso su \"%s\""
-#: ../../printerdrake.pm_.c:2156
+#: ../../printerdrake.pm_.c:2346
#, fuzzy, c-format
msgid "Printing/Photo Card Access on \"%s\""
msgstr "Stampa/Scansione in corso su \"%s\""
-#: ../../printerdrake.pm_.c:2157
+#: ../../printerdrake.pm_.c:2347
#, c-format
msgid "Printing on the printer \"%s\""
msgstr "Sto stampando con la stampante \"%s\""
-#: ../../printerdrake.pm_.c:2160 ../../printerdrake.pm_.c:2163
-#: ../../printerdrake.pm_.c:2164 ../../printerdrake.pm_.c:2165
-#: ../../printerdrake.pm_.c:3175 ../../standalone/drakTermServ_.c:248
-#: ../../standalone/drakbackup_.c:1485 ../../standalone/drakbackup_.c:3530
-#: ../../standalone/drakbug_.c:129 ../../standalone/drakfont_.c:705
+#: ../../printerdrake.pm_.c:2350 ../../printerdrake.pm_.c:2353
+#: ../../printerdrake.pm_.c:2354 ../../printerdrake.pm_.c:2355
+#: ../../printerdrake.pm_.c:3400 ../../standalone/drakTermServ_.c:248
+#: ../../standalone/drakbackup_.c:1560 ../../standalone/drakbackup_.c:4208
+#: ../../standalone/drakbug_.c:130 ../../standalone/drakfont_.c:705
#: ../../standalone/drakfont_.c:1014
msgid "Close"
msgstr "Chiudi"
-#: ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2353
msgid "Print option list"
msgstr "Lista opzioni di stampa"
-#: ../../printerdrake.pm_.c:2182
+#: ../../printerdrake.pm_.c:2373
#, c-format
msgid ""
"Your multi-function device was configured automatically to be able to scan. "
@@ -8796,7 +9166,7 @@ msgid ""
"Do not use \"scannerdrake\" for this device!"
msgstr ""
-#: ../../printerdrake.pm_.c:2202
+#: ../../printerdrake.pm_.c:2394
msgid ""
"Your printer was configured automatically to give you access to the photo "
"card drives from your PC. Now you can access your photo cards using the "
@@ -8809,17 +9179,17 @@ msgid ""
"of the file lists."
msgstr ""
-#: ../../printerdrake.pm_.c:2223 ../../printerdrake.pm_.c:2673
-#: ../../printerdrake.pm_.c:2945
+#: ../../printerdrake.pm_.c:2416 ../../printerdrake.pm_.c:2875
+#: ../../printerdrake.pm_.c:3170
msgid "Reading printer data..."
msgstr "Sto leggendo i dati della stampante..."
-#: ../../printerdrake.pm_.c:2243 ../../printerdrake.pm_.c:2271
-#: ../../printerdrake.pm_.c:2306
+#: ../../printerdrake.pm_.c:2436 ../../printerdrake.pm_.c:2464
+#: ../../printerdrake.pm_.c:2499
msgid "Transfer printer configuration"
msgstr "Configurazione della stampante a trasferimento"
-#: ../../printerdrake.pm_.c:2244
+#: ../../printerdrake.pm_.c:2437
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -8829,51 +9199,51 @@ msgid ""
"Not all queues can be transferred due to the following reasons:\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2247
+#: ../../printerdrake.pm_.c:2440
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2249
+#: ../../printerdrake.pm_.c:2442
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2251
+#: ../../printerdrake.pm_.c:2444
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2253
+#: ../../printerdrake.pm_.c:2446
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:2254
+#: ../../printerdrake.pm_.c:2447
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
"or with native CUPS drivers cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:2255
+#: ../../printerdrake.pm_.c:2448
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
"\"Transfer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:2258
+#: ../../printerdrake.pm_.c:2451
msgid "Do not transfer printers"
msgstr ""
-#: ../../printerdrake.pm_.c:2259 ../../printerdrake.pm_.c:2276
+#: ../../printerdrake.pm_.c:2452 ../../printerdrake.pm_.c:2469
msgid "Transfer"
msgstr ""
-#: ../../printerdrake.pm_.c:2272
+#: ../../printerdrake.pm_.c:2465
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -8881,58 +9251,58 @@ msgid ""
"You can also type a new name or skip this printer."
msgstr ""
-#: ../../printerdrake.pm_.c:2280
+#: ../../printerdrake.pm_.c:2473
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr ""
"Il nome della stampante dovrebbe contenere solo lettere, numeri e il "
"trattino di sottolineatura"
-#: ../../printerdrake.pm_.c:2285
+#: ../../printerdrake.pm_.c:2478
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
"do you really want to overwrite its configuration?"
msgstr ""
-#: ../../printerdrake.pm_.c:2293
+#: ../../printerdrake.pm_.c:2486
msgid "New printer name"
msgstr "Nuovo nome della stampante"
-#: ../../printerdrake.pm_.c:2296
+#: ../../printerdrake.pm_.c:2489
#, c-format
msgid "Transferring %s..."
msgstr ""
-#: ../../printerdrake.pm_.c:2307
+#: ../../printerdrake.pm_.c:2500
#, c-format
msgid ""
"You have transferred your former default printer (\"%s\"), Should it be also "
"the default printer under the new printing system %s?"
msgstr ""
-#: ../../printerdrake.pm_.c:2316
+#: ../../printerdrake.pm_.c:2510
msgid "Refreshing printer data..."
msgstr "Sto aggiornando i dati della stampante ..."
-#: ../../printerdrake.pm_.c:2324 ../../printerdrake.pm_.c:2395
-#: ../../printerdrake.pm_.c:2407
+#: ../../printerdrake.pm_.c:2518 ../../printerdrake.pm_.c:2590
+#: ../../printerdrake.pm_.c:2602
msgid "Configuration of a remote printer"
msgstr "Configura di una stampante remota"
-#: ../../printerdrake.pm_.c:2325
+#: ../../printerdrake.pm_.c:2519
msgid "Starting network..."
msgstr "Sto attivando la connessione di rete ..."
-#: ../../printerdrake.pm_.c:2359 ../../printerdrake.pm_.c:2363
-#: ../../printerdrake.pm_.c:2365
+#: ../../printerdrake.pm_.c:2554 ../../printerdrake.pm_.c:2558
+#: ../../printerdrake.pm_.c:2560
msgid "Configure the network now"
msgstr "Configura la rete adesso"
-#: ../../printerdrake.pm_.c:2360
+#: ../../printerdrake.pm_.c:2555
msgid "Network functionality not configured"
msgstr "Funzionalità di rete non configurate"
-#: ../../printerdrake.pm_.c:2361
+#: ../../printerdrake.pm_.c:2556
msgid ""
"You are going to configure a remote printer. This needs working network "
"access, but your network is not configured yet. If you go on without network "
@@ -8940,11 +9310,11 @@ msgid ""
"configuring now. How do you want to proceed?"
msgstr ""
-#: ../../printerdrake.pm_.c:2364
+#: ../../printerdrake.pm_.c:2559
msgid "Go on without configuring the network"
msgstr "Vai avanti senza configurare la rete"
-#: ../../printerdrake.pm_.c:2397
+#: ../../printerdrake.pm_.c:2592
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -8954,31 +9324,31 @@ msgid ""
"\"Printer\""
msgstr ""
-#: ../../printerdrake.pm_.c:2398
+#: ../../printerdrake.pm_.c:2593
msgid ""
"The network access was not running and could not be started. Please check "
"your configuration and your hardware. Then try to configure your remote "
"printer again."
msgstr ""
-#: ../../printerdrake.pm_.c:2408
+#: ../../printerdrake.pm_.c:2603
msgid "Restarting printing system..."
msgstr "Sto riavviando il sistema di stampa ..."
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2641
msgid "high"
msgstr "alto"
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2641
msgid "paranoid"
msgstr "paranoico"
-#: ../../printerdrake.pm_.c:2447
+#: ../../printerdrake.pm_.c:2642
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr ""
-#: ../../printerdrake.pm_.c:2448
+#: ../../printerdrake.pm_.c:2643
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -8993,11 +9363,11 @@ msgid ""
"Do you really want to configure printing on this machine?"
msgstr ""
-#: ../../printerdrake.pm_.c:2480
+#: ../../printerdrake.pm_.c:2675
msgid "Starting the printing system at boot time"
msgstr "Avvio il sistema di stampa al momento del boot"
-#: ../../printerdrake.pm_.c:2481
+#: ../../printerdrake.pm_.c:2676
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -9011,99 +9381,96 @@ msgid ""
"again?"
msgstr ""
-#: ../../printerdrake.pm_.c:2504 ../../printerdrake.pm_.c:2544
-#: ../../printerdrake.pm_.c:2581 ../../printerdrake.pm_.c:2621
-#: ../../printerdrake.pm_.c:2733
+#: ../../printerdrake.pm_.c:2700 ../../printerdrake.pm_.c:2741
+#: ../../printerdrake.pm_.c:2780 ../../printerdrake.pm_.c:2822
+#: ../../printerdrake.pm_.c:2943
msgid "Checking installed software..."
msgstr ""
-#: ../../printerdrake.pm_.c:2548
+#: ../../printerdrake.pm_.c:2746
msgid "Removing LPRng..."
msgstr ""
-#: ../../printerdrake.pm_.c:2585
+#: ../../printerdrake.pm_.c:2785
msgid "Removing LPD..."
msgstr ""
-#: ../../printerdrake.pm_.c:2657
+#: ../../printerdrake.pm_.c:2858
msgid "Select Printer Spooler"
msgstr "Scegli il sistema di stampa"
-#: ../../printerdrake.pm_.c:2658
+#: ../../printerdrake.pm_.c:2859
msgid "Which printing system (spooler) do you want to use?"
msgstr "Che sistema di stampa (spooler) vuoi usare?"
-#: ../../printerdrake.pm_.c:2691
-#, fuzzy, c-format
+#: ../../printerdrake.pm_.c:2895
+#, c-format
msgid "Configuring printer \"%s\"..."
msgstr "Sto configurando la stampante \"%s\" ..."
-#: ../../printerdrake.pm_.c:2704
+#: ../../printerdrake.pm_.c:2909
msgid "Installing Foomatic..."
msgstr "Installazione del pacchetto Foomatic"
-#: ../../printerdrake.pm_.c:2769 ../../printerdrake.pm_.c:2808
-#: ../../printerdrake.pm_.c:3192 ../../printerdrake.pm_.c:3262
+#: ../../printerdrake.pm_.c:2979 ../../printerdrake.pm_.c:3020
+#: ../../printerdrake.pm_.c:3417 ../../printerdrake.pm_.c:3490
msgid "Printer options"
msgstr "Opzioni stampante"
-#: ../../printerdrake.pm_.c:2778
-msgid "Preparing PrinterDrake..."
+#: ../../printerdrake.pm_.c:2989
+#, fuzzy
+msgid "Preparing Printerdrake..."
msgstr "Sto preparando PrinterDrake"
-#: ../../printerdrake.pm_.c:2795 ../../printerdrake.pm_.c:3349
+#: ../../printerdrake.pm_.c:3007 ../../printerdrake.pm_.c:3580
msgid "Configuring applications..."
msgstr "Configurazione applicazioni ..."
-#: ../../printerdrake.pm_.c:2815
+#: ../../printerdrake.pm_.c:3027
msgid "Would you like to configure printing?"
msgstr "Vorresti configurare la stampa?"
-#: ../../printerdrake.pm_.c:2827
+#: ../../printerdrake.pm_.c:3039
msgid "Printing system: "
msgstr ""
-#: ../../printerdrake.pm_.c:2875
-msgid "Printerdrake"
-msgstr "PrinterDrake"
-
-#: ../../printerdrake.pm_.c:2879
+#: ../../printerdrake.pm_.c:3099
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; to view information about it; "
"or to make a printer on a remote CUPS server available for Star Office/"
-"OpenOffice.org."
+"OpenOffice.org/GIMP."
msgstr ""
-#: ../../printerdrake.pm_.c:2880
+#: ../../printerdrake.pm_.c:3100
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; or to view information about "
"it."
msgstr ""
-#: ../../printerdrake.pm_.c:2906
+#: ../../printerdrake.pm_.c:3127
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr ""
-#: ../../printerdrake.pm_.c:2924
+#: ../../printerdrake.pm_.c:3145
msgid "Change the printing system"
msgstr "Cambia il sistema di stampa"
-#: ../../printerdrake.pm_.c:2929 ../../standalone/drakconnect_.c:277
+#: ../../printerdrake.pm_.c:3150 ../../standalone/drakconnect_.c:277
msgid "Normal Mode"
msgstr "Modo Normale"
-#: ../../printerdrake.pm_.c:3085 ../../printerdrake.pm_.c:3135
-#: ../../printerdrake.pm_.c:3343
+#: ../../printerdrake.pm_.c:3310 ../../printerdrake.pm_.c:3360
+#: ../../printerdrake.pm_.c:3573
msgid "Do you want to configure another printer?"
msgstr "Volete configurare un'altra stampante?"
-#: ../../printerdrake.pm_.c:3170
+#: ../../printerdrake.pm_.c:3395
msgid "Modify printer configuration"
msgstr "Modifica configurazione stampante"
-#: ../../printerdrake.pm_.c:3172
+#: ../../printerdrake.pm_.c:3397
#, c-format
msgid ""
"Printer %s\n"
@@ -9112,101 +9479,103 @@ msgstr ""
"Stampante %s\n"
"Cosa volete modificare riguardo questa stampante?"
-#: ../../printerdrake.pm_.c:3176
+#: ../../printerdrake.pm_.c:3401
msgid "Do it!"
msgstr ""
-#: ../../printerdrake.pm_.c:3181 ../../printerdrake.pm_.c:3236
+#: ../../printerdrake.pm_.c:3406 ../../printerdrake.pm_.c:3461
msgid "Printer connection type"
msgstr "Tipo di connessione della stampante"
-#: ../../printerdrake.pm_.c:3182 ../../printerdrake.pm_.c:3240
+#: ../../printerdrake.pm_.c:3407 ../../printerdrake.pm_.c:3465
msgid "Printer name, description, location"
msgstr "Nome, descrizione, collocazione della stampante"
-#: ../../printerdrake.pm_.c:3184 ../../printerdrake.pm_.c:3255
+#: ../../printerdrake.pm_.c:3409 ../../printerdrake.pm_.c:3483
msgid "Printer manufacturer, model, driver"
msgstr ""
-#: ../../printerdrake.pm_.c:3185 ../../printerdrake.pm_.c:3256
+#: ../../printerdrake.pm_.c:3410 ../../printerdrake.pm_.c:3484
msgid "Printer manufacturer, model"
msgstr ""
-#: ../../printerdrake.pm_.c:3194 ../../printerdrake.pm_.c:3266
+#: ../../printerdrake.pm_.c:3419 ../../printerdrake.pm_.c:3494
msgid "Set this printer as the default"
msgstr ""
-#: ../../printerdrake.pm_.c:3196 ../../printerdrake.pm_.c:3271
-msgid "Add this printer to Star Office/OpenOffice.org"
+#: ../../printerdrake.pm_.c:3421 ../../printerdrake.pm_.c:3499
+msgid "Add this printer to Star Office/OpenOffice.org/GIMP"
msgstr ""
-#: ../../printerdrake.pm_.c:3197 ../../printerdrake.pm_.c:3280
-msgid "Remove this printer from Star Office/OpenOffice.org"
+#: ../../printerdrake.pm_.c:3422 ../../printerdrake.pm_.c:3508
+msgid "Remove this printer from Star Office/OpenOffice.org/GIMP"
msgstr ""
-#: ../../printerdrake.pm_.c:3198 ../../printerdrake.pm_.c:3289
+#: ../../printerdrake.pm_.c:3423 ../../printerdrake.pm_.c:3517
msgid "Print test pages"
msgstr "Stampa della(e) pagina(e) di prova"
-#: ../../printerdrake.pm_.c:3199 ../../printerdrake.pm_.c:3291
+#: ../../printerdrake.pm_.c:3424 ../../printerdrake.pm_.c:3519
msgid "Know how to use this printer"
msgstr "Sapere come usare questa stampante"
-#: ../../printerdrake.pm_.c:3201 ../../printerdrake.pm_.c:3293
+#: ../../printerdrake.pm_.c:3426 ../../printerdrake.pm_.c:3521
msgid "Remove printer"
msgstr "Rimuovi stampante"
-#: ../../printerdrake.pm_.c:3245
-#, fuzzy, c-format
+#: ../../printerdrake.pm_.c:3472
+#, c-format
msgid "Removing old printer \"%s\"..."
msgstr "Sto rimuovendo la vecchia stampante \"%s\" ..."
-#: ../../printerdrake.pm_.c:3269
+#: ../../printerdrake.pm_.c:3497
msgid "Default printer"
msgstr "Stampante predefinita"
-#: ../../printerdrake.pm_.c:3270
+#: ../../printerdrake.pm_.c:3498
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr ""
-#: ../../printerdrake.pm_.c:3274 ../../printerdrake.pm_.c:3277
-msgid "Adding printer to Star Office/OpenOffice.org"
+#: ../../printerdrake.pm_.c:3502 ../../printerdrake.pm_.c:3505
+msgid "Adding printer to Star Office/OpenOffice.org/GIMP"
msgstr ""
-#: ../../printerdrake.pm_.c:3275
+#: ../../printerdrake.pm_.c:3503
#, c-format
msgid ""
-"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
+"The printer \"%s\" was successfully added to Star Office/OpenOffice.org/GIMP."
msgstr ""
-#: ../../printerdrake.pm_.c:3278
+#: ../../printerdrake.pm_.c:3506
#, c-format
-msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
+msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org/GIMP."
msgstr ""
-#: ../../printerdrake.pm_.c:3283 ../../printerdrake.pm_.c:3286
-msgid "Removing printer from Star Office/OpenOffice.org"
+#: ../../printerdrake.pm_.c:3511 ../../printerdrake.pm_.c:3514
+msgid "Removing printer from Star Office/OpenOffice.org/GIMP"
msgstr ""
-#: ../../printerdrake.pm_.c:3284
+#: ../../printerdrake.pm_.c:3512
#, c-format
msgid ""
-"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
+"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org/"
+"GIMP."
msgstr ""
-#: ../../printerdrake.pm_.c:3287
+#: ../../printerdrake.pm_.c:3515
#, c-format
-msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
+msgid ""
+"Failed to remove the printer \"%s\" from Star Office/OpenOffice.org/GIMP."
msgstr ""
-#: ../../printerdrake.pm_.c:3295
+#: ../../printerdrake.pm_.c:3523
#, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr "Volete davvero rimuovere la stampante \"%s\"?"
-#: ../../printerdrake.pm_.c:3297
-#, fuzzy, c-format
+#: ../../printerdrake.pm_.c:3527
+#, c-format
msgid "Removing printer \"%s\"..."
msgstr "Sto rimuovendo la stampante \"%s\" ..."
@@ -9619,7 +9988,7 @@ msgstr "Internet"
msgid "File sharing"
msgstr ""
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1669
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1744
msgid "System"
msgstr "Sistema"
@@ -9672,207 +10041,243 @@ msgstr "Avvia"
msgid "Stop"
msgstr "Stop"
-#: ../../share/advertising/00-thanks.pl_.c:9
-msgid "Thank you for choosing Mandrake Linux 8.2"
+#: ../../share/advertising/01-thanks.pl_.c:9
+msgid "Thank you for choosing Mandrake Linux 9.0"
msgstr ""
-#: ../../share/advertising/00-thanks.pl_.c:10
+#: ../../share/advertising/01-thanks.pl_.c:10
msgid "Welcome to the Open Source world"
msgstr ""
-#: ../../share/advertising/00-thanks.pl_.c:11
+#: ../../share/advertising/01-thanks.pl_.c:11
msgid ""
"The success of MandrakeSoft is based upon the principle of Free Software. "
"Your new operating system is the result of collaborative work on the part of "
"the worldwide Linux Community"
msgstr ""
-#: ../../share/advertising/01-gnu.pl_.c:9
-msgid "Join the Free Software world"
+#: ../../share/advertising/02-community.pl_.c:9
+#, fuzzy
+msgid "Get involved in the Free Software world"
msgstr "Unisciti al mondo del software libero"
-#: ../../share/advertising/01-gnu.pl_.c:10
+#: ../../share/advertising/02-community.pl_.c:10
+msgid "Want to know more about the Open Source community?"
+msgstr ""
+
+#: ../../share/advertising/02-community.pl_.c:11
msgid ""
-"Get to know the Open Source community and become a member. Learn, teach, and "
-"help others by joining the many discussion forums that you will find in our "
-"\"Community\" webpages"
+"To share your own knowledge and help build Linux tools, join the discussions "
+"forum you'll find on our \"Community\" webpages"
msgstr ""
-#: ../../share/advertising/02-internet.pl_.c:9
-msgid "Internet and Messaging"
-msgstr "Internet e messaggistica istantanea"
+#: ../../share/advertising/03-internet.pl_.c:9
+#, fuzzy
+msgid "Get the most from the Internet"
+msgstr "Connetti a Internet"
-#: ../../share/advertising/02-internet.pl_.c:10
+#: ../../share/advertising/03-internet.pl_.c:10
msgid ""
-"Mandrake Linux 8.2 provides the best software to access everything the "
-"Internet has to offer: Surf the web & view animations with Mozilla and "
-"Konqueror, exchange email & organize your personal information with "
-"Evolution and Kmail, and much more"
+"Mandrake Linux 9.0 has selected the best software for you. Surf the Web and "
+"view animations with Mozilla and Konqueror, or read your mail and handle "
+"your personal information with Evolution and Kmail"
msgstr ""
-#: ../../share/advertising/03-graphic.pl_.c:9
-msgid "Multimedia and Graphics"
-msgstr "Multimedia e Grafica"
+#: ../../share/advertising/04-multimedia.pl_.c:9
+msgid "Discover the most up-to-date graphics and multimedia tools!"
+msgstr ""
+
+#: ../../share/advertising/04-multimedia.pl_.c:10
+msgid "Push multimedia to its limits!"
+msgstr ""
-#: ../../share/advertising/03-graphic.pl_.c:10
+#: ../../share/advertising/04-multimedia.pl_.c:11
msgid ""
-"Mandrake Linux 8.2 lets you push your multimedia computer to its limits! Use "
-"the latest software to play music and audio files, edit and organize your "
-"images and photos, watch TV and videos, and much more"
+"Mandrake Linux 9.0 enables you to use the very latest software to play audio "
+"files, edit and handle your images or photos, and play videos"
msgstr ""
-#: ../../share/advertising/04-develop.pl_.c:9
-msgid "Development"
-msgstr "Sviluppo"
+#: ../../share/advertising/05-games.pl_.c:9
+msgid "Games"
+msgstr "Giochi"
-#: ../../share/advertising/04-develop.pl_.c:10
+#: ../../share/advertising/05-games.pl_.c:10
msgid ""
-"Mandrake Linux 8.2 is the ultimate development platform. Discover the power "
-"of the GNU gcc compiler as well as the best Open Source development "
-"environments"
+"Mandrake Linux 9.0 provides the best Open Source games - arcade, action, "
+"cards, sports, strategy..."
msgstr ""
-#: ../../share/advertising/05-contcenter.pl_.c:9
-#: ../../standalone/drakbug_.c:69
+#: ../../share/advertising/06-mcc.pl_.c:9 ../../standalone/drakbug_.c:69
msgid "Mandrake Control Center"
msgstr "Centro di Controllo Mandrake"
-#: ../../share/advertising/05-contcenter.pl_.c:10
+#: ../../share/advertising/06-mcc.pl_.c:10
msgid ""
-"The Mandrake Linux 8.2 Control Center is a one-stop location for fully "
-"customizing and configuring your Mandrake system"
+"Mandrake Linux 9.0 provides a powerful tool to fully customize and configure "
+"your machine"
msgstr ""
-#: ../../share/advertising/06-user.pl_.c:9
+#: ../../share/advertising/07-desktop.pl_.c:9
msgid "User interfaces"
msgstr "Interfacce utente"
-#: ../../share/advertising/06-user.pl_.c:10
+#: ../../share/advertising/07-desktop.pl_.c:10
msgid ""
-"Mandrake Linux 8.2 provides 11 different graphical desktop environments and "
-"window managers to choose from including GNOME 1.4, KDE 2.2.2, Window Maker "
-"0.8, and the rest"
+"Mandrake Linux 9.0 provides 11 user interfaces which can be fully modified: "
+"KDE 3, Gnome 2, WindowMaker..."
msgstr ""
-#: ../../share/advertising/07-server.pl_.c:9
-msgid "Server Software"
-msgstr "Software per server"
+#: ../../share/advertising/08-development.pl_.c:9
+#, fuzzy
+msgid "Development simplified"
+msgstr "Sviluppo"
+
+#: ../../share/advertising/08-development.pl_.c:10
+msgid "Mandrake Linux 9.0 is the ultimate development platform"
+msgstr ""
-#: ../../share/advertising/07-server.pl_.c:10
+#: ../../share/advertising/08-development.pl_.c:11
msgid ""
-"Transform your machine into a powerful server with just a few clicks of the "
-"mouse: Web server, email, firewall, router, file and print server, ..."
+"Use the full power of the GNU gcc 3 compiler as well as the best Open Source "
+"development environments"
msgstr ""
-#: ../../share/advertising/08-games.pl_.c:9
-msgid "Games"
-msgstr "Giochi"
+#: ../../share/advertising/09-server.pl_.c:9
+msgid "Turn your machine into a reliable server"
+msgstr ""
-#: ../../share/advertising/08-games.pl_.c:10
+#: ../../share/advertising/09-server.pl_.c:10
msgid ""
-"Mandrake Linux 8.2 provides the best Open Source games - arcade, action, "
-"cards, sports, strategy, ..."
+"Transform your machine into a powerful server in a few clicks of your mouse: "
+"Web server, mail, firewall, router, file and print server..."
msgstr ""
-#: ../../share/advertising/09-MDKcampus.pl_.c:9
-msgid "MandrakeCampus"
+#: ../../share/advertising/10-mnf.pl_.c:9
+msgid "Optimize your security"
msgstr ""
-#: ../../share/advertising/09-MDKcampus.pl_.c:10
+#: ../../share/advertising/10-mnf.pl_.c:10
msgid ""
-"Would you like to learn Linux simply, quickly, and for free? MandrakeSoft "
-"provides free Linux training, as well as a way to test your progress, at "
-"MandrakeCampus -- our online training center"
+"The MandrakeSecurity range includes the Multi Network Firewall product (M.N."
+"F.)"
msgstr ""
-#: ../../share/advertising/10-MDKexpert.pl_.c:9
-msgid "MandrakeExpert"
-msgstr "MandrakeExpert"
+#: ../../share/advertising/10-mnf.pl_.c:11
+msgid ""
+"This firewall product includes network features which allow you to fulfill "
+"all your security needs"
+msgstr ""
+
+#: ../../share/advertising/10-mnf.pl_.c:12
+msgid "This product is available on MandrakeStore website"
+msgstr ""
-#: ../../share/advertising/10-MDKexpert.pl_.c:10
+#: ../../share/advertising/11-mdkstore.pl_.c:9
+msgid "The official MandrakeSoft store"
+msgstr ""
+
+#: ../../share/advertising/11-mdkstore.pl_.c:10
msgid ""
-"Quality support from the Linux Community, and from MandrakeSoft, is just "
-"around the corner. And if you're already a Linux veteran, become an \"Expert"
-"\" and share your knowledge at our support website"
+"Our full range of Linux solutions, as well as special offers on products and "
+"'goodies', are available online at our e-store"
msgstr ""
-#: ../../share/advertising/11-consul.pl_.c:9
-msgid "MandrakeConsulting"
+#: ../../share/advertising/12-mdkstore.pl_.c:9
+msgid "Strategic partners"
msgstr ""
-#: ../../share/advertising/11-consul.pl_.c:10
+#: ../../share/advertising/12-mdkstore.pl_.c:10
msgid ""
-"For all of your IT projects, our consultants are ready to analyze your "
-"requirements and offer a customized solution. Benefit from MandrakeSoft's "
-"vast experience as a Linux producer to provide a true IT alternative for "
-"your business organization"
+"MandrakeSoft works alongside a selection of companies offering professional "
+"solutions compatible with Mandrake Linux; a list of these partners is "
+"available on the MandrakeStore"
msgstr ""
-#: ../../share/advertising/12-MDKstore.pl_.c:9
-msgid "MandrakeStore"
+#: ../../share/advertising/13-mdkcampus.pl_.c:9
+msgid "Discover MandrakeSoft's training catalogue Linux-Campus"
msgstr ""
-#: ../../share/advertising/12-MDKstore.pl_.c:10
+#: ../../share/advertising/13-mdkcampus.pl_.c:10
msgid ""
-"A full range of Linux solutions, as well as special offers on products and "
-"'goodies', are available online at our e-store"
+"The training program has been create to respond to the needs of both users "
+"and experts (Network and System administrations)"
msgstr ""
-#: ../../share/advertising/13-Nvert.pl_.c:9
+#: ../../share/advertising/13-mdkcampus.pl_.c:11
+msgid "Certify yourself on Linux"
+msgstr ""
+
+#: ../../share/advertising/13-mdkcampus.pl_.c:12
msgid ""
-"For more information on MandrakeSoft's Professional Services and commercial "
-"offerings, please see the following web page:"
+"Whether you choose to teach yourself online or via our network of training "
+"partners, the Linux-Campus catalogue prepares you for the acknowledged LPI "
+"certification program (worldwide professional technical certification)"
+msgstr ""
+
+#: ../../share/advertising/14-mdkexpert.pl_.c:9
+msgid "Become a MandrakeExpert"
msgstr ""
-#: ../../share/advertising/13-Nvert.pl_.c:11
-msgid "http://www.mandrakesoft.com/sales/contact"
+#: ../../share/advertising/14-mdkexpert.pl_.c:10
+msgid ""
+"Find the solutions to your problems via MandrakeSoft's online support "
+"platform"
msgstr ""
-#: ../../standalone.pm_.c:40
+#: ../../share/advertising/14-mdkexpert.pl_.c:11
+msgid ""
+"Join the MandrakeSoft support teams and the Linux Community online to share "
+"your knowledge and help others by becoming a recognized Expert on the online "
+"technical support website:"
+msgstr ""
+
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:9
+#, fuzzy
+msgid "MandrakeExpert Corporate"
+msgstr "Centro di Controllo Mandrake"
+
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:10
+msgid "An online platform to respond to company's specific support needs"
+msgstr ""
+
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:11
+msgid ""
+"All incidents will be followed up by a single qualified MandrakeSoft "
+"technical expert."
+msgstr ""
+
+#: ../../standalone.pm_.c:41
msgid "Installing packages..."
msgstr "Installazione dei pacchetti ..."
-#: ../../standalone/XFdrake_.c:143
+#: ../../standalone/XFdrake_.c:145
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "Per favore esci e usa Ctrl-Alt-Backspace"
-#: ../../standalone/XFdrake_.c:147
+#: ../../standalone/XFdrake_.c:149
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "Per favore rientra come %s per attivare le modifiche"
-#: ../../standalone/diskdrake_.c:81
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I'll try to go on blanking bad partitions"
-msgstr ""
-"Non posso leggere la tua tabella delle partizioni, è troppo\n"
-"corrotta per me :( . Proverò a cancellare le partizioni rovinate."
-
#: ../../standalone/drakTermServ_.c:188
-#, fuzzy
msgid "Mandrake Terminal Server Configuration"
-msgstr "Configurazione della stampante a trasferimento"
+msgstr "Configurazione del Terminal Server Mandrake"
#: ../../standalone/drakTermServ_.c:203
-#, fuzzy
msgid "Enable Server"
-msgstr "Server di database"
+msgstr "Abilita il server"
#: ../../standalone/drakTermServ_.c:210
-#, fuzzy
msgid "Disable Server"
-msgstr "Server di database"
+msgstr "Disabilita il server"
#: ../../standalone/drakTermServ_.c:218
-#, fuzzy
msgid "Start Server"
-msgstr "Server NIS"
+msgstr "Avvia il server"
#: ../../standalone/drakTermServ_.c:225
-#, fuzzy
msgid "Stop Server"
-msgstr "Server NIS"
+msgstr "Ferma il server"
#: ../../standalone/drakTermServ_.c:233
msgid "Etherboot Floppy/ISO"
@@ -9883,21 +10288,20 @@ msgid "Net Boot Images"
msgstr ""
#: ../../standalone/drakTermServ_.c:239
-#, fuzzy
msgid "Add/Del Users"
-msgstr "Aggiungi utente"
+msgstr "Aggiungi/Rimuovi utenti"
#: ../../standalone/drakTermServ_.c:241
-#, fuzzy
msgid "Add/Del Clients"
-msgstr "Cliente DHCP"
-
-#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3282
-#: ../../standalone/drakbackup_.c:3315 ../../standalone/drakbackup_.c:3341
-#: ../../standalone/drakbackup_.c:3368 ../../standalone/drakbackup_.c:3395
-#: ../../standalone/drakbackup_.c:3434 ../../standalone/drakbackup_.c:3455
-#: ../../standalone/drakbackup_.c:3482 ../../standalone/drakbackup_.c:3508
-#: ../../standalone/drakbackup_.c:3533 ../../standalone/drakfont_.c:700
+msgstr "Aggiungi/Rimuovi client"
+
+#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3930
+#: ../../standalone/drakbackup_.c:3963 ../../standalone/drakbackup_.c:3989
+#: ../../standalone/drakbackup_.c:4016 ../../standalone/drakbackup_.c:4043
+#: ../../standalone/drakbackup_.c:4082 ../../standalone/drakbackup_.c:4103
+#: ../../standalone/drakbackup_.c:4130 ../../standalone/drakbackup_.c:4160
+#: ../../standalone/drakbackup_.c:4186 ../../standalone/drakbackup_.c:4211
+#: ../../standalone/drakfont_.c:700
msgid "Help"
msgstr "Aiuto"
@@ -9926,28 +10330,24 @@ msgid "Build Single NIC -->"
msgstr ""
#: ../../standalone/drakTermServ_.c:535
-#, fuzzy
msgid "No nic selected!"
-msgstr "Non connesso"
+msgstr "Nessuna NIC selezionata!"
#: ../../standalone/drakTermServ_.c:538
msgid "Build All Kernels -->"
msgstr ""
#: ../../standalone/drakTermServ_.c:552
-#, fuzzy
msgid "<-- Delete"
-msgstr "Cancella"
+msgstr "<-- Cancella"
#: ../../standalone/drakTermServ_.c:559
-#, fuzzy
msgid "Delete All NBIs"
-msgstr "Tutti selezionati"
+msgstr "Cancella tutti i NBI"
#: ../../standalone/drakTermServ_.c:621
-#, fuzzy
msgid "Add User -->"
-msgstr "Aggiungi utente"
+msgstr "Aggiungi utente -->"
#: ../../standalone/drakTermServ_.c:629
msgid "<-- Del User"
@@ -9958,24 +10358,20 @@ msgid "Add Client -->"
msgstr ""
#: ../../standalone/drakTermServ_.c:735
-#, fuzzy
msgid "<-- Del Client"
-msgstr "Cliente DHCP"
+msgstr "<-- Rimuovi client"
#: ../../standalone/drakTermServ_.c:741
-#, fuzzy
msgid "dhcpd Config..."
-msgstr "Sto configurando..."
+msgstr "Configurazione dhcpd ..."
#: ../../standalone/drakTermServ_.c:888
-#, fuzzy
msgid "Write Config"
-msgstr "riconfigura"
+msgstr "Scrivi configurazione"
#: ../../standalone/drakTermServ_.c:946
-#, fuzzy
msgid "Please insert floppy disk:"
-msgstr "Per favore inserisci il floppy di avvio utilizzato nel drive %s"
+msgstr "Per favore inserisci il floppy disk:"
#: ../../standalone/drakTermServ_.c:950
msgid "Couldn't access the floppy!"
@@ -9986,9 +10382,8 @@ msgid "Floppy can be removed now"
msgstr ""
#: ../../standalone/drakTermServ_.c:955
-#, fuzzy
msgid "No floppy drive available!"
-msgstr "Nessun drive floppy disponibile"
+msgstr "Nessun drive floppy disponibile!"
#: ../../standalone/drakTermServ_.c:964
#, c-format
@@ -10042,9 +10437,8 @@ msgid ""
msgstr ""
#: ../../standalone/drakautoinst_.c:81 ../../standalone/drakautoinst_.c:82
-#, fuzzy
msgid "Creating auto install floppy"
-msgstr "Sto creando il floppy di auto installazione"
+msgstr "Sto creando il floppy di installazione automatica"
#: ../../standalone/drakautoinst_.c:144
msgid ""
@@ -10054,8 +10448,8 @@ msgid ""
"The parameters of the auto-install are available in the sections on the left"
msgstr ""
-#: ../../standalone/drakautoinst_.c:239 ../../standalone/drakgw_.c:548
-#: ../../standalone/scannerdrake_.c:105
+#: ../../standalone/drakautoinst_.c:239 ../../standalone/drakgw_.c:484
+#: ../../standalone/scannerdrake_.c:119
msgid "Congratulations!"
msgstr "Congratulazioni!"
@@ -10077,27 +10471,31 @@ msgstr "Aggiungi una voce"
msgid "Remove the last item"
msgstr "Rimuovi l'ultima voce"
-#: ../../standalone/drakbackup_.c:625
+#: ../../standalone/drakbackup_.c:619
msgid "Cron not available yet as non-root"
msgstr ""
-#: ../../standalone/drakbackup_.c:731
+#: ../../standalone/drakbackup_.c:725
msgid "WARNING"
msgstr ""
-#: ../../standalone/drakbackup_.c:732
+#: ../../standalone/drakbackup_.c:726
#, fuzzy
msgid "FATAL"
msgstr "FAT"
-#: ../../standalone/drakbackup_.c:744
+#: ../../standalone/drakbackup_.c:727
+msgid "INFO"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:739
msgid ""
"\n"
" DrakBackup Report \n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:745
+#: ../../standalone/drakbackup_.c:740
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -10105,7 +10503,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:749
+#: ../../standalone/drakbackup_.c:744
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -10113,13 +10511,20 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:770 ../../standalone/drakbackup_.c:840
-#: ../../standalone/drakbackup_.c:894
+#: ../../standalone/drakbackup_.c:765 ../../standalone/drakbackup_.c:835
+#: ../../standalone/drakbackup_.c:889
#, fuzzy
msgid "Total progess"
msgstr "progresso totale"
-#: ../../standalone/drakbackup_.c:822
+#: ../../standalone/drakbackup_.c:788
+msgid ""
+"Sorry, perl-Expect is not installed/enabled. To use\n"
+"this feature, install perl-Expect and comment lines 772-774,\n"
+" as well as 788,789. Then uncomment line 787."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:817
#, c-format
msgid ""
"%s exists, delete?\n"
@@ -10128,16 +10533,41 @@ msgid ""
" need to purge the entry from authorized_keys on the server."
msgstr ""
-#: ../../standalone/drakbackup_.c:831
+#: ../../standalone/drakbackup_.c:826
msgid "This may take a moment to generate the keys."
msgstr ""
-#: ../../standalone/drakbackup_.c:838
+#: ../../standalone/drakbackup_.c:833
#, c-format
msgid "ERROR: Cannot spawn %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:865
+#: ../../standalone/drakbackup_.c:850
+#, c-format
+msgid "No password prompt on %s at port %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:851
+#, fuzzy, c-format
+msgid "Bad password on %s"
+msgstr "Nessuna Password"
+
+#: ../../standalone/drakbackup_.c:852
+#, c-format
+msgid "Permission denied transferring %s to %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:853
+#, c-format
+msgid "Can't find %s on %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:856
+#, c-format
+msgid "%s not responding"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:860
#, c-format
msgid ""
"Transfer successful\n"
@@ -10148,60 +10578,65 @@ msgid ""
"without being prompted for a password."
msgstr ""
-#: ../../standalone/drakbackup_.c:908
+#: ../../standalone/drakbackup_.c:903
msgid "WebDAV remote site already in sync!"
msgstr ""
-#: ../../standalone/drakbackup_.c:912
+#: ../../standalone/drakbackup_.c:907
msgid "WebDAV transfer failed!"
msgstr ""
-#: ../../standalone/drakbackup_.c:934
+#: ../../standalone/drakbackup_.c:928
msgid "No CDR/DVDR in drive!"
msgstr ""
-#: ../../standalone/drakbackup_.c:938
+#: ../../standalone/drakbackup_.c:932
msgid "Does not appear to be recordable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:942
+#: ../../standalone/drakbackup_.c:936
msgid "Not erasable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:981
+#: ../../standalone/drakbackup_.c:975
msgid "This may take a moment to erase the media."
msgstr ""
-#: ../../standalone/drakbackup_.c:1045
+#: ../../standalone/drakbackup_.c:1060
msgid "Permission problem accessing CD."
msgstr ""
-#: ../../standalone/drakbackup_.c:1144 ../../standalone/drakbackup_.c:1193
+#: ../../standalone/drakbackup_.c:1087
+#, c-format
+msgid "No tape in %s!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1199 ../../standalone/drakbackup_.c:1248
msgid "Backup system files..."
msgstr "Backup dei file di sistema..."
-#: ../../standalone/drakbackup_.c:1194 ../../standalone/drakbackup_.c:1261
+#: ../../standalone/drakbackup_.c:1249 ../../standalone/drakbackup_.c:1316
msgid "Hard Disk Backup files..."
msgstr "File di backup su disco rigido..."
-#: ../../standalone/drakbackup_.c:1206
+#: ../../standalone/drakbackup_.c:1261
msgid "Backup User files..."
msgstr "Backup dei file dell'utente"
-#: ../../standalone/drakbackup_.c:1207
+#: ../../standalone/drakbackup_.c:1262
msgid "Hard Disk Backup Progress..."
msgstr "Progresso del backup del disco rigido..."
-#: ../../standalone/drakbackup_.c:1260
+#: ../../standalone/drakbackup_.c:1315
msgid "Backup Other files..."
msgstr "Backup di altri file"
-#: ../../standalone/drakbackup_.c:1266
+#: ../../standalone/drakbackup_.c:1321
#, fuzzy
msgid "No changes to backup!"
msgstr "Usa unità a nastro per effettuare il backup"
-#: ../../standalone/drakbackup_.c:1282 ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1337 ../../standalone/drakbackup_.c:1360
#, c-format
msgid ""
"\n"
@@ -10209,53 +10644,52 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1289
+#: ../../standalone/drakbackup_.c:1344
#, fuzzy, c-format
msgid ""
-"file list sent by FTP : %s\n"
+"file list sent by FTP: %s\n"
" "
msgstr "trasmissione file via FTP"
-#: ../../standalone/drakbackup_.c:1292
+#: ../../standalone/drakbackup_.c:1347
msgid ""
"\n"
" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1310
+#: ../../standalone/drakbackup_.c:1365
msgid ""
"\n"
"Drakbackup activities via CD:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1315
+#: ../../standalone/drakbackup_.c:1370
msgid ""
"\n"
"Drakbackup activities via tape:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1324
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1379
msgid " Error during mail sending. \n"
-msgstr "Errore leggendo il file %s"
+msgstr "Errore durante l'invio della mail. \n"
-#: ../../standalone/drakbackup_.c:1346
+#: ../../standalone/drakbackup_.c:1404
msgid "Can't create catalog!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1459 ../../standalone/drakbackup_.c:1470
-#: ../../standalone/drakbackup_.c:1481 ../../standalone/drakfont_.c:1004
+#: ../../standalone/drakbackup_.c:1517 ../../standalone/drakbackup_.c:1528
+#: ../../standalone/drakfont_.c:1004
msgid "File Selection"
msgstr "Selezione file"
-#: ../../standalone/drakbackup_.c:1486
+#: ../../standalone/drakbackup_.c:1556
msgid "Select the files or directories and click on 'Add'"
msgstr "Selezionate i file e le directory e cliccate su 'Aggiungi'"
-#: ../../standalone/drakbackup_.c:1525
+#: ../../standalone/drakbackup_.c:1600
msgid ""
"\n"
"Please check all options that you need.\n"
@@ -10263,7 +10697,7 @@ msgstr ""
"\n"
"Per favore abilitate tutte le opzioni necessarie\n"
-#: ../../standalone/drakbackup_.c:1526
+#: ../../standalone/drakbackup_.c:1601
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
@@ -10271,20 +10705,20 @@ msgstr ""
"nella\n"
"vostra directory /etc.\n"
-#: ../../standalone/drakbackup_.c:1527
+#: ../../standalone/drakbackup_.c:1602
#, fuzzy
msgid "Backup your System files. (/etc directory)"
msgstr "Backup dei vostri file di sistema (directory /etc)"
-#: ../../standalone/drakbackup_.c:1528
+#: ../../standalone/drakbackup_.c:1603
msgid "Use incremental backup (do not replace old backups)"
msgstr "Usa backup incrementali (non sostituire i vecchi backup)"
-#: ../../standalone/drakbackup_.c:1529
+#: ../../standalone/drakbackup_.c:1604
msgid "Do not include critical files (passwd, group, fstab)"
msgstr "Non includere file critici (passwd, group, fstab)"
-#: ../../standalone/drakbackup_.c:1530
+#: ../../standalone/drakbackup_.c:1605
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
@@ -10292,127 +10726,131 @@ msgstr ""
"Grazie a questa opzione sarete in grado di ripristinare ogni versione della\n"
"vostra directory /etc."
-#: ../../standalone/drakbackup_.c:1547
+#: ../../standalone/drakbackup_.c:1622
msgid "Please check all users that you want to include in your backup."
msgstr "Per favore scegli tutti gli utenti che vuoi includere nel backup"
-#: ../../standalone/drakbackup_.c:1574
+#: ../../standalone/drakbackup_.c:1649
msgid "Do not include the browser cache"
msgstr "Non includere la cache del navigatore"
-#: ../../standalone/drakbackup_.c:1575 ../../standalone/drakbackup_.c:1599
+#: ../../standalone/drakbackup_.c:1650 ../../standalone/drakbackup_.c:1674
msgid "Use Incremental Backups (do not replace old backups)"
msgstr "Usa backup incrementali (non sostituire i vecchi backup)"
-#: ../../standalone/drakbackup_.c:1597 ../../standalone/drakfont_.c:1058
+#: ../../standalone/drakbackup_.c:1672 ../../standalone/drakfont_.c:1058
msgid "Remove Selected"
msgstr "Rimuovi quelli selezionati"
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:1710
msgid "Windows (FAT32)"
msgstr "Windows (FAT32)"
-#: ../../standalone/drakbackup_.c:1674
+#: ../../standalone/drakbackup_.c:1749
msgid "Users"
msgstr "Utenti"
-#: ../../standalone/drakbackup_.c:1700
+#: ../../standalone/drakbackup_.c:1775
#, fuzzy
msgid "Use network connection to backup"
msgstr "Usa unità a nastro per effettuare il backup"
-#: ../../standalone/drakbackup_.c:1706
+#: ../../standalone/drakbackup_.c:1777
+msgid "Net Method:"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1781
msgid "Use Expect for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1707
+#: ../../standalone/drakbackup_.c:1782
msgid ""
"Create/Transfer\n"
"backup keys for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1708
+#: ../../standalone/drakbackup_.c:1783
msgid ""
" Transfer \n"
"Now"
msgstr ""
-#: ../../standalone/drakbackup_.c:1709
+#: ../../standalone/drakbackup_.c:1784
msgid "Keys in place already"
msgstr ""
-#: ../../standalone/drakbackup_.c:1713
+#: ../../standalone/drakbackup_.c:1788
msgid "Please enter the host name or IP."
msgstr "Per favore inserisci il nome dell'host o l'IP"
-#: ../../standalone/drakbackup_.c:1718
+#: ../../standalone/drakbackup_.c:1793
#, fuzzy
msgid ""
"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr "Per favore, indicate la directory in cui sono archiviati i backup"
-#: ../../standalone/drakbackup_.c:1723
+#: ../../standalone/drakbackup_.c:1798
msgid "Please enter your login"
msgstr "Per favore inserisci il tuo nomei di login"
-#: ../../standalone/drakbackup_.c:1728
+#: ../../standalone/drakbackup_.c:1803
msgid "Please enter your password"
msgstr "Per favore inserisci la tua password"
-#: ../../standalone/drakbackup_.c:1734
+#: ../../standalone/drakbackup_.c:1809
msgid "Remember this password"
msgstr "Ricorda questa password"
-#: ../../standalone/drakbackup_.c:1745
+#: ../../standalone/drakbackup_.c:1820
msgid "Need hostname, username and password!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1841
+#: ../../standalone/drakbackup_.c:1915
msgid "Use CD/DVDROM to backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1844
+#: ../../standalone/drakbackup_.c:1918
msgid ""
"Please choose your CD/DVD device\n"
"(Press Enter to propogate settings to other fields.\n"
"This field isn't necessary, only a tool to fill in the form.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1849
+#: ../../standalone/drakbackup_.c:1923
#, fuzzy
msgid "Please choose your CD/DVD media size"
msgstr "Per favore, scegliete lo spazio su CD"
-#: ../../standalone/drakbackup_.c:1855
+#: ../../standalone/drakbackup_.c:1929
#, fuzzy
msgid "Please check for multisession CD"
msgstr "Per favore, accertatevi di usare supporti CD-RW"
-#: ../../standalone/drakbackup_.c:1861
+#: ../../standalone/drakbackup_.c:1935
msgid "Please check if you are using CDRW media"
msgstr "Per favore, accertatevi di usare supporti CD-RW"
-#: ../../standalone/drakbackup_.c:1867
+#: ../../standalone/drakbackup_.c:1941
#, fuzzy
msgid "Please check if you want to erase your RW media (1st Session)"
msgstr "Per favore, accertatevi di usare supporti CD-RW"
-#: ../../standalone/drakbackup_.c:1868
+#: ../../standalone/drakbackup_.c:1942
msgid " Erase Now "
msgstr ""
-#: ../../standalone/drakbackup_.c:1874
+#: ../../standalone/drakbackup_.c:1948
#, fuzzy
msgid "Please check if you are using a DVDR device"
msgstr "Per favore, accertatevi di usare supporti CD-RW"
-#: ../../standalone/drakbackup_.c:1880
+#: ../../standalone/drakbackup_.c:1954
#, fuzzy
msgid "Please check if you are using a DVDRAM device"
msgstr "Per favore, accertatevi di usare supporti CD-RW"
-#: ../../standalone/drakbackup_.c:1893
+#: ../../standalone/drakbackup_.c:1967
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
@@ -10420,36 +10858,36 @@ msgstr ""
"Per favore, inserite il numero che identifica il vostro masterizzatore\n"
"ad esempio: 0,1,0"
-#: ../../standalone/drakbackup_.c:1926
+#: ../../standalone/drakbackup_.c:2000
#, fuzzy
msgid "No CD device defined!"
msgstr "Scegli file"
-#: ../../standalone/drakbackup_.c:1974
+#: ../../standalone/drakbackup_.c:2048
msgid "Use tape to backup"
msgstr "Usa unità a nastro per effettuare il backup"
-#: ../../standalone/drakbackup_.c:1977
+#: ../../standalone/drakbackup_.c:2051
msgid "Please enter the device name to use for backup"
msgstr "Per favore, inserite il nome del dispositivo da usare per il backup"
-#: ../../standalone/drakbackup_.c:1983
+#: ../../standalone/drakbackup_.c:2057
#, fuzzy
msgid "Please check if you want to use the non-rewinding device."
msgstr "Per favore scegli tutti gli utenti che vuoi includere nel backup"
-#: ../../standalone/drakbackup_.c:1989
+#: ../../standalone/drakbackup_.c:2063
#, fuzzy
msgid "Please check if you want to erase your tape before the backup."
msgstr "Per favore scegli tutti gli utenti che vuoi includere nel backup"
-#: ../../standalone/drakbackup_.c:1995
+#: ../../standalone/drakbackup_.c:2069
#, fuzzy
msgid "Please check if you want to eject your tape after the backup."
msgstr "Per favore scegli tutti gli utenti che vuoi includere nel backup"
-#: ../../standalone/drakbackup_.c:2001 ../../standalone/drakbackup_.c:2074
-#: ../../standalone/drakbackup_.c:3025
+#: ../../standalone/drakbackup_.c:2075 ../../standalone/drakbackup_.c:2149
+#: ../../standalone/drakbackup_.c:3116
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
@@ -10457,57 +10895,57 @@ msgstr ""
"Per favore, indicate le dimensioni massime\n"
"concesse a Drakbackup"
-#: ../../standalone/drakbackup_.c:2066
+#: ../../standalone/drakbackup_.c:2140
#, fuzzy
msgid "Please enter the directory to save to:"
msgstr "Per favore inserisci la directory da salvare:"
-#: ../../standalone/drakbackup_.c:2080 ../../standalone/drakbackup_.c:3031
+#: ../../standalone/drakbackup_.c:2155 ../../standalone/drakbackup_.c:3122
msgid "Use quota for backup files."
msgstr "Usa una quota per i file di backup."
-#: ../../standalone/drakbackup_.c:2146
+#: ../../standalone/drakbackup_.c:2221
msgid "Network"
msgstr "Rete"
-#: ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:2226
msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2156
+#: ../../standalone/drakbackup_.c:2231
msgid "HardDrive / NFS"
msgstr "Disco rigido  / NFS"
-#: ../../standalone/drakbackup_.c:2161
+#: ../../standalone/drakbackup_.c:2236
#, fuzzy
msgid "Tape"
msgstr "Tipo"
-#: ../../standalone/drakbackup_.c:2175 ../../standalone/drakbackup_.c:2179
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2250 ../../standalone/drakbackup_.c:2254
+#: ../../standalone/drakbackup_.c:2258
msgid "hourly"
msgstr "ogni ora"
-#: ../../standalone/drakbackup_.c:2176 ../../standalone/drakbackup_.c:2180
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2251 ../../standalone/drakbackup_.c:2255
+#: ../../standalone/drakbackup_.c:2258
msgid "daily"
msgstr "ogni giorno"
-#: ../../standalone/drakbackup_.c:2177 ../../standalone/drakbackup_.c:2181
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2252 ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2258
msgid "weekly"
msgstr "settimanale"
-#: ../../standalone/drakbackup_.c:2178 ../../standalone/drakbackup_.c:2182
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2253 ../../standalone/drakbackup_.c:2257
+#: ../../standalone/drakbackup_.c:2258
msgid "monthly"
msgstr "ogni mese"
-#: ../../standalone/drakbackup_.c:2196
+#: ../../standalone/drakbackup_.c:2271
msgid "Use daemon"
msgstr "Usa demone"
-#: ../../standalone/drakbackup_.c:2201
+#: ../../standalone/drakbackup_.c:2276
msgid ""
"Please choose the time \n"
"interval between each backup"
@@ -10515,7 +10953,7 @@ msgstr ""
"Per favore, scegli la frequenza\n"
"del backup"
-#: ../../standalone/drakbackup_.c:2207
+#: ../../standalone/drakbackup_.c:2282
msgid ""
"Please choose the\n"
"media for backup."
@@ -10523,7 +10961,7 @@ msgstr ""
"Per favore, scegli il supporto\n"
"del backup"
-#: ../../standalone/drakbackup_.c:2214
+#: ../../standalone/drakbackup_.c:2289
#, fuzzy
msgid ""
"Please be sure that the cron daemon is included in your services. \n"
@@ -10532,71 +10970,71 @@ msgid ""
msgstr ""
"Per favore, accertatevi che il demone cron sia incluso fra i servizi attivi"
-#: ../../standalone/drakbackup_.c:2251
-msgid "Send mail report after each backup to :"
+#: ../../standalone/drakbackup_.c:2326
+msgid "Send mail report after each backup to:"
msgstr "Dopo ogni backup invia una mail rapporto a:"
-#: ../../standalone/drakbackup_.c:2257
+#: ../../standalone/drakbackup_.c:2332
msgid "Delete Hard Drive tar files after backup to other media."
msgstr ""
-#: ../../standalone/drakbackup_.c:2296
+#: ../../standalone/drakbackup_.c:2371
msgid "What"
msgstr "Cosa"
-#: ../../standalone/drakbackup_.c:2301
+#: ../../standalone/drakbackup_.c:2376
msgid "Where"
msgstr "Dove"
-#: ../../standalone/drakbackup_.c:2306
+#: ../../standalone/drakbackup_.c:2381
msgid "When"
msgstr "Quando"
-#: ../../standalone/drakbackup_.c:2311
+#: ../../standalone/drakbackup_.c:2386
msgid "More Options"
msgstr "Altre opzioni"
-#: ../../standalone/drakbackup_.c:2330 ../../standalone/drakbackup_.c:3873
+#: ../../standalone/drakbackup_.c:2405 ../../standalone/drakbackup_.c:4530
msgid "Drakbackup Configuration"
msgstr "Configurazione di Drakbackup"
-#: ../../standalone/drakbackup_.c:2348
+#: ../../standalone/drakbackup_.c:2423
msgid "Please choose where you want to backup"
msgstr "Per favore scegliete dove volete effettuare il backup"
-#: ../../standalone/drakbackup_.c:2350
+#: ../../standalone/drakbackup_.c:2425
msgid "on Hard Drive"
msgstr "sul disco rigido"
-#: ../../standalone/drakbackup_.c:2360
+#: ../../standalone/drakbackup_.c:2435
msgid "across Network"
msgstr "sulla rete"
-#: ../../standalone/drakbackup_.c:2370
+#: ../../standalone/drakbackup_.c:2445
msgid "on CDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2378
+#: ../../standalone/drakbackup_.c:2453
msgid "on Tape Device"
msgstr ""
-#: ../../standalone/drakbackup_.c:2421
+#: ../../standalone/drakbackup_.c:2496
msgid "Please choose what you want to backup"
msgstr "Per favore scegliete i pacchetti che volete installare."
-#: ../../standalone/drakbackup_.c:2422
+#: ../../standalone/drakbackup_.c:2497
msgid "Backup system"
msgstr "Sistema di backup"
-#: ../../standalone/drakbackup_.c:2423
+#: ../../standalone/drakbackup_.c:2498
msgid "Backup Users"
msgstr "Fai il backup degli utenti"
-#: ../../standalone/drakbackup_.c:2426
+#: ../../standalone/drakbackup_.c:2501
msgid "Select user manually"
msgstr "Seleziona l'utente manualmente"
-#: ../../standalone/drakbackup_.c:2508
+#: ../../standalone/drakbackup_.c:2584
msgid ""
"\n"
"Backup Sources: \n"
@@ -10604,7 +11042,7 @@ msgstr ""
"\n"
"Fonti del backup: \n"
-#: ../../standalone/drakbackup_.c:2509
+#: ../../standalone/drakbackup_.c:2585
msgid ""
"\n"
"- System Files:\n"
@@ -10612,7 +11050,7 @@ msgstr ""
"\n"
"- File di sistema:\n"
-#: ../../standalone/drakbackup_.c:2511
+#: ../../standalone/drakbackup_.c:2587
msgid ""
"\n"
"- User Files:\n"
@@ -10620,7 +11058,7 @@ msgstr ""
"\n"
"- File degli utenti:\n"
-#: ../../standalone/drakbackup_.c:2513
+#: ../../standalone/drakbackup_.c:2589
msgid ""
"\n"
"- Other Files:\n"
@@ -10628,64 +11066,64 @@ msgstr ""
"\n"
"- Altri file:\n"
-#: ../../standalone/drakbackup_.c:2515
+#: ../../standalone/drakbackup_.c:2591
#, c-format
msgid ""
"\n"
-"- Save on Hard drive on path : %s\n"
+"- Save on Hard drive on path: %s\n"
msgstr ""
"\n"
"- Salva su disco rigido seguendo il percorso: %s\n"
-#: ../../standalone/drakbackup_.c:2518
+#: ../../standalone/drakbackup_.c:2594
msgid ""
"\n"
"- Delete hard drive tar files after backup.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2524
+#: ../../standalone/drakbackup_.c:2600
msgid ""
"\n"
"- Burn to CD"
msgstr ""
-#: ../../standalone/drakbackup_.c:2525
+#: ../../standalone/drakbackup_.c:2601
msgid "RW"
msgstr ""
-#: ../../standalone/drakbackup_.c:2526
+#: ../../standalone/drakbackup_.c:2602
#, fuzzy, c-format
-msgid " on device : %s"
+msgid " on device: %s"
msgstr "Dispositivo del mouse: %s\n"
-#: ../../standalone/drakbackup_.c:2527
+#: ../../standalone/drakbackup_.c:2603
msgid " (multi-session)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2528
+#: ../../standalone/drakbackup_.c:2604
#, fuzzy, c-format
msgid ""
"\n"
-"- Save to Tape on device : %s"
+"- Save to Tape on device: %s"
msgstr ""
"\n"
"- Salva via FTP sull'host: %s\n"
-#: ../../standalone/drakbackup_.c:2529
+#: ../../standalone/drakbackup_.c:2605
#, c-format
msgid "\t\tErase=%s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2532
+#: ../../standalone/drakbackup_.c:2608
#, fuzzy, c-format
msgid ""
"\n"
-"- Save via %s on host : %s\n"
+"- Save via %s on host: %s\n"
msgstr ""
"\n"
"- Salva via FTP sull'host: %s\n"
-#: ../../standalone/drakbackup_.c:2533
+#: ../../standalone/drakbackup_.c:2609
#, c-format
msgid ""
"\t\t user name: %s\n"
@@ -10694,7 +11132,7 @@ msgstr ""
"\t\t nome utente: %s\n"
"\t\t sul percorso: %s \n"
-#: ../../standalone/drakbackup_.c:2534
+#: ../../standalone/drakbackup_.c:2610
msgid ""
"\n"
"- Options:\n"
@@ -10702,225 +11140,343 @@ msgstr ""
"\n"
"-Opzioni:\n"
-#: ../../standalone/drakbackup_.c:2535
+#: ../../standalone/drakbackup_.c:2611
msgid "\tDo not include System Files\n"
msgstr "\tNon includere file di sistema\n"
-#: ../../standalone/drakbackup_.c:2538
+#: ../../standalone/drakbackup_.c:2614
msgid "\tBackups use tar and bzip2\n"
msgstr "\tEffettua backup usando tar e bzip2\n"
-#: ../../standalone/drakbackup_.c:2540
+#: ../../standalone/drakbackup_.c:2616
msgid "\tBackups use tar and gzip\n"
msgstr "\tI backup fanno uso di tar e gzip\n"
-#: ../../standalone/drakbackup_.c:2543
+#: ../../standalone/drakbackup_.c:2619
#, c-format
msgid ""
"\n"
-"- Daemon (%s) include :\n"
+"- Daemon (%s) include:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2544
+#: ../../standalone/drakbackup_.c:2620
msgid "\t-Hard drive.\n"
msgstr "\t-Disco rigido.\n"
-#: ../../standalone/drakbackup_.c:2545
+#: ../../standalone/drakbackup_.c:2621
msgid "\t-CDROM.\n"
msgstr "\t-CDROM.\n"
-#: ../../standalone/drakbackup_.c:2546
+#: ../../standalone/drakbackup_.c:2622
msgid "\t-Tape \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2547
+#: ../../standalone/drakbackup_.c:2623
msgid "\t-Network by FTP.\n"
msgstr "\t-Rete via FTP.\n"
-#: ../../standalone/drakbackup_.c:2548
+#: ../../standalone/drakbackup_.c:2624
msgid "\t-Network by SSH.\n"
msgstr "\t-Rete via SSH.\n"
-#: ../../standalone/drakbackup_.c:2549
+#: ../../standalone/drakbackup_.c:2625
#, fuzzy
msgid "\t-Network by rsync.\n"
msgstr "\t-Rete via FTP.\n"
-#: ../../standalone/drakbackup_.c:2550
+#: ../../standalone/drakbackup_.c:2626
#, fuzzy
msgid "\t-Network by webdav.\n"
msgstr "\t-Rete via FTP.\n"
-#: ../../standalone/drakbackup_.c:2552
+#: ../../standalone/drakbackup_.c:2628
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
"Nessun file di configurazione, per favore cliccate su Assistente o "
"Avanzato.\n"
-#: ../../standalone/drakbackup_.c:2558
+#: ../../standalone/drakbackup_.c:2634
msgid ""
"List of data to restore:\n"
"\n"
msgstr "Lista di dati da ripristinare:\n"
-#: ../../standalone/drakbackup_.c:2725
+#: ../../standalone/drakbackup_.c:2801
msgid ""
"List of data corrupted:\n"
"\n"
msgstr "Lista di dati corrotti:\n"
-#: ../../standalone/drakbackup_.c:2727
+#: ../../standalone/drakbackup_.c:2803
msgid "Please uncheck or remove it on next time."
msgstr "Per favore scegliete a che porta seriale è connesso il vostro modem."
-#: ../../standalone/drakbackup_.c:2737
+#: ../../standalone/drakbackup_.c:2813
msgid "Backup files are corrupted"
msgstr "I file di backup sono corrotti"
-#: ../../standalone/drakbackup_.c:2758
+#: ../../standalone/drakbackup_.c:2834
#, fuzzy
msgid " All of your selected data have been "
msgstr "          Tutti i dati selezionati sono stati          "
-#: ../../standalone/drakbackup_.c:2759
+#: ../../standalone/drakbackup_.c:2835
#, c-format
msgid " Successfuly Restored on %s "
msgstr "          Ripristinati con successo su %s       "
-#: ../../standalone/drakbackup_.c:2877
+#: ../../standalone/drakbackup_.c:2953
msgid " Restore Configuration "
msgstr "         Ripristina configurazione       "
-#: ../../standalone/drakbackup_.c:2895
+#: ../../standalone/drakbackup_.c:2971
msgid "OK to restore the other files."
msgstr "OK al ripristino degli altri file"
-#: ../../standalone/drakbackup_.c:2912
+#: ../../standalone/drakbackup_.c:2988
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
"Lista degli utenti da ripristinare (solo la data più recente per utente è "
"importante)"
-#: ../../standalone/drakbackup_.c:2975
+#: ../../standalone/drakbackup_.c:3066
msgid "Backup the system files before:"
msgstr "Effettua il backup dei file di sistema prima di:"
-#: ../../standalone/drakbackup_.c:2977
+#: ../../standalone/drakbackup_.c:3068
msgid "please choose the date to restore"
msgstr "Per favore, scegliete la data da ripristinare"
-#: ../../standalone/drakbackup_.c:3014
+#: ../../standalone/drakbackup_.c:3105
msgid "Use Hard Disk to backup"
msgstr "Usa il disco rigido per effettuare il backup"
-#: ../../standalone/drakbackup_.c:3017
+#: ../../standalone/drakbackup_.c:3108
msgid "Please enter the directory to save:"
msgstr "Per favore inserisci la directory da salvare:"
-#: ../../standalone/drakbackup_.c:3060
+#: ../../standalone/drakbackup_.c:3151
msgid "FTP Connection"
msgstr "Connessione FTP"
-#: ../../standalone/drakbackup_.c:3067
+#: ../../standalone/drakbackup_.c:3158
msgid "Secure Connection"
msgstr "Connessione sicura"
-#: ../../standalone/drakbackup_.c:3093
+#: ../../standalone/drakbackup_.c:3184
msgid "Restore from Hard Disk."
msgstr "Ripristina da disco rigido"
-#: ../../standalone/drakbackup_.c:3095
+#: ../../standalone/drakbackup_.c:3186
msgid "Please enter the directory where backups are stored"
msgstr "Per favore, indicate la directory in cui sono archiviati i backup"
-#: ../../standalone/drakbackup_.c:3157
+#: ../../standalone/drakbackup_.c:3254
msgid "Select another media to restore from"
msgstr "Scegliete un altro supporto dal quale effettuare il ripristino"
-#: ../../standalone/drakbackup_.c:3159
+#: ../../standalone/drakbackup_.c:3256
msgid "Other Media"
msgstr "Altri supporti"
-#: ../../standalone/drakbackup_.c:3164
+#: ../../standalone/drakbackup_.c:3261
msgid "Restore system"
msgstr "Ripristina sistema"
-#: ../../standalone/drakbackup_.c:3165
+#: ../../standalone/drakbackup_.c:3262
msgid "Restore Users"
msgstr "Ripristina utenti"
-#: ../../standalone/drakbackup_.c:3166
+#: ../../standalone/drakbackup_.c:3263
msgid "Restore Other"
msgstr "Ripristina altro"
-#: ../../standalone/drakbackup_.c:3168
+#: ../../standalone/drakbackup_.c:3265
#, fuzzy
msgid "select path to restore (instead of /)"
msgstr "selezionate il percorso del ripristino (invece di / )"
-#: ../../standalone/drakbackup_.c:3172
+#: ../../standalone/drakbackup_.c:3269
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
"Effettua nuovo backup prima del ripristino (solo per backup incrementali)."
-#: ../../standalone/drakbackup_.c:3174
+#: ../../standalone/drakbackup_.c:3271
msgid "Remove user directories before restore."
msgstr "Rimuovi le directory dell'utente prima del ripristino."
-#: ../../standalone/drakbackup_.c:3232
+#: ../../standalone/drakbackup_.c:3384
+msgid ""
+"Restore Selected\n"
+"Catalog Entry"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3394
+#, fuzzy
+msgid ""
+"Restore Selected\n"
+"Files"
+msgstr "Rimuovi quelli selezionati"
+
+#: ../../standalone/drakbackup_.c:3411
+#, fuzzy
+msgid ""
+"Change\n"
+"Restore Path"
+msgstr "Ripristina altro"
+
+#: ../../standalone/drakbackup_.c:3477
+#, fuzzy, c-format
+msgid "Backup files not found at %s."
+msgstr "I file di backup sono corrotti"
+
+#: ../../standalone/drakbackup_.c:3490
+#, c-format
+msgid ""
+"Insert the CD with volume label %s\n"
+" in the CD drive under mount point /mnt/cdrom"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3490
+#, fuzzy
+msgid "Restore From CD"
+msgstr "Ripristina da disco rigido"
+
+#: ../../standalone/drakbackup_.c:3492
+#, c-format
+msgid "Not the correct CD label. Disk is labelled %s."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3502
+#, c-format
+msgid ""
+"Insert the tape with volume label %s\n"
+" in the tape drive device %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3502
+#, fuzzy
+msgid "Restore From Tape"
+msgstr "Ripristina tabella delle partizioni"
+
+#: ../../standalone/drakbackup_.c:3504
+#, c-format
+msgid "Not the correct tape label. Tape is labelled %s."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3524
+#, fuzzy
+msgid "Restore Via Network"
+msgstr "Ripristina utenti"
+
+#: ../../standalone/drakbackup_.c:3524
+#, c-format
+msgid "Restore Via Network Protocol: %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3525
+#, fuzzy
+msgid "Host Name"
+msgstr "Nome host"
+
+#: ../../standalone/drakbackup_.c:3526
+msgid "Host Path or Module"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3533
+#, fuzzy
+msgid "Password required"
+msgstr "Password"
+
+#: ../../standalone/drakbackup_.c:3539
+#, fuzzy
+msgid "Username required"
+msgstr "Nome utente"
+
+#: ../../standalone/drakbackup_.c:3542
+#, fuzzy
+msgid "Hostname required"
+msgstr "Nome host: "
+
+#: ../../standalone/drakbackup_.c:3547
+msgid "Path or Module required"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3560
+msgid "Files Restored..."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3563
+#, fuzzy
+msgid "Restore Failed..."
+msgstr "Ripristina altro"
+
+#: ../../standalone/drakbackup_.c:3801
msgid "Restore all backups"
msgstr "Ripristina tutti i backup"
-#: ../../standalone/drakbackup_.c:3241
+#: ../../standalone/drakbackup_.c:3810
msgid "Custom Restore"
msgstr "Personalizza il ripristino"
-#: ../../standalone/drakbackup_.c:3287 ../../standalone/drakbackup_.c:3320
-#: ../../standalone/drakbackup_.c:3346 ../../standalone/drakbackup_.c:3373
-#: ../../standalone/drakbackup_.c:3400 ../../standalone/drakbackup_.c:3460
-#: ../../standalone/drakbackup_.c:3487 ../../standalone/drakbackup_.c:3513
+#: ../../standalone/drakbackup_.c:3856
+msgid "CD in place - continue."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3862
+msgid "Browse to new restore repository."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3865
+#, fuzzy
+msgid "Restore From Catalog"
+msgstr "Ripristina tabella delle partizioni"
+
+#: ../../standalone/drakbackup_.c:3893
+#, fuzzy
+msgid "Restore Progress"
+msgstr "Ripristina utenti"
+
+#: ../../standalone/drakbackup_.c:3935 ../../standalone/drakbackup_.c:3968
+#: ../../standalone/drakbackup_.c:3994 ../../standalone/drakbackup_.c:4021
+#: ../../standalone/drakbackup_.c:4048 ../../standalone/drakbackup_.c:4108
+#: ../../standalone/drakbackup_.c:4135 ../../standalone/drakbackup_.c:4165
+#: ../../standalone/drakbackup_.c:4191
msgid "Previous"
msgstr "Precedente"
-#: ../../standalone/drakbackup_.c:3291 ../../standalone/drakbackup_.c:3377
+#: ../../standalone/drakbackup_.c:3939 ../../standalone/drakbackup_.c:4025
#: ../../standalone/logdrake_.c:223
msgid "Save"
msgstr "Salva"
-#: ../../standalone/drakbackup_.c:3350
+#: ../../standalone/drakbackup_.c:3998
msgid "Build Backup"
msgstr "Costruisci backup"
-#: ../../standalone/drakbackup_.c:3404 ../../standalone/drakbackup_.c:3974
+#: ../../standalone/drakbackup_.c:4052 ../../standalone/drakbackup_.c:4632
msgid "Restore"
msgstr "Ripristina"
-#: ../../standalone/drakbackup_.c:3553
-msgid ""
-"Please Build backup before to restore it...\n"
-" or verify that your path to save is correct."
-msgstr ""
-"Per favore fai un backup prima di ripristinarlo...\n"
-" o verifica che il percorso alla directory di salvataggio è corretto."
-
-#: ../../standalone/drakbackup_.c:3574
+#: ../../standalone/drakbackup_.c:4231
+#, fuzzy
msgid ""
-"Error during sendmail\n"
-" your report mail was not sent\n"
+"Error during sendmail.\n"
+" Your report mail was not sent.\n"
" Please configure sendmail"
msgstr ""
"Errore usando sendmail\n"
" la vostra mail di report non è stata inviata\n"
" Per favore configurate sendmail"
-#: ../../standalone/drakbackup_.c:3598
+#: ../../standalone/drakbackup_.c:4255
#, fuzzy
msgid ""
"The following packages need to be installed:\n"
" @list_of_rpm_to_install"
msgstr "I seguenti pacchetti stanno per essere installati"
-#: ../../standalone/drakbackup_.c:3621
+#: ../../standalone/drakbackup_.c:4278
#, fuzzy
msgid ""
"Error during sending file via FTP.\n"
@@ -10929,19 +11485,19 @@ msgstr ""
"Errore nella trasmissione del file via FTP.\n"
" Per favore, controllate la configurazione FTP."
-#: ../../standalone/drakbackup_.c:3644
+#: ../../standalone/drakbackup_.c:4301
msgid "Please select data to restore..."
msgstr "Per favore, scegliete il tipo del vostro mouse."
-#: ../../standalone/drakbackup_.c:3665
+#: ../../standalone/drakbackup_.c:4322
msgid "Please select media for backup..."
msgstr "Per favore, scegliete il tipo del vostro mouse."
-#: ../../standalone/drakbackup_.c:3687
+#: ../../standalone/drakbackup_.c:4344
msgid "Please select data to backup..."
msgstr "Per favore, scegliete il tipo del vostro mouse."
-#: ../../standalone/drakbackup_.c:3709
+#: ../../standalone/drakbackup_.c:4366
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
@@ -10949,59 +11505,59 @@ msgstr ""
"Nessun file di configurazione trovato\n"
"per favore cliccate su Assistente o Avanzato"
-#: ../../standalone/drakbackup_.c:3730
+#: ../../standalone/drakbackup_.c:4387
msgid "Under Devel ... please wait."
msgstr "Ancora in sviluppo ... attendere per favore."
-#: ../../standalone/drakbackup_.c:3811
+#: ../../standalone/drakbackup_.c:4468
msgid "Backup system files"
msgstr "Backup dei file di sistema"
-#: ../../standalone/drakbackup_.c:3813
+#: ../../standalone/drakbackup_.c:4470
msgid "Backup user files"
msgstr "Backup dei file degli utenti"
-#: ../../standalone/drakbackup_.c:3815
+#: ../../standalone/drakbackup_.c:4472
msgid "Backup other files"
msgstr "Backup di altri file"
-#: ../../standalone/drakbackup_.c:3817 ../../standalone/drakbackup_.c:3850
+#: ../../standalone/drakbackup_.c:4474 ../../standalone/drakbackup_.c:4507
msgid "Total Progress"
msgstr "Progresso totale"
-#: ../../standalone/drakbackup_.c:3841
+#: ../../standalone/drakbackup_.c:4498
msgid "files sending by FTP"
msgstr "trasmissione file via FTP"
-#: ../../standalone/drakbackup_.c:3845
+#: ../../standalone/drakbackup_.c:4502
msgid "Sending files..."
msgstr "Sto inviando i file ..."
-#: ../../standalone/drakbackup_.c:3931
+#: ../../standalone/drakbackup_.c:4588
msgid "Backup Now from configuration file"
msgstr "Effettua il backup adesso sulla base del file di configurazione"
-#: ../../standalone/drakbackup_.c:3936
+#: ../../standalone/drakbackup_.c:4593
msgid "View Backup Configuration."
msgstr "Vedi la configurazione di backup"
-#: ../../standalone/drakbackup_.c:3956
+#: ../../standalone/drakbackup_.c:4614
msgid "Wizard Configuration"
msgstr "Configurazione dell'assistente"
-#: ../../standalone/drakbackup_.c:3961
+#: ../../standalone/drakbackup_.c:4619
msgid "Advanced Configuration"
msgstr "Configurazione avanzata"
-#: ../../standalone/drakbackup_.c:3966
+#: ../../standalone/drakbackup_.c:4624
msgid "Backup Now"
msgstr "Effettua il backup adesso"
-#: ../../standalone/drakbackup_.c:3996
+#: ../../standalone/drakbackup_.c:4658
msgid "Drakbackup"
msgstr "Drakbackup"
-#: ../../standalone/drakbackup_.c:4045
+#: ../../standalone/drakbackup_.c:4707
msgid ""
"options description:\n"
"\n"
@@ -11033,7 +11589,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4075
+#: ../../standalone/drakbackup_.c:4737
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -11046,7 +11602,7 @@ msgstr ""
"un'errata configurazione di postfix. Per risolvere il problema\n"
"dovete indicare ilmionomehost o ilmiodominio in /etc/postfix/main.cf\n"
-#: ../../standalone/drakbackup_.c:4083
+#: ../../standalone/drakbackup_.c:4745
msgid ""
"options description:\n"
"\n"
@@ -11087,46 +11643,46 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4122
+#: ../../standalone/drakbackup_.c:4784
msgid ""
"restore description:\n"
" \n"
-"Only the most recent date will be used ,because with incremental \n"
-"backups it is necesarry to restore one by one each older backups.\n"
+"Only the most recent date will be used, because with incremental \n"
+"backups it is necessary to restore one by one each older backup.\n"
"\n"
-"So if you don't like to restore a user please unselect all his\n"
-"check box.\n"
+"So if you don't want to restore a user please unselect all their\n"
+"check boxes.\n"
"\n"
-"Otherwise, you are able to select only one of this\n"
+"Otherwise, you are able to select only one of these.\n"
"\n"
" - Incremental Backups:\n"
"\n"
"\tThe incremental backup is the most powerful \n"
-"\toption to use backup, this option allow you \n"
-"\tto backup all your data the first time, and \n"
-"\tonly the changed after.\n"
-"\tSo you will be able during the restore\n"
+"\toption to use. This option allows you to \n"
+"\tbackup all of your data the first time, and \n"
+"\tonly the changed data after.\n"
+"\tSo you will be able, during the restore\n"
"\tstep, to restore your data from a specified\n"
"\tdate.\n"
-"\tIf you have not selected this options all\n"
+"\tIf you have not selected this option all\n"
"\told backups are deleted before each backup. \n"
"\n"
"\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4148 ../../standalone/drakbackup_.c:4225
+#: ../../standalone/drakbackup_.c:4810 ../../standalone/drakbackup_.c:4887
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
-#: ../../standalone/drakbackup_.c:4150 ../../standalone/drakbackup_.c:4227
+#: ../../standalone/drakbackup_.c:4812 ../../standalone/drakbackup_.c:4889
msgid ""
" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
-#: ../../standalone/drakbackup_.c:4152 ../../standalone/drakbackup_.c:4229
+#: ../../standalone/drakbackup_.c:4814 ../../standalone/drakbackup_.c:4891
msgid ""
" This program is free software; you can redistribute it and/or modify\n"
" it under the terms of the GNU General Public License as published by\n"
@@ -11143,7 +11699,7 @@ msgid ""
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
msgstr ""
-#: ../../standalone/drakbackup_.c:4166
+#: ../../standalone/drakbackup_.c:4828
msgid ""
"Description:\n"
"\n"
@@ -11183,7 +11739,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4204
+#: ../../standalone/drakbackup_.c:4866
msgid ""
"options description:\n"
"\n"
@@ -11194,7 +11750,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4213
+#: ../../standalone/drakbackup_.c:4875
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -11207,7 +11763,7 @@ msgid ""
"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4243
+#: ../../standalone/drakbackup_.c:4905
msgid ""
"Description:\n"
"\n"
@@ -11288,27 +11844,24 @@ msgstr ""
msgid "Synchronization tool"
msgstr ""
-#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:85
-#: ../../standalone/drakbug_.c:150 ../../standalone/drakbug_.c:152
-#: ../../standalone/drakbug_.c:156
+#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:86
+#: ../../standalone/drakbug_.c:151 ../../standalone/drakbug_.c:153
+#: ../../standalone/drakbug_.c:157
#, fuzzy
msgid "Standalone Tools"
msgstr "Programmi da linea di comando"
#: ../../standalone/drakbug_.c:73
-#, fuzzy
msgid "HardDrake"
-msgstr "sul disco rigido"
+msgstr "HardDrake"
#: ../../standalone/drakbug_.c:74
-#, fuzzy
msgid "Mandrake Online"
-msgstr "Centro di Controllo Mandrake"
+msgstr "Mandrake Online"
#: ../../standalone/drakbug_.c:75
-#, fuzzy
msgid "Menudrake"
-msgstr "Tasto \"Menu\""
+msgstr "Menudrake"
#: ../../standalone/drakbug_.c:76
#, fuzzy
@@ -11316,14 +11869,12 @@ msgid "Msec"
msgstr "Mouse"
#: ../../standalone/drakbug_.c:77
-#, fuzzy
msgid "Remote Control"
-msgstr "Stampante remota"
+msgstr "Controllo remoto"
#: ../../standalone/drakbug_.c:78
-#, fuzzy
msgid "Software Manager"
-msgstr "Nome di condivisione"
+msgstr "Software Manager"
#: ../../standalone/drakbug_.c:79
msgid "Urpmi"
@@ -11334,35 +11885,30 @@ msgid "Windows Migration tool"
msgstr ""
#: ../../standalone/drakbug_.c:81
-#, fuzzy
msgid "Userdrake"
-msgstr "PrinterDrake"
+msgstr "Userdrake"
#: ../../standalone/drakbug_.c:82
-#, fuzzy
msgid "Configuration Wizards"
-msgstr "Wizard della configurazione di rete"
+msgstr "Assistenti di configurazione"
-#: ../../standalone/drakbug_.c:96
-#, fuzzy
+#: ../../standalone/drakbug_.c:97
msgid "Application:"
-msgstr "Autenticazione"
+msgstr "Applicazione:"
-#: ../../standalone/drakbug_.c:97
-#, fuzzy
+#: ../../standalone/drakbug_.c:98
msgid "Package: "
-msgstr "Selezione pacchetti"
+msgstr "Pacchetto:"
-#: ../../standalone/drakbug_.c:98
+#: ../../standalone/drakbug_.c:99
msgid "Kernel:"
msgstr ""
-#: ../../standalone/drakbug_.c:99
-#, fuzzy
+#: ../../standalone/drakbug_.c:100
msgid "Release: "
-msgstr "Attendere prego"
+msgstr "Versione: "
-#: ../../standalone/drakbug_.c:114
+#: ../../standalone/drakbug_.c:115
msgid ""
"\n"
"\n"
@@ -11374,21 +11920,19 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbug_.c:135
-#, fuzzy
+#: ../../standalone/drakbug_.c:136
msgid "Report"
-msgstr "Porta"
+msgstr "Report"
-#: ../../standalone/drakbug_.c:165
-#, fuzzy
+#: ../../standalone/drakbug_.c:166
msgid "Not installed"
-msgstr "Post-disinstallazione"
+msgstr "Non installato"
-#: ../../standalone/drakbug_.c:182
+#: ../../standalone/drakbug_.c:183
msgid "connecting to Bugzilla wizard ..."
msgstr ""
-#: ../../standalone/drakbug_.c:189
+#: ../../standalone/drakbug_.c:190
#, fuzzy
msgid "No browser available! Please install one"
msgstr "Dopo 'installazione degli screenshot saranno disponibili in %s"
@@ -11686,13 +12230,13 @@ msgid "Be sure a media is present for the device %s"
msgstr "Assicurati che un supporto sia inserito nel dispositivo %s"
#: ../../standalone/drakfloppy_.c:426
-#, fuzzy, c-format
+#, c-format
msgid ""
"There is no medium or it is write-protected for device %s.\n"
"Please insert one."
msgstr ""
-"Il dispositivo %s è vuoto \n"
-"Inserisci un supporto."
+"Il dispositivo %s è vuoto o il supporto è protetto in scrittura.\n"
+"Per favore inserisci un supporto."
#: ../../standalone/drakfloppy_.c:428
#, c-format
@@ -11837,7 +12381,7 @@ msgid "Font List"
msgstr "Lista font"
#: ../../standalone/drakfont_.c:909
-msgid "Choose the applications that will support the fonts :"
+msgid "Choose the applications that will support the fonts:"
msgstr "Scegliete le applicazioni che supporteranno i font:"
#: ../../standalone/drakfont_.c:918
@@ -11908,19 +12452,19 @@ msgstr "Rimuovi i font dal tuo sistema"
msgid "Post Uninstall"
msgstr "Post-disinstallazione"
-#: ../../standalone/drakgw_.c:42 ../../standalone/drakgw_.c:195
+#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:188
msgid "Internet Connection Sharing"
msgstr "Condivisione connessione Internet"
-#: ../../standalone/drakgw_.c:121
+#: ../../standalone/drakgw_.c:119
msgid "Sorry, we support only 2.4 kernels."
msgstr ""
-#: ../../standalone/drakgw_.c:133
+#: ../../standalone/drakgw_.c:130
msgid "Internet Connection Sharing currently enabled"
msgstr "Condivisione della connessione a Internet attualmente abilitata"
-#: ../../standalone/drakgw_.c:134
+#: ../../standalone/drakgw_.c:131
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -11932,31 +12476,31 @@ msgstr ""
"\n"
"Cosa vorresti fare?"
-#: ../../standalone/drakgw_.c:138
+#: ../../standalone/drakgw_.c:135
msgid "disable"
msgstr "disabilita"
-#: ../../standalone/drakgw_.c:138 ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:135 ../../standalone/drakgw_.c:160
msgid "dismiss"
msgstr "abbandona"
-#: ../../standalone/drakgw_.c:138 ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:135 ../../standalone/drakgw_.c:160
msgid "reconfigure"
msgstr "riconfigura"
-#: ../../standalone/drakgw_.c:141
+#: ../../standalone/drakgw_.c:138
msgid "Disabling servers..."
msgstr "Sto disattivando i server..."
-#: ../../standalone/drakgw_.c:149
+#: ../../standalone/drakgw_.c:146
msgid "Internet connection sharing is now disabled."
msgstr "La condivisione della connessione a Internet ora è disabilitata."
-#: ../../standalone/drakgw_.c:158
+#: ../../standalone/drakgw_.c:155
msgid "Internet Connection Sharing currently disabled"
msgstr "Condivisione connessione Internet attualmente disabilitata"
-#: ../../standalone/drakgw_.c:159
+#: ../../standalone/drakgw_.c:156
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
@@ -11968,19 +12512,19 @@ msgstr ""
"\n"
"Cosa vorresti fare?"
-#: ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:160
msgid "enable"
msgstr "abilita"
-#: ../../standalone/drakgw_.c:170
+#: ../../standalone/drakgw_.c:167
msgid "Enabling servers..."
msgstr "Sto attivando i server..."
-#: ../../standalone/drakgw_.c:175
+#: ../../standalone/drakgw_.c:172
msgid "Internet connection sharing is now enabled."
msgstr "La condivisione della connessione a Internet ora è abilitata."
-#: ../../standalone/drakgw_.c:196
+#: ../../standalone/drakgw_.c:189
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
"With that feature, other computers on your local network will be able to use "
@@ -11997,21 +12541,21 @@ msgstr ""
"Nota: è necessario un Adattatore di Rete dedicato per realizzare una\n"
"Rete di Area Locale (LAN)."
-#: ../../standalone/drakgw_.c:222
+#: ../../standalone/drakgw_.c:215
#, c-format
msgid "Interface %s (using module %s)"
msgstr "Interfaccia %s (usa il modulo %s)"
-#: ../../standalone/drakgw_.c:223
+#: ../../standalone/drakgw_.c:216
#, c-format
msgid "Interface %s"
msgstr "Interfaccia %s"
-#: ../../standalone/drakgw_.c:231
+#: ../../standalone/drakgw_.c:224
msgid "No network adapter on your system!"
msgstr "Nessun adattatore di rete nel tuo sistema!"
-#: ../../standalone/drakgw_.c:232
+#: ../../standalone/drakgw_.c:225
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
@@ -12019,11 +12563,11 @@ msgstr ""
"Nessun adattatore di rete ethernet è stato rilevato nel tuo sistema. Per "
"favore lancia l'utilità di configurazione hardware."
-#: ../../standalone/drakgw_.c:238
+#: ../../standalone/drakgw_.c:231
msgid "Network interface"
msgstr "Interfaccia di rete"
-#: ../../standalone/drakgw_.c:239
+#: ../../standalone/drakgw_.c:232
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -12038,7 +12582,7 @@ msgstr ""
"\n"
"Sto per configurare la tua rete locale (LAN) usando quell'adattatore."
-#: ../../standalone/drakgw_.c:248
+#: ../../standalone/drakgw_.c:241
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
@@ -12046,11 +12590,11 @@ msgstr ""
"Per favore scegliete quale adattatore di rete sarà connesso alla vostra rete "
"locale (LAN)."
-#: ../../standalone/drakgw_.c:266
+#: ../../standalone/drakgw_.c:259
msgid "Network interface already configured"
msgstr "Interfaccia di rete già configurata"
-#: ../../standalone/drakgw_.c:267
+#: ../../standalone/drakgw_.c:260
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -12065,15 +12609,15 @@ msgstr ""
"\n"
"Potete farlo manualmente se sapete quello che state facendo."
-#: ../../standalone/drakgw_.c:272
+#: ../../standalone/drakgw_.c:265
msgid "Automatic reconfiguration"
msgstr "Riconfigurazione automatica"
-#: ../../standalone/drakgw_.c:273
+#: ../../standalone/drakgw_.c:266
msgid "Show current interface configuration"
msgstr "Mostra la configurazione dell'interfaccia corrente"
-#: ../../standalone/drakgw_.c:275
+#: ../../standalone/drakgw_.c:268
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -12090,7 +12634,7 @@ msgstr ""
"Attribuzione IP: %s\n"
"Driver: %s"
-#: ../../standalone/drakgw_.c:287
+#: ../../standalone/drakgw_.c:280
msgid ""
"I can keep your current configuration and assume you already set up a DHCP "
"server; in that case please verify I correctly read the C-Class Network that "
@@ -12110,56 +12654,44 @@ msgstr ""
"In alternativa, posso riconfigurare la vostra interfaccia di rete e (ri)"
"configurare un server DHCP per voi.\n"
-#: ../../standalone/drakgw_.c:292
+#: ../../standalone/drakgw_.c:285
msgid "C-Class Local Network"
msgstr "Rete locale di classe C"
-#: ../../standalone/drakgw_.c:293
+#: ../../standalone/drakgw_.c:286
msgid "(This) DHCP Server IP"
msgstr "IP di (questo) server DHCP"
-#: ../../standalone/drakgw_.c:294
+#: ../../standalone/drakgw_.c:287
msgid "Re-configure interface and DHCP server"
msgstr "Riconfigurazione dell'interfaccia di rete e del server DHCP"
-#: ../../standalone/drakgw_.c:301
+#: ../../standalone/drakgw_.c:294
msgid "The Local Network did not finish with `.0', bailing out."
msgstr "La rete locale non terminava con `.0', rinuncio."
-#: ../../standalone/drakgw_.c:312
+#: ../../standalone/drakgw_.c:305
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr ""
"Trovato conflitto potenziale dell'indirizzo LAN nella configurazione "
"corrente di %s!\n"
-#: ../../standalone/drakgw_.c:320
-msgid "Firewalling configuration detected!"
-msgstr "Rilevata configurazione di Firewall!"
-
-#: ../../standalone/drakgw_.c:321
-msgid ""
-"Warning! An existing firewalling configuration has been detected. You may "
-"need some manual fix after installation."
-msgstr ""
-"Attenzione! È stata rilevata una configurazione di firewall esistente. "
-"Potrebbe avere bisogno di alcuni aggiustamenti manuali dopo l'installazione."
-
-#: ../../standalone/drakgw_.c:328
+#: ../../standalone/drakgw_.c:315
msgid "Configuring..."
msgstr "Sto configurando..."
-#: ../../standalone/drakgw_.c:329
+#: ../../standalone/drakgw_.c:316
msgid "Configuring scripts, installing software, starting servers..."
msgstr ""
"Sto configurando gli script, installando il software, avviando i server..."
-#: ../../standalone/drakgw_.c:365
+#: ../../standalone/drakgw_.c:352
#, c-format
msgid "Problems installing package %s"
msgstr "Problemi nell'installazione del pacchetto %s"
-#: ../../standalone/drakgw_.c:549
+#: ../../standalone/drakgw_.c:485
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
@@ -12169,24 +12701,24 @@ msgstr ""
"Ora puoi condividere la connessione a Internet con altri computers sulla tua "
"rete locale (LAN) usando la configurazione di rete automatica (DHCP)."
-#: ../../standalone/drakgw_.c:566
+#: ../../standalone/drakgw_.c:504
msgid "The setup has already been done, but it's currently disabled."
msgstr "Il setup è già stato fatto, ma è attualmente disabilitato."
-#: ../../standalone/drakgw_.c:567
+#: ../../standalone/drakgw_.c:505
msgid "The setup has already been done, and it's currently enabled."
msgstr "Il setup è già stato fatto, ed è attualmente abilitato."
-#: ../../standalone/drakgw_.c:568
+#: ../../standalone/drakgw_.c:506
msgid "No Internet Connection Sharing has ever been configured."
msgstr ""
"Nessuna condivisione della connessione a Internet configurata in precedenza."
-#: ../../standalone/drakgw_.c:573
+#: ../../standalone/drakgw_.c:511
msgid "Internet connection sharing configuration"
msgstr "Configurazione della connessione a Internet"
-#: ../../standalone/drakgw_.c:580
+#: ../../standalone/drakgw_.c:518
#, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -12201,6 +12733,158 @@ msgstr ""
"\n"
"Cliccate su ``Configura'' se volete lanciare il Wizard di configurazione."
+#: ../../standalone/draksound_.c:46
+#, fuzzy
+msgid "No Sound Card detected!"
+msgstr "Nessuna NIC selezionata!"
+
+#: ../../standalone/draksound_.c:47
+msgid ""
+"No Sound Card has been detected on your machine. Please verify that a Linux-"
+"supported Sound Card is correctly plugged in.\n"
+"\n"
+"\n"
+"You can visit our hardware database at:\n"
+"\n"
+"\n"
+"http://www.linux-mandrake.com/en/hardware.php3"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:32
+msgid "package ImageMagick is required for correct working"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:76
+#, fuzzy
+msgid "first step creation"
+msgstr "creazione disco di avvio"
+
+#: ../../standalone/draksplash_.c:77
+#, fuzzy
+msgid "final resolution"
+msgstr "Risoluzione"
+
+#: ../../standalone/draksplash_.c:78 ../../standalone/draksplash_.c:170
+#, fuzzy
+msgid "choose image file"
+msgstr "Scegli un file"
+
+#: ../../standalone/draksplash_.c:79
+#, fuzzy
+msgid "Theme name"
+msgstr "Nome di condivisione"
+
+#: ../../standalone/draksplash_.c:81
+msgid "make bootsplash step 2"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:82
+#, fuzzy
+msgid "go to lilosplash configuration"
+msgstr "Configurazione post installazione"
+
+#: ../../standalone/draksplash_.c:83
+#, fuzzy
+msgid "quit"
+msgstr "Esci"
+
+#: ../../standalone/draksplash_.c:84
+#, fuzzy
+msgid "save theme"
+msgstr "Installa sistema"
+
+#: ../../standalone/draksplash_.c:85
+msgid "browse"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:98 ../../standalone/draksplash_.c:159
+#, fuzzy
+msgid "Configure bootsplash picture"
+msgstr "Configura servizi"
+
+#: ../../standalone/draksplash_.c:99
+msgid "x coordinate of text box in number of character"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:100
+msgid "y coordinate of text box in number of character"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:101
+msgid "text width"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:102
+msgid "text box height"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:103
+msgid "the progress bar x coordinate of its upper left corner"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:104
+msgid "the progress bar y coordinate of its upper left corner"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:105
+msgid "the width of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:106
+msgid "the heigth of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:107
+msgid "the color of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:119
+#, fuzzy
+msgid "go back"
+msgstr "Loopback"
+
+#: ../../standalone/draksplash_.c:120
+#, fuzzy
+msgid "preview"
+msgstr "dispositivo"
+
+#: ../../standalone/draksplash_.c:121
+#, fuzzy
+msgid "choose color"
+msgstr "Scegli un monitor"
+
+#: ../../standalone/draksplash_.c:124
+msgid "Display logo on Console"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:125
+msgid "Make kernel message quiet by default"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:161 ../../standalone/draksplash_.c:330
+#, c-format
+msgid "This theme haven't yet any bootsplash in %s !"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:213
+msgid "saving Bootsplash theme..."
+msgstr ""
+
+#: ../../standalone/draksplash_.c:436
+#, fuzzy
+msgid "ProgressBar color selection"
+msgstr "Scelta del modello della stampante"
+
+#: ../../standalone/draksplash_.c:454
+#, fuzzy
+msgid "You must choose an image file first!"
+msgstr "Dovete scegliere/indicare una stampante/un dispositivo!"
+
+#: ../../standalone/draksplash_.c:463
+#, fuzzy
+msgid "Generating preview ..."
+msgstr "Riconoscimento periferiche ..."
+
#: ../../standalone/drakxtv_.c:49
msgid ""
"XawTV isn't installed!\n"
@@ -12221,9 +12905,8 @@ msgid "Canada (cable)"
msgstr "Canada (cavo)"
#: ../../standalone/drakxtv_.c:66
-#, fuzzy
msgid "USA (broadcast)"
-msgstr "USA (bcast)"
+msgstr "USA (broadcast)"
#: ../../standalone/drakxtv_.c:66
msgid "USA (cable)"
@@ -12234,14 +12917,12 @@ msgid "USA (cable-hrc)"
msgstr "USA (cavo-hrc)"
#: ../../standalone/drakxtv_.c:67
-#, fuzzy
msgid "China (broadcast)"
-msgstr "Cina (bcast)"
+msgstr "China (broadcast)"
#: ../../standalone/drakxtv_.c:67
-#, fuzzy
msgid "Japan (broadcast)"
-msgstr "Giappone (bcast)"
+msgstr "Japan (broadcast)"
#: ../../standalone/drakxtv_.c:67
msgid "Japan (cable)"
@@ -12252,9 +12933,8 @@ msgid "East Europe"
msgstr "Europa Orientale"
#: ../../standalone/drakxtv_.c:68
-#, fuzzy
msgid "France [SECAM]"
-msgstr "Francia"
+msgstr "France [SECAM]"
#: ../../standalone/drakxtv_.c:68
msgid "Ireland"
@@ -12291,11 +12971,11 @@ msgid ""
msgstr "Per favore, digitate il vostro standard tv e la nazione"
#: ../../standalone/drakxtv_.c:109
-msgid "TV norm :"
+msgid "TV norm:"
msgstr "Standard TV:"
#: ../../standalone/drakxtv_.c:110
-msgid "Area :"
+msgid "Area:"
msgstr "Area:"
#: ../../standalone/drakxtv_.c:114
@@ -12307,9 +12987,8 @@ msgid "Scanning for TV channels"
msgstr "Sto cercando canali TV"
#: ../../standalone/drakxtv_.c:125
-#, fuzzy
msgid "There was an error while scanning for TV channels"
-msgstr "C'è stato un errore installando i pacchetti:"
+msgstr "Si è verificato un errore nella ricerca dei canali TV"
#: ../../standalone/drakxtv_.c:126
msgid "XawTV isn't installed!"
@@ -12374,7 +13053,7 @@ msgstr ""
"Il cambiamento è stato applicato, ma perché diventi effettivo dovete uscire "
"dalla sessione"
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:517
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:515
msgid "logdrake"
msgstr "logdrake"
@@ -12552,8 +13231,9 @@ msgid "service setting"
msgstr "configurazione servizio"
#: ../../standalone/logdrake_.c:431
+#, fuzzy
msgid ""
-"You will receive an alert if one of the selected service is no more running"
+"You will receive an alert if one of the selected services is no more running"
msgstr ""
"Verrete avvisati se uno dei servizi selezionati non è più in esecuzione"
@@ -12574,20 +13254,19 @@ msgstr "configurazione avvisi"
msgid "Please enter your email address below "
msgstr "Per favore inserisci la tua password"
-#: ../../standalone/logdrake_.c:499
+#: ../../standalone/logdrake_.c:497
msgid "Save as.."
msgstr "Salva con nome..."
-#: ../../standalone/mousedrake_.c:43
+#: ../../standalone/mousedrake_.c:45
msgid "Please, choose the type of your mouse."
msgstr "Per favore, scegliete il tipo del vostro mouse."
-#: ../../standalone/mousedrake_.c:57
+#: ../../standalone/mousedrake_.c:58
msgid "Emulate third button?"
msgstr "Emula il terzo pulsante?"
-#: ../../standalone/printerdrake_.c:48
-#, fuzzy
+#: ../../standalone/printerdrake_.c:57
msgid "Reading printer data ..."
msgstr "Sto leggendo i dati della stampante..."
@@ -12599,33 +13278,43 @@ msgstr "Riconoscimento periferiche ..."
msgid "Test ports"
msgstr "Test delle porte"
-#: ../../standalone/scannerdrake_.c:52
+#: ../../standalone/scannerdrake_.c:53 ../../standalone/scannerdrake_.c:68
+#: ../../standalone/scannerdrake_.c:81
#, c-format
-msgid "%s found on %s, configure it ?"
+msgid "The %s is not supported by this version of Mandrake Linux."
+msgstr ""
+
+#: ../../standalone/scannerdrake_.c:56
+#, fuzzy, c-format
+msgid "%s found on %s, configure it?"
msgstr "Trovato %s su %s, devo configurarlo?"
#: ../../standalone/scannerdrake_.c:59
+#, c-format
+msgid "%s is not in the scanner database, configure it manually?"
+msgstr ""
+
+#: ../../standalone/scannerdrake_.c:65
msgid "Select a scanner"
msgstr "Scegliete uno scanner"
-#: ../../standalone/scannerdrake_.c:79
+#: ../../standalone/scannerdrake_.c:93
#, c-format
msgid "This %s scanner is unsupported"
msgstr "Questo scanner %s non è supportato"
-#: ../../standalone/scannerdrake_.c:93
+#: ../../standalone/scannerdrake_.c:107
#, c-format
msgid ""
"Scannerdrake was not able to detect your %s scanner.\n"
"Please select the device where your scanner is plugged"
msgstr ""
-#: ../../standalone/scannerdrake_.c:95
-#, fuzzy
+#: ../../standalone/scannerdrake_.c:109
msgid "choose device"
-msgstr "Dispositivo di boot"
+msgstr "seleziona il dispositivo"
-#: ../../standalone/scannerdrake_.c:101
+#: ../../standalone/scannerdrake_.c:115
#, c-format
msgid ""
"This %s scanner must be configured by printerdrake.\n"
@@ -12636,61 +13325,34 @@ msgstr ""
"Potete lanciare printerdrake dal Centro di controllo Mandrake, sezione "
"Hardware."
-#: ../../standalone/scannerdrake_.c:106
+#: ../../standalone/scannerdrake_.c:120
#, c-format
msgid ""
"Your %s scanner has been configured.\n"
"You may now scan documents using ``XSane'' from Multimedia/Graphics in the "
"applications menu."
msgstr ""
+"Lo scanner %s è stato configurato.\n"
+"Adesso potete utilizzarlo usando \"XSane\" (sezione Multimedia/Graphics del "
+"menu di sistema)."
-#: ../../standalone/service_harddrake_.c:57
+#: ../../standalone/service_harddrake_.c:39
#, c-format
msgid "Some devices in the \"%s\" hardware class were removed:\n"
msgstr ""
+"Alcuni dispositivi della categoria hardware \"%s\" sono stati rimossi:\n"
-#: ../../standalone/service_harddrake_.c:61
+#: ../../standalone/service_harddrake_.c:43
#, c-format
msgid ""
"\n"
"Some devices in the %s class were added:\n"
msgstr ""
-#: ../../standalone/tinyfirewall_.c:30
-msgid "Firewalling Configuration"
-msgstr "Configurazione del firewall!"
-
-#: ../../standalone/tinyfirewall_.c:43
-msgid "Firewalling configuration"
-msgstr "Configurazione del firewall!"
-
-#: ../../standalone/tinyfirewall_.c:78
-msgid ""
-"Firewalling\n"
-"\n"
-"You already have set up a firewall.\n"
-"Click on Configure to change or remove the firewall"
-msgstr ""
-"Firewall\n"
-"\n"
-"Hai già configurato un firewall.\n"
-"Clicca su Configura per modificare o rimuovere il firewall"
-
-#: ../../standalone/tinyfirewall_.c:82
-msgid ""
-"Firewalling\n"
-"\n"
-"Click on Configure to set up a standard firewall"
-msgstr ""
-"Firewall\n"
-"\n"
-"Clicca su Configura per configurare un firewall standard"
-
#: ../../steps.pm_.c:14
msgid "Choose your language"
msgstr "Scegli la lingua"
-# there is no room to put "Scegli classe d'installazione"
#: ../../steps.pm_.c:15
msgid "Select installation class"
msgstr "Classe d'installazione"
@@ -12759,227 +13421,7 @@ msgstr "Installa aggiornamenti di sistema"
msgid "Exit install"
msgstr "Termina installazione"
-#: ../../tinyfirewall.pm_.c:9
-msgid ""
-"tinyfirewall configurator\n"
-"\n"
-"This configures a personal firewall for this Mandrake Linux machine.\n"
-"For a powerful dedicated firewall solution, please look to the\n"
-"specialized MandrakeSecurity Firewall distribution."
-msgstr ""
-"Configuratore di firewall minimo\n"
-"\n"
-"Configurazione di un firewall personale per questo sistema Mandrake Linux.\n"
-"Per una soluzione firewall potente e dedicata, per favore rivolgiti\n"
-"alla distribuzione specializzata MandrakeSecurity Firewall."
-
-#: ../../tinyfirewall.pm_.c:14
-msgid ""
-"We'll now ask you questions about which services you'd like to allow\n"
-"the Internet to connect to. Please think carefully about these\n"
-"questions, as your computer's security is important.\n"
-"\n"
-"Please, if you're not currently using one of these services, firewall\n"
-"it off. You can change this configuration anytime you like by\n"
-"re-running this application!"
-msgstr ""
-"Adesso ti faremo domande riguardo i servizi che vuoi rendere disponibili\n"
-"durante la connessione a Internet. Rifletti bene prima di rispondere,\n"
-"perché la sicurezza del tuo computer è molto importante.\n"
-"\n"
-"Se attualmente non sfrutti qualcuno di questi servizi, ti invitiamo a\n"
-"disabilitarlo. Potrai cambiare queste impostazioni quando vorrai\n"
-"usando di nuovo questa applicazione!"
-
-#: ../../tinyfirewall.pm_.c:21
-msgid ""
-"Are you running a web server on this machine that you need the whole\n"
-"Internet to see? If you are running a webserver that only needs to be\n"
-"accessed by this machine, you can safely answer NO here.\n"
-"\n"
-msgstr ""
-"Su questa macchina è in esecuzione un server web che deve essere visibile\n"
-"da Internet? Se si accede a tale server web soltanto da questa macchina\n"
-"puoi rispondere NO tranquillamente.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:26
-msgid ""
-"Are you running a name server on this machine? If you didn't set one\n"
-"up to give away IP and zone information to the whole Internet, please\n"
-"answer no.\n"
-"\n"
-msgstr ""
-"Su questa macchina è in esecuzione un server dei nomi? Se non ne hai\n"
-"configurato uno per trasmettere informazioni su IP e domini all'intera\n"
-"Internet, per favore rispondi NO.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:31
-msgid ""
-"Do you want to allow incoming Secure Shell (ssh) connections? This\n"
-"is a telnet-replacement that you might use to login. If you're using\n"
-"telnet now, you should definitely switch to ssh. telnet is not\n"
-"encrypted -- so some attackers can steal your password if you use\n"
-"it. ssh is encrypted and doesn't allow for this eavesdropping."
-msgstr ""
-"Vuoi accettare delle connessioni Secure Shell (ssh) in ingresso? ssh\n"
-"può essere usato al posto di telnet per effettuare il login. Se adesso\n"
-"stai usando telnet, ti consigliamo di passare a ssh: telnet non effettua\n"
-"la cifratura dei dati, pertanto qualche pirata potrebbe intercettare\n"
-"la tua password. Invece ssh effettua la cifratura e non permette che\n"
-"qualcuno origli alle tue spalle."
-
-#: ../../tinyfirewall.pm_.c:36
-msgid ""
-"Do you want to allow incoming telnet connections?\n"
-"This is horribly unsafe, as we explained in the previous screen. We\n"
-"strongly recommend answering No here and using ssh in place of\n"
-"telnet.\n"
-msgstr ""
-"Vuoi accettare delle connessioni telnet in ingresso?\n"
-"Come vi abbiamo spiegato prima, è un metodo terribilmente insicuro.\n"
-"Ti consigliamo caldamente di rispondere NO in questo caso, e di\n"
-"usare ssh invece di telnet.\n"
-
-#: ../../tinyfirewall.pm_.c:41
-msgid ""
-"Are you running an FTP server here that you need accessible to the\n"
-"Internet? If you are, we strongly recommend that you only use it for\n"
-"Anonymous transfers. Any passwords sent by FTP can be stolen by some\n"
-"attackers, since FTP also uses no encryption for transferring passwords.\n"
-msgstr ""
-"Su questa macchina è in esecuzione un server FTP che deve essere reso\n"
-"accessibile via Internet? In tal caso, ti consigliamo vivamente di\n"
-"usarlo soltanto per collegamenti di tipo Anonimo. Qualsiasi password\n"
-"inviata con FTP può essere intercettata da qualche cracker, dato che\n"
-"anche FTP non fa uso di cifratura nel trasmettere le password.\n"
-
-#: ../../tinyfirewall.pm_.c:46
-msgid ""
-"Are you running a mail server here? If you're sending you \n"
-"messages through pine, mutt or any other text-based mail client,\n"
-"you probably are. Otherwise, you should firewall this off.\n"
-"\n"
-msgstr ""
-"Su questa macchina è in esecuzione un server di posta elettronica? Se\n"
-"inviate messaggi per mezzo di pine, mutt o altri programmi di posta\n"
-"basati su interfaccia a caratteri, allora probabilmente sì. Altrimenti\n"
-"dovreste nasconderlo dietro il firewall.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:51
-msgid ""
-"Are you running a POP or IMAP server here? This would\n"
-"be used to host non-web-based mail accounts for people via \n"
-"this machine.\n"
-"\n"
-msgstr ""
-"Su questa macchina è in esecuzione un server POP o IMAP? Questi\n"
-"vengono usati per le necessità di utenti che hanno account di posta\n"
-"(non basata su interfaccia web) su questa macchina.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:56
-msgid ""
-"You appear to be running a 2.2 kernel. If your network IP\n"
-"is automatically set by a computer in your home or office \n"
-"(dynamically assigned), we need to allow for this. Is\n"
-"this the case?\n"
-msgstr ""
-"Apparentemente usi un kernel della serie 2.2. Se il tuo IP di\n"
-"rete è stabilito automaticamente da un computer connesso con\n"
-"questo (assegnazione dinamica), dobbiamo specificare questa\n"
-"impostazione. Il tuo indirizzo IP è assegnato dinamicamente?\n"
-
-#: ../../tinyfirewall.pm_.c:61
-msgid ""
-"Is your computer getting time syncronized to another computer?\n"
-"Mostly, this is used by medium-large Unix/Linux organizations\n"
-"to synchronize time for logging and such. If you're not part\n"
-"of a larger office and haven't heard of this, you probably \n"
-"aren't."
-msgstr ""
-"L'orologio di questo computer viene sincronizzato sulla base di\n"
-"un altro? Per lo più questo si verifica in organizzazioni che fanno\n"
-"uso di Unix/Linux di dimensioni medio-grandi, allo scopo di avere\n"
-"dei log di sistema sincronizzati e simili. Se non fai parte di una\n"
-"rete più grande e non hai mai sentito parlare di qualcosa del genere,\n"
-"probabilmente puoi rispondere NO."
-
-#: ../../tinyfirewall.pm_.c:66
-msgid ""
-"Configuration complete. May we write these changes to disk?\n"
-"\n"
-"\n"
-"\n"
-msgstr ""
-"Configurazione completa. Possiamo scrivere le modifiche su disco?\n"
-"\n"
-"\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:82
-#, c-format
-msgid "Can't open %s: %s\n"
-msgstr "Non riesco ad aprire %s: %s\n"
-
-#: ../../tinyfirewall.pm_.c:84
-#, c-format
-msgid "Can't open %s for writing: %s\n"
-msgstr "Non riesco ad aprire %s in scrittura: %s\n"
-
-#: ../../tinyfirewall.pm_.c:178
-msgid "No I don't need DHCP"
-msgstr "No, il DHCP non mi serve"
-
-#: ../../tinyfirewall.pm_.c:178
-msgid "Yes I need DHCP"
-msgstr "Sì, ho bisogno del DHCP"
-
-#: ../../tinyfirewall.pm_.c:179
-msgid "No I don't need NTP"
-msgstr "No, il NTP non mi serve"
-
-#: ../../tinyfirewall.pm_.c:179
-msgid "Yes I need NTP"
-msgstr "Sì, ho bisogno del NTP"
-
-#: ../../tinyfirewall.pm_.c:180 ../../tinyfirewall.pm_.c:184
-msgid "Don't Save"
-msgstr "Non salvare"
-
-#: ../../tinyfirewall.pm_.c:180 ../../tinyfirewall.pm_.c:184
-#: ../../tinyfirewall.pm_.c:204
-msgid "Save & Quit"
-msgstr "Salva ed Esci"
-
-#: ../../tinyfirewall.pm_.c:195 ../../tinyfirewall.pm_.c:199
-msgid "Firewall Configuration Wizard"
-msgstr "Assistente di configurazione del firewall"
-
-#: ../../tinyfirewall.pm_.c:197
-msgid "No (firewall this off from the internet)"
-msgstr "No (usa un firewall per schermarlo da Internet)"
-
-#: ../../tinyfirewall.pm_.c:198
-msgid "Yes (allow this through the firewall)"
-msgstr "Sì (lascia che passi attraverso il firewall)"
-
-#: ../../tinyfirewall.pm_.c:230
-msgid "Please Wait... Verifying installed packages"
-msgstr "Per favore attendere... Sto verificando i pacchetti installati"
-
-#: ../../tinyfirewall.pm_.c:236
-#, c-format
-msgid ""
-"Failure installing the needed packages : %s and Bastille.\n"
-" Try to install them manually."
-msgstr ""
-"Non ho potuto installare i pacchetti richiesti: %s e Bastille.\n"
-"Provate a installarli manualmente."
-
-#: ../../ugtk.pm_.c:619
+#: ../../ugtk.pm_.c:594
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
@@ -13112,6 +13554,10 @@ msgid "Graphical Environment"
msgstr "Ambiente grafico"
#: ../../share/compssUsers:999
+msgid "Development"
+msgstr "Sviluppo"
+
+#: ../../share/compssUsers:999
msgid "Apache, Pro-ftpd"
msgstr "Apache e Pro-ftpd"
@@ -13222,374 +13668,3 @@ msgstr "Multimedia - Masterizzazione CD"
#: ../../share/compssUsers:999
msgid "Scientific Workstation"
msgstr "Workstation scientifica"
-
-#~ msgid "$mode: $warning"
-#~ msgstr "$mode: $warning"
-
-#, fuzzy
-#~ msgid ""
-#~ "This level is to be used with care. It makes your system more easy to "
-#~ "use,\n"
-#~ " but very sensitive: it must not be used for a machine "
-#~ "connected to others\n"
-#~ " or to the Internet. There is no password access."
-#~ msgstr ""
-#~ "Questo livello va usato con cura. Rende il sistema più facile da usare,\n"
-#~ "ma molto delicato: non deve essere usato per una macchina connessa ad "
-#~ "altre\n"
-#~ "o a Internet. Non c'è nessun accesso con password."
-
-#, fuzzy
-#~ msgid ""
-#~ "With this security level, the use of this system as a server becomes "
-#~ "possible.\n"
-#~ " The security is now high enough to use the system as a "
-#~ "server which can accept\n"
-#~ " connections from many clients. Note: if your machine is "
-#~ "only a client on the Internet, you should choose a lower level."
-#~ msgstr ""
-#~ "Con questo livello di sicurezza, l'uso di questo sistema come server "
-#~ "diventa\n"
-#~ "possibile. La sicurezza è ora abbastanza alta per consentire l'utilizzo\n"
-#~ "del sistema come server che accetta connessioni da molti clienti. Nota: "
-#~ "se la vostra\n"
-#~ "macchina è un semplice cliente su Internet, fareste meglio a scegliere un "
-#~ "livello\n"
-#~ "più basso."
-
-#, fuzzy
-#~ msgid "Basic Options"
-#~ msgstr "Opzioni"
-
-#, fuzzy
-#~ msgid "Security Checks"
-#~ msgstr "Sicurezza"
-
-#~ msgid "Data list to include on CDROM."
-#~ msgstr "Lista di dati da includere su CDROM."
-
-#~ msgid "Please choose your CD space"
-#~ msgstr "Per favore, scegliete lo spazio su CD"
-
-#~ msgid "Please enter the cd writer speed"
-#~ msgstr "Per favore, insersci la velocità del masterizzatore"
-
-#~ msgid "Please enter your CD Writer device name (ex: 0,1,0)"
-#~ msgstr ""
-#~ "Per favore inserite il numero che identifica il vostro masterizzatore "
-#~ "(es.: 0,1,0)"
-
-#~ msgid "Please check if you want to include install boot on your CD."
-#~ msgstr "Per favore scegliete i pacchetti che volete installare."
-
-#~ msgid "Url should begin with 'ftp:'"
-#~ msgstr "L'URL dovrebbe cominciare con 'ftp:'"
-
-#~ msgid ""
-#~ "Please check if you want to include\n"
-#~ " install boot on your CD."
-#~ msgstr ""
-#~ "Per favore, controllate se volete includere\n"
-#~ "il boot di install sul CD"
-
-#, fuzzy
-#~ msgid "Windows PDC"
-#~ msgstr "Windows (FAT32)"
-
-#, fuzzy
-#~ msgid "PDC Server Name"
-#~ msgstr "Server NTP"
-
-#~ msgid ""
-#~ "\n"
-#~ "Welcome to the Printer Setup Wizard\n"
-#~ "\n"
-#~ "This wizard will help you to install your printer(s) connected to this "
-#~ "computer.\n"
-#~ "\n"
-#~ "Please plug in your printer(s) on this computer and turn it/them on. "
-#~ "Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
-#~ "want to set up your printer(s) now.\n"
-#~ "\n"
-#~ "Note that some computers can crash during the printer auto-detection, "
-#~ "turn off \"Auto-detect printers\" to do a printer installation without "
-#~ "auto-detection. Use the \"Expert Mode\" of printerdrake when you want to "
-#~ "set up printing on a remote printer if printerdrake does not list it "
-#~ "automatically."
-#~ msgstr ""
-#~ "\n"
-#~ "Benvenuti nell'assistente di configurazione delle stampanti\n"
-#~ "\n"
-#~ "Questo assistente vi aiuterà a configurare le stampanti collegate a "
-#~ "questo computer.\n"
-#~ "\n"
-#~ "Per favore collegate la vostra stampante al computer e accendetela. "
-#~ "Cliccate su \"Succ\" quando siete pronti, e su \"Annulla\" se non "
-#~ "desiderate configurare le vostre stampanti adesso.\n"
-#~ "\n"
-#~ "Si noti che alcuni computer potrebbero bloccarsi durante il "
-#~ "riconoscimento automatico delle stampanti, in tal caso disabilitate "
-#~ "questa caratteristica per poter effettuare l'installazione. Usate il modo "
-#~ "Esperto di Printerdrake quando volete configurare la stampa su una "
-#~ "stampante remota se Printerdrake non la include nell'elenco "
-#~ "automaticamente."
-
-#~ msgid "Auto-Detection of Printers"
-#~ msgstr "Riconoscimento automatico delle stampanti"
-
-#~ msgid ""
-#~ "Printerdrake is able to auto-detect your locally connected parallel and "
-#~ "USB printers for you, but note that on some systems the auto-detection "
-#~ "CAN FREEZE YOUR SYSTEM AND THIS CAN LEAD TO CORRUPTED FILE SYSTEMS! So do "
-#~ "it ON YOUR OWN RISK!\n"
-#~ "\n"
-#~ "Do you really want to get your printers auto-detected?"
-#~ msgstr ""
-#~ "Printerdrake è in grado di riconoscere automaticamente una stampante "
-#~ "collegata localmente su una porta parallela o USB, ma si noti che su "
-#~ "alcuni sistemi il riconoscimento automatico PUÒ BLOCCARE IL SISTEMA E "
-#~ "QUESTO PUÒ CAUSARE LA CORRUZIONE DEL FILESYSTEM! Pertanto fatelo A VOSTRO "
-#~ "RISCHIO E PERICOLO!\n"
-#~ "\n"
-#~ "Volete davvero che le stampanti vengano riconosciute automaticamente?"
-
-#~ msgid "Set up printer manually"
-#~ msgstr "Configurazione manuale della stampante"
-
-#~ msgid ""
-#~ "Network printers can only be installed after the installation. Choose "
-#~ "\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
-#~ msgstr ""
-#~ "Le stampanti di rete possono essere installate soltanto dopo "
-#~ "l'installazione. Scegliete \"Hardware\" e poi \"Stampante\" nel Centro di "
-#~ "controllo Mandrake."
-
-#~ msgid ""
-#~ "To install network printers, click \"Cancel\", switch to the \"Expert Mode"
-#~ "\", and click \"Add a new printer\" again."
-#~ msgstr ""
-#~ "Per installare stampanti di rete, cliccate su \"Annulla\", passate al "
-#~ "\"Modo esperto\" e cliccate su \"Aggiungi nuova stampante\"."
-
-#, fuzzy
-#~ msgid ""
-#~ "Is your printer a multi-function device from HP (OfficeJet, PSC, LaserJet "
-#~ "1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart or an HP "
-#~ "LaserJet 2200?"
-#~ msgstr ""
-#~ "La vostra stampante è un dispositivo multifunzione prodotto da HP "
-#~ "(OfficeJet, PSC, PhotoSmart, LaserJet 1100/1200/1220/3200/3300 con scanner)?"
-
-#~ msgid "Installing HPOJ package..."
-#~ msgstr "Installazione del pacchetto HPOJ..."
-
-#~ msgid "Checking device and configuring HPOJ..."
-#~ msgstr "Controllo dispositivo e configuro HPOJ ..."
-
-#, fuzzy
-#~ msgid "Installing SANE packages..."
-#~ msgstr "Installazione del pacchetto SANE"
-
-#, fuzzy
-#~ msgid "Installing mtools packages..."
-#~ msgstr "Installazione dei pacchetti ..."
-
-#~ msgid "Scanning on your HP multi-function device"
-#~ msgstr "Effettuo una scansione con il vostro dispositivo multifunzione HP"
-
-#, fuzzy
-#~ msgid "Photo memory card access on your HP multi-function device"
-#~ msgstr "Effettuo una scansione con il vostro dispositivo multifunzione HP"
-
-#~ msgid "Making printer port available for CUPS..."
-#~ msgstr "Rendo la porta della stampante disponibile per CUPS ..."
-
-#~ msgid "Control Center"
-#~ msgstr "Centro di Controllo"
-
-#~ msgid "Choose the tool you want to use"
-#~ msgstr "Scegliete l'utilità che volete usare"
-
-#~ msgid "Configure the way the system will alert you"
-#~ msgstr "Configurazione del modo in cui il sistema vi avvertirà"
-
-#~ msgid "no serial_usb found\n"
-#~ msgstr "nessun serial_usb trovato\n"
-
-#~ msgid "fsck failed with exit code %d or signal %d"
-#~ msgstr "fsck è fallito con codice di uscita %d o segnale %d"
-
-#~ msgid "Graphics card identification: %s\n"
-#~ msgstr "Identificazione scheda grafica: %s\n"
-
-#~ msgid "Choose options for server"
-#~ msgstr "Scegli le opzioni per il server"
-
-#~ msgid "Monitor not configured"
-#~ msgstr "Monitor non configurato"
-
-#~ msgid "Graphics card not configured yet"
-#~ msgstr "Scheda grafica non ancora configurata"
-
-#~ msgid "Resolutions not chosen yet"
-#~ msgstr "Risoluzioni non ancora selezionate"
-
-#~ msgid ""
-#~ "\n"
-#~ "try to change some parameters"
-#~ msgstr ""
-#~ "\n"
-#~ "prova a modificare alcuni parametri"
-
-#~ msgid "An error occurred:"
-#~ msgstr "Si è verificato un errore:"
-
-#~ msgid "Leaving in %d seconds"
-#~ msgstr "Uscita in %d secondi"
-
-#~ msgid "Is this the correct setting?"
-#~ msgstr "È il settaggio corretto?"
-
-#~ msgid "An error occurred, try to change some parameters"
-#~ msgstr "Si è verificato un errore, prova a modificare alcuni parametri"
-
-#~ msgid "XFree86 server: %s"
-#~ msgstr "Server XFree86: %s"
-
-#~ msgid "Show all"
-#~ msgstr "Mostra tutto"
-
-#~ msgid "Preparing X-Window configuration"
-#~ msgstr "Sto preparando la configurazione di X-Window"
-
-#~ msgid "What do you want to do?"
-#~ msgstr "Cosa vuoi fare?"
-
-#~ msgid "Change Monitor"
-#~ msgstr "Cambia monitor"
-
-#~ msgid "Change Graphics card"
-#~ msgstr "Cambia scheda grafica"
-
-#~ msgid "Change Server options"
-#~ msgstr "Cambia opzioni server"
-
-#~ msgid "Change Resolution"
-#~ msgstr "Cambia risoluzione"
-
-#~ msgid "Show information"
-#~ msgstr "Mostra informazioni"
-
-#~ msgid "Test again"
-#~ msgstr "Nuovo test"
-
-#~ msgid "Use Hard Drive with daemon"
-#~ msgstr "Usa disco rigido con il demone"
-
-#~ msgid "Use FTP with daemon"
-#~ msgstr "Usa FTP con il demone"
-
-#~ msgid "Package List to Install"
-#~ msgstr "Lista dei pacchetti da installare"
-
-#~ msgid "proftpd"
-#~ msgstr "Proftpd"
-
-#~ msgid "sshd"
-#~ msgstr "sshd"
-
-#~ msgid "webmin"
-#~ msgstr "webmin"
-
-#~ msgid "xinetd"
-#~ msgstr "xinetd"
-
-#~ msgid "Setting security level"
-#~ msgstr "Sto settando il livello di sicurezza"
-
-#~ msgid "Select a graphics card"
-#~ msgstr "Scegli una scheda grafica"
-
-#~ msgid "Choose a X driver"
-#~ msgstr "Scegli un driver X"
-
-#~ msgid "X driver"
-#~ msgstr "Driver X"
-
-#~ msgid "Warning: testing this graphics card may freeze your computer"
-#~ msgstr "Attenzione: il test di questa scheda video può bloccare il computer"
-
-#~ msgid "Standard VGA, 640x480 at 60 Hz"
-#~ msgstr "VGA standard, 640x480 a 60 Hz"
-
-#~ msgid "Super VGA, 800x600 at 56 Hz"
-#~ msgstr "Super VGA, 800x600 a 56 Hz"
-
-#~ msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
-#~ msgstr "Compatibile 8514, 1024x768 a 87 Hz interlacciato (no 800x600)"
-
-#~ msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
-#~ msgstr "Super VGA, 1024x768 a 87 Hz interlacciato, 800x600 a 56 Hz"
-
-#~ msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
-#~ msgstr "Super VGA estesa, 800x600 a 60 Hz, 640x480 a 72 Hz"
-
-#~ msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
-#~ msgstr "SVGA non-interlacciato, 1024x768 a 60 Hz, 800x600 a 72 Hz"
-
-#~ msgid "High Frequency SVGA, 1024x768 at 70 Hz"
-#~ msgstr "SVGA alta frequenza, 1024x768 a 70 Hz"
-
-#~ msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
-#~ msgstr "Multi-frequenza che raggiunge 1280x1024 a 60 Hz"
-
-#~ msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
-#~ msgstr "Multi-frequenza che raggiunge 1280x1024 a 74 Hz"
-
-#~ msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
-#~ msgstr "Multi-frequenza che raggiunge 1280x1024 a 76 Hz"
-
-#~ msgid "Monitor that can do 1600x1200 at 70 Hz"
-#~ msgstr "Monitor che raggiunge 1600x1200 a 70 Hz"
-
-#~ msgid "Monitor that can do 1600x1200 at 76 Hz"
-#~ msgstr "Monitor che raggiunge 1600x1200 a 76 Hz"
-
-#~ msgid ""
-#~ "The total size for the groups you have selected is approximately %d MB.\n"
-#~ msgstr ""
-#~ "La dimensione totale dei gruppi da te scelti è approssimativamente %d "
-#~ "Mb.\n"
-
-#~ msgid ""
-#~ "If you wish to install less than this size,\n"
-#~ "select the percentage of packages that you want to install.\n"
-#~ "\n"
-#~ "A low percentage will install only the most important packages;\n"
-#~ "a percentage of 100%% will install all selected packages."
-#~ msgstr ""
-#~ "Se desideri installare occupando una quantità di spazio minore,\n"
-#~ "scegli la percentuale dei pacchetti che vuoi installare.\n"
-#~ "\n"
-#~ "Una bassa percentuale installerà solo i pacchetti più importanti;\n"
-#~ "una percentuale del 100%% installerà tutti i pacchetti scelti."
-
-#~ msgid ""
-#~ "You have space on your disk for only %d%% of these packages.\n"
-#~ "\n"
-#~ "If you wish to install less than this,\n"
-#~ "select the percentage of packages that you want to install.\n"
-#~ "A low percentage will install only the most important packages;\n"
-#~ "a percentage of %d%% will install as many packages as possible."
-#~ msgstr ""
-#~ "Hai spazio sul tuo disco rigido solo per %d%% di questi pacchetti.\n"
-#~ "\n"
-#~ "Scegli una percentuale dei pacchetti che vuoi installare.\n"
-#~ "Una bassa percentuale installerà solo i pacchetti più importanti;\n"
-#~ "una percentuale del %d%% installerà tutti i pacchetti possibili."
-
-#~ msgid "You will be able to choose them more specifically in the next step."
-#~ msgstr "Potrai scegliere più specificatamente nella prossima fase."
-
-#~ msgid "Percentage of packages to install"
-#~ msgstr "Percentuale dei pacchetti da installare"
diff --git a/perl-install/share/po/ja.po b/perl-install/share/po/ja.po
index b1c8cba9b..01470b3b1 100644
--- a/perl-install/share/po/ja.po
+++ b/perl-install/share/po/ja.po
@@ -4,8 +4,8 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: drakfloppy 0.43\n"
-"POT-Creation-Date: 2002-08-21 15:44+0200\n"
+"Project-Id-Version: DrakX\n"
+"POT-Creation-Date: 2002-09-02 20:14+0200\n"
"PO-Revision-Date: 2000-07-05 15:44+0200\n"
"Last-Translator: YAMAGATA Hiroo <hiyori13@alum.mit.edu>\n"
"Language-Team: Japanese <ja@li.org>\n"
@@ -49,19 +49,19 @@ msgstr "32 MB"
msgid "64 MB or more"
msgstr "64 MB °ÊŸć"
-#: ../../Xconfig/card.pm_.c:201
+#: ../../Xconfig/card.pm_.c:203
msgid "Choose a X server"
msgstr "X „”ĄŒ„Đ€òÁȘ€ó€ÇČŒ€”€€"
-#: ../../Xconfig/card.pm_.c:201
+#: ../../Xconfig/card.pm_.c:203
msgid "X server"
msgstr "X „”ĄŒ„Đ"
-#: ../../Xconfig/card.pm_.c:228
+#: ../../Xconfig/card.pm_.c:230
msgid "Multi-head configuration"
msgstr "„Ț„ë„Á„Ű„Ă„ÉÀßÄê"
-#: ../../Xconfig/card.pm_.c:229
+#: ../../Xconfig/card.pm_.c:231
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
@@ -69,27 +69,27 @@ msgstr ""
"€ą€Ê€ż€Î„·„č„Æ„à€Ï„Ț„ë„Á„Ű„Ă„É€ÎÀßÄê€Ź€Ç€­€Ț€čĄŁ\n"
"€É€Š€·€Ț€č€«Ą©"
-#: ../../Xconfig/card.pm_.c:284
+#: ../../Xconfig/card.pm_.c:286
msgid "Select the memory size of your graphics card"
msgstr "„°„é„Ő„Ł„Ă„Ż„«ĄŒ„ɀ΄á„â„ê„”„€„ș€òÁȘÂò€·€ÆČŒ€”€€"
-#: ../../Xconfig/card.pm_.c:345
+#: ../../Xconfig/card.pm_.c:347
msgid "XFree configuration"
msgstr "XFree€ÎÀßÄê"
-#: ../../Xconfig/card.pm_.c:347
+#: ../../Xconfig/card.pm_.c:349
msgid "Which configuration of XFree do you want to have?"
msgstr "€É€ÎčœÀź€ÎXFree €Ë€·€Ț€č€«"
-#: ../../Xconfig/card.pm_.c:379
+#: ../../Xconfig/card.pm_.c:381
msgid "Configure all heads independently"
msgstr "„Ű„Ă„É€ò€œ€ì€Ÿ€ìÆÈΩ€ËÀßÄê"
-#: ../../Xconfig/card.pm_.c:380
+#: ../../Xconfig/card.pm_.c:382
msgid "Use Xinerama extension"
msgstr "Xinerama łÈÄ„€ò»È€Š"
-#: ../../Xconfig/card.pm_.c:384
+#: ../../Xconfig/card.pm_.c:386
#, fuzzy, c-format
msgid "Configure only card \"%s\"%s"
msgstr "°ÊČŒ€Î„«ĄŒ„É€À€±€òÀßÄêĄ§ ĄÈ%sĄÉ(%s)"
@@ -100,13 +100,13 @@ msgstr "°ÊČŒ€Î„«ĄŒ„É€À€±€òÀßÄêĄ§ ĄÈ%sĄÉ(%s)"
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:435
+#: ../../Xconfig/card.pm_.c:410 ../../Xconfig/card.pm_.c:436
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s with 3D hardware acceleration"
msgstr "„ÏĄŒ„É„Š„§„ą3D„ą„Ż„»„é„ìĄŒ„·„ç„ó€Ä€­€ÎXFree %s"
-#: ../../Xconfig/card.pm_.c:412
+#: ../../Xconfig/card.pm_.c:413
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -115,17 +115,17 @@ msgstr ""
"€ł€Î„«ĄŒ„É€ÏXFree %s €Ç€Î€ß3D„ą„Ż„»„é„ìĄŒ„·„ç„óČÄÇœ€Ç€čĄŁ\n"
"XFree %s €Ç€Î€ł€Î„«ĄŒ„ɀ΄”„ĘĄŒ„È€ÏĄą2D €Î€Û€Š€Ź€č€°€ì€Æ€€€Ț€čĄŁ"
-#: ../../Xconfig/card.pm_.c:414 ../../Xconfig/card.pm_.c:437
+#: ../../Xconfig/card.pm_.c:415 ../../Xconfig/card.pm_.c:438
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr "€ł€Î„«ĄŒ„É€ÏXFree %s €Ç3D„ą„Ż„»„é„ìĄŒ„·„ç„óČÄÇœ€Ç€čĄŁ"
-#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:443
+#: ../../Xconfig/card.pm_.c:423 ../../Xconfig/card.pm_.c:444
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "ŒÂžłĂÊłŹ€Î„ÏĄŒ„É„Š„§„ą3D„ą„Ż„»„é„ìĄŒ„·„ç„ó€Ä€­€ÎXFree %s"
-#: ../../Xconfig/card.pm_.c:425
+#: ../../Xconfig/card.pm_.c:426
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -136,7 +136,7 @@ msgstr ""
"€ż€À€·€ą€Ż€Ț€ÇĄąŒÂžłĆȘ€Ê„”„ĘĄŒ„È€ÇĄą„Ț„·„ó„Ő„êĄŒ„ș€ÎČÄÇœÀ­€Ź€ą€ê€Ț€čĄŁ\n"
"XFree %s €Ç€Î€ł€Î„«ĄŒ„ɀ΄”„ĘĄŒ„È€ÏĄą2D €Î€Û€Š€Ź€č€°€ì€Æ€€€Ț€čĄŁ"
-#: ../../Xconfig/card.pm_.c:428 ../../Xconfig/card.pm_.c:445
+#: ../../Xconfig/card.pm_.c:429 ../../Xconfig/card.pm_.c:446
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
@@ -145,53 +145,54 @@ msgstr ""
"€ł€Î„«ĄŒ„É€ÏXFree %s €Ç3D„ą„Ż„»„é„ìĄŒ„·„ç„óČÄÇœ€Ç€čĄŁ\n"
"€ż€À€·€ą€Ż€Ț€ÇĄąŒÂžłĆȘ€Ê„”„ĘĄŒ„È€ÇĄą„Ț„·„ó„Ő„êĄŒ„ș€ÎČÄÇœÀ­€Ź€ą€ê€Ț€čĄŁ"
-#: ../../Xconfig/card.pm_.c:451
+#: ../../Xconfig/card.pm_.c:452
msgid "Xpmac (installation display driver)"
msgstr "Xpmac („€„ó„č„ÈĄŒ„ë„Ç„Ł„č„Ś„ì„€„É„é„€„Đ)"
-#: ../../Xconfig/main.pm_.c:78 ../../Xconfig/main.pm_.c:79
-#: ../../Xconfig/monitor.pm_.c:94 ../../any.pm_.c:974
+#: ../../Xconfig/main.pm_.c:76 ../../Xconfig/main.pm_.c:77
+#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:977
msgid "Custom"
msgstr "„«„č„ż„à"
-#: ../../Xconfig/main.pm_.c:104
+#: ../../Xconfig/main.pm_.c:102
#, fuzzy
msgid "Graphic Card"
msgstr "„°„é„Ő„Ł„Ă„Ż„«ĄŒ„É"
-#: ../../Xconfig/main.pm_.c:107 ../../Xconfig/monitor.pm_.c:91
+#: ../../Xconfig/main.pm_.c:105 ../../Xconfig/monitor.pm_.c:93
msgid "Monitor"
msgstr "„â„Ë„ż"
-#: ../../Xconfig/main.pm_.c:110 ../../Xconfig/resolution_and_depth.pm_.c:209
+#: ../../Xconfig/main.pm_.c:108 ../../Xconfig/resolution_and_depth.pm_.c:209
msgid "Resolution"
msgstr "ČòÁüĆÙ"
-#: ../../Xconfig/main.pm_.c:114
+#: ../../Xconfig/main.pm_.c:113
msgid "Test"
msgstr ""
-#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:59
-#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/removable.pm_.c:25
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:63
+#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/removable.pm_.c:25
#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "„Ș„Ś„·„ç„ó"
#: ../../Xconfig/main.pm_.c:121 ../../Xconfig/resolution_and_depth.pm_.c:268
-#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:281
+#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:275
#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
-#: ../../interactive.pm_.c:351 ../../interactive/http.pm_.c:104
+#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:104
#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
-#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:156
-#: ../../my_gtk.pm_.c:284 ../../my_gtk.pm_.c:307
-#: ../../standalone/drakbackup_.c:3324 ../../standalone/drakbackup_.c:3419
-#: ../../standalone/drakbackup_.c:3438
+#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:159
+#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310
+#: ../../standalone/drakbackup_.c:3972 ../../standalone/drakbackup_.c:4067
+#: ../../standalone/drakbackup_.c:4086
msgid "Ok"
msgstr "OK"
#: ../../Xconfig/main.pm_.c:121 ../../diskdrake/dav.pm_.c:24
-#: ../../printerdrake.pm_.c:2933 ../../standalone/logdrake_.c:224
+#: ../../harddrake/ui.pm_.c:98 ../../printerdrake.pm_.c:3155
+#: ../../standalone/logdrake_.c:224
msgid "Quit"
msgstr "œȘλ"
@@ -208,28 +209,28 @@ msgstr ""
"\n"
"%s"
-#: ../../Xconfig/monitor.pm_.c:91
+#: ../../Xconfig/monitor.pm_.c:93
msgid "Choose a monitor"
msgstr "„â„Ë„ż€òÁȘ€ó€ÇČŒ€”€€"
-#: ../../Xconfig/monitor.pm_.c:95
+#: ../../Xconfig/monitor.pm_.c:97
msgid "Plug'n Play"
msgstr ""
-#: ../../Xconfig/monitor.pm_.c:96 ../../mouse.pm_.c:45
+#: ../../Xconfig/monitor.pm_.c:98 ../../mouse.pm_.c:46
msgid "Generic"
msgstr "ÈÆÍŃ"
-#: ../../Xconfig/monitor.pm_.c:97 ../../harddrake/ui.pm_.c:36
+#: ../../Xconfig/monitor.pm_.c:99 ../../harddrake/ui.pm_.c:37
#, fuzzy
msgid "Vendor"
msgstr "€â€È€ËÌá€č"
-#: ../../Xconfig/monitor.pm_.c:107
+#: ../../Xconfig/monitor.pm_.c:109
msgid "Plug'n Play probing failed. Please choose a precise monitor"
msgstr ""
-#: ../../Xconfig/monitor.pm_.c:112
+#: ../../Xconfig/monitor.pm_.c:114
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -250,11 +251,11 @@ msgstr ""
"„â„Ë„ż€Ź„À„áĄŒ„ž€òŒő€±€ë€«€âĂ΀ì€Ț€»€óĄŁ\n"
"ÊŹ€«€é€Ê€€Ÿìčç€Ï, Äă€á€ÎÀßÄê€Ë€·€ÆČŒ€”€€ĄŁ"
-#: ../../Xconfig/monitor.pm_.c:119
+#: ../../Xconfig/monitor.pm_.c:121
msgid "Horizontal refresh rate"
msgstr "żćÊż„ê„Ő„ì„Ă„·„ć„ìĄŒ„È"
-#: ../../Xconfig/monitor.pm_.c:120
+#: ../../Xconfig/monitor.pm_.c:122
msgid "Vertical refresh rate"
msgstr "żâÄŸ„ê„Ő„ì„Ă„·„ć„ìĄŒ„È"
@@ -291,36 +292,42 @@ msgstr "ČòÁüĆÙ€Èż§żŒĆÙ"
msgid "Graphics card: %s"
msgstr "„°„é„Ő„Ł„Ă„Ż„«ĄŒ„É: %s"
-#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1015
-#: ../../bootlook.pm_.c:334 ../../diskdrake/smbnfs_gtk.pm_.c:87
-#: ../../install_steps_gtk.pm_.c:412 ../../install_steps_gtk.pm_.c:470
-#: ../../install_steps_interactive.pm_.c:576 ../../interactive.pm_.c:142
-#: ../../interactive.pm_.c:351 ../../interactive/http.pm_.c:105
+#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1018
+#: ../../bootlook.pm_.c:338 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:406 ../../install_steps_gtk.pm_.c:464
+#: ../../install_steps_interactive.pm_.c:560 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:105
#: ../../interactive/newt.pm_.c:174 ../../interactive/stdio.pm_.c:39
-#: ../../interactive/stdio.pm_.c:143 ../../my_gtk.pm_.c:155
-#: ../../my_gtk.pm_.c:159 ../../my_gtk.pm_.c:284
-#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1990
-#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3278
-#: ../../standalone/drakbackup_.c:3311 ../../standalone/drakbackup_.c:3337
-#: ../../standalone/drakbackup_.c:3364 ../../standalone/drakbackup_.c:3391
-#: ../../standalone/drakbackup_.c:3451 ../../standalone/drakbackup_.c:3478
-#: ../../standalone/drakbackup_.c:3504 ../../standalone/drakconnect_.c:115
-#: ../../standalone/drakconnect_.c:147 ../../standalone/drakconnect_.c:289
-#: ../../standalone/drakconnect_.c:537 ../../standalone/drakconnect_.c:679
-#: ../../standalone/drakfloppy_.c:234 ../../standalone/drakfloppy_.c:383
-#: ../../standalone/drakfont_.c:970 ../../standalone/drakgw_.c:598
-#: ../../standalone/logdrake_.c:224 ../../standalone/logdrake_.c:528
-#: ../../standalone/tinyfirewall_.c:64
+#: ../../interactive/stdio.pm_.c:143 ../../my_gtk.pm_.c:158
+#: ../../my_gtk.pm_.c:162 ../../my_gtk.pm_.c:287
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:2124
+#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3926
+#: ../../standalone/drakbackup_.c:3959 ../../standalone/drakbackup_.c:3985
+#: ../../standalone/drakbackup_.c:4012 ../../standalone/drakbackup_.c:4039
+#: ../../standalone/drakbackup_.c:4099 ../../standalone/drakbackup_.c:4126
+#: ../../standalone/drakbackup_.c:4156 ../../standalone/drakbackup_.c:4182
+#: ../../standalone/drakconnect_.c:115 ../../standalone/drakconnect_.c:147
+#: ../../standalone/drakconnect_.c:289 ../../standalone/drakconnect_.c:537
+#: ../../standalone/drakconnect_.c:679 ../../standalone/drakfloppy_.c:234
+#: ../../standalone/drakfloppy_.c:383 ../../standalone/drakfont_.c:970
+#: ../../standalone/drakgw_.c:536 ../../standalone/logdrake_.c:224
+#: ../../standalone/logdrake_.c:526
msgid "Cancel"
msgstr "„­„ă„ó„»„ë"
-#: ../../Xconfig/test.pm_.c:26
+#: ../../Xconfig/test.pm_.c:30
+msgid "Test of the configuration"
+msgstr "ÀßÄê€ò»î€·€Ț€č"
+
+#: ../../Xconfig/test.pm_.c:31
msgid "Do you want to test the configuration?"
msgstr "€ł€ÎÀßÄê€Ç»î€·€Æ€ß€Ț€č€«Ą©"
-#: ../../Xconfig/test.pm_.c:26
-msgid "Test of the configuration"
-msgstr "ÀßÄê€ò»î€·€Ț€č"
+#: ../../Xconfig/test.pm_.c:31
+#, fuzzy
+msgid "Warning: testing this graphic card may freeze your computer"
+msgstr ""
+"·Ùč𥧀ł€Î„°„é„Ő„Ł„Ă„Ż„«ĄŒ„É€ò„Æ„č„È€č€ë€È„Ț„·„ó€Ź„Ő„êĄŒ„ș€č€ë€«€â€·€ì€Ț€»€ó"
#: ../../Xconfig/various.pm_.c:29
#, c-format
@@ -456,26 +463,22 @@ msgstr "DOS/Windows€«€é”ŻÆ° (loadlin »ÈÍŃ)"
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:158 ../../any.pm_.c:190
+#: ../../any.pm_.c:159 ../../any.pm_.c:190
msgid "Bootloader main options"
msgstr "„ÖĄŒ„È„íĄŒ„À€Î„á„€„ó„Ș„Ś„·„ç„ó"
-#: ../../any.pm_.c:159 ../../any.pm_.c:191
+#: ../../any.pm_.c:160 ../../any.pm_.c:191
msgid "Bootloader to use"
msgstr "»ÈÍŃ€č€ë„ÖĄŒ„È„íĄŒ„À"
-#: ../../any.pm_.c:161
+#: ../../any.pm_.c:162
msgid "Bootloader installation"
msgstr "„ÖĄŒ„È„íĄŒ„À€Î„€„ó„č„ÈĄŒ„ë"
-#: ../../any.pm_.c:163 ../../any.pm_.c:193
+#: ../../any.pm_.c:164 ../../any.pm_.c:193
msgid "Boot device"
msgstr "„ÖĄŒ„È„Ç„Đ„€„č"
-#: ../../any.pm_.c:164
-msgid "LBA (doesn't work on old BIOSes)"
-msgstr "LBA (žĆ€€ BIOS €Ç€ÏÆ°€«€Ê€€)"
-
#: ../../any.pm_.c:165
msgid "Compact"
msgstr "„ł„ó„Ń„Ż„È"
@@ -492,16 +495,17 @@ msgstr "„Ó„Ç„Ș„âĄŒ„É"
msgid "Delay before booting default image"
msgstr "„Ç„Ő„©„ë„È„€„áĄŒ„ž”ŻÆ°€ÎÂÔ€Á»țŽÖ"
-#: ../../any.pm_.c:170 ../../any.pm_.c:786
+#: ../../any.pm_.c:170 ../../any.pm_.c:788
#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1111 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:743 ../../printerdrake.pm_.c:858
-#: ../../standalone/drakconnect_.c:624 ../../standalone/drakconnect_.c:649
+#: ../../install_steps_interactive.pm_.c:1096 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:850 ../../printerdrake.pm_.c:965
+#: ../../standalone/drakbackup_.c:3528 ../../standalone/drakconnect_.c:624
+#: ../../standalone/drakconnect_.c:649
msgid "Password"
msgstr "„Ń„č„ïĄŒ„É"
-#: ../../any.pm_.c:171 ../../any.pm_.c:787
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../any.pm_.c:171 ../../any.pm_.c:789
+#: ../../install_steps_interactive.pm_.c:1097
msgid "Password (again)"
msgstr "„Ń„č„ïĄŒ„É (€â€Š°ìĆÙ)"
@@ -541,14 +545,14 @@ msgstr ""
"ĄÈ„ł„Ț„ó„É„é„€„ó„Ș„Ś„·„ç„ó€ÎÀ©žÂĄÉ„Ș„Ś„·„ç„ó€Ï„Ń„č„ïĄŒ„É€Ź€Ê€€€È\n"
"Ìò€Ë€ż€Á€Ț€»€óĄŁ"
-#: ../../any.pm_.c:184 ../../any.pm_.c:762
-#: ../../diskdrake/interactive.pm_.c:1180
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../any.pm_.c:184 ../../any.pm_.c:764
+#: ../../diskdrake/interactive.pm_.c:1191
+#: ../../install_steps_interactive.pm_.c:1091
msgid "Please try again"
msgstr "€â€Š°ìĆٻ€ÆČŒ€”€€"
-#: ../../any.pm_.c:184 ../../any.pm_.c:762
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../any.pm_.c:184 ../../any.pm_.c:764
+#: ../../install_steps_interactive.pm_.c:1091
msgid "The passwords do not match"
msgstr "„Ń„č„ïĄŒ„É€Ź°ìĂŚ€·€Ț€»€ó"
@@ -593,16 +597,16 @@ msgstr ""
"„š„ó„È„ê€Ï°ÊČŒ€Î€È€Ș€ê€Ç€čĄŁ\n"
"ÄÉČĂĄŠÊŃčč€Ç€­€Ț€čĄŁ"
-#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1483
-#: ../../standalone/drakbackup_.c:1596 ../../standalone/drakfont_.c:1011
+#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1558
+#: ../../standalone/drakbackup_.c:1671 ../../standalone/drakfont_.c:1011
#: ../../standalone/drakfont_.c:1054
msgid "Add"
msgstr "ÄÉČĂ"
-#: ../../any.pm_.c:257 ../../any.pm_.c:774 ../../diskdrake/dav.pm_.c:60
+#: ../../any.pm_.c:257 ../../any.pm_.c:776 ../../diskdrake/dav.pm_.c:64
#: ../../diskdrake/hd_gtk.pm_.c:153 ../../diskdrake/removable.pm_.c:27
#: ../../diskdrake/smbnfs_gtk.pm_.c:88 ../../interactive/http.pm_.c:153
-#: ../../standalone/drakbackup_.c:2696
+#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2772
msgid "Done"
msgstr "œȘλ"
@@ -614,7 +618,7 @@ msgstr "ÊŃčč"
msgid "Which type of entry do you want to add?"
msgstr "€É€Î„ż„€„Ś€òÄÉČĂ€·€Ț€č€«"
-#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1630
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1705
msgid "Linux"
msgstr "Linux"
@@ -708,13 +712,13 @@ msgstr "Ề΀â€Î€Ï€ą€ê€Ț€č€«Ą©"
msgid "Do you have any %s interfaces?"
msgstr "%s „€„󄿥Œ„Ő„§ĄŒ„č€Ï€ą€ê€Ț€č€«Ą©"
-#: ../../any.pm_.c:660 ../../any.pm_.c:821 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:283
+#: ../../any.pm_.c:660 ../../any.pm_.c:823 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:286
msgid "No"
msgstr "€€€€€š"
-#: ../../any.pm_.c:660 ../../any.pm_.c:820 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:283
+#: ../../any.pm_.c:660 ../../any.pm_.c:822 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:286
msgid "Yes"
msgstr "€Ï€€"
@@ -814,38 +818,48 @@ msgstr "ĄÈsuĄÉ€ò”ö€č"
msgid "access to administrative files"
msgstr "ŽÉÍę„Ő„Ą„€„ë€Ű€Î„ą„Ż„»„č"
-#: ../../any.pm_.c:758
+#: ../../any.pm_.c:754
+#, fuzzy
+msgid "access to network tools"
+msgstr "rpm „ÄĄŒ„ë€Ű€Î„ą„Ż„»„č"
+
+#: ../../any.pm_.c:755
+#, fuzzy
+msgid "access to compilation tools"
+msgstr "rpm „ÄĄŒ„ë€Ű€Î„ą„Ż„»„č"
+
+#: ../../any.pm_.c:760
#, c-format
msgid "(already added %s)"
msgstr "(%s €ÏÄÉČĂșŃ€ß)"
-#: ../../any.pm_.c:763
+#: ../../any.pm_.c:765
msgid "This password is too simple"
msgstr "„Ń„č„ïĄŒ„É€ŹŽÊñ€č€ź€Ț€č"
-#: ../../any.pm_.c:764
+#: ../../any.pm_.c:766
msgid "Please give a user name"
msgstr "„æĄŒ„¶ÌŸ€òÍż€š€ÆČŒ€”€€"
-#: ../../any.pm_.c:765
+#: ../../any.pm_.c:767
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr "„æĄŒ„¶ÌŸ€Ë€Ï±ŃŸźÊž»úĄ€żô»úĄąĄÖ-ĄŚ€äĄÖ_ĄŚ€·€«»È€š€Ț€»€óĄŁ"
-#: ../../any.pm_.c:766
+#: ../../any.pm_.c:768
#, fuzzy
msgid "The user name is too long"
msgstr "€ł€Î„æĄŒ„¶ÌŸ€Ï€č€Ç€Ëžș߀·€Ț€č"
-#: ../../any.pm_.c:767
+#: ../../any.pm_.c:769
msgid "This user name is already added"
msgstr "€ł€Î„æĄŒ„¶ÌŸ€Ï€č€Ç€Ëžș߀·€Ț€č"
-#: ../../any.pm_.c:771
+#: ../../any.pm_.c:773
msgid "Add user"
msgstr "„æĄŒ„¶€òÄÉČĂ"
-#: ../../any.pm_.c:772
+#: ../../any.pm_.c:774
#, c-format
msgid ""
"Enter a user\n"
@@ -854,32 +868,32 @@ msgstr ""
"„æĄŒ„¶ÌŸ€òÆțÎÏ€·€ÆČŒ€”€€\n"
"%s"
-#: ../../any.pm_.c:773
+#: ../../any.pm_.c:775
msgid "Accept user"
msgstr "Œő€±ÉŐ€±€ë„æĄŒ„¶"
-#: ../../any.pm_.c:784
+#: ../../any.pm_.c:786
msgid "Real name"
msgstr "ŒÂșʀλáÌŸ"
-#: ../../any.pm_.c:785 ../../printerdrake.pm_.c:742
-#: ../../printerdrake.pm_.c:857
+#: ../../any.pm_.c:787 ../../printerdrake.pm_.c:849
+#: ../../printerdrake.pm_.c:964
msgid "User name"
msgstr "„æĄŒ„¶ÌŸ"
-#: ../../any.pm_.c:788
+#: ../../any.pm_.c:790
msgid "Shell"
msgstr "„·„§„ë"
-#: ../../any.pm_.c:790
+#: ../../any.pm_.c:792
msgid "Icon"
msgstr "„ą„€„ł„ó"
-#: ../../any.pm_.c:817
+#: ../../any.pm_.c:819
msgid "Autologin"
msgstr "Œ«Æ°„í„°„€„ó"
-#: ../../any.pm_.c:818
+#: ../../any.pm_.c:820
msgid ""
"I can set up your computer to automatically log on one user.\n"
"Do you want to use this feature?"
@@ -887,54 +901,54 @@ msgstr ""
"Œ«Æ°ĆȘ€ËÆĂÄê„æĄŒ„¶€Ź„í„°„Ș„ó€č€ë€è€Š€Ë„ł„ó„Ô„ćĄŒ„ż€òÀßÄê€Ç€­€Ț€čĄŁ\n"
"€ł€Î”ĄÇœ€ò»È€€€Ț€č€«Ą©"
-#: ../../any.pm_.c:822
+#: ../../any.pm_.c:824
msgid "Choose the default user:"
msgstr "„Ç„Ő„©„ë„È„æĄŒ„¶€ÎÁȘÂò:"
-#: ../../any.pm_.c:823
+#: ../../any.pm_.c:825
msgid "Choose the window manager to run:"
msgstr "»È€Š„Š„Ł„ó„É„Š„Ț„ÍĄŒ„ž„ă€òÁȘ€ó€ÇČŒ€”€€Ą§"
-#: ../../any.pm_.c:838
+#: ../../any.pm_.c:840
msgid "Please choose a language to use."
msgstr "€É€ÎžÀžì€ò»È€Š€«ÁȘ€ó€Ç€Ż€À€”€€€ÍĄŁ"
-#: ../../any.pm_.c:840
+#: ../../any.pm_.c:842
msgid ""
"Mandrake Linux can support multiple languages. Select\n"
"the languages you would like to install. They will be available\n"
"when your installation is complete and you restart your system."
msgstr "„€„ó„č„ÈĄŒ„ëžć»ÈÍŃČÄÇœ€Ë€Ê€ë€Û€«€ÎžÀžì€òÁȘÂò€Ç€­€Ț€č"
-#: ../../any.pm_.c:854 ../../install_steps_interactive.pm_.c:708
+#: ../../any.pm_.c:856 ../../install_steps_interactive.pm_.c:692
#: ../../standalone/drakxtv_.c:73
msgid "All"
msgstr "€Œ€ó€Ö"
-#: ../../any.pm_.c:974
+#: ../../any.pm_.c:977
msgid "Allow all users"
msgstr "€č€Ù€Æ€Î„æĄŒ„¶€òǧ€á€ë"
-#: ../../any.pm_.c:974
+#: ../../any.pm_.c:977
msgid "No sharing"
msgstr "„Ő„Ą„€„붊ͭ€·€Ê€€"
-#: ../../any.pm_.c:984 ../../standalone.pm_.c:57
+#: ../../any.pm_.c:987 ../../install_any.pm_.c:1183 ../../standalone.pm_.c:58
#, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "„Ń„Ă„±ĄŒ„ž %s €ŹÉŹÍŚ€Ç€čĄŁ„€„ó„č„ÈĄŒ„뀷€Ț€č€«Ą©"
-#: ../../any.pm_.c:987
+#: ../../any.pm_.c:990
msgid ""
"You can export using NFS or Samba. Please select which you'd like to use."
msgstr "„š„Ż„č„ĘĄŒ„È€Ë€Ï NFS €« Samba €Ź»È€š€Ț€čĄŁ€É€Á€é€Ë€·€Ț€č€«Ą©"
-#: ../../any.pm_.c:995 ../../standalone.pm_.c:61
+#: ../../any.pm_.c:998 ../../install_any.pm_.c:1188 ../../standalone.pm_.c:63
#, c-format
msgid "Mandatory package %s is missing"
msgstr "ÉŹÍŚ„Ń„Ă„±ĄŒ„ž %s €Ź€ą€ê€Ț€»€ó"
-#: ../../any.pm_.c:1001
+#: ../../any.pm_.c:1004
msgid ""
"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
@@ -943,11 +957,11 @@ msgid ""
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:1015
+#: ../../any.pm_.c:1018
msgid "Launch userdrake"
msgstr "userdrake €ò”ŻÆ°"
-#: ../../any.pm_.c:1017
+#: ../../any.pm_.c:1020
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
@@ -955,31 +969,31 @@ msgstr ""
"„æĄŒ„¶Ëè€Î¶ŠÍ­€ÏĄąĄÈfileshareĄÉ„°„ëĄŒ„Ś€ò»È€€€Ț€čĄŁ\n"
"€ł€Î„°„ëĄŒ„Ś€Ë„æĄŒ„¶€òÄÉČĂ€č€ë€Ë€ÏĄąuserdrake €Ź»È€š€Ț€č€èĄŁ"
-#: ../../any.pm_.c:1068
+#: ../../any.pm_.c:1071
msgid "Welcome To Crackers"
msgstr "°­ŒÁ€Ê„Ż„é„Ă„«ĄŒÍ̀⿯Æț€·€Û€Š€À€€"
-#: ../../any.pm_.c:1069
+#: ../../any.pm_.c:1072
msgid "Poor"
msgstr "€­€ï€á€ÆÄ "
-#: ../../any.pm_.c:1070 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1073 ../../mouse.pm_.c:31
msgid "Standard"
msgstr "Éžœà"
-#: ../../any.pm_.c:1071
+#: ../../any.pm_.c:1074
msgid "High"
msgstr "č "
-#: ../../any.pm_.c:1072
+#: ../../any.pm_.c:1075
msgid "Higher"
msgstr "€â€Ă€Èč "
-#: ../../any.pm_.c:1073
+#: ../../any.pm_.c:1076
msgid "Paranoid"
msgstr "żÀ·ĐŒÁ€Ê€Û€Éčâżćœà"
-#: ../../any.pm_.c:1076
+#: ../../any.pm_.c:1079
msgid ""
"This level is to be used with care. It makes your system more easy to use,\n"
"but very sensitive: it must not be used for a machine connected to others\n"
@@ -989,7 +1003,7 @@ msgstr ""
"€À€ì€Ë€Ç€â„ą„Ż„»„č€Ç€­€Æ€·€Ț€€€Ț€čĄŁÂŸ€Î„Ț„·„ó€ä„€„󄿥Œ„Í„Ă„È\n"
"€Ë€Ä€Ê€Ź€Ă€ż„Ț„·„ó€Ç€Ï»È€ï€Ê€€€Ç€Ż€À€”€€ĄŁ„Ń„č„ïĄŒ„ÉÀ©žÂ€â€ą€ê€Ț€»€óĄŁ"
-#: ../../any.pm_.c:1079
+#: ../../any.pm_.c:1082
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -997,7 +1011,7 @@ msgstr ""
"„Ń„č„ïĄŒ„É€ŹÍ­žú€Ë€Ê€ê€Ț€·€ż€ŹĄą„Í„Ă„È„ïĄŒ„Ż€Ë€Ä€Ê€°€Î€Ï€Ț€À\n"
"€ȘŸ©€á€Ç€­€Ț€»€óĄŁ"
-#: ../../any.pm_.c:1080
+#: ../../any.pm_.c:1083
msgid ""
"This is the standard security recommended for a computer that will be used "
"to connect to the Internet as a client."
@@ -1005,13 +1019,13 @@ msgstr ""
"€ł€ì€ÏÉžœà€Î„»„­„ć„ê„Æ„Ł€ÇĄą„Ż„é„€„ą„ó„ȀȀ·€Æ„€„󄿥Œ„Í„Ă„ÈÀÜÂł€č€ë„Ț„·„ó€Ç"
"€ÎżäŸ©„ì„Ù„ë€Ç€čĄŁ"
-#: ../../any.pm_.c:1081
+#: ../../any.pm_.c:1084
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr "€č€Ç€ËÀ©žÂ€Ź€«€«€Ă€Æ€€€ÆĄą€”€é€ËËèÈŐŒ«Æ°„Á„§„Ă„Ż€Ź€â€Ă€È€«€«€ê€Ț€čĄŁ"
-#: ../../any.pm_.c:1082
+#: ../../any.pm_.c:1085
msgid ""
"With this security level, the use of this system as a server becomes "
"possible.\n"
@@ -1025,7 +1039,7 @@ msgstr ""
"żćœà€Ë€Ê€Ă€Æ€€€Ț€čĄŁĂ𥧀ą€Ê€ż€Î„Ț„·„󀏄€„󄿥Œ„Í„Ă„ÈŸć€Î„Ż„é„€„ą„ó„ÈÀìÍŃ€Ê"
"€éĄą€â€Ă€ÈÄ „ì„Ù„ë€òÁȘ€ó€À€Û€Š€Ź€€€€€Ç€č€èĄŁ"
-#: ../../any.pm_.c:1085
+#: ../../any.pm_.c:1088
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
"security features are at their maximum."
@@ -1033,31 +1047,31 @@ msgstr ""
"Á°€Î„ì„Ù„ë€ËŽđ€Ć€€€Æ€€€Ț€č€ŹĄą€ł€ì€Ç„·„č„Æ„à€ÏŽ°ÁŽ€Ë€È€ž€żŸőÂÖ\n"
"€Ë€Ê€Ă€Æ€€€Ț€čĄŁ„»„­„ć„ê„Æ„Ł€ÏșÇÂç€Ç€čĄŁ"
-#: ../../any.pm_.c:1091
+#: ../../any.pm_.c:1094
#, fuzzy
msgid "DrakSec Basic Options"
msgstr "„Ș„Ś„·„ç„ó"
-#: ../../any.pm_.c:1092
+#: ../../any.pm_.c:1095
#, fuzzy
msgid "Please choose the desired security level"
msgstr "„»„­„ć„ê„Æ„Ł€Îżćœà€òÁȘ€ó€Ç€Ż€À€”€€"
-#: ../../any.pm_.c:1095
+#: ../../any.pm_.c:1098
msgid "Security level"
msgstr "„»„­„ć„ê„Æ„Łżćœà"
-#: ../../any.pm_.c:1097
+#: ../../any.pm_.c:1100
msgid "Use libsafe for servers"
msgstr "„”ĄŒ„Đ€Ëlibsafe€ò»È€Š"
-#: ../../any.pm_.c:1098
+#: ../../any.pm_.c:1101
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
"„Đ„Ă„Ő„Ą„ȘĄŒ„ĐĄŒ„Ő„íĄŒ€ä„Ő„©ĄŒ„Ț„Ă„È„č„È„ê„ó„°č¶·â€òËÉžæ€č€ë„é„€„Ö„é„êĄŁ"
-#: ../../any.pm_.c:1099
+#: ../../any.pm_.c:1102
msgid "Security Administrator (login or email)"
msgstr ""
@@ -1097,57 +1111,57 @@ msgstr ""
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:935
+#: ../../bootloader.pm_.c:932
msgid "Welcome to GRUB the operating system chooser!"
msgstr "GRUB operating system chooser-he youkosou!"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:938
+#: ../../bootloader.pm_.c:935
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "%c, %c key wo tukatte entry wo shitei shite kudasai."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:941
+#: ../../bootloader.pm_.c:938
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Kono OS wo kidou suru nara Enter, Kidou mae no jikkou command"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:941
msgid "commands before booting, or 'c' for a command-line."
msgstr "no henshuu niha 'e', command line nara 'c' wo oshi masu."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:947
+#: ../../bootloader.pm_.c:944
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "Sentaku shita OS ga %d byou de jidoutekini kidou shimasu."
-#: ../../bootloader.pm_.c:951
+#: ../../bootloader.pm_.c:948
msgid "not enough room in /boot"
msgstr "/boot €ÎÍÆÎÌÉÔ­€Ç€č"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1051
+#: ../../bootloader.pm_.c:1048
msgid "Desktop"
msgstr "„Ç„č„Ż„È„Ă„Ś"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1053
+#: ../../bootloader.pm_.c:1050
msgid "Start Menu"
msgstr "„č„żĄŒ„È„á„Ë„ćĄŒ"
-#: ../../bootloader.pm_.c:1072
+#: ../../bootloader.pm_.c:1069
#, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "„ÖĄŒ„È„íĄŒ„À€Ï %s „ŃĄŒ„Æ„Ł„·„ç„ó€Ë€Ï„€„ó„č„ÈĄŒ„ë€Ç€­€Ț€»€ó\n"
-#: ../../bootlook.pm_.c:45
+#: ../../bootlook.pm_.c:45 ../../standalone/draksplash_.c:25
msgid "no help implemented yet.\n"
msgstr "„Ű„ë„Ś€Ï€Ț€ÀŒÂÁő€”€ì€Æ€€€Ț€»€óĄŁ\n"
@@ -1155,8 +1169,8 @@ msgstr "„Ű„ë„Ś€Ï€Ț€ÀŒÂÁő€”€ì€Æ€€€Ț€»€óĄŁ\n"
msgid "Boot Style Configuration"
msgstr "”ŻÆ°ÊęŒ°€ÎÀßÄê"
-#: ../../bootlook.pm_.c:78 ../../harddrake/ui.pm_.c:59
-#: ../../harddrake/ui.pm_.c:60 ../../standalone/drakfloppy_.c:81
+#: ../../bootlook.pm_.c:78 ../../harddrake/ui.pm_.c:62
+#: ../../harddrake/ui.pm_.c:63 ../../standalone/drakfloppy_.c:81
#: ../../standalone/logdrake_.c:101
msgid "/_File"
msgstr "/„Ő„Ą„€„ë(_F)"
@@ -1166,7 +1180,7 @@ msgstr "/„Ő„Ą„€„ë(_F)"
msgid "/File/_Quit"
msgstr "/„Ő„Ą„€„ë(F)/œȘλ(_Q)"
-#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:60
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:63
#: ../../standalone/drakfloppy_.c:82 ../../standalone/logdrake_.c:107
msgid "<control>Q"
msgstr "<control>Q"
@@ -1208,94 +1222,101 @@ msgstr "„·„č„Æ„à€ÎÆłÆț"
msgid "Display theme under console"
msgstr ""
-#: ../../bootlook.pm_.c:166
+#: ../../bootlook.pm_.c:145
+#, fuzzy
+msgid "Create new theme"
+msgstr "ż·€·€€„ŃĄŒ„Æ„Ł„·„ç„ó€òșîÀź"
+
+#: ../../bootlook.pm_.c:169
msgid "Can't create Bootsplash preview"
msgstr ""
-#: ../../bootlook.pm_.c:166 ../../bootlook.pm_.c:184 ../../bootlook.pm_.c:187
-#: ../../bootlook.pm_.c:190 ../../bootlook.pm_.c:220 ../../bootlook.pm_.c:222
-#: ../../bootlook.pm_.c:232 ../../bootlook.pm_.c:241 ../../bootlook.pm_.c:248
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:336
-#: ../../diskdrake/interactive.pm_.c:351 ../../diskdrake/interactive.pm_.c:464
-#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../bootlook.pm_.c:169 ../../bootlook.pm_.c:187 ../../bootlook.pm_.c:190
+#: ../../bootlook.pm_.c:193 ../../bootlook.pm_.c:223 ../../bootlook.pm_.c:225
+#: ../../bootlook.pm_.c:235 ../../bootlook.pm_.c:244 ../../bootlook.pm_.c:251
+#: ../../diskdrake/dav.pm_.c:73 ../../diskdrake/hd_gtk.pm_.c:116
+#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/interactive.pm_.c:355
+#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/interactive.pm_.c:474
+#: ../../diskdrake/smbnfs_gtk.pm_.c:45 ../../fsedit.pm_.c:239
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:365 ../../interactive/http.pm_.c:119
-#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:80
+#: ../../interactive/http.pm_.c:119 ../../interactive/http.pm_.c:120
+#: ../../standalone/draksplash_.c:32
msgid "Error"
msgstr "„š„éĄŒ"
-#: ../../bootlook.pm_.c:183
+#: ../../bootlook.pm_.c:186
#, c-format
msgid "Backup %s to %s.old"
msgstr ""
-#: ../../bootlook.pm_.c:184
+#: ../../bootlook.pm_.c:187
msgid "unable to backup lilo message"
msgstr ""
-#: ../../bootlook.pm_.c:186
+#: ../../bootlook.pm_.c:189
#, fuzzy, c-format
msgid "Copy %s to %s"
msgstr "%s „ł„ÔĄŒĂæ"
-#: ../../bootlook.pm_.c:187
+#: ../../bootlook.pm_.c:190
msgid "can't change lilo message"
msgstr ""
-#: ../../bootlook.pm_.c:190
+#: ../../bootlook.pm_.c:193
msgid "Lilo message not found"
msgstr ""
-#: ../../bootlook.pm_.c:220
+#: ../../bootlook.pm_.c:223
msgid "Can't write /etc/sysconfig/bootsplash."
msgstr ""
-#: ../../bootlook.pm_.c:220
+#: ../../bootlook.pm_.c:223
#, fuzzy, c-format
msgid "Write %s"
msgstr "XFree %s"
-#: ../../bootlook.pm_.c:222
+#: ../../bootlook.pm_.c:225
msgid ""
"Can't write /etc/sysconfig/bootsplash\n"
"File not found."
msgstr ""
-#: ../../bootlook.pm_.c:233
+#: ../../bootlook.pm_.c:236
#, c-format
msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
msgstr ""
-#: ../../bootlook.pm_.c:236
+#: ../../bootlook.pm_.c:239
#, c-format
-msgid "Make initrd 'mkinird -f /boot/initrd-%s.img %s'."
+msgid "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
msgstr ""
-#: ../../bootlook.pm_.c:242
+#: ../../bootlook.pm_.c:245
msgid ""
"Can't relaunch LiLo!\n"
"Launch \"lilo\" as root in command line to complete LiLo theme installation."
msgstr ""
-#: ../../bootlook.pm_.c:246
+#: ../../bootlook.pm_.c:249
msgid "Relaunch 'lilo'"
msgstr ""
-#: ../../bootlook.pm_.c:248
+#: ../../bootlook.pm_.c:251 ../../standalone/draksplash_.c:161
+#: ../../standalone/draksplash_.c:330 ../../standalone/draksplash_.c:454
#, fuzzy
msgid "Notice"
msgstr "„Ó„Ç„Ș€Ê€·"
-#: ../../bootlook.pm_.c:249
+#: ../../bootlook.pm_.c:252
msgid "LiLo and Bootsplash themes installation successfull"
msgstr ""
-#: ../../bootlook.pm_.c:249
+#: ../../bootlook.pm_.c:252
#, fuzzy
msgid "Theme installation failed!"
msgstr "ÆłÆț„Ż„é„č€ÎÁȘÂò"
-#: ../../bootlook.pm_.c:258
+#: ../../bootlook.pm_.c:261
#, c-format
msgid ""
"You are currently using %s as your boot manager.\n"
@@ -1304,23 +1325,22 @@ msgstr ""
"€€€ȚĄą„ÖĄŒ„È„Ț„ÍĄŒ„ž„ă€Ë€Ï %s €ò€Ș»È€€€Ç€čĄŁ\n"
"ÀßÄê„Š„Ł„¶ĄŒ„É€ò”ŻÆ°€č€ë€Ë€ÏĄÖÀßÄêĄŚ€ò„Ż„ê„Ă„Ż€·€Ț€·€ç€ŠĄŁ"
-#: ../../bootlook.pm_.c:260 ../../standalone/drakbackup_.c:2352
-#: ../../standalone/drakbackup_.c:2362 ../../standalone/drakbackup_.c:2372
-#: ../../standalone/drakbackup_.c:2380 ../../standalone/drakgw_.c:592
-#: ../../standalone/tinyfirewall_.c:58
+#: ../../bootlook.pm_.c:263 ../../standalone/drakbackup_.c:2427
+#: ../../standalone/drakbackup_.c:2437 ../../standalone/drakbackup_.c:2447
+#: ../../standalone/drakbackup_.c:2455 ../../standalone/drakgw_.c:530
msgid "Configure"
msgstr "ÀßÄê"
-#: ../../bootlook.pm_.c:267
+#: ../../bootlook.pm_.c:270
#, fuzzy
msgid "Splash selection"
msgstr "„Ń„Ă„±ĄŒ„žÁȘÂò€ÎÊĘž"
-#: ../../bootlook.pm_.c:270
+#: ../../bootlook.pm_.c:273
msgid "Themes"
msgstr ""
-#: ../../bootlook.pm_.c:272
+#: ../../bootlook.pm_.c:275
msgid ""
"\n"
"Select a theme for\n"
@@ -1329,44 +1349,44 @@ msgid ""
"them separatly"
msgstr ""
-#: ../../bootlook.pm_.c:275
+#: ../../bootlook.pm_.c:278
msgid "Lilo screen"
msgstr ""
-#: ../../bootlook.pm_.c:279
+#: ../../bootlook.pm_.c:283
msgid "Bootsplash"
msgstr ""
-#: ../../bootlook.pm_.c:314
+#: ../../bootlook.pm_.c:318
msgid "System mode"
msgstr "„·„č„Æ„à„âĄŒ„É"
-#: ../../bootlook.pm_.c:316
+#: ../../bootlook.pm_.c:320
msgid "Launch the graphical environment when your system starts"
msgstr "”ŻÆ°»ț€Ë X „Š„Ł„ó„É„Š€òŒÂčÔ"
-#: ../../bootlook.pm_.c:321
+#: ../../bootlook.pm_.c:325
msgid "No, I don't want autologin"
msgstr "Œ«Æ°„í„°„€„ó€Ï€·€Ê€€"
-#: ../../bootlook.pm_.c:323
+#: ../../bootlook.pm_.c:327
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "€ł€Î („æĄŒ„¶Ąą„Ç„č„Ż„È„Ă„ŚĄË€ÇŒ«Æ°„í„°„€„ó€č€ë"
-#: ../../bootlook.pm_.c:333 ../../network/netconnect.pm_.c:101
+#: ../../bootlook.pm_.c:337 ../../network/netconnect.pm_.c:101
#: ../../standalone/drakTermServ_.c:173 ../../standalone/drakTermServ_.c:300
-#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:3513
-#: ../../standalone/drakbackup_.c:4290 ../../standalone/drakconnect_.c:108
+#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4191
+#: ../../standalone/drakbackup_.c:4952 ../../standalone/drakconnect_.c:108
#: ../../standalone/drakconnect_.c:140 ../../standalone/drakconnect_.c:296
#: ../../standalone/drakconnect_.c:435 ../../standalone/drakconnect_.c:521
#: ../../standalone/drakconnect_.c:564 ../../standalone/drakconnect_.c:667
#: ../../standalone/drakfloppy_.c:376 ../../standalone/drakfont_.c:612
#: ../../standalone/drakfont_.c:799 ../../standalone/drakfont_.c:876
-#: ../../standalone/drakfont_.c:963 ../../standalone/logdrake_.c:521
+#: ../../standalone/drakfont_.c:963 ../../standalone/logdrake_.c:519
msgid "OK"
msgstr "OK"
-#: ../../bootlook.pm_.c:403
+#: ../../bootlook.pm_.c:407
#, c-format
msgid "can not open /etc/inittab for reading: %s"
msgstr "/etc/inittab €ŹÆɀ߀ȀêÍр˳«€±€Ț€»€ó: %s"
@@ -1463,49 +1483,53 @@ msgstr "„ȘĄŒ„č„È„ê„ą"
msgid "United States"
msgstr "„ą„á„ê„«č眰čń"
-#: ../../detect_devices.pm_.c:599 ../../detect_devices.pm_.c:641
-#: ../../detect_devices.pm_.c:803
-#, fuzzy
-msgid "Unknown Model"
-msgstr "Ì€Ă΀΄â„Ç„ë"
-
#: ../../diskdrake/dav.pm_.c:23
#, fuzzy
msgid "New"
msgstr "ż·”Ź"
-#: ../../diskdrake/dav.pm_.c:57
+#: ../../diskdrake/dav.pm_.c:59 ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/smbnfs_gtk.pm_.c:81
+msgid "Unmount"
+msgstr "„ą„ó„Ț„Š„ó„È"
+
+#: ../../diskdrake/dav.pm_.c:60 ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/smbnfs_gtk.pm_.c:82
+msgid "Mount"
+msgstr "„Ț„Š„ó„È"
+
+#: ../../diskdrake/dav.pm_.c:61
msgid "Server"
msgstr "„”ĄŒ„Đ"
-#: ../../diskdrake/dav.pm_.c:58 ../../diskdrake/interactive.pm_.c:375
-#: ../../diskdrake/interactive.pm_.c:558 ../../diskdrake/interactive.pm_.c:585
+#: ../../diskdrake/dav.pm_.c:62 ../../diskdrake/interactive.pm_.c:379
+#: ../../diskdrake/interactive.pm_.c:568 ../../diskdrake/interactive.pm_.c:595
#: ../../diskdrake/removable.pm_.c:24 ../../diskdrake/removable_gtk.pm_.c:15
#: ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr "„Ț„Š„ó„È„Ę„€„ó„È"
-#: ../../diskdrake/dav.pm_.c:68
+#: ../../diskdrake/dav.pm_.c:81
#, fuzzy
msgid "Please enter the WebDAV server URL"
msgstr "CD„é„€„żĄŒ€ÎÂźĆÙ€òÆțÎÏ€·€Æ€Ż€À€”€€"
-#: ../../diskdrake/dav.pm_.c:71
+#: ../../diskdrake/dav.pm_.c:84
msgid "The URL must begin with http:// or https://"
msgstr ""
-#: ../../diskdrake/dav.pm_.c:92
+#: ../../diskdrake/dav.pm_.c:105
#, fuzzy
msgid "Server: "
msgstr "„”ĄŒ„Đ"
-#: ../../diskdrake/dav.pm_.c:93 ../../diskdrake/interactive.pm_.c:435
-#: ../../diskdrake/interactive.pm_.c:1079
-#: ../../diskdrake/interactive.pm_.c:1153
+#: ../../diskdrake/dav.pm_.c:106 ../../diskdrake/interactive.pm_.c:440
+#: ../../diskdrake/interactive.pm_.c:1089
+#: ../../diskdrake/interactive.pm_.c:1164
msgid "Mount point: "
msgstr "„Ț„Š„ó„È„Ę„€„ó„È: "
-#: ../../diskdrake/dav.pm_.c:94 ../../diskdrake/interactive.pm_.c:1159
+#: ../../diskdrake/dav.pm_.c:107 ../../diskdrake/interactive.pm_.c:1170
#, c-format
msgid "Options: %s"
msgstr "„Ș„Ś„·„ç„ó: %s"
@@ -1514,8 +1538,9 @@ msgstr "„Ș„Ś„·„ç„ó: %s"
msgid "Please make a backup of your data first"
msgstr "„ÇĄŒ„ż€Î„Đ„Ă„Ż„ą„Ă„Ś€òŒè€Ă€ÆČŒ€”€€"
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:924
-#: ../../diskdrake/interactive.pm_.c:933 ../../diskdrake/interactive.pm_.c:999
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:934
+#: ../../diskdrake/interactive.pm_.c:943
+#: ../../diskdrake/interactive.pm_.c:1009
msgid "Read carefully!"
msgstr "€è€ŻÆÉ€ó€ÇČŒ€”€€ĄȘ"
@@ -1553,10 +1578,17 @@ msgid "Please click on a partition"
msgstr "ÊŃčč€č€ë„ŃĄŒ„Æ„Ł„·„ç„ó€ò„Ż„ê„Ă„Ż€·€Æ€Ż€À€”€€"
#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
-#: ../../install_steps_gtk.pm_.c:471
+#: ../../install_steps_gtk.pm_.c:465
msgid "Details"
msgstr "ŸÜșÙ"
+#: ../../diskdrake/hd_gtk.pm_.c:252
+#, fuzzy
+msgid "No hard drives found"
+msgstr ""
+"„íĄŒ„«„ë„Ś„ê„󄿀Źž«€Ä€«€ê€Ț€»€óĄȘ\n"
+"\n"
+
#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Ext2"
msgstr "Ext2"
@@ -1581,13 +1613,13 @@ msgstr "SunOS"
msgid "Swap"
msgstr "„č„ï„Ă„Ś"
-#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1105
msgid "Empty"
msgstr "¶ő"
-#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:331
-#: ../../install_steps_gtk.pm_.c:389 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1679
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:325
+#: ../../install_steps_gtk.pm_.c:383 ../../mouse.pm_.c:165
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1754
msgid "Other"
msgstr "€œ€ÎŸ"
@@ -1595,12 +1627,12 @@ msgstr "€œ€ÎŸ"
msgid "Filesystem types:"
msgstr "„Ő„Ą„€„ë„·„č„Æ„à „ż„€„Ś:"
-#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:397
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:402
msgid "Create"
msgstr "șîÀź"
-#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:376
-#: ../../diskdrake/interactive.pm_.c:521 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:380
+#: ../../diskdrake/interactive.pm_.c:531 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "„ż„€„Ś"
@@ -1610,7 +1642,7 @@ msgstr "„ż„€„Ś"
msgid "Use ``%s'' instead"
msgstr "Âć€ï€ê€ËĄÈ%sĄÉ€ò»È€Ă€ÆČŒ€”€€"
-#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:389
msgid "Delete"
msgstr "șïœü"
@@ -1618,7 +1650,7 @@ msgstr "șïœü"
msgid "Use ``Unmount'' first"
msgstr "șÇœé€ËĄÖ„ą„ó„Ț„Š„ó„ÈĄŚ€ò»È€Ă€ÆČŒ€”€€"
-#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:513
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:518
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
@@ -1626,72 +1658,72 @@ msgstr ""
"„ŃĄŒ„Æ„Ł„·„ç„ó€Î·ż€ò %s €ËÊŃč耷€żžćĄą€ł€Î„ŃĄŒ„Æ„Ł„·„ç„óŸć€Î„ÇĄŒ„ż€ÏŒș€ï€ì€Ț"
"€č"
-#: ../../diskdrake/interactive.pm_.c:173
+#: ../../diskdrake/interactive.pm_.c:174
msgid "Choose a partition"
msgstr "„ŃĄŒ„Æ„Ł„·„ç„ó€òÁȘÂò"
-#: ../../diskdrake/interactive.pm_.c:173
+#: ../../diskdrake/interactive.pm_.c:174
msgid "Choose another partition"
msgstr "ÊÌ€Î„ŃĄŒ„Æ„Ł„·„ç„ó€òÁȘ€Ö"
-#: ../../diskdrake/interactive.pm_.c:198
+#: ../../diskdrake/interactive.pm_.c:199
msgid "Exit"
msgstr "œȘλ"
-#: ../../diskdrake/interactive.pm_.c:220
+#: ../../diskdrake/interactive.pm_.c:221
msgid "Toggle to expert mode"
msgstr "„š„­„č„ŃĄŒ„È„âĄŒ„ɀ˰܀ë"
-#: ../../diskdrake/interactive.pm_.c:220
+#: ../../diskdrake/interactive.pm_.c:221
msgid "Toggle to normal mode"
msgstr "„ÎĄŒ„Ț„ë„âĄŒ„ɀ˰܀ë"
-#: ../../diskdrake/interactive.pm_.c:220
+#: ../../diskdrake/interactive.pm_.c:221
msgid "Undo"
msgstr "€â€È€ËÌá€č"
-#: ../../diskdrake/interactive.pm_.c:239
+#: ../../diskdrake/interactive.pm_.c:240
msgid "Continue anyway?"
msgstr "€œ€ì€Ç€âÂł€±€Ț€č€«Ą©"
-#: ../../diskdrake/interactive.pm_.c:244
+#: ../../diskdrake/interactive.pm_.c:245
msgid "Quit without saving"
msgstr "„»ĄŒ„Ö€»€șœȘλ"
-#: ../../diskdrake/interactive.pm_.c:244
+#: ../../diskdrake/interactive.pm_.c:245
msgid "Quit without writing the partition table?"
msgstr "„ŃĄŒ„Æ„Ł„·„ç„ó„ÆĄŒ„Ö„ë€òččż·€»€ș€ËœȘλĄ©"
-#: ../../diskdrake/interactive.pm_.c:249
+#: ../../diskdrake/interactive.pm_.c:250
msgid "Do you want to save /etc/fstab modifications"
msgstr " /etc/fstab €ÎÊŃčč€òÊĘž€·€Ț€č€«Ą©"
-#: ../../diskdrake/interactive.pm_.c:261
+#: ../../diskdrake/interactive.pm_.c:263
msgid "Auto allocate"
msgstr "Œ«Æ°łä€êĆö€Æ"
-#: ../../diskdrake/interactive.pm_.c:261
+#: ../../diskdrake/interactive.pm_.c:263
msgid "Clear all"
msgstr "ÁŽ€Æ€ò„Ż„ê„ą"
-#: ../../diskdrake/interactive.pm_.c:261
+#: ../../diskdrake/interactive.pm_.c:263
#: ../../install_steps_interactive.pm_.c:214
msgid "More"
msgstr "ŒĄ"
-#: ../../diskdrake/interactive.pm_.c:264
+#: ../../diskdrake/interactive.pm_.c:267
msgid "Hard drive information"
msgstr "„ÏĄŒ„É„É„é„€„րΟđÊó"
-#: ../../diskdrake/interactive.pm_.c:294
+#: ../../diskdrake/interactive.pm_.c:298
msgid "All primary partitions are used"
msgstr "ÁŽ€Æ€Î„Ś„é„€„Ț„ê„ŃĄŒ„Æ„Ł„·„ç„ó€Ź»È€ï€ì€Æ€€€Ț€č"
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:299
msgid "I can't add any more partition"
msgstr "€ł€ì°ÊŸć€Î„ŃĄŒ„Æ„Ł„·„ç„ó€ÏÄÉČÀǀ­€Ț€»€ó"
-#: ../../diskdrake/interactive.pm_.c:296
+#: ../../diskdrake/interactive.pm_.c:300
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -1699,31 +1731,31 @@ msgstr ""
"„ŃĄŒ„Æ„Ł„·„ç„ó€òÁę€ä€·€ż€€€Ê€éĄ€łÈÄ„„ŃĄŒ„Æ„Ł„·„ç„ó€Ź\n"
"șî€ì€ë€è€Š€Ë€É€ł€«€Î„ŃĄŒ„Æ„Ł„·„ç„ó€òŸĂ€·€ÆČŒ€”€€ĄŁ"
-#: ../../diskdrake/interactive.pm_.c:306
+#: ../../diskdrake/interactive.pm_.c:310
msgid "Save partition table"
msgstr "„ŃĄŒ„Æ„Ł„·„ç„ó„ÆĄŒ„Ö„ë€òÊĘž"
-#: ../../diskdrake/interactive.pm_.c:307
+#: ../../diskdrake/interactive.pm_.c:311
msgid "Restore partition table"
msgstr "„ŃĄŒ„Æ„Ł„·„ç„ó„ÆĄŒ„Ö„ë€òșÆÀž"
-#: ../../diskdrake/interactive.pm_.c:308
+#: ../../diskdrake/interactive.pm_.c:312
msgid "Rescue partition table"
msgstr "„ŃĄŒ„Æ„Ł„·„ç„ó„ÆĄŒ„Ö„ë€ò»Ä€č"
-#: ../../diskdrake/interactive.pm_.c:310
+#: ../../diskdrake/interactive.pm_.c:314
msgid "Reload partition table"
msgstr "„ŃĄŒ„Æ„Ł„·„ç„ó„ÆĄŒ„Ö„ë€òșÆÆÉčț"
-#: ../../diskdrake/interactive.pm_.c:315
+#: ../../diskdrake/interactive.pm_.c:319
msgid "Removable media automounting"
msgstr "„ê„àĄŒ„Đ„Ö„ë„á„Ç„Ł„ąŒ«Æ°șÆ„Ț„Š„ó„ÈĂæ"
-#: ../../diskdrake/interactive.pm_.c:324 ../../diskdrake/interactive.pm_.c:344
+#: ../../diskdrake/interactive.pm_.c:328 ../../diskdrake/interactive.pm_.c:348
msgid "Select file"
msgstr "„Ő„Ą„€„ë€òÁȘÂò"
-#: ../../diskdrake/interactive.pm_.c:331
+#: ../../diskdrake/interactive.pm_.c:335
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1731,11 +1763,11 @@ msgstr ""
"„Đ„Ă„Ż„ą„Ă„Ś€č€ë„ŃĄŒ„Æ„Ł„·„ç„ó„ÆĄŒ„Ö„ë€Î„”„€„ș€Ź°ă€€€Ț€č\n"
"Âł€±€Ț€č€«Ą©"
-#: ../../diskdrake/interactive.pm_.c:345
+#: ../../diskdrake/interactive.pm_.c:349
msgid "Warning"
msgstr "·Ùčđ"
-#: ../../diskdrake/interactive.pm_.c:346
+#: ../../diskdrake/interactive.pm_.c:350
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1743,112 +1775,104 @@ msgstr ""
"„Ő„í„Ă„ÔĄŒ€ò„É„é„€„Ö€ËÁȚÆț€·€Æ€Ż€À€”€€\n"
"„Ő„í„Ă„ÔĄŒŸć€ÎÁŽ€Æ€Î„ÇĄŒ„ż€ÏŒș€ï€ì€Ț€č"
-#: ../../diskdrake/interactive.pm_.c:357
+#: ../../diskdrake/interactive.pm_.c:361
msgid "Trying to rescue partition table"
msgstr "„ŃĄŒ„Æ„Ł„·„ç„ó„ÆĄŒ„Ö„ë€ò”ßœĐ€·€Æ€ß€Ț€č"
-#: ../../diskdrake/interactive.pm_.c:363
+#: ../../diskdrake/interactive.pm_.c:367
msgid "Detailed information"
msgstr "ŸÜșـʟđÊó"
-#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:652
+#: ../../diskdrake/interactive.pm_.c:382 ../../diskdrake/interactive.pm_.c:662
msgid "Resize"
msgstr "„ê„”„€„ș"
-#: ../../diskdrake/interactive.pm_.c:379 ../../diskdrake/interactive.pm_.c:705
+#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/interactive.pm_.c:715
msgid "Move"
msgstr "°ÜÆ°"
-#: ../../diskdrake/interactive.pm_.c:380
+#: ../../diskdrake/interactive.pm_.c:384
msgid "Format"
msgstr "„Ő„©ĄŒ„Ț„Ă„È"
-#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/smbnfs_gtk.pm_.c:82
-msgid "Mount"
-msgstr "„Ț„Š„ó„È"
-
-#: ../../diskdrake/interactive.pm_.c:382
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Add to RAID"
msgstr "RAID €ËČĂ€š€ë"
-#: ../../diskdrake/interactive.pm_.c:383
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Add to LVM"
msgstr "LVM €ËČĂ€š€ë"
-#: ../../diskdrake/interactive.pm_.c:384 ../../diskdrake/smbnfs_gtk.pm_.c:81
-msgid "Unmount"
-msgstr "„ą„ó„Ț„Š„ó„È"
-
-#: ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/interactive.pm_.c:390
msgid "Remove from RAID"
msgstr "RAID €«€éœü€Ż"
-#: ../../diskdrake/interactive.pm_.c:387
+#: ../../diskdrake/interactive.pm_.c:391
msgid "Remove from LVM"
msgstr "LVM €«€éœü€Ż"
-#: ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/interactive.pm_.c:392
msgid "Modify RAID"
msgstr "RAID€ÎÊŃčč"
-#: ../../diskdrake/interactive.pm_.c:389
+#: ../../diskdrake/interactive.pm_.c:393
msgid "Use for loopback"
msgstr "„ëĄŒ„Ś„Đ„Ă„Ż€Î»ÈÍŃ"
-#: ../../diskdrake/interactive.pm_.c:428
+#: ../../diskdrake/interactive.pm_.c:433
msgid "Create a new partition"
msgstr "ż·€·€€„ŃĄŒ„Æ„Ł„·„ç„ó€òșîÀź"
-#: ../../diskdrake/interactive.pm_.c:431
+#: ../../diskdrake/interactive.pm_.c:436
msgid "Start sector: "
msgstr "ł«»Ï„»„Ż„ż: "
-#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:805
+#: ../../diskdrake/interactive.pm_.c:438 ../../diskdrake/interactive.pm_.c:815
msgid "Size in MB: "
msgstr "MB €Ç€Î„”„€„ș: "
-#: ../../diskdrake/interactive.pm_.c:434 ../../diskdrake/interactive.pm_.c:806
+#: ../../diskdrake/interactive.pm_.c:439 ../../diskdrake/interactive.pm_.c:816
msgid "Filesystem type: "
msgstr "„Ő„Ą„€„ë„·„č„Æ„à„ż„€„Ś: "
-#: ../../diskdrake/interactive.pm_.c:439
+#: ../../diskdrake/interactive.pm_.c:444
msgid "Preference: "
msgstr "„Ś„ê„Ő„Ą„ì„ó„č: "
-#: ../../diskdrake/interactive.pm_.c:464
+#: ../../diskdrake/interactive.pm_.c:469
msgid ""
"You can't create a new partition\n"
"(since you reached the maximal number of primary partitions).\n"
"First remove a primary partition and create an extended partition."
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:494
+#: ../../diskdrake/interactive.pm_.c:499
msgid "Remove the loopback file?"
msgstr "„ëĄŒ„Ś„Đ„Ă„Ż„Ő„Ą„€„ë€òșïœü€·€Ț€č€«Ą©"
-#: ../../diskdrake/interactive.pm_.c:519
+#: ../../diskdrake/interactive.pm_.c:529
msgid "Change partition type"
msgstr "„ŃĄŒ„Æ„Ł„·„ç„ó„ż„€„Ś€ÎÊŃčč"
-#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:530 ../../diskdrake/removable.pm_.c:48
msgid "Which filesystem do you want?"
msgstr "€É€Î„Ő„Ą„€„ë„·„č„Æ„à€Ë€·€Ț€č€«Ą©"
-#: ../../diskdrake/interactive.pm_.c:526
+#: ../../diskdrake/interactive.pm_.c:536
msgid "Switching from ext2 to ext3"
msgstr "ext2 €«€é ext3 €ËÊŃč耷€Æ€€€Ț€č"
-#: ../../diskdrake/interactive.pm_.c:556
+#: ../../diskdrake/interactive.pm_.c:566
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "„ëĄŒ„Ś„Đ„Ă„Ż„Ő„Ą„€„ë %s €ò€É€ł€Ë„Ț„Š„ó„È€·€Ț€č€«Ą©"
-#: ../../diskdrake/interactive.pm_.c:557
+#: ../../diskdrake/interactive.pm_.c:567
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "„Ç„Đ„€„č %s €ò€É€ł€Ë„Ț„Š„ó„È€·€Ț€č€«Ą©"
-#: ../../diskdrake/interactive.pm_.c:563
+#: ../../diskdrake/interactive.pm_.c:573
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1857,135 +1881,135 @@ msgstr ""
"„Ț„Š„ó„È„Ę„€„ó„È€«€éŒè€êœą€Ż€ł€È€ŹœĐÍè€Ț€»€óĄŁ\n"
"€Ț€ș„ëĄŒ„Ś„Đ„Ă„Ż€òČòœü€·€Æ€Ż€À€”€€ĄŁ"
-#: ../../diskdrake/interactive.pm_.c:584
+#: ../../diskdrake/interactive.pm_.c:594
#, fuzzy, c-format
msgid "Where do you want to mount %s?"
msgstr "„Ç„Đ„€„č %s €ò€É€ł€Ë„Ț„Š„ó„È€·€Ț€č€«Ą©"
-#: ../../diskdrake/interactive.pm_.c:608
+#: ../../diskdrake/interactive.pm_.c:618
msgid "Computing FAT filesystem bounds"
msgstr "fat „Ő„Ą„€„ë„·„č„Æ„à€Î¶­łŠ€ò·Ś»»"
-#: ../../diskdrake/interactive.pm_.c:608 ../../diskdrake/interactive.pm_.c:667
-#: ../../install_interactive.pm_.c:131
+#: ../../diskdrake/interactive.pm_.c:618 ../../diskdrake/interactive.pm_.c:677
+#: ../../install_interactive.pm_.c:133
msgid "Resizing"
msgstr "„ê„”„€„șĂæ"
-#: ../../diskdrake/interactive.pm_.c:640
+#: ../../diskdrake/interactive.pm_.c:650
msgid "This partition is not resizeable"
msgstr "€ł€Î„ŃĄŒ„Æ„Ł„·„ç„ó€Ï„ê„”„€„ș€Ç€­€Ț€»€ó"
-#: ../../diskdrake/interactive.pm_.c:645
+#: ../../diskdrake/interactive.pm_.c:655
msgid "All data on this partition should be backed-up"
msgstr "€ł€Î„ŃĄŒ„Æ„Ł„·„ç„óŸć€Î„ÇĄŒ„ż€Ï„Đ„Ă„Ż„ą„Ă„Ś€č€ë€Ù€­€Ç€č"
-#: ../../diskdrake/interactive.pm_.c:647
+#: ../../diskdrake/interactive.pm_.c:657
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr "„ê„”„€„șžć€Ë€ÏĄą„ŃĄŒ„Æ„Ł„·„ç„ó %s Ÿć€Î„ÇĄŒ„ż€ÏŒș€ï€ì€Ț€č"
-#: ../../diskdrake/interactive.pm_.c:652
+#: ../../diskdrake/interactive.pm_.c:662
msgid "Choose the new size"
msgstr "ż·€·€€„”„€„ș€òÁȘÂò"
-#: ../../diskdrake/interactive.pm_.c:653
+#: ../../diskdrake/interactive.pm_.c:663
msgid "New size in MB: "
msgstr "MB €Ç€Î„”„€„ș: "
-#: ../../diskdrake/interactive.pm_.c:706
+#: ../../diskdrake/interactive.pm_.c:716
msgid "Which disk do you want to move it to?"
msgstr "€É€Î„Ç„Ł„č„Ż€Ë°ÜÆ°€·€Ț€č€«?"
-#: ../../diskdrake/interactive.pm_.c:707
+#: ../../diskdrake/interactive.pm_.c:717
msgid "Sector"
msgstr "„»„Ż„ż"
-#: ../../diskdrake/interactive.pm_.c:708
+#: ../../diskdrake/interactive.pm_.c:718
msgid "Which sector do you want to move it to?"
msgstr "€É€Î„»„Ż„ż€ò°ÜÆ°€·€Ț€č€«Ą©"
-#: ../../diskdrake/interactive.pm_.c:711
+#: ../../diskdrake/interactive.pm_.c:721
msgid "Moving"
msgstr "°ÜÆ°Ăæ"
-#: ../../diskdrake/interactive.pm_.c:711
+#: ../../diskdrake/interactive.pm_.c:721
msgid "Moving partition..."
msgstr "„ŃĄŒ„Æ„Ł„·„ç„ó€ò°ÜÆ°Ăæ..."
-#: ../../diskdrake/interactive.pm_.c:728
+#: ../../diskdrake/interactive.pm_.c:738
msgid "Choose an existing RAID to add to"
msgstr "ÄÉČĂ€č€ëŽûž€Î RAID €òÁȘ€ó€ÇČŒ€”€€"
-#: ../../diskdrake/interactive.pm_.c:729 ../../diskdrake/interactive.pm_.c:746
+#: ../../diskdrake/interactive.pm_.c:739 ../../diskdrake/interactive.pm_.c:756
msgid "new"
msgstr "ż·”Ź"
-#: ../../diskdrake/interactive.pm_.c:744
+#: ../../diskdrake/interactive.pm_.c:754
msgid "Choose an existing LVM to add to"
msgstr "ÄÉČĂ€č€ëŽûž€Î LVM €òÁȘ€ó€ÇČŒ€”€€"
-#: ../../diskdrake/interactive.pm_.c:749
+#: ../../diskdrake/interactive.pm_.c:759
msgid "LVM name?"
msgstr "LVM ÌŸ€ÏĄ©"
-#: ../../diskdrake/interactive.pm_.c:790
+#: ../../diskdrake/interactive.pm_.c:800
msgid "This partition can't be used for loopback"
msgstr "€ł€Î„ŃĄŒ„Æ„Ł„·„ç„ó€Ï„ëĄŒ„Ś„Đ„Ă„Ż€Ë€Ï»È€š€Ț€»€ó"
-#: ../../diskdrake/interactive.pm_.c:803
+#: ../../diskdrake/interactive.pm_.c:813
msgid "Loopback"
msgstr "„ëĄŒ„Ś„Đ„Ă„Ż"
-#: ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:814
msgid "Loopback file name: "
msgstr "„ëĄŒ„Ś„Đ„Ă„Ż„Ő„Ą„€„ëÌŸ: "
-#: ../../diskdrake/interactive.pm_.c:809
+#: ../../diskdrake/interactive.pm_.c:819
msgid "Give a file name"
msgstr "„Ő„Ą„€„ëÌŸ€òÆțÎÏ"
-#: ../../diskdrake/interactive.pm_.c:812
+#: ../../diskdrake/interactive.pm_.c:822
msgid "File already used by another loopback, choose another one"
msgstr "„Ő„Ą„€„ë€Ï€č€Ç€ËÊÌ€Î„ëĄŒ„Ś„Đ„Ă„Ż€Ç»ÈÍŃĂæĄŁÂŸ€Î€òÁȘ€Ó€Ț€·€ç€Š"
-#: ../../diskdrake/interactive.pm_.c:813
+#: ../../diskdrake/interactive.pm_.c:823
msgid "File already exists. Use it?"
msgstr "„Ő„Ą„€„ë€Ï€č€Ç€Ëžș߀·€Ț€čĄŁ€€€Ț€ą€ë€Î€ò»È€€€Ț€č€«Ą©"
-#: ../../diskdrake/interactive.pm_.c:836
+#: ../../diskdrake/interactive.pm_.c:846
msgid "Mount options"
msgstr "„Ț„Š„ó„È„Ș„Ś„·„ç„ó"
-#: ../../diskdrake/interactive.pm_.c:843
+#: ../../diskdrake/interactive.pm_.c:853
msgid "Various"
msgstr "€œ€ÎŸ"
-#: ../../diskdrake/interactive.pm_.c:907 ../../standalone/drakfloppy_.c:103
+#: ../../diskdrake/interactive.pm_.c:917 ../../standalone/drakfloppy_.c:103
msgid "device"
msgstr "„Ç„Đ„€„č"
-#: ../../diskdrake/interactive.pm_.c:908
+#: ../../diskdrake/interactive.pm_.c:918
msgid "level"
msgstr "„ì„Ù„ë"
-#: ../../diskdrake/interactive.pm_.c:909
+#: ../../diskdrake/interactive.pm_.c:919
msgid "chunk size"
msgstr "„Á„ă„ó„Ż„”„€„ș"
-#: ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:934
msgid "Be careful: this operation is dangerous."
msgstr "Ăí°Ő: €ł€ÎÁàșî€ÏŽíž±€Ç€čĄŁ"
-#: ../../diskdrake/interactive.pm_.c:939
+#: ../../diskdrake/interactive.pm_.c:949
msgid "What type of partitioning?"
msgstr "€É€ó€Ê„ŃĄŒ„Æ„Ł„·„ç„ó€Ç€č€«Ą©"
-#: ../../diskdrake/interactive.pm_.c:955
+#: ../../diskdrake/interactive.pm_.c:965
#, fuzzy, c-format
msgid "The package %s is needed. Install it?"
msgstr "„Ń„Ă„±ĄŒ„ž %s €ŹÉŹÍŚ€Ç€čĄŁ„€„ó„č„ÈĄŒ„뀷€Ț€č€«Ą©"
-#: ../../diskdrake/interactive.pm_.c:969
+#: ../../diskdrake/interactive.pm_.c:979
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -1996,7 +2020,7 @@ msgstr ""
"€œ€ł€Ë /boot €Ïșî€ì€Ț€»€óĄŁ/boot€Ź€œ€ł€À€ÈĄąLILO €Ź€Š€Ț€ŻÆŻ€«€Ê€€€·Ą€\n"
"LILO €ò»È€ï€Ê€€€Ê€é /boot €ÏÍŚ€ê€Ț€»€ó€«€é"
-#: ../../diskdrake/interactive.pm_.c:973
+#: ../../diskdrake/interactive.pm_.c:983
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -2008,7 +2032,7 @@ msgstr ""
"»ę€Ă€Æ€€€Ț€»€ó€ÍĄŁLILO €ò„ÖĄŒ„È„Ț„ÍĄŒ„ž„ă€Ë»È€Š€Ê€éĄ€/boot „ŃĄŒ„Æ„Ł\n"
"„·„ç„ó€ÎÄÉČĂ€ò€ȘËș€ì€Ê€ŻĄŁ"
-#: ../../diskdrake/interactive.pm_.c:979
+#: ../../diskdrake/interactive.pm_.c:989
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
@@ -2018,44 +2042,44 @@ msgstr ""
"/boot „ŃĄŒ„Æ„Ł„·„ç„óÌ”€·€Ç€ł€ì€òÁàșîœĐÍè€ë„ÖĄŒ„È„íĄŒ„À€Ï€ą€ê€Ț€»€óĄŁ\n"
"€Ç€č€«€é /boot „ŃĄŒ„Æ„Ł„·„ç„ó€ÎÄÉČĂ€ò€ȘËș€ì€Ê€ŻĄŁ"
-#: ../../diskdrake/interactive.pm_.c:999
+#: ../../diskdrake/interactive.pm_.c:1009
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "„É„é„€„Ö %s €Î„ŃĄŒ„Æ„Ł„·„ç„ó„ÆĄŒ„Ö„ë€ò„Ç„Ł„č„Ż€Ëœń€­čț€ß€Ț€čĄȘ"
-#: ../../diskdrake/interactive.pm_.c:1003
+#: ../../diskdrake/interactive.pm_.c:1013
msgid "You'll need to reboot before the modification can take place"
msgstr "„ê„ÖĄŒ„È€·€Æ„ŃĄŒ„Æ„Ł„·„ç„ó„ÆĄŒ„Ö„ë€ÎÊŃčč€òÈż±Ç€”€»€ëÉŹÍŚ€Ź€ą€ê€Ț€č"
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1024
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr "„Ő„©ĄŒ„Ț„Ă„È€·€ż€éĄą„ŃĄŒ„Æ„Ł„·„ç„ó %s Ÿć€Î„ÇĄŒ„ż€ÏŒș€ï€ì€Ț€čĄŁ"
-#: ../../diskdrake/interactive.pm_.c:1016
+#: ../../diskdrake/interactive.pm_.c:1026
msgid "Formatting"
msgstr "„Ő„©ĄŒ„Ț„Ă„ÈĂæ"
-#: ../../diskdrake/interactive.pm_.c:1017
+#: ../../diskdrake/interactive.pm_.c:1027
#, c-format
msgid "Formatting loopback file %s"
msgstr "„ëĄŒ„Ś„Đ„Ă„Ż„Ő„Ą„€„ë %s €ò„Ő„©ĄŒ„Ț„Ă„ÈĂæ"
-#: ../../diskdrake/interactive.pm_.c:1018
-#: ../../install_steps_interactive.pm_.c:476
+#: ../../diskdrake/interactive.pm_.c:1028
+#: ../../install_steps_interactive.pm_.c:459
#, c-format
msgid "Formatting partition %s"
msgstr "„ŃĄŒ„Æ„Ł„·„ç„ó %s €ò„Ő„©ĄŒ„Ț„Ă„ÈĂæ"
-#: ../../diskdrake/interactive.pm_.c:1029
+#: ../../diskdrake/interactive.pm_.c:1039
msgid "Hide files"
msgstr "„Ő„Ą„€„ë€ò±Ł€č"
-#: ../../diskdrake/interactive.pm_.c:1029
+#: ../../diskdrake/interactive.pm_.c:1039
msgid "Move files to the new partition"
msgstr "ż·€·€€„ŃĄŒ„Æ„Ł„·„ç„ó€Ë„Ő„Ą„€„ë€ò°ÜÆ°"
-#: ../../diskdrake/interactive.pm_.c:1030
+#: ../../diskdrake/interactive.pm_.c:1040
#, c-format
msgid ""
"Directory %s already contains data\n"
@@ -2064,83 +2088,83 @@ msgstr ""
"„Ç„Ł„ì„Ż„È„ê %s €Ë€Ï€č€Ç€Ë„ÇĄŒ„ż€Ź€ą€ê€Ț€č\n"
"(%s)"
-#: ../../diskdrake/interactive.pm_.c:1041
+#: ../../diskdrake/interactive.pm_.c:1051
msgid "Moving files to the new partition"
msgstr "ż·€·€€„ŃĄŒ„Æ„Ł„·„ç„ó€Ë„Ő„Ą„€„ë€ò°ÜÆ°Ăæ"
-#: ../../diskdrake/interactive.pm_.c:1045
+#: ../../diskdrake/interactive.pm_.c:1055
#, c-format
msgid "Copying %s"
msgstr "%s „ł„ÔĄŒĂæ"
-#: ../../diskdrake/interactive.pm_.c:1049
+#: ../../diskdrake/interactive.pm_.c:1059
#, c-format
msgid "Removing %s"
msgstr "%s șïœüĂæ"
-#: ../../diskdrake/interactive.pm_.c:1059
+#: ../../diskdrake/interactive.pm_.c:1069
#, c-format
msgid "partition %s is now known as %s"
msgstr "„ŃĄŒ„Æ„Ł„·„ç„ó %s €Ï€ł€ì€Ç %s€Ë€Ê€ê€Ț€·€żĄŁ"
-#: ../../diskdrake/interactive.pm_.c:1080
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1090
+#: ../../diskdrake/interactive.pm_.c:1149
msgid "Device: "
msgstr "„Ç„Đ„€„č: "
-#: ../../diskdrake/interactive.pm_.c:1081
+#: ../../diskdrake/interactive.pm_.c:1091
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "DOS „Ç„Đ„€„č„ì„żĄŒ: %s (żäÄê)\n"
-#: ../../diskdrake/interactive.pm_.c:1085
-#: ../../diskdrake/interactive.pm_.c:1093
-#: ../../diskdrake/interactive.pm_.c:1157
+#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1103
+#: ../../diskdrake/interactive.pm_.c:1168
msgid "Type: "
msgstr "„ż„€„Ś: "
-#: ../../diskdrake/interactive.pm_.c:1089
+#: ../../diskdrake/interactive.pm_.c:1099
msgid "Name: "
msgstr "ÌŸÁ°: "
-#: ../../diskdrake/interactive.pm_.c:1097
+#: ../../diskdrake/interactive.pm_.c:1107
#, c-format
msgid "Start: sector %s\n"
msgstr "ł«»Ï: „»„Ż„ż %s\n"
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1108
#, c-format
msgid "Size: %s"
msgstr "„”„€„ș: %s"
-#: ../../diskdrake/interactive.pm_.c:1100
+#: ../../diskdrake/interactive.pm_.c:1110
#, c-format
msgid ", %s sectors"
msgstr ", %s „»„Ż„ż"
-#: ../../diskdrake/interactive.pm_.c:1102
+#: ../../diskdrake/interactive.pm_.c:1112
#, c-format
msgid "Cylinder %d to %d\n"
msgstr "„·„ê„ó„À %d €«€é„·„ê„ó„À %d\n"
-#: ../../diskdrake/interactive.pm_.c:1103
+#: ../../diskdrake/interactive.pm_.c:1113
msgid "Formatted\n"
msgstr "„Ő„©ĄŒ„Ț„Ă„ÈșŃ€ß\n"
-#: ../../diskdrake/interactive.pm_.c:1104
+#: ../../diskdrake/interactive.pm_.c:1114
msgid "Not formatted\n"
msgstr "Ì€„Ő„©ĄŒ„Ț„Ă„È\n"
-#: ../../diskdrake/interactive.pm_.c:1105
+#: ../../diskdrake/interactive.pm_.c:1115
msgid "Mounted\n"
msgstr "„Ț„Š„ó„ÈșŃ€ß\n"
-#: ../../diskdrake/interactive.pm_.c:1106
+#: ../../diskdrake/interactive.pm_.c:1116
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1108
+#: ../../diskdrake/interactive.pm_.c:1118
#, c-format
msgid ""
"Loopback file(s):\n"
@@ -2149,7 +2173,7 @@ msgstr ""
"„ëĄŒ„Ś„Đ„Ă„Ż„Ő„Ą„€„ë:\n"
" %s\n"
-#: ../../diskdrake/interactive.pm_.c:1109
+#: ../../diskdrake/interactive.pm_.c:1119
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -2157,27 +2181,27 @@ msgstr ""
"„Ç„Ő„©„ë„È€Ç„ŃĄŒ„Æ„Ł„·„ç„ó„ÖĄŒ„È\n"
" (MS-DOS €Î„ÖĄŒ„È, lilo €Ç€Ï€Ê€€)\n"
-#: ../../diskdrake/interactive.pm_.c:1111
+#: ../../diskdrake/interactive.pm_.c:1121
#, c-format
msgid "Level %s\n"
msgstr "„ì„Ù„ë %s\n"
-#: ../../diskdrake/interactive.pm_.c:1112
+#: ../../diskdrake/interactive.pm_.c:1122
#, c-format
msgid "Chunk size %s\n"
msgstr "„Á„ă„ó„Ż„”„€„ș %s\n"
-#: ../../diskdrake/interactive.pm_.c:1113
+#: ../../diskdrake/interactive.pm_.c:1123
#, c-format
msgid "RAID-disks %s\n"
msgstr "RAID„Ç„Ł„č„Ż %s\n"
-#: ../../diskdrake/interactive.pm_.c:1115
+#: ../../diskdrake/interactive.pm_.c:1125
#, c-format
msgid "Loopback file name: %s"
msgstr "„ëĄŒ„Ś„Đ„Ă„Ż„Ő„Ą„€„ëÌŸ: %s"
-#: ../../diskdrake/interactive.pm_.c:1118
+#: ../../diskdrake/interactive.pm_.c:1128
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -2189,7 +2213,7 @@ msgstr ""
"„É„é„€„ĐĄŠ„ŃĄŒ„Æ„Ł„·„ç„ó€é€·€€€Ç€č€èĄŁ\n"
"€€€ž€é€Ê€€€Û€Š€Ź€€€€€Ç€·€ç€ŠĄŁ\n"
-#: ../../diskdrake/interactive.pm_.c:1121
+#: ../../diskdrake/interactive.pm_.c:1131
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2201,57 +2225,61 @@ msgstr ""
"„ŃĄŒ„Æ„Ł„·„ç„ó€ÏĄą\n"
"„Ç„ć„ą„ë„ÖĄŒ„È„·„č„Æ„àÍрǀ襣\n"
-#: ../../diskdrake/interactive.pm_.c:1140
+#: ../../diskdrake/interactive.pm_.c:1150
+msgid "Read-only"
+msgstr ""
+
+#: ../../diskdrake/interactive.pm_.c:1151
#, c-format
msgid "Size: %s\n"
msgstr "„”„€„ș: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1141
+#: ../../diskdrake/interactive.pm_.c:1152
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "„ž„Ș„á„È„ê: %s „·„ê„ó„À, %s „Ű„Ă„É, %s „»„Ż„ż\n"
-#: ../../diskdrake/interactive.pm_.c:1142
+#: ../../diskdrake/interactive.pm_.c:1153
msgid "Info: "
msgstr "ŸđÊó: "
-#: ../../diskdrake/interactive.pm_.c:1143
+#: ../../diskdrake/interactive.pm_.c:1154
#, c-format
msgid "LVM-disks %s\n"
msgstr "LVM„Ç„Ł„č„Ż %s\n"
-#: ../../diskdrake/interactive.pm_.c:1144
+#: ../../diskdrake/interactive.pm_.c:1155
#, c-format
msgid "Partition table type: %s\n"
msgstr "„ŃĄŒ„Æ„Ł„·„ç„ó„ÆĄŒ„Ö„ë„ż„€„Ś: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1145
+#: ../../diskdrake/interactive.pm_.c:1156
#, fuzzy, c-format
msgid "on channel %d id %d\n"
msgstr "„Đ„č %d id %d\n"
-#: ../../diskdrake/interactive.pm_.c:1175
+#: ../../diskdrake/interactive.pm_.c:1186
msgid "Filesystem encryption key"
msgstr "„Ő„Ą„€„ë°ĆčæČœ€Îž°"
-#: ../../diskdrake/interactive.pm_.c:1176
+#: ../../diskdrake/interactive.pm_.c:1187
msgid "Choose your filesystem encryption key"
msgstr "„Ő„Ą„€„ë„·„č„Æ„à°ĆčæČœÍрΞ°€òÁȘ€ó€Ç€Ż€À€”€€"
-#: ../../diskdrake/interactive.pm_.c:1179
+#: ../../diskdrake/interactive.pm_.c:1190
#, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr "€ł€Î°Ćčæž°€ÏŽÊñ€č€ź€Ț€čĄÊșÇÄă€Ç€â %d Êž»ú»È€Ă€Æ€Ż€À€”€€ĄË"
-#: ../../diskdrake/interactive.pm_.c:1180
+#: ../../diskdrake/interactive.pm_.c:1191
msgid "The encryption keys do not match"
msgstr "°Ćčæž°€Ź°ìĂŚ€·€Ț€»€ó"
-#: ../../diskdrake/interactive.pm_.c:1183
+#: ../../diskdrake/interactive.pm_.c:1194
msgid "Encryption key"
msgstr "°Ćčæž°"
-#: ../../diskdrake/interactive.pm_.c:1184
+#: ../../diskdrake/interactive.pm_.c:1195
msgid "Encryption key (again)"
msgstr "°Ćčæž°ĄÊ€â€Š°ìĆÙÆțÎÏ€·€Æ€Ż€À€”€€ĄË"
@@ -2288,7 +2316,7 @@ msgid ""
"Please enter your username, password and domain name to access this host."
msgstr ""
-#: ../../diskdrake/smbnfs_gtk.pm_.c:178
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3527
#, fuzzy
msgid "Username"
msgstr "„æĄŒ„¶ÌŸ"
@@ -2302,23 +2330,23 @@ msgstr "NIS „É„á„€„ó"
msgid "Search servers"
msgstr "„”ĄŒ„Đ€òžĄșś"
-#: ../../fs.pm_.c:552 ../../fs.pm_.c:562 ../../fs.pm_.c:566 ../../fs.pm_.c:570
-#: ../../fs.pm_.c:574 ../../fs.pm_.c:578
+#: ../../fs.pm_.c:544 ../../fs.pm_.c:554 ../../fs.pm_.c:558 ../../fs.pm_.c:562
+#: ../../fs.pm_.c:566 ../../fs.pm_.c:570
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s „Ő„©ĄŒ„Ț„Ă„È, %s ŒșÇÔ"
-#: ../../fs.pm_.c:615
+#: ../../fs.pm_.c:607
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "%s €ò „ż„€„Ś %s €Ç„Ő„©ĄŒ„Ț„Ă„È€č€ëÊęËĄ€òĂ΀ê€Ț€»€ó"
-#: ../../fs.pm_.c:687 ../../fs.pm_.c:731
+#: ../../fs.pm_.c:681 ../../fs.pm_.c:724
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr "„ŃĄŒ„Æ„Ł„·„ç„ó %s €ò„Ç„Ł„ì„Ż„È„ê %s €Ë„Ț„Š„ó„Ȁǀ­€Ț€»€ó€Ç€·€ż"
-#: ../../fs.pm_.c:746 ../../partition_table.pm_.c:602
+#: ../../fs.pm_.c:739 ../../partition_table.pm_.c:598
#, c-format
msgid "error unmounting %s: %s"
msgstr "%s €ò„ą„ó„Ț„Š„ó„ÈĂæ€Ë„š„éĄŒ: %s"
@@ -2335,33 +2363,51 @@ msgstr "/usr ۂ"
msgid "server"
msgstr "„”ĄŒ„Đ"
-#: ../../fsedit.pm_.c:472
+#: ../../fsedit.pm_.c:240
+#, fuzzy, c-format
+msgid ""
+"I can't read the partition table of device %s, it's too corrupted for me :(\n"
+"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
+"The other solution is to not allow DrakX to modify the partition table.\n"
+"(the error is %s)\n"
+"\n"
+"Do you agree to loose all the partitions?\n"
+msgstr ""
+"„ŃĄŒ„Æ„Ł„·„ç„ó„ÆĄŒ„ք뀏ÆÉ€á€Ț€»€óĄ€Čő€ì€Æ€€€ë€è€Š€Ç€č:(\n"
+"ÉÔÀ”€Ê„ŃĄŒ„Æ„Ł„·„ç„ó€òŸĂ€·€Æ€ß€Ț€·€ç€Š€«Ą©ĄÊ€ł€ì€À€È„ÇĄŒ„ż€ŹÁŽÉôŸĂ€š€Ț"
+"€čĄȘĄË\n"
+"€ą€ë€€€ÏĄąDrakX€Ë„ŃĄŒ„Æ„Ł„·„ç„ó„ÆĄŒ„Ö„ë€òÊŃč耔€»€Ê€€Œê€Ź€ą€ê€Ț€čĄŁ\n"
+"(„š„éĄŒ€Ï%s€Ç€č)\n"
+"\n"
+"ÁŽ„ŃĄŒ„Æ„Ł„·„ç„ó€òŸĂ”€Æ€è€í€·€€€Ç€č€ÍĄ©\n"
+
+#: ../../fsedit.pm_.c:501
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr "16MB°ÊČŒ€Î„ŃĄŒ„Æ„Ł„·„ç„ó€Ë JFS €Ï»È€š€Ț€»€ó"
-#: ../../fsedit.pm_.c:473
+#: ../../fsedit.pm_.c:502
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr "32MB°ÊČŒ€Î„ŃĄŒ„Æ„Ł„·„ç„ó€Ë ReiserFS €Ï»È€š€Ț€»€ó"
-#: ../../fsedit.pm_.c:492
+#: ../../fsedit.pm_.c:521
msgid "Mount points must begin with a leading /"
msgstr "„Ț„Š„ó„È„Ę„€„ó„È€Ï / €Ç»Ï€Ț€ëÉŹÍŚ€Ź€ą€ê€Ț€č"
-#: ../../fsedit.pm_.c:493
+#: ../../fsedit.pm_.c:522
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "„ŃĄŒ„Æ„Ł„·„ç„ó€Ï„Ț„Š„ó„È„Ę„€„ó„È %s €Ë„Ț„Š„ó„ÈșŃ€ß\n"
-#: ../../fsedit.pm_.c:497
+#: ../../fsedit.pm_.c:526
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr "LVM ÏÀÍę„Ü„ê„ćĄŒ„à€Ï„Ț„Š„ó„È„Ę„€„ó„È %s €Ë€Ï»È€š€Ț€»€ó"
-#: ../../fsedit.pm_.c:499
+#: ../../fsedit.pm_.c:528
msgid "This directory should remain within the root filesystem"
msgstr "€ł€Î„Ç„Ł„ì„Ż„È„ê€Ï root „Ő„Ą„€„ë„·„č„Æ„àÆâ€Ë»Ä€·€Æ€Ż€À€”€€"
-#: ../../fsedit.pm_.c:501
+#: ../../fsedit.pm_.c:530
#, fuzzy
msgid ""
"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
@@ -2370,229 +2416,277 @@ msgstr ""
"€ł€Î„Ț„Š„ó„È„Ę„€„ó„È€Ë€ÏĄąŒÂș߀č€ë„Ő„Ą„€„ë„·„č„Æ„à (ext2, reiserfs) \n"
"€ŹÉŹÍŚ€Ç€čĄŁ\n"
-#: ../../fsedit.pm_.c:503
+#: ../../fsedit.pm_.c:532
#, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr "„Ț„Š„ó„È„Ę„€„ó„È %s €Ë€Ï°ĆčæČœ„Ő„Ą„€„ë„·„č„Æ„à€Ï»È€š€Ț€»€ó"
-#: ../../fsedit.pm_.c:570
+#: ../../fsedit.pm_.c:599
msgid "Not enough free space for auto-allocating"
msgstr "Œ«Æ°łä€êĆö€Æ€Ź€Ç€­€ë€Û€É¶ő€­ÍÆÎÌ€Ź€ą€ê€Ț€»€ó"
-#: ../../fsedit.pm_.c:572
+#: ../../fsedit.pm_.c:601
msgid "Nothing to do"
msgstr "€č€ë€ł€È€Ź€ą€ê€Ț€»€ó"
-#: ../../fsedit.pm_.c:665
+#: ../../fsedit.pm_.c:694
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "œń€­čț€ß€Î€ż€á %s €òł«€Ż€È€­„š„éĄŒ€ŹÈŻÀž: %s"
-#: ../../fsedit.pm_.c:750
+#: ../../harddrake/sound.pm_.c:155
+msgid "No alternative driver"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:156
+#, c-format
+msgid "There's no known OSS/ALSA alternative driver for your sound card (%s)"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:158
+#, fuzzy
+msgid "Sound configuration"
+msgstr "CUPS ÀßÄê"
+
+#: ../../harddrake/sound.pm_.c:159
+#, c-format
msgid ""
-"An error occurred - no valid devices were found on which to create new "
-"filesystems. Please check your hardware for the cause of this problem"
+"Here you can select an alternative driver (either OSS or ALSA) for your "
+"sound card (%s)"
msgstr ""
-"„š„éĄŒÈŻÀž - ż·€·€€„Ő„Ą„€„ë„·„č„Æ„à€òčœĂۀǀ­€ë€è€Š€Ê„Ç„Đ„€„耏\n"
-"ž«ÉŐ€«€ê€Ț€»€óĄŁ€Ê€Ë€Źž¶°ű€«Ąą„ÏĄŒ„É„Š„§„ą€ò„Á„§„Ă„Ż€·€Æ€Ż€À€”€€"
-#: ../../fsedit.pm_.c:773
-msgid "You don't have any partitions!"
-msgstr "„ŃĄŒ„Æ„Ł„·„ç„󀏀ą€ê€Ț€»€óĄȘ"
+#: ../../harddrake/sound.pm_.c:162
+#, fuzzy
+msgid "Driver:"
+msgstr "„É„é„€„Đ"
-#: ../../harddrake/ui.pm_.c:15
+#: ../../harddrake/sound.pm_.c:173
+#, fuzzy
+msgid "No known driver"
+msgstr "X „É„é„€„Đ"
+
+#: ../../harddrake/sound.pm_.c:174
+#, c-format
+msgid "There's no known driver for your sound card (%s)"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:177
+#, fuzzy
+msgid "Unkown driver"
+msgstr "Ì€Ă΀΄â„Ç„ë"
+
+#: ../../harddrake/sound.pm_.c:178
+#, c-format
+msgid ""
+"The \"%s\" driver for your sound card is unlisted\n"
+"\n"
+"Please send the output of the \"lspcidrake -v\" command to\n"
+"<install at mandrakesoft dot com>\n"
+"with subject: unlisted sound driver \"%s\""
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:16
#, fuzzy
msgid "Model"
msgstr "„â„ž„ćĄŒ„ë"
-#: ../../harddrake/ui.pm_.c:15
+#: ../../harddrake/ui.pm_.c:16
#, fuzzy
msgid "hard disk model"
msgstr "„«ĄŒ„É mem (DMA)"
-#: ../../harddrake/ui.pm_.c:16
+#: ../../harddrake/ui.pm_.c:17
#, fuzzy
msgid "Channel"
msgstr "„­„ă„ó„»„ë"
-#: ../../harddrake/ui.pm_.c:16
+#: ../../harddrake/ui.pm_.c:17
msgid "EIDE/SCSI channel"
msgstr ""
-#: ../../harddrake/ui.pm_.c:18
+#: ../../harddrake/ui.pm_.c:19
msgid "Bus"
msgstr ""
-#: ../../harddrake/ui.pm_.c:19
+#: ../../harddrake/ui.pm_.c:20
msgid ""
"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
msgstr ""
-#: ../../harddrake/ui.pm_.c:20
+#: ../../harddrake/ui.pm_.c:21
msgid "Module"
msgstr "„â„ž„ćĄŒ„ë"
-#: ../../harddrake/ui.pm_.c:20
+#: ../../harddrake/ui.pm_.c:21
msgid "the module of the GNU/Linux kernel that handle that device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:21
+#: ../../harddrake/ui.pm_.c:22
msgid "Media class"
msgstr ""
-#: ../../harddrake/ui.pm_.c:21
+#: ../../harddrake/ui.pm_.c:22
msgid "class of hardware device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:22 ../../printerdrake.pm_.c:1404
+#: ../../harddrake/ui.pm_.c:23 ../../printerdrake.pm_.c:1517
msgid "Description"
msgstr "„Ś„ê„󄿀ÎÀâÌÀ"
-#: ../../harddrake/ui.pm_.c:22
+#: ../../harddrake/ui.pm_.c:23
msgid "this field describe the device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:24
+#: ../../harddrake/ui.pm_.c:25
#, fuzzy
msgid "Bus identification"
msgstr "ǧŸÚ"
-#: ../../harddrake/ui.pm_.c:25
+#: ../../harddrake/ui.pm_.c:26
msgid ""
-"- PCI and USB devices : this list the vendor, device, subvendor and "
-"subdevice PCI/USB ids"
+"- PCI and USB devices: this list the vendor, device, subvendor and subdevice "
+"PCI/USB ids"
msgstr ""
-#: ../../harddrake/ui.pm_.c:27
+#: ../../harddrake/ui.pm_.c:28
msgid "Location on the bus"
msgstr ""
-#: ../../harddrake/ui.pm_.c:28
+#: ../../harddrake/ui.pm_.c:29
msgid ""
"- pci devices: this gives the PCI slot, device and function of this card\n"
"- eide devices: the device is either a slave or a master device\n"
"- scsi devices: the scsi bus and the scsi device ids"
msgstr ""
-#: ../../harddrake/ui.pm_.c:31
+#: ../../harddrake/ui.pm_.c:32
#, fuzzy
msgid "Old device file"
msgstr "„Ő„Ą„€„ë€òÁȘÂò"
-#: ../../harddrake/ui.pm_.c:32
+#: ../../harddrake/ui.pm_.c:33
msgid "old static device name used in dev package"
msgstr ""
-#: ../../harddrake/ui.pm_.c:33
+#: ../../harddrake/ui.pm_.c:34
#, fuzzy
msgid "New devfs device"
msgstr "„ČĄŒ„È„Š„§„€„Ç„Đ„€„č"
-#: ../../harddrake/ui.pm_.c:34
+#: ../../harddrake/ui.pm_.c:35
msgid "new dinamic device name generated by incore kernel devfs"
msgstr ""
-#: ../../harddrake/ui.pm_.c:35
+#: ../../harddrake/ui.pm_.c:36
#, fuzzy
msgid "Number of buttons"
msgstr "2„Ü„ż„ó"
-#: ../../harddrake/ui.pm_.c:36
+#: ../../harddrake/ui.pm_.c:37
msgid "the vendor name of the device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:60
+#: ../../harddrake/ui.pm_.c:38
+#, fuzzy
+msgid "Alternative drivers"
+msgstr "Ề΄Ƅč„È„ÚĄŒ„ž (A4)"
+
+#: ../../harddrake/ui.pm_.c:39
+msgid "the list of alternative drivers for this sound card"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:63
#, fuzzy
msgid "/_Quit"
msgstr "œȘλ"
-#: ../../harddrake/ui.pm_.c:61 ../../harddrake/ui.pm_.c:62
-#: ../../harddrake/ui.pm_.c:68 ../../standalone/logdrake_.c:110
+#: ../../harddrake/ui.pm_.c:64 ../../harddrake/ui.pm_.c:65
+#: ../../harddrake/ui.pm_.c:71 ../../standalone/logdrake_.c:110
msgid "/_Help"
msgstr "/„Ű„ë„Ś(_H)"
-#: ../../harddrake/ui.pm_.c:62
+#: ../../harddrake/ui.pm_.c:65
#, fuzzy
msgid "/_Help..."
msgstr "/„Ű„ë„Ś(_H)"
-#: ../../harddrake/ui.pm_.c:63
+#: ../../harddrake/ui.pm_.c:66
msgid "Harddrake help"
msgstr ""
-#: ../../harddrake/ui.pm_.c:64
+#: ../../harddrake/ui.pm_.c:67
msgid ""
"Description of the fields:\n"
"\n"
msgstr ""
-#: ../../harddrake/ui.pm_.c:68
+#: ../../harddrake/ui.pm_.c:71
#, fuzzy
msgid "/_About..."
msgstr "/„Ű„ë„Ś(H)/ŸđÊó(_A)..."
-#: ../../harddrake/ui.pm_.c:69
+#: ../../harddrake/ui.pm_.c:72
msgid "About Harddrake"
msgstr ""
-#: ../../harddrake/ui.pm_.c:70
+#: ../../harddrake/ui.pm_.c:73
msgid ""
"This is HardDrake, a Mandrake hardware configuration tool.\n"
"Version:"
msgstr ""
-#: ../../harddrake/ui.pm_.c:71
+#: ../../harddrake/ui.pm_.c:74
#, fuzzy
msgid "Author:"
msgstr "„ȘĄŒ„È„Ś„íĄŒ„Ö"
-#: ../../harddrake/ui.pm_.c:83
+#: ../../harddrake/ui.pm_.c:86
#, fuzzy
msgid "Harddrake2 version "
msgstr "„Ç„Ł„č„Ż€ÎžĄœĐ"
-#: ../../harddrake/ui.pm_.c:91
+#: ../../harddrake/ui.pm_.c:103
#, fuzzy
msgid "Detected hardware"
msgstr "„ÏĄŒ„É„Š„§„ą€ÎŸđÊó€òž«€ÆČŒ€”€€"
-#: ../../harddrake/ui.pm_.c:92
+#: ../../harddrake/ui.pm_.c:105
#, fuzzy
-msgid "Configure module"
-msgstr "„Ț„Š„č€ÎÀßÄê"
+msgid "Information"
+msgstr "ŸđÊó€òÉœŒš"
-#: ../../harddrake/ui.pm_.c:92
+#: ../../harddrake/ui.pm_.c:108
#, fuzzy
-msgid "Informations"
-msgstr "ŸđÊó€òÉœŒš"
+msgid "Configure module"
+msgstr "„Ț„Š„č€ÎÀßÄê"
-#: ../../harddrake/ui.pm_.c:92
+#: ../../harddrake/ui.pm_.c:109
msgid "Run config tool"
msgstr ""
-#: ../../harddrake/ui.pm_.c:96
+#: ../../harddrake/ui.pm_.c:113
#, fuzzy
msgid "Detection in progress"
msgstr "„ĘĄŒ„È %s €ÇžĄœĐ€·€Ț€·€ż"
-#: ../../harddrake/ui.pm_.c:96 ../../interactive.pm_.c:388
+#: ../../harddrake/ui.pm_.c:113 ../../interactive.pm_.c:391
msgid "Please wait"
msgstr "€ȘÂÔ€ÁČŒ€”€€"
-#: ../../harddrake/ui.pm_.c:139
+#: ../../harddrake/ui.pm_.c:156
msgid "primary"
msgstr ""
-#: ../../harddrake/ui.pm_.c:139
+#: ../../harddrake/ui.pm_.c:156
#, fuzzy
msgid "secondary"
msgstr "€ą€È %d ÉĂ"
-#: ../../harddrake/ui.pm_.c:176
+#: ../../harddrake/ui.pm_.c:197
msgid "You can configure each parameter of the module here."
msgstr ""
-#: ../../harddrake/ui.pm_.c:192
+#: ../../harddrake/ui.pm_.c:213
#, fuzzy, c-format
msgid "Running \"%s\" ..."
msgstr "„Ś„ê„ó„ż \"%s\" €òșïœüĂæ..."
@@ -2625,16 +2719,16 @@ msgstr ""
#: ../../harddrake/v4l.pm_.c:213
#, fuzzy
-msgid "Card model :"
+msgid "Card model:"
msgstr "„«ĄŒ„É mem (DMA)"
#: ../../harddrake/v4l.pm_.c:214
#, fuzzy
-msgid "Tuner type :"
+msgid "Tuner type:"
msgstr "„ż„€„Ś€ÎÊŃčč"
#: ../../harddrake/v4l.pm_.c:215
-msgid "Number of capture buffers :"
+msgid "Number of capture buffers:"
msgstr ""
#: ../../harddrake/v4l.pm_.c:215
@@ -2643,11 +2737,11 @@ msgstr ""
#: ../../harddrake/v4l.pm_.c:217
#, fuzzy
-msgid "PLL setting :"
+msgid "PLL setting:"
msgstr "ÀßÄê€ÎÆÉ€ßčț€ßĂæ"
#: ../../harddrake/v4l.pm_.c:218
-msgid "Radio support :"
+msgid "Radio support:"
msgstr ""
#: ../../harddrake/v4l.pm_.c:218
@@ -2659,22 +2753,22 @@ msgid ""
"GNU/Linux is a multiuser system, and this means that each user can have his\n"
"own preferences, his own files and so on. You can read the ``User Guide''\n"
"to learn more. But unlike \"root\", which is the administrator, the users\n"
-"you will add here will not be entitled to change anything except their own\n"
-"files and their own configuration. You will have to create at least one\n"
-"regular user for yourself. That account is where you should log in for\n"
-"routine use. Although it is very practical to log in as \"root\" everyday,\n"
-"it may also be very dangerous! The slightest mistake could mean that your\n"
-"system would not work any more. If you make a serious mistake as a regular\n"
-"user, you may only lose some information, but not the entire system.\n"
+"you add here will not be entitled to change anything except their own files\n"
+"and their own configuration. You will have to create at least one regular\n"
+"user for yourself. That account is where you should log in for routine use.\n"
+"Although it is very practical to log in as \"root\" everyday, it may also\n"
+"be very dangerous! The slightest mistake could mean that your system would\n"
+"not work any more. If you make a serious mistake as a regular user, you may\n"
+"only lose some information, but not the entire system.\n"
"\n"
"First, you have to enter your real name. This is not mandatory, of course -\n"
"as you can actually enter whatever you want. DrakX will then take the first\n"
"word you have entered in the box and will bring it over to the \"User\n"
"name\". This is the name this particular user will use to log onto the\n"
"system. You can change it. You then have to enter a password here. A\n"
-"non-privileged (regular) user's password is not as crucial as \"root\"' one\n"
-"from a security point of view, but that is no reason to neglect it: after\n"
-"all, your files are at risk.\n"
+"non-privileged (regular) user's password is not as crucial as the \"root\"'\n"
+"one from a security point of view, but that is no reason to neglect it:\n"
+"after all, your files are at risk.\n"
"\n"
"If you click on \"Accept user\", you can then add as many as you want. Add\n"
"a user for each one of your friends: your father or your sister, for\n"
@@ -2813,7 +2907,7 @@ msgid ""
"to have a graphical workstation!\n"
"\n"
"Moving the mouse cursor over a group name will display a short explanatory\n"
-"text about that group. If you deselect all groups when performing a regular\n"
+"text about that group. If you unselect all groups when performing a regular\n"
"installation (by opposition to an upgrade), a dialog will pop up proposing\n"
"different options for a minimal installation:\n"
"\n"
@@ -2886,10 +2980,10 @@ msgstr ""
#: ../../help.pm_.c:128
msgid ""
-"Finally, depending on whether or not you selected individual packages, you\n"
-"will be presented a tree containing all packages classified by groups and\n"
-"subgroups. While browsing the tree, you can select entire groups,\n"
-"subgroups, or individual packages.\n"
+"Finally, depending on whether or not you chose to be able to select\n"
+"individual packages, you will be presented a tree containing all packages\n"
+"classified by groups and subgroups. While browsing the tree, you can select\n"
+"entire groups, subgroups, or individual packages.\n"
"\n"
"Whenever you select a package on the tree, a description appears on the\n"
"right. When your selection is finished, click the \"Install\" button which\n"
@@ -2956,11 +3050,11 @@ msgstr ""
#: ../../help.pm_.c:164
msgid ""
-"You are now proposed to set up your Internet/network connection. If you\n"
-"wish to connect your computer to the Internet or to a local network, click\n"
-"\"OK\". The autodetection of network devices and modem will be launched. If\n"
-"this detection fails, uncheck the \"Use auto detection\" box next time. You\n"
-"may also choose not to configure the network, or do it later; in that case,\n"
+"You are now able to set up your Internet/network connection. If you wish to\n"
+"connect your computer to the Internet or to a local network, click \"OK\".\n"
+"The autodetection of network devices and modem will be launched. If this\n"
+"detection fails, uncheck the \"Use auto detection\" box next time. You may\n"
+"also choose not to configure the network, or do it later; in that case,\n"
"simply click the \"Cancel\" button.\n"
"\n"
"Available connections are: traditional modem, ISDN modem, ADSL connection,\n"
@@ -3032,7 +3126,7 @@ msgstr ""
msgid ""
"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
"local time according to the time zone you selected. It is however possible\n"
-"to deactivate this by deselecting \"Hardware clock set to GMT\" so that the\n"
+"to deactivate this by unselecting \"Hardware clock set to GMT\" so that the\n"
"hardware clock is the same as the system clock. This is useful when the\n"
"machine is hosting another operating system like Windows.\n"
"\n"
@@ -3075,7 +3169,9 @@ msgid ""
"If you can see the message during the test, and answer \"Yes\", then DrakX\n"
"will proceed to the next step. If you cannot see the message, it simply\n"
"means that the configuration was wrong and the test will automatically end\n"
-"after 10 seconds, restoring the screen."
+"after 10 seconds, restoring the screen. Refer then to the Video\n"
+"configuration section of the user guide for more information on how to\n"
+"configure your display."
msgstr ""
"X (X „Š„Ł„ó„É„Š„·„č„Æ„à) €ÏĄąGNU/Linux „°„é„Ő„Ł„Ă„Ż„€„󄿥Œ„Ő„§ĄŒ„č€Î\n"
"„­„â€ÇĄąMandrake Linux €Ë€Ä€€€Æ€€€ë„°„é„Ő„Ł„Ă„ŻŽÄ¶­ (KDE, Gnome, \n"
@@ -3094,30 +3190,7 @@ msgstr ""
"„á„Ă„»ĄŒ„ž€Źž«€š€Ê€±€ì€ĐĄąÀßÄê€Ź€Ț€Á€Ź€Ă€Æ€€€ë€È€€€Š€ł€È€Ê€Î€ÇĄą€œ€Î\n"
"„Æ„č„È€Ï10ÉĂ€ÇœȘλ€·€ÆĄą€â€È€ÎČèÌÌ€ËÌá€ê€Ț€čĄŁ"
-#: ../../help.pm_.c:237
-msgid ""
-"The first time you try the X configuration, you may not be very satisfied\n"
-"with its display (screen is too small, shifted left or right...). Hence,\n"
-"even if X starts up correctly, DrakX then asks you if the configuration\n"
-"suits you. It will also propose to change it by displaying a list of valid\n"
-"modes it could find, asking you to select one.\n"
-"\n"
-"As a last resort, if you still cannot get X to work, choose \"Change\n"
-"graphics card\", select \"Unlisted card\", and when prompted on which\n"
-"server, choose \"FBDev\". This is a failsafe option which works with any\n"
-"modern graphics card. Then choose \"Test again\" to be sure."
-msgstr ""
-"°ìÈŻÌÜ€À€ÈĄą€ą€Ț€êČèÌ̀ζńč瀏€è€Ż€Ê€€€«€â€·€ì€Ț€»€óĄŁ\n"
-"ČèÌÌ€ŹŸź€”€č€ź€ë€È€«Ąąșž±Š€Ë€ș€ì€Æ€€€ë€È€«ĄËĄŁ€À€«€é X €ŹÀ”€·€Ż\n"
-"”ŻÆ°€·€żŸìčç€Ë€Ç€âĄąDrakX €ÏÀßÄê€ŹĆŹÀÚ€«€É€Š€«€­€€€ÆĄąČÄÇœ€ÊłÆŒï€Î\n"
-"„âĄŒ„É€òÉœŒš€·€ÆĄąč„€­€Ê€Î€òÁȘ€Ù€ÈžÀ€Š€ï€±€Ç€čĄŁ\n"
-"\n"
-"șÇžć€ÎŒêĂʀȀ·€ÆĄąÁêÊŃ€ï€é€șX€ŹÆ°€«€Ê€±€ì€ĐĄÖ„°„é„Ő„Ł„Ă„Ż„č„«ĄŒ„É€ÎÊŃč襌\n"
-"€òÁȘ€ÓĄÖ°ìÍś€Ë€Ê€€„«ĄŒ„ÉĄŚ€òÁȘÂòĄą€É€Î„”ĄŒ„Đ€ò»È€Š€«€­€«€ì€ż€é FBDev€ò\n"
-"ÁȘ€Ó€Ț€čĄŁ€ł€ì€Ï„Ő„§ĄŒ„ë„»ĄŒ„Ő€ÊÁȘÂò»è€ÇĄąșǶá€Î€č€Ù€Æ€Î„°„é„Ő„Ł„Ă„Ż„č\n"
-"„«ĄŒ„ɀǻȀš€Ț€čĄŁ€œ€ì€«€éĄÖșÆ„Æ„č„ÈĄŚ€òÁȘ€ó€ÇłÎǧ€·€Ț€·€ç€ŠĄŁ"
-
-#: ../../help.pm_.c:249
+#: ../../help.pm_.c:239
msgid ""
"Finally, you will be asked whether you want to see the graphical interface\n"
"at boot. Note this question will be asked even if you chose not to test the\n"
@@ -3130,7 +3203,8 @@ msgstr ""
"„Ç„Ł„č„Ś„ì„€€ÎÀßÄê€Ź€Š€Ț€Ż€€€«€Ê€«€Ă€ż»ț€Ë€ÏĄą€ł€ł€Ç€Ï€â€Á€í€óĄÖ€€€€€šĄŚ\n"
"€ÈĆú€š€Ț€·€ç€ŠĄŁ"
-#: ../../help.pm_.c:256
+#: ../../help.pm_.c:246
+#, fuzzy
msgid ""
"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
@@ -3150,10 +3224,10 @@ msgid ""
"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
"password, or any other reason.\n"
"\n"
-"When you click on this step, you will be asked to enter a disk inside the\n"
-"drive. The floppy disk you will insert must be empty or contain data which\n"
-"you do not need. You will not have to format it since DrakX will rewrite\n"
-"the whole disk."
+"If you say \"Yes\", you will be asked to enter a disk inside the drive. The\n"
+"floppy disk you will insert must be empty or contain data which you do not\n"
+"need. You will not have to format it since DrakX will rewrite the whole\n"
+"disk."
msgstr ""
"Mandrake Linux CDROM €Ë€Ï„ì„č„­„ćĄŒ„âĄŒ„É€ŹÁÈ€ßčț€ó€Ç€ą€ê€Ț€čĄŁ€ł€ì€ò\n"
"»È€Š€Ë€Ï CDROM €«€é”ŻÆ°€·€ÆĄą”ŻÆ°»ț€Ë >>F1<< „­ĄŒ€òČĄ€·Ąą„Ś„í„ó„Ś„È€Ç\n"
@@ -3178,7 +3252,7 @@ msgstr ""
"Æț€Ă€Æ€€€Ê€€€â€Î€Ë€·€Ț€·€ç€ŠĄŁ„Ő„©ĄŒ„Ț„Ă„È€č€ëÉŹÍŚ€Ï€ą€ê€Ț€»€óĄŁ\n"
"DrakX€ŹŽ°ÁŽ€Ë€œ€ì€òœń€­Žč€š€Ț€čĄŁ"
-#: ../../help.pm_.c:280
+#: ../../help.pm_.c:270
msgid ""
"At this point, you need to choose where you want to install the Mandrake\n"
"Linux operating system on your hard drive. If your hard drive is empty or\n"
@@ -3211,7 +3285,9 @@ msgid ""
"\n"
" * \"Use existing partition\": the wizard has detected one or more existing\n"
"Linux partitions on your hard drive. If you want to use them, choose this\n"
-"option;\n"
+"option. You will then be asked to choose the mount points associated to\n"
+"each of the partitions. The legacy mount points are selected by default,\n"
+"and you should generally keep them.\n"
"\n"
" * \"Use the free space on the Windows; partition\": if Microsoft Windows\n"
"is installed on your hard drive and takes all the space available on it,\n"
@@ -3244,7 +3320,9 @@ msgid ""
" * \"Expert mode\": choose this option if you want to manually partition\n"
"your hard drive. Be careful - it is a powerful but dangerous choice. You\n"
"can very easily lose all your data. Hence, do not choose this unless you\n"
-"know what you are doing."
+"know what you are doing. To know how do use the DiskDrake utility used\n"
+"here, refer to the section ``Managing Your Partitions'' of the ````User\n"
+"Guide''''"
msgstr ""
"€”€Æ€ł€ó€É€ÏĄą„ÏĄŒ„É„Ç„Ł„č„ŻŸć€ÇMandrake Linux OS €ò€É€ł€Ë„€„ó„č„ÈĄŒ„ë\n"
"€č€ë€«ÁȘ€Ö€ł€È€Ë€Ê€ê€Ț€čĄŁ€â€·„ÏĄŒ„É„Ç„Ł„č„Ż€Ź¶ő€«Ąą€č€Ç€ËỀΠOS €Ź\n"
@@ -3310,7 +3388,7 @@ msgstr ""
" Žíž±€ÊÁȘÂò€Ç€â€ą€ê€Ț€čĄŁ„Ç„Ł„č„ŻŸć€ÎÁŽ„ÇĄŒ„ż€ò€ą€Ă€”€êŸĂ€·€Æ€·€Ț€š€Ț€čĄŁ\n"
" €è€Ż€è€Ż€ï€«€Ă€ż€Š€š€Ç€Ê€±€ì€ĐĄą€ł€ì€ÏÁȘ€Đ€Ê€€€Ç€Ż€À€”€€ĄŁ"
-#: ../../help.pm_.c:347
+#: ../../help.pm_.c:341
msgid ""
"There you are. Installation is now complete and your GNU/Linux system is\n"
"ready to use. Just click \"OK\" to reboot the system. You can start\n"
@@ -3369,7 +3447,7 @@ msgstr ""
"(*) FAT ·ÁŒ°€Î„Ő„í„Ă„ÔĄŒ€ŹÉŹÍŚĄÊGNU/Linux €Çșî€ë€Ë€ÏĄÖmformat a:ĄŚ\n"
"€È„ż„€„Ś€·€Ț€čĄŁ)"
-#: ../../help.pm_.c:378
+#: ../../help.pm_.c:372
msgid ""
"Any partitions that have been newly defined must be formatted for use\n"
"(formatting means creating a filesystem).\n"
@@ -3417,7 +3495,7 @@ msgstr ""
"ĄÖ„­„ă„󄻄륌€ò„Ż„ê„Ă„Ż€·€Æ€Ż€À€”€€ĄŁ\n"
"ÉÔÎÉ„Ö„í„Ă„Ż€Î„Á„§„Ă„Ż€ò€·€ż€±€ì€ĐĄÖčâĆÙ€ÊÁȘÂòĄŚ€ò„Ż„ê„Ă„Ż€·€Ț€čĄŁ"
-#: ../../help.pm_.c:404
+#: ../../help.pm_.c:398
msgid ""
"Your new Mandrake Linux operating system is currently being installed.\n"
"Depending on the number of packages you will be installing and the speed of\n"
@@ -3431,12 +3509,12 @@ msgstr ""
"\n"
"€·€Đ€é€Ż€ȘÂÔ€Á€òĄŁ"
-#: ../../help.pm_.c:412
+#: ../../help.pm_.c:406
msgid ""
"At the time you are installing Mandrake Linux, it is likely that some\n"
"packages have been updated since the initial release. Some bugs may have\n"
"been fixed, and security issues solved. To allow you to benefit from these\n"
-"updates, you are now proposed to download them from the Internet. Choose\n"
+"updates, you are now able to download them from the Internet. Choose\n"
"\"Yes\" if you have a working Internet connection, or \"No\" if you prefer\n"
"to install updated packages later.\n"
"\n"
@@ -3458,7 +3536,7 @@ msgstr ""
"Čż€ŹÁȘ€Đ€ì€ż€«łÎǧ€·€Ț€·€ç€ŠĄŁĄÖ„€„ó„č„ÈĄŒ„륌€òČĄ€č€ÈĄąÁȘÂò„Ń„Ă„±ĄŒ„ž\n"
"€ŹÆÉ€ßčț€ß„€„ó„č„ÈĄŒ„뀔€ì€Ț€čĄŁĄÖ„­„ă„󄻄륌€ÇĂæĂǀǀ襣"
-#: ../../help.pm_.c:425
+#: ../../help.pm_.c:419
msgid ""
"Before continuing, you should read carefully the terms of the license. It\n"
"covers the whole Mandrake Linux distribution, and if you do not agree with\n"
@@ -3471,14 +3549,14 @@ msgstr ""
"€òČĄ€·€Æ€Ż€À€”€€ĄŁ€č€ë€È„€„ó„č„ÈĄŒ„뀏€č€°€ËœȘ€ï€ê€Ț€čĄŁ„€„ó„č„ÈĄŒ„ë€ò\n"
"Âł€±€ë€Ë€ÏĄąĄÖƱ°Ő€č€ëĄŚ„Ü„ż„ó€òČĄ€·€Æ€Ż€À€”€€ĄŁ"
-#: ../../help.pm_.c:432
+#: ../../help.pm_.c:426
msgid ""
"At this point, it is time to choose the security level desired for the\n"
"machine. As a rule of thumb, the more exposed the machine is, and the more\n"
"the data stored in it is crucial, the higher the security level should be.\n"
"However, a higher security level is generally obtained at the expense of\n"
-"easiness of use. Refer to the \"msec\" chapter of the ``Reference Manual''\n"
-"to get more information about the meaning of these levels.\n"
+"ease of use. Refer to the \"msec\" chapter of the ``Reference Manual'' to\n"
+"get more information about the meaning of these levels.\n"
"\n"
"If you do not know what to choose, keep the default option."
msgstr ""
@@ -3490,7 +3568,7 @@ msgstr ""
"\n"
"Čż€òÁȘ€Ù€Đ€€€€€«€ï€«€é€Ê€±€ì€ĐĄą„Ç„Ő„©„ë„Ȁ΀Ț€Ț€Ë€·€Æ€Ș€­€Ț€·€ç€ŠĄŁ"
-#: ../../help.pm_.c:442
+#: ../../help.pm_.c:436
msgid ""
"At this point, you need to choose which partition(s) will be used for the\n"
"installation of your Mandrake Linux system. If partitions have already been\n"
@@ -3507,26 +3585,26 @@ msgid ""
" * \"Clear all\": this option deletes all partitions on the selected hard\n"
"drive;\n"
"\n"
-" * \"Auto allocate\": this option enables to automatically create \"Ext2\"\n"
-"and swap partitions in free space of your hard drive;\n"
+" * \"Auto allocate\": this option enables to automatically create ext3 and\n"
+"swap partitions in free space of your hard drive;\n"
"\n"
-" * \"More\": gives access to additional features:\n"
+"\"More\": gives access to additional features:\n"
"\n"
-" * \"Save partition table\": saves the partition table to a floppy.\n"
-"Useful for later partition-table recovery if necessary. It is strongly\n"
-"recommended to perform this step;\n"
+" * \"Save partition table\": saves the partition table to a floppy. Useful\n"
+"for later partition-table recovery if necessary. It is strongly recommended\n"
+"to perform this step;\n"
"\n"
-" * \"Restore partition table\": allows to restore a previously saved\n"
+" * \"Restore partition table\": allows to restore a previously saved\n"
"partition table from floppy disk;\n"
"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you\n"
-"can try to recover it using this option. Please be careful and remember\n"
-"that it can fail;\n"
+" * \"Rescue partition table\": if your partition table is damaged, you can\n"
+"try to recover it using this option. Please be careful and remember that it\n"
+"can fail;\n"
"\n"
-" * \"Reload partition table\": discards all changes and loads your\n"
-"initial partition table;\n"
+" * \"Reload partition table\": discards all changes and loads your initial\n"
+"partition table;\n"
"\n"
-" * \"Removable media automounting\": unchecking this option will force\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
"users to manually mount and unmount removable medias such as floppies and\n"
"CD-ROMs.\n"
"\n"
@@ -3554,7 +3632,7 @@ msgid ""
" * Ctrl-m to set the mount point.\n"
"\n"
"To get information about the different filesystem types available, please\n"
-"read the ext2fs chapter from the ``Reference Manual''.\n"
+"read the ext2FS chapter from the ``Reference Manual''.\n"
"\n"
"If you are installing on a PPC machine, you will want to create a small HFS\n"
"``bootstrap'' partition of at least 1MB, which will be used by the yaboot\n"
@@ -3629,7 +3707,7 @@ msgstr ""
"€ł€Î„ŃĄŒ„Æ„Ł„·„ç„ó€òĄą€ż€È€š€Đ 50 MB €È€«Â瀭€á€Ë€·€Æ€Ș€Ż€ÈĄą€œ€ł€ËÍœÈś€Î\n"
"„«ĄŒ„Í„ë€äramdisk „€„áĄŒ„ž€òÊĘž€·€Æ€Ș€±€ÆĄą¶Û”Ț”ŻÆ°€Ë»È€š€ÆÊŰÍű€Ç€čĄŁ"
-#: ../../help.pm_.c:513
+#: ../../help.pm_.c:507
msgid ""
"More than one Microsoft partition has been detected on your hard drive.\n"
"Please choose the one you want to resize in order to install your new\n"
@@ -3691,34 +3769,34 @@ msgstr ""
"ĄÖ„Š„Ł„ó„É„Š„șÌŸĄŚ€ÏĄą„Š„Ł„ó„É„Š„ș€Ç€Î„É„é„€„ÖÊž»ú€Ç€čĄÊșÇœé€Î„Ç„Ł„č„Ż\n"
"€ä„ŃĄŒ„Æ„Ł„·„ç„ó€ÏĄÖC:ĄŚ„É„é„€„րǀč)ĄŁ"
-#: ../../help.pm_.c:544
+#: ../../help.pm_.c:538
msgid "Please be patient. This operation can take several minutes."
msgstr "€·€Đ€é€Ż€ȘÂÔ€Á€òĄŁ€ł€ÎÁàșî€Ï€·€Đ€é€Ż€«€«€ê€Ț€č€Î€ÇĄŁ"
-#: ../../help.pm_.c:547
+#: ../../help.pm_.c:541
msgid ""
"DrakX now needs to know if you want to perform a default (\"Recommended\")\n"
"installation or if you want to have greater control (\"Expert\"). You can\n"
"also choose to do a new install or an upgrade of an existing Mandrake Linux\n"
"system:\n"
"\n"
-" * \"Install\": completely wipes out the old system. In fact, depending on\n"
-"what currently holds your machine, you will be able to keep some old (Linux\n"
-"or other) partitions unchanged;\n"
+" * \"Install\": completely wipes out the old system, however, depending on\n"
+"what is currently installed on your machine, you may be able to keep some\n"
+"old partitions (Linux or otherwise) unchanged;\n"
"\n"
" * \"Upgrade\": this installation class allows to simply update the\n"
"packages currently installed on your Mandrake Linux system. It keeps the\n"
"current partitions of your hard drives as well as user configurations. All\n"
-"other configuration steps remain available with respect to plain\n"
+"other configuration steps remain available, similar to a normal\n"
"installation;\n"
"\n"
-" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
-"existing Mandrake Linux system while keeping all system configurations\n"
-"unchanged. Adding new packages to the current installation is also\n"
-"possible.\n"
+" * \"Upgrade Packages Only\": this new installation class allows you to\n"
+"upgrade an existing Mandrake Linux system while keeping all system\n"
+"configurations unchanged. Adding new packages to the current installation\n"
+"is also possible.\n"
"\n"
-"Upgrades should work fine for Mandrake Linux systems starting from \"8.1\"\n"
-"release.\n"
+"Upgrades should work fine on Mandrake Linux systems containing version\n"
+"\"8.1\" or later.\n"
"\n"
"Depending on your knowledge of GNU/Linux, select one of the following\n"
"choices:\n"
@@ -3727,11 +3805,11 @@ msgid ""
"operating system. The installation will be very easy and you will only be\n"
"asked a few questions;\n"
"\n"
-" * Expert: if you have a good knowledge of GNU/Linux, you can choose this\n"
-"installation class. The expert installation will allow you to perform a\n"
-"highly-customized installation. Answering some of the questions can be\n"
-"difficult if you do not have a good knowledge of GNU/Linux, so do not\n"
-"choose this unless you know what you are doing."
+" * Expert: if you have a good understanding of GNU/Linux, you may wish to\n"
+"perform a highly customized installation. Some of the decisions you will\n"
+"have to make may be difficult if you do not have good knowledge of\n"
+"GNU/Linux, so it is not recommended that those without a fair amount of\n"
+"experience select this installation class."
msgstr ""
"DrakX€Ï€ł€ó€É€ÏĄą€É€ó€ÊŒïÎà€Î„€„ó„č„ÈĄŒ„ë€ò€·€ż€€€«żÒ€Í€Ț€čĄŁ„Ç„Ő„©„ë„È\n"
"ĄÊżäŸ©ĄË„€„ó„č„ÈĄŒ„뀫Ąą€â€Ă€È„ł„ó„È„íĄŒ„뀷€ż€€€«ĄÊĄÖ„š„­„č„ŃĄŒ„ÈĄŚĄË\n"
@@ -3763,19 +3841,22 @@ msgstr ""
"GNU/Linux€Ë€Ä€€€Æ€è€Û€ÉŸÜ€·€Ż€Ê€€€ÈĄą€Ê€«€Ê€«Ćú€š€é€ì€Ê€€ŒÁÌ䀏\n"
"€ą€ê€Ț€čĄŁ€ï€«€Ă€żżÍ°Êł°€ÏĄą€ł€Î„Ż„é„č€ÏÁȘ€Đ€Ê€€€ł€ÈĄŁ"
-#: ../../help.pm_.c:584
+#: ../../help.pm_.c:578
msgid ""
"Normally, DrakX selects the right keyboard for you (depending on the\n"
-"language you have chosen) and you won't even see this step. However, you\n"
-"might not have a keyboard that corresponds exactly to your language: for\n"
-"example, if you are an English speaking Swiss person, you may still want\n"
-"your keyboard to be a Swiss keyboard. Or if you speak English but are\n"
-"located in Quebec, you may find yourself in the same situation. In both\n"
-"cases, you will have to go back to this installation step and select an\n"
-"appropriate keyboard from the list.\n"
+"language you have chosen). However, you might not have a keyboard that\n"
+"corresponds exactly to your language: for example, if you are an English\n"
+"speaking Swiss person, you may still want your keyboard to be a Swiss\n"
+"keyboard. Or if you speak English but are located in Quebec, you may find\n"
+"yourself in the same situation. In both cases, you will have to go back to\n"
+"this installation step and select an appropriate keyboard from the list.\n"
"\n"
"Click on the \"More\" button to be presented with the complete list of\n"
-"supported keyboards."
+"supported keyboards.\n"
+"\n"
+"If you choose a keyboard layout based on a non-latin alphabet, you will be\n"
+"asked on next dialog to choose the key binding that will switch the\n"
+"keyboard layout between the latin and non latin layouts."
msgstr ""
"€Ő€Ä€ŠĄądrakX€Ï€ą€Ê€żÍŃ€ÎÀ”€·€€„­ĄŒ„ÜĄŒ„É€òŒ«Æ°ĆȘ€ËÁȘ€Ó€Ț€čĄÊžÀžì€ÎÁȘÂò\n"
"€ò€â€È€ËÈœĂÇ€·€Ț€čĄËĄŁ€À€«€é€ł€Î„č„Æ„Ă„Ś€Ï€Ő€Ä€Š€ÏœĐ€Æ€­€Ț€»€óĄŁ€ŹĄąŒ«ÊŹ\n"
@@ -3787,8 +3868,10 @@ msgstr ""
"\n"
"ĄÖ€â€Ă€ÈĄŚ„Ü„ż„ó€òČĄ€č€ÈĄą„”„ĘĄŒ„È€”€ì€ë„­ĄŒ„ÜĄŒ„É€Ź€č€Ù€ÆÉœŒš€”€ì€Ț€čĄŁ"
-#: ../../help.pm_.c:597
+#: ../../help.pm_.c:594
msgid ""
+"The first step is to choose your preferred language.\n"
+"\n"
"Please choose your preferred language for installation and system usage.\n"
"\n"
"Clicking on the \"Advanced\" button will allow you to select other\n"
@@ -3811,7 +3894,7 @@ msgstr ""
"žÀžì€ÏÊŁżôÁȘ€Ù€Ț€čĄŁÄÉČÀΞÀžìĄÊ„턱ĄŒ„ëĄË€òÁȘ€ó€ÇĄąOK€òČĄ€·€ÆłÎǧ€·€ż€éĄą\n"
"Œ«Æ°ĆȘ€ËŒĄ€Î„č„Æ„Ă„Ś€ËżÊ€ß€Ț€čĄŁ"
-#: ../../help.pm_.c:610
+#: ../../help.pm_.c:609
msgid ""
"DrakX generally detects the number of buttons your mouse has. If not, it\n"
"assumes you have a two-button mouse and will set it up for third-button\n"
@@ -3824,7 +3907,14 @@ msgid ""
"If you choose a mouse other than the default, a test screen will be\n"
"displayed. Use the buttons and wheel to verify that the settings are\n"
"correct. If the mouse is not working well, press the space bar or [Return]\n"
-"to \"Cancel\" and choose again."
+"to \"Cancel\" and choose again.\n"
+"\n"
+"Wheel mouses are sometimes not automatically detected. You will need to\n"
+"manually select it in the list. Be sure to select the one corresponding to\n"
+"the correct port it is attached to. After you have pressed the \"OK\"\n"
+"button, a mouse image is displayed. You then need to move the wheel of your\n"
+"mouse to activate it correctly. Then test all buttons and movements are\n"
+"correct."
msgstr ""
"„Ç„Ő„©„ë„È€À€ÈĄąDrakX €ÏŁČ„Ü„ż„ó„Ț„Š„č€òÁÛÄꀷ€ÆĄąĂæ±û„Ü„ż„ó€ò„š„ß„ć„ìĄŒ„È\n"
"€č€ëÀßÄê€Ë€Ê€Ă€Æ€€€Ț€čĄŁDrakX €ÏĄą€œ€ì€ŹPS/2„Ț„Š„耫USB„Ț„Š„耫€òŒ«Æ°ÈœÄê\n"
@@ -3837,7 +3927,7 @@ msgstr ""
"Æ°€«€Ê€±€ì€ĐĄą„č„ÚĄŒ„耫ĄÖ„ê„żĄŒ„óĄŚ€òČĄ€·€Æ„­„ă„󄻄뀷€ÆĄąÁȘ€Ó€Ê€Ș€·\n"
"€Ț€čĄŁ"
-#: ../../help.pm_.c:624
+#: ../../help.pm_.c:630
msgid ""
"Please select the correct port. For example, the \"COM1\" port under\n"
"Windows is named \"ttyS0\" under GNU/Linux."
@@ -3845,7 +3935,7 @@ msgstr ""
"À”€·€€„ĘĄŒ„È€òÁȘ€ó€Ç€Ż€À€”€€ĄŁ€ż€È€š€ĐĄąMS „Š„Ł„ó„É„Š„ș€Ç€Î\n"
"COM1„ĘĄŒ„È€ÏĄąGNU/Linux€Ç€Ï ttyS0 €È€€€ŠÌŸÁ°€Ë€Ê€ê€Ț€čĄŁ"
-#: ../../help.pm_.c:628
+#: ../../help.pm_.c:634
msgid ""
"This is the most crucial decision point for the security of your GNU/Linux\n"
"system: you have to enter the \"root\" password. \"root\" is the system\n"
@@ -3875,9 +3965,9 @@ msgid ""
"In Expert mode, you will be asked if you will be connecting to an\n"
"authentication server, like NIS or LDAP.\n"
"\n"
-"If your network uses the LDAP (or NIS) protocol for authentication, select\n"
-"\"LDAP\" (or \"NIS\") as authentication. If you do not know, ask your\n"
-"network administrator.\n"
+"If your network uses either of the LDAP, NIS, or PDC Windows Domain\n"
+"authentication services, select the appropriate one as \"authentication\".\n"
+"If you do not know, ask your network administrator.\n"
"\n"
"If your computer is not connected to any administrated network, you will\n"
"want to choose \"Local files\" for authentication."
@@ -3909,7 +3999,7 @@ msgstr ""
"ĄÖNIS€ò»È€ŠĄŚ„Ș„Ś„·„ç„ó€òÁȘ€Ó€Ț€čĄŁĄÖOKĄŚ€òČĄ€·€ż€éĄąÉŹÍŚ€ÊŸđÊó\n"
"€òÆțÎÏ€·€Ț€čĄŁ"
-#: ../../help.pm_.c:664
+#: ../../help.pm_.c:670
msgid ""
"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
@@ -3948,16 +4038,7 @@ msgid ""
"options. !!\n"
"\n"
"Clicking the \"Advanced\" button in this dialog will offer many advanced\n"
-"options, which are reserved to the expert user.\n"
-"\n"
-"After you have configured the general bootloader parameters, the list of\n"
-"boot options which will be available at boot time will be displayed.\n"
-"\n"
-"If there is another operating system installed on your machine, it will\n"
-"automatically be added to the boot menu. Here, you can choose to fine-tune\n"
-"the existing options. Select an entry and click \"Modify\" to modify or\n"
-"remove it; \"Add\" creates a new entry; and \"Done\" goes on to the next\n"
-"installation step."
+"options, which are reserved for the expert user."
msgstr ""
"LILO €È GRUB €Ï GNU/Linux €Î”ŻÆ°€Ë»È€ï€ì€ë„ÖĄŒ„È„íĄŒ„À€Ç€čĄŁ€ł€ÎĂÊłŹ€Ï\n"
"€Ő€Ä€ŠĄąŽ°ÁŽ€ËŒ«Æ°Čœ€”€ì€Æ€€€Ț€čĄŁDrakX€Ï„Ç„Ł„č„Ż€Î„ÖĄŒ„È„»„Ż„ż€òÊŹÀÏ€·€Æ\n"
@@ -4004,13 +4085,16 @@ msgstr ""
"€ż€ê€Ç€­€Ț€čĄŁĄÖŽ°Î»ĄŚ€òČĄ€»€ĐĄą„€„ó„č„ÈĄŒ„ë€ÎŒĄ€Î„č„Æ„Ă„Ś€ŰżÊ€ß\n"
"€Ț€čĄŁ"
-#: ../../help.pm_.c:713
+#: ../../help.pm_.c:710
msgid ""
-"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
-"either GNU/Linux or any other operating system present on your computer.\n"
-"Normally, these other operating systems are correctly detected and\n"
-"installed. If this is not the case, you can add an entry by hand in this\n"
-"screen. Be careful to choose the correct parameters.\n"
+"After you have configured the general bootloader parameters, the list of\n"
+"boot options which will be available at boot time will be displayed.\n"
+"\n"
+"If there is another operating system installed on your machine, it will\n"
+"automatically be added to the boot menu. Here, you can choose to fine-tune\n"
+"the existing options. Select an entry and click \"Modify\" to modify or\n"
+"remove it; \"Add\" creates a new entry; and \"Done\" goes on to the next\n"
+"installation step.\n"
"\n"
"You may also not want to give access to these other operating systems to\n"
"anyone. In which case, you can delete the corresponding entries. But then,\n"
@@ -4096,18 +4180,18 @@ msgstr ""
#: ../../help.pm_.c:759
msgid ""
-"DrakX now detects any IDE device present in your computer. It will also\n"
-"scan for one or more PCI SCSI card(s) on your system. If a SCSI card is\n"
+"DrakX now detects any IDE devices present in your computer. It will also\n"
+"scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
"found, DrakX will automatically install the appropriate driver.\n"
"\n"
"Because hardware detection does not always detect a piece of hardware,\n"
"DrakX will ask you to confirm if a PCI SCSI card is present. Click \"Yes\"\n"
"if you know that there is a SCSI card installed in your machine. You will\n"
-"be presented a list of SCSI cards to choose from. Click \"No\" if you have\n"
-"no SCSI hardware. If you are unsure, you can check the list of hardware\n"
-"detected in your machine by selecting \"See hardware info\" and clicking\n"
-"\"OK\". Examine the list of hardware and then click on the \"OK\" button to\n"
-"return to the SCSI interface question.\n"
+"be presented with a list of SCSI cards to choose from. Click \"No\" if you\n"
+"have no SCSI hardware. If you are unsure, you can check the list of\n"
+"hardware detected in your machine by selecting \"See hardware info\" and\n"
+"clicking \"OK\". Examine the list of hardware and then click on the \"OK\"\n"
+"button to return to the SCSI interface question.\n"
"\n"
"If you have to manually specify your adapter, DrakX will ask if you want to\n"
"specify options for it. You should allow DrakX to probe the hardware for\n"
@@ -4318,7 +4402,9 @@ msgid ""
"order to configure the clock according to the time zone you are in;\n"
"\n"
" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
-"configuration wizard;\n"
+"configuration wizard. Consult the corresponding chapter of the ``User\n"
+"Guide'' for more information on how to setup a new printer. The interface\n"
+"presented there is similar to the one used during installation;\n"
"\n"
" * \"Sound card\": if a sound card is detected on your system, it is\n"
"displayed here. No modification possible at installation time;\n"
@@ -4356,7 +4442,7 @@ msgstr ""
" * ĄÖISDN „«ĄŒ„ÉĄŚ: ISDN „«ĄŒ„É€ŹžĄœĐ€”€ì€ż€é€ł€ł€ËÉœŒš€”€ì€Ț€čĄŁ\n"
"„Ü„ż„ó€ò„Ż„ê„Ă„Ż€č€ë€ÈŽŰÏą„Ń„é„áĄŒ„ż€ŹÊŃ€š€é€ì€Ț€čĄŁ"
-#: ../../help.pm_.c:894
+#: ../../help.pm_.c:896
msgid ""
"Choose the hard drive you want to erase in order to install your new\n"
"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
@@ -4366,7 +4452,7 @@ msgstr ""
"„ÏĄŒ„É„Ç„Ł„č„Ż€òÁȘ€ó€Ç€Ż€À€”€€ĄŁ€œ€Î„ÏĄŒ„É„Ç„Ł„č„ŻŸć€Î„ÇĄŒ„ż€ÏÁŽÉô\n"
"ŸĂ€š€ÆČóÉü€Ç€­€Ț€»€óĄŁĂí°Ő€·€Æ€Ż€À€”€€ĄŁ"
-#: ../../help.pm_.c:899
+#: ../../help.pm_.c:901
msgid ""
"Click on \"OK\" if you want to delete all data and partitions present on\n"
"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
@@ -4397,7 +4483,7 @@ msgstr ""
msgid "You must also format %s"
msgstr "%s €â„Ő„©ĄŒ„Ț„Ă„È€·€Æ€Ż€À€”€€"
-#: ../../install_any.pm_.c:418
+#: ../../install_any.pm_.c:423
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -4421,20 +4507,29 @@ msgstr ""
"\n"
"ËÜĆö€Ë€ł€Î„”ĄŒ„Đ€ò„€„ó„č„ÈĄŒ„뀷€Æ€€€€€Ç€č€ÍĄ©\n"
-#: ../../install_any.pm_.c:453
+#: ../../install_any.pm_.c:441
+#, c-format
+msgid ""
+"The following packages will be removed to allow upgrading your system: %s\n"
+"\n"
+"\n"
+"Do you really want to remove these packages?\n"
+msgstr ""
+
+#: ../../install_any.pm_.c:471
msgid "Can't use broadcast with no NIS domain"
msgstr "NIS „É„á„€„ó€Ź€Ê€€€Î€Ç„Ö„íĄŒ„É„­„ă„č„È€Ź»È€š€Ț€»€ó"
-#: ../../install_any.pm_.c:841
+#: ../../install_any.pm_.c:862
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "FAT·ÁŒ°€Î„Ő„í„Ă„ÔĄŒ€ò„É„é„€„Ö %s €ËÁȚÆț"
-#: ../../install_any.pm_.c:845
+#: ../../install_any.pm_.c:866
msgid "This floppy is not FAT formatted"
msgstr "€ł€Î„Ő„í„Ă„ÔĄŒ€Ï FAT„Ő„©ĄŒ„Ț„Ă„È€ž€ă€ą€ê€Ț€»€ó"
-#: ../../install_any.pm_.c:857
+#: ../../install_any.pm_.c:878
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -4442,11 +4537,19 @@ msgstr ""
"€ł€ÎÊĘž€·€ż„Ń„Ă„±ĄŒ„žÁȘÂò€ò»È€Š€Ë€ÏĄą„€„ó„č„ÈĄŒ„ë€Î”ŻÆ°»ț€ËĄÖlinux "
"defcfg=floppyĄŚ€È»ŰÄꀷ€Ț€čĄŁ"
-#: ../../install_any.pm_.c:880 ../../partition_table.pm_.c:771
+#: ../../install_any.pm_.c:901 ../../partition_table.pm_.c:767
#, c-format
msgid "Error reading file %s"
msgstr "„Ő„Ą„€„ë %s €ÎÆɀ߀Ȁꄚ„éĄŒ€Ç€č"
+#: ../../install_any.pm_.c:1023
+msgid ""
+"An error occurred - no valid devices were found on which to create new "
+"filesystems. Please check your hardware for the cause of this problem"
+msgstr ""
+"„š„éĄŒÈŻÀž - ż·€·€€„Ő„Ą„€„ë„·„č„Æ„à€òčœĂۀǀ­€ë€è€Š€Ê„Ç„Đ„€„耏\n"
+"ž«ÉŐ€«€ê€Ț€»€óĄŁ€Ê€Ë€Źž¶°ű€«Ąą„ÏĄŒ„É„Š„§„ą€ò„Á„§„Ă„Ż€·€Æ€Ż€À€”€€"
+
#: ../../install_interactive.pm_.c:23
#, c-format
msgid ""
@@ -4480,59 +4583,59 @@ msgstr ""
"\n"
"čœ€ï€ș€ËÂł€±€Ț€č€«Ą©"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:168
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:169
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "/boot/efi €Ë FAT „ŃĄŒ„Æ„Ł„·„ç„ó€ò„Ț„Š„ó„È€·€Æ€Ż€À€”€€"
-#: ../../install_interactive.pm_.c:91
+#: ../../install_interactive.pm_.c:92
msgid "Use free space"
msgstr "„Ő„êĄŒ„č„ÚĄŒ„č€Î»ÈÍŃ"
-#: ../../install_interactive.pm_.c:93
+#: ../../install_interactive.pm_.c:94
msgid "Not enough free space to allocate new partitions"
msgstr "ż·€·€€„ŃĄŒ„Æ„Ł„·„ç„ó€Ëłä€êĆö€Æ€ëœœÊŹ€Ê„Ő„êĄŒ„č„ÚĄŒ„耏€ą€ê€Ț€»€ó"
-#: ../../install_interactive.pm_.c:101
+#: ../../install_interactive.pm_.c:102
msgid "Use existing partitions"
msgstr "Žûž€Î„ŃĄŒ„Æ„Ł„·„ç„ó€ò»ÈÍŃ"
-#: ../../install_interactive.pm_.c:103
+#: ../../install_interactive.pm_.c:104
msgid "There is no existing partition to use"
msgstr "žș߀·€Ê€€„ŃĄŒ„Æ„Ł„·„ç„ó"
-#: ../../install_interactive.pm_.c:110
+#: ../../install_interactive.pm_.c:111
msgid "Use the Windows partition for loopback"
msgstr "Windows „ŃĄŒ„Æ„Ł„·„ç„ó€ò„ëĄŒ„Ś„Đ„Ă„Ż€Ë»ÈÍŃ"
-#: ../../install_interactive.pm_.c:113
+#: ../../install_interactive.pm_.c:114
msgid "Which partition do you want to use for Linux4Win?"
msgstr "€É€Î„ŃĄŒ„Æ„Ł„·„ç„ó€ËLinux4Win€òÆț€ì€Ț€č€«"
-#: ../../install_interactive.pm_.c:115
+#: ../../install_interactive.pm_.c:116
msgid "Choose the sizes"
msgstr "„”„€„ș€òÁȘÂò"
-#: ../../install_interactive.pm_.c:116
+#: ../../install_interactive.pm_.c:117
msgid "Root partition size in MB: "
msgstr "„ëĄŒ„È„ŃĄŒ„Æ„Ł„·„ç„ó€Î„”„€„ș (MB)"
-#: ../../install_interactive.pm_.c:117
+#: ../../install_interactive.pm_.c:118
msgid "Swap partition size in MB: "
msgstr "„č„ï„Ă„Ś„ŃĄŒ„Æ„Ł„·„ç„ó€Î„”„€„ș (MB): "
-#: ../../install_interactive.pm_.c:126
+#: ../../install_interactive.pm_.c:128
msgid "Use the free space on the Windows partition"
msgstr "„Š„Ł„ó„É„Š„ș„ŃĄŒ„Æ„Ł„·„ç„óŸć€Î„Ő„êĄŒ„č„ÚĄŒ„č€ò»ÈÍŃ"
-#: ../../install_interactive.pm_.c:129
+#: ../../install_interactive.pm_.c:131
msgid "Which partition do you want to resize?"
msgstr "€É€Î„ŃĄŒ„Æ„Ł„·„ç„ó€ò„ê„”„€„ș€·€Ț€č€«Ą©"
-#: ../../install_interactive.pm_.c:131
+#: ../../install_interactive.pm_.c:133
msgid "Resizing Windows partition"
msgstr "„Š„Ł„ó„É„Š„ș„Ő„Ą„€„ë„·„č„Æ„à€Î¶­łŠ€ò·Ś»»"
-#: ../../install_interactive.pm_.c:134
+#: ../../install_interactive.pm_.c:136
#, c-format
msgid ""
"The FAT resizer is unable to handle your partition, \n"
@@ -4541,14 +4644,14 @@ msgstr ""
"FAT „ê„”„€„¶ĄŒ€Ï„ŃĄŒ„Æ„Ł„·„ç„óÁàș€Ç€­€Ț€»€óĄŁ\n"
"°ÊČŒ€Î„š„éĄŒ€ŹÈŻÀž: %s"
-#: ../../install_interactive.pm_.c:137
+#: ../../install_interactive.pm_.c:139
msgid ""
"Your Windows partition is too fragmented. Please reboot your computer under "
"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
"installation."
msgstr "„Š„Ł„ó„É„Š„ș„ŃĄŒ„Æ„Ł„·„ç„ó€ŹĂÇÊÒČœ€·€č€ź€Ç€čĄŁĄÈ„Ç„Ő„é„°ĄÉ€·€Æ€Ż€À€”€€ĄŁ"
-#: ../../install_interactive.pm_.c:138
+#: ../../install_interactive.pm_.c:140
msgid ""
"WARNING!\n"
"\n"
@@ -4569,21 +4672,21 @@ msgstr ""
"€Ș€€€Æ€Ż€À€”€€ĄŁ\n"
"ÂçŸæÉŚ€Ê€é Ok €òČĄ€·€ÆČŒ€”€€ĄŁ"
-#: ../../install_interactive.pm_.c:148
+#: ../../install_interactive.pm_.c:150
msgid "Which size do you want to keep for Windows on"
msgstr "„Š„Ł„ó„É„Š„șÍрˀɀ΀Ż€é€€€Î„”„€„ș€ò»Ä€·€Æ€Ș€­€Ț€č€Ź"
-#: ../../install_interactive.pm_.c:149
+#: ../../install_interactive.pm_.c:151
#, c-format
msgid "partition %s"
msgstr "„ŃĄŒ„Æ„Ł„·„ç„ó %s"
-#: ../../install_interactive.pm_.c:156
+#: ../../install_interactive.pm_.c:158
#, c-format
msgid "FAT resizing failed: %s"
msgstr "FAT €Î„ê„”„€„ș€ËŒșÇÔ: %s"
-#: ../../install_interactive.pm_.c:171
+#: ../../install_interactive.pm_.c:173
msgid ""
"There is no FAT partition to resize or to use as loopback (or not enough "
"space left)"
@@ -4591,33 +4694,33 @@ msgstr ""
"„ê„”„€„ș€ä„ëĄŒ„Ś„Đ„Ă„ŻÍŃ€ÎFAT„ŃĄŒ„Æ„Ł„·„ç„󀏀ą€ê€Ț€»€ó (€Ț€ż€ÏœœÊŹ€Ê„č„ÚĄŒ„č"
"€ŹÌ”€€)"
-#: ../../install_interactive.pm_.c:177
+#: ../../install_interactive.pm_.c:179
msgid "Erase entire disk"
msgstr "ÁŽ„Ç„Ł„č„ŻŸĂ”î"
-#: ../../install_interactive.pm_.c:177
+#: ../../install_interactive.pm_.c:179
msgid "Remove Windows(TM)"
msgstr "Windows(TM) €òșïœü"
-#: ../../install_interactive.pm_.c:180
+#: ../../install_interactive.pm_.c:182
msgid "You have more than one hard drive, which one do you install linux on?"
msgstr ""
"ÊŁżô€Î„ÏĄŒ„É„É„é„€„Ö€ò»ę€Ă€Æ€€€Ț€č€ÍĄą€É€ì€Ë linux €ò„€„ó„č„ÈĄŒ„뀷€Ț€č€«Ą©"
-#: ../../install_interactive.pm_.c:183
+#: ../../install_interactive.pm_.c:185
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr "„É„é„€„Ö %s Ÿć€Î„ŃĄŒ„Æ„Ł„·„ç„ó€Ș€è€Ó„ÇĄŒ„ż€ÏÁŽÉôŒș€ï€ì€Ț€č"
-#: ../../install_interactive.pm_.c:191
+#: ../../install_interactive.pm_.c:193
msgid "Custom disk partitioning"
msgstr "„ŃĄŒ„Æ„Ł„·„ç„ó€òŒ«ÊŹ€Ç»ŰÄê"
-#: ../../install_interactive.pm_.c:195
+#: ../../install_interactive.pm_.c:197
msgid "Use fdisk"
msgstr "fdisk€ò»È€Š"
-#: ../../install_interactive.pm_.c:198
+#: ../../install_interactive.pm_.c:200
#, c-format
msgid ""
"You can now partition %s.\n"
@@ -4626,28 +4729,28 @@ msgstr ""
"%s €ò„ŃĄŒ„Æ„Ł„·„ç„ó€Ç€­€Ț€čĄŁ\n"
"œȘ€ï€Ă€ż€éĄąÉŹ€șĄÖwĄŚ€ò»È€Ă€ÆÊĘž€·€Ț€·€ç€ŠĄŁ"
-#: ../../install_interactive.pm_.c:227
+#: ../../install_interactive.pm_.c:229
msgid "You don't have enough free space on your Windows partition"
msgstr "„Š„Ł„ó„É„Š„ș„ŃĄŒ„Æ„Ł„·„ç„óŸć€Î„Ő„êĄŒ„č„ÚĄŒ„耏­€ê€Ț€»€ó"
-#: ../../install_interactive.pm_.c:243
+#: ../../install_interactive.pm_.c:245
msgid "I can't find any room for installing"
msgstr "„€„ó„č„ÈĄŒ„ëÍрζő€­€Źž«€Ä€«€ê€Ț€»€ó€Ź"
-#: ../../install_interactive.pm_.c:246
+#: ../../install_interactive.pm_.c:248
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr "DrakX „ŃĄŒ„Æ„Ł„·„ç„ó„Š„Ł„¶ĄŒ„ɀϰÊČŒ€ÎČòËĄ€òž«ÉŐ€±€Ț€·€ż:"
-#: ../../install_interactive.pm_.c:250
+#: ../../install_interactive.pm_.c:252
#, c-format
msgid "Partitioning failed: %s"
msgstr "„ŃĄŒ„Æ„Ł„·„ç„˄󄰀ˌșÇÔ: %s"
-#: ../../install_interactive.pm_.c:260
+#: ../../install_interactive.pm_.c:262
msgid "Bringing up the network"
msgstr "„Í„Ă„È„ïĄŒ„Ż€ò€ż€Á€ą€Č€ë"
-#: ../../install_interactive.pm_.c:265
+#: ../../install_interactive.pm_.c:267
msgid "Bringing down the network"
msgstr "„Í„Ă„È„ïĄŒ„Ż€òÄä»ß€č€ë"
@@ -4659,12 +4762,12 @@ msgstr ""
"„š„éĄŒÈŻÀžĄ€€Š€Ț€ŻœèÍę€č€ëÊęËĄ€Ź€ï€«€ê€Ț€»€óĄŁ\n"
"Œ«ÊŹ€ÎÀŐÇ€€ÇÂł€±€ÆČŒ€”€€ĄŁ"
-#: ../../install_steps.pm_.c:210
+#: ../../install_steps.pm_.c:211
#, c-format
msgid "Duplicate mount point %s"
msgstr "„Ț„Š„ó„È„Ę„€„ó„È %s €ŹœĆ€Ê€Ă€Æ€€€Ț€č"
-#: ../../install_steps.pm_.c:379
+#: ../../install_steps.pm_.c:380
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -4677,12 +4780,12 @@ msgstr ""
"€·€Æ€ß€Æ€Ż€À€”€€Ą§\n"
"ĄÖ rpm -qpl Mandrake/RPMS/*.rpm ĄŚ\n"
-#: ../../install_steps.pm_.c:451
+#: ../../install_steps.pm_.c:452
#, c-format
msgid "Welcome to %s"
msgstr "%s €Ű€è€Š€ł€œ"
-#: ../../install_steps.pm_.c:530 ../../install_steps.pm_.c:770
+#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:772
msgid "No floppy drive available"
msgstr "Í­žú€Ê„Ő„í„Ă„ÔĄŒ„É„é„€„Ö€Ź€ą€ê€Ț€»€ó"
@@ -4713,69 +4816,69 @@ msgstr "„€„ó„č„ÈĄŒ„ë„Ż„é„č"
msgid "Please choose one of the following classes of installation:"
msgstr "°ÊČŒ€Î„€„ó„č„ÈĄŒ„ë„Ż„é„č€ò€É€ì€«ÁȘ€ó€Ç€Ż€À€”€€"
-#: ../../install_steps_gtk.pm_.c:243 ../../install_steps_interactive.pm_.c:694
+#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:678
msgid "Package Group Selection"
msgstr "„Ń„Ă„±ĄŒ„ž„°„ëĄŒ„Ś€òÁȘÂò"
-#: ../../install_steps_gtk.pm_.c:276 ../../install_steps_interactive.pm_.c:709
+#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:693
msgid "Individual package selection"
msgstr "žÄÊÌ„Ń„Ă„±ĄŒ„ž€ÎÁȘÂò"
-#: ../../install_steps_gtk.pm_.c:299 ../../install_steps_interactive.pm_.c:633
+#: ../../install_steps_gtk.pm_.c:293 ../../install_steps_interactive.pm_.c:617
#, c-format
msgid "Total size: %d / %d MB"
msgstr "čç·Ś„”„€„ș: %d / %d MB"
-#: ../../install_steps_gtk.pm_.c:341
+#: ../../install_steps_gtk.pm_.c:335
msgid "Bad package"
msgstr "„Ń„Ă„±ĄŒ„ž€ŹČő€ì€Æ€€€Ț€č"
-#: ../../install_steps_gtk.pm_.c:342
+#: ../../install_steps_gtk.pm_.c:336
#, c-format
msgid "Name: %s\n"
msgstr "ÌŸÁ°: %s\n"
-#: ../../install_steps_gtk.pm_.c:343
+#: ../../install_steps_gtk.pm_.c:337
#, c-format
msgid "Version: %s\n"
msgstr "„ĐĄŒ„ž„ç„ó: %s\n"
-#: ../../install_steps_gtk.pm_.c:344
+#: ../../install_steps_gtk.pm_.c:338
#, c-format
msgid "Size: %d KB\n"
msgstr "„”„€„ș: %d KB\n"
-#: ../../install_steps_gtk.pm_.c:345
+#: ../../install_steps_gtk.pm_.c:339
#, c-format
msgid "Importance: %s\n"
msgstr "œĆÍŚ: %s\n"
-#: ../../install_steps_gtk.pm_.c:367
+#: ../../install_steps_gtk.pm_.c:361
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr "€ł€Î„Ń„Ă„±ĄŒ„ž€ÏÁȘÂò€Ç€­€Ț€»€óĄŁ„Ç„Ł„č„Ż€Î¶ő€­ÍÆÎÌ€ŹÉÔ­€Ç€čĄŁ"
-#: ../../install_steps_gtk.pm_.c:372
+#: ../../install_steps_gtk.pm_.c:366
msgid "The following packages are going to be installed"
msgstr "°ÊČŒ€Î„Ń„Ă„±ĄŒ„ž€Ź„€„ó„č„ÈĄŒ„뀔€ì€Ț€č"
-#: ../../install_steps_gtk.pm_.c:373
+#: ../../install_steps_gtk.pm_.c:367
msgid "The following packages are going to be removed"
msgstr "°ÊČŒ€Î„Ń„Ă„±ĄŒ„ž€ŹŒè€êœü€«€ì€Ț€č"
-#: ../../install_steps_gtk.pm_.c:385
+#: ../../install_steps_gtk.pm_.c:379
msgid "You can't select/unselect this package"
msgstr "€ł€Î„Ń„Ă„±ĄŒ„ž€ÏÁȘÂòĄŠÈóÁȘÂò€Ç€­€Ț€»€ó"
-#: ../../install_steps_gtk.pm_.c:397
+#: ../../install_steps_gtk.pm_.c:391
msgid "This is a mandatory package, it can't be unselected"
msgstr "€ł€ì€ÏÉÔČÄ·ç€Ê„Ń„Ă„±ĄŒ„ž€Ç€čĄŁÈóÁȘÂò€Ë€Ï€Ç€­€Ț€»€ó"
-#: ../../install_steps_gtk.pm_.c:399
+#: ../../install_steps_gtk.pm_.c:393
msgid "You can't unselect this package. It is already installed"
msgstr "€ł€Î„Ń„Ă„±ĄŒ„ž€ÏÈóÁȘÂò€Ë€Ç€­€Ț€»€óĄŁ€č€Ç€Ë„€„ó„č„ÈĄŒ„ëșр߀ǀč"
-#: ../../install_steps_gtk.pm_.c:402
+#: ../../install_steps_gtk.pm_.c:396
msgid ""
"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
@@ -4783,74 +4886,74 @@ msgstr ""
"€ł€Î„Ń„Ă„±ĄŒ„ž€Ï„ą„Ă„Ś„°„ìĄŒ„É€ŹÉŹÍŚ€Ç€čĄŁ\n"
"ËÜĆö€ËÁȘÂòČòœü€·€Æ€€€€€ó€Ç€č€«Ą©"
-#: ../../install_steps_gtk.pm_.c:405
+#: ../../install_steps_gtk.pm_.c:399
msgid "You can't unselect this package. It must be upgraded"
msgstr "€ł€Î„Ń„Ă„±ĄŒ„ž€ÏÁȘÂòČòœü€Ç€­€Ț€»€óĄŁ„ą„Ă„Ś„°„ìĄŒ„É€ŹÉŹÍŚ€Ç€č"
-#: ../../install_steps_gtk.pm_.c:410
+#: ../../install_steps_gtk.pm_.c:404
msgid "Show automatically selected packages"
msgstr "Œ«Æ°ÁȘÂò€”€ì€ż„Ń„Ă„±ĄŒ„ž€òÉœŒš"
-#: ../../install_steps_gtk.pm_.c:411 ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_gtk.pm_.c:405 ../../install_steps_interactive.pm_.c:255
#: ../../install_steps_interactive.pm_.c:259
-#: ../../standalone/drakbackup_.c:3600
+#: ../../standalone/drakbackup_.c:4257
msgid "Install"
msgstr "„€„ó„č„ÈĄŒ„ë"
-#: ../../install_steps_gtk.pm_.c:414
+#: ../../install_steps_gtk.pm_.c:408
msgid "Load/Save on floppy"
msgstr "„Ő„í„Ă„ÔĄŒ€Ë„»ĄŒ„Ö/„íĄŒ„É€č€ë"
-#: ../../install_steps_gtk.pm_.c:415
+#: ../../install_steps_gtk.pm_.c:409
msgid "Updating package selection"
msgstr "„Ń„Ă„±ĄŒ„žÁȘÂò€Îččż·"
-#: ../../install_steps_gtk.pm_.c:420
+#: ../../install_steps_gtk.pm_.c:414
msgid "Minimal install"
msgstr "șÇŸź„€„ó„č„ÈĄŒ„ë"
-#: ../../install_steps_gtk.pm_.c:435 ../../install_steps_interactive.pm_.c:538
+#: ../../install_steps_gtk.pm_.c:429 ../../install_steps_interactive.pm_.c:522
msgid "Choose the packages you want to install"
msgstr "„€„ó„č„ÈĄŒ„뀷€ż€€„Ń„Ă„±ĄŒ„ž€òÁȘ€ó€ÇČŒ€”€€"
-#: ../../install_steps_gtk.pm_.c:451 ../../install_steps_interactive.pm_.c:778
+#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:762
msgid "Installing"
msgstr "„€„ó„č„ÈĄŒ„ëĂæ"
-#: ../../install_steps_gtk.pm_.c:457
+#: ../../install_steps_gtk.pm_.c:451
msgid "Estimating"
msgstr "»î»»€·€Æ€€€Ț€č"
-#: ../../install_steps_gtk.pm_.c:464
+#: ../../install_steps_gtk.pm_.c:458
msgid "Time remaining "
msgstr "»Ä€ê»țŽÖ "
-#: ../../install_steps_gtk.pm_.c:476
+#: ../../install_steps_gtk.pm_.c:470
msgid "Please wait, preparing installation..."
msgstr "„€„ó„č„ÈĄŒ„ë€ÎœàÈśĂæĄąŸŻĄč€ȘÂÔ€Á€ò"
-#: ../../install_steps_gtk.pm_.c:560
+#: ../../install_steps_gtk.pm_.c:554
#, c-format
msgid "%d packages"
msgstr "%d „Ń„Ă„±ĄŒ„ž"
-#: ../../install_steps_gtk.pm_.c:565
+#: ../../install_steps_gtk.pm_.c:559
#, c-format
msgid "Installing package %s"
msgstr "„Ń„Ă„±ĄŒ„ž %s €Î„€„ó„č„ÈĄŒ„ë"
-#: ../../install_steps_gtk.pm_.c:602 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:802
+#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:786
#: ../../standalone/drakautoinst_.c:202
msgid "Accept"
msgstr "ǧ€á€ë"
-#: ../../install_steps_gtk.pm_.c:602 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:802
+#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:786
msgid "Refuse"
msgstr "”ńÈĘ"
-#: ../../install_steps_gtk.pm_.c:603 ../../install_steps_interactive.pm_.c:803
+#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:787
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4863,17 +4966,17 @@ msgstr ""
"ĄÖ %s ĄŚ€È€€€Š Cd-Rom €ò„É„é„€„րˀ€€ì€ÆĄą Ok €òČĄ€·€Æ€Ż€À€”€€ĄŁ\n"
"CD€Ź€Ê€±€ì€ĐĄąCancel €òČĄ€·€Æ€ł€Î Cd-Rom €«€é€Î„€„ó„č„ÈĄŒ„ë€òČóÈò€·€ÆČŒ€”€€ĄŁ"
-#: ../../install_steps_gtk.pm_.c:617 ../../install_steps_gtk.pm_.c:621
-#: ../../install_steps_interactive.pm_.c:815
-#: ../../install_steps_interactive.pm_.c:819
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_gtk.pm_.c:615
+#: ../../install_steps_interactive.pm_.c:799
+#: ../../install_steps_interactive.pm_.c:803
msgid "Go on anyway?"
msgstr "€«€Ț€ï€șÀè€ËżÊ€ß€Ț€č€«Ą©"
-#: ../../install_steps_gtk.pm_.c:617 ../../install_steps_interactive.pm_.c:815
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:799
msgid "There was an error ordering packages:"
msgstr "„Ń„Ă„±ĄŒ„ž€ÎÀ°Îó€Ç„š„éĄŒ€ŹÈŻÀž:"
-#: ../../install_steps_gtk.pm_.c:621 ../../install_steps_interactive.pm_.c:819
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:803
msgid "There was an error installing packages:"
msgstr "„Ń„Ă„±ĄŒ„ž€Î„€„ó„č„ÈĄŒ„ë€Ç„š„éĄŒ€ŹÈŻÀž:"
@@ -5185,7 +5288,7 @@ msgid "Are you sure you refuse the licence?"
msgstr ""
#: ../../install_steps_interactive.pm_.c:211
-#: ../../install_steps_interactive.pm_.c:1038
+#: ../../install_steps_interactive.pm_.c:1023
#: ../../standalone/keyboarddrake_.c:31
msgid "Keyboard"
msgstr "„­ĄŒ„ÜĄŒ„É"
@@ -5233,11 +5336,11 @@ msgstr "„Ń„Ă„±ĄŒ„ž€À€±€òččż·"
msgid "Please choose the type of your mouse."
msgstr "„Ț„Š„č€Î·ż€Ï€Ê€ó€Ç€č€«Ą©"
-#: ../../install_steps_interactive.pm_.c:281 ../../standalone/mousedrake_.c:59
+#: ../../install_steps_interactive.pm_.c:281 ../../standalone/mousedrake_.c:60
msgid "Mouse Port"
msgstr "„Ț„Š„č„ĘĄŒ„È"
-#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:61
msgid "Please choose on which serial port your mouse is connected to."
msgstr "„Ț„Š„č€Ï€É€Î„·„ê„ą„ë„ĘĄŒ„ȀˀĀʀŹ€Ă€Æ€€€Ț€č€«Ą©"
@@ -5269,46 +5372,20 @@ msgstr "IDE €ÎÀßÄê"
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:336
+#: ../../install_steps_interactive.pm_.c:338
msgid "No partition available"
msgstr "»È€š€ë„ŃĄŒ„Æ„Ł„·„ç„󀏀ą€ê€Ț€»€ó"
-#: ../../install_steps_interactive.pm_.c:339
+#: ../../install_steps_interactive.pm_.c:341
msgid "Scanning partitions to find mount points"
msgstr "„ŃĄŒ„Æ„Ł„·„ç„ó€ò„č„­„ă„󀷀ƄȚ„Š„ó„È„Ę„€„ó„È€òĂ”€·€Æ€€€Ț€č"
-#: ../../install_steps_interactive.pm_.c:347
+#: ../../install_steps_interactive.pm_.c:349
msgid "Choose the mount points"
msgstr "„Ț„Š„ó„È„Ę„€„ó„È€ÎÁȘÂò"
-#: ../../install_steps_interactive.pm_.c:366
-#, c-format
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to not allow DrakX to modify the partition table.\n"
-"(the error is %s)\n"
-"\n"
-"Do you agree to loose all the partitions?\n"
-msgstr ""
-"„ŃĄŒ„Æ„Ł„·„ç„ó„ÆĄŒ„ք뀏ÆÉ€á€Ț€»€óĄ€Čő€ì€Æ€€€ë€è€Š€Ç€č:(\n"
-"ÉÔÀ”€Ê„ŃĄŒ„Æ„Ł„·„ç„ó€òŸĂ€·€Æ€ß€Ț€·€ç€Š€«Ą©ĄÊ€ł€ì€À€È„ÇĄŒ„ż€ŹÁŽÉôŸĂ€š€Ț"
-"€čĄȘĄË\n"
-"€ą€ë€€€ÏĄąDrakX€Ë„ŃĄŒ„Æ„Ł„·„ç„ó„ÆĄŒ„Ö„ë€òÊŃč耔€»€Ê€€Œê€Ź€ą€ê€Ț€čĄŁ\n"
-"(„š„éĄŒ€Ï%s€Ç€č)\n"
-"\n"
-"ÁŽ„ŃĄŒ„Æ„Ł„·„ç„ó€òŸĂ”€Æ€è€í€·€€€Ç€č€ÍĄ©\n"
-
#: ../../install_steps_interactive.pm_.c:379
msgid ""
-"DiskDrake failed to read correctly the partition table.\n"
-"Continue at your own risk!"
-msgstr ""
-"DiskDrake €Ï„ŃĄŒ„Æ„Ł„·„ç„ó„ÆĄŒ„Ö„ë€òÀ”€·€ŻÆÉ€á€Ț€»€ó€Ç€·€żĄŁ\n"
-"€ł€ł€«€éÀè€ÏČż€Ź”Ż€­€Æ€â€·€ê€Ț€»€ó€èĄȘ"
-
-#: ../../install_steps_interactive.pm_.c:396
-msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
msgstr ""
@@ -5316,69 +5393,69 @@ msgstr ""
"€ŹĄą„·„č„Æ„à€Î”ŻÆ°€Ë€Ï DiskDrake €Ç„ÖĄŒ„Ä„č„È„é„Ă„Ś„ŃĄŒ„Æ„Ł„·„ç„ó€òșî€Ă€Æ€Ż€À"
"€”€€."
-#: ../../install_steps_interactive.pm_.c:405
+#: ../../install_steps_interactive.pm_.c:388
msgid "No root partition found to perform an upgrade"
msgstr "ččż·€Ç€­€ë„ëĄŒ„È„ŃĄŒ„Æ„Ł„·„ç„󀏞«€Ä€«€ê€Ț€»€ó"
-#: ../../install_steps_interactive.pm_.c:406
+#: ../../install_steps_interactive.pm_.c:389
msgid "Root Partition"
msgstr "„ëĄŒ„È„ŃĄŒ„Æ„Ł„·„ç„ó"
-#: ../../install_steps_interactive.pm_.c:407
+#: ../../install_steps_interactive.pm_.c:390
msgid "What is the root partition (/) of your system?"
msgstr "„·„č„Æ„à€Î„ëĄŒ„È„ŃĄŒ„Æ„Ł„·„ç„ó(/) €Ï€Ê€ó€Ç€č€«Ą©"
-#: ../../install_steps_interactive.pm_.c:421
+#: ../../install_steps_interactive.pm_.c:404
msgid "You need to reboot for the partition table modifications to take place"
msgstr "„ŃĄŒ„Æ„Ł„·„ç„ó„ÆĄŒ„Ö„ë€ÎÊŃčč€òÈż±Ç€č€ë€Ë€Ï„ê„ÖĄŒ„È€·€Æ€Ż€À€”€€"
-#: ../../install_steps_interactive.pm_.c:445
+#: ../../install_steps_interactive.pm_.c:428
msgid "Choose the partitions you want to format"
msgstr "„Ő„©ĄŒ„Ț„Ă„È€č€ë„ŃĄŒ„Æ„Ł„·„ç„ó€òÁȘ€ó€Ç€Ż€À€”€€"
-#: ../../install_steps_interactive.pm_.c:446
+#: ../../install_steps_interactive.pm_.c:429
msgid "Check bad blocks?"
msgstr "ÉÔÎÉ„Ö„í„Ă„Ż€òžĄșș€·€Ț€č€«Ą©"
-#: ../../install_steps_interactive.pm_.c:473
+#: ../../install_steps_interactive.pm_.c:456
msgid "Formatting partitions"
msgstr "„ŃĄŒ„Æ„Ł„·„ç„ó€ò„Ő„©ĄŒ„Ț„Ă„È"
-#: ../../install_steps_interactive.pm_.c:475
+#: ../../install_steps_interactive.pm_.c:458
#, c-format
msgid "Creating and formatting file %s"
msgstr "„Ő„Ą„€„ë %s €ÎșîÀź€È„Ő„©ĄŒ„Ț„Ă„È"
-#: ../../install_steps_interactive.pm_.c:480
+#: ../../install_steps_interactive.pm_.c:463
#, c-format
msgid ""
"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
"you can loose data)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:482
+#: ../../install_steps_interactive.pm_.c:465
msgid "Not enough swap space to fulfill installation, please add some"
msgstr "„€„ó„č„ÈĄŒ„ë€ËœœÊŹ€Ê„č„ï„Ă„Ś€Ź€ą€ê€Ț€»€óĄ€„č„ï„Ă„Ś€òČĂ€š€ÆČŒ€”€€"
-#: ../../install_steps_interactive.pm_.c:489
+#: ../../install_steps_interactive.pm_.c:472
#, fuzzy
msgid "Looking for available packages and rebuilding rpm database..."
msgstr "Œê»ę€Á€Î„Ń„Ă„±ĄŒ„ž€ò€”€Ź€·€Æ€€€Ț€č"
-#: ../../install_steps_interactive.pm_.c:490
+#: ../../install_steps_interactive.pm_.c:473
msgid "Looking for available packages..."
msgstr "Œê»ę€Á€Î„Ń„Ă„±ĄŒ„ž€ò€”€Ź€·€Æ€€€Ț€č"
-#: ../../install_steps_interactive.pm_.c:493
+#: ../../install_steps_interactive.pm_.c:476
#, fuzzy
msgid "Looking at packages already installed..."
msgstr "€ł€Î„Ń„Ă„±ĄŒ„ž€ÏÈóÁȘÂò€Ë€Ç€­€Ț€»€óĄŁ€č€Ç€Ë„€„ó„č„ÈĄŒ„ëșр߀ǀč"
-#: ../../install_steps_interactive.pm_.c:497
+#: ../../install_steps_interactive.pm_.c:480
msgid "Finding packages to upgrade..."
msgstr "„ą„Ă„Ś„°„ìĄŒ„É€č€ë„Ń„Ă„±ĄŒ„ž€ò€”€Ź€·€Æ€€€Ț€č"
-#: ../../install_steps_interactive.pm_.c:515
+#: ../../install_steps_interactive.pm_.c:498
#, c-format
msgid ""
"Your system does not have enough space left for installation or upgrade (%d "
@@ -5386,7 +5463,7 @@ msgid ""
msgstr ""
"„€„ó„č„ÈĄŒ„ë€ä„ą„Ă„Ś„°„ìĄŒ„É€ËÉŹÍŚ€Ê„Ç„Ł„č„Ż€Î¶ő€­ÍÆÎÌ€ŹÉÔ­€Ç€čĄŁ (%d > %d)"
-#: ../../install_steps_interactive.pm_.c:550
+#: ../../install_steps_interactive.pm_.c:534
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
@@ -5394,35 +5471,35 @@ msgstr ""
"„Ő„í„Ă„ÔĄŒ€Ű€Î„Ń„Ă„±ĄŒ„žÁȘÂò€ÎÊĘž€«ÆÉ€ßčț€ß€òÁȘ€ó€Ç€Ż€À€”€€ĄŁ\n"
"·ÁŒ°€Ï auto_install €ÇÀžÀź€·€ż„Ő„í„Ă„ÔĄŒ€ÈƱ€ž€Ç€čĄŁ"
-#: ../../install_steps_interactive.pm_.c:553
+#: ../../install_steps_interactive.pm_.c:537
msgid "Load from floppy"
msgstr "„Ő„í„Ă„ÔĄŒ€«€éÆÉ€ßčț€à"
-#: ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_interactive.pm_.c:539
msgid "Loading from floppy"
msgstr "„Ő„í„Ă„ÔĄŒ€«€éÆÉ€ßčț€ßĂæ"
-#: ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_interactive.pm_.c:539
msgid "Package selection"
msgstr "„Ń„Ă„±ĄŒ„ž€òÁȘÂò"
-#: ../../install_steps_interactive.pm_.c:560
+#: ../../install_steps_interactive.pm_.c:544
msgid "Insert a floppy containing package selection"
msgstr "„Ń„Ă„±ĄŒ„žÁȘÂò€ÎÆț€Ă€ż„Ő„í„Ă„ÔĄŒ€òÁȚÆț"
-#: ../../install_steps_interactive.pm_.c:572
+#: ../../install_steps_interactive.pm_.c:556
msgid "Save on floppy"
msgstr "„Ő„í„Ă„ÔĄŒ€Ë„»ĄŒ„Ö€č€ë"
-#: ../../install_steps_interactive.pm_.c:646
+#: ../../install_steps_interactive.pm_.c:630
msgid "Selected size is larger than available space"
msgstr "ÁȘ€ó€À€â€Î€Î„”„€„ș€Ï¶ő€­„č„ÚĄŒ„č€ò±Û€š€Æ€€€Ț€č"
-#: ../../install_steps_interactive.pm_.c:660
+#: ../../install_steps_interactive.pm_.c:644
msgid "Type of install"
msgstr "„€„ó„č„ÈĄŒ„ë€ÎŒïÎà"
-#: ../../install_steps_interactive.pm_.c:661
+#: ../../install_steps_interactive.pm_.c:645
#, fuzzy
msgid ""
"You haven't selected any group of packages.\n"
@@ -5431,19 +5508,19 @@ msgstr ""
"„Ń„Ă„±ĄŒ„ž„°„ëĄŒ„Ś€ŹÁȘ€Đ€ì€Æ€€€Ț€»€óĄŁ\n"
"șÇÄăžÂÍ߀·€€„€„ó„č„ÈĄŒ„ë€òÁȘ€ó€Ç€Ż€À€”€€"
-#: ../../install_steps_interactive.pm_.c:664
+#: ../../install_steps_interactive.pm_.c:648
msgid "With X"
msgstr "X €ò»È€Š"
-#: ../../install_steps_interactive.pm_.c:666
+#: ../../install_steps_interactive.pm_.c:650
msgid "With basic documentation (recommended!)"
msgstr "ŽđËÜĆȘ€Ê„É„­„ć„á„ó„ÆĄŒ„·„ç„ó€òÆț€ì€ëĄÊżäŸ©ĄȘĄË"
-#: ../../install_steps_interactive.pm_.c:667
+#: ../../install_steps_interactive.pm_.c:651
msgid "Truly minimal install (especially no urpmi)"
msgstr "ËÜĆö€ËșÇÄăžÂ€Î„€„ó„č„ÈĄŒ„ëĄÊurpmi €â€Ê€·ĄË"
-#: ../../install_steps_interactive.pm_.c:752
+#: ../../install_steps_interactive.pm_.c:736
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -5453,16 +5530,16 @@ msgstr ""
"CD€Ź°ì€Ä€â€Ê€±€ì€ĐĄą„­„ă„ó„»„ë€ò„Ż„ê„Ă„Ż€·€Æ€Ż€À€”€€ĄŁ\n"
"Œêž”€Ë€Ê€€CD€Ź€ą€ì€ĐĄą€œ€ì€òÁȘÂò€«€é€Ï€ș€·€Æ€«€éOk€ò„Ż„ê„Ă„Ż€·€Ț€čĄŁ"
-#: ../../install_steps_interactive.pm_.c:757
+#: ../../install_steps_interactive.pm_.c:741
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "ĄÖ %s ĄŚ€È€€€ŠCd-Rom"
-#: ../../install_steps_interactive.pm_.c:778
+#: ../../install_steps_interactive.pm_.c:762
msgid "Preparing installation"
msgstr "„€„ó„č„ÈĄŒ„ë€ÎœàÈś"
-#: ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:771
#, c-format
msgid ""
"Installing package %s\n"
@@ -5471,21 +5548,21 @@ msgstr ""
"„Ń„Ă„±ĄŒ„ž %s €ò„€„ó„č„ÈĄŒ„ë\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:833
+#: ../../install_steps_interactive.pm_.c:817
msgid "Post-install configuration"
msgstr "„€„ó„č„ÈĄŒ„ëÀßÄê€òłÎÄê"
-#: ../../install_steps_interactive.pm_.c:839
+#: ../../install_steps_interactive.pm_.c:823
#, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "»È€Ă€ż”ŻÆ°„Ő„í„Ă„ÔĄŒ€ò„É„é„€„Ö %s €ËÁȚÆț"
-#: ../../install_steps_interactive.pm_.c:845
+#: ../../install_steps_interactive.pm_.c:829
#, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "ččż·„â„ž„ćĄŒ„ë„Ő„í„Ă„ÔĄŒ€ò„É„é„€„Ö %s €ËÁȚÆț€·€ÆČŒ€”€€"
-#: ../../install_steps_interactive.pm_.c:865
+#: ../../install_steps_interactive.pm_.c:849
msgid ""
"You now have the opportunity to download encryption software.\n"
"\n"
@@ -5549,7 +5626,7 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:904
+#: ../../install_steps_interactive.pm_.c:888
#, fuzzy
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
@@ -5569,158 +5646,158 @@ msgstr ""
"\n"
"ččż·„Ń„Ă„±ĄŒ„ž€ò„€„ó„č„ÈĄŒ„뀷€Ț€č€«Ą©"
-#: ../../install_steps_interactive.pm_.c:919
+#: ../../install_steps_interactive.pm_.c:903
msgid ""
"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr "Mandrake Linux „”„€„È€ËÀÜÂł€·€Æ„ß„éĄŒ°ìÍś€òŒèÆÀ€·€Æ€€€Ț€č"
-#: ../../install_steps_interactive.pm_.c:924
+#: ../../install_steps_interactive.pm_.c:908
msgid "Choose a mirror from which to get the packages"
msgstr "€É€Î„”„€„È€«€é„Ń„Ă„±ĄŒ„ž€ò»ę€Ă€Æ€Ż€ë€«€òÁȘÂò"
-#: ../../install_steps_interactive.pm_.c:933
+#: ../../install_steps_interactive.pm_.c:917
msgid "Contacting the mirror to get the list of available packages..."
msgstr "„”„€„È€ËÀÜÂł€·€Æ„Ń„Ă„±ĄŒ„ž°ìÍś€òŒèÆÀ€·€Æ€€€Ț€č"
-#: ../../install_steps_interactive.pm_.c:960
+#: ../../install_steps_interactive.pm_.c:945
msgid "Which is your timezone?"
msgstr "€ą€Ê€ż€Î»țŽÖÂӀπɀì€Ç€č€«Ą©"
-#: ../../install_steps_interactive.pm_.c:965
+#: ../../install_steps_interactive.pm_.c:950
msgid "Hardware clock set to GMT"
msgstr "„ÏĄŒ„É„Š„§„ą„Ż„í„Ă„Ż€Ï GMT €Ë„»„Ă„È€·€Æ€ą€ê€Ț€č"
-#: ../../install_steps_interactive.pm_.c:966
+#: ../../install_steps_interactive.pm_.c:951
msgid "Automatic time synchronization (using NTP)"
msgstr "Œ«Æ°»țŽÖ€ą€ï€»ĄÊNTP€ò»È€ŠĄË"
-#: ../../install_steps_interactive.pm_.c:973
+#: ../../install_steps_interactive.pm_.c:958
msgid "NTP Server"
msgstr "NTP „”ĄŒ„Đ"
-#: ../../install_steps_interactive.pm_.c:1007
-#: ../../install_steps_interactive.pm_.c:1015
+#: ../../install_steps_interactive.pm_.c:992
+#: ../../install_steps_interactive.pm_.c:1000
msgid "Remote CUPS server"
msgstr "„ê„âĄŒ„ÈCUPS „”ĄŒ„Đ"
-#: ../../install_steps_interactive.pm_.c:1008
+#: ../../install_steps_interactive.pm_.c:993
msgid "No printer"
msgstr "„Ś„ê„ó„ż€Ê€·"
-#: ../../install_steps_interactive.pm_.c:1025
+#: ../../install_steps_interactive.pm_.c:1010
msgid "Do you have an ISA sound card?"
msgstr "ISA „”„Š„ó„É„«ĄŒ„ɀπą€ê€Ț€č€«Ą©"
-#: ../../install_steps_interactive.pm_.c:1027
+#: ../../install_steps_interactive.pm_.c:1012
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
"„€„ó„č„ÈĄŒ„ëžć€ËĄÖsndconfigĄŚ€òŒÂčÔ€·€Æ„”„Š„ó„É„«ĄŒ„É€òÀßÄꀷ€Æ€Ż€À€”€€ĄŁ"
-#: ../../install_steps_interactive.pm_.c:1029
+#: ../../install_steps_interactive.pm_.c:1014
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
"„”„Š„ó„É„«ĄŒ„É€ŹžĄœĐ€Ç€­€Ț€»€ó€Ç€·€żĄŁ\n"
"„€„ó„č„ÈĄŒ„ëžć€ËĄÖharddrakeĄŚ€ò»î€·€Æ€Ż€À€”€€"
-#: ../../install_steps_interactive.pm_.c:1034 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1019 ../../steps.pm_.c:27
msgid "Summary"
msgstr "€Ț€È€á"
-#: ../../install_steps_interactive.pm_.c:1037
+#: ../../install_steps_interactive.pm_.c:1022
msgid "Mouse"
msgstr "„Ț„Š„č"
-#: ../../install_steps_interactive.pm_.c:1039
+#: ../../install_steps_interactive.pm_.c:1024
msgid "Timezone"
msgstr "»țŽÖÂÓ"
-#: ../../install_steps_interactive.pm_.c:1040 ../../printerdrake.pm_.c:2728
-#: ../../printerdrake.pm_.c:2814
+#: ../../install_steps_interactive.pm_.c:1025 ../../printerdrake.pm_.c:2937
+#: ../../printerdrake.pm_.c:3026
msgid "Printer"
msgstr "„Ś„ê„ó„ż"
-#: ../../install_steps_interactive.pm_.c:1042
+#: ../../install_steps_interactive.pm_.c:1027
msgid "ISDN card"
msgstr "ISDN„«ĄŒ„É"
-#: ../../install_steps_interactive.pm_.c:1045
-#: ../../install_steps_interactive.pm_.c:1047
+#: ../../install_steps_interactive.pm_.c:1030
+#: ../../install_steps_interactive.pm_.c:1032
msgid "Sound card"
msgstr "„”„Š„ó„É„«ĄŒ„É"
-#: ../../install_steps_interactive.pm_.c:1049
+#: ../../install_steps_interactive.pm_.c:1034
msgid "TV card"
msgstr "„Æ„ì„Ó„«ĄŒ„É"
-#: ../../install_steps_interactive.pm_.c:1089
-#: ../../install_steps_interactive.pm_.c:1114
-#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1074
+#: ../../install_steps_interactive.pm_.c:1099
+#: ../../install_steps_interactive.pm_.c:1103
msgid "LDAP"
msgstr "LDAP"
-#: ../../install_steps_interactive.pm_.c:1090
-#: ../../install_steps_interactive.pm_.c:1114
-#: ../../install_steps_interactive.pm_.c:1127
+#: ../../install_steps_interactive.pm_.c:1075
+#: ../../install_steps_interactive.pm_.c:1099
+#: ../../install_steps_interactive.pm_.c:1112
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1091
-#: ../../install_steps_interactive.pm_.c:1114
-#: ../../install_steps_interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1141
+#: ../../install_steps_interactive.pm_.c:1076
+#: ../../install_steps_interactive.pm_.c:1099
+#: ../../install_steps_interactive.pm_.c:1120
+#: ../../install_steps_interactive.pm_.c:1126
#, fuzzy
msgid "Windows Domain"
msgstr "„Š„Ł„ó„É„Š„ș€Î„Ő„©„ó„È€òŒè€Ă€Æ€Ż€ë"
-#: ../../install_steps_interactive.pm_.c:1092
-#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1077
+#: ../../install_steps_interactive.pm_.c:1099
msgid "Local files"
msgstr "„íĄŒ„«„ë„Ő„Ą„€„ë"
-#: ../../install_steps_interactive.pm_.c:1101
-#: ../../install_steps_interactive.pm_.c:1102 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1086
+#: ../../install_steps_interactive.pm_.c:1087 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "„ëĄŒ„È„Ń„č„ïĄŒ„É"
-#: ../../install_steps_interactive.pm_.c:1103
+#: ../../install_steps_interactive.pm_.c:1088
msgid "No password"
msgstr "„Ń„č„ïĄŒ„ɀʀ·"
-#: ../../install_steps_interactive.pm_.c:1108
+#: ../../install_steps_interactive.pm_.c:1093
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr "€ł€Î„Ń„č„ïĄŒ„ɀώÊñ€č€ź€Ț€čĄÊșÇÄă€Ç€â %d Êž»ú»È€Ă€Æ€Ż€À€”€€ĄË"
-#: ../../install_steps_interactive.pm_.c:1114 ../../network/modem.pm_.c:49
+#: ../../install_steps_interactive.pm_.c:1099 ../../network/modem.pm_.c:49
#: ../../standalone/drakconnect_.c:625 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "ǧŸÚ"
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1107
msgid "Authentication LDAP"
msgstr "ǧŸÚLDAP"
-#: ../../install_steps_interactive.pm_.c:1123
+#: ../../install_steps_interactive.pm_.c:1108
msgid "LDAP Base dn"
msgstr "LDAP„ÙĄŒ„čdn"
-#: ../../install_steps_interactive.pm_.c:1124
+#: ../../install_steps_interactive.pm_.c:1109
msgid "LDAP Server"
msgstr "LDAP„”ĄŒ„Đ"
-#: ../../install_steps_interactive.pm_.c:1130
+#: ../../install_steps_interactive.pm_.c:1115
msgid "Authentication NIS"
msgstr "ǧŸÚNIS"
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1116
msgid "NIS Domain"
msgstr "NIS „É„á„€„ó"
-#: ../../install_steps_interactive.pm_.c:1132
+#: ../../install_steps_interactive.pm_.c:1117
msgid "NIS Server"
msgstr "NIS „”ĄŒ„Đ"
-#: ../../install_steps_interactive.pm_.c:1138
+#: ../../install_steps_interactive.pm_.c:1123
msgid ""
"For this to work for a W2K PDC, you will probably need to have the admin "
"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
@@ -5736,21 +5813,21 @@ msgid ""
"good."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1140
+#: ../../install_steps_interactive.pm_.c:1125
#, fuzzy
msgid "Authentication Windows Domain"
msgstr "ǧŸÚLDAP"
-#: ../../install_steps_interactive.pm_.c:1142
+#: ../../install_steps_interactive.pm_.c:1127
#, fuzzy
msgid "Domain Admin User Name"
msgstr "„É„á„€„óÌŸ"
-#: ../../install_steps_interactive.pm_.c:1143
+#: ../../install_steps_interactive.pm_.c:1128
msgid "Domain Admin Password"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1178
+#: ../../install_steps_interactive.pm_.c:1163
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
"depending on the normal bootloader. This is useful if you don't want to "
@@ -5777,19 +5854,19 @@ msgstr ""
"„ÖĄŒ„È„Ç„Ł„č„Ż€òșî€ë€Ê€é€ĐĄą„Ő„í„Ă„Ô„Ł„Ç„Ł„č„Ż€ò„É„é„€„Ö€ËÁȚÆț€·Ąą\n"
"ĄÖOKĄŚ€òČĄ€·€Æ€Ż€À€”€€ĄŁ"
-#: ../../install_steps_interactive.pm_.c:1194
+#: ../../install_steps_interactive.pm_.c:1179
msgid "First floppy drive"
msgstr "șÇœé€Î„Ő„í„Ă„ÔĄŒ„É„é„€„Ö"
-#: ../../install_steps_interactive.pm_.c:1195
+#: ../../install_steps_interactive.pm_.c:1180
msgid "Second floppy drive"
msgstr "ÆóÈÖÌ܀΄Մí„Ă„ÔĄŒ„É„é„€„Ö"
-#: ../../install_steps_interactive.pm_.c:1196 ../../printerdrake.pm_.c:2277
+#: ../../install_steps_interactive.pm_.c:1181 ../../printerdrake.pm_.c:2470
msgid "Skip"
msgstr "„č„­„Ă„Ś"
-#: ../../install_steps_interactive.pm_.c:1201
+#: ../../install_steps_interactive.pm_.c:1186
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5813,7 +5890,7 @@ msgstr ""
"Éü”ì€č€ë€Î€ŹłÚ€Ë€Ê€ê€Ț€čĄŁ„ÖĄŒ„È„Ç„Ł„č„Ż€òșî€ê€Ț€č€«Ą©\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1207
+#: ../../install_steps_interactive.pm_.c:1192
msgid ""
"\n"
"\n"
@@ -5827,28 +5904,28 @@ msgstr ""
"1.44 Mb „Ő„í„Ă„ÔĄŒ€Ç”ŻÆ°„Ç„Ł„č„Ż€òșî€ë€Î€Ï€ż€Ö€óÌ”Íę€Ç€čĄŁ\n"
"XFS €Ï€È€Æ€âÂ瀭€Ê„É„é„€„Đ€ŹÉŹÍŚ€À€«€é€Ç€č)."
-#: ../../install_steps_interactive.pm_.c:1215
+#: ../../install_steps_interactive.pm_.c:1200
msgid "Sorry, no floppy drive available"
msgstr "Í­žú€Ê„Ő„í„Ă„ÔĄŒ„É„é„€„Ö€Ź€ą€ê€Ț€»€óĄ€€Ž€á€ó€Ê€”€€"
-#: ../../install_steps_interactive.pm_.c:1219
+#: ../../install_steps_interactive.pm_.c:1204
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "„ÖĄŒ„È„Ç„Ł„č„Ż€òșî€ê€ż€€„Ő„í„Ă„Ô„Ł„É„é„€„Ö€òÁȘÂò"
-#: ../../install_steps_interactive.pm_.c:1223
+#: ../../install_steps_interactive.pm_.c:1208
#, c-format
msgid "Insert a floppy in %s"
msgstr "„Ő„í„Ă„ÔĄŒ€ò„É„é„€„Ö %s €ËÁȚÆț"
-#: ../../install_steps_interactive.pm_.c:1226
+#: ../../install_steps_interactive.pm_.c:1211
msgid "Creating bootdisk..."
msgstr "„ÖĄŒ„È„Ç„Ł„č„Ż€ÎșîÀź"
-#: ../../install_steps_interactive.pm_.c:1233
+#: ../../install_steps_interactive.pm_.c:1218
msgid "Preparing bootloader..."
msgstr "„ÖĄŒ„È„íĄŒ„À€ÎœàÈś"
-#: ../../install_steps_interactive.pm_.c:1244
+#: ../../install_steps_interactive.pm_.c:1229
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5860,11 +5937,11 @@ msgstr ""
"„€„ó„č„ÈĄŒ„ë€ÏÂł€±€Ț€č€ŹĄą„Ț„·„ó€Î”ŻÆ°€Ë€Ï\n"
"BootX €ò»È€Ă€Æ€Ż€À€”€€"
-#: ../../install_steps_interactive.pm_.c:1250
+#: ../../install_steps_interactive.pm_.c:1235
msgid "Do you want to use aboot?"
msgstr "aboot €ò»È€€€Ț€č€«Ą©"
-#: ../../install_steps_interactive.pm_.c:1253
+#: ../../install_steps_interactive.pm_.c:1238
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -5872,15 +5949,15 @@ msgstr ""
"aboot „€„ó„č„ÈĄŒ„ë»ț€Ë„š„éĄŒÈŻÀžĄŁ\n"
"Ì”Íę€Ë„€„ó„č„ÈĄŒ„뀷€Æ€ß€Ț€č€«Ą©ĄĄ€ż€À€·șÇœé€Î„ŃĄŒ„Æ„Ł„·„ç„ó€ŹÇËČő€”€ì€Ț€čĄŁ"
-#: ../../install_steps_interactive.pm_.c:1260
+#: ../../install_steps_interactive.pm_.c:1245
msgid "Installing bootloader"
msgstr "„ÖĄŒ„È„íĄŒ„À„€„ó„č„ÈĄŒ„ëĂæ"
-#: ../../install_steps_interactive.pm_.c:1266
+#: ../../install_steps_interactive.pm_.c:1251
msgid "Installation of bootloader failed. The following error occured:"
msgstr "„ÖĄŒ„È„íĄŒ„À€Î„€„ó„č„ÈĄŒ„ë€ËŒșÇÔ€·€Ț€·€żĄŁ°ÊČŒ€Î„š„éĄŒ€ŹÈŻÀž:"
-#: ../../install_steps_interactive.pm_.c:1274
+#: ../../install_steps_interactive.pm_.c:1259
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -5897,17 +5974,17 @@ msgstr ""
" €œ€ì€«€é€ł€Š„ż„€„Ś€·€Ț€č: shut-down\n"
"ŒĄ€Î”ŻÆ°»ț€Ë€Ï„ÖĄŒ„È„íĄŒ„À€Î„Ś„í„ó„Ś„È€ŹœĐ€ë€Ï€ș€Ç€čĄŁ"
-#: ../../install_steps_interactive.pm_.c:1308
+#: ../../install_steps_interactive.pm_.c:1293
#: ../../standalone/drakautoinst_.c:79
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "¶ő€Î„Ő„í„Ă„ÔĄŒ€ò„É„é„€„Ö %s €ËÁȚÆț€·€ÆČŒ€”€€"
-#: ../../install_steps_interactive.pm_.c:1312
+#: ../../install_steps_interactive.pm_.c:1297
msgid "Creating auto install floppy..."
msgstr "„€„ó„č„ÈĄŒ„ë„Ő„í„Ă„ÔĄŒ€ÎŒ«Æ°șîÀź"
-#: ../../install_steps_interactive.pm_.c:1323
+#: ../../install_steps_interactive.pm_.c:1308
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -5917,7 +5994,7 @@ msgstr ""
"\n"
"ËÜĆö€ËœȘλ€·€Ț€č€«Ą©"
-#: ../../install_steps_interactive.pm_.c:1334
+#: ../../install_steps_interactive.pm_.c:1319
#, fuzzy, c-format
msgid ""
"Congratulations, installation is complete.\n"
@@ -5948,16 +6025,16 @@ msgstr ""
"„€„ó„č„ÈĄŒ„ëžć€ÎÀßÄê€Ë€Ä€€€Æ€Ï„æĄŒ„¶„Ź„€„ɀΥք€„ó„č„ÈĄŒ„뀷€żžćĄŚ€Î\n"
"ŸÏ€ò»ČŸÈ€·€ÆČŒ€”€€ĄŁ"
-#: ../../install_steps_interactive.pm_.c:1347
+#: ../../install_steps_interactive.pm_.c:1332
#, fuzzy
msgid "http://www.mandrakelinux.com/en/90errata.php3"
msgstr "http://www.mandrakesoft.com/sales/contact"
-#: ../../install_steps_interactive.pm_.c:1352
+#: ../../install_steps_interactive.pm_.c:1337
msgid "Generate auto install floppy"
msgstr "„€„ó„č„ÈĄŒ„ë„Ő„í„Ă„ÔĄŒ€ÎŒ«Æ°șîÀź"
-#: ../../install_steps_interactive.pm_.c:1354
+#: ../../install_steps_interactive.pm_.c:1339
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -5970,15 +6047,15 @@ msgstr ""
"(€ł€ì€ÏỀ΄Ț„·„ó€Ű€Î„€„ó„č„ÈĄŒ„ëÍр΀â€Î€Ç€č).\n"
"\n"
-#: ../../install_steps_interactive.pm_.c:1359
+#: ../../install_steps_interactive.pm_.c:1344
msgid "Automated"
msgstr "ÁŽŒ«Æ°"
-#: ../../install_steps_interactive.pm_.c:1359
+#: ../../install_steps_interactive.pm_.c:1344
msgid "Replay"
msgstr "șÆÀž"
-#: ../../install_steps_interactive.pm_.c:1362
+#: ../../install_steps_interactive.pm_.c:1347
msgid "Save packages selection"
msgstr "„Ń„Ă„±ĄŒ„žÁȘÂò€ÎÊĘž"
@@ -5987,7 +6064,8 @@ msgstr "„Ń„Ă„±ĄŒ„žÁȘÂò€ÎÊĘž"
msgid "Mandrake Linux Installation %s"
msgstr "Mandrake Linux „€„ó„č„ÈĄŒ„ë %s"
-#: ../../install_steps_newt.pm_.c:34
+#. -PO This string must fit in a 80-char wide text screen
+#: ../../install_steps_newt.pm_.c:35
msgid ""
" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
msgstr " <Tab>/<Alt-Tab> ÍŚÁǎրΰÜÆ° | <Space> ÁȘÂò | <F12> ŒĄ€ÎČèÌÌ "
@@ -6004,22 +6082,22 @@ msgstr "consolehelper €Ź€ą€ê€Ț€»€ó"
msgid "Choose a file"
msgstr "„Ő„Ą„€„ë€òÁȘÂò"
-#: ../../interactive.pm_.c:317
+#: ../../interactive.pm_.c:320
msgid "Advanced"
msgstr "čâĆÙ€ÊÁȘÂò"
-#: ../../interactive.pm_.c:318
+#: ../../interactive.pm_.c:321
msgid "Basic"
msgstr "ŽđËÜ"
-#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:155
-#: ../../printerdrake.pm_.c:1990
+#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:158
+#: ../../printerdrake.pm_.c:2124
msgid "<- Previous"
msgstr "<- ۉۃۑ"
#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
-#: ../../standalone/drakbackup_.c:3464 ../../standalone/drakbackup_.c:3491
-#: ../../standalone/drakbackup_.c:3517
+#: ../../standalone/drakbackup_.c:4112 ../../standalone/drakbackup_.c:4139
+#: ../../standalone/drakbackup_.c:4169 ../../standalone/drakbackup_.c:4195
msgid "Next"
msgstr "ŒĄ"
@@ -6092,375 +6170,375 @@ msgstr ""
msgid "Re-submit"
msgstr "ĆĐÏż€·€Ê€Ș€·"
-#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:152 ../../keyboard.pm_.c:187
msgid "Czech (QWERTZ)"
msgstr "„Á„§„ł (QWERTZ)"
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:153 ../../keyboard.pm_.c:189
msgid "German"
msgstr "„É„€„Ä"
-#: ../../keyboard.pm_.c:175
+#: ../../keyboard.pm_.c:154
msgid "Dvorak"
msgstr "Dvorak"
-#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:218
+#: ../../keyboard.pm_.c:155 ../../keyboard.pm_.c:197
msgid "Spanish"
msgstr "„č„Ú„€„ó"
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:156 ../../keyboard.pm_.c:198
msgid "Finnish"
msgstr "„Ő„Ł„ó„é„ó„É"
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:220
+#: ../../keyboard.pm_.c:157 ../../keyboard.pm_.c:199
msgid "French"
msgstr "„Ő„é„ó„č"
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:158 ../../keyboard.pm_.c:231
msgid "Norwegian"
msgstr "„΄넊„§ĄŒ"
-#: ../../keyboard.pm_.c:180
+#: ../../keyboard.pm_.c:159
msgid "Polish"
msgstr "„ĘĄŒ„é„ó„É"
-#: ../../keyboard.pm_.c:181 ../../keyboard.pm_.c:260
+#: ../../keyboard.pm_.c:160 ../../keyboard.pm_.c:239
msgid "Russian"
msgstr "„í„·„ą"
-#: ../../keyboard.pm_.c:183 ../../keyboard.pm_.c:262
+#: ../../keyboard.pm_.c:162 ../../keyboard.pm_.c:241
msgid "Swedish"
msgstr "„č„Š„§ĄŒ„Ç„ó"
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:278
+#: ../../keyboard.pm_.c:163 ../../keyboard.pm_.c:257
msgid "UK keyboard"
msgstr "„€„ź„ê„čŒ°„­ĄŒ„ÜĄŒ„É"
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:279
+#: ../../keyboard.pm_.c:164 ../../keyboard.pm_.c:258
msgid "US keyboard"
msgstr "„ą„á„ê„«Œ°„­ĄŒ„ÜĄŒ„É"
-#: ../../keyboard.pm_.c:187
+#: ../../keyboard.pm_.c:166
msgid "Albanian"
msgstr "„ą„ë„Đ„Ë„ą"
-#: ../../keyboard.pm_.c:188
+#: ../../keyboard.pm_.c:167
msgid "Armenian (old)"
msgstr "„ą„ë„á„Ë„ąĄÊžĆ€€ĄË"
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:168
msgid "Armenian (typewriter)"
msgstr "„ą„ë„á„Ë„ąĄÊ„ż„€„Ś„é„€„żĄŒĄË"
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:169
msgid "Armenian (phonetic)"
msgstr "„ą„ë„á„Ë„ąĄÊÈŻČ»”­čæĄË"
-#: ../../keyboard.pm_.c:195
+#: ../../keyboard.pm_.c:174
msgid "Azerbaidjani (latin)"
msgstr "„ą„Œ„ë„Đ„€„ž„ă„ó(„é„Æ„ó)"
-#: ../../keyboard.pm_.c:197
+#: ../../keyboard.pm_.c:176
msgid "Belgian"
msgstr "„Ù„ë„źĄŒ"
-#: ../../keyboard.pm_.c:198
+#: ../../keyboard.pm_.c:177
#, fuzzy
msgid "Bengali"
msgstr "Í­žú€Ë"
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:178
msgid "Bulgarian (phonetic)"
msgstr "„ą„ë„á„Ë„ąĄÊÈŻČ»”­čæĄË"
-#: ../../keyboard.pm_.c:200
+#: ../../keyboard.pm_.c:179
msgid "Bulgarian (BDS)"
msgstr "„Ö„ë„Ź„ê„ą (BDS)"
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:180
msgid "Brazilian (ABNT-2)"
msgstr "„Ö„é„ž„ë"
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:183
#, fuzzy
msgid "Bosnian"
msgstr "„š„č„È„Ë„ą"
-#: ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:184
msgid "Belarusian"
msgstr "„Ù„é„ëĄŒ„·"
-#: ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:185
msgid "Swiss (German layout)"
msgstr "„č„€„čĄÊ„É„€„ÄŒ°ÇÛÎóĄË"
-#: ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:186
msgid "Swiss (French layout)"
msgstr "„č„€„čĄÊ„Ő„é„ó„čŒ°ÇÛÎóĄË"
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:188
msgid "Czech (QWERTY)"
msgstr "„Á„§„ł (QWERTY)"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:190
msgid "German (no dead keys)"
msgstr "„É„€„ÄĄÊ„Ç„Ă„É„­ĄŒ€Ê€·ĄË"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:191
msgid "Devanagari"
msgstr ""
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:192
msgid "Danish"
msgstr "„Ç„ó„ȚĄŒ„Ż"
-#: ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:193
msgid "Dvorak (US)"
msgstr "Dvorak (US)"
-#: ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:194
msgid "Dvorak (Norwegian)"
msgstr "Dvorak („΄넊„§ĄŒ)"
-#: ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:195
msgid "Dvorak (Swedish)"
msgstr "Dvorak („č„Š„§ĄŒ„Ç„ó)"
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:196
msgid "Estonian"
msgstr "„š„č„È„Ë„ą"
-#: ../../keyboard.pm_.c:221
+#: ../../keyboard.pm_.c:200
msgid "Georgian (\"Russian\" layout)"
msgstr "„°„ë„ž„ąĄÊĄÖ„í„·„ąŒ°ĄŚÇÛÎóĄË"
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:201
msgid "Georgian (\"Latin\" layout)"
msgstr "„°„ë„ž„ąĄÊĄÖ„é„Æ„óĄŚÇÛÎóĄË"
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:202
msgid "Greek"
msgstr "„ź„ê„·„ă"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:203
msgid "Gujarati"
msgstr ""
-#: ../../keyboard.pm_.c:225
+#: ../../keyboard.pm_.c:204
msgid "Gurmukhi"
msgstr ""
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:205
msgid "Hungarian"
msgstr "„Ï„ó„Ź„êĄŒ"
-#: ../../keyboard.pm_.c:227
+#: ../../keyboard.pm_.c:206
msgid "Croatian"
msgstr "„Ż„í„ą„Á„ą"
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:207
msgid "Israeli"
msgstr "„€„č„é„š„ë"
-#: ../../keyboard.pm_.c:229
+#: ../../keyboard.pm_.c:208
msgid "Israeli (Phonetic)"
msgstr "„€„č„é„š„ëĄÊÈŻČ»”­čæĄË"
-#: ../../keyboard.pm_.c:230
+#: ../../keyboard.pm_.c:209
msgid "Iranian"
msgstr "„€„é„ó"
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:210
msgid "Icelandic"
msgstr "„ą„€„č„é„ó„É"
-#: ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:211
msgid "Italian"
msgstr "„€„ż„ê„ą"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:212
msgid "Inuktitut"
msgstr ""
-#: ../../keyboard.pm_.c:234
+#: ../../keyboard.pm_.c:213
msgid "Japanese 106 keys"
msgstr "ÆüËÜžì106„­ĄŒ„ÜĄŒ„É"
-#: ../../keyboard.pm_.c:237
+#: ../../keyboard.pm_.c:216
msgid "Korean keyboard"
msgstr "Ä«ÁŻŒ°„­ĄŒ„ÜĄŒ„É"
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:217
msgid "Latin American"
msgstr "„é„Æ„ó„ą„á„ê„«"
-#: ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:218
#, fuzzy
msgid "Laotian"
msgstr "„é„È„ô„Ł„ą"
-#: ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:219
msgid "Lithuanian AZERTY (old)"
msgstr "„ê„È„ą„Ë„ą AZERTY (”ì)"
-#: ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:221
msgid "Lithuanian AZERTY (new)"
msgstr "„ê„È„ą„Ë„ą AZERTY (ż·)"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:222
msgid "Lithuanian \"number row\" QWERTY"
msgstr "„ê„È„ą„Ë„ą ĄÖżô»úÎóĄŚ QWERTY"
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:223
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "„ê„È„ą„Ë„ą ĄÖÈŻČ»ĄŚ QWERTY"
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:224
msgid "Latvian"
msgstr "„é„È„ô„Ł„ą"
-#: ../../keyboard.pm_.c:246
+#: ../../keyboard.pm_.c:225
msgid "Macedonian"
msgstr "„Ț„±„É„Ë„ą"
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:226
msgid "Myanmar (Burmese)"
msgstr ""
-#: ../../keyboard.pm_.c:248
+#: ../../keyboard.pm_.c:227
#, fuzzy
msgid "Mongolian (cyrillic)"
msgstr "„»„ë„Ó„ą(cyrillic)"
-#: ../../keyboard.pm_.c:249
+#: ../../keyboard.pm_.c:228
msgid "Maltese (UK)"
msgstr ""
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:229
msgid "Maltese (US)"
msgstr ""
-#: ../../keyboard.pm_.c:251
+#: ../../keyboard.pm_.c:230
msgid "Dutch"
msgstr "„Ș„é„ó„À"
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:232
msgid "Polish (qwerty layout)"
msgstr "„ĘĄŒ„é„ó„ÉĄÊqwerty ÇÛÎóĄË"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:233
msgid "Polish (qwertz layout)"
msgstr "„ĘĄŒ„é„ó„ÉĄÊqwertzÇÛÎóĄË"
-#: ../../keyboard.pm_.c:255
+#: ../../keyboard.pm_.c:234
msgid "Portuguese"
msgstr "„Ę„ë„È„Ź„ë"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:235
msgid "Canadian (Quebec)"
msgstr "„«„Ê„ÀĄÊ„±„Ù„Ă„ŻĄË"
-#: ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:237
msgid "Romanian (qwertz)"
msgstr "„ëĄŒ„Ț„Ë„ąĄÊqwertzĄË"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:238
msgid "Romanian (qwerty)"
msgstr "„ëĄŒ„Ț„Ë„ąĄÊqwertyĄË"
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:240
msgid "Russian (Yawerty)"
msgstr "„í„·„ąĄÊYawertyĄË"
-#: ../../keyboard.pm_.c:263
+#: ../../keyboard.pm_.c:242
msgid "Slovenian"
msgstr "„č„í„Ù„Ë„ą"
-#: ../../keyboard.pm_.c:264
+#: ../../keyboard.pm_.c:243
msgid "Slovakian (QWERTZ)"
msgstr "„č„í„Đ„­„ą (QWERTZ)"
-#: ../../keyboard.pm_.c:265
+#: ../../keyboard.pm_.c:244
msgid "Slovakian (QWERTY)"
msgstr "„č„í„Đ„­„ą (QWERTY)"
-#: ../../keyboard.pm_.c:267
+#: ../../keyboard.pm_.c:246
msgid "Serbian (cyrillic)"
msgstr "„»„ë„Ó„ą(cyrillic)"
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:248
msgid "Tamil (Unicode)"
msgstr "„ż„ß„ë (Unicode)"
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:249
msgid "Tamil (TSCII)"
msgstr "„ż„ß„ë (TSCII)"
-#: ../../keyboard.pm_.c:271
+#: ../../keyboard.pm_.c:250
msgid "Thai keyboard"
msgstr "„ż„€ĄĄ„­ĄŒ„ÜĄŒ„É"
-#: ../../keyboard.pm_.c:273
+#: ../../keyboard.pm_.c:252
msgid "Tajik keyboard"
msgstr "„ż„ž„ŻĄĄ„­ĄŒ„ÜĄŒ„É"
-#: ../../keyboard.pm_.c:274
+#: ../../keyboard.pm_.c:253
msgid "Turkish (traditional \"F\" model)"
msgstr "„È„ë„łĄÊĆÁĆęĆȘĄÖŁÆĄŚ„â„Ç„ëĄË"
-#: ../../keyboard.pm_.c:275
+#: ../../keyboard.pm_.c:254
msgid "Turkish (modern \"Q\" model)"
msgstr "„È„ë„łĄÊžœÂćĄÖŁŃĄŚ„â„Ç„ëĄË"
-#: ../../keyboard.pm_.c:277
+#: ../../keyboard.pm_.c:256
msgid "Ukrainian"
msgstr "„Š„Ż„é„€„Ê"
-#: ../../keyboard.pm_.c:280
+#: ../../keyboard.pm_.c:259
msgid "US keyboard (international)"
msgstr "„ą„á„ê„«Œ°„­ĄŒ„ÜĄŒ„ÉĄÊčńșĘŒ°ĄË"
-#: ../../keyboard.pm_.c:281
+#: ../../keyboard.pm_.c:260
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "„Ù„È„Ê„à ĄÖżô»úÎóĄŚ QWERTY"
-#: ../../keyboard.pm_.c:282
+#: ../../keyboard.pm_.c:261
msgid "Yugoslavian (latin)"
msgstr "„æĄŒ„Ž„č„é„Ó„ąĄÊ„é„Æ„óĄË"
-#: ../../keyboard.pm_.c:289
+#: ../../keyboard.pm_.c:268
msgid "Right Alt key"
msgstr "±Š Alt „­ĄŒ"
-#: ../../keyboard.pm_.c:290
+#: ../../keyboard.pm_.c:269
msgid "Both Shift keys simultaneously"
msgstr "șž±Š€Î„·„Ő„È„­ĄŒ€òƱ»ț€Ë"
-#: ../../keyboard.pm_.c:291
+#: ../../keyboard.pm_.c:270
msgid "Control and Shift keys simultaneously"
msgstr "Control €È„·„Ő„È€òƱ»ț€Ë"
-#: ../../keyboard.pm_.c:292
+#: ../../keyboard.pm_.c:271
msgid "CapsLock key"
msgstr "CapsLock „­ĄŒ"
-#: ../../keyboard.pm_.c:293
+#: ../../keyboard.pm_.c:272
msgid "Ctrl and Alt keys simultaneously"
msgstr "Ctrl €È Alt „­ĄŒ€òƱ»ț€Ë"
-#: ../../keyboard.pm_.c:294
+#: ../../keyboard.pm_.c:273
msgid "Alt and Shift keys simultaneously"
msgstr "Alt €È„·„Ő„È„­ĄŒ€òƱ»ț€Ë"
-#: ../../keyboard.pm_.c:295
+#: ../../keyboard.pm_.c:274
msgid "\"Menu\" key"
msgstr "ĄÖ„á„Ë„ćĄŒĄŚ„­ĄŒ"
-#: ../../keyboard.pm_.c:296
+#: ../../keyboard.pm_.c:275
msgid "Left \"Windows\" key"
msgstr "șžĄÖ„Š„Ł„ó„É„Š„șĄŚ„­ĄŒ"
-#: ../../keyboard.pm_.c:297
+#: ../../keyboard.pm_.c:276
msgid "Right \"Windows\" key"
msgstr "±ŠĄÖ„Š„Ł„ó„É„Š„șĄŚ„­ĄŒ"
@@ -6520,11 +6598,11 @@ msgstr "ÈÆÍŃ PS/2 „Û„€ĄŒ„ë„Ț„Š„č"
msgid "GlidePoint"
msgstr "GlidePoint"
-#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:63
+#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:65
msgid "Kensington Thinking Mouse"
msgstr "Kensington Thinking Mouse"
-#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:59
+#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:61
msgid "Genius NetMouse"
msgstr "Genius NetMouse"
@@ -6532,115 +6610,127 @@ msgstr "Genius NetMouse"
msgid "Genius NetScroll"
msgstr "Genius NetScroll"
-#: ../../mouse.pm_.c:43 ../../mouse.pm_.c:68
+#: ../../mouse.pm_.c:39 ../../mouse.pm_.c:48
+#, fuzzy
+msgid "Microsoft Explorer"
+msgstr "„Ț„€„Ż„í„œ„Ő„ÈĄŠ„€„ó„Æ„ê„Ț„Š„čĄÊPS/2ĄË"
+
+#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:70
msgid "1 button"
msgstr "1 „Ü„ż„ó"
-#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:51
+#: ../../mouse.pm_.c:45 ../../mouse.pm_.c:53
msgid "Generic 2 Button Mouse"
msgstr "ÈÆÍŃ€Î2„Ü„ż„ó„Ț„Š„č"
-#: ../../mouse.pm_.c:46
+#: ../../mouse.pm_.c:47
msgid "Wheel"
msgstr "„Û„€ĄŒ„ë"
-#: ../../mouse.pm_.c:49
+#: ../../mouse.pm_.c:51
msgid "serial"
msgstr "„Ț„€„Ż„í„œ„Ő„ÈĄŠ„€„ó„Æ„ê„Ț„Š„čĄÊ„·„ê„ą„ëĄË"
-#: ../../mouse.pm_.c:52
+#: ../../mouse.pm_.c:54
msgid "Generic 3 Button Mouse"
msgstr "ÈÆÍŃ€Î3„Ü„ż„ó„Ț„Š„č"
-#: ../../mouse.pm_.c:53
+#: ../../mouse.pm_.c:55
msgid "Microsoft IntelliMouse"
msgstr "„Ț„€„Ż„í„œ„Ő„ÈĄŠ„€„ó„Æ„ê„Ț„Š„čĄÊPS/2ĄË"
-#: ../../mouse.pm_.c:54
+#: ../../mouse.pm_.c:56
msgid "Logitech MouseMan"
msgstr "Logitech MouseMan"
-#: ../../mouse.pm_.c:55
+#: ../../mouse.pm_.c:57
msgid "Mouse Systems"
msgstr "Mouse Systems"
-#: ../../mouse.pm_.c:57
+#: ../../mouse.pm_.c:59
msgid "Logitech CC Series"
msgstr "Logitech CC „·„êĄŒ„ș („·„ê„ą„ë)"
-#: ../../mouse.pm_.c:58
+#: ../../mouse.pm_.c:60
msgid "Logitech MouseMan+/FirstMouse+"
msgstr "Logitech MouseMan+/FirstMouse+"
-#: ../../mouse.pm_.c:60
+#: ../../mouse.pm_.c:62
msgid "MM Series"
msgstr "MM Series"
-#: ../../mouse.pm_.c:61
+#: ../../mouse.pm_.c:63
msgid "MM HitTablet"
msgstr "MM HitTablet"
-#: ../../mouse.pm_.c:62
+#: ../../mouse.pm_.c:64
msgid "Logitech Mouse (serial, old C7 type)"
msgstr "Logitech Mouse („·„ê„ą„ë, žĆ€€ C7 „ż„€„Ś)"
-#: ../../mouse.pm_.c:66
+#: ../../mouse.pm_.c:68
msgid "busmouse"
msgstr "„Đ„č„Ț„Š„č"
-#: ../../mouse.pm_.c:69
+#: ../../mouse.pm_.c:71
msgid "2 buttons"
msgstr "2„Ü„ż„ó"
-#: ../../mouse.pm_.c:70
+#: ../../mouse.pm_.c:72
msgid "3 buttons"
msgstr "3„Ü„ż„ó"
-#: ../../mouse.pm_.c:73
+#: ../../mouse.pm_.c:75
msgid "none"
msgstr "€Ê€·"
-#: ../../mouse.pm_.c:75
+#: ../../mouse.pm_.c:77
msgid "No mouse"
msgstr "„Ț„Š„č€Ê€·"
-#: ../../mouse.pm_.c:445
+#: ../../mouse.pm_.c:482
msgid "Please test the mouse"
msgstr "„Ț„Š„č€ò„Æ„č„È€·€Æ€ß€Æ€Ż€À€”€€ĄŁ"
-#: ../../mouse.pm_.c:446
+#: ../../mouse.pm_.c:483
msgid "To activate the mouse,"
msgstr "„Ț„Š„č€òÍ­žú€Ë€č€ë€Ë€ÏĄą"
-#: ../../mouse.pm_.c:447
+#: ../../mouse.pm_.c:484
msgid "MOVE YOUR WHEEL!"
msgstr "„Û„€ĄŒ„ë€òÆ°€«€·€Æ€Ż€À€”€€ĄȘ"
-#: ../../my_gtk.pm_.c:156
+#: ../../my_gtk.pm_.c:64
+#, fuzzy
+msgid "-adobe-utopia-regular-r-*-*-25-*-*-*-p-*-iso8859-*,*-r-*"
+msgstr ""
+"adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-1,-*-fixed-medium-r-"
+"normal--24-*-100-100-c-*-jisx0208.1983-0,*"
+
+#: ../../my_gtk.pm_.c:159
msgid "Finish"
msgstr "Ž°Î»"
-#: ../../my_gtk.pm_.c:156 ../../printerdrake.pm_.c:1992
+#: ../../my_gtk.pm_.c:159 ../../printerdrake.pm_.c:2126
msgid "Next ->"
msgstr "ŒĄ ->"
-#: ../../my_gtk.pm_.c:284
+#: ../../my_gtk.pm_.c:287
msgid "Is this correct?"
msgstr "À”€·€ŻÉœŒšœĐÍè€Ț€·€ż€«Ą©"
-#: ../../my_gtk.pm_.c:356 ../../services.pm_.c:222
+#: ../../my_gtk.pm_.c:359 ../../services.pm_.c:222
msgid "Info"
msgstr "ŸđÊó"
-#: ../../my_gtk.pm_.c:377
+#: ../../my_gtk.pm_.c:380
msgid "Expand Tree"
msgstr "„Ä„êĄŒ€ò€Î€Đ€č"
-#: ../../my_gtk.pm_.c:378
+#: ../../my_gtk.pm_.c:381
msgid "Collapse Tree"
msgstr "„Ä„êĄŒ€òœÌ€á€ë"
-#: ../../my_gtk.pm_.c:379
+#: ../../my_gtk.pm_.c:382
msgid "Toggle between flat and group sorted"
msgstr "€œ€Î€Ț€Ț€È„°„ëĄŒ„ŚÊÌ€òÀÚ€êÂŰ€š"
@@ -6678,6 +6768,74 @@ msgstr "pppoe€ò»È€Š"
msgid "use pptp"
msgstr "pptp€ò»È€Š"
+#: ../../network/drakfirewall.pm_.c:12
+#, fuzzy
+msgid "Web Server"
+msgstr "„”ĄŒ„Đ"
+
+#: ../../network/drakfirewall.pm_.c:17
+#, fuzzy
+msgid "Domain Name Server"
+msgstr "„É„á„€„óÌŸ"
+
+#: ../../network/drakfirewall.pm_.c:32
+#, fuzzy
+msgid "Mail Server"
+msgstr "„ÇĄŒ„ż„ÙĄŒ„č„”ĄŒ„Đ"
+
+#: ../../network/drakfirewall.pm_.c:37
+#, fuzzy
+msgid "POP and IMAP Server"
+msgstr "LDAP„”ĄŒ„Đ"
+
+#: ../../network/drakfirewall.pm_.c:111
+#, fuzzy
+msgid "No network card"
+msgstr "„Í„Ă„È„ïĄŒ„Ż„«ĄŒ„É€Źž«ÉŐ€«€ê€Ț€»€ó"
+
+#: ../../network/drakfirewall.pm_.c:129
+#, fuzzy
+msgid ""
+"drakfirewall configurator\n"
+"\n"
+"This configures a personal firewall for this Mandrake Linux machine.\n"
+"For a powerful dedicated firewall solution, please look to the\n"
+"specialized MandrakeSecurity Firewall distribution."
+msgstr ""
+"„ß„Ë„Ő„Ą„€„ąĄŒ„Š„©ĄŒ„ëÀßÄê\n"
+"\n"
+"€ł€Î Mandrake Linux „Ț„·„óÍрΞĿÍÍŃ„Ő„Ą„€„ąĄŒ„Š„©ĄŒ„ëÀßÄê€ò€·€Ț€čĄŁ\n"
+"¶ŻÎÏ€ÊÀìÍŃ„Ő„Ą„€„ąĄŒ„Š„©ĄŒ„ëžț€±€Ë€ÏĄąÀìÍрΠMandrakeSecurity\n"
+"„Ő„Ą„€„ąĄŒ„Š„©ĄŒ„ë„Ń„Ă„±ĄŒ„ž€òžĄÆ€€·€Æ€Ż€À€”€€ĄŁ"
+
+#: ../../network/drakfirewall.pm_.c:147
+msgid "Which services would you like to allow the Internet to connect to?"
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:148
+msgid ""
+"You can enter miscellaneous ports. \n"
+"Valid examples are: 139/tcp 139/udp.\n"
+"Have a look at /etc/services for information."
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:154
+#, c-format
+msgid ""
+"Invalid port given: %s.\n"
+"The proper format is \"port/tcp\" or \"port/udp\", \n"
+"where port is between 1 and 65535."
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:162
+msgid "Everything (no firewall)"
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:164
+#, fuzzy
+msgid "Other ports"
+msgstr "„ĘĄŒ„Ȁ΄Ƅč„È"
+
#: ../../network/ethernet.pm_.c:37
msgid ""
"Which dhcp client do you want to use?\n"
@@ -6694,7 +6852,7 @@ msgstr ""
"„·„č„Æ„àŸć€Ë„€ĄŒ„”„Í„Ă„È„ą„À„Ś„ż€Źž«€Ä€«€ê€Ț€»€óĄŁ€ł€ÎŒïÎà€Î\n"
"ÀÜÂł€ÏÀßÄê€Ç€­€Ț€»€óĄŁ"
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:247
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:240
msgid "Choose the network interface"
msgstr "„Í„Ă„È„ïĄŒ„Ż„€„󄿥Œ„Ő„§„€„č€ÎÁȘÂò"
@@ -6707,7 +6865,7 @@ msgstr "„€„󄿥Œ„Í„Ă„ÈÀÜÂł€Ë»È€Š„Í„Ă„È„ïĄŒ„Ż„ą„À„Ś„ż€òÁȘ€Ó€Ț€·€ç€Š"
msgid "no network card found"
msgstr "„Í„Ă„È„ïĄŒ„Ż„«ĄŒ„É€Źž«ÉŐ€«€ê€Ț€»€ó"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:366
msgid "Configuring network"
msgstr "„Í„Ă„È„ïĄŒ„Ż€ÎÀßÄê"
@@ -6722,7 +6880,7 @@ msgstr ""
"€€€Ż€Ä€«€ÎDHCP„”ĄŒ„Đ€ÏÆ°șî€č€ë€Î€Ë„Û„č„ÈÌŸ€òÉŹÍŚ€È€·€Ț€čĄŁ\n"
"„Û„č„ÈÌŸ€ÏĄÈmybox.mylab.myco.comĄÉ€Î€è€Š€ËÀ©žÂ€·€ÆČŒ€”€€ĄŁ"
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:370
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:371
msgid "Host name"
msgstr "„Û„č„ÈÌŸ:"
@@ -7023,13 +7181,13 @@ msgstr "ÀßÄê€č€ë„Ś„í„Ő„ŁĄŒ„ë€ÎÁȘÂò"
msgid "Use auto detection"
msgstr "Œ«Æ°žĄœĐ€ò»È€Š"
-#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2930
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:3151
#: ../../standalone/drakconnect_.c:274 ../../standalone/drakconnect_.c:277
#: ../../standalone/drakfloppy_.c:145
msgid "Expert Mode"
msgstr "„š„­„č„ŃĄŒ„È„âĄŒ„É"
-#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:283
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:386
msgid "Detecting devices..."
msgstr "„Ç„Đ„€„č€ÎžĄœĐĂæ€Ç€čĄÄĄÄ"
@@ -7198,11 +7356,11 @@ msgstr "IP €ÎŒ«Æ°ÀßÄê"
msgid "Start at boot"
msgstr "”ŻÆ°»ț€Ëł«»Ï"
-#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:753
+#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:860
msgid "IP address should be in format 1.2.3.4"
msgstr "IP „ą„É„ì„č€Ï 1.2.3.4 €Î€è€Š€ËÆțÎÏ€·€ÆČŒ€”€€"
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:367
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -7213,43 +7371,55 @@ msgstr ""
"„Û„č„ÈÌŸ€ÏĄÈmybox.mylab.myco.comĄÉ€Î€è€Š€Ë€·€ÆČŒ€”€€ĄŁ\n"
"€â€·„ČĄŒ„È„Š„§„€€Ź€ą€ì€ĐĄ€€œ€Î IP „ą„É„ì„č€âÆțÎÏ€·€ÆČŒ€”€€ĄŁ"
-#: ../../network/network.pm_.c:371
+#: ../../network/network.pm_.c:372
msgid "DNS server"
msgstr "DNS „”ĄŒ„Đ"
-#: ../../network/network.pm_.c:372
+#: ../../network/network.pm_.c:373
#, c-format
msgid "Gateway (e.g. %s)"
msgstr "„ČĄŒ„È„Š„§„€ (Îă %s)"
-#: ../../network/network.pm_.c:374
+#: ../../network/network.pm_.c:375
msgid "Gateway device"
msgstr "„ČĄŒ„È„Š„§„€„Ç„Đ„€„č"
-#: ../../network/network.pm_.c:386
+#: ../../network/network.pm_.c:387
msgid "Proxies configuration"
msgstr "„Ś„í„­„·€ÎÀßÄê"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:388
msgid "HTTP proxy"
msgstr "HTTP proxy"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:389
msgid "FTP proxy"
msgstr "FTP proxy"
-#: ../../network/network.pm_.c:389
+#: ../../network/network.pm_.c:390
msgid "Track network card id (useful for laptops)"
msgstr "„Í„Ă„È„ïĄŒ„Ż„«ĄŒ„É€Îid€òÄÉÀŚĄÊ„é„Ă„Ś„È„Ă„Ś€ÇÊŰÍűĄË"
-#: ../../network/network.pm_.c:392
+#: ../../network/network.pm_.c:393
msgid "Proxy should be http://..."
msgstr "Proxy €Ï http://... €Ç€č"
-#: ../../network/network.pm_.c:393
+#: ../../network/network.pm_.c:394
msgid "Proxy should be ftp://..."
msgstr "Proxy €Ï ftp://... €Ç€č"
+#: ../../network/shorewall.pm_.c:24
+msgid "Firewalling configuration detected!"
+msgstr "„Ő„Ą„€„ą„Š„©ĄŒ„ë€ÎÀßÄê€òžĄœĐĄȘ"
+
+#: ../../network/shorewall.pm_.c:25
+msgid ""
+"Warning! An existing firewalling configuration has been detected. You may "
+"need some manual fix after installation."
+msgstr ""
+"·ÙčđĄȘŽûž„Ő„Ą„€„ä„Š„©ĄŒ„ë€ÎÀßÄê€òžĄœĐĄŁ\n"
+"„€„ó„č„ÈĄŒ„ëžć€ËĄąŒêÆ°€Çœ€À”€ŹÍŚ€ë€«đ‷€ì€Ț€»€óĄŁ"
+
#: ../../network/tools.pm_.c:41
msgid "Internet configuration"
msgstr "„€„󄿥Œ„Í„Ă„È€ÎÀßÄê"
@@ -7355,15 +7525,15 @@ msgstr "„ą„«„Š„ó„È„Ń„č„ïĄŒ„É"
msgid "United Kingdom"
msgstr ""
-#: ../../partition_table.pm_.c:606
+#: ../../partition_table.pm_.c:602
msgid "mount failed: "
msgstr "„Ț„Š„ó„ȀˌșÇÔ: "
-#: ../../partition_table.pm_.c:670
+#: ../../partition_table.pm_.c:666
msgid "Extended partition not supported on this platform"
msgstr "€ł€Î„Ț„·„ó€Ç€ÏĄąłÈÄ„„ŃĄŒ„Æ„Ł„·„ç„ó€Ï„”„ĘĄŒ„È€”€ì€Æ€€€Ț€»€ó"
-#: ../../partition_table.pm_.c:688
+#: ../../partition_table.pm_.c:684
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
@@ -7373,21 +7543,21 @@ msgstr ""
"€É€Š€·€Æ€â»È€€€ż€±€ì€ĐĄą„Ś„é„€„Ț„ê„ŃĄŒ„Æ„Ł„·„ç„ó€ò°ÜÆ°€·€ÆĄąÌ€»ŰÄê€Î·ê€ò\n"
"łÈÄ„„ŃĄŒ„Æ„Ł„·„ç„ó€ÎÎـˀâ€Ă€Æ€­€Ț€·€ç€ŠĄŁ"
-#: ../../partition_table.pm_.c:778
+#: ../../partition_table.pm_.c:774
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "%s „Ő„Ą„€„뀫€é€ÎÉüž”€ŹŒșÇÔ€·€Ț€·€żĄ§ %s"
-#: ../../partition_table.pm_.c:780
+#: ../../partition_table.pm_.c:776
msgid "Bad backup file"
msgstr "„Đ„Ă„Ż„ą„Ă„Ś„Ő„Ą„€„뀏Čő€ì€Æ€€€Ț€č"
-#: ../../partition_table.pm_.c:802
+#: ../../partition_table.pm_.c:798
#, c-format
msgid "Error writing to file %s"
msgstr "„Ő„Ą„€„ë %s €Ű€Îœń€­čț€ß„š„éĄŒ"
-#: ../../partition_table/raw.pm_.c:187
+#: ../../partition_table/raw.pm_.c:189
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
@@ -7433,150 +7603,155 @@ msgstr "LPD - „é„€„ó„Ś„ê„ó„ż„ÇĄŒ„â„ó"
msgid "PDQ - Print, Don't Queue"
msgstr "PDQ - Print, Don't QueueĄÊ„­„ćĄŒ€Ê€·€Ç°őșțĄË"
-#: ../../printer.pm_.c:35 ../../printer.pm_.c:854
+#: ../../printer.pm_.c:34 ../../printer.pm_.c:1125
msgid "CUPS"
msgstr "CUPS"
-#: ../../printer.pm_.c:36
+#: ../../printer.pm_.c:35
msgid "LPRng"
msgstr "LPRng"
-#: ../../printer.pm_.c:37
+#: ../../printer.pm_.c:36
msgid "LPD"
msgstr "LPD"
-#: ../../printer.pm_.c:38
+#: ../../printer.pm_.c:37
msgid "PDQ"
msgstr "PDQ"
-#: ../../printer.pm_.c:50
+#: ../../printer.pm_.c:49
msgid "Local printer"
msgstr "„íĄŒ„«„ë„Ś„ê„ó„ż"
-#: ../../printer.pm_.c:51
+#: ../../printer.pm_.c:50
msgid "Remote printer"
msgstr "„ê„âĄŒ„È„Ś„ê„ó„ż"
-#: ../../printer.pm_.c:52
+#: ../../printer.pm_.c:51
msgid "Printer on remote CUPS server"
msgstr "„ê„âĄŒ„ÈCUPS „”ĄŒ„ĐŸć€Î„Ś„ê„ó„ż"
-#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:776
+#: ../../printer.pm_.c:52 ../../printerdrake.pm_.c:883
msgid "Printer on remote lpd server"
msgstr "„ê„âĄŒ„È lpd„”ĄŒ„ĐŸć€Î„Ś„ê„ó„ż"
-#: ../../printer.pm_.c:54
+#: ../../printer.pm_.c:53
msgid "Network printer (TCP/Socket)"
msgstr "„Í„Ă„È„ïĄŒ„Ż„Ś„ê„󄿥ÊTCP/„œ„±„Ă„ÈĄË"
-#: ../../printer.pm_.c:55
+#: ../../printer.pm_.c:54
msgid "Printer on SMB/Windows 95/98/NT server"
msgstr "SMB/„Š„Ł„ó„É„Š„ș 95/98/NT„”ĄŒ„ĐŸć€Î„Ś„ê„ó„ż"
-#: ../../printer.pm_.c:56
+#: ../../printer.pm_.c:55
msgid "Printer on NetWare server"
msgstr "NetWare „”ĄŒ„ĐŸć€Î„Ś„ê„ó„ż"
-#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:780
+#: ../../printer.pm_.c:56 ../../printerdrake.pm_.c:887
msgid "Enter a printer device URI"
msgstr "„Ś„ê„ó„ż„Ç„Đ„€„č€ÎURI€òÆțÎÏ"
-#: ../../printer.pm_.c:58
+#: ../../printer.pm_.c:57
msgid "Pipe job into a command"
msgstr "„ž„ç„Ö€ò„ł„Ț„ó„ɀۄф€„Ś"
-#: ../../printer.pm_.c:487 ../../printer.pm_.c:678 ../../printer.pm_.c:1000
-#: ../../printerdrake.pm_.c:2070 ../../printerdrake.pm_.c:3189
+#: ../../printer.pm_.c:324 ../../printer.pm_.c:366 ../../printer.pm_.c:533
+#, fuzzy
+msgid "Unknown Model"
+msgstr "Ì€Ă΀΄â„Ç„ë"
+
+#: ../../printer.pm_.c:735 ../../printer.pm_.c:926 ../../printer.pm_.c:1318
+#: ../../printerdrake.pm_.c:2260 ../../printerdrake.pm_.c:3414
msgid "Unknown model"
msgstr "Ì€Ă΀΄â„Ç„ë"
-#: ../../printer.pm_.c:515
+#: ../../printer.pm_.c:763
msgid "Local Printers"
msgstr "„íĄŒ„«„ë„Ś„ê„ó„ż"
-#: ../../printer.pm_.c:517 ../../printer.pm_.c:855
+#: ../../printer.pm_.c:765 ../../printer.pm_.c:1126
msgid "Remote Printers"
msgstr "„ê„âĄŒ„È„Ś„ê„ó„ż"
-#: ../../printer.pm_.c:524 ../../printerdrake.pm_.c:301
+#: ../../printer.pm_.c:772 ../../printerdrake.pm_.c:404
#, c-format
msgid " on parallel port \\/*%s"
msgstr " °ÊČŒ€Î„Ń„é„ì„ë„ĘĄŒ„ÈŸć \\/*%s"
-#: ../../printer.pm_.c:527 ../../printerdrake.pm_.c:303
+#: ../../printer.pm_.c:775 ../../printerdrake.pm_.c:406
#, c-format
msgid ", USB printer \\/*%s"
msgstr ", USB „Ś„ê„ó„ż \\/*%s"
-#: ../../printer.pm_.c:532
+#: ../../printer.pm_.c:780
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ", „Ń„é„ì„ë„ĘĄŒ„ÈŸć€ÎÂż”ĄÇœ„Ç„Đ„€„č \\/*%s"
-#: ../../printer.pm_.c:535
+#: ../../printer.pm_.c:783
msgid ", multi-function device on USB"
msgstr "USB Ÿć€ÎÂż”ĄÇœ„Ç„Đ„€„č"
-#: ../../printer.pm_.c:537
+#: ../../printer.pm_.c:785
msgid ", multi-function device on HP JetDirect"
msgstr ", HP JetDirectŸć€ÎÂż”ĄÇœ„Ç„Đ„€„č"
-#: ../../printer.pm_.c:539
+#: ../../printer.pm_.c:787
msgid ", multi-function device"
msgstr ", Âż”ĄÇœ„Ç„Đ„€„č"
-#: ../../printer.pm_.c:542
+#: ../../printer.pm_.c:790
#, c-format
msgid ", printing to %s"
msgstr "%s €Ű°őșțœĐÎÏĂæ"
-#: ../../printer.pm_.c:544
+#: ../../printer.pm_.c:792
#, fuzzy, c-format
msgid " on LPD server \"%s\", printer \"%s\""
msgstr "LPD „”ĄŒ„Đ ĄÖ%sĄŚŸć€Î, „Ś„ê„󄿥Ö%sĄŚ"
-#: ../../printer.pm_.c:546
+#: ../../printer.pm_.c:794
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ", TCP/IP „Û„č„ÈĄÖ%sĄŚ, „ĘĄŒ„È %s"
-#: ../../printer.pm_.c:550
+#: ../../printer.pm_.c:798
#, fuzzy, c-format
msgid " on SMB/Windows server \"%s\", share \"%s\""
msgstr "„Š„Ł„ó„É„Š„ș„”ĄŒ„Đ ĄÖ%sĄŚŸć€Î, ¶ŠÍ­ĄÖ%sĄŚ"
-#: ../../printer.pm_.c:554
+#: ../../printer.pm_.c:802
#, fuzzy, c-format
msgid " on Novell server \"%s\", printer \"%s\""
msgstr "Novell „”ĄŒ„Đ ĄÖ%sĄŚŸć€Î, „Ś„ê„󄿥Ö%sĄŚ"
-#: ../../printer.pm_.c:556
+#: ../../printer.pm_.c:804
#, c-format
msgid ", using command %s"
msgstr ", „ł„Ț„ó„ÉĄÖ%sĄŚ€ò»ÈÍŃ"
-#: ../../printer.pm_.c:675 ../../printerdrake.pm_.c:1540
+#: ../../printer.pm_.c:923 ../../printerdrake.pm_.c:1656
msgid "Raw printer (No driver)"
msgstr "Àž€Î„Ś„ê„ó„żĄÊ„É„é„€„Đ€Ê€·ĄË"
-#: ../../printer.pm_.c:824
+#: ../../printer.pm_.c:1095
#, c-format
msgid "(on %s)"
msgstr "(%sŸć€Ç)"
-#: ../../printer.pm_.c:826
+#: ../../printer.pm_.c:1097
msgid "(on this machine)"
msgstr "ĄÊ€ł€Î„Ț„·„óŸć€ÇĄË"
-#: ../../printer.pm_.c:851
+#: ../../printer.pm_.c:1122
#, c-format
msgid "On CUPS server \"%s\""
msgstr "CUPS „”ĄŒ„ĐĄÖ%sĄŚŸć€Ç"
-#: ../../printer.pm_.c:857 ../../printerdrake.pm_.c:2851
-#: ../../printerdrake.pm_.c:2862 ../../printerdrake.pm_.c:3078
-#: ../../printerdrake.pm_.c:3130 ../../printerdrake.pm_.c:3156
-#: ../../printerdrake.pm_.c:3326 ../../printerdrake.pm_.c:3328
+#: ../../printer.pm_.c:1128 ../../printerdrake.pm_.c:3071
+#: ../../printerdrake.pm_.c:3082 ../../printerdrake.pm_.c:3303
+#: ../../printerdrake.pm_.c:3355 ../../printerdrake.pm_.c:3381
+#: ../../printerdrake.pm_.c:3556 ../../printerdrake.pm_.c:3558
msgid " (Default)"
msgstr " („Ç„Ő„©„ë„È)"
@@ -7602,11 +7777,11 @@ msgstr ""
msgid "Printer auto-detection (Local, TCP/Socket, and SMB printers)"
msgstr ""
-#: ../../printerdrake.pm_.c:84 ../../printerdrake.pm_.c:2914
+#: ../../printerdrake.pm_.c:84 ../../printerdrake.pm_.c:3135
msgid "CUPS configuration"
msgstr "CUPS ÀßÄê"
-#: ../../printerdrake.pm_.c:85 ../../printerdrake.pm_.c:2915
+#: ../../printerdrake.pm_.c:85 ../../printerdrake.pm_.c:3136
msgid "Specify CUPS server"
msgstr "CUPS „”ĄŒ„Đ€ò»ŰÄê"
@@ -7652,7 +7827,7 @@ msgstr ""
msgid "The IP address should look like 192.168.1.20"
msgstr "IP „ą„É„ì„č€Ï 192.168.1.20 €Î€è€Š€ËÆțÎÏ€·€ÆČŒ€”€€"
-#: ../../printerdrake.pm_.c:95 ../../printerdrake.pm_.c:987
+#: ../../printerdrake.pm_.c:95 ../../printerdrake.pm_.c:1094
msgid "The port number should be an integer!"
msgstr "„ĘĄŒ„ÈÈÖčæ€ÏÀ”żô€Ç€čĄȘ"
@@ -7660,7 +7835,7 @@ msgstr "„ĘĄŒ„ÈÈÖčæ€ÏÀ”żô€Ç€čĄȘ"
msgid "CUPS server IP"
msgstr "CUPS „”ĄŒ„Đ€ÎIP"
-#: ../../printerdrake.pm_.c:103 ../../printerdrake.pm_.c:1007
+#: ../../printerdrake.pm_.c:103 ../../printerdrake.pm_.c:1114
msgid "Port"
msgstr "„ĘĄŒ„È"
@@ -7668,12 +7843,130 @@ msgstr "„ĘĄŒ„È"
msgid "Automatic CUPS configuration"
msgstr "Œ«Æ° CUPS ÀßÄê"
-#: ../../printerdrake.pm_.c:183 ../../printerdrake.pm_.c:192
-#: ../../printerdrake.pm_.c:2897 ../../printerdrake.pm_.c:3017
+#: ../../printerdrake.pm_.c:177 ../../printerdrake.pm_.c:247
+#: ../../printerdrake.pm_.c:1529 ../../printerdrake.pm_.c:1533
+#: ../../printerdrake.pm_.c:1651 ../../printerdrake.pm_.c:2203
+#: ../../printerdrake.pm_.c:2356 ../../printerdrake.pm_.c:2415
+#: ../../printerdrake.pm_.c:2488 ../../printerdrake.pm_.c:2509
+#: ../../printerdrake.pm_.c:2699 ../../printerdrake.pm_.c:2740
+#: ../../printerdrake.pm_.c:2745 ../../printerdrake.pm_.c:2779
+#: ../../printerdrake.pm_.c:2784 ../../printerdrake.pm_.c:2821
+#: ../../printerdrake.pm_.c:2874 ../../printerdrake.pm_.c:2894
+#: ../../printerdrake.pm_.c:2908 ../../printerdrake.pm_.c:2942
+#: ../../printerdrake.pm_.c:2988 ../../printerdrake.pm_.c:3006
+#: ../../printerdrake.pm_.c:3095 ../../printerdrake.pm_.c:3169
+#: ../../printerdrake.pm_.c:3471 ../../printerdrake.pm_.c:3526
+#: ../../printerdrake.pm_.c:3579 ../../standalone/printerdrake_.c:57
+msgid "Printerdrake"
+msgstr "Printerdrake"
+
+#: ../../printerdrake.pm_.c:178
+#, fuzzy
+msgid "Checking your system..."
+msgstr "„Ś„ê„ó„ż„·„č„Æ„àșÆ”ŻÆ°Ăæ..."
+
+#: ../../printerdrake.pm_.c:186
+msgid ""
+"There are no printers found which are directly connected to your machine"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:198
+#, fuzzy
+msgid ""
+"The following printers\n"
+"\n"
+msgstr "°ÊČŒ€Î„Ń„Ă„±ĄŒ„ž€ŹŒè€êœü€«€ì€Ț€č"
+
+#: ../../printerdrake.pm_.c:199
+#, fuzzy
+msgid ""
+"The following printer\n"
+"\n"
+msgstr "°ÊČŒ€Î„Ń„Ă„±ĄŒ„ž€ŹŒè€êœü€«€ì€Ț€č"
+
+#: ../../printerdrake.pm_.c:201
+msgid ""
+"\n"
+"and one unknown printer are "
+msgstr ""
+
+#: ../../printerdrake.pm_.c:203
+#, c-format
+msgid ""
+"\n"
+"and %d unknown printers are "
+msgstr ""
+
+#: ../../printerdrake.pm_.c:207
+msgid ""
+"\n"
+"are "
+msgstr ""
+
+#: ../../printerdrake.pm_.c:208
+msgid ""
+"\n"
+"is "
+msgstr ""
+
+#: ../../printerdrake.pm_.c:210
+#, fuzzy
+msgid "directly connected to your system"
+msgstr "„·„č„Æ„àŸć€Î„Ő„©„ó„È€ò„ł„ÔĄŒ"
+
+#: ../../printerdrake.pm_.c:213
+msgid ""
+"\n"
+"There is one unknown printer directly connected to your system"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:215
+#, c-format
+msgid ""
+"\n"
+"There are %d unknown printers directly connected to your system"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:221
+#, fuzzy
+msgid " (Make sure that all your printers are connected and turned on).\n"
+msgstr "„â„Ç„à€Ï€É€Î„·„ê„ą„ë„ĘĄŒ„ȀˀĀʀŹ€Ă€Æ€€€Ț€č€«Ą©"
+
+#: ../../printerdrake.pm_.c:235
+msgid ""
+"Do you want to enable printing on the printers mentioned above or on "
+"printers in the local network?\n"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:236
+#, fuzzy
+msgid "Do you want to enable printing on printers in the local network?\n"
+msgstr ""
+"€ł€Î„Ś„ê„ó„ż (\"%s\") €ò\n"
+"„Ç„Ő„©„ë„È„Ś„ê„󄿀ˀ·€Ț€č€«Ą©"
+
+#: ../../printerdrake.pm_.c:238
+#, fuzzy
+msgid "Do you want to enable printing on the printers mentioned above?\n"
+msgstr "„ÖĄŒ„È»ț€ËÀÜÂł€òł«»Ï€·€Ț€č€«Ą©"
+
+#: ../../printerdrake.pm_.c:239
+msgid "Are you sure that you want to set up printing on this machine?\n"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:240
+#, c-format
+msgid ""
+"NOTE: Depending on the printer model and the printing system up to %d MB of "
+"additional software will be installed."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:269 ../../printerdrake.pm_.c:278
+#: ../../printerdrake.pm_.c:3117 ../../printerdrake.pm_.c:3242
msgid "Add a new printer"
msgstr "„Ś„ê„ó„żÄÉČĂ"
-#: ../../printerdrake.pm_.c:184
+#: ../../printerdrake.pm_.c:270
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7694,7 +7987,7 @@ msgstr ""
"„Ś„ê„ó„żÀßÄê€ËÉŹÍŚ€ÊłÆŒïŸđÊó€òËŹ€Í€ÆĄąłÆŒï„Ś„ê„ó„ż„É„é„€„Đ€ä\n"
"€œ€Î„Ș„Ś„·„ç„óĄą„Ś„ê„ó„żÀÜÂłÊęŒ°€òÁȘ€Ù€ë€è€Š€Ë€·€Ț€čĄŁ"
-#: ../../printerdrake.pm_.c:193
+#: ../../printerdrake.pm_.c:280
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7703,7 +7996,7 @@ msgid ""
"computer, connected directly to the network or to a remote Windows machine.\n"
"\n"
"If you have printer(s) connected to this machine, Please plug it/them in on "
-"this computer and turn it/them on so that they can be auto-detected. Also "
+"this computer and turn it/them on so that it/they can be auto-detected. Also "
"your network printer(s) and you Windows machines must be connected and "
"turned on.\n"
"\n"
@@ -7716,7 +8009,22 @@ msgid ""
"want to set up your printer(s) now."
msgstr ""
-#: ../../printerdrake.pm_.c:202
+#: ../../printerdrake.pm_.c:289 ../../printerdrake.pm_.c:306
+msgid ""
+"\n"
+"Welcome to the Printer Setup Wizard\n"
+"\n"
+"This wizard will help you to install your printer(s) connected to this "
+"computer.\n"
+"\n"
+"If you have printer(s) connected to this machine, Please plug it/them in on "
+"this computer and turn it/them on so that it/they can be auto-detected.\n"
+"\n"
+" Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
+"want to set up your printer(s) now."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:297
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7725,7 +8033,7 @@ msgid ""
"computer or connected directly to the network.\n"
"\n"
"If you have printer(s) connected to this machine, Please plug it/them in on "
-"this computer and turn it/them on so that they can be auto-detected. Also "
+"this computer and turn it/them on so that it/they can be auto-detected. Also "
"your network printer(s) must be connected and turned on.\n"
"\n"
"Note that auto-detecting printers on the network takes longer than the auto-"
@@ -7736,25 +8044,25 @@ msgid ""
"want to set up your printer(s) now."
msgstr ""
-#: ../../printerdrake.pm_.c:213
+#: ../../printerdrake.pm_.c:315
#, fuzzy
msgid "Auto-detect printers connected to this machine"
msgstr "„Ś„ê„ó„żŒ«Æ°žĄœĐ"
-#: ../../printerdrake.pm_.c:215
+#: ../../printerdrake.pm_.c:318
msgid "Auto-detect printers connected directly to the local network"
msgstr ""
-#: ../../printerdrake.pm_.c:218
+#: ../../printerdrake.pm_.c:321
msgid "Auto-detect printers connected to machines running Microsoft Windows"
msgstr ""
-#: ../../printerdrake.pm_.c:245 ../../printerdrake.pm_.c:459
-#: ../../printerdrake.pm_.c:484
+#: ../../printerdrake.pm_.c:348 ../../printerdrake.pm_.c:562
+#: ../../printerdrake.pm_.c:587
msgid "Local Printer"
msgstr "„íĄŒ„«„ë„Ś„ê„ó„ż"
-#: ../../printerdrake.pm_.c:246
+#: ../../printerdrake.pm_.c:349
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -7778,50 +8086,50 @@ msgstr ""
"€·€ż€±€ì€ĐĄąMandrake „ł„ó„È„íĄŒ„ë„»„󄿥Œ€ÎĄÖ„ÏĄŒ„É„Š„§„ąĄŚ€ÎĂæ€Î\n"
"ĄÖ„Ś„ê„󄿥Ś€òÁȘ€ó€Ç€Ż€À€”€€ĄŁ"
-#: ../../printerdrake.pm_.c:283 ../../printerdrake.pm_.c:474
-#: ../../printerdrake.pm_.c:683 ../../printerdrake.pm_.c:923
+#: ../../printerdrake.pm_.c:386 ../../printerdrake.pm_.c:577
+#: ../../printerdrake.pm_.c:790 ../../printerdrake.pm_.c:1030
#, fuzzy
msgid "Printer auto-detection"
msgstr "Œ«Æ°žĄœĐ€ò€č€ë"
-#: ../../printerdrake.pm_.c:305
+#: ../../printerdrake.pm_.c:408
#, fuzzy, c-format
msgid ", network printer \"%s\", port %s"
msgstr ", TCP/IP „Û„č„ÈĄÖ%sĄŚ, „ĘĄŒ„È %s"
-#: ../../printerdrake.pm_.c:307
+#: ../../printerdrake.pm_.c:410
#, fuzzy, c-format
msgid ", printer \"%s\" on SMB/Windows server \"%s\""
msgstr "SMB/„Š„Ł„ó„É„Š„ș 95/98/NT„”ĄŒ„ĐŸć€Î„Ś„ê„ó„ż"
-#: ../../printerdrake.pm_.c:313
+#: ../../printerdrake.pm_.c:416
#, c-format
msgid "Detected %s"
msgstr "%s €òžĄœĐ"
-#: ../../printerdrake.pm_.c:317 ../../printerdrake.pm_.c:348
-#: ../../printerdrake.pm_.c:367
+#: ../../printerdrake.pm_.c:420 ../../printerdrake.pm_.c:451
+#: ../../printerdrake.pm_.c:470
#, c-format
msgid "Printer on parallel port \\/*%s"
msgstr "„Ń„é„ì„ë„ĘĄŒ„ÈŸć€Î„Ś„ê„ó„ż \\/*%s"
-#: ../../printerdrake.pm_.c:319 ../../printerdrake.pm_.c:350
-#: ../../printerdrake.pm_.c:372
+#: ../../printerdrake.pm_.c:422 ../../printerdrake.pm_.c:453
+#: ../../printerdrake.pm_.c:475
#, c-format
msgid "USB printer \\/*%s"
msgstr "USB „Ś„ê„ó„ż \\/*%s"
-#: ../../printerdrake.pm_.c:321
+#: ../../printerdrake.pm_.c:424
#, fuzzy, c-format
msgid "Network printer \"%s\", port %s"
msgstr "„Í„Ă„È„ïĄŒ„Ż„Ś„ê„󄿥ÊTCP/„œ„±„Ă„ÈĄË"
-#: ../../printerdrake.pm_.c:323
+#: ../../printerdrake.pm_.c:426
#, fuzzy, c-format
msgid "Printer \"%s\" on SMB/Windows server \"%s\""
msgstr "SMB/„Š„Ł„ó„É„Š„ș 95/98/NT„”ĄŒ„ĐŸć€Î„Ś„ê„ó„ż"
-#: ../../printerdrake.pm_.c:460
+#: ../../printerdrake.pm_.c:563
msgid ""
"No local printer found! To manually install a printer enter a device name/"
"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
@@ -7833,23 +8141,23 @@ msgstr ""
"€Ź LPT1:, LPT2:, ..., €ËÂбț€·€ÆĄą1ÈÖÌ܀ΠUSB „Ś„ê„ó„ż: /dev/usb/lp0, 2ÈÖÌÜ"
"€Î USB „Ś„ê„ó„ż: /dev/usb/lp1, ...)."
-#: ../../printerdrake.pm_.c:464
+#: ../../printerdrake.pm_.c:567
msgid "You must enter a device or file name!"
msgstr "„Ç„Đ„€„耫„Ő„Ą„€„ëÌŸ€òÆțÎÏ€·€Æ€Ż€À€”€€"
-#: ../../printerdrake.pm_.c:475
+#: ../../printerdrake.pm_.c:578
#, fuzzy
msgid "No printer found!"
msgstr ""
"„íĄŒ„«„ë„Ś„ê„󄿀Źž«€Ä€«€ê€Ț€»€óĄȘ\n"
"\n"
-#: ../../printerdrake.pm_.c:485
+#: ../../printerdrake.pm_.c:588
#, fuzzy
msgid "Available printers"
msgstr "„íĄŒ„«„ë„Ś„ê„ó„ż"
-#: ../../printerdrake.pm_.c:489
+#: ../../printerdrake.pm_.c:592
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
@@ -7857,7 +8165,7 @@ msgstr ""
"°ÊČŒ€Î„Ś„ê„󄿀ŹŒ«Æ°žĄœĐ€”€ì€Ț€·€żĄŁ€â€·€ł€ì€ŹÀßÄꀷ€ż€€€â€Î€Ç€Ê€±€ì€ĐĄą\n"
"ÆțÎÏčԀ˥ą„Ç„Đ„€„čÌŸ/„Ő„Ą„€„ëÌŸ€òÆțÎÏ€·€Æ€Ż€À€”€€"
-#: ../../printerdrake.pm_.c:490
+#: ../../printerdrake.pm_.c:593
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up or enter a device name/file name in the input line"
@@ -7865,7 +8173,7 @@ msgstr ""
"°ÊČŒ€Î„Ś„ê„󄿀ŹŒ«Æ°žĄœĐ€”€ì€Ț€·€żĄŁ€â€·ÀßÄꀷ€ż€€€â€Î€Ź€ł€ł€Ë€Ê€±€ì€ĐĄą\n"
"ÆțÎÏčԀ˥ą„Ç„Đ„€„čÌŸ/„Ő„Ą„€„ëÌŸ€òÆțÎÏ€·€Æ€Ż€À€”€€"
-#: ../../printerdrake.pm_.c:492
+#: ../../printerdrake.pm_.c:595
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
@@ -7876,7 +8184,7 @@ msgstr ""
"žĄœĐ€”€ì€Æ€€€Ê€«€Ă€ż€êĄą„«„č„ż„àÀßÄê€ò€·€ż€±€ì€ĐĄÖŒêÆ°ÀßÄêĄŚ€òÍ­žú€Ë€·€Æ€Ż€À"
"€”€€ĄŁ"
-#: ../../printerdrake.pm_.c:493
+#: ../../printerdrake.pm_.c:596
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
@@ -7887,7 +8195,7 @@ msgstr ""
"„Ś„ê„ó„ż€ÏŽ°ÁŽ€ËŒ«Æ°€ÇÀßÄꀔ€ì€Ț€čĄŁžĄœĐ€”€ì€Æ€€€Ê€«€Ă€ż€êĄą„«„č„ż„àÀßÄê\n"
"€·€ż€±€ì€ĐĄÖŒêÆ°ÀßÄêĄŚ€òÍ­žú€Ë€·€Æ€Ż€À€”€€ĄŁ"
-#: ../../printerdrake.pm_.c:495
+#: ../../printerdrake.pm_.c:598
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
@@ -7895,11 +8203,11 @@ msgstr ""
"„Ś„ê„󄿀ŹÀÜÂł€”€ì€Æ€€€ë„ĘĄŒ„È€òÁȘ€Ö€«ĄąÆțÎÏčԀ˄DŽЄ€„čÌŸ/„Ő„Ą„€„ëÌŸ€ò\n"
"ÆțÎÏ€·€Æ€Ż€À€”€€"
-#: ../../printerdrake.pm_.c:496
+#: ../../printerdrake.pm_.c:599
msgid "Please choose the port where your printer is connected to."
msgstr "„â„Ç„à€Ï€É€Î„·„ê„ą„ë„ĘĄŒ„ȀˀĀʀŹ€Ă€Æ€€€Ț€č€«Ą©"
-#: ../../printerdrake.pm_.c:498
+#: ../../printerdrake.pm_.c:601
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
@@ -7907,19 +8215,19 @@ msgstr ""
"(„Ń„é„ì„ë„ĘĄŒ„Ȁʀé: /dev/lp0, /dev/lp1,... €Ź LPT1:, LPT2:, ..., €ËÂбțĄą1ÈÖ"
"Ì܀ΠUSB „Ś„ê„ó„ż: /dev/usb/lp0, 2ÈÖÌ܀ΠUSB „Ś„ê„ó„ż: /dev/usb/lp1, ...)."
-#: ../../printerdrake.pm_.c:503
+#: ../../printerdrake.pm_.c:606
msgid "You must choose/enter a printer/device!"
msgstr "„Ś„ê„󄿀«„Ç„Đ„€„č€òÆțÎÏĄŠÁȘÂò"
-#: ../../printerdrake.pm_.c:523
+#: ../../printerdrake.pm_.c:626
msgid "Manual configuration"
msgstr "„Ț„Ë„ć„ą„ëÀßÄê"
-#: ../../printerdrake.pm_.c:577
+#: ../../printerdrake.pm_.c:680
msgid "Remote lpd Printer Options"
msgstr "„ê„âĄŒ„Èlpd„Ś„ê„ó„ż„Ș„Ś„·„ç„ó"
-#: ../../printerdrake.pm_.c:578
+#: ../../printerdrake.pm_.c:681
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
"server and the printer name on that server."
@@ -7927,47 +8235,47 @@ msgstr ""
"„ê„âĄŒ„ȀΠlpd €Î „Ś„ê„󄿀ò»È€Š€Ë€ÏĄ€„Ś„ê„ó„ż„”ĄŒ„Đ€Î\n"
"„Û„č„ÈÌŸ€È„”ĄŒ„ĐŸć€Î„Ś„ê„ó„żÌŸ€ŹÉŹÍŚ€Ë€Ê€ê€Ț€čĄŁ."
-#: ../../printerdrake.pm_.c:579
+#: ../../printerdrake.pm_.c:682
msgid "Remote host name"
msgstr "„ê„âĄŒ„È„Û„č„ÈÌŸ"
-#: ../../printerdrake.pm_.c:580
+#: ../../printerdrake.pm_.c:683
msgid "Remote printer name"
msgstr "„ê„âĄŒ„È„Ś„ê„ó„żÌŸ"
-#: ../../printerdrake.pm_.c:583
+#: ../../printerdrake.pm_.c:686
msgid "Remote host name missing!"
msgstr "„ê„âĄŒ„È„Û„č„ÈÌŸ€Ź€ą€ê€Ț€»€óĄȘ"
-#: ../../printerdrake.pm_.c:587
+#: ../../printerdrake.pm_.c:690
msgid "Remote printer name missing!"
msgstr "„ê„âĄŒ„È„Ś„ê„ó„żÌŸ€Ź€ą€ê€Ț€»€óĄȘ"
-#: ../../printerdrake.pm_.c:609 ../../printerdrake.pm_.c:1119
+#: ../../printerdrake.pm_.c:712 ../../printerdrake.pm_.c:1225
#, fuzzy, c-format
msgid "Detected model: %s %s"
msgstr "%s €òžĄœĐ"
-#: ../../printerdrake.pm_.c:683 ../../printerdrake.pm_.c:923
+#: ../../printerdrake.pm_.c:790 ../../printerdrake.pm_.c:1030
#, fuzzy
msgid "Scanning network..."
msgstr "„Í„Ă„È„ïĄŒ„Ż”ŻÆ°Ăæ..."
-#: ../../printerdrake.pm_.c:692 ../../printerdrake.pm_.c:713
+#: ../../printerdrake.pm_.c:799 ../../printerdrake.pm_.c:820
#, fuzzy, c-format
msgid ", printer \"%s\" on server \"%s\""
msgstr "„Š„Ł„ó„É„Š„ș„”ĄŒ„Đ ĄÖ%sĄŚŸć€Î, ¶ŠÍ­ĄÖ%sĄŚ"
-#: ../../printerdrake.pm_.c:695 ../../printerdrake.pm_.c:716
+#: ../../printerdrake.pm_.c:802 ../../printerdrake.pm_.c:823
#, fuzzy, c-format
msgid "Printer \"%s\" on server \"%s\""
msgstr "°ÊČŒ€Î„Ś„ê„󄿀ǰőșțĂæĄ§ \"%s\""
-#: ../../printerdrake.pm_.c:736
+#: ../../printerdrake.pm_.c:843
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "SMB („Š„Ł„ó„É„Š„ș 9x/NT) „Ś„ê„󄿀΄Ș„Ś„·„ç„ó"
-#: ../../printerdrake.pm_.c:737
+#: ../../printerdrake.pm_.c:844
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
"may be different from its TCP/IP hostname!) and possibly the IP address of "
@@ -7978,46 +8286,46 @@ msgstr ""
"ÂżÊŹ„Ś„ê„ó„È„”ĄŒ„ЀΠIP „ą„É„ì„襀„ą„Ż„»„耷€ż€€„Ś„ê„󄿀ζŠÍ­ÌŸĄ€\n"
"ĆŹÀÚ€Ê„æĄŒ„¶ÌŸĄ€„Ń„č„ïĄŒ„É€Ș€è€Ó„ïĄŒ„Ż„°„ëĄŒ„Ś€ÎŸđÊó€ŹÉŹÍŚ€Ë€Ê€ê€Ț€čĄŁ"
-#: ../../printerdrake.pm_.c:738
+#: ../../printerdrake.pm_.c:845
msgid ""
" If the desired printer was auto-detected, simply choose it from the list "
"and then add user name, password, and/or workgroup if needed."
msgstr ""
-#: ../../printerdrake.pm_.c:739
+#: ../../printerdrake.pm_.c:846
msgid "SMB server host"
msgstr "SMB„”ĄŒ„Đ„Û„č„È"
-#: ../../printerdrake.pm_.c:740
+#: ../../printerdrake.pm_.c:847
msgid "SMB server IP"
msgstr "SMB„”ĄŒ„Đ€ÎIP"
-#: ../../printerdrake.pm_.c:741
+#: ../../printerdrake.pm_.c:848
msgid "Share name"
msgstr "„·„§„ąÌŸ"
-#: ../../printerdrake.pm_.c:744
+#: ../../printerdrake.pm_.c:851
msgid "Workgroup"
msgstr "„ïĄŒ„Ż„°„ëĄŒ„Ś"
-#: ../../printerdrake.pm_.c:746
+#: ../../printerdrake.pm_.c:853
#, fuzzy
msgid "Auto-detected"
msgstr "Œ«Æ°žĄœĐ€ò€č€ë"
-#: ../../printerdrake.pm_.c:757
+#: ../../printerdrake.pm_.c:864
msgid "Either the server name or the server's IP must be given!"
msgstr "„”ĄŒ„ĐÌŸ€«Ąą„”ĄŒ„Đ€ÎIP€Ï€É€Š€·€Æ€âÍŚ€ê€Ț€čĄȘ"
-#: ../../printerdrake.pm_.c:761
+#: ../../printerdrake.pm_.c:868
msgid "Samba share name missing!"
msgstr "Samba„·„§„ąÌŸ€Ź€ą€ê€Ț€»€óĄȘ"
-#: ../../printerdrake.pm_.c:767
+#: ../../printerdrake.pm_.c:874
msgid "SECURITY WARNING!"
msgstr ""
-#: ../../printerdrake.pm_.c:768
+#: ../../printerdrake.pm_.c:875
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -8041,7 +8349,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:778
+#: ../../printerdrake.pm_.c:885
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -8050,7 +8358,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:781
+#: ../../printerdrake.pm_.c:888
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
@@ -8058,11 +8366,11 @@ msgid ""
"Do you really want to continue setting up this printer as you are doing now?"
msgstr ""
-#: ../../printerdrake.pm_.c:853
+#: ../../printerdrake.pm_.c:960
msgid "NetWare Printer Options"
msgstr "Netware „Ś„ê„󄿀΄Ș„Ś„·„ç„ó"
-#: ../../printerdrake.pm_.c:854
+#: ../../printerdrake.pm_.c:961
msgid ""
"To print on a NetWare printer, you need to provide the NetWare print server "
"name (Note! it may be different from its TCP/IP hostname!) as well as the "
@@ -8073,43 +8381,43 @@ msgstr ""
"€ÈĄ€„ą„Ż„»„耷€ż€€„Ś„ê„󄿀΄Ś„ê„ó„È„­„ćĄŒÌŸĄ€ĆŹÀÚ€Ê„æĄŒ„¶ÌŸ€Ș€è€Ó\n"
"„Ń„č„ïĄŒ„É€ŹÉŹÍŚ€Ë€Ê€ê€Ț€čĄŁ"
-#: ../../printerdrake.pm_.c:855
+#: ../../printerdrake.pm_.c:962
msgid "Printer Server"
msgstr "„Ś„ê„ó„ż„”ĄŒ„Đ"
-#: ../../printerdrake.pm_.c:856
+#: ../../printerdrake.pm_.c:963
msgid "Print Queue Name"
msgstr "°őșț„­„ćĄŒ€ÎÌŸÁ°"
-#: ../../printerdrake.pm_.c:861
+#: ../../printerdrake.pm_.c:968
msgid "NCP server name missing!"
msgstr "NCP „”ĄŒ„ĐÌŸ€Ź€ą€ê€Ț€»€óĄȘ"
-#: ../../printerdrake.pm_.c:865
+#: ../../printerdrake.pm_.c:972
msgid "NCP queue name missing!"
msgstr "NCP „­„ćĄŒÌŸ€Ź€ą€ê€Ț€»€óĄȘ"
-#: ../../printerdrake.pm_.c:932 ../../printerdrake.pm_.c:952
+#: ../../printerdrake.pm_.c:1039 ../../printerdrake.pm_.c:1059
#, fuzzy, c-format
msgid ", host \"%s\", port %s"
msgstr ", TCP/IP „Û„č„ÈĄÖ%sĄŚ, „ĘĄŒ„È %s"
-#: ../../printerdrake.pm_.c:935 ../../printerdrake.pm_.c:955
+#: ../../printerdrake.pm_.c:1042 ../../printerdrake.pm_.c:1062
#, fuzzy, c-format
msgid "Host \"%s\", port %s"
msgstr ", TCP/IP „Û„č„ÈĄÖ%sĄŚ, „ĘĄŒ„È %s"
-#: ../../printerdrake.pm_.c:975
+#: ../../printerdrake.pm_.c:1082
msgid "TCP/Socket Printer Options"
msgstr "TCP/„œ„±„Ă„È„Ś„ê„󄿀΄Ș„Ś„·„ç„ó"
-#: ../../printerdrake.pm_.c:977
+#: ../../printerdrake.pm_.c:1084
msgid ""
"Choose one of the auto-detected printers from the list or enter the hostname "
"or IP and the optional port number (default is 9100) into the input fields."
msgstr ""
-#: ../../printerdrake.pm_.c:978
+#: ../../printerdrake.pm_.c:1085
#, fuzzy
msgid ""
"To print to a TCP or socket printer, you need to provide the host name or IP "
@@ -8122,21 +8430,21 @@ msgstr ""
"ÄÌŸï9100€Ç€č€ŹĄą€Û€«€Î„”ĄŒ„Đ€À€È€Ț€Á€Ț€Á€Ç€čĄŁ„ÏĄŒ„É„Š„§„ą€Î„Ț„Ë„ć„ą„ë€ò\n"
"ž«€Ț€·€ç€ŠĄŁ"
-#: ../../printerdrake.pm_.c:983
+#: ../../printerdrake.pm_.c:1090
#, fuzzy
msgid "Printer host name or IP missing!"
msgstr "„Ś„ê„ó„ż„Û„č„ÈÌŸ€Ź€ą€ê€Ț€»€óĄȘ"
-#: ../../printerdrake.pm_.c:1005
+#: ../../printerdrake.pm_.c:1112
#, fuzzy
msgid "Printer host name or IP"
msgstr "„Ś„ê„ó„ż„Û„č„ÈÌŸ"
-#: ../../printerdrake.pm_.c:1054 ../../printerdrake.pm_.c:1056
+#: ../../printerdrake.pm_.c:1160 ../../printerdrake.pm_.c:1162
msgid "Printer Device URI"
msgstr "„Ś„ê„ó„ż„Ç„Đ„€„č€ÎURI"
-#: ../../printerdrake.pm_.c:1055
+#: ../../printerdrake.pm_.c:1161
msgid ""
"You can specify directly the URI to access the printer. The URI must fulfill "
"either the CUPS or the Foomatic specifications. Note that not all URI types "
@@ -8146,11 +8454,11 @@ msgstr ""
"€ł€ÎURI€ÏCUPS»ĆÍÍ€«Foomatic»ĆÍ̀ǻŰÄꀷ€Æ€Ż€À€”€€ĄŁ\n"
"€Ê€ȘĄą€č€Ù€Æ€ÎURI„ż„€„Ś€ŹÁŽ„č„ŚĄŒ„é€Ç„”„ĘĄŒ„È€”€ì€Æ€€€ë€ï€±€ž€ă€Ê€€€Ç€čĄŁ"
-#: ../../printerdrake.pm_.c:1070
+#: ../../printerdrake.pm_.c:1176
msgid "A valid URI must be entered!"
msgstr "Í­žú€ÊURI€òÆțÎÏ€·€Æ€Ż€À€”€€ĄȘ"
-#: ../../printerdrake.pm_.c:1402
+#: ../../printerdrake.pm_.c:1515
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
"Location fields do not need to be filled in. They are comments for the users."
@@ -8159,27 +8467,27 @@ msgstr ""
"ÀâÌÀ€äŸìœê€ÎÍó€Ï¶őÍó€Ç€â€«€Ț€€€Ț€»€óĄŁ\n"
"€ł€ì€Ï„æĄŒ„¶€Ë€ï€«€ê€ä€č€Ż€č€ë€ż€á€Î€â€Î€Ç€čĄŁ"
-#: ../../printerdrake.pm_.c:1403
+#: ../../printerdrake.pm_.c:1516
msgid "Name of printer"
msgstr "„Ś„ê„󄿀ÎÌŸÁ°"
-#: ../../printerdrake.pm_.c:1405
+#: ../../printerdrake.pm_.c:1518
msgid "Location"
msgstr "„Ś„ê„ó„ż€ÎŸìœê"
-#: ../../printerdrake.pm_.c:1416 ../../printerdrake.pm_.c:1536
+#: ../../printerdrake.pm_.c:1530 ../../printerdrake.pm_.c:1652
msgid "Reading printer database..."
msgstr "„Ś„ê„ó„ż„ÇĄŒ„ż„ÙĄŒ„č€òÆÉ€ó€Ç€€€Ț€č..."
-#: ../../printerdrake.pm_.c:1419
+#: ../../printerdrake.pm_.c:1534
msgid "Preparing printer database..."
msgstr "„Ś„ê„ó„ż„ÇĄŒ„ż„ÙĄŒ„č€òœàÈśĂæ..."
-#: ../../printerdrake.pm_.c:1516
+#: ../../printerdrake.pm_.c:1631
msgid "Your printer model"
msgstr "„Ś„ê„󄿀ΔĄŒï"
-#: ../../printerdrake.pm_.c:1517
+#: ../../printerdrake.pm_.c:1632
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -8204,24 +8512,24 @@ msgstr ""
"\n"
"%s"
-#: ../../printerdrake.pm_.c:1522 ../../printerdrake.pm_.c:1525
+#: ../../printerdrake.pm_.c:1637 ../../printerdrake.pm_.c:1640
msgid "The model is correct"
msgstr "€ł€Î„â„Ç„ë€ò»È€Š"
-#: ../../printerdrake.pm_.c:1523 ../../printerdrake.pm_.c:1524
-#: ../../printerdrake.pm_.c:1527
+#: ../../printerdrake.pm_.c:1638 ../../printerdrake.pm_.c:1639
+#: ../../printerdrake.pm_.c:1642
msgid "Select model manually"
msgstr "ŒêÆ°€ÇÁȘ€Ö"
-#: ../../printerdrake.pm_.c:1543
+#: ../../printerdrake.pm_.c:1659
msgid "Printer model selection"
msgstr "„Ś„ê„󄿀ΔĄŒï€òÁȘ€Ö"
-#: ../../printerdrake.pm_.c:1544
+#: ../../printerdrake.pm_.c:1660
msgid "Which printer model do you have?"
msgstr "€É€Î”ĄŒï€Î„Ś„ê„󄿀ò»È€Ă€Æ€€€Ț€č€«Ą©"
-#: ../../printerdrake.pm_.c:1545
+#: ../../printerdrake.pm_.c:1661
msgid ""
"\n"
"\n"
@@ -8235,7 +8543,7 @@ msgstr ""
"„«ĄŒ„œ„뀏€Ț€Á€Ź€Ă€ż„â„Ç„ëČœĄÖ„Ê„Ț€Î„Ś„ê„󄿥ÊRaw Printer)ĄŚ€ò»Ű€·€Æ\n"
"€€€ż€éĄą°ìÍś€«€éÀ”€·€€”ĄŒï€òĂ”€·€Æ€Ż€À€”€€ĄŁ"
-#: ../../printerdrake.pm_.c:1548
+#: ../../printerdrake.pm_.c:1664
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
@@ -8243,11 +8551,11 @@ msgstr ""
"€ą€Ê€ż€Î„Ś„ê„󄿀Ź€Ê€±€ì€ĐĄąžßŽčÀ­€Î€ą€ë„Ś„ê„ó„żĄÊ„Ś„ê„󄿀΄Ț„Ë„ć„ą„뀫\n"
"Îà»ś„Ś„ê„󄿀òÁȘ€ó€Ç€Ż€À€”€€ĄŁ"
-#: ../../printerdrake.pm_.c:1624
+#: ../../printerdrake.pm_.c:1741
msgid "OKI winprinter configuration"
msgstr "OKI win„Ś„ê„󄿀ÎÀßÄê"
-#: ../../printerdrake.pm_.c:1625
+#: ../../printerdrake.pm_.c:1742
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -8264,11 +8572,11 @@ msgstr ""
"„Æ„č„È„ÚĄŒ„ž°őșț€ÎÁ°€ËĄąșÇœé€Î„Ń„é„ì„ë„ĘĄŒ„ȀˀĀʀź€Ê€Ș€·€Æ€Ż€À€”€€ĄŁ\n"
"€”€â€Ê€€€È»È€š€Ț€»€óĄŁÀÜÂłŒïÎà€ÎÀßÄê€ÏÌ”»ë€”€ì€Ț€čĄŁ"
-#: ../../printerdrake.pm_.c:1668 ../../printerdrake.pm_.c:1695
+#: ../../printerdrake.pm_.c:1785 ../../printerdrake.pm_.c:1812
msgid "Lexmark inkjet configuration"
msgstr "Lexmark„€„ó„Ż„ž„§„Ă„È€ÎÀßÄê"
-#: ../../printerdrake.pm_.c:1669
+#: ../../printerdrake.pm_.c:1786
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
"no printers on remote machines or print server boxes. Please connect your "
@@ -8279,17 +8587,17 @@ msgstr ""
"„”„ĘĄŒ„È€·€Ț€»€óĄŁ„ê„âĄŒ„È„Ț„·„ó€ä„Ś„ê„ó„ż„”ĄŒ„ĐŸć€Î„Ś„ê„ó„ż€Ï»È€š€Ț€»€óĄŁ\n"
"„Ś„ê„󄿀ò„íĄŒ„«„ë„ĘĄŒ„ȀˀĀʀ°€«ÀÜÂł€”€ì€Æ€€€ë„Ț„·„ó€ÇÀßÄꀷ€Æ€Ż€À€”€€ĄŁ"
-#: ../../printerdrake.pm_.c:1696
+#: ../../printerdrake.pm_.c:1813
+#, fuzzy
msgid ""
"To be able to print with your Lexmark inkjet and this configuration, you "
"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
-"com/). Go to the US site and click on the \"Drivers\" button. Then choose "
-"your model and afterwards \"Linux\" as operating system. The drivers come as "
-"RPM packages or shell scripts with interactive graphical installation. You "
-"do not need to do this configuration by the graphical frontends. Cancel "
-"directly after the license agreement. Then print printhead alignment pages "
-"with \"lexmarkmaintain\" and adjust the head alignment settings with this "
-"program."
+"com/). Click on the \"Drivers\" link. Then choose your model and afterwards "
+"\"Linux\" as operating system. The drivers come as RPM packages or shell "
+"scripts with interactive graphical installation. You do not need to do this "
+"configuration by the graphical frontends. Cancel directly after the license "
+"agreement. Then print printhead alignment pages with \"lexmarkmaintain\" and "
+"adjust the head alignment settings with this program."
msgstr ""
"Lexmark „€„ó„Ż„ž„§„Ă„È€È€ł€ÎÀßÄê€Ç°őșț€č€ë€Ë€ÏĄąLexmark(http://www.lexmark."
"com/) €ÎÄ󶥀č€ë„€„ó„Ż„ž„§„Ă„È„Ś„ê„ó„ż„É„é„€„Đ€ŹÉŹÍŚ€Ç€čĄŁ„ą„á„ê„«„”„€„È€Ë"
@@ -8300,7 +8608,34 @@ msgstr ""
"€«€é°őșț„ۄÄɀ΄ą„é„€„ó„á„ó„È„ÚĄŒ„ž€ò\"lexmarkmaintain\" €Ç°őșț€·€ÆĄą€ł€Î„Ś"
"„í„°„é„à€Ç„ۄÄɀ΄ą„é„€„ó„á„ó„È€òÄŽÀ°€·€Ț€čĄŁ"
-#: ../../printerdrake.pm_.c:1912
+#: ../../printerdrake.pm_.c:1816
+msgid "GDI Laser Printer using the Zenographics ZJ-Stream Format"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:1817
+msgid ""
+"Your printer belongs to the group of GDI laser printers (winprinters) sold "
+"by different manufacturers which uses the Zenographics ZJ-stream raster "
+"format for the data sent to the printer. The driver for these printers is "
+"still in a very early development stage and so it will perhaps not always "
+"work properly. Especially it is possible that the printer only works when "
+"you choose the A4 paper size.\n"
+"\n"
+"Some of these printers, as the HP LaserJet 1000, for which this driver was "
+"originally created, need their firmware to be uploaded to them after they "
+"are turned on. In the case of the HP LaserJet 1000 you have to search the "
+"printer's Windows driver CD or your Windows partition for the file "
+"\"sihp1000.img\" and upload the file to the printer with one of the "
+"following commands:\n"
+"\n"
+" lpr -o raw sihp1000.img\n"
+" cat sihp1000.img > /dev/usb/lp0\n"
+"\n"
+"The first command can be given by any normal user, the second must be given "
+"as root. After having done so you can print normally.\n"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:2040
msgid ""
"Printer default settings\n"
"\n"
@@ -8314,22 +8649,22 @@ msgstr ""
"„ÚĄŒ„ž€ÎÂ瀭€”€È„€„ó„Ż€ÎŒïÎàĄÊłșĆö€č€ëŸìčç€Î€ßĄË€ŹÀ”€·€ŻÀßÄꀔ€ì€Æ€€€ë€«€òłÎ"
"ǧ€·€Ț€·€ç€ŠĄŁ€Ê€ȘĄąÄ¶čâÉÊŒÁ°őșț€Ï€č€Ž€Ż»țŽÖ€Ź€«€«€ë€ł€È€Ź€ą€ê€Ț€čĄŁ"
-#: ../../printerdrake.pm_.c:1921
+#: ../../printerdrake.pm_.c:2049
#, c-format
msgid "Option %s must be an integer number!"
msgstr "„Ș„Ś„·„ç„ó %s €ÏÀ°żô€Ç€čĄȘ"
-#: ../../printerdrake.pm_.c:1925
+#: ../../printerdrake.pm_.c:2053
#, c-format
msgid "Option %s must be a number!"
msgstr "„Ș„Ś„·„ç„ó %s €Ïżô»ú€Ç€čĄȘ"
-#: ../../printerdrake.pm_.c:1930
+#: ../../printerdrake.pm_.c:2058
#, c-format
msgid "Option %s out of range!"
msgstr "„Ș„Ś„·„ç„ó %s ÈÏ°Ïł°€Ç€č!"
-#: ../../printerdrake.pm_.c:1969
+#: ../../printerdrake.pm_.c:2097
#, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
@@ -8338,11 +8673,11 @@ msgstr ""
"€ł€Î„Ś„ê„ó„ż (\"%s\") €ò\n"
"„Ç„Ő„©„ë„È„Ś„ê„󄿀ˀ·€Ț€č€«Ą©"
-#: ../../printerdrake.pm_.c:1986
+#: ../../printerdrake.pm_.c:2120
msgid "Test pages"
msgstr "„Æ„č„È„ÚĄŒ„ž"
-#: ../../printerdrake.pm_.c:1987
+#: ../../printerdrake.pm_.c:2121
msgid ""
"Please select the test pages you want to print.\n"
"Note: the photo test page can take a rather long time to get printed and on "
@@ -8354,39 +8689,39 @@ msgstr ""
"€Ê€€„ìĄŒ„¶„Ś„ê„ó„ż€Ç€ÏœĐÎπǀ­€Ê€€€ł€È€â€ą€ê€Ț€čĄŁÂż€Ż€ÎŸìčç€ÏÉžœà„ÚĄŒ„ž€Ź°ő"
"șț€Ç€­€ì€ĐÂçŸæÉŚ€Ç€čĄŁ"
-#: ../../printerdrake.pm_.c:1991
+#: ../../printerdrake.pm_.c:2125
msgid "No test pages"
msgstr "„Æ„č„È„ÚĄŒ„ž€Ê€·"
-#: ../../printerdrake.pm_.c:1992
+#: ../../printerdrake.pm_.c:2126
msgid "Print"
msgstr "°őșț"
-#: ../../printerdrake.pm_.c:1994
+#: ../../printerdrake.pm_.c:2183
msgid "Standard test page"
msgstr "Éžœà„Æ„č„È„ÚĄŒ„ž"
-#: ../../printerdrake.pm_.c:1997
+#: ../../printerdrake.pm_.c:2186
msgid "Alternative test page (Letter)"
msgstr "Ề΄Ƅč„È„ÚĄŒ„ž („ì„żĄŒ)"
-#: ../../printerdrake.pm_.c:2000
+#: ../../printerdrake.pm_.c:2189
msgid "Alternative test page (A4)"
msgstr "Ề΄Ƅč„È„ÚĄŒ„ž (A4)"
-#: ../../printerdrake.pm_.c:2002
+#: ../../printerdrake.pm_.c:2191
msgid "Photo test page"
msgstr "ŒÌżż„Æ„č„È„ÚĄŒ„ž"
-#: ../../printerdrake.pm_.c:2006
+#: ../../printerdrake.pm_.c:2195
msgid "Do not print any test page"
msgstr "„Æ„č„È„ÚĄŒ„ž€ò°őșț€·€Ê€€"
-#: ../../printerdrake.pm_.c:2014 ../../printerdrake.pm_.c:2166
+#: ../../printerdrake.pm_.c:2204 ../../printerdrake.pm_.c:2357
msgid "Printing test page(s)..."
msgstr "„Æ„č„È„ÚĄŒ„ž°őșțĂæĄÄĄÄ"
-#: ../../printerdrake.pm_.c:2039
+#: ../../printerdrake.pm_.c:2229
#, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -8401,7 +8736,7 @@ msgstr ""
"%s\n"
"\n"
-#: ../../printerdrake.pm_.c:2043
+#: ../../printerdrake.pm_.c:2233
msgid ""
"Test page(s) have been sent to the printer.\n"
"It may take some time before the printer starts.\n"
@@ -8409,15 +8744,15 @@ msgstr ""
"„Æ„č„È„ÚĄŒ„ž€ò„Ś„ê„ó„ż„ÇĄŒ„â„ó€ËÁś€ê€Ț€·€żĄŁ\n"
"„Ś„ê„󄿀ŹÆ°€­œĐ€č€Ț€ÇĄą€Á€ç€Ă€È»țŽÖ€Ź€«€«€ê€Ț€čĄŁ\n"
-#: ../../printerdrake.pm_.c:2050
+#: ../../printerdrake.pm_.c:2240
msgid "Did it work properly?"
msgstr "€Š€Ț€ŻÆ°€­€Ț€·€ż€«Ą©"
-#: ../../printerdrake.pm_.c:2072 ../../printerdrake.pm_.c:3191
+#: ../../printerdrake.pm_.c:2262 ../../printerdrake.pm_.c:3416
msgid "Raw printer"
msgstr "Àž€Î„Ś„ê„ó„ż"
-#: ../../printerdrake.pm_.c:2098
+#: ../../printerdrake.pm_.c:2288
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -8430,7 +8765,7 @@ msgstr ""
"ĄÖkprinter <file>ĄŚ€ò»È€€€Ț€čĄŁ„°„é„Ő„Ł„Ă„Ż„ÄĄŒ„ë€ÏĄą\n"
"„Ś„ê„ó„żÁȘÂò€È„Ș„Ś„·„ç„óÀßÄê€òŽÊñ€Ë€·€Æ€Ż€ì€Ț€čĄŁ\n"
-#: ../../printerdrake.pm_.c:2100
+#: ../../printerdrake.pm_.c:2290
msgid ""
"These commands you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications, but here do not supply the file name "
@@ -8441,8 +8776,8 @@ msgstr ""
"€óĄŁ\n"
"°őșț€č€ë„Ő„Ą„€„ë€Ï„ą„Ś„ꄱĄŒ„·„ç„󀫀逯€ë€«€é€Ç€čĄŁ\n"
-#: ../../printerdrake.pm_.c:2103 ../../printerdrake.pm_.c:2120
-#: ../../printerdrake.pm_.c:2130
+#: ../../printerdrake.pm_.c:2293 ../../printerdrake.pm_.c:2310
+#: ../../printerdrake.pm_.c:2320
#, c-format
msgid ""
"\n"
@@ -8455,7 +8790,7 @@ msgstr ""
"„ł„Ț„ó„É„é„€„ó€ËŽőËŸ€ÎÀßÄê€òÄÉČĂ€č€ë€À€±€Ç€čĄŁ\n"
"€ż€È€š€ĐĄÖ%s <file>ĄŚ€È€€€Š¶ńčç€Ç€čĄŁ "
-#: ../../printerdrake.pm_.c:2106 ../../printerdrake.pm_.c:2146
+#: ../../printerdrake.pm_.c:2296 ../../printerdrake.pm_.c:2336
#, fuzzy, c-format
msgid ""
"To know about the options available for the current printer read either the "
@@ -8466,7 +8801,7 @@ msgstr ""
"€ą€ë€€€ÏĄÖ„Ș„Ś„·„ç„ó°ìÍś€ò°őșțĄŚ„Ü„ż„ó€ò„Ż„ê„Ă„Ż€·€Ț€·€ç€ŠĄŁ%s\n"
"\n"
-#: ../../printerdrake.pm_.c:2110
+#: ../../printerdrake.pm_.c:2300
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
@@ -8474,7 +8809,7 @@ msgstr ""
"€€€Ț€Î„Ś„ê„ó„ż€Ç»È€š€ë°őșț„Ș„Ś„·„ç„ó°ìÍś€Ï°ÊČŒ€ÎÄÌ€ê€Ç€č:\n"
"\n"
-#: ../../printerdrake.pm_.c:2115 ../../printerdrake.pm_.c:2125
+#: ../../printerdrake.pm_.c:2305 ../../printerdrake.pm_.c:2315
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
@@ -8483,8 +8818,8 @@ msgstr ""
"„ł„Ț„ó„É„é„€„óĄÊ„żĄŒ„ß„Ê„ë„Š„Ł„ó„É„ŠĄË€«€é„Ő„Ą„€„ë€ò°őșț€č€ë€Ë€ÏĄą\n"
"„ł„Ț„ó„ÉĄÖ%s <file>ĄŚ€ò»È€€€Ț€čĄŁ\n"
-#: ../../printerdrake.pm_.c:2117 ../../printerdrake.pm_.c:2127
-#: ../../printerdrake.pm_.c:2137
+#: ../../printerdrake.pm_.c:2307 ../../printerdrake.pm_.c:2317
+#: ../../printerdrake.pm_.c:2327
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
@@ -8495,7 +8830,7 @@ msgstr ""
"€óĄŁ\n"
"°őșț€č€ë„Ő„Ą„€„ë€Ï„ą„Ś„ꄱĄŒ„·„ç„󀫀逯€ë€«€é€Ç€čĄŁ\n"
-#: ../../printerdrake.pm_.c:2122 ../../printerdrake.pm_.c:2132
+#: ../../printerdrake.pm_.c:2312 ../../printerdrake.pm_.c:2322
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
@@ -8503,7 +8838,7 @@ msgstr ""
"€€€Ț€Î„Ś„ê„ó„ż€Ç»È€š€ë„Ș„Ś„·„ç„ó°ìÍś€òž«€ë€Ë€ÏĄąĄÖ„Ș„Ś„·„ç„ó°ìÍś€ò°őșțĄŚ„Ü„ż"
"„ó€ò„Ż„ê„Ă„Ż€·€Ț€·€ç€ŠĄŁ"
-#: ../../printerdrake.pm_.c:2135
+#: ../../printerdrake.pm_.c:2325
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
@@ -8512,7 +8847,7 @@ msgstr ""
"„ł„Ț„ó„É„é„€„óĄÊ„żĄŒ„ß„Ê„ë„Š„Ł„ó„É„ŠĄË€«€é„Ő„Ą„€„ë€ò°őșț€č€ë€Ë€ÏĄą\n"
"„ł„Ț„ó„ÉĄÖ%s <file>ĄŚ€Ț€ż€ÏĄÖ%s <file>ĄŚ€ò»È€€€Ț€čĄŁ\n"
-#: ../../printerdrake.pm_.c:2139
+#: ../../printerdrake.pm_.c:2329
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -8527,7 +8862,7 @@ msgstr ""
"€ą€ë€Ç€·€ç€ŠĄŁ€ł€ì€ò„Ż„ê„Ă„Ż€č€ë€ÈĄą°őșț„ž„ç„Ö€ŹÁŽÉô€č€°€Ë»ß€Ț€ê€Ț€čĄŁ\n"
"€ł€ì€Ï€ż€È€š€Đ»æ”Í€Ț€ê€Î€È€­€ËÊŰÍű€Ç€čĄŁ\n"
-#: ../../printerdrake.pm_.c:2143
+#: ../../printerdrake.pm_.c:2333
#, c-format
msgid ""
"\n"
@@ -8540,40 +8875,40 @@ msgstr ""
"ÊŃ€š€”€»€Æ€Ż€ì€Ț€čĄŁ„ł„Ț„ó„É„é„€„ó€ËŽőËŸ€ÎÀßÄê€òÄÉČĂ€č€ë€À€±€Ç€čĄŁ\n"
"€ż€È€š€ĐĄÖ%s <file>ĄŚ€È€€€Š¶ńčç€Ç€čĄŁ\n"
-#: ../../printerdrake.pm_.c:2153
+#: ../../printerdrake.pm_.c:2343
#, fuzzy, c-format
msgid "Printing/Scanning/Photo Cards on \"%s\""
msgstr "°ÊČŒ€Ç°őșțĂæ/„č„­„ă„óĄ§ \"%s\""
-#: ../../printerdrake.pm_.c:2154
+#: ../../printerdrake.pm_.c:2344
#, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "°ÊČŒ€Ç°őșțĂæ/„č„­„ă„óĄ§ \"%s\""
-#: ../../printerdrake.pm_.c:2156
+#: ../../printerdrake.pm_.c:2346
#, fuzzy, c-format
msgid "Printing/Photo Card Access on \"%s\""
msgstr "°ÊČŒ€Ç°őșțĂæ/„č„­„ă„óĄ§ \"%s\""
-#: ../../printerdrake.pm_.c:2157
+#: ../../printerdrake.pm_.c:2347
#, c-format
msgid "Printing on the printer \"%s\""
msgstr "°ÊČŒ€Î„Ś„ê„󄿀ǰőșțĂæĄ§ \"%s\""
-#: ../../printerdrake.pm_.c:2160 ../../printerdrake.pm_.c:2163
-#: ../../printerdrake.pm_.c:2164 ../../printerdrake.pm_.c:2165
-#: ../../printerdrake.pm_.c:3175 ../../standalone/drakTermServ_.c:248
-#: ../../standalone/drakbackup_.c:1485 ../../standalone/drakbackup_.c:3530
-#: ../../standalone/drakbug_.c:129 ../../standalone/drakfont_.c:705
+#: ../../printerdrake.pm_.c:2350 ../../printerdrake.pm_.c:2353
+#: ../../printerdrake.pm_.c:2354 ../../printerdrake.pm_.c:2355
+#: ../../printerdrake.pm_.c:3400 ../../standalone/drakTermServ_.c:248
+#: ../../standalone/drakbackup_.c:1560 ../../standalone/drakbackup_.c:4208
+#: ../../standalone/drakbug_.c:130 ../../standalone/drakfont_.c:705
#: ../../standalone/drakfont_.c:1014
msgid "Close"
msgstr "ÊÄ€ž€ë"
-#: ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2353
msgid "Print option list"
msgstr "„Ś„ê„ó„ż„Ș„Ś„·„ç„ó°ìÍś"
-#: ../../printerdrake.pm_.c:2182
+#: ../../printerdrake.pm_.c:2373
#, fuzzy, c-format
msgid ""
"Your multi-function device was configured automatically to be able to scan. "
@@ -8595,7 +8930,7 @@ msgstr ""
"\n"
"€ł€Î„Ç„Đ„€„č€Ç€Ï\"scannerdrake\" €Ï»È€ï€Ê€€€Ç€Ż€À€”€€!"
-#: ../../printerdrake.pm_.c:2202
+#: ../../printerdrake.pm_.c:2394
msgid ""
"Your printer was configured automatically to give you access to the photo "
"card drives from your PC. Now you can access your photo cards using the "
@@ -8608,17 +8943,17 @@ msgid ""
"of the file lists."
msgstr ""
-#: ../../printerdrake.pm_.c:2223 ../../printerdrake.pm_.c:2673
-#: ../../printerdrake.pm_.c:2945
+#: ../../printerdrake.pm_.c:2416 ../../printerdrake.pm_.c:2875
+#: ../../printerdrake.pm_.c:3170
msgid "Reading printer data..."
msgstr "„Ś„ê„ó„ż€ÎŸđÊó€òÆÉ€ó€Ç€€€Ț€č..."
-#: ../../printerdrake.pm_.c:2243 ../../printerdrake.pm_.c:2271
-#: ../../printerdrake.pm_.c:2306
+#: ../../printerdrake.pm_.c:2436 ../../printerdrake.pm_.c:2464
+#: ../../printerdrake.pm_.c:2499
msgid "Transfer printer configuration"
msgstr "„Ś„ê„󄿀ÎÀßÄê€ò°ÜÆ°"
-#: ../../printerdrake.pm_.c:2244
+#: ../../printerdrake.pm_.c:2437
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -8632,7 +8967,7 @@ msgstr ""
"€Ï€œ€Á€é€ËŒè€é€ì€Ț€č€ŹĄą„ž„ç„րϰÜÆ°€·€Ț€»€óĄŁ°ÊČŒ€ÎÍęÍł€ÇĄą°ÜÆ°€Ç€­€Ê€€"
"„­„ćĄŒ€â€ą€ê€Ț€čĄ§\n"
-#: ../../printerdrake.pm_.c:2247
+#: ../../printerdrake.pm_.c:2440
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
@@ -8640,7 +8975,7 @@ msgstr ""
"CUPS €Ï Novell „”ĄŒ„Ѐ΄Ś„ê„󄿀䥹Œ«Íł·ÁŒ°€Î„ł„Ț„ó„ɀ˄ǥŒ„ż€òÁś€ë„Ś„ê„󄿀Ï"
"„”„ĘĄŒ„È€·€Ț€»€óĄŁ\n"
-#: ../../printerdrake.pm_.c:2249
+#: ../../printerdrake.pm_.c:2442
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
@@ -8648,11 +8983,11 @@ msgstr ""
"PDQ €Ï„íĄŒ„«„ë„Ś„ê„ó„ż€È„ê„âĄŒ„ȀΠLPD „Ś„ê„󄿥ą„œ„±„Ă„È/TCP „Ś„ê„󄿀·€«„”"
"„ĘĄŒ„È€·€Ț€»€óĄŁ\n"
-#: ../../printerdrake.pm_.c:2251
+#: ../../printerdrake.pm_.c:2444
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr "LPD €È LPRng €ÏIPP „Ś„ê„󄿀ò„”„ĘĄŒ„È€·€Ț€»€óĄŁ\n"
-#: ../../printerdrake.pm_.c:2253
+#: ../../printerdrake.pm_.c:2446
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
@@ -8660,7 +8995,7 @@ msgstr ""
"€”€é€Ë€ł€Î„Ś„í„°„é„à€ä\"foomatic-configure\" €Çșî€Ă€Æ€€€Ê€€„­„ćĄŒ€Ï°ÜÆ°€Ç€­€Ț"
"€»€óĄŁ"
-#: ../../printerdrake.pm_.c:2254
+#: ../../printerdrake.pm_.c:2447
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
@@ -8670,7 +9005,7 @@ msgstr ""
"€Ț€ż„áĄŒ„«ĄŒÄ󶥀ΠPPD „Ő„Ą„€„ë€ä„Í„€„Æ„Ł„րΠCUPS „É„é„€„Đ€ÇÀßÄꀔ€ì€ż„Ś„ê„ó"
"„ż€Ï°ÜÆ°€Ç€­€Ț€»€óĄŁ"
-#: ../../printerdrake.pm_.c:2255
+#: ../../printerdrake.pm_.c:2448
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
@@ -8679,15 +9014,15 @@ msgstr ""
"\n"
"°ÜÆ°€·€ż€€„Ś„ê„󄿀òÁȘ€ó€Ç \"T°ÜÆ°\"€ò„Ż„ê„Ă„Ż€·€Æ€Ż€À€”€€ĄŁ"
-#: ../../printerdrake.pm_.c:2258
+#: ../../printerdrake.pm_.c:2451
msgid "Do not transfer printers"
msgstr "„Ś„ê„󄿀ò°ÜÆ°€·€Ê€€"
-#: ../../printerdrake.pm_.c:2259 ../../printerdrake.pm_.c:2276
+#: ../../printerdrake.pm_.c:2452 ../../printerdrake.pm_.c:2469
msgid "Transfer"
msgstr "°ÜÆ°"
-#: ../../printerdrake.pm_.c:2272
+#: ../../printerdrake.pm_.c:2465
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -8698,11 +9033,11 @@ msgstr ""
"Ÿćœń€­€č€ë€Ë€Ï \"°ÜÆ°\" €òČĄ€·€Æ€Ż€À€”€€ĄŁ\n"
"ż·€·€€ÌŸÁ°€ò„ż„€„Ś€č€ë€«Ąą€ł€Î„Ś„ê„󄿀ò€È€Đ€č€ł€È€â€Ç€­€Ț€čĄŁ"
-#: ../../printerdrake.pm_.c:2280
+#: ../../printerdrake.pm_.c:2473
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr "„Ś„ê„ó„żÌŸ€ÏĄąÊž»ú€Èżô»ú€È„ą„ó„ÀĄŒ„č„ł„ą (_)€·€«»È€š€Ț€»€ó"
-#: ../../printerdrake.pm_.c:2285
+#: ../../printerdrake.pm_.c:2478
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
@@ -8711,16 +9046,16 @@ msgstr ""
"„Ś„ê„ó„ż \"%s\" €Ï€č€Ç€Ëžș߀·€Ț€čĄŁ\n"
"€€€Ț€ÎÀßÄê€òŸćœń€­€·€Æ€·€Ț€€€Ț€č€«Ą©"
-#: ../../printerdrake.pm_.c:2293
+#: ../../printerdrake.pm_.c:2486
msgid "New printer name"
msgstr "ż·€·€€„Ś„ê„󄿀ÎÌŸÁ°"
-#: ../../printerdrake.pm_.c:2296
+#: ../../printerdrake.pm_.c:2489
#, c-format
msgid "Transferring %s..."
msgstr "%s °ÜÆ°ĂæĄÄĄÄ"
-#: ../../printerdrake.pm_.c:2307
+#: ../../printerdrake.pm_.c:2500
#, c-format
msgid ""
"You have transferred your former default printer (\"%s\"), Should it be also "
@@ -8729,29 +9064,29 @@ msgstr ""
"Á°€Î„Ç„Ő„©„ë„È„Ś„ê„ó„ż (\"%s\")€ò°ÜÆ°€·€Ț€·€żĄŁż·€·€€°őșț„·„č„Æ„à%s€Ç€â€ł€ì€ò"
"„Ç„Ő„©„ë„Ȁ΄Ś„ê„󄿀ˀ·€Ț€č€«Ą©"
-#: ../../printerdrake.pm_.c:2316
+#: ../../printerdrake.pm_.c:2510
msgid "Refreshing printer data..."
msgstr "„Ś„ê„ó„ż„ÇĄŒ„żččż·Ăæ..."
-#: ../../printerdrake.pm_.c:2324 ../../printerdrake.pm_.c:2395
-#: ../../printerdrake.pm_.c:2407
+#: ../../printerdrake.pm_.c:2518 ../../printerdrake.pm_.c:2590
+#: ../../printerdrake.pm_.c:2602
msgid "Configuration of a remote printer"
msgstr "„ê„âĄŒ„È„Ś„ê„󄿀ÎÀßÄê"
-#: ../../printerdrake.pm_.c:2325
+#: ../../printerdrake.pm_.c:2519
msgid "Starting network..."
msgstr "„Í„Ă„È„ïĄŒ„Ż”ŻÆ°Ăæ..."
-#: ../../printerdrake.pm_.c:2359 ../../printerdrake.pm_.c:2363
-#: ../../printerdrake.pm_.c:2365
+#: ../../printerdrake.pm_.c:2554 ../../printerdrake.pm_.c:2558
+#: ../../printerdrake.pm_.c:2560
msgid "Configure the network now"
msgstr "șŁ€č€°„Í„Ă„È„ïĄŒ„ŻÀßÄê€ò€č€ë"
-#: ../../printerdrake.pm_.c:2360
+#: ../../printerdrake.pm_.c:2555
msgid "Network functionality not configured"
msgstr "„Í„Ă„È„ïĄŒ„Ż”ĄÇœ€ŹÀßÄꀔ€ì€Æ€Ț€»€ó"
-#: ../../printerdrake.pm_.c:2361
+#: ../../printerdrake.pm_.c:2556
msgid ""
"You are going to configure a remote printer. This needs working network "
"access, but your network is not configured yet. If you go on without network "
@@ -8762,11 +9097,11 @@ msgstr ""
"€ŹĄą€ą€Ê€ż€Î„Í„Ă„È„ïĄŒ„ŻÀßÄê€Ï€č€ó€Ç€€€Ț€»€óĄŁ„Í„Ă„È„ïĄŒ„ŻÀßÄê€Ê€·€ÇżÊ€à€ÈĄą"
"€€€ȚÀßÄêĂæ€Î„Ś„ê„ó„ż€Ï»È€š€Ț€»€óĄŁ€”€Æ€É€ŠżÊ€á€Ț€·€ç€Š€«Ą©"
-#: ../../printerdrake.pm_.c:2364
+#: ../../printerdrake.pm_.c:2559
msgid "Go on without configuring the network"
msgstr "„Í„Ă„È„ïĄŒ„Ż€ÎÀßÄê€ò€È€Đ€·€ÆÀè€ËżÊ€à"
-#: ../../printerdrake.pm_.c:2397
+#: ../../printerdrake.pm_.c:2592
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -8781,7 +9116,7 @@ msgstr ""
"€ž€ŻMandrake„ł„ó„È„íĄŒ„ë„»„ó„ż€ÎĄÖ„ÏĄŒ„É„Š„§„ą/„Ś„ê„󄿥Ś€ÎÉôÊŹ€Ç„Ś„ê„󄿀ÎÀß"
"Äê€ò€·€Ț€·€ç€ŠĄŁ"
-#: ../../printerdrake.pm_.c:2398
+#: ../../printerdrake.pm_.c:2593
msgid ""
"The network access was not running and could not be started. Please check "
"your configuration and your hardware. Then try to configure your remote "
@@ -8790,24 +9125,24 @@ msgstr ""
"„Í„Ă„È„ïĄŒ„Ż„ą„Ż„»„耏Íî€Á€Æ€€€ÆĄą”ŻÆ°€Ç€­€Ț€»€ó€Ç€·€żĄŁ„ÏĄŒ„É„Š„§„ą€äÀßÄê€ò"
"„Á„§„Ă„Ż€·€Æ€Ż€À€”€€ĄŁ€œ€ì€«€é„ê„âĄŒ„È„Ś„ê„󄿀ÎÀßÄê€ò€ä€ê€Ê€Ș€·€Æ€Ż€À€”€€ĄŁ"
-#: ../../printerdrake.pm_.c:2408
+#: ../../printerdrake.pm_.c:2603
msgid "Restarting printing system..."
msgstr "„Ś„ê„ó„ż„·„č„Æ„àșÆ”ŻÆ°Ăæ..."
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2641
msgid "high"
msgstr "č "
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2641
msgid "paranoid"
msgstr "żÀ·ĐŒÁ€Ê€Û€Éčâżćœà"
-#: ../../printerdrake.pm_.c:2447
+#: ../../printerdrake.pm_.c:2642
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr "°őșț„·„č„Æ„à€ò„»„­„ć„ê„Æ„Łżćœà %s €Ç„€„ó„č„ÈĄŒ„ëĂæ"
-#: ../../printerdrake.pm_.c:2448
+#: ../../printerdrake.pm_.c:2643
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -8831,11 +9166,11 @@ msgstr ""
"\n"
"€ł€Î„Ț„·„ó€Ç°őșț€ÎÀßÄê€òËÜĆö€Ë€ä€Ă€Æ€€€€€Ç€č€ÍĄ©"
-#: ../../printerdrake.pm_.c:2480
+#: ../../printerdrake.pm_.c:2675
msgid "Starting the printing system at boot time"
msgstr "”ŻÆ°»ț€Ë°őșț„·„č„Æ„à€ò„č„żĄŒ„È"
-#: ../../printerdrake.pm_.c:2481
+#: ../../printerdrake.pm_.c:2676
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -8855,74 +9190,72 @@ msgstr ""
"\n"
"°őșț„·„č„Æ„à€ÎŒ«Æ°„č„żĄŒ„È€ò€â€Š°ìĆÙÍ­žú€Ë€·€Ț€č€«Ą©"
-#: ../../printerdrake.pm_.c:2504 ../../printerdrake.pm_.c:2544
-#: ../../printerdrake.pm_.c:2581 ../../printerdrake.pm_.c:2621
-#: ../../printerdrake.pm_.c:2733
+#: ../../printerdrake.pm_.c:2700 ../../printerdrake.pm_.c:2741
+#: ../../printerdrake.pm_.c:2780 ../../printerdrake.pm_.c:2822
+#: ../../printerdrake.pm_.c:2943
msgid "Checking installed software..."
msgstr "„€„ó„č„ÈĄŒ„ëșр߄œ„Ő„È€ò„Á„§„Ă„ŻĂæĄÄĄÄ"
-#: ../../printerdrake.pm_.c:2548
+#: ../../printerdrake.pm_.c:2746
msgid "Removing LPRng..."
msgstr "LPRng șïœüĂæĄÄĄÄ"
-#: ../../printerdrake.pm_.c:2585
+#: ../../printerdrake.pm_.c:2785
msgid "Removing LPD..."
msgstr "LPD șïœüĂæĄÄĄÄ"
-#: ../../printerdrake.pm_.c:2657
+#: ../../printerdrake.pm_.c:2858
msgid "Select Printer Spooler"
msgstr "„Ś„ê„󄿀΄脌ĄŒ„é€òÁȘ€ó€Ç€Ż€À€”€€"
-#: ../../printerdrake.pm_.c:2658
+#: ../../printerdrake.pm_.c:2859
msgid "Which printing system (spooler) do you want to use?"
msgstr "€É€Î°őșț„·„č„Æ„àĄÊ„č„ŚĄŒ„éĄË€ò»È€€€Ț€č€«Ą©"
-#: ../../printerdrake.pm_.c:2691
+#: ../../printerdrake.pm_.c:2895
#, fuzzy, c-format
msgid "Configuring printer \"%s\"..."
msgstr "„Ś„ê„ó„ż \"%s\" €ÎÀßÄêĂæ..."
-#: ../../printerdrake.pm_.c:2704
+#: ../../printerdrake.pm_.c:2909
msgid "Installing Foomatic..."
msgstr "Foomatic €Î„€„ó„č„ÈĄŒ„ëĂæ..."
-#: ../../printerdrake.pm_.c:2769 ../../printerdrake.pm_.c:2808
-#: ../../printerdrake.pm_.c:3192 ../../printerdrake.pm_.c:3262
+#: ../../printerdrake.pm_.c:2979 ../../printerdrake.pm_.c:3020
+#: ../../printerdrake.pm_.c:3417 ../../printerdrake.pm_.c:3490
msgid "Printer options"
msgstr "„Ś„ê„ó„ż„Ș„Ś„·„ç„ó"
-#: ../../printerdrake.pm_.c:2778
-msgid "Preparing PrinterDrake..."
+#: ../../printerdrake.pm_.c:2989
+#, fuzzy
+msgid "Preparing Printerdrake..."
msgstr "PrinterDrakeœàÈśĂæ..."
-#: ../../printerdrake.pm_.c:2795 ../../printerdrake.pm_.c:3349
+#: ../../printerdrake.pm_.c:3007 ../../printerdrake.pm_.c:3580
msgid "Configuring applications..."
msgstr "„ą„Ś„ꄱĄŒ„·„ç„ó€ÎÀßÄêĂæ..."
-#: ../../printerdrake.pm_.c:2815
+#: ../../printerdrake.pm_.c:3027
msgid "Would you like to configure printing?"
msgstr "°őșț€ÎÀßÄê€ò€·€Ț€č€«Ą©"
-#: ../../printerdrake.pm_.c:2827
+#: ../../printerdrake.pm_.c:3039
msgid "Printing system: "
msgstr "°őșț„·„č„Æ„à:"
-#: ../../printerdrake.pm_.c:2875
-msgid "Printerdrake"
-msgstr "Printerdrake"
-
-#: ../../printerdrake.pm_.c:2879
+#: ../../printerdrake.pm_.c:3099
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; to view information about it; "
"or to make a printer on a remote CUPS server available for Star Office/"
-"OpenOffice.org."
+"OpenOffice.org/GIMP."
msgstr ""
"°ÊČŒ€Î„Ś„ê„󄿀ŹÀßÄꀔ€ì€Æ€€€Ț€čĄŁÀßÄê€òÊŃč耷€ż€€„Ś„ê„󄿀ò„À„Ö„ë„Ż„ê„Ă„Ż€·"
"€Æ€Ż€À€”€€ĄŁ„Ç„Ő„©„ë„È„Ś„ê„󄿀ˀ·€ż€êĄą€œ€ÎŸđÊó€òž«€ż€êĄą„ê„âĄŒ„È€ÎCUPS „”ĄŒ"
-"„ĐŸć€Î„Ś„ê„󄿀ò Star Office/OpenOffice.org€Ç»È€š€ë€è€Š€Ë€č€ëŸìčç€â€œ€Š€Ç€čĄŁ"
+"„ĐŸć€Î„Ś„ê„󄿀ò Star Office/OpenOffice.org/GIMP€Ç»È€š€ë€è€Š€Ë€č€ëŸìčç€â€œ€Š"
+"€Ç€čĄŁ"
-#: ../../printerdrake.pm_.c:2880
+#: ../../printerdrake.pm_.c:3100
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; or to view information about "
@@ -8931,28 +9264,28 @@ msgstr ""
"°ÊČŒ€Î„Ś„ê„󄿀ŹÀßÄꀔ€ì€Æ€€€Ț€čĄŁÊŃč襹„Ç„Ő„©„ë„ÈČœĄąŸđÊó€Î»ČŸÈ€Ë€ÏĄą\n"
"€œ€Î„Ś„ê„󄿀ò„À„Ö„ë„Ż„ê„Ă„Ż€·€Ț€čĄŁ"
-#: ../../printerdrake.pm_.c:2906
+#: ../../printerdrake.pm_.c:3127
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr "„Ś„ê„ó„ż°ìÍśččż·ĄÊ„ê„âĄŒ„È CUPS„Ś„ê„󄿀ò€č€Ù€ÆÉœŒš)"
-#: ../../printerdrake.pm_.c:2924
+#: ../../printerdrake.pm_.c:3145
msgid "Change the printing system"
msgstr "°őșț„·„č„Æ„à€òÊŃčč"
-#: ../../printerdrake.pm_.c:2929 ../../standalone/drakconnect_.c:277
+#: ../../printerdrake.pm_.c:3150 ../../standalone/drakconnect_.c:277
msgid "Normal Mode"
msgstr "„ÎĄŒ„Ț„ë„âĄŒ„É"
-#: ../../printerdrake.pm_.c:3085 ../../printerdrake.pm_.c:3135
-#: ../../printerdrake.pm_.c:3343
+#: ../../printerdrake.pm_.c:3310 ../../printerdrake.pm_.c:3360
+#: ../../printerdrake.pm_.c:3573
msgid "Do you want to configure another printer?"
msgstr "Ề΄Ś„ê„󄿀òÀßÄꀷ€Ț€č€«Ą©"
-#: ../../printerdrake.pm_.c:3170
+#: ../../printerdrake.pm_.c:3395
msgid "Modify printer configuration"
msgstr "„Ś„ê„ó„żÀßÄê€ÎÊŃčč"
-#: ../../printerdrake.pm_.c:3172
+#: ../../printerdrake.pm_.c:3397
#, c-format
msgid ""
"Printer %s\n"
@@ -8961,100 +9294,104 @@ msgstr ""
"„Ś„ê„ó„ż %s\n"
"€ł€Î„Ś„ê„󄿀ÎČż€òÊŃč耷€Ț€č€«Ą©"
-#: ../../printerdrake.pm_.c:3176
+#: ../../printerdrake.pm_.c:3401
msgid "Do it!"
msgstr "€ä€ìĄȘ"
-#: ../../printerdrake.pm_.c:3181 ../../printerdrake.pm_.c:3236
+#: ../../printerdrake.pm_.c:3406 ../../printerdrake.pm_.c:3461
msgid "Printer connection type"
msgstr "„Ś„ê„ó„żÀÜÂł€ÎŒïÎà"
-#: ../../printerdrake.pm_.c:3182 ../../printerdrake.pm_.c:3240
+#: ../../printerdrake.pm_.c:3407 ../../printerdrake.pm_.c:3465
msgid "Printer name, description, location"
msgstr "„Ś„ê„󄿀ÎÌŸÁ°ĄąÀâÌÀĄąŸìœê"
-#: ../../printerdrake.pm_.c:3184 ../../printerdrake.pm_.c:3255
+#: ../../printerdrake.pm_.c:3409 ../../printerdrake.pm_.c:3483
msgid "Printer manufacturer, model, driver"
msgstr "„Ś„ê„ó„ż€Î„áĄŒ„«ĄŒĄą”ĄŒïĄą„É„é„€„Đ"
-#: ../../printerdrake.pm_.c:3185 ../../printerdrake.pm_.c:3256
+#: ../../printerdrake.pm_.c:3410 ../../printerdrake.pm_.c:3484
msgid "Printer manufacturer, model"
msgstr "„Ś„ê„ó„ż€Î„áĄŒ„«ĄŒĄą”ĄŒï"
-#: ../../printerdrake.pm_.c:3194 ../../printerdrake.pm_.c:3266
+#: ../../printerdrake.pm_.c:3419 ../../printerdrake.pm_.c:3494
msgid "Set this printer as the default"
msgstr "€ł€Î„Ś„ê„󄿀ò„Ç„Ő„©„ë„Ȁˀč€ë"
-#: ../../printerdrake.pm_.c:3196 ../../printerdrake.pm_.c:3271
-msgid "Add this printer to Star Office/OpenOffice.org"
-msgstr "€ł€Î„Ś„ê„󄿀ò Star Office/OpenOffice.org €ËÄÉČĂ"
+#: ../../printerdrake.pm_.c:3421 ../../printerdrake.pm_.c:3499
+msgid "Add this printer to Star Office/OpenOffice.org/GIMP"
+msgstr "€ł€Î„Ś„ê„󄿀ò Star Office/OpenOffice.org/GIMP €ËÄÉČĂ"
-#: ../../printerdrake.pm_.c:3197 ../../printerdrake.pm_.c:3280
-msgid "Remove this printer from Star Office/OpenOffice.org"
-msgstr "€ł€Î„Ś„ê„󄿀ò Star Office/OpenOffice.org €«€éșïœü"
+#: ../../printerdrake.pm_.c:3422 ../../printerdrake.pm_.c:3508
+msgid "Remove this printer from Star Office/OpenOffice.org/GIMP"
+msgstr "€ł€Î„Ś„ê„󄿀ò Star Office/OpenOffice.org/GIMP €«€éșïœü"
-#: ../../printerdrake.pm_.c:3198 ../../printerdrake.pm_.c:3289
+#: ../../printerdrake.pm_.c:3423 ../../printerdrake.pm_.c:3517
msgid "Print test pages"
msgstr "„Æ„č„È„ÚĄŒ„ž°őșț"
-#: ../../printerdrake.pm_.c:3199 ../../printerdrake.pm_.c:3291
+#: ../../printerdrake.pm_.c:3424 ../../printerdrake.pm_.c:3519
msgid "Know how to use this printer"
msgstr "€ł€Î„Ś„ê„ó„ż€Î»È€€Êę€òÄŽ€Ù€ë"
-#: ../../printerdrake.pm_.c:3201 ../../printerdrake.pm_.c:3293
+#: ../../printerdrake.pm_.c:3426 ../../printerdrake.pm_.c:3521
msgid "Remove printer"
msgstr "„Ś„ê„ó„żșïœü"
-#: ../../printerdrake.pm_.c:3245
+#: ../../printerdrake.pm_.c:3472
#, fuzzy, c-format
msgid "Removing old printer \"%s\"..."
msgstr "žĆ€€„Ś„ê„ó„ż \"%s\" €òșïœüĂæ..."
-#: ../../printerdrake.pm_.c:3269
+#: ../../printerdrake.pm_.c:3497
msgid "Default printer"
msgstr "„Ç„Ő„©„ë„È„Ś„ê„ó„ż"
-#: ../../printerdrake.pm_.c:3270
+#: ../../printerdrake.pm_.c:3498
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr "„Ś„ê„ó„ż %s €Ź„Ç„Ő„©„ë„È„Ś„ê„ó„ż€Ë€Ê€ê€Ț€·€żĄŁ"
-#: ../../printerdrake.pm_.c:3274 ../../printerdrake.pm_.c:3277
-msgid "Adding printer to Star Office/OpenOffice.org"
-msgstr "„Ś„ê„󄿀ò Star Office/OpenOffice.org €ËÄÉČĂĂæ"
+#: ../../printerdrake.pm_.c:3502 ../../printerdrake.pm_.c:3505
+msgid "Adding printer to Star Office/OpenOffice.org/GIMP"
+msgstr "„Ś„ê„󄿀ò Star Office/OpenOffice.org/GIMP €ËÄÉČĂĂæ"
-#: ../../printerdrake.pm_.c:3275
+#: ../../printerdrake.pm_.c:3503
#, c-format
msgid ""
-"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
-msgstr "„Ś„ê„ó„ż %s €ò Star Office/OpenOffice.org €ËÄÉČĂ€·€Ț€·€żĄŁ"
+"The printer \"%s\" was successfully added to Star Office/OpenOffice.org/GIMP."
+msgstr "„Ś„ê„ó„ż %s €ò Star Office/OpenOffice.org/GIMP €ËÄÉČĂ€·€Ț€·€żĄŁ"
-#: ../../printerdrake.pm_.c:3278
+#: ../../printerdrake.pm_.c:3506
#, c-format
-msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
-msgstr "„Ś„ê„ó„ż %s €ò Star Office/OpenOffice.org €ËÄÉČÀǀ­€Ț€»€ó€Ç€·€żĄŁ"
+msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org/GIMP."
+msgstr ""
+"„Ś„ê„ó„ż %s €ò Star Office/OpenOffice.org/GIMP €ËÄÉČÀǀ­€Ț€»€ó€Ç€·€żĄŁ"
-#: ../../printerdrake.pm_.c:3283 ../../printerdrake.pm_.c:3286
-msgid "Removing printer from Star Office/OpenOffice.org"
-msgstr "„Ś„ê„󄿀ò Star Office/OpenOffice.org €«€éșïœüĂæ"
+#: ../../printerdrake.pm_.c:3511 ../../printerdrake.pm_.c:3514
+msgid "Removing printer from Star Office/OpenOffice.org/GIMP"
+msgstr "„Ś„ê„󄿀ò Star Office/OpenOffice.org/GIMP €«€éșïœüĂæ"
-#: ../../printerdrake.pm_.c:3284
+#: ../../printerdrake.pm_.c:3512
#, c-format
msgid ""
-"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
-msgstr "„Ś„ê„ó„ż %s €ò Star Office/OpenOffice.org €«€éșïœü€·€Ț€·€żĄŁ"
+"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org/"
+"GIMP."
+msgstr "„Ś„ê„ó„ż %s €ò Star Office/OpenOffice.org/GIMP €«€éșïœü€·€Ț€·€żĄŁ"
-#: ../../printerdrake.pm_.c:3287
+#: ../../printerdrake.pm_.c:3515
#, c-format
-msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
-msgstr "„Ś„ê„ó„ż %s €ò Star Office/OpenOffice.org €«€éșïœü€Ç€­€Ț€»€ó€Ç€·€żĄŁ"
+msgid ""
+"Failed to remove the printer \"%s\" from Star Office/OpenOffice.org/GIMP."
+msgstr ""
+"„Ś„ê„ó„ż %s €ò Star Office/OpenOffice.org/GIMP €«€éșïœü€Ç€­€Ț€»€ó€Ç€·€żĄŁ"
-#: ../../printerdrake.pm_.c:3295
+#: ../../printerdrake.pm_.c:3523
#, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr "„Ś„ê„ó„ż %s €òËÜĆö€Ëșïœü€·€Ț€č€«Ą©"
-#: ../../printerdrake.pm_.c:3297
+#: ../../printerdrake.pm_.c:3527
#, fuzzy, c-format
msgid "Removing printer \"%s\"..."
msgstr "„Ś„ê„ó„ż \"%s\" €òșïœüĂæ..."
@@ -9455,7 +9792,7 @@ msgstr "„€„󄿥Œ„Í„Ă„È"
msgid "File sharing"
msgstr "„Ő„Ą„€„붊ͭ"
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1669
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1744
msgid "System"
msgstr "„·„č„Æ„à"
@@ -9508,15 +9845,15 @@ msgstr "ł«»Ï"
msgid "Stop"
msgstr "Ää»ß"
-#: ../../share/advertising/00-thanks.pl_.c:9
-msgid "Thank you for choosing Mandrake Linux 8.2"
-msgstr "Mandrake Linux 8.2€ò€ȘÁȘ€Ó€€€ż€À€­€Ț€·€Æ€ą€ê€Ź€È€Š€Ž€¶€€€Ț€č"
+#: ../../share/advertising/01-thanks.pl_.c:9
+msgid "Thank you for choosing Mandrake Linux 9.0"
+msgstr "Mandrake Linux 9.0€ò€ȘÁȘ€Ó€€€ż€À€­€Ț€·€Æ€ą€ê€Ź€È€Š€Ž€¶€€€Ț€č"
-#: ../../share/advertising/00-thanks.pl_.c:10
+#: ../../share/advertising/01-thanks.pl_.c:10
msgid "Welcome to the Open Source world"
msgstr "„ȘĄŒ„Ś„ó„œĄŒ„č€ÎÀ€łŠ€Ű€è€Š€ł€œ"
-#: ../../share/advertising/00-thanks.pl_.c:11
+#: ../../share/advertising/01-thanks.pl_.c:11
msgid ""
"The success of MandrakeSoft is based upon the principle of Free Software. "
"Your new operating system is the result of collaborative work on the part of "
@@ -9526,203 +9863,236 @@ msgstr ""
"„ìĄŒ„Æ„Ł„ó„°„·„č„Æ„à€ÏĄąÁŽÀ€łŠ€Î Linux „ł„ß„ć„Ë„Æ„Ł€Ë€è€ë¶ŠÆ±șî¶È€ÎÀźČ̀ʀ΀Ç"
"€čĄŁ"
-#: ../../share/advertising/01-gnu.pl_.c:9
-msgid "Join the Free Software world"
+#: ../../share/advertising/02-community.pl_.c:9
+msgid "Get involved in the Free Software world"
msgstr "„Ő„êĄŒ„œ„Ő„È€ÎÀ€łŠ€Ë»ČČĂ€·€Ț€·€ç€Š"
-#: ../../share/advertising/01-gnu.pl_.c:10
+#: ../../share/advertising/02-community.pl_.c:10
+msgid "Want to know more about the Open Source community?"
+msgstr ""
+
+#: ../../share/advertising/02-community.pl_.c:11
msgid ""
-"Get to know the Open Source community and become a member. Learn, teach, and "
-"help others by joining the many discussion forums that you will find in our "
-"\"Community\" webpages"
+"To share your own knowledge and help build Linux tools, join the discussions "
+"forum you'll find on our \"Community\" webpages"
msgstr ""
"„ȘĄŒ„Ś„ó„œĄŒ„č„ł„ß„ć„Ë„Æ„Ł€Î€ł€È€ò€â€Ă€ÈĂÎ€Ă€ÆĄą€œ€Î°ì°ś€Ë€Ê€ê€Ț€·€ç€ŠĄŁĄÖ„ł"
"„ß„ć„Ë„Æ„ŁĄŚ„Š„§„Ö„ÚĄŒ„ž€Ë€ą€ëłÆŒï„Ő„©ĄŒ„é„à€Ë»ČČĂ€·€ÆĄąłŰ€ÓĄą¶”€šĄą€Û€«€Î"
"żÍĄč€òœő€±€Ț€·€ç€ŠĄŁ"
-#: ../../share/advertising/02-internet.pl_.c:9
-msgid "Internet and Messaging"
-msgstr "„€„󄿥Œ„Í„Ă„È€È„á„Ă„»ĄŒ„ž"
+#: ../../share/advertising/03-internet.pl_.c:9
+#, fuzzy
+msgid "Get the most from the Internet"
+msgstr "„€„󄿥Œ„Í„Ă„È€ŰÀÜÂł"
-#: ../../share/advertising/02-internet.pl_.c:10
+#: ../../share/advertising/03-internet.pl_.c:10
msgid ""
-"Mandrake Linux 8.2 provides the best software to access everything the "
-"Internet has to offer: Surf the web & view animations with Mozilla and "
-"Konqueror, exchange email & organize your personal information with "
-"Evolution and Kmail, and much more"
+"Mandrake Linux 9.0 has selected the best software for you. Surf the Web and "
+"view animations with Mozilla and Konqueror, or read your mail and handle "
+"your personal information with Evolution and Kmail"
msgstr ""
-"Mandrake Linux 8.2 €Ï„€„󄿥Œ„Í„Ă„È€ÎÄ󶥀č€ë€â€Î€č€Ù€Æ€Ë„ą„Ż„»„č€Ç€­€ëșÇčâ€Î"
+"Mandrake Linux 9.0 €Ï„€„󄿥Œ„Í„Ă„È€ÎÄ󶥀č€ë€â€Î€č€Ù€Æ€Ë„ą„Ż„»„č€Ç€­€ëșÇčâ€Î"
"„œ„Ő„È€òŒè€ê€œ€í€š€Æ€€€Ț€čĄŁ„Š„§„Ö€ò„”ĄŒ„Ő„Ł„ó€·€ÆĄąÆ°Čè€òž«€ë€Ê€éMozilla €È "
"Konqueror €Ź€ą€ë€·Ąą„áĄŒ„ë€ÎÁśŒőżź€ÈžÄżÍŸđÊóŽÉÍę€ÏEvolution €È Kmail, €œ€ÎŸ"
"€Ê€ó€Ç€â€ą€ê€Ț€čĄŁ"
-#: ../../share/advertising/03-graphic.pl_.c:9
-msgid "Multimedia and Graphics"
-msgstr "„Ț„ë„Á„á„Ç„Ł„ą€ÈČèÁü"
+#: ../../share/advertising/04-multimedia.pl_.c:9
+msgid "Discover the most up-to-date graphics and multimedia tools!"
+msgstr ""
-#: ../../share/advertising/03-graphic.pl_.c:10
+#: ../../share/advertising/04-multimedia.pl_.c:10
+msgid "Push multimedia to its limits!"
+msgstr ""
+
+#: ../../share/advertising/04-multimedia.pl_.c:11
+#, fuzzy
msgid ""
-"Mandrake Linux 8.2 lets you push your multimedia computer to its limits! Use "
-"the latest software to play music and audio files, edit and organize your "
-"images and photos, watch TV and videos, and much more"
+"Mandrake Linux 9.0 enables you to use the very latest software to play audio "
+"files, edit and handle your images or photos, and play videos"
msgstr ""
"Mandrake Linux 8.2 €ÏĄą„Ț„ë„Á„á„Ç„Ł„ą”ĄÇœ€ò¶ËžÂ€Ț€Ç»È€€ĆĘ€·€Ț€čĄȘșÇż·„œ„Ő„È€Ç"
"Č»łÚ€äČ»ÀŒ„Ő„Ą„€„ë€ÎșÆÀž€ò€·€ż€êĄąČèÁü€äŒÌżż€òŽÉÍꀷ€ż€êĄą„Æ„ì„Ó€òž«€ż€êĄą€œ"
"€ÎŸ€Ê€ó€Ç€â€Ç€­€Ț€čĄŁ"
-#: ../../share/advertising/04-develop.pl_.c:9
-msgid "Development"
-msgstr "ł«ÈŻÍŃ"
+#: ../../share/advertising/05-games.pl_.c:9
+msgid "Games"
+msgstr "„ČĄŒ„à"
-#: ../../share/advertising/04-develop.pl_.c:10
+#: ../../share/advertising/05-games.pl_.c:10
+#, fuzzy
msgid ""
-"Mandrake Linux 8.2 is the ultimate development platform. Discover the power "
-"of the GNU gcc compiler as well as the best Open Source development "
-"environments"
+"Mandrake Linux 9.0 provides the best Open Source games - arcade, action, "
+"cards, sports, strategy..."
msgstr ""
-"Mandrake Linux 8.2 €Ï”æ¶Ë€Îł«ÈŻ„Ś„é„Ă„È„ÛĄŒ„à€Ç€čĄŁGNU gcc „ł„ó„Ń„€„é€ò€Ï€ž"
-"€áĄąșÇčâ€Î„ȘĄŒ„Ś„ó„œĄŒ„čł«ÈŻŽÄ¶­€Î°ÒÎÏ€òÈŻž«€·€Ț€·€ç€ŠĄŁ"
+"Mandrake Linux 8.2 €Ë€ÏĄąșÇčâ€Î„ȘĄŒ„Ś„ó„œĄŒ„č„ČĄŒ„à€Ź€Ä€€€Æ€­€Ț€čĄŁ„ąĄŒ„±ĄŒ„É"
+"·żĄą„ą„Ż„·„ç„󷿥ą„«ĄŒ„É„ČĄŒ„àĄą„č„ĘĄŒ„ÄĄąÀïÎŹ„ČĄŒ„à..."
-#: ../../share/advertising/05-contcenter.pl_.c:9
-#: ../../standalone/drakbug_.c:69
+#: ../../share/advertising/06-mcc.pl_.c:9 ../../standalone/drakbug_.c:69
msgid "Mandrake Control Center"
msgstr "Mandrake „ł„ó„È„íĄŒ„ë„»„󄿥Œ"
-#: ../../share/advertising/05-contcenter.pl_.c:10
+#: ../../share/advertising/06-mcc.pl_.c:10
+#, fuzzy
msgid ""
-"The Mandrake Linux 8.2 Control Center is a one-stop location for fully "
-"customizing and configuring your Mandrake system"
+"Mandrake Linux 9.0 provides a powerful tool to fully customize and configure "
+"your machine"
msgstr ""
"Mandrake Linux 8.2 „ł„ó„È„íĄŒ„ë„»„󄿥Œ€ÏĄąMandrake „·„č„Æ„à€Î„«„č„ż„Ț„€„ș€È"
"ÀßÄê€Î€ż€á€Î„ï„ó„č„È„Ă„Ś„Ń„Í„ëœž€Ç€čĄŁ"
-#: ../../share/advertising/06-user.pl_.c:9
+#: ../../share/advertising/07-desktop.pl_.c:9
msgid "User interfaces"
msgstr "„æĄŒ„¶„€„󄿥Œ„Ő„§„€„č"
-#: ../../share/advertising/06-user.pl_.c:10
+#: ../../share/advertising/07-desktop.pl_.c:10
msgid ""
-"Mandrake Linux 8.2 provides 11 different graphical desktop environments and "
-"window managers to choose from including GNOME 1.4, KDE 2.2.2, Window Maker "
-"0.8, and the rest"
+"Mandrake Linux 9.0 provides 11 user interfaces which can be fully modified: "
+"KDE 3, Gnome 2, WindowMaker..."
msgstr ""
-"Mandrake Linux 8.2 €Ë€Ï11ŒïÎà€Î„°„é„Ő„Ł„Ă„Ż„Ç„č„Ż„È„Ă„ŚŽÄ¶­€È„Š„Ł„ó„É„Š„Ț„ÍĄŒ"
-"„ž„』Æț€Ă€Æ€€€Ț€čĄŁGNOME 1.4, KDE 2.2.2, Window Maker 0.8 €Ê€É€Ç€čĄŁ"
-#: ../../share/advertising/07-server.pl_.c:9
-msgid "Server Software"
-msgstr "„”ĄŒ„Đ„œ„Ő„È"
+#: ../../share/advertising/08-development.pl_.c:9
+#, fuzzy
+msgid "Development simplified"
+msgstr "ł«ÈŻÍŃ"
-#: ../../share/advertising/07-server.pl_.c:10
+#: ../../share/advertising/08-development.pl_.c:10
+msgid "Mandrake Linux 9.0 is the ultimate development platform"
+msgstr ""
+
+#: ../../share/advertising/08-development.pl_.c:11
+#, fuzzy
+msgid ""
+"Use the full power of the GNU gcc 3 compiler as well as the best Open Source "
+"development environments"
+msgstr ""
+"Mandrake Linux 8.2 €Ï”æ¶Ë€Îł«ÈŻ„Ś„é„Ă„È„ÛĄŒ„à€Ç€čĄŁGNU gcc „ł„ó„Ń„€„é€ò€Ï€ž"
+"€áĄąșÇčâ€Î„ȘĄŒ„Ś„ó„œĄŒ„čł«ÈŻŽÄ¶­€Î°ÒÎÏ€òÈŻž«€·€Ț€·€ç€ŠĄŁ"
+
+#: ../../share/advertising/09-server.pl_.c:9
+msgid "Turn your machine into a reliable server"
+msgstr ""
+
+#: ../../share/advertising/09-server.pl_.c:10
+#, fuzzy
msgid ""
-"Transform your machine into a powerful server with just a few clicks of the "
-"mouse: Web server, email, firewall, router, file and print server, ..."
+"Transform your machine into a powerful server in a few clicks of your mouse: "
+"Web server, mail, firewall, router, file and print server..."
msgstr ""
"„Ț„Š„č€ò€Û€ó€Îżô„Ż„ê„Ă„Ż€č€ë€À€±€ÇĄą€ą€Ê€ż€Î„Ț„·„ó€Ï¶ŻÎπʄ”ĄŒ„Đ€ËÁáÊŃ€ï€êĄȘ"
"„Š„§„Ö„”ĄŒ„ĐĄą„áĄŒ„륹„Ő„Ą„€„ąĄŒ„Š„©ĄŒ„륹„ëĄŒ„żĄą„Ő„Ą„€„ë„”ĄŒ„Ѐ˰őșț„”ĄŒ„Đ"
"€Ê€É€â€í€â€í€Ç€čĄŁ"
-#: ../../share/advertising/08-games.pl_.c:9
-msgid "Games"
-msgstr "„ČĄŒ„à"
+#: ../../share/advertising/10-mnf.pl_.c:9
+msgid "Optimize your security"
+msgstr ""
-#: ../../share/advertising/08-games.pl_.c:10
+#: ../../share/advertising/10-mnf.pl_.c:10
msgid ""
-"Mandrake Linux 8.2 provides the best Open Source games - arcade, action, "
-"cards, sports, strategy, ..."
+"The MandrakeSecurity range includes the Multi Network Firewall product (M.N."
+"F.)"
+msgstr ""
+
+#: ../../share/advertising/10-mnf.pl_.c:11
+msgid ""
+"This firewall product includes network features which allow you to fulfill "
+"all your security needs"
msgstr ""
-"Mandrake Linux 8.2 €Ë€ÏĄąșÇčâ€Î„ȘĄŒ„Ś„ó„œĄŒ„č„ČĄŒ„à€Ź€Ä€€€Æ€­€Ț€čĄŁ„ąĄŒ„±ĄŒ„É"
-"·żĄą„ą„Ż„·„ç„󷿥ą„«ĄŒ„É„ČĄŒ„àĄą„č„ĘĄŒ„ÄĄąÀïÎŹ„ČĄŒ„à..."
-#: ../../share/advertising/09-MDKcampus.pl_.c:9
-msgid "MandrakeCampus"
-msgstr "MandrakeCampus"
+#: ../../share/advertising/10-mnf.pl_.c:12
+msgid "This product is available on MandrakeStore website"
+msgstr ""
+
+#: ../../share/advertising/11-mdkstore.pl_.c:9
+msgid "The official MandrakeSoft store"
+msgstr ""
-#: ../../share/advertising/09-MDKcampus.pl_.c:10
+#: ../../share/advertising/11-mdkstore.pl_.c:10
+#, fuzzy
msgid ""
-"Would you like to learn Linux simply, quickly, and for free? MandrakeSoft "
-"provides free Linux training, as well as a way to test your progress, at "
-"MandrakeCampus -- our online training center"
+"Our full range of Linux solutions, as well as special offers on products and "
+"'goodies', are available online at our e-store"
msgstr ""
-"Linux €òŒê·Ú€Ë€č€Đ€ä€ŻĄąÌ”ÎÁ€ÇÊÙ¶Ż€·€ż€€€Ç€č€«Ą© MandrakeSoft €ÏÌ”ÎÁ€ÎLinux "
-"„È„ìĄŒ„˄󄰀䥹€č€č€ß¶ńčç€ò„Á„§„Ă„Ż€č€ëÊęËĄ€òÄ󶥀·€Æ€€€Ț€čĄŁ€œ€ì€Ź"
-"MandrakeCampus -- ÊÀŒÒ€Î„Ș„ó„é„€„󞊜€„»„󄿥Œ€Ç€čĄŁ"
+"„Ő„ë„ì„󄞀ÎLinux „œ„ê„ćĄŒ„·„ç„ó€äĄąÀœÉÊ€äłÆŒï„ą„€„Æ„à€ÎÆĂČÁÈÎÇ䀏ĄąÊÀŒÒ€Î„Ș"
+"„ó„é„€„óŸŠĆč€ÇŒê€ËÆț€ê€Ț€čĄŁ"
-#: ../../share/advertising/10-MDKexpert.pl_.c:9
-msgid "MandrakeExpert"
-msgstr "Mandrake„š„­„č„ŃĄŒ„È"
+#: ../../share/advertising/12-mdkstore.pl_.c:9
+msgid "Strategic partners"
+msgstr ""
-#: ../../share/advertising/10-MDKexpert.pl_.c:10
+#: ../../share/advertising/12-mdkstore.pl_.c:10
msgid ""
-"Quality support from the Linux Community, and from MandrakeSoft, is just "
-"around the corner. And if you're already a Linux veteran, become an \"Expert"
-"\" and share your knowledge at our support website"
+"MandrakeSoft works alongside a selection of companies offering professional "
+"solutions compatible with Mandrake Linux; a list of these partners is "
+"available on the MandrakeStore"
msgstr ""
-"Linux „ł„ß„ć„Ë„Æ„Ł€È MandrakeSoft €«€é€ÎčâŒÁ€Ê„”„ĘĄŒ„È€Ź€č€°€ËÆÀ€é€ì€Ț€čĄŁ€œ"
-"€·€Æ€ą€Ê€ż€Ź¶Ú¶âÆț€ê€Î Linux żÍ€Ê€éĄąĄÖ„š„­„č„ŃĄŒ„ÈĄŚ€Ë€Ê€Ă€Æ„”„ĘĄŒ„ÈÍŃ„Š„§„Ö"
-"„”„€„È€ÇĂÎŒ±€ò¶ŠÍ­€·€Æ€Ż€À€”€€ĄŁ"
-#: ../../share/advertising/11-consul.pl_.c:9
-msgid "MandrakeConsulting"
-msgstr "Mandrake „ł„ó„”„ë„Æ„Ł„ó„°"
+#: ../../share/advertising/13-mdkcampus.pl_.c:9
+msgid "Discover MandrakeSoft's training catalogue Linux-Campus"
+msgstr ""
-#: ../../share/advertising/11-consul.pl_.c:10
+#: ../../share/advertising/13-mdkcampus.pl_.c:10
msgid ""
-"For all of your IT projects, our consultants are ready to analyze your "
-"requirements and offer a customized solution. Benefit from MandrakeSoft's "
-"vast experience as a Linux producer to provide a true IT alternative for "
-"your business organization"
+"The training program has been create to respond to the needs of both users "
+"and experts (Network and System administrations)"
msgstr ""
-"€ą€é€æ€ë IT „Ś„í„ž„§„Ż„ȀˀĀ€€ÆĄąÊÀŒÒ€Î„ł„ó„”„ë„ż„ó„È€ż€Á€ŹÍŚ·ï€òÊŹÀÏ€·Ąą„«"
-"„č„ż„àČœ€·€ż„œ„ê„ćĄŒ„·„ç„ó€òÄó°Æ€€€ż€·€Ț€čĄŁLinux „Ù„ó„ÀĄŒ€È€·€Æ€Î "
-"MandrakeSoft €ÎÇüÂç€Ê·Đžł€òÀž€«€·€ÆĄą€ą€Ê€ż€Î„Ó„ž„Í„čÁÈż„žț€±€Ëżż€Î ITÂćÂŰ°Æ"
-"€òÄ󶥀€€ż€·€Ț€čĄŁ"
-#: ../../share/advertising/12-MDKstore.pl_.c:9
-msgid "MandrakeStore"
-msgstr "MandrakeStore"
+#: ../../share/advertising/13-mdkcampus.pl_.c:11
+msgid "Certify yourself on Linux"
+msgstr ""
-#: ../../share/advertising/12-MDKstore.pl_.c:10
+#: ../../share/advertising/13-mdkcampus.pl_.c:12
msgid ""
-"A full range of Linux solutions, as well as special offers on products and "
-"'goodies', are available online at our e-store"
+"Whether you choose to teach yourself online or via our network of training "
+"partners, the Linux-Campus catalogue prepares you for the acknowledged LPI "
+"certification program (worldwide professional technical certification)"
msgstr ""
-"„Ő„ë„ì„󄞀ÎLinux „œ„ê„ćĄŒ„·„ç„ó€äĄąÀœÉÊ€äłÆŒï„ą„€„Æ„à€ÎÆĂČÁÈÎÇ䀏ĄąÊÀŒÒ€Î„Ș"
-"„ó„é„€„óŸŠĆč€ÇŒê€ËÆț€ê€Ț€čĄŁ"
-#: ../../share/advertising/13-Nvert.pl_.c:9
+#: ../../share/advertising/14-mdkexpert.pl_.c:9
+#, fuzzy
+msgid "Become a MandrakeExpert"
+msgstr "Mandrake„š„­„č„ŃĄŒ„È"
+
+#: ../../share/advertising/14-mdkexpert.pl_.c:10
msgid ""
-"For more information on MandrakeSoft's Professional Services and commercial "
-"offerings, please see the following web page:"
+"Find the solutions to your problems via MandrakeSoft's online support "
+"platform"
msgstr ""
-"MandrakeSoft €ÎÀìÌç„”ĄŒ„Ó„č€äÈÎÇ䟊ÉʀˀĀ€€ÆŸÜ€·€Ż€Ï°ÊČŒ€Î„Š„§„Ö„ÚĄŒ„ž€ò»ČŸÈ"
-"€·€Æ€Ż€À€”€€:"
-#: ../../share/advertising/13-Nvert.pl_.c:11
-msgid "http://www.mandrakesoft.com/sales/contact"
-msgstr "http://www.mandrakesoft.com/sales/contact"
+#: ../../share/advertising/14-mdkexpert.pl_.c:11
+msgid ""
+"Join the MandrakeSoft support teams and the Linux Community online to share "
+"your knowledge and help others by becoming a recognized Expert on the online "
+"technical support website:"
+msgstr ""
+
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:9
+#, fuzzy
+msgid "MandrakeExpert Corporate"
+msgstr "Mandrake„š„­„č„ŃĄŒ„È"
+
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:10
+msgid "An online platform to respond to company's specific support needs"
+msgstr ""
-#: ../../standalone.pm_.c:40
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:11
+msgid ""
+"All incidents will be followed up by a single qualified MandrakeSoft "
+"technical expert."
+msgstr ""
+
+#: ../../standalone.pm_.c:41
msgid "Installing packages..."
msgstr "„Ń„Ă„±ĄŒ„ž€Î„€„ó„č„ÈĄŒ„ëĂæ..."
-#: ../../standalone/XFdrake_.c:143
+#: ../../standalone/XFdrake_.c:145
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "„í„°„ą„Š„È€·€żŸć€Ç Ctrl-Alt-BackSpace €òČĄ€·€ÆČŒ€”€€"
-#: ../../standalone/XFdrake_.c:147
+#: ../../standalone/XFdrake_.c:149
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "ÊŃčč€òÍ­žú€Ë€č€ë€Ë€Ï %s €Ë„í„°„€„󀷀ʀȘ€·€ÆČŒ€”€€"
-#: ../../standalone/diskdrake_.c:81
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I'll try to go on blanking bad partitions"
-msgstr ""
-"„ŃĄŒ„Æ„Ł„·„ç„ó„ÆĄŒ„ք뀏ÆÉ€á€Ț€»€óĄ€Čő€ì€Æ€€€ë€è€Š€Ç€č:(\n"
-"ÉÔÀ”€Ê„ŃĄŒ„Æ„Ł„·„ç„ó€ò¶őÇò€ÇËä€á€è€Š€È€·€Ț€č"
-
#: ../../standalone/drakTermServ_.c:188
#, fuzzy
msgid "Mandrake Terminal Server Configuration"
@@ -9766,12 +10136,13 @@ msgstr "„æĄŒ„¶€òÄÉČĂ"
msgid "Add/Del Clients"
msgstr "DHCP „Ż„é„€„ą„ó„È"
-#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3282
-#: ../../standalone/drakbackup_.c:3315 ../../standalone/drakbackup_.c:3341
-#: ../../standalone/drakbackup_.c:3368 ../../standalone/drakbackup_.c:3395
-#: ../../standalone/drakbackup_.c:3434 ../../standalone/drakbackup_.c:3455
-#: ../../standalone/drakbackup_.c:3482 ../../standalone/drakbackup_.c:3508
-#: ../../standalone/drakbackup_.c:3533 ../../standalone/drakfont_.c:700
+#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3930
+#: ../../standalone/drakbackup_.c:3963 ../../standalone/drakbackup_.c:3989
+#: ../../standalone/drakbackup_.c:4016 ../../standalone/drakbackup_.c:4043
+#: ../../standalone/drakbackup_.c:4082 ../../standalone/drakbackup_.c:4103
+#: ../../standalone/drakbackup_.c:4130 ../../standalone/drakbackup_.c:4160
+#: ../../standalone/drakbackup_.c:4186 ../../standalone/drakbackup_.c:4211
+#: ../../standalone/drakfont_.c:700
msgid "Help"
msgstr "„Ű„ë„Ś"
@@ -9943,8 +10314,8 @@ msgstr ""
"\n"
"Œ«Æ°„€„ó„č„ÈĄŒ„ë€Î„Ń„é„áĄŒ„ż€Źșž€ËÉœŒš€”€ì€Æ€€€Ț€č"
-#: ../../standalone/drakautoinst_.c:239 ../../standalone/drakgw_.c:548
-#: ../../standalone/scannerdrake_.c:105
+#: ../../standalone/drakautoinst_.c:239 ../../standalone/drakgw_.c:484
+#: ../../standalone/scannerdrake_.c:119
msgid "Congratulations!"
msgstr "€Ș€á€Ç€È€Š€Ž€¶€€€Ț€čĄȘ"
@@ -9968,20 +10339,24 @@ msgstr "„ą„€„Æ„àÄÉČĂ"
msgid "Remove the last item"
msgstr "șÇžć€Î„ą„€„Æ„à€òșïœü"
-#: ../../standalone/drakbackup_.c:625
+#: ../../standalone/drakbackup_.c:619
msgid "Cron not available yet as non-root"
msgstr ""
-#: ../../standalone/drakbackup_.c:731
+#: ../../standalone/drakbackup_.c:725
msgid "WARNING"
msgstr ""
-#: ../../standalone/drakbackup_.c:732
+#: ../../standalone/drakbackup_.c:726
#, fuzzy
msgid "FATAL"
msgstr "FAT"
-#: ../../standalone/drakbackup_.c:744
+#: ../../standalone/drakbackup_.c:727
+msgid "INFO"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:739
msgid ""
"\n"
" DrakBackup Report \n"
@@ -9991,7 +10366,7 @@ msgstr ""
" DrakBackup Êóčđ \n"
"\n"
-#: ../../standalone/drakbackup_.c:745
+#: ../../standalone/drakbackup_.c:740
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -10003,7 +10378,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:749
+#: ../../standalone/drakbackup_.c:744
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -10015,13 +10390,20 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:770 ../../standalone/drakbackup_.c:840
-#: ../../standalone/drakbackup_.c:894
+#: ../../standalone/drakbackup_.c:765 ../../standalone/drakbackup_.c:835
+#: ../../standalone/drakbackup_.c:889
#, fuzzy
msgid "Total progess"
msgstr "żÊčÔŸő¶·"
-#: ../../standalone/drakbackup_.c:822
+#: ../../standalone/drakbackup_.c:788
+msgid ""
+"Sorry, perl-Expect is not installed/enabled. To use\n"
+"this feature, install perl-Expect and comment lines 772-774,\n"
+" as well as 788,789. Then uncomment line 787."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:817
#, c-format
msgid ""
"%s exists, delete?\n"
@@ -10030,16 +10412,41 @@ msgid ""
" need to purge the entry from authorized_keys on the server."
msgstr ""
-#: ../../standalone/drakbackup_.c:831
+#: ../../standalone/drakbackup_.c:826
msgid "This may take a moment to generate the keys."
msgstr ""
-#: ../../standalone/drakbackup_.c:838
+#: ../../standalone/drakbackup_.c:833
#, c-format
msgid "ERROR: Cannot spawn %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:865
+#: ../../standalone/drakbackup_.c:850
+#, c-format
+msgid "No password prompt on %s at port %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:851
+#, fuzzy, c-format
+msgid "Bad password on %s"
+msgstr "„Ń„č„ïĄŒ„ɀʀ·"
+
+#: ../../standalone/drakbackup_.c:852
+#, c-format
+msgid "Permission denied transferring %s to %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:853
+#, fuzzy, c-format
+msgid "Can't find %s on %s"
+msgstr "%s €Źł«€±€Ț€»€ó: %s\n"
+
+#: ../../standalone/drakbackup_.c:856
+#, c-format
+msgid "%s not responding"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:860
#, c-format
msgid ""
"Transfer successful\n"
@@ -10050,60 +10457,65 @@ msgid ""
"without being prompted for a password."
msgstr ""
-#: ../../standalone/drakbackup_.c:908
+#: ../../standalone/drakbackup_.c:903
msgid "WebDAV remote site already in sync!"
msgstr ""
-#: ../../standalone/drakbackup_.c:912
+#: ../../standalone/drakbackup_.c:907
msgid "WebDAV transfer failed!"
msgstr ""
-#: ../../standalone/drakbackup_.c:934
+#: ../../standalone/drakbackup_.c:928
msgid "No CDR/DVDR in drive!"
msgstr ""
-#: ../../standalone/drakbackup_.c:938
+#: ../../standalone/drakbackup_.c:932
msgid "Does not appear to be recordable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:942
+#: ../../standalone/drakbackup_.c:936
msgid "Not erasable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:981
+#: ../../standalone/drakbackup_.c:975
msgid "This may take a moment to erase the media."
msgstr ""
-#: ../../standalone/drakbackup_.c:1045
+#: ../../standalone/drakbackup_.c:1060
msgid "Permission problem accessing CD."
msgstr ""
-#: ../../standalone/drakbackup_.c:1144 ../../standalone/drakbackup_.c:1193
+#: ../../standalone/drakbackup_.c:1087
+#, c-format
+msgid "No tape in %s!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1199 ../../standalone/drakbackup_.c:1248
msgid "Backup system files..."
msgstr "„·„č„Æ„à„Ő„Ą„€„ë€Î„Đ„Ă„Ż„ą„Ă„Ś..."
-#: ../../standalone/drakbackup_.c:1194 ../../standalone/drakbackup_.c:1261
+#: ../../standalone/drakbackup_.c:1249 ../../standalone/drakbackup_.c:1316
msgid "Hard Disk Backup files..."
msgstr "„ÏĄŒ„É„Ç„Ł„č„Ż€Î„Đ„Ă„Ż„ą„Ă„Ś„Ő„Ą„€„ë..."
-#: ../../standalone/drakbackup_.c:1206
+#: ../../standalone/drakbackup_.c:1261
msgid "Backup User files..."
msgstr "„æĄŒ„¶„Ő„Ą„€„ë€Î„Đ„Ă„Ż„ą„Ă„Ś..."
-#: ../../standalone/drakbackup_.c:1207
+#: ../../standalone/drakbackup_.c:1262
msgid "Hard Disk Backup Progress..."
msgstr "„ÏĄŒ„É„Ç„Ł„č„Ż„Đ„Ă„Ż„ą„Ă„Ś€ÎżÊčÔ..."
-#: ../../standalone/drakbackup_.c:1260
+#: ../../standalone/drakbackup_.c:1315
msgid "Backup Other files..."
msgstr "Ÿ€Î„Ő„Ą„€„ë€ò„Đ„Ă„Ż„ą„Ă„Ś..."
-#: ../../standalone/drakbackup_.c:1266
+#: ../../standalone/drakbackup_.c:1321
#, fuzzy
msgid "No changes to backup!"
msgstr "„ÆĄŒ„Ś€Ë„Đ„Ă„Ż„ą„Ă„Ś"
-#: ../../standalone/drakbackup_.c:1282 ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1337 ../../standalone/drakbackup_.c:1360
#, c-format
msgid ""
"\n"
@@ -10111,16 +10523,16 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1289
+#: ../../standalone/drakbackup_.c:1344
#, fuzzy, c-format
msgid ""
-"file list sent by FTP : %s\n"
+"file list sent by FTP: %s\n"
" "
msgstr ""
"FTP €ÇÁś€ë„Ő„Ą„€„ë€Î„ê„č„È: %s\n"
" "
-#: ../../standalone/drakbackup_.c:1292
+#: ../../standalone/drakbackup_.c:1347
#, fuzzy
msgid ""
"\n"
@@ -10130,39 +10542,39 @@ msgstr ""
"\n"
"(!) FTP ÀÜÂł€Î„È„é„Ö„ë: FTP€Ç„Đ„Ă„Ż„ą„Ă„Ś„Ő„Ą„€„ë€òÁś€ì€Ț€»€ó€Ç€·€żĄŁ\n"
-#: ../../standalone/drakbackup_.c:1310
+#: ../../standalone/drakbackup_.c:1365
msgid ""
"\n"
"Drakbackup activities via CD:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1315
+#: ../../standalone/drakbackup_.c:1370
msgid ""
"\n"
"Drakbackup activities via tape:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1324
+#: ../../standalone/drakbackup_.c:1379
#, fuzzy
msgid " Error during mail sending. \n"
msgstr "(!) „áĄŒ„ëÁśżźĂæ€Ë„š„éĄŒĄŁ\n"
-#: ../../standalone/drakbackup_.c:1346
+#: ../../standalone/drakbackup_.c:1404
msgid "Can't create catalog!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1459 ../../standalone/drakbackup_.c:1470
-#: ../../standalone/drakbackup_.c:1481 ../../standalone/drakfont_.c:1004
+#: ../../standalone/drakbackup_.c:1517 ../../standalone/drakbackup_.c:1528
+#: ../../standalone/drakfont_.c:1004
msgid "File Selection"
msgstr "„Ő„Ą„€„ë€òÁȘÂò"
-#: ../../standalone/drakbackup_.c:1486
+#: ../../standalone/drakbackup_.c:1556
msgid "Select the files or directories and click on 'Add'"
msgstr "„Ő„Ą„€„ë€ä„Ç„Ł„ì„Ż„È„ê€òÁȘ€ó€ÇĄÖÄÉČĂĄŚ€ò„Ż„ê„Ă„Ż€·€Ț€č"
-#: ../../standalone/drakbackup_.c:1525
+#: ../../standalone/drakbackup_.c:1600
msgid ""
"\n"
"Please check all options that you need.\n"
@@ -10170,27 +10582,27 @@ msgstr ""
"\n"
"ÉŹÍŚ€Ê„Ș„Ś„·„ç„ó€Ë„Á„§„Ă„Ż€ò€Ä€±€Æ€Ż€À€”€€ĄŁ\n"
-#: ../../standalone/drakbackup_.c:1526
+#: ../../standalone/drakbackup_.c:1601
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
"€ł€Î„Ș„Ś„·„ç„ó€Ï /etc „Ç„Ł„ì„Ż„È„ê€Î„Ő„Ą„€„ë€ò€č€Ù€Æ„Đ„Ă„Ż„ą„Ă„ŚĄŠÉüž”€Ç€­€Ț"
"€čĄŁ\n"
-#: ../../standalone/drakbackup_.c:1527
+#: ../../standalone/drakbackup_.c:1602
#, fuzzy
msgid "Backup your System files. (/etc directory)"
msgstr "„·„č„Æ„à„Ő„Ą„€„ë€Î„Đ„Ă„Ż„ą„Ă„ŚĄÊ/etc„Ç„Ł„ì„Ż„È„ê)"
-#: ../../standalone/drakbackup_.c:1528
+#: ../../standalone/drakbackup_.c:1603
msgid "Use incremental backup (do not replace old backups)"
msgstr "„€„ó„Ż„ê„á„ó„ż„ë„Đ„Ă„Ż„ą„Ă„ŚĄÊžĆ€€„Đ„Ă„Ż„ą„Ă„Ś€Ï»Ä€č)"
-#: ../../standalone/drakbackup_.c:1529
+#: ../../standalone/drakbackup_.c:1604
msgid "Do not include critical files (passwd, group, fstab)"
msgstr "œĆÍŚ„Ő„Ą„€„ë (passwd, group, fstab) €ÏŽȚ€á€Ê€€"
-#: ../../standalone/drakbackup_.c:1530
+#: ../../standalone/drakbackup_.c:1605
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
@@ -10198,61 +10610,65 @@ msgstr ""
"€ł€Î„Ș„Ś„·„ç„ó€Ç€ÏĄąč„€­€Ê„ĐĄŒ„ž„ç„ó€Î /etc „Ç„Ł„ì„Ż„È„ê€ò\n"
"Éüž”€Ç€­€Ț€čĄŁ"
-#: ../../standalone/drakbackup_.c:1547
+#: ../../standalone/drakbackup_.c:1622
msgid "Please check all users that you want to include in your backup."
msgstr "„Đ„Ă„Ż„ą„Ă„Ś€ËŽȚ€á€ż€€„æĄŒ„¶€òÁŽ°śÁȘ€ó€ÇČŒ€”€€"
-#: ../../standalone/drakbackup_.c:1574
+#: ../../standalone/drakbackup_.c:1649
msgid "Do not include the browser cache"
msgstr "„Ö„é„Š„¶€Î„­„ă„Ă„·„ć€ÏŽȚ€á€Ê€€"
-#: ../../standalone/drakbackup_.c:1575 ../../standalone/drakbackup_.c:1599
+#: ../../standalone/drakbackup_.c:1650 ../../standalone/drakbackup_.c:1674
msgid "Use Incremental Backups (do not replace old backups)"
msgstr "„€„ó„Ż„ê„á„ó„ż„ë„Đ„Ă„Ż„ą„Ă„ŚĄÊžĆ€€„Đ„Ă„Ż„ą„Ă„Ś€Ï»Ä€č)"
-#: ../../standalone/drakbackup_.c:1597 ../../standalone/drakfont_.c:1058
+#: ../../standalone/drakbackup_.c:1672 ../../standalone/drakfont_.c:1058
msgid "Remove Selected"
msgstr "ÁȘ€ó€À€â€Î€òșïœü"
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:1710
msgid "Windows (FAT32)"
msgstr "Windows (FAT32)"
-#: ../../standalone/drakbackup_.c:1674
+#: ../../standalone/drakbackup_.c:1749
msgid "Users"
msgstr "„æĄŒ„¶ÌŸ"
-#: ../../standalone/drakbackup_.c:1700
+#: ../../standalone/drakbackup_.c:1775
#, fuzzy
msgid "Use network connection to backup"
msgstr "„Đ„Ă„Ż„ą„Ă„Ś€Ë FTP ÀÜÂł€ò»ÈÍŃ"
-#: ../../standalone/drakbackup_.c:1706
+#: ../../standalone/drakbackup_.c:1777
+msgid "Net Method:"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1781
msgid "Use Expect for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1707
+#: ../../standalone/drakbackup_.c:1782
msgid ""
"Create/Transfer\n"
"backup keys for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1708
+#: ../../standalone/drakbackup_.c:1783
#, fuzzy
msgid ""
" Transfer \n"
"Now"
msgstr "°ÜÆ°"
-#: ../../standalone/drakbackup_.c:1709
+#: ../../standalone/drakbackup_.c:1784
msgid "Keys in place already"
msgstr ""
-#: ../../standalone/drakbackup_.c:1713
+#: ../../standalone/drakbackup_.c:1788
msgid "Please enter the host name or IP."
msgstr "„Û„č„ÈÌŸ€« IP €òÆțÎÏ€·€Æ€Ż€À€”€€ĄŁ"
-#: ../../standalone/drakbackup_.c:1718
+#: ../../standalone/drakbackup_.c:1793
#, fuzzy
msgid ""
"Please enter the directory (or module) to\n"
@@ -10261,68 +10677,68 @@ msgstr ""
"€ł€Î„Û„č„ÈŸć€Ç€œ€Î„Ç„Ł„ì„Ż„È„ê€Ë\n"
"„Đ„Ă„Ż„ą„Ă„Ś€òÊĘž€·€Ț€č€«Ą©"
-#: ../../standalone/drakbackup_.c:1723
+#: ../../standalone/drakbackup_.c:1798
msgid "Please enter your login"
msgstr "„í„°„€„óÌŸ€òÆțÎÏ€·€Æ€Ż€À€”€€"
-#: ../../standalone/drakbackup_.c:1728
+#: ../../standalone/drakbackup_.c:1803
msgid "Please enter your password"
msgstr "„Ń„č„ïĄŒ„É€òÆțÎÏ€·€Æ€Ż€À€”€€"
-#: ../../standalone/drakbackup_.c:1734
+#: ../../standalone/drakbackup_.c:1809
msgid "Remember this password"
msgstr "€ł€Î„Ń„č„ïĄŒ„É€ò”­Č±€č€ë"
-#: ../../standalone/drakbackup_.c:1745
+#: ../../standalone/drakbackup_.c:1820
msgid "Need hostname, username and password!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1841
+#: ../../standalone/drakbackup_.c:1915
msgid "Use CD/DVDROM to backup"
msgstr "CD/DVDROM €Ë„Đ„Ă„Ż„ą„Ă„Ś"
-#: ../../standalone/drakbackup_.c:1844
+#: ../../standalone/drakbackup_.c:1918
msgid ""
"Please choose your CD/DVD device\n"
"(Press Enter to propogate settings to other fields.\n"
"This field isn't necessary, only a tool to fill in the form.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1849
+#: ../../standalone/drakbackup_.c:1923
#, fuzzy
msgid "Please choose your CD/DVD media size"
msgstr "CD „č„ÚĄŒ„č€òÁȘ€ó€Ç€Ż€À€”€€"
-#: ../../standalone/drakbackup_.c:1855
+#: ../../standalone/drakbackup_.c:1929
#, fuzzy
msgid "Please check for multisession CD"
msgstr "CDRW€ò»È€Ă€Æ€€€ëŸìčç€Ï„Á„§„Ă„Ż€·€Æ€Ż€À€”€€"
-#: ../../standalone/drakbackup_.c:1861
+#: ../../standalone/drakbackup_.c:1935
msgid "Please check if you are using CDRW media"
msgstr "CDRW€ò»È€Ă€Æ€€€ëŸìčç€Ï„Á„§„Ă„Ż€·€Æ€Ż€À€”€€"
-#: ../../standalone/drakbackup_.c:1867
+#: ../../standalone/drakbackup_.c:1941
#, fuzzy
msgid "Please check if you want to erase your RW media (1st Session)"
msgstr "€Ț€ș CDRW €òŸĂ”î€č€ëŸìčç€Ë€Ï€ł€ł€ò„Ż„ê„Ă„Ż"
-#: ../../standalone/drakbackup_.c:1868
+#: ../../standalone/drakbackup_.c:1942
#, fuzzy
msgid " Erase Now "
msgstr "°ÜÆ°"
-#: ../../standalone/drakbackup_.c:1874
+#: ../../standalone/drakbackup_.c:1948
#, fuzzy
msgid "Please check if you are using a DVDR device"
msgstr "CDRW€ò»È€Ă€Æ€€€ëŸìčç€Ï„Á„§„Ă„Ż€·€Æ€Ż€À€”€€"
-#: ../../standalone/drakbackup_.c:1880
+#: ../../standalone/drakbackup_.c:1954
#, fuzzy
msgid "Please check if you are using a DVDRAM device"
msgstr "CDRW€ò»È€Ă€Æ€€€ëŸìčç€Ï„Á„§„Ă„Ż€·€Æ€Ż€À€”€€"
-#: ../../standalone/drakbackup_.c:1893
+#: ../../standalone/drakbackup_.c:1967
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
@@ -10330,36 +10746,36 @@ msgstr ""
"CD „é„€„żĄŒ€Î„Ç„Đ„€„čÌŸ€òÆțÎÏ€·€Æ€Ż€À€”€€\n"
"Îă: 0,1,0"
-#: ../../standalone/drakbackup_.c:1926
+#: ../../standalone/drakbackup_.c:2000
#, fuzzy
msgid "No CD device defined!"
msgstr "„Ő„Ą„€„ë€òÁȘÂò"
-#: ../../standalone/drakbackup_.c:1974
+#: ../../standalone/drakbackup_.c:2048
msgid "Use tape to backup"
msgstr "„ÆĄŒ„Ś€Ë„Đ„Ă„Ż„ą„Ă„Ś"
-#: ../../standalone/drakbackup_.c:1977
+#: ../../standalone/drakbackup_.c:2051
msgid "Please enter the device name to use for backup"
msgstr "„Đ„Ă„Ż„ą„Ă„ŚÍŃ„Ç„Đ„€„čÌŸ€òÆțÎÏ€·€Æ€Ż€À€”€€"
-#: ../../standalone/drakbackup_.c:1983
+#: ../../standalone/drakbackup_.c:2057
#, fuzzy
msgid "Please check if you want to use the non-rewinding device."
msgstr "€Ț€ș CDRW €òŸĂ”î€č€ëŸìčç€Ë€Ï€ł€ł€ò„Ż„ê„Ă„Ż"
-#: ../../standalone/drakbackup_.c:1989
+#: ../../standalone/drakbackup_.c:2063
#, fuzzy
msgid "Please check if you want to erase your tape before the backup."
msgstr "€Ț€ș CDRW €òŸĂ”î€č€ëŸìčç€Ë€Ï€ł€ł€ò„Ż„ê„Ă„Ż"
-#: ../../standalone/drakbackup_.c:1995
+#: ../../standalone/drakbackup_.c:2069
#, fuzzy
msgid "Please check if you want to eject your tape after the backup."
msgstr "€Ț€ș CDRW €òŸĂ”î€č€ëŸìčç€Ë€Ï€ł€ł€ò„Ż„ê„Ă„Ż"
-#: ../../standalone/drakbackup_.c:2001 ../../standalone/drakbackup_.c:2074
-#: ../../standalone/drakbackup_.c:3025
+#: ../../standalone/drakbackup_.c:2075 ../../standalone/drakbackup_.c:2149
+#: ../../standalone/drakbackup_.c:3116
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
@@ -10367,63 +10783,63 @@ msgstr ""
"Drakbackup€Ë”ö€”€ì€ëșÇÂç„”„€„ș€ò\n"
"ÆțÎÏ€·€Æ€Ż€À€”€€"
-#: ../../standalone/drakbackup_.c:2066
+#: ../../standalone/drakbackup_.c:2140
#, fuzzy
msgid "Please enter the directory to save to:"
msgstr "ÊĘž€č€ë„Ç„Ł„ì„Ż„È„ê€òÆțÎÏ€·€Æ€Ż€À€”€€:"
-#: ../../standalone/drakbackup_.c:2080 ../../standalone/drakbackup_.c:3031
+#: ../../standalone/drakbackup_.c:2155 ../../standalone/drakbackup_.c:3122
msgid "Use quota for backup files."
msgstr "„Đ„Ă„Ż„ą„Ă„Ś„Ő„Ą„€„ë€Î„Ż„©ĄŒ„ż€ò»È€Š"
-#: ../../standalone/drakbackup_.c:2146
+#: ../../standalone/drakbackup_.c:2221
msgid "Network"
msgstr "„Í„Ă„È„ïĄŒ„Ż"
-#: ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:2226
msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2156
+#: ../../standalone/drakbackup_.c:2231
msgid "HardDrive / NFS"
msgstr "„ÏĄŒ„É„É„é„€„Ö / NFS"
-#: ../../standalone/drakbackup_.c:2161
+#: ../../standalone/drakbackup_.c:2236
#, fuzzy
msgid "Tape"
msgstr "„ż„€„Ś"
-#: ../../standalone/drakbackup_.c:2175 ../../standalone/drakbackup_.c:2179
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2250 ../../standalone/drakbackup_.c:2254
+#: ../../standalone/drakbackup_.c:2258
msgid "hourly"
msgstr "Ëè»țŽÖ"
-#: ../../standalone/drakbackup_.c:2176 ../../standalone/drakbackup_.c:2180
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2251 ../../standalone/drakbackup_.c:2255
+#: ../../standalone/drakbackup_.c:2258
msgid "daily"
msgstr "ËèÆü"
-#: ../../standalone/drakbackup_.c:2177 ../../standalone/drakbackup_.c:2181
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2252 ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2258
msgid "weekly"
msgstr "Ë蜔"
-#: ../../standalone/drakbackup_.c:2178 ../../standalone/drakbackup_.c:2182
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2253 ../../standalone/drakbackup_.c:2257
+#: ../../standalone/drakbackup_.c:2258
msgid "monthly"
msgstr "Ëè·î"
-#: ../../standalone/drakbackup_.c:2196
+#: ../../standalone/drakbackup_.c:2271
msgid "Use daemon"
msgstr "„ÇĄŒ„â„ó€ò»È€Š"
-#: ../../standalone/drakbackup_.c:2201
+#: ../../standalone/drakbackup_.c:2276
msgid ""
"Please choose the time \n"
"interval between each backup"
msgstr "„Đ„Ă„Ż„ą„Ă„Ś€ÎŽÖłÖ€òÁȘ€ó€Ç€Ż€À€”€€"
-#: ../../standalone/drakbackup_.c:2207
+#: ../../standalone/drakbackup_.c:2282
msgid ""
"Please choose the\n"
"media for backup."
@@ -10431,7 +10847,7 @@ msgstr ""
"„Đ„Ă„Ż„ą„Ă„Ś€Î„á„Ç„Ł„ą€ò\n"
"ÁȘ€ó€Ç€Ż€À€”€€€ÍĄŁ"
-#: ../../standalone/drakbackup_.c:2214
+#: ../../standalone/drakbackup_.c:2289
#, fuzzy
msgid ""
"Please be sure that the cron daemon is included in your services. \n"
@@ -10439,71 +10855,71 @@ msgid ""
"Note that currently all 'net' medias also use the hard drive."
msgstr "„”ĄŒ„Ó„č€Ë cron „ÇĄŒ„â„󀏎Ț€Ț€ì€Æ€€€ë€ł€È€òłÎǧ€·€Æ€Ż€À€”€€"
-#: ../../standalone/drakbackup_.c:2251
-msgid "Send mail report after each backup to :"
+#: ../../standalone/drakbackup_.c:2326
+msgid "Send mail report after each backup to:"
msgstr "„Đ„Ă„Ż„ą„Ă„ŚËè€ÎÊóčđ„áĄŒ„ëÁś€êÀè: "
-#: ../../standalone/drakbackup_.c:2257
+#: ../../standalone/drakbackup_.c:2332
msgid "Delete Hard Drive tar files after backup to other media."
msgstr ""
-#: ../../standalone/drakbackup_.c:2296
+#: ../../standalone/drakbackup_.c:2371
msgid "What"
msgstr "Čż€ò"
-#: ../../standalone/drakbackup_.c:2301
+#: ../../standalone/drakbackup_.c:2376
msgid "Where"
msgstr "€œ€ł€Ë"
-#: ../../standalone/drakbackup_.c:2306
+#: ../../standalone/drakbackup_.c:2381
msgid "When"
msgstr "€€€Ä"
-#: ../../standalone/drakbackup_.c:2311
+#: ../../standalone/drakbackup_.c:2386
msgid "More Options"
msgstr "€œ€ÎŸ„Ș„Ś„·„ç„ó"
-#: ../../standalone/drakbackup_.c:2330 ../../standalone/drakbackup_.c:3873
+#: ../../standalone/drakbackup_.c:2405 ../../standalone/drakbackup_.c:4530
msgid "Drakbackup Configuration"
msgstr "Drakbackup ÀßÄê"
-#: ../../standalone/drakbackup_.c:2348
+#: ../../standalone/drakbackup_.c:2423
msgid "Please choose where you want to backup"
msgstr "„Đ„Ă„Ż„ą„Ă„ŚÀè€òÁȘ€ó€ÇČŒ€”€€"
-#: ../../standalone/drakbackup_.c:2350
+#: ../../standalone/drakbackup_.c:2425
msgid "on Hard Drive"
msgstr "„ÏĄŒ„É„É„é„€„Ö€Ű"
-#: ../../standalone/drakbackup_.c:2360
+#: ../../standalone/drakbackup_.c:2435
msgid "across Network"
msgstr "„Í„Ă„È„ïĄŒ„Ż·ĐÍł€Ç"
-#: ../../standalone/drakbackup_.c:2370
+#: ../../standalone/drakbackup_.c:2445
msgid "on CDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2378
+#: ../../standalone/drakbackup_.c:2453
msgid "on Tape Device"
msgstr ""
-#: ../../standalone/drakbackup_.c:2421
+#: ../../standalone/drakbackup_.c:2496
msgid "Please choose what you want to backup"
msgstr "„Đ„Ă„Ż„ą„Ă„Ś€·€ż€€€â€Î€òÁȘ€ó€ÇČŒ€”€€"
-#: ../../standalone/drakbackup_.c:2422
+#: ../../standalone/drakbackup_.c:2497
msgid "Backup system"
msgstr "„·„č„Æ„à€ò„Đ„Ă„Ż„ą„Ă„Ś"
-#: ../../standalone/drakbackup_.c:2423
+#: ../../standalone/drakbackup_.c:2498
msgid "Backup Users"
msgstr "„æĄŒ„¶€ò„Đ„Ă„Ż„ą„Ă„Ś"
-#: ../../standalone/drakbackup_.c:2426
+#: ../../standalone/drakbackup_.c:2501
msgid "Select user manually"
msgstr "„æĄŒ„¶€òŒêÆ°€ÇÁȘ€Ö"
-#: ../../standalone/drakbackup_.c:2508
+#: ../../standalone/drakbackup_.c:2584
msgid ""
"\n"
"Backup Sources: \n"
@@ -10511,7 +10927,7 @@ msgstr ""
"\n"
"„Đ„Ă„Ż„ą„Ă„Śž”: \n"
-#: ../../standalone/drakbackup_.c:2509
+#: ../../standalone/drakbackup_.c:2585
msgid ""
"\n"
"- System Files:\n"
@@ -10519,7 +10935,7 @@ msgstr ""
"\n"
"- „·„č„Æ„à„Ő„Ą„€„ë:\n"
-#: ../../standalone/drakbackup_.c:2511
+#: ../../standalone/drakbackup_.c:2587
msgid ""
"\n"
"- User Files:\n"
@@ -10527,7 +10943,7 @@ msgstr ""
"\n"
"- „æĄŒ„¶„Ő„Ą„€„ë:\n"
-#: ../../standalone/drakbackup_.c:2513
+#: ../../standalone/drakbackup_.c:2589
msgid ""
"\n"
"- Other Files:\n"
@@ -10535,64 +10951,64 @@ msgstr ""
"\n"
"- €œ€ÎŸ„Ő„Ą„€„ë:\n"
-#: ../../standalone/drakbackup_.c:2515
+#: ../../standalone/drakbackup_.c:2591
#, c-format
msgid ""
"\n"
-"- Save on Hard drive on path : %s\n"
+"- Save on Hard drive on path: %s\n"
msgstr ""
"\n"
-"- „ÏĄŒ„É„É„é„€„ÖŸć€ÎÊĘž„Ń„č : %s\n"
+"- „ÏĄŒ„É„É„é„€„ÖŸć€ÎÊĘž„Ń„č: %s\n"
-#: ../../standalone/drakbackup_.c:2518
+#: ../../standalone/drakbackup_.c:2594
msgid ""
"\n"
"- Delete hard drive tar files after backup.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2524
+#: ../../standalone/drakbackup_.c:2600
msgid ""
"\n"
"- Burn to CD"
msgstr ""
-#: ../../standalone/drakbackup_.c:2525
+#: ../../standalone/drakbackup_.c:2601
msgid "RW"
msgstr ""
-#: ../../standalone/drakbackup_.c:2526
+#: ../../standalone/drakbackup_.c:2602
#, fuzzy, c-format
-msgid " on device : %s"
+msgid " on device: %s"
msgstr "„Ț„Š„č„Ç„Đ„€„č: %s\n"
-#: ../../standalone/drakbackup_.c:2527
+#: ../../standalone/drakbackup_.c:2603
msgid " (multi-session)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2528
+#: ../../standalone/drakbackup_.c:2604
#, fuzzy, c-format
msgid ""
"\n"
-"- Save to Tape on device : %s"
+"- Save to Tape on device: %s"
msgstr ""
"\n"
-"- FTP €Ç€ÎÊĘžÀè„Û„č„È : %s\n"
+"- FTP €Ç€ÎÊĘžÀè„Û„č„È: %s\n"
-#: ../../standalone/drakbackup_.c:2529
+#: ../../standalone/drakbackup_.c:2605
#, c-format
msgid "\t\tErase=%s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2532
+#: ../../standalone/drakbackup_.c:2608
#, fuzzy, c-format
msgid ""
"\n"
-"- Save via %s on host : %s\n"
+"- Save via %s on host: %s\n"
msgstr ""
"\n"
-"- FTP €Ç€ÎÊĘžÀè„Û„č„È : %s\n"
+"- FTP €Ç€ÎÊĘžÀè„Û„č„È: %s\n"
-#: ../../standalone/drakbackup_.c:2533
+#: ../../standalone/drakbackup_.c:2609
#, c-format
msgid ""
"\t\t user name: %s\n"
@@ -10601,7 +11017,7 @@ msgstr ""
"\t\t „æĄŒ„¶ÌŸ: %s\n"
"\t\t „Ń„č: %s \n"
-#: ../../standalone/drakbackup_.c:2534
+#: ../../standalone/drakbackup_.c:2610
msgid ""
"\n"
"- Options:\n"
@@ -10609,62 +11025,62 @@ msgstr ""
"\n"
"- „Ș„Ś„·„ç„ó:\n"
-#: ../../standalone/drakbackup_.c:2535
+#: ../../standalone/drakbackup_.c:2611
msgid "\tDo not include System Files\n"
msgstr "\t„·„č„Æ„à„Ő„Ą„€„ë€ÏŽȚ€á€Ê€€\n"
-#: ../../standalone/drakbackup_.c:2538
+#: ../../standalone/drakbackup_.c:2614
msgid "\tBackups use tar and bzip2\n"
msgstr "\t„Đ„Ă„Ż„ą„Ă„Ś€Ç tar €È bzip2€ò»ÈÍŃ\n"
-#: ../../standalone/drakbackup_.c:2540
+#: ../../standalone/drakbackup_.c:2616
msgid "\tBackups use tar and gzip\n"
msgstr "\t„Đ„Ă„Ż„ą„Ă„Ś€Ç tar €È gzip€ò»ÈÍŃ\n"
-#: ../../standalone/drakbackup_.c:2543
+#: ../../standalone/drakbackup_.c:2619
#, c-format
msgid ""
"\n"
-"- Daemon (%s) include :\n"
+"- Daemon (%s) include:\n"
msgstr ""
"\n"
"- „ÇĄŒ„â„ó (%s) €ŹŽȚ€à€â€Î :\n"
-#: ../../standalone/drakbackup_.c:2544
+#: ../../standalone/drakbackup_.c:2620
msgid "\t-Hard drive.\n"
msgstr "\t-„ÏĄŒ„É„É„é„€„ÖĄŁ\n"
-#: ../../standalone/drakbackup_.c:2545
+#: ../../standalone/drakbackup_.c:2621
msgid "\t-CDROM.\n"
msgstr "\t-CDROM.\n"
-#: ../../standalone/drakbackup_.c:2546
+#: ../../standalone/drakbackup_.c:2622
msgid "\t-Tape \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2547
+#: ../../standalone/drakbackup_.c:2623
msgid "\t-Network by FTP.\n"
msgstr "\t-„Í„Ă„È„ïĄŒ„Ż€Ç FTP.\n"
-#: ../../standalone/drakbackup_.c:2548
+#: ../../standalone/drakbackup_.c:2624
msgid "\t-Network by SSH.\n"
msgstr "\t-„Í„Ă„È„ïĄŒ„Ż€Ç SSH.\n"
-#: ../../standalone/drakbackup_.c:2549
+#: ../../standalone/drakbackup_.c:2625
#, fuzzy
msgid "\t-Network by rsync.\n"
msgstr "\t-„Í„Ă„È„ïĄŒ„Ż€Ç FTP.\n"
-#: ../../standalone/drakbackup_.c:2550
+#: ../../standalone/drakbackup_.c:2626
#, fuzzy
msgid "\t-Network by webdav.\n"
msgstr "\t-„Í„Ă„È„ïĄŒ„Ż€Ç FTP.\n"
-#: ../../standalone/drakbackup_.c:2552
+#: ../../standalone/drakbackup_.c:2628
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr "ÀßÄê€Ź€ą€ê€Ț€»€óĄŁ„Š„Ł„¶ĄŒ„É€«Ÿć”é€ò„Ż„ê„Ă„Ż€·€Æ€Ż€À€”€€\n"
-#: ../../standalone/drakbackup_.c:2558
+#: ../../standalone/drakbackup_.c:2634
msgid ""
"List of data to restore:\n"
"\n"
@@ -10672,7 +11088,7 @@ msgstr ""
"Éüž”€č€ë„ÇĄŒ„ż€Î°ìÍś:\n"
"\n"
-#: ../../standalone/drakbackup_.c:2725
+#: ../../standalone/drakbackup_.c:2801
msgid ""
"List of data corrupted:\n"
"\n"
@@ -10680,155 +11096,273 @@ msgstr ""
"Čő€ì€Æ€€€ë„ÇĄŒ„ż°ìÍś:\n"
"\n"
-#: ../../standalone/drakbackup_.c:2727
+#: ../../standalone/drakbackup_.c:2803
msgid "Please uncheck or remove it on next time."
msgstr "ŒĄČó€Ë„Á„§„Ă„Ż€ò€Ï€ș€č€«șïœü€·€Æ€Ż€À€”€€ĄŁ"
-#: ../../standalone/drakbackup_.c:2737
+#: ../../standalone/drakbackup_.c:2813
msgid "Backup files are corrupted"
msgstr "„Đ„Ă„Ż„ą„Ă„Ś„Ő„Ą„€„뀏Čő€ì€Æ€€€Ț€č"
-#: ../../standalone/drakbackup_.c:2758
+#: ../../standalone/drakbackup_.c:2834
#, fuzzy
msgid " All of your selected data have been "
msgstr " ÁȘÂò€·€ż„ÇĄŒ„ż€Ï€č€Ù€Æ "
-#: ../../standalone/drakbackup_.c:2759
+#: ../../standalone/drakbackup_.c:2835
#, c-format
msgid " Successfuly Restored on %s "
msgstr " %s Ÿć€ËÉüž”€”€ì€Ț€·€ż "
-#: ../../standalone/drakbackup_.c:2877
+#: ../../standalone/drakbackup_.c:2953
msgid " Restore Configuration "
msgstr " ÀßÄêÉüž” "
-#: ../../standalone/drakbackup_.c:2895
+#: ../../standalone/drakbackup_.c:2971
msgid "OK to restore the other files."
msgstr "Ÿ€Î„Ő„Ą„€„ëÉüž”€Ë€ÏOK€ò"
-#: ../../standalone/drakbackup_.c:2912
+#: ../../standalone/drakbackup_.c:2988
msgid "User list to restore (only the most recent date per user is important)"
msgstr "Éüž”€č€ë„æĄŒ„¶€Î°ìÍśĄÊłÆ„æĄŒ„¶€ÎșÇż·€ÎÆüÉŐ€À€±€ŹœĆÍŚ€Ç€čĄË"
-#: ../../standalone/drakbackup_.c:2975
+#: ../../standalone/drakbackup_.c:3066
msgid "Backup the system files before:"
msgstr "„·„č„Æ„à„Ő„Ą„€„ë€Î„Đ„Ă„Ż„ą„Ă„ŚŽüžÂ:"
-#: ../../standalone/drakbackup_.c:2977
+#: ../../standalone/drakbackup_.c:3068
msgid "please choose the date to restore"
msgstr "Éüž”€č€ëÆüÉŐ€òÁȘÂò€·€Æ€Ż€À€”€€"
-#: ../../standalone/drakbackup_.c:3014
+#: ../../standalone/drakbackup_.c:3105
msgid "Use Hard Disk to backup"
msgstr "„Đ„Ă„Ż„ą„Ă„Ś€Ë„ÏĄŒ„É„Ç„Ł„č„Ż€ò»ÈÍŃ"
-#: ../../standalone/drakbackup_.c:3017
+#: ../../standalone/drakbackup_.c:3108
msgid "Please enter the directory to save:"
msgstr "ÊĘž€č€ë„Ç„Ł„ì„Ż„È„ê€òÆțÎÏ€·€Æ€Ż€À€”€€:"
-#: ../../standalone/drakbackup_.c:3060
+#: ../../standalone/drakbackup_.c:3151
msgid "FTP Connection"
msgstr "FTP ÀÜÂł"
-#: ../../standalone/drakbackup_.c:3067
+#: ../../standalone/drakbackup_.c:3158
msgid "Secure Connection"
msgstr "„»„­„ć„ąÀÜÂł"
-#: ../../standalone/drakbackup_.c:3093
+#: ../../standalone/drakbackup_.c:3184
msgid "Restore from Hard Disk."
msgstr "„ÏĄŒ„É„Ç„Ł„č„Ż€«€éÉüž”€č€ë"
-#: ../../standalone/drakbackup_.c:3095
+#: ../../standalone/drakbackup_.c:3186
msgid "Please enter the directory where backups are stored"
msgstr "„Đ„Ă„Ż„ą„Ă„Ś€ÎÊĘž„Ç„Ł„ì„Ż„È„ê€òÆțÎÏ€·€Æ€Ż€À€”€€"
-#: ../../standalone/drakbackup_.c:3157
+#: ../../standalone/drakbackup_.c:3254
msgid "Select another media to restore from"
msgstr "Éüž”ž”€Î„á„Ç„Ł„ą€òÁȘ€Ó€Ê€Ș€·€Æ€Ż€À€”€€"
-#: ../../standalone/drakbackup_.c:3159
+#: ../../standalone/drakbackup_.c:3256
msgid "Other Media"
msgstr "€œ€ÎŸ„á„Ç„Ł„ą"
-#: ../../standalone/drakbackup_.c:3164
+#: ../../standalone/drakbackup_.c:3261
msgid "Restore system"
msgstr "„·„č„Æ„àÉüž”"
-#: ../../standalone/drakbackup_.c:3165
+#: ../../standalone/drakbackup_.c:3262
msgid "Restore Users"
msgstr "„æĄŒ„¶Éüž”"
-#: ../../standalone/drakbackup_.c:3166
+#: ../../standalone/drakbackup_.c:3263
msgid "Restore Other"
msgstr "€œ€ÎŸ„Ő„Ą„€„ë€òÉüž”"
-#: ../../standalone/drakbackup_.c:3168
+#: ../../standalone/drakbackup_.c:3265
#, fuzzy
msgid "select path to restore (instead of /)"
msgstr "Éüž”„Ń„č€òÁȘ€ÖĄÊ/°Êł°)"
-#: ../../standalone/drakbackup_.c:3172
+#: ../../standalone/drakbackup_.c:3269
msgid "Do new backup before restore (only for incremental backups.)"
msgstr "Éüž”Á°€Ëż·”Ź„Đ„Ă„Ż„ą„Ă„ŚĄÊ„€„ó„Ż„ê„á„ó„ż„ë„Đ„Ă„Ż„ą„Ă„Ś€Î€ßĄË"
-#: ../../standalone/drakbackup_.c:3174
+#: ../../standalone/drakbackup_.c:3271
msgid "Remove user directories before restore."
msgstr "Éüž”Á°€Ë„æĄŒ„¶„Ç„Ł„ì„Ż„È„ê€òșïœü"
-#: ../../standalone/drakbackup_.c:3232
+#: ../../standalone/drakbackup_.c:3384
+msgid ""
+"Restore Selected\n"
+"Catalog Entry"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3394
+#, fuzzy
+msgid ""
+"Restore Selected\n"
+"Files"
+msgstr "ÁȘ€ó€À€â€Î€òșïœü"
+
+#: ../../standalone/drakbackup_.c:3411
+#, fuzzy
+msgid ""
+"Change\n"
+"Restore Path"
+msgstr "€œ€ÎŸ„Ő„Ą„€„ë€òÉüž”"
+
+#: ../../standalone/drakbackup_.c:3477
+#, fuzzy, c-format
+msgid "Backup files not found at %s."
+msgstr "„Đ„Ă„Ż„ą„Ă„Ś„Ő„Ą„€„뀏Čő€ì€Æ€€€Ț€č"
+
+#: ../../standalone/drakbackup_.c:3490
+#, c-format
+msgid ""
+"Insert the CD with volume label %s\n"
+" in the CD drive under mount point /mnt/cdrom"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3490
+#, fuzzy
+msgid "Restore From CD"
+msgstr "„ÏĄŒ„É„Ç„Ł„č„Ż€«€éÉüž”€č€ë"
+
+#: ../../standalone/drakbackup_.c:3492
+#, c-format
+msgid "Not the correct CD label. Disk is labelled %s."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3502
+#, c-format
+msgid ""
+"Insert the tape with volume label %s\n"
+" in the tape drive device %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3502
+#, fuzzy
+msgid "Restore From Tape"
+msgstr "„ŃĄŒ„Æ„Ł„·„ç„ó„ÆĄŒ„Ö„ë€òșÆÀž"
+
+#: ../../standalone/drakbackup_.c:3504
+#, c-format
+msgid "Not the correct tape label. Tape is labelled %s."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3524
+#, fuzzy
+msgid "Restore Via Network"
+msgstr "„æĄŒ„¶Éüž”"
+
+#: ../../standalone/drakbackup_.c:3524
+#, c-format
+msgid "Restore Via Network Protocol: %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3525
+#, fuzzy
+msgid "Host Name"
+msgstr "„Û„č„ÈÌŸ:"
+
+#: ../../standalone/drakbackup_.c:3526
+msgid "Host Path or Module"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3533
+#, fuzzy
+msgid "Password required"
+msgstr "„Ń„č„ïĄŒ„É"
+
+#: ../../standalone/drakbackup_.c:3539
+#, fuzzy
+msgid "Username required"
+msgstr "„æĄŒ„¶ÌŸ"
+
+#: ../../standalone/drakbackup_.c:3542
+#, fuzzy
+msgid "Hostname required"
+msgstr "„Û„č„ÈÌŸ:"
+
+#: ../../standalone/drakbackup_.c:3547
+msgid "Path or Module required"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3560
+msgid "Files Restored..."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3563
+#, fuzzy
+msgid "Restore Failed..."
+msgstr "€œ€ÎŸ„Ő„Ą„€„ë€òÉüž”"
+
+#: ../../standalone/drakbackup_.c:3801
msgid "Restore all backups"
msgstr "ÁŽ„Đ„Ă„Ż„ą„Ă„Ś€ÎÉüž”"
-#: ../../standalone/drakbackup_.c:3241
+#: ../../standalone/drakbackup_.c:3810
msgid "Custom Restore"
msgstr "„«„č„ż„àÉüž”"
-#: ../../standalone/drakbackup_.c:3287 ../../standalone/drakbackup_.c:3320
-#: ../../standalone/drakbackup_.c:3346 ../../standalone/drakbackup_.c:3373
-#: ../../standalone/drakbackup_.c:3400 ../../standalone/drakbackup_.c:3460
-#: ../../standalone/drakbackup_.c:3487 ../../standalone/drakbackup_.c:3513
+#: ../../standalone/drakbackup_.c:3856
+msgid "CD in place - continue."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3862
+msgid "Browse to new restore repository."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3865
+#, fuzzy
+msgid "Restore From Catalog"
+msgstr "„ŃĄŒ„Æ„Ł„·„ç„ó„ÆĄŒ„Ö„ë€òșÆÀž"
+
+#: ../../standalone/drakbackup_.c:3893
+#, fuzzy
+msgid "Restore Progress"
+msgstr "„æĄŒ„¶Éüž”"
+
+#: ../../standalone/drakbackup_.c:3935 ../../standalone/drakbackup_.c:3968
+#: ../../standalone/drakbackup_.c:3994 ../../standalone/drakbackup_.c:4021
+#: ../../standalone/drakbackup_.c:4048 ../../standalone/drakbackup_.c:4108
+#: ../../standalone/drakbackup_.c:4135 ../../standalone/drakbackup_.c:4165
+#: ../../standalone/drakbackup_.c:4191
msgid "Previous"
msgstr "ۉۃۑ"
-#: ../../standalone/drakbackup_.c:3291 ../../standalone/drakbackup_.c:3377
+#: ../../standalone/drakbackup_.c:3939 ../../standalone/drakbackup_.c:4025
#: ../../standalone/logdrake_.c:223
msgid "Save"
msgstr "ÊĘž"
-#: ../../standalone/drakbackup_.c:3350
+#: ../../standalone/drakbackup_.c:3998
msgid "Build Backup"
msgstr "„Đ„Ă„Ż„ą„Ă„ŚčœĂÛ"
-#: ../../standalone/drakbackup_.c:3404 ../../standalone/drakbackup_.c:3974
+#: ../../standalone/drakbackup_.c:4052 ../../standalone/drakbackup_.c:4632
msgid "Restore"
msgstr "Éüž”"
-#: ../../standalone/drakbackup_.c:3553
-msgid ""
-"Please Build backup before to restore it...\n"
-" or verify that your path to save is correct."
-msgstr ""
-"Éüž”€č€ë€Ë€Ï„Đ„Ă„Ż„ą„Ă„Ś€ò€Ț€șčœĂÛ€·€Æ€Ż€À€”€€...\n"
-"€ą€ë€€€ÏÊĘžÀè„Ń„č€ÏÀ”€·€€€Ç€č€«Ą©"
-
-#: ../../standalone/drakbackup_.c:3574
+#: ../../standalone/drakbackup_.c:4231
+#, fuzzy
msgid ""
-"Error during sendmail\n"
-" your report mail was not sent\n"
+"Error during sendmail.\n"
+" Your report mail was not sent.\n"
" Please configure sendmail"
msgstr ""
"„áĄŒ„ëÁśżź„š„éĄŒ\n"
" Êóčđ„áĄŒ„ë€ÏÁśżź€Ç€­€Ț€»€ó\n"
" sendmail€òÀßÄꀷ€Æ€Ż€À€”€€"
-#: ../../standalone/drakbackup_.c:3598
+#: ../../standalone/drakbackup_.c:4255
#, fuzzy
msgid ""
"The following packages need to be installed:\n"
" @list_of_rpm_to_install"
msgstr "°ÊČŒ€Î„Ń„Ă„±ĄŒ„ž€Ź„€„ó„č„ÈĄŒ„뀔€ì€Ț€č"
-#: ../../standalone/drakbackup_.c:3621
+#: ../../standalone/drakbackup_.c:4278
#, fuzzy
msgid ""
"Error during sending file via FTP.\n"
@@ -10837,19 +11371,19 @@ msgstr ""
"FTP€Ç€Î„Ő„Ą„€„ëĆŸÁśĂæ€Ë„š„éĄŒ.\n"
"FTP ÀßÄê€ò€Ê€Ș€·€Æ€Ż€À€”€€."
-#: ../../standalone/drakbackup_.c:3644
+#: ../../standalone/drakbackup_.c:4301
msgid "Please select data to restore..."
msgstr "Éüž”„ÇĄŒ„ż€òÁȘ€ó€Ç€Ż€À€”€€€ÍĄŁ"
-#: ../../standalone/drakbackup_.c:3665
+#: ../../standalone/drakbackup_.c:4322
msgid "Please select media for backup..."
msgstr "„Đ„Ă„Ż„ą„Ă„ŚÍŃ„á„Ç„Ł„ą€òÁȘ€ó€Ç€Ż€À€”€€€ÍĄŁ"
-#: ../../standalone/drakbackup_.c:3687
+#: ../../standalone/drakbackup_.c:4344
msgid "Please select data to backup..."
msgstr "„Đ„Ă„Ż„ą„Ă„Ś€č€ë„ÇĄŒ„ż€òÁȘ€ó€Ç€Ż€À€”€€..."
-#: ../../standalone/drakbackup_.c:3709
+#: ../../standalone/drakbackup_.c:4366
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
@@ -10857,59 +11391,59 @@ msgstr ""
"ÀßÄê„Ő„Ą„€„뀏ž«€Ä€«€ê€Ț€»€ó\n"
"„Š„Ł„¶ĄŒ„É€«Ÿć”é€ò„Ż„ê„Ă„Ż€·€Æ€Ż€À€”€€ĄŁ"
-#: ../../standalone/drakbackup_.c:3730
+#: ../../standalone/drakbackup_.c:4387
msgid "Under Devel ... please wait."
msgstr "€Ț€Àł«ÈŻĂæ...ÂÔ€Ă€Æ€Æ€Ż€À€”€€ĄŁ"
-#: ../../standalone/drakbackup_.c:3811
+#: ../../standalone/drakbackup_.c:4468
msgid "Backup system files"
msgstr "„·„č„Æ„à„Ő„Ą„€„ë€ò„Đ„Ă„Ż„ą„Ă„Ś"
-#: ../../standalone/drakbackup_.c:3813
+#: ../../standalone/drakbackup_.c:4470
msgid "Backup user files"
msgstr "„æĄŒ„¶„Ő„Ą„€„ë€ò„Đ„Ă„Ż„ą„Ă„Ś"
-#: ../../standalone/drakbackup_.c:3815
+#: ../../standalone/drakbackup_.c:4472
msgid "Backup other files"
msgstr "€œ€ÎŸ„Ő„Ą„€„ë€ò„Đ„Ă„Ż„ą„Ă„Ś"
-#: ../../standalone/drakbackup_.c:3817 ../../standalone/drakbackup_.c:3850
+#: ../../standalone/drakbackup_.c:4474 ../../standalone/drakbackup_.c:4507
msgid "Total Progress"
msgstr "ÁŽÂ΀οÊčÔŸő¶·"
-#: ../../standalone/drakbackup_.c:3841
+#: ../../standalone/drakbackup_.c:4498
msgid "files sending by FTP"
msgstr "FTP€Ç„Ő„Ą„€„ëÁśżźĂæ"
-#: ../../standalone/drakbackup_.c:3845
+#: ../../standalone/drakbackup_.c:4502
msgid "Sending files..."
msgstr "„Ő„Ą„€„ëÁśżźĂæ..."
-#: ../../standalone/drakbackup_.c:3931
+#: ../../standalone/drakbackup_.c:4588
msgid "Backup Now from configuration file"
msgstr "ÀßÄê„Ő„Ą„€„뀫€éșŁ€č€°„Đ„Ă„Ż„ą„Ă„Ś"
-#: ../../standalone/drakbackup_.c:3936
+#: ../../standalone/drakbackup_.c:4593
msgid "View Backup Configuration."
msgstr "„Đ„Ă„Ż„ą„Ă„ŚÀßÄê€òž«€ë"
-#: ../../standalone/drakbackup_.c:3956
+#: ../../standalone/drakbackup_.c:4614
msgid "Wizard Configuration"
msgstr "„Š„Ł„¶ĄŒ„ÉÀßÄê"
-#: ../../standalone/drakbackup_.c:3961
+#: ../../standalone/drakbackup_.c:4619
msgid "Advanced Configuration"
msgstr "Ÿć”éÀßÄê"
-#: ../../standalone/drakbackup_.c:3966
+#: ../../standalone/drakbackup_.c:4624
msgid "Backup Now"
msgstr "șŁ€č€°„Ń„Ă„Ż„ą„Ă„Ś"
-#: ../../standalone/drakbackup_.c:3996
+#: ../../standalone/drakbackup_.c:4658
msgid "Drakbackup"
msgstr "Drakbackup"
-#: ../../standalone/drakbackup_.c:4045
+#: ../../standalone/drakbackup_.c:4707
#, fuzzy
msgid ""
"options description:\n"
@@ -10970,7 +11504,7 @@ msgstr ""
" \n"
"\n"
-#: ../../standalone/drakbackup_.c:4075
+#: ../../standalone/drakbackup_.c:4737
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -10984,7 +11518,7 @@ msgstr ""
" /etc/postfix/main.cf€Î myhostname €« mydomain €òÀßÄꀷ€Ț€čĄŁ\n"
"\n"
-#: ../../standalone/drakbackup_.c:4083
+#: ../../standalone/drakbackup_.c:4745
msgid ""
"options description:\n"
"\n"
@@ -11060,28 +11594,29 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:4122
+#: ../../standalone/drakbackup_.c:4784
+#, fuzzy
msgid ""
"restore description:\n"
" \n"
-"Only the most recent date will be used ,because with incremental \n"
-"backups it is necesarry to restore one by one each older backups.\n"
+"Only the most recent date will be used, because with incremental \n"
+"backups it is necessary to restore one by one each older backup.\n"
"\n"
-"So if you don't like to restore a user please unselect all his\n"
-"check box.\n"
+"So if you don't want to restore a user please unselect all their\n"
+"check boxes.\n"
"\n"
-"Otherwise, you are able to select only one of this\n"
+"Otherwise, you are able to select only one of these.\n"
"\n"
" - Incremental Backups:\n"
"\n"
"\tThe incremental backup is the most powerful \n"
-"\toption to use backup, this option allow you \n"
-"\tto backup all your data the first time, and \n"
-"\tonly the changed after.\n"
-"\tSo you will be able during the restore\n"
+"\toption to use. This option allows you to \n"
+"\tbackup all of your data the first time, and \n"
+"\tonly the changed data after.\n"
+"\tSo you will be able, during the restore\n"
"\tstep, to restore your data from a specified\n"
"\tdate.\n"
-"\tIf you have not selected this options all\n"
+"\tIf you have not selected this option all\n"
"\told backups are deleted before each backup. \n"
"\n"
"\n"
@@ -11111,18 +11646,18 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:4148 ../../standalone/drakbackup_.c:4225
+#: ../../standalone/drakbackup_.c:4810 ../../standalone/drakbackup_.c:4887
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
-#: ../../standalone/drakbackup_.c:4150 ../../standalone/drakbackup_.c:4227
+#: ../../standalone/drakbackup_.c:4812 ../../standalone/drakbackup_.c:4889
msgid ""
" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
-#: ../../standalone/drakbackup_.c:4152 ../../standalone/drakbackup_.c:4229
+#: ../../standalone/drakbackup_.c:4814 ../../standalone/drakbackup_.c:4891
msgid ""
" This program is free software; you can redistribute it and/or modify\n"
" it under the terms of the GNU General Public License as published by\n"
@@ -11152,7 +11687,7 @@ msgstr ""
" Free Software Foundation, Inc., 59 Temple Place - Suite 330, \n"
" Boston, MA 02111-1307, USA."
-#: ../../standalone/drakbackup_.c:4166
+#: ../../standalone/drakbackup_.c:4828
msgid ""
"Description:\n"
"\n"
@@ -11229,7 +11764,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:4204
+#: ../../standalone/drakbackup_.c:4866
msgid ""
"options description:\n"
"\n"
@@ -11246,7 +11781,7 @@ msgstr ""
"Á°€ËĄą€Ț€ș„ÏĄŒ„É„É„é„€„ÖŸć€Ë„Đ„Ă„Ż„ą„Ă„ŚčœĂÛ€ŹÉŹÍŚ€Ë€Ê€ê€Ț€čĄŁ\n"
"\n"
-#: ../../standalone/drakbackup_.c:4213
+#: ../../standalone/drakbackup_.c:4875
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -11267,7 +11802,7 @@ msgstr ""
"€č€ë€Î€ÇĄą€€€Ț€Î„ÇĄŒ„ż€ÏÁŽÉôŸĂ€š€Ț€čĄŁ€Ç€č€«€éĄą„Đ„Ă„Ż\n"
"„ą„Ă„Ś„ÇĄŒ„ż€Î„Ő„Ą„€„ë€ÏŒê€ÇČțÊŃ€·€Ê€€€Û€Š€Źž­ÌÀ€Ç€čĄŁ\n"
-#: ../../standalone/drakbackup_.c:4243
+#: ../../standalone/drakbackup_.c:4905
msgid ""
"Description:\n"
"\n"
@@ -11382,9 +11917,9 @@ msgstr ""
msgid "Synchronization tool"
msgstr ""
-#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:85
-#: ../../standalone/drakbug_.c:150 ../../standalone/drakbug_.c:152
-#: ../../standalone/drakbug_.c:156
+#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:86
+#: ../../standalone/drakbug_.c:151 ../../standalone/drakbug_.c:153
+#: ../../standalone/drakbug_.c:157
#, fuzzy
msgid "Standalone Tools"
msgstr "„ł„ó„œĄŒ„ë„ÄĄŒ„ë"
@@ -11437,26 +11972,26 @@ msgstr "Printerdrake"
msgid "Configuration Wizards"
msgstr "„Í„Ă„È„ïĄŒ„ŻÀßÄê„Š„Ł„¶ĄŒ„É"
-#: ../../standalone/drakbug_.c:96
+#: ../../standalone/drakbug_.c:97
#, fuzzy
msgid "Application:"
msgstr "ǧŸÚ"
-#: ../../standalone/drakbug_.c:97
+#: ../../standalone/drakbug_.c:98
#, fuzzy
msgid "Package: "
msgstr "„Ń„Ă„±ĄŒ„ž€òÁȘÂò"
-#: ../../standalone/drakbug_.c:98
+#: ../../standalone/drakbug_.c:99
msgid "Kernel:"
msgstr ""
-#: ../../standalone/drakbug_.c:99
+#: ../../standalone/drakbug_.c:100
#, fuzzy
msgid "Release: "
msgstr "€ȘÂÔ€ÁČŒ€”€€"
-#: ../../standalone/drakbug_.c:114
+#: ../../standalone/drakbug_.c:115
msgid ""
"\n"
"\n"
@@ -11468,21 +12003,21 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbug_.c:135
+#: ../../standalone/drakbug_.c:136
#, fuzzy
msgid "Report"
msgstr "„ĘĄŒ„È"
-#: ../../standalone/drakbug_.c:165
+#: ../../standalone/drakbug_.c:166
#, fuzzy
msgid "Not installed"
msgstr "„ą„󄀄ó„č„ÈĄŒ„ëžć€Îșî¶È"
-#: ../../standalone/drakbug_.c:182
+#: ../../standalone/drakbug_.c:183
msgid "connecting to Bugzilla wizard ..."
msgstr ""
-#: ../../standalone/drakbug_.c:189
+#: ../../standalone/drakbug_.c:190
#, fuzzy
msgid "No browser available! Please install one"
msgstr "%s €Î„€„ó„č„ÈĄŒ„ëžć€Ë„č„Ż„êĄŒ„ó„·„ç„Ă„È€ŹČÄÇœ€Ç€č"
@@ -11931,7 +12466,7 @@ msgid "Font List"
msgstr "„Ő„©„ó„È°ìÍś"
#: ../../standalone/drakfont_.c:909
-msgid "Choose the applications that will support the fonts :"
+msgid "Choose the applications that will support the fonts:"
msgstr "€ł€Î„Ő„©„ó„È€ò„”„ĘĄŒ„È€č€ë„ą„Ś„ꄱĄŒ„·„ç„ó€òÁȘ€ó€Ç€Ż€À€”€€:"
#: ../../standalone/drakfont_.c:918
@@ -12002,19 +12537,19 @@ msgstr "„·„č„Æ„à€«€é„Ő„©„ó„È€òșïœü"
msgid "Post Uninstall"
msgstr "„ą„󄀄ó„č„ÈĄŒ„ëžć€Îșî¶È"
-#: ../../standalone/drakgw_.c:42 ../../standalone/drakgw_.c:195
+#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:188
msgid "Internet Connection Sharing"
msgstr "„€„󄿥Œ„Í„Ă„ÈÀÜÂł€Î¶ŠÍ­"
-#: ../../standalone/drakgw_.c:121
+#: ../../standalone/drakgw_.c:119
msgid "Sorry, we support only 2.4 kernels."
msgstr ""
-#: ../../standalone/drakgw_.c:133
+#: ../../standalone/drakgw_.c:130
msgid "Internet Connection Sharing currently enabled"
msgstr "„€„󄿥Œ„Í„Ă„ÈÀÜÂł¶ŠÍ­€ÏžœșßÍ­žú"
-#: ../../standalone/drakgw_.c:134
+#: ../../standalone/drakgw_.c:131
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -12026,31 +12561,31 @@ msgstr ""
"\n"
"€É€Š€·€Ț€č€«Ą©"
-#: ../../standalone/drakgw_.c:138
+#: ../../standalone/drakgw_.c:135
msgid "disable"
msgstr "Ì”žú€Ë"
-#: ../../standalone/drakgw_.c:138 ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:135 ../../standalone/drakgw_.c:160
msgid "dismiss"
msgstr "Ì”»ë"
-#: ../../standalone/drakgw_.c:138 ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:135 ../../standalone/drakgw_.c:160
msgid "reconfigure"
msgstr "șÆÀßÄê"
-#: ../../standalone/drakgw_.c:141
+#: ../../standalone/drakgw_.c:138
msgid "Disabling servers..."
msgstr "„”ĄŒ„Đ€òÌ”žú€Ë€·€Æ€€€Ț€čĄÄĄÄ"
-#: ../../standalone/drakgw_.c:149
+#: ../../standalone/drakgw_.c:146
msgid "Internet connection sharing is now disabled."
msgstr "„€„󄿥Œ„Í„Ă„ÈÀÜÂł¶ŠÍ­€ÏÌ”žú€Ë€Ê€ê€Ț€·€żĄŁ"
-#: ../../standalone/drakgw_.c:158
+#: ../../standalone/drakgw_.c:155
msgid "Internet Connection Sharing currently disabled"
msgstr "„€„󄿥Œ„Í„Ă„ÈÀÜÂł¶ŠÍ­€ÏžœșßÌ”žú€Ç€č"
-#: ../../standalone/drakgw_.c:159
+#: ../../standalone/drakgw_.c:156
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
@@ -12062,19 +12597,19 @@ msgstr ""
"\n"
"€É€Š€·€Ț€č€«Ą©"
-#: ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:160
msgid "enable"
msgstr "Í­žú€Ë"
-#: ../../standalone/drakgw_.c:170
+#: ../../standalone/drakgw_.c:167
msgid "Enabling servers..."
msgstr "„”ĄŒ„Đ€òÍ­žú€Ë€·€Æ€€€Ț€čĄÄĄÄ"
-#: ../../standalone/drakgw_.c:175
+#: ../../standalone/drakgw_.c:172
msgid "Internet connection sharing is now enabled."
msgstr "„€„󄿥Œ„Í„Ă„ÈÀÜÂł¶ŠÍ­€ŹÍ­žú€Ç€čĄŁ"
-#: ../../standalone/drakgw_.c:196
+#: ../../standalone/drakgw_.c:189
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
"With that feature, other computers on your local network will be able to use "
@@ -12089,21 +12624,21 @@ msgstr ""
"ĂíĄ§„íĄŒ„«„ë„š„ê„ą„Í„Ă„È„ïĄŒ„Ż (LAN) €ò€Ä€Ż€ë€Ë€ÏĄąÀìÍŃ€Î„Í„Ă„È„ïĄŒ„Ż„ą„À„Ś„ż"
"€ŹÍŚ€ê€Ț€čĄŁ"
-#: ../../standalone/drakgw_.c:222
+#: ../../standalone/drakgw_.c:215
#, c-format
msgid "Interface %s (using module %s)"
msgstr "„€„󄿥Œ„Ő„§ĄŒ„č %s („â„ž„ćĄŒ„ë %s €ò»ÈÍŃ)"
-#: ../../standalone/drakgw_.c:223
+#: ../../standalone/drakgw_.c:216
#, c-format
msgid "Interface %s"
msgstr "„€„󄿥Œ„Ő„§ĄŒ„č %s"
-#: ../../standalone/drakgw_.c:231
+#: ../../standalone/drakgw_.c:224
msgid "No network adapter on your system!"
msgstr "„Í„Ă„È„ïĄŒ„Ż„ą„À„Ś„ż€Ź€ą€ê€Ț€»€óĄȘ"
-#: ../../standalone/drakgw_.c:232
+#: ../../standalone/drakgw_.c:225
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
@@ -12111,11 +12646,11 @@ msgstr ""
"„·„č„Æ„àŸć€Ë„€ĄŒ„”„Í„Ă„È„ą„À„Ś„ż€Źž«€Ä€«€ê€Ț€»€óĄŁ „ÏĄŒ„É„Š„§„ąÀßÄê„ÄĄŒ„ë€òŒÂ"
"čÔ€·€Æ€Ż€À€”€€ĄŁ"
-#: ../../standalone/drakgw_.c:238
+#: ../../standalone/drakgw_.c:231
msgid "Network interface"
msgstr "„Í„Ă„È„ïĄŒ„Ż„€„󄿥Œ„Ő„§„€„č"
-#: ../../standalone/drakgw_.c:239
+#: ../../standalone/drakgw_.c:232
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -12130,7 +12665,7 @@ msgstr ""
"\n"
"€ł€Î„ą„À„Ś„ż€Ç LAN €ËÀÜÂł€·€Ț€č€ÍĄŁ"
-#: ../../standalone/drakgw_.c:248
+#: ../../standalone/drakgw_.c:241
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
@@ -12138,11 +12673,11 @@ msgstr ""
"„íĄŒ„«„ë„š„ê„ą„Í„Ă„È„ïĄŒ„Ż€Ë€Ä€Ê€Ź€ë„Í„Ă„È„ïĄŒ„Ż„ą„À„Ś„ż€ò\n"
"ÁȘ€ó€Ç€Ż€À€”€€ĄŁ"
-#: ../../standalone/drakgw_.c:266
+#: ../../standalone/drakgw_.c:259
msgid "Network interface already configured"
msgstr "„Í„Ă„È„ïĄŒ„Ż„€„󄿥Œ„Ő„§ĄŒ„č€ÏÀßÄêșр߀ǀčÀßÄꀔ€ì€Æ€Ț€»€ó"
-#: ../../standalone/drakgw_.c:267
+#: ../../standalone/drakgw_.c:260
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -12157,15 +12692,15 @@ msgstr ""
"\n"
"ŒêÆ°€Ç€ä€ë€ł€È€â€Ç€­€Ț€č€ŹĄą€œ€ì€Ê€ê€ÎĂÎŒ±€ŹÉŹÍŚ€Ç€č€èĄŁ"
-#: ../../standalone/drakgw_.c:272
+#: ../../standalone/drakgw_.c:265
msgid "Automatic reconfiguration"
msgstr "Œ«Æ°șÆÀßÄê"
-#: ../../standalone/drakgw_.c:273
+#: ../../standalone/drakgw_.c:266
msgid "Show current interface configuration"
msgstr "žœș߀΄€„󄿥Œ„Ő„§ĄŒ„čÀßÄê€òÉœŒš"
-#: ../../standalone/drakgw_.c:275
+#: ../../standalone/drakgw_.c:268
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -12182,7 +12717,7 @@ msgstr ""
"IP °À­: %s\n"
"„É„é„€„Đ: %s"
-#: ../../standalone/drakgw_.c:287
+#: ../../standalone/drakgw_.c:280
msgid ""
"I can keep your current configuration and assume you already set up a DHCP "
"server; in that case please verify I correctly read the C-Class Network that "
@@ -12200,53 +12735,41 @@ msgstr ""
"€ą€ë€€€ÏĄą€ł€Á€é€Ç„€„󄿥Œ„Ő„§ĄŒ„č€ÈDHCP„”ĄŒ„Đ€ÎÀßÄê€ò€ä€ë€ł€È€â€Ç€­€Ț€čĄŁ\n"
"\n"
-#: ../../standalone/drakgw_.c:292
+#: ../../standalone/drakgw_.c:285
msgid "C-Class Local Network"
msgstr "C„Ż„é„č„íĄŒ„«„ë„Í„Ă„È„ïĄŒ„Ż"
-#: ../../standalone/drakgw_.c:293
+#: ../../standalone/drakgw_.c:286
msgid "(This) DHCP Server IP"
msgstr "ĄÊ€ł€ÎĄËDHCP „”ĄŒ„ЀΠIP"
-#: ../../standalone/drakgw_.c:294
+#: ../../standalone/drakgw_.c:287
msgid "Re-configure interface and DHCP server"
msgstr "„€„󄿥Œ„Ő„§ĄŒ„č€ÈDHCP„”ĄŒ„Đ€ÎșÆÀßÄê"
-#: ../../standalone/drakgw_.c:301
+#: ../../standalone/drakgw_.c:294
msgid "The Local Network did not finish with `.0', bailing out."
msgstr "„íĄŒ„«„ë„Í„Ă„È„ïĄŒ„Ż€ŹĄÖ.0ĄŚ€ÇœȘ€ï€Ă€Æ€€€Ț€»€óĄŁĂæĂÇ€·€Ț€čĄŁ"
-#: ../../standalone/drakgw_.c:312
+#: ../../standalone/drakgw_.c:305
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr "žœș߀Π%s €ÎÀßÄê€Ç€ÏLAN„ą„É„ì„耏ŸŚÆÍ€č€ë€«€â€·€ì€Ț€»€óĄȘ\n"
-#: ../../standalone/drakgw_.c:320
-msgid "Firewalling configuration detected!"
-msgstr "„Ő„Ą„€„ą„Š„©ĄŒ„ë€ÎÀßÄê€òžĄœĐĄȘ"
-
-#: ../../standalone/drakgw_.c:321
-msgid ""
-"Warning! An existing firewalling configuration has been detected. You may "
-"need some manual fix after installation."
-msgstr ""
-"·ÙčđĄȘŽûž„Ő„Ą„€„ä„Š„©ĄŒ„ë€ÎÀßÄê€òžĄœĐĄŁ\n"
-"„€„ó„č„ÈĄŒ„ëžć€ËĄąŒêÆ°€Çœ€À”€ŹÍŚ€ë€«đ‷€ì€Ț€»€óĄŁ"
-
-#: ../../standalone/drakgw_.c:328
+#: ../../standalone/drakgw_.c:315
msgid "Configuring..."
msgstr "ÀßÄêĂæ..."
-#: ../../standalone/drakgw_.c:329
+#: ../../standalone/drakgw_.c:316
msgid "Configuring scripts, installing software, starting servers..."
msgstr "„č„Ż„ê„Ś„È€ÎÀßÄêĄą„œ„Ő„È„Š„§„ą€Î„€„ó„č„ÈĄŒ„륹„”ĄŒ„ЀΔŻÆ°..."
-#: ../../standalone/drakgw_.c:365
+#: ../../standalone/drakgw_.c:352
#, c-format
msgid "Problems installing package %s"
msgstr "„Ń„Ă„±ĄŒ„ž %s €Î„€„ó„č„ÈĄŒ„ë€ÇÌäÂêÈŻÀž"
-#: ../../standalone/drakgw_.c:549
+#: ../../standalone/drakgw_.c:485
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
@@ -12256,23 +12779,23 @@ msgstr ""
"€ł€ì€ÇŒ«Æ°„Í„Ă„È„ïĄŒ„ŻÀßÄêĄÊdhcp) €ò»È€Ă€ÆĄąLAN Ÿć€ÎŸ€Î„Ț„·„ó€È„€„󄿥Œ„Í„Ă"
"„ÈÀÜÂł€ò¶ŠÍ­€Ç€­€Ț€čĄŁ"
-#: ../../standalone/drakgw_.c:566
+#: ../../standalone/drakgw_.c:504
msgid "The setup has already been done, but it's currently disabled."
msgstr "ÀßÄê€Ï€č€ó€Ç€€€Ț€č€ŹĄą€€€Ț€ÏÌ”žú€Ë€Ê€Ă€Æ€€€Ț€čĄŁ"
-#: ../../standalone/drakgw_.c:567
+#: ../../standalone/drakgw_.c:505
msgid "The setup has already been done, and it's currently enabled."
msgstr "ÀßÄê€Ï€č€ó€Ç€€€ÆĄą€€€Ț€ÏÍ­žú€Ë€Ê€Ă€Æ€€€Ț€čĄŁ"
-#: ../../standalone/drakgw_.c:568
+#: ../../standalone/drakgw_.c:506
msgid "No Internet Connection Sharing has ever been configured."
msgstr "„€„󄿥Œ„Í„Ă„ÈÀÜÂł¶ŠÍ­€Ï€Ț€Ă€ż€ŻÀßÄꀔ€ì€Æ€€€Ț€»€óĄŁ"
-#: ../../standalone/drakgw_.c:573
+#: ../../standalone/drakgw_.c:511
msgid "Internet connection sharing configuration"
msgstr "„€„󄿥Œ„Í„Ă„ÈÀÜÂł€ÎÀßÄê"
-#: ../../standalone/drakgw_.c:580
+#: ../../standalone/drakgw_.c:518
#, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -12287,6 +12810,158 @@ msgstr ""
"\n"
"ÀßÄê„Š„Ł„¶ĄŒ„É€ò”ŻÆ°€č€ë€Ë€ÏĄÖÀßÄêĄŚ€ò„Ż„ê„Ă„Ż€·€Ț€·€ç€ŠĄŁ"
+#: ../../standalone/draksound_.c:46
+#, fuzzy
+msgid "No Sound Card detected!"
+msgstr "ÀÜÂł€”€ì€Æ€€€Ț€»€ó"
+
+#: ../../standalone/draksound_.c:47
+msgid ""
+"No Sound Card has been detected on your machine. Please verify that a Linux-"
+"supported Sound Card is correctly plugged in.\n"
+"\n"
+"\n"
+"You can visit our hardware database at:\n"
+"\n"
+"\n"
+"http://www.linux-mandrake.com/en/hardware.php3"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:32
+msgid "package ImageMagick is required for correct working"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:76
+#, fuzzy
+msgid "first step creation"
+msgstr "„ÖĄŒ„È„Ç„Ł„č„ŻșîÀź"
+
+#: ../../standalone/draksplash_.c:77
+#, fuzzy
+msgid "final resolution"
+msgstr "ČòÁüĆÙ"
+
+#: ../../standalone/draksplash_.c:78 ../../standalone/draksplash_.c:170
+#, fuzzy
+msgid "choose image file"
+msgstr "„Ő„Ą„€„ë€òÁȘÂò"
+
+#: ../../standalone/draksplash_.c:79
+#, fuzzy
+msgid "Theme name"
+msgstr "„·„§„ąÌŸ"
+
+#: ../../standalone/draksplash_.c:81
+msgid "make bootsplash step 2"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:82
+#, fuzzy
+msgid "go to lilosplash configuration"
+msgstr "„€„ó„č„ÈĄŒ„ëÀßÄê€òłÎÄê"
+
+#: ../../standalone/draksplash_.c:83
+#, fuzzy
+msgid "quit"
+msgstr "œȘλ"
+
+#: ../../standalone/draksplash_.c:84
+#, fuzzy
+msgid "save theme"
+msgstr "„·„č„Æ„à€ÎÆłÆț"
+
+#: ../../standalone/draksplash_.c:85
+msgid "browse"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:98 ../../standalone/draksplash_.c:159
+#, fuzzy
+msgid "Configure bootsplash picture"
+msgstr "„”ĄŒ„Ó„č€ÎÀßÄê"
+
+#: ../../standalone/draksplash_.c:99
+msgid "x coordinate of text box in number of character"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:100
+msgid "y coordinate of text box in number of character"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:101
+msgid "text width"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:102
+msgid "text box height"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:103
+msgid "the progress bar x coordinate of its upper left corner"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:104
+msgid "the progress bar y coordinate of its upper left corner"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:105
+msgid "the width of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:106
+msgid "the heigth of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:107
+msgid "the color of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:119
+#, fuzzy
+msgid "go back"
+msgstr "„ëĄŒ„Ś„Đ„Ă„Ż"
+
+#: ../../standalone/draksplash_.c:120
+#, fuzzy
+msgid "preview"
+msgstr "„Ç„Đ„€„č"
+
+#: ../../standalone/draksplash_.c:121
+#, fuzzy
+msgid "choose color"
+msgstr "„â„Ë„ż€òÁȘ€ó€ÇČŒ€”€€"
+
+#: ../../standalone/draksplash_.c:124
+msgid "Display logo on Console"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:125
+msgid "Make kernel message quiet by default"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:161 ../../standalone/draksplash_.c:330
+#, c-format
+msgid "This theme haven't yet any bootsplash in %s !"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:213
+msgid "saving Bootsplash theme..."
+msgstr ""
+
+#: ../../standalone/draksplash_.c:436
+#, fuzzy
+msgid "ProgressBar color selection"
+msgstr "„Ś„ê„󄿀ΔĄŒï€òÁȘ€Ö"
+
+#: ../../standalone/draksplash_.c:454
+#, fuzzy
+msgid "You must choose an image file first!"
+msgstr "„Ś„ê„󄿀«„Ç„Đ„€„č€òÆțÎÏĄŠÁȘÂò"
+
+#: ../../standalone/draksplash_.c:463
+#, fuzzy
+msgid "Generating preview ..."
+msgstr "„Ç„Đ„€„č€ÎžĄœĐĂæ€Ç€čĄÄĄÄ"
+
#: ../../standalone/drakxtv_.c:49
msgid ""
"XawTV isn't installed!\n"
@@ -12379,11 +13054,11 @@ msgstr ""
"„Æ„ì„ÓÊęŒ°€Èčń€òÆțÎÏ€·€Æ€Ż€À€”€€"
#: ../../standalone/drakxtv_.c:109
-msgid "TV norm :"
+msgid "TV norm:"
msgstr "„Æ„ì„ÓÊęŒ°Ą§"
#: ../../standalone/drakxtv_.c:110
-msgid "Area :"
+msgid "Area:"
msgstr "ĂÏ°èĄ§"
#: ../../standalone/drakxtv_.c:114
@@ -12459,7 +13134,7 @@ msgstr "„é„€„Ö„ą„Ă„Ś„°„ìĄŒ„É€òł«»Ï€Ç€­€Ț€»€ó!!!\n"
msgid "The change is done, but to be effective you must logout"
msgstr "ÊŃč耏Ž°Î»€·€Ț€·€ż€ŹĄąÍ­žú€Ë€č€ë€Ë€Ï€€€Ă€ż€ó„í„°„ą„Š„È€·€Æ€Ż€À€”€€ĄŁ"
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:517
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:515
msgid "logdrake"
msgstr "logdrake"
@@ -12641,8 +13316,9 @@ msgid "service setting"
msgstr "„”ĄŒ„Ó„čÀßÄê"
#: ../../standalone/logdrake_.c:431
+#, fuzzy
msgid ""
-"You will receive an alert if one of the selected service is no more running"
+"You will receive an alert if one of the selected services is no more running"
msgstr "°ÊČŒ€ÇÁȘ€ó€À„”ĄŒ„ӄ耏»ß€Ț€Ă€ż€é·ÙÊó€ŹœĐ€Ț€čĄŁ"
#: ../../standalone/logdrake_.c:443
@@ -12662,19 +13338,19 @@ msgstr "·Ùčđ€ÎÀßÄê"
msgid "Please enter your email address below "
msgstr "„Ń„č„ïĄŒ„É€òÆțÎÏ€·€Æ€Ż€À€”€€"
-#: ../../standalone/logdrake_.c:499
+#: ../../standalone/logdrake_.c:497
msgid "Save as.."
msgstr "ÌŸÁ°€ò€Ä€±€ÆÊĘž..."
-#: ../../standalone/mousedrake_.c:43
+#: ../../standalone/mousedrake_.c:45
msgid "Please, choose the type of your mouse."
msgstr "„Ț„Š„č€Î·ż€Ï€Ê€ó€Ç€č€«Ą©"
-#: ../../standalone/mousedrake_.c:57
+#: ../../standalone/mousedrake_.c:58
msgid "Emulate third button?"
msgstr "żżĂæ„Ü„ż„ó€ò„š„ß„ć„ìĄŒ„È€·€Ț€č€«Ą©"
-#: ../../standalone/printerdrake_.c:48
+#: ../../standalone/printerdrake_.c:57
#, fuzzy
msgid "Reading printer data ..."
msgstr "„Ś„ê„ó„ż€ÎŸđÊó€òÆÉ€ó€Ç€€€Ț€č..."
@@ -12687,33 +13363,44 @@ msgstr "„Ç„Đ„€„č€ÎžĄœĐĂæ€Ç€čĄÄĄÄ"
msgid "Test ports"
msgstr "„ĘĄŒ„Ȁ΄Ƅč„È"
-#: ../../standalone/scannerdrake_.c:52
+#: ../../standalone/scannerdrake_.c:53 ../../standalone/scannerdrake_.c:68
+#: ../../standalone/scannerdrake_.c:81
#, c-format
-msgid "%s found on %s, configure it ?"
+msgid "The %s is not supported by this version of Mandrake Linux."
+msgstr ""
+
+#: ../../standalone/scannerdrake_.c:56
+#, fuzzy, c-format
+msgid "%s found on %s, configure it?"
msgstr "%s €Ź %s €Çž«€Ä€«€ê€Ț€·€żĄŁÀßÄꀷ€Ț€č€«?"
#: ../../standalone/scannerdrake_.c:59
+#, c-format
+msgid "%s is not in the scanner database, configure it manually?"
+msgstr ""
+
+#: ../../standalone/scannerdrake_.c:65
msgid "Select a scanner"
msgstr "„č„­„ă„Ê€òÁȘÂò€·€ÆČŒ€”€€"
-#: ../../standalone/scannerdrake_.c:79
+#: ../../standalone/scannerdrake_.c:93
#, c-format
msgid "This %s scanner is unsupported"
msgstr "€ł€Î %s „č„­„ă„ʀτ”„ĘĄŒ„È€”€ì€Æ€€€Ț€»€ó"
-#: ../../standalone/scannerdrake_.c:93
+#: ../../standalone/scannerdrake_.c:107
#, c-format
msgid ""
"Scannerdrake was not able to detect your %s scanner.\n"
"Please select the device where your scanner is plugged"
msgstr ""
-#: ../../standalone/scannerdrake_.c:95
+#: ../../standalone/scannerdrake_.c:109
#, fuzzy
msgid "choose device"
msgstr "„ÖĄŒ„È„Ç„Đ„€„č"
-#: ../../standalone/scannerdrake_.c:101
+#: ../../standalone/scannerdrake_.c:115
#, fuzzy, c-format
msgid ""
"This %s scanner must be configured by printerdrake.\n"
@@ -12723,7 +13410,7 @@ msgstr ""
"printerdrake €Î”ŻÆ°€ÏĄąMandrake „ł„ó„È„íĄŒ„ë„»„󄿥Œ€Î„ÏĄŒ„É„Š„§„ą€Îčà€ÇčÔ€Ă"
"€Æ€Ż€À€”€€ĄŁ"
-#: ../../standalone/scannerdrake_.c:106
+#: ../../standalone/scannerdrake_.c:120
#, c-format
msgid ""
"Your %s scanner has been configured.\n"
@@ -12731,48 +13418,18 @@ msgid ""
"applications menu."
msgstr ""
-#: ../../standalone/service_harddrake_.c:57
+#: ../../standalone/service_harddrake_.c:39
#, c-format
msgid "Some devices in the \"%s\" hardware class were removed:\n"
msgstr ""
-#: ../../standalone/service_harddrake_.c:61
+#: ../../standalone/service_harddrake_.c:43
#, c-format
msgid ""
"\n"
"Some devices in the %s class were added:\n"
msgstr ""
-#: ../../standalone/tinyfirewall_.c:30
-msgid "Firewalling Configuration"
-msgstr "„Ő„Ą„€„ą„Š„©ĄŒ„ë€ÎÀßÄê"
-
-#: ../../standalone/tinyfirewall_.c:43
-msgid "Firewalling configuration"
-msgstr "„Ő„Ą„€„ą„Š„©ĄŒ„ë€ÎÀßÄê"
-
-#: ../../standalone/tinyfirewall_.c:78
-msgid ""
-"Firewalling\n"
-"\n"
-"You already have set up a firewall.\n"
-"Click on Configure to change or remove the firewall"
-msgstr ""
-"„Ő„Ą„€„ąĄŒ„Š„©ĄŒ„ë\n"
-"\n"
-"€č€Ç€Ë„Ő„Ą„€„ąĄŒ„Š„©ĄŒ„ë€ÏÀßÄêșр߀ǀ襣\n"
-"€œ€ì€òÊŃč襊șïœü€č€ë€Ë€ÏĄÖÀßÄêĄŚ€ò„Ż„ê„Ă„Ż€·€Æ€Ż€À€”€€"
-
-#: ../../standalone/tinyfirewall_.c:82
-msgid ""
-"Firewalling\n"
-"\n"
-"Click on Configure to set up a standard firewall"
-msgstr ""
-"„Ő„Ą„€„ąĄŒ„Š„©ĄŒ„ë\n"
-"\n"
-"ĄÖÀßÄêĄŚ€ò„Ż„ê„Ă„Ż€·€ÆÉžœà„Ő„Ą„€„ąĄŒ„Š„©ĄŒ„ë€òÀßÄꀷ€Ț€č"
-
#: ../../steps.pm_.c:14
msgid "Choose your language"
msgstr "žÀžì€ÎÁȘÂò"
@@ -12845,221 +13502,7 @@ msgstr "„·„č„Æ„àččż·€ò„€„ó„č„ÈĄŒ„ë"
msgid "Exit install"
msgstr "ÆłÆțșî¶È€òœȘλ"
-#: ../../tinyfirewall.pm_.c:9
-msgid ""
-"tinyfirewall configurator\n"
-"\n"
-"This configures a personal firewall for this Mandrake Linux machine.\n"
-"For a powerful dedicated firewall solution, please look to the\n"
-"specialized MandrakeSecurity Firewall distribution."
-msgstr ""
-"„ß„Ë„Ő„Ą„€„ąĄŒ„Š„©ĄŒ„ëÀßÄê\n"
-"\n"
-"€ł€Î Mandrake Linux „Ț„·„óÍрΞĿÍÍŃ„Ő„Ą„€„ąĄŒ„Š„©ĄŒ„ëÀßÄê€ò€·€Ț€čĄŁ\n"
-"¶ŻÎÏ€ÊÀìÍŃ„Ő„Ą„€„ąĄŒ„Š„©ĄŒ„ëžț€±€Ë€ÏĄąÀìÍрΠMandrakeSecurity\n"
-"„Ő„Ą„€„ąĄŒ„Š„©ĄŒ„ë„Ń„Ă„±ĄŒ„ž€òžĄÆ€€·€Æ€Ż€À€”€€ĄŁ"
-
-#: ../../tinyfirewall.pm_.c:14
-msgid ""
-"We'll now ask you questions about which services you'd like to allow\n"
-"the Internet to connect to. Please think carefully about these\n"
-"questions, as your computer's security is important.\n"
-"\n"
-"Please, if you're not currently using one of these services, firewall\n"
-"it off. You can change this configuration anytime you like by\n"
-"re-running this application!"
-msgstr ""
-"€”€ÆĄą„€„󄿥Œ„Í„Ă„ÈÀÜÂł€·€ż€€„”ĄŒ„Ó„č€Ë€Ä€€€Æ€€€í€€€í€ȘżÒ€Í€·€Ț€čĄŁ\n"
-"Ćú€š€ë€È€­€Ë€Ï€è€ŻčÍ€š€Æ€Ż€À€”€€ĄŁ€ą€Ê€ż€Î„ł„ó„Ô„ćĄŒ„ż€Î„»„­„ć„ê„Æ„Ł\n"
-"€ËŽŰ€ï€ëÌäÂê€Ç€č€«€éĄŁ\n"
-"\n"
-"€ł€Š€·€ż„”ĄŒ„Ó„č€ÇĄą€€€ȚŒ«ÊŹ€Ç»È€Ă€Æ€€€Ê€€€â€Î€Ï„Ő„Ą„€„ąĄŒ„Š„©ĄŒ„ë\n"
-"€Ç±Ł€·€Æ€·€Ț€€€Ț€·€ç€ŠĄŁ€ł€Î„ą„Ś„ꄱĄŒ„·„ç„ó€òŒÂčÔ€č€ì€ĐĄąÀßÄê€Ï\n"
-"€€€Ä€Ç€âÊŃčč€Ç€­€Ț€čĄŁ"
-
-#: ../../tinyfirewall.pm_.c:21
-msgid ""
-"Are you running a web server on this machine that you need the whole\n"
-"Internet to see? If you are running a webserver that only needs to be\n"
-"accessed by this machine, you can safely answer NO here.\n"
-"\n"
-msgstr ""
-"€ł€Î„Ț„·„ó€ÇĄąÁŽ„€„󄿥Œ„Í„Ă„È€«€éž«€š€ë„Š„§„Ö„”ĄŒ„Đ€òŒÂčÔ€·€Ț€č€«Ą©\n"
-"Œ«ÊŹ€Î„Ț„·„ó€À€±€Ç»È€Š„Š„§„Ö„”ĄŒ„Đ€·€«€Ê€€€Ê€éĄą€ł€ł€ÇĄÖ€€€€€šĄŚ€È\n"
-"Ćú€š€Ț€·€ç€ŠĄŁ\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:26
-msgid ""
-"Are you running a name server on this machine? If you didn't set one\n"
-"up to give away IP and zone information to the whole Internet, please\n"
-"answer no.\n"
-"\n"
-msgstr ""
-"€ł€Î„Ț„·„ó€Ç„ÍĄŒ„à„”ĄŒ„ĐĄÊDNS) €òŒÂčÔ€·€Ț€č€«Ą©ĄĄÁŽ„€„󄿥Œ„Í„Ă„È€Ë\n"
-"IP €ä„ŸĄŒ„óŸđÊó€òžűł«€č€ë€è€ŠÀßÄꀷ€Æ€€€Ê€±€ì€ĐĄąĄÖ€€€€€šĄŚ€ÈĆú€š€Æ\n"
-"€Ż€À€”€€ĄŁ\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:31
-msgid ""
-"Do you want to allow incoming Secure Shell (ssh) connections? This\n"
-"is a telnet-replacement that you might use to login. If you're using\n"
-"telnet now, you should definitely switch to ssh. telnet is not\n"
-"encrypted -- so some attackers can steal your password if you use\n"
-"it. ssh is encrypted and doesn't allow for this eavesdropping."
-msgstr ""
-"ł°€«€é€Î Secure Shell (ssh) ÀÜÂł€ò”öČÄ€·€Ț€č€«Ą©ĄĄssh€Ï\n"
-"telnet€ËÂć€ï€ë€â€Î€ÇĄą„í„°„€„ó€Ë»È€š€Ț€čĄŁ€€€Ț telnet €ò»È€Ă€Æ€€€ż€é\n"
-"ÀäÂĐ€Ë ssh €ËÀÚ€êÂŰ€š€Ț€·€ç€ŠĄŁtelnet €Ï°ĆčæČœ€”€ì€Æ€€€Ț€»€óĄŁ€À€«€é\n"
-"„Ń„č„ïĄŒ„É€òĆđ€Ț€ì€ëŽíž±€Ź€ą€ê€Ț€čĄŁssh€Ï°ĆčæČœ€”€ì€Æ€€€ë€Î€ÇĄą€ł€Š\n"
-"€€€Ă€żĆđ€ßÄ°€­€Ź€Ç€­€Ț€»€ó"
-
-#: ../../tinyfirewall.pm_.c:36
-msgid ""
-"Do you want to allow incoming telnet connections?\n"
-"This is horribly unsafe, as we explained in the previous screen. We\n"
-"strongly recommend answering No here and using ssh in place of\n"
-"telnet.\n"
-msgstr ""
-"ł°€«€é€Î telnet ÀÜÂł€ò”öČÄ€·€Ț€č€«Ą©\n"
-"€”€Ă€­ÀâÌÀ€·€ż€È€Ș€êĄą€ł€ì€Ï€È€ó€Ç€â€Ê€ŻŽíž±€Ê€ł€È€Ç€čĄŁ€ł€ł€Ç€Ï\n"
-"ÀäÂЀ˥ր€€€€šĄŚ€ÈĆú€š€ÆĄąssh €ò»È€Š€è€Š€Ë€ȘŽ«€á€·€Ț€čĄŁ\n"
-
-#: ../../tinyfirewall.pm_.c:41
-msgid ""
-"Are you running an FTP server here that you need accessible to the\n"
-"Internet? If you are, we strongly recommend that you only use it for\n"
-"Anonymous transfers. Any passwords sent by FTP can be stolen by some\n"
-"attackers, since FTP also uses no encryption for transferring passwords.\n"
-msgstr ""
-"„€„󄿥Œ„Í„Ă„È€Ç„ą„Ż„»„č€Ç€­€ë FTP „”ĄŒ„Đ€òŒÂčÔ€·€Ț€č€«Ą©\n"
-"€â€·€œ€Š€Ê€éĄą€Ê€ë€Ù€Ż Anonymous ĆŸÁś€Ë€À€±»È€Š€è€Š€ȘŽ«€á€·€Ț€čĄŁ\n"
-"FTP €ÇÁśżź€č€ë„Ń„č„ïĄŒ„É€ÏĄą€č€Ù€ÆĆđÄ°€Ç€­€Ț€čĄŁFTP €Ï„Ń„č„ïĄŒ„ÉÁśżź€Ë\n"
-"°Ćčæ€ò»È€ï€Ê€€€«€é€Ç€čĄŁ\n"
-
-#: ../../tinyfirewall.pm_.c:46
-msgid ""
-"Are you running a mail server here? If you're sending you \n"
-"messages through pine, mutt or any other text-based mail client,\n"
-"you probably are. Otherwise, you should firewall this off.\n"
-"\n"
-msgstr ""
-"„áĄŒ„ë„”ĄŒ„Đ€òŒÂčÔ€·€Ț€č€«Ą©ĄĄ„áĄŒ„ë€ÎÁśżź€Ë pineĄąmutt€Ê€É€Î\n"
-"„Æ„­„č„È„ÙĄŒ„č€Î„áĄŒ„ë„Ż„é„€„ą„ó„È€ò»È€ŠżÍ€ÏĄą€ż€Ö€ó„áĄŒ„ë„”ĄŒ„Đ\n"
-"€ŹÉŹÍŚ€Ç€čĄŁ€”€â€Ê€±€ì€ĐĄą„Ő„Ą„€„ąĄŒ„Š„©ĄŒ„ë€Ç±Ł€·€Ț€·€ç€ŠĄŁ\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:51
-msgid ""
-"Are you running a POP or IMAP server here? This would\n"
-"be used to host non-web-based mail accounts for people via \n"
-"this machine.\n"
-"\n"
-msgstr ""
-"POP „”ĄŒ„Đ€« IMAP „”ĄŒ„Đ€Ï»È€€€Ț€č€«Ą©\n"
-"€ł€Î„Ț„·„ó·ĐÍł€ÇĄąweb„áĄŒ„ë°Êł°€Î„áĄŒ„ë„ą„«„Š„ó„È€òÀßÄê€č€ë\n"
-"€Ê€éÉŹÍŚ€Ç€čĄŁ\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:56
-msgid ""
-"You appear to be running a 2.2 kernel. If your network IP\n"
-"is automatically set by a computer in your home or office \n"
-"(dynamically assigned), we need to allow for this. Is\n"
-"this the case?\n"
-msgstr ""
-"2.2 „«ĄŒ„Í„ë€ò»È€Ă€Æ€€€Ț€č€ÍĄŁ€â€·„Í„Ă„È„ïĄŒ„Ż IP €Ź\n"
-"ČÈÄí€ä„Ș„Ő„Ł„č€ÇŒ«Æ°łä€êĆö€Æ€Ë€Ê€Ă€Æ€€€ë€Ê€éĄą€œ€ì€Ë\n"
-"±ț€ž€żÀßÄê€ò€·€Ț€čĄŁŒ«Æ°łä€êĆö€Æ€Ë€Ê€Ă€Æ€€€Ț€č€«Ą©\n"
-
-#: ../../tinyfirewall.pm_.c:61
-msgid ""
-"Is your computer getting time syncronized to another computer?\n"
-"Mostly, this is used by medium-large Unix/Linux organizations\n"
-"to synchronize time for logging and such. If you're not part\n"
-"of a larger office and haven't heard of this, you probably \n"
-"aren't."
-msgstr ""
-"€ą€Ê€ż€Î„ł„ó„Ô„ćĄŒ„ż€ÏĄą€Û€«€Î„ł„ó„Ô„ćĄŒ„ż€È»ț·Ś€ą€ï€»€ò€·€Æ\n"
-"€€€Ț€č€«Ą©ĄĄ€ł€ì€Ï€Ő€Ä€ŠĄąĂæ”ŹÌÏ€«€éÂ甏ÌπΠLinux/Unix ÁÈż„\n"
-"€ÇĄą„í„°„€„ó€Ê€É€ÎƱŽü€ò€È€ë€Î€Ë»È€ï€ì€Ț€čĄŁ€œ€Š€€€ŠÂ瀭€Ê\n"
-"ÁÈż„€Î°ìÉô€Ç€Ï€Ê€ŻĄą»ț·Ś€ą€ï€»€Ê€ó€«Ä°€€€ż€ł€È€Ź€Ê€±€ì€ĐĄą\n"
-"€ż€Ö€óÉÔÍŚ€Ç€č"
-
-#: ../../tinyfirewall.pm_.c:66
-msgid ""
-"Configuration complete. May we write these changes to disk?\n"
-"\n"
-"\n"
-"\n"
-msgstr ""
-"ÀßÄꎰλĄŁÊŃčč€ò„Ç„Ł„č„Ż€Ëœń€­čț€ß€Ț€č€«Ą©\n"
-"\n"
-"\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:82
-#, c-format
-msgid "Can't open %s: %s\n"
-msgstr "%s €Źł«€±€Ț€»€ó: %s\n"
-
-#: ../../tinyfirewall.pm_.c:84
-#, c-format
-msgid "Can't open %s for writing: %s\n"
-msgstr "œń€­čț€ßÍŃ€Ë %s €Źł«€±€Ț€»€ó: %s\n"
-
-#: ../../tinyfirewall.pm_.c:178
-msgid "No I don't need DHCP"
-msgstr "DHCP €Ï»È€ï€Ê€€"
-
-#: ../../tinyfirewall.pm_.c:178
-msgid "Yes I need DHCP"
-msgstr "DHCP €ò»È€Š"
-
-#: ../../tinyfirewall.pm_.c:179
-msgid "No I don't need NTP"
-msgstr "NTP €Ï€€€é€Ê€€"
-
-#: ../../tinyfirewall.pm_.c:179
-msgid "Yes I need NTP"
-msgstr "NTP€ò»È€Š"
-
-#: ../../tinyfirewall.pm_.c:180 ../../tinyfirewall.pm_.c:184
-msgid "Don't Save"
-msgstr "ÊĘž€·€Ê€€"
-
-#: ../../tinyfirewall.pm_.c:180 ../../tinyfirewall.pm_.c:184
-#: ../../tinyfirewall.pm_.c:204
-msgid "Save & Quit"
-msgstr "ÊĘž€·€ÆœȘλ"
-
-#: ../../tinyfirewall.pm_.c:195 ../../tinyfirewall.pm_.c:199
-msgid "Firewall Configuration Wizard"
-msgstr "„Ő„Ą„€„ąĄŒ„Š„©ĄŒ„ëÀßÄê„Š„Ł„¶ĄŒ„É"
-
-#: ../../tinyfirewall.pm_.c:197
-msgid "No (firewall this off from the internet)"
-msgstr "€€€€€šĄÊ€ł€ì€ò„€„󄿥Œ„Í„Ă„È€«€éËÉžæĄË"
-
-#: ../../tinyfirewall.pm_.c:198
-msgid "Yes (allow this through the firewall)"
-msgstr "€Ï€€ĄÊ„Ő„Ą„€„ąĄŒ„Š„©ĄŒ„ë€òÄÌ€čĄË"
-
-#: ../../tinyfirewall.pm_.c:230
-msgid "Please Wait... Verifying installed packages"
-msgstr "ŸŻĄč€ȘÂÔ€Á€ò...„€„ó„č„ÈĄŒ„ëșр߄ЄÄ±ĄŒ„ž€òłÎǧĂæ"
-
-#: ../../tinyfirewall.pm_.c:236
-#, c-format
-msgid ""
-"Failure installing the needed packages : %s and Bastille.\n"
-" Try to install them manually."
-msgstr ""
-"ÉŹÍŚ„Ń„Ă„±ĄŒ„ž€Î„€„ó„č„ÈĄŒ„ë€ËŒșÇÔ€·€Ț€·€ż : %s €È Bastille.\n"
-"ŒêÆ°€Ç„€„ó„č„ÈĄŒ„뀷€Æ€ß€Æ€Ż€À€”€€ĄŁ"
-
-#: ../../ugtk.pm_.c:619
+#: ../../ugtk.pm_.c:594
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr ""
"adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-1,-*-fixed-medium-r-"
@@ -13192,6 +13635,10 @@ msgid "Graphical Environment"
msgstr "„°„é„Ő„Ł„Ă„ŻŽÄ¶­"
#: ../../share/compssUsers:999
+msgid "Development"
+msgstr "ł«ÈŻÍŃ"
+
+#: ../../share/compssUsers:999
msgid "Apache, Pro-ftpd"
msgstr "Apache €È Pro-ftpd"
@@ -13300,42 +13747,314 @@ msgstr "„Ț„ë„Á„á„Ç„Ł„ąĄĄCD €òŸÆ€Ż"
msgid "Scientific Workstation"
msgstr "ČÊłŰ„ïĄŒ„Ż„č„ÆĄŒ„·„ç„ó"
-#~ msgid "$mode: $warning"
-#~ msgstr "$mode: $warning"
+#~ msgid ""
+#~ "The first time you try the X configuration, you may not be very "
+#~ "satisfied\n"
+#~ "with its display (screen is too small, shifted left or right...). Hence,\n"
+#~ "even if X starts up correctly, DrakX then asks you if the configuration\n"
+#~ "suits you. It will also propose to change it by displaying a list of "
+#~ "valid\n"
+#~ "modes it could find, asking you to select one.\n"
+#~ "\n"
+#~ "As a last resort, if you still cannot get X to work, choose \"Change\n"
+#~ "graphics card\", select \"Unlisted card\", and when prompted on which\n"
+#~ "server, choose \"FBDev\". This is a failsafe option which works with any\n"
+#~ "modern graphics card. Then choose \"Test again\" to be sure."
+#~ msgstr ""
+#~ "°ìÈŻÌÜ€À€ÈĄą€ą€Ț€êČèÌ̀ζńč瀏€è€Ż€Ê€€€«€â€·€ì€Ț€»€óĄŁ\n"
+#~ "ČèÌÌ€ŹŸź€”€č€ź€ë€È€«Ąąșž±Š€Ë€ș€ì€Æ€€€ë€È€«ĄËĄŁ€À€«€é X €ŹÀ”€·€Ż\n"
+#~ "”ŻÆ°€·€żŸìčç€Ë€Ç€âĄąDrakX €ÏÀßÄê€ŹĆŹÀÚ€«€É€Š€«€­€€€ÆĄąČÄÇœ€ÊłÆŒï€Î\n"
+#~ "„âĄŒ„É€òÉœŒš€·€ÆĄąč„€­€Ê€Î€òÁȘ€Ù€ÈžÀ€Š€ï€±€Ç€čĄŁ\n"
+#~ "\n"
+#~ "șÇžć€ÎŒêĂʀȀ·€ÆĄąÁêÊŃ€ï€é€șX€ŹÆ°€«€Ê€±€ì€ĐĄÖ„°„é„Ő„Ł„Ă„Ż„č„«ĄŒ„É€ÎÊŃ"
+#~ "č襌\n"
+#~ "€òÁȘ€ÓĄÖ°ìÍś€Ë€Ê€€„«ĄŒ„ÉĄŚ€òÁȘÂòĄą€É€Î„”ĄŒ„Đ€ò»È€Š€«€­€«€ì€ż€é FBDev€ò\n"
+#~ "ÁȘ€Ó€Ț€čĄŁ€ł€ì€Ï„Ő„§ĄŒ„ë„»ĄŒ„Ő€ÊÁȘÂò»è€ÇĄąșǶá€Î€č€Ù€Æ€Î„°„é„Ő„Ł„Ă„Ż„č\n"
+#~ "„«ĄŒ„ɀǻȀš€Ț€čĄŁ€œ€ì€«€éĄÖșÆ„Æ„č„ÈĄŚ€òÁȘ€ó€ÇłÎǧ€·€Ț€·€ç€ŠĄŁ"
+
+#~ msgid "Internet and Messaging"
+#~ msgstr "„€„󄿥Œ„Í„Ă„È€È„á„Ă„»ĄŒ„ž"
+
+#~ msgid "Multimedia and Graphics"
+#~ msgstr "„Ț„ë„Á„á„Ç„Ł„ą€ÈČèÁü"
-#, fuzzy
#~ msgid ""
-#~ "This level is to be used with care. It makes your system more easy to "
-#~ "use,\n"
-#~ " but very sensitive: it must not be used for a machine "
-#~ "connected to others\n"
-#~ " or to the Internet. There is no password access."
+#~ "Mandrake Linux 8.2 provides 11 different graphical desktop environments "
+#~ "and window managers to choose from including GNOME 1.4, KDE 2.2.2, Window "
+#~ "Maker 0.8, and the rest"
#~ msgstr ""
-#~ "€ł€Î„ì„Ù„ë€ò»È€Š€Ê€éĂí°Ő€ŹÉŹÍŚ€Ç€čĄŁ„·„č„Æ„à€ò»È€Š€Î€ÏŽÊñ€Ë€Ê€ê€Ț€č€ŹĄą\n"
-#~ "€À€ì€Ë€Ç€â„ą„Ż„»„č€Ç€­€Æ€·€Ț€€€Ț€čĄŁÂŸ€Î„Ț„·„ó€ä„€„󄿥Œ„Í„Ă„È\n"
-#~ "€Ë€Ä€Ê€Ź€Ă€ż„Ț„·„ó€Ç€Ï»È€ï€Ê€€€Ç€Ż€À€”€€ĄŁ„Ń„č„ïĄŒ„ÉÀ©žÂ€â€ą€ê€Ț€»€óĄŁ"
+#~ "Mandrake Linux 8.2 €Ë€Ï11ŒïÎà€Î„°„é„Ő„Ł„Ă„Ż„Ç„č„Ż„È„Ă„ŚŽÄ¶­€È„Š„Ł„ó„É„Š„Ț"
+#~ "„ÍĄŒ„ž„』Æț€Ă€Æ€€€Ț€čĄŁGNOME 1.4, KDE 2.2.2, Window Maker 0.8 €Ê€É€Ç€čĄŁ"
+
+#~ msgid "Server Software"
+#~ msgstr "„”ĄŒ„Đ„œ„Ő„È"
+
+#~ msgid "MandrakeCampus"
+#~ msgstr "MandrakeCampus"
-#, fuzzy
#~ msgid ""
-#~ "With this security level, the use of this system as a server becomes "
-#~ "possible.\n"
-#~ " The security is now high enough to use the system as a "
-#~ "server which can accept\n"
-#~ " connections from many clients. Note: if your machine is "
-#~ "only a client on the Internet, you should choose a lower level."
+#~ "Would you like to learn Linux simply, quickly, and for free? MandrakeSoft "
+#~ "provides free Linux training, as well as a way to test your progress, at "
+#~ "MandrakeCampus -- our online training center"
#~ msgstr ""
-#~ "€ł€Î„»„­„ć„ê„Æ„Ł„ì„Ù„ë€À€ÈĄą„·„č„Æ„à€ò„”ĄŒ„Đ€È€·€Æ»È€š€ë€è€Š€Ë€Ê€ê€Ț€čĄŁ\n"
-#~ "Âżżô€Î„Ż„é„€„ą„ó„È€«€éÀÜÂł€òŒő€±€ë„”ĄŒ„Đ€È€·€Æ€â»È€š€ë€À€±€Î„»„­„ć„ê„Æ„Ł\n"
-#~ "żćœà€Ë€Ê€Ă€Æ€€€Ț€čĄŁĂ𥧀ą€Ê€ż€Î„Ț„·„󀏄€„󄿥Œ„Í„Ă„ÈŸć€Î„Ż„é„€„ą„ó„ÈÀìÍŃ"
-#~ "€Ê€éĄą€â€Ă€ÈÄ „ì„Ù„ë€òÁȘ€ó€À€Û€Š€Ź€€€€€Ç€č€èĄŁ"
+#~ "Linux €òŒê·Ú€Ë€č€Đ€ä€ŻĄąÌ”ÎÁ€ÇÊÙ¶Ż€·€ż€€€Ç€č€«Ą© MandrakeSoft €ÏÌ”ÎÁ€Î"
+#~ "Linux „È„ìĄŒ„˄󄰀䥹€č€č€ß¶ńčç€ò„Á„§„Ă„Ż€č€ëÊęËĄ€òÄ󶥀·€Æ€€€Ț€čĄŁ€œ€ì€Ź"
+#~ "MandrakeCampus -- ÊÀŒÒ€Î„Ș„ó„é„€„󞊜€„»„󄿥Œ€Ç€čĄŁ"
-#, fuzzy
-#~ msgid "Basic Options"
-#~ msgstr "„Ș„Ś„·„ç„ó"
+#~ msgid ""
+#~ "Quality support from the Linux Community, and from MandrakeSoft, is just "
+#~ "around the corner. And if you're already a Linux veteran, become an "
+#~ "\"Expert\" and share your knowledge at our support website"
+#~ msgstr ""
+#~ "Linux „ł„ß„ć„Ë„Æ„Ł€È MandrakeSoft €«€é€ÎčâŒÁ€Ê„”„ĘĄŒ„È€Ź€č€°€ËÆÀ€é€ì€Ț€čĄŁ"
+#~ "€œ€·€Æ€ą€Ê€ż€Ź¶Ú¶âÆț€ê€Î Linux żÍ€Ê€éĄąĄÖ„š„­„č„ŃĄŒ„ÈĄŚ€Ë€Ê€Ă€Æ„”„ĘĄŒ„ÈÍŃ"
+#~ "„Š„§„Ö„”„€„È€ÇĂÎŒ±€ò¶ŠÍ­€·€Æ€Ż€À€”€€ĄŁ"
-#, fuzzy
-#~ msgid "Security Checks"
-#~ msgstr "„»„­„ć„ê„Æ„Ł"
+#~ msgid "MandrakeConsulting"
+#~ msgstr "Mandrake „ł„ó„”„ë„Æ„Ł„ó„°"
+
+#~ msgid ""
+#~ "For all of your IT projects, our consultants are ready to analyze your "
+#~ "requirements and offer a customized solution. Benefit from MandrakeSoft's "
+#~ "vast experience as a Linux producer to provide a true IT alternative for "
+#~ "your business organization"
+#~ msgstr ""
+#~ "€ą€é€æ€ë IT „Ś„í„ž„§„Ż„ȀˀĀ€€ÆĄąÊÀŒÒ€Î„ł„ó„”„ë„ż„ó„È€ż€Á€ŹÍŚ·ï€òÊŹÀÏ€·Ąą"
+#~ "„«„č„ż„àČœ€·€ż„œ„ê„ćĄŒ„·„ç„ó€òÄó°Æ€€€ż€·€Ț€čĄŁLinux „Ù„ó„ÀĄŒ€È€·€Æ€Î "
+#~ "MandrakeSoft €ÎÇüÂç€Ê·Đžł€òÀž€«€·€ÆĄą€ą€Ê€ż€Î„Ó„ž„Í„čÁÈż„žț€±€Ëżż€Î ITÂćÂŰ"
+#~ "°Æ€òÄ󶥀€€ż€·€Ț€čĄŁ"
+
+#~ msgid "MandrakeStore"
+#~ msgstr "MandrakeStore"
+
+#~ msgid ""
+#~ "For more information on MandrakeSoft's Professional Services and "
+#~ "commercial offerings, please see the following web page:"
+#~ msgstr ""
+#~ "MandrakeSoft €ÎÀìÌç„”ĄŒ„Ó„č€äÈÎÇ䟊ÉʀˀĀ€€ÆŸÜ€·€Ż€Ï°ÊČŒ€Î„Š„§„Ö„ÚĄŒ„ž€ò"
+#~ "»ČŸÈ€·€Æ€Ż€À€”€€:"
+
+#~ msgid "LBA (doesn't work on old BIOSes)"
+#~ msgstr "LBA (žĆ€€ BIOS €Ç€ÏÆ°€«€Ê€€)"
+
+#~ msgid "You don't have any partitions!"
+#~ msgstr "„ŃĄŒ„Æ„Ł„·„ç„󀏀ą€ê€Ț€»€óĄȘ"
+
+#~ msgid ""
+#~ "DiskDrake failed to read correctly the partition table.\n"
+#~ "Continue at your own risk!"
+#~ msgstr ""
+#~ "DiskDrake €Ï„ŃĄŒ„Æ„Ł„·„ç„ó„ÆĄŒ„Ö„ë€òÀ”€·€ŻÆÉ€á€Ț€»€ó€Ç€·€żĄŁ\n"
+#~ "€ł€ł€«€éÀè€ÏČż€Ź”Ż€­€Æ€â€·€ê€Ț€»€ó€èĄȘ"
+
+#~ msgid ""
+#~ "I can't read your partition table, it's too corrupted for me :(\n"
+#~ "I'll try to go on blanking bad partitions"
+#~ msgstr ""
+#~ "„ŃĄŒ„Æ„Ł„·„ç„ó„ÆĄŒ„ք뀏ÆÉ€á€Ț€»€óĄ€Čő€ì€Æ€€€ë€è€Š€Ç€č:(\n"
+#~ "ÉÔÀ”€Ê„ŃĄŒ„Æ„Ł„·„ç„ó€ò¶őÇò€ÇËä€á€è€Š€È€·€Ț€č"
+
+#~ msgid ""
+#~ "Please Build backup before to restore it...\n"
+#~ " or verify that your path to save is correct."
+#~ msgstr ""
+#~ "Éüž”€č€ë€Ë€Ï„Đ„Ă„Ż„ą„Ă„Ś€ò€Ț€șčœĂÛ€·€Æ€Ż€À€”€€...\n"
+#~ "€ą€ë€€€ÏÊĘžÀè„Ń„č€ÏÀ”€·€€€Ç€č€«Ą©"
+
+#~ msgid "Firewalling Configuration"
+#~ msgstr "„Ő„Ą„€„ą„Š„©ĄŒ„ë€ÎÀßÄê"
+
+#~ msgid "Firewalling configuration"
+#~ msgstr "„Ő„Ą„€„ą„Š„©ĄŒ„ë€ÎÀßÄê"
+
+#~ msgid ""
+#~ "Firewalling\n"
+#~ "\n"
+#~ "You already have set up a firewall.\n"
+#~ "Click on Configure to change or remove the firewall"
+#~ msgstr ""
+#~ "„Ő„Ą„€„ąĄŒ„Š„©ĄŒ„ë\n"
+#~ "\n"
+#~ "€č€Ç€Ë„Ő„Ą„€„ąĄŒ„Š„©ĄŒ„ë€ÏÀßÄêșр߀ǀ襣\n"
+#~ "€œ€ì€òÊŃč襊șïœü€č€ë€Ë€ÏĄÖÀßÄêĄŚ€ò„Ż„ê„Ă„Ż€·€Æ€Ż€À€”€€"
+
+#~ msgid ""
+#~ "Firewalling\n"
+#~ "\n"
+#~ "Click on Configure to set up a standard firewall"
+#~ msgstr ""
+#~ "„Ő„Ą„€„ąĄŒ„Š„©ĄŒ„ë\n"
+#~ "\n"
+#~ "ĄÖÀßÄêĄŚ€ò„Ż„ê„Ă„Ż€·€ÆÉžœà„Ő„Ą„€„ąĄŒ„Š„©ĄŒ„ë€òÀßÄꀷ€Ț€č"
+
+#~ msgid ""
+#~ "We'll now ask you questions about which services you'd like to allow\n"
+#~ "the Internet to connect to. Please think carefully about these\n"
+#~ "questions, as your computer's security is important.\n"
+#~ "\n"
+#~ "Please, if you're not currently using one of these services, firewall\n"
+#~ "it off. You can change this configuration anytime you like by\n"
+#~ "re-running this application!"
+#~ msgstr ""
+#~ "€”€ÆĄą„€„󄿥Œ„Í„Ă„ÈÀÜÂł€·€ż€€„”ĄŒ„Ó„č€Ë€Ä€€€Æ€€€í€€€í€ȘżÒ€Í€·€Ț€čĄŁ\n"
+#~ "Ćú€š€ë€È€­€Ë€Ï€è€ŻčÍ€š€Æ€Ż€À€”€€ĄŁ€ą€Ê€ż€Î„ł„ó„Ô„ćĄŒ„ż€Î„»„­„ć„ê„Æ„Ł\n"
+#~ "€ËŽŰ€ï€ëÌäÂê€Ç€č€«€éĄŁ\n"
+#~ "\n"
+#~ "€ł€Š€·€ż„”ĄŒ„Ó„č€ÇĄą€€€ȚŒ«ÊŹ€Ç»È€Ă€Æ€€€Ê€€€â€Î€Ï„Ő„Ą„€„ąĄŒ„Š„©ĄŒ„ë\n"
+#~ "€Ç±Ł€·€Æ€·€Ț€€€Ț€·€ç€ŠĄŁ€ł€Î„ą„Ś„ꄱĄŒ„·„ç„ó€òŒÂčÔ€č€ì€ĐĄąÀßÄê€Ï\n"
+#~ "€€€Ä€Ç€âÊŃčč€Ç€­€Ț€čĄŁ"
+
+#~ msgid ""
+#~ "Are you running a web server on this machine that you need the whole\n"
+#~ "Internet to see? If you are running a webserver that only needs to be\n"
+#~ "accessed by this machine, you can safely answer NO here.\n"
+#~ "\n"
+#~ msgstr ""
+#~ "€ł€Î„Ț„·„ó€ÇĄąÁŽ„€„󄿥Œ„Í„Ă„È€«€éž«€š€ë„Š„§„Ö„”ĄŒ„Đ€òŒÂčÔ€·€Ț€č€«Ą©\n"
+#~ "Œ«ÊŹ€Î„Ț„·„ó€À€±€Ç»È€Š„Š„§„Ö„”ĄŒ„Đ€·€«€Ê€€€Ê€éĄą€ł€ł€ÇĄÖ€€€€€šĄŚ€È\n"
+#~ "Ćú€š€Ț€·€ç€ŠĄŁ\n"
+#~ "\n"
+
+#~ msgid ""
+#~ "Are you running a name server on this machine? If you didn't set one\n"
+#~ "up to give away IP and zone information to the whole Internet, please\n"
+#~ "answer no.\n"
+#~ "\n"
+#~ msgstr ""
+#~ "€ł€Î„Ț„·„ó€Ç„ÍĄŒ„à„”ĄŒ„ĐĄÊDNS) €òŒÂčÔ€·€Ț€č€«Ą©ĄĄÁŽ„€„󄿥Œ„Í„Ă„È€Ë\n"
+#~ "IP €ä„ŸĄŒ„óŸđÊó€òžűł«€č€ë€è€ŠÀßÄꀷ€Æ€€€Ê€±€ì€ĐĄąĄÖ€€€€€šĄŚ€ÈĆú€š€Æ\n"
+#~ "€Ż€À€”€€ĄŁ\n"
+#~ "\n"
+
+#~ msgid ""
+#~ "Do you want to allow incoming Secure Shell (ssh) connections? This\n"
+#~ "is a telnet-replacement that you might use to login. If you're using\n"
+#~ "telnet now, you should definitely switch to ssh. telnet is not\n"
+#~ "encrypted -- so some attackers can steal your password if you use\n"
+#~ "it. ssh is encrypted and doesn't allow for this eavesdropping."
+#~ msgstr ""
+#~ "ł°€«€é€Î Secure Shell (ssh) ÀÜÂł€ò”öČÄ€·€Ț€č€«Ą©ĄĄssh€Ï\n"
+#~ "telnet€ËÂć€ï€ë€â€Î€ÇĄą„í„°„€„ó€Ë»È€š€Ț€čĄŁ€€€Ț telnet €ò»È€Ă€Æ€€€ż€é\n"
+#~ "ÀäÂĐ€Ë ssh €ËÀÚ€êÂŰ€š€Ț€·€ç€ŠĄŁtelnet €Ï°ĆčæČœ€”€ì€Æ€€€Ț€»€óĄŁ€À€«€é\n"
+#~ "„Ń„č„ïĄŒ„É€òĆđ€Ț€ì€ëŽíž±€Ź€ą€ê€Ț€čĄŁssh€Ï°ĆčæČœ€”€ì€Æ€€€ë€Î€ÇĄą€ł€Š\n"
+#~ "€€€Ă€żĆđ€ßÄ°€­€Ź€Ç€­€Ț€»€ó"
+
+#~ msgid ""
+#~ "Do you want to allow incoming telnet connections?\n"
+#~ "This is horribly unsafe, as we explained in the previous screen. We\n"
+#~ "strongly recommend answering No here and using ssh in place of\n"
+#~ "telnet.\n"
+#~ msgstr ""
+#~ "ł°€«€é€Î telnet ÀÜÂł€ò”öČÄ€·€Ț€č€«Ą©\n"
+#~ "€”€Ă€­ÀâÌÀ€·€ż€È€Ș€êĄą€ł€ì€Ï€È€ó€Ç€â€Ê€ŻŽíž±€Ê€ł€È€Ç€čĄŁ€ł€ł€Ç€Ï\n"
+#~ "ÀäÂЀ˥ր€€€€šĄŚ€ÈĆú€š€ÆĄąssh €ò»È€Š€è€Š€Ë€ȘŽ«€á€·€Ț€čĄŁ\n"
+
+#~ msgid ""
+#~ "Are you running an FTP server here that you need accessible to the\n"
+#~ "Internet? If you are, we strongly recommend that you only use it for\n"
+#~ "Anonymous transfers. Any passwords sent by FTP can be stolen by some\n"
+#~ "attackers, since FTP also uses no encryption for transferring passwords.\n"
+#~ msgstr ""
+#~ "„€„󄿥Œ„Í„Ă„È€Ç„ą„Ż„»„č€Ç€­€ë FTP „”ĄŒ„Đ€òŒÂčÔ€·€Ț€č€«Ą©\n"
+#~ "€â€·€œ€Š€Ê€éĄą€Ê€ë€Ù€Ż Anonymous ĆŸÁś€Ë€À€±»È€Š€è€Š€ȘŽ«€á€·€Ț€čĄŁ\n"
+#~ "FTP €ÇÁśżź€č€ë„Ń„č„ïĄŒ„É€ÏĄą€č€Ù€ÆĆđÄ°€Ç€­€Ț€čĄŁFTP €Ï„Ń„č„ïĄŒ„ÉÁśżź€Ë\n"
+#~ "°Ćčæ€ò»È€ï€Ê€€€«€é€Ç€čĄŁ\n"
+
+#~ msgid ""
+#~ "Are you running a mail server here? If you're sending you \n"
+#~ "messages through pine, mutt or any other text-based mail client,\n"
+#~ "you probably are. Otherwise, you should firewall this off.\n"
+#~ "\n"
+#~ msgstr ""
+#~ "„áĄŒ„ë„”ĄŒ„Đ€òŒÂčÔ€·€Ț€č€«Ą©ĄĄ„áĄŒ„ë€ÎÁśżź€Ë pineĄąmutt€Ê€É€Î\n"
+#~ "„Æ„­„č„È„ÙĄŒ„č€Î„áĄŒ„ë„Ż„é„€„ą„ó„È€ò»È€ŠżÍ€ÏĄą€ż€Ö€ó„áĄŒ„ë„”ĄŒ„Đ\n"
+#~ "€ŹÉŹÍŚ€Ç€čĄŁ€”€â€Ê€±€ì€ĐĄą„Ő„Ą„€„ąĄŒ„Š„©ĄŒ„ë€Ç±Ł€·€Ț€·€ç€ŠĄŁ\n"
+#~ "\n"
+
+#~ msgid ""
+#~ "Are you running a POP or IMAP server here? This would\n"
+#~ "be used to host non-web-based mail accounts for people via \n"
+#~ "this machine.\n"
+#~ "\n"
+#~ msgstr ""
+#~ "POP „”ĄŒ„Đ€« IMAP „”ĄŒ„Đ€Ï»È€€€Ț€č€«Ą©\n"
+#~ "€ł€Î„Ț„·„ó·ĐÍł€ÇĄąweb„áĄŒ„ë°Êł°€Î„áĄŒ„ë„ą„«„Š„ó„È€òÀßÄê€č€ë\n"
+#~ "€Ê€éÉŹÍŚ€Ç€čĄŁ\n"
+#~ "\n"
+
+#~ msgid ""
+#~ "You appear to be running a 2.2 kernel. If your network IP\n"
+#~ "is automatically set by a computer in your home or office \n"
+#~ "(dynamically assigned), we need to allow for this. Is\n"
+#~ "this the case?\n"
+#~ msgstr ""
+#~ "2.2 „«ĄŒ„Í„ë€ò»È€Ă€Æ€€€Ț€č€ÍĄŁ€â€·„Í„Ă„È„ïĄŒ„Ż IP €Ź\n"
+#~ "ČÈÄí€ä„Ș„Ő„Ł„č€ÇŒ«Æ°łä€êĆö€Æ€Ë€Ê€Ă€Æ€€€ë€Ê€éĄą€œ€ì€Ë\n"
+#~ "±ț€ž€żÀßÄê€ò€·€Ț€čĄŁŒ«Æ°łä€êĆö€Æ€Ë€Ê€Ă€Æ€€€Ț€č€«Ą©\n"
+
+#~ msgid ""
+#~ "Is your computer getting time syncronized to another computer?\n"
+#~ "Mostly, this is used by medium-large Unix/Linux organizations\n"
+#~ "to synchronize time for logging and such. If you're not part\n"
+#~ "of a larger office and haven't heard of this, you probably \n"
+#~ "aren't."
+#~ msgstr ""
+#~ "€ą€Ê€ż€Î„ł„ó„Ô„ćĄŒ„ż€ÏĄą€Û€«€Î„ł„ó„Ô„ćĄŒ„ż€È»ț·Ś€ą€ï€»€ò€·€Æ\n"
+#~ "€€€Ț€č€«Ą©ĄĄ€ł€ì€Ï€Ő€Ä€ŠĄąĂæ”ŹÌÏ€«€éÂ甏ÌπΠLinux/Unix ÁÈż„\n"
+#~ "€ÇĄą„í„°„€„ó€Ê€É€ÎƱŽü€ò€È€ë€Î€Ë»È€ï€ì€Ț€čĄŁ€œ€Š€€€ŠÂ瀭€Ê\n"
+#~ "ÁÈż„€Î°ìÉô€Ç€Ï€Ê€ŻĄą»ț·Ś€ą€ï€»€Ê€ó€«Ä°€€€ż€ł€È€Ź€Ê€±€ì€ĐĄą\n"
+#~ "€ż€Ö€óÉÔÍŚ€Ç€č"
+
+#~ msgid ""
+#~ "Configuration complete. May we write these changes to disk?\n"
+#~ "\n"
+#~ "\n"
+#~ "\n"
+#~ msgstr ""
+#~ "ÀßÄꎰλĄŁÊŃčč€ò„Ç„Ł„č„Ż€Ëœń€­čț€ß€Ț€č€«Ą©\n"
+#~ "\n"
+#~ "\n"
+#~ "\n"
+
+#~ msgid "Can't open %s for writing: %s\n"
+#~ msgstr "œń€­čț€ßÍŃ€Ë %s €Źł«€±€Ț€»€ó: %s\n"
+
+#~ msgid "No I don't need DHCP"
+#~ msgstr "DHCP €Ï»È€ï€Ê€€"
+
+#~ msgid "Yes I need DHCP"
+#~ msgstr "DHCP €ò»È€Š"
+
+#~ msgid "No I don't need NTP"
+#~ msgstr "NTP €Ï€€€é€Ê€€"
+
+#~ msgid "Yes I need NTP"
+#~ msgstr "NTP€ò»È€Š"
+
+#~ msgid "Don't Save"
+#~ msgstr "ÊĘž€·€Ê€€"
+
+#~ msgid "Save & Quit"
+#~ msgstr "ÊĘž€·€ÆœȘλ"
+
+#~ msgid "Firewall Configuration Wizard"
+#~ msgstr "„Ő„Ą„€„ąĄŒ„Š„©ĄŒ„ëÀßÄê„Š„Ł„¶ĄŒ„É"
+
+#~ msgid "No (firewall this off from the internet)"
+#~ msgstr "€€€€€šĄÊ€ł€ì€ò„€„󄿥Œ„Í„Ă„È€«€éËÉžæĄË"
+
+#~ msgid "Yes (allow this through the firewall)"
+#~ msgstr "€Ï€€ĄÊ„Ő„Ą„€„ąĄŒ„Š„©ĄŒ„ë€òÄÌ€čĄË"
+
+#~ msgid "Please Wait... Verifying installed packages"
+#~ msgstr "ŸŻĄč€ȘÂÔ€Á€ò...„€„ó„č„ÈĄŒ„ëșр߄ЄÄ±ĄŒ„ž€òłÎǧĂæ"
+
+#~ msgid ""
+#~ "Failure installing the needed packages: %s and Bastille.\n"
+#~ " Try to install them manually."
+#~ msgstr ""
+#~ "ÉŹÍŚ„Ń„Ă„±ĄŒ„ž€Î„€„ó„č„ÈĄŒ„ë€ËŒșÇÔ€·€Ț€·€ż: %s €È Bastille.\n"
+#~ "ŒêÆ°€Ç„€„ó„č„ÈĄŒ„뀷€Æ€ß€Æ€Ż€À€”€€ĄŁ"
#~ msgid "Data list to include on CDROM."
#~ msgstr "CDROM€ËŽȚ€á€ë„ÇĄŒ„ż°ìÍś"
@@ -13365,14 +14084,6 @@ msgstr "ČÊłŰ„ïĄŒ„Ż„č„ÆĄŒ„·„ç„ó"
#~ "CD €Ë”ŻÆ°ÍŃ€Îboot€òŽȚ€á€ë€Ê€é\n"
#~ "„Á„§„Ă„Ż€·€Æ€Ż€À€”€€ĄŁ"
-#, fuzzy
-#~ msgid "Windows PDC"
-#~ msgstr "Windows (FAT32)"
-
-#, fuzzy
-#~ msgid "PDC Server Name"
-#~ msgstr "NTP „”ĄŒ„Đ"
-
#~ msgid ""
#~ "\n"
#~ "Welcome to the Printer Setup Wizard\n"
@@ -13443,36 +14154,15 @@ msgstr "ČÊłŰ„ïĄŒ„Ż„č„ÆĄŒ„·„ç„ó"
#~ "ĄÖ„š„­„č„ŃĄŒ„È„âĄŒ„ÉĄŚ€ËÊŃč耷€Æ€«€éĄÖż·”Ź„Ś„ê„󄿀ÎÄÉČĂĄŚ€ò„Ż„ê„Ă„Ż\n"
#~ "€·€Ê€Ș€·€Æ€Ż€À€”€€ĄŁ"
-#, fuzzy
-#~ msgid ""
-#~ "Is your printer a multi-function device from HP (OfficeJet, PSC, LaserJet "
-#~ "1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart or an HP "
-#~ "LaserJet 2200?"
-#~ msgstr ""
-#~ "€ą€Ê€ż€Î„Ś„ê„ó„ż€ÏĄąHPÀœÂż”ĄÇœ„Ç„Đ„€„č (OfficeJet, PSC, PhotoSmart, "
-#~ "LaserJet 1100/1200/1220/3200/3300 €Î„č„­„ă„ʀĀ­) €Ç€č€«?"
-
#~ msgid "Installing HPOJ package..."
#~ msgstr "HPOJ „Ń„Ă„±ĄŒ„ž€Î„€„ó„č„ÈĄŒ„ëĂæ..."
#~ msgid "Checking device and configuring HPOJ..."
#~ msgstr "„Ç„Đ„€„č€ò„Á„§„Ă„Ż€·€ÆHPOJ €ò„€„ó„č„ÈĄŒ„ëĂæ..."
-#, fuzzy
-#~ msgid "Installing SANE packages..."
-#~ msgstr "SANE „Ń„Ă„±ĄŒ„ž€Î„€„ó„č„ÈĄŒ„ëĂæ..."
-
-#, fuzzy
-#~ msgid "Installing mtools packages..."
-#~ msgstr "„Ń„Ă„±ĄŒ„ž€Î„€„ó„č„ÈĄŒ„ëĂæ..."
-
#~ msgid "Scanning on your HP multi-function device"
#~ msgstr "HP „Ț„ë„Á”ĄÇœ„Ç„Đ„€„č€Ç„č„­„ă„óĂæ"
-#, fuzzy
-#~ msgid "Photo memory card access on your HP multi-function device"
-#~ msgstr "HP „Ț„ë„Á”ĄÇœ„Ç„Đ„€„č€Ç„č„­„ă„óĂæ"
-
#~ msgid "Making printer port available for CUPS..."
#~ msgstr "„Ś„ê„ó„ż„ĘĄŒ„È€ò CUPS ÍŃ€ËÄó¶ĄĂæ..."
@@ -13605,14 +14295,6 @@ msgstr "ČÊłŰ„ïĄŒ„Ż„č„ÆĄŒ„·„ç„ó"
#~ msgid "Choose a X driver"
#~ msgstr "X „É„é„€„Đ€òÁȘ€ó€ÇČŒ€”€€"
-#~ msgid "X driver"
-#~ msgstr "X „É„é„€„Đ"
-
-#~ msgid "Warning: testing this graphics card may freeze your computer"
-#~ msgstr ""
-#~ "·Ùč𥧀ł€Î„°„é„Ő„Ł„Ă„Ż„«ĄŒ„É€ò„Æ„č„È€č€ë€È„Ț„·„ó€Ź„Ő„êĄŒ„ș€č€ë€«€â€·€ì€Ț€»"
-#~ "€ó"
-
#~ msgid "Standard VGA, 640x480 at 60 Hz"
#~ msgstr "„č„ż„ó„ÀĄŒ„É VGA, 640x480 €Ç 60Hz"
diff --git a/perl-install/share/po/ko.po b/perl-install/share/po/ko.po
index f176b6a59..bb8feb26e 100644
--- a/perl-install/share/po/ko.po
+++ b/perl-install/share/po/ko.po
@@ -4,8 +4,8 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: drakfloppy 0.42\n"
-"POT-Creation-Date: 2002-08-21 15:44+0200\n"
+"Project-Id-Version: DrakX\n"
+"POT-Creation-Date: 2002-09-02 20:14+0200\n"
"PO-Revision-Date: 2002-08-16 13:50+0900\n"
"Last-Translator: Jaegeum Cze <baedaron@hanafos.com>\n"
"Language-Team: Korean <beadaron@hanafos.com>\n"
@@ -49,19 +49,19 @@ msgstr "32 MB"
msgid "64 MB or more"
msgstr "16 MB ÀÌ»ó"
-#: ../../Xconfig/card.pm_.c:201
+#: ../../Xconfig/card.pm_.c:203
msgid "Choose a X server"
msgstr "X Œ­čö Œ±ĆĂ"
-#: ../../Xconfig/card.pm_.c:201
+#: ../../Xconfig/card.pm_.c:203
msgid "X server"
msgstr "X Œ­čö"
-#: ../../Xconfig/card.pm_.c:228
+#: ../../Xconfig/card.pm_.c:230
msgid "Multi-head configuration"
msgstr "ŽÙÁß Çì”ć ŒłÁ€"
-#: ../../Xconfig/card.pm_.c:229
+#: ../../Xconfig/card.pm_.c:231
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
@@ -69,27 +69,27 @@ msgstr ""
"ŽÔÀÇ œĂœșĆÛÀș ŽÙÁß Çì”ć ŒłÁ€À» ÁöżűÇŐŽÏŽÙ.\n"
"Ÿî¶»°Ô ÇÏœĂ°ÚœÀŽÏ±î?"
-#: ../../Xconfig/card.pm_.c:284
+#: ../../Xconfig/card.pm_.c:286
msgid "Select the memory size of your graphics card"
msgstr "±Ś·ĄÇÈ Ä«”ćÀÇ žȚžđžź żë·źÀ» Œ±ĆĂÇÏŒŒżä"
-#: ../../Xconfig/card.pm_.c:345
+#: ../../Xconfig/card.pm_.c:347
msgid "XFree configuration"
msgstr "XFree ŒłÁ€"
-#: ../../Xconfig/card.pm_.c:347
+#: ../../Xconfig/card.pm_.c:349
msgid "Which configuration of XFree do you want to have?"
msgstr "ŸîŽÀ XFree ŒłÁ€À» Œ±ĆĂÇÏœĂ°ÚœÀŽÏ±î?"
-#: ../../Xconfig/card.pm_.c:379
+#: ../../Xconfig/card.pm_.c:381
msgid "Configure all heads independently"
msgstr "žđ”ç Çì”枊 ”¶žłÀûÀž·Î ŒłÁ€"
-#: ../../Xconfig/card.pm_.c:380
+#: ../../Xconfig/card.pm_.c:382
msgid "Use Xinerama extension"
msgstr "Xinerama ÈźÀć »çżë"
-#: ../../Xconfig/card.pm_.c:384
+#: ../../Xconfig/card.pm_.c:386
#, c-format
msgid "Configure only card \"%s\"%s"
msgstr "Ąž%sĄč%s Ä«”ćžž ŒłÁ€"
@@ -100,13 +100,13 @@ msgstr "Ąž%sĄč%s Ä«”ćžž ŒłÁ€"
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:435
+#: ../../Xconfig/card.pm_.c:410 ../../Xconfig/card.pm_.c:436
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s with 3D hardware acceleration"
msgstr "XFree %sžŠ »çżëÇŃ 3D ÇÏ”ćżțŸî °ĄŒÓ"
-#: ../../Xconfig/card.pm_.c:412
+#: ../../Xconfig/card.pm_.c:413
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -115,17 +115,17 @@ msgstr ""
"ŽÔÀÇ Ä«”ćŽÂ XFree %s·Îžž °ĄŽÉÇŃ 3D ÇÏ”ćżțŸî °ĄŒÓ±âŽÉÀÌ Áöżű”ËŽÏŽÙ.\n"
"ŽÔÀÇ Ä«”ćŽÂ ŸîÂŒžé șžŽÙ Çâ»ó”È 2D ŒșŽÉÀ» șžÀÏ Œö ÀÖŽÂ XFree %sÀ» ÁöżűÇŐŽÏŽÙ."
-#: ../../Xconfig/card.pm_.c:414 ../../Xconfig/card.pm_.c:437
+#: ../../Xconfig/card.pm_.c:415 ../../Xconfig/card.pm_.c:438
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr "ŽÔÀÇ Ä«”ćŽÂ XFree %s·Î 3D ÇÏ”ćżțŸî °ĄŒÓ±âŽÉÀ» ÁöżűÇŐŽÏŽÙ."
-#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:443
+#: ../../Xconfig/card.pm_.c:423 ../../Xconfig/card.pm_.c:444
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %sžŠ »çżëÇŃ œÇÇèÀû 3D ÇÏ”ćżțŸî °ĄŒÓ"
-#: ../../Xconfig/card.pm_.c:425
+#: ../../Xconfig/card.pm_.c:426
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -136,7 +136,7 @@ msgstr ""
"ÁÖÀÇ: ÀÌ°ÍÀș œÇÇèÀûÀÎ ÁöżűÀÌžç ŽÔÀÇ ÄÄÇ»ĆÍžŠ žŰĂß°Ô ÇÒ Œö ÀÖœÀŽÏŽÙ.\n"
"ŽÔÀÇ Ä«”ćŽÂ ŸîÂŒžé șžŽÙ Çâ»ó”È 2D ŒșŽÉÀ» șžÀÏ Œö ÀÖŽÂ XFree %sÀ» ÁöżűÇŐŽÏŽÙ."
-#: ../../Xconfig/card.pm_.c:428 ../../Xconfig/card.pm_.c:445
+#: ../../Xconfig/card.pm_.c:429 ../../Xconfig/card.pm_.c:446
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
@@ -145,52 +145,53 @@ msgstr ""
"ŽÔÀÇ Ä«”ćŽÂ XFree %s·Îžž °ĄŽÉÇŃ 3D ÇÏ”ćżțŸî °ĄŒÓ±âŽÉÀÌ Áöżű”ËŽÏŽÙ.\n"
"ÁÖÀÇ: ÀÌ°ÍÀș œÇÇèÀûÀÎ ÁöżűÀÌžç ŽÔÀÇ ÄÄÇ»ĆÍžŠ žŰĂß°Ô ÇÒ Œö ÀÖœÀŽÏŽÙ."
-#: ../../Xconfig/card.pm_.c:451
+#: ../../Xconfig/card.pm_.c:452
msgid "Xpmac (installation display driver)"
msgstr "Xpmac (ŒłÄĄ Ç„œĂ ”ć¶óÀÌčö)"
-#: ../../Xconfig/main.pm_.c:78 ../../Xconfig/main.pm_.c:79
-#: ../../Xconfig/monitor.pm_.c:94 ../../any.pm_.c:974
+#: ../../Xconfig/main.pm_.c:76 ../../Xconfig/main.pm_.c:77
+#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:977
msgid "Custom"
msgstr "»çżëÀÚ Á€ÀÇ"
-#: ../../Xconfig/main.pm_.c:104
+#: ../../Xconfig/main.pm_.c:102
msgid "Graphic Card"
msgstr "±Ś·ĄÇÈ Ä«”ć"
-#: ../../Xconfig/main.pm_.c:107 ../../Xconfig/monitor.pm_.c:91
+#: ../../Xconfig/main.pm_.c:105 ../../Xconfig/monitor.pm_.c:93
msgid "Monitor"
msgstr "žđŽÏĆÍ"
-#: ../../Xconfig/main.pm_.c:110 ../../Xconfig/resolution_and_depth.pm_.c:209
+#: ../../Xconfig/main.pm_.c:108 ../../Xconfig/resolution_and_depth.pm_.c:209
msgid "Resolution"
msgstr "ÇŰ»ó””"
-#: ../../Xconfig/main.pm_.c:114
+#: ../../Xconfig/main.pm_.c:113
msgid "Test"
msgstr "ĆŚœșÆź"
-#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:59
-#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/removable.pm_.c:25
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:63
+#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/removable.pm_.c:25
#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "żÉŒÇ”é"
#: ../../Xconfig/main.pm_.c:121 ../../Xconfig/resolution_and_depth.pm_.c:268
-#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:281
+#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:275
#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
-#: ../../interactive.pm_.c:351 ../../interactive/http.pm_.c:104
+#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:104
#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
-#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:156
-#: ../../my_gtk.pm_.c:284 ../../my_gtk.pm_.c:307
-#: ../../standalone/drakbackup_.c:3324 ../../standalone/drakbackup_.c:3419
-#: ../../standalone/drakbackup_.c:3438
+#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:159
+#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310
+#: ../../standalone/drakbackup_.c:3972 ../../standalone/drakbackup_.c:4067
+#: ../../standalone/drakbackup_.c:4086
msgid "Ok"
msgstr "ÈźÀÎ"
#: ../../Xconfig/main.pm_.c:121 ../../diskdrake/dav.pm_.c:24
-#: ../../printerdrake.pm_.c:2933 ../../standalone/logdrake_.c:224
+#: ../../harddrake/ui.pm_.c:98 ../../printerdrake.pm_.c:3155
+#: ../../standalone/logdrake_.c:224
msgid "Quit"
msgstr "ÁŸ·á"
@@ -207,27 +208,27 @@ msgstr ""
"\n"
"%s"
-#: ../../Xconfig/monitor.pm_.c:91
+#: ../../Xconfig/monitor.pm_.c:93
msgid "Choose a monitor"
msgstr "žđŽÏĆÍžŠ Œ±ĆĂÇÏŒŒżä"
-#: ../../Xconfig/monitor.pm_.c:95
+#: ../../Xconfig/monitor.pm_.c:97
msgid "Plug'n Play"
msgstr "ÇĂ·Ż±ŚŸŰÇĂ·čÀÌ"
-#: ../../Xconfig/monitor.pm_.c:96 ../../mouse.pm_.c:45
+#: ../../Xconfig/monitor.pm_.c:98 ../../mouse.pm_.c:46
msgid "Generic"
msgstr "ÀÏčĘ ž¶żìœș"
-#: ../../Xconfig/monitor.pm_.c:97 ../../harddrake/ui.pm_.c:36
+#: ../../Xconfig/monitor.pm_.c:99 ../../harddrake/ui.pm_.c:37
msgid "Vendor"
msgstr "»óÇ„"
-#: ../../Xconfig/monitor.pm_.c:107
+#: ../../Xconfig/monitor.pm_.c:109
msgid "Plug'n Play probing failed. Please choose a precise monitor"
msgstr ""
-#: ../../Xconfig/monitor.pm_.c:112
+#: ../../Xconfig/monitor.pm_.c:114
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -249,11 +250,11 @@ msgstr ""
"ŽÔÀÇ žđŽÏĆÍ°Ą ÈŃŒŐ”É Œö ÀÖœÀŽÏŽÙ.\n"
"Àß žđžŁ°ÚŽÙžé, ŸÈÀüÇÏ°Ô ł·Àș ŒłÁ€°ȘÀ» Œ±ĆĂÇÏŒŒżä"
-#: ../../Xconfig/monitor.pm_.c:119
+#: ../../Xconfig/monitor.pm_.c:121
msgid "Horizontal refresh rate"
msgstr "ŒöÆò ÁÖÆÄŒö"
-#: ../../Xconfig/monitor.pm_.c:120
+#: ../../Xconfig/monitor.pm_.c:122
msgid "Vertical refresh rate"
msgstr "ŒöÁś ÁÖÆÄŒö"
@@ -290,36 +291,40 @@ msgstr "ÇŰ»ó””żÍ »ö»óÀ» Œ±ĆĂÇÏŒŒżä"
msgid "Graphics card: %s"
msgstr "±Ś·ĄÇÈ Ä«”ć: %s"
-#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1015
-#: ../../bootlook.pm_.c:334 ../../diskdrake/smbnfs_gtk.pm_.c:87
-#: ../../install_steps_gtk.pm_.c:412 ../../install_steps_gtk.pm_.c:470
-#: ../../install_steps_interactive.pm_.c:576 ../../interactive.pm_.c:142
-#: ../../interactive.pm_.c:351 ../../interactive/http.pm_.c:105
+#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1018
+#: ../../bootlook.pm_.c:338 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:406 ../../install_steps_gtk.pm_.c:464
+#: ../../install_steps_interactive.pm_.c:560 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:105
#: ../../interactive/newt.pm_.c:174 ../../interactive/stdio.pm_.c:39
-#: ../../interactive/stdio.pm_.c:143 ../../my_gtk.pm_.c:155
-#: ../../my_gtk.pm_.c:159 ../../my_gtk.pm_.c:284
-#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1990
-#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3278
-#: ../../standalone/drakbackup_.c:3311 ../../standalone/drakbackup_.c:3337
-#: ../../standalone/drakbackup_.c:3364 ../../standalone/drakbackup_.c:3391
-#: ../../standalone/drakbackup_.c:3451 ../../standalone/drakbackup_.c:3478
-#: ../../standalone/drakbackup_.c:3504 ../../standalone/drakconnect_.c:115
-#: ../../standalone/drakconnect_.c:147 ../../standalone/drakconnect_.c:289
-#: ../../standalone/drakconnect_.c:537 ../../standalone/drakconnect_.c:679
-#: ../../standalone/drakfloppy_.c:234 ../../standalone/drakfloppy_.c:383
-#: ../../standalone/drakfont_.c:970 ../../standalone/drakgw_.c:598
-#: ../../standalone/logdrake_.c:224 ../../standalone/logdrake_.c:528
-#: ../../standalone/tinyfirewall_.c:64
+#: ../../interactive/stdio.pm_.c:143 ../../my_gtk.pm_.c:158
+#: ../../my_gtk.pm_.c:162 ../../my_gtk.pm_.c:287
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:2124
+#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3926
+#: ../../standalone/drakbackup_.c:3959 ../../standalone/drakbackup_.c:3985
+#: ../../standalone/drakbackup_.c:4012 ../../standalone/drakbackup_.c:4039
+#: ../../standalone/drakbackup_.c:4099 ../../standalone/drakbackup_.c:4126
+#: ../../standalone/drakbackup_.c:4156 ../../standalone/drakbackup_.c:4182
+#: ../../standalone/drakconnect_.c:115 ../../standalone/drakconnect_.c:147
+#: ../../standalone/drakconnect_.c:289 ../../standalone/drakconnect_.c:537
+#: ../../standalone/drakconnect_.c:679 ../../standalone/drakfloppy_.c:234
+#: ../../standalone/drakfloppy_.c:383 ../../standalone/drakfont_.c:970
+#: ../../standalone/drakgw_.c:536 ../../standalone/logdrake_.c:224
+#: ../../standalone/logdrake_.c:526
msgid "Cancel"
msgstr "ĂëŒÒ"
-#: ../../Xconfig/test.pm_.c:26
+#: ../../Xconfig/test.pm_.c:30
+msgid "Test of the configuration"
+msgstr "ŒłÁ€ ĆŚœșÆź"
+
+#: ../../Xconfig/test.pm_.c:31
msgid "Do you want to test the configuration?"
msgstr "ÀÌ ŒłÁ€À» ĆŚœșÆźÇŰ șžœĂ°ÚœÀŽÏ±î?"
-#: ../../Xconfig/test.pm_.c:26
-msgid "Test of the configuration"
-msgstr "ŒłÁ€ ĆŚœșÆź"
+#: ../../Xconfig/test.pm_.c:31
+msgid "Warning: testing this graphic card may freeze your computer"
+msgstr ""
#: ../../Xconfig/various.pm_.c:29
#, c-format
@@ -454,26 +459,22 @@ msgstr "””œș/À©””żìÁŒ­ șÎÆĂ(loadlin)"
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:158 ../../any.pm_.c:190
+#: ../../any.pm_.c:159 ../../any.pm_.c:190
msgid "Bootloader main options"
msgstr "șÎÆź·ÎŽő ÁÖ żÉŒÇ”é"
-#: ../../any.pm_.c:159 ../../any.pm_.c:191
+#: ../../any.pm_.c:160 ../../any.pm_.c:191
msgid "Bootloader to use"
msgstr "»çżëÇÒ șÎÆź·ÎŽő"
-#: ../../any.pm_.c:161
+#: ../../any.pm_.c:162
msgid "Bootloader installation"
msgstr "șÎÆź·ÎŽő ŒłÄĄ"
-#: ../../any.pm_.c:163 ../../any.pm_.c:193
+#: ../../any.pm_.c:164 ../../any.pm_.c:193
msgid "Boot device"
msgstr "șÎÆź ÀćÄĄ"
-#: ../../any.pm_.c:164
-msgid "LBA (doesn't work on old BIOSes)"
-msgstr "LBA (żÀ·Ą”È BIOS”鿥Œ± ÀÛ”żÇÏÁö ŸÊÀ»Œö”” ÀÖœÀŽÏŽÙ.)"
-
#: ../../any.pm_.c:165
msgid "Compact"
msgstr "ÄȚÆŃ”ć žđ”ć"
@@ -490,16 +491,17 @@ msgstr "șń”đżÀ žđ”ć"
msgid "Delay before booting default image"
msgstr "±âș» ÀÌčÌÁö·Î șÎÆĂ”É ¶§±îÁö ÁöżŹœĂ°Ł"
-#: ../../any.pm_.c:170 ../../any.pm_.c:786
+#: ../../any.pm_.c:170 ../../any.pm_.c:788
#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1111 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:743 ../../printerdrake.pm_.c:858
-#: ../../standalone/drakconnect_.c:624 ../../standalone/drakconnect_.c:649
+#: ../../install_steps_interactive.pm_.c:1096 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:850 ../../printerdrake.pm_.c:965
+#: ../../standalone/drakbackup_.c:3528 ../../standalone/drakconnect_.c:624
+#: ../../standalone/drakconnect_.c:649
msgid "Password"
msgstr "ŸÏÈŁ"
-#: ../../any.pm_.c:171 ../../any.pm_.c:787
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../any.pm_.c:171 ../../any.pm_.c:789
+#: ../../install_steps_interactive.pm_.c:1097
msgid "Password (again)"
msgstr "ŸÏÈŁ (ÈźÀÎ)"
@@ -533,14 +535,14 @@ msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr "żÉŒÇ: Ąžží·ÉÇà żÉŒÇÁŠÇŃĄčÀș ŸÏÈŁŸűÀÌ »çżë”ÉŒö ŸűœÀŽÏŽÙ."
-#: ../../any.pm_.c:184 ../../any.pm_.c:762
-#: ../../diskdrake/interactive.pm_.c:1180
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../any.pm_.c:184 ../../any.pm_.c:764
+#: ../../diskdrake/interactive.pm_.c:1191
+#: ../../install_steps_interactive.pm_.c:1091
msgid "Please try again"
msgstr "ŽÙœĂ œĂ””ÇÏŒŒżä."
-#: ../../any.pm_.c:184 ../../any.pm_.c:762
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../any.pm_.c:184 ../../any.pm_.c:764
+#: ../../install_steps_interactive.pm_.c:1091
msgid "The passwords do not match"
msgstr "ŸÏÈŁ°Ą ÀÏÄĄÇÏÁö ŸÊœÀŽÏŽÙ."
@@ -585,16 +587,16 @@ msgstr ""
"žî °ĄÁö ÇŚžńÀÌ ż©±âżĄ Ç„œĂ”Ç°í ÀÖœÀŽÏŽÙ.\n"
"Žő Ăß°ĄÇÏ°ĆłȘ, ±âÁžÀÇ °Í”éÀ» ŒöÁ€ÇÒŒö ÀÖœÀŽÏŽÙ."
-#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1483
-#: ../../standalone/drakbackup_.c:1596 ../../standalone/drakfont_.c:1011
+#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1558
+#: ../../standalone/drakbackup_.c:1671 ../../standalone/drakfont_.c:1011
#: ../../standalone/drakfont_.c:1054
msgid "Add"
msgstr "Ăß°Ą"
-#: ../../any.pm_.c:257 ../../any.pm_.c:774 ../../diskdrake/dav.pm_.c:60
+#: ../../any.pm_.c:257 ../../any.pm_.c:776 ../../diskdrake/dav.pm_.c:64
#: ../../diskdrake/hd_gtk.pm_.c:153 ../../diskdrake/removable.pm_.c:27
#: ../../diskdrake/smbnfs_gtk.pm_.c:88 ../../interactive/http.pm_.c:153
-#: ../../standalone/drakbackup_.c:2696
+#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2772
msgid "Done"
msgstr "żÏ·á"
@@ -606,7 +608,7 @@ msgstr "șŻ°æ"
msgid "Which type of entry do you want to add?"
msgstr "Ÿî¶Č ÁŸ·ùÀÇ ÇŚžńÀ» Ăß°ĄÇÏœĂ°ÚœÀŽÏ±î?"
-#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1630
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1705
msgid "Linux"
msgstr "žźŽȘœș"
@@ -700,13 +702,13 @@ msgstr "¶Ç ŽÙž„°ÍÀÌ ŒłÄĄ”ÇŸî ÀÖœÀŽÏ±î?"
msgid "Do you have any %s interfaces?"
msgstr "¶Ç ŽÙž„ %s ÀÎĆÍÆäÀÌœș°Ą ŒłÄĄ”ÇŸî ÀÖœÀŽÏ±î?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:821 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:283
+#: ../../any.pm_.c:660 ../../any.pm_.c:823 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:286
msgid "No"
msgstr "ŸÆŽÏżÀ"
-#: ../../any.pm_.c:660 ../../any.pm_.c:820 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:283
+#: ../../any.pm_.c:660 ../../any.pm_.c:822 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:286
msgid "Yes"
msgstr "żč"
@@ -804,37 +806,47 @@ msgstr "ĄžsuĄčÇăżë"
msgid "access to administrative files"
msgstr "œĂœșĆÛ °üžźÆÄÀÏ ŸŚŒŒœș"
-#: ../../any.pm_.c:758
+#: ../../any.pm_.c:754
+#, fuzzy
+msgid "access to network tools"
+msgstr "RPM ””±ž ŸŚŒŒœș"
+
+#: ../../any.pm_.c:755
+#, fuzzy
+msgid "access to compilation tools"
+msgstr "RPM ””±ž ŸŚŒŒœș"
+
+#: ../../any.pm_.c:760
#, c-format
msgid "(already added %s)"
msgstr "(ÀÌčÌ %sŽÂ(Àș) Ăß°Ą”ÇŸúœÀŽÏŽÙ.)"
-#: ../../any.pm_.c:763
+#: ../../any.pm_.c:765
msgid "This password is too simple"
msgstr "ÀÌ ŸÏÈŁŽÂ łÊč« ŽÜŒűÇŐŽÏŽÙ."
-#: ../../any.pm_.c:764
+#: ../../any.pm_.c:766
msgid "Please give a user name"
msgstr "»çżëÀÚžíÀ» ÀÔ·ÂÇŰ ÁÖŒŒżä"
-#: ../../any.pm_.c:765
+#: ../../any.pm_.c:767
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr "»çżëÀÚžíÀș ż”čź ŒÒčźÀÚłȘ ŒęÀÚ, '-' ±Śžź°í '_' žž ÆśÇԔɌö ÀÖœÀŽÏŽÙ."
-#: ../../any.pm_.c:766
+#: ../../any.pm_.c:768
msgid "The user name is too long"
msgstr "»çżëÀÚ žíÀÌ łÊč« ±éŽÏŽÙ."
-#: ../../any.pm_.c:767
+#: ../../any.pm_.c:769
msgid "This user name is already added"
msgstr "ÀÌ »çżëÀÚžíÀș ÀÌčÌ Ăß°Ą”ÇŸî ÀÖœÀŽÏŽÙ."
-#: ../../any.pm_.c:771
+#: ../../any.pm_.c:773
msgid "Add user"
msgstr "»çżëÀÚ Ăß°Ą"
-#: ../../any.pm_.c:772
+#: ../../any.pm_.c:774
#, c-format
msgid ""
"Enter a user\n"
@@ -843,32 +855,32 @@ msgstr ""
"»çżëÀÚ ÀÔ·Â\n"
"%s"
-#: ../../any.pm_.c:773
+#: ../../any.pm_.c:775
msgid "Accept user"
msgstr "»çżëÀÚ Çă°Ą"
-#: ../../any.pm_.c:784
+#: ../../any.pm_.c:786
msgid "Real name"
msgstr "œÇÁŠ ÀÌž§"
-#: ../../any.pm_.c:785 ../../printerdrake.pm_.c:742
-#: ../../printerdrake.pm_.c:857
+#: ../../any.pm_.c:787 ../../printerdrake.pm_.c:849
+#: ../../printerdrake.pm_.c:964
msgid "User name"
msgstr "»çżëÀÚží"
-#: ../../any.pm_.c:788
+#: ../../any.pm_.c:790
msgid "Shell"
msgstr "ží·É ÇŰŒź±â"
-#: ../../any.pm_.c:790
+#: ../../any.pm_.c:792
msgid "Icon"
msgstr "ŸÆÀÌÄÜ"
-#: ../../any.pm_.c:817
+#: ../../any.pm_.c:819
msgid "Autologin"
msgstr "ÀÚ”ż·Î±ŚÀÎ"
-#: ../../any.pm_.c:818
+#: ../../any.pm_.c:820
msgid ""
"I can set up your computer to automatically log on one user.\n"
"Do you want to use this feature?"
@@ -876,54 +888,54 @@ msgstr ""
"ÀÚ”żÀž·Î ÆŻÁ€ »çżëÀÚ·ÎŒ­ ·Î±ŚÀΔǔ”·Ï ÇÒ Œö ÀÖœÀŽÏŽÙ.\n"
"ÀÌ·± ÆŻŒșÀ» żűÇÏŒŒżä?"
-#: ../../any.pm_.c:822
+#: ../../any.pm_.c:824
msgid "Choose the default user:"
msgstr "±âș» »çżëÀÚžŠ Œ±ĆĂÇÏŒŒżä:"
-#: ../../any.pm_.c:823
+#: ../../any.pm_.c:825
msgid "Choose the window manager to run:"
msgstr "»çżëÇÒ À©””żì žĆŽÏÀúžŠ Œ±ĆĂÇÏŒŒżä:"
-#: ../../any.pm_.c:838
+#: ../../any.pm_.c:840
msgid "Please choose a language to use."
msgstr "»çżëÇÒ ŸđŸîžŠ Œ±ĆĂÇŰ ÁÖŒŒżä."
-#: ../../any.pm_.c:840
+#: ../../any.pm_.c:842
msgid ""
"Mandrake Linux can support multiple languages. Select\n"
"the languages you would like to install. They will be available\n"
"when your installation is complete and you restart your system."
msgstr "ŒłÄĄÈÄ ŽÙž„ ŽÙž„ ŸđŸîžŠ Œ±ĆĂÇÒŒö ÀÖœÀŽÏŽÙ."
-#: ../../any.pm_.c:854 ../../install_steps_interactive.pm_.c:708
+#: ../../any.pm_.c:856 ../../install_steps_interactive.pm_.c:692
#: ../../standalone/drakxtv_.c:73
msgid "All"
msgstr "žđ”Î"
-#: ../../any.pm_.c:974
+#: ../../any.pm_.c:977
msgid "Allow all users"
msgstr "žđ”ç »çżëÀÚ Çăżë"
-#: ../../any.pm_.c:974
+#: ../../any.pm_.c:977
msgid "No sharing"
msgstr "șń°űÀŻ"
-#: ../../any.pm_.c:984 ../../standalone.pm_.c:57
+#: ../../any.pm_.c:987 ../../install_any.pm_.c:1183 ../../standalone.pm_.c:58
#, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "ÆŃĆ°Áö %s°Ą ÇÊżäÇŐŽÏŽÙ. ŒłÄĄÇÏ°ÚœÀŽÏ±î?"
-#: ../../any.pm_.c:987
+#: ../../any.pm_.c:990
msgid ""
"You can export using NFS or Samba. Please select which you'd like to use."
msgstr "NFSżÍ »ïčÙ Áß, ŸîŽÀ °ÍÀ» ÀÌżëÇÏœĂ°ÚœÀŽÏ±î?"
-#: ../../any.pm_.c:995 ../../standalone.pm_.c:61
+#: ../../any.pm_.c:998 ../../install_any.pm_.c:1188 ../../standalone.pm_.c:63
#, c-format
msgid "Mandatory package %s is missing"
msgstr "ÇÊŒö ÆŃĆ°Áö %s°Ą ŸűœÀŽÏŽÙ."
-#: ../../any.pm_.c:1001
+#: ../../any.pm_.c:1004
msgid ""
"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
@@ -932,41 +944,41 @@ msgid ""
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:1015
+#: ../../any.pm_.c:1018
msgid "Launch userdrake"
msgstr "»çżëÀÚ”ć·čÀÌĆ© œÇÇà"
-#: ../../any.pm_.c:1017
+#: ../../any.pm_.c:1020
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
msgstr ""
-#: ../../any.pm_.c:1068
+#: ../../any.pm_.c:1071
msgid "Welcome To Crackers"
msgstr "șžŸÈżĄ œĆ°æŸÈŸž"
-#: ../../any.pm_.c:1069
+#: ../../any.pm_.c:1072
msgid "Poor"
msgstr "ĂÖÀú"
-#: ../../any.pm_.c:1070 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1073 ../../mouse.pm_.c:31
msgid "Standard"
msgstr "Ç„ÁŰ"
-#: ../../any.pm_.c:1071
+#: ../../any.pm_.c:1074
msgid "High"
msgstr "łôÀœ"
-#: ../../any.pm_.c:1072
+#: ../../any.pm_.c:1075
msgid "Higher"
msgstr "Žő łôÀœ"
-#: ../../any.pm_.c:1073
+#: ../../any.pm_.c:1076
msgid "Paranoid"
msgstr "ĂÖ°í"
-#: ../../any.pm_.c:1076
+#: ../../any.pm_.c:1079
msgid ""
"This level is to be used with care. It makes your system more easy to use,\n"
"but very sensitive: it must not be used for a machine connected to others\n"
@@ -976,7 +988,7 @@ msgstr ""
"żëÀÌÇÏ°ÚÁöžž žĆżì čΰšÇÏ°Ô ÀÛ”żÇŐŽÏŽÙ: ÀÎĆÍłĘÀÌłȘ łŚÆźżśżĄ żŹ°á”È œĂœșĆÛżë\n"
"Àž·ÎŽÂ »çżëÇÏÁö ž¶ŒŒżä. ŸÏÈŁ±âŽÉÀÌ ŸűœÀŽÏŽÙ."
-#: ../../any.pm_.c:1079
+#: ../../any.pm_.c:1082
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -984,7 +996,7 @@ msgstr ""
"ŸÏÈŁ±âŽÉÀÌ Àûżë”ÇÁöžž, łŚÆźżśżĄ żŹ°á”È ÄÄÇ»ĆÍ·Î »çżëÇÏ±âżĄŽÂ ŸÆÁś ÀûÀęÇÏÁö ŸÊ"
"œÀŽÏŽÙ."
-#: ../../any.pm_.c:1080
+#: ../../any.pm_.c:1083
#, fuzzy
msgid ""
"This is the standard security recommended for a computer that will be used "
@@ -993,13 +1005,13 @@ msgstr ""
"ÀÌ ”î±ȚÀș ĆŹ¶óÀÌŸđÆź·ÎŒ­ ÀÎĆͳʿĄ ÁąŒÓÇώ”„ ÀûŽçÇŃ Ç„ÁŰ șžŸÈ”î±ȚÀÔŽÏŽÙ.\n"
"ÀÌ ”î±ȚșÎĆÍ ÀûÁ€ÇŃ œĂœșĆÛ șžŸÈ ÁĄ°Ë±âŽÉÀÌ ÀÖœÀŽÏŽÙ. "
-#: ../../any.pm_.c:1081
+#: ../../any.pm_.c:1084
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr ""
-#: ../../any.pm_.c:1082
+#: ../../any.pm_.c:1085
#, fuzzy
msgid ""
"With this security level, the use of this system as a server becomes "
@@ -1013,7 +1025,7 @@ msgstr ""
"ÀÌ șžŸÈ”î±ȚÀș żÜșÎÀÇ ĆŹ¶óÀÌŸđÆź”éÀÇ ÁąŒÓÀ» čȚŸÆ”éÀ̎”„ À֟ \n"
"ĂæșĐÈś łôÀș șžŸÈ”î±ȚÀÔŽÏŽÙ. "
-#: ../../any.pm_.c:1085
+#: ../../any.pm_.c:1088
#, fuzzy
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
@@ -1022,28 +1034,28 @@ msgstr ""
"șžŸÈ 4 ”î±ȚÀÌ Àûżë”ËŽÏŽÙ. œĂœșĆÛÀÌ żÏÀüÈś żÜșÎÁą±ÙżĄŒ­ °Ęžź”ËŽÏŽÙ.\n"
"ĂÖ°í șžŸÈ ŒöÁŰÀÔŽÏŽÙ."
-#: ../../any.pm_.c:1091
+#: ../../any.pm_.c:1094
msgid "DrakSec Basic Options"
msgstr "DrakSec ±âș» żÉŒÇ"
-#: ../../any.pm_.c:1092
+#: ../../any.pm_.c:1095
msgid "Please choose the desired security level"
msgstr "ÈńžÁÇÏŽÂ șžŸÈ ŽÜ°èžŠ Œ±ĆĂÇŰ ÁÖŒŒżä."
-#: ../../any.pm_.c:1095
+#: ../../any.pm_.c:1098
msgid "Security level"
msgstr "șžŸÈ ŒöÁŰ"
-#: ../../any.pm_.c:1097
+#: ../../any.pm_.c:1100
msgid "Use libsafe for servers"
msgstr "Œ­čöżĄ ŽëÇŰ libsafe »çżë"
-#: ../../any.pm_.c:1098
+#: ../../any.pm_.c:1101
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr "čöÆÛ łŃħÀÌłȘ ÇüœÄÈ­ čźÀÚż­ °ű°ĘÀ» ž·ŽÂ ¶óÀÌșê·Żžź."
-#: ../../any.pm_.c:1099
+#: ../../any.pm_.c:1102
msgid "Security Administrator (login or email)"
msgstr "șžŸÈ °üžźÀÚ (·Î±ŚÀÎ ¶ÇŽÂ ÀÌžȚÀÏ)"
@@ -1075,57 +1087,57 @@ msgstr ""
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:935
+#: ../../bootloader.pm_.c:932
msgid "Welcome to GRUB the operating system chooser!"
msgstr "čĘ°©œÀŽÏŽÙ. żîż”ĂŒÁŠ Œ±Ćñâ, ±Ś·ŽÀÔŽÏŽÙ."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:938
+#: ../../bootloader.pm_.c:935
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr ""
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:941
+#: ../../bootloader.pm_.c:938
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr ""
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:941
msgid "commands before booting, or 'c' for a command-line."
msgstr ""
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:947
+#: ../../bootloader.pm_.c:944
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr ""
-#: ../../bootloader.pm_.c:951
+#: ../../bootloader.pm_.c:948
msgid "not enough room in /boot"
msgstr "/bootżĄ °ű°ŁÀÌ șÎÁ·ÇŐŽÏŽÙ."
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1051
+#: ../../bootloader.pm_.c:1048
msgid "Desktop"
msgstr "”„œșĆ©ĆŸ"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1053
+#: ../../bootloader.pm_.c:1050
msgid "Start Menu"
msgstr "œĂÀÛ žȚŽș"
-#: ../../bootloader.pm_.c:1072
+#: ../../bootloader.pm_.c:1069
#, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "Ąž%sĄčÆÄÆŒŒÇżĄ șÎÆź·ÎŽőžŠ ŒłÄĄÇÒ Œö ŸűœÀŽÏŽÙ.\n"
-#: ../../bootlook.pm_.c:45
+#: ../../bootlook.pm_.c:45 ../../standalone/draksplash_.c:25
msgid "no help implemented yet.\n"
msgstr "ŸÆÁś ””żòž»ÀÌ ÁŰșń”ÇÁö ŸÊŸÒœÀŽÏŽÙ.\n"
@@ -1133,8 +1145,8 @@ msgstr "ŸÆÁś ””żòž»ÀÌ ÁŰșń”ÇÁö ŸÊŸÒœÀŽÏŽÙ.\n"
msgid "Boot Style Configuration"
msgstr "șÎÆĂ œșĆžÀÏ ŒłÁ€"
-#: ../../bootlook.pm_.c:78 ../../harddrake/ui.pm_.c:59
-#: ../../harddrake/ui.pm_.c:60 ../../standalone/drakfloppy_.c:81
+#: ../../bootlook.pm_.c:78 ../../harddrake/ui.pm_.c:62
+#: ../../harddrake/ui.pm_.c:63 ../../standalone/drakfloppy_.c:81
#: ../../standalone/logdrake_.c:101
msgid "/_File"
msgstr "/ÆÄÀÏ(_F)"
@@ -1144,7 +1156,7 @@ msgstr "/ÆÄÀÏ(_F)"
msgid "/File/_Quit"
msgstr "/ÆÄÀÏ(F)/ÁŸ·á(_Q)"
-#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:60
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:63
#: ../../standalone/drakfloppy_.c:82 ../../standalone/logdrake_.c:107
msgid "<control>Q"
msgstr "<control>Q"
@@ -1185,92 +1197,99 @@ msgstr "ĆŚž¶ ŒłÄĄ"
msgid "Display theme under console"
msgstr "ÄÜŒÖÇÏżĄŒ­ ĆŚž¶ șžÀ̱â"
-#: ../../bootlook.pm_.c:166
+#: ../../bootlook.pm_.c:145
+#, fuzzy
+msgid "Create new theme"
+msgstr "»ő ÆÄÆŒŒÇ žž”é±â"
+
+#: ../../bootlook.pm_.c:169
msgid "Can't create Bootsplash preview"
msgstr "șÎÆźœșÇĂ·ĄœŹ čÌžźșž±âžŠ »ęŒșÇÒ Œö ŸűœÀŽÏŽÙ."
-#: ../../bootlook.pm_.c:166 ../../bootlook.pm_.c:184 ../../bootlook.pm_.c:187
-#: ../../bootlook.pm_.c:190 ../../bootlook.pm_.c:220 ../../bootlook.pm_.c:222
-#: ../../bootlook.pm_.c:232 ../../bootlook.pm_.c:241 ../../bootlook.pm_.c:248
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:336
-#: ../../diskdrake/interactive.pm_.c:351 ../../diskdrake/interactive.pm_.c:464
-#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../bootlook.pm_.c:169 ../../bootlook.pm_.c:187 ../../bootlook.pm_.c:190
+#: ../../bootlook.pm_.c:193 ../../bootlook.pm_.c:223 ../../bootlook.pm_.c:225
+#: ../../bootlook.pm_.c:235 ../../bootlook.pm_.c:244 ../../bootlook.pm_.c:251
+#: ../../diskdrake/dav.pm_.c:73 ../../diskdrake/hd_gtk.pm_.c:116
+#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/interactive.pm_.c:355
+#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/interactive.pm_.c:474
+#: ../../diskdrake/smbnfs_gtk.pm_.c:45 ../../fsedit.pm_.c:239
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:365 ../../interactive/http.pm_.c:119
-#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:80
+#: ../../interactive/http.pm_.c:119 ../../interactive/http.pm_.c:120
+#: ../../standalone/draksplash_.c:32
msgid "Error"
msgstr "żÀ·ù"
-#: ../../bootlook.pm_.c:183
+#: ../../bootlook.pm_.c:186
#, c-format
msgid "Backup %s to %s.old"
msgstr "%sžŠ %s.old·Î čéŸś"
-#: ../../bootlook.pm_.c:184
+#: ../../bootlook.pm_.c:187
msgid "unable to backup lilo message"
msgstr "ž±·Î žȚœĂÁöžŠ čéŸśÇÒ Œö ŸűœÀŽÏŽÙ."
-#: ../../bootlook.pm_.c:186
+#: ../../bootlook.pm_.c:189
#, c-format
msgid "Copy %s to %s"
msgstr "%sžŠ %s·Î șč»ç"
-#: ../../bootlook.pm_.c:187
+#: ../../bootlook.pm_.c:190
msgid "can't change lilo message"
msgstr "ž±·Î žȚœĂÁöžŠ șŻ°æÇÒ Œö ŸűœÀŽÏŽÙ."
-#: ../../bootlook.pm_.c:190
+#: ../../bootlook.pm_.c:193
msgid "Lilo message not found"
msgstr "ž±·Î žȚœĂÁöžŠ ĂŁÀ» Œö ŸűœÀŽÏŽÙ."
-#: ../../bootlook.pm_.c:220
+#: ../../bootlook.pm_.c:223
msgid "Can't write /etc/sysconfig/bootsplash."
msgstr ""
-#: ../../bootlook.pm_.c:220
+#: ../../bootlook.pm_.c:223
#, c-format
msgid "Write %s"
msgstr "%s ±â·Ï"
-#: ../../bootlook.pm_.c:222
+#: ../../bootlook.pm_.c:225
msgid ""
"Can't write /etc/sysconfig/bootsplash\n"
"File not found."
msgstr ""
-#: ../../bootlook.pm_.c:233
+#: ../../bootlook.pm_.c:236
#, c-format
msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
msgstr ""
-#: ../../bootlook.pm_.c:236
+#: ../../bootlook.pm_.c:239
#, c-format
-msgid "Make initrd 'mkinird -f /boot/initrd-%s.img %s'."
+msgid "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
msgstr ""
-#: ../../bootlook.pm_.c:242
+#: ../../bootlook.pm_.c:245
msgid ""
"Can't relaunch LiLo!\n"
"Launch \"lilo\" as root in command line to complete LiLo theme installation."
msgstr ""
-#: ../../bootlook.pm_.c:246
+#: ../../bootlook.pm_.c:249
msgid "Relaunch 'lilo'"
msgstr "ž±·Î ÀçœÇÇà"
-#: ../../bootlook.pm_.c:248
+#: ../../bootlook.pm_.c:251 ../../standalone/draksplash_.c:161
+#: ../../standalone/draksplash_.c:330 ../../standalone/draksplash_.c:454
msgid "Notice"
msgstr "ÁÖÀÇ"
-#: ../../bootlook.pm_.c:249
+#: ../../bootlook.pm_.c:252
msgid "LiLo and Bootsplash themes installation successfull"
msgstr ""
-#: ../../bootlook.pm_.c:249
+#: ../../bootlook.pm_.c:252
msgid "Theme installation failed!"
msgstr "ĆŚž¶ ŒłÄĄ œÇÆĐ!"
-#: ../../bootlook.pm_.c:258
+#: ../../bootlook.pm_.c:261
#, c-format
msgid ""
"You are currently using %s as your boot manager.\n"
@@ -1279,22 +1298,21 @@ msgstr ""
"ÇöÀç șÎÆź °üžźÀÚ·Î %sžŠ »çżëÇÏ°í ÀÖœÀŽÏŽÙ.\n"
"ŒłÁ€ ž¶čę»çžŠ œÇÇàÇÏ·Ážé ĄžŒłÁ€ĄčÀ» Ž©žŁŒŒżä."
-#: ../../bootlook.pm_.c:260 ../../standalone/drakbackup_.c:2352
-#: ../../standalone/drakbackup_.c:2362 ../../standalone/drakbackup_.c:2372
-#: ../../standalone/drakbackup_.c:2380 ../../standalone/drakgw_.c:592
-#: ../../standalone/tinyfirewall_.c:58
+#: ../../bootlook.pm_.c:263 ../../standalone/drakbackup_.c:2427
+#: ../../standalone/drakbackup_.c:2437 ../../standalone/drakbackup_.c:2447
+#: ../../standalone/drakbackup_.c:2455 ../../standalone/drakgw_.c:530
msgid "Configure"
msgstr "ŒłÁ€"
-#: ../../bootlook.pm_.c:267
+#: ../../bootlook.pm_.c:270
msgid "Splash selection"
msgstr "œșÇĂ·ĄœŹ Œ±ĆĂ"
-#: ../../bootlook.pm_.c:270
+#: ../../bootlook.pm_.c:273
msgid "Themes"
msgstr "ĆŚž¶"
-#: ../../bootlook.pm_.c:272
+#: ../../bootlook.pm_.c:275
msgid ""
"\n"
"Select a theme for\n"
@@ -1303,44 +1321,44 @@ msgid ""
"them separatly"
msgstr ""
-#: ../../bootlook.pm_.c:275
+#: ../../bootlook.pm_.c:278
msgid "Lilo screen"
msgstr "ž±·Î œșĆ©ž°"
-#: ../../bootlook.pm_.c:279
+#: ../../bootlook.pm_.c:283
msgid "Bootsplash"
msgstr "șÎÆźœșÇĂ·čœŹ"
-#: ../../bootlook.pm_.c:314
+#: ../../bootlook.pm_.c:318
msgid "System mode"
msgstr "œĂœșĆÛ žđ”ć"
-#: ../../bootlook.pm_.c:316
+#: ../../bootlook.pm_.c:320
msgid "Launch the graphical environment when your system starts"
msgstr "œĂÀÛÇÒ ¶§ X-Window œÇÇà"
-#: ../../bootlook.pm_.c:321
+#: ../../bootlook.pm_.c:325
msgid "No, I don't want autologin"
msgstr "ŸÆŽÏżÀ, ÀÚ”ż·Î±ŚÀÎÀ» »çżëÇÏÁö ŸÊœÀŽÏŽÙ."
-#: ../../bootlook.pm_.c:323
+#: ../../bootlook.pm_.c:327
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "żč, ÀÚ”ż·Î±ŚÀÎÀ» »çżëÇŐŽÏŽÙ."
-#: ../../bootlook.pm_.c:333 ../../network/netconnect.pm_.c:101
+#: ../../bootlook.pm_.c:337 ../../network/netconnect.pm_.c:101
#: ../../standalone/drakTermServ_.c:173 ../../standalone/drakTermServ_.c:300
-#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:3513
-#: ../../standalone/drakbackup_.c:4290 ../../standalone/drakconnect_.c:108
+#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4191
+#: ../../standalone/drakbackup_.c:4952 ../../standalone/drakconnect_.c:108
#: ../../standalone/drakconnect_.c:140 ../../standalone/drakconnect_.c:296
#: ../../standalone/drakconnect_.c:435 ../../standalone/drakconnect_.c:521
#: ../../standalone/drakconnect_.c:564 ../../standalone/drakconnect_.c:667
#: ../../standalone/drakfloppy_.c:376 ../../standalone/drakfont_.c:612
#: ../../standalone/drakfont_.c:799 ../../standalone/drakfont_.c:876
-#: ../../standalone/drakfont_.c:963 ../../standalone/logdrake_.c:521
+#: ../../standalone/drakfont_.c:963 ../../standalone/logdrake_.c:519
msgid "OK"
msgstr "ÈźÀÎ"
-#: ../../bootlook.pm_.c:403
+#: ../../bootlook.pm_.c:407
#, c-format
msgid "can not open /etc/inittab for reading: %s"
msgstr "Ąž/etc/inittabĄčÆÄÀÏÀ» ÀĐÀ» Œö ŸűœÀŽÏŽÙ: %s"
@@ -1438,48 +1456,53 @@ msgstr "żÀœșÆźžźŸÆ"
msgid "United States"
msgstr "č̱č"
-#: ../../detect_devices.pm_.c:599 ../../detect_devices.pm_.c:641
-#: ../../detect_devices.pm_.c:803
-msgid "Unknown Model"
-msgstr "ŸË Œö ŸűŽÂ žđ”š"
-
#: ../../diskdrake/dav.pm_.c:23
#, fuzzy
msgid "New"
msgstr "»ő·Î žž”é±â"
-#: ../../diskdrake/dav.pm_.c:57
+#: ../../diskdrake/dav.pm_.c:59 ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/smbnfs_gtk.pm_.c:81
+msgid "Unmount"
+msgstr "Ÿđž¶żîÆź"
+
+#: ../../diskdrake/dav.pm_.c:60 ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/smbnfs_gtk.pm_.c:82
+msgid "Mount"
+msgstr "ž¶żîÆź"
+
+#: ../../diskdrake/dav.pm_.c:61
msgid "Server"
msgstr "Œ­čö"
-#: ../../diskdrake/dav.pm_.c:58 ../../diskdrake/interactive.pm_.c:375
-#: ../../diskdrake/interactive.pm_.c:558 ../../diskdrake/interactive.pm_.c:585
+#: ../../diskdrake/dav.pm_.c:62 ../../diskdrake/interactive.pm_.c:379
+#: ../../diskdrake/interactive.pm_.c:568 ../../diskdrake/interactive.pm_.c:595
#: ../../diskdrake/removable.pm_.c:24 ../../diskdrake/removable_gtk.pm_.c:15
#: ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr "ž¶żîÆź À§ÄĄ"
-#: ../../diskdrake/dav.pm_.c:68
+#: ../../diskdrake/dav.pm_.c:81
#, fuzzy
msgid "Please enter the WebDAV server URL"
msgstr "CD ·čÄÚŽő ŒÓ””žŠ ÀÔ·ÂÇÏŒŒżä."
-#: ../../diskdrake/dav.pm_.c:71
+#: ../../diskdrake/dav.pm_.c:84
msgid "The URL must begin with http:// or https://"
msgstr ""
-#: ../../diskdrake/dav.pm_.c:92
+#: ../../diskdrake/dav.pm_.c:105
#, fuzzy
msgid "Server: "
msgstr "Œ­čö"
-#: ../../diskdrake/dav.pm_.c:93 ../../diskdrake/interactive.pm_.c:435
-#: ../../diskdrake/interactive.pm_.c:1079
-#: ../../diskdrake/interactive.pm_.c:1153
+#: ../../diskdrake/dav.pm_.c:106 ../../diskdrake/interactive.pm_.c:440
+#: ../../diskdrake/interactive.pm_.c:1089
+#: ../../diskdrake/interactive.pm_.c:1164
msgid "Mount point: "
msgstr "ž¶żîÆź À§ÄĄ: "
-#: ../../diskdrake/dav.pm_.c:94 ../../diskdrake/interactive.pm_.c:1159
+#: ../../diskdrake/dav.pm_.c:107 ../../diskdrake/interactive.pm_.c:1170
#, c-format
msgid "Options: %s"
msgstr "żÉŒÇ”é: %s"
@@ -1488,8 +1511,9 @@ msgstr "żÉŒÇ”é: %s"
msgid "Please make a backup of your data first"
msgstr "žŐÀú ”„ÀÌĆÍžŠ čéŸśÇÏŒŒżä."
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:924
-#: ../../diskdrake/interactive.pm_.c:933 ../../diskdrake/interactive.pm_.c:999
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:934
+#: ../../diskdrake/interactive.pm_.c:943
+#: ../../diskdrake/interactive.pm_.c:1009
msgid "Read carefully!"
msgstr "ÁÖÀDZí°Ô ÀĐÀžŒŒżä!"
@@ -1528,10 +1552,15 @@ msgid "Please click on a partition"
msgstr "ÆÄÆŒŒÇÀ» ĆŹžŻÇÏŒŒżä"
#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
-#: ../../install_steps_gtk.pm_.c:471
+#: ../../install_steps_gtk.pm_.c:465
msgid "Details"
msgstr "»óŒŒŒłží"
+#: ../../diskdrake/hd_gtk.pm_.c:252
+#, fuzzy
+msgid "No hard drives found"
+msgstr "ÇÁž°ĆÍžŠ ĂŁÀ» Œö ŸűœÀŽÏŽÙ!"
+
#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Ext2"
msgstr "Ext2"
@@ -1556,13 +1585,13 @@ msgstr "SunOS"
msgid "Swap"
msgstr "œșżÒ"
-#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1105
msgid "Empty"
msgstr "șó°ű°Ł"
-#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:331
-#: ../../install_steps_gtk.pm_.c:389 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1679
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:325
+#: ../../install_steps_gtk.pm_.c:383 ../../mouse.pm_.c:165
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1754
msgid "Other"
msgstr "±âĆž"
@@ -1570,12 +1599,12 @@ msgstr "±âĆž"
msgid "Filesystem types:"
msgstr "ÆÄÀÏœĂœșĆÛ ÀŻÇü:"
-#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:397
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:402
msgid "Create"
msgstr "»ęŒș"
-#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:376
-#: ../../diskdrake/interactive.pm_.c:521 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:380
+#: ../../diskdrake/interactive.pm_.c:531 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "ÀŻÇü"
@@ -1585,7 +1614,7 @@ msgstr "ÀŻÇü"
msgid "Use ``%s'' instead"
msgstr "ŽëœĆżĄ Ąž%sĄčžŠ »çżëÇŐŽÏŽÙ"
-#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:389
msgid "Delete"
msgstr "»èÁŠ"
@@ -1593,78 +1622,78 @@ msgstr "»èÁŠ"
msgid "Use ``Unmount'' first"
msgstr "ĄžŸđž¶żîÆźĄčžŠ žŐÀú »çżëÇÏŒŒżä"
-#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:513
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:518
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
msgstr "%sÀÇ ÆÄÆŒŒÇ ÀŻÇüÀ» șŻ°æÈÄ ÀÌ ÆÄÆŒŒÇł»ÀÇ žđ”ç Àڷដ ÀÒ°Ô ”ËŽÏŽÙ."
-#: ../../diskdrake/interactive.pm_.c:173
+#: ../../diskdrake/interactive.pm_.c:174
msgid "Choose a partition"
msgstr "ÆÄÆŒŒÇ Œ±ĆĂ"
-#: ../../diskdrake/interactive.pm_.c:173
+#: ../../diskdrake/interactive.pm_.c:174
msgid "Choose another partition"
msgstr "Ăß°Ą ÆÄÆŒŒÇ Œ±ĆĂ"
-#: ../../diskdrake/interactive.pm_.c:198
+#: ../../diskdrake/interactive.pm_.c:199
msgid "Exit"
msgstr "ÁŸ·á"
-#: ../../diskdrake/interactive.pm_.c:220
+#: ../../diskdrake/interactive.pm_.c:221
msgid "Toggle to expert mode"
msgstr "Àüčź°Ą žđ”ć·Î ÀüÈŻ"
-#: ../../diskdrake/interactive.pm_.c:220
+#: ../../diskdrake/interactive.pm_.c:221
msgid "Toggle to normal mode"
msgstr "ÀÏčĘ žđ”ć·Î ÀüÈŻ"
-#: ../../diskdrake/interactive.pm_.c:220
+#: ../../diskdrake/interactive.pm_.c:221
msgid "Undo"
msgstr "”ǔ螟±â"
-#: ../../diskdrake/interactive.pm_.c:239
+#: ../../diskdrake/interactive.pm_.c:240
msgid "Continue anyway?"
msgstr "°èŒÓÇÏœĂ°ÚœÀŽÏ±î?"
-#: ../../diskdrake/interactive.pm_.c:244
+#: ../../diskdrake/interactive.pm_.c:245
msgid "Quit without saving"
msgstr "ÀúÀćÇÏÁö ŸÊ°í ÁŸ·áÇÏœĂ°ÚœÀŽÏ±î?"
-#: ../../diskdrake/interactive.pm_.c:244
+#: ../../diskdrake/interactive.pm_.c:245
msgid "Quit without writing the partition table?"
msgstr "ÆÄÆŒŒÇÀ» ±â·ÏÇÏÁö ŸÊ°í ÁŸ·áÇÏœĂ°ÚœÀŽÏ±î?"
-#: ../../diskdrake/interactive.pm_.c:249
+#: ../../diskdrake/interactive.pm_.c:250
msgid "Do you want to save /etc/fstab modifications"
msgstr "Ąž/etc/fstabĄčÀÇ șŻ°æ»çÇŚÀ» ÀúÀćÇÏœĂ°ÚœÀŽÏ±î?"
-#: ../../diskdrake/interactive.pm_.c:261
+#: ../../diskdrake/interactive.pm_.c:263
msgid "Auto allocate"
msgstr "ÀÚ”ż ÇÒŽç"
-#: ../../diskdrake/interactive.pm_.c:261
+#: ../../diskdrake/interactive.pm_.c:263
msgid "Clear all"
msgstr "žđ”Î »èÁŠ"
-#: ../../diskdrake/interactive.pm_.c:261
+#: ../../diskdrake/interactive.pm_.c:263
#: ../../install_steps_interactive.pm_.c:214
msgid "More"
msgstr "Ăß°Ą żÉŒÇ"
-#: ../../diskdrake/interactive.pm_.c:264
+#: ../../diskdrake/interactive.pm_.c:267
msgid "Hard drive information"
msgstr "ÇÏ”ć ”đœșĆ© Á€șž"
-#: ../../diskdrake/interactive.pm_.c:294
+#: ../../diskdrake/interactive.pm_.c:298
msgid "All primary partitions are used"
msgstr "žđ”ç ÁÖÆÄÆŒŒÇÀÌ »çżëÁßÀÔŽÏŽÙ."
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:299
msgid "I can't add any more partition"
msgstr "ŽőÀÌ»ó ÆÄÆŒŒÇÀ» Ăß°ĄÇÒ Œö ŸűœÀŽÏŽÙ."
-#: ../../diskdrake/interactive.pm_.c:296
+#: ../../diskdrake/interactive.pm_.c:300
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -1672,31 +1701,31 @@ msgstr ""
"Žő žčÀș ÆÄÆŒŒÇÀ» žž”ćœÇ·Ážé, ÈźÀć ÆÄÆŒŒÇÀ» žž”éŒö ÀÖ””·Ï ÁÖÆÄÆŒŒÇ ÇÏłȘžŠ Áöżì"
"ŒŒżä."
-#: ../../diskdrake/interactive.pm_.c:306
+#: ../../diskdrake/interactive.pm_.c:310
msgid "Save partition table"
msgstr "ÆÄÆŒŒÇ ĆŚÀÌșí ÀúÀć"
-#: ../../diskdrake/interactive.pm_.c:307
+#: ../../diskdrake/interactive.pm_.c:311
msgid "Restore partition table"
msgstr "ÆÄÆŒŒÇ ĆŚÀÌșí ș豞"
-#: ../../diskdrake/interactive.pm_.c:308
+#: ../../diskdrake/interactive.pm_.c:312
msgid "Rescue partition table"
msgstr "ÆÄÆŒŒÇ ĆŚÀÌșí ÀÀ±Țóĥ"
-#: ../../diskdrake/interactive.pm_.c:310
+#: ../../diskdrake/interactive.pm_.c:314
msgid "Reload partition table"
msgstr "ÆÄÆŒŒÇ ĆŚÀÌșí ŽÙœĂ Àбâ"
-#: ../../diskdrake/interactive.pm_.c:315
+#: ../../diskdrake/interactive.pm_.c:319
msgid "Removable media automounting"
msgstr "Ć»ÂűœÄ čÌ”đŸî ÀÚ”ż ž¶żîÆź"
-#: ../../diskdrake/interactive.pm_.c:324 ../../diskdrake/interactive.pm_.c:344
+#: ../../diskdrake/interactive.pm_.c:328 ../../diskdrake/interactive.pm_.c:348
msgid "Select file"
msgstr "ÆÄÀÏÀ» Œ±ĆĂÇÏŒŒżä."
-#: ../../diskdrake/interactive.pm_.c:331
+#: ../../diskdrake/interactive.pm_.c:335
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1704,11 +1733,11 @@ msgstr ""
"čéŸś ÆÄÆŒŒÇ ĆŚÀÌșí Ć©±â°Ą °°Áö ŸÊœÀŽÏŽÙ.\n"
"°èŒÓ ÇÏœĂ°ÚœÀŽÏ±î?"
-#: ../../diskdrake/interactive.pm_.c:345
+#: ../../diskdrake/interactive.pm_.c:349
msgid "Warning"
msgstr "°æ°í"
-#: ../../diskdrake/interactive.pm_.c:346
+#: ../../diskdrake/interactive.pm_.c:350
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1716,112 +1745,104 @@ msgstr ""
"ÇĂ·ÎÇÇ ”đœșĆ©žŠ ”ć¶óÀÌșêżĄ łÖÀžŒŒżä\n"
"ÇĂ·ÎÇÇ ”đœșĆ©ÀÇ žđ”ç Àڷដ ÀÒ°Ô ”ËŽÏŽÙ."
-#: ../../diskdrake/interactive.pm_.c:357
+#: ../../diskdrake/interactive.pm_.c:361
msgid "Trying to rescue partition table"
msgstr "ÆÄÆŒŒÇ ĆŚÀÌșí ș豞 œĂ”” Áß..."
-#: ../../diskdrake/interactive.pm_.c:363
+#: ../../diskdrake/interactive.pm_.c:367
msgid "Detailed information"
msgstr "ÀÚŒŒÇŃ Á€șž"
-#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:652
+#: ../../diskdrake/interactive.pm_.c:382 ../../diskdrake/interactive.pm_.c:662
msgid "Resize"
msgstr "Ć©±âÁ¶Á€"
-#: ../../diskdrake/interactive.pm_.c:379 ../../diskdrake/interactive.pm_.c:705
+#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/interactive.pm_.c:715
msgid "Move"
msgstr "ÀÌ”ż"
-#: ../../diskdrake/interactive.pm_.c:380
+#: ../../diskdrake/interactive.pm_.c:384
msgid "Format"
msgstr "ÆśžË"
-#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/smbnfs_gtk.pm_.c:82
-msgid "Mount"
-msgstr "ž¶żîÆź"
-
-#: ../../diskdrake/interactive.pm_.c:382
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Add to RAID"
msgstr "RAIDżĄ Ăß°Ą"
-#: ../../diskdrake/interactive.pm_.c:383
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Add to LVM"
msgstr "LVMżĄ Ăß°Ą"
-#: ../../diskdrake/interactive.pm_.c:384 ../../diskdrake/smbnfs_gtk.pm_.c:81
-msgid "Unmount"
-msgstr "Ÿđž¶żîÆź"
-
-#: ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/interactive.pm_.c:390
msgid "Remove from RAID"
msgstr "RAID·ÎșÎĆÍ ÁŠ°Ć"
-#: ../../diskdrake/interactive.pm_.c:387
+#: ../../diskdrake/interactive.pm_.c:391
msgid "Remove from LVM"
msgstr "LVMÀž·ÎșÎĆÍ ÁŠ°Ć"
-#: ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/interactive.pm_.c:392
msgid "Modify RAID"
msgstr "RAID ŒöÁ€"
-#: ../../diskdrake/interactive.pm_.c:389
+#: ../../diskdrake/interactive.pm_.c:393
msgid "Use for loopback"
msgstr "·çÇÁčéÀž·Î »çżë"
-#: ../../diskdrake/interactive.pm_.c:428
+#: ../../diskdrake/interactive.pm_.c:433
msgid "Create a new partition"
msgstr "»ő ÆÄÆŒŒÇ žž”é±â"
-#: ../../diskdrake/interactive.pm_.c:431
+#: ../../diskdrake/interactive.pm_.c:436
msgid "Start sector: "
msgstr "œĂÀÛ ŒœĆÍ: "
-#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:805
+#: ../../diskdrake/interactive.pm_.c:438 ../../diskdrake/interactive.pm_.c:815
msgid "Size in MB: "
msgstr "Ć©±â(MB) :"
-#: ../../diskdrake/interactive.pm_.c:434 ../../diskdrake/interactive.pm_.c:806
+#: ../../diskdrake/interactive.pm_.c:439 ../../diskdrake/interactive.pm_.c:816
msgid "Filesystem type: "
msgstr "ÆÄÀÏœĂœșĆÛ ÀŻÇü: "
-#: ../../diskdrake/interactive.pm_.c:439
+#: ../../diskdrake/interactive.pm_.c:444
msgid "Preference: "
msgstr "»çżëÀÚ Á€ÀÇ"
-#: ../../diskdrake/interactive.pm_.c:464
+#: ../../diskdrake/interactive.pm_.c:469
msgid ""
"You can't create a new partition\n"
"(since you reached the maximal number of primary partitions).\n"
"First remove a primary partition and create an extended partition."
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:494
+#: ../../diskdrake/interactive.pm_.c:499
msgid "Remove the loopback file?"
msgstr "·çÇÁčé ÆÄÀÏÀ» ÁŠ°ĆÇŐŽÏ±î?"
-#: ../../diskdrake/interactive.pm_.c:519
+#: ../../diskdrake/interactive.pm_.c:529
msgid "Change partition type"
msgstr "ÆÄÆŒŒÇ ÀŻÇü șŻ°æ"
-#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:530 ../../diskdrake/removable.pm_.c:48
msgid "Which filesystem do you want?"
msgstr "Ÿî¶Č ÆÄÀÏ œĂœșĆÛÀ» żűÇÏŒŒżä?"
-#: ../../diskdrake/interactive.pm_.c:526
+#: ../../diskdrake/interactive.pm_.c:536
msgid "Switching from ext2 to ext3"
msgstr "EXT2żĄŒ­ EXT3·Î șŻ°æ"
-#: ../../diskdrake/interactive.pm_.c:556
+#: ../../diskdrake/interactive.pm_.c:566
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "%sÆÄÀÏÀ» Ÿî”𿥠·çÇÁčéÀž·Î ž¶żîÆź ÇÏœĂ°ÚœÀŽÏ±î?"
-#: ../../diskdrake/interactive.pm_.c:557
+#: ../../diskdrake/interactive.pm_.c:567
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "ÀćÄĄ %sžŠ Ÿî”𿥠ž¶żîÆź ÇÏœĂ°ÚœÀŽÏ±î?"
-#: ../../diskdrake/interactive.pm_.c:563
+#: ../../diskdrake/interactive.pm_.c:573
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1830,135 +1851,135 @@ msgstr ""
"ŽÙ.\n"
"loopbackÀ» žŐÀú ÁŠ°ĆÇÏŒŒżä."
-#: ../../diskdrake/interactive.pm_.c:584
+#: ../../diskdrake/interactive.pm_.c:594
#, fuzzy, c-format
msgid "Where do you want to mount %s?"
msgstr "ÀćÄĄ %sžŠ Ÿî”𿥠ž¶żîÆź ÇÏœĂ°ÚœÀŽÏ±î?"
-#: ../../diskdrake/interactive.pm_.c:608
+#: ../../diskdrake/interactive.pm_.c:618
msgid "Computing FAT filesystem bounds"
msgstr "””œș ÆÄÀÏœĂœșĆÛÀÇ čüÀ§ °è»êÁß"
-#: ../../diskdrake/interactive.pm_.c:608 ../../diskdrake/interactive.pm_.c:667
-#: ../../install_interactive.pm_.c:131
+#: ../../diskdrake/interactive.pm_.c:618 ../../diskdrake/interactive.pm_.c:677
+#: ../../install_interactive.pm_.c:133
msgid "Resizing"
msgstr "Ć©±âșŻ°æ"
-#: ../../diskdrake/interactive.pm_.c:640
+#: ../../diskdrake/interactive.pm_.c:650
msgid "This partition is not resizeable"
msgstr "ÀÌ ÆÄÆŒŒÇÀș Ć©±âșŻ°æÀÌ Çăżë”ÇÁö ŸÊœÀŽÏŽÙ."
-#: ../../diskdrake/interactive.pm_.c:645
+#: ../../diskdrake/interactive.pm_.c:655
msgid "All data on this partition should be backed-up"
msgstr "ÀÌ ÆÄÆŒŒÇÀÇ žđ”ç ”„ÀÌĆžžŠ čéŸśÇÏż©Ÿß ÇŐŽÏŽÙ."
-#: ../../diskdrake/interactive.pm_.c:647
+#: ../../diskdrake/interactive.pm_.c:657
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr "%s ÆÄÆŒŒÇÀÇ Ć©±âžŠ șŻ°æÇÏžé, žđ”ç ”„ÀÌĆžžŠ ÀҰԔˎώÙ."
-#: ../../diskdrake/interactive.pm_.c:652
+#: ../../diskdrake/interactive.pm_.c:662
msgid "Choose the new size"
msgstr "»ő·Îżî Ć©±âžŠ Œ±ĆĂÇŰ ÁÖŒŒżä"
-#: ../../diskdrake/interactive.pm_.c:653
+#: ../../diskdrake/interactive.pm_.c:663
msgid "New size in MB: "
msgstr "»ő·Îżî żë·ź(MB):"
-#: ../../diskdrake/interactive.pm_.c:706
+#: ../../diskdrake/interactive.pm_.c:716
msgid "Which disk do you want to move it to?"
msgstr "Ÿî¶Č ”đœșĆ©žŠ ÀÌ”żÇÏ°í œÍÀžœÊŽÏ±î?"
-#: ../../diskdrake/interactive.pm_.c:707
+#: ../../diskdrake/interactive.pm_.c:717
msgid "Sector"
msgstr "ŒœĆÍ"
-#: ../../diskdrake/interactive.pm_.c:708
+#: ../../diskdrake/interactive.pm_.c:718
msgid "Which sector do you want to move it to?"
msgstr "Ÿî¶Č ŒœĆÍžŠ ÀÌ”żÇÏ°í œÍÀžœÊŽÏ±î?"
-#: ../../diskdrake/interactive.pm_.c:711
+#: ../../diskdrake/interactive.pm_.c:721
msgid "Moving"
msgstr "ÀÌ”ż Áß"
-#: ../../diskdrake/interactive.pm_.c:711
+#: ../../diskdrake/interactive.pm_.c:721
msgid "Moving partition..."
msgstr "ÆÄÆŒŒÇ ÀÌ”ż Áß..."
-#: ../../diskdrake/interactive.pm_.c:728
+#: ../../diskdrake/interactive.pm_.c:738
msgid "Choose an existing RAID to add to"
msgstr "Ăß°ĄÇÒ ±âÁž RAIDžŠ Œ±ĆĂÇÏŒŒżä."
-#: ../../diskdrake/interactive.pm_.c:729 ../../diskdrake/interactive.pm_.c:746
+#: ../../diskdrake/interactive.pm_.c:739 ../../diskdrake/interactive.pm_.c:756
msgid "new"
msgstr "»ő·Î žž”é±â"
-#: ../../diskdrake/interactive.pm_.c:744
+#: ../../diskdrake/interactive.pm_.c:754
msgid "Choose an existing LVM to add to"
msgstr "Ăß°ĄÇÒ LVMžŠ Œ±ĆĂÇÏŒŒżä"
-#: ../../diskdrake/interactive.pm_.c:749
+#: ../../diskdrake/interactive.pm_.c:759
msgid "LVM name?"
msgstr "LVM ÀÌž§?"
-#: ../../diskdrake/interactive.pm_.c:790
+#: ../../diskdrake/interactive.pm_.c:800
msgid "This partition can't be used for loopback"
msgstr "ÀÌ ÆÄÆŒŒÇÀș loopbackÀž·Î »çżë”É Œö ŸűœÀŽÏŽÙ."
-#: ../../diskdrake/interactive.pm_.c:803
+#: ../../diskdrake/interactive.pm_.c:813
msgid "Loopback"
msgstr "·çÇÁčé"
-#: ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:814
msgid "Loopback file name: "
msgstr "·çÇÁčé ÆÄÀÏ ÀÌž§: "
-#: ../../diskdrake/interactive.pm_.c:809
+#: ../../diskdrake/interactive.pm_.c:819
msgid "Give a file name"
msgstr "ÆÄÀÏ ÀÌž§À» ÀÔ·ÂÇÏŒŒżä."
-#: ../../diskdrake/interactive.pm_.c:812
+#: ../../diskdrake/interactive.pm_.c:822
msgid "File already used by another loopback, choose another one"
msgstr "ŽÙž„ ·çÇÁčéÀÌ ÀÌ ÆÄÀÏÀ» »çżëÇÏ°í ÀÖœÀŽÏŽÙ, ŽÙž„ °ÍÀ» Œ±ĆĂÇŰ ÁÖŒŒżä."
-#: ../../diskdrake/interactive.pm_.c:813
+#: ../../diskdrake/interactive.pm_.c:823
msgid "File already exists. Use it?"
msgstr "ÆÄÀÏÀÌ ÀÌčÌ ÁžÀçÇŐŽÏŽÙ. ±Ś°ÍÀ» »çżëÇŐŽÏ±î?"
-#: ../../diskdrake/interactive.pm_.c:836
+#: ../../diskdrake/interactive.pm_.c:846
msgid "Mount options"
msgstr "ž¶żîÆź żÉŒÇ”é:"
-#: ../../diskdrake/interactive.pm_.c:843
+#: ../../diskdrake/interactive.pm_.c:853
msgid "Various"
msgstr "ŽÙŸçÇŃ"
-#: ../../diskdrake/interactive.pm_.c:907 ../../standalone/drakfloppy_.c:103
+#: ../../diskdrake/interactive.pm_.c:917 ../../standalone/drakfloppy_.c:103
msgid "device"
msgstr "ÀćÄĄ"
-#: ../../diskdrake/interactive.pm_.c:908
+#: ../../diskdrake/interactive.pm_.c:918
msgid "level"
msgstr "·čș§"
-#: ../../diskdrake/interactive.pm_.c:909
+#: ../../diskdrake/interactive.pm_.c:919
msgid "chunk size"
msgstr "Ć©±â"
-#: ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:934
msgid "Be careful: this operation is dangerous."
msgstr "ÁÖÀÇ : ÀÌ Á¶ÀÛÀș À§ÇèÇŐŽÏŽÙ."
-#: ../../diskdrake/interactive.pm_.c:939
+#: ../../diskdrake/interactive.pm_.c:949
msgid "What type of partitioning?"
msgstr "Ÿî¶Č ÀŻÇüÀÇ ÆÄÆŒŒÇÀԎϱî?"
-#: ../../diskdrake/interactive.pm_.c:955
+#: ../../diskdrake/interactive.pm_.c:965
#, c-format
msgid "The package %s is needed. Install it?"
msgstr "ÆŃĆ°Áö %s°Ą ÇÊżäÇŐŽÏŽÙ. ŒłÄĄÇÏ°ÚœÀŽÏ±î?"
-#: ../../diskdrake/interactive.pm_.c:969
+#: ../../diskdrake/interactive.pm_.c:979
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -1969,7 +1990,7 @@ msgstr ""
"ŸűœÀŽÏŽÙ. ( 1024 œÇž°Žő ÀÌÇÏżĄŒ­žž °ĄŽÉÇŐŽÏŽÙ.\n"
"LILOžŠ »çżëÇŃŽÙ°í ÇÏŽő¶ó”” ”żÀÛÇÏÁö ŸÊ°í, LILO ÀÚĂŒžŠ »çżëÇÒŒö”” ŸűœÀŽÏŽÙ."
-#: ../../diskdrake/interactive.pm_.c:973
+#: ../../diskdrake/interactive.pm_.c:983
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -1980,7 +2001,7 @@ msgstr ""
"”û¶óŒ­ /boot ÆÄÆŒŒÇÀ» °ĄÁúŒö ŸűœÀŽÏŽÙ.\n"
"LILO șÎÆź žĆŽÏÀúžŠ »çżëÇÏ·Á ÇŃŽÙžé, ÁÖÀÇÇŰŒ­ /boot ÆÄÆŒŒÇÀ» Ăß°ĄÇÏŒŒżä."
-#: ../../diskdrake/interactive.pm_.c:979
+#: ../../diskdrake/interactive.pm_.c:989
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
@@ -1990,44 +2011,44 @@ msgstr ""
"Ÿî¶°ÇŃ șÎÆź·ÎŽő”” /boot ÆÄÆŒŒÇ ŸűÀÌŽÂ ÀÌ°ÍÀ» ĂłžźÇÏÁö žűÇŐŽÏŽÙ.\n"
"±Ś·ŻčÇ·Î /boot ÆÄÆŒŒÇÀ» Ăß°ĄÇÏŽÂ °ÍÀ» ÀŰÁö ž¶ŒŒżä."
-#: ../../diskdrake/interactive.pm_.c:999
+#: ../../diskdrake/interactive.pm_.c:1009
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "%s ”ć¶óÀÌșêÀÇ ÆÄÆŒŒÇ ĆŚÀÌșíÀ» ÀúÀćÇŐŽÏŽÙ."
-#: ../../diskdrake/interactive.pm_.c:1003
+#: ../../diskdrake/interactive.pm_.c:1013
msgid "You'll need to reboot before the modification can take place"
msgstr "șŻ°æ”È°ÍÀ» ÀûżëÇϱâ À§ÇŰŒ± žźșÎÆĂÀÌ ÇÊżäÇŐŽÏŽÙ."
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1024
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr "%s ÆÄÆŒŒÇÀ» ÆśžËÇÏžé, žđ”ç ”„ÀÌĆžžŠ ÀÒ°Ô ”ËŽÏŽÙ."
-#: ../../diskdrake/interactive.pm_.c:1016
+#: ../../diskdrake/interactive.pm_.c:1026
msgid "Formatting"
msgstr "ÆśžË Áß"
-#: ../../diskdrake/interactive.pm_.c:1017
+#: ../../diskdrake/interactive.pm_.c:1027
#, c-format
msgid "Formatting loopback file %s"
msgstr "loopback ÆÄÀÏ %s ÆśžĆÁß"
-#: ../../diskdrake/interactive.pm_.c:1018
-#: ../../install_steps_interactive.pm_.c:476
+#: ../../diskdrake/interactive.pm_.c:1028
+#: ../../install_steps_interactive.pm_.c:459
#, c-format
msgid "Formatting partition %s"
msgstr "%s ÆÄÆŒŒÇ ÆśžËÁß"
-#: ../../diskdrake/interactive.pm_.c:1029
+#: ../../diskdrake/interactive.pm_.c:1039
msgid "Hide files"
msgstr "ÆÄÀÏ Œû±â±â"
-#: ../../diskdrake/interactive.pm_.c:1029
+#: ../../diskdrake/interactive.pm_.c:1039
msgid "Move files to the new partition"
msgstr "»ő ÆÄÆŒŒÇÀž·Î ÆÄÀÏ żÈ±â±â"
-#: ../../diskdrake/interactive.pm_.c:1030
+#: ../../diskdrake/interactive.pm_.c:1040
#, c-format
msgid ""
"Directory %s already contains data\n"
@@ -2036,83 +2057,83 @@ msgstr ""
"”đ·șĆäžź %sżĄŽÂ ÀÌčÌ ”„ÀÌĆÍ°Ą ÀÖœÀŽÏŽÙ.\n"
"(%s)"
-#: ../../diskdrake/interactive.pm_.c:1041
+#: ../../diskdrake/interactive.pm_.c:1051
msgid "Moving files to the new partition"
msgstr "»ő ÆÄÆŒŒÇÀž·Î ÆÄÀÏ żÈ±âŽÂ Áß"
-#: ../../diskdrake/interactive.pm_.c:1045
+#: ../../diskdrake/interactive.pm_.c:1055
#, c-format
msgid "Copying %s"
msgstr "%s șč»ç Áß"
-#: ../../diskdrake/interactive.pm_.c:1049
+#: ../../diskdrake/interactive.pm_.c:1059
#, c-format
msgid "Removing %s"
msgstr "%s ÁŠ°Ć Áß"
-#: ../../diskdrake/interactive.pm_.c:1059
+#: ../../diskdrake/interactive.pm_.c:1069
#, c-format
msgid "partition %s is now known as %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1080
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1090
+#: ../../diskdrake/interactive.pm_.c:1149
msgid "Device: "
msgstr "ÀćÄĄ: "
-#: ../../diskdrake/interactive.pm_.c:1081
+#: ../../diskdrake/interactive.pm_.c:1091
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "DOS ”ć¶óÀÌșê čźÀÚ: %s (ŽÜÁö ĂßĂűÀÏ »ÓÀÓ)\n"
-#: ../../diskdrake/interactive.pm_.c:1085
-#: ../../diskdrake/interactive.pm_.c:1093
-#: ../../diskdrake/interactive.pm_.c:1157
+#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1103
+#: ../../diskdrake/interactive.pm_.c:1168
msgid "Type: "
msgstr "ÀŻÇü: "
-#: ../../diskdrake/interactive.pm_.c:1089
+#: ../../diskdrake/interactive.pm_.c:1099
msgid "Name: "
msgstr "ÀÌž§:"
-#: ../../diskdrake/interactive.pm_.c:1097
+#: ../../diskdrake/interactive.pm_.c:1107
#, c-format
msgid "Start: sector %s\n"
msgstr "œĂÀÛ: ŒœĆÍ %s\n"
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1108
#, c-format
msgid "Size: %s"
msgstr "Ć©±â: %s"
-#: ../../diskdrake/interactive.pm_.c:1100
+#: ../../diskdrake/interactive.pm_.c:1110
#, c-format
msgid ", %s sectors"
msgstr ", %s ŒœĆÍ"
-#: ../../diskdrake/interactive.pm_.c:1102
+#: ../../diskdrake/interactive.pm_.c:1112
#, fuzzy, c-format
msgid "Cylinder %d to %d\n"
msgstr "%d œÇž°ŽőșÎĆÍ %d œÇž°Žő±îÁö\n"
-#: ../../diskdrake/interactive.pm_.c:1103
+#: ../../diskdrake/interactive.pm_.c:1113
msgid "Formatted\n"
msgstr "ÆśžË”ÇŸúÀœ\n"
-#: ../../diskdrake/interactive.pm_.c:1104
+#: ../../diskdrake/interactive.pm_.c:1114
msgid "Not formatted\n"
msgstr "ÆśžË ŸÈ”ÇŸúÀœ\n"
-#: ../../diskdrake/interactive.pm_.c:1105
+#: ../../diskdrake/interactive.pm_.c:1115
msgid "Mounted\n"
msgstr "ž¶żîÆź ”ÇŸúÀœ\n"
-#: ../../diskdrake/interactive.pm_.c:1106
+#: ../../diskdrake/interactive.pm_.c:1116
#, c-format
msgid "RAID md%s\n"
msgstr "·čÀÌ”ć ÀćÄĄ %s\n"
-#: ../../diskdrake/interactive.pm_.c:1108
+#: ../../diskdrake/interactive.pm_.c:1118
#, c-format
msgid ""
"Loopback file(s):\n"
@@ -2121,7 +2142,7 @@ msgstr ""
"·çÇÁčé ÆÄÀÏ(”é):\n"
" %s\n"
-#: ../../diskdrake/interactive.pm_.c:1109
+#: ../../diskdrake/interactive.pm_.c:1119
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -2129,27 +2150,27 @@ msgstr ""
"±âș»ÀûÀž·Î șÎÆÔǎ ÆÄÆŒŒÇ\n"
" (liložŠ À§ÇŃ°ÍÀÌ ŸÆŽÏ¶ó MS-DOS bootžŠ À§ÇŃ°ÍÀÓ)\n"
-#: ../../diskdrake/interactive.pm_.c:1111
+#: ../../diskdrake/interactive.pm_.c:1121
#, c-format
msgid "Level %s\n"
msgstr "%s ”î±Ț\n"
-#: ../../diskdrake/interactive.pm_.c:1112
+#: ../../diskdrake/interactive.pm_.c:1122
#, c-format
msgid "Chunk size %s\n"
msgstr "Ć©±â %s\n"
-#: ../../diskdrake/interactive.pm_.c:1113
+#: ../../diskdrake/interactive.pm_.c:1123
#, c-format
msgid "RAID-disks %s\n"
msgstr "·čÀÌ”ć-”đœșĆ© %s\n"
-#: ../../diskdrake/interactive.pm_.c:1115
+#: ../../diskdrake/interactive.pm_.c:1125
#, c-format
msgid "Loopback file name: %s"
msgstr "·çÇÁčé ÆÄÀÏ ÀÌž§: %s"
-#: ../../diskdrake/interactive.pm_.c:1118
+#: ../../diskdrake/interactive.pm_.c:1128
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -2160,7 +2181,7 @@ msgstr ""
"ÀÌ ÆÄÆŒŒÇÀș ”ć¶óÀÌčö ÆÄÆŒŒÇÀÔŽÏŽÙ.\n"
"±ŚłÉ ”ÎŽÂ °ÍÀÌ ÁÁœÀŽÏŽÙ.\n"
-#: ../../diskdrake/interactive.pm_.c:1121
+#: ../../diskdrake/interactive.pm_.c:1131
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2172,59 +2193,63 @@ msgstr ""
"ÆÄÆŒŒÇÀș œĂœșĆÛÀ» \n"
"”àŸó șÎÆĂÇϱâ À§ÇŃ °ÍÀÔŽÏŽÙ.\n"
-#: ../../diskdrake/interactive.pm_.c:1140
+#: ../../diskdrake/interactive.pm_.c:1150
+msgid "Read-only"
+msgstr ""
+
+#: ../../diskdrake/interactive.pm_.c:1151
#, c-format
msgid "Size: %s\n"
-msgstr "Ć©±â : %s\n"
+msgstr "Ć©±â: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1141
+#: ../../diskdrake/interactive.pm_.c:1152
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "À§ÄĄ: %s œÇž°ĆÍ, %s Çì”ć, %s ŒœĆÍ\n"
-#: ../../diskdrake/interactive.pm_.c:1142
+#: ../../diskdrake/interactive.pm_.c:1153
msgid "Info: "
msgstr "Á€șž: "
-#: ../../diskdrake/interactive.pm_.c:1143
+#: ../../diskdrake/interactive.pm_.c:1154
#, c-format
msgid "LVM-disks %s\n"
msgstr "LVM-”đœșĆ© %s\n"
-#: ../../diskdrake/interactive.pm_.c:1144
+#: ../../diskdrake/interactive.pm_.c:1155
#, c-format
msgid "Partition table type: %s\n"
msgstr "ÆÄÆŒŒÇ ĆŚÀÌșí ÀŻÇü: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1145
+#: ../../diskdrake/interactive.pm_.c:1156
#, fuzzy, c-format
msgid "on channel %d id %d\n"
msgstr "%d čöœș»óżĄŒ­ ID %d\n"
-#: ../../diskdrake/interactive.pm_.c:1175
+#: ../../diskdrake/interactive.pm_.c:1186
#, fuzzy
msgid "Filesystem encryption key"
msgstr "ÆÄÀÏœĂœșĆÛ ÀŻÇü: "
-#: ../../diskdrake/interactive.pm_.c:1176
+#: ../../diskdrake/interactive.pm_.c:1187
msgid "Choose your filesystem encryption key"
msgstr "ÆÄÀÏ œĂœșĆÛ ŸÏÈŁÈ­ Ć° Œ±ĆĂ"
-#: ../../diskdrake/interactive.pm_.c:1179
+#: ../../diskdrake/interactive.pm_.c:1190
#, fuzzy, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr "ÀÌ ŸÏÈŁŽÂ łÊč« ŽÜŒűÇŐŽÏŽÙ.( ÀûŸî”” %d ±ÛÀÚŽÂ łŃŸîŸß ÇŐŽÏŽÙ)"
-#: ../../diskdrake/interactive.pm_.c:1180
+#: ../../diskdrake/interactive.pm_.c:1191
#, fuzzy
msgid "The encryption keys do not match"
msgstr "ŸÏÈŁ°Ą ÀÏÄĄÇÏÁö ŸÊœÀŽÏŽÙ."
-#: ../../diskdrake/interactive.pm_.c:1183
+#: ../../diskdrake/interactive.pm_.c:1194
msgid "Encryption key"
msgstr "ŸÏÈŁÈ­ Ć°"
-#: ../../diskdrake/interactive.pm_.c:1184
+#: ../../diskdrake/interactive.pm_.c:1195
msgid "Encryption key (again)"
msgstr "ŸÏÈŁÈ­ Ć° (ÈźÀÎ)"
@@ -2260,7 +2285,7 @@ msgid ""
"Please enter your username, password and domain name to access this host."
msgstr ""
-#: ../../diskdrake/smbnfs_gtk.pm_.c:178
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3527
msgid "Username"
msgstr "»çżëÀÚží"
@@ -2272,23 +2297,23 @@ msgstr "””žȚÀÎ"
msgid "Search servers"
msgstr "Œ­čö °Ë»ö"
-#: ../../fs.pm_.c:552 ../../fs.pm_.c:562 ../../fs.pm_.c:566 ../../fs.pm_.c:570
-#: ../../fs.pm_.c:574 ../../fs.pm_.c:578
+#: ../../fs.pm_.c:544 ../../fs.pm_.c:554 ../../fs.pm_.c:558 ../../fs.pm_.c:562
+#: ../../fs.pm_.c:566 ../../fs.pm_.c:570
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s ÆśžË œÇÆĐ(”ć¶óÀÌșê %s)"
-#: ../../fs.pm_.c:615
+#: ../../fs.pm_.c:607
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "%sŽÂ %s ÀŻÇüÀÌčÇ·Î ÆśžËÇÒŒö ŸűœÀŽÏŽÙ."
-#: ../../fs.pm_.c:687 ../../fs.pm_.c:731
+#: ../../fs.pm_.c:681 ../../fs.pm_.c:724
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../fs.pm_.c:746 ../../partition_table.pm_.c:602
+#: ../../fs.pm_.c:739 ../../partition_table.pm_.c:598
#, c-format
msgid "error unmounting %s: %s"
msgstr "%sžŠ Ÿđž¶żîÆźÁß żÀ·ùčß»ę: %s"
@@ -2305,33 +2330,51 @@ msgstr ""
msgid "server"
msgstr "Œ­čö"
-#: ../../fsedit.pm_.c:472
+#: ../../fsedit.pm_.c:240
+#, fuzzy, c-format
+msgid ""
+"I can't read the partition table of device %s, it's too corrupted for me :(\n"
+"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
+"The other solution is to not allow DrakX to modify the partition table.\n"
+"(the error is %s)\n"
+"\n"
+"Do you agree to loose all the partitions?\n"
+msgstr ""
+"ÇÏ”ć ”đœșĆ©ÀÇ ÆÄÆŒŒÇ ĆŚÀÌșíÀ» ÀĐÀ»Œö ŸűœÀŽÏŽÙ. łÊč« ŒŐ»ó”ÇŸî ÀÖœÀŽÏŽÙ:(\n"
+"čźÁŠÀÖŽÂ ÆÄÆŒŒÇÀ» șńżì±âÀ§ÇŃ œĂ””žŠ ÇÒ Œö ÀÖœÀŽÏŽÙ.(žđ”ç ”„ÀÌĆÍ°Ą ŒŐœÇ”ËŽÏ"
+"ŽÙ!)\n"
+"ŽÙž„ ÇŰ°áĂ„Àș DrakX°Ą ÆÄÆŒŒÇ ĆŚÀÌșíÀ» șŻ°æÇÏÁö žűÇÏ°Ô ÇÏŽÂ °ÍÀÔŽÏŽÙ.\n"
+"(żÀ·ùŽÂ %s ÀÔŽÏŽÙ.)\n"
+"\n"
+"ÆÄÆŒŒÇ”éÀ» ÀÒŸî”” ÁÁœÀŽÏ±î?\n"
+
+#: ../../fsedit.pm_.c:501
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr "16MB čÌžžÀÇ ÆÄÆŒŒÇżĄŽÂ JFS ÆÄÀÏ œĂœșĆÛÀ» »çżëÇÒ Œö ŸűœÀŽÏŽÙ."
-#: ../../fsedit.pm_.c:473
+#: ../../fsedit.pm_.c:502
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr "32MB čÌžžÀÇ ÆÄÆŒŒÇżĄŽÂ ReiserFS ÆÄÀÏ œĂœșĆÛÀ» »çżëÇÒ Œö ŸűœÀŽÏŽÙ."
-#: ../../fsedit.pm_.c:492
+#: ../../fsedit.pm_.c:521
msgid "Mount points must begin with a leading /"
msgstr "ž¶żîÆź À§ÄĄŽÂ čĘ”ćœĂ Ąž/Ąč·Î œĂÀÛÇÏż©Ÿß ÇŐŽÏŽÙ."
-#: ../../fsedit.pm_.c:493
+#: ../../fsedit.pm_.c:522
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "ž¶żîÆź À§ÄĄ %s°Ą ÀÌčÌ ÁžÀçÇŐŽÏŽÙ.\n"
-#: ../../fsedit.pm_.c:497
+#: ../../fsedit.pm_.c:526
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr " %s ž¶żîÆź ÆśÀÎÆź·Î LVM łížźșŒ·ęÀ» »çżëÇÒ ŒöŽÂ ŸűœÀŽÏŽÙ. "
-#: ../../fsedit.pm_.c:499
+#: ../../fsedit.pm_.c:528
msgid "This directory should remain within the root filesystem"
msgstr "ÀÌ ”đ·șĆäžźŽÂ ·çÆź ÆÄÀÏœĂœșĆÛ ŸÈżĄ ÀÖŸîŸß ÇŐŽÏŽÙ."
-#: ../../fsedit.pm_.c:501
+#: ../../fsedit.pm_.c:530
#, fuzzy
msgid ""
"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
@@ -2339,212 +2382,259 @@ msgid ""
msgstr ""
"ÀÌ ž¶żîÆź À§ÄĄżĄŽÂ Æź·ç ÆÄÀÏœĂœșĆÛ (ext2, reiserfs)ÀÌ ž¶żîÆź ”ÇŸîŸß ÇŐŽÏŽÙ.\n"
-#: ../../fsedit.pm_.c:503
+#: ../../fsedit.pm_.c:532
#, fuzzy, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr " %s ž¶żîÆź ÆśÀÎÆź·Î LVM łížźșŒ·ęÀ» »çżëÇÒ ŒöŽÂ ŸűœÀŽÏŽÙ. "
-#: ../../fsedit.pm_.c:570
+#: ../../fsedit.pm_.c:599
msgid "Not enough free space for auto-allocating"
msgstr "ÀÚ”żÇÒŽçÇÏ±âżĄŽÂ °ű°ŁÀÌ ÇŐŽÏŽÙ."
-#: ../../fsedit.pm_.c:572
+#: ../../fsedit.pm_.c:601
msgid "Nothing to do"
msgstr "ÇÒ ÀÏ ŸűÀœ."
-#: ../../fsedit.pm_.c:665
+#: ../../fsedit.pm_.c:694
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "%sžŠ ŸČ±âÀ§ÇŰ ż©ŽÂÁß żÀ·ùčß»ę: %s"
-#: ../../fsedit.pm_.c:750
+#: ../../harddrake/sound.pm_.c:155
+msgid "No alternative driver"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:156
+#, c-format
+msgid "There's no known OSS/ALSA alternative driver for your sound card (%s)"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:158
+#, fuzzy
+msgid "Sound configuration"
+msgstr "CUPS ŒłÁ€"
+
+#: ../../harddrake/sound.pm_.c:159
+#, c-format
msgid ""
-"An error occurred - no valid devices were found on which to create new "
-"filesystems. Please check your hardware for the cause of this problem"
+"Here you can select an alternative driver (either OSS or ALSA) for your "
+"sound card (%s)"
msgstr ""
-"żÀ·ù čß»ę - »ő·Îżî ÆÄÀÏ œĂœșĆÛÀ» žž”é Ÿî¶Č żĂčÙž„ ÀćÄĄ”” ĂŁÀ» Œö ŸűœÀŽÏŽÙ.ÀÌ "
-"čźÁŠžŠ ÇŰ°áÇÏœĂ·Ážé, ÇÏ”ćżțŸîžŠ ÁĄ°ËÇŰ șžœĂ±â čÙ¶űŽÏŽÙ."
-#: ../../fsedit.pm_.c:773
-msgid "You don't have any partitions!"
-msgstr "Ÿî¶Č ÆÄÆŒŒÇ”” ÁžÀçÇÏÁö ŸÊœÀŽÏŽÙ."
+#: ../../harddrake/sound.pm_.c:162
+#, fuzzy
+msgid "Driver:"
+msgstr "”ć¶óÀÌčö"
+
+#: ../../harddrake/sound.pm_.c:173
+msgid "No known driver"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:174
+#, c-format
+msgid "There's no known driver for your sound card (%s)"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:177
+#, fuzzy
+msgid "Unkown driver"
+msgstr "ŸË ŒöŸűŽÂ žđ”š"
+
+#: ../../harddrake/sound.pm_.c:178
+#, c-format
+msgid ""
+"The \"%s\" driver for your sound card is unlisted\n"
+"\n"
+"Please send the output of the \"lspcidrake -v\" command to\n"
+"<install at mandrakesoft dot com>\n"
+"with subject: unlisted sound driver \"%s\""
+msgstr ""
-#: ../../harddrake/ui.pm_.c:15
+#: ../../harddrake/ui.pm_.c:16
msgid "Model"
msgstr "žđ”š"
-#: ../../harddrake/ui.pm_.c:15
+#: ../../harddrake/ui.pm_.c:16
msgid "hard disk model"
msgstr "ÇÏ”ć ”đœșĆ© žđ”š"
-#: ../../harddrake/ui.pm_.c:16
+#: ../../harddrake/ui.pm_.c:17
msgid "Channel"
msgstr "Ă€łÎ"
-#: ../../harddrake/ui.pm_.c:16
+#: ../../harddrake/ui.pm_.c:17
msgid "EIDE/SCSI channel"
msgstr "EIDE/SCSI Ă€łÎ"
-#: ../../harddrake/ui.pm_.c:18
+#: ../../harddrake/ui.pm_.c:19
msgid "Bus"
msgstr "čöœș"
-#: ../../harddrake/ui.pm_.c:19
+#: ../../harddrake/ui.pm_.c:20
msgid ""
"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
msgstr ""
-#: ../../harddrake/ui.pm_.c:20
+#: ../../harddrake/ui.pm_.c:21
msgid "Module"
msgstr "žđ”â"
-#: ../../harddrake/ui.pm_.c:20
+#: ../../harddrake/ui.pm_.c:21
msgid "the module of the GNU/Linux kernel that handle that device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:21
+#: ../../harddrake/ui.pm_.c:22
msgid "Media class"
msgstr "žĆĂŒ čüÁÖ"
-#: ../../harddrake/ui.pm_.c:21
+#: ../../harddrake/ui.pm_.c:22
msgid "class of hardware device"
msgstr "ÇÏ”ćżțŸî ÀćÄĄ čüÁÖ"
-#: ../../harddrake/ui.pm_.c:22 ../../printerdrake.pm_.c:1404
+#: ../../harddrake/ui.pm_.c:23 ../../printerdrake.pm_.c:1517
msgid "Description"
msgstr "Œłží"
-#: ../../harddrake/ui.pm_.c:22
+#: ../../harddrake/ui.pm_.c:23
msgid "this field describe the device"
msgstr "ÀÌ ÇÊ”ćŽÂ ÀćÄĄžŠ ŒłžíÇŐŽÏŽÙ."
-#: ../../harddrake/ui.pm_.c:24
+#: ../../harddrake/ui.pm_.c:25
msgid "Bus identification"
msgstr "čöœș ŸÆÀÌ”đ"
-#: ../../harddrake/ui.pm_.c:25
+#: ../../harddrake/ui.pm_.c:26
msgid ""
-"- PCI and USB devices : this list the vendor, device, subvendor and "
-"subdevice PCI/USB ids"
+"- PCI and USB devices: this list the vendor, device, subvendor and subdevice "
+"PCI/USB ids"
msgstr ""
-#: ../../harddrake/ui.pm_.c:27
+#: ../../harddrake/ui.pm_.c:28
msgid "Location on the bus"
msgstr "čöœș»óÀÇ À§ÄĄ"
-#: ../../harddrake/ui.pm_.c:28
+#: ../../harddrake/ui.pm_.c:29
msgid ""
"- pci devices: this gives the PCI slot, device and function of this card\n"
"- eide devices: the device is either a slave or a master device\n"
"- scsi devices: the scsi bus and the scsi device ids"
msgstr ""
-#: ../../harddrake/ui.pm_.c:31
+#: ../../harddrake/ui.pm_.c:32
msgid "Old device file"
msgstr "żÀ·Ą”È ÀćÄĄ ÆÄÀÏ"
-#: ../../harddrake/ui.pm_.c:32
+#: ../../harddrake/ui.pm_.c:33
msgid "old static device name used in dev package"
msgstr ""
-#: ../../harddrake/ui.pm_.c:33
+#: ../../harddrake/ui.pm_.c:34
msgid "New devfs device"
msgstr "»ő·Îżî devfs ÀćÄĄ"
-#: ../../harddrake/ui.pm_.c:34
+#: ../../harddrake/ui.pm_.c:35
msgid "new dinamic device name generated by incore kernel devfs"
msgstr ""
-#: ../../harddrake/ui.pm_.c:35
+#: ../../harddrake/ui.pm_.c:36
msgid "Number of buttons"
msgstr "čöÆ° Œö"
-#: ../../harddrake/ui.pm_.c:36
+#: ../../harddrake/ui.pm_.c:37
msgid "the vendor name of the device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:60
+#: ../../harddrake/ui.pm_.c:38
+#, fuzzy
+msgid "Alternative drivers"
+msgstr "œĂÇè ÆäÀÌÁö È°ŒșÈ­ (A4)"
+
+#: ../../harddrake/ui.pm_.c:39
+msgid "the list of alternative drivers for this sound card"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:63
msgid "/_Quit"
msgstr "/ÁŸ·á(_Q)"
-#: ../../harddrake/ui.pm_.c:61 ../../harddrake/ui.pm_.c:62
-#: ../../harddrake/ui.pm_.c:68 ../../standalone/logdrake_.c:110
+#: ../../harddrake/ui.pm_.c:64 ../../harddrake/ui.pm_.c:65
+#: ../../harddrake/ui.pm_.c:71 ../../standalone/logdrake_.c:110
msgid "/_Help"
msgstr "/””żòž»(_H)"
-#: ../../harddrake/ui.pm_.c:62
+#: ../../harddrake/ui.pm_.c:65
msgid "/_Help..."
msgstr "/””żòž»(_H)..."
-#: ../../harddrake/ui.pm_.c:63
+#: ../../harddrake/ui.pm_.c:66
msgid "Harddrake help"
msgstr "ÇÏ”ć ”ć·čÀÌĆ© ””żòž»"
-#: ../../harddrake/ui.pm_.c:64
+#: ../../harddrake/ui.pm_.c:67
msgid ""
"Description of the fields:\n"
"\n"
msgstr ""
-#: ../../harddrake/ui.pm_.c:68
+#: ../../harddrake/ui.pm_.c:71
msgid "/_About..."
msgstr "/Á€șž(_A)..."
-#: ../../harddrake/ui.pm_.c:69
+#: ../../harddrake/ui.pm_.c:72
msgid "About Harddrake"
msgstr "ÇÏ”ć ”ć·čÀÌĆ© Á€șž"
-#: ../../harddrake/ui.pm_.c:70
+#: ../../harddrake/ui.pm_.c:73
msgid ""
"This is HardDrake, a Mandrake hardware configuration tool.\n"
"Version:"
msgstr ""
-#: ../../harddrake/ui.pm_.c:71
+#: ../../harddrake/ui.pm_.c:74
msgid "Author:"
msgstr "ÁŠÀÛÀÚ:"
-#: ../../harddrake/ui.pm_.c:83
+#: ../../harddrake/ui.pm_.c:86
msgid "Harddrake2 version "
msgstr "ÇÏ”ć ”ć·čÀÌĆ© 2 čöÀü"
-#: ../../harddrake/ui.pm_.c:91
+#: ../../harddrake/ui.pm_.c:103
msgid "Detected hardware"
msgstr "°Ë»ö”È ÇÏ”ćżțŸî"
-#: ../../harddrake/ui.pm_.c:92
+#: ../../harddrake/ui.pm_.c:105
+msgid "Information"
+msgstr "Á€șž"
+
+#: ../../harddrake/ui.pm_.c:108
msgid "Configure module"
msgstr "žđ”â ŒłÁ€"
-#: ../../harddrake/ui.pm_.c:92
-msgid "Informations"
-msgstr "Á€șž"
-
-#: ../../harddrake/ui.pm_.c:92
+#: ../../harddrake/ui.pm_.c:109
msgid "Run config tool"
msgstr "ŒłÁ€ ””±ž œÇÇà"
-#: ../../harddrake/ui.pm_.c:96
+#: ../../harddrake/ui.pm_.c:113
msgid "Detection in progress"
msgstr "°Ë»ö ÁűÇà Áß"
-#: ../../harddrake/ui.pm_.c:96 ../../interactive.pm_.c:388
+#: ../../harddrake/ui.pm_.c:113 ../../interactive.pm_.c:391
msgid "Please wait"
msgstr "±âŽÙ·Á ÁÖŒŒżä"
-#: ../../harddrake/ui.pm_.c:139
+#: ../../harddrake/ui.pm_.c:156
msgid "primary"
msgstr "ÁÖ"
-#: ../../harddrake/ui.pm_.c:139
+#: ../../harddrake/ui.pm_.c:156
msgid "secondary"
msgstr "”Îčű°"
-#: ../../harddrake/ui.pm_.c:176
+#: ../../harddrake/ui.pm_.c:197
msgid "You can configure each parameter of the module here."
msgstr ""
-#: ../../harddrake/ui.pm_.c:192
+#: ../../harddrake/ui.pm_.c:213
#, c-format
msgid "Running \"%s\" ..."
msgstr "Ąž%sĄč œÇÇà Áß..."
@@ -2574,15 +2664,15 @@ msgid ""
msgstr ""
#: ../../harddrake/v4l.pm_.c:213
-msgid "Card model :"
+msgid "Card model:"
msgstr "Ä«”ć žđ”š:"
#: ../../harddrake/v4l.pm_.c:214
-msgid "Tuner type :"
+msgid "Tuner type:"
msgstr "Æ©łÊ ÀŻÇü:"
#: ../../harddrake/v4l.pm_.c:215
-msgid "Number of capture buffers :"
+msgid "Number of capture buffers:"
msgstr "ÄžĂÄ čöÆÛ Œö:"
#: ../../harddrake/v4l.pm_.c:215
@@ -2590,11 +2680,11 @@ msgid "number of capture buffers for mmap'ed capture"
msgstr ""
#: ../../harddrake/v4l.pm_.c:217
-msgid "PLL setting :"
+msgid "PLL setting:"
msgstr "PLL ŒłÁ€:"
#: ../../harddrake/v4l.pm_.c:218
-msgid "Radio support :"
+msgid "Radio support:"
msgstr "¶ó”đżÀ Áöżű:"
#: ../../harddrake/v4l.pm_.c:218
@@ -2606,22 +2696,22 @@ msgid ""
"GNU/Linux is a multiuser system, and this means that each user can have his\n"
"own preferences, his own files and so on. You can read the ``User Guide''\n"
"to learn more. But unlike \"root\", which is the administrator, the users\n"
-"you will add here will not be entitled to change anything except their own\n"
-"files and their own configuration. You will have to create at least one\n"
-"regular user for yourself. That account is where you should log in for\n"
-"routine use. Although it is very practical to log in as \"root\" everyday,\n"
-"it may also be very dangerous! The slightest mistake could mean that your\n"
-"system would not work any more. If you make a serious mistake as a regular\n"
-"user, you may only lose some information, but not the entire system.\n"
+"you add here will not be entitled to change anything except their own files\n"
+"and their own configuration. You will have to create at least one regular\n"
+"user for yourself. That account is where you should log in for routine use.\n"
+"Although it is very practical to log in as \"root\" everyday, it may also\n"
+"be very dangerous! The slightest mistake could mean that your system would\n"
+"not work any more. If you make a serious mistake as a regular user, you may\n"
+"only lose some information, but not the entire system.\n"
"\n"
"First, you have to enter your real name. This is not mandatory, of course -\n"
"as you can actually enter whatever you want. DrakX will then take the first\n"
"word you have entered in the box and will bring it over to the \"User\n"
"name\". This is the name this particular user will use to log onto the\n"
"system. You can change it. You then have to enter a password here. A\n"
-"non-privileged (regular) user's password is not as crucial as \"root\"' one\n"
-"from a security point of view, but that is no reason to neglect it: after\n"
-"all, your files are at risk.\n"
+"non-privileged (regular) user's password is not as crucial as the \"root\"'\n"
+"one from a security point of view, but that is no reason to neglect it:\n"
+"after all, your files are at risk.\n"
"\n"
"If you click on \"Accept user\", you can then add as many as you want. Add\n"
"a user for each one of your friends: your father or your sister, for\n"
@@ -2739,7 +2829,7 @@ msgid ""
"to have a graphical workstation!\n"
"\n"
"Moving the mouse cursor over a group name will display a short explanatory\n"
-"text about that group. If you deselect all groups when performing a regular\n"
+"text about that group. If you unselect all groups when performing a regular\n"
"installation (by opposition to an upgrade), a dialog will pop up proposing\n"
"different options for a minimal installation:\n"
"\n"
@@ -2802,10 +2892,10 @@ msgstr ""
#: ../../help.pm_.c:128
msgid ""
-"Finally, depending on whether or not you selected individual packages, you\n"
-"will be presented a tree containing all packages classified by groups and\n"
-"subgroups. While browsing the tree, you can select entire groups,\n"
-"subgroups, or individual packages.\n"
+"Finally, depending on whether or not you chose to be able to select\n"
+"individual packages, you will be presented a tree containing all packages\n"
+"classified by groups and subgroups. While browsing the tree, you can select\n"
+"entire groups, subgroups, or individual packages.\n"
"\n"
"Whenever you select a package on the tree, a description appears on the\n"
"right. When your selection is finished, click the \"Install\" button which\n"
@@ -2841,11 +2931,11 @@ msgstr ""
#: ../../help.pm_.c:164
#, fuzzy
msgid ""
-"You are now proposed to set up your Internet/network connection. If you\n"
-"wish to connect your computer to the Internet or to a local network, click\n"
-"\"OK\". The autodetection of network devices and modem will be launched. If\n"
-"this detection fails, uncheck the \"Use auto detection\" box next time. You\n"
-"may also choose not to configure the network, or do it later; in that case,\n"
+"You are now able to set up your Internet/network connection. If you wish to\n"
+"connect your computer to the Internet or to a local network, click \"OK\".\n"
+"The autodetection of network devices and modem will be launched. If this\n"
+"detection fails, uncheck the \"Use auto detection\" box next time. You may\n"
+"also choose not to configure the network, or do it later; in that case,\n"
"simply click the \"Cancel\" button.\n"
"\n"
"Available connections are: traditional modem, ISDN modem, ADSL connection,\n"
@@ -2919,7 +3009,7 @@ msgstr ""
msgid ""
"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
"local time according to the time zone you selected. It is however possible\n"
-"to deactivate this by deselecting \"Hardware clock set to GMT\" so that the\n"
+"to deactivate this by unselecting \"Hardware clock set to GMT\" so that the\n"
"hardware clock is the same as the system clock. This is useful when the\n"
"machine is hosting another operating system like Windows.\n"
"\n"
@@ -2951,7 +3041,9 @@ msgid ""
"If you can see the message during the test, and answer \"Yes\", then DrakX\n"
"will proceed to the next step. If you cannot see the message, it simply\n"
"means that the configuration was wrong and the test will automatically end\n"
-"after 10 seconds, restoring the screen."
+"after 10 seconds, restoring the screen. Refer then to the Video\n"
+"configuration section of the user guide for more information on how to\n"
+"configure your display."
msgstr ""
"X(X À©””żì œĂœșĆÛ)Àș GNU/žźŽȘœș ±Ś·ĄÇÈ ÀÎĆÍÆäÀÌœșÀÇ ÇÙœÉÀÔŽÏŽÙ.\n"
"ÀÌžŠ ±âčĘÀž·Î žÇ”ć·čÀÌĆ© žźŽȘœșżĄ ÆśÇÔ”È žđ”ç ±Ś·ĄÇÈÈŻ°æ(KDE, ±Śłđ,\n"
@@ -2972,33 +3064,7 @@ msgstr ""
"ÀÇčÌÇŐŽÏŽÙ. ĆŚœșÆźŽÂ 10ĂÊÈÄżĄ È­žéÀ» ș豞ÇϞ錭 ÀÚ”żÀž·Î\n"
"ÁŸ·áÇŐŽÏŽÙ."
-#: ../../help.pm_.c:237
-msgid ""
-"The first time you try the X configuration, you may not be very satisfied\n"
-"with its display (screen is too small, shifted left or right...). Hence,\n"
-"even if X starts up correctly, DrakX then asks you if the configuration\n"
-"suits you. It will also propose to change it by displaying a list of valid\n"
-"modes it could find, asking you to select one.\n"
-"\n"
-"As a last resort, if you still cannot get X to work, choose \"Change\n"
-"graphics card\", select \"Unlisted card\", and when prompted on which\n"
-"server, choose \"FBDev\". This is a failsafe option which works with any\n"
-"modern graphics card. Then choose \"Test again\" to be sure."
-msgstr ""
-"ĂłÀœ X ŒłÁ€À» œĂ””ÇÒ ¶§, È­žéÀÌ ÀÌ»óÇÏ°Ô șžÀÏ Œö ÀÖœÀŽÏŽÙ.\n"
-"(È­žéÀÌ łÊč« ÀÛ°ĆłȘ, żÀž„ÂÊ È€Àș żȚÂÊÀž·Î ÄĄżìĂÄ ÀÖÀ» Œö ÀÖœÀŽÏŽÙ.)\n"
-"±Ś·ž±â ¶§čźżĄ, șń·Ï X°Ą Á€»ó œÇÇà”ÇŽő¶ó”” ”ć·čÀÌĆ©XŽÂ ŽÔČČ ÀûÀęÇŃ\n"
-"ŒłÁ€ÀÎÁöžŠ ÁúčźÇÒ °ÍÀÔŽÏŽÙ. ¶ÇÇŃ ŽÔÀÌ Œ±ĆĂÇÒ Œö ÀÖŽÂ ÀŻÈżÇŃ È­žéžđ”ć”éÀÇ\n"
-"žń·ÏÀ» Ç„œĂÇŰŒ­ ÁśÁą șŻ°æÇÒ Œö ÀÖ°Ô ÇÒ °ÍÀÔŽÏŽÙ.\n"
-"\n"
-"ŸÆč«žź ÇŰ”” X°Ą Á€»óÀûÀž·Î ÀÛ”ż”Ç°Ô ÇÒ Œö ŸűŽÙžé, Ąž±Ś·ĄÇÈ Ä«”ć șŻ°æĄčÀ» Œ±ĆĂ"
-"ÇÏ°í\n"
-"Ąžžń·ÏżĄ ŸűŽÂ Ä«”ćĄčžŠ Œ±ĆĂÇÏŒŒżä. ±Śžź°í Œ­čö ÁŸ·ùžŠ ÁúčźÇÒ ¶§, ĄžFBDevĄč"
-"žŠ\n"
-"Œ±ĆĂÇÏŒŒżä. ÀÌ°ÍÀș ŸÈÀüžđ”ć żÉŒÇÀÌžç ÇöÀçÀÇ žđ”ç ±Ś·ĄÇÈ Ä«”ćżÍ ÈŁÈŻ”ËŽÏŽÙ.\n"
-"±Śžź°í łȘŒ­, ĄžŽÙœĂ ĆŚœșÆźĄčžŠ Œ±ĆĂÇÏż© ÈźÀÎÇÏŒŒżä."
-
-#: ../../help.pm_.c:249
+#: ../../help.pm_.c:239
msgid ""
"Finally, you will be asked whether you want to see the graphical interface\n"
"at boot. Note this question will be asked even if you chose not to test the\n"
@@ -3013,7 +3079,7 @@ msgstr ""
"žé\n"
"ĄžŸÆŽÏżÀĄčžŠ Ž©žŁŒŒżä."
-#: ../../help.pm_.c:256
+#: ../../help.pm_.c:246
msgid ""
"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
@@ -3033,13 +3099,13 @@ msgid ""
"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
"password, or any other reason.\n"
"\n"
-"When you click on this step, you will be asked to enter a disk inside the\n"
-"drive. The floppy disk you will insert must be empty or contain data which\n"
-"you do not need. You will not have to format it since DrakX will rewrite\n"
-"the whole disk."
+"If you say \"Yes\", you will be asked to enter a disk inside the drive. The\n"
+"floppy disk you will insert must be empty or contain data which you do not\n"
+"need. You will not have to format it since DrakX will rewrite the whole\n"
+"disk."
msgstr ""
-#: ../../help.pm_.c:280
+#: ../../help.pm_.c:270
#, fuzzy
msgid ""
"At this point, you need to choose where you want to install the Mandrake\n"
@@ -3073,7 +3139,9 @@ msgid ""
"\n"
" * \"Use existing partition\": the wizard has detected one or more existing\n"
"Linux partitions on your hard drive. If you want to use them, choose this\n"
-"option;\n"
+"option. You will then be asked to choose the mount points associated to\n"
+"each of the partitions. The legacy mount points are selected by default,\n"
+"and you should generally keep them.\n"
"\n"
" * \"Use the free space on the Windows; partition\": if Microsoft Windows\n"
"is installed on your hard drive and takes all the space available on it,\n"
@@ -3106,7 +3174,9 @@ msgid ""
" * \"Expert mode\": choose this option if you want to manually partition\n"
"your hard drive. Be careful - it is a powerful but dangerous choice. You\n"
"can very easily lose all your data. Hence, do not choose this unless you\n"
-"know what you are doing."
+"know what you are doing. To know how do use the DiskDrake utility used\n"
+"here, refer to the section ``Managing Your Partitions'' of the ````User\n"
+"Guide''''"
msgstr ""
"ÀÌÁŠ ÇÏ”ć”đœșĆ©ÀÇ Ÿî”𿥠žźŽȘœș žÇ”ć·čÀÌĆ©žŠ ŒłÄĄÇÒÁöžŠ\n"
"Œ±ĆĂÇŰŸß ÇŐŽÏŽÙ. žžŸà ÇÏ”ć”đœșĆ©°Ą żÏÀüÈś șńŸî ÀÖ°ĆłȘ ¶ÇŽÂ\n"
@@ -3178,7 +3248,7 @@ msgstr ""
"ÀÒŸî čöž± Œö ÀÖœÀŽÏŽÙ. ÀüčźÀûÀÎ ÁöœÄÀÌ ŸűŽÙžé, ÀÌ čæčęÀș ÀęŽë Œ±ĆĂÇÏÁö ž¶ŒŒ"
"żä."
-#: ../../help.pm_.c:347
+#: ../../help.pm_.c:341
msgid ""
"There you are. Installation is now complete and your GNU/Linux system is\n"
"ready to use. Just click \"OK\" to reboot the system. You can start\n"
@@ -3242,7 +3312,7 @@ msgstr ""
"(*) ŽÔÀș FATÀž·Î ÆśžË”È ÇĂ·ÎÇÇ ÇÏłȘžŠ °ĄÁö°í ÀÖŸîŸß ÇŐŽÏŽÙ.\n"
" (žźŽȘœșżĄŒ­ ÆśžËÇÏ·Ážé, Ąžmformat a:Ąčží·ÉÀ» »çżëÇÏŒŒżä.)"
-#: ../../help.pm_.c:378
+#: ../../help.pm_.c:372
msgid ""
"Any partitions that have been newly defined must be formatted for use\n"
"(formatting means creating a filesystem).\n"
@@ -3293,7 +3363,7 @@ msgstr ""
"”đœșĆ©»óÀÇ ŒŐ»ó”È șí·°À» ĂŒĆ©ÇÏžç ÆśžËÇÏ°í œÍŽÙžé,\n"
"Ąž°í±ȚĄčÀ» Ž©žŁŒŒżä."
-#: ../../help.pm_.c:404
+#: ../../help.pm_.c:398
msgid ""
"Your new Mandrake Linux operating system is currently being installed.\n"
"Depending on the number of packages you will be installing and the speed of\n"
@@ -3309,12 +3379,12 @@ msgstr ""
"\n"
"ÀÎł»œÉÀ» °ĄÁöŒŒżä."
-#: ../../help.pm_.c:412
+#: ../../help.pm_.c:406
msgid ""
"At the time you are installing Mandrake Linux, it is likely that some\n"
"packages have been updated since the initial release. Some bugs may have\n"
"been fixed, and security issues solved. To allow you to benefit from these\n"
-"updates, you are now proposed to download them from the Internet. Choose\n"
+"updates, you are now able to download them from the Internet. Choose\n"
"\"Yes\" if you have a working Internet connection, or \"No\" if you prefer\n"
"to install updated packages later.\n"
"\n"
@@ -3324,7 +3394,7 @@ msgid ""
"install the selected package(s), or \"Cancel\" to abort."
msgstr ""
-#: ../../help.pm_.c:425
+#: ../../help.pm_.c:419
msgid ""
"Before continuing, you should read carefully the terms of the license. It\n"
"covers the whole Mandrake Linux distribution, and if you do not agree with\n"
@@ -3337,14 +3407,14 @@ msgstr ""
"žžŸà ”żÀÇÇÏÁö ŸÊÀžœĆŽÙžé Ąž°ĆșÎĄččöÆ°À» Ž©žŁŒŒżä. °ĆșÎ čöÆ°Àș ÇöÀç ŒłÄĄžŠ\n"
"Áï°ą ÁŸ·áÇÏ°Ô ÇŐŽÏŽÙ. ŒłÄĄžŠ °èŒÓÇÏ°í œÍŽÙžé Ąž”żÀÇĄččöÆ°À» Ž©žŁŒŒżä."
-#: ../../help.pm_.c:432
+#: ../../help.pm_.c:426
msgid ""
"At this point, it is time to choose the security level desired for the\n"
"machine. As a rule of thumb, the more exposed the machine is, and the more\n"
"the data stored in it is crucial, the higher the security level should be.\n"
"However, a higher security level is generally obtained at the expense of\n"
-"easiness of use. Refer to the \"msec\" chapter of the ``Reference Manual''\n"
-"to get more information about the meaning of these levels.\n"
+"ease of use. Refer to the \"msec\" chapter of the ``Reference Manual'' to\n"
+"get more information about the meaning of these levels.\n"
"\n"
"If you do not know what to choose, keep the default option."
msgstr ""
@@ -3360,7 +3430,7 @@ msgstr ""
"\n"
"ŸîŽÀ °ÍÀ» Œ±ĆĂÇŰŸß ÇÒÁö Àß žđžŁ°ÚŽÙžé, ±âș»°ȘÀ» ÀŻÁöÇÏŒŒżä."
-#: ../../help.pm_.c:442
+#: ../../help.pm_.c:436
#, fuzzy
msgid ""
"At this point, you need to choose which partition(s) will be used for the\n"
@@ -3378,26 +3448,26 @@ msgid ""
" * \"Clear all\": this option deletes all partitions on the selected hard\n"
"drive;\n"
"\n"
-" * \"Auto allocate\": this option enables to automatically create \"Ext2\"\n"
-"and swap partitions in free space of your hard drive;\n"
+" * \"Auto allocate\": this option enables to automatically create ext3 and\n"
+"swap partitions in free space of your hard drive;\n"
"\n"
-" * \"More\": gives access to additional features:\n"
+"\"More\": gives access to additional features:\n"
"\n"
-" * \"Save partition table\": saves the partition table to a floppy.\n"
-"Useful for later partition-table recovery if necessary. It is strongly\n"
-"recommended to perform this step;\n"
+" * \"Save partition table\": saves the partition table to a floppy. Useful\n"
+"for later partition-table recovery if necessary. It is strongly recommended\n"
+"to perform this step;\n"
"\n"
-" * \"Restore partition table\": allows to restore a previously saved\n"
+" * \"Restore partition table\": allows to restore a previously saved\n"
"partition table from floppy disk;\n"
"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you\n"
-"can try to recover it using this option. Please be careful and remember\n"
-"that it can fail;\n"
+" * \"Rescue partition table\": if your partition table is damaged, you can\n"
+"try to recover it using this option. Please be careful and remember that it\n"
+"can fail;\n"
"\n"
-" * \"Reload partition table\": discards all changes and loads your\n"
-"initial partition table;\n"
+" * \"Reload partition table\": discards all changes and loads your initial\n"
+"partition table;\n"
"\n"
-" * \"Removable media automounting\": unchecking this option will force\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
"users to manually mount and unmount removable medias such as floppies and\n"
"CD-ROMs.\n"
"\n"
@@ -3425,7 +3495,7 @@ msgid ""
" * Ctrl-m to set the mount point.\n"
"\n"
"To get information about the different filesystem types available, please\n"
-"read the ext2fs chapter from the ``Reference Manual''.\n"
+"read the ext2FS chapter from the ``Reference Manual''.\n"
"\n"
"If you are installing on a PPC machine, you will want to create a small HFS\n"
"``bootstrap'' partition of at least 1MB, which will be used by the yaboot\n"
@@ -3492,7 +3562,7 @@ msgstr ""
"(°Ą·É, 50MB) žž”éžé, ÀÀ±Ț »óÈČœĂżĄ »çżëÇÒ ż©șĐÀÇ ÄżłÎ°ú ·„”đœșĆ© ÀÌčÌÁöžŠ\n"
"ÀúÀćÇÒ Œö ÀÖŽÂ ÀŻżëÇŃ ÀćŒÒ°Ą ”É °ÍÀÔŽÏŽÙ."
-#: ../../help.pm_.c:513
+#: ../../help.pm_.c:507
msgid ""
"More than one Microsoft partition has been detected on your hard drive.\n"
"Please choose the one you want to resize in order to install your new\n"
@@ -3554,11 +3624,11 @@ msgstr ""
"ĄžÀ©””żìÁî ÀÌž§ĄčÀș MS À©””żìÁîÇÏżĄŒ­ÀÇ ÀÌž§ÀÔŽÏŽÙ.\n"
"(°Ą·É, Ăč čű° ”đœșĆ© ¶ÇŽÂ ÆÄÆŒŒÇÀș ĄžC:ĄčÀÔŽÏŽÙ.)"
-#: ../../help.pm_.c:544
+#: ../../help.pm_.c:538
msgid "Please be patient. This operation can take several minutes."
msgstr "±âŽÙ·Á ÁÖŒŒżä. ÀÌ ÀÛŸśÀș žî șĐÀÇ œĂ°ŁÀÌ °ÉžłŽÏŽÙ."
-#: ../../help.pm_.c:547
+#: ../../help.pm_.c:541
#, fuzzy
msgid ""
"DrakX now needs to know if you want to perform a default (\"Recommended\")\n"
@@ -3566,23 +3636,23 @@ msgid ""
"also choose to do a new install or an upgrade of an existing Mandrake Linux\n"
"system:\n"
"\n"
-" * \"Install\": completely wipes out the old system. In fact, depending on\n"
-"what currently holds your machine, you will be able to keep some old (Linux\n"
-"or other) partitions unchanged;\n"
+" * \"Install\": completely wipes out the old system, however, depending on\n"
+"what is currently installed on your machine, you may be able to keep some\n"
+"old partitions (Linux or otherwise) unchanged;\n"
"\n"
" * \"Upgrade\": this installation class allows to simply update the\n"
"packages currently installed on your Mandrake Linux system. It keeps the\n"
"current partitions of your hard drives as well as user configurations. All\n"
-"other configuration steps remain available with respect to plain\n"
+"other configuration steps remain available, similar to a normal\n"
"installation;\n"
"\n"
-" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
-"existing Mandrake Linux system while keeping all system configurations\n"
-"unchanged. Adding new packages to the current installation is also\n"
-"possible.\n"
+" * \"Upgrade Packages Only\": this new installation class allows you to\n"
+"upgrade an existing Mandrake Linux system while keeping all system\n"
+"configurations unchanged. Adding new packages to the current installation\n"
+"is also possible.\n"
"\n"
-"Upgrades should work fine for Mandrake Linux systems starting from \"8.1\"\n"
-"release.\n"
+"Upgrades should work fine on Mandrake Linux systems containing version\n"
+"\"8.1\" or later.\n"
"\n"
"Depending on your knowledge of GNU/Linux, select one of the following\n"
"choices:\n"
@@ -3591,11 +3661,11 @@ msgid ""
"operating system. The installation will be very easy and you will only be\n"
"asked a few questions;\n"
"\n"
-" * Expert: if you have a good knowledge of GNU/Linux, you can choose this\n"
-"installation class. The expert installation will allow you to perform a\n"
-"highly-customized installation. Answering some of the questions can be\n"
-"difficult if you do not have a good knowledge of GNU/Linux, so do not\n"
-"choose this unless you know what you are doing."
+" * Expert: if you have a good understanding of GNU/Linux, you may wish to\n"
+"perform a highly customized installation. Some of the decisions you will\n"
+"have to make may be difficult if you do not have good knowledge of\n"
+"GNU/Linux, so it is not recommended that those without a fair amount of\n"
+"experience select this installation class."
msgstr ""
"ÀÌÁŠ ŽÔÀș ±âș»ŒłÄĄ(Ąž±ÇÀćĄč) čæčę°ú șžŽÙ œÉ””ÀÖŽÂ Œ±ĆĂÀ» ÇÒ Œö ÀÖŽÂ\n"
"ĄžÀüčź°ĄĄčŒłÄĄ čæčę Áß ÇÏłȘžŠ Œ±ĆĂÇÒÁö °áÁ€ÇŰŸßŸß ÇŐŽÏŽÙ. ¶ÇÇŃ »ő·Îżî ŒłÄĄ"
@@ -3627,19 +3697,22 @@ msgstr ""
"GNU/LinuxżĄ ŽëÇŰŒ­ Àß žđž„ŽÙžé, ÁúčźżĄ ŽäÇÏ±â°Ą žĆżì Ÿî·Áżï Œö ÀÖœÀŽÏŽÙ.\n"
"”û¶óŒ­ ÈźœĆÀÌ Œ­Áö ŸÊŽÂŽÙžé ÀÌ ŒłÄĄčæčęÀ» Œ±ĆĂÇÏÁö ž¶ŒŒżä."
-#: ../../help.pm_.c:584
+#: ../../help.pm_.c:578
msgid ""
"Normally, DrakX selects the right keyboard for you (depending on the\n"
-"language you have chosen) and you won't even see this step. However, you\n"
-"might not have a keyboard that corresponds exactly to your language: for\n"
-"example, if you are an English speaking Swiss person, you may still want\n"
-"your keyboard to be a Swiss keyboard. Or if you speak English but are\n"
-"located in Quebec, you may find yourself in the same situation. In both\n"
-"cases, you will have to go back to this installation step and select an\n"
-"appropriate keyboard from the list.\n"
+"language you have chosen). However, you might not have a keyboard that\n"
+"corresponds exactly to your language: for example, if you are an English\n"
+"speaking Swiss person, you may still want your keyboard to be a Swiss\n"
+"keyboard. Or if you speak English but are located in Quebec, you may find\n"
+"yourself in the same situation. In both cases, you will have to go back to\n"
+"this installation step and select an appropriate keyboard from the list.\n"
"\n"
"Click on the \"More\" button to be presented with the complete list of\n"
-"supported keyboards."
+"supported keyboards.\n"
+"\n"
+"If you choose a keyboard layout based on a non-latin alphabet, you will be\n"
+"asked on next dialog to choose the key binding that will switch the\n"
+"keyboard layout between the latin and non latin layouts."
msgstr ""
"ÀÏčĘÀûÀž·Î, ”ć·čÀÌĆ©XŽÂ (ŽÔÀÌ Œ±ĆĂÇŃ ŸđŸîżĄ ±âčĘÇÏż©) żĂčÙž„ Ć°șž”枊\n"
"ÀÚ”żÀž·Î Œ±ĆĂÇŐŽÏŽÙ. ±Ś·ŻłȘ ŽÔÀÌ »çżëÇÏŽÂ ŸđŸîżĄ Á€ÈźÈś ÀÏÄĄÇÏŽÂ Ć°șž”枊\n"
@@ -3652,8 +3725,10 @@ msgstr ""
"Áöżű”ÇŽÂ žđ”ç Ć°șž”ć žń·ÏÀ» șž·Ážé, ĄžĂß°ĄÁ€șžĄčžŠ\n"
"Ž©žŁŒŒżä."
-#: ../../help.pm_.c:597
+#: ../../help.pm_.c:594
msgid ""
+"The first step is to choose your preferred language.\n"
+"\n"
"Please choose your preferred language for installation and system usage.\n"
"\n"
"Clicking on the \"Advanced\" button will allow you to select other\n"
@@ -3679,7 +3754,7 @@ msgstr ""
"ż©·Ż°łÀÇ Ăß°Ą ŸđŸîžŠ Œ±ĆĂÇÒ Œö”” ÀÖœÀŽÏŽÙ. ŸđŸî Œ±ĆĂÀ» łĄž¶ĂÆÀžžé,\n"
"ĄžÈźÀÎĄčÀ» Ž­·ŻŒ­ °èŒÓ ÁűÇàÇÏŒŒżä."
-#: ../../help.pm_.c:610
+#: ../../help.pm_.c:609
msgid ""
"DrakX generally detects the number of buttons your mouse has. If not, it\n"
"assumes you have a two-button mouse and will set it up for third-button\n"
@@ -3692,7 +3767,14 @@ msgid ""
"If you choose a mouse other than the default, a test screen will be\n"
"displayed. Use the buttons and wheel to verify that the settings are\n"
"correct. If the mouse is not working well, press the space bar or [Return]\n"
-"to \"Cancel\" and choose again."
+"to \"Cancel\" and choose again.\n"
+"\n"
+"Wheel mouses are sometimes not automatically detected. You will need to\n"
+"manually select it in the list. Be sure to select the one corresponding to\n"
+"the correct port it is attached to. After you have pressed the \"OK\"\n"
+"button, a mouse image is displayed. You then need to move the wheel of your\n"
+"mouse to activate it correctly. Then test all buttons and movements are\n"
+"correct."
msgstr ""
"±âș»ÀûÀž·Î ”ć·čÀÌĆ©XŽÂ ŽÔÀÌ 2čöÆ° ž¶żìœșžŠ »çżëÇŃŽÙ°í °ĄÁ€ÇÒ °ÍÀÌžç,\n"
"ŒŒ čű° čöÆ°Àș żĄčÄ·čÀÌŒÇÇÒ °ÍÀÔŽÏŽÙ. ž¶żìœș°Ą PS/2, œĂžźŸó, È€Àș USBżëÀÎÁö"
@@ -3707,7 +3789,7 @@ msgstr ""
"žžŸà ÁŠŽë·Î ÀÛ”żÇϱ⠟ÊÀžžé,ĄžĂëŒÒĄččöÆ° À§żĄŒ­ œșÆäÀÌœș Ć°łȘ żŁĆÍ Ć°žŠ\n"
"Ž©žŁ°í ŽÙœĂ Œ±ĆĂÇÏœĂ±â čÙ¶űŽÏŽÙ."
-#: ../../help.pm_.c:624
+#: ../../help.pm_.c:630
msgid ""
"Please select the correct port. For example, the \"COM1\" port under\n"
"Windows is named \"ttyS0\" under GNU/Linux."
@@ -3715,7 +3797,7 @@ msgstr ""
"Á€ÈźÇŃ ÆśÆźžŠ Œ±ĆĂÇÏŒŒżä. żčžŠ ”éŸî, MS À©””żìÁŒ­ COM1Àș\n"
"žźŽȘœșżĄŒ­ŽÂ ttyS0·Î žíží”ËŽÏŽÙ."
-#: ../../help.pm_.c:628
+#: ../../help.pm_.c:634
msgid ""
"This is the most crucial decision point for the security of your GNU/Linux\n"
"system: you have to enter the \"root\" password. \"root\" is the system\n"
@@ -3745,15 +3827,15 @@ msgid ""
"In Expert mode, you will be asked if you will be connecting to an\n"
"authentication server, like NIS or LDAP.\n"
"\n"
-"If your network uses the LDAP (or NIS) protocol for authentication, select\n"
-"\"LDAP\" (or \"NIS\") as authentication. If you do not know, ask your\n"
-"network administrator.\n"
+"If your network uses either of the LDAP, NIS, or PDC Windows Domain\n"
+"authentication services, select the appropriate one as \"authentication\".\n"
+"If you do not know, ask your network administrator.\n"
"\n"
"If your computer is not connected to any administrated network, you will\n"
"want to choose \"Local files\" for authentication."
msgstr ""
-#: ../../help.pm_.c:664
+#: ../../help.pm_.c:670
msgid ""
"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
@@ -3792,8 +3874,11 @@ msgid ""
"options. !!\n"
"\n"
"Clicking the \"Advanced\" button in this dialog will offer many advanced\n"
-"options, which are reserved to the expert user.\n"
-"\n"
+"options, which are reserved for the expert user."
+msgstr ""
+
+#: ../../help.pm_.c:710
+msgid ""
"After you have configured the general bootloader parameters, the list of\n"
"boot options which will be available at boot time will be displayed.\n"
"\n"
@@ -3801,16 +3886,7 @@ msgid ""
"automatically be added to the boot menu. Here, you can choose to fine-tune\n"
"the existing options. Select an entry and click \"Modify\" to modify or\n"
"remove it; \"Add\" creates a new entry; and \"Done\" goes on to the next\n"
-"installation step."
-msgstr ""
-
-#: ../../help.pm_.c:713
-msgid ""
-"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
-"either GNU/Linux or any other operating system present on your computer.\n"
-"Normally, these other operating systems are correctly detected and\n"
-"installed. If this is not the case, you can add an entry by hand in this\n"
-"screen. Be careful to choose the correct parameters.\n"
+"installation step.\n"
"\n"
"You may also not want to give access to these other operating systems to\n"
"anyone. In which case, you can delete the corresponding entries. But then,\n"
@@ -3873,18 +3949,18 @@ msgstr ""
#: ../../help.pm_.c:759
#, fuzzy
msgid ""
-"DrakX now detects any IDE device present in your computer. It will also\n"
-"scan for one or more PCI SCSI card(s) on your system. If a SCSI card is\n"
+"DrakX now detects any IDE devices present in your computer. It will also\n"
+"scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
"found, DrakX will automatically install the appropriate driver.\n"
"\n"
"Because hardware detection does not always detect a piece of hardware,\n"
"DrakX will ask you to confirm if a PCI SCSI card is present. Click \"Yes\"\n"
"if you know that there is a SCSI card installed in your machine. You will\n"
-"be presented a list of SCSI cards to choose from. Click \"No\" if you have\n"
-"no SCSI hardware. If you are unsure, you can check the list of hardware\n"
-"detected in your machine by selecting \"See hardware info\" and clicking\n"
-"\"OK\". Examine the list of hardware and then click on the \"OK\" button to\n"
-"return to the SCSI interface question.\n"
+"be presented with a list of SCSI cards to choose from. Click \"No\" if you\n"
+"have no SCSI hardware. If you are unsure, you can check the list of\n"
+"hardware detected in your machine by selecting \"See hardware info\" and\n"
+"clicking \"OK\". Examine the list of hardware and then click on the \"OK\"\n"
+"button to return to the SCSI interface question.\n"
"\n"
"If you have to manually specify your adapter, DrakX will ask if you want to\n"
"specify options for it. You should allow DrakX to probe the hardware for\n"
@@ -4029,7 +4105,9 @@ msgid ""
"order to configure the clock according to the time zone you are in;\n"
"\n"
" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
-"configuration wizard;\n"
+"configuration wizard. Consult the corresponding chapter of the ``User\n"
+"Guide'' for more information on how to setup a new printer. The interface\n"
+"presented there is similar to the one used during installation;\n"
"\n"
" * \"Sound card\": if a sound card is detected on your system, it is\n"
"displayed here. No modification possible at installation time;\n"
@@ -4069,7 +4147,7 @@ msgstr ""
"°ÍÀÔŽÏŽÙ. čöÆ°À» ĆŹžŻÇÏż© °ü·Ă ÀÎÀÚÀ» șŻ°æÇÒ Œö””\n"
"ÀÖœÀŽÏŽÙ."
-#: ../../help.pm_.c:894
+#: ../../help.pm_.c:896
msgid ""
"Choose the hard drive you want to erase in order to install your new\n"
"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
@@ -4079,7 +4157,7 @@ msgstr ""
"ÁÖÀÇ:\n"
"”đœșĆ©»óÀÇ žđ”ç ”„ÀÌĆÍŽÂ ŒŐœÇ”Çžç, ż”żűÈś ș豞°Ą șÒ°ĄŽÉÇŰ ÁęŽÏŽÙ!"
-#: ../../help.pm_.c:899
+#: ../../help.pm_.c:901
msgid ""
"Click on \"OK\" if you want to delete all data and partitions present on\n"
"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
@@ -4110,7 +4188,7 @@ msgstr ""
msgid "You must also format %s"
msgstr ""
-#: ../../install_any.pm_.c:418
+#: ../../install_any.pm_.c:423
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -4135,20 +4213,29 @@ msgstr ""
"\n"
"Á€ž»·Î ÀÌ Œ­čö”éÀ» ŒłÄĄÇŐŽÏ±î?\n"
-#: ../../install_any.pm_.c:453
+#: ../../install_any.pm_.c:441
+#, c-format
+msgid ""
+"The following packages will be removed to allow upgrading your system: %s\n"
+"\n"
+"\n"
+"Do you really want to remove these packages?\n"
+msgstr ""
+
+#: ../../install_any.pm_.c:471
msgid "Can't use broadcast with no NIS domain"
msgstr "NIS ””žȚÀÎ ŸűÀÌŽÂ șê·Î”ćÄÉœșÆźžŠ »çżëÇÒ Œö ŸűœÀŽÏŽÙ."
-#: ../../install_any.pm_.c:841
+#: ../../install_any.pm_.c:862
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "ÇĂ·ÎÇÇ ”đœșĆ©žŠ %s ”ć¶óÀÌșêżĄ łÖÀžŒŒżä"
-#: ../../install_any.pm_.c:845
+#: ../../install_any.pm_.c:866
msgid "This floppy is not FAT formatted"
msgstr "ÀÌ ÇĂ·ÎÇÇ ”đœșĆ©ŽÂ FAT ÆśžËÀÌ ŸÆŽŐŽÏŽÙ."
-#: ../../install_any.pm_.c:857
+#: ../../install_any.pm_.c:878
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -4156,11 +4243,19 @@ msgstr ""
"ÀÌ ÀúÀć”È ÆŃĆ°Áö Œ±ĆĂžń·ÏÀ» »çżëÇÒ·Ážé, ``linux defcfg=floppy''¶ó°í ÀÔ·ÂÇÏż© "
"ŒłÄĄÀ» œĂÀÛÇÏŒŒżä."
-#: ../../install_any.pm_.c:880 ../../partition_table.pm_.c:771
+#: ../../install_any.pm_.c:901 ../../partition_table.pm_.c:767
#, c-format
msgid "Error reading file %s"
msgstr "%s ÆÄÀÏÀ» ÀĐŽÂÁß żÀ·ù°Ą čß»ęÇßœÀŽÏŽÙ."
+#: ../../install_any.pm_.c:1023
+msgid ""
+"An error occurred - no valid devices were found on which to create new "
+"filesystems. Please check your hardware for the cause of this problem"
+msgstr ""
+"żÀ·ù čß»ę - »ő·Îżî ÆÄÀÏ œĂœșĆÛÀ» žž”é Ÿî¶Č żĂčÙž„ ÀćÄĄ”” ĂŁÀ» Œö ŸűœÀŽÏŽÙ.ÀÌ "
+"čźÁŠžŠ ÇŰ°áÇÏœĂ·Ážé, ÇÏ”ćżțŸîžŠ ÁĄ°ËÇŰ șžœĂ±â čÙ¶űŽÏŽÙ."
+
#: ../../install_interactive.pm_.c:23
#, c-format
msgid ""
@@ -4194,59 +4289,59 @@ msgstr ""
"\n"
"°èŒÓ ÁűÇàÇŐŽÏ±î?"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:168
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:169
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "Ąž/boot/efiĄčżĄ ž¶żîÆź”È FAT ÆÄÆŒŒÇÀÌ ÀÖŸîŸßžž ÇŐŽÏŽÙ."
-#: ../../install_interactive.pm_.c:91
+#: ../../install_interactive.pm_.c:92
msgid "Use free space"
msgstr "șó °ű°Ł »çżë"
-#: ../../install_interactive.pm_.c:93
+#: ../../install_interactive.pm_.c:94
msgid "Not enough free space to allocate new partitions"
msgstr "»ő·Îżî ÆÄÆŒŒÇÀ» žž”é Œö ÀÖŽÂ °ű°ŁÀÌ șÎÁ·ÇŐŽÏŽÙ."
-#: ../../install_interactive.pm_.c:101
+#: ../../install_interactive.pm_.c:102
msgid "Use existing partitions"
msgstr "±âÁžÀÇ ÆÄÆŒŒÇ »çżë"
-#: ../../install_interactive.pm_.c:103
+#: ../../install_interactive.pm_.c:104
msgid "There is no existing partition to use"
msgstr "»çżëÇÒ ±âÁžÀÇ ÆÄÆŒŒÇÀÌ ŸűœÀŽÏŽÙ."
-#: ../../install_interactive.pm_.c:110
+#: ../../install_interactive.pm_.c:111
msgid "Use the Windows partition for loopback"
msgstr "À©””żìÁî ÆÄÆŒŒÇÀ» ·çÇÁčéÀž·Î »çżë"
-#: ../../install_interactive.pm_.c:113
+#: ../../install_interactive.pm_.c:114
msgid "Which partition do you want to use for Linux4Win?"
msgstr "ŸîŽÀ ÆÄÆŒŒÇÀ» Linux4WinżëÀž·Î »çżëÇÏ°ÚœÀŽÏ±î?"
-#: ../../install_interactive.pm_.c:115
+#: ../../install_interactive.pm_.c:116
msgid "Choose the sizes"
msgstr "Ć©±â Œ±ĆĂ"
-#: ../../install_interactive.pm_.c:116
+#: ../../install_interactive.pm_.c:117
msgid "Root partition size in MB: "
msgstr "·çÆź ÆÄÆŒŒÇ Ć©±â(MB): "
-#: ../../install_interactive.pm_.c:117
+#: ../../install_interactive.pm_.c:118
msgid "Swap partition size in MB: "
msgstr "œșżÒ ÆÄÆŒŒÇ Ć©±â(MB): "
-#: ../../install_interactive.pm_.c:126
+#: ../../install_interactive.pm_.c:128
msgid "Use the free space on the Windows partition"
msgstr "À©””żìÁî ÆÄÆŒŒÇÀÇ șó °ű°Ł »çżëÇÏŒŒżä."
-#: ../../install_interactive.pm_.c:129
+#: ../../install_interactive.pm_.c:131
msgid "Which partition do you want to resize?"
msgstr "Ÿî¶Č ÆÄÆŒŒÇÀÇ Ć©±âžŠ Á¶Á€ÇÏœĂ°ÚœÀŽÏ±î?"
-#: ../../install_interactive.pm_.c:131
+#: ../../install_interactive.pm_.c:133
msgid "Resizing Windows partition"
msgstr "À©””żìÁî ÆÄÀÏ œĂœșĆÛÀÇ čüÀ§ °è»êÁß"
-#: ../../install_interactive.pm_.c:134
+#: ../../install_interactive.pm_.c:136
#, c-format
msgid ""
"The FAT resizer is unable to handle your partition, \n"
@@ -4255,7 +4350,7 @@ msgstr ""
"FAT Ć©±â Á¶Á€±â°Ą ŽÔÀÇ ÆÄÆŒŒÇÀ» ĂłžźÇÒ Œö ŸűœÀŽÏŽÙ.\n"
"ŽÙÀœÀÇ żÀ·ù°Ą čß»ęÇßœÀŽÏŽÙ: %s"
-#: ../../install_interactive.pm_.c:137
+#: ../../install_interactive.pm_.c:139
msgid ""
"Your Windows partition is too fragmented. Please reboot your computer under "
"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
@@ -4263,7 +4358,7 @@ msgid ""
msgstr ""
"À©””żìÁî ÆÄÆŒŒÇÀÌ œÉÇÏ°Ô Á¶°ąłȘ ÀÖœÀŽÏŽÙ. žŐÀú ``”đœșĆ© Á¶°ą žđÀœ''À» ÇÏŒŒżä."
-#: ../../install_interactive.pm_.c:138
+#: ../../install_interactive.pm_.c:140
#, fuzzy
msgid ""
"WARNING!\n"
@@ -4283,21 +4378,21 @@ msgstr ""
"ŒłÄĄžŠ ŽÙœĂ œĂÀÛÇÏŒŒżä. ¶ÇÇŃ ”„ÀÌĆÍ”” čéŸśÇŰ ”ÎŒŒżä.\n"
"ÁŰșń”ÆÀžžé, ĄžÈźÀÎĄčÀ» Ž©žŁŒŒżä."
-#: ../../install_interactive.pm_.c:148
+#: ../../install_interactive.pm_.c:150
msgid "Which size do you want to keep for Windows on"
msgstr "À©””żìÁîżëÀž·Î ŸîŽÀ żë·źÀ» ÀŻÁöÇÏœĂ°ÚœÀŽÏ±î?"
-#: ../../install_interactive.pm_.c:149
+#: ../../install_interactive.pm_.c:151
#, c-format
msgid "partition %s"
msgstr "ÆÄÆŒŒÇ %s"
-#: ../../install_interactive.pm_.c:156
+#: ../../install_interactive.pm_.c:158
#, c-format
msgid "FAT resizing failed: %s"
msgstr "FATĆ©±âÁ¶Á€ œÇÆĐ: %s"
-#: ../../install_interactive.pm_.c:171
+#: ../../install_interactive.pm_.c:173
msgid ""
"There is no FAT partition to resize or to use as loopback (or not enough "
"space left)"
@@ -4305,33 +4400,33 @@ msgstr ""
"loopback·Î »çżëÇÏ°ĆłȘ Ć©±âžŠ Á¶Á€ÇÒ FAT ÆÄÆŒŒÇÀÌ ŸűœÀŽÏŽÙ. (¶ÇŽÂ ”đœșĆ© °ű°Ł"
"ÀÌ șÎÁ·ÇŐŽÏŽÙ.)"
-#: ../../install_interactive.pm_.c:177
+#: ../../install_interactive.pm_.c:179
msgid "Erase entire disk"
msgstr "ÀüĂŒ ”đœșĆ© »èÁŠ"
-#: ../../install_interactive.pm_.c:177
+#: ../../install_interactive.pm_.c:179
msgid "Remove Windows(TM)"
msgstr "À©””żìÁî(TM) ÁŠ°Ć"
-#: ../../install_interactive.pm_.c:180
+#: ../../install_interactive.pm_.c:182
msgid "You have more than one hard drive, which one do you install linux on?"
msgstr ""
"ÇÏ”ć ”ć¶óÀÌșê°Ą ÇÏłȘ ÀÌ»ó ÀÖœÀŽÏŽÙ. ŸîŽÀ °ÍżĄ žźŽȘœșžŠ ŒłÄĄÇÏœĂ°ÚœÀŽÏ±î?"
-#: ../../install_interactive.pm_.c:183
+#: ../../install_interactive.pm_.c:185
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr "%s ”ć¶óÀÌșê »óÀÇ žđ”ç ±âÁž ÆÄÆŒŒÇ°ú ”„ÀÌĆÍ°Ą ŒŐœÇ”É °ÍÀÔŽÏŽÙ."
-#: ../../install_interactive.pm_.c:191
+#: ../../install_interactive.pm_.c:193
msgid "Custom disk partitioning"
msgstr "»çżëÀÚ Á€ÀÇ ÆÄÆŒŒÇ łȘŽ©±â"
-#: ../../install_interactive.pm_.c:195
+#: ../../install_interactive.pm_.c:197
msgid "Use fdisk"
msgstr "fdisk »çżë"
-#: ../../install_interactive.pm_.c:198
+#: ../../install_interactive.pm_.c:200
#, c-format
msgid ""
"You can now partition %s.\n"
@@ -4340,28 +4435,28 @@ msgstr ""
"ÀÌÁŠ %sÀÇ ÆÄÆŒŒÇ ÀÛŸśÀ» ÇÒ Œö ÀÖœÀŽÏŽÙ.\n"
"ž¶ÄŁ ÈÄ, 'w'žŠ Ž­·Ż ÀúÀćÇώ°ÍÀ» ÀŰÁöž¶ŒŒżä."
-#: ../../install_interactive.pm_.c:227
+#: ../../install_interactive.pm_.c:229
msgid "You don't have enough free space on your Windows partition"
msgstr "À©””żìÁî ÆÄÆŒŒÇżĄ ĂæșĐÇŃ °ű°ŁÀÌ ŸűœÀŽÏŽÙ."
-#: ../../install_interactive.pm_.c:243
+#: ../../install_interactive.pm_.c:245
msgid "I can't find any room for installing"
msgstr "ŒłÄĄżĄ ÇÊżäÇŃ °ű°ŁÀ» ĂŁÀ» Œö ŸűœÀŽÏŽÙ."
-#: ../../install_interactive.pm_.c:246
+#: ../../install_interactive.pm_.c:248
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr "”ć·čÀÌĆ©X ÆÄÆŒŒÇ ž¶čę»ç°Ą ŽÙÀœÀÇ ŒÖ·çŒÇÀ» čß°ßÇßœÀŽÏŽÙ:"
-#: ../../install_interactive.pm_.c:250
+#: ../../install_interactive.pm_.c:252
#, c-format
msgid "Partitioning failed: %s"
msgstr "ÆÄÆŒŒÇ łȘŽ©±â œÇÆĐ: %s"
-#: ../../install_interactive.pm_.c:260
+#: ../../install_interactive.pm_.c:262
msgid "Bringing up the network"
msgstr "łŚÆźżś È°ŒșÈ­ Áß..."
-#: ../../install_interactive.pm_.c:265
+#: ../../install_interactive.pm_.c:267
msgid "Bringing down the network"
msgstr "łŚÆźżś ÇŰÁŠ Áß..."
@@ -4373,12 +4468,12 @@ msgstr ""
"żÀ·ù°Ą čß»ęÇßœÀŽÏŽÙ. ±Ś·ŻłȘ ÀûÀęÈś ĂłžźÇÒ Œö ŸűœÀŽÏŽÙ.\n"
"À§ÇëÀ» °šŒöÇÒ·Ážé °èŒÓÇÏŒŒżä."
-#: ../../install_steps.pm_.c:210
+#: ../../install_steps.pm_.c:211
#, c-format
msgid "Duplicate mount point %s"
msgstr "ž¶żîÆź ÆśÀÎÆź Áßșč %s"
-#: ../../install_steps.pm_.c:379
+#: ../../install_steps.pm_.c:380
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -4390,12 +4485,12 @@ msgstr ""
"ÀÌčÌ ŒłÄĄ°Ą żÏ·á”È ÄÄÇ»ĆÍżĄŒ­ Ąžrpm -qpl Mandrake/RPMS/*.rpmĄčží·ÉÀž·Î ÁĄ°Ë"
"ÇŰ șžŒŒżä.\n"
-#: ../../install_steps.pm_.c:451
+#: ../../install_steps.pm_.c:452
#, c-format
msgid "Welcome to %s"
msgstr "%sżĄ żÀœĆ°ÍÀ» ÈŻż”ÇŐŽÏŽÙ."
-#: ../../install_steps.pm_.c:530 ../../install_steps.pm_.c:770
+#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:772
msgid "No floppy drive available"
msgstr "ÇĂ·ÎÇÇ ”ć¶óÀÌș꞊ »çżëÇÒ Œö ŸűœÀŽÏŽÙ."
@@ -4427,69 +4522,69 @@ msgstr "ŒłÄĄ ÀŻÇü"
msgid "Please choose one of the following classes of installation:"
msgstr "ŽÙÀœ ŒłÄĄ ÀŻÇüÁß ÇÏłȘžŠ Œ±ĆĂÇŰ ÁÖŒŒżä."
-#: ../../install_steps_gtk.pm_.c:243 ../../install_steps_interactive.pm_.c:694
+#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:678
msgid "Package Group Selection"
msgstr "ÆŃĆ°Áö ±Ś·ì Œ±ĆĂ"
-#: ../../install_steps_gtk.pm_.c:276 ../../install_steps_interactive.pm_.c:709
+#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:693
msgid "Individual package selection"
msgstr "°łș° ÆŃĆ°Áö Œ±ĆĂ"
-#: ../../install_steps_gtk.pm_.c:299 ../../install_steps_interactive.pm_.c:633
+#: ../../install_steps_gtk.pm_.c:293 ../../install_steps_interactive.pm_.c:617
#, c-format
msgid "Total size: %d / %d MB"
msgstr "ÀüĂŒ Ć©±â: %d / %d MB"
-#: ../../install_steps_gtk.pm_.c:341
+#: ../../install_steps_gtk.pm_.c:335
msgid "Bad package"
msgstr "Àßžű”È ÆŃĆ°Áö"
-#: ../../install_steps_gtk.pm_.c:342
+#: ../../install_steps_gtk.pm_.c:336
#, c-format
msgid "Name: %s\n"
msgstr "ÀÌž§: %s\n"
-#: ../../install_steps_gtk.pm_.c:343
+#: ../../install_steps_gtk.pm_.c:337
#, c-format
msgid "Version: %s\n"
msgstr "čöÁŻ: %s\n"
-#: ../../install_steps_gtk.pm_.c:344
+#: ../../install_steps_gtk.pm_.c:338
#, c-format
msgid "Size: %d KB\n"
msgstr "Ć©±â: %d KB\n"
-#: ../../install_steps_gtk.pm_.c:345
+#: ../../install_steps_gtk.pm_.c:339
#, c-format
msgid "Importance: %s\n"
msgstr "ÁßżäŒș: %s\n"
-#: ../../install_steps_gtk.pm_.c:367
+#: ../../install_steps_gtk.pm_.c:361
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr "”đœșĆ© °ű°ŁÀÌ șÎÁ·Çϱ⠶§čźżĄ ÀÌ ÆŃĆ°ÁöžŠ Œ±ĆĂÇÒ Œö ŸűœÀŽÏŽÙ."
-#: ../../install_steps_gtk.pm_.c:372
+#: ../../install_steps_gtk.pm_.c:366
msgid "The following packages are going to be installed"
msgstr "ŽÙÀœ ÆŃĆ°Áö”éÀÌ ŒłÄĄ”É °ÍÀÔŽÏŽÙ."
-#: ../../install_steps_gtk.pm_.c:373
+#: ../../install_steps_gtk.pm_.c:367
msgid "The following packages are going to be removed"
msgstr "ŽÙÀœ ÆŃĆ°Áö”éÀÌ ÁŠ°Ć”É °ÍÀÔŽÏŽÙ."
-#: ../../install_steps_gtk.pm_.c:385
+#: ../../install_steps_gtk.pm_.c:379
msgid "You can't select/unselect this package"
msgstr "ÀÌ ÆŃĆ°ÁöžŠ Œ±ĆĂ/čöžČ ÇÒŒö ŸűœÀŽÏŽÙ."
-#: ../../install_steps_gtk.pm_.c:397
+#: ../../install_steps_gtk.pm_.c:391
msgid "This is a mandatory package, it can't be unselected"
msgstr "ÀÌ°ÍÀș ÇÊŒöÀûÀÎ ÆŃĆ°ÁöÀÔŽÏŽÙ. čĘ”ćœĂ Œ±ĆĂ”ÇŸîŸß ÇŐŽÏŽÙ."
-#: ../../install_steps_gtk.pm_.c:399
+#: ../../install_steps_gtk.pm_.c:393
msgid "You can't unselect this package. It is already installed"
msgstr "ÀÌ ÆŃĆ°ÁöžŠ Œ±ĆĂÇŰÁŠÇÒ Œö ŸűœÀŽÏŽÙ. ÀÌčÌ ŒłÄĄ ”ÇŸúœÀŽÏŽÙ."
-#: ../../install_steps_gtk.pm_.c:402
+#: ../../install_steps_gtk.pm_.c:396
msgid ""
"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
@@ -4497,74 +4592,74 @@ msgstr ""
"ÀÌ ÆŃĆ°ÁöŽÂ čĘ”ćœĂ Ÿś±Ś·čÀÌ”ć”ÇŸîŸß ÇŐŽÏŽÙ.\n"
"Á€ž»·Î Œ±ĆĂÀ» ÇŰÁŠÇÏœĂ°ÚœÀŽÏ±î?"
-#: ../../install_steps_gtk.pm_.c:405
+#: ../../install_steps_gtk.pm_.c:399
msgid "You can't unselect this package. It must be upgraded"
msgstr "ÀÌ ÆŃĆ°ÁöžŠ Œ±ĆĂÇŰÁŠÇÒŒö ŸűœÀŽÏŽÙ. čĘ”ćœĂ Ÿś±Ś·čÀÌ”ć”ÇŸîŸß ÇŐŽÏŽÙ."
-#: ../../install_steps_gtk.pm_.c:410
+#: ../../install_steps_gtk.pm_.c:404
msgid "Show automatically selected packages"
msgstr "ÀÚ”żÀž·Î Œ±ĆĂ”È ÆŃĆ°Áö”é șžÀ̱â"
-#: ../../install_steps_gtk.pm_.c:411 ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_gtk.pm_.c:405 ../../install_steps_interactive.pm_.c:255
#: ../../install_steps_interactive.pm_.c:259
-#: ../../standalone/drakbackup_.c:3600
+#: ../../standalone/drakbackup_.c:4257
msgid "Install"
msgstr "ŒłÄĄ"
-#: ../../install_steps_gtk.pm_.c:414
+#: ../../install_steps_gtk.pm_.c:408
msgid "Load/Save on floppy"
msgstr "ÇĂ·ÎÇÇżĄ ÀúÀć/ÀûÀç"
-#: ../../install_steps_gtk.pm_.c:415
+#: ../../install_steps_gtk.pm_.c:409
msgid "Updating package selection"
msgstr "Œ±ĆĂ”È ÆŃĆ°Áö žń·Ï Ÿś”„ÀÌÆź Áß"
-#: ../../install_steps_gtk.pm_.c:420
+#: ../../install_steps_gtk.pm_.c:414
msgid "Minimal install"
msgstr "ĂÖŒÒ ŒłÄĄ"
-#: ../../install_steps_gtk.pm_.c:435 ../../install_steps_interactive.pm_.c:538
+#: ../../install_steps_gtk.pm_.c:429 ../../install_steps_interactive.pm_.c:522
msgid "Choose the packages you want to install"
msgstr "ŒłÄĄÇÏ°íÀÚ ÇÏŽÂ ÆŃĆ°ÁöžŠ Œ±ĆĂÇÏŒŒżä."
-#: ../../install_steps_gtk.pm_.c:451 ../../install_steps_interactive.pm_.c:778
+#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:762
msgid "Installing"
msgstr "ŒłÄĄÁß"
-#: ../../install_steps_gtk.pm_.c:457
+#: ../../install_steps_gtk.pm_.c:451
msgid "Estimating"
msgstr "°è»ê Áß"
-#: ../../install_steps_gtk.pm_.c:464
+#: ../../install_steps_gtk.pm_.c:458
msgid "Time remaining "
msgstr "łČÀș œĂ°Ł "
-#: ../../install_steps_gtk.pm_.c:476
+#: ../../install_steps_gtk.pm_.c:470
msgid "Please wait, preparing installation..."
msgstr "ŒłÄĄ ÁŰșńÁßÀÔŽÏŽÙ. ÀáœĂ ±âŽÙžźŒŒżä."
-#: ../../install_steps_gtk.pm_.c:560
+#: ../../install_steps_gtk.pm_.c:554
#, c-format
msgid "%d packages"
msgstr "%d ÆŃĆ°Áö"
-#: ../../install_steps_gtk.pm_.c:565
+#: ../../install_steps_gtk.pm_.c:559
#, c-format
msgid "Installing package %s"
msgstr "%s ÆŃĆ°Áö ŒłÄĄÁß"
-#: ../../install_steps_gtk.pm_.c:602 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:802
+#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:786
#: ../../standalone/drakautoinst_.c:202
msgid "Accept"
msgstr "”żÀÇ"
-#: ../../install_steps_gtk.pm_.c:602 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:802
+#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:786
msgid "Refuse"
msgstr "°ĆșÎ"
-#: ../../install_steps_gtk.pm_.c:603 ../../install_steps_interactive.pm_.c:803
+#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:787
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4578,17 +4673,17 @@ msgstr ""
"Ąž%sĄč¶ó°í ŸČż©Áű CDROMÀ» ”ć¶óÀÌșêżĄ łÖÀș ÈÄ, ĄžÈźÀÎĄčÀ» Ž­·Ż ÁÖŒŒżä.\n"
"žžŸà CDROMÀ» °ĄÁö°í ÀÖÁö ŸÊŽÙžé, ĄžĂëŒÒĄčžŠ Ž­·Ż Ăß°Ą ŒłÄĄžŠ ĂëŒÒÇÏŒŒżä."
-#: ../../install_steps_gtk.pm_.c:617 ../../install_steps_gtk.pm_.c:621
-#: ../../install_steps_interactive.pm_.c:815
-#: ../../install_steps_interactive.pm_.c:819
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_gtk.pm_.c:615
+#: ../../install_steps_interactive.pm_.c:799
+#: ../../install_steps_interactive.pm_.c:803
msgid "Go on anyway?"
msgstr "°èŒÓ ÁűÇàÇŐŽÏ±î?"
-#: ../../install_steps_gtk.pm_.c:617 ../../install_steps_interactive.pm_.c:815
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:799
msgid "There was an error ordering packages:"
msgstr "ÆŃĆ°ÁöžŠ Á€·ÄÇÏŽÂ Áß żÀ·ùčß»ę:"
-#: ../../install_steps_gtk.pm_.c:621 ../../install_steps_interactive.pm_.c:819
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:803
msgid "There was an error installing packages:"
msgstr "ŽÙÀœ ÆŃĆ°ÁöžŠ ŒłÄĄÁß żÀ·ù°Ą čß»ęÇßœÀŽÏŽÙ: "
@@ -4762,7 +4857,7 @@ msgid "Are you sure you refuse the licence?"
msgstr ""
#: ../../install_steps_interactive.pm_.c:211
-#: ../../install_steps_interactive.pm_.c:1038
+#: ../../install_steps_interactive.pm_.c:1023
#: ../../standalone/keyboarddrake_.c:31
msgid "Keyboard"
msgstr "Ć°șž”ć"
@@ -4810,11 +4905,11 @@ msgstr "ÆŃĆ°Áöžž Ÿś±Ś·čÀÌ”ć"
msgid "Please choose the type of your mouse."
msgstr "ž¶żìœș ÁŸ·ùžŠ Œ±ĆĂÇÏŒŒżä."
-#: ../../install_steps_interactive.pm_.c:281 ../../standalone/mousedrake_.c:59
+#: ../../install_steps_interactive.pm_.c:281 ../../standalone/mousedrake_.c:60
msgid "Mouse Port"
msgstr "ž¶żìœș ÆśÆź"
-#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:61
msgid "Please choose on which serial port your mouse is connected to."
msgstr "Ÿî¶Č œĂžźŸó ÆśÆźżĄ ž¶żìœș°Ą żŹ°á”ÇŸî ÀÖłȘżä?"
@@ -4846,120 +4941,94 @@ msgstr "IDE ŒłÁ€Áß"
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:336
+#: ../../install_steps_interactive.pm_.c:338
msgid "No partition available"
msgstr "»çżë°ĄŽÉÇŃ ÆÄÆŒŒÇÀÌ ŸűœÀŽÏŽÙ."
-#: ../../install_steps_interactive.pm_.c:339
+#: ../../install_steps_interactive.pm_.c:341
msgid "Scanning partitions to find mount points"
msgstr "ž¶żîÆź À§ÄĄžŠ ĂŁ±âÀ§ÇŰ ÆÄÆŒŒÇ”éÀ» °Ë»ö Áß"
-#: ../../install_steps_interactive.pm_.c:347
+#: ../../install_steps_interactive.pm_.c:349
msgid "Choose the mount points"
msgstr "ž¶żîÆź À§ÄĄžŠ Œ±ĆĂÇŰ ÁÖŒŒżä."
-#: ../../install_steps_interactive.pm_.c:366
-#, c-format
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to not allow DrakX to modify the partition table.\n"
-"(the error is %s)\n"
-"\n"
-"Do you agree to loose all the partitions?\n"
-msgstr ""
-"ÇÏ”ć ”đœșĆ©ÀÇ ÆÄÆŒŒÇ ĆŚÀÌșíÀ» ÀĐÀ»Œö ŸűœÀŽÏŽÙ. łÊč« ŒŐ»ó”ÇŸî ÀÖœÀŽÏŽÙ:(\n"
-"čźÁŠÀÖŽÂ ÆÄÆŒŒÇÀ» șńżì±âÀ§ÇŃ œĂ””žŠ ÇÒ Œö ÀÖœÀŽÏŽÙ.(žđ”ç ”„ÀÌĆÍ°Ą ŒŐœÇ”ËŽÏ"
-"ŽÙ!)\n"
-"ŽÙž„ ÇŰ°áĂ„Àș DrakX°Ą ÆÄÆŒŒÇ ĆŚÀÌșíÀ» șŻ°æÇÏÁö žűÇÏ°Ô ÇÏŽÂ °ÍÀÔŽÏŽÙ.\n"
-"(żÀ·ùŽÂ %s ÀÔŽÏŽÙ.)\n"
-"\n"
-"ÆÄÆŒŒÇ”éÀ» ÀÒŸî”” ÁÁœÀŽÏ±î?\n"
-
#: ../../install_steps_interactive.pm_.c:379
msgid ""
-"DiskDrake failed to read correctly the partition table.\n"
-"Continue at your own risk!"
-msgstr ""
-"”đœșĆ©”ć·čĆ©°Ą ÆÄÆŒŒÇ ĆŚÀÌșíÀ» Á€ÈźÈś ÀĐŸîżÀŽÂ”„ œÇÆĐÇßœÀŽÏŽÙ.\n"
-"À§ÇèÀ» °šŒöÇÒ ÁŰșń°Ą ”È °æżìżĄžž °èŒÓÇÏŒŒżä!"
-
-#: ../../install_steps_interactive.pm_.c:396
-msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
msgstr ""
"1MB șÎÆźœșÆź·Š °ű°Ł șÎÁ·! ŒłÄĄŽÂ °èŒÓÇÒ Œö ÀÖÁöžž, œĂœșĆÛÀ» șÎÆĂÇϱâ À§ÇŰŒ­"
"ŽÂ ”đœșĆ©”ć·čÀÌĆ©żĄŒ­ șÎÆźœșÆź·Š ÆÄÆŒŒÇÀ» žž”éŸîŸß ÇŐŽÏŽÙ."
-#: ../../install_steps_interactive.pm_.c:405
+#: ../../install_steps_interactive.pm_.c:388
msgid "No root partition found to perform an upgrade"
msgstr "Ÿś±Ś·čÀÌ”ćÇÒ ·çÆź ÆÄÆŒŒÇÀ» ĂŁÀ» Œö ŸűœÀŽÏŽÙ."
-#: ../../install_steps_interactive.pm_.c:406
+#: ../../install_steps_interactive.pm_.c:389
msgid "Root Partition"
msgstr "·çÆź ÆÄÆŒŒÇ"
-#: ../../install_steps_interactive.pm_.c:407
+#: ../../install_steps_interactive.pm_.c:390
msgid "What is the root partition (/) of your system?"
msgstr "œĂœșĆÛżĄŒ­ ·çÆź ÆÄÆŒŒÇ(/)Àș Ÿî¶Č°ÍÀԎϱî?"
-#: ../../install_steps_interactive.pm_.c:421
+#: ../../install_steps_interactive.pm_.c:404
msgid "You need to reboot for the partition table modifications to take place"
msgstr "ÆÄÆŒŒÇ ĆŚÀÌșí șŻ°æ»çÇŚÀ» ÀûżëÇÏ·Ážé žźșÎÆĂÀ» ÇŰŸß ÇŐŽÏŽÙ."
-#: ../../install_steps_interactive.pm_.c:445
+#: ../../install_steps_interactive.pm_.c:428
msgid "Choose the partitions you want to format"
msgstr "ÆśžËÇÒ ÆÄÆŒŒÇÀ» Œ±ĆĂÇÏŒŒżä"
-#: ../../install_steps_interactive.pm_.c:446
+#: ../../install_steps_interactive.pm_.c:429
msgid "Check bad blocks?"
msgstr "čè”ć șí·° °Ë»çžŠ ÇŐŽÏ±î?"
-#: ../../install_steps_interactive.pm_.c:473
+#: ../../install_steps_interactive.pm_.c:456
msgid "Formatting partitions"
msgstr "ÆÄÆŒŒÇ ÆśžË"
-#: ../../install_steps_interactive.pm_.c:475
+#: ../../install_steps_interactive.pm_.c:458
#, c-format
msgid "Creating and formatting file %s"
msgstr "%s ÆÄÀÏžŠ »ęŒșÇÏ°í ÆśžË"
-#: ../../install_steps_interactive.pm_.c:480
+#: ../../install_steps_interactive.pm_.c:463
#, c-format
msgid ""
"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
"you can loose data)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:482
+#: ../../install_steps_interactive.pm_.c:465
msgid "Not enough swap space to fulfill installation, please add some"
msgstr "œșżÒ žȚžđžź°Ą șÎÁ·ÇŐŽÏŽÙ. Á» Žő Ăß°ĄÇÏŒŒżä."
-#: ../../install_steps_interactive.pm_.c:489
+#: ../../install_steps_interactive.pm_.c:472
msgid "Looking for available packages and rebuilding rpm database..."
msgstr "ÀŻÈżÇŃ ÆŃĆ°Áö °Ë»ö čŚ RPM ”„ÀÌĆÍșŁÀÌœș ÀçÁ¶ÇŐ Áß..."
-#: ../../install_steps_interactive.pm_.c:490
+#: ../../install_steps_interactive.pm_.c:473
msgid "Looking for available packages..."
msgstr "ÀŻÈżÇŃ ÆŃĆ°ÁöžŠ ĂŁ°í ÀÖœÀŽÏŽÙ."
-#: ../../install_steps_interactive.pm_.c:493
+#: ../../install_steps_interactive.pm_.c:476
msgid "Looking at packages already installed..."
msgstr "ÀÌčÌ ŒłÄĄ”È ÆŃĆ°Áö ĂŁŽÂ Áß..."
-#: ../../install_steps_interactive.pm_.c:497
+#: ../../install_steps_interactive.pm_.c:480
msgid "Finding packages to upgrade..."
msgstr "Ÿś±Ś·čÀÌ”ćÇÒ ÆŃĆ°ÁöžŠ °Ë»öÁßÀÔŽÏŽÙ."
-#: ../../install_steps_interactive.pm_.c:515
+#: ../../install_steps_interactive.pm_.c:498
#, c-format
msgid ""
"Your system does not have enough space left for installation or upgrade (%d "
"> %d)"
msgstr "ŒłÄĄ ¶ÇŽÂ Ÿś±Ś·čÀÌ”ćžŠ À§ÇŃ ”đœșĆ© °ű°ŁÀÌ șÎÁ·ÇŐŽÏŽÙ. (%d > %d)"
-#: ../../install_steps_interactive.pm_.c:550
+#: ../../install_steps_interactive.pm_.c:534
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
@@ -4967,53 +5036,53 @@ msgstr ""
"ÇĂ·ÎÇÇżĄ ÆŃĆ°Áö Œ±ĆĂžń·ÏÀ» ÀûÀç ¶ÇŽÂ ÀúÀćÇÒÁöžŠ Œ±ĆĂÇÏŒŒżä.\n"
"ÇüœÄ(ÆśžË)Àș ÀÚ”żŒłÄĄ »ęŒș ÇĂ·ÎÇÇżÍ ”żÀÏÇŐŽÏŽÙ."
-#: ../../install_steps_interactive.pm_.c:553
+#: ../../install_steps_interactive.pm_.c:537
msgid "Load from floppy"
msgstr "ÇĂ·ÎÇÇżĄŒ­ Àбâ"
-#: ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_interactive.pm_.c:539
msgid "Loading from floppy"
msgstr "ÇĂ·ÎÇÇżĄŒ­ ÀĐŽÂ Áß"
-#: ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_interactive.pm_.c:539
msgid "Package selection"
msgstr "ÆŃĆ°Áö Œ±ĆĂ"
-#: ../../install_steps_interactive.pm_.c:560
+#: ../../install_steps_interactive.pm_.c:544
msgid "Insert a floppy containing package selection"
msgstr "ÆŃĆ°Áö Œ±ĆĂžń·Ï ÇĂ·ÎÇÇ ”đœșĆ©žŠ łÖÀžŒŒżä."
-#: ../../install_steps_interactive.pm_.c:572
+#: ../../install_steps_interactive.pm_.c:556
msgid "Save on floppy"
msgstr "ÇĂ·ÎÇÇżĄ ÀúÀć"
-#: ../../install_steps_interactive.pm_.c:646
+#: ../../install_steps_interactive.pm_.c:630
msgid "Selected size is larger than available space"
msgstr "Œ±ĆĂ”È żë·źÀÌ »çżëÇÒ Œö ÀÖŽÂ °ű°ŁșžŽÙ ĆźŽÏŽÙ."
-#: ../../install_steps_interactive.pm_.c:660
+#: ../../install_steps_interactive.pm_.c:644
msgid "Type of install"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:661
+#: ../../install_steps_interactive.pm_.c:645
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:664
+#: ../../install_steps_interactive.pm_.c:648
msgid "With X"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:666
+#: ../../install_steps_interactive.pm_.c:650
msgid "With basic documentation (recommended!)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:667
+#: ../../install_steps_interactive.pm_.c:651
msgid "Truly minimal install (especially no urpmi)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:752
+#: ../../install_steps_interactive.pm_.c:736
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -5023,16 +5092,16 @@ msgstr ""
"ÀüÇô °ĄÁö°í ÀÖÁö ŸÊŽÙžé, ĄžĂëŒÒĄčžŠ, \n"
"ÀÏșΞž °ĄÁö°í ÀÖŽÙžé, ŸűŽÂ CDžŠ Œ±ĆĂÇŰÁŠÇŃ ÈÄżĄ ĄžÈźÀÎĄčÀ» Ž©žŁŒŒżä."
-#: ../../install_steps_interactive.pm_.c:757
+#: ../../install_steps_interactive.pm_.c:741
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "Ąž%sĄč¶ó°í Ç„œĂ”È CDROM"
-#: ../../install_steps_interactive.pm_.c:778
+#: ../../install_steps_interactive.pm_.c:762
msgid "Preparing installation"
msgstr "ŒłÄĄ ÁŰșńÁßÀÔŽÏŽÙ"
-#: ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:771
#, c-format
msgid ""
"Installing package %s\n"
@@ -5041,21 +5110,21 @@ msgstr ""
" %s ÆŃĆ°Áö ŒłÄĄ Áß... \n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:833
+#: ../../install_steps_interactive.pm_.c:817
msgid "Post-install configuration"
msgstr "ŒłÄĄÀü ÈŻ°æŒłÁ€"
-#: ../../install_steps_interactive.pm_.c:839
+#: ../../install_steps_interactive.pm_.c:823
#, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "șÎÆĂ ÇĂ·ÎÇÇžŠ %s ”ć¶óÀÌșêżĄ łÖÀžŒŒżä"
-#: ../../install_steps_interactive.pm_.c:845
+#: ../../install_steps_interactive.pm_.c:829
#, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Ÿś”„ÀÌÆź žđ”â ÇĂ·ÎÇÇžŠ %s ”ć¶óÀÌșêżĄ łÖÀžŒŒżä"
-#: ../../install_steps_interactive.pm_.c:865
+#: ../../install_steps_interactive.pm_.c:849
msgid ""
"You now have the opportunity to download encryption software.\n"
"\n"
@@ -5094,7 +5163,7 @@ msgid ""
"USA"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:904
+#: ../../install_steps_interactive.pm_.c:888
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
"have been released after the distribution was released. They may\n"
@@ -5106,154 +5175,154 @@ msgid ""
"Do you want to install the updates ?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:919
+#: ../../install_steps_interactive.pm_.c:903
msgid ""
"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr "ÀŻÈżÇŃ čÌ·Ż žń·ÏÀ» čȚ±â À§ÇŰ žÇ”ć·čÀÌĆ© žźŽȘœș À„»çÀÌÆźżĄ ÁąŒÓ Áß..."
-#: ../../install_steps_interactive.pm_.c:924
+#: ../../install_steps_interactive.pm_.c:908
msgid "Choose a mirror from which to get the packages"
msgstr "ÆŃĆ°ÁöžŠ čȚÀ» čÌ·Ż »çÀÌÆźžŠ Œ±ĆĂÇŰ ÁÖŒŒżä."
-#: ../../install_steps_interactive.pm_.c:933
+#: ../../install_steps_interactive.pm_.c:917
msgid "Contacting the mirror to get the list of available packages..."
msgstr "»çżë°ĄŽÉÇŃ ÆŃĆ°ÁöÀÇ žźœșÆźžŠ čÌ·Ż »çÀÌÆźżĄ ÁąŒÓÇŰŒ­ čȚœÀŽÏŽÙ."
-#: ../../install_steps_interactive.pm_.c:960
+#: ../../install_steps_interactive.pm_.c:945
msgid "Which is your timezone?"
msgstr "ŽÔÀÇ œĂ°ŁŽëŽÂ Ÿî”đÀԎϱî?"
-#: ../../install_steps_interactive.pm_.c:965
+#: ../../install_steps_interactive.pm_.c:950
msgid "Hardware clock set to GMT"
msgstr "ÇÏ”ćżțŸî œĂ°è GMT ŒłÁ€"
-#: ../../install_steps_interactive.pm_.c:966
+#: ../../install_steps_interactive.pm_.c:951
msgid "Automatic time synchronization (using NTP)"
msgstr "ÀÚ”ż œĂ°Ł ”ż±âÈ­ (NTP »çżë)"
-#: ../../install_steps_interactive.pm_.c:973
+#: ../../install_steps_interactive.pm_.c:958
msgid "NTP Server"
msgstr "NTP Œ­čö"
-#: ../../install_steps_interactive.pm_.c:1007
-#: ../../install_steps_interactive.pm_.c:1015
+#: ../../install_steps_interactive.pm_.c:992
+#: ../../install_steps_interactive.pm_.c:1000
msgid "Remote CUPS server"
msgstr "żű°Ę CUPS Œ­čö"
-#: ../../install_steps_interactive.pm_.c:1008
+#: ../../install_steps_interactive.pm_.c:993
msgid "No printer"
msgstr "ÇÁž°ĆÍ ŸűÀœ"
-#: ../../install_steps_interactive.pm_.c:1025
+#: ../../install_steps_interactive.pm_.c:1010
msgid "Do you have an ISA sound card?"
msgstr "ISA »çżî”ć Ä«”ć°Ą ÀÖœÀŽÏ±î?"
-#: ../../install_steps_interactive.pm_.c:1027
+#: ../../install_steps_interactive.pm_.c:1012
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1029
+#: ../../install_steps_interactive.pm_.c:1014
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1034 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1019 ../../steps.pm_.c:27
msgid "Summary"
msgstr "żäŸàŒłží"
-#: ../../install_steps_interactive.pm_.c:1037
+#: ../../install_steps_interactive.pm_.c:1022
msgid "Mouse"
msgstr "ž¶żìœș"
-#: ../../install_steps_interactive.pm_.c:1039
+#: ../../install_steps_interactive.pm_.c:1024
msgid "Timezone"
msgstr "œĂ°ŁŽë"
-#: ../../install_steps_interactive.pm_.c:1040 ../../printerdrake.pm_.c:2728
-#: ../../printerdrake.pm_.c:2814
+#: ../../install_steps_interactive.pm_.c:1025 ../../printerdrake.pm_.c:2937
+#: ../../printerdrake.pm_.c:3026
msgid "Printer"
msgstr "ÇÁž°ĆÍ"
-#: ../../install_steps_interactive.pm_.c:1042
+#: ../../install_steps_interactive.pm_.c:1027
msgid "ISDN card"
msgstr "ISDN Ä«”ć"
-#: ../../install_steps_interactive.pm_.c:1045
-#: ../../install_steps_interactive.pm_.c:1047
+#: ../../install_steps_interactive.pm_.c:1030
+#: ../../install_steps_interactive.pm_.c:1032
msgid "Sound card"
msgstr "»çżî”ć Ä«”ć"
-#: ../../install_steps_interactive.pm_.c:1049
+#: ../../install_steps_interactive.pm_.c:1034
msgid "TV card"
msgstr "TV Ä«”ć"
-#: ../../install_steps_interactive.pm_.c:1089
-#: ../../install_steps_interactive.pm_.c:1114
-#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1074
+#: ../../install_steps_interactive.pm_.c:1099
+#: ../../install_steps_interactive.pm_.c:1103
msgid "LDAP"
msgstr "LDAP"
-#: ../../install_steps_interactive.pm_.c:1090
-#: ../../install_steps_interactive.pm_.c:1114
-#: ../../install_steps_interactive.pm_.c:1127
+#: ../../install_steps_interactive.pm_.c:1075
+#: ../../install_steps_interactive.pm_.c:1099
+#: ../../install_steps_interactive.pm_.c:1112
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1091
-#: ../../install_steps_interactive.pm_.c:1114
-#: ../../install_steps_interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1141
+#: ../../install_steps_interactive.pm_.c:1076
+#: ../../install_steps_interactive.pm_.c:1099
+#: ../../install_steps_interactive.pm_.c:1120
+#: ../../install_steps_interactive.pm_.c:1126
msgid "Windows Domain"
msgstr "À©””żìÁî ””žȚÀÎ"
-#: ../../install_steps_interactive.pm_.c:1092
-#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1077
+#: ../../install_steps_interactive.pm_.c:1099
msgid "Local files"
msgstr "ÁöżȘ ÆÄÀÏ”é"
-#: ../../install_steps_interactive.pm_.c:1101
-#: ../../install_steps_interactive.pm_.c:1102 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1086
+#: ../../install_steps_interactive.pm_.c:1087 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "root ŸÏÈŁ ŒłÁ€"
-#: ../../install_steps_interactive.pm_.c:1103
+#: ../../install_steps_interactive.pm_.c:1088
msgid "No password"
msgstr "ŸÏÈŁ ŸűÀœ"
-#: ../../install_steps_interactive.pm_.c:1108
+#: ../../install_steps_interactive.pm_.c:1093
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr "ÀÌ ŸÏÈŁŽÂ łÊč« ŽÜŒűÇŐŽÏŽÙ.( ÀûŸî”” %d ±ÛÀÚŽÂ łŃŸîŸß ÇŐŽÏŽÙ)"
-#: ../../install_steps_interactive.pm_.c:1114 ../../network/modem.pm_.c:49
+#: ../../install_steps_interactive.pm_.c:1099 ../../network/modem.pm_.c:49
#: ../../standalone/drakconnect_.c:625 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "»çżëÀÚ ÀÎÁő"
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1107
msgid "Authentication LDAP"
msgstr "ÀÎÁő LDAP"
-#: ../../install_steps_interactive.pm_.c:1123
+#: ../../install_steps_interactive.pm_.c:1108
msgid "LDAP Base dn"
msgstr "LDAP ±âčĘ DN"
-#: ../../install_steps_interactive.pm_.c:1124
+#: ../../install_steps_interactive.pm_.c:1109
msgid "LDAP Server"
msgstr "LDAP Œ­čö"
-#: ../../install_steps_interactive.pm_.c:1130
+#: ../../install_steps_interactive.pm_.c:1115
msgid "Authentication NIS"
msgstr "ÀÎÁő NIS"
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1116
msgid "NIS Domain"
msgstr "NIS ””žȚÀÎ"
-#: ../../install_steps_interactive.pm_.c:1132
+#: ../../install_steps_interactive.pm_.c:1117
msgid "NIS Server"
msgstr "NIS Œ­čö"
-#: ../../install_steps_interactive.pm_.c:1138
+#: ../../install_steps_interactive.pm_.c:1123
msgid ""
"For this to work for a W2K PDC, you will probably need to have the admin "
"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
@@ -5269,19 +5338,19 @@ msgid ""
"good."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1140
+#: ../../install_steps_interactive.pm_.c:1125
msgid "Authentication Windows Domain"
msgstr "ÀÎÁő À©””żìÁî ””žȚÀÎ"
-#: ../../install_steps_interactive.pm_.c:1142
+#: ../../install_steps_interactive.pm_.c:1127
msgid "Domain Admin User Name"
msgstr "””žȚÀÎ °üžźÀÚ »çżëÀÚží"
-#: ../../install_steps_interactive.pm_.c:1143
+#: ../../install_steps_interactive.pm_.c:1128
msgid "Domain Admin Password"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1178
+#: ../../install_steps_interactive.pm_.c:1163
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
"depending on the normal bootloader. This is useful if you don't want to "
@@ -5299,19 +5368,19 @@ msgid ""
"drive and press \"Ok\"."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1194
+#: ../../install_steps_interactive.pm_.c:1179
msgid "First floppy drive"
msgstr "Ăččű° ÇĂ·ÎÇÇ ”ć¶óÀÌșê"
-#: ../../install_steps_interactive.pm_.c:1195
+#: ../../install_steps_interactive.pm_.c:1180
msgid "Second floppy drive"
msgstr "”Îčű° ÇĂ·ÎÇÇ ”ć¶óÀÌșê"
-#: ../../install_steps_interactive.pm_.c:1196 ../../printerdrake.pm_.c:2277
+#: ../../install_steps_interactive.pm_.c:1181 ../../printerdrake.pm_.c:2470
msgid "Skip"
msgstr "°ÇłÊ¶Ù±â"
-#: ../../install_steps_interactive.pm_.c:1201
+#: ../../install_steps_interactive.pm_.c:1186
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5334,7 +5403,7 @@ msgstr ""
"žž”ćœĂ°ÚœÀŽÏ±î?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1207
+#: ../../install_steps_interactive.pm_.c:1192
msgid ""
"\n"
"\n"
@@ -5343,28 +5412,28 @@ msgid ""
"because XFS needs a very large driver)."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1215
+#: ../../install_steps_interactive.pm_.c:1200
msgid "Sorry, no floppy drive available"
msgstr "ÁËŒÛÇŐŽÏŽÙ. »çżë°ĄŽÉÇŃ ÇĂ·ÎÇÇ ”ć¶óÀÌșê°Ą ŸűœÀŽÏŽÙ."
-#: ../../install_steps_interactive.pm_.c:1219
+#: ../../install_steps_interactive.pm_.c:1204
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "șÎÆź ”đœșĆ©žŠ žž”鶧 »çżëÇÒ ÇĂ·ÎÇÇ ”ć¶óÀÌș꞊ Œ±ĆĂÇŰ ÁÖŒŒżä"
-#: ../../install_steps_interactive.pm_.c:1223
+#: ../../install_steps_interactive.pm_.c:1208
#, c-format
msgid "Insert a floppy in %s"
msgstr "%sżĄ ÇÁ·ÎÇÇžŠ łÖÀžŒŒżä."
-#: ../../install_steps_interactive.pm_.c:1226
+#: ../../install_steps_interactive.pm_.c:1211
msgid "Creating bootdisk..."
msgstr "șÎÆź ”đœșĆ© »ęŒșÁß"
-#: ../../install_steps_interactive.pm_.c:1233
+#: ../../install_steps_interactive.pm_.c:1218
msgid "Preparing bootloader..."
msgstr "șÎÆź ·ÎŽő ÁŰșńÁß"
-#: ../../install_steps_interactive.pm_.c:1244
+#: ../../install_steps_interactive.pm_.c:1229
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5372,11 +5441,11 @@ msgid ""
" need to use BootX to boot your machine"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1250
+#: ../../install_steps_interactive.pm_.c:1235
msgid "Do you want to use aboot?"
msgstr "abootžŠ »çżëÇÏœĂ°ÚœÀŽÏ±î?"
-#: ../../install_steps_interactive.pm_.c:1253
+#: ../../install_steps_interactive.pm_.c:1238
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -5384,15 +5453,15 @@ msgstr ""
"aboot ŒłÄĄ œÇÆĐ. \n"
"Ăččű° ÆÄÆŒŒÇÀ» ÈŃŒŐÇÒÁö¶ó”” °­ÁŠ ŒłÄĄÇÒ±îżä?"
-#: ../../install_steps_interactive.pm_.c:1260
+#: ../../install_steps_interactive.pm_.c:1245
msgid "Installing bootloader"
msgstr "șÎÆź·ÎŽő ŒłÄĄ Áß"
-#: ../../install_steps_interactive.pm_.c:1266
+#: ../../install_steps_interactive.pm_.c:1251
msgid "Installation of bootloader failed. The following error occured:"
msgstr "șÎÆź·ÎŽő ŒłÄĄ°Ą œÇÆĐÇßœÀŽÏŽÙ. ŽÙÀœ°ú °°Àș żÀ·ù°Ą čß»ęÇßœÀŽÏŽÙ:"
-#: ../../install_steps_interactive.pm_.c:1274
+#: ../../install_steps_interactive.pm_.c:1259
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -5409,17 +5478,17 @@ msgstr ""
"shut-down\n"
"±Ś·Ż°íłȘžé ŽÙÀœșÎĆÍŽÂ șÎÆź·ÎŽő ÇÁ·ÒÇÁÆźžŠ șŒ Œö ÀÖÀ» °ÍÀÔŽÏŽÙ."
-#: ../../install_steps_interactive.pm_.c:1308
+#: ../../install_steps_interactive.pm_.c:1293
#: ../../standalone/drakautoinst_.c:79
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "%s ”ć¶óÀÌșêżĄ șó ÇĂ·ÎÇÇ ”đœșĆ©žŠ łÖÀžŒŒżä"
-#: ../../install_steps_interactive.pm_.c:1312
+#: ../../install_steps_interactive.pm_.c:1297
msgid "Creating auto install floppy..."
msgstr "ÀÚ”ż ŒłÄĄ ÇĂ·ÎÇÇ ”đœșĆ© »ęŒș Áß"
-#: ../../install_steps_interactive.pm_.c:1323
+#: ../../install_steps_interactive.pm_.c:1308
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -5429,7 +5498,7 @@ msgstr ""
"\n"
"Á€ž» Áö±Ę ÁŸ·á ÇÏœĂ°ÚœÀŽÏ±î?"
-#: ../../install_steps_interactive.pm_.c:1334
+#: ../../install_steps_interactive.pm_.c:1319
#, fuzzy, c-format
msgid ""
"Congratulations, installation is complete.\n"
@@ -5459,15 +5528,15 @@ msgstr ""
"ŒłÄĄÈÄ œĂœșĆÛ ŒłÁ€żĄ ŽëÇŃ Á€șžŽÂ °űœÄ žÇ”ć·čÀÌĆ© žźŽȘœș ÀŻÀú °ĄÀÌ”ćžŠ\n"
"Âü°íÇÏœĂ±â čÙ¶űŽÏŽÙ."
-#: ../../install_steps_interactive.pm_.c:1347
+#: ../../install_steps_interactive.pm_.c:1332
msgid "http://www.mandrakelinux.com/en/90errata.php3"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1352
+#: ../../install_steps_interactive.pm_.c:1337
msgid "Generate auto install floppy"
msgstr "ÀÚ”ż ŒłÄĄ ÇĂ·ÎÇÇ ”đœșĆ© »ęŒș"
-#: ../../install_steps_interactive.pm_.c:1354
+#: ../../install_steps_interactive.pm_.c:1339
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -5481,15 +5550,15 @@ msgstr ""
"\n"
"ÀÏčĘÀûÀž·Î ÁśÁą ŒłÄĄÇÏŽÂ °ÍÀÌ ÁÁœÀŽÏŽÙ.\n"
-#: ../../install_steps_interactive.pm_.c:1359
+#: ../../install_steps_interactive.pm_.c:1344
msgid "Automated"
msgstr "ÀÚ”ż"
-#: ../../install_steps_interactive.pm_.c:1359
+#: ../../install_steps_interactive.pm_.c:1344
msgid "Replay"
msgstr "ÀçœĂ””"
-#: ../../install_steps_interactive.pm_.c:1362
+#: ../../install_steps_interactive.pm_.c:1347
msgid "Save packages selection"
msgstr "Œ±ĆĂ”È ÆŃĆ°Áö žń·Ï ÀúÀć"
@@ -5498,7 +5567,8 @@ msgstr "Œ±ĆĂ”È ÆŃĆ°Áö žń·Ï ÀúÀć"
msgid "Mandrake Linux Installation %s"
msgstr "žźŽȘœș-žÇ”ć·čÀÌĆ© ŒłÄĄ %s"
-#: ../../install_steps_newt.pm_.c:34
+#. -PO This string must fit in a 80-char wide text screen
+#: ../../install_steps_newt.pm_.c:35
msgid ""
" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
msgstr ""
@@ -5516,22 +5586,22 @@ msgstr ""
msgid "Choose a file"
msgstr "ÆÄÀÏ Œ±ĆĂ"
-#: ../../interactive.pm_.c:317
+#: ../../interactive.pm_.c:320
msgid "Advanced"
msgstr "°í±Ț"
-#: ../../interactive.pm_.c:318
+#: ../../interactive.pm_.c:321
msgid "Basic"
msgstr ""
-#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:155
-#: ../../printerdrake.pm_.c:1990
+#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:158
+#: ../../printerdrake.pm_.c:2124
msgid "<- Previous"
msgstr "<- ÀÌÀü"
#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
-#: ../../standalone/drakbackup_.c:3464 ../../standalone/drakbackup_.c:3491
-#: ../../standalone/drakbackup_.c:3517
+#: ../../standalone/drakbackup_.c:4112 ../../standalone/drakbackup_.c:4139
+#: ../../standalone/drakbackup_.c:4169 ../../standalone/drakbackup_.c:4195
msgid "Next"
msgstr "ŽÙÀœ"
@@ -5597,375 +5667,375 @@ msgstr ""
msgid "Re-submit"
msgstr "ÀçÀüŒÛ"
-#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:152 ../../keyboard.pm_.c:187
msgid "Czech (QWERTZ)"
msgstr "ĂŒÄÚ (QWERTZ)"
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:153 ../../keyboard.pm_.c:189
msgid "German"
msgstr "”¶ÀÏ"
-#: ../../keyboard.pm_.c:175
+#: ../../keyboard.pm_.c:154
msgid "Dvorak"
msgstr "”ćșž¶ô"
-#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:218
+#: ../../keyboard.pm_.c:155 ../../keyboard.pm_.c:197
msgid "Spanish"
msgstr "œșÆäÀÎ"
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:156 ../../keyboard.pm_.c:198
msgid "Finnish"
msgstr "Çɶő”ć"
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:220
+#: ../../keyboard.pm_.c:157 ../../keyboard.pm_.c:199
msgid "French"
msgstr "ÇÁ¶ûœș"
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:158 ../../keyboard.pm_.c:231
msgid "Norwegian"
msgstr "łëžŁżțÀÌ"
-#: ../../keyboard.pm_.c:180
+#: ../../keyboard.pm_.c:159
msgid "Polish"
msgstr "Æú¶ő”ć"
-#: ../../keyboard.pm_.c:181 ../../keyboard.pm_.c:260
+#: ../../keyboard.pm_.c:160 ../../keyboard.pm_.c:239
msgid "Russian"
msgstr "·ŻœĂŸÆ"
-#: ../../keyboard.pm_.c:183 ../../keyboard.pm_.c:262
+#: ../../keyboard.pm_.c:162 ../../keyboard.pm_.c:241
msgid "Swedish"
msgstr "œșżț”§"
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:278
+#: ../../keyboard.pm_.c:163 ../../keyboard.pm_.c:257
msgid "UK keyboard"
msgstr "ż”±č"
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:279
+#: ../../keyboard.pm_.c:164 ../../keyboard.pm_.c:258
msgid "US keyboard"
msgstr "č̱č"
-#: ../../keyboard.pm_.c:187
+#: ../../keyboard.pm_.c:166
msgid "Albanian"
msgstr "ŸËčÙŽÏŸÆ"
-#: ../../keyboard.pm_.c:188
+#: ../../keyboard.pm_.c:167
msgid "Armenian (old)"
msgstr "č̱č (±žčöÀü)"
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:168
msgid "Armenian (typewriter)"
msgstr "č̱č (ĆžÀÚ±â)"
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:169
msgid "Armenian (phonetic)"
msgstr "č̱č (ÀœŒșÇĐ)"
-#: ../../keyboard.pm_.c:195
+#: ../../keyboard.pm_.c:174
msgid "Azerbaidjani (latin)"
msgstr "Azerbaidjani (¶óÆŸ)"
-#: ../../keyboard.pm_.c:197
+#: ../../keyboard.pm_.c:176
msgid "Belgian"
msgstr "ș§±âżĄ"
-#: ../../keyboard.pm_.c:198
+#: ../../keyboard.pm_.c:177
#, fuzzy
msgid "Bengali"
msgstr "Çăżë"
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:178
msgid "Bulgarian (phonetic)"
msgstr "șÒ°ĄžźŸÆ (ÀœŒșÇĐ)"
-#: ../../keyboard.pm_.c:200
+#: ../../keyboard.pm_.c:179
msgid "Bulgarian (BDS)"
msgstr "șÒ°ĄžźŸÆ (BDS)"
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:180
msgid "Brazilian (ABNT-2)"
msgstr "șê¶óÁú (ABNT-2)"
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:183
#, fuzzy
msgid "Bosnian"
msgstr "żĄœșĆäŽÏŸÆ"
-#: ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:184
msgid "Belarusian"
msgstr "ș§¶ó·çœĂŸÆ"
-#: ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:185
msgid "Swiss (German layout)"
msgstr "œșÀ§œș (”¶Ÿî)"
-#: ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:186
msgid "Swiss (French layout)"
msgstr "œșÀ§œș (șÒŸî)"
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:188
msgid "Czech (QWERTY)"
msgstr "ĂŒÄÚ (QWERTY)"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:190
msgid "German (no dead keys)"
msgstr "”¶ÀÏ (dead Ć° ŸűÀœ)"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:191
msgid "Devanagari"
msgstr ""
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:192
msgid "Danish"
msgstr "”§ž¶Ć©"
-#: ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:193
msgid "Dvorak (US)"
msgstr "”ćșž¶ô(US)"
-#: ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:194
msgid "Dvorak (Norwegian)"
msgstr "”ćșž¶ô(łëžŁżțÀÌ)"
-#: ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:195
msgid "Dvorak (Swedish)"
msgstr "”ćșž¶ô(œșżț”§)"
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:196
msgid "Estonian"
msgstr "żĄœșĆäŽÏŸÆ"
-#: ../../keyboard.pm_.c:221
+#: ../../keyboard.pm_.c:200
msgid "Georgian (\"Russian\" layout)"
msgstr "±Ś·çÁöŸÆ(·ŻœĂŸÆŸî)"
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:201
msgid "Georgian (\"Latin\" layout)"
msgstr "±Ś·çÁöŸÆ (¶óÆŸ)"
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:202
msgid "Greek"
msgstr "±Śžźœș"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:203
msgid "Gujarati"
msgstr ""
-#: ../../keyboard.pm_.c:225
+#: ../../keyboard.pm_.c:204
msgid "Gurmukhi"
msgstr ""
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:205
msgid "Hungarian"
msgstr "Çë°Ąžź"
-#: ../../keyboard.pm_.c:227
+#: ../../keyboard.pm_.c:206
msgid "Croatian"
msgstr "Ć©·ÎŸÆÆŒŸÆ"
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:207
msgid "Israeli"
msgstr "ÀÌœș¶óż€"
-#: ../../keyboard.pm_.c:229
+#: ../../keyboard.pm_.c:208
msgid "Israeli (Phonetic)"
msgstr "ÀÌœș¶óż€ (ÀœŒșÇĐ)"
-#: ../../keyboard.pm_.c:230
+#: ../../keyboard.pm_.c:209
msgid "Iranian"
msgstr "À̶ő"
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:210
msgid "Icelandic"
msgstr "ŸÆÀÌœœ·Ł”ć"
-#: ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:211
msgid "Italian"
msgstr "ÀÌĆ»žźŸÆ"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:212
msgid "Inuktitut"
msgstr ""
-#: ../../keyboard.pm_.c:234
+#: ../../keyboard.pm_.c:213
msgid "Japanese 106 keys"
msgstr "ÀÏș» 106Ć°"
-#: ../../keyboard.pm_.c:237
+#: ../../keyboard.pm_.c:216
msgid "Korean keyboard"
msgstr "ÇŃ±Û Ć°șž”ć"
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:217
msgid "Latin American"
msgstr "¶óÆŸ ŸÆžȚžźÄ«"
-#: ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:218
#, fuzzy
msgid "Laotian"
msgstr "¶óÆźčÙŸÆ"
-#: ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:219
msgid "Lithuanian AZERTY (old)"
msgstr "žźĆőŸÆŽÏŸÆ AZERTY (±žÇü)"
-#: ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:221
msgid "Lithuanian AZERTY (new)"
msgstr "žźĆőŸÆŽÏŸÆ AZERTY (œĆÇü)"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:222
msgid "Lithuanian \"number row\" QWERTY"
msgstr "žźĆőŸÆŽÏŸÆ (ŒęÀÚż­ QWERTY)"
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:223
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "žźĆőŸÆŽÏŸÆ (ÀœŒșÇĐ QWERTY)"
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:224
msgid "Latvian"
msgstr "¶óÆźčÙŸÆ"
-#: ../../keyboard.pm_.c:246
+#: ../../keyboard.pm_.c:225
msgid "Macedonian"
msgstr "ž¶ÄÉ””ŽÏŸÆ"
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:226
msgid "Myanmar (Burmese)"
msgstr ""
-#: ../../keyboard.pm_.c:248
+#: ../../keyboard.pm_.c:227
#, fuzzy
msgid "Mongolian (cyrillic)"
msgstr "ŒŒžŁșńŸÆ (œĂž±)"
-#: ../../keyboard.pm_.c:249
+#: ../../keyboard.pm_.c:228
msgid "Maltese (UK)"
msgstr ""
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:229
msgid "Maltese (US)"
msgstr ""
-#: ../../keyboard.pm_.c:251
+#: ../../keyboard.pm_.c:230
msgid "Dutch"
msgstr "łŚ”š¶ő”ć"
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:232
msgid "Polish (qwerty layout)"
msgstr "Æú¶ő”ć (QwertY)"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:233
msgid "Polish (qwertz layout)"
msgstr "Æú¶ő”ć (QwertZ)"
-#: ../../keyboard.pm_.c:255
+#: ../../keyboard.pm_.c:234
msgid "Portuguese"
msgstr "Æś·çĆőÄź"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:235
msgid "Canadian (Quebec)"
msgstr "ÄłłȘŽÙ (Äùș€)"
-#: ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:237
msgid "Romanian (qwertz)"
msgstr "·Îžž (QWERTZ)"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:238
msgid "Romanian (qwerty)"
msgstr "·Îžž (QWERTY)"
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:240
msgid "Russian (Yawerty)"
msgstr "·ŻœĂŸÆ (Yawerty)"
-#: ../../keyboard.pm_.c:263
+#: ../../keyboard.pm_.c:242
msgid "Slovenian"
msgstr "œœ·ÎșŁŽÏŸÆ"
-#: ../../keyboard.pm_.c:264
+#: ../../keyboard.pm_.c:243
msgid "Slovakian (QWERTZ)"
msgstr "œœ·ÎčÙĆ°ŸÆ (QWERTZ)"
-#: ../../keyboard.pm_.c:265
+#: ../../keyboard.pm_.c:244
msgid "Slovakian (QWERTY)"
msgstr "œœ·ÎčÙĆ°ŸÆ (QWERTY)"
-#: ../../keyboard.pm_.c:267
+#: ../../keyboard.pm_.c:246
msgid "Serbian (cyrillic)"
msgstr "ŒŒžŁșńŸÆ (œĂž±)"
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:248
msgid "Tamil (Unicode)"
msgstr ""
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:249
msgid "Tamil (TSCII)"
msgstr ""
-#: ../../keyboard.pm_.c:271
+#: ../../keyboard.pm_.c:250
msgid "Thai keyboard"
msgstr "Ʊč"
-#: ../../keyboard.pm_.c:273
+#: ../../keyboard.pm_.c:252
msgid "Tajik keyboard"
msgstr "ĆžÁöĆ© Ć°șž”ć"
-#: ../../keyboard.pm_.c:274
+#: ../../keyboard.pm_.c:253
msgid "Turkish (traditional \"F\" model)"
msgstr "Ćͱâ (ÀüĆë ĄžFĄčžđ”š"
-#: ../../keyboard.pm_.c:275
+#: ../../keyboard.pm_.c:254
msgid "Turkish (modern \"Q\" model)"
msgstr "ĆÍĆ° (ÇöŽë ĄžQĄčžđ”š"
-#: ../../keyboard.pm_.c:277
+#: ../../keyboard.pm_.c:256
msgid "Ukrainian"
msgstr "żìĆ©¶óÀÌłȘ"
-#: ../../keyboard.pm_.c:280
+#: ../../keyboard.pm_.c:259
msgid "US keyboard (international)"
msgstr "US Ć°șž”ć (±čÁŠ)"
-#: ../../keyboard.pm_.c:281
+#: ../../keyboard.pm_.c:260
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "șŁÆźłČ (ŒęÀÚż­ QWERTY)"
-#: ../../keyboard.pm_.c:282
+#: ../../keyboard.pm_.c:261
msgid "Yugoslavian (latin)"
msgstr "ÀŻ°íœœ¶óșńŸÆ (¶óÆŸ)"
-#: ../../keyboard.pm_.c:289
+#: ../../keyboard.pm_.c:268
msgid "Right Alt key"
msgstr ""
-#: ../../keyboard.pm_.c:290
+#: ../../keyboard.pm_.c:269
msgid "Both Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:291
+#: ../../keyboard.pm_.c:270
msgid "Control and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:292
+#: ../../keyboard.pm_.c:271
msgid "CapsLock key"
msgstr ""
-#: ../../keyboard.pm_.c:293
+#: ../../keyboard.pm_.c:272
msgid "Ctrl and Alt keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:294
+#: ../../keyboard.pm_.c:273
msgid "Alt and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:295
+#: ../../keyboard.pm_.c:274
msgid "\"Menu\" key"
msgstr ""
-#: ../../keyboard.pm_.c:296
+#: ../../keyboard.pm_.c:275
msgid "Left \"Windows\" key"
msgstr ""
-#: ../../keyboard.pm_.c:297
+#: ../../keyboard.pm_.c:276
msgid "Right \"Windows\" key"
msgstr ""
@@ -6021,11 +6091,11 @@ msgstr "ÀÏčĘÀûÀÎ PS2 ÈÙ ž¶żìœș"
msgid "GlidePoint"
msgstr "ALPS ±Û¶óÀÌ”ćÆśÀÎÆź"
-#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:63
+#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:65
msgid "Kensington Thinking Mouse"
msgstr "ÄËœÌĆÏ ŸĆĆ· ž¶żìœș"
-#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:59
+#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:61
msgid "Genius NetMouse"
msgstr "ÁöŽÏŸîœș łĘž¶żìœș"
@@ -6033,115 +6103,127 @@ msgstr "ÁöŽÏŸîœș łĘž¶żìœș"
msgid "Genius NetScroll"
msgstr "ÁöŽÏŸîœș łĘœșĆ©·Ń"
-#: ../../mouse.pm_.c:43 ../../mouse.pm_.c:68
+#: ../../mouse.pm_.c:39 ../../mouse.pm_.c:48
+#, fuzzy
+msgid "Microsoft Explorer"
+msgstr "ž¶ÀÌĆ©·ÎŒÒÇÁÆź ÀÎĆÚžźž¶żìœș"
+
+#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:70
msgid "1 button"
msgstr "1 čöÆ°"
-#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:51
+#: ../../mouse.pm_.c:45 ../../mouse.pm_.c:53
msgid "Generic 2 Button Mouse"
msgstr "ÀÏčĘÀûÀÎ 2čöÆ° ž¶żìœș"
-#: ../../mouse.pm_.c:46
+#: ../../mouse.pm_.c:47
msgid "Wheel"
msgstr "ÈÙ ž¶żìœș"
-#: ../../mouse.pm_.c:49
+#: ../../mouse.pm_.c:51
msgid "serial"
msgstr "œĂžźŸó ž¶żìœș"
-#: ../../mouse.pm_.c:52
+#: ../../mouse.pm_.c:54
msgid "Generic 3 Button Mouse"
msgstr "ÀÏčĘÀûÀÎ 3čöÆ° ž¶żìœș"
-#: ../../mouse.pm_.c:53
+#: ../../mouse.pm_.c:55
msgid "Microsoft IntelliMouse"
msgstr "ž¶ÀÌĆ©·ÎŒÒÇÁÆź ÀÎĆÚžźž¶żìœș"
-#: ../../mouse.pm_.c:54
+#: ../../mouse.pm_.c:56
msgid "Logitech MouseMan"
msgstr "·ÎÁöĆŰ ž¶żìœșžÇ"
-#: ../../mouse.pm_.c:55
+#: ../../mouse.pm_.c:57
msgid "Mouse Systems"
msgstr "ž¶żìœș œĂœșĆÛ"
-#: ../../mouse.pm_.c:57
+#: ../../mouse.pm_.c:59
msgid "Logitech CC Series"
msgstr "·ÎÁöĆŰ CC œĂžźÁî"
-#: ../../mouse.pm_.c:58
+#: ../../mouse.pm_.c:60
msgid "Logitech MouseMan+/FirstMouse+"
msgstr "·ÎÁöĆŰ ž¶żìœșžÇ+/ÆÛœșÆźž¶żìœș+"
-#: ../../mouse.pm_.c:60
+#: ../../mouse.pm_.c:62
msgid "MM Series"
msgstr "MM œĂžźÁî"
-#: ../../mouse.pm_.c:61
+#: ../../mouse.pm_.c:63
msgid "MM HitTablet"
msgstr "MM ÈśÆźĆžșí·ż"
-#: ../../mouse.pm_.c:62
+#: ../../mouse.pm_.c:64
msgid "Logitech Mouse (serial, old C7 type)"
msgstr "·ÎÁöĆŰ ž¶żìœș (œĂžźŸó, żÀ·Ą”È C7 ÇüĆÂ)"
-#: ../../mouse.pm_.c:66
+#: ../../mouse.pm_.c:68
msgid "busmouse"
msgstr "čöœșž¶żìœș"
-#: ../../mouse.pm_.c:69
+#: ../../mouse.pm_.c:71
msgid "2 buttons"
msgstr "2 čöÆ°"
-#: ../../mouse.pm_.c:70
+#: ../../mouse.pm_.c:72
msgid "3 buttons"
msgstr "3 čöÆ°"
-#: ../../mouse.pm_.c:73
+#: ../../mouse.pm_.c:75
msgid "none"
msgstr "ŸűÀœ"
-#: ../../mouse.pm_.c:75
+#: ../../mouse.pm_.c:77
msgid "No mouse"
msgstr "ž¶żìœș ŸűÀœ"
-#: ../../mouse.pm_.c:445
+#: ../../mouse.pm_.c:482
msgid "Please test the mouse"
msgstr "ž¶żìœșžŠ ĆŚœșÆźÇÏŒŒżä."
-#: ../../mouse.pm_.c:446
+#: ../../mouse.pm_.c:483
msgid "To activate the mouse,"
msgstr "ž¶żìœșžŠ È°ŒșÈ­ÇÏ·Ážé"
-#: ../../mouse.pm_.c:447
+#: ../../mouse.pm_.c:484
msgid "MOVE YOUR WHEEL!"
msgstr "ž¶żìœșÈÙÀ» żòÁśż© șžŒŒżä."
-#: ../../my_gtk.pm_.c:156
+#: ../../my_gtk.pm_.c:64
+#, fuzzy
+msgid "-adobe-utopia-regular-r-*-*-25-*-*-*-p-*-iso8859-*,*-r-*"
+msgstr ""
+"-adobe-helvetica-bold-r-normal--16-*-75-75-p-*-iso8859-1,-*-gulim-bold-r-"
+"normal--16-*-75-75-*-*-ksc5601.1987-0,*-r-*"
+
+#: ../../my_gtk.pm_.c:159
msgid "Finish"
msgstr "ÁŸ·á"
-#: ../../my_gtk.pm_.c:156 ../../printerdrake.pm_.c:1992
+#: ../../my_gtk.pm_.c:159 ../../printerdrake.pm_.c:2126
msgid "Next ->"
msgstr "ŽÙÀœ ->"
-#: ../../my_gtk.pm_.c:284
+#: ../../my_gtk.pm_.c:287
msgid "Is this correct?"
msgstr "ÀÌ°ÍÀÌ žÂœÀŽÏ±î?"
-#: ../../my_gtk.pm_.c:356 ../../services.pm_.c:222
+#: ../../my_gtk.pm_.c:359 ../../services.pm_.c:222
msgid "Info"
msgstr "Á€șž"
-#: ../../my_gtk.pm_.c:377
+#: ../../my_gtk.pm_.c:380
msgid "Expand Tree"
msgstr "Æźžź ÈźÀć"
-#: ../../my_gtk.pm_.c:378
+#: ../../my_gtk.pm_.c:381
msgid "Collapse Tree"
msgstr "Æźžź Áą±â"
-#: ../../my_gtk.pm_.c:379
+#: ../../my_gtk.pm_.c:382
msgid "Toggle between flat and group sorted"
msgstr "±Ś·ìș°/ÆŃĆ°Áöș° Á€·Ä ÀüÈŻ"
@@ -6179,6 +6261,74 @@ msgstr "PPPOE »çżë"
msgid "use pptp"
msgstr "PPTP »çżë"
+#: ../../network/drakfirewall.pm_.c:12
+#, fuzzy
+msgid "Web Server"
+msgstr "Œ­čö"
+
+#: ../../network/drakfirewall.pm_.c:17
+#, fuzzy
+msgid "Domain Name Server"
+msgstr "””žȚÀÎ łŚÀÓ ÇŰ°á»ç"
+
+#: ../../network/drakfirewall.pm_.c:32
+#, fuzzy
+msgid "Mail Server"
+msgstr "Œ­čö »çżë"
+
+#: ../../network/drakfirewall.pm_.c:37
+#, fuzzy
+msgid "POP and IMAP Server"
+msgstr "LDAP Œ­čö"
+
+#: ../../network/drakfirewall.pm_.c:111
+#, fuzzy
+msgid "No network card"
+msgstr "łŚÆźżś Ä«”枊 ĂŁÀ»Œö ŸűœÀŽÏŽÙ"
+
+#: ../../network/drakfirewall.pm_.c:129
+#, fuzzy
+msgid ""
+"drakfirewall configurator\n"
+"\n"
+"This configures a personal firewall for this Mandrake Linux machine.\n"
+"For a powerful dedicated firewall solution, please look to the\n"
+"specialized MandrakeSecurity Firewall distribution."
+msgstr ""
+"TinyFirewall ŒłÁ€\n"
+"\n"
+"ÀÌ°ÍÀș žźŽȘœș žÇ”ć·čÀÌĆ© œĂœșĆÛÀÇ °łÀÎ čæÈ­șźÀ» ŒłÁ€ÇŐŽÏŽÙ.\n"
+"°­·ÂÇŃ Àüčź čæÈ­șźÀ» »çżëÇÏ°í œÍŽÙžé, žÇ”ć·čÀÌĆ© șžŸÈ čæÈ­șź\n"
+"čèÆśÆÇÀ» ±žÇÏœĂ±â čÙ¶űŽÏŽÙ."
+
+#: ../../network/drakfirewall.pm_.c:147
+msgid "Which services would you like to allow the Internet to connect to?"
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:148
+msgid ""
+"You can enter miscellaneous ports. \n"
+"Valid examples are: 139/tcp 139/udp.\n"
+"Have a look at /etc/services for information."
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:154
+#, c-format
+msgid ""
+"Invalid port given: %s.\n"
+"The proper format is \"port/tcp\" or \"port/udp\", \n"
+"where port is between 1 and 65535."
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:162
+msgid "Everything (no firewall)"
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:164
+#, fuzzy
+msgid "Other ports"
+msgstr "ÆśÆź °Ë»ç"
+
#: ../../network/ethernet.pm_.c:37
msgid ""
"Which dhcp client do you want to use?\n"
@@ -6195,7 +6345,7 @@ msgstr ""
"Ÿî¶°ÇŃ łŚÆźżś ŸîŽđĆÍ”” °šÁö”ÇÁö ŸÊŸÒœÀŽÏŽÙ.\n"
"żŹ°á ŒłÁ€À» ÇÒ Œö ŸűœÀŽÏŽÙ."
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:247
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:240
msgid "Choose the network interface"
msgstr "łŚÆźżś ÀÎĆÍÆäÀÌœșžŠ Œ±ĆĂÇÏŒŒżä."
@@ -6208,7 +6358,7 @@ msgstr "Ÿî¶Č ŸîŽđĆÍ·Î ÀÎĆͳʿĄ żŹ°áÇÒ °ÍÀÎÁö Œ±ĆĂÇÏŒŒżä."
msgid "no network card found"
msgstr "łŚÆźżś Ä«”枊 ĂŁÀ»Œö ŸűœÀŽÏŽÙ"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:366
msgid "Configuring network"
msgstr "łŚÆźżś ŒłÁ€"
@@ -6224,7 +6374,7 @@ msgstr ""
"ÈŁœșÆźžíÀș żÏșźÇŃ Á€±ÔÇüÀÌŸîŸß ÇŐŽÏŽÙ.\n"
"żč)Ąžmybox.mylab.myco.comĄč"
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:370
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:371
msgid "Host name"
msgstr "ÈŁœșÆźží:"
@@ -6527,13 +6677,13 @@ msgstr "ŒłÁ€ÇÒ ÇÁ·ÎÆÄÀÏÀ» Œ±ĆĂÇÏŒŒżä."
msgid "Use auto detection"
msgstr "ÀÚ”ż°Ë»ö »çżë"
-#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2930
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:3151
#: ../../standalone/drakconnect_.c:274 ../../standalone/drakconnect_.c:277
#: ../../standalone/drakfloppy_.c:145
msgid "Expert Mode"
msgstr "Àüčź°Ą žđ”ć"
-#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:283
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:386
msgid "Detecting devices..."
msgstr "ÀćÄĄžŠ °Ë»öÇÏ°í ÀÖœÀŽÏŽÙ..."
@@ -6698,11 +6848,11 @@ msgstr "IP ÀÚ”żÇÒŽç"
msgid "Start at boot"
msgstr "șÎÆĂœĂ œĂÀÛ"
-#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:753
+#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:860
msgid "IP address should be in format 1.2.3.4"
msgstr "IP Á֌Ҏ 1.2.3.4°ú °°Àș ÇüœÄÀÌŸîŸß ÇŐŽÏŽÙ."
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:367
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -6714,43 +6864,55 @@ msgstr ""
"ÀÌž§ÀÌŸîŸß ÇŐŽÏŽÙ. \n"
"°ÔÀÌÆź żțÀÌ°Ą ÀÖŽÙžé ±Ś IP Á֌Ҕ” ÀÔ·ÂÇŰŸß ÇŐŽÏŽÙ."
-#: ../../network/network.pm_.c:371
+#: ../../network/network.pm_.c:372
msgid "DNS server"
msgstr "DNS Œ­čö"
-#: ../../network/network.pm_.c:372
+#: ../../network/network.pm_.c:373
#, c-format
msgid "Gateway (e.g. %s)"
msgstr "rpdlxmdnpdl (żč. %s)"
-#: ../../network/network.pm_.c:374
+#: ../../network/network.pm_.c:375
msgid "Gateway device"
msgstr "°ÔÀÌÆźżțÀÌ ÀćÄĄ"
-#: ../../network/network.pm_.c:386
+#: ../../network/network.pm_.c:387
msgid "Proxies configuration"
msgstr "ÇÁ¶ôœĂ ŒłÁ€"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:388
msgid "HTTP proxy"
msgstr "À„ ÇÁ¶ôœĂ"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:389
msgid "FTP proxy"
msgstr "FTP ÇÁ¶ôœĂ"
-#: ../../network/network.pm_.c:389
+#: ../../network/network.pm_.c:390
msgid "Track network card id (useful for laptops)"
msgstr "łŚÆźżśÄ«”ć ID ĂßÀû (·ŠĆŸżĄ ÀŻżëÇÔ)"
-#: ../../network/network.pm_.c:392
+#: ../../network/network.pm_.c:393
msgid "Proxy should be http://..."
msgstr "ÇÁ¶ôœĂ ÀÌž§Àș httP://... ÀÌŸîŸß ÇŐŽÏŽÙ."
-#: ../../network/network.pm_.c:393
+#: ../../network/network.pm_.c:394
msgid "Proxy should be ftp://..."
msgstr "ÇÁ¶ôœĂ ÀÌž§Àș ftp://... ÀÌŸîŸß ÇŐŽÏŽÙ."
+#: ../../network/shorewall.pm_.c:24
+msgid "Firewalling configuration detected!"
+msgstr "čæÈ­șź ŒłÁ€ÀÌ °šÁö”ÇŸúœÀŽÏŽÙ!"
+
+#: ../../network/shorewall.pm_.c:25
+msgid ""
+"Warning! An existing firewalling configuration has been detected. You may "
+"need some manual fix after installation."
+msgstr ""
+"°æ°í! ±âÁžÀÇ čæÈ­șź ŒłÁ€ÀÌ °šÁö”ÇŸúœÀŽÏŽÙ. ŒłÄĄ°Ą łĄł­ ÈÄżĄ ÁśÁą ŒöÁ€ÇÒ ÇÊżä"
+"°Ą ÀÖœÀŽÏŽÙ."
+
#: ../../network/tools.pm_.c:41
msgid "Internet configuration"
msgstr "ÀÎĆÍłĘ ŒłÁ€"
@@ -6856,15 +7018,15 @@ msgstr "°èÁ€ ŸÏÈŁ"
msgid "United Kingdom"
msgstr "ż”±č"
-#: ../../partition_table.pm_.c:606
+#: ../../partition_table.pm_.c:602
msgid "mount failed: "
msgstr "ž¶żîÆź œÇÆĐ: "
-#: ../../partition_table.pm_.c:670
+#: ../../partition_table.pm_.c:666
msgid "Extended partition not supported on this platform"
msgstr "ÀÌ œĂœșĆÛżĄŒ­ŽÂ ÈźÀćÆÄÆŒŒÇÀÌ Áöżű”ÇÁö ŸÊœÀŽÏŽÙ."
-#: ../../partition_table.pm_.c:688
+#: ../../partition_table.pm_.c:684
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
@@ -6874,21 +7036,21 @@ msgstr ""
"ÀŻÀÏÇŃ ÇŰ°áĂ„Àș ÁÖ ÆÄÆŒŒÇ”éÀÌ ÈźÀć ÆÄÆŒŒÇ”éÀÇ ”ÚżĄ ÀÖŽÂ șó °ű°ŁÀ» ÂśÁöÇÏ””·Ï "
"żÈ±âŽÂ °ÍÀÔŽÏŽÙ."
-#: ../../partition_table.pm_.c:778
+#: ../../partition_table.pm_.c:774
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "%s ÆÄÀÏ·ÎșÎĆÍÀÇ ș豞 œÇÆĐ: %s"
-#: ../../partition_table.pm_.c:780
+#: ../../partition_table.pm_.c:776
msgid "Bad backup file"
msgstr "Àßžű”È čéŸś ÆÄÀÏ"
-#: ../../partition_table.pm_.c:802
+#: ../../partition_table.pm_.c:798
#, c-format
msgid "Error writing to file %s"
msgstr "%s ÆÄÀÏżĄ ŸČ±â żÀ·ù"
-#: ../../partition_table/raw.pm_.c:187
+#: ../../partition_table/raw.pm_.c:189
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
@@ -6934,150 +7096,154 @@ msgstr "LPD - Line Printer Daemon"
msgid "PDQ - Print, Don't Queue"
msgstr "PDQ - Print, Don't Queue"
-#: ../../printer.pm_.c:35 ../../printer.pm_.c:854
+#: ../../printer.pm_.c:34 ../../printer.pm_.c:1125
msgid "CUPS"
msgstr "CUPS"
-#: ../../printer.pm_.c:36
+#: ../../printer.pm_.c:35
msgid "LPRng"
msgstr "LPRng"
-#: ../../printer.pm_.c:37
+#: ../../printer.pm_.c:36
msgid "LPD"
msgstr "LPD"
-#: ../../printer.pm_.c:38
+#: ../../printer.pm_.c:37
msgid "PDQ"
msgstr "PDQ"
-#: ../../printer.pm_.c:50
+#: ../../printer.pm_.c:49
msgid "Local printer"
msgstr "·ÎÄĂ ÇÁž°ĆÍ"
-#: ../../printer.pm_.c:51
+#: ../../printer.pm_.c:50
msgid "Remote printer"
msgstr "żű°Ę ÇÁž°ĆÍ"
-#: ../../printer.pm_.c:52
+#: ../../printer.pm_.c:51
msgid "Printer on remote CUPS server"
msgstr "żű°Ę CUPS Œ­čöÀÇ ÇÁž°ĆÍ"
-#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:776
+#: ../../printer.pm_.c:52 ../../printerdrake.pm_.c:883
msgid "Printer on remote lpd server"
msgstr "żű°Ę LPD Œ­čöÀÇ ÇÁž°ĆÍ"
-#: ../../printer.pm_.c:54
+#: ../../printer.pm_.c:53
msgid "Network printer (TCP/Socket)"
msgstr "łŚÆźżś ÇÁž°ĆÍ (TCP/ŒÒÄÏ)"
-#: ../../printer.pm_.c:55
+#: ../../printer.pm_.c:54
msgid "Printer on SMB/Windows 95/98/NT server"
msgstr "»ïčÙ/À©””żìÁî 95/98/NT»óÀÇ ÇÁž°ĆÍ"
-#: ../../printer.pm_.c:56
+#: ../../printer.pm_.c:55
msgid "Printer on NetWare server"
msgstr "łŚÆźżțŸî Œ­čö»óÀÇ ÇÁž°ĆÍ"
-#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:780
+#: ../../printer.pm_.c:56 ../../printerdrake.pm_.c:887
msgid "Enter a printer device URI"
msgstr "ÇÁž°ĆÍ ÀćÄĄ URIÀ» ÀÔ·ÂÇÏŒŒżä."
-#: ../../printer.pm_.c:58
+#: ../../printer.pm_.c:57
msgid "Pipe job into a command"
msgstr "ÀÛŸśÀ» ží·ÉÀž·Î ÆÄÀÌÇÁ żŹ°á"
-#: ../../printer.pm_.c:487 ../../printer.pm_.c:678 ../../printer.pm_.c:1000
-#: ../../printerdrake.pm_.c:2070 ../../printerdrake.pm_.c:3189
+#: ../../printer.pm_.c:324 ../../printer.pm_.c:366 ../../printer.pm_.c:533
+msgid "Unknown Model"
+msgstr "ŸË Œö ŸűŽÂ žđ”š"
+
+#: ../../printer.pm_.c:735 ../../printer.pm_.c:926 ../../printer.pm_.c:1318
+#: ../../printerdrake.pm_.c:2260 ../../printerdrake.pm_.c:3414
msgid "Unknown model"
msgstr "ŸË ŒöŸűŽÂ žđ”š"
-#: ../../printer.pm_.c:515
+#: ../../printer.pm_.c:763
msgid "Local Printers"
msgstr "·ÎÄĂ ÇÁž°ĆÍ"
-#: ../../printer.pm_.c:517 ../../printer.pm_.c:855
+#: ../../printer.pm_.c:765 ../../printer.pm_.c:1126
msgid "Remote Printers"
msgstr "żű°Ę ÇÁž°ĆÍ"
-#: ../../printer.pm_.c:524 ../../printerdrake.pm_.c:301
+#: ../../printer.pm_.c:772 ../../printerdrake.pm_.c:404
#, c-format
msgid " on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:527 ../../printerdrake.pm_.c:303
+#: ../../printer.pm_.c:775 ../../printerdrake.pm_.c:406
#, c-format
msgid ", USB printer \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:532
+#: ../../printer.pm_.c:780
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:535
+#: ../../printer.pm_.c:783
msgid ", multi-function device on USB"
msgstr ""
-#: ../../printer.pm_.c:537
+#: ../../printer.pm_.c:785
msgid ", multi-function device on HP JetDirect"
msgstr ""
-#: ../../printer.pm_.c:539
+#: ../../printer.pm_.c:787
msgid ", multi-function device"
msgstr ""
-#: ../../printer.pm_.c:542
+#: ../../printer.pm_.c:790
#, c-format
msgid ", printing to %s"
msgstr ", %sżĄ ÀÎŒâ"
-#: ../../printer.pm_.c:544
+#: ../../printer.pm_.c:792
#, c-format
msgid " on LPD server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:546
+#: ../../printer.pm_.c:794
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ""
-#: ../../printer.pm_.c:550
+#: ../../printer.pm_.c:798
#, c-format
msgid " on SMB/Windows server \"%s\", share \"%s\""
msgstr ""
-#: ../../printer.pm_.c:554
+#: ../../printer.pm_.c:802
#, c-format
msgid " on Novell server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:556
+#: ../../printer.pm_.c:804
#, c-format
msgid ", using command %s"
msgstr ""
-#: ../../printer.pm_.c:675 ../../printerdrake.pm_.c:1540
+#: ../../printer.pm_.c:923 ../../printerdrake.pm_.c:1656
msgid "Raw printer (No driver)"
msgstr "łŻ(RAW) ÇÁž°ĆÍ (”ć¶óÀÌčö »çżëŸÈÇÔ)"
-#: ../../printer.pm_.c:824
+#: ../../printer.pm_.c:1095
#, c-format
msgid "(on %s)"
msgstr "(%sżĄ)"
-#: ../../printer.pm_.c:826
+#: ../../printer.pm_.c:1097
msgid "(on this machine)"
msgstr "(ÀÌ Œ­čö»óÀÇ)"
-#: ../../printer.pm_.c:851
+#: ../../printer.pm_.c:1122
#, fuzzy, c-format
msgid "On CUPS server \"%s\""
msgstr "CUPS Œ­čö IP"
-#: ../../printer.pm_.c:857 ../../printerdrake.pm_.c:2851
-#: ../../printerdrake.pm_.c:2862 ../../printerdrake.pm_.c:3078
-#: ../../printerdrake.pm_.c:3130 ../../printerdrake.pm_.c:3156
-#: ../../printerdrake.pm_.c:3326 ../../printerdrake.pm_.c:3328
+#: ../../printer.pm_.c:1128 ../../printerdrake.pm_.c:3071
+#: ../../printerdrake.pm_.c:3082 ../../printerdrake.pm_.c:3303
+#: ../../printerdrake.pm_.c:3355 ../../printerdrake.pm_.c:3381
+#: ../../printerdrake.pm_.c:3556 ../../printerdrake.pm_.c:3558
msgid " (Default)"
msgstr " (±âș»°Ș)"
@@ -7105,11 +7271,11 @@ msgstr ""
msgid "Printer auto-detection (Local, TCP/Socket, and SMB printers)"
msgstr ""
-#: ../../printerdrake.pm_.c:84 ../../printerdrake.pm_.c:2914
+#: ../../printerdrake.pm_.c:84 ../../printerdrake.pm_.c:3135
msgid "CUPS configuration"
msgstr "CUPS ŒłÁ€"
-#: ../../printerdrake.pm_.c:85 ../../printerdrake.pm_.c:2915
+#: ../../printerdrake.pm_.c:85 ../../printerdrake.pm_.c:3136
msgid "Specify CUPS server"
msgstr "CUPS Œ­čö ÁöÁ€"
@@ -7157,7 +7323,7 @@ msgstr ""
msgid "The IP address should look like 192.168.1.20"
msgstr "IP Á֌Ҏ Ąž192.168.1.20Ąč°ú °°Àș ÇüœÄÀÌŸîŸß ÇŐŽÏŽÙ."
-#: ../../printerdrake.pm_.c:95 ../../printerdrake.pm_.c:987
+#: ../../printerdrake.pm_.c:95 ../../printerdrake.pm_.c:1094
msgid "The port number should be an integer!"
msgstr "ÆśÆź čűÈŁŽÂ Á€ŒöÀÌŸîŸß ÇŐŽÏŽÙ!"
@@ -7165,7 +7331,7 @@ msgstr "ÆśÆź čűÈŁŽÂ Á€ŒöÀÌŸîŸß ÇŐŽÏŽÙ!"
msgid "CUPS server IP"
msgstr "CUPS Œ­čö IP"
-#: ../../printerdrake.pm_.c:103 ../../printerdrake.pm_.c:1007
+#: ../../printerdrake.pm_.c:103 ../../printerdrake.pm_.c:1114
msgid "Port"
msgstr "ÆśÆź"
@@ -7173,12 +7339,130 @@ msgstr "ÆśÆź"
msgid "Automatic CUPS configuration"
msgstr "ÀÚ”ż CUPS ŒłÁ€"
-#: ../../printerdrake.pm_.c:183 ../../printerdrake.pm_.c:192
-#: ../../printerdrake.pm_.c:2897 ../../printerdrake.pm_.c:3017
+#: ../../printerdrake.pm_.c:177 ../../printerdrake.pm_.c:247
+#: ../../printerdrake.pm_.c:1529 ../../printerdrake.pm_.c:1533
+#: ../../printerdrake.pm_.c:1651 ../../printerdrake.pm_.c:2203
+#: ../../printerdrake.pm_.c:2356 ../../printerdrake.pm_.c:2415
+#: ../../printerdrake.pm_.c:2488 ../../printerdrake.pm_.c:2509
+#: ../../printerdrake.pm_.c:2699 ../../printerdrake.pm_.c:2740
+#: ../../printerdrake.pm_.c:2745 ../../printerdrake.pm_.c:2779
+#: ../../printerdrake.pm_.c:2784 ../../printerdrake.pm_.c:2821
+#: ../../printerdrake.pm_.c:2874 ../../printerdrake.pm_.c:2894
+#: ../../printerdrake.pm_.c:2908 ../../printerdrake.pm_.c:2942
+#: ../../printerdrake.pm_.c:2988 ../../printerdrake.pm_.c:3006
+#: ../../printerdrake.pm_.c:3095 ../../printerdrake.pm_.c:3169
+#: ../../printerdrake.pm_.c:3471 ../../printerdrake.pm_.c:3526
+#: ../../printerdrake.pm_.c:3579 ../../standalone/printerdrake_.c:57
+msgid "Printerdrake"
+msgstr "ÇÁž°ĆÍ”ć·čÀÌĆ©"
+
+#: ../../printerdrake.pm_.c:178
+#, fuzzy
+msgid "Checking your system..."
+msgstr "ÀÎŒâ œĂœșĆÛ ÀçœÇÇà Áß ..."
+
+#: ../../printerdrake.pm_.c:186
+msgid ""
+"There are no printers found which are directly connected to your machine"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:198
+#, fuzzy
+msgid ""
+"The following printers\n"
+"\n"
+msgstr "ŽÙÀœ ÆŃĆ°Áö”éÀÌ ÁŠ°Ć”É °ÍÀÔŽÏŽÙ."
+
+#: ../../printerdrake.pm_.c:199
+#, fuzzy
+msgid ""
+"The following printer\n"
+"\n"
+msgstr "ŽÙÀœ ÆŃĆ°Áö”éÀÌ ÁŠ°Ć”É °ÍÀÔŽÏŽÙ."
+
+#: ../../printerdrake.pm_.c:201
+msgid ""
+"\n"
+"and one unknown printer are "
+msgstr ""
+
+#: ../../printerdrake.pm_.c:203
+#, c-format
+msgid ""
+"\n"
+"and %d unknown printers are "
+msgstr ""
+
+#: ../../printerdrake.pm_.c:207
+msgid ""
+"\n"
+"are "
+msgstr ""
+
+#: ../../printerdrake.pm_.c:208
+msgid ""
+"\n"
+"is "
+msgstr ""
+
+#: ../../printerdrake.pm_.c:210
+#, fuzzy
+msgid "directly connected to your system"
+msgstr "œĂœșĆÛ ÆùÆź șč»ç"
+
+#: ../../printerdrake.pm_.c:213
+msgid ""
+"\n"
+"There is one unknown printer directly connected to your system"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:215
+#, c-format
+msgid ""
+"\n"
+"There are %d unknown printers directly connected to your system"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:221
+#, fuzzy
+msgid " (Make sure that all your printers are connected and turned on).\n"
+msgstr "ÇÁž°ĆÍ°Ą żŹ°á”È ÆśÆźžŠ Œ±ĆĂÇÏŒŒżä."
+
+#: ../../printerdrake.pm_.c:235
+msgid ""
+"Do you want to enable printing on the printers mentioned above or on "
+"printers in the local network?\n"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:236
+#, fuzzy
+msgid "Do you want to enable printing on printers in the local network?\n"
+msgstr ""
+"ÀÌ ÇÁž°ĆÍ(%s)žŠ\n"
+"±âș» ÇÁž°ĆÍ·Î ÇÏœĂ°ÚœÀŽÏ±î?"
+
+#: ../../printerdrake.pm_.c:238
+#, fuzzy
+msgid "Do you want to enable printing on the printers mentioned above?\n"
+msgstr "șÎÆĂœĂżĄ żŹ°áÇÏ””·Ï ÇÏ°ÚœÀŽÏ±î?"
+
+#: ../../printerdrake.pm_.c:239
+msgid "Are you sure that you want to set up printing on this machine?\n"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:240
+#, c-format
+msgid ""
+"NOTE: Depending on the printer model and the printing system up to %d MB of "
+"additional software will be installed."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:269 ../../printerdrake.pm_.c:278
+#: ../../printerdrake.pm_.c:3117 ../../printerdrake.pm_.c:3242
msgid "Add a new printer"
msgstr "»ő ÇÁž°ĆÍ Ăß°Ą"
-#: ../../printerdrake.pm_.c:184
+#: ../../printerdrake.pm_.c:270
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7191,7 +7475,7 @@ msgid ""
"connection types."
msgstr ""
-#: ../../printerdrake.pm_.c:193
+#: ../../printerdrake.pm_.c:280
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7200,7 +7484,7 @@ msgid ""
"computer, connected directly to the network or to a remote Windows machine.\n"
"\n"
"If you have printer(s) connected to this machine, Please plug it/them in on "
-"this computer and turn it/them on so that they can be auto-detected. Also "
+"this computer and turn it/them on so that it/they can be auto-detected. Also "
"your network printer(s) and you Windows machines must be connected and "
"turned on.\n"
"\n"
@@ -7213,7 +7497,22 @@ msgid ""
"want to set up your printer(s) now."
msgstr ""
-#: ../../printerdrake.pm_.c:202
+#: ../../printerdrake.pm_.c:289 ../../printerdrake.pm_.c:306
+msgid ""
+"\n"
+"Welcome to the Printer Setup Wizard\n"
+"\n"
+"This wizard will help you to install your printer(s) connected to this "
+"computer.\n"
+"\n"
+"If you have printer(s) connected to this machine, Please plug it/them in on "
+"this computer and turn it/them on so that it/they can be auto-detected.\n"
+"\n"
+" Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
+"want to set up your printer(s) now."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:297
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7222,7 +7521,7 @@ msgid ""
"computer or connected directly to the network.\n"
"\n"
"If you have printer(s) connected to this machine, Please plug it/them in on "
-"this computer and turn it/them on so that they can be auto-detected. Also "
+"this computer and turn it/them on so that it/they can be auto-detected. Also "
"your network printer(s) must be connected and turned on.\n"
"\n"
"Note that auto-detecting printers on the network takes longer than the auto-"
@@ -7233,25 +7532,25 @@ msgid ""
"want to set up your printer(s) now."
msgstr ""
-#: ../../printerdrake.pm_.c:213
+#: ../../printerdrake.pm_.c:315
#, fuzzy
msgid "Auto-detect printers connected to this machine"
msgstr "ÇÁž°ĆÍ ÀÚ”ż°Ë»ö"
-#: ../../printerdrake.pm_.c:215
+#: ../../printerdrake.pm_.c:318
msgid "Auto-detect printers connected directly to the local network"
msgstr ""
-#: ../../printerdrake.pm_.c:218
+#: ../../printerdrake.pm_.c:321
msgid "Auto-detect printers connected to machines running Microsoft Windows"
msgstr ""
-#: ../../printerdrake.pm_.c:245 ../../printerdrake.pm_.c:459
-#: ../../printerdrake.pm_.c:484
+#: ../../printerdrake.pm_.c:348 ../../printerdrake.pm_.c:562
+#: ../../printerdrake.pm_.c:587
msgid "Local Printer"
msgstr "ÁöżȘ ÇÁž°ĆÍ"
-#: ../../printerdrake.pm_.c:246
+#: ../../printerdrake.pm_.c:349
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -7265,49 +7564,49 @@ msgid ""
"Center."
msgstr ""
-#: ../../printerdrake.pm_.c:283 ../../printerdrake.pm_.c:474
-#: ../../printerdrake.pm_.c:683 ../../printerdrake.pm_.c:923
+#: ../../printerdrake.pm_.c:386 ../../printerdrake.pm_.c:577
+#: ../../printerdrake.pm_.c:790 ../../printerdrake.pm_.c:1030
msgid "Printer auto-detection"
msgstr "ÇÁž°ĆÍ ÀÚ”ż °Ë»ö"
-#: ../../printerdrake.pm_.c:305
+#: ../../printerdrake.pm_.c:408
#, c-format
msgid ", network printer \"%s\", port %s"
msgstr ""
-#: ../../printerdrake.pm_.c:307
+#: ../../printerdrake.pm_.c:410
#, fuzzy, c-format
msgid ", printer \"%s\" on SMB/Windows server \"%s\""
msgstr "»ïčÙ/À©””żìÁî 95/98/NT»óÀÇ ÇÁž°ĆÍ"
-#: ../../printerdrake.pm_.c:313
+#: ../../printerdrake.pm_.c:416
#, c-format
msgid "Detected %s"
msgstr "%s čß°ß"
-#: ../../printerdrake.pm_.c:317 ../../printerdrake.pm_.c:348
-#: ../../printerdrake.pm_.c:367
+#: ../../printerdrake.pm_.c:420 ../../printerdrake.pm_.c:451
+#: ../../printerdrake.pm_.c:470
#, c-format
msgid "Printer on parallel port \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:319 ../../printerdrake.pm_.c:350
-#: ../../printerdrake.pm_.c:372
+#: ../../printerdrake.pm_.c:422 ../../printerdrake.pm_.c:453
+#: ../../printerdrake.pm_.c:475
#, c-format
msgid "USB printer \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:321
+#: ../../printerdrake.pm_.c:424
#, fuzzy, c-format
msgid "Network printer \"%s\", port %s"
msgstr "łŚÆźżś ÇÁž°ĆÍ (ŒÒÄÏ)"
-#: ../../printerdrake.pm_.c:323
+#: ../../printerdrake.pm_.c:426
#, fuzzy, c-format
msgid "Printer \"%s\" on SMB/Windows server \"%s\""
msgstr "»ïčÙ/À©””żìÁî 95/98/NT»óÀÇ ÇÁž°ĆÍ"
-#: ../../printerdrake.pm_.c:460
+#: ../../printerdrake.pm_.c:563
msgid ""
"No local printer found! To manually install a printer enter a device name/"
"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
@@ -7315,31 +7614,31 @@ msgid ""
"printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:464
+#: ../../printerdrake.pm_.c:567
msgid "You must enter a device or file name!"
msgstr "ÀćÄĄ ¶ÇŽÂ ÆÄÀÏ ÀÌž§À» ÀÔ·ÂÇŰŸß ÇŐŽÏŽÙ!"
-#: ../../printerdrake.pm_.c:475
+#: ../../printerdrake.pm_.c:578
msgid "No printer found!"
msgstr "ÇÁž°ĆÍžŠ ĂŁÀ» Œö ŸűœÀŽÏŽÙ!"
-#: ../../printerdrake.pm_.c:485
+#: ../../printerdrake.pm_.c:588
msgid "Available printers"
msgstr "ÀŻÈżÇŃ ÇÁž°ĆÍ”é"
-#: ../../printerdrake.pm_.c:489
+#: ../../printerdrake.pm_.c:592
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:490
+#: ../../printerdrake.pm_.c:593
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up or enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:492
+#: ../../printerdrake.pm_.c:595
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
@@ -7347,7 +7646,7 @@ msgid ""
"configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:493
+#: ../../printerdrake.pm_.c:596
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
@@ -7355,35 +7654,35 @@ msgid ""
"customized printer configuration, turn on \"Manual configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:495
+#: ../../printerdrake.pm_.c:598
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:496
+#: ../../printerdrake.pm_.c:599
msgid "Please choose the port where your printer is connected to."
msgstr "ÇÁž°ĆÍ°Ą żŹ°á”È ÆśÆźžŠ Œ±ĆĂÇÏŒŒżä."
-#: ../../printerdrake.pm_.c:498
+#: ../../printerdrake.pm_.c:601
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:503
+#: ../../printerdrake.pm_.c:606
msgid "You must choose/enter a printer/device!"
msgstr "ÇÁž°ĆÍ ¶ÇŽÂ ÀćÄĄžŠ ÀÔ·Â ¶ÇŽÂ Œ±ĆĂÇŰŸß ÇŐŽÏŽÙ!"
-#: ../../printerdrake.pm_.c:523
+#: ../../printerdrake.pm_.c:626
msgid "Manual configuration"
msgstr "Œö”ż ŒłÁ€"
-#: ../../printerdrake.pm_.c:577
+#: ../../printerdrake.pm_.c:680
msgid "Remote lpd Printer Options"
msgstr "żű°Ę LPD ÇÁž°ĆÍ żÉŒÇ"
-#: ../../printerdrake.pm_.c:578
+#: ../../printerdrake.pm_.c:681
#, fuzzy
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
@@ -7393,46 +7692,46 @@ msgstr ""
"±Ś ÇÁž°ĆÍ Œ­čöÀÇ ÈŁœșÆźží°ú ±Ś Œ­čö»óÀÇ ÇÁž°ĆÍ ÀÌž§À»\n"
"ÀÔ·ÂÇŰŸß ÇŐŽÏŽÙ."
-#: ../../printerdrake.pm_.c:579
+#: ../../printerdrake.pm_.c:682
msgid "Remote host name"
msgstr "żű°Ę ÈŁœșÆźží"
-#: ../../printerdrake.pm_.c:580
+#: ../../printerdrake.pm_.c:683
msgid "Remote printer name"
msgstr "żű°Ę ÇÁž°ĆÍží"
-#: ../../printerdrake.pm_.c:583
+#: ../../printerdrake.pm_.c:686
msgid "Remote host name missing!"
msgstr "żű°Ę ÈŁœșÆźžíÀ» ĂŁÀ» Œö ŸűÀœ!"
-#: ../../printerdrake.pm_.c:587
+#: ../../printerdrake.pm_.c:690
msgid "Remote printer name missing!"
msgstr "żű°Ę ÇÁž°ĆÍžíÀÌ șüÁłœÀŽÏŽÙ!!"
-#: ../../printerdrake.pm_.c:609 ../../printerdrake.pm_.c:1119
+#: ../../printerdrake.pm_.c:712 ../../printerdrake.pm_.c:1225
#, c-format
msgid "Detected model: %s %s"
msgstr "°Ë»ö”È žđ”š: %s %s"
-#: ../../printerdrake.pm_.c:683 ../../printerdrake.pm_.c:923
+#: ../../printerdrake.pm_.c:790 ../../printerdrake.pm_.c:1030
msgid "Scanning network..."
msgstr "łŚÆźżś °Ë»ö Áß ..."
-#: ../../printerdrake.pm_.c:692 ../../printerdrake.pm_.c:713
+#: ../../printerdrake.pm_.c:799 ../../printerdrake.pm_.c:820
#, c-format
msgid ", printer \"%s\" on server \"%s\""
msgstr ""
-#: ../../printerdrake.pm_.c:695 ../../printerdrake.pm_.c:716
+#: ../../printerdrake.pm_.c:802 ../../printerdrake.pm_.c:823
#, fuzzy, c-format
msgid "Printer \"%s\" on server \"%s\""
msgstr "ÇÁž°ĆÍĄž%sĄč»óżĄŒ­ ÀÎŒâ Áß"
-#: ../../printerdrake.pm_.c:736
+#: ../../printerdrake.pm_.c:843
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "SMB (Windows 9x/NT) ÇÁž°ĆÍ żÉŒÇ"
-#: ../../printerdrake.pm_.c:737
+#: ../../printerdrake.pm_.c:844
#, fuzzy
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
@@ -7446,45 +7745,45 @@ msgstr ""
"°űÀŻ ÀÌž§, Á€œÄ »çżëÀÚží, ŸÏÈŁ, ÀÛŸś±Ś·ìžíÀ» \n"
"ÀÔ·ÂÇŰŸß ÇŐŽÏŽÙ."
-#: ../../printerdrake.pm_.c:738
+#: ../../printerdrake.pm_.c:845
msgid ""
" If the desired printer was auto-detected, simply choose it from the list "
"and then add user name, password, and/or workgroup if needed."
msgstr ""
-#: ../../printerdrake.pm_.c:739
+#: ../../printerdrake.pm_.c:846
msgid "SMB server host"
msgstr "SMB Œ­čö ÈŁœșÆź"
-#: ../../printerdrake.pm_.c:740
+#: ../../printerdrake.pm_.c:847
msgid "SMB server IP"
msgstr "SMB Œ­čö IP"
-#: ../../printerdrake.pm_.c:741
+#: ../../printerdrake.pm_.c:848
msgid "Share name"
msgstr "°űÀŻ ÀÌž§"
-#: ../../printerdrake.pm_.c:744
+#: ../../printerdrake.pm_.c:851
msgid "Workgroup"
msgstr "ÀÛŸś ±Ś·ì"
-#: ../../printerdrake.pm_.c:746
+#: ../../printerdrake.pm_.c:853
msgid "Auto-detected"
msgstr "ÀÚ”ż °Ë»ö”Ê"
-#: ../../printerdrake.pm_.c:757
+#: ../../printerdrake.pm_.c:864
msgid "Either the server name or the server's IP must be given!"
msgstr "Œ­čö ÀÌž§ ¶ÇŽÂ Œ­čö IPžŠ ÀÔ·ÂÇŰŸß ÇŐŽÏŽÙ!"
-#: ../../printerdrake.pm_.c:761
+#: ../../printerdrake.pm_.c:868
msgid "Samba share name missing!"
msgstr "»ïčÙ °űÀŻ ÀÌž§À» ĂŁÀ» Œö ŸűÀœ!"
-#: ../../printerdrake.pm_.c:767
+#: ../../printerdrake.pm_.c:874
msgid "SECURITY WARNING!"
msgstr ""
-#: ../../printerdrake.pm_.c:768
+#: ../../printerdrake.pm_.c:875
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -7508,7 +7807,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:778
+#: ../../printerdrake.pm_.c:885
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -7517,7 +7816,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:781
+#: ../../printerdrake.pm_.c:888
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
@@ -7525,11 +7824,11 @@ msgid ""
"Do you really want to continue setting up this printer as you are doing now?"
msgstr ""
-#: ../../printerdrake.pm_.c:853
+#: ../../printerdrake.pm_.c:960
msgid "NetWare Printer Options"
msgstr "łĘżțŸî ÇÁž°ĆÍ żÉŒÇ"
-#: ../../printerdrake.pm_.c:854
+#: ../../printerdrake.pm_.c:961
#, fuzzy
msgid ""
"To print on a NetWare printer, you need to provide the NetWare print server "
@@ -7542,43 +7841,43 @@ msgstr ""
"ŸŚŒŒœșÇÏ·ÁŽÂ ÇÁž°ĆÍÀÇ Ć„ ÀÌž§, Á€œÄ »çżëÀÚží, ŸÏÈŁžŠ \n"
"ÀÔ·ÂÇŰŸß ÇŐŽÏŽÙ."
-#: ../../printerdrake.pm_.c:855
+#: ../../printerdrake.pm_.c:962
msgid "Printer Server"
msgstr "ÇÁž°ĆÍ Œ­čö"
-#: ../../printerdrake.pm_.c:856
+#: ../../printerdrake.pm_.c:963
msgid "Print Queue Name"
msgstr "ÇÁž°Æź Ć„ ÀÌž§"
-#: ../../printerdrake.pm_.c:861
+#: ../../printerdrake.pm_.c:968
msgid "NCP server name missing!"
msgstr "NCP Œ­čö ÀÌž§À» ĂŁÀ» Œö ŸűÀœ!"
-#: ../../printerdrake.pm_.c:865
+#: ../../printerdrake.pm_.c:972
msgid "NCP queue name missing!"
msgstr "NCP Ć„ ÀÌž§À» ĂŁÀ» Œö ŸűÀœ!"
-#: ../../printerdrake.pm_.c:932 ../../printerdrake.pm_.c:952
+#: ../../printerdrake.pm_.c:1039 ../../printerdrake.pm_.c:1059
#, c-format
msgid ", host \"%s\", port %s"
msgstr ""
-#: ../../printerdrake.pm_.c:935 ../../printerdrake.pm_.c:955
+#: ../../printerdrake.pm_.c:1042 ../../printerdrake.pm_.c:1062
#, c-format
msgid "Host \"%s\", port %s"
msgstr ""
-#: ../../printerdrake.pm_.c:975
+#: ../../printerdrake.pm_.c:1082
msgid "TCP/Socket Printer Options"
msgstr "TCP/ŒÒÄÏ ÇÁž°ĆÍ żÉŒÇ"
-#: ../../printerdrake.pm_.c:977
+#: ../../printerdrake.pm_.c:1084
msgid ""
"Choose one of the auto-detected printers from the list or enter the hostname "
"or IP and the optional port number (default is 9100) into the input fields."
msgstr ""
-#: ../../printerdrake.pm_.c:978
+#: ../../printerdrake.pm_.c:1085
#, fuzzy
msgid ""
"To print to a TCP or socket printer, you need to provide the host name or IP "
@@ -7591,19 +7890,19 @@ msgstr ""
"ÀÏčĘÀûÀž·Î 9100 ÆśÆźžŠ »çżëÇÏÁöžž, ŽÙž„ Œ­čö»óżĄŒ­ŽÂ °ą±â\n"
"ŽÙžŠ Œö ÀÖœÀŽÏŽÙ. ÇÏ”ćżțŸî ŒłžíŒ­žŠ ÂüÁ¶ÇÏŒŒżä."
-#: ../../printerdrake.pm_.c:983
+#: ../../printerdrake.pm_.c:1090
msgid "Printer host name or IP missing!"
msgstr "ÇÁž°ĆÍ ÈŁœșÆźží ¶ÇŽÂ IP°Ą ÁöÁ€”ÇÁö ŸÊŸÒœÀŽÏŽÙ!"
-#: ../../printerdrake.pm_.c:1005
+#: ../../printerdrake.pm_.c:1112
msgid "Printer host name or IP"
msgstr "ÇÁž°ĆÍ ÈŁœșÆźží ¶ÇŽÂ IP"
-#: ../../printerdrake.pm_.c:1054 ../../printerdrake.pm_.c:1056
+#: ../../printerdrake.pm_.c:1160 ../../printerdrake.pm_.c:1162
msgid "Printer Device URI"
msgstr "ÇÁž°ĆÍ ÀćÄĄ URI"
-#: ../../printerdrake.pm_.c:1055
+#: ../../printerdrake.pm_.c:1161
msgid ""
"You can specify directly the URI to access the printer. The URI must fulfill "
"either the CUPS or the Foomatic specifications. Note that not all URI types "
@@ -7612,11 +7911,11 @@ msgstr ""
"ÇÁž°ĆÍ ŸŚŒŒœș Á֌ҞŠ ÁśÁą ÁöÁ€ÇÒ Œö ÀÖœÀŽÏŽÙ. Á֌Ҏ CUPS ¶ÇŽÂ Foomatic ±ÔÁ€"
"À» ÁŰŒöÇŰŸß ÇŐŽÏŽÙ. ±Ś·žÁö ŸÊÀș Á֌Ҏ žđ”ç œșÇź·Ż°Ą ÁöżűÇÏÁö ŸÊœÀŽÏŽÙ."
-#: ../../printerdrake.pm_.c:1070
+#: ../../printerdrake.pm_.c:1176
msgid "A valid URI must be entered!"
msgstr "ÀŻÈżÇŃ Á֌ҞŠ ÀÔ·ÂÇÏŒŒżä!"
-#: ../../printerdrake.pm_.c:1402
+#: ../../printerdrake.pm_.c:1515
#, fuzzy
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
@@ -7626,27 +7925,27 @@ msgstr ""
"Œłží°ú À§ÄĄ șÎșĐÀ» ÀÔ·ÂÇÒ ÇÊżäŽÂ ŸűœÀŽÏŽÙ.\n"
"±Ś°Í”éÀș ŽÜÁö »çżëÀÚ”éÀ» À§ÇŃ șÎżŹŒłžíÀÏ »ÓÀÔŽÏŽÙ."
-#: ../../printerdrake.pm_.c:1403
+#: ../../printerdrake.pm_.c:1516
msgid "Name of printer"
msgstr "ÇÁž°ĆÍ ÀÌž§"
-#: ../../printerdrake.pm_.c:1405
+#: ../../printerdrake.pm_.c:1518
msgid "Location"
msgstr "À§ÄĄ"
-#: ../../printerdrake.pm_.c:1416 ../../printerdrake.pm_.c:1536
+#: ../../printerdrake.pm_.c:1530 ../../printerdrake.pm_.c:1652
msgid "Reading printer database..."
msgstr "ÇÁž°ĆÍ ”„ÀÌĆÍșŁÀÌœș ÀĐŽÂ Áß ..."
-#: ../../printerdrake.pm_.c:1419
+#: ../../printerdrake.pm_.c:1534
msgid "Preparing printer database..."
msgstr "ÇÁž°ĆÍ ”„ÀÌĆÍșŁÀÌœș ÁŰșń Áß ..."
-#: ../../printerdrake.pm_.c:1516
+#: ../../printerdrake.pm_.c:1631
msgid "Your printer model"
msgstr "ÇÁž°ĆÍ žđ”š"
-#: ../../printerdrake.pm_.c:1517
+#: ../../printerdrake.pm_.c:1632
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -7661,24 +7960,24 @@ msgid ""
"%s"
msgstr ""
-#: ../../printerdrake.pm_.c:1522 ../../printerdrake.pm_.c:1525
+#: ../../printerdrake.pm_.c:1637 ../../printerdrake.pm_.c:1640
msgid "The model is correct"
msgstr "žđ”šÀÌ Á€ÈźÇŐŽÏŽÙ."
-#: ../../printerdrake.pm_.c:1523 ../../printerdrake.pm_.c:1524
-#: ../../printerdrake.pm_.c:1527
+#: ../../printerdrake.pm_.c:1638 ../../printerdrake.pm_.c:1639
+#: ../../printerdrake.pm_.c:1642
msgid "Select model manually"
msgstr "ÁśÁą žđ”š Œ±ĆĂ"
-#: ../../printerdrake.pm_.c:1543
+#: ../../printerdrake.pm_.c:1659
msgid "Printer model selection"
msgstr "ÇÁž°ĆÍ žđ”š Œ±ĆĂ"
-#: ../../printerdrake.pm_.c:1544
+#: ../../printerdrake.pm_.c:1660
msgid "Which printer model do you have?"
msgstr "Ÿî¶Č ÇÁž°ĆÍžŠ °ĄÁö°í ÀÖœÀŽÏ±î?"
-#: ../../printerdrake.pm_.c:1545
+#: ../../printerdrake.pm_.c:1661
msgid ""
"\n"
"\n"
@@ -7687,17 +7986,17 @@ msgid ""
"standing on a wrong model or on \"Raw printer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1548
+#: ../../printerdrake.pm_.c:1664
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
msgstr ""
-#: ../../printerdrake.pm_.c:1624
+#: ../../printerdrake.pm_.c:1741
msgid "OKI winprinter configuration"
msgstr "OKI À©ÇÁž°ĆÍ ŒłÁ€"
-#: ../../printerdrake.pm_.c:1625
+#: ../../printerdrake.pm_.c:1742
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -7707,11 +8006,11 @@ msgid ""
"not work. Your connection type setting will be ignored by the driver."
msgstr ""
-#: ../../printerdrake.pm_.c:1668 ../../printerdrake.pm_.c:1695
+#: ../../printerdrake.pm_.c:1785 ../../printerdrake.pm_.c:1812
msgid "Lexmark inkjet configuration"
msgstr "·șœșž¶Ć© ÀŚĆ©ÁŹ ŒłÁ€"
-#: ../../printerdrake.pm_.c:1669
+#: ../../printerdrake.pm_.c:1786
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
"no printers on remote machines or print server boxes. Please connect your "
@@ -7719,20 +8018,46 @@ msgid ""
"to."
msgstr ""
-#: ../../printerdrake.pm_.c:1696
+#: ../../printerdrake.pm_.c:1813
msgid ""
"To be able to print with your Lexmark inkjet and this configuration, you "
"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
-"com/). Go to the US site and click on the \"Drivers\" button. Then choose "
-"your model and afterwards \"Linux\" as operating system. The drivers come as "
-"RPM packages or shell scripts with interactive graphical installation. You "
-"do not need to do this configuration by the graphical frontends. Cancel "
-"directly after the license agreement. Then print printhead alignment pages "
-"with \"lexmarkmaintain\" and adjust the head alignment settings with this "
-"program."
+"com/). Click on the \"Drivers\" link. Then choose your model and afterwards "
+"\"Linux\" as operating system. The drivers come as RPM packages or shell "
+"scripts with interactive graphical installation. You do not need to do this "
+"configuration by the graphical frontends. Cancel directly after the license "
+"agreement. Then print printhead alignment pages with \"lexmarkmaintain\" and "
+"adjust the head alignment settings with this program."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:1816
+msgid "GDI Laser Printer using the Zenographics ZJ-Stream Format"
msgstr ""
-#: ../../printerdrake.pm_.c:1912
+#: ../../printerdrake.pm_.c:1817
+msgid ""
+"Your printer belongs to the group of GDI laser printers (winprinters) sold "
+"by different manufacturers which uses the Zenographics ZJ-stream raster "
+"format for the data sent to the printer. The driver for these printers is "
+"still in a very early development stage and so it will perhaps not always "
+"work properly. Especially it is possible that the printer only works when "
+"you choose the A4 paper size.\n"
+"\n"
+"Some of these printers, as the HP LaserJet 1000, for which this driver was "
+"originally created, need their firmware to be uploaded to them after they "
+"are turned on. In the case of the HP LaserJet 1000 you have to search the "
+"printer's Windows driver CD or your Windows partition for the file "
+"\"sihp1000.img\" and upload the file to the printer with one of the "
+"following commands:\n"
+"\n"
+" lpr -o raw sihp1000.img\n"
+" cat sihp1000.img > /dev/usb/lp0\n"
+"\n"
+"The first command can be given by any normal user, the second must be given "
+"as root. After having done so you can print normally.\n"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:2040
#, fuzzy
msgid ""
"Printer default settings\n"
@@ -7747,22 +8072,22 @@ msgstr ""
"Àß ÈźÀÎÇÏŒŒżä. °íÇ°Áú ÀÎŒâč°À» Ÿò±âÀ§ÇŰŒ­ŽÂ ÀΌ⠌Ӕ”°Ą\n"
"±Ś žžĆ­ ŽÀ·ÁÁűŽÙŽÂ °ÍÀ» ŸË°í °èŒŒżä."
-#: ../../printerdrake.pm_.c:1921
+#: ../../printerdrake.pm_.c:2049
#, c-format
msgid "Option %s must be an integer number!"
msgstr "%s żÉŒÇÀș Á€Œö čűÈŁÀÌŸîŸß ÇŐŽÏŽÙ!"
-#: ../../printerdrake.pm_.c:1925
+#: ../../printerdrake.pm_.c:2053
#, c-format
msgid "Option %s must be a number!"
msgstr "%s żÉŒÇÀș ŒęÀÚÀÌŸîŸß ÇŐŽÏŽÙ!"
-#: ../../printerdrake.pm_.c:1930
+#: ../../printerdrake.pm_.c:2058
#, c-format
msgid "Option %s out of range!"
msgstr "%s żÉŒÇ čüÀ§ ĂÊ°ú!"
-#: ../../printerdrake.pm_.c:1969
+#: ../../printerdrake.pm_.c:2097
#, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
@@ -7771,11 +8096,11 @@ msgstr ""
"ÀÌ ÇÁž°ĆÍ(%s)žŠ\n"
"±âș» ÇÁž°ĆÍ·Î ÇÏœĂ°ÚœÀŽÏ±î?"
-#: ../../printerdrake.pm_.c:1986
+#: ../../printerdrake.pm_.c:2120
msgid "Test pages"
msgstr "œĂÇè ÆäÀÌÁö"
-#: ../../printerdrake.pm_.c:1987
+#: ../../printerdrake.pm_.c:2121
#, fuzzy
msgid ""
"Please select the test pages you want to print.\n"
@@ -7789,39 +8114,39 @@ msgstr ""
"ÆäÀÌÁö°Ą łȘżÀÁö ŸÊÀ» Œö”” ÀÖœÀŽÏŽÙ.\n"
"Ç„ÁŰ œĂÇè ÆäÀÌÁöŽÂ Žë°ł Àß ÀÎŒâ”ËŽÏŽÙ."
-#: ../../printerdrake.pm_.c:1991
+#: ../../printerdrake.pm_.c:2125
msgid "No test pages"
msgstr "œĂÇè ÆäÀÌÁö ŸűÀœ"
-#: ../../printerdrake.pm_.c:1992
+#: ../../printerdrake.pm_.c:2126
msgid "Print"
msgstr "ÀÎŒâ"
-#: ../../printerdrake.pm_.c:1994
+#: ../../printerdrake.pm_.c:2183
msgid "Standard test page"
msgstr "Ç„ÁŰ œĂÇè ÆäÀÌÁö"
-#: ../../printerdrake.pm_.c:1997
+#: ../../printerdrake.pm_.c:2186
msgid "Alternative test page (Letter)"
msgstr "ŽÙž„ œĂÇè ÆäÀÌÁö (Letter)"
-#: ../../printerdrake.pm_.c:2000
+#: ../../printerdrake.pm_.c:2189
msgid "Alternative test page (A4)"
msgstr "œĂÇè ÆäÀÌÁö È°ŒșÈ­ (A4)"
-#: ../../printerdrake.pm_.c:2002
+#: ../../printerdrake.pm_.c:2191
msgid "Photo test page"
msgstr "»çÁű œĂÇè ÆäÀÌÁö"
-#: ../../printerdrake.pm_.c:2006
+#: ../../printerdrake.pm_.c:2195
msgid "Do not print any test page"
msgstr "œĂÇè ÆäÀÌÁö ÀΌ⠟ÈÇÔ"
-#: ../../printerdrake.pm_.c:2014 ../../printerdrake.pm_.c:2166
+#: ../../printerdrake.pm_.c:2204 ../../printerdrake.pm_.c:2357
msgid "Printing test page(s)..."
msgstr "œĂÇè ÆäÀÌÁö ÀÎŒâ Áß..."
-#: ../../printerdrake.pm_.c:2039
+#: ../../printerdrake.pm_.c:2229
#, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -7836,7 +8161,7 @@ msgstr ""
"%s\n"
"\n"
-#: ../../printerdrake.pm_.c:2043
+#: ../../printerdrake.pm_.c:2233
msgid ""
"Test page(s) have been sent to the printer.\n"
"It may take some time before the printer starts.\n"
@@ -7844,15 +8169,15 @@ msgstr ""
"œĂÇè ÀÎŒâ ÆäÀÌÁöžŠ ÇÁž°ĆÍ·Î șžłÂœÀŽÏŽÙ.\n"
"ÀÎŒâ”DZâ±îÁö Ÿà°ŁÀÇ œĂ°ŁÀÌ °Éž± Œö ÀÖœÀŽÏŽÙ.\n"
-#: ../../printerdrake.pm_.c:2050
+#: ../../printerdrake.pm_.c:2240
msgid "Did it work properly?"
msgstr "żĂčÙžŁ°Ô ÀÛ”żÇßœÀŽÏ±î?"
-#: ../../printerdrake.pm_.c:2072 ../../printerdrake.pm_.c:3191
+#: ../../printerdrake.pm_.c:2262 ../../printerdrake.pm_.c:3416
msgid "Raw printer"
msgstr "łŻ(RAW) ÇÁž°ĆÍ"
-#: ../../printerdrake.pm_.c:2098
+#: ../../printerdrake.pm_.c:2288
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -7861,15 +8186,15 @@ msgid ""
"to modify the option settings easily.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2100
+#: ../../printerdrake.pm_.c:2290
msgid ""
"These commands you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications, but here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2103 ../../printerdrake.pm_.c:2120
-#: ../../printerdrake.pm_.c:2130
+#: ../../printerdrake.pm_.c:2293 ../../printerdrake.pm_.c:2310
+#: ../../printerdrake.pm_.c:2320
#, c-format
msgid ""
"\n"
@@ -7878,7 +8203,7 @@ msgid ""
"line, e. g. \"%s <file>\". "
msgstr ""
-#: ../../printerdrake.pm_.c:2106 ../../printerdrake.pm_.c:2146
+#: ../../printerdrake.pm_.c:2296 ../../printerdrake.pm_.c:2336
#, fuzzy, c-format
msgid ""
"To know about the options available for the current printer read either the "
@@ -7889,13 +8214,13 @@ msgstr ""
"żä.\n"
"\n"
-#: ../../printerdrake.pm_.c:2110
+#: ../../printerdrake.pm_.c:2300
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2115 ../../printerdrake.pm_.c:2125
+#: ../../printerdrake.pm_.c:2305 ../../printerdrake.pm_.c:2315
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
@@ -7904,15 +8229,15 @@ msgstr ""
"ží·ÉÇà(ĆÍčÌłÎ À©””żì)żĄŒ­ ÆÄÀÏÀ» ÀÎŒâÇÏ·Ážé, Ąž%s <ÆÄÀÏ>Ąčží·ÉÀ» »çżëÇÏŒŒ"
"żä.\n"
-#: ../../printerdrake.pm_.c:2117 ../../printerdrake.pm_.c:2127
-#: ../../printerdrake.pm_.c:2137
+#: ../../printerdrake.pm_.c:2307 ../../printerdrake.pm_.c:2317
+#: ../../printerdrake.pm_.c:2327
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2122 ../../printerdrake.pm_.c:2132
+#: ../../printerdrake.pm_.c:2312 ../../printerdrake.pm_.c:2322
#, fuzzy
msgid ""
"To get a list of the options available for the current printer click on the "
@@ -7922,7 +8247,7 @@ msgstr ""
"żä.\n"
"\n"
-#: ../../printerdrake.pm_.c:2135
+#: ../../printerdrake.pm_.c:2325
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
@@ -7931,7 +8256,7 @@ msgstr ""
"ží·ÉÇà(ĆÍčÌłÎ À©””żì)żĄŒ­ ÆÄÀÏÀ» ÀÎŒâÇÏ·Ážé, Ąž%s <ÆÄÀÏ>Ąč ¶ÇŽÂ Ąž%s <ÆÄÀÏ>Ąč"
"ží·ÉÀ» »çżëÇÏŒŒżä.\n"
-#: ../../printerdrake.pm_.c:2139
+#: ../../printerdrake.pm_.c:2329
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -7941,7 +8266,7 @@ msgid ""
"jams.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2143
+#: ../../printerdrake.pm_.c:2333
#, c-format
msgid ""
"\n"
@@ -7953,40 +8278,40 @@ msgstr ""
"Ąž%sĄčżÍĄž%sĄčží·ÉÀș ¶ÇÇŃ ÆŻÁ€ ÀÎŒâ ÀÛŸśÀ» À§ÇŃ żÉŒÇ ŒłÁ€À» ŒöÁ€ÇÒ Œö ÀÖ°Ô ÇŐ"
"ŽÏŽÙ. ží·ÉÇàżĄ żűÇÏŽÂ ŒłÁ€°ȘÀ» Ăß°ĄÇÏŒŒżä, żč: Ąž%s <ÆÄÀÏ>Ąč.\n"
-#: ../../printerdrake.pm_.c:2153
+#: ../../printerdrake.pm_.c:2343
#, fuzzy, c-format
msgid "Printing/Scanning/Photo Cards on \"%s\""
msgstr "ÇÁž°ĆÍĄž%sĄč»óżĄŒ­ ÀÎŒâ Áß"
-#: ../../printerdrake.pm_.c:2154
+#: ../../printerdrake.pm_.c:2344
#, fuzzy, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "ÇÁž°ĆÍĄž%sĄč»óżĄŒ­ ÀÎŒâ Áß"
-#: ../../printerdrake.pm_.c:2156
+#: ../../printerdrake.pm_.c:2346
#, fuzzy, c-format
msgid "Printing/Photo Card Access on \"%s\""
msgstr "ÇÁž°ĆÍĄž%sĄč»óżĄŒ­ ÀÎŒâ Áß"
-#: ../../printerdrake.pm_.c:2157
+#: ../../printerdrake.pm_.c:2347
#, c-format
msgid "Printing on the printer \"%s\""
msgstr "ÇÁž°ĆÍĄž%sĄč»óżĄŒ­ ÀÎŒâ Áß"
-#: ../../printerdrake.pm_.c:2160 ../../printerdrake.pm_.c:2163
-#: ../../printerdrake.pm_.c:2164 ../../printerdrake.pm_.c:2165
-#: ../../printerdrake.pm_.c:3175 ../../standalone/drakTermServ_.c:248
-#: ../../standalone/drakbackup_.c:1485 ../../standalone/drakbackup_.c:3530
-#: ../../standalone/drakbug_.c:129 ../../standalone/drakfont_.c:705
+#: ../../printerdrake.pm_.c:2350 ../../printerdrake.pm_.c:2353
+#: ../../printerdrake.pm_.c:2354 ../../printerdrake.pm_.c:2355
+#: ../../printerdrake.pm_.c:3400 ../../standalone/drakTermServ_.c:248
+#: ../../standalone/drakbackup_.c:1560 ../../standalone/drakbackup_.c:4208
+#: ../../standalone/drakbug_.c:130 ../../standalone/drakfont_.c:705
#: ../../standalone/drakfont_.c:1014
msgid "Close"
msgstr "ŽĘ±â"
-#: ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2353
msgid "Print option list"
msgstr "ÇÁž°ĆÍ żÉŒÇ žń·Ï"
-#: ../../printerdrake.pm_.c:2182
+#: ../../printerdrake.pm_.c:2373
#, c-format
msgid ""
"Your multi-function device was configured automatically to be able to scan. "
@@ -8000,7 +8325,7 @@ msgid ""
"Do not use \"scannerdrake\" for this device!"
msgstr ""
-#: ../../printerdrake.pm_.c:2202
+#: ../../printerdrake.pm_.c:2394
msgid ""
"Your printer was configured automatically to give you access to the photo "
"card drives from your PC. Now you can access your photo cards using the "
@@ -8013,17 +8338,17 @@ msgid ""
"of the file lists."
msgstr ""
-#: ../../printerdrake.pm_.c:2223 ../../printerdrake.pm_.c:2673
-#: ../../printerdrake.pm_.c:2945
+#: ../../printerdrake.pm_.c:2416 ../../printerdrake.pm_.c:2875
+#: ../../printerdrake.pm_.c:3170
msgid "Reading printer data..."
msgstr "ÇÁž°ĆÍ ”„ÀÌĆÍ ÀĐŽÂ Áß ..."
-#: ../../printerdrake.pm_.c:2243 ../../printerdrake.pm_.c:2271
-#: ../../printerdrake.pm_.c:2306
+#: ../../printerdrake.pm_.c:2436 ../../printerdrake.pm_.c:2464
+#: ../../printerdrake.pm_.c:2499
msgid "Transfer printer configuration"
msgstr "ÇÁž°ĆÍ ŒłÁ€ ÀüŒÛ"
-#: ../../printerdrake.pm_.c:2244
+#: ../../printerdrake.pm_.c:2437
#, fuzzy, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -8038,7 +8363,7 @@ msgstr ""
"±Ś·ŻłȘ ÀÛŸś”éÀș ÀüŒÛ”ÇÁö ŸÊœÀŽÏŽÙ.\n"
"ŽÙÀœ°ú °°Àș ÀÌÀŻ·ÎÀÎÇÏż© žđ”ç Ć„°Ą ÀüŒÛ”É ŒöŽÂ ŸűœÀŽÏŽÙ:\n"
-#: ../../printerdrake.pm_.c:2247
+#: ../../printerdrake.pm_.c:2440
#, fuzzy
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
@@ -8047,7 +8372,7 @@ msgstr ""
"CUPSŽÂ łëș§ Œ­čö»óÀÇ ÇÁž°ĆÍłȘ ÀÚÀŻÇüœÄ ží·ÉŸî·Î ”„ÀÌĆÍžŠ șžł»ŽÂ\n"
"ÇÁž°ĆÍŽÂ ÁöżűÇÏÁö ŸÊœÀŽÏŽÙ.\n"
-#: ../../printerdrake.pm_.c:2249
+#: ../../printerdrake.pm_.c:2442
#, fuzzy
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
@@ -8056,11 +8381,11 @@ msgstr ""
"LPQŽÂ ŽÜÁö ÁöżȘ ÇÁž°ĆÍ, żű°Ę LPD ÇÁž°ĆÍ ±Śžź°í ŒÒÄÏ/TCP\n"
"ÇÁž°ĆÍžžÀ» ÁöżűÇŐŽÏŽÙ.\n"
-#: ../../printerdrake.pm_.c:2251
+#: ../../printerdrake.pm_.c:2444
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr "LPDżÍ LPRngŽÂ IPP ÇÁž°ĆÍžŠ ÁöżűÇÏÁö ŸÊœÀŽÏŽÙ.\n"
-#: ../../printerdrake.pm_.c:2253
+#: ../../printerdrake.pm_.c:2446
#, fuzzy
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
@@ -8069,7 +8394,7 @@ msgstr ""
"±Śžź°í ¶ÇÇŃ, ÀÌ ÇÁ·Î±Ś·„ÀÌłȘ ĄžFoomatic ŒłÁ€ĄčÀž·Î\n"
"»ęŒș”ÇÁö ŸÊÀș Ć„ŽÂ ÀüŒÛ”É Œö ŸűœÀŽÏŽÙ."
-#: ../../printerdrake.pm_.c:2254
+#: ../../printerdrake.pm_.c:2447
#, fuzzy
msgid ""
"\n"
@@ -8080,7 +8405,7 @@ msgstr ""
"¶ÇÇŃ ÁŠÁ¶ŸśĂŒ°Ą ÁŠ°űÇŃ PPD ÆÄÀÏÀÌłȘ CUPS ÆśÇÔ ”ć¶óÀÌčö·Î\n"
"ŒłÁ€”È ÇÁž°ĆÍ”” ÀüŒÛ”É Œö ŸűœÀŽÏŽÙ."
-#: ../../printerdrake.pm_.c:2255
+#: ../../printerdrake.pm_.c:2448
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
@@ -8089,15 +8414,15 @@ msgstr ""
"\n"
"ÀüŒÛÇÏ·ÁŽÂ ÇÁž°ĆÍ”éÀ» Œ±ĆĂÇŃ ÈÄżĄ ĄžÀüŒÛĄčÀ» Ž©žŁŒŒżä."
-#: ../../printerdrake.pm_.c:2258
+#: ../../printerdrake.pm_.c:2451
msgid "Do not transfer printers"
msgstr "ÇÁž°ĆÍ ÀüŒÛ ÇÏÁöŸÊÀœ"
-#: ../../printerdrake.pm_.c:2259 ../../printerdrake.pm_.c:2276
+#: ../../printerdrake.pm_.c:2452 ../../printerdrake.pm_.c:2469
msgid "Transfer"
msgstr "ÀüŒÛ"
-#: ../../printerdrake.pm_.c:2272
+#: ../../printerdrake.pm_.c:2465
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -8108,11 +8433,11 @@ msgstr ""
"”€Ÿî Ÿ”·Ážé ĄžÀüŒÛĄčÀ» Ž©žŁŒŒżä.\n"
"»ő ÀÌž§À» ÀÔ·ÂÇÏ°ĆłȘ ÀÌ ÇÁž°ĆÍžŠ ÁöłȘÄ„ Œö”” ÀÖœÀŽÏŽÙ."
-#: ../../printerdrake.pm_.c:2280
+#: ../../printerdrake.pm_.c:2473
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr "ÇÁž°ĆÍ ÀÌž§żĄŽÂ čźÀÚ, ŒęÀÚ ±Śžź°í čŰÁÙ(Underscore)žž ÀÖŸîŸß ÇŐŽÏŽÙ."
-#: ../../printerdrake.pm_.c:2285
+#: ../../printerdrake.pm_.c:2478
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
@@ -8121,16 +8446,16 @@ msgstr ""
"ÇÁž°ĆÍ Ąž%sĄč°Ą ÀÌčÌ ÁžÀçÇŐŽÏŽÙ.\n"
"Á€ž»·Î ±âÁž ŒłÁ€À» ”€Ÿî Ÿ”±îżä?"
-#: ../../printerdrake.pm_.c:2293
+#: ../../printerdrake.pm_.c:2486
msgid "New printer name"
msgstr "»ő ÇÁž°ĆÍ ÀÌž§"
-#: ../../printerdrake.pm_.c:2296
+#: ../../printerdrake.pm_.c:2489
#, c-format
msgid "Transferring %s..."
msgstr "%s ÀüŒÛ Áß ..."
-#: ../../printerdrake.pm_.c:2307
+#: ../../printerdrake.pm_.c:2500
#, fuzzy, c-format
msgid ""
"You have transferred your former default printer (\"%s\"), Should it be also "
@@ -8140,29 +8465,29 @@ msgstr ""
"»ő ÇÁž°ÆĂ œĂœșĆÛ %sÇÏżĄŒ­ ±Ś°ÍÀÌ ¶ÇÇŃ ±âș» ÇÁž°ĆÍ°Ą\n"
"”Ç””·Ï ÇÏœĂ°ÚœÀŽÏ±î?"
-#: ../../printerdrake.pm_.c:2316
+#: ../../printerdrake.pm_.c:2510
msgid "Refreshing printer data..."
msgstr "ÇÁž°ĆÍ ”„ÀÌĆÍ °»œĆ Áß ..."
-#: ../../printerdrake.pm_.c:2324 ../../printerdrake.pm_.c:2395
-#: ../../printerdrake.pm_.c:2407
+#: ../../printerdrake.pm_.c:2518 ../../printerdrake.pm_.c:2590
+#: ../../printerdrake.pm_.c:2602
msgid "Configuration of a remote printer"
msgstr "żű°Ę ÇÁž°ĆÍ ŒłÁ€"
-#: ../../printerdrake.pm_.c:2325
+#: ../../printerdrake.pm_.c:2519
msgid "Starting network..."
msgstr "łŚÆźżś żŹ°á Áß..."
-#: ../../printerdrake.pm_.c:2359 ../../printerdrake.pm_.c:2363
-#: ../../printerdrake.pm_.c:2365
+#: ../../printerdrake.pm_.c:2554 ../../printerdrake.pm_.c:2558
+#: ../../printerdrake.pm_.c:2560
msgid "Configure the network now"
msgstr "Áö±Ę łŚÆźżś ŒłÁ€"
-#: ../../printerdrake.pm_.c:2360
+#: ../../printerdrake.pm_.c:2555
msgid "Network functionality not configured"
msgstr "łŚÆźżś ±âŽÉÀÌ ŒłÁ€”ÇÁö ŸÊŸÒœÀŽÏŽÙ."
-#: ../../printerdrake.pm_.c:2361
+#: ../../printerdrake.pm_.c:2556
#, fuzzy
msgid ""
"You are going to configure a remote printer. This needs working network "
@@ -8176,11 +8501,11 @@ msgstr ""
"»çżëÇÒ Œö ŸűœÀŽÏŽÙ.\n"
"Ÿî¶»°Ô ÇÏœĂ°ÚœÀŽÏ±î?"
-#: ../../printerdrake.pm_.c:2364
+#: ../../printerdrake.pm_.c:2559
msgid "Go on without configuring the network"
msgstr "łŚÆźżś ŒłÁ€ ŸűÀÌ °èŒÓ"
-#: ../../printerdrake.pm_.c:2397
+#: ../../printerdrake.pm_.c:2592
#, fuzzy
msgid ""
"The network configuration done during the installation cannot be started "
@@ -8198,7 +8523,7 @@ msgstr ""
"žŠ ÀÌżëÇÏż©, ÇÁž°ĆÍ ŒłÁ€À»\n"
"ŽÙœĂ ÇŰ șžŒŒżä."
-#: ../../printerdrake.pm_.c:2398
+#: ../../printerdrake.pm_.c:2593
#, fuzzy
msgid ""
"The network access was not running and could not be started. Please check "
@@ -8210,48 +8535,24 @@ msgstr ""
"±Śžź°íłȘŒ­ żű°Ę ÇÁž°ĆÍ ŒłÁ€À» ŽÙœĂ œĂ””ÇŰ\n"
"șžŒŒżä."
-#: ../../printerdrake.pm_.c:2408
+#: ../../printerdrake.pm_.c:2603
msgid "Restarting printing system..."
msgstr "ÀÎŒâ œĂœșĆÛ ÀçœÇÇà Áß ..."
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2641
msgid "high"
msgstr "łôÀœ"
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2641
msgid "paranoid"
msgstr "ĂÖ°í"
-#: ../../printerdrake.pm_.c:2447
+#: ../../printerdrake.pm_.c:2642
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr "șžŸÈ ŒöÁŰ %s·Î ÀÎŒâ œĂœșĆÛ ŒłÄĄ Áß"
-# #msgid ""
-# #"You are about to install the printing system %s on a system running in the %"
-# #"s security level.\n"
-# #"\n"
-# #"This printing system runs a daemon (background process) which waits for "
-# #"print jobs and handles them. This daemon is also accessable by remote "
-# #"machines through the network and so it is a possible point for attacks. "
-# #"Therefore only a few selected daemons are started by default in this "
-# #"security level.\n"
-# #"\n"
-# #"Do you really want to configure printing on this machine?"
-# #msgstr ""
-# #"Áö±Ę ŽÔÀș șžŸÈŒöÁŰ %2%s·Î żîżë”ÇŽÂ œĂœșĆÛżĄ\n"
-# #"ÀÎŒâ œĂœșĆÛ %1$sÀ» ŒłÄĄÇÏ·Á°í ÇŐŽÏŽÙ.\n"
-# #"\n"
-# #"ÀÎŒâ œĂœșĆÛÀș ÀÎŒâÀÛŸśÀ» ±âŽÙ·ÈŽÙ°Ą ĂłžźÇÏŽÂ\n"
-# #"Žëžó(č鱌¶óżî”ć ÇÁ·ÎŒŒœș)žŠ œÇÇàœĂĆ”ŽÏŽÙ.\n"
-# #"żű°Ę œĂœșĆÛżĄŒ­ łŚÆźżśÀž·Î ÀÌ ŽëžóżĄ Áą±ÙÇÒ Œö””\n"
-# #"Àֱ⠶§čźżĄ, Ć©·ĄÄż”éÀÇ »çłÉ°šÀÌ ”DZ└ ÇŐŽÏŽÙ.\n"
-# #"”û¶óŒ­ ÇöÀç șžŸÈ ŒöÁŰżĄŒ­ŽÂ ŽÜÁö žîžîÀÇ žĆžó”éžž\n"
-# #"œÇÇà”Ç””·Ï Œ±ĆÔǎ °ÍÀÌ ±âș»ÀÔŽÏŽÙ.\n"
-# #"\n"
-# #"Á€ž»·Î ÀÌ ÄÄÇ»ĆÍ»óÀÇ ÀΌ⠌łÁ€À»\n"
-# #"żűÇϜʎϱî? "
-#: ../../printerdrake.pm_.c:2448
+#: ../../printerdrake.pm_.c:2643
#, fuzzy, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -8265,7 +8566,7 @@ msgid ""
"\n"
"Do you really want to configure printing on this machine?"
msgstr ""
-"Áö±Ę ŽÔÀș șžŸÈŒöÁŰ %2%s·Î żîżë”ÇŽÂ œĂœșĆÛżĄ\n"
+"Áö±Ę ŽÔÀș șžŸÈŒöÁŰ %2$s·Î żîżë”ÇŽÂ œĂœșĆÛżĄ\n"
"ÀÎŒâ œĂœșĆÛ %1$sÀ» ŒłÄĄÇÏ·Á°í ÇŐŽÏŽÙ.\n"
"\n"
"ÀÎŒâ œĂœșĆÛÀș ÀÎŒâÀÛŸśÀ» ±âŽÙ·ÈŽÙ°Ą ĂłžźÇÏŽÂ\n"
@@ -8278,11 +8579,11 @@ msgstr ""
"Á€ž»·Î ÀÌ ÄÄÇ»ĆÍ»óÀÇ ÀΌ⠌łÁ€À»\n"
"żűÇϜʎϱî? "
-#: ../../printerdrake.pm_.c:2480
+#: ../../printerdrake.pm_.c:2675
msgid "Starting the printing system at boot time"
msgstr "șÎÆĂœĂ ÀÎŒâ œĂœșĆÛ ÀÚ”żœÇÇà"
-#: ../../printerdrake.pm_.c:2481
+#: ../../printerdrake.pm_.c:2676
#, fuzzy, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -8305,76 +8606,73 @@ msgstr ""
"ŽÙœĂ ÀÎŒâ œĂœșĆÛÀÇ ÀÚ”żœÇÇà ±âŽÉÀÌ È°ŒșÈ­”Ç””·Ï\n"
"ÇÏœĂ°ÚœÀŽÏ±î?"
-#: ../../printerdrake.pm_.c:2504 ../../printerdrake.pm_.c:2544
-#: ../../printerdrake.pm_.c:2581 ../../printerdrake.pm_.c:2621
-#: ../../printerdrake.pm_.c:2733
+#: ../../printerdrake.pm_.c:2700 ../../printerdrake.pm_.c:2741
+#: ../../printerdrake.pm_.c:2780 ../../printerdrake.pm_.c:2822
+#: ../../printerdrake.pm_.c:2943
msgid "Checking installed software..."
msgstr "ŒłÄĄ”È ŒÒÇÁÆźżțŸî ÈźÀÎ Áß ..."
-#: ../../printerdrake.pm_.c:2548
+#: ../../printerdrake.pm_.c:2746
msgid "Removing LPRng..."
msgstr "LPRng ÁŠ°Ć Áß ..."
-#: ../../printerdrake.pm_.c:2585
+#: ../../printerdrake.pm_.c:2785
msgid "Removing LPD..."
msgstr "LPD ÁŠ°Ć Áß ..."
-#: ../../printerdrake.pm_.c:2657
+#: ../../printerdrake.pm_.c:2858
msgid "Select Printer Spooler"
msgstr "ÇÁž°ĆÍ œșÇź·ŻÀ» Œ±ĆĂÇÏŒŒżä."
-#: ../../printerdrake.pm_.c:2658
+#: ../../printerdrake.pm_.c:2859
msgid "Which printing system (spooler) do you want to use?"
msgstr "Ÿî¶Č ÀÎŒâ œĂœșĆÛ(œșÇź·Ż)À» »çżëÇÏœĂ°ÚœÀŽÏ±î?"
-#: ../../printerdrake.pm_.c:2691
+#: ../../printerdrake.pm_.c:2895
#, c-format
msgid "Configuring printer \"%s\"..."
msgstr "ÇÁž°ĆÍ Ąž%sĄč ŒłÁ€ Áß ..."
-#: ../../printerdrake.pm_.c:2704
+#: ../../printerdrake.pm_.c:2909
msgid "Installing Foomatic..."
msgstr "Foomatic ŒłÄĄ Áß..."
-#: ../../printerdrake.pm_.c:2769 ../../printerdrake.pm_.c:2808
-#: ../../printerdrake.pm_.c:3192 ../../printerdrake.pm_.c:3262
+#: ../../printerdrake.pm_.c:2979 ../../printerdrake.pm_.c:3020
+#: ../../printerdrake.pm_.c:3417 ../../printerdrake.pm_.c:3490
msgid "Printer options"
msgstr "ÇÁž°ĆÍ żÉŒÇ"
-#: ../../printerdrake.pm_.c:2778
-msgid "Preparing PrinterDrake..."
+#: ../../printerdrake.pm_.c:2989
+#, fuzzy
+msgid "Preparing Printerdrake..."
msgstr "ÇÁž°ĆÍ”ć·čÀÌĆ© ÁŰșń Áß ..."
-#: ../../printerdrake.pm_.c:2795 ../../printerdrake.pm_.c:3349
+#: ../../printerdrake.pm_.c:3007 ../../printerdrake.pm_.c:3580
msgid "Configuring applications..."
msgstr "ÇÁ·Î±Ś·„ ŒłÁ€ Áß ..."
-#: ../../printerdrake.pm_.c:2815
+#: ../../printerdrake.pm_.c:3027
msgid "Would you like to configure printing?"
msgstr "ÀΌ⠌łÁ€À» ÇÏœĂ°ÚœÀŽÏ±î?"
-#: ../../printerdrake.pm_.c:2827
+#: ../../printerdrake.pm_.c:3039
msgid "Printing system: "
msgstr "ÀÎŒâ œĂœșĆÛ:"
-#: ../../printerdrake.pm_.c:2875
-msgid "Printerdrake"
-msgstr "ÇÁž°ĆÍ”ć·čÀÌĆ©"
-
-#: ../../printerdrake.pm_.c:2879
+#: ../../printerdrake.pm_.c:3099
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; to view information about it; "
"or to make a printer on a remote CUPS server available for Star Office/"
-"OpenOffice.org."
+"OpenOffice.org/GIMP."
msgstr ""
"ŽÙÀœ ÇÁž°ĆÍ”éÀÌ ŒłÁ€”ÇŸúœÀŽÏŽÙ.\n"
"ŒöÁ€ÇÏ°í œÍ°ĆłȘ,\n"
"Á€șžžŠ șž°í œÍŽÙžé ÇÁž°ĆÍžŠ ĆŹžŻÇÏŒŒżä.\n"
"»ő ÇÁž°ĆÍžŠ Ăß°ĄÇÏ°í œÍŽÙžé ĄžÇÁž°ĆÍ Ăß°ĄĄčžŠ Ž©žŁŒŒżä."
-#: ../../printerdrake.pm_.c:2880
+#: ../../printerdrake.pm_.c:3100
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
@@ -8386,28 +8684,28 @@ msgstr ""
"Á€șžžŠ șž°í œÍŽÙžé ÇÁž°ĆÍžŠ ĆŹžŻÇÏŒŒżä.\n"
"»ő ÇÁž°ĆÍžŠ Ăß°ĄÇÏ°í œÍŽÙžé ĄžÇÁž°ĆÍ Ăß°ĄĄčžŠ Ž©žŁŒŒżä."
-#: ../../printerdrake.pm_.c:2906
+#: ../../printerdrake.pm_.c:3127
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr "ÇÁž°ĆÍ žń·Ï °»œĆ"
-#: ../../printerdrake.pm_.c:2924
+#: ../../printerdrake.pm_.c:3145
msgid "Change the printing system"
msgstr "ÀÎŒâœĂœșĆÛ șŻ°æ"
-#: ../../printerdrake.pm_.c:2929 ../../standalone/drakconnect_.c:277
+#: ../../printerdrake.pm_.c:3150 ../../standalone/drakconnect_.c:277
msgid "Normal Mode"
msgstr "ÀÏčĘ žđ”ć"
-#: ../../printerdrake.pm_.c:3085 ../../printerdrake.pm_.c:3135
-#: ../../printerdrake.pm_.c:3343
+#: ../../printerdrake.pm_.c:3310 ../../printerdrake.pm_.c:3360
+#: ../../printerdrake.pm_.c:3573
msgid "Do you want to configure another printer?"
msgstr "¶ÇŽÙž„ ÇÁž°ĆÍžŠ ŒłÁ€ÇÏœĂ°ÚœÀŽÏ±î?"
-#: ../../printerdrake.pm_.c:3170
+#: ../../printerdrake.pm_.c:3395
msgid "Modify printer configuration"
msgstr "ÀÎĆÍłĘ ŒłÁ€ șŻ°æ"
-#: ../../printerdrake.pm_.c:3172
+#: ../../printerdrake.pm_.c:3397
#, fuzzy, c-format
msgid ""
"Printer %s\n"
@@ -8416,100 +8714,102 @@ msgstr ""
"ÇÁž°ĆÍ %s: %s: %s\n"
"ÀÌ ÇÁž°ĆÍżĄ ŽëÇŰŒ­ č«ŸùÀ» ŒöÁ€ÇÏœĂ°ÚœÀŽÏ±î?"
-#: ../../printerdrake.pm_.c:3176
+#: ../../printerdrake.pm_.c:3401
msgid "Do it!"
msgstr "œÇÇà"
-#: ../../printerdrake.pm_.c:3181 ../../printerdrake.pm_.c:3236
+#: ../../printerdrake.pm_.c:3406 ../../printerdrake.pm_.c:3461
msgid "Printer connection type"
msgstr "ÀÎĆÍłĘ żŹ°á ÀŻÇü"
-#: ../../printerdrake.pm_.c:3182 ../../printerdrake.pm_.c:3240
+#: ../../printerdrake.pm_.c:3407 ../../printerdrake.pm_.c:3465
msgid "Printer name, description, location"
msgstr "ÇÁž°ĆÍ ÀÌž§, Œłží, À§ÄĄ"
-#: ../../printerdrake.pm_.c:3184 ../../printerdrake.pm_.c:3255
+#: ../../printerdrake.pm_.c:3409 ../../printerdrake.pm_.c:3483
msgid "Printer manufacturer, model, driver"
msgstr "ÇÁž°ĆÍ ÁŠÁ¶ŸśĂŒ, žđ”š, ”ć¶óÀÌčö"
-#: ../../printerdrake.pm_.c:3185 ../../printerdrake.pm_.c:3256
+#: ../../printerdrake.pm_.c:3410 ../../printerdrake.pm_.c:3484
msgid "Printer manufacturer, model"
msgstr "ÇÁž°ĆÍ ÁŠÁ¶ŸśĂŒ, žđ”š"
-#: ../../printerdrake.pm_.c:3194 ../../printerdrake.pm_.c:3266
+#: ../../printerdrake.pm_.c:3419 ../../printerdrake.pm_.c:3494
msgid "Set this printer as the default"
msgstr "ÀÌ ÇÁž°ĆÍžŠ ±âș»Àž·Î ŒłÁ€"
-#: ../../printerdrake.pm_.c:3196 ../../printerdrake.pm_.c:3271
-msgid "Add this printer to Star Office/OpenOffice.org"
+#: ../../printerdrake.pm_.c:3421 ../../printerdrake.pm_.c:3499
+msgid "Add this printer to Star Office/OpenOffice.org/GIMP"
msgstr ""
-#: ../../printerdrake.pm_.c:3197 ../../printerdrake.pm_.c:3280
-msgid "Remove this printer from Star Office/OpenOffice.org"
+#: ../../printerdrake.pm_.c:3422 ../../printerdrake.pm_.c:3508
+msgid "Remove this printer from Star Office/OpenOffice.org/GIMP"
msgstr ""
-#: ../../printerdrake.pm_.c:3198 ../../printerdrake.pm_.c:3289
+#: ../../printerdrake.pm_.c:3423 ../../printerdrake.pm_.c:3517
msgid "Print test pages"
msgstr "œĂÇè ÆäÀÌÁö ÀÎŒâ"
-#: ../../printerdrake.pm_.c:3199 ../../printerdrake.pm_.c:3291
+#: ../../printerdrake.pm_.c:3424 ../../printerdrake.pm_.c:3519
msgid "Know how to use this printer"
msgstr "ÀÌ ÇÁž°ĆÍÀÇ »çżëčę ŸËŸÆșž±â"
-#: ../../printerdrake.pm_.c:3201 ../../printerdrake.pm_.c:3293
+#: ../../printerdrake.pm_.c:3426 ../../printerdrake.pm_.c:3521
msgid "Remove printer"
msgstr "ÇÁž°ĆÍ ÁŠ°Ć"
-#: ../../printerdrake.pm_.c:3245
+#: ../../printerdrake.pm_.c:3472
#, c-format
msgid "Removing old printer \"%s\"..."
msgstr "±âÁž ÇÁž°ĆÍ Ąž%sĄč ÁŠ°Ć Áß ..."
-#: ../../printerdrake.pm_.c:3269
+#: ../../printerdrake.pm_.c:3497
msgid "Default printer"
msgstr "±âș» ÇÁž°ĆÍ"
-#: ../../printerdrake.pm_.c:3270
+#: ../../printerdrake.pm_.c:3498
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr "Ąž%sĄčÇÁž°ĆÍ°Ą ±âș» ÇÁž°ĆÍ·Î ŒłÁ€”ÇŸúœÀŽÏŽÙ."
-#: ../../printerdrake.pm_.c:3274 ../../printerdrake.pm_.c:3277
-msgid "Adding printer to Star Office/OpenOffice.org"
+#: ../../printerdrake.pm_.c:3502 ../../printerdrake.pm_.c:3505
+msgid "Adding printer to Star Office/OpenOffice.org/GIMP"
msgstr ""
-#: ../../printerdrake.pm_.c:3275
+#: ../../printerdrake.pm_.c:3503
#, c-format
msgid ""
-"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
+"The printer \"%s\" was successfully added to Star Office/OpenOffice.org/GIMP."
msgstr ""
-#: ../../printerdrake.pm_.c:3278
+#: ../../printerdrake.pm_.c:3506
#, c-format
-msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
+msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org/GIMP."
msgstr ""
-#: ../../printerdrake.pm_.c:3283 ../../printerdrake.pm_.c:3286
-msgid "Removing printer from Star Office/OpenOffice.org"
+#: ../../printerdrake.pm_.c:3511 ../../printerdrake.pm_.c:3514
+msgid "Removing printer from Star Office/OpenOffice.org/GIMP"
msgstr ""
-#: ../../printerdrake.pm_.c:3284
+#: ../../printerdrake.pm_.c:3512
#, c-format
msgid ""
-"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
+"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org/"
+"GIMP."
msgstr ""
-#: ../../printerdrake.pm_.c:3287
+#: ../../printerdrake.pm_.c:3515
#, c-format
-msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
+msgid ""
+"Failed to remove the printer \"%s\" from Star Office/OpenOffice.org/GIMP."
msgstr ""
-#: ../../printerdrake.pm_.c:3295
+#: ../../printerdrake.pm_.c:3523
#, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr "Á€ž»·Î Ąž%sĄčÇÁž°ĆÍžŠ ÁŠ°ĆÇŐŽÏ±î?"
-#: ../../printerdrake.pm_.c:3297
+#: ../../printerdrake.pm_.c:3527
#, c-format
msgid "Removing printer \"%s\"..."
msgstr "ÇÁž°ĆÍ Ąž%sĄč ÁŠ°Ć Áß ..."
@@ -8918,7 +9218,7 @@ msgstr "ÀÎĆÍłĘ"
msgid "File sharing"
msgstr "ÆÄÀÏ °űÀŻ"
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1669
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1744
msgid "System"
msgstr "œĂœșĆÛ"
@@ -8973,183 +9273,227 @@ msgstr "œĂÀÛ"
msgid "Stop"
msgstr "ÁßÁö"
-#: ../../share/advertising/00-thanks.pl_.c:9
-msgid "Thank you for choosing Mandrake Linux 8.2"
+#: ../../share/advertising/01-thanks.pl_.c:9
+#, fuzzy
+msgid "Thank you for choosing Mandrake Linux 9.0"
msgstr "žÇ”ć·čÀÌĆ© žźŽȘœș 8.2žŠ Œ±ĆĂÇŰ ÁÖŒĆŒ­ °š»çÇŐŽÏŽÙ."
-#: ../../share/advertising/00-thanks.pl_.c:10
+#: ../../share/advertising/01-thanks.pl_.c:10
+#, fuzzy
msgid "Welcome to the Open Source world"
msgstr "°ű°ł ŒÒœș ŒŒ°èżĄ żÀœĆ °ÍÀ» ÈŻż”ÇŐŽÏŽÙ."
-#: ../../share/advertising/00-thanks.pl_.c:11
+#: ../../share/advertising/01-thanks.pl_.c:11
msgid ""
"The success of MandrakeSoft is based upon the principle of Free Software. "
"Your new operating system is the result of collaborative work on the part of "
"the worldwide Linux Community"
msgstr ""
-#: ../../share/advertising/01-gnu.pl_.c:9
-msgid "Join the Free Software world"
+#: ../../share/advertising/02-community.pl_.c:9
+#, fuzzy
+msgid "Get involved in the Free Software world"
msgstr "ÀÚÀŻ ŒÒÇÁÆźżțŸî ŒŒ°èżĄ Âüż©"
-#: ../../share/advertising/01-gnu.pl_.c:10
+#: ../../share/advertising/02-community.pl_.c:10
+msgid "Want to know more about the Open Source community?"
+msgstr ""
+
+#: ../../share/advertising/02-community.pl_.c:11
msgid ""
-"Get to know the Open Source community and become a member. Learn, teach, and "
-"help others by joining the many discussion forums that you will find in our "
-"\"Community\" webpages"
+"To share your own knowledge and help build Linux tools, join the discussions "
+"forum you'll find on our \"Community\" webpages"
msgstr ""
-#: ../../share/advertising/02-internet.pl_.c:9
-msgid "Internet and Messaging"
-msgstr "ÀÎĆͳʰú žȚœĂÂĄ"
+#: ../../share/advertising/03-internet.pl_.c:9
+#, fuzzy
+msgid "Get the most from the Internet"
+msgstr "ÀÎĆͳʿĄ żŹ°á"
-#: ../../share/advertising/02-internet.pl_.c:10
+#: ../../share/advertising/03-internet.pl_.c:10
msgid ""
-"Mandrake Linux 8.2 provides the best software to access everything the "
-"Internet has to offer: Surf the web & view animations with Mozilla and "
-"Konqueror, exchange email & organize your personal information with "
-"Evolution and Kmail, and much more"
+"Mandrake Linux 9.0 has selected the best software for you. Surf the Web and "
+"view animations with Mozilla and Konqueror, or read your mail and handle "
+"your personal information with Evolution and Kmail"
msgstr ""
-#: ../../share/advertising/03-graphic.pl_.c:9
-msgid "Multimedia and Graphics"
-msgstr "žÖÆŒčÌ”đŸîżÍ ±Ś·ĄÇÈ"
+#: ../../share/advertising/04-multimedia.pl_.c:9
+msgid "Discover the most up-to-date graphics and multimedia tools!"
+msgstr ""
+
+#: ../../share/advertising/04-multimedia.pl_.c:10
+msgid "Push multimedia to its limits!"
+msgstr ""
-#: ../../share/advertising/03-graphic.pl_.c:10
+#: ../../share/advertising/04-multimedia.pl_.c:11
msgid ""
-"Mandrake Linux 8.2 lets you push your multimedia computer to its limits! Use "
-"the latest software to play music and audio files, edit and organize your "
-"images and photos, watch TV and videos, and much more"
+"Mandrake Linux 9.0 enables you to use the very latest software to play audio "
+"files, edit and handle your images or photos, and play videos"
msgstr ""
-#: ../../share/advertising/04-develop.pl_.c:9
-msgid "Development"
-msgstr "°łčß"
+#: ../../share/advertising/05-games.pl_.c:9
+msgid "Games"
+msgstr "°ÔÀÓ"
-#: ../../share/advertising/04-develop.pl_.c:10
+#: ../../share/advertising/05-games.pl_.c:10
msgid ""
-"Mandrake Linux 8.2 is the ultimate development platform. Discover the power "
-"of the GNU gcc compiler as well as the best Open Source development "
-"environments"
+"Mandrake Linux 9.0 provides the best Open Source games - arcade, action, "
+"cards, sports, strategy..."
msgstr ""
-#: ../../share/advertising/05-contcenter.pl_.c:9
-#: ../../standalone/drakbug_.c:69
+#: ../../share/advertising/06-mcc.pl_.c:9 ../../standalone/drakbug_.c:69
msgid "Mandrake Control Center"
msgstr "žÇ”ć·čÀÌĆ© ÁŠŸî ŒŸĆÍ"
-#: ../../share/advertising/05-contcenter.pl_.c:10
+#: ../../share/advertising/06-mcc.pl_.c:10
msgid ""
-"The Mandrake Linux 8.2 Control Center is a one-stop location for fully "
-"customizing and configuring your Mandrake system"
+"Mandrake Linux 9.0 provides a powerful tool to fully customize and configure "
+"your machine"
msgstr ""
-#: ../../share/advertising/06-user.pl_.c:9
+#: ../../share/advertising/07-desktop.pl_.c:9
msgid "User interfaces"
msgstr "»çżëÀÚ ÀÎĆÍÆäÀÌœș"
-#: ../../share/advertising/06-user.pl_.c:10
+#: ../../share/advertising/07-desktop.pl_.c:10
+msgid ""
+"Mandrake Linux 9.0 provides 11 user interfaces which can be fully modified: "
+"KDE 3, Gnome 2, WindowMaker..."
+msgstr ""
+
+#: ../../share/advertising/08-development.pl_.c:9
+#, fuzzy
+msgid "Development simplified"
+msgstr "°łčß"
+
+#: ../../share/advertising/08-development.pl_.c:10
+msgid "Mandrake Linux 9.0 is the ultimate development platform"
+msgstr ""
+
+#: ../../share/advertising/08-development.pl_.c:11
msgid ""
-"Mandrake Linux 8.2 provides 11 different graphical desktop environments and "
-"window managers to choose from including GNOME 1.4, KDE 2.2.2, Window Maker "
-"0.8, and the rest"
+"Use the full power of the GNU gcc 3 compiler as well as the best Open Source "
+"development environments"
msgstr ""
-#: ../../share/advertising/07-server.pl_.c:9
-msgid "Server Software"
-msgstr "Œ­čö ŒÒÇÁÆźżțŸî"
+#: ../../share/advertising/09-server.pl_.c:9
+msgid "Turn your machine into a reliable server"
+msgstr ""
-#: ../../share/advertising/07-server.pl_.c:10
+#: ../../share/advertising/09-server.pl_.c:10
msgid ""
-"Transform your machine into a powerful server with just a few clicks of the "
-"mouse: Web server, email, firewall, router, file and print server, ..."
+"Transform your machine into a powerful server in a few clicks of your mouse: "
+"Web server, mail, firewall, router, file and print server..."
msgstr ""
-#: ../../share/advertising/08-games.pl_.c:9
-msgid "Games"
-msgstr "°ÔÀÓ"
+#: ../../share/advertising/10-mnf.pl_.c:9
+msgid "Optimize your security"
+msgstr ""
+
+#: ../../share/advertising/10-mnf.pl_.c:10
+msgid ""
+"The MandrakeSecurity range includes the Multi Network Firewall product (M.N."
+"F.)"
+msgstr ""
-#: ../../share/advertising/08-games.pl_.c:10
+#: ../../share/advertising/10-mnf.pl_.c:11
msgid ""
-"Mandrake Linux 8.2 provides the best Open Source games - arcade, action, "
-"cards, sports, strategy, ..."
+"This firewall product includes network features which allow you to fulfill "
+"all your security needs"
+msgstr ""
+
+#: ../../share/advertising/10-mnf.pl_.c:12
+msgid "This product is available on MandrakeStore website"
msgstr ""
-#: ../../share/advertising/09-MDKcampus.pl_.c:9
-msgid "MandrakeCampus"
-msgstr "žÇ”ć·čÀÌĆ©Ä·ÆÛœș"
+#: ../../share/advertising/11-mdkstore.pl_.c:9
+msgid "The official MandrakeSoft store"
+msgstr ""
-#: ../../share/advertising/09-MDKcampus.pl_.c:10
+#: ../../share/advertising/11-mdkstore.pl_.c:10
msgid ""
-"Would you like to learn Linux simply, quickly, and for free? MandrakeSoft "
-"provides free Linux training, as well as a way to test your progress, at "
-"MandrakeCampus -- our online training center"
+"Our full range of Linux solutions, as well as special offers on products and "
+"'goodies', are available online at our e-store"
msgstr ""
-#: ../../share/advertising/10-MDKexpert.pl_.c:9
-msgid "MandrakeExpert"
-msgstr "žÇ”ć·čÀÌĆ©Àüčź°Ą"
+#: ../../share/advertising/12-mdkstore.pl_.c:9
+msgid "Strategic partners"
+msgstr ""
-#: ../../share/advertising/10-MDKexpert.pl_.c:10
+#: ../../share/advertising/12-mdkstore.pl_.c:10
msgid ""
-"Quality support from the Linux Community, and from MandrakeSoft, is just "
-"around the corner. And if you're already a Linux veteran, become an \"Expert"
-"\" and share your knowledge at our support website"
+"MandrakeSoft works alongside a selection of companies offering professional "
+"solutions compatible with Mandrake Linux; a list of these partners is "
+"available on the MandrakeStore"
msgstr ""
-#: ../../share/advertising/11-consul.pl_.c:9
-msgid "MandrakeConsulting"
-msgstr "žÇ”ć·čÀÌĆ©»óŽă"
+#: ../../share/advertising/13-mdkcampus.pl_.c:9
+msgid "Discover MandrakeSoft's training catalogue Linux-Campus"
+msgstr ""
-#: ../../share/advertising/11-consul.pl_.c:10
+#: ../../share/advertising/13-mdkcampus.pl_.c:10
msgid ""
-"For all of your IT projects, our consultants are ready to analyze your "
-"requirements and offer a customized solution. Benefit from MandrakeSoft's "
-"vast experience as a Linux producer to provide a true IT alternative for "
-"your business organization"
+"The training program has been create to respond to the needs of both users "
+"and experts (Network and System administrations)"
msgstr ""
-#: ../../share/advertising/12-MDKstore.pl_.c:9
-msgid "MandrakeStore"
-msgstr "žÇ”ć·čÀÌĆ©°Ą°Ô"
+#: ../../share/advertising/13-mdkcampus.pl_.c:11
+msgid "Certify yourself on Linux"
+msgstr ""
-#: ../../share/advertising/12-MDKstore.pl_.c:10
+#: ../../share/advertising/13-mdkcampus.pl_.c:12
msgid ""
-"A full range of Linux solutions, as well as special offers on products and "
-"'goodies', are available online at our e-store"
+"Whether you choose to teach yourself online or via our network of training "
+"partners, the Linux-Campus catalogue prepares you for the acknowledged LPI "
+"certification program (worldwide professional technical certification)"
+msgstr ""
+
+#: ../../share/advertising/14-mdkexpert.pl_.c:9
+#, fuzzy
+msgid "Become a MandrakeExpert"
+msgstr "žÇ”ć·čÀÌĆ©Àüčź°Ą"
+
+#: ../../share/advertising/14-mdkexpert.pl_.c:10
+msgid ""
+"Find the solutions to your problems via MandrakeSoft's online support "
+"platform"
msgstr ""
-#: ../../share/advertising/13-Nvert.pl_.c:9
+#: ../../share/advertising/14-mdkexpert.pl_.c:11
msgid ""
-"For more information on MandrakeSoft's Professional Services and commercial "
-"offerings, please see the following web page:"
+"Join the MandrakeSoft support teams and the Linux Community online to share "
+"your knowledge and help others by becoming a recognized Expert on the online "
+"technical support website:"
msgstr ""
-#: ../../share/advertising/13-Nvert.pl_.c:11
-msgid "http://www.mandrakesoft.com/sales/contact"
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:9
+#, fuzzy
+msgid "MandrakeExpert Corporate"
+msgstr "žÇ”ć·čÀÌĆ©Àüčź°Ą"
+
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:10
+msgid "An online platform to respond to company's specific support needs"
msgstr ""
-#: ../../standalone.pm_.c:40
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:11
+msgid ""
+"All incidents will be followed up by a single qualified MandrakeSoft "
+"technical expert."
+msgstr ""
+
+#: ../../standalone.pm_.c:41
msgid "Installing packages..."
msgstr "ÆŃĆ°Áö ŒłÄĄ Áß..."
-#: ../../standalone/XFdrake_.c:143
+#: ../../standalone/XFdrake_.c:145
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "·Î±ŚŸÆżôÇÏ°í Crtl-Alt-BackSpaceĆ°žŠ Ž©žŁŒŒżä."
-#: ../../standalone/XFdrake_.c:147
+#: ../../standalone/XFdrake_.c:149
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "șŻ°æ»çÇŚÀ» ÀûżëÇÏ·Ážé %s·Î Àç·Î±ŚÀÎ ÇÏŒŒżä."
-#: ../../standalone/diskdrake_.c:81
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I'll try to go on blanking bad partitions"
-msgstr ""
-"ÇÏ”ć ”đœșĆ©ÀÇ ÆÄÆŒŒÇ ĆŚÀÌșíÀ» ÀĐÀ»Œö ŸűœÀŽÏŽÙ. łÊč« șŻÇü”È °Í °°œÀŽÏŽÙ. :(\n"
-"Àßžű”È ÆÄÆŒŒÇ șńżì±âžŠ œĂ””ÇÒ °ÍÀÔŽÏŽÙ."
-
#: ../../standalone/drakTermServ_.c:188
msgid "Mandrake Terminal Server Configuration"
msgstr "žÇ”ć·čÀÌĆ© ĆÍčÌłÎ Œ­čö ŒłÁ€"
@@ -9186,12 +9530,13 @@ msgstr "»çżëÀÚ Ăß°Ą/ÁŠ°Ć"
msgid "Add/Del Clients"
msgstr "ĆŹ¶óÀÌŸđÆź Ăß°Ą/ÁŠ°Ć"
-#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3282
-#: ../../standalone/drakbackup_.c:3315 ../../standalone/drakbackup_.c:3341
-#: ../../standalone/drakbackup_.c:3368 ../../standalone/drakbackup_.c:3395
-#: ../../standalone/drakbackup_.c:3434 ../../standalone/drakbackup_.c:3455
-#: ../../standalone/drakbackup_.c:3482 ../../standalone/drakbackup_.c:3508
-#: ../../standalone/drakbackup_.c:3533 ../../standalone/drakfont_.c:700
+#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3930
+#: ../../standalone/drakbackup_.c:3963 ../../standalone/drakbackup_.c:3989
+#: ../../standalone/drakbackup_.c:4016 ../../standalone/drakbackup_.c:4043
+#: ../../standalone/drakbackup_.c:4082 ../../standalone/drakbackup_.c:4103
+#: ../../standalone/drakbackup_.c:4130 ../../standalone/drakbackup_.c:4160
+#: ../../standalone/drakbackup_.c:4186 ../../standalone/drakbackup_.c:4211
+#: ../../standalone/drakfont_.c:700
msgid "Help"
msgstr "””żòž»"
@@ -9348,8 +9693,8 @@ msgid ""
"The parameters of the auto-install are available in the sections on the left"
msgstr ""
-#: ../../standalone/drakautoinst_.c:239 ../../standalone/drakgw_.c:548
-#: ../../standalone/scannerdrake_.c:105
+#: ../../standalone/drakautoinst_.c:239 ../../standalone/drakgw_.c:484
+#: ../../standalone/scannerdrake_.c:119
msgid "Congratulations!"
msgstr "ĂàÇÏÇŐŽÏŽÙ!"
@@ -9373,27 +9718,31 @@ msgstr "ÇŚžń Ăß°Ą"
msgid "Remove the last item"
msgstr "ž¶Áöž· ÇŚžń »èÁŠ"
-#: ../../standalone/drakbackup_.c:625
+#: ../../standalone/drakbackup_.c:619
msgid "Cron not available yet as non-root"
msgstr ""
-#: ../../standalone/drakbackup_.c:731
+#: ../../standalone/drakbackup_.c:725
msgid "WARNING"
msgstr ""
-#: ../../standalone/drakbackup_.c:732
+#: ../../standalone/drakbackup_.c:726
#, fuzzy
msgid "FATAL"
msgstr "FAT"
-#: ../../standalone/drakbackup_.c:744
+#: ../../standalone/drakbackup_.c:727
+msgid "INFO"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:739
msgid ""
"\n"
" DrakBackup Report \n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:745
+#: ../../standalone/drakbackup_.c:740
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -9401,7 +9750,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:749
+#: ../../standalone/drakbackup_.c:744
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -9409,13 +9758,20 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:770 ../../standalone/drakbackup_.c:840
-#: ../../standalone/drakbackup_.c:894
+#: ../../standalone/drakbackup_.c:765 ../../standalone/drakbackup_.c:835
+#: ../../standalone/drakbackup_.c:889
#, fuzzy
msgid "Total progess"
msgstr "ÀüĂŒ ÁűÇà"
-#: ../../standalone/drakbackup_.c:822
+#: ../../standalone/drakbackup_.c:788
+msgid ""
+"Sorry, perl-Expect is not installed/enabled. To use\n"
+"this feature, install perl-Expect and comment lines 772-774,\n"
+" as well as 788,789. Then uncomment line 787."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:817
#, c-format
msgid ""
"%s exists, delete?\n"
@@ -9424,16 +9780,41 @@ msgid ""
" need to purge the entry from authorized_keys on the server."
msgstr ""
-#: ../../standalone/drakbackup_.c:831
+#: ../../standalone/drakbackup_.c:826
msgid "This may take a moment to generate the keys."
msgstr ""
-#: ../../standalone/drakbackup_.c:838
+#: ../../standalone/drakbackup_.c:833
#, c-format
msgid "ERROR: Cannot spawn %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:865
+#: ../../standalone/drakbackup_.c:850
+#, c-format
+msgid "No password prompt on %s at port %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:851
+#, fuzzy, c-format
+msgid "Bad password on %s"
+msgstr "ŸÏÈŁ ŸűÀœ"
+
+#: ../../standalone/drakbackup_.c:852
+#, c-format
+msgid "Permission denied transferring %s to %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:853
+#, fuzzy, c-format
+msgid "Can't find %s on %s"
+msgstr "%sžŠ ż­ Œö ŸűœÀŽÏŽÙ: %s\n"
+
+#: ../../standalone/drakbackup_.c:856
+#, c-format
+msgid "%s not responding"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:860
#, c-format
msgid ""
"Transfer successful\n"
@@ -9444,60 +9825,65 @@ msgid ""
"without being prompted for a password."
msgstr ""
-#: ../../standalone/drakbackup_.c:908
+#: ../../standalone/drakbackup_.c:903
msgid "WebDAV remote site already in sync!"
msgstr ""
-#: ../../standalone/drakbackup_.c:912
+#: ../../standalone/drakbackup_.c:907
msgid "WebDAV transfer failed!"
msgstr ""
-#: ../../standalone/drakbackup_.c:934
+#: ../../standalone/drakbackup_.c:928
msgid "No CDR/DVDR in drive!"
msgstr ""
-#: ../../standalone/drakbackup_.c:938
+#: ../../standalone/drakbackup_.c:932
msgid "Does not appear to be recordable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:942
+#: ../../standalone/drakbackup_.c:936
msgid "Not erasable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:981
+#: ../../standalone/drakbackup_.c:975
msgid "This may take a moment to erase the media."
msgstr ""
-#: ../../standalone/drakbackup_.c:1045
+#: ../../standalone/drakbackup_.c:1060
msgid "Permission problem accessing CD."
msgstr ""
-#: ../../standalone/drakbackup_.c:1144 ../../standalone/drakbackup_.c:1193
+#: ../../standalone/drakbackup_.c:1087
+#, c-format
+msgid "No tape in %s!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1199 ../../standalone/drakbackup_.c:1248
msgid "Backup system files..."
msgstr "œĂœșĆÛ ÆÄÀÏ čéŸś..."
-#: ../../standalone/drakbackup_.c:1194 ../../standalone/drakbackup_.c:1261
+#: ../../standalone/drakbackup_.c:1249 ../../standalone/drakbackup_.c:1316
msgid "Hard Disk Backup files..."
msgstr "ÇÏ”ć ”đœșĆ© čéŸś ÆÄÀÏ”é"
-#: ../../standalone/drakbackup_.c:1206
+#: ../../standalone/drakbackup_.c:1261
msgid "Backup User files..."
msgstr "»çżäÀÚ ÆÄÀÏ čéŸś..."
-#: ../../standalone/drakbackup_.c:1207
+#: ../../standalone/drakbackup_.c:1262
msgid "Hard Disk Backup Progress..."
msgstr ""
-#: ../../standalone/drakbackup_.c:1260
+#: ../../standalone/drakbackup_.c:1315
msgid "Backup Other files..."
msgstr "ŽÙž„ ÆÄÀÏ čéŸś..."
-#: ../../standalone/drakbackup_.c:1266
+#: ../../standalone/drakbackup_.c:1321
#, fuzzy
msgid "No changes to backup!"
msgstr "ĆŚÀÔÀ» »çżëÇŃ čéŸś"
-#: ../../standalone/drakbackup_.c:1282 ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1337 ../../standalone/drakbackup_.c:1360
#, c-format
msgid ""
"\n"
@@ -9505,290 +9891,294 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1289
+#: ../../standalone/drakbackup_.c:1344
#, c-format
msgid ""
-"file list sent by FTP : %s\n"
+"file list sent by FTP: %s\n"
" "
msgstr ""
-#: ../../standalone/drakbackup_.c:1292
+#: ../../standalone/drakbackup_.c:1347
msgid ""
"\n"
" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1310
+#: ../../standalone/drakbackup_.c:1365
msgid ""
"\n"
"Drakbackup activities via CD:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1315
+#: ../../standalone/drakbackup_.c:1370
msgid ""
"\n"
"Drakbackup activities via tape:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1324
+#: ../../standalone/drakbackup_.c:1379
msgid " Error during mail sending. \n"
msgstr "žȚÀÏ ÀüŒÛ Áß żÀ·ù.\n"
-#: ../../standalone/drakbackup_.c:1346
+#: ../../standalone/drakbackup_.c:1404
msgid "Can't create catalog!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1459 ../../standalone/drakbackup_.c:1470
-#: ../../standalone/drakbackup_.c:1481 ../../standalone/drakfont_.c:1004
+#: ../../standalone/drakbackup_.c:1517 ../../standalone/drakbackup_.c:1528
+#: ../../standalone/drakfont_.c:1004
msgid "File Selection"
msgstr "ÆÄÀÏ Œ±ĆĂ"
-#: ../../standalone/drakbackup_.c:1486
+#: ../../standalone/drakbackup_.c:1556
msgid "Select the files or directories and click on 'Add'"
msgstr ""
-#: ../../standalone/drakbackup_.c:1525
+#: ../../standalone/drakbackup_.c:1600
msgid ""
"\n"
"Please check all options that you need.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1526
+#: ../../standalone/drakbackup_.c:1601
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1527
+#: ../../standalone/drakbackup_.c:1602
#, fuzzy
msgid "Backup your System files. (/etc directory)"
msgstr "œĂœșĆÛ ÆÄÀÏ žŐÀú čéŸś:"
-#: ../../standalone/drakbackup_.c:1528
+#: ../../standalone/drakbackup_.c:1603
msgid "Use incremental backup (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1529
+#: ../../standalone/drakbackup_.c:1604
msgid "Do not include critical files (passwd, group, fstab)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1530
+#: ../../standalone/drakbackup_.c:1605
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr ""
-#: ../../standalone/drakbackup_.c:1547
+#: ../../standalone/drakbackup_.c:1622
msgid "Please check all users that you want to include in your backup."
msgstr "čéŸśżĄ ÆśÇÔÇÒ žđ”ç »çżëÀÚžŠ ÈźÀÎÇÏŒŒżä."
-#: ../../standalone/drakbackup_.c:1574
+#: ../../standalone/drakbackup_.c:1649
msgid "Do not include the browser cache"
msgstr ""
-#: ../../standalone/drakbackup_.c:1575 ../../standalone/drakbackup_.c:1599
+#: ../../standalone/drakbackup_.c:1650 ../../standalone/drakbackup_.c:1674
msgid "Use Incremental Backups (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1597 ../../standalone/drakfont_.c:1058
+#: ../../standalone/drakbackup_.c:1672 ../../standalone/drakfont_.c:1058
msgid "Remove Selected"
msgstr "Œ±ĆĂ ÇŚžń ÁŠ°Ć"
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:1710
msgid "Windows (FAT32)"
msgstr "À©””żìÁî(FAT32)"
-#: ../../standalone/drakbackup_.c:1674
+#: ../../standalone/drakbackup_.c:1749
msgid "Users"
msgstr "»çżëÀÚ”é"
-#: ../../standalone/drakbackup_.c:1700
+#: ../../standalone/drakbackup_.c:1775
msgid "Use network connection to backup"
msgstr "łŚÆźżśÀ» »çżëÇŰ čéŸś"
-#: ../../standalone/drakbackup_.c:1706
+#: ../../standalone/drakbackup_.c:1777
+msgid "Net Method:"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1781
msgid "Use Expect for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1707
+#: ../../standalone/drakbackup_.c:1782
msgid ""
"Create/Transfer\n"
"backup keys for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1708
+#: ../../standalone/drakbackup_.c:1783
#, fuzzy
msgid ""
" Transfer \n"
"Now"
msgstr "ÀüŒÛ"
-#: ../../standalone/drakbackup_.c:1709
+#: ../../standalone/drakbackup_.c:1784
msgid "Keys in place already"
msgstr ""
-#: ../../standalone/drakbackup_.c:1713
+#: ../../standalone/drakbackup_.c:1788
msgid "Please enter the host name or IP."
msgstr "ÈŁœșÆź ÀÌž§ ¶ÇŽÂ IPžŠ ÀÔ·ÂÇÏŒŒżä."
-#: ../../standalone/drakbackup_.c:1718
+#: ../../standalone/drakbackup_.c:1793
msgid ""
"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
-#: ../../standalone/drakbackup_.c:1723
+#: ../../standalone/drakbackup_.c:1798
msgid "Please enter your login"
msgstr "ŸÆÀÌ”đžŠ ÀÔ·ÂÇÏŒŒżä."
-#: ../../standalone/drakbackup_.c:1728
+#: ../../standalone/drakbackup_.c:1803
msgid "Please enter your password"
msgstr "șńčĐčűÈŁžŠ ÀÔ·ÂÇÏŒŒżä."
-#: ../../standalone/drakbackup_.c:1734
+#: ../../standalone/drakbackup_.c:1809
msgid "Remember this password"
msgstr "șńčĐčűÈŁ ±âŸï"
-#: ../../standalone/drakbackup_.c:1745
+#: ../../standalone/drakbackup_.c:1820
msgid "Need hostname, username and password!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1841
+#: ../../standalone/drakbackup_.c:1915
msgid "Use CD/DVDROM to backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1844
+#: ../../standalone/drakbackup_.c:1918
msgid ""
"Please choose your CD/DVD device\n"
"(Press Enter to propogate settings to other fields.\n"
"This field isn't necessary, only a tool to fill in the form.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1849
+#: ../../standalone/drakbackup_.c:1923
#, fuzzy
msgid "Please choose your CD/DVD media size"
msgstr "CD żë·źÀ» Œ±ĆĂÇÏŒŒżä."
-#: ../../standalone/drakbackup_.c:1855
+#: ../../standalone/drakbackup_.c:1929
#, fuzzy
msgid "Please check for multisession CD"
msgstr "CDRW žĆĂŒžŠ »çżëÇÏ°í ÀÖŽÂÁö ÈźÀÎÇÏŒŒżä."
-#: ../../standalone/drakbackup_.c:1861
+#: ../../standalone/drakbackup_.c:1935
msgid "Please check if you are using CDRW media"
msgstr "CDRW žĆĂŒžŠ »çżëÇÏ°í ÀÖŽÂÁö ÈźÀÎÇÏŒŒżä."
-#: ../../standalone/drakbackup_.c:1867
+#: ../../standalone/drakbackup_.c:1941
#, fuzzy
msgid "Please check if you want to erase your RW media (1st Session)"
msgstr "CDRW žĆĂŒžŠ »çżëÇÏ°í ÀÖŽÂÁö ÈźÀÎÇÏŒŒżä."
-#: ../../standalone/drakbackup_.c:1868
+#: ../../standalone/drakbackup_.c:1942
#, fuzzy
msgid " Erase Now "
msgstr "ÀüŒÛ"
-#: ../../standalone/drakbackup_.c:1874
+#: ../../standalone/drakbackup_.c:1948
#, fuzzy
msgid "Please check if you are using a DVDR device"
msgstr "CDRW žĆĂŒžŠ »çżëÇÏ°í ÀÖŽÂÁö ÈźÀÎÇÏŒŒżä."
-#: ../../standalone/drakbackup_.c:1880
+#: ../../standalone/drakbackup_.c:1954
#, fuzzy
msgid "Please check if you are using a DVDRAM device"
msgstr "CDRW žĆĂŒžŠ »çżëÇÏ°í ÀÖŽÂÁö ÈźÀÎÇÏŒŒżä."
-#: ../../standalone/drakbackup_.c:1893
+#: ../../standalone/drakbackup_.c:1967
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
msgstr ""
-#: ../../standalone/drakbackup_.c:1926
+#: ../../standalone/drakbackup_.c:2000
#, fuzzy
msgid "No CD device defined!"
msgstr "żÀ·Ą”È ÀćÄĄ ÆÄÀÏ"
-#: ../../standalone/drakbackup_.c:1974
+#: ../../standalone/drakbackup_.c:2048
msgid "Use tape to backup"
msgstr "ĆŚÀÔÀ» »çżëÇŃ čéŸś"
-#: ../../standalone/drakbackup_.c:1977
+#: ../../standalone/drakbackup_.c:2051
msgid "Please enter the device name to use for backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1983
+#: ../../standalone/drakbackup_.c:2057
#, fuzzy
msgid "Please check if you want to use the non-rewinding device."
msgstr "čéŸśÇϱâ ÀüżĄ ĆŚÀÔÀ» ÁöżïÁö ÈźÀÎÇÏŒŒżä."
-#: ../../standalone/drakbackup_.c:1989
+#: ../../standalone/drakbackup_.c:2063
msgid "Please check if you want to erase your tape before the backup."
msgstr "čéŸśÇϱâ ÀüżĄ ĆŚÀÔÀ» ÁöżïÁö ÈźÀÎÇÏŒŒżä."
-#: ../../standalone/drakbackup_.c:1995
+#: ../../standalone/drakbackup_.c:2069
#, fuzzy
msgid "Please check if you want to eject your tape after the backup."
msgstr "čéŸśÇϱâ ÀüżĄ ĆŚÀÔÀ» ÁöżïÁö ÈźÀÎÇÏŒŒżä."
-#: ../../standalone/drakbackup_.c:2001 ../../standalone/drakbackup_.c:2074
-#: ../../standalone/drakbackup_.c:3025
+#: ../../standalone/drakbackup_.c:2075 ../../standalone/drakbackup_.c:2149
+#: ../../standalone/drakbackup_.c:3116
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:2066
+#: ../../standalone/drakbackup_.c:2140
msgid "Please enter the directory to save to:"
msgstr "ÀúÀćÇÒ ”đ·șĆäžźžŠ Œ±ĆĂÇÏŒŒżä."
-#: ../../standalone/drakbackup_.c:2080 ../../standalone/drakbackup_.c:3031
+#: ../../standalone/drakbackup_.c:2155 ../../standalone/drakbackup_.c:3122
msgid "Use quota for backup files."
msgstr "čéŸś ÆÄÀÏżĄ ÄőĆÍ »çżë"
-#: ../../standalone/drakbackup_.c:2146
+#: ../../standalone/drakbackup_.c:2221
msgid "Network"
msgstr "łŚÆźżś"
-#: ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:2226
msgid "CDROM / DVDROM"
msgstr "CDROM / DVDROM"
-#: ../../standalone/drakbackup_.c:2156
+#: ../../standalone/drakbackup_.c:2231
msgid "HardDrive / NFS"
msgstr "ÇÏ”ć ”đœșĆ© / NFS"
-#: ../../standalone/drakbackup_.c:2161
+#: ../../standalone/drakbackup_.c:2236
msgid "Tape"
msgstr "ĆŚÀÔ"
-#: ../../standalone/drakbackup_.c:2175 ../../standalone/drakbackup_.c:2179
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2250 ../../standalone/drakbackup_.c:2254
+#: ../../standalone/drakbackup_.c:2258
msgid "hourly"
msgstr "žĆœĂ"
-#: ../../standalone/drakbackup_.c:2176 ../../standalone/drakbackup_.c:2180
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2251 ../../standalone/drakbackup_.c:2255
+#: ../../standalone/drakbackup_.c:2258
msgid "daily"
msgstr "žĆÀÏ"
-#: ../../standalone/drakbackup_.c:2177 ../../standalone/drakbackup_.c:2181
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2252 ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2258
msgid "weekly"
msgstr "žĆÁÖ"
-#: ../../standalone/drakbackup_.c:2178 ../../standalone/drakbackup_.c:2182
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2253 ../../standalone/drakbackup_.c:2257
+#: ../../standalone/drakbackup_.c:2258
msgid "monthly"
msgstr "žĆżù"
-#: ../../standalone/drakbackup_.c:2196
+#: ../../standalone/drakbackup_.c:2271
msgid "Use daemon"
msgstr "Žëžó »çżë"
-#: ../../standalone/drakbackup_.c:2201
+#: ../../standalone/drakbackup_.c:2276
msgid ""
"Please choose the time \n"
"interval between each backup"
@@ -9796,7 +10186,7 @@ msgstr ""
"čéŸś°Ł œĂ°Ł °Ł°ĘÀ»\n"
"Œ±ĆĂÇÏŒŒżä."
-#: ../../standalone/drakbackup_.c:2207
+#: ../../standalone/drakbackup_.c:2282
msgid ""
"Please choose the\n"
"media for backup."
@@ -9804,448 +10194,567 @@ msgstr ""
"čéŸśżë žĆĂŒžŠ\n"
"Œ±ĆĂÇÏŒŒżä."
-#: ../../standalone/drakbackup_.c:2214
+#: ../../standalone/drakbackup_.c:2289
msgid ""
"Please be sure that the cron daemon is included in your services. \n"
"\n"
"Note that currently all 'net' medias also use the hard drive."
msgstr ""
-#: ../../standalone/drakbackup_.c:2251
-msgid "Send mail report after each backup to :"
+#: ../../standalone/drakbackup_.c:2326
+msgid "Send mail report after each backup to:"
msgstr "čéŸś ÈÄ șž°í žȚÀÏ șžł»±â:"
-#: ../../standalone/drakbackup_.c:2257
+#: ../../standalone/drakbackup_.c:2332
msgid "Delete Hard Drive tar files after backup to other media."
msgstr ""
-#: ../../standalone/drakbackup_.c:2296
+#: ../../standalone/drakbackup_.c:2371
msgid "What"
msgstr "Žë»ó"
-#: ../../standalone/drakbackup_.c:2301
+#: ../../standalone/drakbackup_.c:2376
msgid "Where"
msgstr "ÀćŒÒ"
-#: ../../standalone/drakbackup_.c:2306
+#: ../../standalone/drakbackup_.c:2381
msgid "When"
msgstr "œĂ°Ł"
-#: ../../standalone/drakbackup_.c:2311
+#: ../../standalone/drakbackup_.c:2386
msgid "More Options"
msgstr "Ăß°Ą żÉŒÇ"
-#: ../../standalone/drakbackup_.c:2330 ../../standalone/drakbackup_.c:3873
+#: ../../standalone/drakbackup_.c:2405 ../../standalone/drakbackup_.c:4530
msgid "Drakbackup Configuration"
msgstr "”ć·čÀÌĆ© čéŸś ŒłÁ€"
-#: ../../standalone/drakbackup_.c:2348
+#: ../../standalone/drakbackup_.c:2423
msgid "Please choose where you want to backup"
msgstr "čéŸśÇÒ °śÀ» Œ±ĆĂÇÏŒŒżä."
-#: ../../standalone/drakbackup_.c:2350
+#: ../../standalone/drakbackup_.c:2425
msgid "on Hard Drive"
msgstr "ÇÏ”ć ”ć¶óÀÌșê"
-#: ../../standalone/drakbackup_.c:2360
+#: ../../standalone/drakbackup_.c:2435
msgid "across Network"
msgstr "łŚÆźżś °æÀŻ"
-#: ../../standalone/drakbackup_.c:2370
+#: ../../standalone/drakbackup_.c:2445
msgid "on CDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2378
+#: ../../standalone/drakbackup_.c:2453
msgid "on Tape Device"
msgstr ""
-#: ../../standalone/drakbackup_.c:2421
+#: ../../standalone/drakbackup_.c:2496
msgid "Please choose what you want to backup"
msgstr "čéŸśÇÒ Žë»óÀ» Œ±ĆĂÇÏŒŒżä."
-#: ../../standalone/drakbackup_.c:2422
+#: ../../standalone/drakbackup_.c:2497
msgid "Backup system"
msgstr "čéŸś œĂœșĆÛ"
-#: ../../standalone/drakbackup_.c:2423
+#: ../../standalone/drakbackup_.c:2498
msgid "Backup Users"
msgstr "»çżëÀÚ čéŸś"
-#: ../../standalone/drakbackup_.c:2426
+#: ../../standalone/drakbackup_.c:2501
msgid "Select user manually"
msgstr "Œö”żÀž·Î »çżëÀÚ Œ±ĆĂ"
-#: ../../standalone/drakbackup_.c:2508
+#: ../../standalone/drakbackup_.c:2584
msgid ""
"\n"
"Backup Sources: \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2509
+#: ../../standalone/drakbackup_.c:2585
msgid ""
"\n"
"- System Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2511
+#: ../../standalone/drakbackup_.c:2587
msgid ""
"\n"
"- User Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2513
+#: ../../standalone/drakbackup_.c:2589
msgid ""
"\n"
"- Other Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2515
+#: ../../standalone/drakbackup_.c:2591
#, c-format
msgid ""
"\n"
-"- Save on Hard drive on path : %s\n"
+"- Save on Hard drive on path: %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2518
+#: ../../standalone/drakbackup_.c:2594
msgid ""
"\n"
"- Delete hard drive tar files after backup.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2524
+#: ../../standalone/drakbackup_.c:2600
msgid ""
"\n"
"- Burn to CD"
msgstr ""
-#: ../../standalone/drakbackup_.c:2525
+#: ../../standalone/drakbackup_.c:2601
msgid "RW"
msgstr ""
-#: ../../standalone/drakbackup_.c:2526
+#: ../../standalone/drakbackup_.c:2602
#, c-format
-msgid " on device : %s"
+msgid " on device: %s"
msgstr "ÀćÄĄ: %s"
-#: ../../standalone/drakbackup_.c:2527
+#: ../../standalone/drakbackup_.c:2603
msgid " (multi-session)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2528
+#: ../../standalone/drakbackup_.c:2604
#, c-format
msgid ""
"\n"
-"- Save to Tape on device : %s"
+"- Save to Tape on device: %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2529
+#: ../../standalone/drakbackup_.c:2605
#, c-format
msgid "\t\tErase=%s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2532
+#: ../../standalone/drakbackup_.c:2608
#, c-format
msgid ""
"\n"
-"- Save via %s on host : %s\n"
+"- Save via %s on host: %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2533
+#: ../../standalone/drakbackup_.c:2609
#, c-format
msgid ""
"\t\t user name: %s\n"
"\t\t on path: %s \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2534
+#: ../../standalone/drakbackup_.c:2610
#, fuzzy
msgid ""
"\n"
"- Options:\n"
msgstr "żÉŒÇ”é"
-#: ../../standalone/drakbackup_.c:2535
+#: ../../standalone/drakbackup_.c:2611
msgid "\tDo not include System Files\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2538
+#: ../../standalone/drakbackup_.c:2614
msgid "\tBackups use tar and bzip2\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2540
+#: ../../standalone/drakbackup_.c:2616
msgid "\tBackups use tar and gzip\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2543
+#: ../../standalone/drakbackup_.c:2619
#, c-format
msgid ""
"\n"
-"- Daemon (%s) include :\n"
+"- Daemon (%s) include:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2544
+#: ../../standalone/drakbackup_.c:2620
msgid "\t-Hard drive.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2545
+#: ../../standalone/drakbackup_.c:2621
msgid "\t-CDROM.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2546
+#: ../../standalone/drakbackup_.c:2622
msgid "\t-Tape \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2547
+#: ../../standalone/drakbackup_.c:2623
msgid "\t-Network by FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2548
+#: ../../standalone/drakbackup_.c:2624
msgid "\t-Network by SSH.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2549
+#: ../../standalone/drakbackup_.c:2625
msgid "\t-Network by rsync.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2550
+#: ../../standalone/drakbackup_.c:2626
msgid "\t-Network by webdav.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2552
+#: ../../standalone/drakbackup_.c:2628
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2558
+#: ../../standalone/drakbackup_.c:2634
msgid ""
"List of data to restore:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2725
+#: ../../standalone/drakbackup_.c:2801
msgid ""
"List of data corrupted:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2727
+#: ../../standalone/drakbackup_.c:2803
msgid "Please uncheck or remove it on next time."
msgstr "ŽÙÀœ čűżĄŽÂ ±Ś°ÍÀ» Œ±ĆĂ ÇŰÁŠ ¶ÇŽÂ ÁŠ°ĆÇÏŒŒżä."
-#: ../../standalone/drakbackup_.c:2737
+#: ../../standalone/drakbackup_.c:2813
msgid "Backup files are corrupted"
msgstr ""
-#: ../../standalone/drakbackup_.c:2758
+#: ../../standalone/drakbackup_.c:2834
msgid " All of your selected data have been "
msgstr ""
-#: ../../standalone/drakbackup_.c:2759
+#: ../../standalone/drakbackup_.c:2835
#, c-format
msgid " Successfuly Restored on %s "
msgstr ""
-#: ../../standalone/drakbackup_.c:2877
+#: ../../standalone/drakbackup_.c:2953
msgid " Restore Configuration "
msgstr " ŒłÁ€ ș豞 "
-#: ../../standalone/drakbackup_.c:2895
+#: ../../standalone/drakbackup_.c:2971
msgid "OK to restore the other files."
msgstr "ŽÙž„ ÆÄÀÏ”éÀ» žń±žÇÏ·Ážé, OKžŠ Ž©žŁŒŒżä."
-#: ../../standalone/drakbackup_.c:2912
+#: ../../standalone/drakbackup_.c:2988
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2975
+#: ../../standalone/drakbackup_.c:3066
msgid "Backup the system files before:"
msgstr "œĂœșĆÛ ÆÄÀÏ žŐÀú čéŸś:"
-#: ../../standalone/drakbackup_.c:2977
+#: ../../standalone/drakbackup_.c:3068
msgid "please choose the date to restore"
msgstr "ș豞ÇÒ łŻÂ„žŠ Œ±ĆĂÇÏŒŒżä."
-#: ../../standalone/drakbackup_.c:3014
+#: ../../standalone/drakbackup_.c:3105
msgid "Use Hard Disk to backup"
msgstr "ÇÏ”ć ”đœșĆ©·Î čéŸś"
-#: ../../standalone/drakbackup_.c:3017
+#: ../../standalone/drakbackup_.c:3108
msgid "Please enter the directory to save:"
msgstr "ÀúÀćÇÒ ”đ·șĆäžźžŠ Œ±ĆĂÇÏŒŒżä:"
-#: ../../standalone/drakbackup_.c:3060
+#: ../../standalone/drakbackup_.c:3151
msgid "FTP Connection"
msgstr "FTP żŹ°á"
-#: ../../standalone/drakbackup_.c:3067
+#: ../../standalone/drakbackup_.c:3158
msgid "Secure Connection"
msgstr "șžŸÈ żŹ°á"
-#: ../../standalone/drakbackup_.c:3093
+#: ../../standalone/drakbackup_.c:3184
msgid "Restore from Hard Disk."
msgstr "ÇÏ”ć ”đœșĆ©żĄŒ­ ș豞"
-#: ../../standalone/drakbackup_.c:3095
+#: ../../standalone/drakbackup_.c:3186
msgid "Please enter the directory where backups are stored"
msgstr "čéŸś ÆÄÀÏ”éÀÌ ÀúÀć”É ”đ·șĆäžźžŠ ÀÔ·ÂÇÏŒŒżä."
-#: ../../standalone/drakbackup_.c:3157
+#: ../../standalone/drakbackup_.c:3254
msgid "Select another media to restore from"
msgstr "ŽÙž„ ș豞 žĆĂŒ Œ±ĆĂ"
-#: ../../standalone/drakbackup_.c:3159
+#: ../../standalone/drakbackup_.c:3256
msgid "Other Media"
msgstr "ŽÙž„ žĆĂŒ"
-#: ../../standalone/drakbackup_.c:3164
+#: ../../standalone/drakbackup_.c:3261
msgid "Restore system"
msgstr "œĂœșĆÛ ș豞"
-#: ../../standalone/drakbackup_.c:3165
+#: ../../standalone/drakbackup_.c:3262
msgid "Restore Users"
msgstr "»çżëÀÚ”é ș豞"
-#: ../../standalone/drakbackup_.c:3166
+#: ../../standalone/drakbackup_.c:3263
msgid "Restore Other"
msgstr "ŽÙž„ °Í”é ș豞"
-#: ../../standalone/drakbackup_.c:3168
+#: ../../standalone/drakbackup_.c:3265
#, fuzzy
msgid "select path to restore (instead of /)"
msgstr "([/] ŽëœĆżĄ) ș豞ÇÒ ”đ·șĆäžź Œ±ĆĂ"
-#: ../../standalone/drakbackup_.c:3172
+#: ../../standalone/drakbackup_.c:3269
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:3174
+#: ../../standalone/drakbackup_.c:3271
msgid "Remove user directories before restore."
msgstr "ș豞Çϱâ ÀüżĄ »çżëÀÚ ”đ·ąĆäžź”éÀ» ÁŠ°Ć"
-#: ../../standalone/drakbackup_.c:3232
+#: ../../standalone/drakbackup_.c:3384
+msgid ""
+"Restore Selected\n"
+"Catalog Entry"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3394
+#, fuzzy
+msgid ""
+"Restore Selected\n"
+"Files"
+msgstr "Œ±ĆĂ ÇŚžń ÁŠ°Ć"
+
+#: ../../standalone/drakbackup_.c:3411
+#, fuzzy
+msgid ""
+"Change\n"
+"Restore Path"
+msgstr "ŽÙž„ °Í”é ș豞"
+
+#: ../../standalone/drakbackup_.c:3477
+#, fuzzy, c-format
+msgid "Backup files not found at %s."
+msgstr "%sžŠ %s.old·Î čéŸś"
+
+#: ../../standalone/drakbackup_.c:3490
+#, c-format
+msgid ""
+"Insert the CD with volume label %s\n"
+" in the CD drive under mount point /mnt/cdrom"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3490
+#, fuzzy
+msgid "Restore From CD"
+msgstr "ÇÏ”ć ”đœșĆ©żĄŒ­ ș豞"
+
+#: ../../standalone/drakbackup_.c:3492
+#, c-format
+msgid "Not the correct CD label. Disk is labelled %s."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3502
+#, c-format
+msgid ""
+"Insert the tape with volume label %s\n"
+" in the tape drive device %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3502
+#, fuzzy
+msgid "Restore From Tape"
+msgstr "ÆÄÆŒŒÇ ĆŚÀÌșí ș豞"
+
+#: ../../standalone/drakbackup_.c:3504
+#, c-format
+msgid "Not the correct tape label. Tape is labelled %s."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3524
+#, fuzzy
+msgid "Restore Via Network"
+msgstr "»çżëÀÚ”é ș豞"
+
+#: ../../standalone/drakbackup_.c:3524
+#, c-format
+msgid "Restore Via Network Protocol: %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3525
+#, fuzzy
+msgid "Host Name"
+msgstr "ÈŁœșÆźží:"
+
+#: ../../standalone/drakbackup_.c:3526
+msgid "Host Path or Module"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3533
+#, fuzzy
+msgid "Password required"
+msgstr "ŸÏÈŁ"
+
+#: ../../standalone/drakbackup_.c:3539
+#, fuzzy
+msgid "Username required"
+msgstr "»çżëÀÚží"
+
+#: ../../standalone/drakbackup_.c:3542
+#, fuzzy
+msgid "Hostname required"
+msgstr "ÈŁœșÆźží:"
+
+#: ../../standalone/drakbackup_.c:3547
+msgid "Path or Module required"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3560
+msgid "Files Restored..."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3563
+#, fuzzy
+msgid "Restore Failed..."
+msgstr "ŽÙž„ °Í”é ș豞"
+
+#: ../../standalone/drakbackup_.c:3801
msgid "Restore all backups"
msgstr "žđ”ç čéŸś ș豞"
-#: ../../standalone/drakbackup_.c:3241
+#: ../../standalone/drakbackup_.c:3810
msgid "Custom Restore"
msgstr "»çżëÀÚ Á€ÀÇ ș豞"
-#: ../../standalone/drakbackup_.c:3287 ../../standalone/drakbackup_.c:3320
-#: ../../standalone/drakbackup_.c:3346 ../../standalone/drakbackup_.c:3373
-#: ../../standalone/drakbackup_.c:3400 ../../standalone/drakbackup_.c:3460
-#: ../../standalone/drakbackup_.c:3487 ../../standalone/drakbackup_.c:3513
+#: ../../standalone/drakbackup_.c:3856
+msgid "CD in place - continue."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3862
+msgid "Browse to new restore repository."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3865
+#, fuzzy
+msgid "Restore From Catalog"
+msgstr "ÆÄÆŒŒÇ ĆŚÀÌșí ș豞"
+
+#: ../../standalone/drakbackup_.c:3893
+#, fuzzy
+msgid "Restore Progress"
+msgstr "»çżëÀÚ”é ș豞"
+
+#: ../../standalone/drakbackup_.c:3935 ../../standalone/drakbackup_.c:3968
+#: ../../standalone/drakbackup_.c:3994 ../../standalone/drakbackup_.c:4021
+#: ../../standalone/drakbackup_.c:4048 ../../standalone/drakbackup_.c:4108
+#: ../../standalone/drakbackup_.c:4135 ../../standalone/drakbackup_.c:4165
+#: ../../standalone/drakbackup_.c:4191
msgid "Previous"
msgstr "ÀÌÀü"
-#: ../../standalone/drakbackup_.c:3291 ../../standalone/drakbackup_.c:3377
+#: ../../standalone/drakbackup_.c:3939 ../../standalone/drakbackup_.c:4025
#: ../../standalone/logdrake_.c:223
msgid "Save"
msgstr "ÀúÀć"
-#: ../../standalone/drakbackup_.c:3350
+#: ../../standalone/drakbackup_.c:3998
msgid "Build Backup"
msgstr "čéŸś șô”ć"
-#: ../../standalone/drakbackup_.c:3404 ../../standalone/drakbackup_.c:3974
+#: ../../standalone/drakbackup_.c:4052 ../../standalone/drakbackup_.c:4632
msgid "Restore"
msgstr "ș豞"
-#: ../../standalone/drakbackup_.c:3553
+#: ../../standalone/drakbackup_.c:4231
msgid ""
-"Please Build backup before to restore it...\n"
-" or verify that your path to save is correct."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3574
-msgid ""
-"Error during sendmail\n"
-" your report mail was not sent\n"
+"Error during sendmail.\n"
+" Your report mail was not sent.\n"
" Please configure sendmail"
msgstr ""
-#: ../../standalone/drakbackup_.c:3598
+#: ../../standalone/drakbackup_.c:4255
#, fuzzy
msgid ""
"The following packages need to be installed:\n"
" @list_of_rpm_to_install"
msgstr "ŽÙÀœ ÆŃĆ°Áö”éÀÌ ŒłÄĄ”É °ÍÀÔŽÏŽÙ."
-#: ../../standalone/drakbackup_.c:3621
+#: ../../standalone/drakbackup_.c:4278
msgid ""
"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
-#: ../../standalone/drakbackup_.c:3644
+#: ../../standalone/drakbackup_.c:4301
msgid "Please select data to restore..."
msgstr "ș豞ÇÒ ”„ÀÌĆÍžŠ Œ±ĆĂÇÏŒŒżä..."
-#: ../../standalone/drakbackup_.c:3665
+#: ../../standalone/drakbackup_.c:4322
msgid "Please select media for backup..."
msgstr "čéŸśżë žĆĂŒžŠ Œ±ĆĂÇÏŒŒżä..."
-#: ../../standalone/drakbackup_.c:3687
+#: ../../standalone/drakbackup_.c:4344
msgid "Please select data to backup..."
msgstr "čéŸśÇÒ ”„ÀÌĆÍžŠ Œ±ĆĂÇÏŒŒżä..."
-#: ../../standalone/drakbackup_.c:3709
+#: ../../standalone/drakbackup_.c:4366
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
msgstr ""
-#: ../../standalone/drakbackup_.c:3730
+#: ../../standalone/drakbackup_.c:4387
msgid "Under Devel ... please wait."
msgstr ""
-#: ../../standalone/drakbackup_.c:3811
+#: ../../standalone/drakbackup_.c:4468
msgid "Backup system files"
msgstr "œĂœșĆÛ ÆÄÀÏ čéŸś"
-#: ../../standalone/drakbackup_.c:3813
+#: ../../standalone/drakbackup_.c:4470
msgid "Backup user files"
msgstr "»çżëÀÚ ÆÄÀÏ čéŸś"
-#: ../../standalone/drakbackup_.c:3815
+#: ../../standalone/drakbackup_.c:4472
msgid "Backup other files"
msgstr "ŽÙž„ ÆÄÀÏ čéŸś"
-#: ../../standalone/drakbackup_.c:3817 ../../standalone/drakbackup_.c:3850
+#: ../../standalone/drakbackup_.c:4474 ../../standalone/drakbackup_.c:4507
msgid "Total Progress"
msgstr "ÀüĂŒ ÁűÇà"
-#: ../../standalone/drakbackup_.c:3841
+#: ../../standalone/drakbackup_.c:4498
msgid "files sending by FTP"
msgstr "FTP·Î ÆÄÀÏ ÀüŒÛ"
-#: ../../standalone/drakbackup_.c:3845
+#: ../../standalone/drakbackup_.c:4502
msgid "Sending files..."
msgstr "ÆÄÀÏ ÀüŒÛ Áß ..."
-#: ../../standalone/drakbackup_.c:3931
+#: ../../standalone/drakbackup_.c:4588
msgid "Backup Now from configuration file"
msgstr "Áö±Ę ŒłÁ€ ÆÄÀÏ·ÎșÎĆÍ čéŸś"
-#: ../../standalone/drakbackup_.c:3936
+#: ../../standalone/drakbackup_.c:4593
msgid "View Backup Configuration."
msgstr "čéŸś ŒłÁ€ șž±â"
-#: ../../standalone/drakbackup_.c:3956
+#: ../../standalone/drakbackup_.c:4614
msgid "Wizard Configuration"
msgstr "ž¶čę»ç ŒłÁ€"
-#: ../../standalone/drakbackup_.c:3961
+#: ../../standalone/drakbackup_.c:4619
msgid "Advanced Configuration"
msgstr "°í±Ț ŒłÁ€"
-#: ../../standalone/drakbackup_.c:3966
+#: ../../standalone/drakbackup_.c:4624
msgid "Backup Now"
msgstr "Áö±Ę čéŸś"
-#: ../../standalone/drakbackup_.c:3996
+#: ../../standalone/drakbackup_.c:4658
msgid "Drakbackup"
msgstr "”ć·čÀÌĆ© čéŸś"
-#: ../../standalone/drakbackup_.c:4045
+#: ../../standalone/drakbackup_.c:4707
msgid ""
"options description:\n"
"\n"
@@ -10277,7 +10786,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4075
+#: ../../standalone/drakbackup_.c:4737
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -10286,7 +10795,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4083
+#: ../../standalone/drakbackup_.c:4745
msgid ""
"options description:\n"
"\n"
@@ -10327,45 +10836,45 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4122
+#: ../../standalone/drakbackup_.c:4784
msgid ""
"restore description:\n"
" \n"
-"Only the most recent date will be used ,because with incremental \n"
-"backups it is necesarry to restore one by one each older backups.\n"
+"Only the most recent date will be used, because with incremental \n"
+"backups it is necessary to restore one by one each older backup.\n"
"\n"
-"So if you don't like to restore a user please unselect all his\n"
-"check box.\n"
+"So if you don't want to restore a user please unselect all their\n"
+"check boxes.\n"
"\n"
-"Otherwise, you are able to select only one of this\n"
+"Otherwise, you are able to select only one of these.\n"
"\n"
" - Incremental Backups:\n"
"\n"
"\tThe incremental backup is the most powerful \n"
-"\toption to use backup, this option allow you \n"
-"\tto backup all your data the first time, and \n"
-"\tonly the changed after.\n"
-"\tSo you will be able during the restore\n"
+"\toption to use. This option allows you to \n"
+"\tbackup all of your data the first time, and \n"
+"\tonly the changed data after.\n"
+"\tSo you will be able, during the restore\n"
"\tstep, to restore your data from a specified\n"
"\tdate.\n"
-"\tIf you have not selected this options all\n"
+"\tIf you have not selected this option all\n"
"\told backups are deleted before each backup. \n"
"\n"
"\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4148 ../../standalone/drakbackup_.c:4225
+#: ../../standalone/drakbackup_.c:4810 ../../standalone/drakbackup_.c:4887
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
-#: ../../standalone/drakbackup_.c:4150 ../../standalone/drakbackup_.c:4227
+#: ../../standalone/drakbackup_.c:4812 ../../standalone/drakbackup_.c:4889
msgid ""
" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
-#: ../../standalone/drakbackup_.c:4152 ../../standalone/drakbackup_.c:4229
+#: ../../standalone/drakbackup_.c:4814 ../../standalone/drakbackup_.c:4891
msgid ""
" This program is free software; you can redistribute it and/or modify\n"
" it under the terms of the GNU General Public License as published by\n"
@@ -10382,7 +10891,7 @@ msgid ""
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
msgstr ""
-#: ../../standalone/drakbackup_.c:4166
+#: ../../standalone/drakbackup_.c:4828
msgid ""
"Description:\n"
"\n"
@@ -10422,7 +10931,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4204
+#: ../../standalone/drakbackup_.c:4866
msgid ""
"options description:\n"
"\n"
@@ -10433,7 +10942,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4213
+#: ../../standalone/drakbackup_.c:4875
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -10446,7 +10955,7 @@ msgid ""
"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4243
+#: ../../standalone/drakbackup_.c:4905
msgid ""
"Description:\n"
"\n"
@@ -10527,9 +11036,9 @@ msgstr "Ăč œÇÇà ž¶čę»ç"
msgid "Synchronization tool"
msgstr "”ż±âÈ­ ””±ž"
-#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:85
-#: ../../standalone/drakbug_.c:150 ../../standalone/drakbug_.c:152
-#: ../../standalone/drakbug_.c:156
+#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:86
+#: ../../standalone/drakbug_.c:151 ../../standalone/drakbug_.c:153
+#: ../../standalone/drakbug_.c:157
msgid "Standalone Tools"
msgstr "°łș° ””±ž"
@@ -10573,23 +11082,23 @@ msgstr "»çżëÀÚ ”ć·čÀÌĆ©"
msgid "Configuration Wizards"
msgstr "ŒłÁ€ ž¶čę»ç"
-#: ../../standalone/drakbug_.c:96
+#: ../../standalone/drakbug_.c:97
msgid "Application:"
msgstr "ÇÁ·Î±Ś·„:"
-#: ../../standalone/drakbug_.c:97
+#: ../../standalone/drakbug_.c:98
msgid "Package: "
msgstr "ÆŃĆ°Áö:"
-#: ../../standalone/drakbug_.c:98
+#: ../../standalone/drakbug_.c:99
msgid "Kernel:"
msgstr "ÄżłÎ:"
-#: ../../standalone/drakbug_.c:99
+#: ../../standalone/drakbug_.c:100
msgid "Release: "
msgstr "ž±žźÁî:"
-#: ../../standalone/drakbug_.c:114
+#: ../../standalone/drakbug_.c:115
msgid ""
"\n"
"\n"
@@ -10601,19 +11110,19 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbug_.c:135
+#: ../../standalone/drakbug_.c:136
msgid "Report"
msgstr "șž°í"
-#: ../../standalone/drakbug_.c:165
+#: ../../standalone/drakbug_.c:166
msgid "Not installed"
msgstr "ŒłÄĄ”ÇÁö ŸÊŸÒœÀŽÏŽÙ."
-#: ../../standalone/drakbug_.c:182
+#: ../../standalone/drakbug_.c:183
msgid "connecting to Bugzilla wizard ..."
msgstr "čöÁú¶ó ž¶čę»çżĄ żŹ°á Áß ..."
-#: ../../standalone/drakbug_.c:189
+#: ../../standalone/drakbug_.c:190
msgid "No browser available! Please install one"
msgstr "șê¶óżìÀúžŠ ĂŁÀ» Œö ŸűœÀŽÏŽÙ! ŒłÄĄÇŰ ÁÖŒŒżä."
@@ -11053,7 +11562,7 @@ msgid "Font List"
msgstr "ÆùÆź žń·Ï"
#: ../../standalone/drakfont_.c:909
-msgid "Choose the applications that will support the fonts :"
+msgid "Choose the applications that will support the fonts:"
msgstr "ÀÌ ÆùÆźžŠ ÁöżűÇÒ ÇÁ·Î±Ś·„”éÀ» Œ±ĆĂÇÏŒŒżä"
#: ../../standalone/drakfont_.c:918
@@ -11124,19 +11633,19 @@ msgstr "œĂœșĆÛ ÆùÆź ÁŠ°Ć"
msgid "Post Uninstall"
msgstr "ÈÄčĘ ŒłÄĄÁŠ°Ć"
-#: ../../standalone/drakgw_.c:42 ../../standalone/drakgw_.c:195
+#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:188
msgid "Internet Connection Sharing"
msgstr "ÀÎĆÍłĘ żŹ°á °űÀŻ"
-#: ../../standalone/drakgw_.c:121
+#: ../../standalone/drakgw_.c:119
msgid "Sorry, we support only 2.4 kernels."
msgstr "ÁËŒÛÇŐŽÏŽÙ. 2.4 ÄżłÎžž Áöżű”ËŽÏŽÙ."
-#: ../../standalone/drakgw_.c:133
+#: ../../standalone/drakgw_.c:130
msgid "Internet Connection Sharing currently enabled"
msgstr "ÇöÀç ÀÎĆÍłĘ żŹ°á °űÀŻ°Ą °ĄŽÉÇŃ »óĆÂÀÔŽÏŽÙ."
-#: ../../standalone/drakgw_.c:134
+#: ../../standalone/drakgw_.c:131
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -11148,31 +11657,31 @@ msgstr ""
"\n"
"č«œŒ ÀÛŸśÀ» ÇÏœĂ°ÚœÀŽÏ±î?"
-#: ../../standalone/drakgw_.c:138
+#: ../../standalone/drakgw_.c:135
msgid "disable"
msgstr "ÇŰÁŠ"
-#: ../../standalone/drakgw_.c:138 ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:135 ../../standalone/drakgw_.c:160
msgid "dismiss"
msgstr "ĂëŒÒ"
-#: ../../standalone/drakgw_.c:138 ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:135 ../../standalone/drakgw_.c:160
msgid "reconfigure"
msgstr "ÀçŒłÁ€"
-#: ../../standalone/drakgw_.c:141
+#: ../../standalone/drakgw_.c:138
msgid "Disabling servers..."
msgstr "Œ­čö ÁßÁö Áß..."
-#: ../../standalone/drakgw_.c:149
+#: ../../standalone/drakgw_.c:146
msgid "Internet connection sharing is now disabled."
msgstr "ÀÌÁŠ ÀÎĆÍłĘ żŹ°á °űÀŻ°Ą ±ĘÁö”ÇŸúœÀŽÏŽÙ."
-#: ../../standalone/drakgw_.c:158
+#: ../../standalone/drakgw_.c:155
msgid "Internet Connection Sharing currently disabled"
msgstr "ÇöÀç ÀÎĆÍłĘ żŹ°á °űÀŻ°Ą șÒ°ĄŽÉÇŃ »óĆÂÀÔŽÏŽÙ."
-#: ../../standalone/drakgw_.c:159
+#: ../../standalone/drakgw_.c:156
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
@@ -11184,19 +11693,19 @@ msgstr ""
"\n"
"č«œŒ ÀÛŸśÀ» ÇÏœĂ°ÚœÀŽÏ±î?"
-#: ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:160
msgid "enable"
msgstr "Çăżë"
-#: ../../standalone/drakgw_.c:170
+#: ../../standalone/drakgw_.c:167
msgid "Enabling servers..."
msgstr "Œ­čö Çăżë Áß"
-#: ../../standalone/drakgw_.c:175
+#: ../../standalone/drakgw_.c:172
msgid "Internet connection sharing is now enabled."
msgstr "ÀÌÁŠ ÀÎĆÍłĘ żŹ°á °űÀŻ°Ą Çăżë”ÇŸúœÀŽÏŽÙ."
-#: ../../standalone/drakgw_.c:196
+#: ../../standalone/drakgw_.c:189
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
"With that feature, other computers on your local network will be able to use "
@@ -11211,32 +11720,32 @@ msgstr ""
"\n"
"ÁÖÀÇ: ÁöżȘ łŚÆźżś(·Ł)À» žńÀûÀž·Î ŒłÄĄ”È łŚÆźżś ŸîŽđĆÍ°Ą ÀÖŸîŸß ÇŐŽÏŽÙ."
-#: ../../standalone/drakgw_.c:222
+#: ../../standalone/drakgw_.c:215
#, c-format
msgid "Interface %s (using module %s)"
msgstr "ÀÎĆÍÆäÀÌœș %s (%s žđ”â »çżë)"
-#: ../../standalone/drakgw_.c:223
+#: ../../standalone/drakgw_.c:216
#, c-format
msgid "Interface %s"
msgstr "ÀÎĆÍÆäÀÌœș %s"
-#: ../../standalone/drakgw_.c:231
+#: ../../standalone/drakgw_.c:224
msgid "No network adapter on your system!"
msgstr "łŚÆźżś ŸîŽđĆÍžŠ ĂŁÀ» Œö ŸűœÀŽÏŽÙ!"
-#: ../../standalone/drakgw_.c:232
+#: ../../standalone/drakgw_.c:225
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
msgstr ""
"Ÿî¶°ÇŃ łŚÆźżś ŸîŽđĆÍ”” čß°ß”ÇÁö ŸÊœÀŽÏŽÙ. ÇÏ”ćżțŸî ŒłÁ€ ””±žžŠ œÇÇàÇŰ șžŒŒżä."
-#: ../../standalone/drakgw_.c:238
+#: ../../standalone/drakgw_.c:231
msgid "Network interface"
msgstr "łŚÆźżś ÀÎĆÍÆäÀÌœș"
-#: ../../standalone/drakgw_.c:239
+#: ../../standalone/drakgw_.c:232
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -11251,17 +11760,17 @@ msgstr ""
"\n"
"±Ś ŸîŽđĆÍ·Î ÁöżȘ łŚÆźżśÀ» ŒłÁ€ÇÒ °ÍÀÔŽÏŽÙ."
-#: ../../standalone/drakgw_.c:248
+#: ../../standalone/drakgw_.c:241
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
msgstr "ŸîŽÀ łŚÆźżś ŸîŽđĆÍ°Ą ÁöżȘ łŚÆźżśÀž·Î żŹ°á”É °ÍÀÎÁö Œ±ĆĂÇÏŒŒżä."
-#: ../../standalone/drakgw_.c:266
+#: ../../standalone/drakgw_.c:259
msgid "Network interface already configured"
msgstr "łŚÆźżś ÀÎĆÍÆäÀÌœșŽÂ ÀÌčÌ ŒłÁ€”ÇŸî ÀÖœÀŽÏŽÙ."
-#: ../../standalone/drakgw_.c:267
+#: ../../standalone/drakgw_.c:260
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -11271,15 +11780,15 @@ msgid ""
"You can do it manually but you need to know what you're doing."
msgstr ""
-#: ../../standalone/drakgw_.c:272
+#: ../../standalone/drakgw_.c:265
msgid "Automatic reconfiguration"
msgstr "ÀÚ”ż ÀçŒłÁ€"
-#: ../../standalone/drakgw_.c:273
+#: ../../standalone/drakgw_.c:266
msgid "Show current interface configuration"
msgstr "ÇöÀç ÀÎĆÍÆäÀÌœș ŒłÁ€ șž±â"
-#: ../../standalone/drakgw_.c:275
+#: ../../standalone/drakgw_.c:268
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -11290,7 +11799,7 @@ msgid ""
"Driver: %s"
msgstr ""
-#: ../../standalone/drakgw_.c:287
+#: ../../standalone/drakgw_.c:280
msgid ""
"I can keep your current configuration and assume you already set up a DHCP "
"server; in that case please verify I correctly read the C-Class Network that "
@@ -11302,53 +11811,41 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakgw_.c:292
+#: ../../standalone/drakgw_.c:285
msgid "C-Class Local Network"
msgstr "C ĆŹ·Ąœș ÁöżȘ łŚÆźżś"
-#: ../../standalone/drakgw_.c:293
+#: ../../standalone/drakgw_.c:286
msgid "(This) DHCP Server IP"
msgstr "DHCP Œ­čö IP"
-#: ../../standalone/drakgw_.c:294
+#: ../../standalone/drakgw_.c:287
msgid "Re-configure interface and DHCP server"
msgstr "ÀÎĆÍÆäÀÌœșżÍ DHCP Œ­čö ÀçŒłÁ€"
-#: ../../standalone/drakgw_.c:301
+#: ../../standalone/drakgw_.c:294
msgid "The Local Network did not finish with `.0', bailing out."
msgstr ""
-#: ../../standalone/drakgw_.c:312
+#: ../../standalone/drakgw_.c:305
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr "ÇöÀç ŒłÁ€ %sżĄŒ­ ÀáÀçÀûÀÎ ·Ł ÁÖŒÒ Ăæ”čÀÌ č߰ߔˎώÙ!\n"
-#: ../../standalone/drakgw_.c:320
-msgid "Firewalling configuration detected!"
-msgstr "čæÈ­șź ŒłÁ€ÀÌ °šÁö”ÇŸúœÀŽÏŽÙ!"
-
-#: ../../standalone/drakgw_.c:321
-msgid ""
-"Warning! An existing firewalling configuration has been detected. You may "
-"need some manual fix after installation."
-msgstr ""
-"°æ°í! ±âÁžÀÇ čæÈ­șź ŒłÁ€ÀÌ °šÁö”ÇŸúœÀŽÏŽÙ. ŒłÄĄ°Ą łĄł­ ÈÄżĄ ÁśÁą ŒöÁ€ÇÒ ÇÊżä"
-"°Ą ÀÖœÀŽÏŽÙ."
-
-#: ../../standalone/drakgw_.c:328
+#: ../../standalone/drakgw_.c:315
msgid "Configuring..."
msgstr "ŒłÁ€ Áß..."
-#: ../../standalone/drakgw_.c:329
+#: ../../standalone/drakgw_.c:316
msgid "Configuring scripts, installing software, starting servers..."
msgstr "œșĆ©žłÆź ŒłÁ€ Áß, ŒÒÇÁÆźżțŸî ŒłÄĄ Áß, Œ­čö œĂÀÛ Áß..."
-#: ../../standalone/drakgw_.c:365
+#: ../../standalone/drakgw_.c:352
#, c-format
msgid "Problems installing package %s"
msgstr "ÆŃĆ°Áö ŒłÄĄÁß čźÁŠ čß»ę %s"
-#: ../../standalone/drakgw_.c:549
+#: ../../standalone/drakgw_.c:485
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
@@ -11358,23 +11855,23 @@ msgstr ""
"ÀÌÁŠ ÀÚ”ż łŚÆźżś ŒłÁ€±âŽÉ(DHCP)Àž·Î ÁöżȘ łŚÆźżö»óÀÇ ŽÙž„ ÄÄÇ»ĆÍżÍ ÀÎĆÍłĘ żŹ"
"°á °űÀŻžŠ ÇÒ Œö ÀÖœÀŽÏŽÙ."
-#: ../../standalone/drakgw_.c:566
+#: ../../standalone/drakgw_.c:504
msgid "The setup has already been done, but it's currently disabled."
msgstr "ŒłÁ€Àș ÀÌčÌ żÏ·á”ÇŸúÁöžž, ÇöÀç ÇŰÁŠ”È »óĆÂÀÔŽÏŽÙ."
-#: ../../standalone/drakgw_.c:567
+#: ../../standalone/drakgw_.c:505
msgid "The setup has already been done, and it's currently enabled."
msgstr "ŒłÁ€ÀÌ ÀÌčÌ żÏ·á”ÇŸúÀžžç, ÇöÀç Çăżë”È »óĆÂÀÔŽÏŽÙ."
-#: ../../standalone/drakgw_.c:568
+#: ../../standalone/drakgw_.c:506
msgid "No Internet Connection Sharing has ever been configured."
msgstr "Ÿî¶°ÇŃ ÀÎĆÍłĘ żŹ°á °űÀŻ”” ŒłÁ€”È ÀûÀÌ ŸűœÀŽÏŽÙ."
-#: ../../standalone/drakgw_.c:573
+#: ../../standalone/drakgw_.c:511
msgid "Internet connection sharing configuration"
msgstr "ÀÎĆÍłĘ żŹ°á°űÀŻ ŒłÁ€"
-#: ../../standalone/drakgw_.c:580
+#: ../../standalone/drakgw_.c:518
#, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -11389,6 +11886,159 @@ msgstr ""
"\n"
"ž¶čę»çžŠ œÇÇàÇÏ·Ážé ĄžŒłÁ€ĄčÀ» Ž©žŁŒŒżä."
+#: ../../standalone/draksound_.c:46
+#, fuzzy
+msgid "No Sound Card detected!"
+msgstr "TV Ä«”枊 ĂŁÀ» Œö ŸűœÀŽÏŽÙ!"
+
+#: ../../standalone/draksound_.c:47
+msgid ""
+"No Sound Card has been detected on your machine. Please verify that a Linux-"
+"supported Sound Card is correctly plugged in.\n"
+"\n"
+"\n"
+"You can visit our hardware database at:\n"
+"\n"
+"\n"
+"http://www.linux-mandrake.com/en/hardware.php3"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:32
+msgid "package ImageMagick is required for correct working"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:76
+#, fuzzy
+msgid "first step creation"
+msgstr "șÎÆź ”đœșĆ© »ęŒș"
+
+#: ../../standalone/draksplash_.c:77
+#, fuzzy
+msgid "final resolution"
+msgstr "ÇŰ»ó””"
+
+#: ../../standalone/draksplash_.c:78 ../../standalone/draksplash_.c:170
+#, fuzzy
+msgid "choose image file"
+msgstr "ÆÄÀÏ Œ±ĆĂ"
+
+#: ../../standalone/draksplash_.c:79
+#, fuzzy
+msgid "Theme name"
+msgstr "°űÀŻ ÀÌž§"
+
+#: ../../standalone/draksplash_.c:81
+msgid "make bootsplash step 2"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:82
+#, fuzzy
+msgid "go to lilosplash configuration"
+msgstr "ŒłÄĄÀü ÈŻ°æŒłÁ€"
+
+#: ../../standalone/draksplash_.c:83
+#, fuzzy
+msgid "quit"
+msgstr "ÁŸ·á"
+
+#: ../../standalone/draksplash_.c:84
+#, fuzzy
+msgid "save theme"
+msgstr "ĆŚž¶ ŒłÄĄ"
+
+#: ../../standalone/draksplash_.c:85
+msgid "browse"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:98 ../../standalone/draksplash_.c:159
+#, fuzzy
+msgid "Configure bootsplash picture"
+msgstr "șÎÆźœșÇĂ·ĄœŹ čÌžźșž±âžŠ »ęŒșÇÒ Œö ŸűœÀŽÏŽÙ."
+
+#: ../../standalone/draksplash_.c:99
+msgid "x coordinate of text box in number of character"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:100
+msgid "y coordinate of text box in number of character"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:101
+msgid "text width"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:102
+msgid "text box height"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:103
+msgid "the progress bar x coordinate of its upper left corner"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:104
+msgid "the progress bar y coordinate of its upper left corner"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:105
+msgid "the width of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:106
+msgid "the heigth of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:107
+msgid "the color of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:119
+#, fuzzy
+msgid "go back"
+msgstr "·çÇÁčé"
+
+#: ../../standalone/draksplash_.c:120
+#, fuzzy
+msgid "preview"
+msgstr "ÀćÄĄ"
+
+#: ../../standalone/draksplash_.c:121
+#, fuzzy
+msgid "choose color"
+msgstr "žđŽÏĆÍžŠ Œ±ĆĂÇÏŒŒżä"
+
+#: ../../standalone/draksplash_.c:124
+#, fuzzy
+msgid "Display logo on Console"
+msgstr "ÄÜŒÖÇÏżĄŒ­ ĆŚž¶ șžÀ̱â"
+
+#: ../../standalone/draksplash_.c:125
+msgid "Make kernel message quiet by default"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:161 ../../standalone/draksplash_.c:330
+#, c-format
+msgid "This theme haven't yet any bootsplash in %s !"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:213
+msgid "saving Bootsplash theme..."
+msgstr ""
+
+#: ../../standalone/draksplash_.c:436
+#, fuzzy
+msgid "ProgressBar color selection"
+msgstr "ÇÁž°ĆÍ žđ”š Œ±ĆĂ"
+
+#: ../../standalone/draksplash_.c:454
+#, fuzzy
+msgid "You must choose an image file first!"
+msgstr "ÇÁž°ĆÍ ¶ÇŽÂ ÀćÄĄžŠ ÀÔ·Â ¶ÇŽÂ Œ±ĆĂÇŰŸß ÇŐŽÏŽÙ!"
+
+#: ../../standalone/draksplash_.c:463
+#, fuzzy
+msgid "Generating preview ..."
+msgstr "ÀćÄĄ °Ë»ö Áß ..."
+
#: ../../standalone/drakxtv_.c:49
msgid ""
"XawTV isn't installed!\n"
@@ -11477,11 +12127,11 @@ msgstr ""
"ÀÔ·ÂÇÏŒŒżä."
#: ../../standalone/drakxtv_.c:109
-msgid "TV norm :"
+msgid "TV norm:"
msgstr "TV łđ :"
#: ../../standalone/drakxtv_.c:110
-msgid "Area :"
+msgid "Area:"
msgstr "ÁöżȘ :"
#: ../../standalone/drakxtv_.c:114
@@ -11556,7 +12206,7 @@ msgstr "¶óÀÌșê Ÿś±Ś·čÀÌ”ćžŠ œĂÀÛÇÒ Œö ŸűœÀŽÏŽÙ!!! \n"
msgid "The change is done, but to be effective you must logout"
msgstr "șŻ°æÀÌ żÏ·á ”ÇŸúÁöžž, Àûżë”DZâ À§ÇŰŒ­ŽÂ Àç·Î±ŚÀÎÇŰŸß ÇŐŽÏŽÙ."
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:517
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:515
msgid "logdrake"
msgstr "·Î±Ś”ć·čÀÌĆ©"
@@ -11729,7 +12379,7 @@ msgstr "Œ­șńœș ŒłÁ€"
#: ../../standalone/logdrake_.c:431
msgid ""
-"You will receive an alert if one of the selected service is no more running"
+"You will receive an alert if one of the selected services is no more running"
msgstr ""
#: ../../standalone/logdrake_.c:443
@@ -11748,19 +12398,19 @@ msgstr "°æ°í ŒłÁ€"
msgid "Please enter your email address below "
msgstr "ŸÆ·ĄżĄ ÀÌžȚÀÏ Á֌ҞŠ ÀÔ·ÂÇÏŒŒżä."
-#: ../../standalone/logdrake_.c:499
+#: ../../standalone/logdrake_.c:497
msgid "Save as.."
msgstr "»ő ÀÌž§Àž·Î ÀúÀć"
-#: ../../standalone/mousedrake_.c:43
+#: ../../standalone/mousedrake_.c:45
msgid "Please, choose the type of your mouse."
msgstr "Ÿî¶Č ÁŸ·ùÀÇ ž¶żìœșžŠ »çżëÇϜʎϱî?"
-#: ../../standalone/mousedrake_.c:57
+#: ../../standalone/mousedrake_.c:58
msgid "Emulate third button?"
msgstr "3čöÆ° żĄčÄ·čÀÌÆź?"
-#: ../../standalone/printerdrake_.c:48
+#: ../../standalone/printerdrake_.c:57
msgid "Reading printer data ..."
msgstr "ÇÁž°ĆÍ ”„ÀÌĆÍ ÀĐŽÂ Áß ..."
@@ -11772,32 +12422,43 @@ msgstr "ÀćÄĄ °Ë»ö Áß ..."
msgid "Test ports"
msgstr "ÆśÆź °Ë»ç"
-#: ../../standalone/scannerdrake_.c:52
+#: ../../standalone/scannerdrake_.c:53 ../../standalone/scannerdrake_.c:68
+#: ../../standalone/scannerdrake_.c:81
#, c-format
-msgid "%s found on %s, configure it ?"
+msgid "The %s is not supported by this version of Mandrake Linux."
msgstr ""
+#: ../../standalone/scannerdrake_.c:56
+#, fuzzy, c-format
+msgid "%s found on %s, configure it?"
+msgstr "ÀΌ⠌łÁ€À» ÇÏœĂ°ÚœÀŽÏ±î?"
+
#: ../../standalone/scannerdrake_.c:59
+#, c-format
+msgid "%s is not in the scanner database, configure it manually?"
+msgstr ""
+
+#: ../../standalone/scannerdrake_.c:65
msgid "Select a scanner"
msgstr "œșÄłłÊ Œ±ĆĂ"
-#: ../../standalone/scannerdrake_.c:79
+#: ../../standalone/scannerdrake_.c:93
#, c-format
msgid "This %s scanner is unsupported"
msgstr "ÀÌ œșÄłłÊ [%s]ŽÂ Áöżű”ÇÁö ŸÊœÀŽÏŽÙ."
-#: ../../standalone/scannerdrake_.c:93
+#: ../../standalone/scannerdrake_.c:107
#, c-format
msgid ""
"Scannerdrake was not able to detect your %s scanner.\n"
"Please select the device where your scanner is plugged"
msgstr ""
-#: ../../standalone/scannerdrake_.c:95
+#: ../../standalone/scannerdrake_.c:109
msgid "choose device"
msgstr "ÀćÄĄ Œ±ĆĂ"
-#: ../../standalone/scannerdrake_.c:101
+#: ../../standalone/scannerdrake_.c:115
#, c-format
msgid ""
"This %s scanner must be configured by printerdrake.\n"
@@ -11805,7 +12466,7 @@ msgid ""
"section."
msgstr ""
-#: ../../standalone/scannerdrake_.c:106
+#: ../../standalone/scannerdrake_.c:120
#, c-format
msgid ""
"Your %s scanner has been configured.\n"
@@ -11813,48 +12474,18 @@ msgid ""
"applications menu."
msgstr ""
-#: ../../standalone/service_harddrake_.c:57
+#: ../../standalone/service_harddrake_.c:39
#, c-format
msgid "Some devices in the \"%s\" hardware class were removed:\n"
msgstr ""
-#: ../../standalone/service_harddrake_.c:61
+#: ../../standalone/service_harddrake_.c:43
#, c-format
msgid ""
"\n"
"Some devices in the %s class were added:\n"
msgstr ""
-#: ../../standalone/tinyfirewall_.c:30
-msgid "Firewalling Configuration"
-msgstr "čæÈ­șź ŒłÁ€"
-
-#: ../../standalone/tinyfirewall_.c:43
-msgid "Firewalling configuration"
-msgstr "čæÈ­șź ŒłÁ€"
-
-#: ../../standalone/tinyfirewall_.c:78
-msgid ""
-"Firewalling\n"
-"\n"
-"You already have set up a firewall.\n"
-"Click on Configure to change or remove the firewall"
-msgstr ""
-"čæÈ­șź\n"
-"\n"
-"čæÈ­șźÀș ÀÌčÌ ŒłÁ€”ÇŸî ÀÖœÀŽÏŽÙ.\n"
-"čæÈ­șźÀ» șŻ°æ ¶ÇŽÂ ÁŠ°ĆÇÏ·Ážé, ĄžŒłÁ€ĄčÀ» Ž©žŁŒŒżä."
-
-#: ../../standalone/tinyfirewall_.c:82
-msgid ""
-"Firewalling\n"
-"\n"
-"Click on Configure to set up a standard firewall"
-msgstr ""
-"čæÈ­șź\n"
-"\n"
-"Ç„ÁŰ čæÈ­șźÀ» ŒłÁ€ÇÏ·Ážé, ĄžŒłÁ€ĄčÀ» Ž©žŁŒŒżä."
-
#: ../../steps.pm_.c:14
msgid "Choose your language"
msgstr "ŸđŸî Œ±ĆĂ"
@@ -11927,221 +12558,7 @@ msgstr "œĂœșĆÛ Ÿś”„ÀÌÆź ŒłÄĄ"
msgid "Exit install"
msgstr "ŒłÄĄ ÁŸ·á"
-#: ../../tinyfirewall.pm_.c:9
-msgid ""
-"tinyfirewall configurator\n"
-"\n"
-"This configures a personal firewall for this Mandrake Linux machine.\n"
-"For a powerful dedicated firewall solution, please look to the\n"
-"specialized MandrakeSecurity Firewall distribution."
-msgstr ""
-"TinyFirewall ŒłÁ€\n"
-"\n"
-"ÀÌ°ÍÀș žźŽȘœș žÇ”ć·čÀÌĆ© œĂœșĆÛÀÇ °łÀÎ čæÈ­șźÀ» ŒłÁ€ÇŐŽÏŽÙ.\n"
-"°­·ÂÇŃ Àüčź čæÈ­șźÀ» »çżëÇÏ°í œÍŽÙžé, žÇ”ć·čÀÌĆ© șžŸÈ čæÈ­șź\n"
-"čèÆśÆÇÀ» ±žÇÏœĂ±â čÙ¶űŽÏŽÙ."
-
-#: ../../tinyfirewall.pm_.c:14
-msgid ""
-"We'll now ask you questions about which services you'd like to allow\n"
-"the Internet to connect to. Please think carefully about these\n"
-"questions, as your computer's security is important.\n"
-"\n"
-"Please, if you're not currently using one of these services, firewall\n"
-"it off. You can change this configuration anytime you like by\n"
-"re-running this application!"
-msgstr ""
-"ÀÌÁŠ ÀÎĆÍłĘÀž·ÎșÎĆÍ ÁąŒÓÇÒ Œö ÀÖŽÂ Œ­șńœșżĄ °üÇŃ ÁúčźÀ» ÇÒ °ÍÀÔŽÏŽÙ.\n"
-"ÄÄÇ»ĆÍÀÇ șžŸÈ»ó ÁßżäÇÏčÇ·Î °ą ÁúčźżĄ ÁÖÀÇÇŰŒ­ ÀÀÇÏœĂ±â čÙ¶űŽÏŽÙ.\n"
-"\n"
-"Œ­șńœș ÁßżĄ »çżëÇÏÁö ŸÊŽÂ °ÍÀÌ ÀÖŽÙžé, čæÈ­șźÀž·Î ž·œÀŽÏŽÙ.\n"
-"ÀÌ ŒłÁ€Àș ŸđÁŠ¶ó”” ÀÌ ÇÁ·Î±Ś·„À» ŽÙœĂ œÇÇàÇÔÀž·Îœá \n"
-"șŻ°æÇÒ Œö ÀÖœÀŽÏŽÙ!"
-
-#: ../../tinyfirewall.pm_.c:21
-msgid ""
-"Are you running a web server on this machine that you need the whole\n"
-"Internet to see? If you are running a webserver that only needs to be\n"
-"accessed by this machine, you can safely answer NO here.\n"
-"\n"
-msgstr ""
-"ÀÎĆŚłĘÀÇ Ÿî”đŒ­¶ó”” ÁąŒÓÇÒ Œö ÀÖŽÂ À„Œ­čöžŠ żîżëÇŐŽÏ±î?\n"
-"žžŸà żÀÁś ÀÌ ÄÄÇ»ĆÍżĄŒ­žž ÁąŒÓÇÒ Œö ÀÖŽÂ À„Œ­čöžŠ żîżëÇŃŽÙžé,\n"
-"ŸÈÀüÇÏ°Ô ĄžŸÆŽÏżÀĄčžŠ Ž©žŁŒŒżä.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:26
-msgid ""
-"Are you running a name server on this machine? If you didn't set one\n"
-"up to give away IP and zone information to the whole Internet, please\n"
-"answer no.\n"
-"\n"
-msgstr ""
-"łŚÀÓ Œ­čöžŠ żîżëÇŐŽÏ±î?\n"
-"žžŸà IPżÍ ÁöżȘ Á€șžžŠ ÀüĂŒ ÀÎĆÍłĘÀž·Î șžł»””·Ï ŒłÁ€ÇÏÁö ŸÊŸÒŽÙžé,\n"
-"ĄžŸÆŽÏżÀĄčžŠ Ž©žŁŒŒżä.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:31
-msgid ""
-"Do you want to allow incoming Secure Shell (ssh) connections? This\n"
-"is a telnet-replacement that you might use to login. If you're using\n"
-"telnet now, you should definitely switch to ssh. telnet is not\n"
-"encrypted -- so some attackers can steal your password if you use\n"
-"it. ssh is encrypted and doesn't allow for this eavesdropping."
-msgstr ""
-"șžŸÈ œ©(SSH) ÁąŒÓÀ» ÇăżëÇÏœĂ°ÚœÀŽÏ±î?\n"
-"ÀÌ°ÍÀș żÜșÎżĄŒ­ ·Î±ŚÀÎÇϱâÀ§ÇŰ »çżë”ÇŽÂ ĆÚłĘ Žëżë ÇÁ·Î±Ś·„\n"
-"ÀÔŽÏŽÙ. ŸÆÁś”” ĆÚłĘÀ» »çżëÇÏ°í ÀÖŽÙžé, SSH·Î čÙČÙŒŒżä.\n"
-"ĆÚłĘÀș ŸÏÈŁÈ­°Ą ”ÇŸî ÀÖÁö ŸÊ±â ¶§čźżĄ, ŽÔÀÌ ĆÚłĘÀ» »çżëÇÒ ¶§,\n"
-"żÜșÎ °ű°ĘÀÚ°Ą ŸÏÈŁžŠ ÈÉÄ„ Œö ÀÖœÀŽÏŽÙ. SSHŽÂ ŸÏÈŁÈ­žŠ »çżëÇϱâ\n"
-"¶§čźżĄ ÀÌ·± ””Ă»Àž·ÎșÎĆÍ ŸÈÀüÇŐŽÏŽÙ."
-
-#: ../../tinyfirewall.pm_.c:36
-msgid ""
-"Do you want to allow incoming telnet connections?\n"
-"This is horribly unsafe, as we explained in the previous screen. We\n"
-"strongly recommend answering No here and using ssh in place of\n"
-"telnet.\n"
-msgstr ""
-"żÜșÎ ĆÚłĘ ÁąŒÓÀ» ÇăżëÇÏœĂ°ÚœÀŽÏ±î?\n"
-"ÀÌÀü È­žéżĄŒ­ ŒłžíÇß”íÀÌ, ÀÌ°ÍÀș Á€ž» À§ÇèÇŃ °ÍÀÔŽÏŽÙ.\n"
-"ĄžŸÆŽÏżÀĄčžŠ Ž©žŁ°í SSHžŠ »çżëÇÒ °ÍÀ» °­·ÂÈś\n"
-"±ÇÀćÇŐŽÏŽÙ.\n"
-
-#: ../../tinyfirewall.pm_.c:41
-msgid ""
-"Are you running an FTP server here that you need accessible to the\n"
-"Internet? If you are, we strongly recommend that you only use it for\n"
-"Anonymous transfers. Any passwords sent by FTP can be stolen by some\n"
-"attackers, since FTP also uses no encryption for transferring passwords.\n"
-msgstr ""
-"ÀÎĆͳʿĄŒ­ ÁąŒÓÇÒ Œö ÀÖŽÂ FTP Œ­čöžŠ żîżëÇŐŽÏ±î?\n"
-"žžŸà ±Ś·ŻÇÏŽÙžé, ÀÍží ÁąŒÓžžÀ» ÇăżëÇÒ °ÍÀ» °­·ÂÈś\n"
-"±ÇÀćÇŐŽÏŽÙ. FTP”” ¶ÇÇŃ ŸÏÈŁÈ­žŠ »çżëÇÏÁö ŸÊ±â ¶§čźżĄ\n"
-"FTP·Î ÀüŒÛ”ÇŽÂ Ÿî¶°ÇŃ ŸÏÈŁ”” °ű°ĘÀÚżĄ°Ô łëĂâ”É Œö ÀÖœÀŽÏŽÙ.\n"
-
-#: ../../tinyfirewall.pm_.c:46
-msgid ""
-"Are you running a mail server here? If you're sending you \n"
-"messages through pine, mutt or any other text-based mail client,\n"
-"you probably are. Otherwise, you should firewall this off.\n"
-"\n"
-msgstr ""
-"žȚÀÏ Œ­čöžŠ żîżëÇŐŽÏ±î?\n"
-"žžŸà pine, mutt ¶ÇŽÂ ±Ś żÜÀÇ ĆŰœșÆź ±âčĘ žȚÀÏ ÇÁ·Î±Ś·„À» »çżëÇŃŽÙžé, \n"
-"ÇÊżäÇŐŽÏŽÙ. ±Ś·žÁö ŸÊŽÙžé čæÈ­șźÀž·Î ž·ÀžŒŒżä.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:51
-msgid ""
-"Are you running a POP or IMAP server here? This would\n"
-"be used to host non-web-based mail accounts for people via \n"
-"this machine.\n"
-"\n"
-msgstr ""
-"POP ¶ÇŽÂ IMAP Œ­čöžŠ żîżëÇŐŽÏ±î?\n"
-"ÀÌ°ÍÀș »çżëÀڔ鿥°Ô À„ ±âčĘÀÌ ŸÆŽŃ čæčęÀž·Î žȚÀÏ °èÁ€À» \n"
-"Œ­șńœșÇÒ ¶§ »çżë”ËŽÏŽÙ.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:56
-msgid ""
-"You appear to be running a 2.2 kernel. If your network IP\n"
-"is automatically set by a computer in your home or office \n"
-"(dynamically assigned), we need to allow for this. Is\n"
-"this the case?\n"
-msgstr ""
-"2.2 ÄżłÎÀ» »çżëÇÏ°í ÀÖŽÂ ”í ÇŐŽÏŽÙ. łŚÆźżś IP°Ą Áę ¶ÇŽÂ »çč«œÇ\n"
-"”îÀÇ ŽÙž„ ÄÄÇ»łÊżĄ ÀÇÇŰ ÀÚ”ż ÇÒŽç”ÈŽÙžé(ÀŻ”ż IP),\n"
-"ÀÌ°ÍÀÌ ÇÊżäÇŐŽÏŽÙ.\n"
-"ÀÌżÍ °°Àș ÈŻ°æżĄ ÀÖœÀŽÏ±î?\n"
-
-#: ../../tinyfirewall.pm_.c:61
-msgid ""
-"Is your computer getting time syncronized to another computer?\n"
-"Mostly, this is used by medium-large Unix/Linux organizations\n"
-"to synchronize time for logging and such. If you're not part\n"
-"of a larger office and haven't heard of this, you probably \n"
-"aren't."
-msgstr ""
-"ÀÌ ÄÄÇ»ĆÍÀÇ œĂ°ŁÀÌ ŽÙž„ ÄÄÇ»ĆÍżĄ ÀÇÇŰ ”ż±âÈ­ ”ˎϱî?\n"
-"Žë°ł ÀÌ°ÍÀș Áß±Ț ÀŻŽĐœș/žźŽȘœș ÁęŽÜżĄŒ­ ·Î±Ś ±â·Ï ¶ÇŽÂ\n"
-"±Ś żÜÀÇ żë””·ÎžŠ À§ÇŰ »çżë”ËŽÏŽÙ. ÀÌ ÄÄÇ»ĆÍ°Ą Žë±Ôžđ\n"
-"»çč«œÇ łŚÆźżśżĄ Âüż©ÇÏ°í ÀÖÁö ŸÊ°ĆłȘ, ÀÌ°ÍżĄ ŽëÇŰ ĂłÀœ\n"
-" ”éŸî ș»ŽÙžé, ŸÆž¶ ÇÊżäÇÏÁö ŸÊÀ» °ÍÀÔŽÏŽÙ."
-
-#: ../../tinyfirewall.pm_.c:66
-msgid ""
-"Configuration complete. May we write these changes to disk?\n"
-"\n"
-"\n"
-"\n"
-msgstr ""
-"ŒłÁ€ żÏ·á. șŻ°æ »çÇŚÀ» ”đœșĆ©żĄ ÀúÀćÇÒ±îżä?\n"
-"\n"
-"\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:82
-#, c-format
-msgid "Can't open %s: %s\n"
-msgstr "%sžŠ ż­ Œö ŸűœÀŽÏŽÙ: %s\n"
-
-#: ../../tinyfirewall.pm_.c:84
-#, c-format
-msgid "Can't open %s for writing: %s\n"
-msgstr "%sžŠ ŸČ±â žđ”ć·Î ż­ Œö ŸűœÀŽÏŽÙ: %s\n"
-
-#: ../../tinyfirewall.pm_.c:178
-msgid "No I don't need DHCP"
-msgstr "ŸÆŽÏżÀ | DHCPŽÂ ÇÊżäŸűœÀŽÏŽÙ."
-
-#: ../../tinyfirewall.pm_.c:178
-msgid "Yes I need DHCP"
-msgstr "żč | DHCP°Ą ÇÊżäÇŐŽÏŽÙ."
-
-#: ../../tinyfirewall.pm_.c:179
-msgid "No I don't need NTP"
-msgstr "ŸÆŽÏżÀ | NTPŽÂ ÇÊżäŸűœÀŽÏŽÙ."
-
-#: ../../tinyfirewall.pm_.c:179
-msgid "Yes I need NTP"
-msgstr "żč | NTP°Ą ÇÊżäÇŐŽÏŽÙ."
-
-#: ../../tinyfirewall.pm_.c:180 ../../tinyfirewall.pm_.c:184
-msgid "Don't Save"
-msgstr "ÀúÀć ŸÈÇÔ"
-
-#: ../../tinyfirewall.pm_.c:180 ../../tinyfirewall.pm_.c:184
-#: ../../tinyfirewall.pm_.c:204
-msgid "Save & Quit"
-msgstr "ÀúÀć čŚ ÁŸ·á"
-
-#: ../../tinyfirewall.pm_.c:195 ../../tinyfirewall.pm_.c:199
-msgid "Firewall Configuration Wizard"
-msgstr "čæÈ­șź ŒłÁ€ ž¶čę»ç"
-
-#: ../../tinyfirewall.pm_.c:197
-msgid "No (firewall this off from the internet)"
-msgstr "ŸÆŽÏżÀ (ÀÎĆͳʿĄŒ­ °Ęžź)"
-
-#: ../../tinyfirewall.pm_.c:198
-msgid "Yes (allow this through the firewall)"
-msgstr "żč (čæÈ­șźÀ» ĆëÇŃ Çăżë)"
-
-#: ../../tinyfirewall.pm_.c:230
-msgid "Please Wait... Verifying installed packages"
-msgstr "ÀáœĂ ±âŽÙžźŒŒżä... ŒłÄĄ”È ÆŃĆ°Áö”éÀ» ÈźÀÎ ÁßÀÔŽÏŽÙ."
-
-#: ../../tinyfirewall.pm_.c:236
-#, c-format
-msgid ""
-"Failure installing the needed packages : %s and Bastille.\n"
-" Try to install them manually."
-msgstr ""
-
-#: ../../ugtk.pm_.c:619
+#: ../../ugtk.pm_.c:594
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr ""
"-adobe-helvetica-bold-r-normal--16-*-75-75-p-*-iso8859-1,-*-gulim-bold-r-"
@@ -12275,6 +12692,10 @@ msgid "Graphical Environment"
msgstr "±Ś·ĄÇÈ ÈŻ°æ"
#: ../../share/compssUsers:999
+msgid "Development"
+msgstr "°łčß"
+
+#: ../../share/compssUsers:999
msgid "Apache, Pro-ftpd"
msgstr "ŸÆÆÄÄĄżÍ ÇÁ·ÎFTPD"
@@ -12382,34 +12803,262 @@ msgstr "žÖÆŒčÌ”đŸî - CD ±Á±â"
msgid "Scientific Workstation"
msgstr "°úÇĐ żöĆ©œșĆŚÀÌŒÇ"
-#~ msgid "$mode: $warning"
-#~ msgstr "$mode: $warning"
+#~ msgid ""
+#~ "The first time you try the X configuration, you may not be very "
+#~ "satisfied\n"
+#~ "with its display (screen is too small, shifted left or right...). Hence,\n"
+#~ "even if X starts up correctly, DrakX then asks you if the configuration\n"
+#~ "suits you. It will also propose to change it by displaying a list of "
+#~ "valid\n"
+#~ "modes it could find, asking you to select one.\n"
+#~ "\n"
+#~ "As a last resort, if you still cannot get X to work, choose \"Change\n"
+#~ "graphics card\", select \"Unlisted card\", and when prompted on which\n"
+#~ "server, choose \"FBDev\". This is a failsafe option which works with any\n"
+#~ "modern graphics card. Then choose \"Test again\" to be sure."
+#~ msgstr ""
+#~ "ĂłÀœ X ŒłÁ€À» œĂ””ÇÒ ¶§, È­žéÀÌ ÀÌ»óÇÏ°Ô șžÀÏ Œö ÀÖœÀŽÏŽÙ.\n"
+#~ "(È­žéÀÌ łÊč« ÀÛ°ĆłȘ, żÀž„ÂÊ È€Àș żȚÂÊÀž·Î ÄĄżìĂÄ ÀÖÀ» Œö ÀÖœÀŽÏŽÙ.)\n"
+#~ "±Ś·ž±â ¶§čźżĄ, șń·Ï X°Ą Á€»ó œÇÇà”ÇŽő¶ó”” ”ć·čÀÌĆ©XŽÂ ŽÔČČ ÀûÀęÇŃ\n"
+#~ "ŒłÁ€ÀÎÁöžŠ ÁúčźÇÒ °ÍÀÔŽÏŽÙ. ¶ÇÇŃ ŽÔÀÌ Œ±ĆĂÇÒ Œö ÀÖŽÂ ÀŻÈżÇŃ È­žéžđ”ć”éÀÇ\n"
+#~ "žń·ÏÀ» Ç„œĂÇŰŒ­ ÁśÁą șŻ°æÇÒ Œö ÀÖ°Ô ÇÒ °ÍÀÔŽÏŽÙ.\n"
+#~ "\n"
+#~ "ŸÆč«žź ÇŰ”” X°Ą Á€»óÀûÀž·Î ÀÛ”ż”Ç°Ô ÇÒ Œö ŸűŽÙžé, Ąž±Ś·ĄÇÈ Ä«”ć șŻ°æĄčÀ» "
+#~ "Œ±ĆĂÇÏ°í\n"
+#~ "Ąžžń·ÏżĄ ŸűŽÂ Ä«”ćĄčžŠ Œ±ĆĂÇÏŒŒżä. ±Śžź°í Œ­čö ÁŸ·ùžŠ ÁúčźÇÒ ¶§, ĄžFBDevĄč"
+#~ "žŠ\n"
+#~ "Œ±ĆĂÇÏŒŒżä. ÀÌ°ÍÀș ŸÈÀüžđ”ć żÉŒÇÀÌžç ÇöÀçÀÇ žđ”ç ±Ś·ĄÇÈ Ä«”ćżÍ ÈŁÈŻ”ËŽÏ"
+#~ "ŽÙ.\n"
+#~ "±Śžź°í łȘŒ­, ĄžŽÙœĂ ĆŚœșÆźĄčžŠ Œ±ĆĂÇÏż© ÈźÀÎÇÏŒŒżä."
+
+#~ msgid "Internet and Messaging"
+#~ msgstr "ÀÎĆͳʰú žȚœĂÂĄ"
+
+#~ msgid "Multimedia and Graphics"
+#~ msgstr "žÖÆŒčÌ”đŸîżÍ ±Ś·ĄÇÈ"
+
+#~ msgid "Server Software"
+#~ msgstr "Œ­čö ŒÒÇÁÆźżțŸî"
+
+#~ msgid "MandrakeCampus"
+#~ msgstr "žÇ”ć·čÀÌĆ©Ä·ÆÛœș"
+
+#~ msgid "MandrakeConsulting"
+#~ msgstr "žÇ”ć·čÀÌĆ©»óŽă"
+
+#~ msgid "MandrakeStore"
+#~ msgstr "žÇ”ć·čÀÌĆ©°Ą°Ô"
+
+#~ msgid "LBA (doesn't work on old BIOSes)"
+#~ msgstr "LBA (żÀ·Ą”È BIOS”鿥Œ± ÀÛ”żÇÏÁö ŸÊÀ»Œö”” ÀÖœÀŽÏŽÙ.)"
+
+#~ msgid "You don't have any partitions!"
+#~ msgstr "Ÿî¶Č ÆÄÆŒŒÇ”” ÁžÀçÇÏÁö ŸÊœÀŽÏŽÙ."
-#, fuzzy
#~ msgid ""
-#~ "This level is to be used with care. It makes your system more easy to "
-#~ "use,\n"
-#~ " but very sensitive: it must not be used for a machine "
-#~ "connected to others\n"
-#~ " or to the Internet. There is no password access."
+#~ "DiskDrake failed to read correctly the partition table.\n"
+#~ "Continue at your own risk!"
#~ msgstr ""
-#~ "ÀÌ ”î±ȚÀ» »çżëÇÒ·Ážé žĆżì ÁÖÀÇÇÏż©Ÿß ÇŐŽÏŽÙ. œĂœșĆÛÀ» »çżëÇÏ±âżĄŽÂ \n"
-#~ "żëÀÌÇÏ°ÚÁöžž žĆżì čΰšÇÏ°Ô ÀÛ”żÇŐŽÏŽÙ: ÀÎĆÍłĘÀÌłȘ łŚÆźżśżĄ żŹ°á”È œĂœșĆÛ"
-#~ "żë\n"
-#~ "Àž·ÎŽÂ »çżëÇÏÁö ž¶ŒŒżä. ŸÏÈŁ±âŽÉÀÌ ŸűœÀŽÏŽÙ."
+#~ "”đœșĆ©”ć·čĆ©°Ą ÆÄÆŒŒÇ ĆŚÀÌșíÀ» Á€ÈźÈś ÀĐŸîżÀŽÂ”„ œÇÆĐÇßœÀŽÏŽÙ.\n"
+#~ "À§ÇèÀ» °šŒöÇÒ ÁŰșń°Ą ”È °æżìżĄžž °èŒÓÇÏŒŒżä!"
+
+#~ msgid ""
+#~ "I can't read your partition table, it's too corrupted for me :(\n"
+#~ "I'll try to go on blanking bad partitions"
+#~ msgstr ""
+#~ "ÇÏ”ć ”đœșĆ©ÀÇ ÆÄÆŒŒÇ ĆŚÀÌșíÀ» ÀĐÀ»Œö ŸűœÀŽÏŽÙ. łÊč« șŻÇü”È °Í °°œÀŽÏŽÙ. :"
+#~ "(\n"
+#~ "Àßžű”È ÆÄÆŒŒÇ șńżì±âžŠ œĂ””ÇÒ °ÍÀÔŽÏŽÙ."
+
+#~ msgid "Firewalling Configuration"
+#~ msgstr "čæÈ­șź ŒłÁ€"
+
+#~ msgid "Firewalling configuration"
+#~ msgstr "čæÈ­șź ŒłÁ€"
+
+#~ msgid ""
+#~ "Firewalling\n"
+#~ "\n"
+#~ "You already have set up a firewall.\n"
+#~ "Click on Configure to change or remove the firewall"
+#~ msgstr ""
+#~ "čæÈ­șź\n"
+#~ "\n"
+#~ "čæÈ­șźÀș ÀÌčÌ ŒłÁ€”ÇŸî ÀÖœÀŽÏŽÙ.\n"
+#~ "čæÈ­șźÀ» șŻ°æ ¶ÇŽÂ ÁŠ°ĆÇÏ·Ážé, ĄžŒłÁ€ĄčÀ» Ž©žŁŒŒżä."
+
+#~ msgid ""
+#~ "Firewalling\n"
+#~ "\n"
+#~ "Click on Configure to set up a standard firewall"
+#~ msgstr ""
+#~ "čæÈ­șź\n"
+#~ "\n"
+#~ "Ç„ÁŰ čæÈ­șźÀ» ŒłÁ€ÇÏ·Ážé, ĄžŒłÁ€ĄčÀ» Ž©žŁŒŒżä."
+
+#~ msgid ""
+#~ "We'll now ask you questions about which services you'd like to allow\n"
+#~ "the Internet to connect to. Please think carefully about these\n"
+#~ "questions, as your computer's security is important.\n"
+#~ "\n"
+#~ "Please, if you're not currently using one of these services, firewall\n"
+#~ "it off. You can change this configuration anytime you like by\n"
+#~ "re-running this application!"
+#~ msgstr ""
+#~ "ÀÌÁŠ ÀÎĆÍłĘÀž·ÎșÎĆÍ ÁąŒÓÇÒ Œö ÀÖŽÂ Œ­șńœșżĄ °üÇŃ ÁúčźÀ» ÇÒ °ÍÀÔŽÏŽÙ.\n"
+#~ "ÄÄÇ»ĆÍÀÇ șžŸÈ»ó ÁßżäÇÏčÇ·Î °ą ÁúčźżĄ ÁÖÀÇÇŰŒ­ ÀÀÇÏœĂ±â čÙ¶űŽÏŽÙ.\n"
+#~ "\n"
+#~ "Œ­șńœș ÁßżĄ »çżëÇÏÁö ŸÊŽÂ °ÍÀÌ ÀÖŽÙžé, čæÈ­șźÀž·Î ž·œÀŽÏŽÙ.\n"
+#~ "ÀÌ ŒłÁ€Àș ŸđÁŠ¶ó”” ÀÌ ÇÁ·Î±Ś·„À» ŽÙœĂ œÇÇàÇÔÀž·Îœá \n"
+#~ "șŻ°æÇÒ Œö ÀÖœÀŽÏŽÙ!"
+
+#~ msgid ""
+#~ "Are you running a web server on this machine that you need the whole\n"
+#~ "Internet to see? If you are running a webserver that only needs to be\n"
+#~ "accessed by this machine, you can safely answer NO here.\n"
+#~ "\n"
+#~ msgstr ""
+#~ "ÀÎĆŚłĘÀÇ Ÿî”đŒ­¶ó”” ÁąŒÓÇÒ Œö ÀÖŽÂ À„Œ­čöžŠ żîżëÇŐŽÏ±î?\n"
+#~ "žžŸà żÀÁś ÀÌ ÄÄÇ»ĆÍżĄŒ­žž ÁąŒÓÇÒ Œö ÀÖŽÂ À„Œ­čöžŠ żîżëÇŃŽÙžé,\n"
+#~ "ŸÈÀüÇÏ°Ô ĄžŸÆŽÏżÀĄčžŠ Ž©žŁŒŒżä.\n"
+#~ "\n"
+
+#~ msgid ""
+#~ "Are you running a name server on this machine? If you didn't set one\n"
+#~ "up to give away IP and zone information to the whole Internet, please\n"
+#~ "answer no.\n"
+#~ "\n"
+#~ msgstr ""
+#~ "łŚÀÓ Œ­čöžŠ żîżëÇŐŽÏ±î?\n"
+#~ "žžŸà IPżÍ ÁöżȘ Á€șžžŠ ÀüĂŒ ÀÎĆÍłĘÀž·Î șžł»””·Ï ŒłÁ€ÇÏÁö ŸÊŸÒŽÙžé,\n"
+#~ "ĄžŸÆŽÏżÀĄčžŠ Ž©žŁŒŒżä.\n"
+#~ "\n"
-#, fuzzy
#~ msgid ""
-#~ "With this security level, the use of this system as a server becomes "
-#~ "possible.\n"
-#~ " The security is now high enough to use the system as a "
-#~ "server which can accept\n"
-#~ " connections from many clients. Note: if your machine is "
-#~ "only a client on the Internet, you should choose a lower level."
+#~ "Do you want to allow incoming Secure Shell (ssh) connections? This\n"
+#~ "is a telnet-replacement that you might use to login. If you're using\n"
+#~ "telnet now, you should definitely switch to ssh. telnet is not\n"
+#~ "encrypted -- so some attackers can steal your password if you use\n"
+#~ "it. ssh is encrypted and doesn't allow for this eavesdropping."
#~ msgstr ""
-#~ "ÀÌ șžŸÈ”î±ȚÀž·Î ÀÌ œĂœșĆÛÀ» Œ­čö·Î żîżëÇÒ Œö ÀÖ°Ô ”ËŽÏŽÙ.\n"
-#~ "ÀÌ șžŸÈ”î±ȚÀș żÜșÎÀÇ ĆŹ¶óÀÌŸđÆź”éÀÇ ÁąŒÓÀ» čȚŸÆ”éÀ̎”„ À֟ \n"
-#~ "ĂæșĐÈś łôÀș șžŸÈ”î±ȚÀÔŽÏŽÙ. "
+#~ "șžŸÈ œ©(SSH) ÁąŒÓÀ» ÇăżëÇÏœĂ°ÚœÀŽÏ±î?\n"
+#~ "ÀÌ°ÍÀș żÜșÎżĄŒ­ ·Î±ŚÀÎÇϱâÀ§ÇŰ »çżë”ÇŽÂ ĆÚłĘ Žëżë ÇÁ·Î±Ś·„\n"
+#~ "ÀÔŽÏŽÙ. ŸÆÁś”” ĆÚłĘÀ» »çżëÇÏ°í ÀÖŽÙžé, SSH·Î čÙČÙŒŒżä.\n"
+#~ "ĆÚłĘÀș ŸÏÈŁÈ­°Ą ”ÇŸî ÀÖÁö ŸÊ±â ¶§čźżĄ, ŽÔÀÌ ĆÚłĘÀ» »çżëÇÒ ¶§,\n"
+#~ "żÜșÎ °ű°ĘÀÚ°Ą ŸÏÈŁžŠ ÈÉÄ„ Œö ÀÖœÀŽÏŽÙ. SSHŽÂ ŸÏÈŁÈ­žŠ »çżëÇϱâ\n"
+#~ "¶§čźżĄ ÀÌ·± ””Ă»Àž·ÎșÎĆÍ ŸÈÀüÇŐŽÏŽÙ."
+
+#~ msgid ""
+#~ "Do you want to allow incoming telnet connections?\n"
+#~ "This is horribly unsafe, as we explained in the previous screen. We\n"
+#~ "strongly recommend answering No here and using ssh in place of\n"
+#~ "telnet.\n"
+#~ msgstr ""
+#~ "żÜșÎ ĆÚłĘ ÁąŒÓÀ» ÇăżëÇÏœĂ°ÚœÀŽÏ±î?\n"
+#~ "ÀÌÀü È­žéżĄŒ­ ŒłžíÇß”íÀÌ, ÀÌ°ÍÀș Á€ž» À§ÇèÇŃ °ÍÀÔŽÏŽÙ.\n"
+#~ "ĄžŸÆŽÏżÀĄčžŠ Ž©žŁ°í SSHžŠ »çżëÇÒ °ÍÀ» °­·ÂÈś\n"
+#~ "±ÇÀćÇŐŽÏŽÙ.\n"
+
+#~ msgid ""
+#~ "Are you running an FTP server here that you need accessible to the\n"
+#~ "Internet? If you are, we strongly recommend that you only use it for\n"
+#~ "Anonymous transfers. Any passwords sent by FTP can be stolen by some\n"
+#~ "attackers, since FTP also uses no encryption for transferring passwords.\n"
+#~ msgstr ""
+#~ "ÀÎĆͳʿĄŒ­ ÁąŒÓÇÒ Œö ÀÖŽÂ FTP Œ­čöžŠ żîżëÇŐŽÏ±î?\n"
+#~ "žžŸà ±Ś·ŻÇÏŽÙžé, ÀÍží ÁąŒÓžžÀ» ÇăżëÇÒ °ÍÀ» °­·ÂÈś\n"
+#~ "±ÇÀćÇŐŽÏŽÙ. FTP”” ¶ÇÇŃ ŸÏÈŁÈ­žŠ »çżëÇÏÁö ŸÊ±â ¶§čźżĄ\n"
+#~ "FTP·Î ÀüŒÛ”ÇŽÂ Ÿî¶°ÇŃ ŸÏÈŁ”” °ű°ĘÀÚżĄ°Ô łëĂâ”É Œö ÀÖœÀŽÏŽÙ.\n"
+
+#~ msgid ""
+#~ "Are you running a mail server here? If you're sending you \n"
+#~ "messages through pine, mutt or any other text-based mail client,\n"
+#~ "you probably are. Otherwise, you should firewall this off.\n"
+#~ "\n"
+#~ msgstr ""
+#~ "žȚÀÏ Œ­čöžŠ żîżëÇŐŽÏ±î?\n"
+#~ "žžŸà pine, mutt ¶ÇŽÂ ±Ś żÜÀÇ ĆŰœșÆź ±âčĘ žȚÀÏ ÇÁ·Î±Ś·„À» »çżëÇŃŽÙžé, \n"
+#~ "ÇÊżäÇŐŽÏŽÙ. ±Ś·žÁö ŸÊŽÙžé čæÈ­șźÀž·Î ž·ÀžŒŒżä.\n"
+#~ "\n"
+
+#~ msgid ""
+#~ "Are you running a POP or IMAP server here? This would\n"
+#~ "be used to host non-web-based mail accounts for people via \n"
+#~ "this machine.\n"
+#~ "\n"
+#~ msgstr ""
+#~ "POP ¶ÇŽÂ IMAP Œ­čöžŠ żîżëÇŐŽÏ±î?\n"
+#~ "ÀÌ°ÍÀș »çżëÀڔ鿥°Ô À„ ±âčĘÀÌ ŸÆŽŃ čæčęÀž·Î žȚÀÏ °èÁ€À» \n"
+#~ "Œ­șńœșÇÒ ¶§ »çżë”ËŽÏŽÙ.\n"
+#~ "\n"
+
+#~ msgid ""
+#~ "You appear to be running a 2.2 kernel. If your network IP\n"
+#~ "is automatically set by a computer in your home or office \n"
+#~ "(dynamically assigned), we need to allow for this. Is\n"
+#~ "this the case?\n"
+#~ msgstr ""
+#~ "2.2 ÄżłÎÀ» »çżëÇÏ°í ÀÖŽÂ ”í ÇŐŽÏŽÙ. łŚÆźżś IP°Ą Áę ¶ÇŽÂ »çč«œÇ\n"
+#~ "”îÀÇ ŽÙž„ ÄÄÇ»łÊżĄ ÀÇÇŰ ÀÚ”ż ÇÒŽç”ÈŽÙžé(ÀŻ”ż IP),\n"
+#~ "ÀÌ°ÍÀÌ ÇÊżäÇŐŽÏŽÙ.\n"
+#~ "ÀÌżÍ °°Àș ÈŻ°æżĄ ÀÖœÀŽÏ±î?\n"
+
+#~ msgid ""
+#~ "Is your computer getting time syncronized to another computer?\n"
+#~ "Mostly, this is used by medium-large Unix/Linux organizations\n"
+#~ "to synchronize time for logging and such. If you're not part\n"
+#~ "of a larger office and haven't heard of this, you probably \n"
+#~ "aren't."
+#~ msgstr ""
+#~ "ÀÌ ÄÄÇ»ĆÍÀÇ œĂ°ŁÀÌ ŽÙž„ ÄÄÇ»ĆÍżĄ ÀÇÇŰ ”ż±âÈ­ ”ˎϱî?\n"
+#~ "Žë°ł ÀÌ°ÍÀș Áß±Ț ÀŻŽĐœș/žźŽȘœș ÁęŽÜżĄŒ­ ·Î±Ś ±â·Ï ¶ÇŽÂ\n"
+#~ "±Ś żÜÀÇ żë””·ÎžŠ À§ÇŰ »çżë”ËŽÏŽÙ. ÀÌ ÄÄÇ»ĆÍ°Ą Žë±Ôžđ\n"
+#~ "»çč«œÇ łŚÆźżśżĄ Âüż©ÇÏ°í ÀÖÁö ŸÊ°ĆłȘ, ÀÌ°ÍżĄ ŽëÇŰ ĂłÀœ\n"
+#~ " ”éŸî ș»ŽÙžé, ŸÆž¶ ÇÊżäÇÏÁö ŸÊÀ» °ÍÀÔŽÏŽÙ."
+
+#~ msgid ""
+#~ "Configuration complete. May we write these changes to disk?\n"
+#~ "\n"
+#~ "\n"
+#~ "\n"
+#~ msgstr ""
+#~ "ŒłÁ€ żÏ·á. șŻ°æ »çÇŚÀ» ”đœșĆ©żĄ ÀúÀćÇÒ±îżä?\n"
+#~ "\n"
+#~ "\n"
+#~ "\n"
+
+#~ msgid "Can't open %s for writing: %s\n"
+#~ msgstr "%sžŠ ŸČ±â žđ”ć·Î ż­ Œö ŸűœÀŽÏŽÙ: %s\n"
+
+#~ msgid "No I don't need DHCP"
+#~ msgstr "ŸÆŽÏżÀ | DHCPŽÂ ÇÊżäŸűœÀŽÏŽÙ."
+
+#~ msgid "Yes I need DHCP"
+#~ msgstr "żč | DHCP°Ą ÇÊżäÇŐŽÏŽÙ."
+
+#~ msgid "No I don't need NTP"
+#~ msgstr "ŸÆŽÏżÀ | NTPŽÂ ÇÊżäŸűœÀŽÏŽÙ."
+
+#~ msgid "Yes I need NTP"
+#~ msgstr "żč | NTP°Ą ÇÊżäÇŐŽÏŽÙ."
+
+#~ msgid "Don't Save"
+#~ msgstr "ÀúÀć ŸÈÇÔ"
+
+#~ msgid "Save & Quit"
+#~ msgstr "ÀúÀć čŚ ÁŸ·á"
+
+#~ msgid "Firewall Configuration Wizard"
+#~ msgstr "čæÈ­șź ŒłÁ€ ž¶čę»ç"
+
+#~ msgid "No (firewall this off from the internet)"
+#~ msgstr "ŸÆŽÏżÀ (ÀÎĆͳʿĄŒ­ °Ęžź)"
+
+#~ msgid "Yes (allow this through the firewall)"
+#~ msgstr "żč (čæÈ­șźÀ» ĆëÇŃ Çăżë)"
+
+#~ msgid "Please Wait... Verifying installed packages"
+#~ msgstr "ÀáœĂ ±âŽÙžźŒŒżä... ŒłÄĄ”È ÆŃĆ°Áö”éÀ» ÈźÀÎ ÁßÀÔŽÏŽÙ."
#~ msgid "Basic Options"
#~ msgstr "±âș» żÉŒÇ"
diff --git a/perl-install/share/po/lt.po b/perl-install/share/po/lt.po
index f0d1f56a0..175b62ffc 100644
--- a/perl-install/share/po/lt.po
+++ b/perl-install/share/po/lt.po
@@ -3,8 +3,8 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: drakbootdisk VERSION\n"
-"POT-Creation-Date: 2002-08-21 15:44+0200\n"
+"Project-Id-Version: DrakX VERSION\n"
+"POT-Creation-Date: 2002-09-02 20:14+0200\n"
"PO-Revision-Date: 2000-12-23 13:50+0200\n"
"Last-Translator: Mykolas Norvai­as <Myka@centras.lt>\n"
"Language-Team: Lithuanian <komp_lt@konferencijos.lt>\n"
@@ -48,47 +48,47 @@ msgstr "32 MB"
msgid "64 MB or more"
msgstr "64 MB ar daugiau"
-#: ../../Xconfig/card.pm_.c:201
+#: ../../Xconfig/card.pm_.c:203
msgid "Choose a X server"
msgstr "Pasirink X serverá"
-#: ../../Xconfig/card.pm_.c:201
+#: ../../Xconfig/card.pm_.c:203
msgid "X server"
msgstr "X serveris"
-#: ../../Xconfig/card.pm_.c:228
+#: ../../Xconfig/card.pm_.c:230
#, fuzzy
msgid "Multi-head configuration"
msgstr "skaitomi nustatymai"
-#: ../../Xconfig/card.pm_.c:229
+#: ../../Xconfig/card.pm_.c:231
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
msgstr ""
-#: ../../Xconfig/card.pm_.c:284
+#: ../../Xconfig/card.pm_.c:286
msgid "Select the memory size of your graphics card"
msgstr "Pasirink savo vaizdo plokđtës atminties dydá"
-#: ../../Xconfig/card.pm_.c:345
+#: ../../Xconfig/card.pm_.c:347
msgid "XFree configuration"
msgstr "XFree konfigûravimas"
-#: ../../Xconfig/card.pm_.c:347
+#: ../../Xconfig/card.pm_.c:349
msgid "Which configuration of XFree do you want to have?"
msgstr "Kurià XFree konfigûracijà tu nori turëti?"
-#: ../../Xconfig/card.pm_.c:379
+#: ../../Xconfig/card.pm_.c:381
msgid "Configure all heads independently"
msgstr ""
-#: ../../Xconfig/card.pm_.c:380
+#: ../../Xconfig/card.pm_.c:382
#, fuzzy
msgid "Use Xinerama extension"
msgstr "Naudokite automatiná aptikimà"
-#: ../../Xconfig/card.pm_.c:384
+#: ../../Xconfig/card.pm_.c:386
#, fuzzy, c-format
msgid "Configure only card \"%s\"%s"
msgstr "Tinklo Konfigûravimo Meistras"
@@ -99,13 +99,13 @@ msgstr "Tinklo Konfigûravimo Meistras"
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:435
+#: ../../Xconfig/card.pm_.c:410 ../../Xconfig/card.pm_.c:436
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s with 3D hardware acceleration"
msgstr "XFree %s su 3D árenginio akseleracija"
-#: ../../Xconfig/card.pm_.c:412
+#: ../../Xconfig/card.pm_.c:413
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -114,17 +114,17 @@ msgstr ""
"Tavo plokđtë palaiko 3D árenginio akseleracijà, bet tik su XFree %s.\n"
"Tavo plokđtë dirba su XFree %s, kuris galbût geriau palaiko 2D."
-#: ../../Xconfig/card.pm_.c:414 ../../Xconfig/card.pm_.c:437
+#: ../../Xconfig/card.pm_.c:415 ../../Xconfig/card.pm_.c:438
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr "Tavo plokđtë palaiko 3D akseleracijà su XFree %s."
-#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:443
+#: ../../Xconfig/card.pm_.c:423 ../../Xconfig/card.pm_.c:444
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s su EKSPERIMENTINE 3D árenginio akseleracija"
-#: ../../Xconfig/card.pm_.c:425
+#: ../../Xconfig/card.pm_.c:426
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -136,7 +136,7 @@ msgstr ""
"KOMPIUTERÁ.\n"
"Jûsű korta dirba su XFree %s kuris galbût geriau palaiko 2D."
-#: ../../Xconfig/card.pm_.c:428 ../../Xconfig/card.pm_.c:445
+#: ../../Xconfig/card.pm_.c:429 ../../Xconfig/card.pm_.c:446
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
@@ -145,53 +145,54 @@ msgstr ""
"Jûsű korta palaiko 3D akseleracija su XFree %s.ATMINKITE, KAD TAI YRA "
"EKSPERIMENTINIS PALIKYMAS IR GALI PAKABINTI KOMPIUTERÁ."
-#: ../../Xconfig/card.pm_.c:451
+#: ../../Xconfig/card.pm_.c:452
msgid "Xpmac (installation display driver)"
msgstr ""
-#: ../../Xconfig/main.pm_.c:78 ../../Xconfig/main.pm_.c:79
-#: ../../Xconfig/monitor.pm_.c:94 ../../any.pm_.c:974
+#: ../../Xconfig/main.pm_.c:76 ../../Xconfig/main.pm_.c:77
+#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:977
msgid "Custom"
msgstr "Prisitaikyti"
-#: ../../Xconfig/main.pm_.c:104
+#: ../../Xconfig/main.pm_.c:102
#, fuzzy
msgid "Graphic Card"
msgstr "Vaizdo plokđtë"
-#: ../../Xconfig/main.pm_.c:107 ../../Xconfig/monitor.pm_.c:91
+#: ../../Xconfig/main.pm_.c:105 ../../Xconfig/monitor.pm_.c:93
msgid "Monitor"
msgstr "Monitorius"
-#: ../../Xconfig/main.pm_.c:110 ../../Xconfig/resolution_and_depth.pm_.c:209
+#: ../../Xconfig/main.pm_.c:108 ../../Xconfig/resolution_and_depth.pm_.c:209
msgid "Resolution"
msgstr "Skiriamoji geba"
-#: ../../Xconfig/main.pm_.c:114
+#: ../../Xconfig/main.pm_.c:113
msgid "Test"
msgstr ""
-#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:59
-#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/removable.pm_.c:25
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:63
+#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/removable.pm_.c:25
#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "Pasirinktys"
#: ../../Xconfig/main.pm_.c:121 ../../Xconfig/resolution_and_depth.pm_.c:268
-#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:281
+#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:275
#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
-#: ../../interactive.pm_.c:351 ../../interactive/http.pm_.c:104
+#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:104
#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
-#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:156
-#: ../../my_gtk.pm_.c:284 ../../my_gtk.pm_.c:307
-#: ../../standalone/drakbackup_.c:3324 ../../standalone/drakbackup_.c:3419
-#: ../../standalone/drakbackup_.c:3438
+#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:159
+#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310
+#: ../../standalone/drakbackup_.c:3972 ../../standalone/drakbackup_.c:4067
+#: ../../standalone/drakbackup_.c:4086
msgid "Ok"
msgstr "Gerai"
#: ../../Xconfig/main.pm_.c:121 ../../diskdrake/dav.pm_.c:24
-#: ../../printerdrake.pm_.c:2933 ../../standalone/logdrake_.c:224
+#: ../../harddrake/ui.pm_.c:98 ../../printerdrake.pm_.c:3155
+#: ../../standalone/logdrake_.c:224
msgid "Quit"
msgstr "Iđeiti"
@@ -208,28 +209,28 @@ msgstr ""
"\n"
"%s"
-#: ../../Xconfig/monitor.pm_.c:91
+#: ../../Xconfig/monitor.pm_.c:93
msgid "Choose a monitor"
msgstr "Pasirink monitoriű"
-#: ../../Xconfig/monitor.pm_.c:95
+#: ../../Xconfig/monitor.pm_.c:97
msgid "Plug'n Play"
msgstr ""
-#: ../../Xconfig/monitor.pm_.c:96 ../../mouse.pm_.c:45
+#: ../../Xconfig/monitor.pm_.c:98 ../../mouse.pm_.c:46
msgid "Generic"
msgstr "Paprasta"
-#: ../../Xconfig/monitor.pm_.c:97 ../../harddrake/ui.pm_.c:36
+#: ../../Xconfig/monitor.pm_.c:99 ../../harddrake/ui.pm_.c:37
#, fuzzy
msgid "Vendor"
msgstr "Sugráțti"
-#: ../../Xconfig/monitor.pm_.c:107
+#: ../../Xconfig/monitor.pm_.c:109
msgid "Plug'n Play probing failed. Please choose a precise monitor"
msgstr ""
-#: ../../Xconfig/monitor.pm_.c:112
+#: ../../Xconfig/monitor.pm_.c:114
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -250,11 +251,11 @@ msgstr ""
"uț palaikomà monitoriaus, nes gali já sugadinti. Jeigu abejoji,\n"
"pasirink konservatyvià nuostatà."
-#: ../../Xconfig/monitor.pm_.c:119
+#: ../../Xconfig/monitor.pm_.c:121
msgid "Horizontal refresh rate"
msgstr "Horizontalaus atnaujinimo dațnis"
-#: ../../Xconfig/monitor.pm_.c:120
+#: ../../Xconfig/monitor.pm_.c:122
msgid "Vertical refresh rate"
msgstr "Vertikalaus atnaujinimo dațnis"
@@ -291,36 +292,41 @@ msgstr "Pasirink skiriamàjà gebà ir spalvű gylá"
msgid "Graphics card: %s"
msgstr "Vaizdo plokđtë: %s"
-#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1015
-#: ../../bootlook.pm_.c:334 ../../diskdrake/smbnfs_gtk.pm_.c:87
-#: ../../install_steps_gtk.pm_.c:412 ../../install_steps_gtk.pm_.c:470
-#: ../../install_steps_interactive.pm_.c:576 ../../interactive.pm_.c:142
-#: ../../interactive.pm_.c:351 ../../interactive/http.pm_.c:105
+#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1018
+#: ../../bootlook.pm_.c:338 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:406 ../../install_steps_gtk.pm_.c:464
+#: ../../install_steps_interactive.pm_.c:560 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:105
#: ../../interactive/newt.pm_.c:174 ../../interactive/stdio.pm_.c:39
-#: ../../interactive/stdio.pm_.c:143 ../../my_gtk.pm_.c:155
-#: ../../my_gtk.pm_.c:159 ../../my_gtk.pm_.c:284
-#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1990
-#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3278
-#: ../../standalone/drakbackup_.c:3311 ../../standalone/drakbackup_.c:3337
-#: ../../standalone/drakbackup_.c:3364 ../../standalone/drakbackup_.c:3391
-#: ../../standalone/drakbackup_.c:3451 ../../standalone/drakbackup_.c:3478
-#: ../../standalone/drakbackup_.c:3504 ../../standalone/drakconnect_.c:115
-#: ../../standalone/drakconnect_.c:147 ../../standalone/drakconnect_.c:289
-#: ../../standalone/drakconnect_.c:537 ../../standalone/drakconnect_.c:679
-#: ../../standalone/drakfloppy_.c:234 ../../standalone/drakfloppy_.c:383
-#: ../../standalone/drakfont_.c:970 ../../standalone/drakgw_.c:598
-#: ../../standalone/logdrake_.c:224 ../../standalone/logdrake_.c:528
-#: ../../standalone/tinyfirewall_.c:64
+#: ../../interactive/stdio.pm_.c:143 ../../my_gtk.pm_.c:158
+#: ../../my_gtk.pm_.c:162 ../../my_gtk.pm_.c:287
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:2124
+#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3926
+#: ../../standalone/drakbackup_.c:3959 ../../standalone/drakbackup_.c:3985
+#: ../../standalone/drakbackup_.c:4012 ../../standalone/drakbackup_.c:4039
+#: ../../standalone/drakbackup_.c:4099 ../../standalone/drakbackup_.c:4126
+#: ../../standalone/drakbackup_.c:4156 ../../standalone/drakbackup_.c:4182
+#: ../../standalone/drakconnect_.c:115 ../../standalone/drakconnect_.c:147
+#: ../../standalone/drakconnect_.c:289 ../../standalone/drakconnect_.c:537
+#: ../../standalone/drakconnect_.c:679 ../../standalone/drakfloppy_.c:234
+#: ../../standalone/drakfloppy_.c:383 ../../standalone/drakfont_.c:970
+#: ../../standalone/drakgw_.c:536 ../../standalone/logdrake_.c:224
+#: ../../standalone/logdrake_.c:526
msgid "Cancel"
msgstr "Nutraukti"
-#: ../../Xconfig/test.pm_.c:26
+#: ../../Xconfig/test.pm_.c:30
+msgid "Test of the configuration"
+msgstr "Nustatymű tikrinimas"
+
+#: ../../Xconfig/test.pm_.c:31
msgid "Do you want to test the configuration?"
msgstr "Ar tu nori iđbandyti nustatymus?"
-#: ../../Xconfig/test.pm_.c:26
-msgid "Test of the configuration"
-msgstr "Nustatymű tikrinimas"
+#: ../../Xconfig/test.pm_.c:31
+#, fuzzy
+msgid "Warning: testing this graphic card may freeze your computer"
+msgstr "Perspëjimas: đios plokđtës bandymas gali pakabinti kompiuterá"
#: ../../Xconfig/various.pm_.c:29
#, c-format
@@ -456,26 +462,22 @@ msgstr "Ákrova su DOS/Windows (loadlin)"
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:158 ../../any.pm_.c:190
+#: ../../any.pm_.c:159 ../../any.pm_.c:190
msgid "Bootloader main options"
msgstr "Ákrovos tvarkyklës pagrindinës parinktys"
-#: ../../any.pm_.c:159 ../../any.pm_.c:191
+#: ../../any.pm_.c:160 ../../any.pm_.c:191
msgid "Bootloader to use"
msgstr "Naudojama ákrovos tvarkyklë"
-#: ../../any.pm_.c:161
+#: ../../any.pm_.c:162
msgid "Bootloader installation"
msgstr "Ákrovos tvarkyklës ádiegimas"
-#: ../../any.pm_.c:163 ../../any.pm_.c:193
+#: ../../any.pm_.c:164 ../../any.pm_.c:193
msgid "Boot device"
msgstr "Ákrovos árenginys"
-#: ../../any.pm_.c:164
-msgid "LBA (doesn't work on old BIOSes)"
-msgstr "LBA (nedirba su senais BIOS'ais)"
-
#: ../../any.pm_.c:165
msgid "Compact"
msgstr "Kompaktiđkas"
@@ -492,16 +494,17 @@ msgstr "Vaizdo rețimas"
msgid "Delay before booting default image"
msgstr "Palaukti prieđ ákraunant áprastà atvaizdà"
-#: ../../any.pm_.c:170 ../../any.pm_.c:786
+#: ../../any.pm_.c:170 ../../any.pm_.c:788
#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1111 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:743 ../../printerdrake.pm_.c:858
-#: ../../standalone/drakconnect_.c:624 ../../standalone/drakconnect_.c:649
+#: ../../install_steps_interactive.pm_.c:1096 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:850 ../../printerdrake.pm_.c:965
+#: ../../standalone/drakbackup_.c:3528 ../../standalone/drakconnect_.c:624
+#: ../../standalone/drakconnect_.c:649
msgid "Password"
msgstr "Slaptațodis"
-#: ../../any.pm_.c:171 ../../any.pm_.c:787
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../any.pm_.c:171 ../../any.pm_.c:789
+#: ../../install_steps_interactive.pm_.c:1097
msgid "Password (again)"
msgstr "Slaptațodis (vël)"
@@ -537,14 +540,14 @@ msgstr ""
"Parinktis „Griețtos komandinës eilutës parinktysŽ yra nenaudingà be "
"slaptațodțio"
-#: ../../any.pm_.c:184 ../../any.pm_.c:762
-#: ../../diskdrake/interactive.pm_.c:1180
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../any.pm_.c:184 ../../any.pm_.c:764
+#: ../../diskdrake/interactive.pm_.c:1191
+#: ../../install_steps_interactive.pm_.c:1091
msgid "Please try again"
msgstr "Prađom bandyti vël"
-#: ../../any.pm_.c:184 ../../any.pm_.c:762
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../any.pm_.c:184 ../../any.pm_.c:764
+#: ../../install_steps_interactive.pm_.c:1091
msgid "The passwords do not match"
msgstr "Slaptațodțiai nesutampa"
@@ -590,16 +593,16 @@ msgstr ""
"Èia yra skirtingi árađai.\n"
"Tu gali pakeisti esamus arba prijungti naujus."
-#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1483
-#: ../../standalone/drakbackup_.c:1596 ../../standalone/drakfont_.c:1011
+#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1558
+#: ../../standalone/drakbackup_.c:1671 ../../standalone/drakfont_.c:1011
#: ../../standalone/drakfont_.c:1054
msgid "Add"
msgstr "Pridëti"
-#: ../../any.pm_.c:257 ../../any.pm_.c:774 ../../diskdrake/dav.pm_.c:60
+#: ../../any.pm_.c:257 ../../any.pm_.c:776 ../../diskdrake/dav.pm_.c:64
#: ../../diskdrake/hd_gtk.pm_.c:153 ../../diskdrake/removable.pm_.c:27
#: ../../diskdrake/smbnfs_gtk.pm_.c:88 ../../interactive/http.pm_.c:153
-#: ../../standalone/drakbackup_.c:2696
+#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2772
msgid "Done"
msgstr "Atlikta"
@@ -612,7 +615,7 @@ msgstr "Taisyti RAID"
msgid "Which type of entry do you want to add?"
msgstr "Kokio tipo árađà tu nori pridëti?"
-#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1630
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1705
msgid "Linux"
msgstr "Linux"
@@ -708,13 +711,13 @@ msgstr "Ar turi dar vienà?"
msgid "Do you have any %s interfaces?"
msgstr "Ar tu turi koká nors %s interfeisà?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:821 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:283
+#: ../../any.pm_.c:660 ../../any.pm_.c:823 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:286
msgid "No"
msgstr "Ne"
-#: ../../any.pm_.c:660 ../../any.pm_.c:820 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:283
+#: ../../any.pm_.c:660 ../../any.pm_.c:822 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:286
msgid "Yes"
msgstr "Taip"
@@ -811,40 +814,48 @@ msgstr ""
msgid "access to administrative files"
msgstr ""
-#: ../../any.pm_.c:758
+#: ../../any.pm_.c:754
+msgid "access to network tools"
+msgstr ""
+
+#: ../../any.pm_.c:755
+msgid "access to compilation tools"
+msgstr ""
+
+#: ../../any.pm_.c:760
#, c-format
msgid "(already added %s)"
msgstr "(%s jau pridëtas)"
-#: ../../any.pm_.c:763
+#: ../../any.pm_.c:765
msgid "This password is too simple"
msgstr "Đis slaptațodis pernelyg paprastas"
-#: ../../any.pm_.c:764
+#: ../../any.pm_.c:766
msgid "Please give a user name"
msgstr "Prađom suteikti vartotojo vardà"
-#: ../../any.pm_.c:765
+#: ../../any.pm_.c:767
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
"Vartotojo vardas turi susidaryti tik iđ mațűjű raidțiű, skaièiű ir simboliű "
"`-' bei `_'"
-#: ../../any.pm_.c:766
+#: ../../any.pm_.c:768
#, fuzzy
msgid "The user name is too long"
msgstr "Đis vartotojo vardas jau pridëtas"
-#: ../../any.pm_.c:767
+#: ../../any.pm_.c:769
msgid "This user name is already added"
msgstr "Đis vartotojo vardas jau pridëtas"
-#: ../../any.pm_.c:771
+#: ../../any.pm_.c:773
msgid "Add user"
msgstr "Pridëti vartotojà"
-#: ../../any.pm_.c:772
+#: ../../any.pm_.c:774
#, c-format
msgid ""
"Enter a user\n"
@@ -853,32 +864,32 @@ msgstr ""
"Ávesk vartotojà\n"
"%s"
-#: ../../any.pm_.c:773
+#: ../../any.pm_.c:775
msgid "Accept user"
msgstr "Priimti vartotojà"
-#: ../../any.pm_.c:784
+#: ../../any.pm_.c:786
msgid "Real name"
msgstr "Tikras vardas"
-#: ../../any.pm_.c:785 ../../printerdrake.pm_.c:742
-#: ../../printerdrake.pm_.c:857
+#: ../../any.pm_.c:787 ../../printerdrake.pm_.c:849
+#: ../../printerdrake.pm_.c:964
msgid "User name"
msgstr "Vartotojo vardas"
-#: ../../any.pm_.c:788
+#: ../../any.pm_.c:790
msgid "Shell"
msgstr "Shell"
-#: ../../any.pm_.c:790
+#: ../../any.pm_.c:792
msgid "Icon"
msgstr "Ikona"
-#: ../../any.pm_.c:817
+#: ../../any.pm_.c:819
msgid "Autologin"
msgstr "Automatinis pasisveikinimas"
-#: ../../any.pm_.c:818
+#: ../../any.pm_.c:820
#, fuzzy
msgid ""
"I can set up your computer to automatically log on one user.\n"
@@ -887,57 +898,57 @@ msgstr ""
"Ađ galiu nustatyti taip, kad vienas vartotojas pasisveikintű automatiđkai.\n"
"Jei nenori to naudoti, spausk mygtukà Nutraukti."
-#: ../../any.pm_.c:822
+#: ../../any.pm_.c:824
msgid "Choose the default user:"
msgstr "Pasirink áprastà vartotojà:"
-#: ../../any.pm_.c:823
+#: ../../any.pm_.c:825
msgid "Choose the window manager to run:"
msgstr "Pasirink, kurià langű tvarkyklæ naudosi:"
-#: ../../any.pm_.c:838
+#: ../../any.pm_.c:840
#, fuzzy
msgid "Please choose a language to use."
msgstr "Prađom pasirinkti kalbà, kurià naudosi."
-#: ../../any.pm_.c:840
+#: ../../any.pm_.c:842
msgid ""
"Mandrake Linux can support multiple languages. Select\n"
"the languages you would like to install. They will be available\n"
"when your installation is complete and you restart your system."
msgstr "Tu gali pasirinkti kitas kalbas, kurios bus prieinamos po ádiegimo"
-#: ../../any.pm_.c:854 ../../install_steps_interactive.pm_.c:708
+#: ../../any.pm_.c:856 ../../install_steps_interactive.pm_.c:692
#: ../../standalone/drakxtv_.c:73
msgid "All"
msgstr "Visos"
-#: ../../any.pm_.c:974
+#: ../../any.pm_.c:977
#, fuzzy
msgid "Allow all users"
msgstr "Pridëti vartotojà"
-#: ../../any.pm_.c:974
+#: ../../any.pm_.c:977
#, fuzzy
msgid "No sharing"
msgstr "CUPS paleidțiamas"
-#: ../../any.pm_.c:984 ../../standalone.pm_.c:57
+#: ../../any.pm_.c:987 ../../install_any.pm_.c:1183 ../../standalone.pm_.c:58
#, fuzzy, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "Kokius jûs norite ádiegti paketus"
-#: ../../any.pm_.c:987
+#: ../../any.pm_.c:990
msgid ""
"You can export using NFS or Samba. Please select which you'd like to use."
msgstr ""
-#: ../../any.pm_.c:995 ../../standalone.pm_.c:61
+#: ../../any.pm_.c:998 ../../install_any.pm_.c:1188 ../../standalone.pm_.c:63
#, c-format
msgid "Mandatory package %s is missing"
msgstr ""
-#: ../../any.pm_.c:1001
+#: ../../any.pm_.c:1004
msgid ""
"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
@@ -946,42 +957,42 @@ msgid ""
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:1015
+#: ../../any.pm_.c:1018
msgid "Launch userdrake"
msgstr ""
-#: ../../any.pm_.c:1017
+#: ../../any.pm_.c:1020
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
msgstr ""
-#: ../../any.pm_.c:1068
+#: ../../any.pm_.c:1071
msgid "Welcome To Crackers"
msgstr "Sveiki atvykæ á cracker'iű đalá"
-#: ../../any.pm_.c:1069
+#: ../../any.pm_.c:1072
msgid "Poor"
msgstr "Menkas"
-#: ../../any.pm_.c:1070 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1073 ../../mouse.pm_.c:31
msgid "Standard"
msgstr "Standartinë"
-#: ../../any.pm_.c:1071
+#: ../../any.pm_.c:1074
msgid "High"
msgstr "Aukđtas"
-#: ../../any.pm_.c:1072
+#: ../../any.pm_.c:1075
#, fuzzy
msgid "Higher"
msgstr "Aukđtas"
-#: ../../any.pm_.c:1073
+#: ../../any.pm_.c:1076
msgid "Paranoid"
msgstr "Paranojiđkas"
-#: ../../any.pm_.c:1076
+#: ../../any.pm_.c:1079
msgid ""
"This level is to be used with care. It makes your system more easy to use,\n"
"but very sensitive: it must not be used for a machine connected to others\n"
@@ -991,7 +1002,7 @@ msgstr ""
"bet labai jautriai: ji turëtű nebûti naudojama kompiuteriuose,\n"
"sujungtais su kitais arba prie Interneto. Èia nëra slaptațodțiű."
-#: ../../any.pm_.c:1079
+#: ../../any.pm_.c:1082
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -999,7 +1010,7 @@ msgstr ""
"Dabar slaptațodțiai yra ájungti bet naudoti kaip tinkliná kompiuterá dar "
"nerekomenduojama."
-#: ../../any.pm_.c:1080
+#: ../../any.pm_.c:1083
#, fuzzy
msgid ""
"This is the standard security recommended for a computer that will be used "
@@ -1009,13 +1020,13 @@ msgstr ""
"naudojamas prisijungti prie interneto kaip klientas. Nëra jokiű saugumo "
"tikrinimű."
-#: ../../any.pm_.c:1081
+#: ../../any.pm_.c:1084
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr ""
-#: ../../any.pm_.c:1082
+#: ../../any.pm_.c:1085
#, fuzzy
msgid ""
"With this security level, the use of this system as a server becomes "
@@ -1030,7 +1041,7 @@ msgstr ""
"priima\n"
"prisijungimus iđ daugybës klientű."
-#: ../../any.pm_.c:1085
+#: ../../any.pm_.c:1088
#, fuzzy
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
@@ -1039,32 +1050,32 @@ msgstr ""
"Dabar naudojami 4 lygio privalumai,bet sistema yra visiđkai uțdaryta.\n"
"Saugumo savybës yra maksimalios."
-#: ../../any.pm_.c:1091
+#: ../../any.pm_.c:1094
#, fuzzy
msgid "DrakSec Basic Options"
msgstr "Pasirinktys"
-#: ../../any.pm_.c:1092
+#: ../../any.pm_.c:1095
#, fuzzy
msgid "Please choose the desired security level"
msgstr "Pasirink saugumo lygá"
-#: ../../any.pm_.c:1095
+#: ../../any.pm_.c:1098
#, fuzzy
msgid "Security level"
msgstr "Nustatomas saugumo lygis"
-#: ../../any.pm_.c:1097
+#: ../../any.pm_.c:1100
#, fuzzy
msgid "Use libsafe for servers"
msgstr "Pasirink serverio nuostatas"
-#: ../../any.pm_.c:1098
+#: ../../any.pm_.c:1101
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
-#: ../../any.pm_.c:1099
+#: ../../any.pm_.c:1102
msgid "Security Administrator (login or email)"
msgstr ""
@@ -1092,57 +1103,57 @@ msgstr ""
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:935
+#: ../../bootloader.pm_.c:932
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Sveiki, besinaudojantys GRUB, operaciniu sistemu parinkikliu!"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:938
+#: ../../bootloader.pm_.c:935
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "Naudok %c ir %c klavisus, kad pasirinktum, kuris irasas pazymetas"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:941
+#: ../../bootloader.pm_.c:938
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Spausk enter, noredami ikrauti pasirinkta OS, 'e', noredami keisti"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:941
msgid "commands before booting, or 'c' for a command-line."
msgstr "komandas pries ikrova, arba 'c', komandinei eilutei iskviesti "
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:947
+#: ../../bootloader.pm_.c:944
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "Pasirinktas irasas bus ikrautas automatiskai po %d sekundziu."
-#: ../../bootloader.pm_.c:951
+#: ../../bootloader.pm_.c:948
msgid "not enough room in /boot"
msgstr "nepakanka vietos /boot"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1051
+#: ../../bootloader.pm_.c:1048
msgid "Desktop"
msgstr "Darbastalis"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1053
+#: ../../bootloader.pm_.c:1050
msgid "Start Menu"
msgstr "Paleidimo meniu"
-#: ../../bootloader.pm_.c:1072
+#: ../../bootloader.pm_.c:1069
#, fuzzy, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "Kur nori ádiegti ákrovos tvarkyklæ?"
-#: ../../bootlook.pm_.c:45
+#: ../../bootlook.pm_.c:45 ../../standalone/draksplash_.c:25
msgid "no help implemented yet.\n"
msgstr "pagalba dar nesukurta.\n"
@@ -1150,8 +1161,8 @@ msgstr "pagalba dar nesukurta.\n"
msgid "Boot Style Configuration"
msgstr "Ádiegimo Tipo Konfiguracija"
-#: ../../bootlook.pm_.c:78 ../../harddrake/ui.pm_.c:59
-#: ../../harddrake/ui.pm_.c:60 ../../standalone/drakfloppy_.c:81
+#: ../../bootlook.pm_.c:78 ../../harddrake/ui.pm_.c:62
+#: ../../harddrake/ui.pm_.c:63 ../../standalone/drakfloppy_.c:81
#: ../../standalone/logdrake_.c:101
msgid "/_File"
msgstr "/_Byla"
@@ -1161,7 +1172,7 @@ msgstr "/_Byla"
msgid "/File/_Quit"
msgstr "/Byla/_Iđeiti"
-#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:60
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:63
#: ../../standalone/drakfloppy_.c:82 ../../standalone/logdrake_.c:107
msgid "<control>Q"
msgstr "<control>Q"
@@ -1207,118 +1218,124 @@ msgstr "Ádiegti sistemà"
msgid "Display theme under console"
msgstr ""
-#: ../../bootlook.pm_.c:166
+#: ../../bootlook.pm_.c:145
+#, fuzzy
+msgid "Create new theme"
+msgstr "Sukurti naujà skirsná"
+
+#: ../../bootlook.pm_.c:169
msgid "Can't create Bootsplash preview"
msgstr ""
-#: ../../bootlook.pm_.c:166 ../../bootlook.pm_.c:184 ../../bootlook.pm_.c:187
-#: ../../bootlook.pm_.c:190 ../../bootlook.pm_.c:220 ../../bootlook.pm_.c:222
-#: ../../bootlook.pm_.c:232 ../../bootlook.pm_.c:241 ../../bootlook.pm_.c:248
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:336
-#: ../../diskdrake/interactive.pm_.c:351 ../../diskdrake/interactive.pm_.c:464
-#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../bootlook.pm_.c:169 ../../bootlook.pm_.c:187 ../../bootlook.pm_.c:190
+#: ../../bootlook.pm_.c:193 ../../bootlook.pm_.c:223 ../../bootlook.pm_.c:225
+#: ../../bootlook.pm_.c:235 ../../bootlook.pm_.c:244 ../../bootlook.pm_.c:251
+#: ../../diskdrake/dav.pm_.c:73 ../../diskdrake/hd_gtk.pm_.c:116
+#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/interactive.pm_.c:355
+#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/interactive.pm_.c:474
+#: ../../diskdrake/smbnfs_gtk.pm_.c:45 ../../fsedit.pm_.c:239
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:365 ../../interactive/http.pm_.c:119
-#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:80
+#: ../../interactive/http.pm_.c:119 ../../interactive/http.pm_.c:120
+#: ../../standalone/draksplash_.c:32
msgid "Error"
msgstr "Klaida"
-#: ../../bootlook.pm_.c:183
+#: ../../bootlook.pm_.c:186
#, c-format
msgid "Backup %s to %s.old"
msgstr ""
-#: ../../bootlook.pm_.c:184
+#: ../../bootlook.pm_.c:187
msgid "unable to backup lilo message"
msgstr ""
-#: ../../bootlook.pm_.c:186
+#: ../../bootlook.pm_.c:189
#, c-format
msgid "Copy %s to %s"
msgstr ""
-#: ../../bootlook.pm_.c:187
+#: ../../bootlook.pm_.c:190
msgid "can't change lilo message"
msgstr ""
-#: ../../bootlook.pm_.c:190
+#: ../../bootlook.pm_.c:193
msgid "Lilo message not found"
msgstr ""
-#: ../../bootlook.pm_.c:220
+#: ../../bootlook.pm_.c:223
msgid "Can't write /etc/sysconfig/bootsplash."
msgstr ""
-#: ../../bootlook.pm_.c:220
+#: ../../bootlook.pm_.c:223
#, fuzzy, c-format
msgid "Write %s"
msgstr "XFree %s"
-#: ../../bootlook.pm_.c:222
+#: ../../bootlook.pm_.c:225
msgid ""
"Can't write /etc/sysconfig/bootsplash\n"
"File not found."
msgstr ""
-#: ../../bootlook.pm_.c:233
+#: ../../bootlook.pm_.c:236
#, c-format
msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
msgstr ""
-#: ../../bootlook.pm_.c:236
+#: ../../bootlook.pm_.c:239
#, c-format
-msgid "Make initrd 'mkinird -f /boot/initrd-%s.img %s'."
+msgid "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
msgstr ""
-#: ../../bootlook.pm_.c:242
+#: ../../bootlook.pm_.c:245
msgid ""
"Can't relaunch LiLo!\n"
"Launch \"lilo\" as root in command line to complete LiLo theme installation."
msgstr ""
-#: ../../bootlook.pm_.c:246
+#: ../../bootlook.pm_.c:249
msgid "Relaunch 'lilo'"
msgstr ""
-#: ../../bootlook.pm_.c:248
+#: ../../bootlook.pm_.c:251 ../../standalone/draksplash_.c:161
+#: ../../standalone/draksplash_.c:330 ../../standalone/draksplash_.c:454
#, fuzzy
msgid "Notice"
msgstr "nuostabu"
-#: ../../bootlook.pm_.c:249
+#: ../../bootlook.pm_.c:252
msgid "LiLo and Bootsplash themes installation successfull"
msgstr ""
-#: ../../bootlook.pm_.c:249
+#: ../../bootlook.pm_.c:252
#, fuzzy
msgid "Theme installation failed!"
msgstr "Parink ádiegimo klasæ"
-#: ../../bootlook.pm_.c:258
+#: ../../bootlook.pm_.c:261
#, fuzzy, c-format
msgid ""
"You are currently using %s as your boot manager.\n"
"Click on Configure to launch the setup wizard."
msgstr "Interneto jungties dalinimas"
-#: ../../bootlook.pm_.c:260 ../../standalone/drakbackup_.c:2352
-#: ../../standalone/drakbackup_.c:2362 ../../standalone/drakbackup_.c:2372
-#: ../../standalone/drakbackup_.c:2380 ../../standalone/drakgw_.c:592
-#: ../../standalone/tinyfirewall_.c:58
+#: ../../bootlook.pm_.c:263 ../../standalone/drakbackup_.c:2427
+#: ../../standalone/drakbackup_.c:2437 ../../standalone/drakbackup_.c:2447
+#: ../../standalone/drakbackup_.c:2455 ../../standalone/drakgw_.c:530
#, fuzzy
msgid "Configure"
msgstr "Nustatyti X"
-#: ../../bootlook.pm_.c:267
+#: ../../bootlook.pm_.c:270
#, fuzzy
msgid "Splash selection"
msgstr "Iđsaugoti paketű pasirinkimà"
-#: ../../bootlook.pm_.c:270
+#: ../../bootlook.pm_.c:273
msgid "Themes"
msgstr ""
-#: ../../bootlook.pm_.c:272
+#: ../../bootlook.pm_.c:275
msgid ""
"\n"
"Select a theme for\n"
@@ -1327,44 +1344,44 @@ msgid ""
"them separatly"
msgstr ""
-#: ../../bootlook.pm_.c:275
+#: ../../bootlook.pm_.c:278
msgid "Lilo screen"
msgstr ""
-#: ../../bootlook.pm_.c:279
+#: ../../bootlook.pm_.c:283
msgid "Bootsplash"
msgstr ""
-#: ../../bootlook.pm_.c:314
+#: ../../bootlook.pm_.c:318
msgid "System mode"
msgstr "Sistemos rețimas"
-#: ../../bootlook.pm_.c:316
+#: ../../bootlook.pm_.c:320
msgid "Launch the graphical environment when your system starts"
msgstr "Startuojant paleisti X_Windows"
-#: ../../bootlook.pm_.c:321
+#: ../../bootlook.pm_.c:325
msgid "No, I don't want autologin"
msgstr "Ne, ađ nenoriu automatinio pasisveikinimo"
-#: ../../bootlook.pm_.c:323
+#: ../../bootlook.pm_.c:327
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "Taip, ađ noriu automatinio pasisveikinimo (vrtotojas, darbastalis)"
-#: ../../bootlook.pm_.c:333 ../../network/netconnect.pm_.c:101
+#: ../../bootlook.pm_.c:337 ../../network/netconnect.pm_.c:101
#: ../../standalone/drakTermServ_.c:173 ../../standalone/drakTermServ_.c:300
-#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:3513
-#: ../../standalone/drakbackup_.c:4290 ../../standalone/drakconnect_.c:108
+#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4191
+#: ../../standalone/drakbackup_.c:4952 ../../standalone/drakconnect_.c:108
#: ../../standalone/drakconnect_.c:140 ../../standalone/drakconnect_.c:296
#: ../../standalone/drakconnect_.c:435 ../../standalone/drakconnect_.c:521
#: ../../standalone/drakconnect_.c:564 ../../standalone/drakconnect_.c:667
#: ../../standalone/drakfloppy_.c:376 ../../standalone/drakfont_.c:612
#: ../../standalone/drakfont_.c:799 ../../standalone/drakfont_.c:876
-#: ../../standalone/drakfont_.c:963 ../../standalone/logdrake_.c:521
+#: ../../standalone/drakfont_.c:963 ../../standalone/logdrake_.c:519
msgid "OK"
msgstr "Gerai"
-#: ../../bootlook.pm_.c:403
+#: ../../bootlook.pm_.c:407
#, c-format
msgid "can not open /etc/inittab for reading: %s"
msgstr "negaliu atidaryti /etc/inittab skaitymui: %s"
@@ -1468,49 +1485,54 @@ msgstr "nuoseklioji"
msgid "United States"
msgstr ""
-#: ../../detect_devices.pm_.c:599 ../../detect_devices.pm_.c:641
-#: ../../detect_devices.pm_.c:803
-msgid "Unknown Model"
-msgstr ""
-
#: ../../diskdrake/dav.pm_.c:23
#, fuzzy
msgid "New"
msgstr "naujas"
-#: ../../diskdrake/dav.pm_.c:57
+#: ../../diskdrake/dav.pm_.c:59 ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/smbnfs_gtk.pm_.c:81
+msgid "Unmount"
+msgstr "Atjungti"
+
+#: ../../diskdrake/dav.pm_.c:60 ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/smbnfs_gtk.pm_.c:82
+msgid "Mount"
+msgstr "Primontuoti"
+
+#: ../../diskdrake/dav.pm_.c:61
#, fuzzy
msgid "Server"
msgstr "serveris"
-#: ../../diskdrake/dav.pm_.c:58 ../../diskdrake/interactive.pm_.c:375
-#: ../../diskdrake/interactive.pm_.c:558 ../../diskdrake/interactive.pm_.c:585
+#: ../../diskdrake/dav.pm_.c:62 ../../diskdrake/interactive.pm_.c:379
+#: ../../diskdrake/interactive.pm_.c:568 ../../diskdrake/interactive.pm_.c:595
#: ../../diskdrake/removable.pm_.c:24 ../../diskdrake/removable_gtk.pm_.c:15
#: ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr "Prijungimo vieta"
-#: ../../diskdrake/dav.pm_.c:68
+#: ../../diskdrake/dav.pm_.c:81
#, fuzzy
msgid "Please enter the WebDAV server URL"
msgstr "Prađom iđbandyti pelæ"
-#: ../../diskdrake/dav.pm_.c:71
+#: ../../diskdrake/dav.pm_.c:84
msgid "The URL must begin with http:// or https://"
msgstr ""
-#: ../../diskdrake/dav.pm_.c:92
+#: ../../diskdrake/dav.pm_.c:105
#, fuzzy
msgid "Server: "
msgstr "serveris"
-#: ../../diskdrake/dav.pm_.c:93 ../../diskdrake/interactive.pm_.c:435
-#: ../../diskdrake/interactive.pm_.c:1079
-#: ../../diskdrake/interactive.pm_.c:1153
+#: ../../diskdrake/dav.pm_.c:106 ../../diskdrake/interactive.pm_.c:440
+#: ../../diskdrake/interactive.pm_.c:1089
+#: ../../diskdrake/interactive.pm_.c:1164
msgid "Mount point: "
msgstr "Montavimo tađkas: "
-#: ../../diskdrake/dav.pm_.c:94 ../../diskdrake/interactive.pm_.c:1159
+#: ../../diskdrake/dav.pm_.c:107 ../../diskdrake/interactive.pm_.c:1170
#, c-format
msgid "Options: %s"
msgstr "Pasirinktys: %s"
@@ -1519,8 +1541,9 @@ msgstr "Pasirinktys: %s"
msgid "Please make a backup of your data first"
msgstr "Pradțiai padaryk atsarginæ savo duomenű kopijà"
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:924
-#: ../../diskdrake/interactive.pm_.c:933 ../../diskdrake/interactive.pm_.c:999
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:934
+#: ../../diskdrake/interactive.pm_.c:943
+#: ../../diskdrake/interactive.pm_.c:1009
msgid "Read carefully!"
msgstr "Perskaityk ádëmiai!"
@@ -1559,10 +1582,15 @@ msgid "Please click on a partition"
msgstr "Prađom spragtelëti ant skirsnio"
#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
-#: ../../install_steps_gtk.pm_.c:471
+#: ../../install_steps_gtk.pm_.c:465
msgid "Details"
msgstr "Detalës"
+#: ../../diskdrake/hd_gtk.pm_.c:252
+#, fuzzy
+msgid "No hard drives found"
+msgstr "Vietinis spausdintuvas"
+
#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Ext2"
msgstr "Ext2"
@@ -1588,13 +1616,13 @@ msgstr "SunOS"
msgid "Swap"
msgstr "Swap"
-#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1105
msgid "Empty"
msgstr "Tuđèias"
-#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:331
-#: ../../install_steps_gtk.pm_.c:389 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1679
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:325
+#: ../../install_steps_gtk.pm_.c:383 ../../mouse.pm_.c:165
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1754
msgid "Other"
msgstr "Kitas"
@@ -1602,12 +1630,12 @@ msgstr "Kitas"
msgid "Filesystem types:"
msgstr "Bylű sistemos tipai:"
-#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:397
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:402
msgid "Create"
msgstr "Sukurti"
-#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:376
-#: ../../diskdrake/interactive.pm_.c:521 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:380
+#: ../../diskdrake/interactive.pm_.c:531 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "Rûđis"
@@ -1617,7 +1645,7 @@ msgstr "Rûđis"
msgid "Use ``%s'' instead"
msgstr "Naudok „%sŽ vietoj to"
-#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:389
msgid "Delete"
msgstr "Iđtrinti"
@@ -1625,83 +1653,83 @@ msgstr "Iđtrinti"
msgid "Use ``Unmount'' first"
msgstr "Pirmiau naudok „NumontuotiŽ"
-#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:513
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:518
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
msgstr "Pakeitus skirsnio %s tipà, visi duomenys jame bus prarasti"
-#: ../../diskdrake/interactive.pm_.c:173
+#: ../../diskdrake/interactive.pm_.c:174
#, fuzzy
msgid "Choose a partition"
msgstr "Pasirink veiksmà"
-#: ../../diskdrake/interactive.pm_.c:173
+#: ../../diskdrake/interactive.pm_.c:174
#, fuzzy
msgid "Choose another partition"
msgstr "Sukurti naujà skirsná"
-#: ../../diskdrake/interactive.pm_.c:198
+#: ../../diskdrake/interactive.pm_.c:199
#, fuzzy
msgid "Exit"
msgstr "Ext2"
-#: ../../diskdrake/interactive.pm_.c:220
+#: ../../diskdrake/interactive.pm_.c:221
msgid "Toggle to expert mode"
msgstr "Pakeisti á eksperto rețimà"
-#: ../../diskdrake/interactive.pm_.c:220
+#: ../../diskdrake/interactive.pm_.c:221
msgid "Toggle to normal mode"
msgstr "Pakeisti á normalű rețimà"
-#: ../../diskdrake/interactive.pm_.c:220
+#: ../../diskdrake/interactive.pm_.c:221
msgid "Undo"
msgstr "Sugráțti"
-#: ../../diskdrake/interactive.pm_.c:239
+#: ../../diskdrake/interactive.pm_.c:240
msgid "Continue anyway?"
msgstr "Ar vis tiek tæsti?"
-#: ../../diskdrake/interactive.pm_.c:244
+#: ../../diskdrake/interactive.pm_.c:245
msgid "Quit without saving"
msgstr "Iđeiti neiđsaugojus"
-#: ../../diskdrake/interactive.pm_.c:244
+#: ../../diskdrake/interactive.pm_.c:245
msgid "Quit without writing the partition table?"
msgstr "Iđeiti neiđsaugojus skirsniű lentelës?"
-#: ../../diskdrake/interactive.pm_.c:249
+#: ../../diskdrake/interactive.pm_.c:250
#, fuzzy
msgid "Do you want to save /etc/fstab modifications"
msgstr "Ar tu nori iđbandyti nustatymus?"
-#: ../../diskdrake/interactive.pm_.c:261
+#: ../../diskdrake/interactive.pm_.c:263
msgid "Auto allocate"
msgstr "Automatinis suskirstymas"
-#: ../../diskdrake/interactive.pm_.c:261
+#: ../../diskdrake/interactive.pm_.c:263
msgid "Clear all"
msgstr "Iđvalyti viskà"
-#: ../../diskdrake/interactive.pm_.c:261
+#: ../../diskdrake/interactive.pm_.c:263
#: ../../install_steps_interactive.pm_.c:214
msgid "More"
msgstr "Dar"
-#: ../../diskdrake/interactive.pm_.c:264
+#: ../../diskdrake/interactive.pm_.c:267
#, fuzzy
msgid "Hard drive information"
msgstr "Pađto informacijà"
-#: ../../diskdrake/interactive.pm_.c:294
+#: ../../diskdrake/interactive.pm_.c:298
msgid "All primary partitions are used"
msgstr "Visi pirminiai skirsniai yra naudojami"
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:299
msgid "I can't add any more partition"
msgstr "Ađ daugiau negaliu pridëti në vieno skirsnio"
-#: ../../diskdrake/interactive.pm_.c:296
+#: ../../diskdrake/interactive.pm_.c:300
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -1709,35 +1737,35 @@ msgstr ""
"Jei nori turëti daugiau skirsniű, prađom iđtrinti vienà, kad vietoj jo "
"galëtum sukurti iđplëstiná"
-#: ../../diskdrake/interactive.pm_.c:306
+#: ../../diskdrake/interactive.pm_.c:310
#, fuzzy
msgid "Save partition table"
msgstr "Árađyti skirsniű lentelæ"
-#: ../../diskdrake/interactive.pm_.c:307
+#: ../../diskdrake/interactive.pm_.c:311
#, fuzzy
msgid "Restore partition table"
msgstr "Iđgelbëti skirsniű lentelæ"
-#: ../../diskdrake/interactive.pm_.c:308
+#: ../../diskdrake/interactive.pm_.c:312
msgid "Rescue partition table"
msgstr "Iđgelbëti skirsniű lentelæ"
-#: ../../diskdrake/interactive.pm_.c:310
+#: ../../diskdrake/interactive.pm_.c:314
#, fuzzy
msgid "Reload partition table"
msgstr "Iđgelbëti skirsniű lentelæ"
-#: ../../diskdrake/interactive.pm_.c:315
+#: ../../diskdrake/interactive.pm_.c:319
#, fuzzy
msgid "Removable media automounting"
msgstr "Iđimamű laikmenű automatinis montavimas"
-#: ../../diskdrake/interactive.pm_.c:324 ../../diskdrake/interactive.pm_.c:344
+#: ../../diskdrake/interactive.pm_.c:328 ../../diskdrake/interactive.pm_.c:348
msgid "Select file"
msgstr "Pasirink bylà"
-#: ../../diskdrake/interactive.pm_.c:331
+#: ../../diskdrake/interactive.pm_.c:335
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1745,11 +1773,11 @@ msgstr ""
"Atsarginë skirsniű lentelë nëra tokio paties dydțio\n"
"Vis tiek tæsti?"
-#: ../../diskdrake/interactive.pm_.c:345
+#: ../../diskdrake/interactive.pm_.c:349
msgid "Warning"
msgstr "Dëmesio"
-#: ../../diskdrake/interactive.pm_.c:346
+#: ../../diskdrake/interactive.pm_.c:350
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1757,114 +1785,106 @@ msgstr ""
"Ádëk diskelá á kaupiklá\n"
"Visi duomenys diskelyje bus prarasti"
-#: ../../diskdrake/interactive.pm_.c:357
+#: ../../diskdrake/interactive.pm_.c:361
msgid "Trying to rescue partition table"
msgstr "Bandau iđgelbëti skirsniű lentelæ"
-#: ../../diskdrake/interactive.pm_.c:363
+#: ../../diskdrake/interactive.pm_.c:367
#, fuzzy
msgid "Detailed information"
msgstr "Pađto informacijà"
-#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:652
+#: ../../diskdrake/interactive.pm_.c:382 ../../diskdrake/interactive.pm_.c:662
msgid "Resize"
msgstr "Pakeisti dydá"
-#: ../../diskdrake/interactive.pm_.c:379 ../../diskdrake/interactive.pm_.c:705
+#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/interactive.pm_.c:715
msgid "Move"
msgstr "Perkelti"
-#: ../../diskdrake/interactive.pm_.c:380
+#: ../../diskdrake/interactive.pm_.c:384
msgid "Format"
msgstr "Formatuoti"
-#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/smbnfs_gtk.pm_.c:82
-msgid "Mount"
-msgstr "Primontuoti"
-
-#: ../../diskdrake/interactive.pm_.c:382
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Add to RAID"
msgstr "Pridëti á RAID"
-#: ../../diskdrake/interactive.pm_.c:383
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Add to LVM"
msgstr "Pridëti á LVM"
-#: ../../diskdrake/interactive.pm_.c:384 ../../diskdrake/smbnfs_gtk.pm_.c:81
-msgid "Unmount"
-msgstr "Atjungti"
-
-#: ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/interactive.pm_.c:390
msgid "Remove from RAID"
msgstr "Pađalinti iđ RAID"
-#: ../../diskdrake/interactive.pm_.c:387
+#: ../../diskdrake/interactive.pm_.c:391
msgid "Remove from LVM"
msgstr "Pađalinti iđ LVM"
-#: ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/interactive.pm_.c:392
msgid "Modify RAID"
msgstr "Taisyti RAID"
-#: ../../diskdrake/interactive.pm_.c:389
+#: ../../diskdrake/interactive.pm_.c:393
msgid "Use for loopback"
msgstr "Naudoti loopback'ui"
-#: ../../diskdrake/interactive.pm_.c:428
+#: ../../diskdrake/interactive.pm_.c:433
msgid "Create a new partition"
msgstr "Sukurti naujà skirsná"
-#: ../../diskdrake/interactive.pm_.c:431
+#: ../../diskdrake/interactive.pm_.c:436
msgid "Start sector: "
msgstr "Pradțios sektorius: "
-#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:805
+#: ../../diskdrake/interactive.pm_.c:438 ../../diskdrake/interactive.pm_.c:815
msgid "Size in MB: "
msgstr "Dydis (MB): "
-#: ../../diskdrake/interactive.pm_.c:434 ../../diskdrake/interactive.pm_.c:806
+#: ../../diskdrake/interactive.pm_.c:439 ../../diskdrake/interactive.pm_.c:816
msgid "Filesystem type: "
msgstr "Bylű sistemos tipas: "
-#: ../../diskdrake/interactive.pm_.c:439
+#: ../../diskdrake/interactive.pm_.c:444
msgid "Preference: "
msgstr "Pirmenybë: "
-#: ../../diskdrake/interactive.pm_.c:464
+#: ../../diskdrake/interactive.pm_.c:469
msgid ""
"You can't create a new partition\n"
"(since you reached the maximal number of primary partitions).\n"
"First remove a primary partition and create an extended partition."
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:494
+#: ../../diskdrake/interactive.pm_.c:499
#, fuzzy
msgid "Remove the loopback file?"
msgstr "Suțymima loopback byla %s"
-#: ../../diskdrake/interactive.pm_.c:519
+#: ../../diskdrake/interactive.pm_.c:529
msgid "Change partition type"
msgstr "Pakeisti skirsnio tipà"
-#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:530 ../../diskdrake/removable.pm_.c:48
msgid "Which filesystem do you want?"
msgstr "Kokios bylű sistemos tu nori?"
-#: ../../diskdrake/interactive.pm_.c:526
+#: ../../diskdrake/interactive.pm_.c:536
msgid "Switching from ext2 to ext3"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:556
+#: ../../diskdrake/interactive.pm_.c:566
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "Kur nori primontuoti loopback bylà %s?"
-#: ../../diskdrake/interactive.pm_.c:557
+#: ../../diskdrake/interactive.pm_.c:567
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Kur nori primontuoti árenginá %s?"
-#: ../../diskdrake/interactive.pm_.c:563
+#: ../../diskdrake/interactive.pm_.c:573
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1872,138 +1892,138 @@ msgstr ""
"Negaliu nuimti montavimo tađko, nes đis skirsnis naudojamas loopback'ui.\n"
"Pirma pađalink loopback'us"
-#: ../../diskdrake/interactive.pm_.c:584
+#: ../../diskdrake/interactive.pm_.c:594
#, fuzzy, c-format
msgid "Where do you want to mount %s?"
msgstr "Kur nori primontuoti árenginá %s?"
-#: ../../diskdrake/interactive.pm_.c:608
+#: ../../diskdrake/interactive.pm_.c:618
msgid "Computing FAT filesystem bounds"
msgstr "Skaièiuojami FAT bylű sistemos rëțiai"
-#: ../../diskdrake/interactive.pm_.c:608 ../../diskdrake/interactive.pm_.c:667
-#: ../../install_interactive.pm_.c:131
+#: ../../diskdrake/interactive.pm_.c:618 ../../diskdrake/interactive.pm_.c:677
+#: ../../install_interactive.pm_.c:133
msgid "Resizing"
msgstr "Keièiamas dydis"
-#: ../../diskdrake/interactive.pm_.c:640
+#: ../../diskdrake/interactive.pm_.c:650
msgid "This partition is not resizeable"
msgstr "Đio skirsnio dydțio neina pakeisti"
-#: ../../diskdrake/interactive.pm_.c:645
+#: ../../diskdrake/interactive.pm_.c:655
msgid "All data on this partition should be backed-up"
msgstr "Pasidaryk atsarginæ duomenű điame skirsnyje kopijà"
-#: ../../diskdrake/interactive.pm_.c:647
+#: ../../diskdrake/interactive.pm_.c:657
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr "Pakeitus skirsnio %s dydá, visi duomenys jame bus prarasti"
-#: ../../diskdrake/interactive.pm_.c:652
+#: ../../diskdrake/interactive.pm_.c:662
msgid "Choose the new size"
msgstr "Pasirink naujà dydá"
-#: ../../diskdrake/interactive.pm_.c:653
+#: ../../diskdrake/interactive.pm_.c:663
#, fuzzy
msgid "New size in MB: "
msgstr "Dydis (MB): "
-#: ../../diskdrake/interactive.pm_.c:706
+#: ../../diskdrake/interactive.pm_.c:716
msgid "Which disk do you want to move it to?"
msgstr "Á kurá diskà tu nori já perkelti?"
-#: ../../diskdrake/interactive.pm_.c:707
+#: ../../diskdrake/interactive.pm_.c:717
msgid "Sector"
msgstr "Sektorius"
-#: ../../diskdrake/interactive.pm_.c:708
+#: ../../diskdrake/interactive.pm_.c:718
msgid "Which sector do you want to move it to?"
msgstr "Á kurá sektoriű tu nori já perkelti?"
-#: ../../diskdrake/interactive.pm_.c:711
+#: ../../diskdrake/interactive.pm_.c:721
msgid "Moving"
msgstr "Perkeliama"
-#: ../../diskdrake/interactive.pm_.c:711
+#: ../../diskdrake/interactive.pm_.c:721
msgid "Moving partition..."
msgstr "Perkeliamas skirsnis..."
-#: ../../diskdrake/interactive.pm_.c:728
+#: ../../diskdrake/interactive.pm_.c:738
msgid "Choose an existing RAID to add to"
msgstr "Pasirink jau esantá RAID, prie kurio pridëti"
-#: ../../diskdrake/interactive.pm_.c:729 ../../diskdrake/interactive.pm_.c:746
+#: ../../diskdrake/interactive.pm_.c:739 ../../diskdrake/interactive.pm_.c:756
msgid "new"
msgstr "naujas"
-#: ../../diskdrake/interactive.pm_.c:744
+#: ../../diskdrake/interactive.pm_.c:754
msgid "Choose an existing LVM to add to"
msgstr "Pasirink jau esantá LVM, prie kurio pridëti"
-#: ../../diskdrake/interactive.pm_.c:749
+#: ../../diskdrake/interactive.pm_.c:759
msgid "LVM name?"
msgstr "LVM vardas?"
-#: ../../diskdrake/interactive.pm_.c:790
+#: ../../diskdrake/interactive.pm_.c:800
msgid "This partition can't be used for loopback"
msgstr "Đis skirsnis negali bûti naudojamas loopback'ui"
-#: ../../diskdrake/interactive.pm_.c:803
+#: ../../diskdrake/interactive.pm_.c:813
msgid "Loopback"
msgstr "Loopback"
-#: ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:814
msgid "Loopback file name: "
msgstr "Loopback bylos vardas: "
-#: ../../diskdrake/interactive.pm_.c:809
+#: ../../diskdrake/interactive.pm_.c:819
#, fuzzy
msgid "Give a file name"
msgstr "Tikras vardas"
-#: ../../diskdrake/interactive.pm_.c:812
+#: ../../diskdrake/interactive.pm_.c:822
msgid "File already used by another loopback, choose another one"
msgstr "Byla jau naudojama kitam loopback'ui, pasirink kità"
-#: ../../diskdrake/interactive.pm_.c:813
+#: ../../diskdrake/interactive.pm_.c:823
msgid "File already exists. Use it?"
msgstr "Đi byla jau yra. Naudoti jà?"
-#: ../../diskdrake/interactive.pm_.c:836
+#: ../../diskdrake/interactive.pm_.c:846
#, fuzzy
msgid "Mount options"
msgstr "Modulio parinktys:"
-#: ../../diskdrake/interactive.pm_.c:843
+#: ../../diskdrake/interactive.pm_.c:853
msgid "Various"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:907 ../../standalone/drakfloppy_.c:103
+#: ../../diskdrake/interactive.pm_.c:917 ../../standalone/drakfloppy_.c:103
msgid "device"
msgstr "árenginys"
-#: ../../diskdrake/interactive.pm_.c:908
+#: ../../diskdrake/interactive.pm_.c:918
msgid "level"
msgstr "lygis"
-#: ../../diskdrake/interactive.pm_.c:909
+#: ../../diskdrake/interactive.pm_.c:919
msgid "chunk size"
msgstr "gabalo dydis"
-#: ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:934
msgid "Be careful: this operation is dangerous."
msgstr "Bûk atsargus: đi operacija yra pavojinga."
-#: ../../diskdrake/interactive.pm_.c:939
+#: ../../diskdrake/interactive.pm_.c:949
msgid "What type of partitioning?"
msgstr "Kokio tipo skirsniű skaidymas?"
-#: ../../diskdrake/interactive.pm_.c:955
+#: ../../diskdrake/interactive.pm_.c:965
#, fuzzy, c-format
msgid "The package %s is needed. Install it?"
msgstr "Kokius jûs norite ádiegti paketus"
-#: ../../diskdrake/interactive.pm_.c:969
+#: ../../diskdrake/interactive.pm_.c:979
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -2013,7 +2033,7 @@ msgstr ""
"Deja, neámanoma sukurti /boot taip toli kaupiklyje (cilindre >1024).\n"
"Arba naudok LILO ir tai neveiks, arba nenaudok LILO ir tau nereikës /boot"
-#: ../../diskdrake/interactive.pm_.c:973
+#: ../../diskdrake/interactive.pm_.c:983
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -2024,7 +2044,7 @@ msgstr ""
"disko kaupiklio cilindro, bet tu neturi /boot skirsnio. Jeigu planuoji\n"
"naudoti LILO ákrovos programà, neuțmirđk pridëti /boot skirsnio"
-#: ../../diskdrake/interactive.pm_.c:979
+#: ../../diskdrake/interactive.pm_.c:989
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
@@ -2034,137 +2054,137 @@ msgstr ""
"Jokia ákrovos tvarkyklë negali su ja dirbti be /boot skirsnio.\n"
"Taigi, nepamirđk sukurti /boot skirsnio"
-#: ../../diskdrake/interactive.pm_.c:999
+#: ../../diskdrake/interactive.pm_.c:1009
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "Árenginio %s skirsniű lentelë bus árađyta á diskà!"
-#: ../../diskdrake/interactive.pm_.c:1003
+#: ../../diskdrake/interactive.pm_.c:1013
msgid "You'll need to reboot before the modification can take place"
msgstr "Tau reikia perkrauti, kad pakeitimai bûtű veiksmingi"
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1024
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr "Suțymëjus skirsná %s, visi duomenys jame bus prarasti"
-#: ../../diskdrake/interactive.pm_.c:1016
+#: ../../diskdrake/interactive.pm_.c:1026
msgid "Formatting"
msgstr "Suțymima"
-#: ../../diskdrake/interactive.pm_.c:1017
+#: ../../diskdrake/interactive.pm_.c:1027
#, c-format
msgid "Formatting loopback file %s"
msgstr "Suțymima loopback byla %s"
-#: ../../diskdrake/interactive.pm_.c:1018
-#: ../../install_steps_interactive.pm_.c:476
+#: ../../diskdrake/interactive.pm_.c:1028
+#: ../../install_steps_interactive.pm_.c:459
#, c-format
msgid "Formatting partition %s"
msgstr "Suțymimas skirsnis %s"
-#: ../../diskdrake/interactive.pm_.c:1029
+#: ../../diskdrake/interactive.pm_.c:1039
#, fuzzy
msgid "Hide files"
msgstr "mkraid nepavyko"
-#: ../../diskdrake/interactive.pm_.c:1029
+#: ../../diskdrake/interactive.pm_.c:1039
#, fuzzy
msgid "Move files to the new partition"
msgstr "Naujiems skirsniams nepakanka laisvos vietos"
-#: ../../diskdrake/interactive.pm_.c:1030
+#: ../../diskdrake/interactive.pm_.c:1040
#, c-format
msgid ""
"Directory %s already contains data\n"
"(%s)"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1041
+#: ../../diskdrake/interactive.pm_.c:1051
#, fuzzy
msgid "Moving files to the new partition"
msgstr "Naujiems skirsniams nepakanka laisvos vietos"
-#: ../../diskdrake/interactive.pm_.c:1045
+#: ../../diskdrake/interactive.pm_.c:1055
#, c-format
msgid "Copying %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1049
+#: ../../diskdrake/interactive.pm_.c:1059
#, fuzzy, c-format
msgid "Removing %s"
msgstr "Skiriamoji geba: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1059
+#: ../../diskdrake/interactive.pm_.c:1069
#, c-format
msgid "partition %s is now known as %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1080
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1090
+#: ../../diskdrake/interactive.pm_.c:1149
msgid "Device: "
msgstr "Árenginys: "
-#: ../../diskdrake/interactive.pm_.c:1081
+#: ../../diskdrake/interactive.pm_.c:1091
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "DOS kaupiklio raidë: %s (spëjama)\n"
-#: ../../diskdrake/interactive.pm_.c:1085
-#: ../../diskdrake/interactive.pm_.c:1093
-#: ../../diskdrake/interactive.pm_.c:1157
+#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1103
+#: ../../diskdrake/interactive.pm_.c:1168
msgid "Type: "
msgstr "Tipas: "
-#: ../../diskdrake/interactive.pm_.c:1089
+#: ../../diskdrake/interactive.pm_.c:1099
msgid "Name: "
msgstr "Pavadinimas: "
-#: ../../diskdrake/interactive.pm_.c:1097
+#: ../../diskdrake/interactive.pm_.c:1107
#, c-format
msgid "Start: sector %s\n"
msgstr "Pradția: sektorius %s\n"
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1108
#, c-format
msgid "Size: %s"
msgstr "Dydis: %s"
-#: ../../diskdrake/interactive.pm_.c:1100
+#: ../../diskdrake/interactive.pm_.c:1110
#, c-format
msgid ", %s sectors"
msgstr ", %s sektoriai(-iű)"
-#: ../../diskdrake/interactive.pm_.c:1102
+#: ../../diskdrake/interactive.pm_.c:1112
#, fuzzy, c-format
msgid "Cylinder %d to %d\n"
msgstr "Nuo cilindro %d iki cilindro %d\n"
-#: ../../diskdrake/interactive.pm_.c:1103
+#: ../../diskdrake/interactive.pm_.c:1113
msgid "Formatted\n"
msgstr "Suțymëtas\n"
-#: ../../diskdrake/interactive.pm_.c:1104
+#: ../../diskdrake/interactive.pm_.c:1114
msgid "Not formatted\n"
msgstr "Nesuțymëtas\n"
-#: ../../diskdrake/interactive.pm_.c:1105
+#: ../../diskdrake/interactive.pm_.c:1115
msgid "Mounted\n"
msgstr "Primontuotas\n"
-#: ../../diskdrake/interactive.pm_.c:1106
+#: ../../diskdrake/interactive.pm_.c:1116
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1108
+#: ../../diskdrake/interactive.pm_.c:1118
#, fuzzy, c-format
msgid ""
"Loopback file(s):\n"
" %s\n"
msgstr "Loopback byla(os): %s\n"
-#: ../../diskdrake/interactive.pm_.c:1109
+#: ../../diskdrake/interactive.pm_.c:1119
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -2172,27 +2192,27 @@ msgstr ""
"Skirsnis, ákraunamas pagal nutylëjimà\n"
" (MS-DOS uțkrovimui, ne LILO)\n"
-#: ../../diskdrake/interactive.pm_.c:1111
+#: ../../diskdrake/interactive.pm_.c:1121
#, c-format
msgid "Level %s\n"
msgstr "Lygis %s\n"
-#: ../../diskdrake/interactive.pm_.c:1112
+#: ../../diskdrake/interactive.pm_.c:1122
#, c-format
msgid "Chunk size %s\n"
msgstr "Gabalo dydis %s\n"
-#: ../../diskdrake/interactive.pm_.c:1113
+#: ../../diskdrake/interactive.pm_.c:1123
#, c-format
msgid "RAID-disks %s\n"
msgstr "RAID kaupikliai %s\n"
-#: ../../diskdrake/interactive.pm_.c:1115
+#: ../../diskdrake/interactive.pm_.c:1125
#, c-format
msgid "Loopback file name: %s"
msgstr "Loopback bylos vardas: %s"
-#: ../../diskdrake/interactive.pm_.c:1118
+#: ../../diskdrake/interactive.pm_.c:1128
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -2204,7 +2224,7 @@ msgstr ""
"yra Tvarkyklës skirsnis\n"
"gariau palikite já ramybëje.\n"
-#: ../../diskdrake/interactive.pm_.c:1121
+#: ../../diskdrake/interactive.pm_.c:1131
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2216,60 +2236,64 @@ msgstr ""
"skirsnis yra skirtas jûsű\n"
"sistemos dvigubai ákrovai.\n"
-#: ../../diskdrake/interactive.pm_.c:1140
+#: ../../diskdrake/interactive.pm_.c:1150
+msgid "Read-only"
+msgstr ""
+
+#: ../../diskdrake/interactive.pm_.c:1151
#, c-format
msgid "Size: %s\n"
msgstr "Dydis: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1141
+#: ../../diskdrake/interactive.pm_.c:1152
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Geometrija: %s cilindrű(-ai), %s galvuèiű(-os), %s sektoriű(-iai)\n"
-#: ../../diskdrake/interactive.pm_.c:1142
+#: ../../diskdrake/interactive.pm_.c:1153
msgid "Info: "
msgstr "Info: "
-#: ../../diskdrake/interactive.pm_.c:1143
+#: ../../diskdrake/interactive.pm_.c:1154
#, c-format
msgid "LVM-disks %s\n"
msgstr "LVM kaupikliai %s\n"
-#: ../../diskdrake/interactive.pm_.c:1144
+#: ../../diskdrake/interactive.pm_.c:1155
#, c-format
msgid "Partition table type: %s\n"
msgstr "Skirsniű lentelës tipas: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1145
+#: ../../diskdrake/interactive.pm_.c:1156
#, fuzzy, c-format
msgid "on channel %d id %d\n"
msgstr "ant magistralës %d id %d\n"
-#: ../../diskdrake/interactive.pm_.c:1175
+#: ../../diskdrake/interactive.pm_.c:1186
#, fuzzy
msgid "Filesystem encryption key"
msgstr "Bylű sistemos tipas: "
-#: ../../diskdrake/interactive.pm_.c:1176
+#: ../../diskdrake/interactive.pm_.c:1187
msgid "Choose your filesystem encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1179
+#: ../../diskdrake/interactive.pm_.c:1190
#, fuzzy, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr ""
"Đis slaptațodis yra pernelyg paprastas (turi bûti bent %d simboliű ilgio)"
-#: ../../diskdrake/interactive.pm_.c:1180
+#: ../../diskdrake/interactive.pm_.c:1191
#, fuzzy
msgid "The encryption keys do not match"
msgstr "Slaptațodțiai nesutampa"
-#: ../../diskdrake/interactive.pm_.c:1183
+#: ../../diskdrake/interactive.pm_.c:1194
msgid "Encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1184
+#: ../../diskdrake/interactive.pm_.c:1195
msgid "Encryption key (again)"
msgstr ""
@@ -2308,7 +2332,7 @@ msgid ""
"Please enter your username, password and domain name to access this host."
msgstr ""
-#: ../../diskdrake/smbnfs_gtk.pm_.c:178
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3527
#, fuzzy
msgid "Username"
msgstr "Vartotojo vardas"
@@ -2323,23 +2347,23 @@ msgstr "NIS domenas"
msgid "Search servers"
msgstr "DNS serveris"
-#: ../../fs.pm_.c:552 ../../fs.pm_.c:562 ../../fs.pm_.c:566 ../../fs.pm_.c:570
-#: ../../fs.pm_.c:574 ../../fs.pm_.c:578
+#: ../../fs.pm_.c:544 ../../fs.pm_.c:554 ../../fs.pm_.c:558 ../../fs.pm_.c:562
+#: ../../fs.pm_.c:566 ../../fs.pm_.c:570
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s %s suțymëjimas nepavyko"
-#: ../../fs.pm_.c:615
+#: ../../fs.pm_.c:607
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "Neținau, kaip suțymëti %s tipu %s"
-#: ../../fs.pm_.c:687 ../../fs.pm_.c:731
+#: ../../fs.pm_.c:681 ../../fs.pm_.c:724
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../fs.pm_.c:746 ../../partition_table.pm_.c:602
+#: ../../fs.pm_.c:739 ../../partition_table.pm_.c:598
#, c-format
msgid "error unmounting %s: %s"
msgstr "klaida numontuojant %s: %s"
@@ -2356,33 +2380,50 @@ msgstr ""
msgid "server"
msgstr "serveris"
-#: ../../fsedit.pm_.c:472
+#: ../../fsedit.pm_.c:240
+#, fuzzy, c-format
+msgid ""
+"I can't read the partition table of device %s, it's too corrupted for me :(\n"
+"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
+"The other solution is to not allow DrakX to modify the partition table.\n"
+"(the error is %s)\n"
+"\n"
+"Do you agree to loose all the partitions?\n"
+msgstr ""
+"Ađ negaliu perskaityti skirsniű lentelës, ji pernelyg sugadinta :(\n"
+"Galiu pabandyti iđvalyti blogus skirsnius (VISI DUOMENYS bus prarasti!)\n"
+"Kitas sprendimas -- neleisti DrakX taisyti skirsniű lentelæ.\n"
+"(klaida %s)\n"
+"\n"
+"Ar sutinki prarasti visus skirsnius?\n"
+
+#: ../../fsedit.pm_.c:501
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr "Tu negali naudoti JFS skirsniams, mațesniems nei 16MB"
-#: ../../fsedit.pm_.c:473
+#: ../../fsedit.pm_.c:502
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr "Tu negali naudoti ReiserFS skirsniams, mațesniems nei 32MB"
-#: ../../fsedit.pm_.c:492
+#: ../../fsedit.pm_.c:521
msgid "Mount points must begin with a leading /"
msgstr "Montavimo tađkai turi prasidëti /"
-#: ../../fsedit.pm_.c:493
+#: ../../fsedit.pm_.c:522
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Jau yra skirsnis su montavimo tađku %s\n"
-#: ../../fsedit.pm_.c:497
+#: ../../fsedit.pm_.c:526
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr ""
-#: ../../fsedit.pm_.c:499
+#: ../../fsedit.pm_.c:528
msgid "This directory should remain within the root filesystem"
msgstr "Đis katalogas turi pasilikti đakninëje bylű sistemoje"
-#: ../../fsedit.pm_.c:501
+#: ../../fsedit.pm_.c:530
#, fuzzy
msgid ""
"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
@@ -2390,232 +2431,278 @@ msgid ""
msgstr ""
"Tau reikia tikros bylű sistemos (ext2, reiserfs) điam montavimo tađkui\n"
-#: ../../fsedit.pm_.c:503
+#: ../../fsedit.pm_.c:532
#, fuzzy, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr ""
"Tau reikia tikros bylű sistemos (ext2, reiserfs) điam montavimo tađkui\n"
-#: ../../fsedit.pm_.c:570
+#: ../../fsedit.pm_.c:599
#, fuzzy
msgid "Not enough free space for auto-allocating"
msgstr "Naujiems skirsniams nepakanka laisvos vietos"
-#: ../../fsedit.pm_.c:572
+#: ../../fsedit.pm_.c:601
msgid "Nothing to do"
msgstr ""
-#: ../../fsedit.pm_.c:665
+#: ../../fsedit.pm_.c:694
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Klaida atidarant %s árađymui: %s"
-#: ../../fsedit.pm_.c:750
+#: ../../harddrake/sound.pm_.c:155
+msgid "No alternative driver"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:156
+#, c-format
+msgid "There's no known OSS/ALSA alternative driver for your sound card (%s)"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:158
+#, fuzzy
+msgid "Sound configuration"
+msgstr "LAN Konfiguravimas"
+
+#: ../../harddrake/sound.pm_.c:159
+#, c-format
msgid ""
-"An error occurred - no valid devices were found on which to create new "
-"filesystems. Please check your hardware for the cause of this problem"
+"Here you can select an alternative driver (either OSS or ALSA) for your "
+"sound card (%s)"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:162
+#, fuzzy
+msgid "Driver:"
+msgstr "Tvarkyklë"
+
+#: ../../harddrake/sound.pm_.c:173
+msgid "No known driver"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:174
+#, c-format
+msgid "There's no known driver for your sound card (%s)"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:177
+msgid "Unkown driver"
msgstr ""
-"Ávyko klaida -- nerasta tinkamű árenginiű, kur bûtű galima sukurti naujus "
-"skirsnius. Prađom pasitikrinti savo árangà dël galimo gedimo"
-#: ../../fsedit.pm_.c:773
-msgid "You don't have any partitions!"
-msgstr "Tu neturi jokiű skirsniű!"
+#: ../../harddrake/sound.pm_.c:178
+#, c-format
+msgid ""
+"The \"%s\" driver for your sound card is unlisted\n"
+"\n"
+"Please send the output of the \"lspcidrake -v\" command to\n"
+"<install at mandrakesoft dot com>\n"
+"with subject: unlisted sound driver \"%s\""
+msgstr ""
-#: ../../harddrake/ui.pm_.c:15
+#: ../../harddrake/ui.pm_.c:16
#, fuzzy
msgid "Model"
msgstr "Pelë"
-#: ../../harddrake/ui.pm_.c:15
+#: ../../harddrake/ui.pm_.c:16
#, fuzzy
msgid "hard disk model"
msgstr "Plokđtës mem (DMA)"
-#: ../../harddrake/ui.pm_.c:16
+#: ../../harddrake/ui.pm_.c:17
#, fuzzy
msgid "Channel"
msgstr "Nutraukti"
-#: ../../harddrake/ui.pm_.c:16
+#: ../../harddrake/ui.pm_.c:17
msgid "EIDE/SCSI channel"
msgstr ""
-#: ../../harddrake/ui.pm_.c:18
+#: ../../harddrake/ui.pm_.c:19
msgid "Bus"
msgstr ""
-#: ../../harddrake/ui.pm_.c:19
+#: ../../harddrake/ui.pm_.c:20
msgid ""
"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
msgstr ""
-#: ../../harddrake/ui.pm_.c:20
+#: ../../harddrake/ui.pm_.c:21
#, fuzzy
msgid "Module"
msgstr "Pelë"
-#: ../../harddrake/ui.pm_.c:20
+#: ../../harddrake/ui.pm_.c:21
msgid "the module of the GNU/Linux kernel that handle that device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:21
+#: ../../harddrake/ui.pm_.c:22
msgid "Media class"
msgstr ""
-#: ../../harddrake/ui.pm_.c:21
+#: ../../harddrake/ui.pm_.c:22
msgid "class of hardware device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:22 ../../printerdrake.pm_.c:1404
+#: ../../harddrake/ui.pm_.c:23 ../../printerdrake.pm_.c:1517
msgid "Description"
msgstr "Aprađymas"
-#: ../../harddrake/ui.pm_.c:22
+#: ../../harddrake/ui.pm_.c:23
msgid "this field describe the device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:24
+#: ../../harddrake/ui.pm_.c:25
#, fuzzy
msgid "Bus identification"
msgstr "Autentikacija"
-#: ../../harddrake/ui.pm_.c:25
+#: ../../harddrake/ui.pm_.c:26
msgid ""
-"- PCI and USB devices : this list the vendor, device, subvendor and "
-"subdevice PCI/USB ids"
+"- PCI and USB devices: this list the vendor, device, subvendor and subdevice "
+"PCI/USB ids"
msgstr ""
-#: ../../harddrake/ui.pm_.c:27
+#: ../../harddrake/ui.pm_.c:28
msgid "Location on the bus"
msgstr ""
-#: ../../harddrake/ui.pm_.c:28
+#: ../../harddrake/ui.pm_.c:29
msgid ""
"- pci devices: this gives the PCI slot, device and function of this card\n"
"- eide devices: the device is either a slave or a master device\n"
"- scsi devices: the scsi bus and the scsi device ids"
msgstr ""
-#: ../../harddrake/ui.pm_.c:31
+#: ../../harddrake/ui.pm_.c:32
#, fuzzy
msgid "Old device file"
msgstr "Pasirink bylà"
-#: ../../harddrake/ui.pm_.c:32
+#: ../../harddrake/ui.pm_.c:33
msgid "old static device name used in dev package"
msgstr ""
-#: ../../harddrake/ui.pm_.c:33
+#: ../../harddrake/ui.pm_.c:34
#, fuzzy
msgid "New devfs device"
msgstr "Đliuzo (gateway) árenginys"
-#: ../../harddrake/ui.pm_.c:34
+#: ../../harddrake/ui.pm_.c:35
msgid "new dinamic device name generated by incore kernel devfs"
msgstr ""
-#: ../../harddrake/ui.pm_.c:35
+#: ../../harddrake/ui.pm_.c:36
#, fuzzy
msgid "Number of buttons"
msgstr "2 klaviđű"
-#: ../../harddrake/ui.pm_.c:36
+#: ../../harddrake/ui.pm_.c:37
msgid "the vendor name of the device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:60
+#: ../../harddrake/ui.pm_.c:38
+#, fuzzy
+msgid "Alternative drivers"
+msgstr "Spausdinamas bandomasis puslapis..."
+
+#: ../../harddrake/ui.pm_.c:39
+msgid "the list of alternative drivers for this sound card"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:63
#, fuzzy
msgid "/_Quit"
msgstr "Iđeiti"
-#: ../../harddrake/ui.pm_.c:61 ../../harddrake/ui.pm_.c:62
-#: ../../harddrake/ui.pm_.c:68 ../../standalone/logdrake_.c:110
+#: ../../harddrake/ui.pm_.c:64 ../../harddrake/ui.pm_.c:65
+#: ../../harddrake/ui.pm_.c:71 ../../standalone/logdrake_.c:110
msgid "/_Help"
msgstr "/_Pagalba"
-#: ../../harddrake/ui.pm_.c:62
+#: ../../harddrake/ui.pm_.c:65
#, fuzzy
msgid "/_Help..."
msgstr "/_Pagalba"
-#: ../../harddrake/ui.pm_.c:63
+#: ../../harddrake/ui.pm_.c:66
msgid "Harddrake help"
msgstr ""
-#: ../../harddrake/ui.pm_.c:64
+#: ../../harddrake/ui.pm_.c:67
msgid ""
"Description of the fields:\n"
"\n"
msgstr ""
-#: ../../harddrake/ui.pm_.c:68
+#: ../../harddrake/ui.pm_.c:71
#, fuzzy
msgid "/_About..."
msgstr "/Pagalba/_Apie..."
-#: ../../harddrake/ui.pm_.c:69
+#: ../../harddrake/ui.pm_.c:72
msgid "About Harddrake"
msgstr ""
-#: ../../harddrake/ui.pm_.c:70
+#: ../../harddrake/ui.pm_.c:73
msgid ""
"This is HardDrake, a Mandrake hardware configuration tool.\n"
"Version:"
msgstr ""
-#: ../../harddrake/ui.pm_.c:71
+#: ../../harddrake/ui.pm_.c:74
#, fuzzy
msgid "Author:"
msgstr "Automatinis bandymas"
-#: ../../harddrake/ui.pm_.c:83
+#: ../../harddrake/ui.pm_.c:86
#, fuzzy
msgid "Harddrake2 version "
msgstr "Kieto disko nustatymas"
-#: ../../harddrake/ui.pm_.c:91
+#: ../../harddrake/ui.pm_.c:103
#, fuzzy
msgid "Detected hardware"
msgstr "Pațiûrëk árangos informacijà"
-#: ../../harddrake/ui.pm_.c:92
+#: ../../harddrake/ui.pm_.c:105
#, fuzzy
-msgid "Configure module"
-msgstr "Pelës nustatymas"
+msgid "Information"
+msgstr "Rodyti informacijà"
-#: ../../harddrake/ui.pm_.c:92
+#: ../../harddrake/ui.pm_.c:108
#, fuzzy
-msgid "Informations"
-msgstr "Rodyti informacijà"
+msgid "Configure module"
+msgstr "Pelës nustatymas"
-#: ../../harddrake/ui.pm_.c:92
+#: ../../harddrake/ui.pm_.c:109
msgid "Run config tool"
msgstr ""
-#: ../../harddrake/ui.pm_.c:96
+#: ../../harddrake/ui.pm_.c:113
#, fuzzy
msgid "Detection in progress"
msgstr "aptiktas prievade %s"
-#: ../../harddrake/ui.pm_.c:96 ../../interactive.pm_.c:388
+#: ../../harddrake/ui.pm_.c:113 ../../interactive.pm_.c:391
msgid "Please wait"
msgstr "Prađom palaukti"
-#: ../../harddrake/ui.pm_.c:139
+#: ../../harddrake/ui.pm_.c:156
msgid "primary"
msgstr ""
-#: ../../harddrake/ui.pm_.c:139
+#: ../../harddrake/ui.pm_.c:156
#, fuzzy
msgid "secondary"
msgstr "%d sekundës"
-#: ../../harddrake/ui.pm_.c:176
+#: ../../harddrake/ui.pm_.c:197
msgid "You can configure each parameter of the module here."
msgstr ""
-#: ../../harddrake/ui.pm_.c:192
+#: ../../harddrake/ui.pm_.c:213
#, fuzzy, c-format
msgid "Running \"%s\" ..."
msgstr "Skaitoma CUPS tvarkykliű duomenű bazë"
@@ -2648,16 +2735,16 @@ msgstr ""
#: ../../harddrake/v4l.pm_.c:213
#, fuzzy
-msgid "Card model :"
+msgid "Card model:"
msgstr "Plokđtës mem (DMA)"
#: ../../harddrake/v4l.pm_.c:214
#, fuzzy
-msgid "Tuner type :"
+msgid "Tuner type:"
msgstr "Pakeisti skirsnio tipà"
#: ../../harddrake/v4l.pm_.c:215
-msgid "Number of capture buffers :"
+msgid "Number of capture buffers:"
msgstr ""
#: ../../harddrake/v4l.pm_.c:215
@@ -2666,11 +2753,11 @@ msgstr ""
#: ../../harddrake/v4l.pm_.c:217
#, fuzzy
-msgid "PLL setting :"
+msgid "PLL setting:"
msgstr "suțymimas"
#: ../../harddrake/v4l.pm_.c:218
-msgid "Radio support :"
+msgid "Radio support:"
msgstr ""
#: ../../harddrake/v4l.pm_.c:218
@@ -2682,22 +2769,22 @@ msgid ""
"GNU/Linux is a multiuser system, and this means that each user can have his\n"
"own preferences, his own files and so on. You can read the ``User Guide''\n"
"to learn more. But unlike \"root\", which is the administrator, the users\n"
-"you will add here will not be entitled to change anything except their own\n"
-"files and their own configuration. You will have to create at least one\n"
-"regular user for yourself. That account is where you should log in for\n"
-"routine use. Although it is very practical to log in as \"root\" everyday,\n"
-"it may also be very dangerous! The slightest mistake could mean that your\n"
-"system would not work any more. If you make a serious mistake as a regular\n"
-"user, you may only lose some information, but not the entire system.\n"
+"you add here will not be entitled to change anything except their own files\n"
+"and their own configuration. You will have to create at least one regular\n"
+"user for yourself. That account is where you should log in for routine use.\n"
+"Although it is very practical to log in as \"root\" everyday, it may also\n"
+"be very dangerous! The slightest mistake could mean that your system would\n"
+"not work any more. If you make a serious mistake as a regular user, you may\n"
+"only lose some information, but not the entire system.\n"
"\n"
"First, you have to enter your real name. This is not mandatory, of course -\n"
"as you can actually enter whatever you want. DrakX will then take the first\n"
"word you have entered in the box and will bring it over to the \"User\n"
"name\". This is the name this particular user will use to log onto the\n"
"system. You can change it. You then have to enter a password here. A\n"
-"non-privileged (regular) user's password is not as crucial as \"root\"' one\n"
-"from a security point of view, but that is no reason to neglect it: after\n"
-"all, your files are at risk.\n"
+"non-privileged (regular) user's password is not as crucial as the \"root\"'\n"
+"one from a security point of view, but that is no reason to neglect it:\n"
+"after all, your files are at risk.\n"
"\n"
"If you click on \"Accept user\", you can then add as many as you want. Add\n"
"a user for each one of your friends: your father or your sister, for\n"
@@ -2817,7 +2904,7 @@ msgid ""
"to have a graphical workstation!\n"
"\n"
"Moving the mouse cursor over a group name will display a short explanatory\n"
-"text about that group. If you deselect all groups when performing a regular\n"
+"text about that group. If you unselect all groups when performing a regular\n"
"installation (by opposition to an upgrade), a dialog will pop up proposing\n"
"different options for a minimal installation:\n"
"\n"
@@ -2843,10 +2930,10 @@ msgstr ""
#: ../../help.pm_.c:128
msgid ""
-"Finally, depending on whether or not you selected individual packages, you\n"
-"will be presented a tree containing all packages classified by groups and\n"
-"subgroups. While browsing the tree, you can select entire groups,\n"
-"subgroups, or individual packages.\n"
+"Finally, depending on whether or not you chose to be able to select\n"
+"individual packages, you will be presented a tree containing all packages\n"
+"classified by groups and subgroups. While browsing the tree, you can select\n"
+"entire groups, subgroups, or individual packages.\n"
"\n"
"Whenever you select a package on the tree, a description appears on the\n"
"right. When your selection is finished, click the \"Install\" button which\n"
@@ -2881,11 +2968,11 @@ msgstr ""
#: ../../help.pm_.c:164
msgid ""
-"You are now proposed to set up your Internet/network connection. If you\n"
-"wish to connect your computer to the Internet or to a local network, click\n"
-"\"OK\". The autodetection of network devices and modem will be launched. If\n"
-"this detection fails, uncheck the \"Use auto detection\" box next time. You\n"
-"may also choose not to configure the network, or do it later; in that case,\n"
+"You are now able to set up your Internet/network connection. If you wish to\n"
+"connect your computer to the Internet or to a local network, click \"OK\".\n"
+"The autodetection of network devices and modem will be launched. If this\n"
+"detection fails, uncheck the \"Use auto detection\" box next time. You may\n"
+"also choose not to configure the network, or do it later; in that case,\n"
"simply click the \"Cancel\" button.\n"
"\n"
"Available connections are: traditional modem, ISDN modem, ADSL connection,\n"
@@ -2940,7 +3027,7 @@ msgstr ""
msgid ""
"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
"local time according to the time zone you selected. It is however possible\n"
-"to deactivate this by deselecting \"Hardware clock set to GMT\" so that the\n"
+"to deactivate this by unselecting \"Hardware clock set to GMT\" so that the\n"
"hardware clock is the same as the system clock. This is useful when the\n"
"machine is hosting another operating system like Windows.\n"
"\n"
@@ -2971,24 +3058,12 @@ msgid ""
"If you can see the message during the test, and answer \"Yes\", then DrakX\n"
"will proceed to the next step. If you cannot see the message, it simply\n"
"means that the configuration was wrong and the test will automatically end\n"
-"after 10 seconds, restoring the screen."
-msgstr ""
-
-#: ../../help.pm_.c:237
-msgid ""
-"The first time you try the X configuration, you may not be very satisfied\n"
-"with its display (screen is too small, shifted left or right...). Hence,\n"
-"even if X starts up correctly, DrakX then asks you if the configuration\n"
-"suits you. It will also propose to change it by displaying a list of valid\n"
-"modes it could find, asking you to select one.\n"
-"\n"
-"As a last resort, if you still cannot get X to work, choose \"Change\n"
-"graphics card\", select \"Unlisted card\", and when prompted on which\n"
-"server, choose \"FBDev\". This is a failsafe option which works with any\n"
-"modern graphics card. Then choose \"Test again\" to be sure."
+"after 10 seconds, restoring the screen. Refer then to the Video\n"
+"configuration section of the user guide for more information on how to\n"
+"configure your display."
msgstr ""
-#: ../../help.pm_.c:249
+#: ../../help.pm_.c:239
msgid ""
"Finally, you will be asked whether you want to see the graphical interface\n"
"at boot. Note this question will be asked even if you chose not to test the\n"
@@ -2997,7 +3072,7 @@ msgid ""
"configured."
msgstr ""
-#: ../../help.pm_.c:256
+#: ../../help.pm_.c:246
msgid ""
"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
@@ -3017,13 +3092,13 @@ msgid ""
"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
"password, or any other reason.\n"
"\n"
-"When you click on this step, you will be asked to enter a disk inside the\n"
-"drive. The floppy disk you will insert must be empty or contain data which\n"
-"you do not need. You will not have to format it since DrakX will rewrite\n"
-"the whole disk."
+"If you say \"Yes\", you will be asked to enter a disk inside the drive. The\n"
+"floppy disk you will insert must be empty or contain data which you do not\n"
+"need. You will not have to format it since DrakX will rewrite the whole\n"
+"disk."
msgstr ""
-#: ../../help.pm_.c:280
+#: ../../help.pm_.c:270
#, fuzzy
msgid ""
"At this point, you need to choose where you want to install the Mandrake\n"
@@ -3057,7 +3132,9 @@ msgid ""
"\n"
" * \"Use existing partition\": the wizard has detected one or more existing\n"
"Linux partitions on your hard drive. If you want to use them, choose this\n"
-"option;\n"
+"option. You will then be asked to choose the mount points associated to\n"
+"each of the partitions. The legacy mount points are selected by default,\n"
+"and you should generally keep them.\n"
"\n"
" * \"Use the free space on the Windows; partition\": if Microsoft Windows\n"
"is installed on your hard drive and takes all the space available on it,\n"
@@ -3090,7 +3167,9 @@ msgid ""
" * \"Expert mode\": choose this option if you want to manually partition\n"
"your hard drive. Be careful - it is a powerful but dangerous choice. You\n"
"can very easily lose all your data. Hence, do not choose this unless you\n"
-"know what you are doing."
+"know what you are doing. To know how do use the DiskDrake utility used\n"
+"here, refer to the section ``Managing Your Partitions'' of the ````User\n"
+"Guide''''"
msgstr ""
"Dabar tu turi nuspræsti, kurioje savo kietojo disko vietoje nori ádiegti\n"
"Mandrake Linux operacijű sistemà. Jei jis yra tuđèias arba jau esanti\n"
@@ -3158,7 +3237,7 @@ msgstr ""
" visus savo duomenis labai lengvai. Taigi, nesirink đio sprendimo, nebent "
"tikrai ținai, kà darai."
-#: ../../help.pm_.c:347
+#: ../../help.pm_.c:341
msgid ""
"There you are. Installation is now complete and your GNU/Linux system is\n"
"ready to use. Just click \"OK\" to reboot the system. You can start\n"
@@ -3191,7 +3270,7 @@ msgid ""
"\"mformat a:\")"
msgstr ""
-#: ../../help.pm_.c:378
+#: ../../help.pm_.c:372
#, fuzzy
msgid ""
"Any partitions that have been newly defined must be formatted for use\n"
@@ -3245,7 +3324,7 @@ msgstr ""
"Spausk \"Atđaukti\", jei nori pasirinkti kitus skirsnius, á kuriuos ádiegti\n"
"Mandrake Linux sistemà."
-#: ../../help.pm_.c:404
+#: ../../help.pm_.c:398
#, fuzzy
msgid ""
"Your new Mandrake Linux operating system is currently being installed.\n"
@@ -3262,12 +3341,12 @@ msgstr ""
"\n"
"Prađom turëti kantrybës."
-#: ../../help.pm_.c:412
+#: ../../help.pm_.c:406
msgid ""
"At the time you are installing Mandrake Linux, it is likely that some\n"
"packages have been updated since the initial release. Some bugs may have\n"
"been fixed, and security issues solved. To allow you to benefit from these\n"
-"updates, you are now proposed to download them from the Internet. Choose\n"
+"updates, you are now able to download them from the Internet. Choose\n"
"\"Yes\" if you have a working Internet connection, or \"No\" if you prefer\n"
"to install updated packages later.\n"
"\n"
@@ -3277,7 +3356,7 @@ msgid ""
"install the selected package(s), or \"Cancel\" to abort."
msgstr ""
-#: ../../help.pm_.c:425
+#: ../../help.pm_.c:419
msgid ""
"Before continuing, you should read carefully the terms of the license. It\n"
"covers the whole Mandrake Linux distribution, and if you do not agree with\n"
@@ -3286,19 +3365,19 @@ msgid ""
"\"Accept\" button."
msgstr ""
-#: ../../help.pm_.c:432
+#: ../../help.pm_.c:426
msgid ""
"At this point, it is time to choose the security level desired for the\n"
"machine. As a rule of thumb, the more exposed the machine is, and the more\n"
"the data stored in it is crucial, the higher the security level should be.\n"
"However, a higher security level is generally obtained at the expense of\n"
-"easiness of use. Refer to the \"msec\" chapter of the ``Reference Manual''\n"
-"to get more information about the meaning of these levels.\n"
+"ease of use. Refer to the \"msec\" chapter of the ``Reference Manual'' to\n"
+"get more information about the meaning of these levels.\n"
"\n"
"If you do not know what to choose, keep the default option."
msgstr ""
-#: ../../help.pm_.c:442
+#: ../../help.pm_.c:436
#, fuzzy
msgid ""
"At this point, you need to choose which partition(s) will be used for the\n"
@@ -3316,26 +3395,26 @@ msgid ""
" * \"Clear all\": this option deletes all partitions on the selected hard\n"
"drive;\n"
"\n"
-" * \"Auto allocate\": this option enables to automatically create \"Ext2\"\n"
-"and swap partitions in free space of your hard drive;\n"
+" * \"Auto allocate\": this option enables to automatically create ext3 and\n"
+"swap partitions in free space of your hard drive;\n"
"\n"
-" * \"More\": gives access to additional features:\n"
+"\"More\": gives access to additional features:\n"
"\n"
-" * \"Save partition table\": saves the partition table to a floppy.\n"
-"Useful for later partition-table recovery if necessary. It is strongly\n"
-"recommended to perform this step;\n"
+" * \"Save partition table\": saves the partition table to a floppy. Useful\n"
+"for later partition-table recovery if necessary. It is strongly recommended\n"
+"to perform this step;\n"
"\n"
-" * \"Restore partition table\": allows to restore a previously saved\n"
+" * \"Restore partition table\": allows to restore a previously saved\n"
"partition table from floppy disk;\n"
"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you\n"
-"can try to recover it using this option. Please be careful and remember\n"
-"that it can fail;\n"
+" * \"Rescue partition table\": if your partition table is damaged, you can\n"
+"try to recover it using this option. Please be careful and remember that it\n"
+"can fail;\n"
"\n"
-" * \"Reload partition table\": discards all changes and loads your\n"
-"initial partition table;\n"
+" * \"Reload partition table\": discards all changes and loads your initial\n"
+"partition table;\n"
"\n"
-" * \"Removable media automounting\": unchecking this option will force\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
"users to manually mount and unmount removable medias such as floppies and\n"
"CD-ROMs.\n"
"\n"
@@ -3363,7 +3442,7 @@ msgid ""
" * Ctrl-m to set the mount point.\n"
"\n"
"To get information about the different filesystem types available, please\n"
-"read the ext2fs chapter from the ``Reference Manual''.\n"
+"read the ext2FS chapter from the ``Reference Manual''.\n"
"\n"
"If you are installing on a PPC machine, you will want to create a small HFS\n"
"``bootstrap'' partition of at least 1MB, which will be used by the yaboot\n"
@@ -3443,7 +3522,7 @@ msgstr ""
"\n"
"* Ctrl-m kad nurodytum prijungimà tađkà."
-#: ../../help.pm_.c:513
+#: ../../help.pm_.c:507
#, fuzzy
msgid ""
"More than one Microsoft partition has been detected on your hard drive.\n"
@@ -3519,11 +3598,11 @@ msgstr ""
"Windows'uose\n"
"(pirmasis disko skirsnis vadinamas \"C:\")"
-#: ../../help.pm_.c:544
+#: ../../help.pm_.c:538
msgid "Please be patient. This operation can take several minutes."
msgstr "Prađom turëti kantrybës. Đis veiksmas gali keletà minuèiű uțtrukti."
-#: ../../help.pm_.c:547
+#: ../../help.pm_.c:541
#, fuzzy
msgid ""
"DrakX now needs to know if you want to perform a default (\"Recommended\")\n"
@@ -3531,23 +3610,23 @@ msgid ""
"also choose to do a new install or an upgrade of an existing Mandrake Linux\n"
"system:\n"
"\n"
-" * \"Install\": completely wipes out the old system. In fact, depending on\n"
-"what currently holds your machine, you will be able to keep some old (Linux\n"
-"or other) partitions unchanged;\n"
+" * \"Install\": completely wipes out the old system, however, depending on\n"
+"what is currently installed on your machine, you may be able to keep some\n"
+"old partitions (Linux or otherwise) unchanged;\n"
"\n"
" * \"Upgrade\": this installation class allows to simply update the\n"
"packages currently installed on your Mandrake Linux system. It keeps the\n"
"current partitions of your hard drives as well as user configurations. All\n"
-"other configuration steps remain available with respect to plain\n"
+"other configuration steps remain available, similar to a normal\n"
"installation;\n"
"\n"
-" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
-"existing Mandrake Linux system while keeping all system configurations\n"
-"unchanged. Adding new packages to the current installation is also\n"
-"possible.\n"
+" * \"Upgrade Packages Only\": this new installation class allows you to\n"
+"upgrade an existing Mandrake Linux system while keeping all system\n"
+"configurations unchanged. Adding new packages to the current installation\n"
+"is also possible.\n"
"\n"
-"Upgrades should work fine for Mandrake Linux systems starting from \"8.1\"\n"
-"release.\n"
+"Upgrades should work fine on Mandrake Linux systems containing version\n"
+"\"8.1\" or later.\n"
"\n"
"Depending on your knowledge of GNU/Linux, select one of the following\n"
"choices:\n"
@@ -3556,11 +3635,11 @@ msgid ""
"operating system. The installation will be very easy and you will only be\n"
"asked a few questions;\n"
"\n"
-" * Expert: if you have a good knowledge of GNU/Linux, you can choose this\n"
-"installation class. The expert installation will allow you to perform a\n"
-"highly-customized installation. Answering some of the questions can be\n"
-"difficult if you do not have a good knowledge of GNU/Linux, so do not\n"
-"choose this unless you know what you are doing."
+" * Expert: if you have a good understanding of GNU/Linux, you may wish to\n"
+"perform a highly customized installation. Some of the decisions you will\n"
+"have to make may be difficult if you do not have good knowledge of\n"
+"GNU/Linux, so it is not recommended that those without a fair amount of\n"
+"experience select this installation class."
msgstr ""
"Prađom pasirinkti „ÁdiegtiŽ, jei á sistemà nëra ádiegta ankstesniű Mandrake "
"Linux versijű,\n"
@@ -3597,23 +3676,28 @@ msgstr ""
"neiđmanai GNU/Linux. Taigi, nesirink đios\n"
" ádiegimo klasës, nebent tikrai ținai, kà darai."
-#: ../../help.pm_.c:584
+#: ../../help.pm_.c:578
msgid ""
"Normally, DrakX selects the right keyboard for you (depending on the\n"
-"language you have chosen) and you won't even see this step. However, you\n"
-"might not have a keyboard that corresponds exactly to your language: for\n"
-"example, if you are an English speaking Swiss person, you may still want\n"
-"your keyboard to be a Swiss keyboard. Or if you speak English but are\n"
-"located in Quebec, you may find yourself in the same situation. In both\n"
-"cases, you will have to go back to this installation step and select an\n"
-"appropriate keyboard from the list.\n"
+"language you have chosen). However, you might not have a keyboard that\n"
+"corresponds exactly to your language: for example, if you are an English\n"
+"speaking Swiss person, you may still want your keyboard to be a Swiss\n"
+"keyboard. Or if you speak English but are located in Quebec, you may find\n"
+"yourself in the same situation. In both cases, you will have to go back to\n"
+"this installation step and select an appropriate keyboard from the list.\n"
"\n"
"Click on the \"More\" button to be presented with the complete list of\n"
-"supported keyboards."
+"supported keyboards.\n"
+"\n"
+"If you choose a keyboard layout based on a non-latin alphabet, you will be\n"
+"asked on next dialog to choose the key binding that will switch the\n"
+"keyboard layout between the latin and non latin layouts."
msgstr ""
-#: ../../help.pm_.c:597
+#: ../../help.pm_.c:594
msgid ""
+"The first step is to choose your preferred language.\n"
+"\n"
"Please choose your preferred language for installation and system usage.\n"
"\n"
"Clicking on the \"Advanced\" button will allow you to select other\n"
@@ -3627,7 +3711,7 @@ msgid ""
"additional locales, click the \"OK\" button to continue."
msgstr ""
-#: ../../help.pm_.c:610
+#: ../../help.pm_.c:609
msgid ""
"DrakX generally detects the number of buttons your mouse has. If not, it\n"
"assumes you have a two-button mouse and will set it up for third-button\n"
@@ -3640,10 +3724,17 @@ msgid ""
"If you choose a mouse other than the default, a test screen will be\n"
"displayed. Use the buttons and wheel to verify that the settings are\n"
"correct. If the mouse is not working well, press the space bar or [Return]\n"
-"to \"Cancel\" and choose again."
+"to \"Cancel\" and choose again.\n"
+"\n"
+"Wheel mouses are sometimes not automatically detected. You will need to\n"
+"manually select it in the list. Be sure to select the one corresponding to\n"
+"the correct port it is attached to. After you have pressed the \"OK\"\n"
+"button, a mouse image is displayed. You then need to move the wheel of your\n"
+"mouse to activate it correctly. Then test all buttons and movements are\n"
+"correct."
msgstr ""
-#: ../../help.pm_.c:624
+#: ../../help.pm_.c:630
#, fuzzy
msgid ""
"Please select the correct port. For example, the \"COM1\" port under\n"
@@ -3652,7 +3743,7 @@ msgstr ""
"Prađom pasirinkti teisingà prievadà. Pavyzdțiui COM1\n"
"MS Windows'uose vadinamas ttyS0 GNU/Linux'e."
-#: ../../help.pm_.c:628
+#: ../../help.pm_.c:634
msgid ""
"This is the most crucial decision point for the security of your GNU/Linux\n"
"system: you have to enter the \"root\" password. \"root\" is the system\n"
@@ -3682,15 +3773,15 @@ msgid ""
"In Expert mode, you will be asked if you will be connecting to an\n"
"authentication server, like NIS or LDAP.\n"
"\n"
-"If your network uses the LDAP (or NIS) protocol for authentication, select\n"
-"\"LDAP\" (or \"NIS\") as authentication. If you do not know, ask your\n"
-"network administrator.\n"
+"If your network uses either of the LDAP, NIS, or PDC Windows Domain\n"
+"authentication services, select the appropriate one as \"authentication\".\n"
+"If you do not know, ask your network administrator.\n"
"\n"
"If your computer is not connected to any administrated network, you will\n"
"want to choose \"Local files\" for authentication."
msgstr ""
-#: ../../help.pm_.c:664
+#: ../../help.pm_.c:670
msgid ""
"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
@@ -3729,8 +3820,12 @@ msgid ""
"options. !!\n"
"\n"
"Clicking the \"Advanced\" button in this dialog will offer many advanced\n"
-"options, which are reserved to the expert user.\n"
-"\n"
+"options, which are reserved for the expert user."
+msgstr ""
+
+#: ../../help.pm_.c:710
+#, fuzzy
+msgid ""
"After you have configured the general bootloader parameters, the list of\n"
"boot options which will be available at boot time will be displayed.\n"
"\n"
@@ -3738,17 +3833,7 @@ msgid ""
"automatically be added to the boot menu. Here, you can choose to fine-tune\n"
"the existing options. Select an entry and click \"Modify\" to modify or\n"
"remove it; \"Add\" creates a new entry; and \"Done\" goes on to the next\n"
-"installation step."
-msgstr ""
-
-#: ../../help.pm_.c:713
-#, fuzzy
-msgid ""
-"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
-"either GNU/Linux or any other operating system present on your computer.\n"
-"Normally, these other operating systems are correctly detected and\n"
-"installed. If this is not the case, you can add an entry by hand in this\n"
-"screen. Be careful to choose the correct parameters.\n"
+"installation step.\n"
"\n"
"You may also not want to give access to these other operating systems to\n"
"anyone. In which case, you can delete the corresponding entries. But then,\n"
@@ -3813,18 +3898,18 @@ msgstr ""
#: ../../help.pm_.c:759
#, fuzzy
msgid ""
-"DrakX now detects any IDE device present in your computer. It will also\n"
-"scan for one or more PCI SCSI card(s) on your system. If a SCSI card is\n"
+"DrakX now detects any IDE devices present in your computer. It will also\n"
+"scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
"found, DrakX will automatically install the appropriate driver.\n"
"\n"
"Because hardware detection does not always detect a piece of hardware,\n"
"DrakX will ask you to confirm if a PCI SCSI card is present. Click \"Yes\"\n"
"if you know that there is a SCSI card installed in your machine. You will\n"
-"be presented a list of SCSI cards to choose from. Click \"No\" if you have\n"
-"no SCSI hardware. If you are unsure, you can check the list of hardware\n"
-"detected in your machine by selecting \"See hardware info\" and clicking\n"
-"\"OK\". Examine the list of hardware and then click on the \"OK\" button to\n"
-"return to the SCSI interface question.\n"
+"be presented with a list of SCSI cards to choose from. Click \"No\" if you\n"
+"have no SCSI hardware. If you are unsure, you can check the list of\n"
+"hardware detected in your machine by selecting \"See hardware info\" and\n"
+"clicking \"OK\". Examine the list of hardware and then click on the \"OK\"\n"
+"button to return to the SCSI interface question.\n"
"\n"
"If you have to manually specify your adapter, DrakX will ask if you want to\n"
"specify options for it. You should allow DrakX to probe the hardware for\n"
@@ -4012,7 +4097,9 @@ msgid ""
"order to configure the clock according to the time zone you are in;\n"
"\n"
" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
-"configuration wizard;\n"
+"configuration wizard. Consult the corresponding chapter of the ``User\n"
+"Guide'' for more information on how to setup a new printer. The interface\n"
+"presented there is similar to the one used during installation;\n"
"\n"
" * \"Sound card\": if a sound card is detected on your system, it is\n"
"displayed here. No modification possible at installation time;\n"
@@ -4025,7 +4112,7 @@ msgid ""
"associated with it."
msgstr ""
-#: ../../help.pm_.c:894
+#: ../../help.pm_.c:896
#, fuzzy
msgid ""
"Choose the hard drive you want to erase in order to install your new\n"
@@ -4036,7 +4123,7 @@ msgstr ""
"Mandrake Linux sistemà. Bûk atsargus, visi duomenys, esantys jame, bus\n"
"prarasti, ir jű nebebus ámanoma atkurti."
-#: ../../help.pm_.c:899
+#: ../../help.pm_.c:901
#, fuzzy
msgid ""
"Click on \"OK\" if you want to delete all data and partitions present on\n"
@@ -4069,7 +4156,7 @@ msgstr ""
msgid "You must also format %s"
msgstr ""
-#: ../../install_any.pm_.c:418
+#: ../../install_any.pm_.c:423
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -4084,20 +4171,29 @@ msgid ""
"Do you really want to install these servers?\n"
msgstr ""
-#: ../../install_any.pm_.c:453
+#: ../../install_any.pm_.c:441
+#, c-format
+msgid ""
+"The following packages will be removed to allow upgrading your system: %s\n"
+"\n"
+"\n"
+"Do you really want to remove these packages?\n"
+msgstr ""
+
+#: ../../install_any.pm_.c:471
msgid "Can't use broadcast with no NIS domain"
msgstr "Negalima naudoti transliavimo be NIS domeno"
-#: ../../install_any.pm_.c:841
+#: ../../install_any.pm_.c:862
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Ádëk FAT formatuotà diskelá á kaupiklá %s"
-#: ../../install_any.pm_.c:845
+#: ../../install_any.pm_.c:866
msgid "This floppy is not FAT formatted"
msgstr ""
-#: ../../install_any.pm_.c:857
+#: ../../install_any.pm_.c:878
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -4105,11 +4201,19 @@ msgstr ""
"Kad iđsaugoti điű paketű pasirinkimà ákraukite sistemà su ``linux "
"defcfg=floppy''"
-#: ../../install_any.pm_.c:880 ../../partition_table.pm_.c:771
+#: ../../install_any.pm_.c:901 ../../partition_table.pm_.c:767
#, c-format
msgid "Error reading file %s"
msgstr "Klaida skaitant bylà %s"
+#: ../../install_any.pm_.c:1023
+msgid ""
+"An error occurred - no valid devices were found on which to create new "
+"filesystems. Please check your hardware for the cause of this problem"
+msgstr ""
+"Ávyko klaida -- nerasta tinkamű árenginiű, kur bûtű galima sukurti naujus "
+"skirsnius. Prađom pasitikrinti savo árangà dël galimo gedimo"
+
#: ../../install_interactive.pm_.c:23
#, c-format
msgid ""
@@ -4145,60 +4249,60 @@ msgstr ""
"\n"
"Vis tiek tæsti?"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:168
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:169
#, fuzzy
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "Tu privalai turëti swap skirsná"
-#: ../../install_interactive.pm_.c:91
+#: ../../install_interactive.pm_.c:92
msgid "Use free space"
msgstr "Naudoti laisvà vietà"
-#: ../../install_interactive.pm_.c:93
+#: ../../install_interactive.pm_.c:94
msgid "Not enough free space to allocate new partitions"
msgstr "Naujiems skirsniams nepakanka laisvos vietos"
-#: ../../install_interactive.pm_.c:101
+#: ../../install_interactive.pm_.c:102
msgid "Use existing partitions"
msgstr "Naudoti esamà skirsná"
-#: ../../install_interactive.pm_.c:103
+#: ../../install_interactive.pm_.c:104
msgid "There is no existing partition to use"
msgstr "Nëra jokio skirsnio, tinkamo naudojimui"
-#: ../../install_interactive.pm_.c:110
+#: ../../install_interactive.pm_.c:111
msgid "Use the Windows partition for loopback"
msgstr "Naudoti Windows skirsná loopback'ui"
-#: ../../install_interactive.pm_.c:113
+#: ../../install_interactive.pm_.c:114
msgid "Which partition do you want to use for Linux4Win?"
msgstr "Kuri skirsná tu nori naudoti Linux4Win ádiegimui?"
-#: ../../install_interactive.pm_.c:115
+#: ../../install_interactive.pm_.c:116
msgid "Choose the sizes"
msgstr "Pasirink dydțius"
-#: ../../install_interactive.pm_.c:116
+#: ../../install_interactive.pm_.c:117
msgid "Root partition size in MB: "
msgstr "Đakninio skirsnio dydis, MB: "
-#: ../../install_interactive.pm_.c:117
+#: ../../install_interactive.pm_.c:118
msgid "Swap partition size in MB: "
msgstr "Swap skirsnio dydis, MB: "
-#: ../../install_interactive.pm_.c:126
+#: ../../install_interactive.pm_.c:128
msgid "Use the free space on the Windows partition"
msgstr "Naudoti laisvà vietà Windows skirsnyje"
-#: ../../install_interactive.pm_.c:129
+#: ../../install_interactive.pm_.c:131
msgid "Which partition do you want to resize?"
msgstr "Kurio skirsnio dydá tu nori pakeisti?"
-#: ../../install_interactive.pm_.c:131
+#: ../../install_interactive.pm_.c:133
msgid "Resizing Windows partition"
msgstr "Skaièiuojami Windows bylű sistemos rëțiai"
-#: ../../install_interactive.pm_.c:134
+#: ../../install_interactive.pm_.c:136
#, c-format
msgid ""
"The FAT resizer is unable to handle your partition, \n"
@@ -4207,7 +4311,7 @@ msgstr ""
"FAT dydțio keitimo programa nesusitvarko su tavo\n"
"skirsniu, ávyko tokia klaida: %s"
-#: ../../install_interactive.pm_.c:137
+#: ../../install_interactive.pm_.c:139
msgid ""
"Your Windows partition is too fragmented. Please reboot your computer under "
"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
@@ -4215,7 +4319,7 @@ msgid ""
msgstr ""
"Tavo Windows skirsnis yra pernelyg fragmentuotas, pirma paleisk „defragŽ"
-#: ../../install_interactive.pm_.c:138
+#: ../../install_interactive.pm_.c:140
#, fuzzy
msgid ""
"WARNING!\n"
@@ -4237,21 +4341,21 @@ msgstr ""
"pradëti ádiegimà. Taip pat turëtum pasidaryti atsarginæ duomenű kopijà.\n"
"Kai viskas sutvarkyta, spausk Gerai."
-#: ../../install_interactive.pm_.c:148
+#: ../../install_interactive.pm_.c:150
msgid "Which size do you want to keep for Windows on"
msgstr "Koká dydá norëtum palikti Windows'ams"
-#: ../../install_interactive.pm_.c:149
+#: ../../install_interactive.pm_.c:151
#, c-format
msgid "partition %s"
msgstr "skirsnyje %s"
-#: ../../install_interactive.pm_.c:156
+#: ../../install_interactive.pm_.c:158
#, c-format
msgid "FAT resizing failed: %s"
msgstr "Nepavyko pakeisti FAT dydțio: %s"
-#: ../../install_interactive.pm_.c:171
+#: ../../install_interactive.pm_.c:173
msgid ""
"There is no FAT partition to resize or to use as loopback (or not enough "
"space left)"
@@ -4260,32 +4364,32 @@ msgstr ""
"loopback'ui\n"
"(arba nëra pakankamai laisvos vietos)"
-#: ../../install_interactive.pm_.c:177
+#: ../../install_interactive.pm_.c:179
msgid "Erase entire disk"
msgstr "Iđtrinti visà diskà"
-#: ../../install_interactive.pm_.c:177
+#: ../../install_interactive.pm_.c:179
msgid "Remove Windows(TM)"
msgstr "Iđmesti Windows(TM)"
-#: ../../install_interactive.pm_.c:180
+#: ../../install_interactive.pm_.c:182
msgid "You have more than one hard drive, which one do you install linux on?"
msgstr "Tu turi daugiau negu vienà kietà diskà, á kurá nori ádiegti Linux?"
-#: ../../install_interactive.pm_.c:183
+#: ../../install_interactive.pm_.c:185
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr "VISI kaupiklyje %s esantys skirsniai ir duomenys bus prarasti"
-#: ../../install_interactive.pm_.c:191
+#: ../../install_interactive.pm_.c:193
msgid "Custom disk partitioning"
msgstr "Rankinis diskű skirstymas"
-#: ../../install_interactive.pm_.c:195
+#: ../../install_interactive.pm_.c:197
msgid "Use fdisk"
msgstr "Naudoti fdisk"
-#: ../../install_interactive.pm_.c:198
+#: ../../install_interactive.pm_.c:200
#, c-format
msgid ""
"You can now partition %s.\n"
@@ -4294,28 +4398,28 @@ msgstr ""
"Tu dabar gali sudalinti %s.\n"
"Kai baigsi, nepamirđk iđsaugoti su 'w'"
-#: ../../install_interactive.pm_.c:227
+#: ../../install_interactive.pm_.c:229
msgid "You don't have enough free space on your Windows partition"
msgstr "Windows skirsnyje nëra pakankamai laisvos vietos"
-#: ../../install_interactive.pm_.c:243
+#: ../../install_interactive.pm_.c:245
msgid "I can't find any room for installing"
msgstr "Ađ niekur negaliu rasti vietos ádiegimui"
-#: ../../install_interactive.pm_.c:246
+#: ../../install_interactive.pm_.c:248
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr "DrakX Skirsniű dalinimo meistras rado tokius sprendimus:"
-#: ../../install_interactive.pm_.c:250
+#: ../../install_interactive.pm_.c:252
#, c-format
msgid "Partitioning failed: %s"
msgstr "Dalinimas á skirsnius nepavyko: %s"
-#: ../../install_interactive.pm_.c:260
+#: ../../install_interactive.pm_.c:262
msgid "Bringing up the network"
msgstr "Paleidțiamas tinklas"
-#: ../../install_interactive.pm_.c:265
+#: ../../install_interactive.pm_.c:267
msgid "Bringing down the network"
msgstr "Iđjungiamas tinklas"
@@ -4327,12 +4431,12 @@ msgstr ""
"Ávyko klaida, bet ađ neținau, kaip su ja grațiai susitvarkyti.\n"
"Tæsk darbà savo paties rizika."
-#: ../../install_steps.pm_.c:210
+#: ../../install_steps.pm_.c:211
#, c-format
msgid "Duplicate mount point %s"
msgstr "Pasikartojantis montavimo tađkas %s"
-#: ../../install_steps.pm_.c:379
+#: ../../install_steps.pm_.c:380
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -4344,12 +4448,12 @@ msgstr ""
"Patikrink CD ádiegtame kompiuteryje, naudodamas \"rpm -qpl Mandrake/RPMS/*."
"rpm\"\n"
-#: ../../install_steps.pm_.c:451
+#: ../../install_steps.pm_.c:452
#, c-format
msgid "Welcome to %s"
msgstr "Sveiki atvykæ á %s"
-#: ../../install_steps.pm_.c:530 ../../install_steps.pm_.c:770
+#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:772
msgid "No floppy drive available"
msgstr "Neprieinamas në vienas diskeliű kaupiklis"
@@ -4379,70 +4483,70 @@ msgstr "Ádiegimo klasë"
msgid "Please choose one of the following classes of installation:"
msgstr "Prađom pasirinkti vienà iđ điű ádiegimo klasiű:"
-#: ../../install_steps_gtk.pm_.c:243 ../../install_steps_interactive.pm_.c:694
+#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:678
msgid "Package Group Selection"
msgstr "Paketű grupiű pasirinkimas"
-#: ../../install_steps_gtk.pm_.c:276 ../../install_steps_interactive.pm_.c:709
+#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:693
msgid "Individual package selection"
msgstr "Atskirű paketű pasirinkimas"
-#: ../../install_steps_gtk.pm_.c:299 ../../install_steps_interactive.pm_.c:633
+#: ../../install_steps_gtk.pm_.c:293 ../../install_steps_interactive.pm_.c:617
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Bendras dydis: %d / %d MB"
-#: ../../install_steps_gtk.pm_.c:341
+#: ../../install_steps_gtk.pm_.c:335
msgid "Bad package"
msgstr "Blogas paketas"
-#: ../../install_steps_gtk.pm_.c:342
+#: ../../install_steps_gtk.pm_.c:336
#, c-format
msgid "Name: %s\n"
msgstr "Pavadinimas: %s\n"
-#: ../../install_steps_gtk.pm_.c:343
+#: ../../install_steps_gtk.pm_.c:337
#, c-format
msgid "Version: %s\n"
msgstr "Versija: %s\n"
-#: ../../install_steps_gtk.pm_.c:344
+#: ../../install_steps_gtk.pm_.c:338
#, c-format
msgid "Size: %d KB\n"
msgstr "Dydis: %d KB\n"
-#: ../../install_steps_gtk.pm_.c:345
+#: ../../install_steps_gtk.pm_.c:339
#, c-format
msgid "Importance: %s\n"
msgstr "Svarba: %s\n"
-#: ../../install_steps_gtk.pm_.c:367
+#: ../../install_steps_gtk.pm_.c:361
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr ""
"Tu negali pasirinkti đio paketo, kadangi nebëra pakankamai vietos jam ádiegti"
-#: ../../install_steps_gtk.pm_.c:372
+#: ../../install_steps_gtk.pm_.c:366
msgid "The following packages are going to be installed"
msgstr "Ruođiamasi ádiegti điuos paketus"
-#: ../../install_steps_gtk.pm_.c:373
+#: ../../install_steps_gtk.pm_.c:367
msgid "The following packages are going to be removed"
msgstr "Ruođiamasi pađalinti điuos paketus"
-#: ../../install_steps_gtk.pm_.c:385
+#: ../../install_steps_gtk.pm_.c:379
msgid "You can't select/unselect this package"
msgstr "Tu negali pațymëti/atțymëti đio paketo"
-#: ../../install_steps_gtk.pm_.c:397
+#: ../../install_steps_gtk.pm_.c:391
msgid "This is a mandatory package, it can't be unselected"
msgstr "Tai yra privalomas paketas, jis negali bûti atțymëtas"
-#: ../../install_steps_gtk.pm_.c:399
+#: ../../install_steps_gtk.pm_.c:393
msgid "You can't unselect this package. It is already installed"
msgstr "Tu negali atțymëti đio paketo. Jis jau yra ádiegtas"
-#: ../../install_steps_gtk.pm_.c:402
+#: ../../install_steps_gtk.pm_.c:396
msgid ""
"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
@@ -4450,77 +4554,77 @@ msgstr ""
"Đis paketas privalo bûti atnaujintas\n"
"Ar tu tikrai nori já atțymëti?"
-#: ../../install_steps_gtk.pm_.c:405
+#: ../../install_steps_gtk.pm_.c:399
msgid "You can't unselect this package. It must be upgraded"
msgstr "Tu negali atțymëti đio paketo. Jis privalo bûti atnaujintas"
-#: ../../install_steps_gtk.pm_.c:410
+#: ../../install_steps_gtk.pm_.c:404
msgid "Show automatically selected packages"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:411 ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_gtk.pm_.c:405 ../../install_steps_interactive.pm_.c:255
#: ../../install_steps_interactive.pm_.c:259
-#: ../../standalone/drakbackup_.c:3600
+#: ../../standalone/drakbackup_.c:4257
msgid "Install"
msgstr "Ádiegti"
-#: ../../install_steps_gtk.pm_.c:414
+#: ../../install_steps_gtk.pm_.c:408
#, fuzzy
msgid "Load/Save on floppy"
msgstr "Iđsaugoti á diskelá"
-#: ../../install_steps_gtk.pm_.c:415
+#: ../../install_steps_gtk.pm_.c:409
#, fuzzy
msgid "Updating package selection"
msgstr "Iđsaugoti paketű pasirinkimà"
-#: ../../install_steps_gtk.pm_.c:420
+#: ../../install_steps_gtk.pm_.c:414
#, fuzzy
msgid "Minimal install"
msgstr "Iđmesti"
-#: ../../install_steps_gtk.pm_.c:435 ../../install_steps_interactive.pm_.c:538
+#: ../../install_steps_gtk.pm_.c:429 ../../install_steps_interactive.pm_.c:522
msgid "Choose the packages you want to install"
msgstr "Pasirink paketus, kuriuos tu nori ádiegti"
-#: ../../install_steps_gtk.pm_.c:451 ../../install_steps_interactive.pm_.c:778
+#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:762
msgid "Installing"
msgstr "Ádiegiama"
-#: ../../install_steps_gtk.pm_.c:457
+#: ../../install_steps_gtk.pm_.c:451
msgid "Estimating"
msgstr "Skaièiuojama"
-#: ../../install_steps_gtk.pm_.c:464
+#: ../../install_steps_gtk.pm_.c:458
msgid "Time remaining "
msgstr "Liko laiko "
-#: ../../install_steps_gtk.pm_.c:476
+#: ../../install_steps_gtk.pm_.c:470
msgid "Please wait, preparing installation..."
msgstr "Prađome palaukti. Ruođiamas ádiegimas"
-#: ../../install_steps_gtk.pm_.c:560
+#: ../../install_steps_gtk.pm_.c:554
#, c-format
msgid "%d packages"
msgstr "%d paketű"
-#: ../../install_steps_gtk.pm_.c:565
+#: ../../install_steps_gtk.pm_.c:559
#, c-format
msgid "Installing package %s"
msgstr "Ádiegiamas paketas %s"
-#: ../../install_steps_gtk.pm_.c:602 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:802
+#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:786
#: ../../standalone/drakautoinst_.c:202
msgid "Accept"
msgstr "Sutinku"
-#: ../../install_steps_gtk.pm_.c:602 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:802
+#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:786
msgid "Refuse"
msgstr "Atmetu"
-#: ../../install_steps_gtk.pm_.c:603 ../../install_steps_interactive.pm_.c:803
+#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:787
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4534,17 +4638,17 @@ msgstr ""
"Prađom ákiđti CD su uțrađu „%sŽ á kaupiklá, tada paspausk Gerai.\n"
"Jei tu jo neturi, spausk Nutraukti, kad iđvengtum ádiegimo iđ đio CD."
-#: ../../install_steps_gtk.pm_.c:617 ../../install_steps_gtk.pm_.c:621
-#: ../../install_steps_interactive.pm_.c:815
-#: ../../install_steps_interactive.pm_.c:819
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_gtk.pm_.c:615
+#: ../../install_steps_interactive.pm_.c:799
+#: ../../install_steps_interactive.pm_.c:803
msgid "Go on anyway?"
msgstr "Vis tiek tæsti?"
-#: ../../install_steps_gtk.pm_.c:617 ../../install_steps_interactive.pm_.c:815
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:799
msgid "There was an error ordering packages:"
msgstr "Ávyko klaida, bandant sutvarkyti paketus:"
-#: ../../install_steps_gtk.pm_.c:621 ../../install_steps_interactive.pm_.c:819
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:803
msgid "There was an error installing packages:"
msgstr "Ávyko klaida, ádiegiant paketus:"
@@ -4748,7 +4852,7 @@ msgid "Are you sure you refuse the licence?"
msgstr ""
#: ../../install_steps_interactive.pm_.c:211
-#: ../../install_steps_interactive.pm_.c:1038
+#: ../../install_steps_interactive.pm_.c:1023
#: ../../standalone/keyboarddrake_.c:31
msgid "Keyboard"
msgstr "Klaviatûra"
@@ -4800,11 +4904,11 @@ msgstr "Iđsaugoti paketű pasirinkimà"
msgid "Please choose the type of your mouse."
msgstr "Prađom pasirinkti savo pelës rûđá."
-#: ../../install_steps_interactive.pm_.c:281 ../../standalone/mousedrake_.c:59
+#: ../../install_steps_interactive.pm_.c:281 ../../standalone/mousedrake_.c:60
msgid "Mouse Port"
msgstr "Pelës prievadas"
-#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:61
msgid "Please choose on which serial port your mouse is connected to."
msgstr ""
"Prađom pasirinkti, prie kurios nuosekliosios jungties prijungta tavo pelë."
@@ -4837,180 +4941,155 @@ msgstr "Nustatome IDE"
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:336
+#: ../../install_steps_interactive.pm_.c:338
msgid "No partition available"
msgstr "nëra prieinamű skirsniű"
-#: ../../install_steps_interactive.pm_.c:339
+#: ../../install_steps_interactive.pm_.c:341
msgid "Scanning partitions to find mount points"
msgstr "Perțiûrimi skirsniai, ieđkant montavimo tađkű"
-#: ../../install_steps_interactive.pm_.c:347
+#: ../../install_steps_interactive.pm_.c:349
msgid "Choose the mount points"
msgstr "Pasirink montavimo tađkus"
-#: ../../install_steps_interactive.pm_.c:366
-#, c-format
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to not allow DrakX to modify the partition table.\n"
-"(the error is %s)\n"
-"\n"
-"Do you agree to loose all the partitions?\n"
-msgstr ""
-"Ađ negaliu perskaityti skirsniű lentelës, ji pernelyg sugadinta :(\n"
-"Galiu pabandyti iđvalyti blogus skirsnius (VISI DUOMENYS bus prarasti!)\n"
-"Kitas sprendimas -- neleisti DrakX taisyti skirsniű lentelæ.\n"
-"(klaida %s)\n"
-"\n"
-"Ar sutinki prarasti visus skirsnius?\n"
-
#: ../../install_steps_interactive.pm_.c:379
msgid ""
-"DiskDrake failed to read correctly the partition table.\n"
-"Continue at your own risk!"
-msgstr ""
-"DiskDrake nesugebëjo teisingai perskaityti skirsniű lentelës.\n"
-"Tæsk savo paties rizika!"
-
-#: ../../install_steps_interactive.pm_.c:396
-msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:405
+#: ../../install_steps_interactive.pm_.c:388
#, fuzzy
msgid "No root partition found to perform an upgrade"
msgstr "Nerastas pagrindinis skirsnis"
-#: ../../install_steps_interactive.pm_.c:406
+#: ../../install_steps_interactive.pm_.c:389
msgid "Root Partition"
msgstr "Đakninis skirsnis"
-#: ../../install_steps_interactive.pm_.c:407
+#: ../../install_steps_interactive.pm_.c:390
msgid "What is the root partition (/) of your system?"
msgstr "Kur yra tavo sistemos đakninis skirsnis (/)?"
-#: ../../install_steps_interactive.pm_.c:421
+#: ../../install_steps_interactive.pm_.c:404
msgid "You need to reboot for the partition table modifications to take place"
msgstr ""
"Tau reikia perkrauti kompiuterá, kad skirsniű lentelës pakeitimai bûtű "
"naudojami"
-#: ../../install_steps_interactive.pm_.c:445
+#: ../../install_steps_interactive.pm_.c:428
msgid "Choose the partitions you want to format"
msgstr "Pasirink skirsnius, kuriuos nori suțymëti"
-#: ../../install_steps_interactive.pm_.c:446
+#: ../../install_steps_interactive.pm_.c:429
msgid "Check bad blocks?"
msgstr "Ieđkoti blogű blokű?"
-#: ../../install_steps_interactive.pm_.c:473
+#: ../../install_steps_interactive.pm_.c:456
msgid "Formatting partitions"
msgstr "Suțymimi skirsniai"
-#: ../../install_steps_interactive.pm_.c:475
+#: ../../install_steps_interactive.pm_.c:458
#, c-format
msgid "Creating and formatting file %s"
msgstr "Sukuriama ir suțymima byla %s"
-#: ../../install_steps_interactive.pm_.c:480
+#: ../../install_steps_interactive.pm_.c:463
#, c-format
msgid ""
"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
"you can loose data)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:482
+#: ../../install_steps_interactive.pm_.c:465
msgid "Not enough swap space to fulfill installation, please add some"
msgstr "Nepakanka swap atminties ádiegimo vykdymui, prađom praplësti"
-#: ../../install_steps_interactive.pm_.c:489
+#: ../../install_steps_interactive.pm_.c:472
#, fuzzy
msgid "Looking for available packages and rebuilding rpm database..."
msgstr "Ieđkomi galimi paketai"
-#: ../../install_steps_interactive.pm_.c:490
+#: ../../install_steps_interactive.pm_.c:473
msgid "Looking for available packages..."
msgstr "Ieđkomi galimi paketai"
-#: ../../install_steps_interactive.pm_.c:493
+#: ../../install_steps_interactive.pm_.c:476
#, fuzzy
msgid "Looking at packages already installed..."
msgstr "Tu negali atțymëti đio paketo. Jis jau yra ádiegtas"
-#: ../../install_steps_interactive.pm_.c:497
+#: ../../install_steps_interactive.pm_.c:480
msgid "Finding packages to upgrade..."
msgstr "Ieđkoma atnaujintinű paketű"
-#: ../../install_steps_interactive.pm_.c:515
+#: ../../install_steps_interactive.pm_.c:498
#, c-format
msgid ""
"Your system does not have enough space left for installation or upgrade (%d "
"> %d)"
msgstr "Tavo sistemoje neuțtenka vietos ádiegimui arba atnaujinimui (%d > %d)"
-#: ../../install_steps_interactive.pm_.c:550
+#: ../../install_steps_interactive.pm_.c:534
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:553
+#: ../../install_steps_interactive.pm_.c:537
#, fuzzy
msgid "Load from floppy"
msgstr "Atstatyti iđ diskelio"
-#: ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_interactive.pm_.c:539
#, fuzzy
msgid "Loading from floppy"
msgstr "Atstatyti iđ diskelio"
-#: ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_interactive.pm_.c:539
#, fuzzy
msgid "Package selection"
msgstr "Paketű grupiű pasirinkimas"
-#: ../../install_steps_interactive.pm_.c:560
+#: ../../install_steps_interactive.pm_.c:544
#, fuzzy
msgid "Insert a floppy containing package selection"
msgstr "Ádëk diskelá á kaupiklá %s"
-#: ../../install_steps_interactive.pm_.c:572
+#: ../../install_steps_interactive.pm_.c:556
msgid "Save on floppy"
msgstr "Iđsaugoti á diskelá"
-#: ../../install_steps_interactive.pm_.c:646
+#: ../../install_steps_interactive.pm_.c:630
msgid "Selected size is larger than available space"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:660
+#: ../../install_steps_interactive.pm_.c:644
#, fuzzy
msgid "Type of install"
msgstr "Pasirink paketà ádiegimui"
-#: ../../install_steps_interactive.pm_.c:661
+#: ../../install_steps_interactive.pm_.c:645
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:664
+#: ../../install_steps_interactive.pm_.c:648
#, fuzzy
msgid "With X"
msgstr "Palauk"
-#: ../../install_steps_interactive.pm_.c:666
+#: ../../install_steps_interactive.pm_.c:650
msgid "With basic documentation (recommended!)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:667
+#: ../../install_steps_interactive.pm_.c:651
msgid "Truly minimal install (especially no urpmi)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:752
+#: ../../install_steps_interactive.pm_.c:736
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -5020,16 +5099,16 @@ msgstr ""
"Jei neturi në vieno iđ điű CD, spausk Nutraukti.\n"
"Jei trûksta tik kai kuriű CD, atțymëk juos, o tada spausk Gerai."
-#: ../../install_steps_interactive.pm_.c:757
+#: ../../install_steps_interactive.pm_.c:741
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "CD-ROM su uțrađu \"%s\""
-#: ../../install_steps_interactive.pm_.c:778
+#: ../../install_steps_interactive.pm_.c:762
msgid "Preparing installation"
msgstr "Ruođiamas ádiegimas"
-#: ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:771
#, c-format
msgid ""
"Installing package %s\n"
@@ -5038,21 +5117,21 @@ msgstr ""
"Ádiegiamas paketas %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:833
+#: ../../install_steps_interactive.pm_.c:817
msgid "Post-install configuration"
msgstr "Konfigûracija po ádiegimo"
-#: ../../install_steps_interactive.pm_.c:839
+#: ../../install_steps_interactive.pm_.c:823
#, fuzzy, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Ádëk diskelá á kaupiklá %s"
-#: ../../install_steps_interactive.pm_.c:845
+#: ../../install_steps_interactive.pm_.c:829
#, fuzzy, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Ádëk tuđèià diskelá á kaupiklá %s"
-#: ../../install_steps_interactive.pm_.c:865
+#: ../../install_steps_interactive.pm_.c:849
msgid ""
"You now have the opportunity to download encryption software.\n"
"\n"
@@ -5107,7 +5186,7 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:904
+#: ../../install_steps_interactive.pm_.c:888
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
"have been released after the distribution was released. They may\n"
@@ -5119,169 +5198,169 @@ msgid ""
"Do you want to install the updates ?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:919
+#: ../../install_steps_interactive.pm_.c:903
#, fuzzy
msgid ""
"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr ""
"Jungiamasi prie atvaizdțio (mirror), kad gautume prieinamű paketű sàrađà"
-#: ../../install_steps_interactive.pm_.c:924
+#: ../../install_steps_interactive.pm_.c:908
msgid "Choose a mirror from which to get the packages"
msgstr "Pasirink atvaizdá (mirror), iđ kurio imti paketus"
-#: ../../install_steps_interactive.pm_.c:933
+#: ../../install_steps_interactive.pm_.c:917
msgid "Contacting the mirror to get the list of available packages..."
msgstr ""
"Jungiamasi prie atvaizdțio (mirror), kad gautume prieinamű paketű sàrađà"
-#: ../../install_steps_interactive.pm_.c:960
+#: ../../install_steps_interactive.pm_.c:945
msgid "Which is your timezone?"
msgstr "Kokia tavo laiko juosta?"
-#: ../../install_steps_interactive.pm_.c:965
+#: ../../install_steps_interactive.pm_.c:950
#, fuzzy
msgid "Hardware clock set to GMT"
msgstr "Ar tavo árangos laikrodis nustatytas GMT?"
-#: ../../install_steps_interactive.pm_.c:966
+#: ../../install_steps_interactive.pm_.c:951
msgid "Automatic time synchronization (using NTP)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:973
+#: ../../install_steps_interactive.pm_.c:958
#, fuzzy
msgid "NTP Server"
msgstr "NIS serveris"
-#: ../../install_steps_interactive.pm_.c:1007
-#: ../../install_steps_interactive.pm_.c:1015
+#: ../../install_steps_interactive.pm_.c:992
+#: ../../install_steps_interactive.pm_.c:1000
msgid "Remote CUPS server"
msgstr "Nutolæs CUPS serveris"
-#: ../../install_steps_interactive.pm_.c:1008
+#: ../../install_steps_interactive.pm_.c:993
msgid "No printer"
msgstr "Spausdintuvo nëra"
-#: ../../install_steps_interactive.pm_.c:1025
+#: ../../install_steps_interactive.pm_.c:1010
#, fuzzy
msgid "Do you have an ISA sound card?"
msgstr "Ar turi dar vienà?"
-#: ../../install_steps_interactive.pm_.c:1027
+#: ../../install_steps_interactive.pm_.c:1012
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1029
+#: ../../install_steps_interactive.pm_.c:1014
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1034 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1019 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Apibendrinimas"
-#: ../../install_steps_interactive.pm_.c:1037
+#: ../../install_steps_interactive.pm_.c:1022
msgid "Mouse"
msgstr "Pelë"
-#: ../../install_steps_interactive.pm_.c:1039
+#: ../../install_steps_interactive.pm_.c:1024
msgid "Timezone"
msgstr "Laiko juosta"
-#: ../../install_steps_interactive.pm_.c:1040 ../../printerdrake.pm_.c:2728
-#: ../../printerdrake.pm_.c:2814
+#: ../../install_steps_interactive.pm_.c:1025 ../../printerdrake.pm_.c:2937
+#: ../../printerdrake.pm_.c:3026
msgid "Printer"
msgstr "Spausdintuvas"
-#: ../../install_steps_interactive.pm_.c:1042
+#: ../../install_steps_interactive.pm_.c:1027
#, fuzzy
msgid "ISDN card"
msgstr "Vidinë ISDN plokđtë"
-#: ../../install_steps_interactive.pm_.c:1045
-#: ../../install_steps_interactive.pm_.c:1047
+#: ../../install_steps_interactive.pm_.c:1030
+#: ../../install_steps_interactive.pm_.c:1032
#, fuzzy
msgid "Sound card"
msgstr "Standartinë"
-#: ../../install_steps_interactive.pm_.c:1049
+#: ../../install_steps_interactive.pm_.c:1034
msgid "TV card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1089
-#: ../../install_steps_interactive.pm_.c:1114
-#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1074
+#: ../../install_steps_interactive.pm_.c:1099
+#: ../../install_steps_interactive.pm_.c:1103
msgid "LDAP"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1090
-#: ../../install_steps_interactive.pm_.c:1114
-#: ../../install_steps_interactive.pm_.c:1127
+#: ../../install_steps_interactive.pm_.c:1075
+#: ../../install_steps_interactive.pm_.c:1099
+#: ../../install_steps_interactive.pm_.c:1112
#, fuzzy
msgid "NIS"
msgstr "Naudoti NIS"
-#: ../../install_steps_interactive.pm_.c:1091
-#: ../../install_steps_interactive.pm_.c:1114
-#: ../../install_steps_interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1141
+#: ../../install_steps_interactive.pm_.c:1076
+#: ../../install_steps_interactive.pm_.c:1099
+#: ../../install_steps_interactive.pm_.c:1120
+#: ../../install_steps_interactive.pm_.c:1126
#, fuzzy
msgid "Windows Domain"
msgstr "NIS domenas"
-#: ../../install_steps_interactive.pm_.c:1092
-#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1077
+#: ../../install_steps_interactive.pm_.c:1099
#, fuzzy
msgid "Local files"
msgstr "Vietinis spausdintuvas"
-#: ../../install_steps_interactive.pm_.c:1101
-#: ../../install_steps_interactive.pm_.c:1102 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1086
+#: ../../install_steps_interactive.pm_.c:1087 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Nurodyti root slaptațodá"
-#: ../../install_steps_interactive.pm_.c:1103
+#: ../../install_steps_interactive.pm_.c:1088
msgid "No password"
msgstr "Jokio slaptațodțio"
-#: ../../install_steps_interactive.pm_.c:1108
+#: ../../install_steps_interactive.pm_.c:1093
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr ""
"Đis slaptațodis yra pernelyg paprastas (turi bûti bent %d simboliű ilgio)"
-#: ../../install_steps_interactive.pm_.c:1114 ../../network/modem.pm_.c:49
+#: ../../install_steps_interactive.pm_.c:1099 ../../network/modem.pm_.c:49
#: ../../standalone/drakconnect_.c:625 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Autentikacija"
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1107
#, fuzzy
msgid "Authentication LDAP"
msgstr "Autentikacija"
-#: ../../install_steps_interactive.pm_.c:1123
+#: ../../install_steps_interactive.pm_.c:1108
msgid "LDAP Base dn"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1124
+#: ../../install_steps_interactive.pm_.c:1109
#, fuzzy
msgid "LDAP Server"
msgstr "serveris"
-#: ../../install_steps_interactive.pm_.c:1130
+#: ../../install_steps_interactive.pm_.c:1115
#, fuzzy
msgid "Authentication NIS"
msgstr "Autentikacijos NIS"
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1116
msgid "NIS Domain"
msgstr "NIS domenas"
-#: ../../install_steps_interactive.pm_.c:1132
+#: ../../install_steps_interactive.pm_.c:1117
msgid "NIS Server"
msgstr "NIS serveris"
-#: ../../install_steps_interactive.pm_.c:1138
+#: ../../install_steps_interactive.pm_.c:1123
msgid ""
"For this to work for a W2K PDC, you will probably need to have the admin "
"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
@@ -5297,21 +5376,21 @@ msgid ""
"good."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1140
+#: ../../install_steps_interactive.pm_.c:1125
#, fuzzy
msgid "Authentication Windows Domain"
msgstr "Autentikacija"
-#: ../../install_steps_interactive.pm_.c:1142
+#: ../../install_steps_interactive.pm_.c:1127
#, fuzzy
msgid "Domain Admin User Name"
msgstr "Domeno vardas"
-#: ../../install_steps_interactive.pm_.c:1143
+#: ../../install_steps_interactive.pm_.c:1128
msgid "Domain Admin Password"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1178
+#: ../../install_steps_interactive.pm_.c:1163
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
"depending on the normal bootloader. This is useful if you don't want to "
@@ -5341,19 +5420,19 @@ msgstr ""
"Jei nori sukurti ákrovos diskelá savo sistemai, ákiđk diskelá á pirmàjá\n"
"árenginá ir spausk \"Gerai\"."
-#: ../../install_steps_interactive.pm_.c:1194
+#: ../../install_steps_interactive.pm_.c:1179
msgid "First floppy drive"
msgstr "Pirmasis diskeliű árenginys"
-#: ../../install_steps_interactive.pm_.c:1195
+#: ../../install_steps_interactive.pm_.c:1180
msgid "Second floppy drive"
msgstr "Antrasis diskeliű árenginys"
-#: ../../install_steps_interactive.pm_.c:1196 ../../printerdrake.pm_.c:2277
+#: ../../install_steps_interactive.pm_.c:1181 ../../printerdrake.pm_.c:2470
msgid "Skip"
msgstr "Praleisti"
-#: ../../install_steps_interactive.pm_.c:1201
+#: ../../install_steps_interactive.pm_.c:1186
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5382,7 +5461,7 @@ msgstr ""
"Ar tu nori sukurti ákrovos diskelá?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1207
+#: ../../install_steps_interactive.pm_.c:1192
msgid ""
"\n"
"\n"
@@ -5391,28 +5470,28 @@ msgid ""
"because XFS needs a very large driver)."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1215
+#: ../../install_steps_interactive.pm_.c:1200
msgid "Sorry, no floppy drive available"
msgstr "Atleisk, bet neradau jokio diskeliű kaupiklio"
-#: ../../install_steps_interactive.pm_.c:1219
+#: ../../install_steps_interactive.pm_.c:1204
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "Pasirink kaupiklá, kurá nori naudoti ákrovos diskeliui sukurti"
-#: ../../install_steps_interactive.pm_.c:1223
+#: ../../install_steps_interactive.pm_.c:1208
#, fuzzy, c-format
msgid "Insert a floppy in %s"
msgstr "Ádëk diskelá á kaupiklá %s"
-#: ../../install_steps_interactive.pm_.c:1226
+#: ../../install_steps_interactive.pm_.c:1211
msgid "Creating bootdisk..."
msgstr "Kuriamas ákrovos diskelis"
-#: ../../install_steps_interactive.pm_.c:1233
+#: ../../install_steps_interactive.pm_.c:1218
msgid "Preparing bootloader..."
msgstr "Ruođiama ákrovos tvarkyklë"
-#: ../../install_steps_interactive.pm_.c:1244
+#: ../../install_steps_interactive.pm_.c:1229
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5420,11 +5499,11 @@ msgid ""
" need to use BootX to boot your machine"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1250
+#: ../../install_steps_interactive.pm_.c:1235
msgid "Do you want to use aboot?"
msgstr "Ar nori naudoti aboot?"
-#: ../../install_steps_interactive.pm_.c:1253
+#: ../../install_steps_interactive.pm_.c:1238
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -5432,16 +5511,16 @@ msgstr ""
"Klaida ádiegiant aboot,\n"
"bandyti ádiegti priverstinai, net jei tai sunaikintű pirmàjá skirsná?"
-#: ../../install_steps_interactive.pm_.c:1260
+#: ../../install_steps_interactive.pm_.c:1245
#, fuzzy
msgid "Installing bootloader"
msgstr "Ádiegti ákrovos tvarkyklæ"
-#: ../../install_steps_interactive.pm_.c:1266
+#: ../../install_steps_interactive.pm_.c:1251
msgid "Installation of bootloader failed. The following error occured:"
msgstr "Nepavyko ádiegti ákrovos tvarkyklës. Ávyko tokia klaida:"
-#: ../../install_steps_interactive.pm_.c:1274
+#: ../../install_steps_interactive.pm_.c:1259
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -5452,17 +5531,17 @@ msgid ""
"At your next boot you should see the bootloader prompt."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1308
+#: ../../install_steps_interactive.pm_.c:1293
#: ../../standalone/drakautoinst_.c:79
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Ádëk tuđèià diskelá á kaupiklá %s"
-#: ../../install_steps_interactive.pm_.c:1312
+#: ../../install_steps_interactive.pm_.c:1297
msgid "Creating auto install floppy..."
msgstr "Kuriamas automatinio ádiegimo diskelis"
-#: ../../install_steps_interactive.pm_.c:1323
+#: ../../install_steps_interactive.pm_.c:1308
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -5472,7 +5551,7 @@ msgstr ""
"\n"
"Ar tu nori iđeiti dabar?"
-#: ../../install_steps_interactive.pm_.c:1334
+#: ../../install_steps_interactive.pm_.c:1319
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
@@ -5504,15 +5583,15 @@ msgstr ""
"Informacija apie tavo sistemos konfigûravimà yra oficialioje\n"
"Mandrake Linux User's Guide knygoje."
-#: ../../install_steps_interactive.pm_.c:1347
+#: ../../install_steps_interactive.pm_.c:1332
msgid "http://www.mandrakelinux.com/en/90errata.php3"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1352
+#: ../../install_steps_interactive.pm_.c:1337
msgid "Generate auto install floppy"
msgstr "Sukurti automatinio ádiegimo diskelá"
-#: ../../install_steps_interactive.pm_.c:1354
+#: ../../install_steps_interactive.pm_.c:1339
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -5526,15 +5605,15 @@ msgstr ""
"\n"
"Jûs galbût norësite pakartoti ádiegimà.\n"
-#: ../../install_steps_interactive.pm_.c:1359
+#: ../../install_steps_interactive.pm_.c:1344
msgid "Automated"
msgstr "Automatinis"
-#: ../../install_steps_interactive.pm_.c:1359
+#: ../../install_steps_interactive.pm_.c:1344
msgid "Replay"
msgstr "Parodyti vël"
-#: ../../install_steps_interactive.pm_.c:1362
+#: ../../install_steps_interactive.pm_.c:1347
msgid "Save packages selection"
msgstr "Iđsaugoti paketű pasirinkimà"
@@ -5543,7 +5622,8 @@ msgstr "Iđsaugoti paketű pasirinkimà"
msgid "Mandrake Linux Installation %s"
msgstr "Mandrake Linux ádiegimas %s"
-#: ../../install_steps_newt.pm_.c:34
+#. -PO This string must fit in a 80-char wide text screen
+#: ../../install_steps_newt.pm_.c:35
msgid ""
" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
msgstr ""
@@ -5563,22 +5643,22 @@ msgstr ""
msgid "Choose a file"
msgstr "Pasirink veiksmà"
-#: ../../interactive.pm_.c:317
+#: ../../interactive.pm_.c:320
msgid "Advanced"
msgstr "Iđplëstinis"
-#: ../../interactive.pm_.c:318
+#: ../../interactive.pm_.c:321
msgid "Basic"
msgstr ""
-#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:155
-#: ../../printerdrake.pm_.c:1990
+#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:158
+#: ../../printerdrake.pm_.c:2124
msgid "<- Previous"
msgstr "<- Ankstesnis"
#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
-#: ../../standalone/drakbackup_.c:3464 ../../standalone/drakbackup_.c:3491
-#: ../../standalone/drakbackup_.c:3517
+#: ../../standalone/drakbackup_.c:4112 ../../standalone/drakbackup_.c:4139
+#: ../../standalone/drakbackup_.c:4169 ../../standalone/drakbackup_.c:4195
#, fuzzy
msgid "Next"
msgstr "Tekstas"
@@ -5646,386 +5726,386 @@ msgstr ""
msgid "Re-submit"
msgstr ""
-#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:152 ../../keyboard.pm_.c:187
msgid "Czech (QWERTZ)"
msgstr "Èekű (QWERTZ)"
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:153 ../../keyboard.pm_.c:189
msgid "German"
msgstr "Vokieèiű"
-#: ../../keyboard.pm_.c:175
+#: ../../keyboard.pm_.c:154
msgid "Dvorak"
msgstr "Dvorako"
-#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:218
+#: ../../keyboard.pm_.c:155 ../../keyboard.pm_.c:197
msgid "Spanish"
msgstr "Ispanű"
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:156 ../../keyboard.pm_.c:198
msgid "Finnish"
msgstr "Suomiű"
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:220
+#: ../../keyboard.pm_.c:157 ../../keyboard.pm_.c:199
msgid "French"
msgstr "Prancûzű"
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:158 ../../keyboard.pm_.c:231
msgid "Norwegian"
msgstr "Norvegű"
-#: ../../keyboard.pm_.c:180
+#: ../../keyboard.pm_.c:159
msgid "Polish"
msgstr "Lenkű"
-#: ../../keyboard.pm_.c:181 ../../keyboard.pm_.c:260
+#: ../../keyboard.pm_.c:160 ../../keyboard.pm_.c:239
msgid "Russian"
msgstr "Rusű"
-#: ../../keyboard.pm_.c:183 ../../keyboard.pm_.c:262
+#: ../../keyboard.pm_.c:162 ../../keyboard.pm_.c:241
msgid "Swedish"
msgstr "Đvedű"
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:278
+#: ../../keyboard.pm_.c:163 ../../keyboard.pm_.c:257
msgid "UK keyboard"
msgstr "Jungtinës karalystës klaviatûra"
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:279
+#: ../../keyboard.pm_.c:164 ../../keyboard.pm_.c:258
msgid "US keyboard"
msgstr "JAV klaviatûra"
-#: ../../keyboard.pm_.c:187
+#: ../../keyboard.pm_.c:166
#, fuzzy
msgid "Albanian"
msgstr "Iranieèiű"
-#: ../../keyboard.pm_.c:188
+#: ../../keyboard.pm_.c:167
msgid "Armenian (old)"
msgstr "Armënű (senoji)"
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:168
msgid "Armenian (typewriter)"
msgstr "Armënű (spausd. mađinëlës)"
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:169
msgid "Armenian (phonetic)"
msgstr "Armënű (fonetinë)"
-#: ../../keyboard.pm_.c:195
+#: ../../keyboard.pm_.c:174
msgid "Azerbaidjani (latin)"
msgstr "Azerbaidțanieèiű (lotyniđka)"
-#: ../../keyboard.pm_.c:197
+#: ../../keyboard.pm_.c:176
msgid "Belgian"
msgstr "Belgű"
-#: ../../keyboard.pm_.c:198
+#: ../../keyboard.pm_.c:177
#, fuzzy
msgid "Bengali"
msgstr "ájungti"
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:178
#, fuzzy
msgid "Bulgarian (phonetic)"
msgstr "Armënű (fonetinë)"
-#: ../../keyboard.pm_.c:200
+#: ../../keyboard.pm_.c:179
#, fuzzy
msgid "Bulgarian (BDS)"
msgstr "Bulgarű"
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:180
msgid "Brazilian (ABNT-2)"
msgstr "Brazilű (ABNT-2)"
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:183
#, fuzzy
msgid "Bosnian"
msgstr "Estű"
-#: ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:184
msgid "Belarusian"
msgstr "Baltarusiű"
-#: ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:185
msgid "Swiss (German layout)"
msgstr "Đveicarű (Vokiđkas iđdëstymas)"
-#: ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:186
msgid "Swiss (French layout)"
msgstr "Đveicarű. (Prancûziđkas iđdëstymas)"
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:188
msgid "Czech (QWERTY)"
msgstr "Èekű (QWERTY)"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:190
msgid "German (no dead keys)"
msgstr "Vokieèiű (be mirusiű klaviđű)"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:191
msgid "Devanagari"
msgstr ""
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:192
msgid "Danish"
msgstr "Danű"
-#: ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:193
msgid "Dvorak (US)"
msgstr "Dvorako (JAV)"
-#: ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:194
msgid "Dvorak (Norwegian)"
msgstr "Dvorako (Norvegű)"
-#: ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:195
#, fuzzy
msgid "Dvorak (Swedish)"
msgstr "Dvorako (JAV)"
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:196
msgid "Estonian"
msgstr "Estű"
-#: ../../keyboard.pm_.c:221
+#: ../../keyboard.pm_.c:200
msgid "Georgian (\"Russian\" layout)"
msgstr "Gruzinű (\"Rusiđkas\" iđdëstymas)"
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:201
msgid "Georgian (\"Latin\" layout)"
msgstr "Gruzinű (\"Latin\" iđdëstymas)"
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:202
msgid "Greek"
msgstr "Graikű"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:203
msgid "Gujarati"
msgstr ""
-#: ../../keyboard.pm_.c:225
+#: ../../keyboard.pm_.c:204
msgid "Gurmukhi"
msgstr ""
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:205
msgid "Hungarian"
msgstr "Vengrű"
-#: ../../keyboard.pm_.c:227
+#: ../../keyboard.pm_.c:206
msgid "Croatian"
msgstr "Kroatű"
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:207
msgid "Israeli"
msgstr "Izraelio"
-#: ../../keyboard.pm_.c:229
+#: ../../keyboard.pm_.c:208
msgid "Israeli (Phonetic)"
msgstr "Țydű (Fonetinë)"
-#: ../../keyboard.pm_.c:230
+#: ../../keyboard.pm_.c:209
msgid "Iranian"
msgstr "Iranieèiű"
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:210
msgid "Icelandic"
msgstr "Islandű"
-#: ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:211
msgid "Italian"
msgstr "Italű"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:212
msgid "Inuktitut"
msgstr ""
-#: ../../keyboard.pm_.c:234
+#: ../../keyboard.pm_.c:213
msgid "Japanese 106 keys"
msgstr "Japoniđka 106 klaviđű"
-#: ../../keyboard.pm_.c:237
+#: ../../keyboard.pm_.c:216
#, fuzzy
msgid "Korean keyboard"
msgstr "Jungtinës karalystës klaviatûra"
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:217
msgid "Latin American"
msgstr "Lotynű Amerikos"
-#: ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:218
#, fuzzy
msgid "Laotian"
msgstr "Vieta"
-#: ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:219
msgid "Lithuanian AZERTY (old)"
msgstr "Lietuviű ÀȚERTY (sena)"
-#: ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:221
msgid "Lithuanian AZERTY (new)"
msgstr "Lietuviű ÀȚERTY (nauja)"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:222
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Lietuviű \"skaièiű eilë\" QWERTY"
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:223
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "Lietuviű \"fonetinë\" QWERTY"
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:224
#, fuzzy
msgid "Latvian"
msgstr "Vieta"
-#: ../../keyboard.pm_.c:246
+#: ../../keyboard.pm_.c:225
msgid "Macedonian"
msgstr "Makedonieèiű"
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:226
msgid "Myanmar (Burmese)"
msgstr ""
-#: ../../keyboard.pm_.c:248
+#: ../../keyboard.pm_.c:227
#, fuzzy
msgid "Mongolian (cyrillic)"
msgstr "Azerbaidțanieèiű (kirilica)"
-#: ../../keyboard.pm_.c:249
+#: ../../keyboard.pm_.c:228
msgid "Maltese (UK)"
msgstr ""
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:229
msgid "Maltese (US)"
msgstr ""
-#: ../../keyboard.pm_.c:251
+#: ../../keyboard.pm_.c:230
msgid "Dutch"
msgstr "Olandű"
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:232
msgid "Polish (qwerty layout)"
msgstr "Lenkű (QWERTY iđdëstymas)"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:233
msgid "Polish (qwertz layout)"
msgstr "Lenkű (QWERTZ iđdëstymas)"
-#: ../../keyboard.pm_.c:255
+#: ../../keyboard.pm_.c:234
msgid "Portuguese"
msgstr "Portugalű"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:235
msgid "Canadian (Quebec)"
msgstr "Kanadieèiű (Kvebeko)"
-#: ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:237
#, fuzzy
msgid "Romanian (qwertz)"
msgstr "Rusiđka (Yawerty)"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:238
#, fuzzy
msgid "Romanian (qwerty)"
msgstr "Rusiđka (Yawerty)"
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:240
msgid "Russian (Yawerty)"
msgstr "Rusiđka (Yawerty)"
-#: ../../keyboard.pm_.c:263
+#: ../../keyboard.pm_.c:242
msgid "Slovenian"
msgstr "Slovënű"
-#: ../../keyboard.pm_.c:264
+#: ../../keyboard.pm_.c:243
msgid "Slovakian (QWERTZ)"
msgstr "Slovakű (QWERTZ)"
-#: ../../keyboard.pm_.c:265
+#: ../../keyboard.pm_.c:244
msgid "Slovakian (QWERTY)"
msgstr "Slovakű (QWERTY)"
-#: ../../keyboard.pm_.c:267
+#: ../../keyboard.pm_.c:246
#, fuzzy
msgid "Serbian (cyrillic)"
msgstr "Azerbaidțanieèiű (kirilica)"
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:248
msgid "Tamil (Unicode)"
msgstr ""
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:249
msgid "Tamil (TSCII)"
msgstr ""
-#: ../../keyboard.pm_.c:271
+#: ../../keyboard.pm_.c:250
msgid "Thai keyboard"
msgstr "Thai klaviatûra"
-#: ../../keyboard.pm_.c:273
+#: ../../keyboard.pm_.c:252
#, fuzzy
msgid "Tajik keyboard"
msgstr "Thai klaviatûra"
-#: ../../keyboard.pm_.c:274
+#: ../../keyboard.pm_.c:253
msgid "Turkish (traditional \"F\" model)"
msgstr "Turkű (tradicinis \"F\" modelis)"
-#: ../../keyboard.pm_.c:275
+#: ../../keyboard.pm_.c:254
msgid "Turkish (modern \"Q\" model)"
msgstr "Turkű (điuolaikinis \"Q\" modelis)"
-#: ../../keyboard.pm_.c:277
+#: ../../keyboard.pm_.c:256
msgid "Ukrainian"
msgstr "Ukrainieèiű"
-#: ../../keyboard.pm_.c:280
+#: ../../keyboard.pm_.c:259
msgid "US keyboard (international)"
msgstr "JAV klaviatûra (tarptautinë)"
-#: ../../keyboard.pm_.c:281
+#: ../../keyboard.pm_.c:260
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "Vietnamieèiű \"skaièiű eilë\" QWERTY"
-#: ../../keyboard.pm_.c:282
+#: ../../keyboard.pm_.c:261
#, fuzzy
msgid "Yugoslavian (latin)"
msgstr "Jugoslavű (lotyniđkas/kirilikos)"
-#: ../../keyboard.pm_.c:289
+#: ../../keyboard.pm_.c:268
msgid "Right Alt key"
msgstr ""
-#: ../../keyboard.pm_.c:290
+#: ../../keyboard.pm_.c:269
msgid "Both Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:291
+#: ../../keyboard.pm_.c:270
msgid "Control and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:292
+#: ../../keyboard.pm_.c:271
msgid "CapsLock key"
msgstr ""
-#: ../../keyboard.pm_.c:293
+#: ../../keyboard.pm_.c:272
msgid "Ctrl and Alt keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:294
+#: ../../keyboard.pm_.c:273
msgid "Alt and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:295
+#: ../../keyboard.pm_.c:274
msgid "\"Menu\" key"
msgstr ""
-#: ../../keyboard.pm_.c:296
+#: ../../keyboard.pm_.c:275
msgid "Left \"Windows\" key"
msgstr ""
-#: ../../keyboard.pm_.c:297
+#: ../../keyboard.pm_.c:276
msgid "Right \"Windows\" key"
msgstr ""
@@ -6083,11 +6163,11 @@ msgstr "Paprasta PS2 pelë su ratuku"
msgid "GlidePoint"
msgstr "GlidePoint"
-#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:63
+#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:65
msgid "Kensington Thinking Mouse"
msgstr "Kensington Thinking Mouse"
-#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:59
+#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:61
msgid "Genius NetMouse"
msgstr "Genius NetMouse"
@@ -6095,116 +6175,125 @@ msgstr "Genius NetMouse"
msgid "Genius NetScroll"
msgstr "Genius NetScroll"
-#: ../../mouse.pm_.c:43 ../../mouse.pm_.c:68
+#: ../../mouse.pm_.c:39 ../../mouse.pm_.c:48
+#, fuzzy
+msgid "Microsoft Explorer"
+msgstr "Microsoft IntelliMouse"
+
+#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:70
#, fuzzy
msgid "1 button"
msgstr "2 klaviđű"
-#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:51
+#: ../../mouse.pm_.c:45 ../../mouse.pm_.c:53
msgid "Generic 2 Button Mouse"
msgstr "Paprasta 2 klaviđű pelë"
-#: ../../mouse.pm_.c:46
+#: ../../mouse.pm_.c:47
msgid "Wheel"
msgstr "Su ratuku"
-#: ../../mouse.pm_.c:49
+#: ../../mouse.pm_.c:51
msgid "serial"
msgstr "nuoseklioji"
-#: ../../mouse.pm_.c:52
+#: ../../mouse.pm_.c:54
msgid "Generic 3 Button Mouse"
msgstr "Paprasta 3 klaviđű pelë"
-#: ../../mouse.pm_.c:53
+#: ../../mouse.pm_.c:55
msgid "Microsoft IntelliMouse"
msgstr "Microsoft IntelliMouse"
-#: ../../mouse.pm_.c:54
+#: ../../mouse.pm_.c:56
msgid "Logitech MouseMan"
msgstr "Logitech MouseMan"
-#: ../../mouse.pm_.c:55
+#: ../../mouse.pm_.c:57
msgid "Mouse Systems"
msgstr "Mouse Systems"
-#: ../../mouse.pm_.c:57
+#: ../../mouse.pm_.c:59
msgid "Logitech CC Series"
msgstr "Logitech CC Series"
-#: ../../mouse.pm_.c:58
+#: ../../mouse.pm_.c:60
msgid "Logitech MouseMan+/FirstMouse+"
msgstr "Logitech MouseMan+/FirstMouse+"
-#: ../../mouse.pm_.c:60
+#: ../../mouse.pm_.c:62
msgid "MM Series"
msgstr "MM Series"
-#: ../../mouse.pm_.c:61
+#: ../../mouse.pm_.c:63
msgid "MM HitTablet"
msgstr "MM HitTablet"
-#: ../../mouse.pm_.c:62
+#: ../../mouse.pm_.c:64
msgid "Logitech Mouse (serial, old C7 type)"
msgstr "Logitech Mouse (nuoseklioji, seno C7 tipo)"
-#: ../../mouse.pm_.c:66
+#: ../../mouse.pm_.c:68
msgid "busmouse"
msgstr "busmouse"
-#: ../../mouse.pm_.c:69
+#: ../../mouse.pm_.c:71
msgid "2 buttons"
msgstr "2 klaviđű"
-#: ../../mouse.pm_.c:70
+#: ../../mouse.pm_.c:72
msgid "3 buttons"
msgstr "3 klaviđű"
-#: ../../mouse.pm_.c:73
+#: ../../mouse.pm_.c:75
msgid "none"
msgstr "jokios"
-#: ../../mouse.pm_.c:75
+#: ../../mouse.pm_.c:77
msgid "No mouse"
msgstr "Pelës nëra"
-#: ../../mouse.pm_.c:445
+#: ../../mouse.pm_.c:482
msgid "Please test the mouse"
msgstr "Prađom iđbandyti pelæ"
-#: ../../mouse.pm_.c:446
+#: ../../mouse.pm_.c:483
msgid "To activate the mouse,"
msgstr "Kad suțadintum pelæ,"
-#: ../../mouse.pm_.c:447
+#: ../../mouse.pm_.c:484
msgid "MOVE YOUR WHEEL!"
msgstr "PASUK RATUKÀ!"
-#: ../../my_gtk.pm_.c:156
+#: ../../my_gtk.pm_.c:64
+msgid "-adobe-utopia-regular-r-*-*-25-*-*-*-p-*-iso8859-*,*-r-*"
+msgstr ""
+
+#: ../../my_gtk.pm_.c:159
msgid "Finish"
msgstr "Suomiű"
-#: ../../my_gtk.pm_.c:156 ../../printerdrake.pm_.c:1992
+#: ../../my_gtk.pm_.c:159 ../../printerdrake.pm_.c:2126
msgid "Next ->"
msgstr "Toliau ->"
-#: ../../my_gtk.pm_.c:284
+#: ../../my_gtk.pm_.c:287
msgid "Is this correct?"
msgstr "Ar taip teisinga?"
-#: ../../my_gtk.pm_.c:356 ../../services.pm_.c:222
+#: ../../my_gtk.pm_.c:359 ../../services.pm_.c:222
msgid "Info"
msgstr "Info"
-#: ../../my_gtk.pm_.c:377
+#: ../../my_gtk.pm_.c:380
msgid "Expand Tree"
msgstr "Iđskleisti medá"
-#: ../../my_gtk.pm_.c:378
+#: ../../my_gtk.pm_.c:381
msgid "Collapse Tree"
msgstr "Suskleisti medá"
-#: ../../my_gtk.pm_.c:379
+#: ../../my_gtk.pm_.c:382
msgid "Toggle between flat and group sorted"
msgstr "Perjungti tarp rikiavimo pagal grupes ar abëcëlæ"
@@ -6242,6 +6331,68 @@ msgstr "naudoti pppoe"
msgid "use pptp"
msgstr "naudoti pptp"
+#: ../../network/drakfirewall.pm_.c:12
+#, fuzzy
+msgid "Web Server"
+msgstr "serveris"
+
+#: ../../network/drakfirewall.pm_.c:17
+#, fuzzy
+msgid "Domain Name Server"
+msgstr "Domeno vardas"
+
+#: ../../network/drakfirewall.pm_.c:32
+#, fuzzy
+msgid "Mail Server"
+msgstr "Serveris, Duomenű baziű"
+
+#: ../../network/drakfirewall.pm_.c:37
+#, fuzzy
+msgid "POP and IMAP Server"
+msgstr "serveris"
+
+#: ../../network/drakfirewall.pm_.c:111
+#, fuzzy
+msgid "No network card"
+msgstr "nerasta jokia tinklo plokđtë"
+
+#: ../../network/drakfirewall.pm_.c:129
+msgid ""
+"drakfirewall configurator\n"
+"\n"
+"This configures a personal firewall for this Mandrake Linux machine.\n"
+"For a powerful dedicated firewall solution, please look to the\n"
+"specialized MandrakeSecurity Firewall distribution."
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:147
+msgid "Which services would you like to allow the Internet to connect to?"
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:148
+msgid ""
+"You can enter miscellaneous ports. \n"
+"Valid examples are: 139/tcp 139/udp.\n"
+"Have a look at /etc/services for information."
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:154
+#, c-format
+msgid ""
+"Invalid port given: %s.\n"
+"The proper format is \"port/tcp\" or \"port/udp\", \n"
+"where port is between 1 and 65535."
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:162
+msgid "Everything (no firewall)"
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:164
+#, fuzzy
+msgid "Other ports"
+msgstr "Patikrinti prievadus"
+
#: ../../network/ethernet.pm_.c:37
msgid ""
"Which dhcp client do you want to use?\n"
@@ -6258,7 +6409,7 @@ msgstr ""
"Neradau jokio ethernet tinklo adapterio tavo sistemoje.\n"
"Ađ negaliu sutvarkyti đio jungties tipo."
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:247
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:240
msgid "Choose the network interface"
msgstr "Pasirink tinklo interfeisà"
@@ -6273,7 +6424,7 @@ msgstr ""
msgid "no network card found"
msgstr "nerasta jokia tinklo plokđtë"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:366
msgid "Configuring network"
msgstr "Konfigûruojamas tinklas"
@@ -6289,7 +6440,7 @@ msgstr ""
"tai turëtű bûti pilnai aprađytas hosto vardas, panađus\n"
"á \"mano.filialas.istaiga.lt\"."
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:370
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:371
msgid "Host name"
msgstr "Hosto vardas"
@@ -6593,13 +6744,13 @@ msgstr "Konfiguravimui pasirinkite prifailà"
msgid "Use auto detection"
msgstr "Naudokite automatiná aptikimà"
-#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2930
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:3151
#: ../../standalone/drakconnect_.c:274 ../../standalone/drakconnect_.c:277
#: ../../standalone/drakfloppy_.c:145
msgid "Expert Mode"
msgstr "Experto rețimas"
-#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:283
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:386
msgid "Detecting devices..."
msgstr "Ieđkoma áranga..."
@@ -6765,11 +6916,11 @@ msgstr "Automatinis IP"
msgid "Start at boot"
msgstr "Startavo ákrovos metu"
-#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:753
+#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:860
msgid "IP address should be in format 1.2.3.4"
msgstr "IP adresas turëtű bûti 1.2.3.4 formato"
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:367
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -6781,43 +6932,55 @@ msgstr ""
"á \"mano.filialas.istaiga.lt\".\n"
"Taip pat gali ávesti đliuzo (gateway) IP adresà, jeigu toká turi"
-#: ../../network/network.pm_.c:371
+#: ../../network/network.pm_.c:372
msgid "DNS server"
msgstr "DNS serveris"
-#: ../../network/network.pm_.c:372
+#: ../../network/network.pm_.c:373
#, c-format
msgid "Gateway (e.g. %s)"
msgstr ""
-#: ../../network/network.pm_.c:374
+#: ../../network/network.pm_.c:375
msgid "Gateway device"
msgstr "Đliuzo (gateway) árenginys"
-#: ../../network/network.pm_.c:386
+#: ../../network/network.pm_.c:387
msgid "Proxies configuration"
msgstr "Proxy konfigûracija"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:388
msgid "HTTP proxy"
msgstr "HTTP proxy"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:389
msgid "FTP proxy"
msgstr "FTP proxy"
-#: ../../network/network.pm_.c:389
+#: ../../network/network.pm_.c:390
msgid "Track network card id (useful for laptops)"
msgstr ""
-#: ../../network/network.pm_.c:392
+#: ../../network/network.pm_.c:393
msgid "Proxy should be http://..."
msgstr "Proxy turëtű bûti http://..."
-#: ../../network/network.pm_.c:393
+#: ../../network/network.pm_.c:394
msgid "Proxy should be ftp://..."
msgstr "Proxy turëtű bûti ftp://..."
+#: ../../network/shorewall.pm_.c:24
+msgid "Firewalling configuration detected!"
+msgstr "Aptikta ugniasienës konfigûracija!"
+
+#: ../../network/shorewall.pm_.c:25
+msgid ""
+"Warning! An existing firewalling configuration has been detected. You may "
+"need some manual fix after installation."
+msgstr ""
+"Áspëjimas! Aptikta ugniasienës konfigûracija! Tau gali tekti kai kà "
+"iđtaisyti rankomis po ádiegimo."
+
#: ../../network/tools.pm_.c:41
msgid "Internet configuration"
msgstr "Interneto konfigûravimas"
@@ -6926,15 +7089,15 @@ msgstr "Slaptațodis"
msgid "United Kingdom"
msgstr ""
-#: ../../partition_table.pm_.c:606
+#: ../../partition_table.pm_.c:602
msgid "mount failed: "
msgstr "primontuoti nepavyko: "
-#: ../../partition_table.pm_.c:670
+#: ../../partition_table.pm_.c:666
msgid "Extended partition not supported on this platform"
msgstr "Iđplëstiniai skirsniai đioje platformoje nepalaikomi"
-#: ../../partition_table.pm_.c:688
+#: ../../partition_table.pm_.c:684
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
@@ -6944,21 +7107,21 @@ msgstr ""
"Vienintelis sprendimas yra perkelti pirminius skirsnius taip, kad tuđèia "
"vieta bûtű đalia iđplëstiniű skirsniű"
-#: ../../partition_table.pm_.c:778
+#: ../../partition_table.pm_.c:774
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "Nepavyko atstatyti iđ bylos %s: %s"
-#: ../../partition_table.pm_.c:780
+#: ../../partition_table.pm_.c:776
msgid "Bad backup file"
msgstr "Bloga atsarginë byla"
-#: ../../partition_table.pm_.c:802
+#: ../../partition_table.pm_.c:798
#, c-format
msgid "Error writing to file %s"
msgstr "Klaida árađant á bylà %s"
-#: ../../partition_table/raw.pm_.c:187
+#: ../../partition_table/raw.pm_.c:189
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
@@ -7004,157 +7167,161 @@ msgstr ""
msgid "PDQ - Print, Don't Queue"
msgstr ""
-#: ../../printer.pm_.c:35 ../../printer.pm_.c:854
+#: ../../printer.pm_.c:34 ../../printer.pm_.c:1125
msgid "CUPS"
msgstr ""
-#: ../../printer.pm_.c:36
+#: ../../printer.pm_.c:35
msgid "LPRng"
msgstr ""
-#: ../../printer.pm_.c:37
+#: ../../printer.pm_.c:36
msgid "LPD"
msgstr ""
-#: ../../printer.pm_.c:38
+#: ../../printer.pm_.c:37
msgid "PDQ"
msgstr ""
-#: ../../printer.pm_.c:50
+#: ../../printer.pm_.c:49
msgid "Local printer"
msgstr "Vietinis spausdintuvas"
-#: ../../printer.pm_.c:51
+#: ../../printer.pm_.c:50
msgid "Remote printer"
msgstr "Nutolæs spausdintuvas"
-#: ../../printer.pm_.c:52
+#: ../../printer.pm_.c:51
#, fuzzy
msgid "Printer on remote CUPS server"
msgstr "Nutolæs CUPS serveris"
-#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:776
+#: ../../printer.pm_.c:52 ../../printerdrake.pm_.c:883
#, fuzzy
msgid "Printer on remote lpd server"
msgstr "Nutolæs lpd serveris"
-#: ../../printer.pm_.c:54
+#: ../../printer.pm_.c:53
msgid "Network printer (TCP/Socket)"
msgstr "Tinklo spausdintuvas (TCP/lizdas)"
-#: ../../printer.pm_.c:55
+#: ../../printer.pm_.c:54
#, fuzzy
msgid "Printer on SMB/Windows 95/98/NT server"
msgstr "SMB/Windows 95/98/NT"
-#: ../../printer.pm_.c:56
+#: ../../printer.pm_.c:55
#, fuzzy
msgid "Printer on NetWare server"
msgstr "Spausdinimo serveris"
-#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:780
+#: ../../printer.pm_.c:56 ../../printerdrake.pm_.c:887
#, fuzzy
msgid "Enter a printer device URI"
msgstr "Spausdintuvo árenginio URI"
-#: ../../printer.pm_.c:58
+#: ../../printer.pm_.c:57
msgid "Pipe job into a command"
msgstr ""
-#: ../../printer.pm_.c:487 ../../printer.pm_.c:678 ../../printer.pm_.c:1000
-#: ../../printerdrake.pm_.c:2070 ../../printerdrake.pm_.c:3189
+#: ../../printer.pm_.c:324 ../../printer.pm_.c:366 ../../printer.pm_.c:533
+msgid "Unknown Model"
+msgstr ""
+
+#: ../../printer.pm_.c:735 ../../printer.pm_.c:926 ../../printer.pm_.c:1318
+#: ../../printerdrake.pm_.c:2260 ../../printerdrake.pm_.c:3414
msgid "Unknown model"
msgstr ""
-#: ../../printer.pm_.c:515
+#: ../../printer.pm_.c:763
#, fuzzy
msgid "Local Printers"
msgstr "Vietinis spausdintuvas"
-#: ../../printer.pm_.c:517 ../../printer.pm_.c:855
+#: ../../printer.pm_.c:765 ../../printer.pm_.c:1126
#, fuzzy
msgid "Remote Printers"
msgstr "Nutolæs spausdintuvas"
-#: ../../printer.pm_.c:524 ../../printerdrake.pm_.c:301
+#: ../../printer.pm_.c:772 ../../printerdrake.pm_.c:404
#, c-format
msgid " on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:527 ../../printerdrake.pm_.c:303
+#: ../../printer.pm_.c:775 ../../printerdrake.pm_.c:406
#, c-format
msgid ", USB printer \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:532
+#: ../../printer.pm_.c:780
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:535
+#: ../../printer.pm_.c:783
msgid ", multi-function device on USB"
msgstr ""
-#: ../../printer.pm_.c:537
+#: ../../printer.pm_.c:785
msgid ", multi-function device on HP JetDirect"
msgstr ""
-#: ../../printer.pm_.c:539
+#: ../../printer.pm_.c:787
msgid ", multi-function device"
msgstr ""
-#: ../../printer.pm_.c:542
+#: ../../printer.pm_.c:790
#, fuzzy, c-format
msgid ", printing to %s"
msgstr "Klaida árađant á bylà %s"
-#: ../../printer.pm_.c:544
+#: ../../printer.pm_.c:792
#, c-format
msgid " on LPD server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:546
+#: ../../printer.pm_.c:794
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ""
-#: ../../printer.pm_.c:550
+#: ../../printer.pm_.c:798
#, c-format
msgid " on SMB/Windows server \"%s\", share \"%s\""
msgstr ""
-#: ../../printer.pm_.c:554
+#: ../../printer.pm_.c:802
#, c-format
msgid " on Novell server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:556
+#: ../../printer.pm_.c:804
#, c-format
msgid ", using command %s"
msgstr ""
-#: ../../printer.pm_.c:675 ../../printerdrake.pm_.c:1540
+#: ../../printer.pm_.c:923 ../../printerdrake.pm_.c:1656
msgid "Raw printer (No driver)"
msgstr ""
-#: ../../printer.pm_.c:824
+#: ../../printer.pm_.c:1095
#, fuzzy, c-format
msgid "(on %s)"
msgstr "(modulis %s)"
-#: ../../printer.pm_.c:826
+#: ../../printer.pm_.c:1097
msgid "(on this machine)"
msgstr ""
-#: ../../printer.pm_.c:851
+#: ../../printer.pm_.c:1122
#, fuzzy, c-format
msgid "On CUPS server \"%s\""
msgstr "CUPS serverio IP"
-#: ../../printer.pm_.c:857 ../../printerdrake.pm_.c:2851
-#: ../../printerdrake.pm_.c:2862 ../../printerdrake.pm_.c:3078
-#: ../../printerdrake.pm_.c:3130 ../../printerdrake.pm_.c:3156
-#: ../../printerdrake.pm_.c:3326 ../../printerdrake.pm_.c:3328
+#: ../../printer.pm_.c:1128 ../../printerdrake.pm_.c:3071
+#: ../../printerdrake.pm_.c:3082 ../../printerdrake.pm_.c:3303
+#: ../../printerdrake.pm_.c:3355 ../../printerdrake.pm_.c:3381
+#: ../../printerdrake.pm_.c:3556 ../../printerdrake.pm_.c:3558
msgid " (Default)"
msgstr " (Áprastas)"
@@ -7181,12 +7348,12 @@ msgstr ""
msgid "Printer auto-detection (Local, TCP/Socket, and SMB printers)"
msgstr ""
-#: ../../printerdrake.pm_.c:84 ../../printerdrake.pm_.c:2914
+#: ../../printerdrake.pm_.c:84 ../../printerdrake.pm_.c:3135
#, fuzzy
msgid "CUPS configuration"
msgstr "LAN Konfiguravimas"
-#: ../../printerdrake.pm_.c:85 ../../printerdrake.pm_.c:2915
+#: ../../printerdrake.pm_.c:85 ../../printerdrake.pm_.c:3136
#, fuzzy
msgid "Specify CUPS server"
msgstr "Nutolæs CUPS serveris"
@@ -7217,7 +7384,7 @@ msgstr ""
msgid "The IP address should look like 192.168.1.20"
msgstr "IP adresas turëtű bûti 1.2.3.4 formato"
-#: ../../printerdrake.pm_.c:95 ../../printerdrake.pm_.c:987
+#: ../../printerdrake.pm_.c:95 ../../printerdrake.pm_.c:1094
#, fuzzy
msgid "The port number should be an integer!"
msgstr "Prievado numeris turi bûti skaièius"
@@ -7226,7 +7393,7 @@ msgstr "Prievado numeris turi bûti skaièius"
msgid "CUPS server IP"
msgstr "CUPS serverio IP"
-#: ../../printerdrake.pm_.c:103 ../../printerdrake.pm_.c:1007
+#: ../../printerdrake.pm_.c:103 ../../printerdrake.pm_.c:1114
msgid "Port"
msgstr "Prievadas"
@@ -7235,13 +7402,131 @@ msgstr "Prievadas"
msgid "Automatic CUPS configuration"
msgstr "Ádiegimo Tipo Konfiguracija"
-#: ../../printerdrake.pm_.c:183 ../../printerdrake.pm_.c:192
-#: ../../printerdrake.pm_.c:2897 ../../printerdrake.pm_.c:3017
+#: ../../printerdrake.pm_.c:177 ../../printerdrake.pm_.c:247
+#: ../../printerdrake.pm_.c:1529 ../../printerdrake.pm_.c:1533
+#: ../../printerdrake.pm_.c:1651 ../../printerdrake.pm_.c:2203
+#: ../../printerdrake.pm_.c:2356 ../../printerdrake.pm_.c:2415
+#: ../../printerdrake.pm_.c:2488 ../../printerdrake.pm_.c:2509
+#: ../../printerdrake.pm_.c:2699 ../../printerdrake.pm_.c:2740
+#: ../../printerdrake.pm_.c:2745 ../../printerdrake.pm_.c:2779
+#: ../../printerdrake.pm_.c:2784 ../../printerdrake.pm_.c:2821
+#: ../../printerdrake.pm_.c:2874 ../../printerdrake.pm_.c:2894
+#: ../../printerdrake.pm_.c:2908 ../../printerdrake.pm_.c:2942
+#: ../../printerdrake.pm_.c:2988 ../../printerdrake.pm_.c:3006
+#: ../../printerdrake.pm_.c:3095 ../../printerdrake.pm_.c:3169
+#: ../../printerdrake.pm_.c:3471 ../../printerdrake.pm_.c:3526
+#: ../../printerdrake.pm_.c:3579 ../../standalone/printerdrake_.c:57
+msgid "Printerdrake"
+msgstr "Printerdrake"
+
+#: ../../printerdrake.pm_.c:178
+#, fuzzy
+msgid "Checking your system..."
+msgstr "Kurià spausdinimo sistemà nori naudoti?"
+
+#: ../../printerdrake.pm_.c:186
+msgid ""
+"There are no printers found which are directly connected to your machine"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:198
+#, fuzzy
+msgid ""
+"The following printers\n"
+"\n"
+msgstr "Ruođiamasi pađalinti điuos paketus"
+
+#: ../../printerdrake.pm_.c:199
+#, fuzzy
+msgid ""
+"The following printer\n"
+"\n"
+msgstr "Ruođiamasi pađalinti điuos paketus"
+
+#: ../../printerdrake.pm_.c:201
+msgid ""
+"\n"
+"and one unknown printer are "
+msgstr ""
+
+#: ../../printerdrake.pm_.c:203
+#, c-format
+msgid ""
+"\n"
+"and %d unknown printers are "
+msgstr ""
+
+#: ../../printerdrake.pm_.c:207
+msgid ""
+"\n"
+"are "
+msgstr ""
+
+#: ../../printerdrake.pm_.c:208
+msgid ""
+"\n"
+"is "
+msgstr ""
+
+#: ../../printerdrake.pm_.c:210
+#, fuzzy
+msgid "directly connected to your system"
+msgstr "Tavo sistemoje nerasta jokia tinklo plokđtë!"
+
+#: ../../printerdrake.pm_.c:213
+msgid ""
+"\n"
+"There is one unknown printer directly connected to your system"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:215
+#, c-format
+msgid ""
+"\n"
+"There are %d unknown printers directly connected to your system"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:221
+#, fuzzy
+msgid " (Make sure that all your printers are connected and turned on).\n"
+msgstr ""
+"Prađom pasirinkti, prie kurios nuosekliosios jungties yra prijungtas tavo "
+"modemas."
+
+#: ../../printerdrake.pm_.c:235
+msgid ""
+"Do you want to enable printing on the printers mentioned above or on "
+"printers in the local network?\n"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:236
+#, fuzzy
+msgid "Do you want to enable printing on printers in the local network?\n"
+msgstr "Ar tu nori iđbandyti spausdinimà?"
+
+#: ../../printerdrake.pm_.c:238
+#, fuzzy
+msgid "Do you want to enable printing on the printers mentioned above?\n"
+msgstr "Ar tu nori prisijungti tik ájungus?"
+
+#: ../../printerdrake.pm_.c:239
+msgid "Are you sure that you want to set up printing on this machine?\n"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:240
+#, c-format
+msgid ""
+"NOTE: Depending on the printer model and the printing system up to %d MB of "
+"additional software will be installed."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:269 ../../printerdrake.pm_.c:278
+#: ../../printerdrake.pm_.c:3117 ../../printerdrake.pm_.c:3242
#, fuzzy
msgid "Add a new printer"
msgstr "Spausdintuvo nëra"
-#: ../../printerdrake.pm_.c:184
+#: ../../printerdrake.pm_.c:270
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7254,7 +7539,7 @@ msgid ""
"connection types."
msgstr ""
-#: ../../printerdrake.pm_.c:193
+#: ../../printerdrake.pm_.c:280
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7263,7 +7548,7 @@ msgid ""
"computer, connected directly to the network or to a remote Windows machine.\n"
"\n"
"If you have printer(s) connected to this machine, Please plug it/them in on "
-"this computer and turn it/them on so that they can be auto-detected. Also "
+"this computer and turn it/them on so that it/they can be auto-detected. Also "
"your network printer(s) and you Windows machines must be connected and "
"turned on.\n"
"\n"
@@ -7276,7 +7561,22 @@ msgid ""
"want to set up your printer(s) now."
msgstr ""
-#: ../../printerdrake.pm_.c:202
+#: ../../printerdrake.pm_.c:289 ../../printerdrake.pm_.c:306
+msgid ""
+"\n"
+"Welcome to the Printer Setup Wizard\n"
+"\n"
+"This wizard will help you to install your printer(s) connected to this "
+"computer.\n"
+"\n"
+"If you have printer(s) connected to this machine, Please plug it/them in on "
+"this computer and turn it/them on so that it/they can be auto-detected.\n"
+"\n"
+" Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
+"want to set up your printer(s) now."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:297
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7285,7 +7585,7 @@ msgid ""
"computer or connected directly to the network.\n"
"\n"
"If you have printer(s) connected to this machine, Please plug it/them in on "
-"this computer and turn it/them on so that they can be auto-detected. Also "
+"this computer and turn it/them on so that it/they can be auto-detected. Also "
"your network printer(s) must be connected and turned on.\n"
"\n"
"Note that auto-detecting printers on the network takes longer than the auto-"
@@ -7296,26 +7596,26 @@ msgid ""
"want to set up your printer(s) now."
msgstr ""
-#: ../../printerdrake.pm_.c:213
+#: ../../printerdrake.pm_.c:315
#, fuzzy
msgid "Auto-detect printers connected to this machine"
msgstr "Nutolæs spausdintuvas"
-#: ../../printerdrake.pm_.c:215
+#: ../../printerdrake.pm_.c:318
msgid "Auto-detect printers connected directly to the local network"
msgstr ""
-#: ../../printerdrake.pm_.c:218
+#: ../../printerdrake.pm_.c:321
msgid "Auto-detect printers connected to machines running Microsoft Windows"
msgstr ""
-#: ../../printerdrake.pm_.c:245 ../../printerdrake.pm_.c:459
-#: ../../printerdrake.pm_.c:484
+#: ../../printerdrake.pm_.c:348 ../../printerdrake.pm_.c:562
+#: ../../printerdrake.pm_.c:587
#, fuzzy
msgid "Local Printer"
msgstr "Vietinis spausdintuvas"
-#: ../../printerdrake.pm_.c:246
+#: ../../printerdrake.pm_.c:349
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -7329,50 +7629,50 @@ msgid ""
"Center."
msgstr ""
-#: ../../printerdrake.pm_.c:283 ../../printerdrake.pm_.c:474
-#: ../../printerdrake.pm_.c:683 ../../printerdrake.pm_.c:923
+#: ../../printerdrake.pm_.c:386 ../../printerdrake.pm_.c:577
+#: ../../printerdrake.pm_.c:790 ../../printerdrake.pm_.c:1030
#, fuzzy
msgid "Printer auto-detection"
msgstr "Naudokite automatiná aptikimà"
-#: ../../printerdrake.pm_.c:305
+#: ../../printerdrake.pm_.c:408
#, c-format
msgid ", network printer \"%s\", port %s"
msgstr ""
-#: ../../printerdrake.pm_.c:307
+#: ../../printerdrake.pm_.c:410
#, fuzzy, c-format
msgid ", printer \"%s\" on SMB/Windows server \"%s\""
msgstr "SMB/Windows 95/98/NT"
-#: ../../printerdrake.pm_.c:313
+#: ../../printerdrake.pm_.c:416
#, fuzzy, c-format
msgid "Detected %s"
msgstr "aptiktas %s"
-#: ../../printerdrake.pm_.c:317 ../../printerdrake.pm_.c:348
-#: ../../printerdrake.pm_.c:367
+#: ../../printerdrake.pm_.c:420 ../../printerdrake.pm_.c:451
+#: ../../printerdrake.pm_.c:470
#, c-format
msgid "Printer on parallel port \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:319 ../../printerdrake.pm_.c:350
-#: ../../printerdrake.pm_.c:372
+#: ../../printerdrake.pm_.c:422 ../../printerdrake.pm_.c:453
+#: ../../printerdrake.pm_.c:475
#, c-format
msgid "USB printer \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:321
+#: ../../printerdrake.pm_.c:424
#, fuzzy, c-format
msgid "Network printer \"%s\", port %s"
msgstr "Tinklo spausdintuvas (TCP/lizdas)"
-#: ../../printerdrake.pm_.c:323
+#: ../../printerdrake.pm_.c:426
#, fuzzy, c-format
msgid "Printer \"%s\" on SMB/Windows server \"%s\""
msgstr "SMB/Windows 95/98/NT"
-#: ../../printerdrake.pm_.c:460
+#: ../../printerdrake.pm_.c:563
msgid ""
"No local printer found! To manually install a printer enter a device name/"
"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
@@ -7380,34 +7680,34 @@ msgid ""
"printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:464
+#: ../../printerdrake.pm_.c:567
#, fuzzy
msgid "You must enter a device or file name!"
msgstr "Spausdintuvo árenginio URI"
-#: ../../printerdrake.pm_.c:475
+#: ../../printerdrake.pm_.c:578
#, fuzzy
msgid "No printer found!"
msgstr "Vietinis spausdintuvas"
-#: ../../printerdrake.pm_.c:485
+#: ../../printerdrake.pm_.c:588
#, fuzzy
msgid "Available printers"
msgstr "Vietinis spausdintuvas"
-#: ../../printerdrake.pm_.c:489
+#: ../../printerdrake.pm_.c:592
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:490
+#: ../../printerdrake.pm_.c:593
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up or enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:492
+#: ../../printerdrake.pm_.c:595
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
@@ -7415,7 +7715,7 @@ msgid ""
"configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:493
+#: ../../printerdrake.pm_.c:596
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
@@ -7423,40 +7723,40 @@ msgid ""
"customized printer configuration, turn on \"Manual configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:495
+#: ../../printerdrake.pm_.c:598
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:496
+#: ../../printerdrake.pm_.c:599
#, fuzzy
msgid "Please choose the port where your printer is connected to."
msgstr ""
"Prađom pasirinkti, prie kurios nuosekliosios jungties yra prijungtas tavo "
"modemas."
-#: ../../printerdrake.pm_.c:498
+#: ../../printerdrake.pm_.c:601
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:503
+#: ../../printerdrake.pm_.c:606
#, fuzzy
msgid "You must choose/enter a printer/device!"
msgstr "Spausdintuvo árenginio URI"
-#: ../../printerdrake.pm_.c:523
+#: ../../printerdrake.pm_.c:626
#, fuzzy
msgid "Manual configuration"
msgstr "Nustatymai"
-#: ../../printerdrake.pm_.c:577
+#: ../../printerdrake.pm_.c:680
msgid "Remote lpd Printer Options"
msgstr "Nutolusio lpd spausdintuvo nuostatos"
-#: ../../printerdrake.pm_.c:578
+#: ../../printerdrake.pm_.c:681
#, fuzzy
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
@@ -7466,51 +7766,51 @@ msgstr ""
"nurodyti to serverio hosto vardà ir pavadinimà eilës, kurioje\n"
"bus talpinami darbai."
-#: ../../printerdrake.pm_.c:579
+#: ../../printerdrake.pm_.c:682
#, fuzzy
msgid "Remote host name"
msgstr "Nutolusio hosto vardas"
-#: ../../printerdrake.pm_.c:580
+#: ../../printerdrake.pm_.c:683
#, fuzzy
msgid "Remote printer name"
msgstr "Nutolæs spausdintuvas"
-#: ../../printerdrake.pm_.c:583
+#: ../../printerdrake.pm_.c:686
#, fuzzy
msgid "Remote host name missing!"
msgstr "Nutolusio hosto vardas"
-#: ../../printerdrake.pm_.c:587
+#: ../../printerdrake.pm_.c:690
#, fuzzy
msgid "Remote printer name missing!"
msgstr "Nutolusio hosto vardas"
-#: ../../printerdrake.pm_.c:609 ../../printerdrake.pm_.c:1119
+#: ../../printerdrake.pm_.c:712 ../../printerdrake.pm_.c:1225
#, fuzzy, c-format
msgid "Detected model: %s %s"
msgstr "aptiktas %s"
-#: ../../printerdrake.pm_.c:683 ../../printerdrake.pm_.c:923
+#: ../../printerdrake.pm_.c:790 ../../printerdrake.pm_.c:1030
#, fuzzy
msgid "Scanning network..."
msgstr "Iđbandoma jungtis..."
-#: ../../printerdrake.pm_.c:692 ../../printerdrake.pm_.c:713
+#: ../../printerdrake.pm_.c:799 ../../printerdrake.pm_.c:820
#, c-format
msgid ", printer \"%s\" on server \"%s\""
msgstr ""
-#: ../../printerdrake.pm_.c:695 ../../printerdrake.pm_.c:716
+#: ../../printerdrake.pm_.c:802 ../../printerdrake.pm_.c:823
#, fuzzy, c-format
msgid "Printer \"%s\" on server \"%s\""
msgstr "Iđjungiamas tinklas"
-#: ../../printerdrake.pm_.c:736
+#: ../../printerdrake.pm_.c:843
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "SMB (Windows 9x/NT) spausdintuvo nuostatos"
-#: ../../printerdrake.pm_.c:737
+#: ../../printerdrake.pm_.c:844
#, fuzzy
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
@@ -7523,46 +7823,46 @@ msgstr ""
"jo TCP/IP hosto vardo!) ir galbût spausdinimo serverio IP adresà,\n"
"spausdintuvo share'o vardà, vartotojo vardà, slaptațodá ir darbo grupës vardà"
-#: ../../printerdrake.pm_.c:738
+#: ../../printerdrake.pm_.c:845
msgid ""
" If the desired printer was auto-detected, simply choose it from the list "
"and then add user name, password, and/or workgroup if needed."
msgstr ""
-#: ../../printerdrake.pm_.c:739
+#: ../../printerdrake.pm_.c:846
msgid "SMB server host"
msgstr "SMB serverio hostas"
-#: ../../printerdrake.pm_.c:740
+#: ../../printerdrake.pm_.c:847
msgid "SMB server IP"
msgstr "SMB serverio IP"
-#: ../../printerdrake.pm_.c:741
+#: ../../printerdrake.pm_.c:848
msgid "Share name"
msgstr "Share'o vardas"
-#: ../../printerdrake.pm_.c:744
+#: ../../printerdrake.pm_.c:851
msgid "Workgroup"
msgstr "Darbo grupë"
-#: ../../printerdrake.pm_.c:746
+#: ../../printerdrake.pm_.c:853
#, fuzzy
msgid "Auto-detected"
msgstr "Naudokite automatiná aptikimà"
-#: ../../printerdrake.pm_.c:757
+#: ../../printerdrake.pm_.c:864
msgid "Either the server name or the server's IP must be given!"
msgstr ""
-#: ../../printerdrake.pm_.c:761
+#: ../../printerdrake.pm_.c:868
msgid "Samba share name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:767
+#: ../../printerdrake.pm_.c:874
msgid "SECURITY WARNING!"
msgstr ""
-#: ../../printerdrake.pm_.c:768
+#: ../../printerdrake.pm_.c:875
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -7586,7 +7886,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:778
+#: ../../printerdrake.pm_.c:885
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -7595,7 +7895,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:781
+#: ../../printerdrake.pm_.c:888
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
@@ -7603,11 +7903,11 @@ msgid ""
"Do you really want to continue setting up this printer as you are doing now?"
msgstr ""
-#: ../../printerdrake.pm_.c:853
+#: ../../printerdrake.pm_.c:960
msgid "NetWare Printer Options"
msgstr "NetWare spausdintuvo nuostatos"
-#: ../../printerdrake.pm_.c:854
+#: ../../printerdrake.pm_.c:961
#, fuzzy
msgid ""
"To print on a NetWare printer, you need to provide the NetWare print server "
@@ -7621,44 +7921,44 @@ msgstr ""
"spausdintuvui,\n"
"prie kurio nori prieiti, bei reikalingus vartotojo vardà ir slaptațodá."
-#: ../../printerdrake.pm_.c:855
+#: ../../printerdrake.pm_.c:962
msgid "Printer Server"
msgstr "Spausdinimo serveris"
-#: ../../printerdrake.pm_.c:856
+#: ../../printerdrake.pm_.c:963
msgid "Print Queue Name"
msgstr "Spausdinimo eilës pavadinimas"
-#: ../../printerdrake.pm_.c:861
+#: ../../printerdrake.pm_.c:968
msgid "NCP server name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:865
+#: ../../printerdrake.pm_.c:972
msgid "NCP queue name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:932 ../../printerdrake.pm_.c:952
+#: ../../printerdrake.pm_.c:1039 ../../printerdrake.pm_.c:1059
#, c-format
msgid ", host \"%s\", port %s"
msgstr ""
-#: ../../printerdrake.pm_.c:935 ../../printerdrake.pm_.c:955
+#: ../../printerdrake.pm_.c:1042 ../../printerdrake.pm_.c:1062
#, c-format
msgid "Host \"%s\", port %s"
msgstr ""
-#: ../../printerdrake.pm_.c:975
+#: ../../printerdrake.pm_.c:1082
#, fuzzy
msgid "TCP/Socket Printer Options"
msgstr "Lizdinio spausdintuvo nuostatos"
-#: ../../printerdrake.pm_.c:977
+#: ../../printerdrake.pm_.c:1084
msgid ""
"Choose one of the auto-detected printers from the list or enter the hostname "
"or IP and the optional port number (default is 9100) into the input fields."
msgstr ""
-#: ../../printerdrake.pm_.c:978
+#: ../../printerdrake.pm_.c:1085
#, fuzzy
msgid ""
"To print to a TCP or socket printer, you need to provide the host name or IP "
@@ -7669,61 +7969,61 @@ msgstr ""
"Kad galëtum spausdinti á lizdiná spausdintuvà, turi pateikti\n"
"spausdintuvo hosto vardà ir, galbût, prievado numerá."
-#: ../../printerdrake.pm_.c:983
+#: ../../printerdrake.pm_.c:1090
#, fuzzy
msgid "Printer host name or IP missing!"
msgstr "Spausdintuvo hosto vardas"
-#: ../../printerdrake.pm_.c:1005
+#: ../../printerdrake.pm_.c:1112
#, fuzzy
msgid "Printer host name or IP"
msgstr "Spausdintuvo hosto vardas"
-#: ../../printerdrake.pm_.c:1054 ../../printerdrake.pm_.c:1056
+#: ../../printerdrake.pm_.c:1160 ../../printerdrake.pm_.c:1162
msgid "Printer Device URI"
msgstr "Spausdintuvo árenginio URI"
-#: ../../printerdrake.pm_.c:1055
+#: ../../printerdrake.pm_.c:1161
msgid ""
"You can specify directly the URI to access the printer. The URI must fulfill "
"either the CUPS or the Foomatic specifications. Note that not all URI types "
"are supported by all the spoolers."
msgstr ""
-#: ../../printerdrake.pm_.c:1070
+#: ../../printerdrake.pm_.c:1176
msgid "A valid URI must be entered!"
msgstr ""
-#: ../../printerdrake.pm_.c:1402
+#: ../../printerdrake.pm_.c:1515
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
"Location fields do not need to be filled in. They are comments for the users."
msgstr ""
-#: ../../printerdrake.pm_.c:1403
+#: ../../printerdrake.pm_.c:1516
msgid "Name of printer"
msgstr "Spausdintuvo vardas"
-#: ../../printerdrake.pm_.c:1405
+#: ../../printerdrake.pm_.c:1518
msgid "Location"
msgstr "Vieta"
-#: ../../printerdrake.pm_.c:1416 ../../printerdrake.pm_.c:1536
+#: ../../printerdrake.pm_.c:1530 ../../printerdrake.pm_.c:1652
#, fuzzy
msgid "Reading printer database..."
msgstr "Skaitoma CUPS tvarkykliű duomenű bazë"
-#: ../../printerdrake.pm_.c:1419
+#: ../../printerdrake.pm_.c:1534
#, fuzzy
msgid "Preparing printer database..."
msgstr "Skaitoma CUPS tvarkykliű duomenű bazë"
-#: ../../printerdrake.pm_.c:1516
+#: ../../printerdrake.pm_.c:1631
#, fuzzy
msgid "Your printer model"
msgstr "Nutolæs spausdintuvas"
-#: ../../printerdrake.pm_.c:1517
+#: ../../printerdrake.pm_.c:1632
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -7738,28 +8038,28 @@ msgid ""
"%s"
msgstr ""
-#: ../../printerdrake.pm_.c:1522 ../../printerdrake.pm_.c:1525
+#: ../../printerdrake.pm_.c:1637 ../../printerdrake.pm_.c:1640
#, fuzzy
msgid "The model is correct"
msgstr "Ar taip teisinga?"
-#: ../../printerdrake.pm_.c:1523 ../../printerdrake.pm_.c:1524
-#: ../../printerdrake.pm_.c:1527
+#: ../../printerdrake.pm_.c:1638 ../../printerdrake.pm_.c:1639
+#: ../../printerdrake.pm_.c:1642
#, fuzzy
msgid "Select model manually"
msgstr "Nutolæs spausdintuvas"
-#: ../../printerdrake.pm_.c:1543
+#: ../../printerdrake.pm_.c:1659
#, fuzzy
msgid "Printer model selection"
msgstr "Spausdintuvo jungtis"
-#: ../../printerdrake.pm_.c:1544
+#: ../../printerdrake.pm_.c:1660
#, fuzzy
msgid "Which printer model do you have?"
msgstr "Kokio tipo yra tavo spausdintuvas?"
-#: ../../printerdrake.pm_.c:1545
+#: ../../printerdrake.pm_.c:1661
msgid ""
"\n"
"\n"
@@ -7768,18 +8068,18 @@ msgid ""
"standing on a wrong model or on \"Raw printer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1548
+#: ../../printerdrake.pm_.c:1664
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
msgstr ""
-#: ../../printerdrake.pm_.c:1624
+#: ../../printerdrake.pm_.c:1741
#, fuzzy
msgid "OKI winprinter configuration"
msgstr "Modemo Nustatymai"
-#: ../../printerdrake.pm_.c:1625
+#: ../../printerdrake.pm_.c:1742
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -7789,12 +8089,12 @@ msgid ""
"not work. Your connection type setting will be ignored by the driver."
msgstr ""
-#: ../../printerdrake.pm_.c:1668 ../../printerdrake.pm_.c:1695
+#: ../../printerdrake.pm_.c:1785 ../../printerdrake.pm_.c:1812
#, fuzzy
msgid "Lexmark inkjet configuration"
msgstr "Interneto konfigûravimas"
-#: ../../printerdrake.pm_.c:1669
+#: ../../printerdrake.pm_.c:1786
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
"no printers on remote machines or print server boxes. Please connect your "
@@ -7802,20 +8102,46 @@ msgid ""
"to."
msgstr ""
-#: ../../printerdrake.pm_.c:1696
+#: ../../printerdrake.pm_.c:1813
msgid ""
"To be able to print with your Lexmark inkjet and this configuration, you "
"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
-"com/). Go to the US site and click on the \"Drivers\" button. Then choose "
-"your model and afterwards \"Linux\" as operating system. The drivers come as "
-"RPM packages or shell scripts with interactive graphical installation. You "
-"do not need to do this configuration by the graphical frontends. Cancel "
-"directly after the license agreement. Then print printhead alignment pages "
-"with \"lexmarkmaintain\" and adjust the head alignment settings with this "
-"program."
+"com/). Click on the \"Drivers\" link. Then choose your model and afterwards "
+"\"Linux\" as operating system. The drivers come as RPM packages or shell "
+"scripts with interactive graphical installation. You do not need to do this "
+"configuration by the graphical frontends. Cancel directly after the license "
+"agreement. Then print printhead alignment pages with \"lexmarkmaintain\" and "
+"adjust the head alignment settings with this program."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:1816
+msgid "GDI Laser Printer using the Zenographics ZJ-Stream Format"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:1817
+msgid ""
+"Your printer belongs to the group of GDI laser printers (winprinters) sold "
+"by different manufacturers which uses the Zenographics ZJ-stream raster "
+"format for the data sent to the printer. The driver for these printers is "
+"still in a very early development stage and so it will perhaps not always "
+"work properly. Especially it is possible that the printer only works when "
+"you choose the A4 paper size.\n"
+"\n"
+"Some of these printers, as the HP LaserJet 1000, for which this driver was "
+"originally created, need their firmware to be uploaded to them after they "
+"are turned on. In the case of the HP LaserJet 1000 you have to search the "
+"printer's Windows driver CD or your Windows partition for the file "
+"\"sihp1000.img\" and upload the file to the printer with one of the "
+"following commands:\n"
+"\n"
+" lpr -o raw sihp1000.img\n"
+" cat sihp1000.img > /dev/usb/lp0\n"
+"\n"
+"The first command can be given by any normal user, the second must be given "
+"as root. After having done so you can print normally.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1912
+#: ../../printerdrake.pm_.c:2040
msgid ""
"Printer default settings\n"
"\n"
@@ -7825,34 +8151,34 @@ msgid ""
"printout quality/resolution printing can get substantially slower."
msgstr ""
-#: ../../printerdrake.pm_.c:1921
+#: ../../printerdrake.pm_.c:2049
#, c-format
msgid "Option %s must be an integer number!"
msgstr ""
-#: ../../printerdrake.pm_.c:1925
+#: ../../printerdrake.pm_.c:2053
#, c-format
msgid "Option %s must be a number!"
msgstr ""
-#: ../../printerdrake.pm_.c:1930
+#: ../../printerdrake.pm_.c:2058
#, c-format
msgid "Option %s out of range!"
msgstr ""
-#: ../../printerdrake.pm_.c:1969
+#: ../../printerdrake.pm_.c:2097
#, fuzzy, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
"as the default printer?"
msgstr "Ar tu nori iđbandyti spausdinimà?"
-#: ../../printerdrake.pm_.c:1986
+#: ../../printerdrake.pm_.c:2120
#, fuzzy
msgid "Test pages"
msgstr "Patikrinti prievadus"
-#: ../../printerdrake.pm_.c:1987
+#: ../../printerdrake.pm_.c:2121
msgid ""
"Please select the test pages you want to print.\n"
"Note: the photo test page can take a rather long time to get printed and on "
@@ -7860,45 +8186,45 @@ msgid ""
"it is enough to print the standard test page."
msgstr ""
-#: ../../printerdrake.pm_.c:1991
+#: ../../printerdrake.pm_.c:2125
#, fuzzy
msgid "No test pages"
msgstr "Taip, spausdinti abu bandomuosius puslapius"
-#: ../../printerdrake.pm_.c:1992
+#: ../../printerdrake.pm_.c:2126
#, fuzzy
msgid "Print"
msgstr "Spausdintuvas"
-#: ../../printerdrake.pm_.c:1994
+#: ../../printerdrake.pm_.c:2183
#, fuzzy
msgid "Standard test page"
msgstr "Standartinë"
-#: ../../printerdrake.pm_.c:1997
+#: ../../printerdrake.pm_.c:2186
msgid "Alternative test page (Letter)"
msgstr ""
-#: ../../printerdrake.pm_.c:2000
+#: ../../printerdrake.pm_.c:2189
#, fuzzy
msgid "Alternative test page (A4)"
msgstr "Spausdinamas bandomasis puslapis..."
-#: ../../printerdrake.pm_.c:2002
+#: ../../printerdrake.pm_.c:2191
#, fuzzy
msgid "Photo test page"
msgstr "Spausdinamas bandomasis puslapis..."
-#: ../../printerdrake.pm_.c:2006
+#: ../../printerdrake.pm_.c:2195
#, fuzzy
msgid "Do not print any test page"
msgstr "Spausdinamas bandomasis puslapis..."
-#: ../../printerdrake.pm_.c:2014 ../../printerdrake.pm_.c:2166
+#: ../../printerdrake.pm_.c:2204 ../../printerdrake.pm_.c:2357
msgid "Printing test page(s)..."
msgstr "Spausdinamas bandomasis puslapis..."
-#: ../../printerdrake.pm_.c:2039
+#: ../../printerdrake.pm_.c:2229
#, fuzzy, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -7914,7 +8240,7 @@ msgstr ""
"\n"
"Ar jis veikia teisingai?"
-#: ../../printerdrake.pm_.c:2043
+#: ../../printerdrake.pm_.c:2233
#, fuzzy
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -7924,16 +8250,16 @@ msgstr ""
"Kol bus pradëta spausdinti, gali tekti palaukti.\n"
"Ar jis veikia teisingai?"
-#: ../../printerdrake.pm_.c:2050
+#: ../../printerdrake.pm_.c:2240
msgid "Did it work properly?"
msgstr ""
-#: ../../printerdrake.pm_.c:2072 ../../printerdrake.pm_.c:3191
+#: ../../printerdrake.pm_.c:2262 ../../printerdrake.pm_.c:3416
#, fuzzy
msgid "Raw printer"
msgstr "Spausdintuvo nëra"
-#: ../../printerdrake.pm_.c:2098
+#: ../../printerdrake.pm_.c:2288
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -7942,15 +8268,15 @@ msgid ""
"to modify the option settings easily.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2100
+#: ../../printerdrake.pm_.c:2290
msgid ""
"These commands you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications, but here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2103 ../../printerdrake.pm_.c:2120
-#: ../../printerdrake.pm_.c:2130
+#: ../../printerdrake.pm_.c:2293 ../../printerdrake.pm_.c:2310
+#: ../../printerdrake.pm_.c:2320
#, c-format
msgid ""
"\n"
@@ -7959,7 +8285,7 @@ msgid ""
"line, e. g. \"%s <file>\". "
msgstr ""
-#: ../../printerdrake.pm_.c:2106 ../../printerdrake.pm_.c:2146
+#: ../../printerdrake.pm_.c:2296 ../../printerdrake.pm_.c:2336
#, c-format
msgid ""
"To know about the options available for the current printer read either the "
@@ -7967,41 +8293,41 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2110
+#: ../../printerdrake.pm_.c:2300
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2115 ../../printerdrake.pm_.c:2125
+#: ../../printerdrake.pm_.c:2305 ../../printerdrake.pm_.c:2315
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2117 ../../printerdrake.pm_.c:2127
-#: ../../printerdrake.pm_.c:2137
+#: ../../printerdrake.pm_.c:2307 ../../printerdrake.pm_.c:2317
+#: ../../printerdrake.pm_.c:2327
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2122 ../../printerdrake.pm_.c:2132
+#: ../../printerdrake.pm_.c:2312 ../../printerdrake.pm_.c:2322
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
msgstr ""
-#: ../../printerdrake.pm_.c:2135
+#: ../../printerdrake.pm_.c:2325
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\" or \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2139
+#: ../../printerdrake.pm_.c:2329
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -8011,7 +8337,7 @@ msgid ""
"jams.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2143
+#: ../../printerdrake.pm_.c:2333
#, c-format
msgid ""
"\n"
@@ -8020,42 +8346,42 @@ msgid ""
"line, e. g. \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2153
+#: ../../printerdrake.pm_.c:2343
#, fuzzy, c-format
msgid "Printing/Scanning/Photo Cards on \"%s\""
msgstr "Iđjungiamas tinklas"
-#: ../../printerdrake.pm_.c:2154
+#: ../../printerdrake.pm_.c:2344
#, fuzzy, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "Iđjungiamas tinklas"
-#: ../../printerdrake.pm_.c:2156
+#: ../../printerdrake.pm_.c:2346
#, fuzzy, c-format
msgid "Printing/Photo Card Access on \"%s\""
msgstr "Iđjungiamas tinklas"
-#: ../../printerdrake.pm_.c:2157
+#: ../../printerdrake.pm_.c:2347
#, fuzzy, c-format
msgid "Printing on the printer \"%s\""
msgstr "Iđjungiamas tinklas"
-#: ../../printerdrake.pm_.c:2160 ../../printerdrake.pm_.c:2163
-#: ../../printerdrake.pm_.c:2164 ../../printerdrake.pm_.c:2165
-#: ../../printerdrake.pm_.c:3175 ../../standalone/drakTermServ_.c:248
-#: ../../standalone/drakbackup_.c:1485 ../../standalone/drakbackup_.c:3530
-#: ../../standalone/drakbug_.c:129 ../../standalone/drakfont_.c:705
+#: ../../printerdrake.pm_.c:2350 ../../printerdrake.pm_.c:2353
+#: ../../printerdrake.pm_.c:2354 ../../printerdrake.pm_.c:2355
+#: ../../printerdrake.pm_.c:3400 ../../standalone/drakTermServ_.c:248
+#: ../../standalone/drakbackup_.c:1560 ../../standalone/drakbackup_.c:4208
+#: ../../standalone/drakbug_.c:130 ../../standalone/drakfont_.c:705
#: ../../standalone/drakfont_.c:1014
#, fuzzy
msgid "Close"
msgstr "Pelë"
-#: ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2353
#, fuzzy
msgid "Print option list"
msgstr "Spausdintuvo nuostatos"
-#: ../../printerdrake.pm_.c:2182
+#: ../../printerdrake.pm_.c:2373
#, c-format
msgid ""
"Your multi-function device was configured automatically to be able to scan. "
@@ -8069,7 +8395,7 @@ msgid ""
"Do not use \"scannerdrake\" for this device!"
msgstr ""
-#: ../../printerdrake.pm_.c:2202
+#: ../../printerdrake.pm_.c:2394
msgid ""
"Your printer was configured automatically to give you access to the photo "
"card drives from your PC. Now you can access your photo cards using the "
@@ -8082,19 +8408,19 @@ msgid ""
"of the file lists."
msgstr ""
-#: ../../printerdrake.pm_.c:2223 ../../printerdrake.pm_.c:2673
-#: ../../printerdrake.pm_.c:2945
+#: ../../printerdrake.pm_.c:2416 ../../printerdrake.pm_.c:2875
+#: ../../printerdrake.pm_.c:3170
#, fuzzy
msgid "Reading printer data..."
msgstr "Skaitoma CUPS tvarkykliű duomenű bazë"
-#: ../../printerdrake.pm_.c:2243 ../../printerdrake.pm_.c:2271
-#: ../../printerdrake.pm_.c:2306
+#: ../../printerdrake.pm_.c:2436 ../../printerdrake.pm_.c:2464
+#: ../../printerdrake.pm_.c:2499
#, fuzzy
msgid "Transfer printer configuration"
msgstr "Interneto konfigûravimas"
-#: ../../printerdrake.pm_.c:2244
+#: ../../printerdrake.pm_.c:2437
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -8104,51 +8430,51 @@ msgid ""
"Not all queues can be transferred due to the following reasons:\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2247
+#: ../../printerdrake.pm_.c:2440
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2249
+#: ../../printerdrake.pm_.c:2442
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2251
+#: ../../printerdrake.pm_.c:2444
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2253
+#: ../../printerdrake.pm_.c:2446
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:2254
+#: ../../printerdrake.pm_.c:2447
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
"or with native CUPS drivers cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:2255
+#: ../../printerdrake.pm_.c:2448
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
"\"Transfer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:2258
+#: ../../printerdrake.pm_.c:2451
msgid "Do not transfer printers"
msgstr ""
-#: ../../printerdrake.pm_.c:2259 ../../printerdrake.pm_.c:2276
+#: ../../printerdrake.pm_.c:2452 ../../printerdrake.pm_.c:2469
msgid "Transfer"
msgstr ""
-#: ../../printerdrake.pm_.c:2272
+#: ../../printerdrake.pm_.c:2465
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -8156,62 +8482,62 @@ msgid ""
"You can also type a new name or skip this printer."
msgstr ""
-#: ../../printerdrake.pm_.c:2280
+#: ../../printerdrake.pm_.c:2473
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr ""
-#: ../../printerdrake.pm_.c:2285
+#: ../../printerdrake.pm_.c:2478
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
"do you really want to overwrite its configuration?"
msgstr ""
-#: ../../printerdrake.pm_.c:2293
+#: ../../printerdrake.pm_.c:2486
#, fuzzy
msgid "New printer name"
msgstr "Spausdintuvo nëra"
-#: ../../printerdrake.pm_.c:2296
+#: ../../printerdrake.pm_.c:2489
#, c-format
msgid "Transferring %s..."
msgstr ""
-#: ../../printerdrake.pm_.c:2307
+#: ../../printerdrake.pm_.c:2500
#, c-format
msgid ""
"You have transferred your former default printer (\"%s\"), Should it be also "
"the default printer under the new printing system %s?"
msgstr ""
-#: ../../printerdrake.pm_.c:2316
+#: ../../printerdrake.pm_.c:2510
#, fuzzy
msgid "Refreshing printer data..."
msgstr "Skaitoma CUPS tvarkykliű duomenű bazë"
-#: ../../printerdrake.pm_.c:2324 ../../printerdrake.pm_.c:2395
-#: ../../printerdrake.pm_.c:2407
+#: ../../printerdrake.pm_.c:2518 ../../printerdrake.pm_.c:2590
+#: ../../printerdrake.pm_.c:2602
#, fuzzy
msgid "Configuration of a remote printer"
msgstr "Nustatyti spausdintuvà"
-#: ../../printerdrake.pm_.c:2325
+#: ../../printerdrake.pm_.c:2519
#, fuzzy
msgid "Starting network..."
msgstr "Iđbandoma jungtis..."
-#: ../../printerdrake.pm_.c:2359 ../../printerdrake.pm_.c:2363
-#: ../../printerdrake.pm_.c:2365
+#: ../../printerdrake.pm_.c:2554 ../../printerdrake.pm_.c:2558
+#: ../../printerdrake.pm_.c:2560
#, fuzzy
msgid "Configure the network now"
msgstr "Nustatyti tinklà"
-#: ../../printerdrake.pm_.c:2360
+#: ../../printerdrake.pm_.c:2555
#, fuzzy
msgid "Network functionality not configured"
msgstr "Monitorius nenurodytas"
-#: ../../printerdrake.pm_.c:2361
+#: ../../printerdrake.pm_.c:2556
msgid ""
"You are going to configure a remote printer. This needs working network "
"access, but your network is not configured yet. If you go on without network "
@@ -8219,12 +8545,12 @@ msgid ""
"configuring now. How do you want to proceed?"
msgstr ""
-#: ../../printerdrake.pm_.c:2364
+#: ../../printerdrake.pm_.c:2559
#, fuzzy
msgid "Go on without configuring the network"
msgstr "Konfigûruojamas tinklas"
-#: ../../printerdrake.pm_.c:2397
+#: ../../printerdrake.pm_.c:2592
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -8234,34 +8560,34 @@ msgid ""
"\"Printer\""
msgstr ""
-#: ../../printerdrake.pm_.c:2398
+#: ../../printerdrake.pm_.c:2593
msgid ""
"The network access was not running and could not be started. Please check "
"your configuration and your hardware. Then try to configure your remote "
"printer again."
msgstr ""
-#: ../../printerdrake.pm_.c:2408
+#: ../../printerdrake.pm_.c:2603
#, fuzzy
msgid "Restarting printing system..."
msgstr "Kurià spausdinimo sistemà nori naudoti?"
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2641
#, fuzzy
msgid "high"
msgstr "Aukđtas"
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2641
#, fuzzy
msgid "paranoid"
msgstr "Paranojiđkas"
-#: ../../printerdrake.pm_.c:2447
+#: ../../printerdrake.pm_.c:2642
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr ""
-#: ../../printerdrake.pm_.c:2448
+#: ../../printerdrake.pm_.c:2643
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -8276,12 +8602,12 @@ msgid ""
"Do you really want to configure printing on this machine?"
msgstr ""
-#: ../../printerdrake.pm_.c:2480
+#: ../../printerdrake.pm_.c:2675
#, fuzzy
msgid "Starting the printing system at boot time"
msgstr "Kurià spausdinimo sistemà nori naudoti?"
-#: ../../printerdrake.pm_.c:2481
+#: ../../printerdrake.pm_.c:2676
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -8295,80 +8621,76 @@ msgid ""
"again?"
msgstr ""
-#: ../../printerdrake.pm_.c:2504 ../../printerdrake.pm_.c:2544
-#: ../../printerdrake.pm_.c:2581 ../../printerdrake.pm_.c:2621
-#: ../../printerdrake.pm_.c:2733
+#: ../../printerdrake.pm_.c:2700 ../../printerdrake.pm_.c:2741
+#: ../../printerdrake.pm_.c:2780 ../../printerdrake.pm_.c:2822
+#: ../../printerdrake.pm_.c:2943
msgid "Checking installed software..."
msgstr ""
-#: ../../printerdrake.pm_.c:2548
+#: ../../printerdrake.pm_.c:2746
msgid "Removing LPRng..."
msgstr ""
-#: ../../printerdrake.pm_.c:2585
+#: ../../printerdrake.pm_.c:2785
msgid "Removing LPD..."
msgstr ""
-#: ../../printerdrake.pm_.c:2657
+#: ../../printerdrake.pm_.c:2858
#, fuzzy
msgid "Select Printer Spooler"
msgstr "Pasirink spausdintuvo jungtá"
-#: ../../printerdrake.pm_.c:2658
+#: ../../printerdrake.pm_.c:2859
#, fuzzy
msgid "Which printing system (spooler) do you want to use?"
msgstr "Kurià spausdinimo sistemà nori naudoti?"
-#: ../../printerdrake.pm_.c:2691
+#: ../../printerdrake.pm_.c:2895
#, fuzzy, c-format
msgid "Configuring printer \"%s\"..."
msgstr "Nustatyti spausdintuvà"
-#: ../../printerdrake.pm_.c:2704
+#: ../../printerdrake.pm_.c:2909
#, fuzzy
msgid "Installing Foomatic..."
msgstr "Ádiegiamas paketas %s"
-#: ../../printerdrake.pm_.c:2769 ../../printerdrake.pm_.c:2808
-#: ../../printerdrake.pm_.c:3192 ../../printerdrake.pm_.c:3262
+#: ../../printerdrake.pm_.c:2979 ../../printerdrake.pm_.c:3020
+#: ../../printerdrake.pm_.c:3417 ../../printerdrake.pm_.c:3490
msgid "Printer options"
msgstr "Spausdintuvo nuostatos"
-#: ../../printerdrake.pm_.c:2778
+#: ../../printerdrake.pm_.c:2989
#, fuzzy
-msgid "Preparing PrinterDrake..."
+msgid "Preparing Printerdrake..."
msgstr "Skaitoma CUPS tvarkykliű duomenű bazë"
-#: ../../printerdrake.pm_.c:2795 ../../printerdrake.pm_.c:3349
+#: ../../printerdrake.pm_.c:3007 ../../printerdrake.pm_.c:3580
#, fuzzy
msgid "Configuring applications..."
msgstr "Nustatyti spausdintuvà"
-#: ../../printerdrake.pm_.c:2815
+#: ../../printerdrake.pm_.c:3027
#, fuzzy
msgid "Would you like to configure printing?"
msgstr "Ar nori nustatyti spausdintuvà?"
-#: ../../printerdrake.pm_.c:2827
+#: ../../printerdrake.pm_.c:3039
msgid "Printing system: "
msgstr ""
-#: ../../printerdrake.pm_.c:2875
-msgid "Printerdrake"
-msgstr "Printerdrake"
-
-#: ../../printerdrake.pm_.c:2879
+#: ../../printerdrake.pm_.c:3099
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; to view information about it; "
"or to make a printer on a remote CUPS server available for Star Office/"
-"OpenOffice.org."
+"OpenOffice.org/GIMP."
msgstr ""
"Èia yra đios spausdinimo eilës.\n"
"Tu gali èia pridëti daugiau arba pakeisti esamas."
-#: ../../printerdrake.pm_.c:2880
+#: ../../printerdrake.pm_.c:3100
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
@@ -8378,138 +8700,140 @@ msgstr ""
"Èia yra đios spausdinimo eilës.\n"
"Tu gali èia pridëti daugiau arba pakeisti esamas."
-#: ../../printerdrake.pm_.c:2906
+#: ../../printerdrake.pm_.c:3127
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr ""
-#: ../../printerdrake.pm_.c:2924
+#: ../../printerdrake.pm_.c:3145
#, fuzzy
msgid "Change the printing system"
msgstr "Nustatyti tinklà"
-#: ../../printerdrake.pm_.c:2929 ../../standalone/drakconnect_.c:277
+#: ../../printerdrake.pm_.c:3150 ../../standalone/drakconnect_.c:277
#, fuzzy
msgid "Normal Mode"
msgstr "Normali"
-#: ../../printerdrake.pm_.c:3085 ../../printerdrake.pm_.c:3135
-#: ../../printerdrake.pm_.c:3343
+#: ../../printerdrake.pm_.c:3310 ../../printerdrake.pm_.c:3360
+#: ../../printerdrake.pm_.c:3573
#, fuzzy
msgid "Do you want to configure another printer?"
msgstr "Ar tu nori iđbandyti nustatymus?"
-#: ../../printerdrake.pm_.c:3170
+#: ../../printerdrake.pm_.c:3395
#, fuzzy
msgid "Modify printer configuration"
msgstr "Modemo Nustatymai"
-#: ../../printerdrake.pm_.c:3172
+#: ../../printerdrake.pm_.c:3397
#, fuzzy, c-format
msgid ""
"Printer %s\n"
"What do you want to modify on this printer?"
msgstr "Ar tu nori iđbandyti nustatymus?"
-#: ../../printerdrake.pm_.c:3176
+#: ../../printerdrake.pm_.c:3401
msgid "Do it!"
msgstr ""
-#: ../../printerdrake.pm_.c:3181 ../../printerdrake.pm_.c:3236
+#: ../../printerdrake.pm_.c:3406 ../../printerdrake.pm_.c:3461
#, fuzzy
msgid "Printer connection type"
msgstr "Interneto jungties dalinimas"
-#: ../../printerdrake.pm_.c:3182 ../../printerdrake.pm_.c:3240
+#: ../../printerdrake.pm_.c:3407 ../../printerdrake.pm_.c:3465
#, fuzzy
msgid "Printer name, description, location"
msgstr "Spausdintuvo jungtis"
-#: ../../printerdrake.pm_.c:3184 ../../printerdrake.pm_.c:3255
+#: ../../printerdrake.pm_.c:3409 ../../printerdrake.pm_.c:3483
msgid "Printer manufacturer, model, driver"
msgstr ""
-#: ../../printerdrake.pm_.c:3185 ../../printerdrake.pm_.c:3256
+#: ../../printerdrake.pm_.c:3410 ../../printerdrake.pm_.c:3484
msgid "Printer manufacturer, model"
msgstr ""
-#: ../../printerdrake.pm_.c:3194 ../../printerdrake.pm_.c:3266
+#: ../../printerdrake.pm_.c:3419 ../../printerdrake.pm_.c:3494
msgid "Set this printer as the default"
msgstr ""
-#: ../../printerdrake.pm_.c:3196 ../../printerdrake.pm_.c:3271
-msgid "Add this printer to Star Office/OpenOffice.org"
+#: ../../printerdrake.pm_.c:3421 ../../printerdrake.pm_.c:3499
+msgid "Add this printer to Star Office/OpenOffice.org/GIMP"
msgstr ""
-#: ../../printerdrake.pm_.c:3197 ../../printerdrake.pm_.c:3280
-msgid "Remove this printer from Star Office/OpenOffice.org"
+#: ../../printerdrake.pm_.c:3422 ../../printerdrake.pm_.c:3508
+msgid "Remove this printer from Star Office/OpenOffice.org/GIMP"
msgstr ""
-#: ../../printerdrake.pm_.c:3198 ../../printerdrake.pm_.c:3289
+#: ../../printerdrake.pm_.c:3423 ../../printerdrake.pm_.c:3517
#, fuzzy
msgid "Print test pages"
msgstr "Spausdinamas bandomasis puslapis..."
-#: ../../printerdrake.pm_.c:3199 ../../printerdrake.pm_.c:3291
+#: ../../printerdrake.pm_.c:3424 ../../printerdrake.pm_.c:3519
#, fuzzy
msgid "Know how to use this printer"
msgstr "Ar tu nori iđbandyti nustatymus?"
-#: ../../printerdrake.pm_.c:3201 ../../printerdrake.pm_.c:3293
+#: ../../printerdrake.pm_.c:3426 ../../printerdrake.pm_.c:3521
#, fuzzy
msgid "Remove printer"
msgstr "Nutolæs spausdintuvas"
-#: ../../printerdrake.pm_.c:3245
+#: ../../printerdrake.pm_.c:3472
#, fuzzy, c-format
msgid "Removing old printer \"%s\"..."
msgstr "Skaitoma CUPS tvarkykliű duomenű bazë"
-#: ../../printerdrake.pm_.c:3269
+#: ../../printerdrake.pm_.c:3497
#, fuzzy
msgid "Default printer"
msgstr "Vietinis spausdintuvas"
-#: ../../printerdrake.pm_.c:3270
+#: ../../printerdrake.pm_.c:3498
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr ""
-#: ../../printerdrake.pm_.c:3274 ../../printerdrake.pm_.c:3277
-msgid "Adding printer to Star Office/OpenOffice.org"
+#: ../../printerdrake.pm_.c:3502 ../../printerdrake.pm_.c:3505
+msgid "Adding printer to Star Office/OpenOffice.org/GIMP"
msgstr ""
-#: ../../printerdrake.pm_.c:3275
+#: ../../printerdrake.pm_.c:3503
#, c-format
msgid ""
-"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
+"The printer \"%s\" was successfully added to Star Office/OpenOffice.org/GIMP."
msgstr ""
-#: ../../printerdrake.pm_.c:3278
+#: ../../printerdrake.pm_.c:3506
#, c-format
-msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
+msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org/GIMP."
msgstr ""
-#: ../../printerdrake.pm_.c:3283 ../../printerdrake.pm_.c:3286
-msgid "Removing printer from Star Office/OpenOffice.org"
+#: ../../printerdrake.pm_.c:3511 ../../printerdrake.pm_.c:3514
+msgid "Removing printer from Star Office/OpenOffice.org/GIMP"
msgstr ""
-#: ../../printerdrake.pm_.c:3284
+#: ../../printerdrake.pm_.c:3512
#, c-format
msgid ""
-"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
+"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org/"
+"GIMP."
msgstr ""
-#: ../../printerdrake.pm_.c:3287
+#: ../../printerdrake.pm_.c:3515
#, c-format
-msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
+msgid ""
+"Failed to remove the printer \"%s\" from Star Office/OpenOffice.org/GIMP."
msgstr ""
-#: ../../printerdrake.pm_.c:3295
+#: ../../printerdrake.pm_.c:3523
#, fuzzy, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr "Ar tu nori iđ naujo paleisti tinklà"
-#: ../../printerdrake.pm_.c:3297
+#: ../../printerdrake.pm_.c:3527
#, fuzzy, c-format
msgid "Removing printer \"%s\"..."
msgstr "Skaitoma CUPS tvarkykliű duomenű bazë"
@@ -8910,7 +9234,7 @@ msgstr "Internetas"
msgid "File sharing"
msgstr ""
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1669
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1744
#, fuzzy
msgid "System"
msgstr "Sistemos rețimas"
@@ -8970,193 +9294,228 @@ msgstr "Bûsena:"
msgid "Stop"
msgstr "Sektorius"
-#: ../../share/advertising/00-thanks.pl_.c:9
-msgid "Thank you for choosing Mandrake Linux 8.2"
+#: ../../share/advertising/01-thanks.pl_.c:9
+msgid "Thank you for choosing Mandrake Linux 9.0"
msgstr ""
-#: ../../share/advertising/00-thanks.pl_.c:10
+#: ../../share/advertising/01-thanks.pl_.c:10
msgid "Welcome to the Open Source world"
msgstr ""
-#: ../../share/advertising/00-thanks.pl_.c:11
+#: ../../share/advertising/01-thanks.pl_.c:11
msgid ""
"The success of MandrakeSoft is based upon the principle of Free Software. "
"Your new operating system is the result of collaborative work on the part of "
"the worldwide Linux Community"
msgstr ""
-#: ../../share/advertising/01-gnu.pl_.c:9
+#: ../../share/advertising/02-community.pl_.c:9
#, fuzzy
-msgid "Join the Free Software world"
+msgid "Get involved in the Free Software world"
msgstr "Likæs pasaulis"
-#: ../../share/advertising/01-gnu.pl_.c:10
+#: ../../share/advertising/02-community.pl_.c:10
+msgid "Want to know more about the Open Source community?"
+msgstr ""
+
+#: ../../share/advertising/02-community.pl_.c:11
msgid ""
-"Get to know the Open Source community and become a member. Learn, teach, and "
-"help others by joining the many discussion forums that you will find in our "
-"\"Community\" webpages"
+"To share your own knowledge and help build Linux tools, join the discussions "
+"forum you'll find on our \"Community\" webpages"
msgstr ""
-#: ../../share/advertising/02-internet.pl_.c:9
+#: ../../share/advertising/03-internet.pl_.c:9
#, fuzzy
-msgid "Internet and Messaging"
-msgstr "Priëjimas prie Interneto"
+msgid "Get the most from the Internet"
+msgstr "Prisijungti prie interneto"
-#: ../../share/advertising/02-internet.pl_.c:10
+#: ../../share/advertising/03-internet.pl_.c:10
msgid ""
-"Mandrake Linux 8.2 provides the best software to access everything the "
-"Internet has to offer: Surf the web & view animations with Mozilla and "
-"Konqueror, exchange email & organize your personal information with "
-"Evolution and Kmail, and much more"
+"Mandrake Linux 9.0 has selected the best software for you. Surf the Web and "
+"view animations with Mozilla and Konqueror, or read your mail and handle "
+"your personal information with Evolution and Kmail"
msgstr ""
-#: ../../share/advertising/03-graphic.pl_.c:9
-#, fuzzy
-msgid "Multimedia and Graphics"
-msgstr "Multimedija - grafika"
+#: ../../share/advertising/04-multimedia.pl_.c:9
+msgid "Discover the most up-to-date graphics and multimedia tools!"
+msgstr ""
+
+#: ../../share/advertising/04-multimedia.pl_.c:10
+msgid "Push multimedia to its limits!"
+msgstr ""
-#: ../../share/advertising/03-graphic.pl_.c:10
+#: ../../share/advertising/04-multimedia.pl_.c:11
msgid ""
-"Mandrake Linux 8.2 lets you push your multimedia computer to its limits! Use "
-"the latest software to play music and audio files, edit and organize your "
-"images and photos, watch TV and videos, and much more"
+"Mandrake Linux 9.0 enables you to use the very latest software to play audio "
+"files, edit and handle your images or photos, and play videos"
msgstr ""
-#: ../../share/advertising/04-develop.pl_.c:9
-#, fuzzy
-msgid "Development"
-msgstr "Kûrimo, Tinklapiű"
+#: ../../share/advertising/05-games.pl_.c:9
+msgid "Games"
+msgstr "Țaidimai"
-#: ../../share/advertising/04-develop.pl_.c:10
+#: ../../share/advertising/05-games.pl_.c:10
msgid ""
-"Mandrake Linux 8.2 is the ultimate development platform. Discover the power "
-"of the GNU gcc compiler as well as the best Open Source development "
-"environments"
+"Mandrake Linux 9.0 provides the best Open Source games - arcade, action, "
+"cards, sports, strategy..."
msgstr ""
-#: ../../share/advertising/05-contcenter.pl_.c:9
-#: ../../standalone/drakbug_.c:69
+#: ../../share/advertising/06-mcc.pl_.c:9 ../../standalone/drakbug_.c:69
#, fuzzy
msgid "Mandrake Control Center"
msgstr "Prisijungti prie interneto"
-#: ../../share/advertising/05-contcenter.pl_.c:10
+#: ../../share/advertising/06-mcc.pl_.c:10
msgid ""
-"The Mandrake Linux 8.2 Control Center is a one-stop location for fully "
-"customizing and configuring your Mandrake system"
+"Mandrake Linux 9.0 provides a powerful tool to fully customize and configure "
+"your machine"
msgstr ""
-#: ../../share/advertising/06-user.pl_.c:9
+#: ../../share/advertising/07-desktop.pl_.c:9
#, fuzzy
msgid "User interfaces"
msgstr "Tinklo interfeisas"
-#: ../../share/advertising/06-user.pl_.c:10
+#: ../../share/advertising/07-desktop.pl_.c:10
msgid ""
-"Mandrake Linux 8.2 provides 11 different graphical desktop environments and "
-"window managers to choose from including GNOME 1.4, KDE 2.2.2, Window Maker "
-"0.8, and the rest"
+"Mandrake Linux 9.0 provides 11 user interfaces which can be fully modified: "
+"KDE 3, Gnome 2, WindowMaker..."
msgstr ""
-#: ../../share/advertising/07-server.pl_.c:9
+#: ../../share/advertising/08-development.pl_.c:9
#, fuzzy
-msgid "Server Software"
-msgstr "SMB serverio hostas"
+msgid "Development simplified"
+msgstr "Kûrimo, Tinklapiű"
+
+#: ../../share/advertising/08-development.pl_.c:10
+msgid "Mandrake Linux 9.0 is the ultimate development platform"
+msgstr ""
-#: ../../share/advertising/07-server.pl_.c:10
+#: ../../share/advertising/08-development.pl_.c:11
msgid ""
-"Transform your machine into a powerful server with just a few clicks of the "
-"mouse: Web server, email, firewall, router, file and print server, ..."
+"Use the full power of the GNU gcc 3 compiler as well as the best Open Source "
+"development environments"
msgstr ""
-#: ../../share/advertising/08-games.pl_.c:9
-msgid "Games"
-msgstr "Țaidimai"
+#: ../../share/advertising/09-server.pl_.c:9
+msgid "Turn your machine into a reliable server"
+msgstr ""
-#: ../../share/advertising/08-games.pl_.c:10
+#: ../../share/advertising/09-server.pl_.c:10
msgid ""
-"Mandrake Linux 8.2 provides the best Open Source games - arcade, action, "
-"cards, sports, strategy, ..."
+"Transform your machine into a powerful server in a few clicks of your mouse: "
+"Web server, mail, firewall, router, file and print server..."
msgstr ""
-#: ../../share/advertising/09-MDKcampus.pl_.c:9
-msgid "MandrakeCampus"
+#: ../../share/advertising/10-mnf.pl_.c:9
+msgid "Optimize your security"
msgstr ""
-#: ../../share/advertising/09-MDKcampus.pl_.c:10
+#: ../../share/advertising/10-mnf.pl_.c:10
msgid ""
-"Would you like to learn Linux simply, quickly, and for free? MandrakeSoft "
-"provides free Linux training, as well as a way to test your progress, at "
-"MandrakeCampus -- our online training center"
+"The MandrakeSecurity range includes the Multi Network Firewall product (M.N."
+"F.)"
msgstr ""
-#: ../../share/advertising/10-MDKexpert.pl_.c:9
-#, fuzzy
-msgid "MandrakeExpert"
-msgstr "ținiukas"
+#: ../../share/advertising/10-mnf.pl_.c:11
+msgid ""
+"This firewall product includes network features which allow you to fulfill "
+"all your security needs"
+msgstr ""
+
+#: ../../share/advertising/10-mnf.pl_.c:12
+msgid "This product is available on MandrakeStore website"
+msgstr ""
+
+#: ../../share/advertising/11-mdkstore.pl_.c:9
+msgid "The official MandrakeSoft store"
+msgstr ""
-#: ../../share/advertising/10-MDKexpert.pl_.c:10
+#: ../../share/advertising/11-mdkstore.pl_.c:10
msgid ""
-"Quality support from the Linux Community, and from MandrakeSoft, is just "
-"around the corner. And if you're already a Linux veteran, become an \"Expert"
-"\" and share your knowledge at our support website"
+"Our full range of Linux solutions, as well as special offers on products and "
+"'goodies', are available online at our e-store"
+msgstr ""
+
+#: ../../share/advertising/12-mdkstore.pl_.c:9
+msgid "Strategic partners"
+msgstr ""
+
+#: ../../share/advertising/12-mdkstore.pl_.c:10
+msgid ""
+"MandrakeSoft works alongside a selection of companies offering professional "
+"solutions compatible with Mandrake Linux; a list of these partners is "
+"available on the MandrakeStore"
msgstr ""
-#: ../../share/advertising/11-consul.pl_.c:9
-msgid "MandrakeConsulting"
+#: ../../share/advertising/13-mdkcampus.pl_.c:9
+msgid "Discover MandrakeSoft's training catalogue Linux-Campus"
msgstr ""
-#: ../../share/advertising/11-consul.pl_.c:10
+#: ../../share/advertising/13-mdkcampus.pl_.c:10
msgid ""
-"For all of your IT projects, our consultants are ready to analyze your "
-"requirements and offer a customized solution. Benefit from MandrakeSoft's "
-"vast experience as a Linux producer to provide a true IT alternative for "
-"your business organization"
+"The training program has been create to respond to the needs of both users "
+"and experts (Network and System administrations)"
+msgstr ""
+
+#: ../../share/advertising/13-mdkcampus.pl_.c:11
+msgid "Certify yourself on Linux"
msgstr ""
-#: ../../share/advertising/12-MDKstore.pl_.c:9
+#: ../../share/advertising/13-mdkcampus.pl_.c:12
+msgid ""
+"Whether you choose to teach yourself online or via our network of training "
+"partners, the Linux-Campus catalogue prepares you for the acknowledged LPI "
+"certification program (worldwide professional technical certification)"
+msgstr ""
+
+#: ../../share/advertising/14-mdkexpert.pl_.c:9
#, fuzzy
-msgid "MandrakeStore"
-msgstr "privalomas"
+msgid "Become a MandrakeExpert"
+msgstr "ținiukas"
-#: ../../share/advertising/12-MDKstore.pl_.c:10
+#: ../../share/advertising/14-mdkexpert.pl_.c:10
msgid ""
-"A full range of Linux solutions, as well as special offers on products and "
-"'goodies', are available online at our e-store"
+"Find the solutions to your problems via MandrakeSoft's online support "
+"platform"
msgstr ""
-#: ../../share/advertising/13-Nvert.pl_.c:9
+#: ../../share/advertising/14-mdkexpert.pl_.c:11
msgid ""
-"For more information on MandrakeSoft's Professional Services and commercial "
-"offerings, please see the following web page:"
+"Join the MandrakeSoft support teams and the Linux Community online to share "
+"your knowledge and help others by becoming a recognized Expert on the online "
+"technical support website:"
+msgstr ""
+
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:9
+#, fuzzy
+msgid "MandrakeExpert Corporate"
+msgstr "ținiukas"
+
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:10
+msgid "An online platform to respond to company's specific support needs"
msgstr ""
-#: ../../share/advertising/13-Nvert.pl_.c:11
-msgid "http://www.mandrakesoft.com/sales/contact"
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:11
+msgid ""
+"All incidents will be followed up by a single qualified MandrakeSoft "
+"technical expert."
msgstr ""
-#: ../../standalone.pm_.c:40
+#: ../../standalone.pm_.c:41
#, fuzzy
msgid "Installing packages..."
msgstr "Ádiegiamas paketas %s"
-#: ../../standalone/XFdrake_.c:143
+#: ../../standalone/XFdrake_.c:145
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "Prađom atsisveikinti ir paskui paspausti Ctrl-Alt-BackSpace"
-#: ../../standalone/XFdrake_.c:147
+#: ../../standalone/XFdrake_.c:149
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "Prađom iđ naujo paleisti %s, kad pakeitimai bûtű aktyvuoti"
-#: ../../standalone/diskdrake_.c:81
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I'll try to go on blanking bad partitions"
-msgstr ""
-"Ađ negaliu perskaityti tavo skirsniű lentelës, ji man pernelyg sugadinta :(\n"
-"Pabandysiu iđvalyti blogus skirsnius"
-
#: ../../standalone/drakTermServ_.c:188
#, fuzzy
msgid "Mandrake Terminal Server Configuration"
@@ -9200,12 +9559,13 @@ msgstr "Pridëti vartotojà"
msgid "Add/Del Clients"
msgstr "DHCP klientas"
-#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3282
-#: ../../standalone/drakbackup_.c:3315 ../../standalone/drakbackup_.c:3341
-#: ../../standalone/drakbackup_.c:3368 ../../standalone/drakbackup_.c:3395
-#: ../../standalone/drakbackup_.c:3434 ../../standalone/drakbackup_.c:3455
-#: ../../standalone/drakbackup_.c:3482 ../../standalone/drakbackup_.c:3508
-#: ../../standalone/drakbackup_.c:3533 ../../standalone/drakfont_.c:700
+#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3930
+#: ../../standalone/drakbackup_.c:3963 ../../standalone/drakbackup_.c:3989
+#: ../../standalone/drakbackup_.c:4016 ../../standalone/drakbackup_.c:4043
+#: ../../standalone/drakbackup_.c:4082 ../../standalone/drakbackup_.c:4103
+#: ../../standalone/drakbackup_.c:4130 ../../standalone/drakbackup_.c:4160
+#: ../../standalone/drakbackup_.c:4186 ../../standalone/drakbackup_.c:4211
+#: ../../standalone/drakfont_.c:700
#, fuzzy
msgid "Help"
msgstr "/Pagalba"
@@ -9366,8 +9726,8 @@ msgid ""
"The parameters of the auto-install are available in the sections on the left"
msgstr ""
-#: ../../standalone/drakautoinst_.c:239 ../../standalone/drakgw_.c:548
-#: ../../standalone/scannerdrake_.c:105
+#: ../../standalone/drakautoinst_.c:239 ../../standalone/drakgw_.c:484
+#: ../../standalone/scannerdrake_.c:119
msgid "Congratulations!"
msgstr "Sveikiname!"
@@ -9392,27 +9752,31 @@ msgstr "Pridëti vartotojà"
msgid "Remove the last item"
msgstr "Suțymima loopback byla %s"
-#: ../../standalone/drakbackup_.c:625
+#: ../../standalone/drakbackup_.c:619
msgid "Cron not available yet as non-root"
msgstr ""
-#: ../../standalone/drakbackup_.c:731
+#: ../../standalone/drakbackup_.c:725
msgid "WARNING"
msgstr ""
-#: ../../standalone/drakbackup_.c:732
+#: ../../standalone/drakbackup_.c:726
#, fuzzy
msgid "FATAL"
msgstr "FAT"
-#: ../../standalone/drakbackup_.c:744
+#: ../../standalone/drakbackup_.c:727
+msgid "INFO"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:739
msgid ""
"\n"
" DrakBackup Report \n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:745
+#: ../../standalone/drakbackup_.c:740
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -9420,7 +9784,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:749
+#: ../../standalone/drakbackup_.c:744
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -9428,13 +9792,20 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:770 ../../standalone/drakbackup_.c:840
-#: ../../standalone/drakbackup_.c:894
+#: ../../standalone/drakbackup_.c:765 ../../standalone/drakbackup_.c:835
+#: ../../standalone/drakbackup_.c:889
#, fuzzy
msgid "Total progess"
msgstr "Patikrinti prievadus"
-#: ../../standalone/drakbackup_.c:822
+#: ../../standalone/drakbackup_.c:788
+msgid ""
+"Sorry, perl-Expect is not installed/enabled. To use\n"
+"this feature, install perl-Expect and comment lines 772-774,\n"
+" as well as 788,789. Then uncomment line 787."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:817
#, c-format
msgid ""
"%s exists, delete?\n"
@@ -9443,16 +9814,41 @@ msgid ""
" need to purge the entry from authorized_keys on the server."
msgstr ""
-#: ../../standalone/drakbackup_.c:831
+#: ../../standalone/drakbackup_.c:826
msgid "This may take a moment to generate the keys."
msgstr ""
-#: ../../standalone/drakbackup_.c:838
+#: ../../standalone/drakbackup_.c:833
#, c-format
msgid "ERROR: Cannot spawn %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:865
+#: ../../standalone/drakbackup_.c:850
+#, c-format
+msgid "No password prompt on %s at port %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:851
+#, fuzzy, c-format
+msgid "Bad password on %s"
+msgstr "Jokio slaptațodțio"
+
+#: ../../standalone/drakbackup_.c:852
+#, c-format
+msgid "Permission denied transferring %s to %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:853
+#, fuzzy, c-format
+msgid "Can't find %s on %s"
+msgstr "Adapteris %s: %s"
+
+#: ../../standalone/drakbackup_.c:856
+#, c-format
+msgid "%s not responding"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:860
#, c-format
msgid ""
"Transfer successful\n"
@@ -9463,63 +9859,68 @@ msgid ""
"without being prompted for a password."
msgstr ""
-#: ../../standalone/drakbackup_.c:908
+#: ../../standalone/drakbackup_.c:903
msgid "WebDAV remote site already in sync!"
msgstr ""
-#: ../../standalone/drakbackup_.c:912
+#: ../../standalone/drakbackup_.c:907
msgid "WebDAV transfer failed!"
msgstr ""
-#: ../../standalone/drakbackup_.c:934
+#: ../../standalone/drakbackup_.c:928
msgid "No CDR/DVDR in drive!"
msgstr ""
-#: ../../standalone/drakbackup_.c:938
+#: ../../standalone/drakbackup_.c:932
msgid "Does not appear to be recordable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:942
+#: ../../standalone/drakbackup_.c:936
msgid "Not erasable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:981
+#: ../../standalone/drakbackup_.c:975
msgid "This may take a moment to erase the media."
msgstr ""
-#: ../../standalone/drakbackup_.c:1045
+#: ../../standalone/drakbackup_.c:1060
msgid "Permission problem accessing CD."
msgstr ""
-#: ../../standalone/drakbackup_.c:1144 ../../standalone/drakbackup_.c:1193
+#: ../../standalone/drakbackup_.c:1087
+#, c-format
+msgid "No tape in %s!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1199 ../../standalone/drakbackup_.c:1248
msgid "Backup system files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:1194 ../../standalone/drakbackup_.c:1261
+#: ../../standalone/drakbackup_.c:1249 ../../standalone/drakbackup_.c:1316
#, fuzzy
msgid "Hard Disk Backup files..."
msgstr "Bloga atsarginë byla"
-#: ../../standalone/drakbackup_.c:1206
+#: ../../standalone/drakbackup_.c:1261
#, fuzzy
msgid "Backup User files..."
msgstr "Bloga atsarginë byla"
-#: ../../standalone/drakbackup_.c:1207
+#: ../../standalone/drakbackup_.c:1262
msgid "Hard Disk Backup Progress..."
msgstr ""
-#: ../../standalone/drakbackup_.c:1260
+#: ../../standalone/drakbackup_.c:1315
#, fuzzy
msgid "Backup Other files..."
msgstr "Bloga atsarginë byla"
-#: ../../standalone/drakbackup_.c:1266
+#: ../../standalone/drakbackup_.c:1321
#, fuzzy
msgid "No changes to backup!"
msgstr "Bloga atsarginë byla"
-#: ../../standalone/drakbackup_.c:1282 ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1337 ../../standalone/drakbackup_.c:1360
#, c-format
msgid ""
"\n"
@@ -9527,803 +9928,926 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1289
+#: ../../standalone/drakbackup_.c:1344
#, c-format
msgid ""
-"file list sent by FTP : %s\n"
+"file list sent by FTP: %s\n"
" "
msgstr ""
-#: ../../standalone/drakbackup_.c:1292
+#: ../../standalone/drakbackup_.c:1347
msgid ""
"\n"
" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1310
+#: ../../standalone/drakbackup_.c:1365
msgid ""
"\n"
"Drakbackup activities via CD:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1315
+#: ../../standalone/drakbackup_.c:1370
msgid ""
"\n"
"Drakbackup activities via tape:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1324
+#: ../../standalone/drakbackup_.c:1379
#, fuzzy
msgid " Error during mail sending. \n"
msgstr "Klaida skaitant bylà %s"
-#: ../../standalone/drakbackup_.c:1346
+#: ../../standalone/drakbackup_.c:1404
msgid "Can't create catalog!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1459 ../../standalone/drakbackup_.c:1470
-#: ../../standalone/drakbackup_.c:1481 ../../standalone/drakfont_.c:1004
+#: ../../standalone/drakbackup_.c:1517 ../../standalone/drakbackup_.c:1528
+#: ../../standalone/drakfont_.c:1004
#, fuzzy
msgid "File Selection"
msgstr "Paketű grupiű pasirinkimas"
-#: ../../standalone/drakbackup_.c:1486
+#: ../../standalone/drakbackup_.c:1556
msgid "Select the files or directories and click on 'Add'"
msgstr ""
-#: ../../standalone/drakbackup_.c:1525
+#: ../../standalone/drakbackup_.c:1600
msgid ""
"\n"
"Please check all options that you need.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1526
+#: ../../standalone/drakbackup_.c:1601
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1527
+#: ../../standalone/drakbackup_.c:1602
#, fuzzy
msgid "Backup your System files. (/etc directory)"
msgstr "Bloga atsarginë byla"
-#: ../../standalone/drakbackup_.c:1528
+#: ../../standalone/drakbackup_.c:1603
msgid "Use incremental backup (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1529
+#: ../../standalone/drakbackup_.c:1604
msgid "Do not include critical files (passwd, group, fstab)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1530
+#: ../../standalone/drakbackup_.c:1605
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr ""
-#: ../../standalone/drakbackup_.c:1547
+#: ../../standalone/drakbackup_.c:1622
#, fuzzy
msgid "Please check all users that you want to include in your backup."
msgstr "Pasirink paketus, kuriuos tu nori ádiegti."
-#: ../../standalone/drakbackup_.c:1574
+#: ../../standalone/drakbackup_.c:1649
msgid "Do not include the browser cache"
msgstr ""
-#: ../../standalone/drakbackup_.c:1575 ../../standalone/drakbackup_.c:1599
+#: ../../standalone/drakbackup_.c:1650 ../../standalone/drakbackup_.c:1674
msgid "Use Incremental Backups (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1597 ../../standalone/drakfont_.c:1058
+#: ../../standalone/drakbackup_.c:1672 ../../standalone/drakfont_.c:1058
#, fuzzy
msgid "Remove Selected"
msgstr "Pađalinti eilæ"
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:1710
#, fuzzy
msgid "Windows (FAT32)"
msgstr "Iđmesti Windows(TM)"
-#: ../../standalone/drakbackup_.c:1674
+#: ../../standalone/drakbackup_.c:1749
#, fuzzy
msgid "Users"
msgstr "Vartotojo vardas"
-#: ../../standalone/drakbackup_.c:1700
+#: ../../standalone/drakbackup_.c:1775
#, fuzzy
msgid "Use network connection to backup"
msgstr "Bloga atsarginë byla"
-#: ../../standalone/drakbackup_.c:1706
+#: ../../standalone/drakbackup_.c:1777
+msgid "Net Method:"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1781
msgid "Use Expect for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1707
+#: ../../standalone/drakbackup_.c:1782
msgid ""
"Create/Transfer\n"
"backup keys for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1708
+#: ../../standalone/drakbackup_.c:1783
msgid ""
" Transfer \n"
"Now"
msgstr ""
-#: ../../standalone/drakbackup_.c:1709
+#: ../../standalone/drakbackup_.c:1784
msgid "Keys in place already"
msgstr ""
-#: ../../standalone/drakbackup_.c:1713
+#: ../../standalone/drakbackup_.c:1788
#, fuzzy
msgid "Please enter the host name or IP."
msgstr "Prađom iđbandyti pelæ"
-#: ../../standalone/drakbackup_.c:1718
+#: ../../standalone/drakbackup_.c:1793
msgid ""
"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
-#: ../../standalone/drakbackup_.c:1723
+#: ../../standalone/drakbackup_.c:1798
#, fuzzy
msgid "Please enter your login"
msgstr "Prađom bandyti vël"
-#: ../../standalone/drakbackup_.c:1728
+#: ../../standalone/drakbackup_.c:1803
#, fuzzy
msgid "Please enter your password"
msgstr "Prađom bandyti vël"
-#: ../../standalone/drakbackup_.c:1734
+#: ../../standalone/drakbackup_.c:1809
#, fuzzy
msgid "Remember this password"
msgstr "Jokio slaptațodțio"
-#: ../../standalone/drakbackup_.c:1745
+#: ../../standalone/drakbackup_.c:1820
msgid "Need hostname, username and password!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1841
+#: ../../standalone/drakbackup_.c:1915
msgid "Use CD/DVDROM to backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1844
+#: ../../standalone/drakbackup_.c:1918
msgid ""
"Please choose your CD/DVD device\n"
"(Press Enter to propogate settings to other fields.\n"
"This field isn't necessary, only a tool to fill in the form.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1849
+#: ../../standalone/drakbackup_.c:1923
#, fuzzy
msgid "Please choose your CD/DVD media size"
msgstr "Prađom pasirinkti klaviatûros iđdëstymà."
-#: ../../standalone/drakbackup_.c:1855
+#: ../../standalone/drakbackup_.c:1929
#, fuzzy
msgid "Please check for multisession CD"
msgstr "Prađom spragtelëti ant skirsnio"
-#: ../../standalone/drakbackup_.c:1861
+#: ../../standalone/drakbackup_.c:1935
#, fuzzy
msgid "Please check if you are using CDRW media"
msgstr "Prađom spragtelëti ant skirsnio"
-#: ../../standalone/drakbackup_.c:1867
+#: ../../standalone/drakbackup_.c:1941
#, fuzzy
msgid "Please check if you want to erase your RW media (1st Session)"
msgstr "Prađom spragtelëti ant skirsnio"
-#: ../../standalone/drakbackup_.c:1868
+#: ../../standalone/drakbackup_.c:1942
msgid " Erase Now "
msgstr ""
-#: ../../standalone/drakbackup_.c:1874
+#: ../../standalone/drakbackup_.c:1948
#, fuzzy
msgid "Please check if you are using a DVDR device"
msgstr "Prađom spragtelëti ant skirsnio"
-#: ../../standalone/drakbackup_.c:1880
+#: ../../standalone/drakbackup_.c:1954
#, fuzzy
msgid "Please check if you are using a DVDRAM device"
msgstr "Prađom spragtelëti ant skirsnio"
-#: ../../standalone/drakbackup_.c:1893
+#: ../../standalone/drakbackup_.c:1967
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
msgstr ""
-#: ../../standalone/drakbackup_.c:1926
+#: ../../standalone/drakbackup_.c:2000
#, fuzzy
msgid "No CD device defined!"
msgstr "Pasirink bylà"
-#: ../../standalone/drakbackup_.c:1974
+#: ../../standalone/drakbackup_.c:2048
#, fuzzy
msgid "Use tape to backup"
msgstr "Bloga atsarginë byla"
-#: ../../standalone/drakbackup_.c:1977
+#: ../../standalone/drakbackup_.c:2051
msgid "Please enter the device name to use for backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1983
+#: ../../standalone/drakbackup_.c:2057
#, fuzzy
msgid "Please check if you want to use the non-rewinding device."
msgstr "Pasirink paketus, kuriuos tu nori ádiegti."
-#: ../../standalone/drakbackup_.c:1989
+#: ../../standalone/drakbackup_.c:2063
#, fuzzy
msgid "Please check if you want to erase your tape before the backup."
msgstr "Pasirink paketus, kuriuos tu nori ádiegti."
-#: ../../standalone/drakbackup_.c:1995
+#: ../../standalone/drakbackup_.c:2069
#, fuzzy
msgid "Please check if you want to eject your tape after the backup."
msgstr "Pasirink paketus, kuriuos tu nori ádiegti."
-#: ../../standalone/drakbackup_.c:2001 ../../standalone/drakbackup_.c:2074
-#: ../../standalone/drakbackup_.c:3025
+#: ../../standalone/drakbackup_.c:2075 ../../standalone/drakbackup_.c:2149
+#: ../../standalone/drakbackup_.c:3116
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:2066
+#: ../../standalone/drakbackup_.c:2140
#, fuzzy
msgid "Please enter the directory to save to:"
msgstr "Prađom iđbandyti pelæ"
-#: ../../standalone/drakbackup_.c:2080 ../../standalone/drakbackup_.c:3031
+#: ../../standalone/drakbackup_.c:2155 ../../standalone/drakbackup_.c:3122
#, fuzzy
msgid "Use quota for backup files."
msgstr "Bloga atsarginë byla"
-#: ../../standalone/drakbackup_.c:2146
+#: ../../standalone/drakbackup_.c:2221
#, fuzzy
msgid "Network"
msgstr "Tinklo interfeisas"
-#: ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:2226
msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2156
+#: ../../standalone/drakbackup_.c:2231
msgid "HardDrive / NFS"
msgstr ""
-#: ../../standalone/drakbackup_.c:2161
+#: ../../standalone/drakbackup_.c:2236
#, fuzzy
msgid "Tape"
msgstr "Rûđis"
-#: ../../standalone/drakbackup_.c:2175 ../../standalone/drakbackup_.c:2179
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2250 ../../standalone/drakbackup_.c:2254
+#: ../../standalone/drakbackup_.c:2258
msgid "hourly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2176 ../../standalone/drakbackup_.c:2180
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2251 ../../standalone/drakbackup_.c:2255
+#: ../../standalone/drakbackup_.c:2258
msgid "daily"
msgstr ""
-#: ../../standalone/drakbackup_.c:2177 ../../standalone/drakbackup_.c:2181
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2252 ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2258
msgid "weekly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2178 ../../standalone/drakbackup_.c:2182
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2253 ../../standalone/drakbackup_.c:2257
+#: ../../standalone/drakbackup_.c:2258
msgid "monthly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2196
+#: ../../standalone/drakbackup_.c:2271
#, fuzzy
msgid "Use daemon"
msgstr "Vartotojo vardas"
-#: ../../standalone/drakbackup_.c:2201
+#: ../../standalone/drakbackup_.c:2276
#, fuzzy
msgid ""
"Please choose the time \n"
"interval between each backup"
msgstr "Pasirink paketus, kuriuos tu nori ádiegti."
-#: ../../standalone/drakbackup_.c:2207
+#: ../../standalone/drakbackup_.c:2282
#, fuzzy
msgid ""
"Please choose the\n"
"media for backup."
msgstr "Prađom pasirinkti kalbà, kurià naudosi."
-#: ../../standalone/drakbackup_.c:2214
+#: ../../standalone/drakbackup_.c:2289
msgid ""
"Please be sure that the cron daemon is included in your services. \n"
"\n"
"Note that currently all 'net' medias also use the hard drive."
msgstr ""
-#: ../../standalone/drakbackup_.c:2251
-msgid "Send mail report after each backup to :"
+#: ../../standalone/drakbackup_.c:2326
+msgid "Send mail report after each backup to:"
msgstr ""
-#: ../../standalone/drakbackup_.c:2257
+#: ../../standalone/drakbackup_.c:2332
msgid "Delete Hard Drive tar files after backup to other media."
msgstr ""
-#: ../../standalone/drakbackup_.c:2296
+#: ../../standalone/drakbackup_.c:2371
#, fuzzy
msgid "What"
msgstr "Palauk"
-#: ../../standalone/drakbackup_.c:2301
+#: ../../standalone/drakbackup_.c:2376
#, fuzzy
msgid "Where"
msgstr "Su ratuku"
-#: ../../standalone/drakbackup_.c:2306
+#: ../../standalone/drakbackup_.c:2381
#, fuzzy
msgid "When"
msgstr "Su ratuku"
-#: ../../standalone/drakbackup_.c:2311
+#: ../../standalone/drakbackup_.c:2386
#, fuzzy
msgid "More Options"
msgstr "Modulio parinktys:"
-#: ../../standalone/drakbackup_.c:2330 ../../standalone/drakbackup_.c:3873
+#: ../../standalone/drakbackup_.c:2405 ../../standalone/drakbackup_.c:4530
#, fuzzy
msgid "Drakbackup Configuration"
msgstr "Tinklo konfigûravimas"
-#: ../../standalone/drakbackup_.c:2348
+#: ../../standalone/drakbackup_.c:2423
#, fuzzy
msgid "Please choose where you want to backup"
msgstr "Pasirink paketus, kuriuos tu nori ádiegti."
-#: ../../standalone/drakbackup_.c:2350
+#: ../../standalone/drakbackup_.c:2425
msgid "on Hard Drive"
msgstr ""
-#: ../../standalone/drakbackup_.c:2360
+#: ../../standalone/drakbackup_.c:2435
msgid "across Network"
msgstr ""
-#: ../../standalone/drakbackup_.c:2370
+#: ../../standalone/drakbackup_.c:2445
msgid "on CDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2378
+#: ../../standalone/drakbackup_.c:2453
msgid "on Tape Device"
msgstr ""
-#: ../../standalone/drakbackup_.c:2421
+#: ../../standalone/drakbackup_.c:2496
#, fuzzy
msgid "Please choose what you want to backup"
msgstr "Pasirink paketus, kuriuos tu nori ádiegti."
-#: ../../standalone/drakbackup_.c:2422
+#: ../../standalone/drakbackup_.c:2497
#, fuzzy
msgid "Backup system"
msgstr "Nustatyti bylű sistemas"
-#: ../../standalone/drakbackup_.c:2423
+#: ../../standalone/drakbackup_.c:2498
msgid "Backup Users"
msgstr ""
-#: ../../standalone/drakbackup_.c:2426
+#: ../../standalone/drakbackup_.c:2501
msgid "Select user manually"
msgstr ""
-#: ../../standalone/drakbackup_.c:2508
+#: ../../standalone/drakbackup_.c:2584
msgid ""
"\n"
"Backup Sources: \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2509
+#: ../../standalone/drakbackup_.c:2585
msgid ""
"\n"
"- System Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2511
+#: ../../standalone/drakbackup_.c:2587
msgid ""
"\n"
"- User Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2513
+#: ../../standalone/drakbackup_.c:2589
msgid ""
"\n"
"- Other Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2515
+#: ../../standalone/drakbackup_.c:2591
#, c-format
msgid ""
"\n"
-"- Save on Hard drive on path : %s\n"
+"- Save on Hard drive on path: %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2518
+#: ../../standalone/drakbackup_.c:2594
msgid ""
"\n"
"- Delete hard drive tar files after backup.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2524
+#: ../../standalone/drakbackup_.c:2600
msgid ""
"\n"
"- Burn to CD"
msgstr ""
-#: ../../standalone/drakbackup_.c:2525
+#: ../../standalone/drakbackup_.c:2601
msgid "RW"
msgstr ""
-#: ../../standalone/drakbackup_.c:2526
+#: ../../standalone/drakbackup_.c:2602
#, fuzzy, c-format
-msgid " on device : %s"
+msgid " on device: %s"
msgstr "Pelës árenginys: %s\n"
-#: ../../standalone/drakbackup_.c:2527
+#: ../../standalone/drakbackup_.c:2603
msgid " (multi-session)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2528
+#: ../../standalone/drakbackup_.c:2604
#, c-format
msgid ""
"\n"
-"- Save to Tape on device : %s"
+"- Save to Tape on device: %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2529
+#: ../../standalone/drakbackup_.c:2605
#, c-format
msgid "\t\tErase=%s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2532
+#: ../../standalone/drakbackup_.c:2608
#, c-format
msgid ""
"\n"
-"- Save via %s on host : %s\n"
+"- Save via %s on host: %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2533
+#: ../../standalone/drakbackup_.c:2609
#, c-format
msgid ""
"\t\t user name: %s\n"
"\t\t on path: %s \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2534
+#: ../../standalone/drakbackup_.c:2610
#, fuzzy
msgid ""
"\n"
"- Options:\n"
msgstr "Pasirinktys"
-#: ../../standalone/drakbackup_.c:2535
+#: ../../standalone/drakbackup_.c:2611
msgid "\tDo not include System Files\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2538
+#: ../../standalone/drakbackup_.c:2614
msgid "\tBackups use tar and bzip2\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2540
+#: ../../standalone/drakbackup_.c:2616
msgid "\tBackups use tar and gzip\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2543
+#: ../../standalone/drakbackup_.c:2619
#, c-format
msgid ""
"\n"
-"- Daemon (%s) include :\n"
+"- Daemon (%s) include:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2544
+#: ../../standalone/drakbackup_.c:2620
msgid "\t-Hard drive.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2545
+#: ../../standalone/drakbackup_.c:2621
msgid "\t-CDROM.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2546
+#: ../../standalone/drakbackup_.c:2622
msgid "\t-Tape \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2547
+#: ../../standalone/drakbackup_.c:2623
msgid "\t-Network by FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2548
+#: ../../standalone/drakbackup_.c:2624
msgid "\t-Network by SSH.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2549
+#: ../../standalone/drakbackup_.c:2625
msgid "\t-Network by rsync.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2550
+#: ../../standalone/drakbackup_.c:2626
msgid "\t-Network by webdav.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2552
+#: ../../standalone/drakbackup_.c:2628
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2558
+#: ../../standalone/drakbackup_.c:2634
msgid ""
"List of data to restore:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2725
+#: ../../standalone/drakbackup_.c:2801
msgid ""
"List of data corrupted:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2727
+#: ../../standalone/drakbackup_.c:2803
#, fuzzy
msgid "Please uncheck or remove it on next time."
msgstr ""
"Prađom pasirinkti, prie kurios nuosekliosios jungties yra prijungtas tavo "
"modemas."
-#: ../../standalone/drakbackup_.c:2737
+#: ../../standalone/drakbackup_.c:2813
msgid "Backup files are corrupted"
msgstr ""
-#: ../../standalone/drakbackup_.c:2758
+#: ../../standalone/drakbackup_.c:2834
msgid " All of your selected data have been "
msgstr ""
-#: ../../standalone/drakbackup_.c:2759
+#: ../../standalone/drakbackup_.c:2835
#, c-format
msgid " Successfuly Restored on %s "
msgstr ""
-#: ../../standalone/drakbackup_.c:2877
+#: ../../standalone/drakbackup_.c:2953
#, fuzzy
msgid " Restore Configuration "
msgstr "Tinklo konfigûravimas"
-#: ../../standalone/drakbackup_.c:2895
+#: ../../standalone/drakbackup_.c:2971
msgid "OK to restore the other files."
msgstr ""
-#: ../../standalone/drakbackup_.c:2912
+#: ../../standalone/drakbackup_.c:2988
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2975
+#: ../../standalone/drakbackup_.c:3066
#, fuzzy
msgid "Backup the system files before:"
msgstr "Bloga atsarginë byla"
-#: ../../standalone/drakbackup_.c:2977
+#: ../../standalone/drakbackup_.c:3068
#, fuzzy
msgid "please choose the date to restore"
msgstr "Prađom pasirinkti savo pelës rûđá."
-#: ../../standalone/drakbackup_.c:3014
+#: ../../standalone/drakbackup_.c:3105
#, fuzzy
msgid "Use Hard Disk to backup"
msgstr "Bloga atsarginë byla"
-#: ../../standalone/drakbackup_.c:3017
+#: ../../standalone/drakbackup_.c:3108
#, fuzzy
msgid "Please enter the directory to save:"
msgstr "Prađom iđbandyti pelæ"
-#: ../../standalone/drakbackup_.c:3060
+#: ../../standalone/drakbackup_.c:3151
#, fuzzy
msgid "FTP Connection"
msgstr "LAN jungtis"
-#: ../../standalone/drakbackup_.c:3067
+#: ../../standalone/drakbackup_.c:3158
#, fuzzy
msgid "Secure Connection"
msgstr "Pasirink spausdintuvo jungtá"
-#: ../../standalone/drakbackup_.c:3093
+#: ../../standalone/drakbackup_.c:3184
#, fuzzy
msgid "Restore from Hard Disk."
msgstr "Atstatyti iđ diskelio"
-#: ../../standalone/drakbackup_.c:3095
+#: ../../standalone/drakbackup_.c:3186
msgid "Please enter the directory where backups are stored"
msgstr ""
-#: ../../standalone/drakbackup_.c:3157
+#: ../../standalone/drakbackup_.c:3254
#, fuzzy
msgid "Select another media to restore from"
msgstr "Prađom pasirinkti savo pelës rûđá."
-#: ../../standalone/drakbackup_.c:3159
+#: ../../standalone/drakbackup_.c:3256
#, fuzzy
msgid "Other Media"
msgstr "Kitas"
-#: ../../standalone/drakbackup_.c:3164
+#: ../../standalone/drakbackup_.c:3261
#, fuzzy
msgid "Restore system"
msgstr "Ádiegti sistemà"
-#: ../../standalone/drakbackup_.c:3165
+#: ../../standalone/drakbackup_.c:3262
#, fuzzy
msgid "Restore Users"
msgstr "Atstatyti iđ bylos"
-#: ../../standalone/drakbackup_.c:3166
+#: ../../standalone/drakbackup_.c:3263
#, fuzzy
msgid "Restore Other"
msgstr "Atstatyti iđ bylos"
-#: ../../standalone/drakbackup_.c:3168
+#: ../../standalone/drakbackup_.c:3265
#, fuzzy
msgid "select path to restore (instead of /)"
msgstr "Prađom pasirinkti savo pelës rûđá."
-#: ../../standalone/drakbackup_.c:3172
+#: ../../standalone/drakbackup_.c:3269
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:3174
+#: ../../standalone/drakbackup_.c:3271
msgid "Remove user directories before restore."
msgstr ""
-#: ../../standalone/drakbackup_.c:3232
+#: ../../standalone/drakbackup_.c:3384
+msgid ""
+"Restore Selected\n"
+"Catalog Entry"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3394
+#, fuzzy
+msgid ""
+"Restore Selected\n"
+"Files"
+msgstr "Pađalinti eilæ"
+
+#: ../../standalone/drakbackup_.c:3411
+#, fuzzy
+msgid ""
+"Change\n"
+"Restore Path"
+msgstr "Atstatyti iđ bylos"
+
+#: ../../standalone/drakbackup_.c:3477
+#, c-format
+msgid "Backup files not found at %s."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3490
+#, c-format
+msgid ""
+"Insert the CD with volume label %s\n"
+" in the CD drive under mount point /mnt/cdrom"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3490
+#, fuzzy
+msgid "Restore From CD"
+msgstr "Atstatyti iđ diskelio"
+
+#: ../../standalone/drakbackup_.c:3492
+#, c-format
+msgid "Not the correct CD label. Disk is labelled %s."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3502
+#, c-format
+msgid ""
+"Insert the tape with volume label %s\n"
+" in the tape drive device %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3502
+#, fuzzy
+msgid "Restore From Tape"
+msgstr "Iđgelbëti skirsniű lentelæ"
+
+#: ../../standalone/drakbackup_.c:3504
+#, c-format
+msgid "Not the correct tape label. Tape is labelled %s."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3524
+#, fuzzy
+msgid "Restore Via Network"
+msgstr "Atstatyti iđ bylos"
+
+#: ../../standalone/drakbackup_.c:3524
+#, c-format
+msgid "Restore Via Network Protocol: %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3525
+#, fuzzy
+msgid "Host Name"
+msgstr "Hosto vardas"
+
+#: ../../standalone/drakbackup_.c:3526
+msgid "Host Path or Module"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3533
+#, fuzzy
+msgid "Password required"
+msgstr "Slaptațodis"
+
+#: ../../standalone/drakbackup_.c:3539
+#, fuzzy
+msgid "Username required"
+msgstr "Vartotojo vardas"
+
+#: ../../standalone/drakbackup_.c:3542
+#, fuzzy
+msgid "Hostname required"
+msgstr "Kompiuterio vardas:"
+
+#: ../../standalone/drakbackup_.c:3547
+msgid "Path or Module required"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3560
+msgid "Files Restored..."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3563
+#, fuzzy
+msgid "Restore Failed..."
+msgstr "Atstatyti iđ bylos"
+
+#: ../../standalone/drakbackup_.c:3801
msgid "Restore all backups"
msgstr ""
-#: ../../standalone/drakbackup_.c:3241
+#: ../../standalone/drakbackup_.c:3810
#, fuzzy
msgid "Custom Restore"
msgstr "Prisitaikyti"
-#: ../../standalone/drakbackup_.c:3287 ../../standalone/drakbackup_.c:3320
-#: ../../standalone/drakbackup_.c:3346 ../../standalone/drakbackup_.c:3373
-#: ../../standalone/drakbackup_.c:3400 ../../standalone/drakbackup_.c:3460
-#: ../../standalone/drakbackup_.c:3487 ../../standalone/drakbackup_.c:3513
+#: ../../standalone/drakbackup_.c:3856
+msgid "CD in place - continue."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3862
+msgid "Browse to new restore repository."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3865
+#, fuzzy
+msgid "Restore From Catalog"
+msgstr "Iđgelbëti skirsniű lentelæ"
+
+#: ../../standalone/drakbackup_.c:3893
+#, fuzzy
+msgid "Restore Progress"
+msgstr "Atstatyti iđ bylos"
+
+#: ../../standalone/drakbackup_.c:3935 ../../standalone/drakbackup_.c:3968
+#: ../../standalone/drakbackup_.c:3994 ../../standalone/drakbackup_.c:4021
+#: ../../standalone/drakbackup_.c:4048 ../../standalone/drakbackup_.c:4108
+#: ../../standalone/drakbackup_.c:4135 ../../standalone/drakbackup_.c:4165
+#: ../../standalone/drakbackup_.c:4191
#, fuzzy
msgid "Previous"
msgstr "<- Ankstesnis"
-#: ../../standalone/drakbackup_.c:3291 ../../standalone/drakbackup_.c:3377
+#: ../../standalone/drakbackup_.c:3939 ../../standalone/drakbackup_.c:4025
#: ../../standalone/logdrake_.c:223
#, fuzzy
msgid "Save"
msgstr "Bûsena:"
-#: ../../standalone/drakbackup_.c:3350
+#: ../../standalone/drakbackup_.c:3998
#, fuzzy
msgid "Build Backup"
msgstr "Bloga atsarginë byla"
-#: ../../standalone/drakbackup_.c:3404 ../../standalone/drakbackup_.c:3974
+#: ../../standalone/drakbackup_.c:4052 ../../standalone/drakbackup_.c:4632
#, fuzzy
msgid "Restore"
msgstr "Atstatyti iđ bylos"
-#: ../../standalone/drakbackup_.c:3553
-msgid ""
-"Please Build backup before to restore it...\n"
-" or verify that your path to save is correct."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3574
+#: ../../standalone/drakbackup_.c:4231
msgid ""
-"Error during sendmail\n"
-" your report mail was not sent\n"
+"Error during sendmail.\n"
+" Your report mail was not sent.\n"
" Please configure sendmail"
msgstr ""
-#: ../../standalone/drakbackup_.c:3598
+#: ../../standalone/drakbackup_.c:4255
#, fuzzy
msgid ""
"The following packages need to be installed:\n"
" @list_of_rpm_to_install"
msgstr "Ruođiamasi ádiegti điuos paketus"
-#: ../../standalone/drakbackup_.c:3621
+#: ../../standalone/drakbackup_.c:4278
msgid ""
"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
-#: ../../standalone/drakbackup_.c:3644
+#: ../../standalone/drakbackup_.c:4301
#, fuzzy
msgid "Please select data to restore..."
msgstr "Prađom pasirinkti kalbà, kurià naudosi."
-#: ../../standalone/drakbackup_.c:3665
+#: ../../standalone/drakbackup_.c:4322
#, fuzzy
msgid "Please select media for backup..."
msgstr "Prađom pasirinkti kalbà, kurià naudosi."
-#: ../../standalone/drakbackup_.c:3687
+#: ../../standalone/drakbackup_.c:4344
#, fuzzy
msgid "Please select data to backup..."
msgstr "Prađom pasirinkti kalbà, kurià naudosi."
-#: ../../standalone/drakbackup_.c:3709
+#: ../../standalone/drakbackup_.c:4366
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
msgstr ""
-#: ../../standalone/drakbackup_.c:3730
+#: ../../standalone/drakbackup_.c:4387
msgid "Under Devel ... please wait."
msgstr ""
-#: ../../standalone/drakbackup_.c:3811
+#: ../../standalone/drakbackup_.c:4468
#, fuzzy
msgid "Backup system files"
msgstr "Bloga atsarginë byla"
-#: ../../standalone/drakbackup_.c:3813
+#: ../../standalone/drakbackup_.c:4470
#, fuzzy
msgid "Backup user files"
msgstr "Bloga atsarginë byla"
-#: ../../standalone/drakbackup_.c:3815
+#: ../../standalone/drakbackup_.c:4472
#, fuzzy
msgid "Backup other files"
msgstr "Bloga atsarginë byla"
-#: ../../standalone/drakbackup_.c:3817 ../../standalone/drakbackup_.c:3850
+#: ../../standalone/drakbackup_.c:4474 ../../standalone/drakbackup_.c:4507
msgid "Total Progress"
msgstr ""
-#: ../../standalone/drakbackup_.c:3841
+#: ../../standalone/drakbackup_.c:4498
msgid "files sending by FTP"
msgstr ""
-#: ../../standalone/drakbackup_.c:3845
+#: ../../standalone/drakbackup_.c:4502
#, fuzzy
msgid "Sending files..."
msgstr "Iđsaugoti á bylà"
-#: ../../standalone/drakbackup_.c:3931
+#: ../../standalone/drakbackup_.c:4588
#, fuzzy
msgid "Backup Now from configuration file"
msgstr "Tinklo konfigûravimas"
-#: ../../standalone/drakbackup_.c:3936
+#: ../../standalone/drakbackup_.c:4593
#, fuzzy
msgid "View Backup Configuration."
msgstr "Tinklo konfigûravimas"
-#: ../../standalone/drakbackup_.c:3956
+#: ../../standalone/drakbackup_.c:4614
#, fuzzy
msgid "Wizard Configuration"
msgstr "LAN Konfiguravimas"
-#: ../../standalone/drakbackup_.c:3961
+#: ../../standalone/drakbackup_.c:4619
#, fuzzy
msgid "Advanced Configuration"
msgstr "LAN Konfiguravimas"
-#: ../../standalone/drakbackup_.c:3966
+#: ../../standalone/drakbackup_.c:4624
#, fuzzy
msgid "Backup Now"
msgstr "Nustatyti bylű sistemas"
-#: ../../standalone/drakbackup_.c:3996
+#: ../../standalone/drakbackup_.c:4658
msgid "Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:4045
+#: ../../standalone/drakbackup_.c:4707
msgid ""
"options description:\n"
"\n"
@@ -10355,7 +10879,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4075
+#: ../../standalone/drakbackup_.c:4737
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -10364,7 +10888,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4083
+#: ../../standalone/drakbackup_.c:4745
msgid ""
"options description:\n"
"\n"
@@ -10405,45 +10929,45 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4122
+#: ../../standalone/drakbackup_.c:4784
msgid ""
"restore description:\n"
" \n"
-"Only the most recent date will be used ,because with incremental \n"
-"backups it is necesarry to restore one by one each older backups.\n"
+"Only the most recent date will be used, because with incremental \n"
+"backups it is necessary to restore one by one each older backup.\n"
"\n"
-"So if you don't like to restore a user please unselect all his\n"
-"check box.\n"
+"So if you don't want to restore a user please unselect all their\n"
+"check boxes.\n"
"\n"
-"Otherwise, you are able to select only one of this\n"
+"Otherwise, you are able to select only one of these.\n"
"\n"
" - Incremental Backups:\n"
"\n"
"\tThe incremental backup is the most powerful \n"
-"\toption to use backup, this option allow you \n"
-"\tto backup all your data the first time, and \n"
-"\tonly the changed after.\n"
-"\tSo you will be able during the restore\n"
+"\toption to use. This option allows you to \n"
+"\tbackup all of your data the first time, and \n"
+"\tonly the changed data after.\n"
+"\tSo you will be able, during the restore\n"
"\tstep, to restore your data from a specified\n"
"\tdate.\n"
-"\tIf you have not selected this options all\n"
+"\tIf you have not selected this option all\n"
"\told backups are deleted before each backup. \n"
"\n"
"\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4148 ../../standalone/drakbackup_.c:4225
+#: ../../standalone/drakbackup_.c:4810 ../../standalone/drakbackup_.c:4887
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
-#: ../../standalone/drakbackup_.c:4150 ../../standalone/drakbackup_.c:4227
+#: ../../standalone/drakbackup_.c:4812 ../../standalone/drakbackup_.c:4889
msgid ""
" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
-#: ../../standalone/drakbackup_.c:4152 ../../standalone/drakbackup_.c:4229
+#: ../../standalone/drakbackup_.c:4814 ../../standalone/drakbackup_.c:4891
msgid ""
" This program is free software; you can redistribute it and/or modify\n"
" it under the terms of the GNU General Public License as published by\n"
@@ -10460,7 +10984,7 @@ msgid ""
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
msgstr ""
-#: ../../standalone/drakbackup_.c:4166
+#: ../../standalone/drakbackup_.c:4828
msgid ""
"Description:\n"
"\n"
@@ -10500,7 +11024,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4204
+#: ../../standalone/drakbackup_.c:4866
msgid ""
"options description:\n"
"\n"
@@ -10511,7 +11035,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4213
+#: ../../standalone/drakbackup_.c:4875
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -10524,7 +11048,7 @@ msgid ""
"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4243
+#: ../../standalone/drakbackup_.c:4905
msgid ""
"Description:\n"
"\n"
@@ -10605,9 +11129,9 @@ msgstr ""
msgid "Synchronization tool"
msgstr ""
-#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:85
-#: ../../standalone/drakbug_.c:150 ../../standalone/drakbug_.c:152
-#: ../../standalone/drakbug_.c:156
+#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:86
+#: ../../standalone/drakbug_.c:151 ../../standalone/drakbug_.c:153
+#: ../../standalone/drakbug_.c:157
#, fuzzy
msgid "Standalone Tools"
msgstr "Konsolës árankiai"
@@ -10659,26 +11183,26 @@ msgstr "Printerdrake"
msgid "Configuration Wizards"
msgstr "Tinklo Konfigûravimo Meistras"
-#: ../../standalone/drakbug_.c:96
+#: ../../standalone/drakbug_.c:97
#, fuzzy
msgid "Application:"
msgstr "Autentikacija"
-#: ../../standalone/drakbug_.c:97
+#: ../../standalone/drakbug_.c:98
#, fuzzy
msgid "Package: "
msgstr "Paketű grupiű pasirinkimas"
-#: ../../standalone/drakbug_.c:98
+#: ../../standalone/drakbug_.c:99
msgid "Kernel:"
msgstr ""
-#: ../../standalone/drakbug_.c:99
+#: ../../standalone/drakbug_.c:100
#, fuzzy
msgid "Release: "
msgstr "Prađom palaukti"
-#: ../../standalone/drakbug_.c:114
+#: ../../standalone/drakbug_.c:115
msgid ""
"\n"
"\n"
@@ -10690,21 +11214,21 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbug_.c:135
+#: ../../standalone/drakbug_.c:136
#, fuzzy
msgid "Report"
msgstr "Prievadas"
-#: ../../standalone/drakbug_.c:165
+#: ../../standalone/drakbug_.c:166
#, fuzzy
msgid "Not installed"
msgstr "Iđeiti iđ ádiegimo"
-#: ../../standalone/drakbug_.c:182
+#: ../../standalone/drakbug_.c:183
msgid "connecting to Bugzilla wizard ..."
msgstr ""
-#: ../../standalone/drakbug_.c:189
+#: ../../standalone/drakbug_.c:190
#, fuzzy
msgid "No browser available! Please install one"
msgstr "Tu gali pasirinkti kitas kalbas, kurios bus prieinamos po ádiegimo"
@@ -11151,7 +11675,7 @@ msgstr "Prijungimo vieta"
#: ../../standalone/drakfont_.c:909
#, fuzzy
-msgid "Choose the applications that will support the fonts :"
+msgid "Choose the applications that will support the fonts:"
msgstr "Pasirink skirsnius, kuriuos nori suțymëti"
#: ../../standalone/drakfont_.c:918
@@ -11232,19 +11756,19 @@ msgstr "Tavo sistemoje nerasta jokia tinklo plokđtë!"
msgid "Post Uninstall"
msgstr "Iđeiti iđ ádiegimo"
-#: ../../standalone/drakgw_.c:42 ../../standalone/drakgw_.c:195
+#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:188
msgid "Internet Connection Sharing"
msgstr "Interneto jungties dalinimas"
-#: ../../standalone/drakgw_.c:121
+#: ../../standalone/drakgw_.c:119
msgid "Sorry, we support only 2.4 kernels."
msgstr ""
-#: ../../standalone/drakgw_.c:133
+#: ../../standalone/drakgw_.c:130
msgid "Internet Connection Sharing currently enabled"
msgstr "Interneto jungties dalinimas điuo metu ájungtas"
-#: ../../standalone/drakgw_.c:134
+#: ../../standalone/drakgw_.c:131
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -11256,33 +11780,33 @@ msgstr ""
"\n"
"Tai kà norëtum daryti?"
-#: ../../standalone/drakgw_.c:138
+#: ../../standalone/drakgw_.c:135
msgid "disable"
msgstr "iđjungti"
-#: ../../standalone/drakgw_.c:138 ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:135 ../../standalone/drakgw_.c:160
msgid "dismiss"
msgstr "nieko"
-#: ../../standalone/drakgw_.c:138 ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:135 ../../standalone/drakgw_.c:160
msgid "reconfigure"
msgstr "iđ naujo nustatyti"
-#: ../../standalone/drakgw_.c:141
+#: ../../standalone/drakgw_.c:138
#, fuzzy
msgid "Disabling servers..."
msgstr "Ieđkoma áranga..."
-#: ../../standalone/drakgw_.c:149
+#: ../../standalone/drakgw_.c:146
#, fuzzy
msgid "Internet connection sharing is now disabled."
msgstr "Interneto jungties dalinimas điuo metu iđjungtas"
-#: ../../standalone/drakgw_.c:158
+#: ../../standalone/drakgw_.c:155
msgid "Internet Connection Sharing currently disabled"
msgstr "Interneto jungties dalinimas điuo metu iđjungtas"
-#: ../../standalone/drakgw_.c:159
+#: ../../standalone/drakgw_.c:156
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
@@ -11294,20 +11818,20 @@ msgstr ""
"\n"
"Tai kà norëtum daryti?"
-#: ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:160
msgid "enable"
msgstr "ájungti"
-#: ../../standalone/drakgw_.c:170
+#: ../../standalone/drakgw_.c:167
msgid "Enabling servers..."
msgstr ""
-#: ../../standalone/drakgw_.c:175
+#: ../../standalone/drakgw_.c:172
#, fuzzy
msgid "Internet connection sharing is now enabled."
msgstr "Interneto jungties dalinimas điuo metu ájungtas"
-#: ../../standalone/drakgw_.c:196
+#: ../../standalone/drakgw_.c:189
#, fuzzy
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
@@ -11325,21 +11849,21 @@ msgstr ""
"\n"
"Ar norëtum sutvarkyti interneto jungties dalinimà?"
-#: ../../standalone/drakgw_.c:222
+#: ../../standalone/drakgw_.c:215
#, c-format
msgid "Interface %s (using module %s)"
msgstr ""
-#: ../../standalone/drakgw_.c:223
+#: ../../standalone/drakgw_.c:216
#, fuzzy, c-format
msgid "Interface %s"
msgstr "Interfeisas"
-#: ../../standalone/drakgw_.c:231
+#: ../../standalone/drakgw_.c:224
msgid "No network adapter on your system!"
msgstr "Tavo sistemoje nerasta jokia tinklo plokđtë!"
-#: ../../standalone/drakgw_.c:232
+#: ../../standalone/drakgw_.c:225
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
@@ -11347,11 +11871,11 @@ msgstr ""
"Tavo sistemoje nerasta jokia tinklo plokđtë. prađom paleisti árangos "
"nustatymo áranká."
-#: ../../standalone/drakgw_.c:238
+#: ../../standalone/drakgw_.c:231
msgid "Network interface"
msgstr "Tinklo interfeisas"
-#: ../../standalone/drakgw_.c:239
+#: ../../standalone/drakgw_.c:232
#, fuzzy, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -11366,19 +11890,19 @@ msgstr ""
"\n"
"Ar norëtum sutvarkyti savo vietiná tinklà điai plokđtei?"
-#: ../../standalone/drakgw_.c:248
+#: ../../standalone/drakgw_.c:241
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
msgstr ""
"Prađom pasirinkti, kuri tinklo plokđtë bus prijungta prie vietinio tinklo."
-#: ../../standalone/drakgw_.c:266
+#: ../../standalone/drakgw_.c:259
#, fuzzy
msgid "Network interface already configured"
msgstr "Monitorius nenurodytas"
-#: ../../standalone/drakgw_.c:267
+#: ../../standalone/drakgw_.c:260
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -11388,17 +11912,17 @@ msgid ""
"You can do it manually but you need to know what you're doing."
msgstr ""
-#: ../../standalone/drakgw_.c:272
+#: ../../standalone/drakgw_.c:265
#, fuzzy
msgid "Automatic reconfiguration"
msgstr "Ádiegimo Tipo Konfiguracija"
-#: ../../standalone/drakgw_.c:273
+#: ../../standalone/drakgw_.c:266
#, fuzzy
msgid "Show current interface configuration"
msgstr "Modemo Nustatymai"
-#: ../../standalone/drakgw_.c:275
+#: ../../standalone/drakgw_.c:268
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -11409,7 +11933,7 @@ msgid ""
"Driver: %s"
msgstr ""
-#: ../../standalone/drakgw_.c:287
+#: ../../standalone/drakgw_.c:280
msgid ""
"I can keep your current configuration and assume you already set up a DHCP "
"server; in that case please verify I correctly read the C-Class Network that "
@@ -11421,55 +11945,43 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakgw_.c:292
+#: ../../standalone/drakgw_.c:285
msgid "C-Class Local Network"
msgstr ""
-#: ../../standalone/drakgw_.c:293
+#: ../../standalone/drakgw_.c:286
#, fuzzy
msgid "(This) DHCP Server IP"
msgstr "CUPS serverio IP"
-#: ../../standalone/drakgw_.c:294
+#: ../../standalone/drakgw_.c:287
msgid "Re-configure interface and DHCP server"
msgstr ""
-#: ../../standalone/drakgw_.c:301
+#: ../../standalone/drakgw_.c:294
msgid "The Local Network did not finish with `.0', bailing out."
msgstr ""
-#: ../../standalone/drakgw_.c:312
+#: ../../standalone/drakgw_.c:305
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr "Rastas galimas LAN adreso konfliktas esamose %s nuostatose!\n"
-#: ../../standalone/drakgw_.c:320
-msgid "Firewalling configuration detected!"
-msgstr "Aptikta ugniasienës konfigûracija!"
-
-#: ../../standalone/drakgw_.c:321
-msgid ""
-"Warning! An existing firewalling configuration has been detected. You may "
-"need some manual fix after installation."
-msgstr ""
-"Áspëjimas! Aptikta ugniasienës konfigûracija! Tau gali tekti kai kà "
-"iđtaisyti rankomis po ádiegimo."
-
-#: ../../standalone/drakgw_.c:328
+#: ../../standalone/drakgw_.c:315
msgid "Configuring..."
msgstr "Konfigûruojama..."
-#: ../../standalone/drakgw_.c:329
+#: ../../standalone/drakgw_.c:316
msgid "Configuring scripts, installing software, starting servers..."
msgstr ""
"Konfigûruojami skriptai, ádiegiamos programos, paleidțiami serveriai..."
-#: ../../standalone/drakgw_.c:365
+#: ../../standalone/drakgw_.c:352
#, c-format
msgid "Problems installing package %s"
msgstr "Yra problemű ádiegiant paketà %s"
-#: ../../standalone/drakgw_.c:549
+#: ../../standalone/drakgw_.c:485
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
@@ -11479,7 +11991,7 @@ msgstr ""
"Tu gali dabar dalintis interneto jungtimi su kitais kompiuteriais vietiniame "
"tinkle, naudojant automatinæ tinklo konfigûracijà (DHCP)."
-#: ../../standalone/drakgw_.c:566
+#: ../../standalone/drakgw_.c:504
#, fuzzy
msgid "The setup has already been done, but it's currently disabled."
msgstr ""
@@ -11488,7 +12000,7 @@ msgstr ""
"\n"
"Tai kà norëtum daryti?"
-#: ../../standalone/drakgw_.c:567
+#: ../../standalone/drakgw_.c:505
#, fuzzy
msgid "The setup has already been done, and it's currently enabled."
msgstr ""
@@ -11497,17 +12009,17 @@ msgstr ""
"\n"
"Tai kà norëtum daryti?"
-#: ../../standalone/drakgw_.c:568
+#: ../../standalone/drakgw_.c:506
#, fuzzy
msgid "No Internet Connection Sharing has ever been configured."
msgstr "Interneto jungties dalinimas điuo metu ájungtas"
-#: ../../standalone/drakgw_.c:573
+#: ../../standalone/drakgw_.c:511
#, fuzzy
msgid "Internet connection sharing configuration"
msgstr "Interneto jungtis ir nustatymas"
-#: ../../standalone/drakgw_.c:580
+#: ../../standalone/drakgw_.c:518
#, fuzzy, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -11517,6 +12029,158 @@ msgid ""
"Click on Configure to launch the setup wizard."
msgstr "Interneto jungties dalinimas"
+#: ../../standalone/draksound_.c:46
+#, fuzzy
+msgid "No Sound Card detected!"
+msgstr "Nepajungtas"
+
+#: ../../standalone/draksound_.c:47
+msgid ""
+"No Sound Card has been detected on your machine. Please verify that a Linux-"
+"supported Sound Card is correctly plugged in.\n"
+"\n"
+"\n"
+"You can visit our hardware database at:\n"
+"\n"
+"\n"
+"http://www.linux-mandrake.com/en/hardware.php3"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:32
+msgid "package ImageMagick is required for correct working"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:76
+#, fuzzy
+msgid "first step creation"
+msgstr "ákrovos diskelio sukûrimui"
+
+#: ../../standalone/draksplash_.c:77
+#, fuzzy
+msgid "final resolution"
+msgstr "Skiriamoji geba"
+
+#: ../../standalone/draksplash_.c:78 ../../standalone/draksplash_.c:170
+#, fuzzy
+msgid "choose image file"
+msgstr "Pasirink veiksmà"
+
+#: ../../standalone/draksplash_.c:79
+#, fuzzy
+msgid "Theme name"
+msgstr "Share'o vardas"
+
+#: ../../standalone/draksplash_.c:81
+msgid "make bootsplash step 2"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:82
+#, fuzzy
+msgid "go to lilosplash configuration"
+msgstr "Konfigûracija po ádiegimo"
+
+#: ../../standalone/draksplash_.c:83
+#, fuzzy
+msgid "quit"
+msgstr "Iđeiti"
+
+#: ../../standalone/draksplash_.c:84
+#, fuzzy
+msgid "save theme"
+msgstr "Ádiegti sistemà"
+
+#: ../../standalone/draksplash_.c:85
+msgid "browse"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:98 ../../standalone/draksplash_.c:159
+#, fuzzy
+msgid "Configure bootsplash picture"
+msgstr "Nustatyti servisus"
+
+#: ../../standalone/draksplash_.c:99
+msgid "x coordinate of text box in number of character"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:100
+msgid "y coordinate of text box in number of character"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:101
+msgid "text width"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:102
+msgid "text box height"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:103
+msgid "the progress bar x coordinate of its upper left corner"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:104
+msgid "the progress bar y coordinate of its upper left corner"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:105
+msgid "the width of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:106
+msgid "the heigth of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:107
+msgid "the color of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:119
+#, fuzzy
+msgid "go back"
+msgstr "Loopback"
+
+#: ../../standalone/draksplash_.c:120
+#, fuzzy
+msgid "preview"
+msgstr "árenginys"
+
+#: ../../standalone/draksplash_.c:121
+#, fuzzy
+msgid "choose color"
+msgstr "Pasirink monitoriű"
+
+#: ../../standalone/draksplash_.c:124
+msgid "Display logo on Console"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:125
+msgid "Make kernel message quiet by default"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:161 ../../standalone/draksplash_.c:330
+#, c-format
+msgid "This theme haven't yet any bootsplash in %s !"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:213
+msgid "saving Bootsplash theme..."
+msgstr ""
+
+#: ../../standalone/draksplash_.c:436
+#, fuzzy
+msgid "ProgressBar color selection"
+msgstr "Spausdintuvo jungtis"
+
+#: ../../standalone/draksplash_.c:454
+#, fuzzy
+msgid "You must choose an image file first!"
+msgstr "Spausdintuvo árenginio URI"
+
+#: ../../standalone/draksplash_.c:463
+#, fuzzy
+msgid "Generating preview ..."
+msgstr "Ieđkoma áranga..."
+
#: ../../standalone/drakxtv_.c:49
msgid ""
"XawTV isn't installed!\n"
@@ -11609,11 +12273,11 @@ msgid ""
msgstr ""
#: ../../standalone/drakxtv_.c:109
-msgid "TV norm :"
+msgid "TV norm:"
msgstr ""
#: ../../standalone/drakxtv_.c:110
-msgid "Area :"
+msgid "Area:"
msgstr ""
#: ../../standalone/drakxtv_.c:114
@@ -11690,7 +12354,7 @@ msgstr "nepavyko paleisti gyvo atnaujinimo!!!\n"
msgid "The change is done, but to be effective you must logout"
msgstr ""
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:517
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:515
#, fuzzy
msgid "logdrake"
msgstr "draknet"
@@ -11870,7 +12534,7 @@ msgstr "ádomu"
#: ../../standalone/logdrake_.c:431
msgid ""
-"You will receive an alert if one of the selected service is no more running"
+"You will receive an alert if one of the selected services is no more running"
msgstr ""
#: ../../standalone/logdrake_.c:443
@@ -11892,19 +12556,19 @@ msgstr "Nustatymai"
msgid "Please enter your email address below "
msgstr "Prađom bandyti vël"
-#: ../../standalone/logdrake_.c:499
+#: ../../standalone/logdrake_.c:497
msgid "Save as.."
msgstr "Uțrađyti Kaip..."
-#: ../../standalone/mousedrake_.c:43
+#: ../../standalone/mousedrake_.c:45
msgid "Please, choose the type of your mouse."
msgstr "Prađom pasirinkti savo pelës rûđá."
-#: ../../standalone/mousedrake_.c:57
+#: ../../standalone/mousedrake_.c:58
msgid "Emulate third button?"
msgstr "Ar emuliuoti treèià klaviđà?"
-#: ../../standalone/printerdrake_.c:48
+#: ../../standalone/printerdrake_.c:57
#, fuzzy
msgid "Reading printer data ..."
msgstr "Skaitoma CUPS tvarkykliű duomenű bazë"
@@ -11918,34 +12582,45 @@ msgstr "Ieđkoma áranga..."
msgid "Test ports"
msgstr "Patikrinti prievadus"
-#: ../../standalone/scannerdrake_.c:52
+#: ../../standalone/scannerdrake_.c:53 ../../standalone/scannerdrake_.c:68
+#: ../../standalone/scannerdrake_.c:81
#, c-format
-msgid "%s found on %s, configure it ?"
+msgid "The %s is not supported by this version of Mandrake Linux."
msgstr ""
+#: ../../standalone/scannerdrake_.c:56
+#, fuzzy, c-format
+msgid "%s found on %s, configure it?"
+msgstr "Ar nori nustatyti spausdintuvà?"
+
#: ../../standalone/scannerdrake_.c:59
+#, c-format
+msgid "%s is not in the scanner database, configure it manually?"
+msgstr ""
+
+#: ../../standalone/scannerdrake_.c:65
#, fuzzy
msgid "Select a scanner"
msgstr "Pasirink vaizdo plokđtæ"
-#: ../../standalone/scannerdrake_.c:79
+#: ../../standalone/scannerdrake_.c:93
#, c-format
msgid "This %s scanner is unsupported"
msgstr ""
-#: ../../standalone/scannerdrake_.c:93
+#: ../../standalone/scannerdrake_.c:107
#, c-format
msgid ""
"Scannerdrake was not able to detect your %s scanner.\n"
"Please select the device where your scanner is plugged"
msgstr ""
-#: ../../standalone/scannerdrake_.c:95
+#: ../../standalone/scannerdrake_.c:109
#, fuzzy
msgid "choose device"
msgstr "Ákrovos árenginys"
-#: ../../standalone/scannerdrake_.c:101
+#: ../../standalone/scannerdrake_.c:115
#, c-format
msgid ""
"This %s scanner must be configured by printerdrake.\n"
@@ -11953,7 +12628,7 @@ msgid ""
"section."
msgstr ""
-#: ../../standalone/scannerdrake_.c:106
+#: ../../standalone/scannerdrake_.c:120
#, c-format
msgid ""
"Your %s scanner has been configured.\n"
@@ -11961,43 +12636,18 @@ msgid ""
"applications menu."
msgstr ""
-#: ../../standalone/service_harddrake_.c:57
+#: ../../standalone/service_harddrake_.c:39
#, c-format
msgid "Some devices in the \"%s\" hardware class were removed:\n"
msgstr ""
-#: ../../standalone/service_harddrake_.c:61
+#: ../../standalone/service_harddrake_.c:43
#, c-format
msgid ""
"\n"
"Some devices in the %s class were added:\n"
msgstr ""
-#: ../../standalone/tinyfirewall_.c:30
-#, fuzzy
-msgid "Firewalling Configuration"
-msgstr "Aptikta ugniasienës konfigûracija!"
-
-#: ../../standalone/tinyfirewall_.c:43
-#, fuzzy
-msgid "Firewalling configuration"
-msgstr "Aptikta ugniasienës konfigûracija!"
-
-#: ../../standalone/tinyfirewall_.c:78
-msgid ""
-"Firewalling\n"
-"\n"
-"You already have set up a firewall.\n"
-"Click on Configure to change or remove the firewall"
-msgstr ""
-
-#: ../../standalone/tinyfirewall_.c:82
-msgid ""
-"Firewalling\n"
-"\n"
-"Click on Configure to set up a standard firewall"
-msgstr ""
-
#: ../../steps.pm_.c:14
msgid "Choose your language"
msgstr "Pasirink savo kalbà"
@@ -12072,169 +12722,7 @@ msgstr "Ádiegti sistemà"
msgid "Exit install"
msgstr "Iđeiti iđ ádiegimo"
-#: ../../tinyfirewall.pm_.c:9
-msgid ""
-"tinyfirewall configurator\n"
-"\n"
-"This configures a personal firewall for this Mandrake Linux machine.\n"
-"For a powerful dedicated firewall solution, please look to the\n"
-"specialized MandrakeSecurity Firewall distribution."
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:14
-msgid ""
-"We'll now ask you questions about which services you'd like to allow\n"
-"the Internet to connect to. Please think carefully about these\n"
-"questions, as your computer's security is important.\n"
-"\n"
-"Please, if you're not currently using one of these services, firewall\n"
-"it off. You can change this configuration anytime you like by\n"
-"re-running this application!"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:21
-msgid ""
-"Are you running a web server on this machine that you need the whole\n"
-"Internet to see? If you are running a webserver that only needs to be\n"
-"accessed by this machine, you can safely answer NO here.\n"
-"\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:26
-msgid ""
-"Are you running a name server on this machine? If you didn't set one\n"
-"up to give away IP and zone information to the whole Internet, please\n"
-"answer no.\n"
-"\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:31
-msgid ""
-"Do you want to allow incoming Secure Shell (ssh) connections? This\n"
-"is a telnet-replacement that you might use to login. If you're using\n"
-"telnet now, you should definitely switch to ssh. telnet is not\n"
-"encrypted -- so some attackers can steal your password if you use\n"
-"it. ssh is encrypted and doesn't allow for this eavesdropping."
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:36
-msgid ""
-"Do you want to allow incoming telnet connections?\n"
-"This is horribly unsafe, as we explained in the previous screen. We\n"
-"strongly recommend answering No here and using ssh in place of\n"
-"telnet.\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:41
-msgid ""
-"Are you running an FTP server here that you need accessible to the\n"
-"Internet? If you are, we strongly recommend that you only use it for\n"
-"Anonymous transfers. Any passwords sent by FTP can be stolen by some\n"
-"attackers, since FTP also uses no encryption for transferring passwords.\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:46
-msgid ""
-"Are you running a mail server here? If you're sending you \n"
-"messages through pine, mutt or any other text-based mail client,\n"
-"you probably are. Otherwise, you should firewall this off.\n"
-"\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:51
-msgid ""
-"Are you running a POP or IMAP server here? This would\n"
-"be used to host non-web-based mail accounts for people via \n"
-"this machine.\n"
-"\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:56
-msgid ""
-"You appear to be running a 2.2 kernel. If your network IP\n"
-"is automatically set by a computer in your home or office \n"
-"(dynamically assigned), we need to allow for this. Is\n"
-"this the case?\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:61
-msgid ""
-"Is your computer getting time syncronized to another computer?\n"
-"Mostly, this is used by medium-large Unix/Linux organizations\n"
-"to synchronize time for logging and such. If you're not part\n"
-"of a larger office and haven't heard of this, you probably \n"
-"aren't."
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:66
-msgid ""
-"Configuration complete. May we write these changes to disk?\n"
-"\n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:82
-#, fuzzy, c-format
-msgid "Can't open %s: %s\n"
-msgstr "Adapteris %s: %s"
-
-#: ../../tinyfirewall.pm_.c:84
-#, fuzzy, c-format
-msgid "Can't open %s for writing: %s\n"
-msgstr "Klaida atidarant %s árađymui: %s"
-
-#: ../../tinyfirewall.pm_.c:178
-msgid "No I don't need DHCP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:178
-msgid "Yes I need DHCP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:179
-msgid "No I don't need NTP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:179
-msgid "Yes I need NTP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:180 ../../tinyfirewall.pm_.c:184
-msgid "Don't Save"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:180 ../../tinyfirewall.pm_.c:184
-#: ../../tinyfirewall.pm_.c:204
-msgid "Save & Quit"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:195 ../../tinyfirewall.pm_.c:199
-#, fuzzy
-msgid "Firewall Configuration Wizard"
-msgstr "Tinklo Konfigûravimo Meistras"
-
-#: ../../tinyfirewall.pm_.c:197
-msgid "No (firewall this off from the internet)"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:198
-msgid "Yes (allow this through the firewall)"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:230
-#, fuzzy
-msgid "Please Wait... Verifying installed packages"
-msgstr "Prađome palaukti. Ruođiamas ádiegimas"
-
-#: ../../tinyfirewall.pm_.c:236
-#, c-format
-msgid ""
-"Failure installing the needed packages : %s and Bastille.\n"
-" Try to install them manually."
-msgstr ""
-
-#: ../../ugtk.pm_.c:619
+#: ../../ugtk.pm_.c:594
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr ""
@@ -12373,6 +12861,11 @@ msgid "Graphical Environment"
msgstr ""
#: ../../share/compssUsers:999
+#, fuzzy
+msgid "Development"
+msgstr "Kûrimo, Tinklapiű"
+
+#: ../../share/compssUsers:999
msgid "Apache, Pro-ftpd"
msgstr ""
@@ -12487,101 +12980,26 @@ msgstr "Multimedija - CD kepimas"
msgid "Scientific Workstation"
msgstr "Mokslinës darbo stotis"
-#~ msgid "$mode: $warning"
-#~ msgstr "$mode: $warning"
+#~ msgid "LBA (doesn't work on old BIOSes)"
+#~ msgstr "LBA (nedirba su senais BIOS'ais)"
-#, fuzzy
-#~ msgid ""
-#~ "This level is to be used with care. It makes your system more easy to "
-#~ "use,\n"
-#~ " but very sensitive: it must not be used for a machine "
-#~ "connected to others\n"
-#~ " or to the Internet. There is no password access."
-#~ msgstr ""
-#~ "Điame lygyje reikia elgtis atsargiai. Tai leidția lengviau naudoti "
-#~ "sistemà,\n"
-#~ "bet labai jautriai: ji turëtű nebûti naudojama kompiuteriuose,\n"
-#~ "sujungtais su kitais arba prie Interneto. Èia nëra slaptațodțiű."
+#~ msgid "You don't have any partitions!"
+#~ msgstr "Tu neturi jokiű skirsniű!"
-#, fuzzy
#~ msgid ""
-#~ "With this security level, the use of this system as a server becomes "
-#~ "possible.\n"
-#~ " The security is now high enough to use the system as a "
-#~ "server which can accept\n"
-#~ " connections from many clients. Note: if your machine is "
-#~ "only a client on the Internet, you should choose a lower level."
+#~ "DiskDrake failed to read correctly the partition table.\n"
+#~ "Continue at your own risk!"
#~ msgstr ""
-#~ "Su điuo saugumo lygiu sistemà jau galima naudoti kaip serverá. Saugumas\n"
-#~ "yra pakankamai aukđtas, kad sistemà bûtű galima naudoti serveriui, kuris "
-#~ "priima\n"
-#~ "prisijungimus iđ daugybës klientű."
-
-#, fuzzy
-#~ msgid "Basic Options"
-#~ msgstr "Pasirinktys"
+#~ "DiskDrake nesugebëjo teisingai perskaityti skirsniű lentelës.\n"
+#~ "Tæsk savo paties rizika!"
-#, fuzzy
-#~ msgid "Security Checks"
-#~ msgstr "curly"
-
-#, fuzzy
-#~ msgid "Please choose your CD space"
-#~ msgstr "Prađom pasirinkti klaviatûros iđdëstymà."
-
-#, fuzzy
-#~ msgid "Please enter the cd writer speed"
-#~ msgstr "Prađom iđbandyti pelæ"
-
-#, fuzzy
-#~ msgid "Please check if you want to include install boot on your CD."
-#~ msgstr "Pasirink paketus, kuriuos tu nori ádiegti."
-
-#, fuzzy
-#~ msgid "Url should begin with 'ftp:'"
-#~ msgstr "Proxy turëtű bûti ftp://..."
-
-#, fuzzy
#~ msgid ""
-#~ "Please check if you want to include\n"
-#~ " install boot on your CD."
-#~ msgstr "Pasirink paketus, kuriuos tu nori ádiegti."
-
-#, fuzzy
-#~ msgid "Windows PDC"
-#~ msgstr "Iđmesti Windows(TM)"
-
-#, fuzzy
-#~ msgid "Tamil"
-#~ msgstr "Lentelë"
-
-#, fuzzy
-#~ msgid "PDC Server Name"
-#~ msgstr "NIS serveris"
-
-#, fuzzy
-#~ msgid "Set up printer manually"
-#~ msgstr "Nutolæs spausdintuvas"
-
-#, fuzzy
-#~ msgid "Installing HPOJ package..."
-#~ msgstr "Ádiegiamas paketas %s"
-
-#, fuzzy
-#~ msgid "Installing SANE packages..."
-#~ msgstr "Ádiegiamas paketas %s"
-
-#, fuzzy
-#~ msgid "Installing mtools packages..."
-#~ msgstr "Ádiegiamas paketas %s"
-
-#, fuzzy
-#~ msgid "Making printer port available for CUPS..."
-#~ msgstr "Skaitoma CUPS tvarkykliű duomenű bazë"
-
-#, fuzzy
-#~ msgid "Control Center"
-#~ msgstr "Prisijungti prie interneto"
+#~ "I can't read your partition table, it's too corrupted for me :(\n"
+#~ "I'll try to go on blanking bad partitions"
+#~ msgstr ""
+#~ "Ađ negaliu perskaityti tavo skirsniű lentelës, ji man pernelyg sugadinta :"
+#~ "(\n"
+#~ "Pabandysiu iđvalyti blogus skirsnius"
#~ msgid "Choose the tool you want to use"
#~ msgstr "Pasirink kurá áranká norëtum naudoti"
@@ -12656,9 +13074,6 @@ msgstr "Mokslinës darbo stotis"
#~ msgid "Select a graphics card"
#~ msgstr "Pasirink vaizdo plokđtæ"
-#~ msgid "Warning: testing this graphics card may freeze your computer"
-#~ msgstr "Perspëjimas: đios plokđtës bandymas gali pakabinti kompiuterá"
-
#~ msgid "Standard VGA, 640x480 at 60 Hz"
#~ msgstr "Standartinis VGA 640x480 prie 60 Hz"
diff --git a/perl-install/share/po/lv.po b/perl-install/share/po/lv.po
index e2d3e5368..b15f3ed8e 100644
--- a/perl-install/share/po/lv.po
+++ b/perl-install/share/po/lv.po
@@ -6,8 +6,8 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: drakfloppy 0.43\n"
-"POT-Creation-Date: 2002-08-21 15:44+0200\n"
+"Project-Id-Version: DrakX\n"
+"POT-Creation-Date: 2002-09-02 20:14+0200\n"
"PO-Revision-Date: 2001-08-21 09:34+0200\n"
"Last-Translator: Juris Kudiòđ <cooker@inbox.lv>\n"
"Language-Team: Latvian\n"
@@ -51,19 +51,19 @@ msgstr "32 MB"
msgid "64 MB or more"
msgstr "64 MB vai vairâk"
-#: ../../Xconfig/card.pm_.c:201
+#: ../../Xconfig/card.pm_.c:203
msgid "Choose a X server"
msgstr "Izvçlieties X serveri"
-#: ../../Xconfig/card.pm_.c:201
+#: ../../Xconfig/card.pm_.c:203
msgid "X server"
msgstr "X serveris"
-#: ../../Xconfig/card.pm_.c:228
+#: ../../Xconfig/card.pm_.c:230
msgid "Multi-head configuration"
msgstr "N-ekrânu konfigurâcija"
-#: ../../Xconfig/card.pm_.c:229
+#: ../../Xconfig/card.pm_.c:231
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
@@ -71,27 +71,27 @@ msgstr ""
"Jûsu sistçma atbalsta n-ekrânu konfigurâciju.\n"
"Ko nu darîsim?"
-#: ../../Xconfig/card.pm_.c:284
+#: ../../Xconfig/card.pm_.c:286
msgid "Select the memory size of your graphics card"
msgstr "Izvçlieties grafiskâs kartes atmiòas apjomu"
-#: ../../Xconfig/card.pm_.c:345
+#: ../../Xconfig/card.pm_.c:347
msgid "XFree configuration"
msgstr "XFree konfigurâcija"
-#: ../../Xconfig/card.pm_.c:347
+#: ../../Xconfig/card.pm_.c:349
msgid "Which configuration of XFree do you want to have?"
msgstr "Kuru XFree konfigurâciju izvçlaties?"
-#: ../../Xconfig/card.pm_.c:379
+#: ../../Xconfig/card.pm_.c:381
msgid "Configure all heads independently"
msgstr "Konfigurât visus ekrânus neatkarîgi"
-#: ../../Xconfig/card.pm_.c:380
+#: ../../Xconfig/card.pm_.c:382
msgid "Use Xinerama extension"
msgstr "Lietot Xinerama piebûvi"
-#: ../../Xconfig/card.pm_.c:384
+#: ../../Xconfig/card.pm_.c:386
#, fuzzy, c-format
msgid "Configure only card \"%s\"%s"
msgstr "Konfigurât tikai karti \"%s\" (%s)"
@@ -102,13 +102,13 @@ msgstr "Konfigurât tikai karti \"%s\" (%s)"
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:435
+#: ../../Xconfig/card.pm_.c:410 ../../Xconfig/card.pm_.c:436
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s with 3D hardware acceleration"
msgstr "XFree %s ar aparatûras 3D akselerâciju"
-#: ../../Xconfig/card.pm_.c:412
+#: ../../Xconfig/card.pm_.c:413
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -117,17 +117,17 @@ msgstr ""
"Jûsu karte spçj nodrođinât 3D akselerâciju, bet tikai ar XFree %s.\n"
"Jûsu karti uztur XFree %s, kam var bût labâks 2D atbalsts."
-#: ../../Xconfig/card.pm_.c:414 ../../Xconfig/card.pm_.c:437
+#: ../../Xconfig/card.pm_.c:415 ../../Xconfig/card.pm_.c:438
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr "Jûsu karte spçj nodrođinât 3D akselerâciju ar XFree %s."
-#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:443
+#: ../../Xconfig/card.pm_.c:423 ../../Xconfig/card.pm_.c:444
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s ar EKSPERIMENTÂLU aparatûras 3D akselerâciju"
-#: ../../Xconfig/card.pm_.c:425
+#: ../../Xconfig/card.pm_.c:426
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -138,7 +138,7 @@ msgstr ""
"ÒEMIET VÇRÂ, KA TAS IR EKSPERIMENTÂLS ATBALSTS, KAS VAR UZKÂRT DATORU.\n"
"Jûsu karti uztur XFree %s, kam var bût labâks 2D atbalsts."
-#: ../../Xconfig/card.pm_.c:428 ../../Xconfig/card.pm_.c:445
+#: ../../Xconfig/card.pm_.c:429 ../../Xconfig/card.pm_.c:446
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
@@ -147,53 +147,54 @@ msgstr ""
"Jûsu karte spçj nodrođinât 3D akselerâciju ar XFree %s.\n"
"ÒEMIET VÇRÂ, KA TAS IR EKSPERIMENTÂLS ATBALSTS, KAS VAR UZKÂRT DATORU."
-#: ../../Xconfig/card.pm_.c:451
+#: ../../Xconfig/card.pm_.c:452
msgid "Xpmac (installation display driver)"
msgstr ""
-#: ../../Xconfig/main.pm_.c:78 ../../Xconfig/main.pm_.c:79
-#: ../../Xconfig/monitor.pm_.c:94 ../../any.pm_.c:974
+#: ../../Xconfig/main.pm_.c:76 ../../Xconfig/main.pm_.c:77
+#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:977
msgid "Custom"
msgstr "Pielâgota"
-#: ../../Xconfig/main.pm_.c:104
+#: ../../Xconfig/main.pm_.c:102
#, fuzzy
msgid "Graphic Card"
msgstr "Grafiskâ karte"
-#: ../../Xconfig/main.pm_.c:107 ../../Xconfig/monitor.pm_.c:91
+#: ../../Xconfig/main.pm_.c:105 ../../Xconfig/monitor.pm_.c:93
msgid "Monitor"
msgstr "Monitors"
-#: ../../Xconfig/main.pm_.c:110 ../../Xconfig/resolution_and_depth.pm_.c:209
+#: ../../Xconfig/main.pm_.c:108 ../../Xconfig/resolution_and_depth.pm_.c:209
msgid "Resolution"
msgstr "Izđíirtspçja"
-#: ../../Xconfig/main.pm_.c:114
+#: ../../Xconfig/main.pm_.c:113
msgid "Test"
msgstr ""
-#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:59
-#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/removable.pm_.c:25
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:63
+#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/removable.pm_.c:25
#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "Opcijas"
#: ../../Xconfig/main.pm_.c:121 ../../Xconfig/resolution_and_depth.pm_.c:268
-#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:281
+#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:275
#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
-#: ../../interactive.pm_.c:351 ../../interactive/http.pm_.c:104
+#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:104
#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
-#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:156
-#: ../../my_gtk.pm_.c:284 ../../my_gtk.pm_.c:307
-#: ../../standalone/drakbackup_.c:3324 ../../standalone/drakbackup_.c:3419
-#: ../../standalone/drakbackup_.c:3438
+#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:159
+#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310
+#: ../../standalone/drakbackup_.c:3972 ../../standalone/drakbackup_.c:4067
+#: ../../standalone/drakbackup_.c:4086
msgid "Ok"
msgstr "Labi"
#: ../../Xconfig/main.pm_.c:121 ../../diskdrake/dav.pm_.c:24
-#: ../../printerdrake.pm_.c:2933 ../../standalone/logdrake_.c:224
+#: ../../harddrake/ui.pm_.c:98 ../../printerdrake.pm_.c:3155
+#: ../../standalone/logdrake_.c:224
msgid "Quit"
msgstr "Beigt"
@@ -210,28 +211,28 @@ msgstr ""
"\n"
"%s"
-#: ../../Xconfig/monitor.pm_.c:91
+#: ../../Xconfig/monitor.pm_.c:93
msgid "Choose a monitor"
msgstr "Norâdiet monitoru"
-#: ../../Xconfig/monitor.pm_.c:95
+#: ../../Xconfig/monitor.pm_.c:97
msgid "Plug'n Play"
msgstr ""
-#: ../../Xconfig/monitor.pm_.c:96 ../../mouse.pm_.c:45
+#: ../../Xconfig/monitor.pm_.c:98 ../../mouse.pm_.c:46
msgid "Generic"
msgstr "Vispârçja"
-#: ../../Xconfig/monitor.pm_.c:97 ../../harddrake/ui.pm_.c:36
+#: ../../Xconfig/monitor.pm_.c:99 ../../harddrake/ui.pm_.c:37
#, fuzzy
msgid "Vendor"
msgstr "Atsaukt"
-#: ../../Xconfig/monitor.pm_.c:107
+#: ../../Xconfig/monitor.pm_.c:109
msgid "Plug'n Play probing failed. Please choose a precise monitor"
msgstr ""
-#: ../../Xconfig/monitor.pm_.c:112
+#: ../../Xconfig/monitor.pm_.c:114
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -253,11 +254,11 @@ msgstr ""
"monitoru.\n"
" Ja neesat pârliecinâts, izvçlieties konservatîvâko variantu."
-#: ../../Xconfig/monitor.pm_.c:119
+#: ../../Xconfig/monitor.pm_.c:121
msgid "Horizontal refresh rate"
msgstr "Horizontâlâ frekvence"
-#: ../../Xconfig/monitor.pm_.c:120
+#: ../../Xconfig/monitor.pm_.c:122
msgid "Vertical refresh rate"
msgstr "Vertikâlâ frekvence"
@@ -294,36 +295,41 @@ msgstr "Norâdiet izđíirtspçju un krâsu dziïumu"
msgid "Graphics card: %s"
msgstr "Grafiskâ karte: %s"
-#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1015
-#: ../../bootlook.pm_.c:334 ../../diskdrake/smbnfs_gtk.pm_.c:87
-#: ../../install_steps_gtk.pm_.c:412 ../../install_steps_gtk.pm_.c:470
-#: ../../install_steps_interactive.pm_.c:576 ../../interactive.pm_.c:142
-#: ../../interactive.pm_.c:351 ../../interactive/http.pm_.c:105
+#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1018
+#: ../../bootlook.pm_.c:338 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:406 ../../install_steps_gtk.pm_.c:464
+#: ../../install_steps_interactive.pm_.c:560 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:105
#: ../../interactive/newt.pm_.c:174 ../../interactive/stdio.pm_.c:39
-#: ../../interactive/stdio.pm_.c:143 ../../my_gtk.pm_.c:155
-#: ../../my_gtk.pm_.c:159 ../../my_gtk.pm_.c:284
-#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1990
-#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3278
-#: ../../standalone/drakbackup_.c:3311 ../../standalone/drakbackup_.c:3337
-#: ../../standalone/drakbackup_.c:3364 ../../standalone/drakbackup_.c:3391
-#: ../../standalone/drakbackup_.c:3451 ../../standalone/drakbackup_.c:3478
-#: ../../standalone/drakbackup_.c:3504 ../../standalone/drakconnect_.c:115
-#: ../../standalone/drakconnect_.c:147 ../../standalone/drakconnect_.c:289
-#: ../../standalone/drakconnect_.c:537 ../../standalone/drakconnect_.c:679
-#: ../../standalone/drakfloppy_.c:234 ../../standalone/drakfloppy_.c:383
-#: ../../standalone/drakfont_.c:970 ../../standalone/drakgw_.c:598
-#: ../../standalone/logdrake_.c:224 ../../standalone/logdrake_.c:528
-#: ../../standalone/tinyfirewall_.c:64
+#: ../../interactive/stdio.pm_.c:143 ../../my_gtk.pm_.c:158
+#: ../../my_gtk.pm_.c:162 ../../my_gtk.pm_.c:287
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:2124
+#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3926
+#: ../../standalone/drakbackup_.c:3959 ../../standalone/drakbackup_.c:3985
+#: ../../standalone/drakbackup_.c:4012 ../../standalone/drakbackup_.c:4039
+#: ../../standalone/drakbackup_.c:4099 ../../standalone/drakbackup_.c:4126
+#: ../../standalone/drakbackup_.c:4156 ../../standalone/drakbackup_.c:4182
+#: ../../standalone/drakconnect_.c:115 ../../standalone/drakconnect_.c:147
+#: ../../standalone/drakconnect_.c:289 ../../standalone/drakconnect_.c:537
+#: ../../standalone/drakconnect_.c:679 ../../standalone/drakfloppy_.c:234
+#: ../../standalone/drakfloppy_.c:383 ../../standalone/drakfont_.c:970
+#: ../../standalone/drakgw_.c:536 ../../standalone/logdrake_.c:224
+#: ../../standalone/logdrake_.c:526
msgid "Cancel"
msgstr "Atcelt"
-#: ../../Xconfig/test.pm_.c:26
+#: ../../Xconfig/test.pm_.c:30
+msgid "Test of the configuration"
+msgstr "Konfigurâcijas izmçìinâđana"
+
+#: ../../Xconfig/test.pm_.c:31
msgid "Do you want to test the configuration?"
msgstr "Vai vçlaties izmçìinât đo konfigurâciju?"
-#: ../../Xconfig/test.pm_.c:26
-msgid "Test of the configuration"
-msgstr "Konfigurâcijas izmçìinâđana"
+#: ../../Xconfig/test.pm_.c:31
+#, fuzzy
+msgid "Warning: testing this graphic card may freeze your computer"
+msgstr "Brîdinâjums: đîs grafiskâs kartes izmçìinâđana var uzkârt datoru"
#: ../../Xconfig/various.pm_.c:29
#, c-format
@@ -459,26 +465,22 @@ msgstr ""
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:158 ../../any.pm_.c:190
+#: ../../any.pm_.c:159 ../../any.pm_.c:190
msgid "Bootloader main options"
msgstr "Sâknçtâja galvenâs opcijas"
-#: ../../any.pm_.c:159 ../../any.pm_.c:191
+#: ../../any.pm_.c:160 ../../any.pm_.c:191
msgid "Bootloader to use"
msgstr "Kuru OS ielâdçtâju lietot"
-#: ../../any.pm_.c:161
+#: ../../any.pm_.c:162
msgid "Bootloader installation"
msgstr "Sâknçtâja instalçđana"
-#: ../../any.pm_.c:163 ../../any.pm_.c:193
+#: ../../any.pm_.c:164 ../../any.pm_.c:193
msgid "Boot device"
msgstr "Sâknçjamâ ierîce"
-#: ../../any.pm_.c:164
-msgid "LBA (doesn't work on old BIOSes)"
-msgstr "LBA (nedarbojas ar veciem BIOSiem)"
-
#: ../../any.pm_.c:165
msgid "Compact"
msgstr "Kompakts"
@@ -495,16 +497,17 @@ msgstr "Video rețîms"
msgid "Delay before booting default image"
msgstr "Pauze pirms noklusçtâs sistçmas ielâdes"
-#: ../../any.pm_.c:170 ../../any.pm_.c:786
+#: ../../any.pm_.c:170 ../../any.pm_.c:788
#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1111 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:743 ../../printerdrake.pm_.c:858
-#: ../../standalone/drakconnect_.c:624 ../../standalone/drakconnect_.c:649
+#: ../../install_steps_interactive.pm_.c:1096 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:850 ../../printerdrake.pm_.c:965
+#: ../../standalone/drakbackup_.c:3528 ../../standalone/drakconnect_.c:624
+#: ../../standalone/drakconnect_.c:649
msgid "Password"
msgstr "Parole"
-#: ../../any.pm_.c:171 ../../any.pm_.c:787
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../any.pm_.c:171 ../../any.pm_.c:789
+#: ../../install_steps_interactive.pm_.c:1097
msgid "Password (again)"
msgstr "Parole (atkârtoti)"
@@ -538,14 +541,14 @@ msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr "Opcijai ``Ierobețot komandrindas opcijas'' nav jçgas bez paroles"
-#: ../../any.pm_.c:184 ../../any.pm_.c:762
-#: ../../diskdrake/interactive.pm_.c:1180
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../any.pm_.c:184 ../../any.pm_.c:764
+#: ../../diskdrake/interactive.pm_.c:1191
+#: ../../install_steps_interactive.pm_.c:1091
msgid "Please try again"
msgstr "Lûdzu mçìiniet vçlreiz"
-#: ../../any.pm_.c:184 ../../any.pm_.c:762
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../any.pm_.c:184 ../../any.pm_.c:764
+#: ../../install_steps_interactive.pm_.c:1091
msgid "The passwords do not match"
msgstr "Paroles nesakrît"
@@ -590,16 +593,16 @@ msgstr ""
"Đeit ir dațâdi sâknçđanas ieraksti.\n"
"Jûs varat pievienot jaunus vai izmainît esođos."
-#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1483
-#: ../../standalone/drakbackup_.c:1596 ../../standalone/drakfont_.c:1011
+#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1558
+#: ../../standalone/drakbackup_.c:1671 ../../standalone/drakfont_.c:1011
#: ../../standalone/drakfont_.c:1054
msgid "Add"
msgstr "Pievienot"
-#: ../../any.pm_.c:257 ../../any.pm_.c:774 ../../diskdrake/dav.pm_.c:60
+#: ../../any.pm_.c:257 ../../any.pm_.c:776 ../../diskdrake/dav.pm_.c:64
#: ../../diskdrake/hd_gtk.pm_.c:153 ../../diskdrake/removable.pm_.c:27
#: ../../diskdrake/smbnfs_gtk.pm_.c:88 ../../interactive/http.pm_.c:153
-#: ../../standalone/drakbackup_.c:2696
+#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2772
msgid "Done"
msgstr "Izdarîts"
@@ -611,7 +614,7 @@ msgstr "Mainît"
msgid "Which type of entry do you want to add?"
msgstr "Kâda veida ierakstu gribat pievienot"
-#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1630
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1705
msgid "Linux"
msgstr "Linux"
@@ -706,13 +709,13 @@ msgstr "Vai ir vçl kâds?"
msgid "Do you have any %s interfaces?"
msgstr "Vai datorâ ir kâds %s interfeiss?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:821 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:283
+#: ../../any.pm_.c:660 ../../any.pm_.c:823 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:286
msgid "No"
msgstr "Nç"
-#: ../../any.pm_.c:660 ../../any.pm_.c:820 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:283
+#: ../../any.pm_.c:660 ../../any.pm_.c:822 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:286
msgid "Yes"
msgstr "Jâ"
@@ -810,38 +813,46 @@ msgstr ""
msgid "access to administrative files"
msgstr ""
-#: ../../any.pm_.c:758
+#: ../../any.pm_.c:754
+msgid "access to network tools"
+msgstr ""
+
+#: ../../any.pm_.c:755
+msgid "access to compilation tools"
+msgstr ""
+
+#: ../../any.pm_.c:760
#, c-format
msgid "(already added %s)"
msgstr "(jau pievienots %s)"
-#: ../../any.pm_.c:763
+#: ../../any.pm_.c:765
msgid "This password is too simple"
msgstr "Đî parole ir pârâk vienkârđa"
-#: ../../any.pm_.c:764
+#: ../../any.pm_.c:766
msgid "Please give a user name"
msgstr "Lûdzu ievadiet lietotâja vârdu"
-#: ../../any.pm_.c:765
+#: ../../any.pm_.c:767
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr "Lietotâja vârdâ var bût tikai mazie angïu burti, cipari, `-' un `_'"
-#: ../../any.pm_.c:766
+#: ../../any.pm_.c:768
#, fuzzy
msgid "The user name is too long"
msgstr "Đâds lietotâja vârds jau ir pievienots"
-#: ../../any.pm_.c:767
+#: ../../any.pm_.c:769
msgid "This user name is already added"
msgstr "Đâds lietotâja vârds jau ir pievienots"
-#: ../../any.pm_.c:771
+#: ../../any.pm_.c:773
msgid "Add user"
msgstr "Pievienot lietotâju"
-#: ../../any.pm_.c:772
+#: ../../any.pm_.c:774
#, c-format
msgid ""
"Enter a user\n"
@@ -850,32 +861,32 @@ msgstr ""
"Ievadiet lietotâju\n"
"%s"
-#: ../../any.pm_.c:773
+#: ../../any.pm_.c:775
msgid "Accept user"
msgstr "Apstiprinât lietotâju"
-#: ../../any.pm_.c:784
+#: ../../any.pm_.c:786
msgid "Real name"
msgstr "Vârds un uzvârds"
-#: ../../any.pm_.c:785 ../../printerdrake.pm_.c:742
-#: ../../printerdrake.pm_.c:857
+#: ../../any.pm_.c:787 ../../printerdrake.pm_.c:849
+#: ../../printerdrake.pm_.c:964
msgid "User name"
msgstr "Lietotâja vârds"
-#: ../../any.pm_.c:788
+#: ../../any.pm_.c:790
msgid "Shell"
msgstr "Èaula"
-#: ../../any.pm_.c:790
+#: ../../any.pm_.c:792
msgid "Icon"
msgstr "Ikona"
-#: ../../any.pm_.c:817
+#: ../../any.pm_.c:819
msgid "Autologin"
msgstr "Autoreìistrçđanâs"
-#: ../../any.pm_.c:818
+#: ../../any.pm_.c:820
#, fuzzy
msgid ""
"I can set up your computer to automatically log on one user.\n"
@@ -885,59 +896,59 @@ msgstr ""
"atvçrta viena noteikta lietotâja sesija. \n"
"Ja nevçlaties izmantot đo iespçju, nospiediet atcelđanas pogu."
-#: ../../any.pm_.c:822
+#: ../../any.pm_.c:824
msgid "Choose the default user:"
msgstr "Norâdiet noklusçto lietotâju:"
-#: ../../any.pm_.c:823
+#: ../../any.pm_.c:825
msgid "Choose the window manager to run:"
msgstr "Norâdiet izmantojamo logu menedțeri:"
-#: ../../any.pm_.c:838
+#: ../../any.pm_.c:840
#, fuzzy
msgid "Please choose a language to use."
msgstr "Lûdzu izvçlieties izmantojamo valodu."
-#: ../../any.pm_.c:840
+#: ../../any.pm_.c:842
msgid ""
"Mandrake Linux can support multiple languages. Select\n"
"the languages you would like to install. They will be available\n"
"when your installation is complete and you restart your system."
msgstr "Jûs varat izvçlçties citas valodas, kas bûs pieejamas pçc instalçđanas"
-#: ../../any.pm_.c:854 ../../install_steps_interactive.pm_.c:708
+#: ../../any.pm_.c:856 ../../install_steps_interactive.pm_.c:692
#: ../../standalone/drakxtv_.c:73
msgid "All"
msgstr "Viss"
-#: ../../any.pm_.c:974
+#: ../../any.pm_.c:977
#, fuzzy
msgid "Allow all users"
msgstr "Lietotâju pievienođana"
-#: ../../any.pm_.c:974
+#: ../../any.pm_.c:977
#, fuzzy
msgid "No sharing"
msgstr "CUPS startçđana"
-#: ../../any.pm_.c:984 ../../standalone.pm_.c:57
+#: ../../any.pm_.c:987 ../../install_any.pm_.c:1183 ../../standalone.pm_.c:58
#, fuzzy, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr ""
"Đo pakotni ir nepiecieđams uzlabot\n"
"Vai tieđâm vçlaties atteikties no tâs?"
-#: ../../any.pm_.c:987
+#: ../../any.pm_.c:990
msgid ""
"You can export using NFS or Samba. Please select which you'd like to use."
msgstr ""
-#: ../../any.pm_.c:995 ../../standalone.pm_.c:61
+#: ../../any.pm_.c:998 ../../install_any.pm_.c:1188 ../../standalone.pm_.c:63
#, c-format
msgid "Mandatory package %s is missing"
msgstr ""
-#: ../../any.pm_.c:1001
+#: ../../any.pm_.c:1004
msgid ""
"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
@@ -946,42 +957,42 @@ msgid ""
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:1015
+#: ../../any.pm_.c:1018
msgid "Launch userdrake"
msgstr ""
-#: ../../any.pm_.c:1017
+#: ../../any.pm_.c:1020
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
msgstr ""
-#: ../../any.pm_.c:1068
+#: ../../any.pm_.c:1071
msgid "Welcome To Crackers"
msgstr "Sveiciens hakeriem"
-#: ../../any.pm_.c:1069
+#: ../../any.pm_.c:1072
msgid "Poor"
msgstr "Vâjđ"
-#: ../../any.pm_.c:1070 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1073 ../../mouse.pm_.c:31
msgid "Standard"
msgstr "Standarta"
-#: ../../any.pm_.c:1071
+#: ../../any.pm_.c:1074
msgid "High"
msgstr "Augsts"
-#: ../../any.pm_.c:1072
+#: ../../any.pm_.c:1075
#, fuzzy
msgid "Higher"
msgstr "Augsts"
-#: ../../any.pm_.c:1073
+#: ../../any.pm_.c:1076
msgid "Paranoid"
msgstr "Paranoisks"
-#: ../../any.pm_.c:1076
+#: ../../any.pm_.c:1079
msgid ""
"This level is to be used with care. It makes your system more easy to use,\n"
"but very sensitive: it must not be used for a machine connected to others\n"
@@ -991,7 +1002,7 @@ msgstr ""
"izmantojamu, taèu ïoti nedrođu: to nedrîkst izmantot datoram, kas ir\n"
"pieslçgts citiem datoriem vai Internetam. Netiek prasîtas paroles."
-#: ../../any.pm_.c:1079
+#: ../../any.pm_.c:1082
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -999,7 +1010,7 @@ msgstr ""
"Tagad tiek izmantota parole, taèu izmantot datoru tîklâ vçl aizvien\n"
"nav ieteicams."
-#: ../../any.pm_.c:1080
+#: ../../any.pm_.c:1083
#, fuzzy
msgid ""
"This is the standard security recommended for a computer that will be used "
@@ -1008,13 +1019,13 @@ msgstr ""
"Đis ir parasts drođîbas lîmenis, kas ir ieteicams datoram, kas tiks\n"
"izmantots kâ klients Interneta pieslçgumam. Tagad tiek pârbaudîta drođîba. "
-#: ../../any.pm_.c:1081
+#: ../../any.pm_.c:1084
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr ""
-#: ../../any.pm_.c:1082
+#: ../../any.pm_.c:1085
#, fuzzy
msgid ""
"With this security level, the use of this system as a server becomes "
@@ -1028,7 +1039,7 @@ msgstr ""
"Drođîba tagad ir pietiekođi augsta, lai izmantotu sistçmu kâ serveri, kas\n"
"apkalpo pieslçgumus no daudziem klientiem. "
-#: ../../any.pm_.c:1085
+#: ../../any.pm_.c:1088
#, fuzzy
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
@@ -1037,32 +1048,32 @@ msgstr ""
"Mçs izmantojam 4. lîmeòa iespçjas, taèu tagad sistçma ir pilnîbâ\n"
"aizslçgta. Drođîba tagad ir maksimâlajâ lîmenî."
-#: ../../any.pm_.c:1091
+#: ../../any.pm_.c:1094
#, fuzzy
msgid "DrakSec Basic Options"
msgstr "Opcijas"
-#: ../../any.pm_.c:1092
+#: ../../any.pm_.c:1095
#, fuzzy
msgid "Please choose the desired security level"
msgstr "Izvçlieties drođîbas lîmeni?"
-#: ../../any.pm_.c:1095
+#: ../../any.pm_.c:1098
#, fuzzy
msgid "Security level"
msgstr "Uzstâdu drođîbas lîmeni"
-#: ../../any.pm_.c:1097
+#: ../../any.pm_.c:1100
#, fuzzy
msgid "Use libsafe for servers"
msgstr "Norâdiet servera opcijas"
-#: ../../any.pm_.c:1098
+#: ../../any.pm_.c:1101
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
-#: ../../any.pm_.c:1099
+#: ../../any.pm_.c:1102
msgid "Security Administrator (login or email)"
msgstr ""
@@ -1104,7 +1115,7 @@ msgstr ""
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:935
+#: ../../bootloader.pm_.c:932
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Juus sveic GRUB, opereetaajsisteemu izveeles programma!"
@@ -1118,7 +1129,7 @@ msgstr "Juus sveic GRUB, opereetaajsisteemu izveeles programma!"
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:938
+#: ../../bootloader.pm_.c:935
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "Izmantojiet taustinus %c un %c, lai izveeleetos vajadziigo ierakstu."
@@ -1133,7 +1144,7 @@ msgstr "Izmantojiet taustinus %c un %c, lai izveeleetos vajadziigo ierakstu."
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:941
+#: ../../bootloader.pm_.c:938
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Nospiediet ievadu, lai saakneetu izveeleeto OS, 'e', lai redigeetu"
@@ -1147,7 +1158,7 @@ msgstr "Nospiediet ievadu, lai saakneetu izveeleeto OS, 'e', lai redigeetu"
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:941
msgid "commands before booting, or 'c' for a command-line."
msgstr "komandas pirms saakneesanas, vai 'c', lai izsauktu komandrindu."
@@ -1161,32 +1172,32 @@ msgstr "komandas pirms saakneesanas, vai 'c', lai izsauktu komandrindu."
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:947
+#: ../../bootloader.pm_.c:944
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "Izdaliitais ieraksts tiks saakneets peec %d sekundeem."
-#: ../../bootloader.pm_.c:951
+#: ../../bootloader.pm_.c:948
msgid "not enough room in /boot"
msgstr "nepietiek vietas partîcijâ /boot"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1051
+#: ../../bootloader.pm_.c:1048
msgid "Desktop"
msgstr "Darbavirsma"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1053
+#: ../../bootloader.pm_.c:1050
msgid "Start Menu"
msgstr "Starta izvçlne"
-#: ../../bootloader.pm_.c:1072
+#: ../../bootloader.pm_.c:1069
#, fuzzy, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "Kur jûs vçlaties instalçt sâknçtâju?"
-#: ../../bootlook.pm_.c:45
+#: ../../bootlook.pm_.c:45 ../../standalone/draksplash_.c:25
msgid "no help implemented yet.\n"
msgstr "palîdzîba pagaidâm nav realizçta.\n"
@@ -1194,8 +1205,8 @@ msgstr "palîdzîba pagaidâm nav realizçta.\n"
msgid "Boot Style Configuration"
msgstr "Sâknçđanas stila konfigurçđana"
-#: ../../bootlook.pm_.c:78 ../../harddrake/ui.pm_.c:59
-#: ../../harddrake/ui.pm_.c:60 ../../standalone/drakfloppy_.c:81
+#: ../../bootlook.pm_.c:78 ../../harddrake/ui.pm_.c:62
+#: ../../harddrake/ui.pm_.c:63 ../../standalone/drakfloppy_.c:81
#: ../../standalone/logdrake_.c:101
msgid "/_File"
msgstr "/_Fails"
@@ -1205,7 +1216,7 @@ msgstr "/_Fails"
msgid "/File/_Quit"
msgstr "/Fails/_Iziet"
-#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:60
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:63
#: ../../standalone/drakfloppy_.c:82 ../../standalone/logdrake_.c:107
msgid "<control>Q"
msgstr "<control>Q"
@@ -1247,94 +1258,101 @@ msgstr "Sistçmas instalçđana"
msgid "Display theme under console"
msgstr ""
-#: ../../bootlook.pm_.c:166
+#: ../../bootlook.pm_.c:145
+#, fuzzy
+msgid "Create new theme"
+msgstr "Izveidot jaunu partîciju"
+
+#: ../../bootlook.pm_.c:169
msgid "Can't create Bootsplash preview"
msgstr ""
-#: ../../bootlook.pm_.c:166 ../../bootlook.pm_.c:184 ../../bootlook.pm_.c:187
-#: ../../bootlook.pm_.c:190 ../../bootlook.pm_.c:220 ../../bootlook.pm_.c:222
-#: ../../bootlook.pm_.c:232 ../../bootlook.pm_.c:241 ../../bootlook.pm_.c:248
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:336
-#: ../../diskdrake/interactive.pm_.c:351 ../../diskdrake/interactive.pm_.c:464
-#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../bootlook.pm_.c:169 ../../bootlook.pm_.c:187 ../../bootlook.pm_.c:190
+#: ../../bootlook.pm_.c:193 ../../bootlook.pm_.c:223 ../../bootlook.pm_.c:225
+#: ../../bootlook.pm_.c:235 ../../bootlook.pm_.c:244 ../../bootlook.pm_.c:251
+#: ../../diskdrake/dav.pm_.c:73 ../../diskdrake/hd_gtk.pm_.c:116
+#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/interactive.pm_.c:355
+#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/interactive.pm_.c:474
+#: ../../diskdrake/smbnfs_gtk.pm_.c:45 ../../fsedit.pm_.c:239
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:365 ../../interactive/http.pm_.c:119
-#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:80
+#: ../../interactive/http.pm_.c:119 ../../interactive/http.pm_.c:120
+#: ../../standalone/draksplash_.c:32
msgid "Error"
msgstr "Kïûda"
-#: ../../bootlook.pm_.c:183
+#: ../../bootlook.pm_.c:186
#, c-format
msgid "Backup %s to %s.old"
msgstr ""
-#: ../../bootlook.pm_.c:184
+#: ../../bootlook.pm_.c:187
msgid "unable to backup lilo message"
msgstr ""
-#: ../../bootlook.pm_.c:186
+#: ../../bootlook.pm_.c:189
#, c-format
msgid "Copy %s to %s"
msgstr ""
-#: ../../bootlook.pm_.c:187
+#: ../../bootlook.pm_.c:190
msgid "can't change lilo message"
msgstr ""
-#: ../../bootlook.pm_.c:190
+#: ../../bootlook.pm_.c:193
msgid "Lilo message not found"
msgstr ""
-#: ../../bootlook.pm_.c:220
+#: ../../bootlook.pm_.c:223
msgid "Can't write /etc/sysconfig/bootsplash."
msgstr ""
-#: ../../bootlook.pm_.c:220
+#: ../../bootlook.pm_.c:223
#, fuzzy, c-format
msgid "Write %s"
msgstr "XFree %s"
-#: ../../bootlook.pm_.c:222
+#: ../../bootlook.pm_.c:225
msgid ""
"Can't write /etc/sysconfig/bootsplash\n"
"File not found."
msgstr ""
-#: ../../bootlook.pm_.c:233
+#: ../../bootlook.pm_.c:236
#, c-format
msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
msgstr ""
-#: ../../bootlook.pm_.c:236
+#: ../../bootlook.pm_.c:239
#, c-format
-msgid "Make initrd 'mkinird -f /boot/initrd-%s.img %s'."
+msgid "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
msgstr ""
-#: ../../bootlook.pm_.c:242
+#: ../../bootlook.pm_.c:245
msgid ""
"Can't relaunch LiLo!\n"
"Launch \"lilo\" as root in command line to complete LiLo theme installation."
msgstr ""
-#: ../../bootlook.pm_.c:246
+#: ../../bootlook.pm_.c:249
msgid "Relaunch 'lilo'"
msgstr ""
-#: ../../bootlook.pm_.c:248
+#: ../../bootlook.pm_.c:251 ../../standalone/draksplash_.c:161
+#: ../../standalone/draksplash_.c:330 ../../standalone/draksplash_.c:454
#, fuzzy
msgid "Notice"
msgstr "BezVideo"
-#: ../../bootlook.pm_.c:249
+#: ../../bootlook.pm_.c:252
msgid "LiLo and Bootsplash themes installation successfull"
msgstr ""
-#: ../../bootlook.pm_.c:249
+#: ../../bootlook.pm_.c:252
#, fuzzy
msgid "Theme installation failed!"
msgstr "Instalçđanas klases izvçle"
-#: ../../bootlook.pm_.c:258
+#: ../../bootlook.pm_.c:261
#, c-format
msgid ""
"You are currently using %s as your boot manager.\n"
@@ -1343,23 +1361,22 @@ msgstr ""
"Jûs pađlaik lietojat OS ielâdçtâju %s.\n"
"Spiediet Konfigurçt, lai palaistu uzstâdîđanas meistaru."
-#: ../../bootlook.pm_.c:260 ../../standalone/drakbackup_.c:2352
-#: ../../standalone/drakbackup_.c:2362 ../../standalone/drakbackup_.c:2372
-#: ../../standalone/drakbackup_.c:2380 ../../standalone/drakgw_.c:592
-#: ../../standalone/tinyfirewall_.c:58
+#: ../../bootlook.pm_.c:263 ../../standalone/drakbackup_.c:2427
+#: ../../standalone/drakbackup_.c:2437 ../../standalone/drakbackup_.c:2447
+#: ../../standalone/drakbackup_.c:2455 ../../standalone/drakgw_.c:530
msgid "Configure"
msgstr "Konfigurçt"
-#: ../../bootlook.pm_.c:267
+#: ../../bootlook.pm_.c:270
#, fuzzy
msgid "Splash selection"
msgstr "Saglabât pakotòu izvçli"
-#: ../../bootlook.pm_.c:270
+#: ../../bootlook.pm_.c:273
msgid "Themes"
msgstr ""
-#: ../../bootlook.pm_.c:272
+#: ../../bootlook.pm_.c:275
msgid ""
"\n"
"Select a theme for\n"
@@ -1368,44 +1385,44 @@ msgid ""
"them separatly"
msgstr ""
-#: ../../bootlook.pm_.c:275
+#: ../../bootlook.pm_.c:278
msgid "Lilo screen"
msgstr ""
-#: ../../bootlook.pm_.c:279
+#: ../../bootlook.pm_.c:283
msgid "Bootsplash"
msgstr ""
-#: ../../bootlook.pm_.c:314
+#: ../../bootlook.pm_.c:318
msgid "System mode"
msgstr "Sistçmas rețîms"
-#: ../../bootlook.pm_.c:316
+#: ../../bootlook.pm_.c:320
msgid "Launch the graphical environment when your system starts"
msgstr "Palaist X-Window sistçmu sâknçđanas laikâ"
-#: ../../bootlook.pm_.c:321
+#: ../../bootlook.pm_.c:325
msgid "No, I don't want autologin"
msgstr "Nç, negribu lietot autologin"
-#: ../../bootlook.pm_.c:323
+#: ../../bootlook.pm_.c:327
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "Jâ, gribu lietot autologin đim lietotâjam un darba virsmai"
-#: ../../bootlook.pm_.c:333 ../../network/netconnect.pm_.c:101
+#: ../../bootlook.pm_.c:337 ../../network/netconnect.pm_.c:101
#: ../../standalone/drakTermServ_.c:173 ../../standalone/drakTermServ_.c:300
-#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:3513
-#: ../../standalone/drakbackup_.c:4290 ../../standalone/drakconnect_.c:108
+#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4191
+#: ../../standalone/drakbackup_.c:4952 ../../standalone/drakconnect_.c:108
#: ../../standalone/drakconnect_.c:140 ../../standalone/drakconnect_.c:296
#: ../../standalone/drakconnect_.c:435 ../../standalone/drakconnect_.c:521
#: ../../standalone/drakconnect_.c:564 ../../standalone/drakconnect_.c:667
#: ../../standalone/drakfloppy_.c:376 ../../standalone/drakfont_.c:612
#: ../../standalone/drakfont_.c:799 ../../standalone/drakfont_.c:876
-#: ../../standalone/drakfont_.c:963 ../../standalone/logdrake_.c:521
+#: ../../standalone/drakfont_.c:963 ../../standalone/logdrake_.c:519
msgid "OK"
msgstr "Ok"
-#: ../../bootlook.pm_.c:403
+#: ../../bootlook.pm_.c:407
#, c-format
msgid "can not open /etc/inittab for reading: %s"
msgstr "lasîđanai nevar atvçrt /etc/inittab: %s"
@@ -1511,50 +1528,54 @@ msgstr "seriâla"
msgid "United States"
msgstr ""
-#: ../../detect_devices.pm_.c:599 ../../detect_devices.pm_.c:641
-#: ../../detect_devices.pm_.c:803
-#, fuzzy
-msgid "Unknown Model"
-msgstr "nezinâms"
-
#: ../../diskdrake/dav.pm_.c:23
#, fuzzy
msgid "New"
msgstr "jauns"
-#: ../../diskdrake/dav.pm_.c:57
+#: ../../diskdrake/dav.pm_.c:59 ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/smbnfs_gtk.pm_.c:81
+msgid "Unmount"
+msgstr "Nomontçt"
+
+#: ../../diskdrake/dav.pm_.c:60 ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/smbnfs_gtk.pm_.c:82
+msgid "Mount"
+msgstr "Montçta"
+
+#: ../../diskdrake/dav.pm_.c:61
#, fuzzy
msgid "Server"
msgstr "serveris"
-#: ../../diskdrake/dav.pm_.c:58 ../../diskdrake/interactive.pm_.c:375
-#: ../../diskdrake/interactive.pm_.c:558 ../../diskdrake/interactive.pm_.c:585
+#: ../../diskdrake/dav.pm_.c:62 ../../diskdrake/interactive.pm_.c:379
+#: ../../diskdrake/interactive.pm_.c:568 ../../diskdrake/interactive.pm_.c:595
#: ../../diskdrake/removable.pm_.c:24 ../../diskdrake/removable_gtk.pm_.c:15
#: ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr "Montçđanas punkts"
-#: ../../diskdrake/dav.pm_.c:68
+#: ../../diskdrake/dav.pm_.c:81
#, fuzzy
msgid "Please enter the WebDAV server URL"
msgstr "Lûdzu notestçjiet peli"
-#: ../../diskdrake/dav.pm_.c:71
+#: ../../diskdrake/dav.pm_.c:84
msgid "The URL must begin with http:// or https://"
msgstr ""
-#: ../../diskdrake/dav.pm_.c:92
+#: ../../diskdrake/dav.pm_.c:105
#, fuzzy
msgid "Server: "
msgstr "serveris"
-#: ../../diskdrake/dav.pm_.c:93 ../../diskdrake/interactive.pm_.c:435
-#: ../../diskdrake/interactive.pm_.c:1079
-#: ../../diskdrake/interactive.pm_.c:1153
+#: ../../diskdrake/dav.pm_.c:106 ../../diskdrake/interactive.pm_.c:440
+#: ../../diskdrake/interactive.pm_.c:1089
+#: ../../diskdrake/interactive.pm_.c:1164
msgid "Mount point: "
msgstr "Montçđanas punkts: "
-#: ../../diskdrake/dav.pm_.c:94 ../../diskdrake/interactive.pm_.c:1159
+#: ../../diskdrake/dav.pm_.c:107 ../../diskdrake/interactive.pm_.c:1170
#, c-format
msgid "Options: %s"
msgstr "Opcijas: %s"
@@ -1563,8 +1584,9 @@ msgstr "Opcijas: %s"
msgid "Please make a backup of your data first"
msgstr "Vispirms izveidojiet datu rezerves kopiju"
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:924
-#: ../../diskdrake/interactive.pm_.c:933 ../../diskdrake/interactive.pm_.c:999
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:934
+#: ../../diskdrake/interactive.pm_.c:943
+#: ../../diskdrake/interactive.pm_.c:1009
msgid "Read carefully!"
msgstr "Lasiet uzmanîgi!"
@@ -1602,10 +1624,15 @@ msgid "Please click on a partition"
msgstr "Lûdzu uzklikđíiniet uz partîcijas"
#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
-#: ../../install_steps_gtk.pm_.c:471
+#: ../../install_steps_gtk.pm_.c:465
msgid "Details"
msgstr "Detaïas"
+#: ../../diskdrake/hd_gtk.pm_.c:252
+#, fuzzy
+msgid "No hard drives found"
+msgstr "Lokâls printeris"
+
#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Ext2"
msgstr "Ext2"
@@ -1631,13 +1658,13 @@ msgstr "SunOS"
msgid "Swap"
msgstr "Swap"
-#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1105
msgid "Empty"
msgstr "Tukđs"
-#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:331
-#: ../../install_steps_gtk.pm_.c:389 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1679
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:325
+#: ../../install_steps_gtk.pm_.c:383 ../../mouse.pm_.c:165
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1754
msgid "Other"
msgstr "Cits"
@@ -1645,12 +1672,12 @@ msgstr "Cits"
msgid "Filesystem types:"
msgstr "Failu sistçmu tipi:"
-#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:397
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:402
msgid "Create"
msgstr "Izveidot"
-#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:376
-#: ../../diskdrake/interactive.pm_.c:521 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:380
+#: ../../diskdrake/interactive.pm_.c:531 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "Tips"
@@ -1660,7 +1687,7 @@ msgstr "Tips"
msgid "Use ``%s'' instead"
msgstr "Tâ vietâ izmantojiet ``%s''"
-#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:389
msgid "Delete"
msgstr "Izdzçst"
@@ -1668,7 +1695,7 @@ msgstr "Izdzçst"
msgid "Use ``Unmount'' first"
msgstr "Vispirms izmantojiet ``Nomontçt''"
-#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:513
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:518
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
@@ -1676,73 +1703,73 @@ msgstr ""
"Pçc partîcijas %s tipa nomaiòas visi đajâ partîcijâ esođie dati tiks "
"pazaudçti"
-#: ../../diskdrake/interactive.pm_.c:173
+#: ../../diskdrake/interactive.pm_.c:174
msgid "Choose a partition"
msgstr "Izvçlieties partîciju"
-#: ../../diskdrake/interactive.pm_.c:173
+#: ../../diskdrake/interactive.pm_.c:174
msgid "Choose another partition"
msgstr "Izvçlieties citu partîciju"
-#: ../../diskdrake/interactive.pm_.c:198
+#: ../../diskdrake/interactive.pm_.c:199
msgid "Exit"
msgstr "Iziet"
-#: ../../diskdrake/interactive.pm_.c:220
+#: ../../diskdrake/interactive.pm_.c:221
msgid "Toggle to expert mode"
msgstr "Pârslçgt eksperta rețîmâ"
-#: ../../diskdrake/interactive.pm_.c:220
+#: ../../diskdrake/interactive.pm_.c:221
msgid "Toggle to normal mode"
msgstr "Pârslçgt normâlajâ rețîmâ"
-#: ../../diskdrake/interactive.pm_.c:220
+#: ../../diskdrake/interactive.pm_.c:221
msgid "Undo"
msgstr "Atsaukt"
-#: ../../diskdrake/interactive.pm_.c:239
+#: ../../diskdrake/interactive.pm_.c:240
msgid "Continue anyway?"
msgstr "Tad turpinât?"
-#: ../../diskdrake/interactive.pm_.c:244
+#: ../../diskdrake/interactive.pm_.c:245
msgid "Quit without saving"
msgstr "Iziet nesaglabâjot"
-#: ../../diskdrake/interactive.pm_.c:244
+#: ../../diskdrake/interactive.pm_.c:245
msgid "Quit without writing the partition table?"
msgstr "Iziet neierakstot partîciju tabulau?"
-#: ../../diskdrake/interactive.pm_.c:249
+#: ../../diskdrake/interactive.pm_.c:250
#, fuzzy
msgid "Do you want to save /etc/fstab modifications"
msgstr "Vai vçlaties izmçìinât đo konfigurâciju?"
-#: ../../diskdrake/interactive.pm_.c:261
+#: ../../diskdrake/interactive.pm_.c:263
msgid "Auto allocate"
msgstr "Izvietot automâtiski"
-#: ../../diskdrake/interactive.pm_.c:261
+#: ../../diskdrake/interactive.pm_.c:263
msgid "Clear all"
msgstr "Visu dzçst"
-#: ../../diskdrake/interactive.pm_.c:261
+#: ../../diskdrake/interactive.pm_.c:263
#: ../../install_steps_interactive.pm_.c:214
msgid "More"
msgstr "Vairâk"
-#: ../../diskdrake/interactive.pm_.c:264
+#: ../../diskdrake/interactive.pm_.c:267
msgid "Hard drive information"
msgstr "Cietâ diska informâcija"
-#: ../../diskdrake/interactive.pm_.c:294
+#: ../../diskdrake/interactive.pm_.c:298
msgid "All primary partitions are used"
msgstr "Visas primârâs partîcijas izmantotas"
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:299
msgid "I can't add any more partition"
msgstr "Vairâk partîciju nevar pievienot"
-#: ../../diskdrake/interactive.pm_.c:296
+#: ../../diskdrake/interactive.pm_.c:300
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -1750,35 +1777,35 @@ msgstr ""
"Ja gribat vairâk partîcijas, izdzçsiet kâdu partîciju, lai varçtu izveidot "
"paplađinâto partîciju"
-#: ../../diskdrake/interactive.pm_.c:306
+#: ../../diskdrake/interactive.pm_.c:310
#, fuzzy
msgid "Save partition table"
msgstr "Ierakstît partîciju tabulu"
-#: ../../diskdrake/interactive.pm_.c:307
+#: ../../diskdrake/interactive.pm_.c:311
#, fuzzy
msgid "Restore partition table"
msgstr "Salabot partîciju tabulu"
-#: ../../diskdrake/interactive.pm_.c:308
+#: ../../diskdrake/interactive.pm_.c:312
msgid "Rescue partition table"
msgstr "Salabot partîciju tabulu"
-#: ../../diskdrake/interactive.pm_.c:310
+#: ../../diskdrake/interactive.pm_.c:314
#, fuzzy
msgid "Reload partition table"
msgstr "Salabot partîciju tabulu"
-#: ../../diskdrake/interactive.pm_.c:315
+#: ../../diskdrake/interactive.pm_.c:319
#, fuzzy
msgid "Removable media automounting"
msgstr "Izòemams datu nesçjs"
-#: ../../diskdrake/interactive.pm_.c:324 ../../diskdrake/interactive.pm_.c:344
+#: ../../diskdrake/interactive.pm_.c:328 ../../diskdrake/interactive.pm_.c:348
msgid "Select file"
msgstr "Izvçlieties failu"
-#: ../../diskdrake/interactive.pm_.c:331
+#: ../../diskdrake/interactive.pm_.c:335
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1786,11 +1813,11 @@ msgstr ""
"Partîciju tabulas rezerves kopijai ir atđíirîgs izmçrs\n"
"Tomçr turpinât, ja?"
-#: ../../diskdrake/interactive.pm_.c:345
+#: ../../diskdrake/interactive.pm_.c:349
msgid "Warning"
msgstr "Uzmanîbu"
-#: ../../diskdrake/interactive.pm_.c:346
+#: ../../diskdrake/interactive.pm_.c:350
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1798,113 +1825,105 @@ msgstr ""
"Ielieciet disketi\n"
"Visi uz disketes esođie dati tiks dzçsti"
-#: ../../diskdrake/interactive.pm_.c:357
+#: ../../diskdrake/interactive.pm_.c:361
msgid "Trying to rescue partition table"
msgstr "Mçìinu saglâbt partîciju tabulu"
-#: ../../diskdrake/interactive.pm_.c:363
+#: ../../diskdrake/interactive.pm_.c:367
msgid "Detailed information"
msgstr "Detalizçta informâcija"
-#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:652
+#: ../../diskdrake/interactive.pm_.c:382 ../../diskdrake/interactive.pm_.c:662
msgid "Resize"
msgstr "Mainît izmçru"
-#: ../../diskdrake/interactive.pm_.c:379 ../../diskdrake/interactive.pm_.c:705
+#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/interactive.pm_.c:715
msgid "Move"
msgstr "Pârvietot"
-#: ../../diskdrake/interactive.pm_.c:380
+#: ../../diskdrake/interactive.pm_.c:384
msgid "Format"
msgstr "Formatçt"
-#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/smbnfs_gtk.pm_.c:82
-msgid "Mount"
-msgstr "Montçta"
-
-#: ../../diskdrake/interactive.pm_.c:382
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Add to RAID"
msgstr "Pievienot pie RAID"
-#: ../../diskdrake/interactive.pm_.c:383
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Add to LVM"
msgstr "Pievienot LVM"
-#: ../../diskdrake/interactive.pm_.c:384 ../../diskdrake/smbnfs_gtk.pm_.c:81
-msgid "Unmount"
-msgstr "Nomontçt"
-
-#: ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/interactive.pm_.c:390
msgid "Remove from RAID"
msgstr "Izslçgt no RAID"
-#: ../../diskdrake/interactive.pm_.c:387
+#: ../../diskdrake/interactive.pm_.c:391
msgid "Remove from LVM"
msgstr "Izòemt no LVM"
-#: ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/interactive.pm_.c:392
msgid "Modify RAID"
msgstr "Mainît RAID"
-#: ../../diskdrake/interactive.pm_.c:389
+#: ../../diskdrake/interactive.pm_.c:393
msgid "Use for loopback"
msgstr "Izmantot priekđ loopback"
-#: ../../diskdrake/interactive.pm_.c:428
+#: ../../diskdrake/interactive.pm_.c:433
msgid "Create a new partition"
msgstr "Izveidot jaunu partîciju"
-#: ../../diskdrake/interactive.pm_.c:431
+#: ../../diskdrake/interactive.pm_.c:436
msgid "Start sector: "
msgstr "Sâkuma sektors: "
-#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:805
+#: ../../diskdrake/interactive.pm_.c:438 ../../diskdrake/interactive.pm_.c:815
msgid "Size in MB: "
msgstr "Izmçrs MB: "
-#: ../../diskdrake/interactive.pm_.c:434 ../../diskdrake/interactive.pm_.c:806
+#: ../../diskdrake/interactive.pm_.c:439 ../../diskdrake/interactive.pm_.c:816
msgid "Filesystem type: "
msgstr "Failu sistçmas tips: "
-#: ../../diskdrake/interactive.pm_.c:439
+#: ../../diskdrake/interactive.pm_.c:444
msgid "Preference: "
msgstr "Priekđroka: "
-#: ../../diskdrake/interactive.pm_.c:464
+#: ../../diskdrake/interactive.pm_.c:469
msgid ""
"You can't create a new partition\n"
"(since you reached the maximal number of primary partitions).\n"
"First remove a primary partition and create an extended partition."
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:494
+#: ../../diskdrake/interactive.pm_.c:499
#, fuzzy
msgid "Remove the loopback file?"
msgstr "Formatçju loopback failu %s"
-#: ../../diskdrake/interactive.pm_.c:519
+#: ../../diskdrake/interactive.pm_.c:529
msgid "Change partition type"
msgstr "Nomainît partîcijas tipu"
-#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:530 ../../diskdrake/removable.pm_.c:48
msgid "Which filesystem do you want?"
msgstr "Kuru failu sistçmu vçlaties?"
-#: ../../diskdrake/interactive.pm_.c:526
+#: ../../diskdrake/interactive.pm_.c:536
msgid "Switching from ext2 to ext3"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:556
+#: ../../diskdrake/interactive.pm_.c:566
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "Kur jûs vçlaties montçt loopback failu %s?"
-#: ../../diskdrake/interactive.pm_.c:557
+#: ../../diskdrake/interactive.pm_.c:567
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Kur jûs vçlaties montçt %s ierîci?"
-#: ../../diskdrake/interactive.pm_.c:563
+#: ../../diskdrake/interactive.pm_.c:573
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1913,140 +1932,140 @@ msgstr ""
"loopback.\n"
"Vispirms noòemiet loopback"
-#: ../../diskdrake/interactive.pm_.c:584
+#: ../../diskdrake/interactive.pm_.c:594
#, fuzzy, c-format
msgid "Where do you want to mount %s?"
msgstr "Kur jûs vçlaties montçt %s ierîci?"
-#: ../../diskdrake/interactive.pm_.c:608
+#: ../../diskdrake/interactive.pm_.c:618
msgid "Computing FAT filesystem bounds"
msgstr "Izskaitïoju FAT failsistçmas robețas"
-#: ../../diskdrake/interactive.pm_.c:608 ../../diskdrake/interactive.pm_.c:667
-#: ../../install_interactive.pm_.c:131
+#: ../../diskdrake/interactive.pm_.c:618 ../../diskdrake/interactive.pm_.c:677
+#: ../../install_interactive.pm_.c:133
msgid "Resizing"
msgstr "Mainu izmçru"
-#: ../../diskdrake/interactive.pm_.c:640
+#: ../../diskdrake/interactive.pm_.c:650
msgid "This partition is not resizeable"
msgstr "Đîs partîcijas izmçru nevar izmainît"
-#: ../../diskdrake/interactive.pm_.c:645
+#: ../../diskdrake/interactive.pm_.c:655
msgid "All data on this partition should be backed-up"
msgstr "Visiem đîs partîcijas datiem jâizveido rezerves kopijas"
-#: ../../diskdrake/interactive.pm_.c:647
+#: ../../diskdrake/interactive.pm_.c:657
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr ""
"Pçc partîcijas %s izmçra maiòas visi đajâ partîcijâ esođie dati tiks "
"pazaudçti"
-#: ../../diskdrake/interactive.pm_.c:652
+#: ../../diskdrake/interactive.pm_.c:662
msgid "Choose the new size"
msgstr "Norâdiet jauno izmçru"
-#: ../../diskdrake/interactive.pm_.c:653
+#: ../../diskdrake/interactive.pm_.c:663
msgid "New size in MB: "
msgstr "Jauns izmçrs MB: "
-#: ../../diskdrake/interactive.pm_.c:706
+#: ../../diskdrake/interactive.pm_.c:716
msgid "Which disk do you want to move it to?"
msgstr "Uz kuru disku vçlaties to pârvietot?"
-#: ../../diskdrake/interactive.pm_.c:707
+#: ../../diskdrake/interactive.pm_.c:717
msgid "Sector"
msgstr "Sektors"
-#: ../../diskdrake/interactive.pm_.c:708
+#: ../../diskdrake/interactive.pm_.c:718
msgid "Which sector do you want to move it to?"
msgstr "Uz kuru sektoru vçlaties to pârvietot?"
-#: ../../diskdrake/interactive.pm_.c:711
+#: ../../diskdrake/interactive.pm_.c:721
msgid "Moving"
msgstr "Pârvietoju"
-#: ../../diskdrake/interactive.pm_.c:711
+#: ../../diskdrake/interactive.pm_.c:721
msgid "Moving partition..."
msgstr "Pârvietoju partîciju..."
-#: ../../diskdrake/interactive.pm_.c:728
+#: ../../diskdrake/interactive.pm_.c:738
msgid "Choose an existing RAID to add to"
msgstr "Norâdiet eksistçjođu RAID, kam pievienot"
-#: ../../diskdrake/interactive.pm_.c:729 ../../diskdrake/interactive.pm_.c:746
+#: ../../diskdrake/interactive.pm_.c:739 ../../diskdrake/interactive.pm_.c:756
msgid "new"
msgstr "jauns"
-#: ../../diskdrake/interactive.pm_.c:744
+#: ../../diskdrake/interactive.pm_.c:754
msgid "Choose an existing LVM to add to"
msgstr "Norâdiet jau esođu LVM kam pievienot"
-#: ../../diskdrake/interactive.pm_.c:749
+#: ../../diskdrake/interactive.pm_.c:759
msgid "LVM name?"
msgstr "LVM vârds?"
-#: ../../diskdrake/interactive.pm_.c:790
+#: ../../diskdrake/interactive.pm_.c:800
msgid "This partition can't be used for loopback"
msgstr "Đo Partîciju nevar izmantot priekđ loopback"
-#: ../../diskdrake/interactive.pm_.c:803
+#: ../../diskdrake/interactive.pm_.c:813
msgid "Loopback"
msgstr "Loopback"
-#: ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:814
msgid "Loopback file name: "
msgstr "Loopback faila vârds: "
-#: ../../diskdrake/interactive.pm_.c:809
+#: ../../diskdrake/interactive.pm_.c:819
#, fuzzy
msgid "Give a file name"
msgstr "Vârds un uzvârds"
-#: ../../diskdrake/interactive.pm_.c:812
+#: ../../diskdrake/interactive.pm_.c:822
msgid "File already used by another loopback, choose another one"
msgstr "Fails jau tiek izmantots citam loopback, norâdiet citu failu"
-#: ../../diskdrake/interactive.pm_.c:813
+#: ../../diskdrake/interactive.pm_.c:823
msgid "File already exists. Use it?"
msgstr "Fails jau eksistç. Vai to izmantot?"
-#: ../../diskdrake/interactive.pm_.c:836
+#: ../../diskdrake/interactive.pm_.c:846
msgid "Mount options"
msgstr "Montçđanas iespçjas:"
-#: ../../diskdrake/interactive.pm_.c:843
+#: ../../diskdrake/interactive.pm_.c:853
msgid "Various"
msgstr "Viss kas"
-#: ../../diskdrake/interactive.pm_.c:907 ../../standalone/drakfloppy_.c:103
+#: ../../diskdrake/interactive.pm_.c:917 ../../standalone/drakfloppy_.c:103
msgid "device"
msgstr "ierîce"
-#: ../../diskdrake/interactive.pm_.c:908
+#: ../../diskdrake/interactive.pm_.c:918
msgid "level"
msgstr "lîmenis"
-#: ../../diskdrake/interactive.pm_.c:909
+#: ../../diskdrake/interactive.pm_.c:919
msgid "chunk size"
msgstr "gabala izmçrs"
-#: ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:934
msgid "Be careful: this operation is dangerous."
msgstr "Esiet uzmanîgi: đî operâcija ir bîstama."
-#: ../../diskdrake/interactive.pm_.c:939
+#: ../../diskdrake/interactive.pm_.c:949
msgid "What type of partitioning?"
msgstr "Kâds ir sadalîjuma tips?"
-#: ../../diskdrake/interactive.pm_.c:955
+#: ../../diskdrake/interactive.pm_.c:965
#, fuzzy, c-format
msgid "The package %s is needed. Install it?"
msgstr ""
"Đo pakotni ir nepiecieđams uzlabot\n"
"Vai tieđâm vçlaties atteikties no tâs?"
-#: ../../diskdrake/interactive.pm_.c:969
+#: ../../diskdrake/interactive.pm_.c:979
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -2057,7 +2076,7 @@ msgstr ""
"Vai nu jûs izmantojat LILO, un tas nestrâdâs, vai arî jûs neizmantojat LILO, "
"un /boot jums nav vajadzîgs"
-#: ../../diskdrake/interactive.pm_.c:973
+#: ../../diskdrake/interactive.pm_.c:983
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -2068,7 +2087,7 @@ msgstr ""
"đî cietâ diska 1024. cilindra, un jums nav /boot partîcijas.\n"
"Ja jûs plânojat izmantot LILO, neaizmirstiet pievienot /boot partîciju"
-#: ../../diskdrake/interactive.pm_.c:979
+#: ../../diskdrake/interactive.pm_.c:989
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
@@ -2079,138 +2098,138 @@ msgstr ""
"Neviens sâknçtâjs nespçj to izmantot bez /boot partîcijas.\n"
"Tâpçc neaizmirstiet izveidot /boot partîciju."
-#: ../../diskdrake/interactive.pm_.c:999
+#: ../../diskdrake/interactive.pm_.c:1009
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "Iekârtas %s partîciju tabula tiks ierakstîta uz diska!"
-#: ../../diskdrake/interactive.pm_.c:1003
+#: ../../diskdrake/interactive.pm_.c:1013
msgid "You'll need to reboot before the modification can take place"
msgstr "Lai izmaiòas stâtos spçkâ, jums ir jâpârstartç dators"
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1024
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr ""
"Pçc partîcijas %s formatçđanas visi đajâ partîcijâ esođie dati tiks pazaudçti"
-#: ../../diskdrake/interactive.pm_.c:1016
+#: ../../diskdrake/interactive.pm_.c:1026
msgid "Formatting"
msgstr "Formatçju"
-#: ../../diskdrake/interactive.pm_.c:1017
+#: ../../diskdrake/interactive.pm_.c:1027
#, c-format
msgid "Formatting loopback file %s"
msgstr "Formatçju loopback failu %s"
-#: ../../diskdrake/interactive.pm_.c:1018
-#: ../../install_steps_interactive.pm_.c:476
+#: ../../diskdrake/interactive.pm_.c:1028
+#: ../../install_steps_interactive.pm_.c:459
#, c-format
msgid "Formatting partition %s"
msgstr "Formatçju partîciju %s"
-#: ../../diskdrake/interactive.pm_.c:1029
+#: ../../diskdrake/interactive.pm_.c:1039
#, fuzzy
msgid "Hide files"
msgstr "mkraid neizdevâs"
-#: ../../diskdrake/interactive.pm_.c:1029
+#: ../../diskdrake/interactive.pm_.c:1039
#, fuzzy
msgid "Move files to the new partition"
msgstr "Nepietiek brîvas vietas, lai izvietotu jaunas partîcijas"
-#: ../../diskdrake/interactive.pm_.c:1030
+#: ../../diskdrake/interactive.pm_.c:1040
#, c-format
msgid ""
"Directory %s already contains data\n"
"(%s)"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1041
+#: ../../diskdrake/interactive.pm_.c:1051
#, fuzzy
msgid "Moving files to the new partition"
msgstr "Nepietiek brîvas vietas, lai izvietotu jaunas partîcijas"
-#: ../../diskdrake/interactive.pm_.c:1045
+#: ../../diskdrake/interactive.pm_.c:1055
#, c-format
msgid "Copying %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1049
+#: ../../diskdrake/interactive.pm_.c:1059
#, fuzzy, c-format
msgid "Removing %s"
msgstr "Izđíirtspçja: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1059
+#: ../../diskdrake/interactive.pm_.c:1069
#, c-format
msgid "partition %s is now known as %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1080
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1090
+#: ../../diskdrake/interactive.pm_.c:1149
msgid "Device: "
msgstr "Ierîce: "
-#: ../../diskdrake/interactive.pm_.c:1081
+#: ../../diskdrake/interactive.pm_.c:1091
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "DOS iekârtas burts: %s (tikai minçjums)\n"
-#: ../../diskdrake/interactive.pm_.c:1085
-#: ../../diskdrake/interactive.pm_.c:1093
-#: ../../diskdrake/interactive.pm_.c:1157
+#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1103
+#: ../../diskdrake/interactive.pm_.c:1168
msgid "Type: "
msgstr "Tips: "
-#: ../../diskdrake/interactive.pm_.c:1089
+#: ../../diskdrake/interactive.pm_.c:1099
msgid "Name: "
msgstr "Vârds: "
-#: ../../diskdrake/interactive.pm_.c:1097
+#: ../../diskdrake/interactive.pm_.c:1107
#, c-format
msgid "Start: sector %s\n"
msgstr "Sâkums: sektors %s\n"
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1108
#, c-format
msgid "Size: %s"
msgstr "Izmçrs: %s"
-#: ../../diskdrake/interactive.pm_.c:1100
+#: ../../diskdrake/interactive.pm_.c:1110
#, c-format
msgid ", %s sectors"
msgstr ", %s sektori"
-#: ../../diskdrake/interactive.pm_.c:1102
+#: ../../diskdrake/interactive.pm_.c:1112
#, fuzzy, c-format
msgid "Cylinder %d to %d\n"
msgstr "No cilindra %d lîdz cilindram %d\n"
-#: ../../diskdrake/interactive.pm_.c:1103
+#: ../../diskdrake/interactive.pm_.c:1113
msgid "Formatted\n"
msgstr "Formatçta\n"
-#: ../../diskdrake/interactive.pm_.c:1104
+#: ../../diskdrake/interactive.pm_.c:1114
msgid "Not formatted\n"
msgstr "Neformatçta\n"
-#: ../../diskdrake/interactive.pm_.c:1105
+#: ../../diskdrake/interactive.pm_.c:1115
msgid "Mounted\n"
msgstr "Montçta\n"
-#: ../../diskdrake/interactive.pm_.c:1106
+#: ../../diskdrake/interactive.pm_.c:1116
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1108
+#: ../../diskdrake/interactive.pm_.c:1118
#, fuzzy, c-format
msgid ""
"Loopback file(s):\n"
" %s\n"
msgstr "Loopback fails(i): %s\n"
-#: ../../diskdrake/interactive.pm_.c:1109
+#: ../../diskdrake/interactive.pm_.c:1119
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -2218,27 +2237,27 @@ msgstr ""
"Noklusçti sâknçjamâ partîcija\n"
" (lai sâknçtu MS-DOS, nevis lilo)\n"
-#: ../../diskdrake/interactive.pm_.c:1111
+#: ../../diskdrake/interactive.pm_.c:1121
#, c-format
msgid "Level %s\n"
msgstr "Lîmenis %s\n"
-#: ../../diskdrake/interactive.pm_.c:1112
+#: ../../diskdrake/interactive.pm_.c:1122
#, c-format
msgid "Chunk size %s\n"
msgstr "Gabala izmçrs %s\n"
-#: ../../diskdrake/interactive.pm_.c:1113
+#: ../../diskdrake/interactive.pm_.c:1123
#, c-format
msgid "RAID-disks %s\n"
msgstr "RAID diski %s\n"
-#: ../../diskdrake/interactive.pm_.c:1115
+#: ../../diskdrake/interactive.pm_.c:1125
#, c-format
msgid "Loopback file name: %s"
msgstr "Loopback faila nosaukums: %s"
-#: ../../diskdrake/interactive.pm_.c:1118
+#: ../../diskdrake/interactive.pm_.c:1128
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -2246,7 +2265,7 @@ msgid ""
"probably leave it alone.\n"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1121
+#: ../../diskdrake/interactive.pm_.c:1131
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2254,59 +2273,63 @@ msgid ""
"dual-booting your system.\n"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1140
+#: ../../diskdrake/interactive.pm_.c:1150
+msgid "Read-only"
+msgstr ""
+
+#: ../../diskdrake/interactive.pm_.c:1151
#, c-format
msgid "Size: %s\n"
msgstr "Izmçrs: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1141
+#: ../../diskdrake/interactive.pm_.c:1152
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Ìeometrija: %s cilindri, %s galvas, %s sektori\n"
-#: ../../diskdrake/interactive.pm_.c:1142
+#: ../../diskdrake/interactive.pm_.c:1153
msgid "Info: "
msgstr "Info: "
-#: ../../diskdrake/interactive.pm_.c:1143
+#: ../../diskdrake/interactive.pm_.c:1154
#, c-format
msgid "LVM-disks %s\n"
msgstr "LVM-diski %s\n"
-#: ../../diskdrake/interactive.pm_.c:1144
+#: ../../diskdrake/interactive.pm_.c:1155
#, c-format
msgid "Partition table type: %s\n"
msgstr "partîciju tabulas tips: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1145
+#: ../../diskdrake/interactive.pm_.c:1156
#, fuzzy, c-format
msgid "on channel %d id %d\n"
msgstr "uz đinas %d id %d\n"
-#: ../../diskdrake/interactive.pm_.c:1175
+#: ../../diskdrake/interactive.pm_.c:1186
#, fuzzy
msgid "Filesystem encryption key"
msgstr "Failu sistçmas tips: "
-#: ../../diskdrake/interactive.pm_.c:1176
+#: ../../diskdrake/interactive.pm_.c:1187
msgid "Choose your filesystem encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1179
+#: ../../diskdrake/interactive.pm_.c:1190
#, fuzzy, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr "Đî parole ir pârâk vienkârđa (jâbût vismaz %d simbolus garai)"
-#: ../../diskdrake/interactive.pm_.c:1180
+#: ../../diskdrake/interactive.pm_.c:1191
#, fuzzy
msgid "The encryption keys do not match"
msgstr "Paroles nesakrît"
-#: ../../diskdrake/interactive.pm_.c:1183
+#: ../../diskdrake/interactive.pm_.c:1194
msgid "Encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1184
+#: ../../diskdrake/interactive.pm_.c:1195
msgid "Encryption key (again)"
msgstr ""
@@ -2345,7 +2368,7 @@ msgid ""
"Please enter your username, password and domain name to access this host."
msgstr ""
-#: ../../diskdrake/smbnfs_gtk.pm_.c:178
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3527
#, fuzzy
msgid "Username"
msgstr "Lietotâja vârds"
@@ -2360,23 +2383,23 @@ msgstr "NIS domçns"
msgid "Search servers"
msgstr "DNS serveris"
-#: ../../fs.pm_.c:552 ../../fs.pm_.c:562 ../../fs.pm_.c:566 ../../fs.pm_.c:570
-#: ../../fs.pm_.c:574 ../../fs.pm_.c:578
+#: ../../fs.pm_.c:544 ../../fs.pm_.c:554 ../../fs.pm_.c:558 ../../fs.pm_.c:562
+#: ../../fs.pm_.c:566 ../../fs.pm_.c:570
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s formatçđana %s neizdevâs"
-#: ../../fs.pm_.c:615
+#: ../../fs.pm_.c:607
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "Nezinu, kâ formatçt %s, izmantojot tipu %s"
-#: ../../fs.pm_.c:687 ../../fs.pm_.c:731
+#: ../../fs.pm_.c:681 ../../fs.pm_.c:724
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../fs.pm_.c:746 ../../partition_table.pm_.c:602
+#: ../../fs.pm_.c:739 ../../partition_table.pm_.c:598
#, c-format
msgid "error unmounting %s: %s"
msgstr "kïûda nomontçjot %s: %s"
@@ -2393,33 +2416,48 @@ msgstr ""
msgid "server"
msgstr "serveris"
-#: ../../fsedit.pm_.c:472
+#: ../../fsedit.pm_.c:240
+#, fuzzy, c-format
+msgid ""
+"I can't read the partition table of device %s, it's too corrupted for me :(\n"
+"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
+"The other solution is to not allow DrakX to modify the partition table.\n"
+"(the error is %s)\n"
+"\n"
+"Do you agree to loose all the partitions?\n"
+msgstr ""
+"Neizdevâs nolasît diska partîciju tabulu, jo tâ bija pârâk stipri bojâta :(\n"
+"Sistçma var mçìinât atslçgts sliktâs partîcijas (VISI DATI pazudîs!).\n"
+"Otrs risinâjums ir aizliegt DrakX izmainît partîciju tabulu.\n"
+"(kïûda ir %s)\n"
+
+#: ../../fsedit.pm_.c:501
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr "Nevarat izmantot JFS partîcijâm, kas mazâkas par 16MB"
-#: ../../fsedit.pm_.c:473
+#: ../../fsedit.pm_.c:502
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr "Nevarat izmantot ReiserFS pârtîcijâm, kas mazâkas par 32MB"
-#: ../../fsedit.pm_.c:492
+#: ../../fsedit.pm_.c:521
msgid "Mount points must begin with a leading /"
msgstr "Montçđanas punktiem jâsâkas ar /"
-#: ../../fsedit.pm_.c:493
+#: ../../fsedit.pm_.c:522
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Jau eksistç partîcija ar montçđanas punktu %s\n"
-#: ../../fsedit.pm_.c:497
+#: ../../fsedit.pm_.c:526
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr ""
-#: ../../fsedit.pm_.c:499
+#: ../../fsedit.pm_.c:528
msgid "This directory should remain within the root filesystem"
msgstr "Đim katalogam ir jâpaliek saknes failsistçmâ"
-#: ../../fsedit.pm_.c:501
+#: ../../fsedit.pm_.c:530
#, fuzzy
msgid ""
"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
@@ -2427,231 +2465,278 @@ msgid ""
msgstr ""
"Đim montçđanas punktam ir nepiecieđama reâla failu sistçma (ext2, reiserfs)\n"
-#: ../../fsedit.pm_.c:503
+#: ../../fsedit.pm_.c:532
#, fuzzy, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr ""
"Đim montçđanas punktam ir nepiecieđama reâla failu sistçma (ext2, reiserfs)\n"
-#: ../../fsedit.pm_.c:570
+#: ../../fsedit.pm_.c:599
#, fuzzy
msgid "Not enough free space for auto-allocating"
msgstr "Nepietiek brîvas vietas, lai izvietotu automâtiski"
-#: ../../fsedit.pm_.c:572
+#: ../../fsedit.pm_.c:601
msgid "Nothing to do"
msgstr ""
-#: ../../fsedit.pm_.c:665
+#: ../../fsedit.pm_.c:694
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Kïûda, atverot %s ierakstîđanai: %s"
-#: ../../fsedit.pm_.c:750
+#: ../../harddrake/sound.pm_.c:155
+msgid "No alternative driver"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:156
+#, c-format
+msgid "There's no known OSS/ALSA alternative driver for your sound card (%s)"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:158
+#, fuzzy
+msgid "Sound configuration"
+msgstr "LAN konfigurâcija"
+
+#: ../../harddrake/sound.pm_.c:159
+#, c-format
msgid ""
-"An error occurred - no valid devices were found on which to create new "
-"filesystems. Please check your hardware for the cause of this problem"
+"Here you can select an alternative driver (either OSS or ALSA) for your "
+"sound card (%s)"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:162
+#, fuzzy
+msgid "Driver:"
+msgstr "Draiveris"
+
+#: ../../harddrake/sound.pm_.c:173
+msgid "No known driver"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:174
+#, c-format
+msgid "There's no known driver for your sound card (%s)"
msgstr ""
-"Atklâta kïûda - nav atrasta neviena ierîce, kas derçtu jaunu failsistçmu "
-"veidođanai. Lûdzu pârbaudiet dzelțus, lai noskaidrotu problçmas iemeslu"
-#: ../../fsedit.pm_.c:773
-msgid "You don't have any partitions!"
-msgstr "Jums nav nevienas partîcijas!"
+#: ../../harddrake/sound.pm_.c:177
+#, fuzzy
+msgid "Unkown driver"
+msgstr "nezinâms"
+
+#: ../../harddrake/sound.pm_.c:178
+#, c-format
+msgid ""
+"The \"%s\" driver for your sound card is unlisted\n"
+"\n"
+"Please send the output of the \"lspcidrake -v\" command to\n"
+"<install at mandrakesoft dot com>\n"
+"with subject: unlisted sound driver \"%s\""
+msgstr ""
-#: ../../harddrake/ui.pm_.c:15
+#: ../../harddrake/ui.pm_.c:16
#, fuzzy
msgid "Model"
msgstr "Modulis"
-#: ../../harddrake/ui.pm_.c:15
+#: ../../harddrake/ui.pm_.c:16
#, fuzzy
msgid "hard disk model"
msgstr "Kartes mem (DMA)"
-#: ../../harddrake/ui.pm_.c:16
+#: ../../harddrake/ui.pm_.c:17
#, fuzzy
msgid "Channel"
msgstr "Atcelt"
-#: ../../harddrake/ui.pm_.c:16
+#: ../../harddrake/ui.pm_.c:17
msgid "EIDE/SCSI channel"
msgstr ""
-#: ../../harddrake/ui.pm_.c:18
+#: ../../harddrake/ui.pm_.c:19
msgid "Bus"
msgstr ""
-#: ../../harddrake/ui.pm_.c:19
+#: ../../harddrake/ui.pm_.c:20
msgid ""
"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
msgstr ""
-#: ../../harddrake/ui.pm_.c:20
+#: ../../harddrake/ui.pm_.c:21
msgid "Module"
msgstr "Modulis"
-#: ../../harddrake/ui.pm_.c:20
+#: ../../harddrake/ui.pm_.c:21
msgid "the module of the GNU/Linux kernel that handle that device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:21
+#: ../../harddrake/ui.pm_.c:22
msgid "Media class"
msgstr ""
-#: ../../harddrake/ui.pm_.c:21
+#: ../../harddrake/ui.pm_.c:22
msgid "class of hardware device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:22 ../../printerdrake.pm_.c:1404
+#: ../../harddrake/ui.pm_.c:23 ../../printerdrake.pm_.c:1517
msgid "Description"
msgstr "Apraksts"
-#: ../../harddrake/ui.pm_.c:22
+#: ../../harddrake/ui.pm_.c:23
msgid "this field describe the device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:24
+#: ../../harddrake/ui.pm_.c:25
#, fuzzy
msgid "Bus identification"
msgstr "Autentifikâcija"
-#: ../../harddrake/ui.pm_.c:25
+#: ../../harddrake/ui.pm_.c:26
msgid ""
-"- PCI and USB devices : this list the vendor, device, subvendor and "
-"subdevice PCI/USB ids"
+"- PCI and USB devices: this list the vendor, device, subvendor and subdevice "
+"PCI/USB ids"
msgstr ""
-#: ../../harddrake/ui.pm_.c:27
+#: ../../harddrake/ui.pm_.c:28
msgid "Location on the bus"
msgstr ""
-#: ../../harddrake/ui.pm_.c:28
+#: ../../harddrake/ui.pm_.c:29
msgid ""
"- pci devices: this gives the PCI slot, device and function of this card\n"
"- eide devices: the device is either a slave or a master device\n"
"- scsi devices: the scsi bus and the scsi device ids"
msgstr ""
-#: ../../harddrake/ui.pm_.c:31
+#: ../../harddrake/ui.pm_.c:32
#, fuzzy
msgid "Old device file"
msgstr "Izvçlieties failu"
-#: ../../harddrake/ui.pm_.c:32
+#: ../../harddrake/ui.pm_.c:33
msgid "old static device name used in dev package"
msgstr ""
-#: ../../harddrake/ui.pm_.c:33
+#: ../../harddrake/ui.pm_.c:34
#, fuzzy
msgid "New devfs device"
msgstr "Vârtejas ierîce"
-#: ../../harddrake/ui.pm_.c:34
+#: ../../harddrake/ui.pm_.c:35
msgid "new dinamic device name generated by incore kernel devfs"
msgstr ""
-#: ../../harddrake/ui.pm_.c:35
+#: ../../harddrake/ui.pm_.c:36
#, fuzzy
msgid "Number of buttons"
msgstr "2 pogas"
-#: ../../harddrake/ui.pm_.c:36
+#: ../../harddrake/ui.pm_.c:37
msgid "the vendor name of the device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:60
+#: ../../harddrake/ui.pm_.c:38
+#, fuzzy
+msgid "Alternative drivers"
+msgstr "Tiek drukâta(s) izmçìinâjuma lapa(s)..."
+
+#: ../../harddrake/ui.pm_.c:39
+msgid "the list of alternative drivers for this sound card"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:63
#, fuzzy
msgid "/_Quit"
msgstr "Beigt"
-#: ../../harddrake/ui.pm_.c:61 ../../harddrake/ui.pm_.c:62
-#: ../../harddrake/ui.pm_.c:68 ../../standalone/logdrake_.c:110
+#: ../../harddrake/ui.pm_.c:64 ../../harddrake/ui.pm_.c:65
+#: ../../harddrake/ui.pm_.c:71 ../../standalone/logdrake_.c:110
msgid "/_Help"
msgstr "_Palîdzîba"
-#: ../../harddrake/ui.pm_.c:62
+#: ../../harddrake/ui.pm_.c:65
#, fuzzy
msgid "/_Help..."
msgstr "_Palîdzîba"
-#: ../../harddrake/ui.pm_.c:63
+#: ../../harddrake/ui.pm_.c:66
msgid "Harddrake help"
msgstr ""
-#: ../../harddrake/ui.pm_.c:64
+#: ../../harddrake/ui.pm_.c:67
msgid ""
"Description of the fields:\n"
"\n"
msgstr ""
-#: ../../harddrake/ui.pm_.c:68
+#: ../../harddrake/ui.pm_.c:71
#, fuzzy
msgid "/_About..."
msgstr "/Palîdzîba/_Par..."
-#: ../../harddrake/ui.pm_.c:69
+#: ../../harddrake/ui.pm_.c:72
msgid "About Harddrake"
msgstr ""
-#: ../../harddrake/ui.pm_.c:70
+#: ../../harddrake/ui.pm_.c:73
msgid ""
"This is HardDrake, a Mandrake hardware configuration tool.\n"
"Version:"
msgstr ""
-#: ../../harddrake/ui.pm_.c:71
+#: ../../harddrake/ui.pm_.c:74
#, fuzzy
msgid "Author:"
msgstr "Aptaujât"
-#: ../../harddrake/ui.pm_.c:83
+#: ../../harddrake/ui.pm_.c:86
#, fuzzy
msgid "Harddrake2 version "
msgstr "Cietâ diska noteikđana"
-#: ../../harddrake/ui.pm_.c:91
+#: ../../harddrake/ui.pm_.c:103
#, fuzzy
msgid "Detected hardware"
msgstr "Apskatît dzelțu informâciju"
-#: ../../harddrake/ui.pm_.c:92
+#: ../../harddrake/ui.pm_.c:105
#, fuzzy
-msgid "Configure module"
-msgstr "Peles konfigurçđana"
+msgid "Information"
+msgstr "Parâdît informâciju"
-#: ../../harddrake/ui.pm_.c:92
+#: ../../harddrake/ui.pm_.c:108
#, fuzzy
-msgid "Informations"
-msgstr "Parâdît informâciju"
+msgid "Configure module"
+msgstr "Peles konfigurçđana"
-#: ../../harddrake/ui.pm_.c:92
+#: ../../harddrake/ui.pm_.c:109
msgid "Run config tool"
msgstr ""
-#: ../../harddrake/ui.pm_.c:96
+#: ../../harddrake/ui.pm_.c:113
#, fuzzy
msgid "Detection in progress"
msgstr "atklâts uz porta %s"
-#: ../../harddrake/ui.pm_.c:96 ../../interactive.pm_.c:388
+#: ../../harddrake/ui.pm_.c:113 ../../interactive.pm_.c:391
msgid "Please wait"
msgstr "Lûdzu uzgaidiet"
-#: ../../harddrake/ui.pm_.c:139
+#: ../../harddrake/ui.pm_.c:156
msgid "primary"
msgstr ""
-#: ../../harddrake/ui.pm_.c:139
+#: ../../harddrake/ui.pm_.c:156
#, fuzzy
msgid "secondary"
msgstr "%d sekundes"
-#: ../../harddrake/ui.pm_.c:176
+#: ../../harddrake/ui.pm_.c:197
msgid "You can configure each parameter of the module here."
msgstr ""
-#: ../../harddrake/ui.pm_.c:192
+#: ../../harddrake/ui.pm_.c:213
#, fuzzy, c-format
msgid "Running \"%s\" ..."
msgstr "Nolasu CUPS draiveru datubâzi..."
@@ -2684,16 +2769,16 @@ msgstr ""
#: ../../harddrake/v4l.pm_.c:213
#, fuzzy
-msgid "Card model :"
+msgid "Card model:"
msgstr "Kartes mem (DMA)"
#: ../../harddrake/v4l.pm_.c:214
#, fuzzy
-msgid "Tuner type :"
+msgid "Tuner type:"
msgstr "Mainît tipu"
#: ../../harddrake/v4l.pm_.c:215
-msgid "Number of capture buffers :"
+msgid "Number of capture buffers:"
msgstr ""
#: ../../harddrake/v4l.pm_.c:215
@@ -2702,11 +2787,11 @@ msgstr ""
#: ../../harddrake/v4l.pm_.c:217
#, fuzzy
-msgid "PLL setting :"
+msgid "PLL setting:"
msgstr "Formatçju"
#: ../../harddrake/v4l.pm_.c:218
-msgid "Radio support :"
+msgid "Radio support:"
msgstr ""
#: ../../harddrake/v4l.pm_.c:218
@@ -2718,22 +2803,22 @@ msgid ""
"GNU/Linux is a multiuser system, and this means that each user can have his\n"
"own preferences, his own files and so on. You can read the ``User Guide''\n"
"to learn more. But unlike \"root\", which is the administrator, the users\n"
-"you will add here will not be entitled to change anything except their own\n"
-"files and their own configuration. You will have to create at least one\n"
-"regular user for yourself. That account is where you should log in for\n"
-"routine use. Although it is very practical to log in as \"root\" everyday,\n"
-"it may also be very dangerous! The slightest mistake could mean that your\n"
-"system would not work any more. If you make a serious mistake as a regular\n"
-"user, you may only lose some information, but not the entire system.\n"
+"you add here will not be entitled to change anything except their own files\n"
+"and their own configuration. You will have to create at least one regular\n"
+"user for yourself. That account is where you should log in for routine use.\n"
+"Although it is very practical to log in as \"root\" everyday, it may also\n"
+"be very dangerous! The slightest mistake could mean that your system would\n"
+"not work any more. If you make a serious mistake as a regular user, you may\n"
+"only lose some information, but not the entire system.\n"
"\n"
"First, you have to enter your real name. This is not mandatory, of course -\n"
"as you can actually enter whatever you want. DrakX will then take the first\n"
"word you have entered in the box and will bring it over to the \"User\n"
"name\". This is the name this particular user will use to log onto the\n"
"system. You can change it. You then have to enter a password here. A\n"
-"non-privileged (regular) user's password is not as crucial as \"root\"' one\n"
-"from a security point of view, but that is no reason to neglect it: after\n"
-"all, your files are at risk.\n"
+"non-privileged (regular) user's password is not as crucial as the \"root\"'\n"
+"one from a security point of view, but that is no reason to neglect it:\n"
+"after all, your files are at risk.\n"
"\n"
"If you click on \"Accept user\", you can then add as many as you want. Add\n"
"a user for each one of your friends: your father or your sister, for\n"
@@ -2850,7 +2935,7 @@ msgid ""
"to have a graphical workstation!\n"
"\n"
"Moving the mouse cursor over a group name will display a short explanatory\n"
-"text about that group. If you deselect all groups when performing a regular\n"
+"text about that group. If you unselect all groups when performing a regular\n"
"installation (by opposition to an upgrade), a dialog will pop up proposing\n"
"different options for a minimal installation:\n"
"\n"
@@ -2876,10 +2961,10 @@ msgstr ""
#: ../../help.pm_.c:128
msgid ""
-"Finally, depending on whether or not you selected individual packages, you\n"
-"will be presented a tree containing all packages classified by groups and\n"
-"subgroups. While browsing the tree, you can select entire groups,\n"
-"subgroups, or individual packages.\n"
+"Finally, depending on whether or not you chose to be able to select\n"
+"individual packages, you will be presented a tree containing all packages\n"
+"classified by groups and subgroups. While browsing the tree, you can select\n"
+"entire groups, subgroups, or individual packages.\n"
"\n"
"Whenever you select a package on the tree, a description appears on the\n"
"right. When your selection is finished, click the \"Install\" button which\n"
@@ -2914,11 +2999,11 @@ msgstr ""
#: ../../help.pm_.c:164
msgid ""
-"You are now proposed to set up your Internet/network connection. If you\n"
-"wish to connect your computer to the Internet or to a local network, click\n"
-"\"OK\". The autodetection of network devices and modem will be launched. If\n"
-"this detection fails, uncheck the \"Use auto detection\" box next time. You\n"
-"may also choose not to configure the network, or do it later; in that case,\n"
+"You are now able to set up your Internet/network connection. If you wish to\n"
+"connect your computer to the Internet or to a local network, click \"OK\".\n"
+"The autodetection of network devices and modem will be launched. If this\n"
+"detection fails, uncheck the \"Use auto detection\" box next time. You may\n"
+"also choose not to configure the network, or do it later; in that case,\n"
"simply click the \"Cancel\" button.\n"
"\n"
"Available connections are: traditional modem, ISDN modem, ADSL connection,\n"
@@ -2972,7 +3057,7 @@ msgstr ""
msgid ""
"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
"local time according to the time zone you selected. It is however possible\n"
-"to deactivate this by deselecting \"Hardware clock set to GMT\" so that the\n"
+"to deactivate this by unselecting \"Hardware clock set to GMT\" so that the\n"
"hardware clock is the same as the system clock. This is useful when the\n"
"machine is hosting another operating system like Windows.\n"
"\n"
@@ -3003,24 +3088,12 @@ msgid ""
"If you can see the message during the test, and answer \"Yes\", then DrakX\n"
"will proceed to the next step. If you cannot see the message, it simply\n"
"means that the configuration was wrong and the test will automatically end\n"
-"after 10 seconds, restoring the screen."
-msgstr ""
-
-#: ../../help.pm_.c:237
-msgid ""
-"The first time you try the X configuration, you may not be very satisfied\n"
-"with its display (screen is too small, shifted left or right...). Hence,\n"
-"even if X starts up correctly, DrakX then asks you if the configuration\n"
-"suits you. It will also propose to change it by displaying a list of valid\n"
-"modes it could find, asking you to select one.\n"
-"\n"
-"As a last resort, if you still cannot get X to work, choose \"Change\n"
-"graphics card\", select \"Unlisted card\", and when prompted on which\n"
-"server, choose \"FBDev\". This is a failsafe option which works with any\n"
-"modern graphics card. Then choose \"Test again\" to be sure."
+"after 10 seconds, restoring the screen. Refer then to the Video\n"
+"configuration section of the user guide for more information on how to\n"
+"configure your display."
msgstr ""
-#: ../../help.pm_.c:249
+#: ../../help.pm_.c:239
msgid ""
"Finally, you will be asked whether you want to see the graphical interface\n"
"at boot. Note this question will be asked even if you chose not to test the\n"
@@ -3029,7 +3102,7 @@ msgid ""
"configured."
msgstr ""
-#: ../../help.pm_.c:256
+#: ../../help.pm_.c:246
msgid ""
"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
@@ -3049,13 +3122,13 @@ msgid ""
"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
"password, or any other reason.\n"
"\n"
-"When you click on this step, you will be asked to enter a disk inside the\n"
-"drive. The floppy disk you will insert must be empty or contain data which\n"
-"you do not need. You will not have to format it since DrakX will rewrite\n"
-"the whole disk."
+"If you say \"Yes\", you will be asked to enter a disk inside the drive. The\n"
+"floppy disk you will insert must be empty or contain data which you do not\n"
+"need. You will not have to format it since DrakX will rewrite the whole\n"
+"disk."
msgstr ""
-#: ../../help.pm_.c:280
+#: ../../help.pm_.c:270
#, fuzzy
msgid ""
"At this point, you need to choose where you want to install the Mandrake\n"
@@ -3089,7 +3162,9 @@ msgid ""
"\n"
" * \"Use existing partition\": the wizard has detected one or more existing\n"
"Linux partitions on your hard drive. If you want to use them, choose this\n"
-"option;\n"
+"option. You will then be asked to choose the mount points associated to\n"
+"each of the partitions. The legacy mount points are selected by default,\n"
+"and you should generally keep them.\n"
"\n"
" * \"Use the free space on the Windows; partition\": if Microsoft Windows\n"
"is installed on your hard drive and takes all the space available on it,\n"
@@ -3122,7 +3197,9 @@ msgid ""
" * \"Expert mode\": choose this option if you want to manually partition\n"
"your hard drive. Be careful - it is a powerful but dangerous choice. You\n"
"can very easily lose all your data. Hence, do not choose this unless you\n"
-"know what you are doing."
+"know what you are doing. To know how do use the DiskDrake utility used\n"
+"here, refer to the section ``Managing Your Partitions'' of the ````User\n"
+"Guide''''"
msgstr ""
"Pađlaik jums ir jâizvçlas, kur uz cietâ diska instalçt Mandrake Linux\n"
"operçtâjsistçmu. Ja disks ir tukđs vai cita operçtâjsistçma aizòem visu\n"
@@ -3187,7 +3264,7 @@ msgstr ""
"bîstams. Jûs varat pazaudçt\n"
" visus datus, tâpçc izvçlieties tikai tad, ja zinat, ko darât."
-#: ../../help.pm_.c:347
+#: ../../help.pm_.c:341
msgid ""
"There you are. Installation is now complete and your GNU/Linux system is\n"
"ready to use. Just click \"OK\" to reboot the system. You can start\n"
@@ -3220,7 +3297,7 @@ msgid ""
"\"mformat a:\")"
msgstr ""
-#: ../../help.pm_.c:378
+#: ../../help.pm_.c:372
#, fuzzy
msgid ""
"Any partitions that have been newly defined must be formatted for use\n"
@@ -3276,7 +3353,7 @@ msgstr ""
"Noklikđíiniet \"Atcelt\", ja jûs gribat izvçlçties citas partîcijas, kur\n"
"instalçt jauno Mandrake Linux operçtâjsistçmu."
-#: ../../help.pm_.c:404
+#: ../../help.pm_.c:398
#, fuzzy
msgid ""
"Your new Mandrake Linux operating system is currently being installed.\n"
@@ -3293,12 +3370,12 @@ msgstr ""
"\n"
"Lûdzu esiet pacietîgs."
-#: ../../help.pm_.c:412
+#: ../../help.pm_.c:406
msgid ""
"At the time you are installing Mandrake Linux, it is likely that some\n"
"packages have been updated since the initial release. Some bugs may have\n"
"been fixed, and security issues solved. To allow you to benefit from these\n"
-"updates, you are now proposed to download them from the Internet. Choose\n"
+"updates, you are now able to download them from the Internet. Choose\n"
"\"Yes\" if you have a working Internet connection, or \"No\" if you prefer\n"
"to install updated packages later.\n"
"\n"
@@ -3308,7 +3385,7 @@ msgid ""
"install the selected package(s), or \"Cancel\" to abort."
msgstr ""
-#: ../../help.pm_.c:425
+#: ../../help.pm_.c:419
msgid ""
"Before continuing, you should read carefully the terms of the license. It\n"
"covers the whole Mandrake Linux distribution, and if you do not agree with\n"
@@ -3317,19 +3394,19 @@ msgid ""
"\"Accept\" button."
msgstr ""
-#: ../../help.pm_.c:432
+#: ../../help.pm_.c:426
msgid ""
"At this point, it is time to choose the security level desired for the\n"
"machine. As a rule of thumb, the more exposed the machine is, and the more\n"
"the data stored in it is crucial, the higher the security level should be.\n"
"However, a higher security level is generally obtained at the expense of\n"
-"easiness of use. Refer to the \"msec\" chapter of the ``Reference Manual''\n"
-"to get more information about the meaning of these levels.\n"
+"ease of use. Refer to the \"msec\" chapter of the ``Reference Manual'' to\n"
+"get more information about the meaning of these levels.\n"
"\n"
"If you do not know what to choose, keep the default option."
msgstr ""
-#: ../../help.pm_.c:442
+#: ../../help.pm_.c:436
#, fuzzy
msgid ""
"At this point, you need to choose which partition(s) will be used for the\n"
@@ -3347,26 +3424,26 @@ msgid ""
" * \"Clear all\": this option deletes all partitions on the selected hard\n"
"drive;\n"
"\n"
-" * \"Auto allocate\": this option enables to automatically create \"Ext2\"\n"
-"and swap partitions in free space of your hard drive;\n"
+" * \"Auto allocate\": this option enables to automatically create ext3 and\n"
+"swap partitions in free space of your hard drive;\n"
"\n"
-" * \"More\": gives access to additional features:\n"
+"\"More\": gives access to additional features:\n"
"\n"
-" * \"Save partition table\": saves the partition table to a floppy.\n"
-"Useful for later partition-table recovery if necessary. It is strongly\n"
-"recommended to perform this step;\n"
+" * \"Save partition table\": saves the partition table to a floppy. Useful\n"
+"for later partition-table recovery if necessary. It is strongly recommended\n"
+"to perform this step;\n"
"\n"
-" * \"Restore partition table\": allows to restore a previously saved\n"
+" * \"Restore partition table\": allows to restore a previously saved\n"
"partition table from floppy disk;\n"
"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you\n"
-"can try to recover it using this option. Please be careful and remember\n"
-"that it can fail;\n"
+" * \"Rescue partition table\": if your partition table is damaged, you can\n"
+"try to recover it using this option. Please be careful and remember that it\n"
+"can fail;\n"
"\n"
-" * \"Reload partition table\": discards all changes and loads your\n"
-"initial partition table;\n"
+" * \"Reload partition table\": discards all changes and loads your initial\n"
+"partition table;\n"
"\n"
-" * \"Removable media automounting\": unchecking this option will force\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
"users to manually mount and unmount removable medias such as floppies and\n"
"CD-ROMs.\n"
"\n"
@@ -3394,7 +3471,7 @@ msgid ""
" * Ctrl-m to set the mount point.\n"
"\n"
"To get information about the different filesystem types available, please\n"
-"read the ext2fs chapter from the ``Reference Manual''.\n"
+"read the ext2FS chapter from the ``Reference Manual''.\n"
"\n"
"If you are installing on a PPC machine, you will want to create a small HFS\n"
"``bootstrap'' partition of at least 1MB, which will be used by the yaboot\n"
@@ -3471,7 +3548,7 @@ msgstr ""
"\n"
" * Ctrl-m, lai uzstâdîtu montçđanas punktu"
-#: ../../help.pm_.c:513
+#: ../../help.pm_.c:507
#, fuzzy
msgid ""
"More than one Microsoft partition has been detected on your hard drive.\n"
@@ -3539,11 +3616,11 @@ msgstr ""
"\"Windows nosaukums\" ir jûsu cietâ diska burts Windows vidç (pirmais disks\n"
"vai partîcija saucas \"C:\")."
-#: ../../help.pm_.c:544
+#: ../../help.pm_.c:538
msgid "Please be patient. This operation can take several minutes."
msgstr "Lûdzu esat pacietîgs. Đî darbîba var ilgt vairâkas minûtes."
-#: ../../help.pm_.c:547
+#: ../../help.pm_.c:541
#, fuzzy
msgid ""
"DrakX now needs to know if you want to perform a default (\"Recommended\")\n"
@@ -3551,23 +3628,23 @@ msgid ""
"also choose to do a new install or an upgrade of an existing Mandrake Linux\n"
"system:\n"
"\n"
-" * \"Install\": completely wipes out the old system. In fact, depending on\n"
-"what currently holds your machine, you will be able to keep some old (Linux\n"
-"or other) partitions unchanged;\n"
+" * \"Install\": completely wipes out the old system, however, depending on\n"
+"what is currently installed on your machine, you may be able to keep some\n"
+"old partitions (Linux or otherwise) unchanged;\n"
"\n"
" * \"Upgrade\": this installation class allows to simply update the\n"
"packages currently installed on your Mandrake Linux system. It keeps the\n"
"current partitions of your hard drives as well as user configurations. All\n"
-"other configuration steps remain available with respect to plain\n"
+"other configuration steps remain available, similar to a normal\n"
"installation;\n"
"\n"
-" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
-"existing Mandrake Linux system while keeping all system configurations\n"
-"unchanged. Adding new packages to the current installation is also\n"
-"possible.\n"
+" * \"Upgrade Packages Only\": this new installation class allows you to\n"
+"upgrade an existing Mandrake Linux system while keeping all system\n"
+"configurations unchanged. Adding new packages to the current installation\n"
+"is also possible.\n"
"\n"
-"Upgrades should work fine for Mandrake Linux systems starting from \"8.1\"\n"
-"release.\n"
+"Upgrades should work fine on Mandrake Linux systems containing version\n"
+"\"8.1\" or later.\n"
"\n"
"Depending on your knowledge of GNU/Linux, select one of the following\n"
"choices:\n"
@@ -3576,11 +3653,11 @@ msgid ""
"operating system. The installation will be very easy and you will only be\n"
"asked a few questions;\n"
"\n"
-" * Expert: if you have a good knowledge of GNU/Linux, you can choose this\n"
-"installation class. The expert installation will allow you to perform a\n"
-"highly-customized installation. Answering some of the questions can be\n"
-"difficult if you do not have a good knowledge of GNU/Linux, so do not\n"
-"choose this unless you know what you are doing."
+" * Expert: if you have a good understanding of GNU/Linux, you may wish to\n"
+"perform a highly customized installation. Some of the decisions you will\n"
+"have to make may be difficult if you do not have good knowledge of\n"
+"GNU/Linux, so it is not recommended that those without a fair amount of\n"
+"experience select this installation class."
msgstr ""
"Lûdzu izvçlieties \"Instalçt\", ja nav instalçta vecâka Linux-Mandrak "
"versija\n"
@@ -3617,23 +3694,28 @@ msgstr ""
"pietiekođi labas. Tâpçc neizvçlieties\n"
" đo instalçđanas klasi, ja neesat pârliecinâts."
-#: ../../help.pm_.c:584
+#: ../../help.pm_.c:578
msgid ""
"Normally, DrakX selects the right keyboard for you (depending on the\n"
-"language you have chosen) and you won't even see this step. However, you\n"
-"might not have a keyboard that corresponds exactly to your language: for\n"
-"example, if you are an English speaking Swiss person, you may still want\n"
-"your keyboard to be a Swiss keyboard. Or if you speak English but are\n"
-"located in Quebec, you may find yourself in the same situation. In both\n"
-"cases, you will have to go back to this installation step and select an\n"
-"appropriate keyboard from the list.\n"
+"language you have chosen). However, you might not have a keyboard that\n"
+"corresponds exactly to your language: for example, if you are an English\n"
+"speaking Swiss person, you may still want your keyboard to be a Swiss\n"
+"keyboard. Or if you speak English but are located in Quebec, you may find\n"
+"yourself in the same situation. In both cases, you will have to go back to\n"
+"this installation step and select an appropriate keyboard from the list.\n"
"\n"
"Click on the \"More\" button to be presented with the complete list of\n"
-"supported keyboards."
+"supported keyboards.\n"
+"\n"
+"If you choose a keyboard layout based on a non-latin alphabet, you will be\n"
+"asked on next dialog to choose the key binding that will switch the\n"
+"keyboard layout between the latin and non latin layouts."
msgstr ""
-#: ../../help.pm_.c:597
+#: ../../help.pm_.c:594
msgid ""
+"The first step is to choose your preferred language.\n"
+"\n"
"Please choose your preferred language for installation and system usage.\n"
"\n"
"Clicking on the \"Advanced\" button will allow you to select other\n"
@@ -3647,7 +3729,7 @@ msgid ""
"additional locales, click the \"OK\" button to continue."
msgstr ""
-#: ../../help.pm_.c:610
+#: ../../help.pm_.c:609
msgid ""
"DrakX generally detects the number of buttons your mouse has. If not, it\n"
"assumes you have a two-button mouse and will set it up for third-button\n"
@@ -3660,10 +3742,17 @@ msgid ""
"If you choose a mouse other than the default, a test screen will be\n"
"displayed. Use the buttons and wheel to verify that the settings are\n"
"correct. If the mouse is not working well, press the space bar or [Return]\n"
-"to \"Cancel\" and choose again."
+"to \"Cancel\" and choose again.\n"
+"\n"
+"Wheel mouses are sometimes not automatically detected. You will need to\n"
+"manually select it in the list. Be sure to select the one corresponding to\n"
+"the correct port it is attached to. After you have pressed the \"OK\"\n"
+"button, a mouse image is displayed. You then need to move the wheel of your\n"
+"mouse to activate it correctly. Then test all buttons and movements are\n"
+"correct."
msgstr ""
-#: ../../help.pm_.c:624
+#: ../../help.pm_.c:630
#, fuzzy
msgid ""
"Please select the correct port. For example, the \"COM1\" port under\n"
@@ -3672,7 +3761,7 @@ msgstr ""
"Lûdzu izvçlieties pareizu portu. Piemçram, MS Windows\n"
"ports COM1 GNU/Linux vidç saucas ttyS0."
-#: ../../help.pm_.c:628
+#: ../../help.pm_.c:634
msgid ""
"This is the most crucial decision point for the security of your GNU/Linux\n"
"system: you have to enter the \"root\" password. \"root\" is the system\n"
@@ -3702,15 +3791,15 @@ msgid ""
"In Expert mode, you will be asked if you will be connecting to an\n"
"authentication server, like NIS or LDAP.\n"
"\n"
-"If your network uses the LDAP (or NIS) protocol for authentication, select\n"
-"\"LDAP\" (or \"NIS\") as authentication. If you do not know, ask your\n"
-"network administrator.\n"
+"If your network uses either of the LDAP, NIS, or PDC Windows Domain\n"
+"authentication services, select the appropriate one as \"authentication\".\n"
+"If you do not know, ask your network administrator.\n"
"\n"
"If your computer is not connected to any administrated network, you will\n"
"want to choose \"Local files\" for authentication."
msgstr ""
-#: ../../help.pm_.c:664
+#: ../../help.pm_.c:670
msgid ""
"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
@@ -3749,8 +3838,12 @@ msgid ""
"options. !!\n"
"\n"
"Clicking the \"Advanced\" button in this dialog will offer many advanced\n"
-"options, which are reserved to the expert user.\n"
-"\n"
+"options, which are reserved for the expert user."
+msgstr ""
+
+#: ../../help.pm_.c:710
+#, fuzzy
+msgid ""
"After you have configured the general bootloader parameters, the list of\n"
"boot options which will be available at boot time will be displayed.\n"
"\n"
@@ -3758,17 +3851,7 @@ msgid ""
"automatically be added to the boot menu. Here, you can choose to fine-tune\n"
"the existing options. Select an entry and click \"Modify\" to modify or\n"
"remove it; \"Add\" creates a new entry; and \"Done\" goes on to the next\n"
-"installation step."
-msgstr ""
-
-#: ../../help.pm_.c:713
-#, fuzzy
-msgid ""
-"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
-"either GNU/Linux or any other operating system present on your computer.\n"
-"Normally, these other operating systems are correctly detected and\n"
-"installed. If this is not the case, you can add an entry by hand in this\n"
-"screen. Be careful to choose the correct parameters.\n"
+"installation step.\n"
"\n"
"You may also not want to give access to these other operating systems to\n"
"anyone. In which case, you can delete the corresponding entries. But then,\n"
@@ -3834,18 +3917,18 @@ msgstr ""
#: ../../help.pm_.c:759
#, fuzzy
msgid ""
-"DrakX now detects any IDE device present in your computer. It will also\n"
-"scan for one or more PCI SCSI card(s) on your system. If a SCSI card is\n"
+"DrakX now detects any IDE devices present in your computer. It will also\n"
+"scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
"found, DrakX will automatically install the appropriate driver.\n"
"\n"
"Because hardware detection does not always detect a piece of hardware,\n"
"DrakX will ask you to confirm if a PCI SCSI card is present. Click \"Yes\"\n"
"if you know that there is a SCSI card installed in your machine. You will\n"
-"be presented a list of SCSI cards to choose from. Click \"No\" if you have\n"
-"no SCSI hardware. If you are unsure, you can check the list of hardware\n"
-"detected in your machine by selecting \"See hardware info\" and clicking\n"
-"\"OK\". Examine the list of hardware and then click on the \"OK\" button to\n"
-"return to the SCSI interface question.\n"
+"be presented with a list of SCSI cards to choose from. Click \"No\" if you\n"
+"have no SCSI hardware. If you are unsure, you can check the list of\n"
+"hardware detected in your machine by selecting \"See hardware info\" and\n"
+"clicking \"OK\". Examine the list of hardware and then click on the \"OK\"\n"
+"button to return to the SCSI interface question.\n"
"\n"
"If you have to manually specify your adapter, DrakX will ask if you want to\n"
"specify options for it. You should allow DrakX to probe the hardware for\n"
@@ -3983,7 +4066,9 @@ msgid ""
"order to configure the clock according to the time zone you are in;\n"
"\n"
" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
-"configuration wizard;\n"
+"configuration wizard. Consult the corresponding chapter of the ``User\n"
+"Guide'' for more information on how to setup a new printer. The interface\n"
+"presented there is similar to the one used during installation;\n"
"\n"
" * \"Sound card\": if a sound card is detected on your system, it is\n"
"displayed here. No modification possible at installation time;\n"
@@ -3996,7 +4081,7 @@ msgid ""
"associated with it."
msgstr ""
-#: ../../help.pm_.c:894
+#: ../../help.pm_.c:896
#, fuzzy
msgid ""
"Choose the hard drive you want to erase in order to install your new\n"
@@ -4007,7 +4092,7 @@ msgstr ""
"Mandrake Linux partîciju. Esiet uzmanîgi, jo visi diskâ esođie dati\n"
"pazudîs un nebûs atjaunojami."
-#: ../../help.pm_.c:899
+#: ../../help.pm_.c:901
#, fuzzy
msgid ""
"Click on \"OK\" if you want to delete all data and partitions present on\n"
@@ -4041,7 +4126,7 @@ msgstr ""
msgid "You must also format %s"
msgstr ""
-#: ../../install_any.pm_.c:418
+#: ../../install_any.pm_.c:423
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -4056,20 +4141,29 @@ msgid ""
"Do you really want to install these servers?\n"
msgstr ""
-#: ../../install_any.pm_.c:453
+#: ../../install_any.pm_.c:441
+#, c-format
+msgid ""
+"The following packages will be removed to allow upgrading your system: %s\n"
+"\n"
+"\n"
+"Do you really want to remove these packages?\n"
+msgstr ""
+
+#: ../../install_any.pm_.c:471
msgid "Can't use broadcast with no NIS domain"
msgstr ""
-#: ../../install_any.pm_.c:841
+#: ../../install_any.pm_.c:862
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Ielieciet FAT formatçtu disketi iekârtâ %s"
-#: ../../install_any.pm_.c:845
+#: ../../install_any.pm_.c:866
msgid "This floppy is not FAT formatted"
msgstr ""
-#: ../../install_any.pm_.c:857
+#: ../../install_any.pm_.c:878
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -4077,11 +4171,19 @@ msgstr ""
"Lai izmantotu đo saglabâto pakotòu izvçli, palaidiet instalâciju ar ``linux "
"defcfg=floppy''"
-#: ../../install_any.pm_.c:880 ../../partition_table.pm_.c:771
+#: ../../install_any.pm_.c:901 ../../partition_table.pm_.c:767
#, c-format
msgid "Error reading file %s"
msgstr "Kïûda, nolasot failu %s"
+#: ../../install_any.pm_.c:1023
+msgid ""
+"An error occurred - no valid devices were found on which to create new "
+"filesystems. Please check your hardware for the cause of this problem"
+msgstr ""
+"Atklâta kïûda - nav atrasta neviena ierîce, kas derçtu jaunu failsistçmu "
+"veidođanai. Lûdzu pârbaudiet dzelțus, lai noskaidrotu problçmas iemeslu"
+
#: ../../install_interactive.pm_.c:23
#, c-format
msgid ""
@@ -4115,60 +4217,60 @@ msgstr ""
"\n"
"Vai tomçr turpinât?"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:168
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:169
#, fuzzy
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "Jums ir nepiecieđama swap partîcija"
-#: ../../install_interactive.pm_.c:91
+#: ../../install_interactive.pm_.c:92
msgid "Use free space"
msgstr "Izmantot brîvo vietu"
-#: ../../install_interactive.pm_.c:93
+#: ../../install_interactive.pm_.c:94
msgid "Not enough free space to allocate new partitions"
msgstr "Nepietiek brîvas vietas, lai izvietotu jaunas partîcijas"
-#: ../../install_interactive.pm_.c:101
+#: ../../install_interactive.pm_.c:102
msgid "Use existing partitions"
msgstr "Izmantot jau esođu partîciju"
-#: ../../install_interactive.pm_.c:103
+#: ../../install_interactive.pm_.c:104
msgid "There is no existing partition to use"
msgstr "Nav nevienas partîcijas, ko varçtu izmantot"
-#: ../../install_interactive.pm_.c:110
+#: ../../install_interactive.pm_.c:111
msgid "Use the Windows partition for loopback"
msgstr "Izmantot Windows partîciju priekđ loopback"
-#: ../../install_interactive.pm_.c:113
+#: ../../install_interactive.pm_.c:114
msgid "Which partition do you want to use for Linux4Win?"
msgstr "Kuru partîciju vçlaties izmantot priekđ Linux4Win?"
-#: ../../install_interactive.pm_.c:115
+#: ../../install_interactive.pm_.c:116
msgid "Choose the sizes"
msgstr "Izvçlieties izmçrus"
-#: ../../install_interactive.pm_.c:116
+#: ../../install_interactive.pm_.c:117
msgid "Root partition size in MB: "
msgstr "Saknes partîcijas izmçrs (MB): "
-#: ../../install_interactive.pm_.c:117
+#: ../../install_interactive.pm_.c:118
msgid "Swap partition size in MB: "
msgstr "Swap partîcijas izmçrs (MB): "
-#: ../../install_interactive.pm_.c:126
+#: ../../install_interactive.pm_.c:128
msgid "Use the free space on the Windows partition"
msgstr "Izmantot Windows partîcijas brîvo vietu"
-#: ../../install_interactive.pm_.c:129
+#: ../../install_interactive.pm_.c:131
msgid "Which partition do you want to resize?"
msgstr "Kuras partîcijas izmçru vçlaties izmainît?"
-#: ../../install_interactive.pm_.c:131
+#: ../../install_interactive.pm_.c:133
msgid "Resizing Windows partition"
msgstr "Izskaitïoju Windows failu sistçmas robețas"
-#: ../../install_interactive.pm_.c:134
+#: ../../install_interactive.pm_.c:136
#, c-format
msgid ""
"The FAT resizer is unable to handle your partition, \n"
@@ -4177,14 +4279,14 @@ msgstr ""
"FAT izmçra mainîtâjs nespçj izmainît jûsu partîciju,\n"
"atklâta sekojođa kïûda: %s"
-#: ../../install_interactive.pm_.c:137
+#: ../../install_interactive.pm_.c:139
msgid ""
"Your Windows partition is too fragmented. Please reboot your computer under "
"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
"installation."
msgstr "Windows partîcija ir pârâk fragmentçta, vispirms palaidiet ``defrag''"
-#: ../../install_interactive.pm_.c:138
+#: ../../install_interactive.pm_.c:140
#, fuzzy
msgid ""
"WARNING!\n"
@@ -4204,21 +4306,21 @@ msgstr ""
"tad atkârtoti jâsâk instalçđana. Vajadzçtu izveidot arî datu rezerves\n"
"kopiju. Kad esat pârliecinâts, nospiediet Labi."
-#: ../../install_interactive.pm_.c:148
+#: ../../install_interactive.pm_.c:150
msgid "Which size do you want to keep for Windows on"
msgstr "Kâdu apjomu vçlaties atstât priekđ windows uz"
-#: ../../install_interactive.pm_.c:149
+#: ../../install_interactive.pm_.c:151
#, c-format
msgid "partition %s"
msgstr "partîcija %s"
-#: ../../install_interactive.pm_.c:156
+#: ../../install_interactive.pm_.c:158
#, c-format
msgid "FAT resizing failed: %s"
msgstr "FAT izmçra maiòa neizdevâs: %s"
-#: ../../install_interactive.pm_.c:171
+#: ../../install_interactive.pm_.c:173
msgid ""
"There is no FAT partition to resize or to use as loopback (or not enough "
"space left)"
@@ -4226,32 +4328,32 @@ msgstr ""
"Nav FAT partîciju, lai izmainîto to izmçru vai izmantotu kâ loopback (vai "
"nepietiek brîvas vietas)"
-#: ../../install_interactive.pm_.c:177
+#: ../../install_interactive.pm_.c:179
msgid "Erase entire disk"
msgstr "Izdzçst visu disku"
-#: ../../install_interactive.pm_.c:177
+#: ../../install_interactive.pm_.c:179
msgid "Remove Windows(TM)"
msgstr "Noòemt Windows(TM)"
-#: ../../install_interactive.pm_.c:180
+#: ../../install_interactive.pm_.c:182
msgid "You have more than one hard drive, which one do you install linux on?"
msgstr "Jums ir vairâk nekâ viens cietais disks, uz kura jûs instalçjat linux?"
-#: ../../install_interactive.pm_.c:183
+#: ../../install_interactive.pm_.c:185
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr "VISAS diska %s partîcijas un tajâs esođie dati tiks pazaudçti"
-#: ../../install_interactive.pm_.c:191
+#: ../../install_interactive.pm_.c:193
msgid "Custom disk partitioning"
msgstr "Pielâgots disku sadalîjums"
-#: ../../install_interactive.pm_.c:195
+#: ../../install_interactive.pm_.c:197
msgid "Use fdisk"
msgstr "Izmantot fdisk"
-#: ../../install_interactive.pm_.c:198
+#: ../../install_interactive.pm_.c:200
#, c-format
msgid ""
"You can now partition %s.\n"
@@ -4260,28 +4362,28 @@ msgstr ""
"Tagad jûs varat sadalît diska iekârtu %s.\n"
"Kad esat pabeiguđi, neaizmirstiet saglabât, izmantojot `w'"
-#: ../../install_interactive.pm_.c:227
+#: ../../install_interactive.pm_.c:229
msgid "You don't have enough free space on your Windows partition"
msgstr "Jûsu Windows partîcijâ nav pietiekođi daudz brîvas vietas"
-#: ../../install_interactive.pm_.c:243
+#: ../../install_interactive.pm_.c:245
msgid "I can't find any room for installing"
msgstr "Nevaru atrast vietu instalçđanai"
-#: ../../install_interactive.pm_.c:246
+#: ../../install_interactive.pm_.c:248
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr "DrakX partîciju veidođanas meistars atrada sekojođus risinâjumus:"
-#: ../../install_interactive.pm_.c:250
+#: ../../install_interactive.pm_.c:252
#, c-format
msgid "Partitioning failed: %s"
msgstr "Diska sadalîđana neizdevâs: %s"
-#: ../../install_interactive.pm_.c:260
+#: ../../install_interactive.pm_.c:262
msgid "Bringing up the network"
msgstr "Iedarbinu tîklu"
-#: ../../install_interactive.pm_.c:265
+#: ../../install_interactive.pm_.c:267
msgid "Bringing down the network"
msgstr "Atslçdzu tîklu"
@@ -4293,12 +4395,12 @@ msgstr ""
"Atklâta kïûda, bet es nezinu, kâ ar to pareizi apieties.\n"
"Turpiniet, ja vçlaties riskçt."
-#: ../../install_steps.pm_.c:210
+#: ../../install_steps.pm_.c:211
#, c-format
msgid "Duplicate mount point %s"
msgstr "Dublçts montçđanas punkts %s"
-#: ../../install_steps.pm_.c:379
+#: ../../install_steps.pm_.c:380
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -4310,12 +4412,12 @@ msgstr ""
"Parbaudiet disku uz instalçta datora, izmantojot komandu \"rpm -qpl Mandrake/"
"RPMS/*.rpm\"\n"
-#: ../../install_steps.pm_.c:451
+#: ../../install_steps.pm_.c:452
#, c-format
msgid "Welcome to %s"
msgstr "Jûs sveic %s"
-#: ../../install_steps.pm_.c:530 ../../install_steps.pm_.c:770
+#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:772
msgid "No floppy drive available"
msgstr "Nav nevienas diskeđu iekârtas"
@@ -4346,70 +4448,70 @@ msgstr "Instalçđanas klase"
msgid "Please choose one of the following classes of installation:"
msgstr "Lûdzu izvçlieties vienu no sekojođâm instalçđanas klasçm:"
-#: ../../install_steps_gtk.pm_.c:243 ../../install_steps_interactive.pm_.c:694
+#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:678
msgid "Package Group Selection"
msgstr "Pakotòu grupu izvçle"
-#: ../../install_steps_gtk.pm_.c:276 ../../install_steps_interactive.pm_.c:709
+#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:693
msgid "Individual package selection"
msgstr "Atseviđíu pakotòu izvçle"
-#: ../../install_steps_gtk.pm_.c:299 ../../install_steps_interactive.pm_.c:633
+#: ../../install_steps_gtk.pm_.c:293 ../../install_steps_interactive.pm_.c:617
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Kopçjais izmçrs: %d / %d MB"
-#: ../../install_steps_gtk.pm_.c:341
+#: ../../install_steps_gtk.pm_.c:335
msgid "Bad package"
msgstr "Slikta pakotne"
-#: ../../install_steps_gtk.pm_.c:342
+#: ../../install_steps_gtk.pm_.c:336
#, c-format
msgid "Name: %s\n"
msgstr "Nosaukums: %s\n"
-#: ../../install_steps_gtk.pm_.c:343
+#: ../../install_steps_gtk.pm_.c:337
#, c-format
msgid "Version: %s\n"
msgstr "Versija: %s\n"
-#: ../../install_steps_gtk.pm_.c:344
+#: ../../install_steps_gtk.pm_.c:338
#, c-format
msgid "Size: %d KB\n"
msgstr "Apjoms: %d KB\n"
-#: ../../install_steps_gtk.pm_.c:345
+#: ../../install_steps_gtk.pm_.c:339
#, c-format
msgid "Importance: %s\n"
msgstr "Svarîgums: %s\n"
-#: ../../install_steps_gtk.pm_.c:367
+#: ../../install_steps_gtk.pm_.c:361
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr ""
"Jûs nevarat izvçlçties đo pakotni, jo nepietiek vietas tâs instalçđanai"
-#: ../../install_steps_gtk.pm_.c:372
+#: ../../install_steps_gtk.pm_.c:366
msgid "The following packages are going to be installed"
msgstr "Tiks instalçtas sekojođas pakotnes"
-#: ../../install_steps_gtk.pm_.c:373
+#: ../../install_steps_gtk.pm_.c:367
msgid "The following packages are going to be removed"
msgstr "Tiks noòemtas sekojođas pakotnes"
-#: ../../install_steps_gtk.pm_.c:385
+#: ../../install_steps_gtk.pm_.c:379
msgid "You can't select/unselect this package"
msgstr "Jûs varat izvçlçties/atteikties no đîs pakotnes"
-#: ../../install_steps_gtk.pm_.c:397
+#: ../../install_steps_gtk.pm_.c:391
msgid "This is a mandatory package, it can't be unselected"
msgstr "Đî ir obligâta pakotne, no tâs nevar atteikties"
-#: ../../install_steps_gtk.pm_.c:399
+#: ../../install_steps_gtk.pm_.c:393
msgid "You can't unselect this package. It is already installed"
msgstr "Jûs nevarat atteikties no đîs pakotnes. Tâ jau ir instalçta"
-#: ../../install_steps_gtk.pm_.c:402
+#: ../../install_steps_gtk.pm_.c:396
msgid ""
"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
@@ -4417,77 +4519,77 @@ msgstr ""
"Đo pakotni ir nepiecieđams uzlabot\n"
"Vai tieđâm vçlaties atteikties no tâs?"
-#: ../../install_steps_gtk.pm_.c:405
+#: ../../install_steps_gtk.pm_.c:399
msgid "You can't unselect this package. It must be upgraded"
msgstr "Jûs nevarat atteikties no đîs pakotnes. To ir nepiecieđams uzlabot"
-#: ../../install_steps_gtk.pm_.c:410
+#: ../../install_steps_gtk.pm_.c:404
msgid "Show automatically selected packages"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:411 ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_gtk.pm_.c:405 ../../install_steps_interactive.pm_.c:255
#: ../../install_steps_interactive.pm_.c:259
-#: ../../standalone/drakbackup_.c:3600
+#: ../../standalone/drakbackup_.c:4257
msgid "Install"
msgstr "Instalçt"
-#: ../../install_steps_gtk.pm_.c:414
+#: ../../install_steps_gtk.pm_.c:408
#, fuzzy
msgid "Load/Save on floppy"
msgstr "Saglabât disketç"
-#: ../../install_steps_gtk.pm_.c:415
+#: ../../install_steps_gtk.pm_.c:409
#, fuzzy
msgid "Updating package selection"
msgstr "Saglabât pakotòu izvçli"
-#: ../../install_steps_gtk.pm_.c:420
+#: ../../install_steps_gtk.pm_.c:414
#, fuzzy
msgid "Minimal install"
msgstr "Instalçđanas beigas"
-#: ../../install_steps_gtk.pm_.c:435 ../../install_steps_interactive.pm_.c:538
+#: ../../install_steps_gtk.pm_.c:429 ../../install_steps_interactive.pm_.c:522
msgid "Choose the packages you want to install"
msgstr "Izvçlieties pakotnes, ko vçlaties instalçt"
-#: ../../install_steps_gtk.pm_.c:451 ../../install_steps_interactive.pm_.c:778
+#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:762
msgid "Installing"
msgstr "Instalçju"
-#: ../../install_steps_gtk.pm_.c:457
+#: ../../install_steps_gtk.pm_.c:451
msgid "Estimating"
msgstr "Aprçíinu"
-#: ../../install_steps_gtk.pm_.c:464
+#: ../../install_steps_gtk.pm_.c:458
msgid "Time remaining "
msgstr "Atlikuđais laiks"
-#: ../../install_steps_gtk.pm_.c:476
+#: ../../install_steps_gtk.pm_.c:470
msgid "Please wait, preparing installation..."
msgstr "Lûdzu gaidiet, gatavoju instalâciju"
-#: ../../install_steps_gtk.pm_.c:560
+#: ../../install_steps_gtk.pm_.c:554
#, c-format
msgid "%d packages"
msgstr "%d pakotnes"
-#: ../../install_steps_gtk.pm_.c:565
+#: ../../install_steps_gtk.pm_.c:559
#, c-format
msgid "Installing package %s"
msgstr "Instalçju pakotni %s"
-#: ../../install_steps_gtk.pm_.c:602 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:802
+#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:786
#: ../../standalone/drakautoinst_.c:202
msgid "Accept"
msgstr "Pieòemt"
-#: ../../install_steps_gtk.pm_.c:602 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:802
+#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:786
msgid "Refuse"
msgstr "Noraidît"
-#: ../../install_steps_gtk.pm_.c:603 ../../install_steps_interactive.pm_.c:803
+#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:787
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4501,17 +4603,17 @@ msgstr ""
"Lûdzu ielieciet iekârtâ Cd-Rom \"%s\", kad tas ir izdarîts, nospiediet Labi\n"
"Ja jums nav đî diska, nospiediet Atcelt, lai neinstalçtu no đî Cd-Rom."
-#: ../../install_steps_gtk.pm_.c:617 ../../install_steps_gtk.pm_.c:621
-#: ../../install_steps_interactive.pm_.c:815
-#: ../../install_steps_interactive.pm_.c:819
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_gtk.pm_.c:615
+#: ../../install_steps_interactive.pm_.c:799
+#: ../../install_steps_interactive.pm_.c:803
msgid "Go on anyway?"
msgstr "Tomçr turpinât?"
-#: ../../install_steps_gtk.pm_.c:617 ../../install_steps_interactive.pm_.c:815
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:799
msgid "There was an error ordering packages:"
msgstr "Pakotòu kârtođanas laikâ atklâta kïûda:"
-#: ../../install_steps_gtk.pm_.c:621 ../../install_steps_interactive.pm_.c:819
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:803
msgid "There was an error installing packages:"
msgstr "Pakotòu instalçđanas laikâ atklâta kïûda:"
@@ -4713,7 +4815,7 @@ msgid "Are you sure you refuse the licence?"
msgstr ""
#: ../../install_steps_interactive.pm_.c:211
-#: ../../install_steps_interactive.pm_.c:1038
+#: ../../install_steps_interactive.pm_.c:1023
#: ../../standalone/keyboarddrake_.c:31
msgid "Keyboard"
msgstr "Tastatûra"
@@ -4765,11 +4867,11 @@ msgstr "Saglabât pakotòu izvçli"
msgid "Please choose the type of your mouse."
msgstr "Lûdzu izvçlieties jûsu peles tipu."
-#: ../../install_steps_interactive.pm_.c:281 ../../standalone/mousedrake_.c:59
+#: ../../install_steps_interactive.pm_.c:281 ../../standalone/mousedrake_.c:60
msgid "Mouse Port"
msgstr "Peles ports"
-#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:61
msgid "Please choose on which serial port your mouse is connected to."
msgstr "Lûdzu izvçlieties, kuram seriâlajam portam ir pieslçgta pele."
@@ -4801,111 +4903,88 @@ msgstr "Konfigurçju IDE"
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:336
+#: ../../install_steps_interactive.pm_.c:338
msgid "No partition available"
msgstr "nav pieejamu partîciju"
-#: ../../install_steps_interactive.pm_.c:339
+#: ../../install_steps_interactive.pm_.c:341
msgid "Scanning partitions to find mount points"
msgstr "Pârmeklçju partîcijas, lai atrastu montçđanas punktus"
-#: ../../install_steps_interactive.pm_.c:347
+#: ../../install_steps_interactive.pm_.c:349
msgid "Choose the mount points"
msgstr "Izvçlieties montçđanas punktus"
-#: ../../install_steps_interactive.pm_.c:366
-#, c-format
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to not allow DrakX to modify the partition table.\n"
-"(the error is %s)\n"
-"\n"
-"Do you agree to loose all the partitions?\n"
-msgstr ""
-"Neizdevâs nolasît diska partîciju tabulu, jo tâ bija pârâk stipri bojâta :(\n"
-"Sistçma var mçìinât atslçgts sliktâs partîcijas (VISI DATI pazudîs!).\n"
-"Otrs risinâjums ir aizliegt DrakX izmainît partîciju tabulu.\n"
-"(kïûda ir %s)\n"
-
#: ../../install_steps_interactive.pm_.c:379
msgid ""
-"DiskDrake failed to read correctly the partition table.\n"
-"Continue at your own risk!"
-msgstr ""
-"DiskDrake neizdevâs pareizi nolasît partîciju tabulu.\n"
-"Turpiniet, ja vçlaties riskçt!"
-
-#: ../../install_steps_interactive.pm_.c:396
-msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:405
+#: ../../install_steps_interactive.pm_.c:388
#, fuzzy
msgid "No root partition found to perform an upgrade"
msgstr "Izvçlieties partîcijas, ko vçlaties formatçt"
-#: ../../install_steps_interactive.pm_.c:406
+#: ../../install_steps_interactive.pm_.c:389
msgid "Root Partition"
msgstr "Saknes partîcija"
-#: ../../install_steps_interactive.pm_.c:407
+#: ../../install_steps_interactive.pm_.c:390
msgid "What is the root partition (/) of your system?"
msgstr "Kura ir jûsu sistçmas saknes partîcija (/)?"
-#: ../../install_steps_interactive.pm_.c:421
+#: ../../install_steps_interactive.pm_.c:404
msgid "You need to reboot for the partition table modifications to take place"
msgstr "Lai partîciju tabulas izmaiòas stâtos spçkâ, jums jâpârstartç dators"
-#: ../../install_steps_interactive.pm_.c:445
+#: ../../install_steps_interactive.pm_.c:428
msgid "Choose the partitions you want to format"
msgstr "Izvçlieties partîcijas, ko vçlaties formatçt"
-#: ../../install_steps_interactive.pm_.c:446
+#: ../../install_steps_interactive.pm_.c:429
msgid "Check bad blocks?"
msgstr "Pârbaudît sliktos blokus?"
-#: ../../install_steps_interactive.pm_.c:473
+#: ../../install_steps_interactive.pm_.c:456
msgid "Formatting partitions"
msgstr "Formatçju partîcijas"
-#: ../../install_steps_interactive.pm_.c:475
+#: ../../install_steps_interactive.pm_.c:458
#, c-format
msgid "Creating and formatting file %s"
msgstr "Veidoju un formatçju failu %s"
-#: ../../install_steps_interactive.pm_.c:480
+#: ../../install_steps_interactive.pm_.c:463
#, c-format
msgid ""
"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
"you can loose data)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:482
+#: ../../install_steps_interactive.pm_.c:465
msgid "Not enough swap space to fulfill installation, please add some"
msgstr "Instalçđanas pabeigđanai nepietiek swap, palieliniet swap"
-#: ../../install_steps_interactive.pm_.c:489
+#: ../../install_steps_interactive.pm_.c:472
#, fuzzy
msgid "Looking for available packages and rebuilding rpm database..."
msgstr "Meklçju pieejamâs pakotnes"
-#: ../../install_steps_interactive.pm_.c:490
+#: ../../install_steps_interactive.pm_.c:473
msgid "Looking for available packages..."
msgstr "Meklçju pieejamâs pakotnes"
-#: ../../install_steps_interactive.pm_.c:493
+#: ../../install_steps_interactive.pm_.c:476
#, fuzzy
msgid "Looking at packages already installed..."
msgstr "Jûs nevarat atteikties no đîs pakotnes. Tâ jau ir instalçta"
-#: ../../install_steps_interactive.pm_.c:497
+#: ../../install_steps_interactive.pm_.c:480
msgid "Finding packages to upgrade..."
msgstr "Meklçju uzlabojamâs pakotnes"
-#: ../../install_steps_interactive.pm_.c:515
+#: ../../install_steps_interactive.pm_.c:498
#, c-format
msgid ""
"Your system does not have enough space left for installation or upgrade (%d "
@@ -4913,63 +4992,63 @@ msgid ""
msgstr ""
"Jûsu sistçmâ vairs nav brîvas vietas instalçđanai vai uzlabođanai (%d > %d)"
-#: ../../install_steps_interactive.pm_.c:550
+#: ../../install_steps_interactive.pm_.c:534
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:553
+#: ../../install_steps_interactive.pm_.c:537
#, fuzzy
msgid "Load from floppy"
msgstr "Atjanot no disketes"
-#: ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_interactive.pm_.c:539
#, fuzzy
msgid "Loading from floppy"
msgstr "Atjanot no disketes"
-#: ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_interactive.pm_.c:539
#, fuzzy
msgid "Package selection"
msgstr "Pakotòu grupu izvçle"
-#: ../../install_steps_interactive.pm_.c:560
+#: ../../install_steps_interactive.pm_.c:544
#, fuzzy
msgid "Insert a floppy containing package selection"
msgstr "Ielieciet disketi iekârtâ %s"
-#: ../../install_steps_interactive.pm_.c:572
+#: ../../install_steps_interactive.pm_.c:556
msgid "Save on floppy"
msgstr "Saglabât disketç"
-#: ../../install_steps_interactive.pm_.c:646
+#: ../../install_steps_interactive.pm_.c:630
msgid "Selected size is larger than available space"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:660
+#: ../../install_steps_interactive.pm_.c:644
msgid "Type of install"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:661
+#: ../../install_steps_interactive.pm_.c:645
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:664
+#: ../../install_steps_interactive.pm_.c:648
msgid "With X"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:666
+#: ../../install_steps_interactive.pm_.c:650
msgid "With basic documentation (recommended!)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:667
+#: ../../install_steps_interactive.pm_.c:651
msgid "Truly minimal install (especially no urpmi)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:752
+#: ../../install_steps_interactive.pm_.c:736
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -4979,16 +5058,16 @@ msgstr ""
"Ja jums nav neviena no norâdîtajiem CD, nospiediet Atcelt.\n"
"Ja trûkst tikai dațu CD, sarakstâ atslçdziet tos un nospiediet Labi."
-#: ../../install_steps_interactive.pm_.c:757
+#: ../../install_steps_interactive.pm_.c:741
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "Cd-Rom ar nosaukumu \"%s\""
-#: ../../install_steps_interactive.pm_.c:778
+#: ../../install_steps_interactive.pm_.c:762
msgid "Preparing installation"
msgstr "Sagatavoju instalçđanu"
-#: ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:771
#, c-format
msgid ""
"Installing package %s\n"
@@ -4997,21 +5076,21 @@ msgstr ""
"Instalçju pakotni %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:833
+#: ../../install_steps_interactive.pm_.c:817
msgid "Post-install configuration"
msgstr "Pçcinstalçđanas konfigurçđana"
-#: ../../install_steps_interactive.pm_.c:839
+#: ../../install_steps_interactive.pm_.c:823
#, fuzzy, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Ielieciet disketi iekârtâ %s"
-#: ../../install_steps_interactive.pm_.c:845
+#: ../../install_steps_interactive.pm_.c:829
#, fuzzy, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Ielieciet tukđu disketi iekârtâ %s"
-#: ../../install_steps_interactive.pm_.c:865
+#: ../../install_steps_interactive.pm_.c:849
msgid ""
"You now have the opportunity to download encryption software.\n"
"\n"
@@ -5078,7 +5157,7 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:904
+#: ../../install_steps_interactive.pm_.c:888
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
"have been released after the distribution was released. They may\n"
@@ -5090,166 +5169,166 @@ msgid ""
"Do you want to install the updates ?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:919
+#: ../../install_steps_interactive.pm_.c:903
#, fuzzy
msgid ""
"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr "Pieslçdzos spoguïserverim, lai saòemtu pieejamo pakotòu sarakstu"
-#: ../../install_steps_interactive.pm_.c:924
+#: ../../install_steps_interactive.pm_.c:908
msgid "Choose a mirror from which to get the packages"
msgstr "Izvçlieties spoguïserveri, no kura òemt pakotnes"
-#: ../../install_steps_interactive.pm_.c:933
+#: ../../install_steps_interactive.pm_.c:917
msgid "Contacting the mirror to get the list of available packages..."
msgstr "Pieslçdzos spoguïserverim, lai saòemtu pieejamo pakotòu sarakstu"
-#: ../../install_steps_interactive.pm_.c:960
+#: ../../install_steps_interactive.pm_.c:945
msgid "Which is your timezone?"
msgstr "Kâda ir jûsu laika josla?"
-#: ../../install_steps_interactive.pm_.c:965
+#: ../../install_steps_interactive.pm_.c:950
#, fuzzy
msgid "Hardware clock set to GMT"
msgstr "Vai datora pulkstenis râda GMT laiku?"
-#: ../../install_steps_interactive.pm_.c:966
+#: ../../install_steps_interactive.pm_.c:951
msgid "Automatic time synchronization (using NTP)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:973
+#: ../../install_steps_interactive.pm_.c:958
#, fuzzy
msgid "NTP Server"
msgstr "NIS serveris"
-#: ../../install_steps_interactive.pm_.c:1007
-#: ../../install_steps_interactive.pm_.c:1015
+#: ../../install_steps_interactive.pm_.c:992
+#: ../../install_steps_interactive.pm_.c:1000
msgid "Remote CUPS server"
msgstr "Attâls CUPS serveris"
-#: ../../install_steps_interactive.pm_.c:1008
+#: ../../install_steps_interactive.pm_.c:993
msgid "No printer"
msgstr "Nav printera"
-#: ../../install_steps_interactive.pm_.c:1025
+#: ../../install_steps_interactive.pm_.c:1010
#, fuzzy
msgid "Do you have an ISA sound card?"
msgstr "Vai ir vçl kâds?"
-#: ../../install_steps_interactive.pm_.c:1027
+#: ../../install_steps_interactive.pm_.c:1012
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1029
+#: ../../install_steps_interactive.pm_.c:1014
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1034 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1019 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Kopsavilkums"
-#: ../../install_steps_interactive.pm_.c:1037
+#: ../../install_steps_interactive.pm_.c:1022
msgid "Mouse"
msgstr "Pele"
-#: ../../install_steps_interactive.pm_.c:1039
+#: ../../install_steps_interactive.pm_.c:1024
msgid "Timezone"
msgstr "Laika josla"
-#: ../../install_steps_interactive.pm_.c:1040 ../../printerdrake.pm_.c:2728
-#: ../../printerdrake.pm_.c:2814
+#: ../../install_steps_interactive.pm_.c:1025 ../../printerdrake.pm_.c:2937
+#: ../../printerdrake.pm_.c:3026
msgid "Printer"
msgstr "Printeris"
-#: ../../install_steps_interactive.pm_.c:1042
+#: ../../install_steps_interactive.pm_.c:1027
#, fuzzy
msgid "ISDN card"
msgstr "Iekđçja ISDN karte"
-#: ../../install_steps_interactive.pm_.c:1045
-#: ../../install_steps_interactive.pm_.c:1047
+#: ../../install_steps_interactive.pm_.c:1030
+#: ../../install_steps_interactive.pm_.c:1032
#, fuzzy
msgid "Sound card"
msgstr "Standarta"
-#: ../../install_steps_interactive.pm_.c:1049
+#: ../../install_steps_interactive.pm_.c:1034
msgid "TV card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1089
-#: ../../install_steps_interactive.pm_.c:1114
-#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1074
+#: ../../install_steps_interactive.pm_.c:1099
+#: ../../install_steps_interactive.pm_.c:1103
msgid "LDAP"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1090
-#: ../../install_steps_interactive.pm_.c:1114
-#: ../../install_steps_interactive.pm_.c:1127
+#: ../../install_steps_interactive.pm_.c:1075
+#: ../../install_steps_interactive.pm_.c:1099
+#: ../../install_steps_interactive.pm_.c:1112
#, fuzzy
msgid "NIS"
msgstr "Izmantot NIS"
-#: ../../install_steps_interactive.pm_.c:1091
-#: ../../install_steps_interactive.pm_.c:1114
-#: ../../install_steps_interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1141
+#: ../../install_steps_interactive.pm_.c:1076
+#: ../../install_steps_interactive.pm_.c:1099
+#: ../../install_steps_interactive.pm_.c:1120
+#: ../../install_steps_interactive.pm_.c:1126
#, fuzzy
msgid "Windows Domain"
msgstr "NIS domçns"
-#: ../../install_steps_interactive.pm_.c:1092
-#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1077
+#: ../../install_steps_interactive.pm_.c:1099
#, fuzzy
msgid "Local files"
msgstr "Lokâls printeris"
-#: ../../install_steps_interactive.pm_.c:1101
-#: ../../install_steps_interactive.pm_.c:1102 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1086
+#: ../../install_steps_interactive.pm_.c:1087 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "root paroles izvçle"
-#: ../../install_steps_interactive.pm_.c:1103
+#: ../../install_steps_interactive.pm_.c:1088
msgid "No password"
msgstr "Bez paroles"
-#: ../../install_steps_interactive.pm_.c:1108
+#: ../../install_steps_interactive.pm_.c:1093
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr "Đî parole ir pârâk vienkârđa (jâbût vismaz %d simbolus garai)"
-#: ../../install_steps_interactive.pm_.c:1114 ../../network/modem.pm_.c:49
+#: ../../install_steps_interactive.pm_.c:1099 ../../network/modem.pm_.c:49
#: ../../standalone/drakconnect_.c:625 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Autentifikâcija"
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1107
#, fuzzy
msgid "Authentication LDAP"
msgstr "Autentifikâcija"
-#: ../../install_steps_interactive.pm_.c:1123
+#: ../../install_steps_interactive.pm_.c:1108
msgid "LDAP Base dn"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1124
+#: ../../install_steps_interactive.pm_.c:1109
#, fuzzy
msgid "LDAP Server"
msgstr "serveris"
-#: ../../install_steps_interactive.pm_.c:1130
+#: ../../install_steps_interactive.pm_.c:1115
#, fuzzy
msgid "Authentication NIS"
msgstr "Autentifikâcijas NIS"
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1116
msgid "NIS Domain"
msgstr "NIS domçns"
-#: ../../install_steps_interactive.pm_.c:1132
+#: ../../install_steps_interactive.pm_.c:1117
msgid "NIS Server"
msgstr "NIS serveris"
-#: ../../install_steps_interactive.pm_.c:1138
+#: ../../install_steps_interactive.pm_.c:1123
msgid ""
"For this to work for a W2K PDC, you will probably need to have the admin "
"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
@@ -5265,21 +5344,21 @@ msgid ""
"good."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1140
+#: ../../install_steps_interactive.pm_.c:1125
#, fuzzy
msgid "Authentication Windows Domain"
msgstr "Autentifikâcija"
-#: ../../install_steps_interactive.pm_.c:1142
+#: ../../install_steps_interactive.pm_.c:1127
#, fuzzy
msgid "Domain Admin User Name"
msgstr "Domçna nosaukums"
-#: ../../install_steps_interactive.pm_.c:1143
+#: ../../install_steps_interactive.pm_.c:1128
msgid "Domain Admin Password"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1178
+#: ../../install_steps_interactive.pm_.c:1163
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
"depending on the normal bootloader. This is useful if you don't want to "
@@ -5306,19 +5385,19 @@ msgstr ""
"Ja vçlaties izveidot jûsu sistçmai pielâgotu sâknçđanas disketi,\n"
"ielieciet sisketi pirmajâ iekârtâ un nospiediet \"Labi\"."
-#: ../../install_steps_interactive.pm_.c:1194
+#: ../../install_steps_interactive.pm_.c:1179
msgid "First floppy drive"
msgstr "Pirmâ diskeđu iekârta"
-#: ../../install_steps_interactive.pm_.c:1195
+#: ../../install_steps_interactive.pm_.c:1180
msgid "Second floppy drive"
msgstr "Otrâ diskeđu iekârta"
-#: ../../install_steps_interactive.pm_.c:1196 ../../printerdrake.pm_.c:2277
+#: ../../install_steps_interactive.pm_.c:1181 ../../printerdrake.pm_.c:2470
msgid "Skip"
msgstr "Izlaist"
-#: ../../install_steps_interactive.pm_.c:1201
+#: ../../install_steps_interactive.pm_.c:1186
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5342,7 +5421,7 @@ msgstr ""
"izveidot jûsu sistçmai pielâgotu sâknçđanas disketi?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1207
+#: ../../install_steps_interactive.pm_.c:1192
msgid ""
"\n"
"\n"
@@ -5351,28 +5430,28 @@ msgid ""
"because XFS needs a very large driver)."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1215
+#: ../../install_steps_interactive.pm_.c:1200
msgid "Sorry, no floppy drive available"
msgstr "Diemțçl nav pieejama neviena diskeđu iekârta"
-#: ../../install_steps_interactive.pm_.c:1219
+#: ../../install_steps_interactive.pm_.c:1204
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "Norâdiet diskeđu iekârtu, ko izmanto distetes veidođanai"
-#: ../../install_steps_interactive.pm_.c:1223
+#: ../../install_steps_interactive.pm_.c:1208
#, fuzzy, c-format
msgid "Insert a floppy in %s"
msgstr "Ielieciet disketi iekârtâ %s"
-#: ../../install_steps_interactive.pm_.c:1226
+#: ../../install_steps_interactive.pm_.c:1211
msgid "Creating bootdisk..."
msgstr "Gatavoju sâknçđanas disketi"
-#: ../../install_steps_interactive.pm_.c:1233
+#: ../../install_steps_interactive.pm_.c:1218
msgid "Preparing bootloader..."
msgstr "Sagatavoju sâknçtâju"
-#: ../../install_steps_interactive.pm_.c:1244
+#: ../../install_steps_interactive.pm_.c:1229
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5380,11 +5459,11 @@ msgid ""
" need to use BootX to boot your machine"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1250
+#: ../../install_steps_interactive.pm_.c:1235
msgid "Do you want to use aboot?"
msgstr "Vai vçlaties izmantot aboot?"
-#: ../../install_steps_interactive.pm_.c:1253
+#: ../../install_steps_interactive.pm_.c:1238
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -5392,16 +5471,16 @@ msgstr ""
"Kïûda, instalçjot aboot, \n"
"vai instalçt piespiedu kârtâ pat tad, ja tiks iznîcinâta pirmâ partîcija?"
-#: ../../install_steps_interactive.pm_.c:1260
+#: ../../install_steps_interactive.pm_.c:1245
#, fuzzy
msgid "Installing bootloader"
msgstr "Sâknçtâja instalçđana"
-#: ../../install_steps_interactive.pm_.c:1266
+#: ../../install_steps_interactive.pm_.c:1251
msgid "Installation of bootloader failed. The following error occured:"
msgstr "Sâknçtâja instalçđana neizdevâs. Atklâta đâda kïûda:"
-#: ../../install_steps_interactive.pm_.c:1274
+#: ../../install_steps_interactive.pm_.c:1259
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -5412,17 +5491,17 @@ msgid ""
"At your next boot you should see the bootloader prompt."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1308
+#: ../../install_steps_interactive.pm_.c:1293
#: ../../standalone/drakautoinst_.c:79
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Ielieciet tukđu disketi iekârtâ %s"
-#: ../../install_steps_interactive.pm_.c:1312
+#: ../../install_steps_interactive.pm_.c:1297
msgid "Creating auto install floppy..."
msgstr "Sagatavoju auto instalçđanas disketi"
-#: ../../install_steps_interactive.pm_.c:1323
+#: ../../install_steps_interactive.pm_.c:1308
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -5432,7 +5511,7 @@ msgstr ""
"\n"
"Vai tieđâm vçlaties iziet tûlît?"
-#: ../../install_steps_interactive.pm_.c:1334
+#: ../../install_steps_interactive.pm_.c:1319
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
@@ -5465,15 +5544,15 @@ msgstr ""
"Informâcija par jûsu sistçmas konfigurçđanu ir pieejama Oficiâlâs\n"
"Mandrake Linux rokasgrâmatas pçcinstalçđanas nodaïâ."
-#: ../../install_steps_interactive.pm_.c:1347
+#: ../../install_steps_interactive.pm_.c:1332
msgid "http://www.mandrakelinux.com/en/90errata.php3"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1352
+#: ../../install_steps_interactive.pm_.c:1337
msgid "Generate auto install floppy"
msgstr "Sagatavot auto instalçđanas disketi"
-#: ../../install_steps_interactive.pm_.c:1354
+#: ../../install_steps_interactive.pm_.c:1339
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -5482,15 +5561,15 @@ msgid ""
"You may prefer to replay the installation.\n"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1359
+#: ../../install_steps_interactive.pm_.c:1344
msgid "Automated"
msgstr "Automâtisks"
-#: ../../install_steps_interactive.pm_.c:1359
+#: ../../install_steps_interactive.pm_.c:1344
msgid "Replay"
msgstr "Atkârtot"
-#: ../../install_steps_interactive.pm_.c:1362
+#: ../../install_steps_interactive.pm_.c:1347
msgid "Save packages selection"
msgstr "Saglabât pakotòu izvçli"
@@ -5499,7 +5578,8 @@ msgstr "Saglabât pakotòu izvçli"
msgid "Mandrake Linux Installation %s"
msgstr "Mandrake Linux instalçđana %s"
-#: ../../install_steps_newt.pm_.c:34
+#. -PO This string must fit in a 80-char wide text screen
+#: ../../install_steps_newt.pm_.c:35
msgid ""
" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
msgstr ""
@@ -5519,22 +5599,22 @@ msgstr ""
msgid "Choose a file"
msgstr "Izvçlieties darbîbu"
-#: ../../interactive.pm_.c:317
+#: ../../interactive.pm_.c:320
msgid "Advanced"
msgstr "Izvçrsta"
-#: ../../interactive.pm_.c:318
+#: ../../interactive.pm_.c:321
msgid "Basic"
msgstr ""
-#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:155
-#: ../../printerdrake.pm_.c:1990
+#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:158
+#: ../../printerdrake.pm_.c:2124
msgid "<- Previous"
msgstr "<- Atpakaï"
#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
-#: ../../standalone/drakbackup_.c:3464 ../../standalone/drakbackup_.c:3491
-#: ../../standalone/drakbackup_.c:3517
+#: ../../standalone/drakbackup_.c:4112 ../../standalone/drakbackup_.c:4139
+#: ../../standalone/drakbackup_.c:4169 ../../standalone/drakbackup_.c:4195
#, fuzzy
msgid "Next"
msgstr "Tâlâk ->"
@@ -5602,386 +5682,386 @@ msgstr ""
msgid "Re-submit"
msgstr ""
-#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:152 ../../keyboard.pm_.c:187
msgid "Czech (QWERTZ)"
msgstr "Èehijas (QWERTZ)"
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:153 ../../keyboard.pm_.c:189
msgid "German"
msgstr "Vâcijas"
-#: ../../keyboard.pm_.c:175
+#: ../../keyboard.pm_.c:154
msgid "Dvorak"
msgstr "Dvoraka"
-#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:218
+#: ../../keyboard.pm_.c:155 ../../keyboard.pm_.c:197
msgid "Spanish"
msgstr "Spânijas"
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:156 ../../keyboard.pm_.c:198
msgid "Finnish"
msgstr "Somijas"
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:220
+#: ../../keyboard.pm_.c:157 ../../keyboard.pm_.c:199
msgid "French"
msgstr "Francijas"
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:158 ../../keyboard.pm_.c:231
msgid "Norwegian"
msgstr "Norvçìijas"
-#: ../../keyboard.pm_.c:180
+#: ../../keyboard.pm_.c:159
msgid "Polish"
msgstr "Polijas"
-#: ../../keyboard.pm_.c:181 ../../keyboard.pm_.c:260
+#: ../../keyboard.pm_.c:160 ../../keyboard.pm_.c:239
msgid "Russian"
msgstr "Krievijas"
-#: ../../keyboard.pm_.c:183 ../../keyboard.pm_.c:262
+#: ../../keyboard.pm_.c:162 ../../keyboard.pm_.c:241
msgid "Swedish"
msgstr "Zviedrijas"
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:278
+#: ../../keyboard.pm_.c:163 ../../keyboard.pm_.c:257
msgid "UK keyboard"
msgstr "Apvienotâs Karalistes"
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:279
+#: ../../keyboard.pm_.c:164 ../../keyboard.pm_.c:258
msgid "US keyboard"
msgstr "ASV tastatûra"
-#: ../../keyboard.pm_.c:187
+#: ../../keyboard.pm_.c:166
#, fuzzy
msgid "Albanian"
msgstr "Irânas"
-#: ../../keyboard.pm_.c:188
+#: ../../keyboard.pm_.c:167
msgid "Armenian (old)"
msgstr "Armçnijas (vecâ)"
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:168
msgid "Armenian (typewriter)"
msgstr "Armçnijas (rakstâmmađîna)"
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:169
msgid "Armenian (phonetic)"
msgstr "Armçnijas (fonçtiskâ)"
-#: ../../keyboard.pm_.c:195
+#: ../../keyboard.pm_.c:174
msgid "Azerbaidjani (latin)"
msgstr "Azerbaidțânas (latîòu)"
-#: ../../keyboard.pm_.c:197
+#: ../../keyboard.pm_.c:176
msgid "Belgian"
msgstr "Beïìijas"
-#: ../../keyboard.pm_.c:198
+#: ../../keyboard.pm_.c:177
#, fuzzy
msgid "Bengali"
msgstr "ieslçgt"
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:178
#, fuzzy
msgid "Bulgarian (phonetic)"
msgstr "Armçnijas (fonçtiskâ)"
-#: ../../keyboard.pm_.c:200
+#: ../../keyboard.pm_.c:179
#, fuzzy
msgid "Bulgarian (BDS)"
msgstr "Bulgârijas"
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:180
msgid "Brazilian (ABNT-2)"
msgstr "Brazîlijas (ABNT-2)"
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:183
#, fuzzy
msgid "Bosnian"
msgstr "Igaunijas"
-#: ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:184
msgid "Belarusian"
msgstr "Baltkrievijas"
-#: ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:185
msgid "Swiss (German layout)"
msgstr "Đveices (vâcu izvietojums)"
-#: ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:186
msgid "Swiss (French layout)"
msgstr "Đveices (franèu izvietojums)"
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:188
msgid "Czech (QWERTY)"
msgstr "Èehijas (QWERTY)"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:190
msgid "German (no dead keys)"
msgstr "Vâcijas (bez mçmajiem taustiòiem)"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:191
msgid "Devanagari"
msgstr ""
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:192
msgid "Danish"
msgstr "Dânijas"
-#: ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:193
msgid "Dvorak (US)"
msgstr "Dvoraka (US)"
-#: ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:194
msgid "Dvorak (Norwegian)"
msgstr "Dvoraka (Norvçìijas)"
-#: ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:195
#, fuzzy
msgid "Dvorak (Swedish)"
msgstr "Dvoraka (US)"
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:196
msgid "Estonian"
msgstr "Igaunijas"
-#: ../../keyboard.pm_.c:221
+#: ../../keyboard.pm_.c:200
msgid "Georgian (\"Russian\" layout)"
msgstr "Gruzijas (\"krievu\" izvietojums)"
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:201
msgid "Georgian (\"Latin\" layout)"
msgstr "Gruzijas (\"latîòu\" izvietojums)"
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:202
msgid "Greek"
msgstr "Grieíijas"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:203
msgid "Gujarati"
msgstr ""
-#: ../../keyboard.pm_.c:225
+#: ../../keyboard.pm_.c:204
msgid "Gurmukhi"
msgstr ""
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:205
msgid "Hungarian"
msgstr "Ungârijas"
-#: ../../keyboard.pm_.c:227
+#: ../../keyboard.pm_.c:206
msgid "Croatian"
msgstr "Horvâtijas"
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:207
msgid "Israeli"
msgstr "Izraçlas"
-#: ../../keyboard.pm_.c:229
+#: ../../keyboard.pm_.c:208
msgid "Israeli (Phonetic)"
msgstr "Izraçlas (fonçtiskâ)"
-#: ../../keyboard.pm_.c:230
+#: ../../keyboard.pm_.c:209
msgid "Iranian"
msgstr "Irânas"
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:210
msgid "Icelandic"
msgstr "Islandes"
-#: ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:211
msgid "Italian"
msgstr "Itâlijas"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:212
msgid "Inuktitut"
msgstr ""
-#: ../../keyboard.pm_.c:234
+#: ../../keyboard.pm_.c:213
msgid "Japanese 106 keys"
msgstr "Japânas 106 taistiòi"
-#: ../../keyboard.pm_.c:237
+#: ../../keyboard.pm_.c:216
#, fuzzy
msgid "Korean keyboard"
msgstr "Apvienotâs Karalistes"
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:217
msgid "Latin American"
msgstr "Latîòamerikas"
-#: ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:218
#, fuzzy
msgid "Laotian"
msgstr "Atrađanâs vieta"
-#: ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:219
msgid "Lithuanian AZERTY (old)"
msgstr "Lietuvas AZERTY (vecâ)"
-#: ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:221
msgid "Lithuanian AZERTY (new)"
msgstr "Lietuvas AZERTY (jaunâ)"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:222
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Lietuvas \"numuru rinda\" QWERTY"
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:223
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "Lietuvas \"fonçtiskâ\" QWERTY"
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:224
#, fuzzy
msgid "Latvian"
msgstr "Atrađanâs vieta"
-#: ../../keyboard.pm_.c:246
+#: ../../keyboard.pm_.c:225
msgid "Macedonian"
msgstr "Maíedonijas"
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:226
msgid "Myanmar (Burmese)"
msgstr ""
-#: ../../keyboard.pm_.c:248
+#: ../../keyboard.pm_.c:227
#, fuzzy
msgid "Mongolian (cyrillic)"
msgstr "Azerbaidțânas (kirilica)"
-#: ../../keyboard.pm_.c:249
+#: ../../keyboard.pm_.c:228
msgid "Maltese (UK)"
msgstr ""
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:229
msgid "Maltese (US)"
msgstr ""
-#: ../../keyboard.pm_.c:251
+#: ../../keyboard.pm_.c:230
msgid "Dutch"
msgstr "Dânijas"
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:232
msgid "Polish (qwerty layout)"
msgstr "Polijas (qwerty izvietojums)"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:233
msgid "Polish (qwertz layout)"
msgstr "Polijas (qwertz izvietojums)"
-#: ../../keyboard.pm_.c:255
+#: ../../keyboard.pm_.c:234
msgid "Portuguese"
msgstr "Portugâles"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:235
msgid "Canadian (Quebec)"
msgstr "Kanâdas (Kvebeka)"
-#: ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:237
#, fuzzy
msgid "Romanian (qwertz)"
msgstr "Krievijas (Yawerty)"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:238
#, fuzzy
msgid "Romanian (qwerty)"
msgstr "Krievijas (Yawerty)"
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:240
msgid "Russian (Yawerty)"
msgstr "Krievijas (Yawerty)"
-#: ../../keyboard.pm_.c:263
+#: ../../keyboard.pm_.c:242
msgid "Slovenian"
msgstr "Slovçnijas"
-#: ../../keyboard.pm_.c:264
+#: ../../keyboard.pm_.c:243
msgid "Slovakian (QWERTZ)"
msgstr "Slovâkijas (QWERTZ)"
-#: ../../keyboard.pm_.c:265
+#: ../../keyboard.pm_.c:244
msgid "Slovakian (QWERTY)"
msgstr "Slovâkijas (QWERTY)"
-#: ../../keyboard.pm_.c:267
+#: ../../keyboard.pm_.c:246
#, fuzzy
msgid "Serbian (cyrillic)"
msgstr "Azerbaidțânas (kirilica)"
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:248
msgid "Tamil (Unicode)"
msgstr ""
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:249
msgid "Tamil (TSCII)"
msgstr ""
-#: ../../keyboard.pm_.c:271
+#: ../../keyboard.pm_.c:250
msgid "Thai keyboard"
msgstr "Tai tastatûra"
-#: ../../keyboard.pm_.c:273
+#: ../../keyboard.pm_.c:252
#, fuzzy
msgid "Tajik keyboard"
msgstr "Tai tastatûra"
-#: ../../keyboard.pm_.c:274
+#: ../../keyboard.pm_.c:253
msgid "Turkish (traditional \"F\" model)"
msgstr "Turcijas (tradicionâlais \"F\" modelis)"
-#: ../../keyboard.pm_.c:275
+#: ../../keyboard.pm_.c:254
msgid "Turkish (modern \"Q\" model)"
msgstr "Turcijas (modernais \"Q\" modelis)"
-#: ../../keyboard.pm_.c:277
+#: ../../keyboard.pm_.c:256
msgid "Ukrainian"
msgstr "Ukrainas"
-#: ../../keyboard.pm_.c:280
+#: ../../keyboard.pm_.c:259
msgid "US keyboard (international)"
msgstr "ASV tastatûra (starptautiskâ)"
-#: ../../keyboard.pm_.c:281
+#: ../../keyboard.pm_.c:260
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "Vjetnamas \"numuru rinda\" QWERTY"
-#: ../../keyboard.pm_.c:282
+#: ../../keyboard.pm_.c:261
#, fuzzy
msgid "Yugoslavian (latin)"
msgstr "Dienvidslâvijas (latîòu/kirilicas)"
-#: ../../keyboard.pm_.c:289
+#: ../../keyboard.pm_.c:268
msgid "Right Alt key"
msgstr ""
-#: ../../keyboard.pm_.c:290
+#: ../../keyboard.pm_.c:269
msgid "Both Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:291
+#: ../../keyboard.pm_.c:270
msgid "Control and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:292
+#: ../../keyboard.pm_.c:271
msgid "CapsLock key"
msgstr ""
-#: ../../keyboard.pm_.c:293
+#: ../../keyboard.pm_.c:272
msgid "Ctrl and Alt keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:294
+#: ../../keyboard.pm_.c:273
msgid "Alt and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:295
+#: ../../keyboard.pm_.c:274
msgid "\"Menu\" key"
msgstr ""
-#: ../../keyboard.pm_.c:296
+#: ../../keyboard.pm_.c:275
msgid "Left \"Windows\" key"
msgstr ""
-#: ../../keyboard.pm_.c:297
+#: ../../keyboard.pm_.c:276
msgid "Right \"Windows\" key"
msgstr ""
@@ -6039,11 +6119,11 @@ msgstr "Parasta PS2 Wheel pele"
msgid "GlidePoint"
msgstr "GlidePoint"
-#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:63
+#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:65
msgid "Kensington Thinking Mouse"
msgstr "Kensington Thinking Mouse"
-#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:59
+#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:61
msgid "Genius NetMouse"
msgstr "Genius NetMouse"
@@ -6051,117 +6131,126 @@ msgstr "Genius NetMouse"
msgid "Genius NetScroll"
msgstr "Genius NetScroll"
-#: ../../mouse.pm_.c:43 ../../mouse.pm_.c:68
+#: ../../mouse.pm_.c:39 ../../mouse.pm_.c:48
+#, fuzzy
+msgid "Microsoft Explorer"
+msgstr "Microsoft IntelliMouse"
+
+#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:70
#, fuzzy
msgid "1 button"
msgstr "2 pogas"
-#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:51
+#: ../../mouse.pm_.c:45 ../../mouse.pm_.c:53
msgid "Generic 2 Button Mouse"
msgstr "Parasta 2 pogu pele"
-#: ../../mouse.pm_.c:46
+#: ../../mouse.pm_.c:47
msgid "Wheel"
msgstr "Ritenis"
-#: ../../mouse.pm_.c:49
+#: ../../mouse.pm_.c:51
msgid "serial"
msgstr "seriâla"
-#: ../../mouse.pm_.c:52
+#: ../../mouse.pm_.c:54
msgid "Generic 3 Button Mouse"
msgstr "Parasta 3 pogu pele"
-#: ../../mouse.pm_.c:53
+#: ../../mouse.pm_.c:55
msgid "Microsoft IntelliMouse"
msgstr "Microsoft IntelliMouse"
-#: ../../mouse.pm_.c:54
+#: ../../mouse.pm_.c:56
msgid "Logitech MouseMan"
msgstr "Logitech MouseMan"
-#: ../../mouse.pm_.c:55
+#: ../../mouse.pm_.c:57
msgid "Mouse Systems"
msgstr "Mouse Systems"
-#: ../../mouse.pm_.c:57
+#: ../../mouse.pm_.c:59
msgid "Logitech CC Series"
msgstr "Logitech CC Series"
-#: ../../mouse.pm_.c:58
+#: ../../mouse.pm_.c:60
msgid "Logitech MouseMan+/FirstMouse+"
msgstr "Logitech MouseMan+/FirstMouse+"
-#: ../../mouse.pm_.c:60
+#: ../../mouse.pm_.c:62
msgid "MM Series"
msgstr "MM Series"
-#: ../../mouse.pm_.c:61
+#: ../../mouse.pm_.c:63
msgid "MM HitTablet"
msgstr "MM HitTablet"
-#: ../../mouse.pm_.c:62
+#: ../../mouse.pm_.c:64
msgid "Logitech Mouse (serial, old C7 type)"
msgstr "Logitech Mouse (seriâla, vecs C7 tips)"
-#: ../../mouse.pm_.c:66
+#: ../../mouse.pm_.c:68
msgid "busmouse"
msgstr "busmouse"
-#: ../../mouse.pm_.c:69
+#: ../../mouse.pm_.c:71
msgid "2 buttons"
msgstr "2 pogas"
-#: ../../mouse.pm_.c:70
+#: ../../mouse.pm_.c:72
msgid "3 buttons"
msgstr "3 pogas"
-#: ../../mouse.pm_.c:73
+#: ../../mouse.pm_.c:75
msgid "none"
msgstr "neviens"
-#: ../../mouse.pm_.c:75
+#: ../../mouse.pm_.c:77
msgid "No mouse"
msgstr "Nav peles"
-#: ../../mouse.pm_.c:445
+#: ../../mouse.pm_.c:482
msgid "Please test the mouse"
msgstr "Lûdzu notestçjiet peli"
-#: ../../mouse.pm_.c:446
+#: ../../mouse.pm_.c:483
msgid "To activate the mouse,"
msgstr "Lai aktivizçtu peli,"
-#: ../../mouse.pm_.c:447
+#: ../../mouse.pm_.c:484
msgid "MOVE YOUR WHEEL!"
msgstr "PAKUSTINIET RITENI!"
-#: ../../my_gtk.pm_.c:156
+#: ../../my_gtk.pm_.c:64
+msgid "-adobe-utopia-regular-r-*-*-25-*-*-*-p-*-iso8859-*,*-r-*"
+msgstr ""
+
+#: ../../my_gtk.pm_.c:159
#, fuzzy
msgid "Finish"
msgstr "Somijas"
-#: ../../my_gtk.pm_.c:156 ../../printerdrake.pm_.c:1992
+#: ../../my_gtk.pm_.c:159 ../../printerdrake.pm_.c:2126
msgid "Next ->"
msgstr "Tâlâk ->"
-#: ../../my_gtk.pm_.c:284
+#: ../../my_gtk.pm_.c:287
msgid "Is this correct?"
msgstr "Vai tas ir pareizi?"
-#: ../../my_gtk.pm_.c:356 ../../services.pm_.c:222
+#: ../../my_gtk.pm_.c:359 ../../services.pm_.c:222
msgid "Info"
msgstr "Info"
-#: ../../my_gtk.pm_.c:377
+#: ../../my_gtk.pm_.c:380
msgid "Expand Tree"
msgstr "Izvçrst koku"
-#: ../../my_gtk.pm_.c:378
+#: ../../my_gtk.pm_.c:381
msgid "Collapse Tree"
msgstr "Sakïaut koku"
-#: ../../my_gtk.pm_.c:379
+#: ../../my_gtk.pm_.c:382
msgid "Toggle between flat and group sorted"
msgstr "Sakârtots vienâ sarakstâ vai pa grupâm"
@@ -6199,6 +6288,68 @@ msgstr "izmantot pppoe"
msgid "use pptp"
msgstr "izmantot pptp"
+#: ../../network/drakfirewall.pm_.c:12
+#, fuzzy
+msgid "Web Server"
+msgstr "serveris"
+
+#: ../../network/drakfirewall.pm_.c:17
+#, fuzzy
+msgid "Domain Name Server"
+msgstr "Domçna nosaukums"
+
+#: ../../network/drakfirewall.pm_.c:32
+#, fuzzy
+msgid "Mail Server"
+msgstr "Serveris, Datubâzes"
+
+#: ../../network/drakfirewall.pm_.c:37
+#, fuzzy
+msgid "POP and IMAP Server"
+msgstr "serveris"
+
+#: ../../network/drakfirewall.pm_.c:111
+#, fuzzy
+msgid "No network card"
+msgstr "tîkla karte nav atrasta"
+
+#: ../../network/drakfirewall.pm_.c:129
+msgid ""
+"drakfirewall configurator\n"
+"\n"
+"This configures a personal firewall for this Mandrake Linux machine.\n"
+"For a powerful dedicated firewall solution, please look to the\n"
+"specialized MandrakeSecurity Firewall distribution."
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:147
+msgid "Which services would you like to allow the Internet to connect to?"
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:148
+msgid ""
+"You can enter miscellaneous ports. \n"
+"Valid examples are: 139/tcp 139/udp.\n"
+"Have a look at /etc/services for information."
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:154
+#, c-format
+msgid ""
+"Invalid port given: %s.\n"
+"The proper format is \"port/tcp\" or \"port/udp\", \n"
+"where port is between 1 and 65535."
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:162
+msgid "Everything (no firewall)"
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:164
+#, fuzzy
+msgid "Other ports"
+msgstr "Pârbaudît portus"
+
#: ../../network/ethernet.pm_.c:37
msgid ""
"Which dhcp client do you want to use?\n"
@@ -6215,7 +6366,7 @@ msgstr ""
"Jûsu sistçmâ nav atrasts neviens ethernet tîkla adapteris.\n"
"Nevaru uzstâdît đo pieslçguma veidu."
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:247
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:240
msgid "Choose the network interface"
msgstr "Izvçlieties tîkla interfeisu"
@@ -6229,7 +6380,7 @@ msgstr ""
msgid "no network card found"
msgstr "tîkla karte nav atrasta"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:366
msgid "Configuring network"
msgstr "Konfigurçju tîklu"
@@ -6245,7 +6396,7 @@ msgstr ""
"Resursa vârdam ir jâbût pilnam kvalificçtam resursa vârdam,\n"
"piemçram, ``mybox.mylab.myco.com''."
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:370
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:371
msgid "Host name"
msgstr "Resursa vârds:"
@@ -6539,13 +6690,13 @@ msgstr "Izvçlieties konfigurçjamo profilu"
msgid "Use auto detection"
msgstr ""
-#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2930
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:3151
#: ../../standalone/drakconnect_.c:274 ../../standalone/drakconnect_.c:277
#: ../../standalone/drakfloppy_.c:145
msgid "Expert Mode"
msgstr "Eksperta rețîms"
-#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:283
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:386
msgid "Detecting devices..."
msgstr "Noskaidroju ierîces..."
@@ -6704,11 +6855,11 @@ msgstr "Automâtisks IP"
msgid "Start at boot"
msgstr "Sistçmdisketes radîđana"
-#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:753
+#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:860
msgid "IP address should be in format 1.2.3.4"
msgstr "IP adreses formâtam jâbût 1.2.3.4"
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:367
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -6720,43 +6871,55 @@ msgstr ""
"piemçram, ``mybox.mylab.myco.com''.\n"
"Jûs varat ievadît arî vârtejas IP adresi, ja tâda ir"
-#: ../../network/network.pm_.c:371
+#: ../../network/network.pm_.c:372
msgid "DNS server"
msgstr "DNS serveris"
-#: ../../network/network.pm_.c:372
+#: ../../network/network.pm_.c:373
#, c-format
msgid "Gateway (e.g. %s)"
msgstr ""
-#: ../../network/network.pm_.c:374
+#: ../../network/network.pm_.c:375
msgid "Gateway device"
msgstr "Vârtejas ierîce"
-#: ../../network/network.pm_.c:386
+#: ../../network/network.pm_.c:387
msgid "Proxies configuration"
msgstr "Proxy serveru konfigurâcija"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:388
msgid "HTTP proxy"
msgstr "HTTP proxy"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:389
msgid "FTP proxy"
msgstr "FTP proxy"
-#: ../../network/network.pm_.c:389
+#: ../../network/network.pm_.c:390
msgid "Track network card id (useful for laptops)"
msgstr ""
-#: ../../network/network.pm_.c:392
+#: ../../network/network.pm_.c:393
msgid "Proxy should be http://..."
msgstr "Proxy bûtu jâbût http://..."
-#: ../../network/network.pm_.c:393
+#: ../../network/network.pm_.c:394
msgid "Proxy should be ftp://..."
msgstr "Proxy bûtu jâbût ftp://..."
+#: ../../network/shorewall.pm_.c:24
+msgid "Firewalling configuration detected!"
+msgstr "Tika atklâta ugunsmûra konfigurâcija!"
+
+#: ../../network/shorewall.pm_.c:25
+msgid ""
+"Warning! An existing firewalling configuration has been detected. You may "
+"need some manual fix after installation."
+msgstr ""
+"Brîdinâjums! Ir atklâta eksistçjođa ugunsmûra konfigurâcija. Pçc "
+"instalçđanas jums varbût vajadzçs patstâvîgi pielabot konfigurâciju."
+
#: ../../network/tools.pm_.c:41
msgid "Internet configuration"
msgstr "Interneta konfigurâcija"
@@ -6865,15 +7028,15 @@ msgstr "Konta parole"
msgid "United Kingdom"
msgstr ""
-#: ../../partition_table.pm_.c:606
+#: ../../partition_table.pm_.c:602
msgid "mount failed: "
msgstr "montçđana neizdevâs: "
-#: ../../partition_table.pm_.c:670
+#: ../../partition_table.pm_.c:666
msgid "Extended partition not supported on this platform"
msgstr "Đai platformai paplađinâtâ partîcija nav pieejama"
-#: ../../partition_table.pm_.c:688
+#: ../../partition_table.pm_.c:684
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
@@ -6883,21 +7046,21 @@ msgstr ""
"Vienîgais risinâjums ir pârvietot primâras partîcijas tâ, lai caurums "
"atrastos blakus paplađinâtajâm partîcijâm"
-#: ../../partition_table.pm_.c:778
+#: ../../partition_table.pm_.c:774
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "Atjaunođana no faila %s neizdevâs: %s"
-#: ../../partition_table.pm_.c:780
+#: ../../partition_table.pm_.c:776
msgid "Bad backup file"
msgstr "Slikts rezerves kopijas fails"
-#: ../../partition_table.pm_.c:802
+#: ../../partition_table.pm_.c:798
#, c-format
msgid "Error writing to file %s"
msgstr "Kïûda, ierakstot failâ %s"
-#: ../../partition_table/raw.pm_.c:187
+#: ../../partition_table/raw.pm_.c:189
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
@@ -6940,157 +7103,162 @@ msgstr ""
msgid "PDQ - Print, Don't Queue"
msgstr ""
-#: ../../printer.pm_.c:35 ../../printer.pm_.c:854
+#: ../../printer.pm_.c:34 ../../printer.pm_.c:1125
msgid "CUPS"
msgstr ""
-#: ../../printer.pm_.c:36
+#: ../../printer.pm_.c:35
msgid "LPRng"
msgstr ""
-#: ../../printer.pm_.c:37
+#: ../../printer.pm_.c:36
msgid "LPD"
msgstr ""
-#: ../../printer.pm_.c:38
+#: ../../printer.pm_.c:37
msgid "PDQ"
msgstr ""
-#: ../../printer.pm_.c:50
+#: ../../printer.pm_.c:49
msgid "Local printer"
msgstr "Lokâls printeris"
-#: ../../printer.pm_.c:51
+#: ../../printer.pm_.c:50
msgid "Remote printer"
msgstr "Attâls printeris"
-#: ../../printer.pm_.c:52
+#: ../../printer.pm_.c:51
#, fuzzy
msgid "Printer on remote CUPS server"
msgstr "Attâls CUPS serveris"
-#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:776
+#: ../../printer.pm_.c:52 ../../printerdrake.pm_.c:883
#, fuzzy
msgid "Printer on remote lpd server"
msgstr "Attâls lpd serveris"
-#: ../../printer.pm_.c:54
+#: ../../printer.pm_.c:53
msgid "Network printer (TCP/Socket)"
msgstr "Tîkla printeris (TCP/Socket)"
-#: ../../printer.pm_.c:55
+#: ../../printer.pm_.c:54
#, fuzzy
msgid "Printer on SMB/Windows 95/98/NT server"
msgstr "SMB/Windows 95/98/NT"
-#: ../../printer.pm_.c:56
+#: ../../printer.pm_.c:55
#, fuzzy
msgid "Printer on NetWare server"
msgstr "Printera serveris"
-#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:780
+#: ../../printer.pm_.c:56 ../../printerdrake.pm_.c:887
#, fuzzy
msgid "Enter a printer device URI"
msgstr "Printera ierîces URI"
-#: ../../printer.pm_.c:58
+#: ../../printer.pm_.c:57
msgid "Pipe job into a command"
msgstr ""
-#: ../../printer.pm_.c:487 ../../printer.pm_.c:678 ../../printer.pm_.c:1000
-#: ../../printerdrake.pm_.c:2070 ../../printerdrake.pm_.c:3189
+#: ../../printer.pm_.c:324 ../../printer.pm_.c:366 ../../printer.pm_.c:533
+#, fuzzy
+msgid "Unknown Model"
+msgstr "nezinâms"
+
+#: ../../printer.pm_.c:735 ../../printer.pm_.c:926 ../../printer.pm_.c:1318
+#: ../../printerdrake.pm_.c:2260 ../../printerdrake.pm_.c:3414
msgid "Unknown model"
msgstr ""
-#: ../../printer.pm_.c:515
+#: ../../printer.pm_.c:763
#, fuzzy
msgid "Local Printers"
msgstr "Lokâls printeris"
-#: ../../printer.pm_.c:517 ../../printer.pm_.c:855
+#: ../../printer.pm_.c:765 ../../printer.pm_.c:1126
#, fuzzy
msgid "Remote Printers"
msgstr "Attâls printeris"
-#: ../../printer.pm_.c:524 ../../printerdrake.pm_.c:301
+#: ../../printer.pm_.c:772 ../../printerdrake.pm_.c:404
#, c-format
msgid " on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:527 ../../printerdrake.pm_.c:303
+#: ../../printer.pm_.c:775 ../../printerdrake.pm_.c:406
#, c-format
msgid ", USB printer \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:532
+#: ../../printer.pm_.c:780
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:535
+#: ../../printer.pm_.c:783
msgid ", multi-function device on USB"
msgstr ""
-#: ../../printer.pm_.c:537
+#: ../../printer.pm_.c:785
msgid ", multi-function device on HP JetDirect"
msgstr ""
-#: ../../printer.pm_.c:539
+#: ../../printer.pm_.c:787
msgid ", multi-function device"
msgstr ""
-#: ../../printer.pm_.c:542
+#: ../../printer.pm_.c:790
#, fuzzy, c-format
msgid ", printing to %s"
msgstr "Kïûda, ierakstot failâ %s"
-#: ../../printer.pm_.c:544
+#: ../../printer.pm_.c:792
#, c-format
msgid " on LPD server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:546
+#: ../../printer.pm_.c:794
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ""
-#: ../../printer.pm_.c:550
+#: ../../printer.pm_.c:798
#, c-format
msgid " on SMB/Windows server \"%s\", share \"%s\""
msgstr ""
-#: ../../printer.pm_.c:554
+#: ../../printer.pm_.c:802
#, c-format
msgid " on Novell server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:556
+#: ../../printer.pm_.c:804
#, c-format
msgid ", using command %s"
msgstr ""
-#: ../../printer.pm_.c:675 ../../printerdrake.pm_.c:1540
+#: ../../printer.pm_.c:923 ../../printerdrake.pm_.c:1656
msgid "Raw printer (No driver)"
msgstr ""
-#: ../../printer.pm_.c:824
+#: ../../printer.pm_.c:1095
#, fuzzy, c-format
msgid "(on %s)"
msgstr "(modulis %s)"
-#: ../../printer.pm_.c:826
+#: ../../printer.pm_.c:1097
msgid "(on this machine)"
msgstr ""
-#: ../../printer.pm_.c:851
+#: ../../printer.pm_.c:1122
#, fuzzy, c-format
msgid "On CUPS server \"%s\""
msgstr "CUPS servera IP"
-#: ../../printer.pm_.c:857 ../../printerdrake.pm_.c:2851
-#: ../../printerdrake.pm_.c:2862 ../../printerdrake.pm_.c:3078
-#: ../../printerdrake.pm_.c:3130 ../../printerdrake.pm_.c:3156
-#: ../../printerdrake.pm_.c:3326 ../../printerdrake.pm_.c:3328
+#: ../../printer.pm_.c:1128 ../../printerdrake.pm_.c:3071
+#: ../../printerdrake.pm_.c:3082 ../../printerdrake.pm_.c:3303
+#: ../../printerdrake.pm_.c:3355 ../../printerdrake.pm_.c:3381
+#: ../../printerdrake.pm_.c:3556 ../../printerdrake.pm_.c:3558
msgid " (Default)"
msgstr " (Noklusçts)"
@@ -7117,12 +7285,12 @@ msgstr ""
msgid "Printer auto-detection (Local, TCP/Socket, and SMB printers)"
msgstr ""
-#: ../../printerdrake.pm_.c:84 ../../printerdrake.pm_.c:2914
+#: ../../printerdrake.pm_.c:84 ../../printerdrake.pm_.c:3135
#, fuzzy
msgid "CUPS configuration"
msgstr "LAN konfigurâcija"
-#: ../../printerdrake.pm_.c:85 ../../printerdrake.pm_.c:2915
+#: ../../printerdrake.pm_.c:85 ../../printerdrake.pm_.c:3136
#, fuzzy
msgid "Specify CUPS server"
msgstr "Attâls CUPS serveris"
@@ -7153,7 +7321,7 @@ msgstr ""
msgid "The IP address should look like 192.168.1.20"
msgstr "IP adreses formâtam jâbût 1.2.3.4"
-#: ../../printerdrake.pm_.c:95 ../../printerdrake.pm_.c:987
+#: ../../printerdrake.pm_.c:95 ../../printerdrake.pm_.c:1094
#, fuzzy
msgid "The port number should be an integer!"
msgstr "Porta numuram ir jâbût skaitlim"
@@ -7162,7 +7330,7 @@ msgstr "Porta numuram ir jâbût skaitlim"
msgid "CUPS server IP"
msgstr "CUPS servera IP"
-#: ../../printerdrake.pm_.c:103 ../../printerdrake.pm_.c:1007
+#: ../../printerdrake.pm_.c:103 ../../printerdrake.pm_.c:1114
msgid "Port"
msgstr "Ports"
@@ -7171,13 +7339,130 @@ msgstr "Ports"
msgid "Automatic CUPS configuration"
msgstr "Sâknçđanas stila konfigurçđana"
-#: ../../printerdrake.pm_.c:183 ../../printerdrake.pm_.c:192
-#: ../../printerdrake.pm_.c:2897 ../../printerdrake.pm_.c:3017
+#: ../../printerdrake.pm_.c:177 ../../printerdrake.pm_.c:247
+#: ../../printerdrake.pm_.c:1529 ../../printerdrake.pm_.c:1533
+#: ../../printerdrake.pm_.c:1651 ../../printerdrake.pm_.c:2203
+#: ../../printerdrake.pm_.c:2356 ../../printerdrake.pm_.c:2415
+#: ../../printerdrake.pm_.c:2488 ../../printerdrake.pm_.c:2509
+#: ../../printerdrake.pm_.c:2699 ../../printerdrake.pm_.c:2740
+#: ../../printerdrake.pm_.c:2745 ../../printerdrake.pm_.c:2779
+#: ../../printerdrake.pm_.c:2784 ../../printerdrake.pm_.c:2821
+#: ../../printerdrake.pm_.c:2874 ../../printerdrake.pm_.c:2894
+#: ../../printerdrake.pm_.c:2908 ../../printerdrake.pm_.c:2942
+#: ../../printerdrake.pm_.c:2988 ../../printerdrake.pm_.c:3006
+#: ../../printerdrake.pm_.c:3095 ../../printerdrake.pm_.c:3169
+#: ../../printerdrake.pm_.c:3471 ../../printerdrake.pm_.c:3526
+#: ../../printerdrake.pm_.c:3579 ../../standalone/printerdrake_.c:57
+#, fuzzy
+msgid "Printerdrake"
+msgstr "Printeris"
+
+#: ../../printerdrake.pm_.c:178
+#, fuzzy
+msgid "Checking your system..."
+msgstr "Kuru drukâđanas sistçmu vçlaties izmantot?"
+
+#: ../../printerdrake.pm_.c:186
+msgid ""
+"There are no printers found which are directly connected to your machine"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:198
+#, fuzzy
+msgid ""
+"The following printers\n"
+"\n"
+msgstr "Tiks noòemtas sekojođas pakotnes"
+
+#: ../../printerdrake.pm_.c:199
+#, fuzzy
+msgid ""
+"The following printer\n"
+"\n"
+msgstr "Tiks noòemtas sekojođas pakotnes"
+
+#: ../../printerdrake.pm_.c:201
+msgid ""
+"\n"
+"and one unknown printer are "
+msgstr ""
+
+#: ../../printerdrake.pm_.c:203
+#, c-format
+msgid ""
+"\n"
+"and %d unknown printers are "
+msgstr ""
+
+#: ../../printerdrake.pm_.c:207
+msgid ""
+"\n"
+"are "
+msgstr ""
+
+#: ../../printerdrake.pm_.c:208
+msgid ""
+"\n"
+"is "
+msgstr ""
+
+#: ../../printerdrake.pm_.c:210
+#, fuzzy
+msgid "directly connected to your system"
+msgstr "Jûsu sistçmâ nav tîkla adaptera!"
+
+#: ../../printerdrake.pm_.c:213
+msgid ""
+"\n"
+"There is one unknown printer directly connected to your system"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:215
+#, c-format
+msgid ""
+"\n"
+"There are %d unknown printers directly connected to your system"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:221
+#, fuzzy
+msgid " (Make sure that all your printers are connected and turned on).\n"
+msgstr "Lûdzu norâdiet, kuram seriâlajam portam ir pieslçgts modçms."
+
+#: ../../printerdrake.pm_.c:235
+msgid ""
+"Do you want to enable printing on the printers mentioned above or on "
+"printers in the local network?\n"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:236
+#, fuzzy
+msgid "Do you want to enable printing on printers in the local network?\n"
+msgstr "Vai vçlaties izmçìinât printeri?"
+
+#: ../../printerdrake.pm_.c:238
+#, fuzzy
+msgid "Do you want to enable printing on the printers mentioned above?\n"
+msgstr "Vai vçlaties startçt pieslçgumu palaiđanas laikâ?"
+
+#: ../../printerdrake.pm_.c:239
+msgid "Are you sure that you want to set up printing on this machine?\n"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:240
+#, c-format
+msgid ""
+"NOTE: Depending on the printer model and the printing system up to %d MB of "
+"additional software will be installed."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:269 ../../printerdrake.pm_.c:278
+#: ../../printerdrake.pm_.c:3117 ../../printerdrake.pm_.c:3242
#, fuzzy
msgid "Add a new printer"
msgstr "Nav printera"
-#: ../../printerdrake.pm_.c:184
+#: ../../printerdrake.pm_.c:270
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7190,7 +7475,7 @@ msgid ""
"connection types."
msgstr ""
-#: ../../printerdrake.pm_.c:193
+#: ../../printerdrake.pm_.c:280
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7199,7 +7484,7 @@ msgid ""
"computer, connected directly to the network or to a remote Windows machine.\n"
"\n"
"If you have printer(s) connected to this machine, Please plug it/them in on "
-"this computer and turn it/them on so that they can be auto-detected. Also "
+"this computer and turn it/them on so that it/they can be auto-detected. Also "
"your network printer(s) and you Windows machines must be connected and "
"turned on.\n"
"\n"
@@ -7212,7 +7497,22 @@ msgid ""
"want to set up your printer(s) now."
msgstr ""
-#: ../../printerdrake.pm_.c:202
+#: ../../printerdrake.pm_.c:289 ../../printerdrake.pm_.c:306
+msgid ""
+"\n"
+"Welcome to the Printer Setup Wizard\n"
+"\n"
+"This wizard will help you to install your printer(s) connected to this "
+"computer.\n"
+"\n"
+"If you have printer(s) connected to this machine, Please plug it/them in on "
+"this computer and turn it/them on so that it/they can be auto-detected.\n"
+"\n"
+" Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
+"want to set up your printer(s) now."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:297
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7221,7 +7521,7 @@ msgid ""
"computer or connected directly to the network.\n"
"\n"
"If you have printer(s) connected to this machine, Please plug it/them in on "
-"this computer and turn it/them on so that they can be auto-detected. Also "
+"this computer and turn it/them on so that it/they can be auto-detected. Also "
"your network printer(s) must be connected and turned on.\n"
"\n"
"Note that auto-detecting printers on the network takes longer than the auto-"
@@ -7232,26 +7532,26 @@ msgid ""
"want to set up your printer(s) now."
msgstr ""
-#: ../../printerdrake.pm_.c:213
+#: ../../printerdrake.pm_.c:315
#, fuzzy
msgid "Auto-detect printers connected to this machine"
msgstr "Attâls printeris"
-#: ../../printerdrake.pm_.c:215
+#: ../../printerdrake.pm_.c:318
msgid "Auto-detect printers connected directly to the local network"
msgstr ""
-#: ../../printerdrake.pm_.c:218
+#: ../../printerdrake.pm_.c:321
msgid "Auto-detect printers connected to machines running Microsoft Windows"
msgstr ""
-#: ../../printerdrake.pm_.c:245 ../../printerdrake.pm_.c:459
-#: ../../printerdrake.pm_.c:484
+#: ../../printerdrake.pm_.c:348 ../../printerdrake.pm_.c:562
+#: ../../printerdrake.pm_.c:587
#, fuzzy
msgid "Local Printer"
msgstr "Lokâls printeris"
-#: ../../printerdrake.pm_.c:246
+#: ../../printerdrake.pm_.c:349
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -7265,50 +7565,50 @@ msgid ""
"Center."
msgstr ""
-#: ../../printerdrake.pm_.c:283 ../../printerdrake.pm_.c:474
-#: ../../printerdrake.pm_.c:683 ../../printerdrake.pm_.c:923
+#: ../../printerdrake.pm_.c:386 ../../printerdrake.pm_.c:577
+#: ../../printerdrake.pm_.c:790 ../../printerdrake.pm_.c:1030
#, fuzzy
msgid "Printer auto-detection"
msgstr "Attâls printeris"
-#: ../../printerdrake.pm_.c:305
+#: ../../printerdrake.pm_.c:408
#, c-format
msgid ", network printer \"%s\", port %s"
msgstr ""
-#: ../../printerdrake.pm_.c:307
+#: ../../printerdrake.pm_.c:410
#, fuzzy, c-format
msgid ", printer \"%s\" on SMB/Windows server \"%s\""
msgstr "SMB/Windows 95/98/NT"
-#: ../../printerdrake.pm_.c:313
+#: ../../printerdrake.pm_.c:416
#, fuzzy, c-format
msgid "Detected %s"
msgstr "atklâts %s"
-#: ../../printerdrake.pm_.c:317 ../../printerdrake.pm_.c:348
-#: ../../printerdrake.pm_.c:367
+#: ../../printerdrake.pm_.c:420 ../../printerdrake.pm_.c:451
+#: ../../printerdrake.pm_.c:470
#, c-format
msgid "Printer on parallel port \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:319 ../../printerdrake.pm_.c:350
-#: ../../printerdrake.pm_.c:372
+#: ../../printerdrake.pm_.c:422 ../../printerdrake.pm_.c:453
+#: ../../printerdrake.pm_.c:475
#, c-format
msgid "USB printer \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:321
+#: ../../printerdrake.pm_.c:424
#, fuzzy, c-format
msgid "Network printer \"%s\", port %s"
msgstr "Tîkla printeris (TCP/Socket)"
-#: ../../printerdrake.pm_.c:323
+#: ../../printerdrake.pm_.c:426
#, fuzzy, c-format
msgid "Printer \"%s\" on SMB/Windows server \"%s\""
msgstr "SMB/Windows 95/98/NT"
-#: ../../printerdrake.pm_.c:460
+#: ../../printerdrake.pm_.c:563
msgid ""
"No local printer found! To manually install a printer enter a device name/"
"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
@@ -7316,34 +7616,34 @@ msgid ""
"printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:464
+#: ../../printerdrake.pm_.c:567
#, fuzzy
msgid "You must enter a device or file name!"
msgstr "Printera ierîces URI"
-#: ../../printerdrake.pm_.c:475
+#: ../../printerdrake.pm_.c:578
#, fuzzy
msgid "No printer found!"
msgstr "Lokâls printeris"
-#: ../../printerdrake.pm_.c:485
+#: ../../printerdrake.pm_.c:588
#, fuzzy
msgid "Available printers"
msgstr "Lokâls printeris"
-#: ../../printerdrake.pm_.c:489
+#: ../../printerdrake.pm_.c:592
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:490
+#: ../../printerdrake.pm_.c:593
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up or enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:492
+#: ../../printerdrake.pm_.c:595
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
@@ -7351,7 +7651,7 @@ msgid ""
"configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:493
+#: ../../printerdrake.pm_.c:596
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
@@ -7359,38 +7659,38 @@ msgid ""
"customized printer configuration, turn on \"Manual configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:495
+#: ../../printerdrake.pm_.c:598
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:496
+#: ../../printerdrake.pm_.c:599
#, fuzzy
msgid "Please choose the port where your printer is connected to."
msgstr "Lûdzu norâdiet, kuram seriâlajam portam ir pieslçgts modçms."
-#: ../../printerdrake.pm_.c:498
+#: ../../printerdrake.pm_.c:601
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:503
+#: ../../printerdrake.pm_.c:606
#, fuzzy
msgid "You must choose/enter a printer/device!"
msgstr "Printera ierîces URI"
-#: ../../printerdrake.pm_.c:523
+#: ../../printerdrake.pm_.c:626
#, fuzzy
msgid "Manual configuration"
msgstr "Konfigurâcija"
-#: ../../printerdrake.pm_.c:577
+#: ../../printerdrake.pm_.c:680
msgid "Remote lpd Printer Options"
msgstr "Attâla lpd printera opcijas"
-#: ../../printerdrake.pm_.c:578
+#: ../../printerdrake.pm_.c:681
#, fuzzy
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
@@ -7400,51 +7700,51 @@ msgstr ""
"printera servera resursa vârds un tâs servera rindas\n"
"nosaukums, kurai jâadresç drukas uzdevumi."
-#: ../../printerdrake.pm_.c:579
+#: ../../printerdrake.pm_.c:682
#, fuzzy
msgid "Remote host name"
msgstr "Attâlâ resursa vârds"
-#: ../../printerdrake.pm_.c:580
+#: ../../printerdrake.pm_.c:683
#, fuzzy
msgid "Remote printer name"
msgstr "Attâls printeris"
-#: ../../printerdrake.pm_.c:583
+#: ../../printerdrake.pm_.c:686
#, fuzzy
msgid "Remote host name missing!"
msgstr "Attâlâ resursa vârds"
-#: ../../printerdrake.pm_.c:587
+#: ../../printerdrake.pm_.c:690
#, fuzzy
msgid "Remote printer name missing!"
msgstr "Attâlâ resursa vârds"
-#: ../../printerdrake.pm_.c:609 ../../printerdrake.pm_.c:1119
+#: ../../printerdrake.pm_.c:712 ../../printerdrake.pm_.c:1225
#, fuzzy, c-format
msgid "Detected model: %s %s"
msgstr "atklâts %s"
-#: ../../printerdrake.pm_.c:683 ../../printerdrake.pm_.c:923
+#: ../../printerdrake.pm_.c:790 ../../printerdrake.pm_.c:1030
#, fuzzy
msgid "Scanning network..."
msgstr "Izmçìinu pieslçgumu..."
-#: ../../printerdrake.pm_.c:692 ../../printerdrake.pm_.c:713
+#: ../../printerdrake.pm_.c:799 ../../printerdrake.pm_.c:820
#, c-format
msgid ", printer \"%s\" on server \"%s\""
msgstr ""
-#: ../../printerdrake.pm_.c:695 ../../printerdrake.pm_.c:716
+#: ../../printerdrake.pm_.c:802 ../../printerdrake.pm_.c:823
#, fuzzy, c-format
msgid "Printer \"%s\" on server \"%s\""
msgstr "Atslçdzu tîklu"
-#: ../../printerdrake.pm_.c:736
+#: ../../printerdrake.pm_.c:843
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "SMB (Windows 9x/NT) printera opcijas"
-#: ../../printerdrake.pm_.c:737
+#: ../../printerdrake.pm_.c:844
#, fuzzy
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
@@ -7458,46 +7758,46 @@ msgstr ""
"koplietojuma vârds un atbilstođs lietotâja vârds, parole un\n"
"darba grupas informâcija."
-#: ../../printerdrake.pm_.c:738
+#: ../../printerdrake.pm_.c:845
msgid ""
" If the desired printer was auto-detected, simply choose it from the list "
"and then add user name, password, and/or workgroup if needed."
msgstr ""
-#: ../../printerdrake.pm_.c:739
+#: ../../printerdrake.pm_.c:846
msgid "SMB server host"
msgstr "SMB servera resurss"
-#: ../../printerdrake.pm_.c:740
+#: ../../printerdrake.pm_.c:847
msgid "SMB server IP"
msgstr "SMB servera IP"
-#: ../../printerdrake.pm_.c:741
+#: ../../printerdrake.pm_.c:848
msgid "Share name"
msgstr "Koplietojuma vârds"
-#: ../../printerdrake.pm_.c:744
+#: ../../printerdrake.pm_.c:851
msgid "Workgroup"
msgstr "Darba grupa"
-#: ../../printerdrake.pm_.c:746
+#: ../../printerdrake.pm_.c:853
#, fuzzy
msgid "Auto-detected"
msgstr "Attâls printeris"
-#: ../../printerdrake.pm_.c:757
+#: ../../printerdrake.pm_.c:864
msgid "Either the server name or the server's IP must be given!"
msgstr ""
-#: ../../printerdrake.pm_.c:761
+#: ../../printerdrake.pm_.c:868
msgid "Samba share name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:767
+#: ../../printerdrake.pm_.c:874
msgid "SECURITY WARNING!"
msgstr ""
-#: ../../printerdrake.pm_.c:768
+#: ../../printerdrake.pm_.c:875
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -7521,7 +7821,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:778
+#: ../../printerdrake.pm_.c:885
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -7530,7 +7830,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:781
+#: ../../printerdrake.pm_.c:888
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
@@ -7538,11 +7838,11 @@ msgid ""
"Do you really want to continue setting up this printer as you are doing now?"
msgstr ""
-#: ../../printerdrake.pm_.c:853
+#: ../../printerdrake.pm_.c:960
msgid "NetWare Printer Options"
msgstr "NetWare printera opcijas"
-#: ../../printerdrake.pm_.c:854
+#: ../../printerdrake.pm_.c:961
#, fuzzy
msgid ""
"To print on a NetWare printer, you need to provide the NetWare print server "
@@ -7555,44 +7855,44 @@ msgstr ""
"TCP/IP resursa vârda!), kâ arî jûsu izvçlçtâ printera rindas\n"
"nosaukums un jebkurđ atbilstođs lietotâja vârds un parole."
-#: ../../printerdrake.pm_.c:855
+#: ../../printerdrake.pm_.c:962
msgid "Printer Server"
msgstr "Printera serveris"
-#: ../../printerdrake.pm_.c:856
+#: ../../printerdrake.pm_.c:963
msgid "Print Queue Name"
msgstr "Printera rindas nosaukums"
-#: ../../printerdrake.pm_.c:861
+#: ../../printerdrake.pm_.c:968
msgid "NCP server name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:865
+#: ../../printerdrake.pm_.c:972
msgid "NCP queue name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:932 ../../printerdrake.pm_.c:952
+#: ../../printerdrake.pm_.c:1039 ../../printerdrake.pm_.c:1059
#, c-format
msgid ", host \"%s\", port %s"
msgstr ""
-#: ../../printerdrake.pm_.c:935 ../../printerdrake.pm_.c:955
+#: ../../printerdrake.pm_.c:1042 ../../printerdrake.pm_.c:1062
#, c-format
msgid "Host \"%s\", port %s"
msgstr ""
-#: ../../printerdrake.pm_.c:975
+#: ../../printerdrake.pm_.c:1082
#, fuzzy
msgid "TCP/Socket Printer Options"
msgstr "Socket printera opcijas"
-#: ../../printerdrake.pm_.c:977
+#: ../../printerdrake.pm_.c:1084
msgid ""
"Choose one of the auto-detected printers from the list or enter the hostname "
"or IP and the optional port number (default is 9100) into the input fields."
msgstr ""
-#: ../../printerdrake.pm_.c:978
+#: ../../printerdrake.pm_.c:1085
#, fuzzy
msgid ""
"To print to a TCP or socket printer, you need to provide the host name or IP "
@@ -7603,61 +7903,61 @@ msgstr ""
"Lai drukâtu ar socket printeri, jums ir jânorâda printera\n"
"resursa vârds tîklâ un papildus arî porta numurs."
-#: ../../printerdrake.pm_.c:983
+#: ../../printerdrake.pm_.c:1090
#, fuzzy
msgid "Printer host name or IP missing!"
msgstr "Printera resursa vârds"
-#: ../../printerdrake.pm_.c:1005
+#: ../../printerdrake.pm_.c:1112
#, fuzzy
msgid "Printer host name or IP"
msgstr "Printera resursa vârds"
-#: ../../printerdrake.pm_.c:1054 ../../printerdrake.pm_.c:1056
+#: ../../printerdrake.pm_.c:1160 ../../printerdrake.pm_.c:1162
msgid "Printer Device URI"
msgstr "Printera ierîces URI"
-#: ../../printerdrake.pm_.c:1055
+#: ../../printerdrake.pm_.c:1161
msgid ""
"You can specify directly the URI to access the printer. The URI must fulfill "
"either the CUPS or the Foomatic specifications. Note that not all URI types "
"are supported by all the spoolers."
msgstr ""
-#: ../../printerdrake.pm_.c:1070
+#: ../../printerdrake.pm_.c:1176
msgid "A valid URI must be entered!"
msgstr ""
-#: ../../printerdrake.pm_.c:1402
+#: ../../printerdrake.pm_.c:1515
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
"Location fields do not need to be filled in. They are comments for the users."
msgstr ""
-#: ../../printerdrake.pm_.c:1403
+#: ../../printerdrake.pm_.c:1516
msgid "Name of printer"
msgstr "Printera nosaukums"
-#: ../../printerdrake.pm_.c:1405
+#: ../../printerdrake.pm_.c:1518
msgid "Location"
msgstr "Atrađanâs vieta"
-#: ../../printerdrake.pm_.c:1416 ../../printerdrake.pm_.c:1536
+#: ../../printerdrake.pm_.c:1530 ../../printerdrake.pm_.c:1652
#, fuzzy
msgid "Reading printer database..."
msgstr "Nolasu CUPS draiveru datubâzi..."
-#: ../../printerdrake.pm_.c:1419
+#: ../../printerdrake.pm_.c:1534
#, fuzzy
msgid "Preparing printer database..."
msgstr "Nolasu CUPS draiveru datubâzi..."
-#: ../../printerdrake.pm_.c:1516
+#: ../../printerdrake.pm_.c:1631
#, fuzzy
msgid "Your printer model"
msgstr "Attâls printeris"
-#: ../../printerdrake.pm_.c:1517
+#: ../../printerdrake.pm_.c:1632
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -7672,28 +7972,28 @@ msgid ""
"%s"
msgstr ""
-#: ../../printerdrake.pm_.c:1522 ../../printerdrake.pm_.c:1525
+#: ../../printerdrake.pm_.c:1637 ../../printerdrake.pm_.c:1640
#, fuzzy
msgid "The model is correct"
msgstr "Vai tas ir pareizi?"
-#: ../../printerdrake.pm_.c:1523 ../../printerdrake.pm_.c:1524
-#: ../../printerdrake.pm_.c:1527
+#: ../../printerdrake.pm_.c:1638 ../../printerdrake.pm_.c:1639
+#: ../../printerdrake.pm_.c:1642
#, fuzzy
msgid "Select model manually"
msgstr "Attâls printeris"
-#: ../../printerdrake.pm_.c:1543
+#: ../../printerdrake.pm_.c:1659
#, fuzzy
msgid "Printer model selection"
msgstr "Printera pieslçgums"
-#: ../../printerdrake.pm_.c:1544
+#: ../../printerdrake.pm_.c:1660
#, fuzzy
msgid "Which printer model do you have?"
msgstr "Kâds ir jûsu printera tips?"
-#: ../../printerdrake.pm_.c:1545
+#: ../../printerdrake.pm_.c:1661
msgid ""
"\n"
"\n"
@@ -7702,18 +8002,18 @@ msgid ""
"standing on a wrong model or on \"Raw printer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1548
+#: ../../printerdrake.pm_.c:1664
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
msgstr ""
-#: ../../printerdrake.pm_.c:1624
+#: ../../printerdrake.pm_.c:1741
#, fuzzy
msgid "OKI winprinter configuration"
msgstr "Interneta konfigurâcija"
-#: ../../printerdrake.pm_.c:1625
+#: ../../printerdrake.pm_.c:1742
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -7723,12 +8023,12 @@ msgid ""
"not work. Your connection type setting will be ignored by the driver."
msgstr ""
-#: ../../printerdrake.pm_.c:1668 ../../printerdrake.pm_.c:1695
+#: ../../printerdrake.pm_.c:1785 ../../printerdrake.pm_.c:1812
#, fuzzy
msgid "Lexmark inkjet configuration"
msgstr "Interneta konfigurâcija"
-#: ../../printerdrake.pm_.c:1669
+#: ../../printerdrake.pm_.c:1786
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
"no printers on remote machines or print server boxes. Please connect your "
@@ -7736,20 +8036,46 @@ msgid ""
"to."
msgstr ""
-#: ../../printerdrake.pm_.c:1696
+#: ../../printerdrake.pm_.c:1813
msgid ""
"To be able to print with your Lexmark inkjet and this configuration, you "
"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
-"com/). Go to the US site and click on the \"Drivers\" button. Then choose "
-"your model and afterwards \"Linux\" as operating system. The drivers come as "
-"RPM packages or shell scripts with interactive graphical installation. You "
-"do not need to do this configuration by the graphical frontends. Cancel "
-"directly after the license agreement. Then print printhead alignment pages "
-"with \"lexmarkmaintain\" and adjust the head alignment settings with this "
-"program."
+"com/). Click on the \"Drivers\" link. Then choose your model and afterwards "
+"\"Linux\" as operating system. The drivers come as RPM packages or shell "
+"scripts with interactive graphical installation. You do not need to do this "
+"configuration by the graphical frontends. Cancel directly after the license "
+"agreement. Then print printhead alignment pages with \"lexmarkmaintain\" and "
+"adjust the head alignment settings with this program."
msgstr ""
-#: ../../printerdrake.pm_.c:1912
+#: ../../printerdrake.pm_.c:1816
+msgid "GDI Laser Printer using the Zenographics ZJ-Stream Format"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:1817
+msgid ""
+"Your printer belongs to the group of GDI laser printers (winprinters) sold "
+"by different manufacturers which uses the Zenographics ZJ-stream raster "
+"format for the data sent to the printer. The driver for these printers is "
+"still in a very early development stage and so it will perhaps not always "
+"work properly. Especially it is possible that the printer only works when "
+"you choose the A4 paper size.\n"
+"\n"
+"Some of these printers, as the HP LaserJet 1000, for which this driver was "
+"originally created, need their firmware to be uploaded to them after they "
+"are turned on. In the case of the HP LaserJet 1000 you have to search the "
+"printer's Windows driver CD or your Windows partition for the file "
+"\"sihp1000.img\" and upload the file to the printer with one of the "
+"following commands:\n"
+"\n"
+" lpr -o raw sihp1000.img\n"
+" cat sihp1000.img > /dev/usb/lp0\n"
+"\n"
+"The first command can be given by any normal user, the second must be given "
+"as root. After having done so you can print normally.\n"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:2040
msgid ""
"Printer default settings\n"
"\n"
@@ -7759,34 +8085,34 @@ msgid ""
"printout quality/resolution printing can get substantially slower."
msgstr ""
-#: ../../printerdrake.pm_.c:1921
+#: ../../printerdrake.pm_.c:2049
#, c-format
msgid "Option %s must be an integer number!"
msgstr ""
-#: ../../printerdrake.pm_.c:1925
+#: ../../printerdrake.pm_.c:2053
#, c-format
msgid "Option %s must be a number!"
msgstr ""
-#: ../../printerdrake.pm_.c:1930
+#: ../../printerdrake.pm_.c:2058
#, c-format
msgid "Option %s out of range!"
msgstr ""
-#: ../../printerdrake.pm_.c:1969
+#: ../../printerdrake.pm_.c:2097
#, fuzzy, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
"as the default printer?"
msgstr "Vai vçlaties izmçìinât printeri?"
-#: ../../printerdrake.pm_.c:1986
+#: ../../printerdrake.pm_.c:2120
#, fuzzy
msgid "Test pages"
msgstr "Pârbaudît portus"
-#: ../../printerdrake.pm_.c:1987
+#: ../../printerdrake.pm_.c:2121
msgid ""
"Please select the test pages you want to print.\n"
"Note: the photo test page can take a rather long time to get printed and on "
@@ -7794,45 +8120,45 @@ msgid ""
"it is enough to print the standard test page."
msgstr ""
-#: ../../printerdrake.pm_.c:1991
+#: ../../printerdrake.pm_.c:2125
#, fuzzy
msgid "No test pages"
msgstr "Jâ, izdrukât abas izmçìinâjuma lapas"
-#: ../../printerdrake.pm_.c:1992
+#: ../../printerdrake.pm_.c:2126
#, fuzzy
msgid "Print"
msgstr "Printeris"
-#: ../../printerdrake.pm_.c:1994
+#: ../../printerdrake.pm_.c:2183
#, fuzzy
msgid "Standard test page"
msgstr "Standarta"
-#: ../../printerdrake.pm_.c:1997
+#: ../../printerdrake.pm_.c:2186
msgid "Alternative test page (Letter)"
msgstr ""
-#: ../../printerdrake.pm_.c:2000
+#: ../../printerdrake.pm_.c:2189
#, fuzzy
msgid "Alternative test page (A4)"
msgstr "Tiek drukâta(s) izmçìinâjuma lapa(s)..."
-#: ../../printerdrake.pm_.c:2002
+#: ../../printerdrake.pm_.c:2191
#, fuzzy
msgid "Photo test page"
msgstr "Tiek drukâta(s) izmçìinâjuma lapa(s)..."
-#: ../../printerdrake.pm_.c:2006
+#: ../../printerdrake.pm_.c:2195
#, fuzzy
msgid "Do not print any test page"
msgstr "Tiek drukâta(s) izmçìinâjuma lapa(s)..."
-#: ../../printerdrake.pm_.c:2014 ../../printerdrake.pm_.c:2166
+#: ../../printerdrake.pm_.c:2204 ../../printerdrake.pm_.c:2357
msgid "Printing test page(s)..."
msgstr "Tiek drukâta(s) izmçìinâjuma lapa(s)..."
-#: ../../printerdrake.pm_.c:2039
+#: ../../printerdrake.pm_.c:2229
#, fuzzy, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -7849,7 +8175,7 @@ msgstr ""
"\n"
"Vai tas darbojas pareizi?"
-#: ../../printerdrake.pm_.c:2043
+#: ../../printerdrake.pm_.c:2233
#, fuzzy
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -7859,16 +8185,16 @@ msgstr ""
"Var paiet zinâms laiks, pirms printeris sâk drukât.\n"
"Vai tas darbojas pareizi?"
-#: ../../printerdrake.pm_.c:2050
+#: ../../printerdrake.pm_.c:2240
msgid "Did it work properly?"
msgstr ""
-#: ../../printerdrake.pm_.c:2072 ../../printerdrake.pm_.c:3191
+#: ../../printerdrake.pm_.c:2262 ../../printerdrake.pm_.c:3416
#, fuzzy
msgid "Raw printer"
msgstr "Nav printera"
-#: ../../printerdrake.pm_.c:2098
+#: ../../printerdrake.pm_.c:2288
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -7877,15 +8203,15 @@ msgid ""
"to modify the option settings easily.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2100
+#: ../../printerdrake.pm_.c:2290
msgid ""
"These commands you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications, but here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2103 ../../printerdrake.pm_.c:2120
-#: ../../printerdrake.pm_.c:2130
+#: ../../printerdrake.pm_.c:2293 ../../printerdrake.pm_.c:2310
+#: ../../printerdrake.pm_.c:2320
#, c-format
msgid ""
"\n"
@@ -7894,7 +8220,7 @@ msgid ""
"line, e. g. \"%s <file>\". "
msgstr ""
-#: ../../printerdrake.pm_.c:2106 ../../printerdrake.pm_.c:2146
+#: ../../printerdrake.pm_.c:2296 ../../printerdrake.pm_.c:2336
#, c-format
msgid ""
"To know about the options available for the current printer read either the "
@@ -7902,41 +8228,41 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2110
+#: ../../printerdrake.pm_.c:2300
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2115 ../../printerdrake.pm_.c:2125
+#: ../../printerdrake.pm_.c:2305 ../../printerdrake.pm_.c:2315
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2117 ../../printerdrake.pm_.c:2127
-#: ../../printerdrake.pm_.c:2137
+#: ../../printerdrake.pm_.c:2307 ../../printerdrake.pm_.c:2317
+#: ../../printerdrake.pm_.c:2327
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2122 ../../printerdrake.pm_.c:2132
+#: ../../printerdrake.pm_.c:2312 ../../printerdrake.pm_.c:2322
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
msgstr ""
-#: ../../printerdrake.pm_.c:2135
+#: ../../printerdrake.pm_.c:2325
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\" or \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2139
+#: ../../printerdrake.pm_.c:2329
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -7946,7 +8272,7 @@ msgid ""
"jams.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2143
+#: ../../printerdrake.pm_.c:2333
#, c-format
msgid ""
"\n"
@@ -7955,42 +8281,42 @@ msgid ""
"line, e. g. \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2153
+#: ../../printerdrake.pm_.c:2343
#, fuzzy, c-format
msgid "Printing/Scanning/Photo Cards on \"%s\""
msgstr "Atslçdzu tîklu"
-#: ../../printerdrake.pm_.c:2154
+#: ../../printerdrake.pm_.c:2344
#, fuzzy, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "Atslçdzu tîklu"
-#: ../../printerdrake.pm_.c:2156
+#: ../../printerdrake.pm_.c:2346
#, fuzzy, c-format
msgid "Printing/Photo Card Access on \"%s\""
msgstr "Atslçdzu tîklu"
-#: ../../printerdrake.pm_.c:2157
+#: ../../printerdrake.pm_.c:2347
#, fuzzy, c-format
msgid "Printing on the printer \"%s\""
msgstr "Atslçdzu tîklu"
-#: ../../printerdrake.pm_.c:2160 ../../printerdrake.pm_.c:2163
-#: ../../printerdrake.pm_.c:2164 ../../printerdrake.pm_.c:2165
-#: ../../printerdrake.pm_.c:3175 ../../standalone/drakTermServ_.c:248
-#: ../../standalone/drakbackup_.c:1485 ../../standalone/drakbackup_.c:3530
-#: ../../standalone/drakbug_.c:129 ../../standalone/drakfont_.c:705
+#: ../../printerdrake.pm_.c:2350 ../../printerdrake.pm_.c:2353
+#: ../../printerdrake.pm_.c:2354 ../../printerdrake.pm_.c:2355
+#: ../../printerdrake.pm_.c:3400 ../../standalone/drakTermServ_.c:248
+#: ../../standalone/drakbackup_.c:1560 ../../standalone/drakbackup_.c:4208
+#: ../../standalone/drakbug_.c:130 ../../standalone/drakfont_.c:705
#: ../../standalone/drakfont_.c:1014
#, fuzzy
msgid "Close"
msgstr "Pele"
-#: ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2353
#, fuzzy
msgid "Print option list"
msgstr "Printera opcijas"
-#: ../../printerdrake.pm_.c:2182
+#: ../../printerdrake.pm_.c:2373
#, c-format
msgid ""
"Your multi-function device was configured automatically to be able to scan. "
@@ -8004,7 +8330,7 @@ msgid ""
"Do not use \"scannerdrake\" for this device!"
msgstr ""
-#: ../../printerdrake.pm_.c:2202
+#: ../../printerdrake.pm_.c:2394
msgid ""
"Your printer was configured automatically to give you access to the photo "
"card drives from your PC. Now you can access your photo cards using the "
@@ -8017,19 +8343,19 @@ msgid ""
"of the file lists."
msgstr ""
-#: ../../printerdrake.pm_.c:2223 ../../printerdrake.pm_.c:2673
-#: ../../printerdrake.pm_.c:2945
+#: ../../printerdrake.pm_.c:2416 ../../printerdrake.pm_.c:2875
+#: ../../printerdrake.pm_.c:3170
#, fuzzy
msgid "Reading printer data..."
msgstr "Nolasu CUPS draiveru datubâzi..."
-#: ../../printerdrake.pm_.c:2243 ../../printerdrake.pm_.c:2271
-#: ../../printerdrake.pm_.c:2306
+#: ../../printerdrake.pm_.c:2436 ../../printerdrake.pm_.c:2464
+#: ../../printerdrake.pm_.c:2499
#, fuzzy
msgid "Transfer printer configuration"
msgstr "Interneta konfigurâcija"
-#: ../../printerdrake.pm_.c:2244
+#: ../../printerdrake.pm_.c:2437
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -8039,51 +8365,51 @@ msgid ""
"Not all queues can be transferred due to the following reasons:\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2247
+#: ../../printerdrake.pm_.c:2440
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2249
+#: ../../printerdrake.pm_.c:2442
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2251
+#: ../../printerdrake.pm_.c:2444
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2253
+#: ../../printerdrake.pm_.c:2446
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:2254
+#: ../../printerdrake.pm_.c:2447
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
"or with native CUPS drivers cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:2255
+#: ../../printerdrake.pm_.c:2448
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
"\"Transfer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:2258
+#: ../../printerdrake.pm_.c:2451
msgid "Do not transfer printers"
msgstr ""
-#: ../../printerdrake.pm_.c:2259 ../../printerdrake.pm_.c:2276
+#: ../../printerdrake.pm_.c:2452 ../../printerdrake.pm_.c:2469
msgid "Transfer"
msgstr ""
-#: ../../printerdrake.pm_.c:2272
+#: ../../printerdrake.pm_.c:2465
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -8091,62 +8417,62 @@ msgid ""
"You can also type a new name or skip this printer."
msgstr ""
-#: ../../printerdrake.pm_.c:2280
+#: ../../printerdrake.pm_.c:2473
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr ""
-#: ../../printerdrake.pm_.c:2285
+#: ../../printerdrake.pm_.c:2478
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
"do you really want to overwrite its configuration?"
msgstr ""
-#: ../../printerdrake.pm_.c:2293
+#: ../../printerdrake.pm_.c:2486
#, fuzzy
msgid "New printer name"
msgstr "Nav printera"
-#: ../../printerdrake.pm_.c:2296
+#: ../../printerdrake.pm_.c:2489
#, c-format
msgid "Transferring %s..."
msgstr ""
-#: ../../printerdrake.pm_.c:2307
+#: ../../printerdrake.pm_.c:2500
#, c-format
msgid ""
"You have transferred your former default printer (\"%s\"), Should it be also "
"the default printer under the new printing system %s?"
msgstr ""
-#: ../../printerdrake.pm_.c:2316
+#: ../../printerdrake.pm_.c:2510
#, fuzzy
msgid "Refreshing printer data..."
msgstr "Nolasu CUPS draiveru datubâzi..."
-#: ../../printerdrake.pm_.c:2324 ../../printerdrake.pm_.c:2395
-#: ../../printerdrake.pm_.c:2407
+#: ../../printerdrake.pm_.c:2518 ../../printerdrake.pm_.c:2590
+#: ../../printerdrake.pm_.c:2602
#, fuzzy
msgid "Configuration of a remote printer"
msgstr "Konfigurâcija"
-#: ../../printerdrake.pm_.c:2325
+#: ../../printerdrake.pm_.c:2519
#, fuzzy
msgid "Starting network..."
msgstr "Izmçìinu pieslçgumu..."
-#: ../../printerdrake.pm_.c:2359 ../../printerdrake.pm_.c:2363
-#: ../../printerdrake.pm_.c:2365
+#: ../../printerdrake.pm_.c:2554 ../../printerdrake.pm_.c:2558
+#: ../../printerdrake.pm_.c:2560
#, fuzzy
msgid "Configure the network now"
msgstr "Tîkla konfigurçđana"
-#: ../../printerdrake.pm_.c:2360
+#: ../../printerdrake.pm_.c:2555
#, fuzzy
msgid "Network functionality not configured"
msgstr "Monitors nav konfigurçts"
-#: ../../printerdrake.pm_.c:2361
+#: ../../printerdrake.pm_.c:2556
msgid ""
"You are going to configure a remote printer. This needs working network "
"access, but your network is not configured yet. If you go on without network "
@@ -8154,12 +8480,12 @@ msgid ""
"configuring now. How do you want to proceed?"
msgstr ""
-#: ../../printerdrake.pm_.c:2364
+#: ../../printerdrake.pm_.c:2559
#, fuzzy
msgid "Go on without configuring the network"
msgstr "Konfigurçju tîklu"
-#: ../../printerdrake.pm_.c:2397
+#: ../../printerdrake.pm_.c:2592
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -8169,34 +8495,34 @@ msgid ""
"\"Printer\""
msgstr ""
-#: ../../printerdrake.pm_.c:2398
+#: ../../printerdrake.pm_.c:2593
msgid ""
"The network access was not running and could not be started. Please check "
"your configuration and your hardware. Then try to configure your remote "
"printer again."
msgstr ""
-#: ../../printerdrake.pm_.c:2408
+#: ../../printerdrake.pm_.c:2603
#, fuzzy
msgid "Restarting printing system..."
msgstr "Kuru drukâđanas sistçmu vçlaties izmantot?"
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2641
#, fuzzy
msgid "high"
msgstr "Augsts"
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2641
#, fuzzy
msgid "paranoid"
msgstr "Paranoisks"
-#: ../../printerdrake.pm_.c:2447
+#: ../../printerdrake.pm_.c:2642
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr ""
-#: ../../printerdrake.pm_.c:2448
+#: ../../printerdrake.pm_.c:2643
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -8211,12 +8537,12 @@ msgid ""
"Do you really want to configure printing on this machine?"
msgstr ""
-#: ../../printerdrake.pm_.c:2480
+#: ../../printerdrake.pm_.c:2675
#, fuzzy
msgid "Starting the printing system at boot time"
msgstr "Kuru drukâđanas sistçmu vçlaties izmantot?"
-#: ../../printerdrake.pm_.c:2481
+#: ../../printerdrake.pm_.c:2676
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -8230,81 +8556,76 @@ msgid ""
"again?"
msgstr ""
-#: ../../printerdrake.pm_.c:2504 ../../printerdrake.pm_.c:2544
-#: ../../printerdrake.pm_.c:2581 ../../printerdrake.pm_.c:2621
-#: ../../printerdrake.pm_.c:2733
+#: ../../printerdrake.pm_.c:2700 ../../printerdrake.pm_.c:2741
+#: ../../printerdrake.pm_.c:2780 ../../printerdrake.pm_.c:2822
+#: ../../printerdrake.pm_.c:2943
msgid "Checking installed software..."
msgstr ""
-#: ../../printerdrake.pm_.c:2548
+#: ../../printerdrake.pm_.c:2746
msgid "Removing LPRng..."
msgstr ""
-#: ../../printerdrake.pm_.c:2585
+#: ../../printerdrake.pm_.c:2785
msgid "Removing LPD..."
msgstr ""
-#: ../../printerdrake.pm_.c:2657
+#: ../../printerdrake.pm_.c:2858
#, fuzzy
msgid "Select Printer Spooler"
msgstr "Izvçlieties printera pieslçgumu"
-#: ../../printerdrake.pm_.c:2658
+#: ../../printerdrake.pm_.c:2859
#, fuzzy
msgid "Which printing system (spooler) do you want to use?"
msgstr "Kuru drukâđanas sistçmu vçlaties izmantot?"
-#: ../../printerdrake.pm_.c:2691
+#: ../../printerdrake.pm_.c:2895
#, fuzzy, c-format
msgid "Configuring printer \"%s\"..."
msgstr "Konfigurçt printeri"
-#: ../../printerdrake.pm_.c:2704
+#: ../../printerdrake.pm_.c:2909
#, fuzzy
msgid "Installing Foomatic..."
msgstr "Instalçju pakotni %s"
-#: ../../printerdrake.pm_.c:2769 ../../printerdrake.pm_.c:2808
-#: ../../printerdrake.pm_.c:3192 ../../printerdrake.pm_.c:3262
+#: ../../printerdrake.pm_.c:2979 ../../printerdrake.pm_.c:3020
+#: ../../printerdrake.pm_.c:3417 ../../printerdrake.pm_.c:3490
msgid "Printer options"
msgstr "Printera opcijas"
-#: ../../printerdrake.pm_.c:2778
+#: ../../printerdrake.pm_.c:2989
#, fuzzy
-msgid "Preparing PrinterDrake..."
+msgid "Preparing Printerdrake..."
msgstr "Nolasu CUPS draiveru datubâzi..."
-#: ../../printerdrake.pm_.c:2795 ../../printerdrake.pm_.c:3349
+#: ../../printerdrake.pm_.c:3007 ../../printerdrake.pm_.c:3580
#, fuzzy
msgid "Configuring applications..."
msgstr "Konfigurçt printeri"
-#: ../../printerdrake.pm_.c:2815
+#: ../../printerdrake.pm_.c:3027
#, fuzzy
msgid "Would you like to configure printing?"
msgstr "Vai vçlaties konfigurçt printeri?"
-#: ../../printerdrake.pm_.c:2827
+#: ../../printerdrake.pm_.c:3039
msgid "Printing system: "
msgstr ""
-#: ../../printerdrake.pm_.c:2875
-#, fuzzy
-msgid "Printerdrake"
-msgstr "Printeris"
-
-#: ../../printerdrake.pm_.c:2879
+#: ../../printerdrake.pm_.c:3099
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; to view information about it; "
"or to make a printer on a remote CUPS server available for Star Office/"
-"OpenOffice.org."
+"OpenOffice.org/GIMP."
msgstr ""
"Eksistç sekojođas drukas rindas.\n"
"Jûs varat pievienot jaunass vai izmainît esođâs."
-#: ../../printerdrake.pm_.c:2880
+#: ../../printerdrake.pm_.c:3100
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
@@ -8314,137 +8635,139 @@ msgstr ""
"Eksistç sekojođas drukas rindas.\n"
"Jûs varat pievienot jaunass vai izmainît esođâs."
-#: ../../printerdrake.pm_.c:2906
+#: ../../printerdrake.pm_.c:3127
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr ""
-#: ../../printerdrake.pm_.c:2924
+#: ../../printerdrake.pm_.c:3145
#, fuzzy
msgid "Change the printing system"
msgstr "Tîkla konfigurçđana"
-#: ../../printerdrake.pm_.c:2929 ../../standalone/drakconnect_.c:277
+#: ../../printerdrake.pm_.c:3150 ../../standalone/drakconnect_.c:277
msgid "Normal Mode"
msgstr ""
-#: ../../printerdrake.pm_.c:3085 ../../printerdrake.pm_.c:3135
-#: ../../printerdrake.pm_.c:3343
+#: ../../printerdrake.pm_.c:3310 ../../printerdrake.pm_.c:3360
+#: ../../printerdrake.pm_.c:3573
#, fuzzy
msgid "Do you want to configure another printer?"
msgstr "Vai vçlaties izmçìinât đo konfigurâciju?"
-#: ../../printerdrake.pm_.c:3170
+#: ../../printerdrake.pm_.c:3395
#, fuzzy
msgid "Modify printer configuration"
msgstr "Interneta konfigurâcija"
-#: ../../printerdrake.pm_.c:3172
+#: ../../printerdrake.pm_.c:3397
#, fuzzy, c-format
msgid ""
"Printer %s\n"
"What do you want to modify on this printer?"
msgstr "Vai vçlaties izmçìinât đo konfigurâciju?"
-#: ../../printerdrake.pm_.c:3176
+#: ../../printerdrake.pm_.c:3401
msgid "Do it!"
msgstr ""
-#: ../../printerdrake.pm_.c:3181 ../../printerdrake.pm_.c:3236
+#: ../../printerdrake.pm_.c:3406 ../../printerdrake.pm_.c:3461
#, fuzzy
msgid "Printer connection type"
msgstr "Interneta pieslçguma koplietođana"
-#: ../../printerdrake.pm_.c:3182 ../../printerdrake.pm_.c:3240
+#: ../../printerdrake.pm_.c:3407 ../../printerdrake.pm_.c:3465
#, fuzzy
msgid "Printer name, description, location"
msgstr "Printera pieslçgums"
-#: ../../printerdrake.pm_.c:3184 ../../printerdrake.pm_.c:3255
+#: ../../printerdrake.pm_.c:3409 ../../printerdrake.pm_.c:3483
msgid "Printer manufacturer, model, driver"
msgstr ""
-#: ../../printerdrake.pm_.c:3185 ../../printerdrake.pm_.c:3256
+#: ../../printerdrake.pm_.c:3410 ../../printerdrake.pm_.c:3484
msgid "Printer manufacturer, model"
msgstr ""
-#: ../../printerdrake.pm_.c:3194 ../../printerdrake.pm_.c:3266
+#: ../../printerdrake.pm_.c:3419 ../../printerdrake.pm_.c:3494
msgid "Set this printer as the default"
msgstr ""
-#: ../../printerdrake.pm_.c:3196 ../../printerdrake.pm_.c:3271
-msgid "Add this printer to Star Office/OpenOffice.org"
+#: ../../printerdrake.pm_.c:3421 ../../printerdrake.pm_.c:3499
+msgid "Add this printer to Star Office/OpenOffice.org/GIMP"
msgstr ""
-#: ../../printerdrake.pm_.c:3197 ../../printerdrake.pm_.c:3280
-msgid "Remove this printer from Star Office/OpenOffice.org"
+#: ../../printerdrake.pm_.c:3422 ../../printerdrake.pm_.c:3508
+msgid "Remove this printer from Star Office/OpenOffice.org/GIMP"
msgstr ""
-#: ../../printerdrake.pm_.c:3198 ../../printerdrake.pm_.c:3289
+#: ../../printerdrake.pm_.c:3423 ../../printerdrake.pm_.c:3517
#, fuzzy
msgid "Print test pages"
msgstr "Tiek drukâta(s) izmçìinâjuma lapa(s)..."
-#: ../../printerdrake.pm_.c:3199 ../../printerdrake.pm_.c:3291
+#: ../../printerdrake.pm_.c:3424 ../../printerdrake.pm_.c:3519
#, fuzzy
msgid "Know how to use this printer"
msgstr "Vai vçlaties izmçìinât đo konfigurâciju?"
-#: ../../printerdrake.pm_.c:3201 ../../printerdrake.pm_.c:3293
+#: ../../printerdrake.pm_.c:3426 ../../printerdrake.pm_.c:3521
#, fuzzy
msgid "Remove printer"
msgstr "Attâls printeris"
-#: ../../printerdrake.pm_.c:3245
+#: ../../printerdrake.pm_.c:3472
#, fuzzy, c-format
msgid "Removing old printer \"%s\"..."
msgstr "Nolasu CUPS draiveru datubâzi..."
-#: ../../printerdrake.pm_.c:3269
+#: ../../printerdrake.pm_.c:3497
#, fuzzy
msgid "Default printer"
msgstr "Lokâls printeris"
-#: ../../printerdrake.pm_.c:3270
+#: ../../printerdrake.pm_.c:3498
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr ""
-#: ../../printerdrake.pm_.c:3274 ../../printerdrake.pm_.c:3277
-msgid "Adding printer to Star Office/OpenOffice.org"
+#: ../../printerdrake.pm_.c:3502 ../../printerdrake.pm_.c:3505
+msgid "Adding printer to Star Office/OpenOffice.org/GIMP"
msgstr ""
-#: ../../printerdrake.pm_.c:3275
+#: ../../printerdrake.pm_.c:3503
#, c-format
msgid ""
-"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
+"The printer \"%s\" was successfully added to Star Office/OpenOffice.org/GIMP."
msgstr ""
-#: ../../printerdrake.pm_.c:3278
+#: ../../printerdrake.pm_.c:3506
#, c-format
-msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
+msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org/GIMP."
msgstr ""
-#: ../../printerdrake.pm_.c:3283 ../../printerdrake.pm_.c:3286
-msgid "Removing printer from Star Office/OpenOffice.org"
+#: ../../printerdrake.pm_.c:3511 ../../printerdrake.pm_.c:3514
+msgid "Removing printer from Star Office/OpenOffice.org/GIMP"
msgstr ""
-#: ../../printerdrake.pm_.c:3284
+#: ../../printerdrake.pm_.c:3512
#, c-format
msgid ""
-"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
+"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org/"
+"GIMP."
msgstr ""
-#: ../../printerdrake.pm_.c:3287
+#: ../../printerdrake.pm_.c:3515
#, c-format
-msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
+msgid ""
+"Failed to remove the printer \"%s\" from Star Office/OpenOffice.org/GIMP."
msgstr ""
-#: ../../printerdrake.pm_.c:3295
+#: ../../printerdrake.pm_.c:3523
#, fuzzy, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr "Vai vçlaties pârstartçt tîklu"
-#: ../../printerdrake.pm_.c:3297
+#: ../../printerdrake.pm_.c:3527
#, fuzzy, c-format
msgid "Removing printer \"%s\"..."
msgstr "Nolasu CUPS draiveru datubâzi..."
@@ -8843,7 +9166,7 @@ msgstr "Internets"
msgid "File sharing"
msgstr ""
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1669
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1744
#, fuzzy
msgid "System"
msgstr "Sistçmas rețîms"
@@ -8903,196 +9226,230 @@ msgstr "Stâvoklis:"
msgid "Stop"
msgstr "Sektors"
-#: ../../share/advertising/00-thanks.pl_.c:9
-msgid "Thank you for choosing Mandrake Linux 8.2"
+#: ../../share/advertising/01-thanks.pl_.c:9
+msgid "Thank you for choosing Mandrake Linux 9.0"
msgstr ""
-#: ../../share/advertising/00-thanks.pl_.c:10
+#: ../../share/advertising/01-thanks.pl_.c:10
msgid "Welcome to the Open Source world"
msgstr ""
-#: ../../share/advertising/00-thanks.pl_.c:11
+#: ../../share/advertising/01-thanks.pl_.c:11
msgid ""
"The success of MandrakeSoft is based upon the principle of Free Software. "
"Your new operating system is the result of collaborative work on the part of "
"the worldwide Linux Community"
msgstr ""
-#: ../../share/advertising/01-gnu.pl_.c:9
+#: ../../share/advertising/02-community.pl_.c:9
#, fuzzy
-msgid "Join the Free Software world"
+msgid "Get involved in the Free Software world"
msgstr "Citur pasaulç"
-#: ../../share/advertising/01-gnu.pl_.c:10
+#: ../../share/advertising/02-community.pl_.c:10
+msgid "Want to know more about the Open Source community?"
+msgstr ""
+
+#: ../../share/advertising/02-community.pl_.c:11
msgid ""
-"Get to know the Open Source community and become a member. Learn, teach, and "
-"help others by joining the many discussion forums that you will find in our "
-"\"Community\" webpages"
+"To share your own knowledge and help build Linux tools, join the discussions "
+"forum you'll find on our \"Community\" webpages"
msgstr ""
-#
-#: ../../share/advertising/02-internet.pl_.c:9
+#: ../../share/advertising/03-internet.pl_.c:9
#, fuzzy
-msgid "Internet and Messaging"
-msgstr "Interneta pieeja"
+msgid "Get the most from the Internet"
+msgstr "Pieslçgties Internetam"
-#: ../../share/advertising/02-internet.pl_.c:10
+#: ../../share/advertising/03-internet.pl_.c:10
msgid ""
-"Mandrake Linux 8.2 provides the best software to access everything the "
-"Internet has to offer: Surf the web & view animations with Mozilla and "
-"Konqueror, exchange email & organize your personal information with "
-"Evolution and Kmail, and much more"
+"Mandrake Linux 9.0 has selected the best software for you. Surf the Web and "
+"view animations with Mozilla and Konqueror, or read your mail and handle "
+"your personal information with Evolution and Kmail"
msgstr ""
-#
-#: ../../share/advertising/03-graphic.pl_.c:9
-#, fuzzy
-msgid "Multimedia and Graphics"
-msgstr "Multimçdiji - Grafika"
+#: ../../share/advertising/04-multimedia.pl_.c:9
+msgid "Discover the most up-to-date graphics and multimedia tools!"
+msgstr ""
+
+#: ../../share/advertising/04-multimedia.pl_.c:10
+msgid "Push multimedia to its limits!"
+msgstr ""
-#: ../../share/advertising/03-graphic.pl_.c:10
+#: ../../share/advertising/04-multimedia.pl_.c:11
msgid ""
-"Mandrake Linux 8.2 lets you push your multimedia computer to its limits! Use "
-"the latest software to play music and audio files, edit and organize your "
-"images and photos, watch TV and videos, and much more"
+"Mandrake Linux 9.0 enables you to use the very latest software to play audio "
+"files, edit and handle your images or photos, and play videos"
msgstr ""
#
-#: ../../share/advertising/04-develop.pl_.c:9
-#, fuzzy
-msgid "Development"
-msgstr "Izstrâde, Tîmeklis"
+#: ../../share/advertising/05-games.pl_.c:9
+msgid "Games"
+msgstr "Spçles"
-#: ../../share/advertising/04-develop.pl_.c:10
+#: ../../share/advertising/05-games.pl_.c:10
msgid ""
-"Mandrake Linux 8.2 is the ultimate development platform. Discover the power "
-"of the GNU gcc compiler as well as the best Open Source development "
-"environments"
+"Mandrake Linux 9.0 provides the best Open Source games - arcade, action, "
+"cards, sports, strategy..."
msgstr ""
-#: ../../share/advertising/05-contcenter.pl_.c:9
-#: ../../standalone/drakbug_.c:69
+#: ../../share/advertising/06-mcc.pl_.c:9 ../../standalone/drakbug_.c:69
#, fuzzy
msgid "Mandrake Control Center"
msgstr "Pieslçgties Internetam"
-#: ../../share/advertising/05-contcenter.pl_.c:10
+#: ../../share/advertising/06-mcc.pl_.c:10
msgid ""
-"The Mandrake Linux 8.2 Control Center is a one-stop location for fully "
-"customizing and configuring your Mandrake system"
+"Mandrake Linux 9.0 provides a powerful tool to fully customize and configure "
+"your machine"
msgstr ""
-#: ../../share/advertising/06-user.pl_.c:9
+#: ../../share/advertising/07-desktop.pl_.c:9
#, fuzzy
msgid "User interfaces"
msgstr "Tîkla interfeiss"
-#: ../../share/advertising/06-user.pl_.c:10
+#: ../../share/advertising/07-desktop.pl_.c:10
msgid ""
-"Mandrake Linux 8.2 provides 11 different graphical desktop environments and "
-"window managers to choose from including GNOME 1.4, KDE 2.2.2, Window Maker "
-"0.8, and the rest"
+"Mandrake Linux 9.0 provides 11 user interfaces which can be fully modified: "
+"KDE 3, Gnome 2, WindowMaker..."
msgstr ""
-#: ../../share/advertising/07-server.pl_.c:9
+#
+#: ../../share/advertising/08-development.pl_.c:9
#, fuzzy
-msgid "Server Software"
-msgstr "SMB servera resurss"
+msgid "Development simplified"
+msgstr "Izstrâde, Tîmeklis"
+
+#: ../../share/advertising/08-development.pl_.c:10
+msgid "Mandrake Linux 9.0 is the ultimate development platform"
+msgstr ""
-#: ../../share/advertising/07-server.pl_.c:10
+#: ../../share/advertising/08-development.pl_.c:11
msgid ""
-"Transform your machine into a powerful server with just a few clicks of the "
-"mouse: Web server, email, firewall, router, file and print server, ..."
+"Use the full power of the GNU gcc 3 compiler as well as the best Open Source "
+"development environments"
msgstr ""
-#
-#: ../../share/advertising/08-games.pl_.c:9
-msgid "Games"
-msgstr "Spçles"
+#: ../../share/advertising/09-server.pl_.c:9
+msgid "Turn your machine into a reliable server"
+msgstr ""
-#: ../../share/advertising/08-games.pl_.c:10
+#: ../../share/advertising/09-server.pl_.c:10
msgid ""
-"Mandrake Linux 8.2 provides the best Open Source games - arcade, action, "
-"cards, sports, strategy, ..."
+"Transform your machine into a powerful server in a few clicks of your mouse: "
+"Web server, mail, firewall, router, file and print server..."
msgstr ""
-#: ../../share/advertising/09-MDKcampus.pl_.c:9
-msgid "MandrakeCampus"
+#: ../../share/advertising/10-mnf.pl_.c:9
+msgid "Optimize your security"
msgstr ""
-#: ../../share/advertising/09-MDKcampus.pl_.c:10
+#: ../../share/advertising/10-mnf.pl_.c:10
msgid ""
-"Would you like to learn Linux simply, quickly, and for free? MandrakeSoft "
-"provides free Linux training, as well as a way to test your progress, at "
-"MandrakeCampus -- our online training center"
+"The MandrakeSecurity range includes the Multi Network Firewall product (M.N."
+"F.)"
msgstr ""
-#: ../../share/advertising/10-MDKexpert.pl_.c:9
-#, fuzzy
-msgid "MandrakeExpert"
-msgstr "Eksperta"
+#: ../../share/advertising/10-mnf.pl_.c:11
+msgid ""
+"This firewall product includes network features which allow you to fulfill "
+"all your security needs"
+msgstr ""
+
+#: ../../share/advertising/10-mnf.pl_.c:12
+msgid "This product is available on MandrakeStore website"
+msgstr ""
+
+#: ../../share/advertising/11-mdkstore.pl_.c:9
+msgid "The official MandrakeSoft store"
+msgstr ""
-#: ../../share/advertising/10-MDKexpert.pl_.c:10
+#: ../../share/advertising/11-mdkstore.pl_.c:10
msgid ""
-"Quality support from the Linux Community, and from MandrakeSoft, is just "
-"around the corner. And if you're already a Linux veteran, become an \"Expert"
-"\" and share your knowledge at our support website"
+"Our full range of Linux solutions, as well as special offers on products and "
+"'goodies', are available online at our e-store"
msgstr ""
-#: ../../share/advertising/11-consul.pl_.c:9
-msgid "MandrakeConsulting"
+#: ../../share/advertising/12-mdkstore.pl_.c:9
+msgid "Strategic partners"
msgstr ""
-#: ../../share/advertising/11-consul.pl_.c:10
+#: ../../share/advertising/12-mdkstore.pl_.c:10
msgid ""
-"For all of your IT projects, our consultants are ready to analyze your "
-"requirements and offer a customized solution. Benefit from MandrakeSoft's "
-"vast experience as a Linux producer to provide a true IT alternative for "
-"your business organization"
+"MandrakeSoft works alongside a selection of companies offering professional "
+"solutions compatible with Mandrake Linux; a list of these partners is "
+"available on the MandrakeStore"
msgstr ""
-#: ../../share/advertising/12-MDKstore.pl_.c:9
-msgid "MandrakeStore"
+#: ../../share/advertising/13-mdkcampus.pl_.c:9
+msgid "Discover MandrakeSoft's training catalogue Linux-Campus"
msgstr ""
-#: ../../share/advertising/12-MDKstore.pl_.c:10
+#: ../../share/advertising/13-mdkcampus.pl_.c:10
msgid ""
-"A full range of Linux solutions, as well as special offers on products and "
-"'goodies', are available online at our e-store"
+"The training program has been create to respond to the needs of both users "
+"and experts (Network and System administrations)"
+msgstr ""
+
+#: ../../share/advertising/13-mdkcampus.pl_.c:11
+msgid "Certify yourself on Linux"
+msgstr ""
+
+#: ../../share/advertising/13-mdkcampus.pl_.c:12
+msgid ""
+"Whether you choose to teach yourself online or via our network of training "
+"partners, the Linux-Campus catalogue prepares you for the acknowledged LPI "
+"certification program (worldwide professional technical certification)"
msgstr ""
-#: ../../share/advertising/13-Nvert.pl_.c:9
+#: ../../share/advertising/14-mdkexpert.pl_.c:9
+#, fuzzy
+msgid "Become a MandrakeExpert"
+msgstr "Eksperta"
+
+#: ../../share/advertising/14-mdkexpert.pl_.c:10
+msgid ""
+"Find the solutions to your problems via MandrakeSoft's online support "
+"platform"
+msgstr ""
+
+#: ../../share/advertising/14-mdkexpert.pl_.c:11
msgid ""
-"For more information on MandrakeSoft's Professional Services and commercial "
-"offerings, please see the following web page:"
+"Join the MandrakeSoft support teams and the Linux Community online to share "
+"your knowledge and help others by becoming a recognized Expert on the online "
+"technical support website:"
+msgstr ""
+
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:9
+#, fuzzy
+msgid "MandrakeExpert Corporate"
+msgstr "Eksperta"
+
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:10
+msgid "An online platform to respond to company's specific support needs"
msgstr ""
-#: ../../share/advertising/13-Nvert.pl_.c:11
-msgid "http://www.mandrakesoft.com/sales/contact"
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:11
+msgid ""
+"All incidents will be followed up by a single qualified MandrakeSoft "
+"technical expert."
msgstr ""
-#: ../../standalone.pm_.c:40
+#: ../../standalone.pm_.c:41
#, fuzzy
msgid "Installing packages..."
msgstr "Instalçju pakotni %s"
-#: ../../standalone/XFdrake_.c:143
+#: ../../standalone/XFdrake_.c:145
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "Lûdzu aizveriet sesiju un nospiediet Ctrl-Alt-BackSpace"
-#: ../../standalone/XFdrake_.c:147
+#: ../../standalone/XFdrake_.c:149
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "Lai aktivizçtu izmaiòas, lûdzu aizveriet un atveriet %s sesiju"
-#: ../../standalone/diskdrake_.c:81
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I'll try to go on blanking bad partitions"
-msgstr ""
-"Man neizdodas nolasît partîciju tabulu, priekđ manis tâ ir pârâk bojâta :(\n"
-"Es mçìinâđu turpinât, atslçdzot sliktâs partîcijas"
-
#: ../../standalone/drakTermServ_.c:188
#, fuzzy
msgid "Mandrake Terminal Server Configuration"
@@ -9136,12 +9493,13 @@ msgstr "Pievienot lietotâju"
msgid "Add/Del Clients"
msgstr "DHCP klients"
-#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3282
-#: ../../standalone/drakbackup_.c:3315 ../../standalone/drakbackup_.c:3341
-#: ../../standalone/drakbackup_.c:3368 ../../standalone/drakbackup_.c:3395
-#: ../../standalone/drakbackup_.c:3434 ../../standalone/drakbackup_.c:3455
-#: ../../standalone/drakbackup_.c:3482 ../../standalone/drakbackup_.c:3508
-#: ../../standalone/drakbackup_.c:3533 ../../standalone/drakfont_.c:700
+#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3930
+#: ../../standalone/drakbackup_.c:3963 ../../standalone/drakbackup_.c:3989
+#: ../../standalone/drakbackup_.c:4016 ../../standalone/drakbackup_.c:4043
+#: ../../standalone/drakbackup_.c:4082 ../../standalone/drakbackup_.c:4103
+#: ../../standalone/drakbackup_.c:4130 ../../standalone/drakbackup_.c:4160
+#: ../../standalone/drakbackup_.c:4186 ../../standalone/drakbackup_.c:4211
+#: ../../standalone/drakfont_.c:700
#, fuzzy
msgid "Help"
msgstr "/_Palîdzîba"
@@ -9302,8 +9660,8 @@ msgid ""
"The parameters of the auto-install are available in the sections on the left"
msgstr ""
-#: ../../standalone/drakautoinst_.c:239 ../../standalone/drakgw_.c:548
-#: ../../standalone/scannerdrake_.c:105
+#: ../../standalone/drakautoinst_.c:239 ../../standalone/drakgw_.c:484
+#: ../../standalone/scannerdrake_.c:119
msgid "Congratulations!"
msgstr "Apsveicam!"
@@ -9328,27 +9686,31 @@ msgstr "Lietotâju pievienođana"
msgid "Remove the last item"
msgstr "Formatçju loopback failu %s"
-#: ../../standalone/drakbackup_.c:625
+#: ../../standalone/drakbackup_.c:619
msgid "Cron not available yet as non-root"
msgstr ""
-#: ../../standalone/drakbackup_.c:731
+#: ../../standalone/drakbackup_.c:725
msgid "WARNING"
msgstr ""
-#: ../../standalone/drakbackup_.c:732
+#: ../../standalone/drakbackup_.c:726
#, fuzzy
msgid "FATAL"
msgstr "FAT"
-#: ../../standalone/drakbackup_.c:744
+#: ../../standalone/drakbackup_.c:727
+msgid "INFO"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:739
msgid ""
"\n"
" DrakBackup Report \n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:745
+#: ../../standalone/drakbackup_.c:740
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -9356,7 +9718,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:749
+#: ../../standalone/drakbackup_.c:744
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -9364,13 +9726,20 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:770 ../../standalone/drakbackup_.c:840
-#: ../../standalone/drakbackup_.c:894
+#: ../../standalone/drakbackup_.c:765 ../../standalone/drakbackup_.c:835
+#: ../../standalone/drakbackup_.c:889
#, fuzzy
msgid "Total progess"
msgstr "Pârbaudît portus"
-#: ../../standalone/drakbackup_.c:822
+#: ../../standalone/drakbackup_.c:788
+msgid ""
+"Sorry, perl-Expect is not installed/enabled. To use\n"
+"this feature, install perl-Expect and comment lines 772-774,\n"
+" as well as 788,789. Then uncomment line 787."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:817
#, c-format
msgid ""
"%s exists, delete?\n"
@@ -9379,16 +9748,41 @@ msgid ""
" need to purge the entry from authorized_keys on the server."
msgstr ""
-#: ../../standalone/drakbackup_.c:831
+#: ../../standalone/drakbackup_.c:826
msgid "This may take a moment to generate the keys."
msgstr ""
-#: ../../standalone/drakbackup_.c:838
+#: ../../standalone/drakbackup_.c:833
#, c-format
msgid "ERROR: Cannot spawn %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:865
+#: ../../standalone/drakbackup_.c:850
+#, c-format
+msgid "No password prompt on %s at port %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:851
+#, fuzzy, c-format
+msgid "Bad password on %s"
+msgstr "Bez paroles"
+
+#: ../../standalone/drakbackup_.c:852
+#, c-format
+msgid "Permission denied transferring %s to %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:853
+#, fuzzy, c-format
+msgid "Can't find %s on %s"
+msgstr "Adapteris %s: %s"
+
+#: ../../standalone/drakbackup_.c:856
+#, c-format
+msgid "%s not responding"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:860
#, c-format
msgid ""
"Transfer successful\n"
@@ -9399,63 +9793,68 @@ msgid ""
"without being prompted for a password."
msgstr ""
-#: ../../standalone/drakbackup_.c:908
+#: ../../standalone/drakbackup_.c:903
msgid "WebDAV remote site already in sync!"
msgstr ""
-#: ../../standalone/drakbackup_.c:912
+#: ../../standalone/drakbackup_.c:907
msgid "WebDAV transfer failed!"
msgstr ""
-#: ../../standalone/drakbackup_.c:934
+#: ../../standalone/drakbackup_.c:928
msgid "No CDR/DVDR in drive!"
msgstr ""
-#: ../../standalone/drakbackup_.c:938
+#: ../../standalone/drakbackup_.c:932
msgid "Does not appear to be recordable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:942
+#: ../../standalone/drakbackup_.c:936
msgid "Not erasable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:981
+#: ../../standalone/drakbackup_.c:975
msgid "This may take a moment to erase the media."
msgstr ""
-#: ../../standalone/drakbackup_.c:1045
+#: ../../standalone/drakbackup_.c:1060
msgid "Permission problem accessing CD."
msgstr ""
-#: ../../standalone/drakbackup_.c:1144 ../../standalone/drakbackup_.c:1193
+#: ../../standalone/drakbackup_.c:1087
+#, c-format
+msgid "No tape in %s!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1199 ../../standalone/drakbackup_.c:1248
msgid "Backup system files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:1194 ../../standalone/drakbackup_.c:1261
+#: ../../standalone/drakbackup_.c:1249 ../../standalone/drakbackup_.c:1316
#, fuzzy
msgid "Hard Disk Backup files..."
msgstr "Slikts rezerves kopijas fails"
-#: ../../standalone/drakbackup_.c:1206
+#: ../../standalone/drakbackup_.c:1261
#, fuzzy
msgid "Backup User files..."
msgstr "Slikts rezerves kopijas fails"
-#: ../../standalone/drakbackup_.c:1207
+#: ../../standalone/drakbackup_.c:1262
msgid "Hard Disk Backup Progress..."
msgstr ""
-#: ../../standalone/drakbackup_.c:1260
+#: ../../standalone/drakbackup_.c:1315
#, fuzzy
msgid "Backup Other files..."
msgstr "Slikts rezerves kopijas fails"
-#: ../../standalone/drakbackup_.c:1266
+#: ../../standalone/drakbackup_.c:1321
#, fuzzy
msgid "No changes to backup!"
msgstr "Slikts rezerves kopijas fails"
-#: ../../standalone/drakbackup_.c:1282 ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1337 ../../standalone/drakbackup_.c:1360
#, c-format
msgid ""
"\n"
@@ -9463,800 +9862,923 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1289
+#: ../../standalone/drakbackup_.c:1344
#, c-format
msgid ""
-"file list sent by FTP : %s\n"
+"file list sent by FTP: %s\n"
" "
msgstr ""
-#: ../../standalone/drakbackup_.c:1292
+#: ../../standalone/drakbackup_.c:1347
msgid ""
"\n"
" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1310
+#: ../../standalone/drakbackup_.c:1365
msgid ""
"\n"
"Drakbackup activities via CD:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1315
+#: ../../standalone/drakbackup_.c:1370
msgid ""
"\n"
"Drakbackup activities via tape:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1324
+#: ../../standalone/drakbackup_.c:1379
#, fuzzy
msgid " Error during mail sending. \n"
msgstr "Kïûda, nolasot failu %s"
-#: ../../standalone/drakbackup_.c:1346
+#: ../../standalone/drakbackup_.c:1404
msgid "Can't create catalog!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1459 ../../standalone/drakbackup_.c:1470
-#: ../../standalone/drakbackup_.c:1481 ../../standalone/drakfont_.c:1004
+#: ../../standalone/drakbackup_.c:1517 ../../standalone/drakbackup_.c:1528
+#: ../../standalone/drakfont_.c:1004
#, fuzzy
msgid "File Selection"
msgstr "Pakotòu grupu izvçle"
-#: ../../standalone/drakbackup_.c:1486
+#: ../../standalone/drakbackup_.c:1556
msgid "Select the files or directories and click on 'Add'"
msgstr ""
-#: ../../standalone/drakbackup_.c:1525
+#: ../../standalone/drakbackup_.c:1600
msgid ""
"\n"
"Please check all options that you need.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1526
+#: ../../standalone/drakbackup_.c:1601
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1527
+#: ../../standalone/drakbackup_.c:1602
#, fuzzy
msgid "Backup your System files. (/etc directory)"
msgstr "Slikts rezerves kopijas fails"
-#: ../../standalone/drakbackup_.c:1528
+#: ../../standalone/drakbackup_.c:1603
msgid "Use incremental backup (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1529
+#: ../../standalone/drakbackup_.c:1604
msgid "Do not include critical files (passwd, group, fstab)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1530
+#: ../../standalone/drakbackup_.c:1605
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr ""
-#: ../../standalone/drakbackup_.c:1547
+#: ../../standalone/drakbackup_.c:1622
#, fuzzy
msgid "Please check all users that you want to include in your backup."
msgstr "Lûdzu izvçlieties pakotnes, ko vçlaties instalçt"
-#: ../../standalone/drakbackup_.c:1574
+#: ../../standalone/drakbackup_.c:1649
msgid "Do not include the browser cache"
msgstr ""
-#: ../../standalone/drakbackup_.c:1575 ../../standalone/drakbackup_.c:1599
+#: ../../standalone/drakbackup_.c:1650 ../../standalone/drakbackup_.c:1674
msgid "Use Incremental Backups (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1597 ../../standalone/drakfont_.c:1058
+#: ../../standalone/drakbackup_.c:1672 ../../standalone/drakfont_.c:1058
#, fuzzy
msgid "Remove Selected"
msgstr "Noòemt rindu"
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:1710
#, fuzzy
msgid "Windows (FAT32)"
msgstr "Noòemt Windows(TM)"
-#: ../../standalone/drakbackup_.c:1674
+#: ../../standalone/drakbackup_.c:1749
#, fuzzy
msgid "Users"
msgstr "Lietotâja vârds"
-#: ../../standalone/drakbackup_.c:1700
+#: ../../standalone/drakbackup_.c:1775
#, fuzzy
msgid "Use network connection to backup"
msgstr "Slikts rezerves kopijas fails"
-#: ../../standalone/drakbackup_.c:1706
+#: ../../standalone/drakbackup_.c:1777
+msgid "Net Method:"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1781
msgid "Use Expect for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1707
+#: ../../standalone/drakbackup_.c:1782
msgid ""
"Create/Transfer\n"
"backup keys for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1708
+#: ../../standalone/drakbackup_.c:1783
msgid ""
" Transfer \n"
"Now"
msgstr ""
-#: ../../standalone/drakbackup_.c:1709
+#: ../../standalone/drakbackup_.c:1784
msgid "Keys in place already"
msgstr ""
-#: ../../standalone/drakbackup_.c:1713
+#: ../../standalone/drakbackup_.c:1788
#, fuzzy
msgid "Please enter the host name or IP."
msgstr "Lûdzu notestçjiet peli"
-#: ../../standalone/drakbackup_.c:1718
+#: ../../standalone/drakbackup_.c:1793
msgid ""
"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
-#: ../../standalone/drakbackup_.c:1723
+#: ../../standalone/drakbackup_.c:1798
#, fuzzy
msgid "Please enter your login"
msgstr "Lûdzu mçìiniet vçlreiz"
-#: ../../standalone/drakbackup_.c:1728
+#: ../../standalone/drakbackup_.c:1803
#, fuzzy
msgid "Please enter your password"
msgstr "Lûdzu mçìiniet vçlreiz"
-#: ../../standalone/drakbackup_.c:1734
+#: ../../standalone/drakbackup_.c:1809
#, fuzzy
msgid "Remember this password"
msgstr "Bez paroles"
-#: ../../standalone/drakbackup_.c:1745
+#: ../../standalone/drakbackup_.c:1820
msgid "Need hostname, username and password!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1841
+#: ../../standalone/drakbackup_.c:1915
msgid "Use CD/DVDROM to backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1844
+#: ../../standalone/drakbackup_.c:1918
msgid ""
"Please choose your CD/DVD device\n"
"(Press Enter to propogate settings to other fields.\n"
"This field isn't necessary, only a tool to fill in the form.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1849
+#: ../../standalone/drakbackup_.c:1923
#, fuzzy
msgid "Please choose your CD/DVD media size"
msgstr "Lûdzu izvçlieties jûsu tastatûras izkârtojumu."
-#: ../../standalone/drakbackup_.c:1855
+#: ../../standalone/drakbackup_.c:1929
#, fuzzy
msgid "Please check for multisession CD"
msgstr "Lûdzu uzklikđíiniet uz partîcijas"
-#: ../../standalone/drakbackup_.c:1861
+#: ../../standalone/drakbackup_.c:1935
#, fuzzy
msgid "Please check if you are using CDRW media"
msgstr "Lûdzu uzklikđíiniet uz partîcijas"
-#: ../../standalone/drakbackup_.c:1867
+#: ../../standalone/drakbackup_.c:1941
#, fuzzy
msgid "Please check if you want to erase your RW media (1st Session)"
msgstr "Lûdzu uzklikđíiniet uz partîcijas"
-#: ../../standalone/drakbackup_.c:1868
+#: ../../standalone/drakbackup_.c:1942
msgid " Erase Now "
msgstr ""
-#: ../../standalone/drakbackup_.c:1874
+#: ../../standalone/drakbackup_.c:1948
#, fuzzy
msgid "Please check if you are using a DVDR device"
msgstr "Lûdzu uzklikđíiniet uz partîcijas"
-#: ../../standalone/drakbackup_.c:1880
+#: ../../standalone/drakbackup_.c:1954
#, fuzzy
msgid "Please check if you are using a DVDRAM device"
msgstr "Lûdzu uzklikđíiniet uz partîcijas"
-#: ../../standalone/drakbackup_.c:1893
+#: ../../standalone/drakbackup_.c:1967
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
msgstr ""
-#: ../../standalone/drakbackup_.c:1926
+#: ../../standalone/drakbackup_.c:2000
#, fuzzy
msgid "No CD device defined!"
msgstr "Izvçlieties failu"
-#: ../../standalone/drakbackup_.c:1974
+#: ../../standalone/drakbackup_.c:2048
#, fuzzy
msgid "Use tape to backup"
msgstr "Slikts rezerves kopijas fails"
-#: ../../standalone/drakbackup_.c:1977
+#: ../../standalone/drakbackup_.c:2051
msgid "Please enter the device name to use for backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1983
+#: ../../standalone/drakbackup_.c:2057
#, fuzzy
msgid "Please check if you want to use the non-rewinding device."
msgstr "Lûdzu izvçlieties pakotnes, ko vçlaties instalçt"
-#: ../../standalone/drakbackup_.c:1989
+#: ../../standalone/drakbackup_.c:2063
#, fuzzy
msgid "Please check if you want to erase your tape before the backup."
msgstr "Lûdzu izvçlieties pakotnes, ko vçlaties instalçt"
-#: ../../standalone/drakbackup_.c:1995
+#: ../../standalone/drakbackup_.c:2069
#, fuzzy
msgid "Please check if you want to eject your tape after the backup."
msgstr "Lûdzu izvçlieties pakotnes, ko vçlaties instalçt"
-#: ../../standalone/drakbackup_.c:2001 ../../standalone/drakbackup_.c:2074
-#: ../../standalone/drakbackup_.c:3025
+#: ../../standalone/drakbackup_.c:2075 ../../standalone/drakbackup_.c:2149
+#: ../../standalone/drakbackup_.c:3116
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:2066
+#: ../../standalone/drakbackup_.c:2140
#, fuzzy
msgid "Please enter the directory to save to:"
msgstr "Lûdzu notestçjiet peli"
-#: ../../standalone/drakbackup_.c:2080 ../../standalone/drakbackup_.c:3031
+#: ../../standalone/drakbackup_.c:2155 ../../standalone/drakbackup_.c:3122
#, fuzzy
msgid "Use quota for backup files."
msgstr "Slikts rezerves kopijas fails"
-#: ../../standalone/drakbackup_.c:2146
+#: ../../standalone/drakbackup_.c:2221
#, fuzzy
msgid "Network"
msgstr "Tîkla interfeiss"
-#: ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:2226
msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2156
+#: ../../standalone/drakbackup_.c:2231
msgid "HardDrive / NFS"
msgstr ""
-#: ../../standalone/drakbackup_.c:2161
+#: ../../standalone/drakbackup_.c:2236
#, fuzzy
msgid "Tape"
msgstr "Tips"
-#: ../../standalone/drakbackup_.c:2175 ../../standalone/drakbackup_.c:2179
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2250 ../../standalone/drakbackup_.c:2254
+#: ../../standalone/drakbackup_.c:2258
msgid "hourly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2176 ../../standalone/drakbackup_.c:2180
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2251 ../../standalone/drakbackup_.c:2255
+#: ../../standalone/drakbackup_.c:2258
msgid "daily"
msgstr ""
-#: ../../standalone/drakbackup_.c:2177 ../../standalone/drakbackup_.c:2181
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2252 ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2258
msgid "weekly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2178 ../../standalone/drakbackup_.c:2182
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2253 ../../standalone/drakbackup_.c:2257
+#: ../../standalone/drakbackup_.c:2258
msgid "monthly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2196
+#: ../../standalone/drakbackup_.c:2271
#, fuzzy
msgid "Use daemon"
msgstr "Lietotâja vârds"
-#: ../../standalone/drakbackup_.c:2201
+#: ../../standalone/drakbackup_.c:2276
#, fuzzy
msgid ""
"Please choose the time \n"
"interval between each backup"
msgstr "Lûdzu izvçlieties pakotnes, ko vçlaties instalçt"
-#: ../../standalone/drakbackup_.c:2207
+#: ../../standalone/drakbackup_.c:2282
#, fuzzy
msgid ""
"Please choose the\n"
"media for backup."
msgstr "Lûdzu izvçlieties izmantojamo valodu."
-#: ../../standalone/drakbackup_.c:2214
+#: ../../standalone/drakbackup_.c:2289
msgid ""
"Please be sure that the cron daemon is included in your services. \n"
"\n"
"Note that currently all 'net' medias also use the hard drive."
msgstr ""
-#: ../../standalone/drakbackup_.c:2251
-msgid "Send mail report after each backup to :"
+#: ../../standalone/drakbackup_.c:2326
+msgid "Send mail report after each backup to:"
msgstr ""
-#: ../../standalone/drakbackup_.c:2257
+#: ../../standalone/drakbackup_.c:2332
msgid "Delete Hard Drive tar files after backup to other media."
msgstr ""
-#: ../../standalone/drakbackup_.c:2296
+#: ../../standalone/drakbackup_.c:2371
msgid "What"
msgstr ""
-#: ../../standalone/drakbackup_.c:2301
+#: ../../standalone/drakbackup_.c:2376
#, fuzzy
msgid "Where"
msgstr "Ritenis"
-#: ../../standalone/drakbackup_.c:2306
+#: ../../standalone/drakbackup_.c:2381
#, fuzzy
msgid "When"
msgstr "Ritenis"
-#: ../../standalone/drakbackup_.c:2311
+#: ../../standalone/drakbackup_.c:2386
#, fuzzy
msgid "More Options"
msgstr "Moduïa opcijas:"
-#: ../../standalone/drakbackup_.c:2330 ../../standalone/drakbackup_.c:3873
+#: ../../standalone/drakbackup_.c:2405 ../../standalone/drakbackup_.c:4530
#, fuzzy
msgid "Drakbackup Configuration"
msgstr "Tîkla konfigurâcija"
-#: ../../standalone/drakbackup_.c:2348
+#: ../../standalone/drakbackup_.c:2423
#, fuzzy
msgid "Please choose where you want to backup"
msgstr "Lûdzu izvçlieties pakotnes, ko vçlaties instalçt"
-#: ../../standalone/drakbackup_.c:2350
+#: ../../standalone/drakbackup_.c:2425
msgid "on Hard Drive"
msgstr ""
-#: ../../standalone/drakbackup_.c:2360
+#: ../../standalone/drakbackup_.c:2435
msgid "across Network"
msgstr ""
-#: ../../standalone/drakbackup_.c:2370
+#: ../../standalone/drakbackup_.c:2445
msgid "on CDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2378
+#: ../../standalone/drakbackup_.c:2453
msgid "on Tape Device"
msgstr ""
-#: ../../standalone/drakbackup_.c:2421
+#: ../../standalone/drakbackup_.c:2496
#, fuzzy
msgid "Please choose what you want to backup"
msgstr "Lûdzu izvçlieties pakotnes, ko vçlaties instalçt"
-#: ../../standalone/drakbackup_.c:2422
+#: ../../standalone/drakbackup_.c:2497
#, fuzzy
msgid "Backup system"
msgstr "Failu sistçmu uzstâdîđana"
-#: ../../standalone/drakbackup_.c:2423
+#: ../../standalone/drakbackup_.c:2498
msgid "Backup Users"
msgstr ""
-#: ../../standalone/drakbackup_.c:2426
+#: ../../standalone/drakbackup_.c:2501
msgid "Select user manually"
msgstr ""
-#: ../../standalone/drakbackup_.c:2508
+#: ../../standalone/drakbackup_.c:2584
msgid ""
"\n"
"Backup Sources: \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2509
+#: ../../standalone/drakbackup_.c:2585
msgid ""
"\n"
"- System Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2511
+#: ../../standalone/drakbackup_.c:2587
msgid ""
"\n"
"- User Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2513
+#: ../../standalone/drakbackup_.c:2589
msgid ""
"\n"
"- Other Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2515
+#: ../../standalone/drakbackup_.c:2591
#, c-format
msgid ""
"\n"
-"- Save on Hard drive on path : %s\n"
+"- Save on Hard drive on path: %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2518
+#: ../../standalone/drakbackup_.c:2594
msgid ""
"\n"
"- Delete hard drive tar files after backup.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2524
+#: ../../standalone/drakbackup_.c:2600
msgid ""
"\n"
"- Burn to CD"
msgstr ""
-#: ../../standalone/drakbackup_.c:2525
+#: ../../standalone/drakbackup_.c:2601
msgid "RW"
msgstr ""
-#: ../../standalone/drakbackup_.c:2526
+#: ../../standalone/drakbackup_.c:2602
#, fuzzy, c-format
-msgid " on device : %s"
+msgid " on device: %s"
msgstr "Peles ierîce: %s\n"
-#: ../../standalone/drakbackup_.c:2527
+#: ../../standalone/drakbackup_.c:2603
msgid " (multi-session)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2528
+#: ../../standalone/drakbackup_.c:2604
#, c-format
msgid ""
"\n"
-"- Save to Tape on device : %s"
+"- Save to Tape on device: %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2529
+#: ../../standalone/drakbackup_.c:2605
#, c-format
msgid "\t\tErase=%s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2532
+#: ../../standalone/drakbackup_.c:2608
#, c-format
msgid ""
"\n"
-"- Save via %s on host : %s\n"
+"- Save via %s on host: %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2533
+#: ../../standalone/drakbackup_.c:2609
#, c-format
msgid ""
"\t\t user name: %s\n"
"\t\t on path: %s \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2534
+#: ../../standalone/drakbackup_.c:2610
#, fuzzy
msgid ""
"\n"
"- Options:\n"
msgstr "Opcijas"
-#: ../../standalone/drakbackup_.c:2535
+#: ../../standalone/drakbackup_.c:2611
msgid "\tDo not include System Files\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2538
+#: ../../standalone/drakbackup_.c:2614
msgid "\tBackups use tar and bzip2\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2540
+#: ../../standalone/drakbackup_.c:2616
msgid "\tBackups use tar and gzip\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2543
+#: ../../standalone/drakbackup_.c:2619
#, c-format
msgid ""
"\n"
-"- Daemon (%s) include :\n"
+"- Daemon (%s) include:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2544
+#: ../../standalone/drakbackup_.c:2620
msgid "\t-Hard drive.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2545
+#: ../../standalone/drakbackup_.c:2621
msgid "\t-CDROM.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2546
+#: ../../standalone/drakbackup_.c:2622
msgid "\t-Tape \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2547
+#: ../../standalone/drakbackup_.c:2623
msgid "\t-Network by FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2548
+#: ../../standalone/drakbackup_.c:2624
msgid "\t-Network by SSH.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2549
+#: ../../standalone/drakbackup_.c:2625
msgid "\t-Network by rsync.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2550
+#: ../../standalone/drakbackup_.c:2626
msgid "\t-Network by webdav.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2552
+#: ../../standalone/drakbackup_.c:2628
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2558
+#: ../../standalone/drakbackup_.c:2634
msgid ""
"List of data to restore:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2725
+#: ../../standalone/drakbackup_.c:2801
msgid ""
"List of data corrupted:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2727
+#: ../../standalone/drakbackup_.c:2803
#, fuzzy
msgid "Please uncheck or remove it on next time."
msgstr "Lûdzu norâdiet, kuram seriâlajam portam ir pieslçgts modçms."
-#: ../../standalone/drakbackup_.c:2737
+#: ../../standalone/drakbackup_.c:2813
msgid "Backup files are corrupted"
msgstr ""
-#: ../../standalone/drakbackup_.c:2758
+#: ../../standalone/drakbackup_.c:2834
msgid " All of your selected data have been "
msgstr ""
-#: ../../standalone/drakbackup_.c:2759
+#: ../../standalone/drakbackup_.c:2835
#, c-format
msgid " Successfuly Restored on %s "
msgstr ""
-#: ../../standalone/drakbackup_.c:2877
+#: ../../standalone/drakbackup_.c:2953
#, fuzzy
msgid " Restore Configuration "
msgstr "Tîkla konfigurâcija"
-#: ../../standalone/drakbackup_.c:2895
+#: ../../standalone/drakbackup_.c:2971
msgid "OK to restore the other files."
msgstr ""
-#: ../../standalone/drakbackup_.c:2912
+#: ../../standalone/drakbackup_.c:2988
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2975
+#: ../../standalone/drakbackup_.c:3066
#, fuzzy
msgid "Backup the system files before:"
msgstr "Slikts rezerves kopijas fails"
-#: ../../standalone/drakbackup_.c:2977
+#: ../../standalone/drakbackup_.c:3068
#, fuzzy
msgid "please choose the date to restore"
msgstr "Lûdzu izvçlieties jûsu peles tipu."
-#: ../../standalone/drakbackup_.c:3014
+#: ../../standalone/drakbackup_.c:3105
#, fuzzy
msgid "Use Hard Disk to backup"
msgstr "Slikts rezerves kopijas fails"
-#: ../../standalone/drakbackup_.c:3017
+#: ../../standalone/drakbackup_.c:3108
#, fuzzy
msgid "Please enter the directory to save:"
msgstr "Lûdzu notestçjiet peli"
-#: ../../standalone/drakbackup_.c:3060
+#: ../../standalone/drakbackup_.c:3151
#, fuzzy
msgid "FTP Connection"
msgstr "LAN pieslçgums"
-#: ../../standalone/drakbackup_.c:3067
+#: ../../standalone/drakbackup_.c:3158
#, fuzzy
msgid "Secure Connection"
msgstr "Izvçlieties printera pieslçgumu"
-#: ../../standalone/drakbackup_.c:3093
+#: ../../standalone/drakbackup_.c:3184
#, fuzzy
msgid "Restore from Hard Disk."
msgstr "Atjanot no disketes"
-#: ../../standalone/drakbackup_.c:3095
+#: ../../standalone/drakbackup_.c:3186
msgid "Please enter the directory where backups are stored"
msgstr ""
-#: ../../standalone/drakbackup_.c:3157
+#: ../../standalone/drakbackup_.c:3254
#, fuzzy
msgid "Select another media to restore from"
msgstr "Lûdzu izvçlieties jûsu peles tipu."
-#: ../../standalone/drakbackup_.c:3159
+#: ../../standalone/drakbackup_.c:3256
#, fuzzy
msgid "Other Media"
msgstr "Cits"
-#: ../../standalone/drakbackup_.c:3164
+#: ../../standalone/drakbackup_.c:3261
#, fuzzy
msgid "Restore system"
msgstr "Sistçmas instalçđana"
-#: ../../standalone/drakbackup_.c:3165
+#: ../../standalone/drakbackup_.c:3262
#, fuzzy
msgid "Restore Users"
msgstr "Atjaunot no faila"
-#: ../../standalone/drakbackup_.c:3166
+#: ../../standalone/drakbackup_.c:3263
#, fuzzy
msgid "Restore Other"
msgstr "Atjaunot no faila"
-#: ../../standalone/drakbackup_.c:3168
+#: ../../standalone/drakbackup_.c:3265
#, fuzzy
msgid "select path to restore (instead of /)"
msgstr "Lûdzu izvçlieties jûsu peles tipu."
-#: ../../standalone/drakbackup_.c:3172
+#: ../../standalone/drakbackup_.c:3269
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:3174
+#: ../../standalone/drakbackup_.c:3271
msgid "Remove user directories before restore."
msgstr ""
-#: ../../standalone/drakbackup_.c:3232
+#: ../../standalone/drakbackup_.c:3384
+msgid ""
+"Restore Selected\n"
+"Catalog Entry"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3394
+#, fuzzy
+msgid ""
+"Restore Selected\n"
+"Files"
+msgstr "Noòemt rindu"
+
+#: ../../standalone/drakbackup_.c:3411
+#, fuzzy
+msgid ""
+"Change\n"
+"Restore Path"
+msgstr "Atjaunot no faila"
+
+#: ../../standalone/drakbackup_.c:3477
+#, c-format
+msgid "Backup files not found at %s."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3490
+#, c-format
+msgid ""
+"Insert the CD with volume label %s\n"
+" in the CD drive under mount point /mnt/cdrom"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3490
+#, fuzzy
+msgid "Restore From CD"
+msgstr "Atjanot no disketes"
+
+#: ../../standalone/drakbackup_.c:3492
+#, c-format
+msgid "Not the correct CD label. Disk is labelled %s."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3502
+#, c-format
+msgid ""
+"Insert the tape with volume label %s\n"
+" in the tape drive device %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3502
+#, fuzzy
+msgid "Restore From Tape"
+msgstr "Salabot partîciju tabulu"
+
+#: ../../standalone/drakbackup_.c:3504
+#, c-format
+msgid "Not the correct tape label. Tape is labelled %s."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3524
+#, fuzzy
+msgid "Restore Via Network"
+msgstr "Atjaunot no faila"
+
+#: ../../standalone/drakbackup_.c:3524
+#, c-format
+msgid "Restore Via Network Protocol: %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3525
+#, fuzzy
+msgid "Host Name"
+msgstr "Resursa vârds:"
+
+#: ../../standalone/drakbackup_.c:3526
+msgid "Host Path or Module"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3533
+#, fuzzy
+msgid "Password required"
+msgstr "Parole"
+
+#: ../../standalone/drakbackup_.c:3539
+#, fuzzy
+msgid "Username required"
+msgstr "Lietotâja vârds"
+
+#: ../../standalone/drakbackup_.c:3542
+#, fuzzy
+msgid "Hostname required"
+msgstr "Resursa vârds: "
+
+#: ../../standalone/drakbackup_.c:3547
+msgid "Path or Module required"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3560
+msgid "Files Restored..."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3563
+#, fuzzy
+msgid "Restore Failed..."
+msgstr "Atjaunot no faila"
+
+#: ../../standalone/drakbackup_.c:3801
msgid "Restore all backups"
msgstr ""
-#: ../../standalone/drakbackup_.c:3241
+#: ../../standalone/drakbackup_.c:3810
#, fuzzy
msgid "Custom Restore"
msgstr "Pielâgota"
-#: ../../standalone/drakbackup_.c:3287 ../../standalone/drakbackup_.c:3320
-#: ../../standalone/drakbackup_.c:3346 ../../standalone/drakbackup_.c:3373
-#: ../../standalone/drakbackup_.c:3400 ../../standalone/drakbackup_.c:3460
-#: ../../standalone/drakbackup_.c:3487 ../../standalone/drakbackup_.c:3513
+#: ../../standalone/drakbackup_.c:3856
+msgid "CD in place - continue."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3862
+msgid "Browse to new restore repository."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3865
+#, fuzzy
+msgid "Restore From Catalog"
+msgstr "Salabot partîciju tabulu"
+
+#: ../../standalone/drakbackup_.c:3893
+#, fuzzy
+msgid "Restore Progress"
+msgstr "Atjaunot no faila"
+
+#: ../../standalone/drakbackup_.c:3935 ../../standalone/drakbackup_.c:3968
+#: ../../standalone/drakbackup_.c:3994 ../../standalone/drakbackup_.c:4021
+#: ../../standalone/drakbackup_.c:4048 ../../standalone/drakbackup_.c:4108
+#: ../../standalone/drakbackup_.c:4135 ../../standalone/drakbackup_.c:4165
+#: ../../standalone/drakbackup_.c:4191
#, fuzzy
msgid "Previous"
msgstr "<- Atpakaï"
-#: ../../standalone/drakbackup_.c:3291 ../../standalone/drakbackup_.c:3377
+#: ../../standalone/drakbackup_.c:3939 ../../standalone/drakbackup_.c:4025
#: ../../standalone/logdrake_.c:223
#, fuzzy
msgid "Save"
msgstr "Stâvoklis:"
-#: ../../standalone/drakbackup_.c:3350
+#: ../../standalone/drakbackup_.c:3998
#, fuzzy
msgid "Build Backup"
msgstr "Slikts rezerves kopijas fails"
-#: ../../standalone/drakbackup_.c:3404 ../../standalone/drakbackup_.c:3974
+#: ../../standalone/drakbackup_.c:4052 ../../standalone/drakbackup_.c:4632
#, fuzzy
msgid "Restore"
msgstr "Atjaunot no faila"
-#: ../../standalone/drakbackup_.c:3553
-msgid ""
-"Please Build backup before to restore it...\n"
-" or verify that your path to save is correct."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3574
+#: ../../standalone/drakbackup_.c:4231
msgid ""
-"Error during sendmail\n"
-" your report mail was not sent\n"
+"Error during sendmail.\n"
+" Your report mail was not sent.\n"
" Please configure sendmail"
msgstr ""
-#: ../../standalone/drakbackup_.c:3598
+#: ../../standalone/drakbackup_.c:4255
#, fuzzy
msgid ""
"The following packages need to be installed:\n"
" @list_of_rpm_to_install"
msgstr "Tiks instalçtas sekojođas pakotnes"
-#: ../../standalone/drakbackup_.c:3621
+#: ../../standalone/drakbackup_.c:4278
msgid ""
"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
-#: ../../standalone/drakbackup_.c:3644
+#: ../../standalone/drakbackup_.c:4301
#, fuzzy
msgid "Please select data to restore..."
msgstr "Lûdzu izvçlieties izmantojamo valodu."
-#: ../../standalone/drakbackup_.c:3665
+#: ../../standalone/drakbackup_.c:4322
#, fuzzy
msgid "Please select media for backup..."
msgstr "Lûdzu izvçlieties izmantojamo valodu."
-#: ../../standalone/drakbackup_.c:3687
+#: ../../standalone/drakbackup_.c:4344
#, fuzzy
msgid "Please select data to backup..."
msgstr "Lûdzu izvçlieties izmantojamo valodu."
-#: ../../standalone/drakbackup_.c:3709
+#: ../../standalone/drakbackup_.c:4366
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
msgstr ""
-#: ../../standalone/drakbackup_.c:3730
+#: ../../standalone/drakbackup_.c:4387
msgid "Under Devel ... please wait."
msgstr ""
-#: ../../standalone/drakbackup_.c:3811
+#: ../../standalone/drakbackup_.c:4468
#, fuzzy
msgid "Backup system files"
msgstr "Slikts rezerves kopijas fails"
-#: ../../standalone/drakbackup_.c:3813
+#: ../../standalone/drakbackup_.c:4470
#, fuzzy
msgid "Backup user files"
msgstr "Slikts rezerves kopijas fails"
-#: ../../standalone/drakbackup_.c:3815
+#: ../../standalone/drakbackup_.c:4472
#, fuzzy
msgid "Backup other files"
msgstr "Slikts rezerves kopijas fails"
-#: ../../standalone/drakbackup_.c:3817 ../../standalone/drakbackup_.c:3850
+#: ../../standalone/drakbackup_.c:4474 ../../standalone/drakbackup_.c:4507
msgid "Total Progress"
msgstr ""
-#: ../../standalone/drakbackup_.c:3841
+#: ../../standalone/drakbackup_.c:4498
msgid "files sending by FTP"
msgstr ""
-#: ../../standalone/drakbackup_.c:3845
+#: ../../standalone/drakbackup_.c:4502
#, fuzzy
msgid "Sending files..."
msgstr "Saglabât failâ"
-#: ../../standalone/drakbackup_.c:3931
+#: ../../standalone/drakbackup_.c:4588
#, fuzzy
msgid "Backup Now from configuration file"
msgstr "Tîkla konfigurâcija"
-#: ../../standalone/drakbackup_.c:3936
+#: ../../standalone/drakbackup_.c:4593
#, fuzzy
msgid "View Backup Configuration."
msgstr "Tîkla konfigurâcija"
-#: ../../standalone/drakbackup_.c:3956
+#: ../../standalone/drakbackup_.c:4614
#, fuzzy
msgid "Wizard Configuration"
msgstr "LAN konfigurâcija"
-#: ../../standalone/drakbackup_.c:3961
+#: ../../standalone/drakbackup_.c:4619
#, fuzzy
msgid "Advanced Configuration"
msgstr "LAN konfigurâcija"
-#: ../../standalone/drakbackup_.c:3966
+#: ../../standalone/drakbackup_.c:4624
#, fuzzy
msgid "Backup Now"
msgstr "Failu sistçmu uzstâdîđana"
-#: ../../standalone/drakbackup_.c:3996
+#: ../../standalone/drakbackup_.c:4658
msgid "Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:4045
+#: ../../standalone/drakbackup_.c:4707
msgid ""
"options description:\n"
"\n"
@@ -10288,7 +10810,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4075
+#: ../../standalone/drakbackup_.c:4737
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -10297,7 +10819,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4083
+#: ../../standalone/drakbackup_.c:4745
msgid ""
"options description:\n"
"\n"
@@ -10338,45 +10860,45 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4122
+#: ../../standalone/drakbackup_.c:4784
msgid ""
"restore description:\n"
" \n"
-"Only the most recent date will be used ,because with incremental \n"
-"backups it is necesarry to restore one by one each older backups.\n"
+"Only the most recent date will be used, because with incremental \n"
+"backups it is necessary to restore one by one each older backup.\n"
"\n"
-"So if you don't like to restore a user please unselect all his\n"
-"check box.\n"
+"So if you don't want to restore a user please unselect all their\n"
+"check boxes.\n"
"\n"
-"Otherwise, you are able to select only one of this\n"
+"Otherwise, you are able to select only one of these.\n"
"\n"
" - Incremental Backups:\n"
"\n"
"\tThe incremental backup is the most powerful \n"
-"\toption to use backup, this option allow you \n"
-"\tto backup all your data the first time, and \n"
-"\tonly the changed after.\n"
-"\tSo you will be able during the restore\n"
+"\toption to use. This option allows you to \n"
+"\tbackup all of your data the first time, and \n"
+"\tonly the changed data after.\n"
+"\tSo you will be able, during the restore\n"
"\tstep, to restore your data from a specified\n"
"\tdate.\n"
-"\tIf you have not selected this options all\n"
+"\tIf you have not selected this option all\n"
"\told backups are deleted before each backup. \n"
"\n"
"\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4148 ../../standalone/drakbackup_.c:4225
+#: ../../standalone/drakbackup_.c:4810 ../../standalone/drakbackup_.c:4887
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
-#: ../../standalone/drakbackup_.c:4150 ../../standalone/drakbackup_.c:4227
+#: ../../standalone/drakbackup_.c:4812 ../../standalone/drakbackup_.c:4889
msgid ""
" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
-#: ../../standalone/drakbackup_.c:4152 ../../standalone/drakbackup_.c:4229
+#: ../../standalone/drakbackup_.c:4814 ../../standalone/drakbackup_.c:4891
msgid ""
" This program is free software; you can redistribute it and/or modify\n"
" it under the terms of the GNU General Public License as published by\n"
@@ -10393,7 +10915,7 @@ msgid ""
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
msgstr ""
-#: ../../standalone/drakbackup_.c:4166
+#: ../../standalone/drakbackup_.c:4828
msgid ""
"Description:\n"
"\n"
@@ -10433,7 +10955,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4204
+#: ../../standalone/drakbackup_.c:4866
msgid ""
"options description:\n"
"\n"
@@ -10444,7 +10966,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4213
+#: ../../standalone/drakbackup_.c:4875
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -10457,7 +10979,7 @@ msgid ""
"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4243
+#: ../../standalone/drakbackup_.c:4905
msgid ""
"Description:\n"
"\n"
@@ -10538,9 +11060,9 @@ msgstr ""
msgid "Synchronization tool"
msgstr ""
-#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:85
-#: ../../standalone/drakbug_.c:150 ../../standalone/drakbug_.c:152
-#: ../../standalone/drakbug_.c:156
+#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:86
+#: ../../standalone/drakbug_.c:151 ../../standalone/drakbug_.c:153
+#: ../../standalone/drakbug_.c:157
#, fuzzy
msgid "Standalone Tools"
msgstr "Konsoles rîki"
@@ -10592,26 +11114,26 @@ msgstr "Printeris"
msgid "Configuration Wizards"
msgstr "Tîkla konfigurçđanas meistars"
-#: ../../standalone/drakbug_.c:96
+#: ../../standalone/drakbug_.c:97
#, fuzzy
msgid "Application:"
msgstr "Autentifikâcija"
-#: ../../standalone/drakbug_.c:97
+#: ../../standalone/drakbug_.c:98
#, fuzzy
msgid "Package: "
msgstr "Pakotòu grupu izvçle"
-#: ../../standalone/drakbug_.c:98
+#: ../../standalone/drakbug_.c:99
msgid "Kernel:"
msgstr ""
-#: ../../standalone/drakbug_.c:99
+#: ../../standalone/drakbug_.c:100
#, fuzzy
msgid "Release: "
msgstr "Lûdzu uzgaidiet"
-#: ../../standalone/drakbug_.c:114
+#: ../../standalone/drakbug_.c:115
msgid ""
"\n"
"\n"
@@ -10623,21 +11145,21 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbug_.c:135
+#: ../../standalone/drakbug_.c:136
#, fuzzy
msgid "Report"
msgstr "Ports"
-#: ../../standalone/drakbug_.c:165
+#: ../../standalone/drakbug_.c:166
#, fuzzy
msgid "Not installed"
msgstr "Instalçđanas beigas"
-#: ../../standalone/drakbug_.c:182
+#: ../../standalone/drakbug_.c:183
msgid "connecting to Bugzilla wizard ..."
msgstr ""
-#: ../../standalone/drakbug_.c:189
+#: ../../standalone/drakbug_.c:190
#, fuzzy
msgid "No browser available! Please install one"
msgstr "Jûs varat izvçlçties citas valodas, kas bûs pieejamas pçc instalçđanas"
@@ -11090,7 +11612,7 @@ msgstr "Montçđanas punkts"
#: ../../standalone/drakfont_.c:909
#, fuzzy
-msgid "Choose the applications that will support the fonts :"
+msgid "Choose the applications that will support the fonts:"
msgstr "Izvçlieties partîcijas, ko vçlaties formatçt"
#: ../../standalone/drakfont_.c:918
@@ -11171,19 +11693,19 @@ msgstr "Jûsu sistçmâ nav tîkla adaptera!"
msgid "Post Uninstall"
msgstr "Instalçđanas beigas"
-#: ../../standalone/drakgw_.c:42 ../../standalone/drakgw_.c:195
+#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:188
msgid "Internet Connection Sharing"
msgstr "Interneta pieslçguma koplietođana"
-#: ../../standalone/drakgw_.c:121
+#: ../../standalone/drakgw_.c:119
msgid "Sorry, we support only 2.4 kernels."
msgstr ""
-#: ../../standalone/drakgw_.c:133
+#: ../../standalone/drakgw_.c:130
msgid "Internet Connection Sharing currently enabled"
msgstr "Interneta pieslçguma koplietođana pađlaik ir ieslçgta"
-#: ../../standalone/drakgw_.c:134
+#: ../../standalone/drakgw_.c:131
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -11195,33 +11717,33 @@ msgstr ""
"\n"
"Ko jûs vçlaties darît?"
-#: ../../standalone/drakgw_.c:138
+#: ../../standalone/drakgw_.c:135
msgid "disable"
msgstr "atslçgt"
-#: ../../standalone/drakgw_.c:138 ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:135 ../../standalone/drakgw_.c:160
msgid "dismiss"
msgstr "atmest"
-#: ../../standalone/drakgw_.c:138 ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:135 ../../standalone/drakgw_.c:160
msgid "reconfigure"
msgstr "pârkonfigurçt"
-#: ../../standalone/drakgw_.c:141
+#: ../../standalone/drakgw_.c:138
#, fuzzy
msgid "Disabling servers..."
msgstr "Noskaidroju ierîces..."
-#: ../../standalone/drakgw_.c:149
+#: ../../standalone/drakgw_.c:146
#, fuzzy
msgid "Internet connection sharing is now disabled."
msgstr "Interneta pieslçguma koplietođana pađlaik ir atslçgta"
-#: ../../standalone/drakgw_.c:158
+#: ../../standalone/drakgw_.c:155
msgid "Internet Connection Sharing currently disabled"
msgstr "Interneta pieslçguma koplietođana pađlaik ir atslçgta"
-#: ../../standalone/drakgw_.c:159
+#: ../../standalone/drakgw_.c:156
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
@@ -11233,20 +11755,20 @@ msgstr ""
"\n"
"Ko jûs vçlaties darît?"
-#: ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:160
msgid "enable"
msgstr "ieslçgt"
-#: ../../standalone/drakgw_.c:170
+#: ../../standalone/drakgw_.c:167
msgid "Enabling servers..."
msgstr ""
-#: ../../standalone/drakgw_.c:175
+#: ../../standalone/drakgw_.c:172
#, fuzzy
msgid "Internet connection sharing is now enabled."
msgstr "Interneta pieslçguma koplietođana pađlaik ir ieslçgta"
-#: ../../standalone/drakgw_.c:196
+#: ../../standalone/drakgw_.c:189
#, fuzzy
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
@@ -11263,22 +11785,22 @@ msgstr ""
"\n"
"Vai vçlaties uzstâdît Interneta pieslçguma koplietođanu?"
-#: ../../standalone/drakgw_.c:222
+#: ../../standalone/drakgw_.c:215
#, c-format
msgid "Interface %s (using module %s)"
msgstr ""
#
-#: ../../standalone/drakgw_.c:223
+#: ../../standalone/drakgw_.c:216
#, fuzzy, c-format
msgid "Interface %s"
msgstr "Interfeiss"
-#: ../../standalone/drakgw_.c:231
+#: ../../standalone/drakgw_.c:224
msgid "No network adapter on your system!"
msgstr "Jûsu sistçmâ nav tîkla adaptera!"
-#: ../../standalone/drakgw_.c:232
+#: ../../standalone/drakgw_.c:225
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
@@ -11286,11 +11808,11 @@ msgstr ""
"Jûsu sistçmâ nav atrasts neviens ethernet tîkla adapteris. Lûdzu izmantojiet "
"dzelțu konfigurçđanas rîku."
-#: ../../standalone/drakgw_.c:238
+#: ../../standalone/drakgw_.c:231
msgid "Network interface"
msgstr "Tîkla interfeiss"
-#: ../../standalone/drakgw_.c:239
+#: ../../standalone/drakgw_.c:232
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -11305,7 +11827,7 @@ msgstr ""
"\n"
"Vai vçlaties uzstâdît jûsu lokâlo datortîklu ar đo adapteri?"
-#: ../../standalone/drakgw_.c:248
+#: ../../standalone/drakgw_.c:241
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
@@ -11313,12 +11835,12 @@ msgstr ""
"Lûdzu izvçlieties, kurđ tîkla adapteris bûs pieslçgts jûsu lokâlajam "
"datortîklam."
-#: ../../standalone/drakgw_.c:266
+#: ../../standalone/drakgw_.c:259
#, fuzzy
msgid "Network interface already configured"
msgstr "Monitors nav konfigurçts"
-#: ../../standalone/drakgw_.c:267
+#: ../../standalone/drakgw_.c:260
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -11328,17 +11850,17 @@ msgid ""
"You can do it manually but you need to know what you're doing."
msgstr ""
-#: ../../standalone/drakgw_.c:272
+#: ../../standalone/drakgw_.c:265
#, fuzzy
msgid "Automatic reconfiguration"
msgstr "Sâknçđanas stila konfigurçđana"
-#: ../../standalone/drakgw_.c:273
+#: ../../standalone/drakgw_.c:266
#, fuzzy
msgid "Show current interface configuration"
msgstr "Interneta konfigurâcija"
-#: ../../standalone/drakgw_.c:275
+#: ../../standalone/drakgw_.c:268
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -11349,7 +11871,7 @@ msgid ""
"Driver: %s"
msgstr ""
-#: ../../standalone/drakgw_.c:287
+#: ../../standalone/drakgw_.c:280
msgid ""
"I can keep your current configuration and assume you already set up a DHCP "
"server; in that case please verify I correctly read the C-Class Network that "
@@ -11361,54 +11883,42 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakgw_.c:292
+#: ../../standalone/drakgw_.c:285
msgid "C-Class Local Network"
msgstr ""
-#: ../../standalone/drakgw_.c:293
+#: ../../standalone/drakgw_.c:286
#, fuzzy
msgid "(This) DHCP Server IP"
msgstr "CUPS servera IP"
-#: ../../standalone/drakgw_.c:294
+#: ../../standalone/drakgw_.c:287
msgid "Re-configure interface and DHCP server"
msgstr ""
-#: ../../standalone/drakgw_.c:301
+#: ../../standalone/drakgw_.c:294
msgid "The Local Network did not finish with `.0', bailing out."
msgstr ""
-#: ../../standalone/drakgw_.c:312
+#: ../../standalone/drakgw_.c:305
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr "Potenciâls LAN adređu konflikts atklâts đajâ %s! konfigurâcijâ!\n"
-#: ../../standalone/drakgw_.c:320
-msgid "Firewalling configuration detected!"
-msgstr "Tika atklâta ugunsmûra konfigurâcija!"
-
-#: ../../standalone/drakgw_.c:321
-msgid ""
-"Warning! An existing firewalling configuration has been detected. You may "
-"need some manual fix after installation."
-msgstr ""
-"Brîdinâjums! Ir atklâta eksistçjođa ugunsmûra konfigurâcija. Pçc "
-"instalçđanas jums varbût vajadzçs patstâvîgi pielabot konfigurâciju."
-
-#: ../../standalone/drakgw_.c:328
+#: ../../standalone/drakgw_.c:315
msgid "Configuring..."
msgstr "Konfigurçju..."
-#: ../../standalone/drakgw_.c:329
+#: ../../standalone/drakgw_.c:316
msgid "Configuring scripts, installing software, starting servers..."
msgstr "Tiek konfigurçti skripti, instalçtas programmas, startçti serveri..."
-#: ../../standalone/drakgw_.c:365
+#: ../../standalone/drakgw_.c:352
#, c-format
msgid "Problems installing package %s"
msgstr "Problçmas, instalçjot pakotni %s"
-#: ../../standalone/drakgw_.c:549
+#: ../../standalone/drakgw_.c:485
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
@@ -11420,7 +11930,7 @@ msgstr ""
"konfigurçđanu\n"
"(DHCP)."
-#: ../../standalone/drakgw_.c:566
+#: ../../standalone/drakgw_.c:504
#, fuzzy
msgid "The setup has already been done, but it's currently disabled."
msgstr ""
@@ -11429,7 +11939,7 @@ msgstr ""
"\n"
"Ko jûs vçlaties darît?"
-#: ../../standalone/drakgw_.c:567
+#: ../../standalone/drakgw_.c:505
#, fuzzy
msgid "The setup has already been done, and it's currently enabled."
msgstr ""
@@ -11438,17 +11948,17 @@ msgstr ""
"\n"
"Ko jûs vçlaties darît?"
-#: ../../standalone/drakgw_.c:568
+#: ../../standalone/drakgw_.c:506
#, fuzzy
msgid "No Internet Connection Sharing has ever been configured."
msgstr "Interneta pieslçguma koplietođana pađlaik ir ieslçgta"
-#: ../../standalone/drakgw_.c:573
+#: ../../standalone/drakgw_.c:511
#, fuzzy
msgid "Internet connection sharing configuration"
msgstr "Interneta pieslçgums un konfigurâcija"
-#: ../../standalone/drakgw_.c:580
+#: ../../standalone/drakgw_.c:518
#, fuzzy, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -11458,6 +11968,158 @@ msgid ""
"Click on Configure to launch the setup wizard."
msgstr "Interneta pieslçguma koplietođana"
+#: ../../standalone/draksound_.c:46
+#, fuzzy
+msgid "No Sound Card detected!"
+msgstr "Nav pieslçgts"
+
+#: ../../standalone/draksound_.c:47
+msgid ""
+"No Sound Card has been detected on your machine. Please verify that a Linux-"
+"supported Sound Card is correctly plugged in.\n"
+"\n"
+"\n"
+"You can visit our hardware database at:\n"
+"\n"
+"\n"
+"http://www.linux-mandrake.com/en/hardware.php3"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:32
+msgid "package ImageMagick is required for correct working"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:76
+#, fuzzy
+msgid "first step creation"
+msgstr "sâknçđanas diska veidođana"
+
+#: ../../standalone/draksplash_.c:77
+#, fuzzy
+msgid "final resolution"
+msgstr "Izđíirtspçja"
+
+#: ../../standalone/draksplash_.c:78 ../../standalone/draksplash_.c:170
+#, fuzzy
+msgid "choose image file"
+msgstr "Izvçlieties darbîbu"
+
+#: ../../standalone/draksplash_.c:79
+#, fuzzy
+msgid "Theme name"
+msgstr "Koplietojuma vârds"
+
+#: ../../standalone/draksplash_.c:81
+msgid "make bootsplash step 2"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:82
+#, fuzzy
+msgid "go to lilosplash configuration"
+msgstr "Pçcinstalçđanas konfigurçđana"
+
+#: ../../standalone/draksplash_.c:83
+#, fuzzy
+msgid "quit"
+msgstr "Beigt"
+
+#: ../../standalone/draksplash_.c:84
+#, fuzzy
+msgid "save theme"
+msgstr "Sistçmas instalçđana"
+
+#: ../../standalone/draksplash_.c:85
+msgid "browse"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:98 ../../standalone/draksplash_.c:159
+#, fuzzy
+msgid "Configure bootsplash picture"
+msgstr "Servisu konfigurçđana"
+
+#: ../../standalone/draksplash_.c:99
+msgid "x coordinate of text box in number of character"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:100
+msgid "y coordinate of text box in number of character"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:101
+msgid "text width"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:102
+msgid "text box height"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:103
+msgid "the progress bar x coordinate of its upper left corner"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:104
+msgid "the progress bar y coordinate of its upper left corner"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:105
+msgid "the width of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:106
+msgid "the heigth of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:107
+msgid "the color of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:119
+#, fuzzy
+msgid "go back"
+msgstr "Loopback"
+
+#: ../../standalone/draksplash_.c:120
+#, fuzzy
+msgid "preview"
+msgstr "ierîce"
+
+#: ../../standalone/draksplash_.c:121
+#, fuzzy
+msgid "choose color"
+msgstr "Norâdiet monitoru"
+
+#: ../../standalone/draksplash_.c:124
+msgid "Display logo on Console"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:125
+msgid "Make kernel message quiet by default"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:161 ../../standalone/draksplash_.c:330
+#, c-format
+msgid "This theme haven't yet any bootsplash in %s !"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:213
+msgid "saving Bootsplash theme..."
+msgstr ""
+
+#: ../../standalone/draksplash_.c:436
+#, fuzzy
+msgid "ProgressBar color selection"
+msgstr "Printera pieslçgums"
+
+#: ../../standalone/draksplash_.c:454
+#, fuzzy
+msgid "You must choose an image file first!"
+msgstr "Printera ierîces URI"
+
+#: ../../standalone/draksplash_.c:463
+#, fuzzy
+msgid "Generating preview ..."
+msgstr "Noskaidroju ierîces..."
+
#: ../../standalone/drakxtv_.c:49
msgid ""
"XawTV isn't installed!\n"
@@ -11550,11 +12212,11 @@ msgid ""
msgstr ""
#: ../../standalone/drakxtv_.c:109
-msgid "TV norm :"
+msgid "TV norm:"
msgstr ""
#: ../../standalone/drakxtv_.c:110
-msgid "Area :"
+msgid "Area:"
msgstr ""
#: ../../standalone/drakxtv_.c:114
@@ -11630,7 +12292,7 @@ msgstr "Neizdodas uzsâkt uzlabođanu no tîkla !!!\n"
msgid "The change is done, but to be effective you must logout"
msgstr ""
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:517
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:515
msgid "logdrake"
msgstr "logdrake"
@@ -11809,7 +12471,7 @@ msgstr "ierîce"
#: ../../standalone/logdrake_.c:431
msgid ""
-"You will receive an alert if one of the selected service is no more running"
+"You will receive an alert if one of the selected services is no more running"
msgstr ""
#: ../../standalone/logdrake_.c:443
@@ -11831,19 +12493,19 @@ msgstr "Konfigurâcija"
msgid "Please enter your email address below "
msgstr "Lûdzu mçìiniet vçlreiz"
-#: ../../standalone/logdrake_.c:499
+#: ../../standalone/logdrake_.c:497
msgid "Save as.."
msgstr "Saglabât kâ..."
-#: ../../standalone/mousedrake_.c:43
+#: ../../standalone/mousedrake_.c:45
msgid "Please, choose the type of your mouse."
msgstr "Lûdzu izvçlieties jûsu peles tipu."
-#: ../../standalone/mousedrake_.c:57
+#: ../../standalone/mousedrake_.c:58
msgid "Emulate third button?"
msgstr "Vai emulçt tređo pogu?"
-#: ../../standalone/printerdrake_.c:48
+#: ../../standalone/printerdrake_.c:57
#, fuzzy
msgid "Reading printer data ..."
msgstr "Nolasu CUPS draiveru datubâzi..."
@@ -11857,34 +12519,45 @@ msgstr "Noskaidroju ierîces..."
msgid "Test ports"
msgstr "Pârbaudît portus"
-#: ../../standalone/scannerdrake_.c:52
+#: ../../standalone/scannerdrake_.c:53 ../../standalone/scannerdrake_.c:68
+#: ../../standalone/scannerdrake_.c:81
#, c-format
-msgid "%s found on %s, configure it ?"
+msgid "The %s is not supported by this version of Mandrake Linux."
msgstr ""
+#: ../../standalone/scannerdrake_.c:56
+#, fuzzy, c-format
+msgid "%s found on %s, configure it?"
+msgstr "Vai vçlaties konfigurçt printeri?"
+
#: ../../standalone/scannerdrake_.c:59
+#, c-format
+msgid "%s is not in the scanner database, configure it manually?"
+msgstr ""
+
+#: ../../standalone/scannerdrake_.c:65
#, fuzzy
msgid "Select a scanner"
msgstr "Izvçlieties grafisko karti"
-#: ../../standalone/scannerdrake_.c:79
+#: ../../standalone/scannerdrake_.c:93
#, c-format
msgid "This %s scanner is unsupported"
msgstr ""
-#: ../../standalone/scannerdrake_.c:93
+#: ../../standalone/scannerdrake_.c:107
#, c-format
msgid ""
"Scannerdrake was not able to detect your %s scanner.\n"
"Please select the device where your scanner is plugged"
msgstr ""
-#: ../../standalone/scannerdrake_.c:95
+#: ../../standalone/scannerdrake_.c:109
#, fuzzy
msgid "choose device"
msgstr "Sâknçjamâ ierîce"
-#: ../../standalone/scannerdrake_.c:101
+#: ../../standalone/scannerdrake_.c:115
#, c-format
msgid ""
"This %s scanner must be configured by printerdrake.\n"
@@ -11892,7 +12565,7 @@ msgid ""
"section."
msgstr ""
-#: ../../standalone/scannerdrake_.c:106
+#: ../../standalone/scannerdrake_.c:120
#, c-format
msgid ""
"Your %s scanner has been configured.\n"
@@ -11900,43 +12573,18 @@ msgid ""
"applications menu."
msgstr ""
-#: ../../standalone/service_harddrake_.c:57
+#: ../../standalone/service_harddrake_.c:39
#, c-format
msgid "Some devices in the \"%s\" hardware class were removed:\n"
msgstr ""
-#: ../../standalone/service_harddrake_.c:61
+#: ../../standalone/service_harddrake_.c:43
#, c-format
msgid ""
"\n"
"Some devices in the %s class were added:\n"
msgstr ""
-#: ../../standalone/tinyfirewall_.c:30
-#, fuzzy
-msgid "Firewalling Configuration"
-msgstr "Tika atklâta ugunsmûra konfigurâcija!"
-
-#: ../../standalone/tinyfirewall_.c:43
-#, fuzzy
-msgid "Firewalling configuration"
-msgstr "Tika atklâta ugunsmûra konfigurâcija!"
-
-#: ../../standalone/tinyfirewall_.c:78
-msgid ""
-"Firewalling\n"
-"\n"
-"You already have set up a firewall.\n"
-"Click on Configure to change or remove the firewall"
-msgstr ""
-
-#: ../../standalone/tinyfirewall_.c:82
-msgid ""
-"Firewalling\n"
-"\n"
-"Click on Configure to set up a standard firewall"
-msgstr ""
-
#: ../../steps.pm_.c:14
msgid "Choose your language"
msgstr "Valodas izvçle"
@@ -12010,169 +12658,7 @@ msgstr "Sistçmas instalçđana"
msgid "Exit install"
msgstr "Instalçđanas beigas"
-#: ../../tinyfirewall.pm_.c:9
-msgid ""
-"tinyfirewall configurator\n"
-"\n"
-"This configures a personal firewall for this Mandrake Linux machine.\n"
-"For a powerful dedicated firewall solution, please look to the\n"
-"specialized MandrakeSecurity Firewall distribution."
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:14
-msgid ""
-"We'll now ask you questions about which services you'd like to allow\n"
-"the Internet to connect to. Please think carefully about these\n"
-"questions, as your computer's security is important.\n"
-"\n"
-"Please, if you're not currently using one of these services, firewall\n"
-"it off. You can change this configuration anytime you like by\n"
-"re-running this application!"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:21
-msgid ""
-"Are you running a web server on this machine that you need the whole\n"
-"Internet to see? If you are running a webserver that only needs to be\n"
-"accessed by this machine, you can safely answer NO here.\n"
-"\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:26
-msgid ""
-"Are you running a name server on this machine? If you didn't set one\n"
-"up to give away IP and zone information to the whole Internet, please\n"
-"answer no.\n"
-"\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:31
-msgid ""
-"Do you want to allow incoming Secure Shell (ssh) connections? This\n"
-"is a telnet-replacement that you might use to login. If you're using\n"
-"telnet now, you should definitely switch to ssh. telnet is not\n"
-"encrypted -- so some attackers can steal your password if you use\n"
-"it. ssh is encrypted and doesn't allow for this eavesdropping."
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:36
-msgid ""
-"Do you want to allow incoming telnet connections?\n"
-"This is horribly unsafe, as we explained in the previous screen. We\n"
-"strongly recommend answering No here and using ssh in place of\n"
-"telnet.\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:41
-msgid ""
-"Are you running an FTP server here that you need accessible to the\n"
-"Internet? If you are, we strongly recommend that you only use it for\n"
-"Anonymous transfers. Any passwords sent by FTP can be stolen by some\n"
-"attackers, since FTP also uses no encryption for transferring passwords.\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:46
-msgid ""
-"Are you running a mail server here? If you're sending you \n"
-"messages through pine, mutt or any other text-based mail client,\n"
-"you probably are. Otherwise, you should firewall this off.\n"
-"\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:51
-msgid ""
-"Are you running a POP or IMAP server here? This would\n"
-"be used to host non-web-based mail accounts for people via \n"
-"this machine.\n"
-"\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:56
-msgid ""
-"You appear to be running a 2.2 kernel. If your network IP\n"
-"is automatically set by a computer in your home or office \n"
-"(dynamically assigned), we need to allow for this. Is\n"
-"this the case?\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:61
-msgid ""
-"Is your computer getting time syncronized to another computer?\n"
-"Mostly, this is used by medium-large Unix/Linux organizations\n"
-"to synchronize time for logging and such. If you're not part\n"
-"of a larger office and haven't heard of this, you probably \n"
-"aren't."
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:66
-msgid ""
-"Configuration complete. May we write these changes to disk?\n"
-"\n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:82
-#, fuzzy, c-format
-msgid "Can't open %s: %s\n"
-msgstr "Adapteris %s: %s"
-
-#: ../../tinyfirewall.pm_.c:84
-#, fuzzy, c-format
-msgid "Can't open %s for writing: %s\n"
-msgstr "Kïûda, atverot %s ierakstîđanai: %s"
-
-#: ../../tinyfirewall.pm_.c:178
-msgid "No I don't need DHCP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:178
-msgid "Yes I need DHCP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:179
-msgid "No I don't need NTP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:179
-msgid "Yes I need NTP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:180 ../../tinyfirewall.pm_.c:184
-msgid "Don't Save"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:180 ../../tinyfirewall.pm_.c:184
-#: ../../tinyfirewall.pm_.c:204
-msgid "Save & Quit"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:195 ../../tinyfirewall.pm_.c:199
-#, fuzzy
-msgid "Firewall Configuration Wizard"
-msgstr "Tîkla konfigurçđanas meistars"
-
-#: ../../tinyfirewall.pm_.c:197
-msgid "No (firewall this off from the internet)"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:198
-msgid "Yes (allow this through the firewall)"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:230
-#, fuzzy
-msgid "Please Wait... Verifying installed packages"
-msgstr "Lûdzu gaidiet, gatavoju instalâciju"
-
-#: ../../tinyfirewall.pm_.c:236
-#, c-format
-msgid ""
-"Failure installing the needed packages : %s and Bastille.\n"
-" Try to install them manually."
-msgstr ""
-
-#: ../../ugtk.pm_.c:619
+#: ../../ugtk.pm_.c:594
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr ""
@@ -12314,6 +12800,12 @@ msgstr ""
msgid "Graphical Environment"
msgstr ""
+#
+#: ../../share/compssUsers:999
+#, fuzzy
+msgid "Development"
+msgstr "Izstrâde, Tîmeklis"
+
#: ../../share/compssUsers:999
msgid "Apache, Pro-ftpd"
msgstr ""
@@ -12434,100 +12926,26 @@ msgstr "Multimçdiji - CD ierakstîđana"
msgid "Scientific Workstation"
msgstr "Zinâtniskâ darbastacija"
-#~ msgid "$mode: $warning"
-#~ msgstr "$mode: $warning"
+#~ msgid "LBA (doesn't work on old BIOSes)"
+#~ msgstr "LBA (nedarbojas ar veciem BIOSiem)"
-#, fuzzy
-#~ msgid ""
-#~ "This level is to be used with care. It makes your system more easy to "
-#~ "use,\n"
-#~ " but very sensitive: it must not be used for a machine "
-#~ "connected to others\n"
-#~ " or to the Internet. There is no password access."
-#~ msgstr ""
-#~ "Đo lîmeni ir jâizmanto uzmanîgi. Tas padara jûsu sistçmu vieglâk\n"
-#~ "izmantojamu, taèu ïoti nedrođu: to nedrîkst izmantot datoram, kas ir\n"
-#~ "pieslçgts citiem datoriem vai Internetam. Netiek prasîtas paroles."
+#~ msgid "You don't have any partitions!"
+#~ msgstr "Jums nav nevienas partîcijas!"
-#, fuzzy
#~ msgid ""
-#~ "With this security level, the use of this system as a server becomes "
-#~ "possible.\n"
-#~ " The security is now high enough to use the system as a "
-#~ "server which can accept\n"
-#~ " connections from many clients. Note: if your machine is "
-#~ "only a client on the Internet, you should choose a lower level."
+#~ "DiskDrake failed to read correctly the partition table.\n"
+#~ "Continue at your own risk!"
#~ msgstr ""
-#~ "Ar đo drođîbas lîmeni sistçmu var sâkt izmantot kâ serveri.\n"
-#~ "Drođîba tagad ir pietiekođi augsta, lai izmantotu sistçmu kâ serveri, "
-#~ "kas\n"
-#~ "apkalpo pieslçgumus no daudziem klientiem. "
-
-#, fuzzy
-#~ msgid "Basic Options"
-#~ msgstr "Opcijas"
+#~ "DiskDrake neizdevâs pareizi nolasît partîciju tabulu.\n"
+#~ "Turpiniet, ja vçlaties riskçt!"
-#, fuzzy
-#~ msgid "Security Checks"
-#~ msgstr "Uzstâdu drođîbas lîmeni"
-
-#, fuzzy
-#~ msgid "Please choose your CD space"
-#~ msgstr "Lûdzu izvçlieties jûsu tastatûras izkârtojumu."
-
-#, fuzzy
-#~ msgid "Please enter the cd writer speed"
-#~ msgstr "Lûdzu notestçjiet peli"
-
-#, fuzzy
-#~ msgid "Please check if you want to include install boot on your CD."
-#~ msgstr "Lûdzu izvçlieties pakotnes, ko vçlaties instalçt"
-
-#, fuzzy
-#~ msgid "Url should begin with 'ftp:'"
-#~ msgstr "Proxy bûtu jâbût ftp://..."
-
-#, fuzzy
#~ msgid ""
-#~ "Please check if you want to include\n"
-#~ " install boot on your CD."
-#~ msgstr "Lûdzu izvçlieties pakotnes, ko vçlaties instalçt"
-
-#, fuzzy
-#~ msgid "Windows PDC"
-#~ msgstr "Noòemt Windows(TM)"
-
-#, fuzzy
-#~ msgid "Tamil"
-#~ msgstr "Tabula"
-
-#, fuzzy
-#~ msgid "PDC Server Name"
-#~ msgstr "NIS serveris"
-
-#, fuzzy
-#~ msgid "Set up printer manually"
-#~ msgstr "Attâls printeris"
-
-#, fuzzy
-#~ msgid "Installing HPOJ package..."
-#~ msgstr "Instalçju pakotni %s"
-
-#, fuzzy
-#~ msgid "Installing SANE packages..."
-#~ msgstr "Instalçju pakotni %s"
-
-#, fuzzy
-#~ msgid "Installing mtools packages..."
-#~ msgstr "Instalçju pakotni %s"
-
-#, fuzzy
-#~ msgid "Making printer port available for CUPS..."
-#~ msgstr "Nolasu CUPS draiveru datubâzi..."
-
-#, fuzzy
-#~ msgid "Control Center"
-#~ msgstr "Pieslçgties Internetam"
+#~ "I can't read your partition table, it's too corrupted for me :(\n"
+#~ "I'll try to go on blanking bad partitions"
+#~ msgstr ""
+#~ "Man neizdodas nolasît partîciju tabulu, priekđ manis tâ ir pârâk bojâta :"
+#~ "(\n"
+#~ "Es mçìinâđu turpinât, atslçdzot sliktâs partîcijas"
#~ msgid "Choose the tool you want to use"
#~ msgstr "Izvçlieties izmantojamo rîku"
@@ -12602,9 +13020,6 @@ msgstr "Zinâtniskâ darbastacija"
#~ msgid "Select a graphics card"
#~ msgstr "Izvçlieties grafisko karti"
-#~ msgid "Warning: testing this graphics card may freeze your computer"
-#~ msgstr "Brîdinâjums: đîs grafiskâs kartes izmçìinâđana var uzkârt datoru"
-
#~ msgid "Standard VGA, 640x480 at 60 Hz"
#~ msgstr "Parasts VGA, 640x480 pie 60 Hz"
diff --git a/perl-install/share/po/mt.po b/perl-install/share/po/mt.po
index f1c09b4e9..41947d63e 100644
--- a/perl-install/share/po/mt.po
+++ b/perl-install/share/po/mt.po
@@ -1,18 +1,18 @@
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR Free Software Foundation, Inc.
+# translation of DrakX-mt.po to Maltese
+# Copyright (C) 2002 Free Software Foundation, Inc.
# Ramon Casha <ramon.casha@linux.org.mt>, 2002
#
msgid ""
msgstr ""
-"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2002-08-21 15:44+0200\n"
-"PO-Revision-Date: 2002-08-19 05:38+0200\n"
+"Project-Id-Version: DrakX-mt\n"
+"POT-Creation-Date: 2002-09-02 20:14+0200\n"
+"PO-Revision-Date: 2002-08-29 06:34+0200\n"
"Last-Translator: Ramon Casha <ramon.casha@linux.org.mt>\n"
"Language-Team: Maltese <mt@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: KBabel 0.9.6\n"
+"X-Generator: KBabel 1.0beta2\n"
#: ../../Xconfig/card.pm_.c:16
msgid "256 kB"
@@ -50,47 +50,47 @@ msgstr "32 MB"
msgid "64 MB or more"
msgstr "64 MB jew iĆŒjed"
-#: ../../Xconfig/card.pm_.c:201
+#: ../../Xconfig/card.pm_.c:203
msgid "Choose a X server"
msgstr "AgÄ§ĆŒel server X"
-#: ../../Xconfig/card.pm_.c:201
+#: ../../Xconfig/card.pm_.c:203
msgid "X server"
msgstr "X server"
-#: ../../Xconfig/card.pm_.c:228
+#: ../../Xconfig/card.pm_.c:230
msgid "Multi-head configuration"
msgstr "Konfigurazzjoni multi-head"
-#: ../../Xconfig/card.pm_.c:229
+#: ../../Xconfig/card.pm_.c:231
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
msgstr ""
-"Is-sistema tiegħek tissaporti konfigurazzjoni \"multi-head\".\n"
+"Is-sistema tiegħek tissapporti konfigurazzjoni \"multi-head\".\n"
"Xi trid tagħmel?"
-#: ../../Xconfig/card.pm_.c:284
+#: ../../Xconfig/card.pm_.c:286
msgid "Select the memory size of your graphics card"
msgstr "AgÄ§ĆŒel id-daqs tal-memorja tal-kard tal-grafika"
-#: ../../Xconfig/card.pm_.c:345
+#: ../../Xconfig/card.pm_.c:347
msgid "XFree configuration"
msgstr "Konfigurazzjoni XFree"
-#: ../../Xconfig/card.pm_.c:347
+#: ../../Xconfig/card.pm_.c:349
msgid "Which configuration of XFree do you want to have?"
msgstr "Liema konfigurazzjoni ta' XFree trid li jkollok?"
-#: ../../Xconfig/card.pm_.c:379
+#: ../../Xconfig/card.pm_.c:381
msgid "Configure all heads independently"
msgstr "Ikkonfigura l-heads kollha independentement"
-#: ../../Xconfig/card.pm_.c:380
+#: ../../Xconfig/card.pm_.c:382
msgid "Use Xinerama extension"
msgstr "UĆŒa estensjoni Xinerama"
-#: ../../Xconfig/card.pm_.c:384
+#: ../../Xconfig/card.pm_.c:386
#, c-format
msgid "Configure only card \"%s\"%s"
msgstr "Ikkonfigura l-kard \"%s\"%s biss"
@@ -101,13 +101,13 @@ msgstr "Ikkonfigura l-kard \"%s\"%s biss"
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:435
+#: ../../Xconfig/card.pm_.c:410 ../../Xconfig/card.pm_.c:436
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s with 3D hardware acceleration"
msgstr "XFree %s b'aċċelerazzjoni 3D"
-#: ../../Xconfig/card.pm_.c:412
+#: ../../Xconfig/card.pm_.c:413
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -118,17 +118,17 @@ msgstr ""
"Il-kard tiegħek hija magħrufa minn XFree %s, li jista' jkollu sapport aħjar "
"2D."
-#: ../../Xconfig/card.pm_.c:414 ../../Xconfig/card.pm_.c:437
+#: ../../Xconfig/card.pm_.c:415 ../../Xconfig/card.pm_.c:438
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr "Il-kard tiegħek tista' tagħmel uĆŒu minn aċċelerazzjoni 3D b' XFree %s."
-#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:443
+#: ../../Xconfig/card.pm_.c:423 ../../Xconfig/card.pm_.c:444
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s b'aċċelerazzjoni 3D ESPERIMENTALI"
-#: ../../Xconfig/card.pm_.c:425
+#: ../../Xconfig/card.pm_.c:426
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -137,10 +137,10 @@ msgid ""
msgstr ""
"Il-kard tiegħek tista' tagħmel uĆŒu minn aċċelerazzjoni 3D b' XFree %s.\n"
"DIN HIJA FAĊILITÀ SPERIMENTALI U TISTA' TWAĩĩAL IL-KOMPJUTER.\n"
-"Il-card tiegħek hija magħrufa minn XFree %s, li jista' jkollu sapport aħjar "
+"Il-kard tiegħek hija magħrufa minn XFree %s, li jista' jkollu sapport aħjar "
"2D."
-#: ../../Xconfig/card.pm_.c:428 ../../Xconfig/card.pm_.c:445
+#: ../../Xconfig/card.pm_.c:429 ../../Xconfig/card.pm_.c:446
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
@@ -149,52 +149,53 @@ msgstr ""
"Il-kard tiegħek tista' tagħmel uĆŒu minn aċċelerazzjoni 3D b' XFree %s.\n"
"DIN HIJA FAĊILITÀ SPERIMENTALI U TISTA' TWAĩĩAL IL-KOMPJUTER."
-#: ../../Xconfig/card.pm_.c:451
+#: ../../Xconfig/card.pm_.c:452
msgid "Xpmac (installation display driver)"
-msgstr "Xpmac (driver tal-iskrin għall-installazzjoni)"
+msgstr "Xpmac (drajver tal-iskrin għall-installazzjoni)"
-#: ../../Xconfig/main.pm_.c:78 ../../Xconfig/main.pm_.c:79
-#: ../../Xconfig/monitor.pm_.c:94 ../../any.pm_.c:974
+#: ../../Xconfig/main.pm_.c:76 ../../Xconfig/main.pm_.c:77
+#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:977
msgid "Custom"
msgstr "Personalizzat"
-#: ../../Xconfig/main.pm_.c:104
+#: ../../Xconfig/main.pm_.c:102
msgid "Graphic Card"
msgstr "Kard grafika"
-#: ../../Xconfig/main.pm_.c:107 ../../Xconfig/monitor.pm_.c:91
+#: ../../Xconfig/main.pm_.c:105 ../../Xconfig/monitor.pm_.c:93
msgid "Monitor"
msgstr "Skrin"
-#: ../../Xconfig/main.pm_.c:110 ../../Xconfig/resolution_and_depth.pm_.c:209
+#: ../../Xconfig/main.pm_.c:108 ../../Xconfig/resolution_and_depth.pm_.c:209
msgid "Resolution"
msgstr "ReĆŒoluzzjoni"
-#: ../../Xconfig/main.pm_.c:114
+#: ../../Xconfig/main.pm_.c:113
msgid "Test"
msgstr "Ittestja"
-#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:59
-#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/removable.pm_.c:25
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:63
+#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/removable.pm_.c:25
#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "GħaĆŒliet"
#: ../../Xconfig/main.pm_.c:121 ../../Xconfig/resolution_and_depth.pm_.c:268
-#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:281
+#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:275
#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
-#: ../../interactive.pm_.c:351 ../../interactive/http.pm_.c:104
+#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:104
#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
-#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:156
-#: ../../my_gtk.pm_.c:284 ../../my_gtk.pm_.c:307
-#: ../../standalone/drakbackup_.c:3324 ../../standalone/drakbackup_.c:3419
-#: ../../standalone/drakbackup_.c:3438
+#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:159
+#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310
+#: ../../standalone/drakbackup_.c:3972 ../../standalone/drakbackup_.c:4067
+#: ../../standalone/drakbackup_.c:4086
msgid "Ok"
msgstr "Ok"
#: ../../Xconfig/main.pm_.c:121 ../../diskdrake/dav.pm_.c:24
-#: ../../printerdrake.pm_.c:2933 ../../standalone/logdrake_.c:224
+#: ../../harddrake/ui.pm_.c:98 ../../printerdrake.pm_.c:3155
+#: ../../standalone/logdrake_.c:224
msgid "Quit"
msgstr "Noħroĥ"
@@ -211,27 +212,27 @@ msgstr ""
"\n"
"%s"
-#: ../../Xconfig/monitor.pm_.c:91
+#: ../../Xconfig/monitor.pm_.c:93
msgid "Choose a monitor"
msgstr "AgÄ§ĆŒel skrin"
-#: ../../Xconfig/monitor.pm_.c:95
+#: ../../Xconfig/monitor.pm_.c:97
msgid "Plug'n Play"
msgstr "Plug'n Play"
-#: ../../Xconfig/monitor.pm_.c:96 ../../mouse.pm_.c:45
+#: ../../Xconfig/monitor.pm_.c:98 ../../mouse.pm_.c:46
msgid "Generic"
msgstr "Ä eneriku"
-#: ../../Xconfig/monitor.pm_.c:97 ../../harddrake/ui.pm_.c:36
+#: ../../Xconfig/monitor.pm_.c:99 ../../harddrake/ui.pm_.c:37
msgid "Vendor"
msgstr "Manifattur"
-#: ../../Xconfig/monitor.pm_.c:107
+#: ../../Xconfig/monitor.pm_.c:109
msgid "Plug'n Play probing failed. Please choose a precise monitor"
-msgstr ""
+msgstr "AnaliĆŒi Plug'n'play falliet. Jekk jogħĥbok agÄ§ĆŒel monitur speċifiku"
-#: ../../Xconfig/monitor.pm_.c:112
+#: ../../Xconfig/monitor.pm_.c:114
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -251,15 +252,15 @@ msgstr ""
"orizzontali (horizontal refresh rate), li hija r-rata li biha jiÄĄu aÄĄÄĄornati "
"l-linji.\n"
"\n"
-"Huwa importanti ħafna li ma tistpeċifikax skrin b'rata iĆŒjed mgħaÄĄÄĄla milli\n"
+"Huwa importanti ħafna li ma tispeċifikax skrin b'rata iĆŒjed mgħaÄĄÄĄla milli\n"
"kapaċi juri l-iskrin tiegħek, għax tista' tagħmillu l-ħsara.\n"
"Jekk għandek xi dubju, agÄ§ĆŒel valur ĆŒgħir."
-#: ../../Xconfig/monitor.pm_.c:119
+#: ../../Xconfig/monitor.pm_.c:121
msgid "Horizontal refresh rate"
msgstr "Frekwenza orizzontali"
-#: ../../Xconfig/monitor.pm_.c:120
+#: ../../Xconfig/monitor.pm_.c:122
msgid "Vertical refresh rate"
msgstr "Frekwenza vertikali"
@@ -296,36 +297,40 @@ msgstr "AgÄ§ĆŒel reĆŒoluzzjoni u finezza ta' kuluri"
msgid "Graphics card: %s"
msgstr "Kard grafika: %s"
-#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1015
-#: ../../bootlook.pm_.c:334 ../../diskdrake/smbnfs_gtk.pm_.c:87
-#: ../../install_steps_gtk.pm_.c:412 ../../install_steps_gtk.pm_.c:470
-#: ../../install_steps_interactive.pm_.c:576 ../../interactive.pm_.c:142
-#: ../../interactive.pm_.c:351 ../../interactive/http.pm_.c:105
+#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1018
+#: ../../bootlook.pm_.c:338 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:406 ../../install_steps_gtk.pm_.c:464
+#: ../../install_steps_interactive.pm_.c:560 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:105
#: ../../interactive/newt.pm_.c:174 ../../interactive/stdio.pm_.c:39
-#: ../../interactive/stdio.pm_.c:143 ../../my_gtk.pm_.c:155
-#: ../../my_gtk.pm_.c:159 ../../my_gtk.pm_.c:284
-#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1990
-#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3278
-#: ../../standalone/drakbackup_.c:3311 ../../standalone/drakbackup_.c:3337
-#: ../../standalone/drakbackup_.c:3364 ../../standalone/drakbackup_.c:3391
-#: ../../standalone/drakbackup_.c:3451 ../../standalone/drakbackup_.c:3478
-#: ../../standalone/drakbackup_.c:3504 ../../standalone/drakconnect_.c:115
-#: ../../standalone/drakconnect_.c:147 ../../standalone/drakconnect_.c:289
-#: ../../standalone/drakconnect_.c:537 ../../standalone/drakconnect_.c:679
-#: ../../standalone/drakfloppy_.c:234 ../../standalone/drakfloppy_.c:383
-#: ../../standalone/drakfont_.c:970 ../../standalone/drakgw_.c:598
-#: ../../standalone/logdrake_.c:224 ../../standalone/logdrake_.c:528
-#: ../../standalone/tinyfirewall_.c:64
+#: ../../interactive/stdio.pm_.c:143 ../../my_gtk.pm_.c:158
+#: ../../my_gtk.pm_.c:162 ../../my_gtk.pm_.c:287
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:2124
+#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3926
+#: ../../standalone/drakbackup_.c:3959 ../../standalone/drakbackup_.c:3985
+#: ../../standalone/drakbackup_.c:4012 ../../standalone/drakbackup_.c:4039
+#: ../../standalone/drakbackup_.c:4099 ../../standalone/drakbackup_.c:4126
+#: ../../standalone/drakbackup_.c:4156 ../../standalone/drakbackup_.c:4182
+#: ../../standalone/drakconnect_.c:115 ../../standalone/drakconnect_.c:147
+#: ../../standalone/drakconnect_.c:289 ../../standalone/drakconnect_.c:537
+#: ../../standalone/drakconnect_.c:679 ../../standalone/drakfloppy_.c:234
+#: ../../standalone/drakfloppy_.c:383 ../../standalone/drakfont_.c:970
+#: ../../standalone/drakgw_.c:536 ../../standalone/logdrake_.c:224
+#: ../../standalone/logdrake_.c:526
msgid "Cancel"
msgstr "Ikkanċella"
-#: ../../Xconfig/test.pm_.c:26
+#: ../../Xconfig/test.pm_.c:30
+msgid "Test of the configuration"
+msgstr "Test tal-konfigurazzjoni"
+
+#: ../../Xconfig/test.pm_.c:31
msgid "Do you want to test the configuration?"
msgstr "Trid tittestja din il-konfigurazzjoni?"
-#: ../../Xconfig/test.pm_.c:26
-msgid "Test of the configuration"
-msgstr "Test tal-konfigurazzjoni"
+#: ../../Xconfig/test.pm_.c:31
+msgid "Warning: testing this graphic card may freeze your computer"
+msgstr "Twissija: it-test ta' din il-kard grafika jista' jwaħħal il-kompjuter"
#: ../../Xconfig/various.pm_.c:29
#, c-format
@@ -385,7 +390,7 @@ msgstr "Server XFree86: %s\n"
#: ../../Xconfig/various.pm_.c:42
#, c-format
msgid "XFree86 driver: %s\n"
-msgstr "Driver XFree86: %s\n"
+msgstr "Drajver XFree86: %s\n"
#: ../../Xconfig/various.pm_.c:60
msgid "Graphical interface at startup"
@@ -412,11 +417,11 @@ msgid ""
"Do you have this feature?"
msgstr ""
"Il-kard ta' grafika tiegħek donnha għandha konnessjoni TV-OUT.\n"
-"Tista' tiĥi konfigurata biex taħdem bil-framebuffer.\n"
+"Tista' tiĥi kkonfigurata biex taħdem bil-framebuffer.\n"
"\n"
"Biex tagħmel dan trid tqabbad il-kard grafika mat-televiĆŒjoni qabel tixgħel "
"il-kompjuter.\n"
-"Imbgħad agÄ§ĆŒel \"TVout\" fil-bootloader.\n"
+"Imbagħad agÄ§ĆŒel \"TVout\" fil-bootloader.\n"
"\n"
"Għandek din il-faċilità?"
@@ -468,26 +473,22 @@ msgstr "Tella' minn DOS/Windows (loadlin)"
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:158 ../../any.pm_.c:190
+#: ../../any.pm_.c:159 ../../any.pm_.c:190
msgid "Bootloader main options"
msgstr "GħaĆŒliet prinċipali tal-bootloader"
-#: ../../any.pm_.c:159 ../../any.pm_.c:191
+#: ../../any.pm_.c:160 ../../any.pm_.c:191
msgid "Bootloader to use"
msgstr "Liema bootloader tuĆŒa"
-#: ../../any.pm_.c:161
+#: ../../any.pm_.c:162
msgid "Bootloader installation"
msgstr "Installazzjoni tal-bootloader"
-#: ../../any.pm_.c:163 ../../any.pm_.c:193
+#: ../../any.pm_.c:164 ../../any.pm_.c:193
msgid "Boot device"
msgstr "Diska/apparat \"boot\""
-#: ../../any.pm_.c:164
-msgid "LBA (doesn't work on old BIOSes)"
-msgstr "LBA (ma jaħdimx ma' kompjuters antiki)"
-
#: ../../any.pm_.c:165
msgid "Compact"
msgstr "ƻgħir"
@@ -504,16 +505,17 @@ msgstr "Konfigurazzjoni video"
msgid "Delay before booting default image"
msgstr "Stennija qabel ittella' l-għaĆŒla impliċita"
-#: ../../any.pm_.c:170 ../../any.pm_.c:786
+#: ../../any.pm_.c:170 ../../any.pm_.c:788
#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1111 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:743 ../../printerdrake.pm_.c:858
-#: ../../standalone/drakconnect_.c:624 ../../standalone/drakconnect_.c:649
+#: ../../install_steps_interactive.pm_.c:1096 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:850 ../../printerdrake.pm_.c:965
+#: ../../standalone/drakbackup_.c:3528 ../../standalone/drakconnect_.c:624
+#: ../../standalone/drakconnect_.c:649
msgid "Password"
msgstr "Password"
-#: ../../any.pm_.c:171 ../../any.pm_.c:787
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../any.pm_.c:171 ../../any.pm_.c:789
+#: ../../install_steps_interactive.pm_.c:1097
msgid "Password (again)"
msgstr "Password (erÄĄa')"
@@ -549,14 +551,14 @@ msgstr ""
"L-għaĆŒla \"irrestrinÄĄi l-għaĆŒliet tal-linja tal-kmand\" m'għandha ebda "
"effett minngħajr password"
-#: ../../any.pm_.c:184 ../../any.pm_.c:762
-#: ../../diskdrake/interactive.pm_.c:1180
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../any.pm_.c:184 ../../any.pm_.c:764
+#: ../../diskdrake/interactive.pm_.c:1191
+#: ../../install_steps_interactive.pm_.c:1091
msgid "Please try again"
msgstr "ErÄĄa' pprova"
-#: ../../any.pm_.c:184 ../../any.pm_.c:762
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../any.pm_.c:184 ../../any.pm_.c:764
+#: ../../install_steps_interactive.pm_.c:1091
msgid "The passwords do not match"
msgstr "Il-passwords ma jaqblux"
@@ -596,7 +598,7 @@ msgstr ""
"Dan jimplika li diÄĄĂ  għandek bootloader fuq il-ħard disk mnejn tibbutja (eĆŒ: "
"System Commander).\n"
"\n"
-"Minn fuq liema drive tibbutja?"
+"Minn fuq liema drajv tibbutja?"
#: ../../any.pm_.c:247
msgid ""
@@ -606,16 +608,16 @@ msgstr ""
"Hawn huma l-elementi differenti>\n"
"Tista' ĆŒĆŒid iĆŒjed jew tibdel dawk li hemm."
-#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1483
-#: ../../standalone/drakbackup_.c:1596 ../../standalone/drakfont_.c:1011
+#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1558
+#: ../../standalone/drakbackup_.c:1671 ../../standalone/drakfont_.c:1011
#: ../../standalone/drakfont_.c:1054
msgid "Add"
msgstr "ƻid"
-#: ../../any.pm_.c:257 ../../any.pm_.c:774 ../../diskdrake/dav.pm_.c:60
+#: ../../any.pm_.c:257 ../../any.pm_.c:776 ../../diskdrake/dav.pm_.c:64
#: ../../diskdrake/hd_gtk.pm_.c:153 ../../diskdrake/removable.pm_.c:27
#: ../../diskdrake/smbnfs_gtk.pm_.c:88 ../../interactive/http.pm_.c:153
-#: ../../standalone/drakbackup_.c:2696
+#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2772
msgid "Done"
msgstr "Lest"
@@ -627,7 +629,7 @@ msgstr "Biddel"
msgid "Which type of entry do you want to add?"
msgstr "Liema tip ta' sistema operattiva trid iĆŒĆŒid?"
-#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1630
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1705
msgid "Linux"
msgstr "Linux"
@@ -721,13 +723,13 @@ msgstr "Għandek iĆŒjed?"
msgid "Do you have any %s interfaces?"
msgstr "Il-kompjuter għandu interfaċċji %s?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:821 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:283
+#: ../../any.pm_.c:660 ../../any.pm_.c:823 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:286
msgid "No"
msgstr "Le"
-#: ../../any.pm_.c:660 ../../any.pm_.c:820 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:283
+#: ../../any.pm_.c:660 ../../any.pm_.c:822 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:286
msgid "Yes"
msgstr "Iva"
@@ -740,7 +742,7 @@ msgstr "Ara info. dwar ħardwer"
#: ../../any.pm_.c:677
#, c-format
msgid "Installing driver for %s card %s"
-msgstr "Qed ninstalla driver għal %s kard %s"
+msgstr "Qed ninstalla drajver għal %s kard %s"
#: ../../any.pm_.c:678
#, c-format
@@ -775,7 +777,7 @@ msgstr "GħaĆŒliet tal-modulu:"
#: ../../any.pm_.c:709
#, c-format
msgid "Which %s driver should I try?"
-msgstr "Liema driver %s tridni nipprova?"
+msgstr "Liema drajver %s tridni nipprova?"
#: ../../any.pm_.c:718
#, c-format
@@ -788,9 +790,9 @@ msgid ""
"should\n"
"not cause any damage."
msgstr ""
-"F'ċerti kaĆŒi id-driver %s ikollu bĆŒonn iĆŒjed informazzjoni biex jaħdem\n"
+"F'ċerti kaĆŒi id-drajver %s ikollu bĆŒonn iĆŒjed informazzjoni biex jaħdem\n"
"sew, għalkemm is-soltu jaħdem sew mingħajrha. Trid tispeċifika xi\n"
-"informazzjoni lid-driver, jew tħallih ifittex l-apparat waħdu? Kulltant, "
+"informazzjoni lid-drajver, jew tħallih ifittex l-apparat waħdu? Kulltant, "
"it-\n"
"tfittix iĥiegħel lill-kompjuter jeħel, imma dan m'għandux jagħmel ħsara."
@@ -827,38 +829,48 @@ msgstr "ippermetti \"su\""
msgid "access to administrative files"
msgstr "aċċess għall-fajls amministrattivi"
-#: ../../any.pm_.c:758
+#: ../../any.pm_.c:754
+#, fuzzy
+msgid "access to network tools"
+msgstr "aċċess għall-għodda rpm"
+
+#: ../../any.pm_.c:755
+#, fuzzy
+msgid "access to compilation tools"
+msgstr "aċċess għall-għodda rpm"
+
+#: ../../any.pm_.c:760
#, c-format
msgid "(already added %s)"
msgstr "(%s diÄĄĂ  miĆŒjud)"
-#: ../../any.pm_.c:763
+#: ../../any.pm_.c:765
msgid "This password is too simple"
msgstr "Dan il-password sempliċi wisq"
-#: ../../any.pm_.c:764
+#: ../../any.pm_.c:766
msgid "Please give a user name"
msgstr "Jekk jogħĥbok agħti isem ta' user"
-#: ../../any.pm_.c:765
+#: ../../any.pm_.c:767
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
"L-isem tal-user jista' jkun fih biss ittri ĆŒgħar, numri, \"-\" u \"_\"."
-#: ../../any.pm_.c:766
+#: ../../any.pm_.c:768
msgid "The user name is too long"
msgstr "Dan l-isem ta' user huwa twil wisq"
-#: ../../any.pm_.c:767
+#: ../../any.pm_.c:769
msgid "This user name is already added"
msgstr "Dan l-isem ta' user diÄĄĂ  jeĆŒisti"
-#: ../../any.pm_.c:771
+#: ../../any.pm_.c:773
msgid "Add user"
msgstr "ƻid user"
-#: ../../any.pm_.c:772
+#: ../../any.pm_.c:774
#, c-format
msgid ""
"Enter a user\n"
@@ -867,32 +879,32 @@ msgstr ""
"Daħħal dettalji ta' user\n"
"%s"
-#: ../../any.pm_.c:773
+#: ../../any.pm_.c:775
msgid "Accept user"
msgstr "Aċċetta user"
-#: ../../any.pm_.c:784
+#: ../../any.pm_.c:786
msgid "Real name"
msgstr "Isem veru"
-#: ../../any.pm_.c:785 ../../printerdrake.pm_.c:742
-#: ../../printerdrake.pm_.c:857
+#: ../../any.pm_.c:787 ../../printerdrake.pm_.c:849
+#: ../../printerdrake.pm_.c:964
msgid "User name"
msgstr "Isem tal-user"
-#: ../../any.pm_.c:788
+#: ../../any.pm_.c:790
msgid "Shell"
msgstr "Shell"
-#: ../../any.pm_.c:790
+#: ../../any.pm_.c:792
msgid "Icon"
msgstr "Stampa"
-#: ../../any.pm_.c:817
+#: ../../any.pm_.c:819
msgid "Autologin"
msgstr "Awto-login"
-#: ../../any.pm_.c:818
+#: ../../any.pm_.c:820
msgid ""
"I can set up your computer to automatically log on one user.\n"
"Do you want to use this feature?"
@@ -901,54 +913,54 @@ msgstr ""
"wieħed.\n"
"Trid tissettja din il-faċilità?"
-#: ../../any.pm_.c:822
+#: ../../any.pm_.c:824
msgid "Choose the default user:"
msgstr "AgÄ§ĆŒel il-user impliċitu:"
-#: ../../any.pm_.c:823
+#: ../../any.pm_.c:825
msgid "Choose the window manager to run:"
msgstr "AgÄ§ĆŒel liema \"window manager\" trid tħaddem:"
-#: ../../any.pm_.c:838
+#: ../../any.pm_.c:840
msgid "Please choose a language to use."
msgstr "AgÄ§ĆŒel liema lingwa trid tuĆŒa."
-#: ../../any.pm_.c:840
+#: ../../any.pm_.c:842
msgid ""
"Mandrake Linux can support multiple languages. Select\n"
"the languages you would like to install. They will be available\n"
"when your installation is complete and you restart your system."
msgstr "Tista' tagÄ§ĆŒel lingwi oħra li jkun u disponibbli wara li tinstalla"
-#: ../../any.pm_.c:854 ../../install_steps_interactive.pm_.c:708
+#: ../../any.pm_.c:856 ../../install_steps_interactive.pm_.c:692
#: ../../standalone/drakxtv_.c:73
msgid "All"
msgstr "Kollha"
-#: ../../any.pm_.c:974
+#: ../../any.pm_.c:977
msgid "Allow all users"
msgstr "Ippermetti l-users kollha"
-#: ../../any.pm_.c:974
+#: ../../any.pm_.c:977
msgid "No sharing"
msgstr "Ebda offerti (sharing)"
-#: ../../any.pm_.c:984 ../../standalone.pm_.c:57
+#: ../../any.pm_.c:987 ../../install_any.pm_.c:1183 ../../standalone.pm_.c:58
#, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "Irid jiÄĄi nstallat il-pakkett %s. Tridni ninstallah?"
-#: ../../any.pm_.c:987
+#: ../../any.pm_.c:990
msgid ""
"You can export using NFS or Samba. Please select which you'd like to use."
msgstr "Tista' toffri direttorji bl-NFS jew Samba. Liema trid?"
-#: ../../any.pm_.c:995 ../../standalone.pm_.c:61
+#: ../../any.pm_.c:998 ../../install_any.pm_.c:1188 ../../standalone.pm_.c:63
#, c-format
msgid "Mandatory package %s is missing"
msgstr "Pakkett meħtieĥ %s huwa nieqes"
-#: ../../any.pm_.c:1001
+#: ../../any.pm_.c:1004
msgid ""
"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
@@ -963,11 +975,11 @@ msgstr ""
"\n"
"\"Personalizzat\" jippermetti setings għal kull user.\n"
-#: ../../any.pm_.c:1015
+#: ../../any.pm_.c:1018
msgid "Launch userdrake"
msgstr "ÄŠaddem userdrake"
-#: ../../any.pm_.c:1017
+#: ../../any.pm_.c:1020
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
@@ -976,42 +988,42 @@ msgstr ""
"grupp \"fileshare\". Tista' tuĆŒa userdrake biex iĆŒĆŒid\n"
"users ma' dan il-grupp."
-#: ../../any.pm_.c:1068
+#: ../../any.pm_.c:1071
msgid "Welcome To Crackers"
msgstr "Bieb miftuħ beraħ!"
-#: ../../any.pm_.c:1069
+#: ../../any.pm_.c:1072
msgid "Poor"
msgstr "Ftit li xejn"
-#: ../../any.pm_.c:1070 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1073 ../../mouse.pm_.c:31
msgid "Standard"
msgstr "Standard"
-#: ../../any.pm_.c:1071
+#: ../../any.pm_.c:1074
msgid "High"
msgstr "Tajjeb"
-#: ../../any.pm_.c:1072
+#: ../../any.pm_.c:1075
msgid "Higher"
msgstr "Tajjeb ħafna"
-#: ../../any.pm_.c:1073
+#: ../../any.pm_.c:1076
msgid "Paranoid"
-msgstr "Paranoiku"
+msgstr "Paranojku"
-#: ../../any.pm_.c:1076
+#: ../../any.pm_.c:1079
msgid ""
"This level is to be used with care. It makes your system more easy to use,\n"
"but very sensitive: it must not be used for a machine connected to others\n"
"or to the Internet. There is no password access."
msgstr ""
-"Oqgħod attent jekk tuĆŒa dan il-livell. Il-kompjuter tiegħek jista' ikun iĆŒed "
-"faċli tuĆŒah, imma jkun vulnerabbli ħafna. Qatt m'għandu jintuĆŒa fuq "
+"Oqgħod attent jekk tuĆŒa dan il-livell. Il-kompjuter tiegħek jista' ikun "
+"iĆŒjed faċli tuĆŒah, imma jkun vulnerabbli ħafna. Qatt m'għandu jintuĆŒa fuq "
"kompjuter imqabbad ma' oħrajn permezz ta' network jew ma' l-internet. Ma "
"hemm ebda password."
-#: ../../any.pm_.c:1079
+#: ../../any.pm_.c:1082
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -1019,7 +1031,7 @@ msgstr ""
"Il-passwords issa huma mixgħula, imma l-uĆŒu fuq l-internet jew network xorta "
"m'hux rakkomandat."
-#: ../../any.pm_.c:1080
+#: ../../any.pm_.c:1083
msgid ""
"This is the standard security recommended for a computer that will be used "
"to connect to the Internet as a client."
@@ -1027,7 +1039,7 @@ msgstr ""
"Dan huwa s-seting rakkomandat jekk se tuĆŒa dan il-kompjuter fuq l-internet "
"bħala klijent."
-#: ../../any.pm_.c:1081
+#: ../../any.pm_.c:1084
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
@@ -1035,7 +1047,7 @@ msgstr ""
"DiÄĄĂ  hemm xi restrizzjonijiet, u iĆŒjed testijiet awtomatiċi jitħaddmu kuljum "
"bil-lejl."
-#: ../../any.pm_.c:1082
+#: ../../any.pm_.c:1085
msgid ""
"With this security level, the use of this system as a server becomes "
"possible.\n"
@@ -1051,39 +1063,39 @@ msgstr ""
"minn ħafna kompjuters oħra. Jekk int se tuĆŒa l-kompjuter bħala klijent biss, "
"jew biex taċċessa l-internet, jaqbillek livell iĆŒjed baxx."
-#: ../../any.pm_.c:1085
+#: ../../any.pm_.c:1088
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
"security features are at their maximum."
msgstr ""
"IbbaĆŒat fuq il-livell ta' qabel, imma issa s-sistema hija magħluqa għal "
"kollox.\n"
-"Is-setinga tas-sigurtà qegħdin fil-massimu."
+"Is-setings tas-sigurtà qegħdin fil-massimu."
-#: ../../any.pm_.c:1091
+#: ../../any.pm_.c:1094
msgid "DrakSec Basic Options"
msgstr "GħaĆŒliet baĆŒiċi DrakSec"
-#: ../../any.pm_.c:1092
+#: ../../any.pm_.c:1095
msgid "Please choose the desired security level"
msgstr "AgÄ§ĆŒel livell ta' sigurtĂ  mixtieq"
-#: ../../any.pm_.c:1095
+#: ../../any.pm_.c:1098
msgid "Security level"
msgstr "Livell ta' sigurtĂ "
-#: ../../any.pm_.c:1097
+#: ../../any.pm_.c:1100
msgid "Use libsafe for servers"
msgstr "UĆŒa libsafe għas-servers"
-#: ../../any.pm_.c:1098
+#: ../../any.pm_.c:1101
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
"Din hija librerija li tipproteÄĄi kontra attakki \"buffer overflow\" u "
-"\"fomat string\"."
+"\"format string\"."
-#: ../../any.pm_.c:1099
+#: ../../any.pm_.c:1102
msgid "Security Administrator (login or email)"
msgstr "Amministratur tas-sigurtĂ  (login jew imejl)"
@@ -1115,58 +1127,58 @@ msgstr ""
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:935
+#: ../../bootloader.pm_.c:932
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Merhba ghal GRUB - ghazla ta' sistema operattiva"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:938
+#: ../../bootloader.pm_.c:935
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "Uza l-buttuni %c u %c biex taghzel liema element huwa mmarkat."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:941
+#: ../../bootloader.pm_.c:938
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr ""
"Aghfas Enter biex tibda' s-sistema operattiva mmarkata, 'e' biex tbiddel"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:941
msgid "commands before booting, or 'c' for a command-line."
msgstr "il-kmand qabel tibda', jew 'c' ghal linja ta' kmand."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:947
+#: ../../bootloader.pm_.c:944
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "L-ghazla mmarkata se tinbeda' awtomatikament f' %d sekondi"
-#: ../../bootloader.pm_.c:951
+#: ../../bootloader.pm_.c:948
msgid "not enough room in /boot"
msgstr "M'hemmx biĆŒĆŒejjed spazju fuq /boot"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1051
+#: ../../bootloader.pm_.c:1048
msgid "Desktop"
msgstr "Desktop"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1053
+#: ../../bootloader.pm_.c:1050
msgid "Start Menu"
msgstr "Start Menu"
-#: ../../bootloader.pm_.c:1072
+#: ../../bootloader.pm_.c:1069
#, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "Ma tistax tinstalla l-bootloader fil-partizzjoni %s\n"
-#: ../../bootlook.pm_.c:45
+#: ../../bootlook.pm_.c:45 ../../standalone/draksplash_.c:25
msgid "no help implemented yet.\n"
msgstr "għad m'hemmx għajnuna implementata.\n"
@@ -1174,8 +1186,8 @@ msgstr "għad m'hemmx għajnuna implementata.\n"
msgid "Boot Style Configuration"
msgstr "Konfigurazzjoni ta' l-istil ta' boot"
-#: ../../bootlook.pm_.c:78 ../../harddrake/ui.pm_.c:59
-#: ../../harddrake/ui.pm_.c:60 ../../standalone/drakfloppy_.c:81
+#: ../../bootlook.pm_.c:78 ../../harddrake/ui.pm_.c:62
+#: ../../harddrake/ui.pm_.c:63 ../../standalone/drakfloppy_.c:81
#: ../../standalone/logdrake_.c:101
msgid "/_File"
msgstr "/_Fajl"
@@ -1185,7 +1197,7 @@ msgstr "/_Fajl"
msgid "/File/_Quit"
msgstr "/Fajl/O_ħroĥ"
-#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:60
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:63
#: ../../standalone/drakfloppy_.c:82 ../../standalone/logdrake_.c:107
msgid "<control>Q"
msgstr "<control>Q"
@@ -1226,96 +1238,103 @@ msgstr "Installa temi"
msgid "Display theme under console"
msgstr "Uri tema fil-konsol"
-#: ../../bootlook.pm_.c:166
+#: ../../bootlook.pm_.c:145
+#, fuzzy
+msgid "Create new theme"
+msgstr "Oħloq partizzjoni ĥdida"
+
+#: ../../bootlook.pm_.c:169
msgid "Can't create Bootsplash preview"
msgstr "Ma nistax noħloq previĆŒjoni tal-istampa tal-boot"
-#: ../../bootlook.pm_.c:166 ../../bootlook.pm_.c:184 ../../bootlook.pm_.c:187
-#: ../../bootlook.pm_.c:190 ../../bootlook.pm_.c:220 ../../bootlook.pm_.c:222
-#: ../../bootlook.pm_.c:232 ../../bootlook.pm_.c:241 ../../bootlook.pm_.c:248
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:336
-#: ../../diskdrake/interactive.pm_.c:351 ../../diskdrake/interactive.pm_.c:464
-#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../bootlook.pm_.c:169 ../../bootlook.pm_.c:187 ../../bootlook.pm_.c:190
+#: ../../bootlook.pm_.c:193 ../../bootlook.pm_.c:223 ../../bootlook.pm_.c:225
+#: ../../bootlook.pm_.c:235 ../../bootlook.pm_.c:244 ../../bootlook.pm_.c:251
+#: ../../diskdrake/dav.pm_.c:73 ../../diskdrake/hd_gtk.pm_.c:116
+#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/interactive.pm_.c:355
+#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/interactive.pm_.c:474
+#: ../../diskdrake/smbnfs_gtk.pm_.c:45 ../../fsedit.pm_.c:239
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:365 ../../interactive/http.pm_.c:119
-#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:80
+#: ../../interactive/http.pm_.c:119 ../../interactive/http.pm_.c:120
+#: ../../standalone/draksplash_.c:32
msgid "Error"
msgstr "Problema"
-#: ../../bootlook.pm_.c:183
+#: ../../bootlook.pm_.c:186
#, c-format
msgid "Backup %s to %s.old"
msgstr "Ċu kopja ta' sigurtà minn %s għal %s.old"
-#: ../../bootlook.pm_.c:184
+#: ../../bootlook.pm_.c:187
msgid "unable to backup lilo message"
msgstr "ma nistax nieħu kopja ta' sigurtà tal-messaĥĥ lilo"
-#: ../../bootlook.pm_.c:186
+#: ../../bootlook.pm_.c:189
#, c-format
msgid "Copy %s to %s"
msgstr "Ikkopja %s għal %s"
-#: ../../bootlook.pm_.c:187
+#: ../../bootlook.pm_.c:190
msgid "can't change lilo message"
msgstr "ma nistax nibdel messaÄĄÄĄ lilo"
-#: ../../bootlook.pm_.c:190
+#: ../../bootlook.pm_.c:193
msgid "Lilo message not found"
msgstr "MessaÄĄÄĄ lilo ma nstabx"
-#: ../../bootlook.pm_.c:220
+#: ../../bootlook.pm_.c:223
msgid "Can't write /etc/sysconfig/bootsplash."
msgstr "Ma nistax nikteb /etc/sysconfig/bootsplash."
-#: ../../bootlook.pm_.c:220
+#: ../../bootlook.pm_.c:223
#, c-format
msgid "Write %s"
msgstr "Ikteb %s"
-#: ../../bootlook.pm_.c:222
+#: ../../bootlook.pm_.c:225
msgid ""
"Can't write /etc/sysconfig/bootsplash\n"
"File not found."
msgstr ""
"Ma nistax nikteb /etc/sysconfig/bootsplash\n"
-"Fajl ma stabx."
+"Fajl ma nstabx."
-#: ../../bootlook.pm_.c:233
+#: ../../bootlook.pm_.c:236
#, c-format
msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
msgstr "Ma nistax inħaddem mkinitrd -f /boot/initrd-%s.img %s."
-#: ../../bootlook.pm_.c:236
+#: ../../bootlook.pm_.c:239
#, c-format
-msgid "Make initrd 'mkinird -f /boot/initrd-%s.img %s'."
+msgid "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
msgstr "Oħloq initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
-#: ../../bootlook.pm_.c:242
+#: ../../bootlook.pm_.c:245
msgid ""
"Can't relaunch LiLo!\n"
"Launch \"lilo\" as root in command line to complete LiLo theme installation."
msgstr ""
-"Ma stajtx nerĥa' nħadden lilo!\n"
+"Ma stajtx nerĥa' nħaddem lilo!\n"
"ÄŠaddem lilo bħala root fil-linja tal-kmand biex tinstalla t-tema magÄ§ĆŒula."
-#: ../../bootlook.pm_.c:246
+#: ../../bootlook.pm_.c:249
msgid "Relaunch 'lilo'"
msgstr "Erĥa' ħaddem \"lilo\""
-#: ../../bootlook.pm_.c:248
+#: ../../bootlook.pm_.c:251 ../../standalone/draksplash_.c:161
+#: ../../standalone/draksplash_.c:330 ../../standalone/draksplash_.c:454
msgid "Notice"
msgstr "AvviĆŒ"
-#: ../../bootlook.pm_.c:249
+#: ../../bootlook.pm_.c:252
msgid "LiLo and Bootsplash themes installation successfull"
msgstr "L-installazzjoni ta' lilo u t-tema tal-boot irnexxiet"
-#: ../../bootlook.pm_.c:249
+#: ../../bootlook.pm_.c:252
msgid "Theme installation failed!"
msgstr "Installazzjoni ta' tema falliet"
-#: ../../bootlook.pm_.c:258
+#: ../../bootlook.pm_.c:261
#, c-format
msgid ""
"You are currently using %s as your boot manager.\n"
@@ -1324,22 +1343,21 @@ msgstr ""
"Bħalissa qed tuĆŒa %s bħala BootManager.\n"
"Klikkja \"ikkonfigura\"\" biex tħaddem il-konfiguratur."
-#: ../../bootlook.pm_.c:260 ../../standalone/drakbackup_.c:2352
-#: ../../standalone/drakbackup_.c:2362 ../../standalone/drakbackup_.c:2372
-#: ../../standalone/drakbackup_.c:2380 ../../standalone/drakgw_.c:592
-#: ../../standalone/tinyfirewall_.c:58
+#: ../../bootlook.pm_.c:263 ../../standalone/drakbackup_.c:2427
+#: ../../standalone/drakbackup_.c:2437 ../../standalone/drakbackup_.c:2447
+#: ../../standalone/drakbackup_.c:2455 ../../standalone/drakgw_.c:530
msgid "Configure"
msgstr "Ikkonfigura"
-#: ../../bootlook.pm_.c:267
+#: ../../bootlook.pm_.c:270
msgid "Splash selection"
msgstr "AgÄ§ĆŒel stampa tal-boot"
-#: ../../bootlook.pm_.c:270
+#: ../../bootlook.pm_.c:273
msgid "Themes"
msgstr "Temi"
-#: ../../bootlook.pm_.c:272
+#: ../../bootlook.pm_.c:275
msgid ""
"\n"
"Select a theme for\n"
@@ -1353,44 +1371,44 @@ msgstr ""
"tista' tagÄ§ĆŒilhom\n"
"separatament"
-#: ../../bootlook.pm_.c:275
+#: ../../bootlook.pm_.c:278
msgid "Lilo screen"
msgstr "Skrin lilo"
-#: ../../bootlook.pm_.c:279
+#: ../../bootlook.pm_.c:283
msgid "Bootsplash"
msgstr "Bootsplash"
-#: ../../bootlook.pm_.c:314
+#: ../../bootlook.pm_.c:318
msgid "System mode"
msgstr "ModalitĂ  sistema"
-#: ../../bootlook.pm_.c:316
+#: ../../bootlook.pm_.c:320
msgid "Launch the graphical environment when your system starts"
msgstr "ÄŠaddem X-Windows malli titla'"
-#: ../../bootlook.pm_.c:321
+#: ../../bootlook.pm_.c:325
msgid "No, I don't want autologin"
msgstr "Le, ma rridx awto-login"
-#: ../../bootlook.pm_.c:323
+#: ../../bootlook.pm_.c:327
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "Iva, rrid awto-login b'dan il-user u desktop"
-#: ../../bootlook.pm_.c:333 ../../network/netconnect.pm_.c:101
+#: ../../bootlook.pm_.c:337 ../../network/netconnect.pm_.c:101
#: ../../standalone/drakTermServ_.c:173 ../../standalone/drakTermServ_.c:300
-#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:3513
-#: ../../standalone/drakbackup_.c:4290 ../../standalone/drakconnect_.c:108
+#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4191
+#: ../../standalone/drakbackup_.c:4952 ../../standalone/drakconnect_.c:108
#: ../../standalone/drakconnect_.c:140 ../../standalone/drakconnect_.c:296
#: ../../standalone/drakconnect_.c:435 ../../standalone/drakconnect_.c:521
#: ../../standalone/drakconnect_.c:564 ../../standalone/drakconnect_.c:667
#: ../../standalone/drakfloppy_.c:376 ../../standalone/drakfont_.c:612
#: ../../standalone/drakfont_.c:799 ../../standalone/drakfont_.c:876
-#: ../../standalone/drakfont_.c:963 ../../standalone/logdrake_.c:521
+#: ../../standalone/drakfont_.c:963 ../../standalone/logdrake_.c:519
msgid "OK"
msgstr "OK"
-#: ../../bootlook.pm_.c:403
+#: ../../bootlook.pm_.c:407
#, c-format
msgid "can not open /etc/inittab for reading: %s"
msgstr "Ma nistax niftaħ /etc/inittab għall-qari: %s"
@@ -1450,7 +1468,7 @@ msgstr "BelÄĄju"
#: ../../crypto.pm_.c:17 ../../crypto.pm_.c:30
msgid "Czech Republic"
-msgstr "Repubblika KĆŒeka"
+msgstr "Repubblika Ċeka"
#: ../../crypto.pm_.c:18 ../../crypto.pm_.c:31
msgid "Germany"
@@ -1487,55 +1505,61 @@ msgstr "Awstrija"
msgid "United States"
msgstr "Stati Uniti"
-#: ../../detect_devices.pm_.c:599 ../../detect_devices.pm_.c:641
-#: ../../detect_devices.pm_.c:803
-msgid "Unknown Model"
-msgstr "Mudell mhux magħruf"
-
#: ../../diskdrake/dav.pm_.c:23
msgid "New"
msgstr "Ä did"
-#: ../../diskdrake/dav.pm_.c:57
+#: ../../diskdrake/dav.pm_.c:59 ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/smbnfs_gtk.pm_.c:81
+msgid "Unmount"
+msgstr "ƻmonta"
+
+#: ../../diskdrake/dav.pm_.c:60 ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/smbnfs_gtk.pm_.c:82
+msgid "Mount"
+msgstr "Immonta"
+
+#: ../../diskdrake/dav.pm_.c:61
msgid "Server"
msgstr "Server"
-#: ../../diskdrake/dav.pm_.c:58 ../../diskdrake/interactive.pm_.c:375
-#: ../../diskdrake/interactive.pm_.c:558 ../../diskdrake/interactive.pm_.c:585
+#: ../../diskdrake/dav.pm_.c:62 ../../diskdrake/interactive.pm_.c:379
+#: ../../diskdrake/interactive.pm_.c:568 ../../diskdrake/interactive.pm_.c:595
#: ../../diskdrake/removable.pm_.c:24 ../../diskdrake/removable_gtk.pm_.c:15
#: ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr "Post għall-immontar"
-#: ../../diskdrake/dav.pm_.c:68
+#: ../../diskdrake/dav.pm_.c:81
msgid "Please enter the WebDAV server URL"
msgstr "Jekk jogħĥbok daħħal il-URL tas-server WebDAV"
-#: ../../diskdrake/dav.pm_.c:71
+#: ../../diskdrake/dav.pm_.c:84
msgid "The URL must begin with http:// or https://"
msgstr "Il-URL irid jibda' b' http:// jew https://"
-#: ../../diskdrake/dav.pm_.c:92
+#: ../../diskdrake/dav.pm_.c:105
msgid "Server: "
msgstr "Server: "
-#: ../../diskdrake/dav.pm_.c:93 ../../diskdrake/interactive.pm_.c:435
-#: ../../diskdrake/interactive.pm_.c:1079
-#: ../../diskdrake/interactive.pm_.c:1153
+#: ../../diskdrake/dav.pm_.c:106 ../../diskdrake/interactive.pm_.c:440
+#: ../../diskdrake/interactive.pm_.c:1089
+#: ../../diskdrake/interactive.pm_.c:1164
msgid "Mount point: "
msgstr "Punt ta' mmuntar: "
-#: ../../diskdrake/dav.pm_.c:94 ../../diskdrake/interactive.pm_.c:1159
+#: ../../diskdrake/dav.pm_.c:107 ../../diskdrake/interactive.pm_.c:1170
#, c-format
msgid "Options: %s"
msgstr "GħaĆŒliet: %s"
#: ../../diskdrake/hd_gtk.pm_.c:94
msgid "Please make a backup of your data first"
-msgstr "ÄŠu \"backup\" tal-informazzjoni qabel tkompli"
+msgstr "ÄŠu kopja tad-data kollha qabel tkompli"
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:924
-#: ../../diskdrake/interactive.pm_.c:933 ../../diskdrake/interactive.pm_.c:999
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:934
+#: ../../diskdrake/interactive.pm_.c:943
+#: ../../diskdrake/interactive.pm_.c:1009
msgid "Read carefully!"
msgstr "Aqra sew!"
@@ -1573,10 +1597,15 @@ msgid "Please click on a partition"
msgstr "Jekk jogħĥbok klikkja fuq partizzjoni"
#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
-#: ../../install_steps_gtk.pm_.c:471
+#: ../../install_steps_gtk.pm_.c:465
msgid "Details"
msgstr "Dettalji"
+#: ../../diskdrake/hd_gtk.pm_.c:252
+#, fuzzy
+msgid "No hard drives found"
+msgstr "Ebda printer ma nstab!"
+
#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Ext2"
msgstr "Ext2"
@@ -1601,13 +1630,13 @@ msgstr "SunOS"
msgid "Swap"
msgstr "Swap"
-#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1105
msgid "Empty"
msgstr "Vojt"
-#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:331
-#: ../../install_steps_gtk.pm_.c:389 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1679
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:325
+#: ../../install_steps_gtk.pm_.c:383 ../../mouse.pm_.c:165
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1754
msgid "Other"
msgstr "Oħrajn"
@@ -1615,12 +1644,12 @@ msgstr "Oħrajn"
msgid "Filesystem types:"
msgstr "Tipi ta' filesystem"
-#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:397
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:402
msgid "Create"
msgstr "Oħloq"
-#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:376
-#: ../../diskdrake/interactive.pm_.c:521 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:380
+#: ../../diskdrake/interactive.pm_.c:531 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "Tip"
@@ -1630,7 +1659,7 @@ msgstr "Tip"
msgid "Use ``%s'' instead"
msgstr "UĆŒa \"%s\" minnflok"
-#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:389
msgid "Delete"
msgstr "ÄŠassar"
@@ -1638,7 +1667,7 @@ msgstr "ÄŠassar"
msgid "Use ``Unmount'' first"
msgstr "L-ewwel agħfas \"ĆŒmonta\""
-#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:513
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:518
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
@@ -1646,72 +1675,72 @@ msgstr ""
"Jekk tibdel it-tip ta' partizzjoni %s, l-informazzjoni kollha li hemm fuqha "
"tintilef"
-#: ../../diskdrake/interactive.pm_.c:173
+#: ../../diskdrake/interactive.pm_.c:174
msgid "Choose a partition"
msgstr "AgÄ§ĆŒel partizzjoni"
-#: ../../diskdrake/interactive.pm_.c:173
+#: ../../diskdrake/interactive.pm_.c:174
msgid "Choose another partition"
msgstr "AgÄ§ĆŒel partizzjoni oħra"
-#: ../../diskdrake/interactive.pm_.c:198
+#: ../../diskdrake/interactive.pm_.c:199
msgid "Exit"
msgstr "Oħroĥ"
-#: ../../diskdrake/interactive.pm_.c:220
+#: ../../diskdrake/interactive.pm_.c:221
msgid "Toggle to expert mode"
msgstr "Idħol f'modalità għal esperti"
-#: ../../diskdrake/interactive.pm_.c:220
+#: ../../diskdrake/interactive.pm_.c:221
msgid "Toggle to normal mode"
msgstr "Lura f'modalitĂ  normali"
-#: ../../diskdrake/interactive.pm_.c:220
+#: ../../diskdrake/interactive.pm_.c:221
msgid "Undo"
msgstr "Annulla"
-#: ../../diskdrake/interactive.pm_.c:239
+#: ../../diskdrake/interactive.pm_.c:240
msgid "Continue anyway?"
msgstr "Trid tkompli xorta?"
-#: ../../diskdrake/interactive.pm_.c:244
+#: ../../diskdrake/interactive.pm_.c:245
msgid "Quit without saving"
msgstr "Oħroĥ minngħajr ma tikteb"
-#: ../../diskdrake/interactive.pm_.c:244
+#: ../../diskdrake/interactive.pm_.c:245
msgid "Quit without writing the partition table?"
msgstr "Trid toħroĥ minngħajr ma tikteb it-tabella tal-partizzjonijiet?"
-#: ../../diskdrake/interactive.pm_.c:249
+#: ../../diskdrake/interactive.pm_.c:250
msgid "Do you want to save /etc/fstab modifications"
msgstr "Trid tikteb il-modifiki għal /etc/fstab"
-#: ../../diskdrake/interactive.pm_.c:261
+#: ../../diskdrake/interactive.pm_.c:263
msgid "Auto allocate"
msgstr "Awto-allokazzjoni"
-#: ../../diskdrake/interactive.pm_.c:261
+#: ../../diskdrake/interactive.pm_.c:263
msgid "Clear all"
msgstr "Neħħi kollox"
-#: ../../diskdrake/interactive.pm_.c:261
+#: ../../diskdrake/interactive.pm_.c:263
#: ../../install_steps_interactive.pm_.c:214
msgid "More"
msgstr "IĆŒjed"
-#: ../../diskdrake/interactive.pm_.c:264
+#: ../../diskdrake/interactive.pm_.c:267
msgid "Hard drive information"
msgstr "Informazzjoni dwar il-ħard disk"
-#: ../../diskdrake/interactive.pm_.c:294
+#: ../../diskdrake/interactive.pm_.c:298
msgid "All primary partitions are used"
msgstr "Il-partizzjonijiet primarji kollha mimlijin"
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:299
msgid "I can't add any more partition"
msgstr "Ma nistax inĆŒid iĆŒjed partizzjonijiet"
-#: ../../diskdrake/interactive.pm_.c:296
+#: ../../diskdrake/interactive.pm_.c:300
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -1719,123 +1748,115 @@ msgstr ""
"Biex iĆŒĆŒid iĆŒjed partizzjonijiet, trid tħassar waħda milli hemm biex tkun "
"tista' toħloq partizzjoni estiĆŒa"
-#: ../../diskdrake/interactive.pm_.c:306
+#: ../../diskdrake/interactive.pm_.c:310
msgid "Save partition table"
-msgstr "Ikteb it-tabella ta' partizzjonijet"
+msgstr "Ikteb it-tabella ta' partizzjonijiet"
-#: ../../diskdrake/interactive.pm_.c:307
+#: ../../diskdrake/interactive.pm_.c:311
msgid "Restore partition table"
-msgstr "ErÄĄa tella' tabella ta' partizzjonijiet"
+msgstr "ErÄĄa' tella' tabella ta' partizzjonijiet"
-#: ../../diskdrake/interactive.pm_.c:308
+#: ../../diskdrake/interactive.pm_.c:312
msgid "Rescue partition table"
msgstr "Salva tabella ta' partizzjonijiet"
-#: ../../diskdrake/interactive.pm_.c:310
+#: ../../diskdrake/interactive.pm_.c:314
msgid "Reload partition table"
msgstr "ErÄĄa' aqra t-tabella ta' partizzjonijiet"
-#: ../../diskdrake/interactive.pm_.c:315
+#: ../../diskdrake/interactive.pm_.c:319
msgid "Removable media automounting"
msgstr "Awto-muntar ta' diski li jinħarĥu"
-#: ../../diskdrake/interactive.pm_.c:324 ../../diskdrake/interactive.pm_.c:344
+#: ../../diskdrake/interactive.pm_.c:328 ../../diskdrake/interactive.pm_.c:348
msgid "Select file"
msgstr "AgÄ§ĆŒel fajl"
-#: ../../diskdrake/interactive.pm_.c:331
+#: ../../diskdrake/interactive.pm_.c:335
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
msgstr ""
-"Il-tabella tal-partizzjonijiet għall-backup m'għandiex l-istess daqs.\n"
+"Il-kopja tat-tabella tal-partizzjonijiet m'għandiex l-istess daqs.\n"
"Tkompli xorta?"
-#: ../../diskdrake/interactive.pm_.c:345
+#: ../../diskdrake/interactive.pm_.c:349
msgid "Warning"
msgstr "Twissija"
-#: ../../diskdrake/interactive.pm_.c:346
+#: ../../diskdrake/interactive.pm_.c:350
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
msgstr ""
-"Daħħal floppy fid-drive\n"
-"Kull ma hemm fuq il-floppy se jitħassar"
+"Daħħal flopi fid-drajv\n"
+"Kull ma hemm fuq il-flopi se jitħassar"
-#: ../../diskdrake/interactive.pm_.c:357
+#: ../../diskdrake/interactive.pm_.c:361
msgid "Trying to rescue partition table"
msgstr "Qed nipprova nsalva t-tabella ta' partizzjonijiet"
-#: ../../diskdrake/interactive.pm_.c:363
+#: ../../diskdrake/interactive.pm_.c:367
msgid "Detailed information"
msgstr "Informazzjoni dettaljata"
-#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:652
+#: ../../diskdrake/interactive.pm_.c:382 ../../diskdrake/interactive.pm_.c:662
msgid "Resize"
msgstr "Ibdel daqs"
-#: ../../diskdrake/interactive.pm_.c:379 ../../diskdrake/interactive.pm_.c:705
+#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/interactive.pm_.c:715
msgid "Move"
msgstr "Mexxi"
-#: ../../diskdrake/interactive.pm_.c:380
+#: ../../diskdrake/interactive.pm_.c:384
msgid "Format"
msgstr "Formattja"
-#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/smbnfs_gtk.pm_.c:82
-msgid "Mount"
-msgstr "Immonta"
-
-#: ../../diskdrake/interactive.pm_.c:382
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Add to RAID"
msgstr "ƻid ma' RAID"
-#: ../../diskdrake/interactive.pm_.c:383
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Add to LVM"
msgstr "ƻid ma' LVM"
-#: ../../diskdrake/interactive.pm_.c:384 ../../diskdrake/smbnfs_gtk.pm_.c:81
-msgid "Unmount"
-msgstr "ƻmonta"
-
-#: ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/interactive.pm_.c:390
msgid "Remove from RAID"
msgstr "Neħħi mir-RAID"
-#: ../../diskdrake/interactive.pm_.c:387
+#: ../../diskdrake/interactive.pm_.c:391
msgid "Remove from LVM"
msgstr "Neħħi mill-LVM"
-#: ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/interactive.pm_.c:392
msgid "Modify RAID"
msgstr "Biddel RAID"
-#: ../../diskdrake/interactive.pm_.c:389
+#: ../../diskdrake/interactive.pm_.c:393
msgid "Use for loopback"
msgstr "UĆŒa bħala loopback"
-#: ../../diskdrake/interactive.pm_.c:428
+#: ../../diskdrake/interactive.pm_.c:433
msgid "Create a new partition"
msgstr "Oħloq partizzjoni ĥdida"
-#: ../../diskdrake/interactive.pm_.c:431
+#: ../../diskdrake/interactive.pm_.c:436
msgid "Start sector: "
msgstr "Settur tal-bidu: "
-#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:805
+#: ../../diskdrake/interactive.pm_.c:438 ../../diskdrake/interactive.pm_.c:815
msgid "Size in MB: "
msgstr "Daqs f' MB: "
-#: ../../diskdrake/interactive.pm_.c:434 ../../diskdrake/interactive.pm_.c:806
+#: ../../diskdrake/interactive.pm_.c:439 ../../diskdrake/interactive.pm_.c:816
msgid "Filesystem type: "
msgstr "Tip ta' filesystem: "
-#: ../../diskdrake/interactive.pm_.c:439
+#: ../../diskdrake/interactive.pm_.c:444
msgid "Preference: "
msgstr "Preferenzi: "
-#: ../../diskdrake/interactive.pm_.c:464
+#: ../../diskdrake/interactive.pm_.c:469
msgid ""
"You can't create a new partition\n"
"(since you reached the maximal number of primary partitions).\n"
@@ -1845,33 +1866,33 @@ msgstr ""
"(għax ilħaqt il-limitu ta' partizzjonijiet primarji).\n"
"L-ewwel neħħi partizzjoni primarja u oħloq partizzjoni estiĆŒa."
-#: ../../diskdrake/interactive.pm_.c:494
+#: ../../diskdrake/interactive.pm_.c:499
msgid "Remove the loopback file?"
msgstr "Trid tneħħi l-fajl ta' loopback?"
-#: ../../diskdrake/interactive.pm_.c:519
+#: ../../diskdrake/interactive.pm_.c:529
msgid "Change partition type"
msgstr "Ibdel tip ta' partizzjoni"
-#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:530 ../../diskdrake/removable.pm_.c:48
msgid "Which filesystem do you want?"
msgstr "Liema filesystem trid?"
-#: ../../diskdrake/interactive.pm_.c:526
+#: ../../diskdrake/interactive.pm_.c:536
msgid "Switching from ext2 to ext3"
msgstr "Qed nibdel minn ext2 għal ext3"
-#: ../../diskdrake/interactive.pm_.c:556
+#: ../../diskdrake/interactive.pm_.c:566
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "Fejn trid timmonta l-fajl ta' loopback %s?"
-#: ../../diskdrake/interactive.pm_.c:557
+#: ../../diskdrake/interactive.pm_.c:567
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Fejn trid timmonta d-diska %s?"
-#: ../../diskdrake/interactive.pm_.c:563
+#: ../../diskdrake/interactive.pm_.c:573
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1880,139 +1901,139 @@ msgstr ""
"għal loopback.\n"
"L-ewwel neħħiha minn loopback"
-#: ../../diskdrake/interactive.pm_.c:584
+#: ../../diskdrake/interactive.pm_.c:594
#, c-format
msgid "Where do you want to mount %s?"
msgstr "Fejn trid timmonta %s?"
-#: ../../diskdrake/interactive.pm_.c:608
+#: ../../diskdrake/interactive.pm_.c:618
msgid "Computing FAT filesystem bounds"
msgstr "Qed nikkalkula l-limiti tal-filesystem FAT"
-#: ../../diskdrake/interactive.pm_.c:608 ../../diskdrake/interactive.pm_.c:667
-#: ../../install_interactive.pm_.c:131
+#: ../../diskdrake/interactive.pm_.c:618 ../../diskdrake/interactive.pm_.c:677
+#: ../../install_interactive.pm_.c:133
msgid "Resizing"
msgstr "Qed nibdel id-daqs"
-#: ../../diskdrake/interactive.pm_.c:640
+#: ../../diskdrake/interactive.pm_.c:650
msgid "This partition is not resizeable"
msgstr "Din il-partizzjoni ma tistax tinbidel id-daqs tagħha"
-#: ../../diskdrake/interactive.pm_.c:645
+#: ../../diskdrake/interactive.pm_.c:655
msgid "All data on this partition should be backed-up"
msgstr ""
"L-informazzjoni kollha fuq din il-partizzjoni għandha tiĥi kkupjata fuq "
-"backup"
+"kopja tas-sigurtĂ "
-#: ../../diskdrake/interactive.pm_.c:647
+#: ../../diskdrake/interactive.pm_.c:657
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr ""
"Wara li tibdel id-daqs tal-partizzjoni %s, l-informazzjoni kollha fuqha "
"tintilef"
-#: ../../diskdrake/interactive.pm_.c:652
+#: ../../diskdrake/interactive.pm_.c:662
msgid "Choose the new size"
msgstr "AgÄ§ĆŒel id-daqs il-ÄĄdid"
-#: ../../diskdrake/interactive.pm_.c:653
+#: ../../diskdrake/interactive.pm_.c:663
msgid "New size in MB: "
msgstr "Daqs ÄĄdid f'MB: "
-#: ../../diskdrake/interactive.pm_.c:706
+#: ../../diskdrake/interactive.pm_.c:716
msgid "Which disk do you want to move it to?"
msgstr "Fuq liema diska trid tmexxiha?"
-#: ../../diskdrake/interactive.pm_.c:707
+#: ../../diskdrake/interactive.pm_.c:717
msgid "Sector"
msgstr "Settur"
-#: ../../diskdrake/interactive.pm_.c:708
+#: ../../diskdrake/interactive.pm_.c:718
msgid "Which sector do you want to move it to?"
msgstr "Fuq liema settur trid tmexxiha?"
-#: ../../diskdrake/interactive.pm_.c:711
+#: ../../diskdrake/interactive.pm_.c:721
msgid "Moving"
msgstr "Qed titmexxa"
-#: ../../diskdrake/interactive.pm_.c:711
+#: ../../diskdrake/interactive.pm_.c:721
msgid "Moving partition..."
msgstr "Qed jitmexxa l-partizzjoni..."
-#: ../../diskdrake/interactive.pm_.c:728
+#: ../../diskdrake/interactive.pm_.c:738
msgid "Choose an existing RAID to add to"
msgstr "AgÄ§ĆŒel RAID eĆŒistenti biex iĆŒĆŒid miegħu"
-#: ../../diskdrake/interactive.pm_.c:729 ../../diskdrake/interactive.pm_.c:746
+#: ../../diskdrake/interactive.pm_.c:739 ../../diskdrake/interactive.pm_.c:756
msgid "new"
msgstr "ÄĄdid"
-#: ../../diskdrake/interactive.pm_.c:744
+#: ../../diskdrake/interactive.pm_.c:754
msgid "Choose an existing LVM to add to"
msgstr "AgÄ§ĆŒel LVM eĆŒistenti biex iĆŒĆŒid miegħu"
-#: ../../diskdrake/interactive.pm_.c:749
+#: ../../diskdrake/interactive.pm_.c:759
msgid "LVM name?"
msgstr "Isem tal-LVM?"
-#: ../../diskdrake/interactive.pm_.c:790
+#: ../../diskdrake/interactive.pm_.c:800
msgid "This partition can't be used for loopback"
msgstr "Din il-partizzjoni ma tistax tintuĆŒa għal loopback"
-#: ../../diskdrake/interactive.pm_.c:803
+#: ../../diskdrake/interactive.pm_.c:813
msgid "Loopback"
msgstr "Loopback"
-#: ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:814
msgid "Loopback file name: "
msgstr "Isem ta' fajl għal loopback: "
-#: ../../diskdrake/interactive.pm_.c:809
+#: ../../diskdrake/interactive.pm_.c:819
msgid "Give a file name"
msgstr "Agħti isem ta' fajl"
-#: ../../diskdrake/interactive.pm_.c:812
+#: ../../diskdrake/interactive.pm_.c:822
msgid "File already used by another loopback, choose another one"
msgstr "Fajl diÄĄĂ  qed jintuĆŒa minn loopback ieħor, agÄ§ĆŒel ieħor"
-#: ../../diskdrake/interactive.pm_.c:813
+#: ../../diskdrake/interactive.pm_.c:823
msgid "File already exists. Use it?"
msgstr "Fajl diÄĄĂ  jeĆŒisti. TuĆŒa lilu?"
-#: ../../diskdrake/interactive.pm_.c:836
+#: ../../diskdrake/interactive.pm_.c:846
msgid "Mount options"
msgstr "GħaĆŒliet għall-immuntar"
-#: ../../diskdrake/interactive.pm_.c:843
+#: ../../diskdrake/interactive.pm_.c:853
msgid "Various"
msgstr "Varji"
-#: ../../diskdrake/interactive.pm_.c:907 ../../standalone/drakfloppy_.c:103
+#: ../../diskdrake/interactive.pm_.c:917 ../../standalone/drakfloppy_.c:103
msgid "device"
msgstr "apparat"
-#: ../../diskdrake/interactive.pm_.c:908
+#: ../../diskdrake/interactive.pm_.c:918
msgid "level"
msgstr "livell"
-#: ../../diskdrake/interactive.pm_.c:909
+#: ../../diskdrake/interactive.pm_.c:919
msgid "chunk size"
msgstr "daqs ta' \"chunk\""
-#: ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:934
msgid "Be careful: this operation is dangerous."
msgstr "Oqgħod attent: dan il-proċess huwa perikoluĆŒ."
-#: ../../diskdrake/interactive.pm_.c:939
+#: ../../diskdrake/interactive.pm_.c:949
msgid "What type of partitioning?"
msgstr "X'tip ta' partizzjoni?"
-#: ../../diskdrake/interactive.pm_.c:955
+#: ../../diskdrake/interactive.pm_.c:965
#, c-format
msgid "The package %s is needed. Install it?"
msgstr "Il-pakkett %s huwa meħtieĥ. Tridni ninstallah?"
-#: ../../diskdrake/interactive.pm_.c:969
+#: ../../diskdrake/interactive.pm_.c:979
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -2024,7 +2045,7 @@ msgstr ""
"Jekk tuĆŒa l-LILO din ma taħdimx, jekk ma tuĆŒax il-LILO ma jkollokx bĆŒonn "
"partizzjoni /boot."
-#: ../../diskdrake/interactive.pm_.c:973
+#: ../../diskdrake/interactive.pm_.c:983
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -2037,7 +2058,7 @@ msgstr ""
"LILO, \n"
"kun ċert li toħloq partizzjoni /boot, li tkun qabel ċilindru 1024."
-#: ../../diskdrake/interactive.pm_.c:979
+#: ../../diskdrake/interactive.pm_.c:989
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
@@ -2047,45 +2068,45 @@ msgstr ""
"Ebda bootloader m'hu kapaċi jħaddem dan mingħajr partizzjoni /boot.\n"
"Għalhekk aċċerta li jkollok partizzjoni /boot mhux fuq ir-RAID."
-#: ../../diskdrake/interactive.pm_.c:999
+#: ../../diskdrake/interactive.pm_.c:1009
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "It-tabella tal-partizzjonijiet tad-diska %s se tinkiteb fuq id-diska."
-#: ../../diskdrake/interactive.pm_.c:1003
+#: ../../diskdrake/interactive.pm_.c:1013
msgid "You'll need to reboot before the modification can take place"
-msgstr "Trid tirributja sabiex il-bidliet ikollhom effett."
+msgstr "Trid tirristartja sabiex il-bidliet ikollhom effett."
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1024
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr ""
"Wara li tifformattja l-partizzjoni %s, l-informazzjoni kollha fuqha tintilef."
-#: ../../diskdrake/interactive.pm_.c:1016
+#: ../../diskdrake/interactive.pm_.c:1026
msgid "Formatting"
msgstr "Qed nifformattja"
-#: ../../diskdrake/interactive.pm_.c:1017
+#: ../../diskdrake/interactive.pm_.c:1027
#, c-format
msgid "Formatting loopback file %s"
msgstr "Qed nifformattja fajl ta' loopback %s"
-#: ../../diskdrake/interactive.pm_.c:1018
-#: ../../install_steps_interactive.pm_.c:476
+#: ../../diskdrake/interactive.pm_.c:1028
+#: ../../install_steps_interactive.pm_.c:459
#, c-format
msgid "Formatting partition %s"
msgstr "Qed nifformattja partizzjoni %s"
-#: ../../diskdrake/interactive.pm_.c:1029
+#: ../../diskdrake/interactive.pm_.c:1039
msgid "Hide files"
msgstr "Aħbi fajls"
-#: ../../diskdrake/interactive.pm_.c:1029
+#: ../../diskdrake/interactive.pm_.c:1039
msgid "Move files to the new partition"
msgstr "Mexxi fajls għal partizzjoni ĥdida"
-#: ../../diskdrake/interactive.pm_.c:1030
+#: ../../diskdrake/interactive.pm_.c:1040
#, c-format
msgid ""
"Directory %s already contains data\n"
@@ -2094,83 +2115,83 @@ msgstr ""
"Id-direttorju %s diÄĄĂ  fih xi fajls\n"
"(%s)"
-#: ../../diskdrake/interactive.pm_.c:1041
+#: ../../diskdrake/interactive.pm_.c:1051
msgid "Moving files to the new partition"
msgstr "Qed jitmexxew il-fajls għal partizzjoni ĥdida"
-#: ../../diskdrake/interactive.pm_.c:1045
+#: ../../diskdrake/interactive.pm_.c:1055
#, c-format
msgid "Copying %s"
msgstr "Qed nikkopja %s"
-#: ../../diskdrake/interactive.pm_.c:1049
+#: ../../diskdrake/interactive.pm_.c:1059
#, c-format
msgid "Removing %s"
msgstr "Qed inneħħi %s"
-#: ../../diskdrake/interactive.pm_.c:1059
+#: ../../diskdrake/interactive.pm_.c:1069
#, c-format
msgid "partition %s is now known as %s"
msgstr "partizzjoni %s issa magħrufa bħala %s"
-#: ../../diskdrake/interactive.pm_.c:1080
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1090
+#: ../../diskdrake/interactive.pm_.c:1149
msgid "Device: "
msgstr "Apparat: "
-#: ../../diskdrake/interactive.pm_.c:1081
+#: ../../diskdrake/interactive.pm_.c:1091
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "Ittra tad-diska fid-DOS: %s (probabbli)\n"
-#: ../../diskdrake/interactive.pm_.c:1085
-#: ../../diskdrake/interactive.pm_.c:1093
-#: ../../diskdrake/interactive.pm_.c:1157
+#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1103
+#: ../../diskdrake/interactive.pm_.c:1168
msgid "Type: "
msgstr "Tip: "
-#: ../../diskdrake/interactive.pm_.c:1089
+#: ../../diskdrake/interactive.pm_.c:1099
msgid "Name: "
msgstr "Isem: "
-#: ../../diskdrake/interactive.pm_.c:1097
+#: ../../diskdrake/interactive.pm_.c:1107
#, c-format
msgid "Start: sector %s\n"
msgstr "Bidu: settur %s\n"
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1108
#, c-format
msgid "Size: %s"
msgstr "Daqs: %s"
-#: ../../diskdrake/interactive.pm_.c:1100
+#: ../../diskdrake/interactive.pm_.c:1110
#, c-format
msgid ", %s sectors"
msgstr ", %s setturi"
-#: ../../diskdrake/interactive.pm_.c:1102
+#: ../../diskdrake/interactive.pm_.c:1112
#, c-format
msgid "Cylinder %d to %d\n"
msgstr "Ċilindri %d sa %d\n"
-#: ../../diskdrake/interactive.pm_.c:1103
+#: ../../diskdrake/interactive.pm_.c:1113
msgid "Formatted\n"
msgstr "Formattjat\n"
-#: ../../diskdrake/interactive.pm_.c:1104
+#: ../../diskdrake/interactive.pm_.c:1114
msgid "Not formatted\n"
msgstr "Mhux formattjat\n"
-#: ../../diskdrake/interactive.pm_.c:1105
+#: ../../diskdrake/interactive.pm_.c:1115
msgid "Mounted\n"
msgstr "Immuntat\n"
-#: ../../diskdrake/interactive.pm_.c:1106
+#: ../../diskdrake/interactive.pm_.c:1116
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1108
+#: ../../diskdrake/interactive.pm_.c:1118
#, c-format
msgid ""
"Loopback file(s):\n"
@@ -2179,7 +2200,7 @@ msgstr ""
"Fajl/s ta' loopback:\n"
" %s\n"
-#: ../../diskdrake/interactive.pm_.c:1109
+#: ../../diskdrake/interactive.pm_.c:1119
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -2187,27 +2208,27 @@ msgstr ""
"Partizzjoni li tibda' impliċitament\n"
" (għad-DOS/Windows, mhux għal-lilo)\n"
-#: ../../diskdrake/interactive.pm_.c:1111
+#: ../../diskdrake/interactive.pm_.c:1121
#, c-format
msgid "Level %s\n"
msgstr "Livell %s\n"
-#: ../../diskdrake/interactive.pm_.c:1112
+#: ../../diskdrake/interactive.pm_.c:1122
#, c-format
msgid "Chunk size %s\n"
msgstr "Daqs ta' \"chunk\" %s\n"
-#: ../../diskdrake/interactive.pm_.c:1113
+#: ../../diskdrake/interactive.pm_.c:1123
#, c-format
msgid "RAID-disks %s\n"
msgstr "Diski RAID %s\n"
-#: ../../diskdrake/interactive.pm_.c:1115
+#: ../../diskdrake/interactive.pm_.c:1125
#, c-format
msgid "Loopback file name: %s"
msgstr "Isem ta' fajl loopback: %s"
-#: ../../diskdrake/interactive.pm_.c:1118
+#: ../../diskdrake/interactive.pm_.c:1128
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -2219,7 +2240,7 @@ msgstr ""
"hija partizzjoni ta' Driver,\n"
"jaqbillek tħalliha kif inhi.\n"
-#: ../../diskdrake/interactive.pm_.c:1121
+#: ../../diskdrake/interactive.pm_.c:1131
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2229,61 +2250,65 @@ msgstr ""
"\n"
"Din il-partizzjoni speċjali\n"
"\"bootstrap\" qegħda biex\n"
-"tagÄ§ĆŒel os meta tixgħel.\n"
+"tagÄ§ĆŒel OS meta tixgħel.\n"
-#: ../../diskdrake/interactive.pm_.c:1140
+#: ../../diskdrake/interactive.pm_.c:1150
+msgid "Read-only"
+msgstr ""
+
+#: ../../diskdrake/interactive.pm_.c:1151
#, c-format
msgid "Size: %s\n"
msgstr "Daqs: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1141
+#: ../../diskdrake/interactive.pm_.c:1152
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Ġeometrija: %s ċilindri, %s heads, %s setturi\n"
-#: ../../diskdrake/interactive.pm_.c:1142
+#: ../../diskdrake/interactive.pm_.c:1153
msgid "Info: "
msgstr "Info: "
-#: ../../diskdrake/interactive.pm_.c:1143
+#: ../../diskdrake/interactive.pm_.c:1154
#, c-format
msgid "LVM-disks %s\n"
msgstr "Diski LVM %s\n"
-#: ../../diskdrake/interactive.pm_.c:1144
+#: ../../diskdrake/interactive.pm_.c:1155
#, c-format
msgid "Partition table type: %s\n"
msgstr "Tip ta' tabella tal-partizzjonijiet: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1145
+#: ../../diskdrake/interactive.pm_.c:1156
#, c-format
msgid "on channel %d id %d\n"
msgstr "fuq kanal %d id %d\n"
-#: ../../diskdrake/interactive.pm_.c:1175
+#: ../../diskdrake/interactive.pm_.c:1186
msgid "Filesystem encryption key"
msgstr "Ċavetta taċ-ċifrazzjoni tal-filesystem (password)"
-#: ../../diskdrake/interactive.pm_.c:1176
+#: ../../diskdrake/interactive.pm_.c:1187
msgid "Choose your filesystem encryption key"
msgstr "AgÄ§ĆŒel ċavetta għaċ-ċifrazzjoni tal-filesystem"
-#: ../../diskdrake/interactive.pm_.c:1179
+#: ../../diskdrake/interactive.pm_.c:1190
#, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr ""
"Din iċ-ċavetta taċ-ċifrazzjoni huwa sempliċi wisq (irid ikun twil tal-inqas %"
"d ittri)"
-#: ../../diskdrake/interactive.pm_.c:1180
+#: ../../diskdrake/interactive.pm_.c:1191
msgid "The encryption keys do not match"
-msgstr "Il-muftieħ taċ-ċifrar ma jaqbilx"
+msgstr "Iċ-ċifrarji ma jaqblux"
-#: ../../diskdrake/interactive.pm_.c:1183
+#: ../../diskdrake/interactive.pm_.c:1194
msgid "Encryption key"
msgstr "Ċavetta taċ-ċifrazzjoni"
-#: ../../diskdrake/interactive.pm_.c:1184
+#: ../../diskdrake/interactive.pm_.c:1195
msgid "Encryption key (again)"
msgstr "Ċavetta taċ-ċifrazzjoni (darb' oħra)"
@@ -2319,7 +2344,7 @@ msgstr ""
"Jekk jogħġbok daħħal il-user, password u dominju biex taċċessa dan il-"
"kompjuter"
-#: ../../diskdrake/smbnfs_gtk.pm_.c:178
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3527
msgid "Username"
msgstr "User"
@@ -2331,23 +2356,23 @@ msgstr "Dominju"
msgid "Search servers"
msgstr "Fittex servers"
-#: ../../fs.pm_.c:552 ../../fs.pm_.c:562 ../../fs.pm_.c:566 ../../fs.pm_.c:570
-#: ../../fs.pm_.c:574 ../../fs.pm_.c:578
+#: ../../fs.pm_.c:544 ../../fs.pm_.c:554 ../../fs.pm_.c:558 ../../fs.pm_.c:562
+#: ../../fs.pm_.c:566 ../../fs.pm_.c:570
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s formattjar ta' %s falla"
-#: ../../fs.pm_.c:615
+#: ../../fs.pm_.c:607
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "Ma nafx kif nifformattja %s b'tip %s"
-#: ../../fs.pm_.c:687 ../../fs.pm_.c:731
+#: ../../fs.pm_.c:681 ../../fs.pm_.c:724
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr "immuntar ta' partizzjoni %s fid-direttorju %s falla"
-#: ../../fs.pm_.c:746 ../../partition_table.pm_.c:602
+#: ../../fs.pm_.c:739 ../../partition_table.pm_.c:598
#, c-format
msgid "error unmounting %s: %s"
msgstr "problema fl-iĆŒmuntar ta' %s: %s"
@@ -2364,33 +2389,50 @@ msgstr "b' /usr"
msgid "server"
msgstr "server"
-#: ../../fsedit.pm_.c:472
+#: ../../fsedit.pm_.c:240
+#, fuzzy, c-format
+msgid ""
+"I can't read the partition table of device %s, it's too corrupted for me :(\n"
+"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
+"The other solution is to not allow DrakX to modify the partition table.\n"
+"(the error is %s)\n"
+"\n"
+"Do you agree to loose all the partitions?\n"
+msgstr ""
+"Ma nistax naqra t-tabella tal-partizzjonijiet, hija korrotta wisq :(\n"
+"Nista nkompli billi nħassar partizzjonijiet Ä§ĆŒiena (L-INFORMAZZJONI \n"
+"KOLLHA tintilef). L-alternattiva hi li ma tħallix lill DrakX ibiddel\n"
+"it-tabella tal-partizzjonijiet (il-problema hi %s)\n"
+"\n"
+"Trid titlef il-partizzjonijiet kollha?\n"
+
+#: ../../fsedit.pm_.c:501
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr "Ma tistax tuĆŒa JFS għal partizzjonijiet iĆŒgħar minn 16MB"
-#: ../../fsedit.pm_.c:473
+#: ../../fsedit.pm_.c:502
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr "Ma tistax tuĆŒa ReiserFS għal partizzjonijiet iĆŒgħar minn 32MB"
-#: ../../fsedit.pm_.c:492
+#: ../../fsedit.pm_.c:521
msgid "Mount points must begin with a leading /"
msgstr "Punti ta' mmuntar iridu jibdew b' /"
-#: ../../fsedit.pm_.c:493
+#: ../../fsedit.pm_.c:522
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "DiÄĄĂ  hemm partizzjoni b'punt ta' mmuntar %s\n"
-#: ../../fsedit.pm_.c:497
+#: ../../fsedit.pm_.c:526
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr "Ma tistax tuĆŒa volum loÄĄiku LVM għall-punt ta' mmuntar %s"
-#: ../../fsedit.pm_.c:499
+#: ../../fsedit.pm_.c:528
msgid "This directory should remain within the root filesystem"
msgstr "Dan id-direttorju irid jibqa' fil-filesystem root."
-#: ../../fsedit.pm_.c:501
+#: ../../fsedit.pm_.c:530
msgid ""
"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
"point\n"
@@ -2398,103 +2440,141 @@ msgstr ""
"Għandek bĆŒonn filesystem vera (ext2/ext3, reiserfs, xfs jew jfs) għal dan il-"
"punt ta' mmuntar\n"
-#: ../../fsedit.pm_.c:503
+#: ../../fsedit.pm_.c:532
#, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr "Ma tistax tuĆŒa filesystem iċċifrat għall-punt ta' mmuntar %s"
-#: ../../fsedit.pm_.c:570
+#: ../../fsedit.pm_.c:599
msgid "Not enough free space for auto-allocating"
msgstr "M'hemmx biĆŒĆŒejjed spazju għal awto-allokazzjoni"
-#: ../../fsedit.pm_.c:572
+#: ../../fsedit.pm_.c:601
msgid "Nothing to do"
msgstr "M'hemm xejn x'nagħmel"
-#: ../../fsedit.pm_.c:665
+#: ../../fsedit.pm_.c:694
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Problema waqt il-ftuħ ta' %s għall-kitba: %s"
-#: ../../fsedit.pm_.c:750
+#: ../../harddrake/sound.pm_.c:155
+msgid "No alternative driver"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:156
+#, c-format
+msgid "There's no known OSS/ALSA alternative driver for your sound card (%s)"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:158
+#, fuzzy
+msgid "Sound configuration"
+msgstr "Konfigurazzjoni CUPS"
+
+#: ../../harddrake/sound.pm_.c:159
+#, c-format
msgid ""
-"An error occurred - no valid devices were found on which to create new "
-"filesystems. Please check your hardware for the cause of this problem"
+"Here you can select an alternative driver (either OSS or ALSA) for your "
+"sound card (%s)"
msgstr ""
-"Instabet problema - ebda apparat validu ma nstab fejn jinħolqu filesystems "
-"ÄĄodda. Iċċekkja l-kompjuter għall-kawĆŒa ta' din il-problema."
-#: ../../fsedit.pm_.c:773
-msgid "You don't have any partitions!"
-msgstr "M'għandek ebda partizzjoni!"
+#: ../../harddrake/sound.pm_.c:162
+msgid "Driver:"
+msgstr "Driver:"
+
+#: ../../harddrake/sound.pm_.c:173
+#, fuzzy
+msgid "No known driver"
+msgstr "Driver X"
-#: ../../harddrake/ui.pm_.c:15
+#: ../../harddrake/sound.pm_.c:174
+#, c-format
+msgid "There's no known driver for your sound card (%s)"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:177
+#, fuzzy
+msgid "Unkown driver"
+msgstr "Mudell mhux magħruf"
+
+#: ../../harddrake/sound.pm_.c:178
+#, c-format
+msgid ""
+"The \"%s\" driver for your sound card is unlisted\n"
+"\n"
+"Please send the output of the \"lspcidrake -v\" command to\n"
+"<install at mandrakesoft dot com>\n"
+"with subject: unlisted sound driver \"%s\""
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:16
msgid "Model"
msgstr "Mudell"
-#: ../../harddrake/ui.pm_.c:15
+#: ../../harddrake/ui.pm_.c:16
msgid "hard disk model"
msgstr "mudell tal-ħard disk"
-#: ../../harddrake/ui.pm_.c:16
+#: ../../harddrake/ui.pm_.c:17
msgid "Channel"
msgstr "Kanal"
-#: ../../harddrake/ui.pm_.c:16
+#: ../../harddrake/ui.pm_.c:17
msgid "EIDE/SCSI channel"
msgstr "Kanal EIDE/SCSI"
-#: ../../harddrake/ui.pm_.c:18
+#: ../../harddrake/ui.pm_.c:19
msgid "Bus"
msgstr "Bus"
-#: ../../harddrake/ui.pm_.c:19
+#: ../../harddrake/ui.pm_.c:20
msgid ""
"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
msgstr ""
"Dan huwa l-\"bus\" fiĆŒiku fejn huwa mqabbad l-apparat (eĆŒ, PCI, USB eċċ)"
-#: ../../harddrake/ui.pm_.c:20
+#: ../../harddrake/ui.pm_.c:21
msgid "Module"
msgstr "Modulu"
-#: ../../harddrake/ui.pm_.c:20
+#: ../../harddrake/ui.pm_.c:21
msgid "the module of the GNU/Linux kernel that handle that device"
msgstr "il-modulu tal-kernel GNU/Linux li jieħu ħsieb dan l-apparat"
-#: ../../harddrake/ui.pm_.c:21
+#: ../../harddrake/ui.pm_.c:22
msgid "Media class"
msgstr "Klassi ta' medja"
-#: ../../harddrake/ui.pm_.c:21
+#: ../../harddrake/ui.pm_.c:22
msgid "class of hardware device"
msgstr "klassi ta' apparat ħardwer"
-#: ../../harddrake/ui.pm_.c:22 ../../printerdrake.pm_.c:1404
+#: ../../harddrake/ui.pm_.c:23 ../../printerdrake.pm_.c:1517
msgid "Description"
msgstr "Deskrizzjoni"
-#: ../../harddrake/ui.pm_.c:22
+#: ../../harddrake/ui.pm_.c:23
msgid "this field describe the device"
msgstr "dan l-element jiddeskrivi l-apparat"
-#: ../../harddrake/ui.pm_.c:24
+#: ../../harddrake/ui.pm_.c:25
msgid "Bus identification"
msgstr "Identifikazzjoni tal-bus"
-#: ../../harddrake/ui.pm_.c:25
+#: ../../harddrake/ui.pm_.c:26
msgid ""
-"- PCI and USB devices : this list the vendor, device, subvendor and "
-"subdevice PCI/USB ids"
+"- PCI and USB devices: this list the vendor, device, subvendor and subdevice "
+"PCI/USB ids"
msgstr ""
"- apparat PCI u USB : dan juri l-ids PCI/USB tal-manufattur, apparat, sotto-"
"manufattur u sotto-apparat. "
-#: ../../harddrake/ui.pm_.c:27
+#: ../../harddrake/ui.pm_.c:28
msgid "Location on the bus"
msgstr "Post fuq il-bus"
-#: ../../harddrake/ui.pm_.c:28
+#: ../../harddrake/ui.pm_.c:29
msgid ""
"- pci devices: this gives the PCI slot, device and function of this card\n"
"- eide devices: the device is either a slave or a master device\n"
@@ -2504,48 +2584,57 @@ msgstr ""
"- apparat eide: l-apparat huwa \"master\" jew \"slave\"\n"
"- apparat scsi: il-bus u id scsi."
-#: ../../harddrake/ui.pm_.c:31
+#: ../../harddrake/ui.pm_.c:32
msgid "Old device file"
msgstr "Fajl antik ta' apparat"
-#: ../../harddrake/ui.pm_.c:32
+#: ../../harddrake/ui.pm_.c:33
msgid "old static device name used in dev package"
msgstr "Isem ta' apparat antik uĆŒat fil-pakkett dev"
-#: ../../harddrake/ui.pm_.c:33
+#: ../../harddrake/ui.pm_.c:34
msgid "New devfs device"
msgstr "Apparat ÄĄdid devfs"
-#: ../../harddrake/ui.pm_.c:34
+#: ../../harddrake/ui.pm_.c:35
msgid "new dinamic device name generated by incore kernel devfs"
msgstr "Isem ta' apparat ÄĄdid dinamiku, ÄĄÄĄenerat minn devfs tal-kernel"
-#: ../../harddrake/ui.pm_.c:35
+#: ../../harddrake/ui.pm_.c:36
msgid "Number of buttons"
-msgstr "Numru ta' buttoni"
+msgstr "Numru ta' buttuni"
-#: ../../harddrake/ui.pm_.c:36
+#: ../../harddrake/ui.pm_.c:37
msgid "the vendor name of the device"
msgstr "isem il-venditur tal-apparat"
-#: ../../harddrake/ui.pm_.c:60
+#: ../../harddrake/ui.pm_.c:38
+#, fuzzy
+msgid "Alternative drivers"
+msgstr "PaÄĄna alternattiva (A4)"
+
+#: ../../harddrake/ui.pm_.c:39
+msgid "the list of alternative drivers for this sound card"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:63
msgid "/_Quit"
msgstr "/_Oħroĥ"
-#: ../../harddrake/ui.pm_.c:61 ../../harddrake/ui.pm_.c:62
-#: ../../harddrake/ui.pm_.c:68 ../../standalone/logdrake_.c:110
+#: ../../harddrake/ui.pm_.c:64 ../../harddrake/ui.pm_.c:65
+#: ../../harddrake/ui.pm_.c:71 ../../standalone/logdrake_.c:110
msgid "/_Help"
msgstr "/_Għajnuna"
-#: ../../harddrake/ui.pm_.c:62
+#: ../../harddrake/ui.pm_.c:65
msgid "/_Help..."
msgstr "/_Għajnuna..."
-#: ../../harddrake/ui.pm_.c:63
+#: ../../harddrake/ui.pm_.c:66
msgid "Harddrake help"
msgstr "Għajnuna ta' Harddrake"
-#: ../../harddrake/ui.pm_.c:64
+#: ../../harddrake/ui.pm_.c:67
msgid ""
"Description of the fields:\n"
"\n"
@@ -2553,15 +2642,15 @@ msgstr ""
"Deskrizzjoni tal-elementi:\n"
"\n"
-#: ../../harddrake/ui.pm_.c:68
+#: ../../harddrake/ui.pm_.c:71
msgid "/_About..."
msgstr "/_Dwar..."
-#: ../../harddrake/ui.pm_.c:69
+#: ../../harddrake/ui.pm_.c:72
msgid "About Harddrake"
msgstr "Dwar Harddrake"
-#: ../../harddrake/ui.pm_.c:70
+#: ../../harddrake/ui.pm_.c:73
msgid ""
"This is HardDrake, a Mandrake hardware configuration tool.\n"
"Version:"
@@ -2569,51 +2658,51 @@ msgstr ""
"Dan huwa Harddrake, għodda tal-Mandrake għall-konfigurazzjoni tal-ħardwer.\n"
"VerĆŒjoni:"
-#: ../../harddrake/ui.pm_.c:71
+#: ../../harddrake/ui.pm_.c:74
msgid "Author:"
msgstr "Awtur:"
-#: ../../harddrake/ui.pm_.c:83
+#: ../../harddrake/ui.pm_.c:86
msgid "Harddrake2 version "
msgstr "Harddrake2 verĆŒjoni "
-#: ../../harddrake/ui.pm_.c:91
+#: ../../harddrake/ui.pm_.c:103
msgid "Detected hardware"
msgstr "ÄŠardwer misjub"
-#: ../../harddrake/ui.pm_.c:92
+#: ../../harddrake/ui.pm_.c:105
+msgid "Information"
+msgstr "Informazzjoni"
+
+#: ../../harddrake/ui.pm_.c:108
msgid "Configure module"
msgstr "Ikkonfigura modulu"
-#: ../../harddrake/ui.pm_.c:92
-msgid "Informations"
-msgstr "Informazzjoni"
-
-#: ../../harddrake/ui.pm_.c:92
+#: ../../harddrake/ui.pm_.c:109
msgid "Run config tool"
msgstr "Ċaddem għodda ta' konfigurazzjoni"
-#: ../../harddrake/ui.pm_.c:96
+#: ../../harddrake/ui.pm_.c:113
msgid "Detection in progress"
msgstr "Għaddej l-għarfien"
-#: ../../harddrake/ui.pm_.c:96 ../../interactive.pm_.c:388
+#: ../../harddrake/ui.pm_.c:113 ../../interactive.pm_.c:391
msgid "Please wait"
msgstr "Stenna ftit"
-#: ../../harddrake/ui.pm_.c:139
+#: ../../harddrake/ui.pm_.c:156
msgid "primary"
msgstr "ewlieni"
-#: ../../harddrake/ui.pm_.c:139
+#: ../../harddrake/ui.pm_.c:156
msgid "secondary"
msgstr "sekondarju"
-#: ../../harddrake/ui.pm_.c:176
+#: ../../harddrake/ui.pm_.c:197
msgid "You can configure each parameter of the module here."
msgstr "Tista' tikkonfigura kull parametru tal-modulu minn hawn."
-#: ../../harddrake/ui.pm_.c:192
+#: ../../harddrake/ui.pm_.c:213
#, c-format
msgid "Running \"%s\" ..."
msgstr "Qed jitħaddem \"%s\"..."
@@ -2642,20 +2731,20 @@ msgid ""
"here. Just select your tv card parameters if needed"
msgstr ""
"Għal ħafna \"TV cards\" moderni, il-modulu bttv tal-kernel GNU/Linux "
-"awtimatikament isib il-parametri tajba.\n"
+"awtomatikament isib il-parametri tajba.\n"
"Jekk il-kard ma tingħarafx sew, tista' ĥĥegħlu jieħu t-tuner u kard it-tajba "
"minn hawn. Sempliċiment agÄ§ĆŒel il-kard u parametri jekk meħtieÄĄa."
#: ../../harddrake/v4l.pm_.c:213
-msgid "Card model :"
+msgid "Card model:"
msgstr "Mudell tal-kard :"
#: ../../harddrake/v4l.pm_.c:214
-msgid "Tuner type :"
+msgid "Tuner type:"
msgstr "Tip ta' tuner :"
#: ../../harddrake/v4l.pm_.c:215
-msgid "Number of capture buffers :"
+msgid "Number of capture buffers:"
msgstr "Numru ta' buffers għall-kattura :"
#: ../../harddrake/v4l.pm_.c:215
@@ -2663,11 +2752,11 @@ msgid "number of capture buffers for mmap'ed capture"
msgstr "numru ta' buffers għall-kattura mmapp"
#: ../../harddrake/v4l.pm_.c:217
-msgid "PLL setting :"
+msgid "PLL setting:"
msgstr "Seting PLL :"
#: ../../harddrake/v4l.pm_.c:218
-msgid "Radio support :"
+msgid "Radio support:"
msgstr "Sapport għar-radju :"
#: ../../harddrake/v4l.pm_.c:218
@@ -2679,22 +2768,22 @@ msgid ""
"GNU/Linux is a multiuser system, and this means that each user can have his\n"
"own preferences, his own files and so on. You can read the ``User Guide''\n"
"to learn more. But unlike \"root\", which is the administrator, the users\n"
-"you will add here will not be entitled to change anything except their own\n"
-"files and their own configuration. You will have to create at least one\n"
-"regular user for yourself. That account is where you should log in for\n"
-"routine use. Although it is very practical to log in as \"root\" everyday,\n"
-"it may also be very dangerous! The slightest mistake could mean that your\n"
-"system would not work any more. If you make a serious mistake as a regular\n"
-"user, you may only lose some information, but not the entire system.\n"
+"you add here will not be entitled to change anything except their own files\n"
+"and their own configuration. You will have to create at least one regular\n"
+"user for yourself. That account is where you should log in for routine use.\n"
+"Although it is very practical to log in as \"root\" everyday, it may also\n"
+"be very dangerous! The slightest mistake could mean that your system would\n"
+"not work any more. If you make a serious mistake as a regular user, you may\n"
+"only lose some information, but not the entire system.\n"
"\n"
"First, you have to enter your real name. This is not mandatory, of course -\n"
"as you can actually enter whatever you want. DrakX will then take the first\n"
"word you have entered in the box and will bring it over to the \"User\n"
"name\". This is the name this particular user will use to log onto the\n"
"system. You can change it. You then have to enter a password here. A\n"
-"non-privileged (regular) user's password is not as crucial as \"root\"' one\n"
-"from a security point of view, but that is no reason to neglect it: after\n"
-"all, your files are at risk.\n"
+"non-privileged (regular) user's password is not as crucial as the \"root\"'\n"
+"one from a security point of view, but that is no reason to neglect it:\n"
+"after all, your files are at risk.\n"
"\n"
"If you click on \"Accept user\", you can then add as many as you want. Add\n"
"a user for each one of your friends: your father or your sister, for\n"
@@ -2709,7 +2798,7 @@ msgstr ""
"li huwa l-amministratur, il-users li ĆŒĆŒid hawn ma jkunu jistgħu jibdlu xejn\n"
"ħlief il-fajls u konfigurazzjoni personali tagħhom. Inti trid toħloq ta' \n"
"l-inqas user regolari wieħed għalik. Dan huwa l-user li bih għandek tagħmel\n"
-"ix-xogħol ta' kuljum. Filwaqt li jista' jkun iĆŒed faċli tuĆŒa l-user \"root"
+"ix-xogħol ta' kuljum. Filwaqt li jista' jkun iĆŒjed faċli tuĆŒa l-user \"root"
"\" \n"
"ta' kuljum, dan huwa perikoluĆŒ ħafna. L-iċken ĆŒball jista' jwaqqaf is-"
"sistema\n"
@@ -2718,10 +2807,10 @@ msgstr ""
"informazzjoni imma mhux is-sistema sħiħa.\n"
"\n"
"L-ewwel trid iddaħħal l-isem veru tiegħek. Dan mhux bilfors, ovvjament, u\n"
-"fil-fatt tista' ddaħħal li trid. DrakX imbgħad jieħu l-ewwel kelma u "
+"fil-fatt tista' ddaħħal li trid. DrakX imbagħad jieħu l-ewwel kelma u "
"ipoÄĄÄĄiha\n"
"fl-\"isem tal-user\". Dan huwa l-isem li jintuĆŒa biex tidħol fis-sistema. \n"
-"Tista' tibdel dan l-isem, imbgħad daħħal password. Filwaqt li l-password "
+"Tista' tibdel dan l-isem, imbagħad daħħal password. Filwaqt li l-password "
"ta'\n"
"user regolari mhux kruċjali daqs tar-root, dejjem jaqbillek tagÄ§ĆŒel "
"password\n"
@@ -2834,7 +2923,7 @@ msgid ""
"to have a graphical workstation!\n"
"\n"
"Moving the mouse cursor over a group name will display a short explanatory\n"
-"text about that group. If you deselect all groups when performing a regular\n"
+"text about that group. If you unselect all groups when performing a regular\n"
"installation (by opposition to an upgrade), a dialog will pop up proposing\n"
"different options for a minimal installation:\n"
"\n"
@@ -2866,7 +2955,7 @@ msgstr ""
"immarka l-kaxex li jikkorrispondu għas-CDs li għandek. Klikkja \"Ok\" meta\n"
"tkun lest biex tkompli.\n"
"\n"
-"Il-pakketti huma mqassma fi gruppi li jikkorrespondu għat-tip ta' uĆŒu tal-\n"
+"Il-pakketti huma mqassma fi gruppi li jikkorrispondu għat-tip ta' uĆŒu tal-\n"
"kompjuter. Il-gruppi stess huma mqassma f'erba' sezzjonijiet:\n"
"\n"
" * \"Workstation\": jekk fi ħsiebek tuĆŒa l-kompjuter bħala workstation, \n"
@@ -2895,7 +2984,7 @@ msgstr ""
"\" * \"Bl-XWindows\" tinstalla s-sistema baĆŒika flimkien ma' l-minimu ta'\n"
"pakketti għal sistema grafika;\n"
"\n"
-" * \"B'dokumentazzjoni baĆŒika\" tinstalla s-sistema baĆŒika flimkiem ma' xi\n"
+" * \"B'dokumentazzjoni baĆŒika\" tinstalla s-sistema baĆŒika flimkien ma' xi\n"
"programmi sempliċi u d-dokumentazzjoni tagħhom. Dan huwa tajjeb għal "
"server.\n"
"\n"
@@ -2915,10 +3004,10 @@ msgstr ""
#: ../../help.pm_.c:128
msgid ""
-"Finally, depending on whether or not you selected individual packages, you\n"
-"will be presented a tree containing all packages classified by groups and\n"
-"subgroups. While browsing the tree, you can select entire groups,\n"
-"subgroups, or individual packages.\n"
+"Finally, depending on whether or not you chose to be able to select\n"
+"individual packages, you will be presented a tree containing all packages\n"
+"classified by groups and subgroups. While browsing the tree, you can select\n"
+"entire groups, subgroups, or individual packages.\n"
"\n"
"Whenever you select a package on the tree, a description appears on the\n"
"right. When your selection is finished, click the \"Install\" button which\n"
@@ -2967,7 +3056,7 @@ msgstr ""
"parti minn grupp, int tintalab tikkonferma jekk verament tridx lill dawn\n"
"is-servizzi jiÄĄu installati. Fil-Mandrake Linux, is-servizzi li tinstalla "
"jiÄĄu\n"
-"mtella' awtomatikament meta tixgħel. Għalkemm dawn kienu sikuri u ma fihom\n"
+"mtella' awtomatikament meta tixgħel. Għalkemm dawn kienu siguri u ma fihom\n"
"ebda problemi meta din il-verĆŒjoni ta' Linux inħarÄĄet, jista' jkun li "
"jinstabu\n"
"problemi simili wara li ÄĄiet finalizzata din il-verĆŒjoni. Jekk ma tafx \n"
@@ -2982,19 +3071,19 @@ msgstr ""
"għax il-programm ikun induna li jinħtieĥ pakkett ieħor biex il-programmi li\n"
"tkun għaĆŒilt jaħdmu sew.\n"
"\n"
-"L-istampa ta' \"floppy disk\" ĆŒgħira fil-qiegħ tippermettilek li ttella' l-\n"
+"L-istampa ta' diska flopi ĆŒgħira fil-qiegħ tippermettilek li ttella' l-\n"
"lista ta' pakketti li ÄĄew magÄ§ĆŒula waqt installazzjoni preċedenti. Jekk \n"
-"tikklikkja din l-ikona int tintalab iddaħħal floppy li tkun ħloqt waqt \n"
+"tikklikkja din l-ikona int tintalab iddaħħal flopi li tkun ħloqt waqt \n"
"installazzjoni oħra. Ara t-tieni ħjiel fl-aħħar stadju biex tara kif toħloq\n"
"diska simili."
#: ../../help.pm_.c:164
msgid ""
-"You are now proposed to set up your Internet/network connection. If you\n"
-"wish to connect your computer to the Internet or to a local network, click\n"
-"\"OK\". The autodetection of network devices and modem will be launched. If\n"
-"this detection fails, uncheck the \"Use auto detection\" box next time. You\n"
-"may also choose not to configure the network, or do it later; in that case,\n"
+"You are now able to set up your Internet/network connection. If you wish to\n"
+"connect your computer to the Internet or to a local network, click \"OK\".\n"
+"The autodetection of network devices and modem will be launched. If this\n"
+"detection fails, uncheck the \"Use auto detection\" box next time. You may\n"
+"also choose not to configure the network, or do it later; in that case,\n"
"simply click the \"Cancel\" button.\n"
"\n"
"Available connections are: traditional modem, ISDN modem, ADSL connection,\n"
@@ -3031,7 +3120,7 @@ msgstr ""
"\n"
"Tista' tikkonsulta l-kapitlu fil-manwal dwar il-konnessjonijiet tal-"
"internet\n"
-"għal iĆŒjed tagħrif, jew inkella installa l-kumplament tas-sistema imbgħad\n"
+"għal iĆŒjed tagħrif, jew inkella installa l-kumplament tas-sistema imbagħad\n"
"uĆŒa l-programm imsemmi f'dan il-manwal biex tissettja l-konnessjoni.\n"
"\n"
"Jekk tixtieq tikkonfigura n-network iĆŒjed tard, jew jekk lest mill-\n"
@@ -3065,14 +3154,14 @@ msgstr ""
"server:\n"
"aktarx ma jkollokx bĆŒonn ittella' servizzi li m'intix se tuĆŒa. Ftakar li xi\n"
"servizzi jistgħu ikunu perikoluĆŒi fuq server. Bħala regola ÄĄenerali, ħalli\n"
-"biss dawk is-servizzi li verament għandek bĆŒpnn.\n"
+"biss dawk is-servizzi li verament għandek bĆŒonn.\n"
"!!"
#: ../../help.pm_.c:203
msgid ""
"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
"local time according to the time zone you selected. It is however possible\n"
-"to deactivate this by deselecting \"Hardware clock set to GMT\" so that the\n"
+"to deactivate this by unselecting \"Hardware clock set to GMT\" so that the\n"
"hardware clock is the same as the system clock. This is useful when the\n"
"machine is hosting another operating system like Windows.\n"
"\n"
@@ -3083,7 +3172,7 @@ msgid ""
"actually install on your machine a time server which can be optionally used\n"
"by other machines on your local network."
msgstr ""
-"GNU/Linux jimmaniĥĥja l-ħin bħala GMT (Greenwich Mean Time) u jaqiblu "
+"GNU/Linux jimmaniĥĥja l-ħin bħala GMT (Greenwich Mean Time) u jaqilbu "
"għall-\n"
"ħin lokali skond iĆŒ-ĆŒona orarja li tagÄ§ĆŒel. Huwa possibbli perĂČ li titfi "
"din\n"
@@ -3119,7 +3208,9 @@ msgid ""
"If you can see the message during the test, and answer \"Yes\", then DrakX\n"
"will proceed to the next step. If you cannot see the message, it simply\n"
"means that the configuration was wrong and the test will automatically end\n"
-"after 10 seconds, restoring the screen."
+"after 10 seconds, restoring the screen. Refer then to the Video\n"
+"configuration section of the user guide for more information on how to\n"
+"configure your display."
msgstr ""
"X (Sistema X Windows) huwa l-qalb tal-interfaċċja grafika GNU/Linux, u fuqu\n"
"jaħdmu l-ambjenti jew desktops grafiċi kollha (KDE, Gnome, AfterStep,\n"
@@ -3141,34 +3232,7 @@ msgstr ""
"l-konfigurazzjoni hija ħaĆŒina, u t-test joħroÄĄ waħdu wara 10 sekondi u\n"
"jirrestawra l-iskrin."
-#: ../../help.pm_.c:237
-msgid ""
-"The first time you try the X configuration, you may not be very satisfied\n"
-"with its display (screen is too small, shifted left or right...). Hence,\n"
-"even if X starts up correctly, DrakX then asks you if the configuration\n"
-"suits you. It will also propose to change it by displaying a list of valid\n"
-"modes it could find, asking you to select one.\n"
-"\n"
-"As a last resort, if you still cannot get X to work, choose \"Change\n"
-"graphics card\", select \"Unlisted card\", and when prompted on which\n"
-"server, choose \"FBDev\". This is a failsafe option which works with any\n"
-"modern graphics card. Then choose \"Test again\" to be sure."
-msgstr ""
-"L-ewwel darba li tipprova l-konfigurazzjoni X, tista' ma tkunx sodisfatt\n"
-"bid-dehra (skrin ĆŒgħir wisq, mitfugħ wisq lejn ix-xellug/lemin...). "
-"Għalhekk,\n"
-"anke jekk X jaħdem sew, DrakX jistaqsik jekk il-konfigurazzjoni togħĥbokx.\n"
-"Huwa jistaqsik jekk tixtieq tibdel xi ħaĥa billi jurik lista ta' "
-"modalitajiet\n"
-"differenti li seta' jsib, u jitolbok tagÄ§ĆŒel waħda.\n"
-"\n"
-"Bħala possibbiltĂ  ta' aħħar, jekk ma rnexxielekx tħaddem X, agÄ§ĆŒel \"Ibdel\n"
-"il-kard grafika\", agÄ§ĆŒel \"Kard mhux imniĆŒĆŒla\" u meta tiÄĄi mistoqsi liema\n"
-"server trid, agÄ§ĆŒel \"FBDev\". Din hija għaĆŒla ÄĄenerika ħafna li għandha \n"
-"taħdem mal-kards grafiċi moderni kollha. AgÄ§ĆŒel \"ErÄĄa' pprova\" biex tkun \n"
-"ĆŒgur."
-
-#: ../../help.pm_.c:249
+#: ../../help.pm_.c:239
msgid ""
"Finally, you will be asked whether you want to see the graphical interface\n"
"at boot. Note this question will be asked even if you chose not to test the\n"
@@ -3181,7 +3245,8 @@ msgstr ""
"konfigurazzjoni. Ovvjament, jaqbillek tagÄ§ĆŒel \"Le\" jekk il-kompjuter se\n"
"jintuĆŒa biss bħala server, jew jekk ma rnexxielekx tissettja l-X sew."
-#: ../../help.pm_.c:256
+#: ../../help.pm_.c:246
+#, fuzzy
msgid ""
"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
@@ -3201,10 +3266,10 @@ msgid ""
"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
"password, or any other reason.\n"
"\n"
-"When you click on this step, you will be asked to enter a disk inside the\n"
-"drive. The floppy disk you will insert must be empty or contain data which\n"
-"you do not need. You will not have to format it since DrakX will rewrite\n"
-"the whole disk."
+"If you say \"Yes\", you will be asked to enter a disk inside the drive. The\n"
+"floppy disk you will insert must be empty or contain data which you do not\n"
+"need. You will not have to format it since DrakX will rewrite the whole\n"
+"disk."
msgstr ""
"Is-CD tal-Mandrake Linux għandu modalità biex tirkupra sistema. Tista' \n"
"taċċessaha billi tibda' l-kompjuter minn fuq l-ewwel CD, tagħfas \"F1\" "
@@ -3235,7 +3300,7 @@ msgstr ""
"jħassarha \n"
"kollha."
-#: ../../help.pm_.c:280
+#: ../../help.pm_.c:270
msgid ""
"At this point, you need to choose where you want to install the Mandrake\n"
"Linux operating system on your hard drive. If your hard drive is empty or\n"
@@ -3268,7 +3333,9 @@ msgid ""
"\n"
" * \"Use existing partition\": the wizard has detected one or more existing\n"
"Linux partitions on your hard drive. If you want to use them, choose this\n"
-"option;\n"
+"option. You will then be asked to choose the mount points associated to\n"
+"each of the partitions. The legacy mount points are selected by default,\n"
+"and you should generally keep them.\n"
"\n"
" * \"Use the free space on the Windows; partition\": if Microsoft Windows\n"
"is installed on your hard drive and takes all the space available on it,\n"
@@ -3301,7 +3368,9 @@ msgid ""
" * \"Expert mode\": choose this option if you want to manually partition\n"
"your hard drive. Be careful - it is a powerful but dangerous choice. You\n"
"can very easily lose all your data. Hence, do not choose this unless you\n"
-"know what you are doing."
+"know what you are doing. To know how do use the DiskDrake utility used\n"
+"here, refer to the section ``Managing Your Partitions'' of the ````User\n"
+"Guide''''"
msgstr ""
"F'dan il-punt int trid tagÄ§ĆŒel fejn, fuq il-ħard disk, trid tinstalla s-\n"
"sistema operattiva Mandrake Linux. Jekk il-ħard disk huwa vojt, jew jekk\n"
@@ -3340,7 +3409,7 @@ msgstr ""
" * \"UĆŒa spazju vojt fuq partizzjoni Windows\": Jekk għandek Microsoft "
"Windows\n"
"installat fuq il-ħard disk u qed jokkupa l-ispazju kollu, trid toħloq ftit \n"
-"spasju għal-Linux. Biex tagħmel dan, trid jew tħassar il-partizzjoni "
+"spazju għal-Linux. Biex tagħmel dan, trid jew tħassar il-partizzjoni "
"Windows\n"
"u kull m'hemm fiha (ara \"Ċassar id-diska sħiħa\" jew \"Modalità esperta"
"\"), \n"
@@ -3370,7 +3439,7 @@ msgstr ""
"din\n"
"l-għaĆŒla jekk ma tafx x'qed tagħmel."
-#: ../../help.pm_.c:347
+#: ../../help.pm_.c:341
msgid ""
"There you are. Installation is now complete and your GNU/Linux system is\n"
"ready to use. Just click \"OK\" to reboot the system. You can start\n"
@@ -3409,7 +3478,7 @@ msgstr ""
"\n"
"Il-buttuna \"Avvanzat\" (f'modalitĂ  esperta biss) turik ĆŒewÄĄ buttuni oħra:\n"
"\n"
-" * \"oħloq floppy awto-installa\": toħloqlok floppy li tippermettilek \n"
+" * \"oħloq flopi awto-installa\": toħloqlok flopi li tippermettilek \n"
"tirrepeti l-istess installazzjoni fuq kompjuter ieħor identiku, mingħajr\n"
"l-intervent tiegħek.\n"
"\n"
@@ -3424,17 +3493,16 @@ msgstr ""
" Din il-faċilità hija utli meta qed tinstalla numru kbir ta' kompjuters\n"
"identiċi. Ara s-sezzjoni \"Auto install\" fuq il-web site tagħna.\n"
"\n"
-" * \"Ikteb l-għaĆŒla ta' pakketti\"(*): jikteb l-għaĆŒla ta' pekketti li\n"
-"nstallajt. Meta qed tagħmel installazzjoni oħra, daħħal il-floppy fid-drive\n"
+" * \"Ikteb l-għaĆŒla ta' pakketti\"(*): jikteb l-għaĆŒla ta' pakketti li\n"
+"nstallajt. Meta qed tagħmel installazzjoni oħra, daħħal il-flopi fid-drajv\n"
"u meta tibda l-installazzjoni, agħfas [F1] u ħaddem l-installazzjoni "
"permezz\n"
-"tal-kmand >>linux defcfg=\"floppy\"<<.\n"
+"tal-kmand >>linux defcfg=\"flopi\"<<.\n"
"\n"
-"(*) Għandek bĆŒonn floppy formattjata FAT (DOS). Biex toħloq waħda mil-"
-"Linux,\n"
+"(*) Għandek bĆŒonn flopi formattjata FAT (DOS). Biex toħloq waħda mil-Linux,\n"
"ittajpja \"mformat a:\"."
-#: ../../help.pm_.c:378
+#: ../../help.pm_.c:372
msgid ""
"Any partitions that have been newly defined must be formatted for use\n"
"(formatting means creating a filesystem).\n"
@@ -3489,7 +3557,7 @@ msgstr ""
"blokki\n"
"Ä§ĆŒiena fuq id-diska."
-#: ../../help.pm_.c:404
+#: ../../help.pm_.c:398
msgid ""
"Your new Mandrake Linux operating system is currently being installed.\n"
"Depending on the number of packages you will be installing and the speed of\n"
@@ -3504,12 +3572,12 @@ msgstr ""
"\n"
"Jekk jogħĥbok stenna sakemm ilesti."
-#: ../../help.pm_.c:412
+#: ../../help.pm_.c:406
msgid ""
"At the time you are installing Mandrake Linux, it is likely that some\n"
"packages have been updated since the initial release. Some bugs may have\n"
"been fixed, and security issues solved. To allow you to benefit from these\n"
-"updates, you are now proposed to download them from the Internet. Choose\n"
+"updates, you are now able to download them from the Internet. Choose\n"
"\"Yes\" if you have a working Internet connection, or \"No\" if you prefer\n"
"to install updated packages later.\n"
"\n"
@@ -3526,12 +3594,13 @@ msgstr ""
"tinstalla l-aÄĄÄĄornamenti iĆŒjed tard.\n"
"\n"
"Jekk tagÄ§ĆŒel iva, tintwera lista ta' postijiet minn fejn l-aÄĄÄĄornamenti \n"
-"jistgħu jitniĆŒĆŒlu (\"mirja\"). AgÄ§ĆŒel l-iĆŒjed wieħed viċin tiegħek. Imbgħad\n"
+"jistgħu jitniĆŒĆŒlu (\"mirja\"). AgÄ§ĆŒel l-iĆŒjed wieħed viċin tiegħek. "
+"Imbagħad\n"
"tintwera lista ta' pakketti. Dur dawn il-pakketti, agÄ§ĆŒel liema trid u \n"
"agħfas \"Installa\" biex tniĆŒĆŒilhom u tinstallahom jew \"Ikkanċella\" biex "
"twaqqaf."
-#: ../../help.pm_.c:425
+#: ../../help.pm_.c:419
msgid ""
"Before continuing, you should read carefully the terms of the license. It\n"
"covers the whole Mandrake Linux distribution, and if you do not agree with\n"
@@ -3540,20 +3609,20 @@ msgid ""
"\"Accept\" button."
msgstr ""
"Qabel tkompli int mitlub taqra sew it-termini ta' din il-liċenzja. Hija\n"
-"kopri d-distribuzzjoni sħiħa ta' Mandrake Linux. Jekk ma taqbilx ma' t-"
+"tkopri d-distribuzzjoni sħiħa ta' Mandrake Linux. Jekk ma taqbilx ma' t-"
"termini\n"
"kollha tagħha, klikkja l-buttuna \"Ma naċċettax\", u l-installazzjoni "
"tieqaf \n"
"minnufih. Biex tkompli bl-installazzjoni, agħfas il-buttuna \"Naċċetta\"."
-#: ../../help.pm_.c:432
+#: ../../help.pm_.c:426
msgid ""
"At this point, it is time to choose the security level desired for the\n"
"machine. As a rule of thumb, the more exposed the machine is, and the more\n"
"the data stored in it is crucial, the higher the security level should be.\n"
"However, a higher security level is generally obtained at the expense of\n"
-"easiness of use. Refer to the \"msec\" chapter of the ``Reference Manual''\n"
-"to get more information about the meaning of these levels.\n"
+"ease of use. Refer to the \"msec\" chapter of the ``Reference Manual'' to\n"
+"get more information about the meaning of these levels.\n"
"\n"
"If you do not know what to choose, keep the default option."
msgstr ""
@@ -3563,12 +3632,12 @@ msgstr ""
"l-informazzjoni ta' fuqu, iĆŒjed irid ikun għoli l-livell ta' sigurtĂ . Innota "
"li\n"
"livell ta' sigurtĂ  iĆŒjed għoli jfisser iĆŒjed diffikultĂ  fl-uĆŒu. Irreferi \n"
-"għall-kapitlu MSEC fil-Manwal ta' Referenza għat-tifsira ta' dawn il-"
+"għall-kapitlu MARC fil-Manwal ta' Referenza għat-tifsira ta' dawn il-"
"livelli.\n"
"\n"
"Jekk ma tafx liema tagÄ§ĆŒel, ĆŒomm l-għaĆŒla impliċita."
-#: ../../help.pm_.c:442
+#: ../../help.pm_.c:436
msgid ""
"At this point, you need to choose which partition(s) will be used for the\n"
"installation of your Mandrake Linux system. If partitions have already been\n"
@@ -3585,26 +3654,26 @@ msgid ""
" * \"Clear all\": this option deletes all partitions on the selected hard\n"
"drive;\n"
"\n"
-" * \"Auto allocate\": this option enables to automatically create \"Ext2\"\n"
-"and swap partitions in free space of your hard drive;\n"
+" * \"Auto allocate\": this option enables to automatically create ext3 and\n"
+"swap partitions in free space of your hard drive;\n"
"\n"
-" * \"More\": gives access to additional features:\n"
+"\"More\": gives access to additional features:\n"
"\n"
-" * \"Save partition table\": saves the partition table to a floppy.\n"
-"Useful for later partition-table recovery if necessary. It is strongly\n"
-"recommended to perform this step;\n"
+" * \"Save partition table\": saves the partition table to a floppy. Useful\n"
+"for later partition-table recovery if necessary. It is strongly recommended\n"
+"to perform this step;\n"
"\n"
-" * \"Restore partition table\": allows to restore a previously saved\n"
+" * \"Restore partition table\": allows to restore a previously saved\n"
"partition table from floppy disk;\n"
"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you\n"
-"can try to recover it using this option. Please be careful and remember\n"
-"that it can fail;\n"
+" * \"Rescue partition table\": if your partition table is damaged, you can\n"
+"try to recover it using this option. Please be careful and remember that it\n"
+"can fail;\n"
"\n"
-" * \"Reload partition table\": discards all changes and loads your\n"
-"initial partition table;\n"
+" * \"Reload partition table\": discards all changes and loads your initial\n"
+"partition table;\n"
"\n"
-" * \"Removable media automounting\": unchecking this option will force\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
"users to manually mount and unmount removable medias such as floppies and\n"
"CD-ROMs.\n"
"\n"
@@ -3632,7 +3701,7 @@ msgid ""
" * Ctrl-m to set the mount point.\n"
"\n"
"To get information about the different filesystem types available, please\n"
-"read the ext2fs chapter from the ``Reference Manual''.\n"
+"read the ext2FS chapter from the ``Reference Manual''.\n"
"\n"
"If you are installing on a PPC machine, you will want to create a small HFS\n"
"``bootstrap'' partition of at least 1MB, which will be used by the yaboot\n"
@@ -3641,7 +3710,7 @@ msgid ""
"emergency boot situations."
msgstr ""
"F'dan il-punt trid tagÄ§ĆŒel liema partizzjoni/jiet se jintuĆŒaw għall-\n"
-"installazzoni tas-sistema Mandrake Linux. Jekk diÄĄĂ  ÄĄew definiti xi\n"
+"installazzjoni tas-sistema Mandrake Linux. Jekk diÄĄĂ  ÄĄew definiti xi\n"
"partizzjonijiet, minn installazzjoni preċedenti ta' GNU/Linux jew minn\n"
"għodda ta' partizzjonament oħra, tista' tuĆŒa l-partizzjonijiet eĆŒistenti.\n"
"Altrimenti, l-partizzjonijiet tal-ħard disk iridu jiĥu definiti.\n"
@@ -3663,12 +3732,11 @@ msgstr ""
" * \"IĆŒjed\" jagħtik aċċess għal iĆŒjed faċilitajiet:\n"
"\n"
" * \"Ikteb tabella tal-partizzjonijiet\": jikteb it-tabella \n"
-"tal-partizzjonijiet fuq floppy. Utli biex tirkupra t-tabella iĆŒjed tard "
-"jekk\n"
+"tal-partizzjonijiet fuq flopi. Utli biex tirkupra t-tabella iĆŒjed tard jekk\n"
"hemm bĆŒonn. Dan il-pass huwa rakkomandat.\n"
"\n"
-" * \"Irrestawra t-tabella tal-partizzjonijet\": tħallik tirrestawra t-\n"
-"tabella tal-partizzjonijiet minn floppy disk fejn ÄĄew miktuba.\n"
+" * \"Irrestawra t-tabella tal-partizzjonijiet\": tħallik tirrestawra t-\n"
+"tabella tal-partizzjonijiet minn flopi disk fejn ÄĄew miktuba.\n"
"\n"
" * \"Salva tabella tal-partizzjonijiet\": jekk it-tabella tal-"
"partizzjonijiet\n"
@@ -3679,8 +3747,8 @@ msgstr ""
"tabella\n"
"mill-ħard disk.\n"
"\n"
-" * \"awto-muntar ta' media tinħareÄĄ\": jekk tneħħi din l-għaĆŒla l-users\n"
-"ikollhom jimmuntaw u jiĆŒmuntaw manwalment diski li jinħarÄĄu bħal floppy u "
+" * \"awto-muntar ta' medja tinħareÄĄ\": jekk tneħħi din l-għaĆŒla l-users\n"
+"ikollhom jimmontaw u jiĆŒmuntaw manwalment diski li jinħarÄĄu bħal flopi u "
"CDROM.\n"
"\n"
" * \"Saħħar\": uĆŒa dan il-metodu jekk ma tafx sew kif tagħmel il-\n"
@@ -3698,7 +3766,7 @@ msgstr ""
"TAB\n"
"u l-vleÄĄeÄĄ 'il fuq u 'l isfel.\n"
"\n"
-"Meta tkun fuq il-partizzjoni li trid, tista tuĆŒa:\n"
+"Meta tkun fuq il-partizzjoni li trid, tista' tuĆŒa:\n"
"\n"
" * Ctrl-C biex toħloq partizzjoni (meta l-partizzjoni vojta tkun magÄ§ĆŒula)\n"
"\n"
@@ -3714,7 +3782,7 @@ msgstr ""
"tiddeċiedi li tagħmlu ftit ikbar, ngħidu aħna 50MB, tista' ssibu post utli\n"
"fejn tqiegħed kernel u ramdisk \"spare\" għal emerĥenzi."
-#: ../../help.pm_.c:513
+#: ../../help.pm_.c:507
msgid ""
"More than one Microsoft partition has been detected on your hard drive.\n"
"Please choose the one you want to resize in order to install your new\n"
@@ -3779,34 +3847,34 @@ msgstr ""
"Windows\n"
"(l-ewwel diska jew partizzjoni hija \"C:\")."
-#: ../../help.pm_.c:544
+#: ../../help.pm_.c:538
msgid "Please be patient. This operation can take several minutes."
msgstr "Jekk jogħġbok stenna ftit. Dan il-proċess jista' jieħu diversi minuti."
-#: ../../help.pm_.c:547
+#: ../../help.pm_.c:541
msgid ""
"DrakX now needs to know if you want to perform a default (\"Recommended\")\n"
"installation or if you want to have greater control (\"Expert\"). You can\n"
"also choose to do a new install or an upgrade of an existing Mandrake Linux\n"
"system:\n"
"\n"
-" * \"Install\": completely wipes out the old system. In fact, depending on\n"
-"what currently holds your machine, you will be able to keep some old (Linux\n"
-"or other) partitions unchanged;\n"
+" * \"Install\": completely wipes out the old system, however, depending on\n"
+"what is currently installed on your machine, you may be able to keep some\n"
+"old partitions (Linux or otherwise) unchanged;\n"
"\n"
" * \"Upgrade\": this installation class allows to simply update the\n"
"packages currently installed on your Mandrake Linux system. It keeps the\n"
"current partitions of your hard drives as well as user configurations. All\n"
-"other configuration steps remain available with respect to plain\n"
+"other configuration steps remain available, similar to a normal\n"
"installation;\n"
"\n"
-" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
-"existing Mandrake Linux system while keeping all system configurations\n"
-"unchanged. Adding new packages to the current installation is also\n"
-"possible.\n"
+" * \"Upgrade Packages Only\": this new installation class allows you to\n"
+"upgrade an existing Mandrake Linux system while keeping all system\n"
+"configurations unchanged. Adding new packages to the current installation\n"
+"is also possible.\n"
"\n"
-"Upgrades should work fine for Mandrake Linux systems starting from \"8.1\"\n"
-"release.\n"
+"Upgrades should work fine on Mandrake Linux systems containing version\n"
+"\"8.1\" or later.\n"
"\n"
"Depending on your knowledge of GNU/Linux, select one of the following\n"
"choices:\n"
@@ -3815,11 +3883,11 @@ msgid ""
"operating system. The installation will be very easy and you will only be\n"
"asked a few questions;\n"
"\n"
-" * Expert: if you have a good knowledge of GNU/Linux, you can choose this\n"
-"installation class. The expert installation will allow you to perform a\n"
-"highly-customized installation. Answering some of the questions can be\n"
-"difficult if you do not have a good knowledge of GNU/Linux, so do not\n"
-"choose this unless you know what you are doing."
+" * Expert: if you have a good understanding of GNU/Linux, you may wish to\n"
+"perform a highly customized installation. Some of the decisions you will\n"
+"have to make may be difficult if you do not have good knowledge of\n"
+"GNU/Linux, so it is not recommended that those without a fair amount of\n"
+"experience select this installation class."
msgstr ""
"DrakX issa għandu bĆŒonn ikun jaf jekk tridx tagħmel installazzjoni standard "
"(\"Rakkomandata\") jew waħda li tagħtik iĆŒjed kontroll fuq x'jiÄĄri \n"
@@ -3857,19 +3925,22 @@ msgstr ""
"diffiċli tirrispondihom jekk ma tafx sew lill-GNU/Linux, għalhekk tagÄ§ĆŒilx\n"
"din il-klassi jekk ma tafx x'qed tagħmel."
-#: ../../help.pm_.c:584
+#: ../../help.pm_.c:578
msgid ""
"Normally, DrakX selects the right keyboard for you (depending on the\n"
-"language you have chosen) and you won't even see this step. However, you\n"
-"might not have a keyboard that corresponds exactly to your language: for\n"
-"example, if you are an English speaking Swiss person, you may still want\n"
-"your keyboard to be a Swiss keyboard. Or if you speak English but are\n"
-"located in Quebec, you may find yourself in the same situation. In both\n"
-"cases, you will have to go back to this installation step and select an\n"
-"appropriate keyboard from the list.\n"
+"language you have chosen). However, you might not have a keyboard that\n"
+"corresponds exactly to your language: for example, if you are an English\n"
+"speaking Swiss person, you may still want your keyboard to be a Swiss\n"
+"keyboard. Or if you speak English but are located in Quebec, you may find\n"
+"yourself in the same situation. In both cases, you will have to go back to\n"
+"this installation step and select an appropriate keyboard from the list.\n"
"\n"
"Click on the \"More\" button to be presented with the complete list of\n"
-"supported keyboards."
+"supported keyboards.\n"
+"\n"
+"If you choose a keyboard layout based on a non-latin alphabet, you will be\n"
+"asked on next dialog to choose the key binding that will switch the\n"
+"keyboard layout between the latin and non latin layouts."
msgstr ""
"Normalment, DrakX jagÄ§ĆŒillek it-tastiera tajba (skond il-lingwa li\n"
"għaĆŒilt) u anqas tara dan il-pass. PerĂČ, jista' jkollok tastiera\n"
@@ -3882,8 +3953,10 @@ msgstr ""
"Klikkja fuq il-buttuna \"Oħrajn\" biex tara l-lista kompleta ta' \n"
"tastiera li hemm fis-sistema."
-#: ../../help.pm_.c:597
+#: ../../help.pm_.c:594
msgid ""
+"The first step is to choose your preferred language.\n"
+"\n"
"Please choose your preferred language for installation and system usage.\n"
"\n"
"Clicking on the \"Advanced\" button will allow you to select other\n"
@@ -3908,7 +3981,7 @@ msgstr ""
"Innota li tista' tagÄ§ĆŒel kemm trid lingwi. Ladarba tkun għaĆŒilt il-lingwi\n"
"li trid agħfas \"OK\" biex tkompli."
-#: ../../help.pm_.c:610
+#: ../../help.pm_.c:609
msgid ""
"DrakX generally detects the number of buttons your mouse has. If not, it\n"
"assumes you have a two-button mouse and will set it up for third-button\n"
@@ -3921,7 +3994,14 @@ msgid ""
"If you choose a mouse other than the default, a test screen will be\n"
"displayed. Use the buttons and wheel to verify that the settings are\n"
"correct. If the mouse is not working well, press the space bar or [Return]\n"
-"to \"Cancel\" and choose again."
+"to \"Cancel\" and choose again.\n"
+"\n"
+"Wheel mouses are sometimes not automatically detected. You will need to\n"
+"manually select it in the list. Be sure to select the one corresponding to\n"
+"the correct port it is attached to. After you have pressed the \"OK\"\n"
+"button, a mouse image is displayed. You then need to move the wheel of your\n"
+"mouse to activate it correctly. Then test all buttons and movements are\n"
+"correct."
msgstr ""
"Impliċitament, DrakX jassumi li għandek maws b'ĆŒewÄĄ buttuni u jissettjah\n"
"għall-emulazzjoni tat-tielet buttuna. DrakX kapaċi jinduna waħdu jekk il-\n"
@@ -3934,9 +4014,9 @@ msgstr ""
"biex tittestja s-setings. UĆŒa l-buttuni kollha u r-rota biex tivverifika li "
"s-\n"
"setings jaħdmu sew. Jekk il-maws ma jaħdimx sew agħfas \"spazju\" jew\n"
-"[Enter] biex tikkanċella u terÄĄa tagÄ§ĆŒel ieħor."
+"[Enter] biex tikkanċella u terÄĄa' tagÄ§ĆŒel ieħor."
-#: ../../help.pm_.c:624
+#: ../../help.pm_.c:630
msgid ""
"Please select the correct port. For example, the \"COM1\" port under\n"
"Windows is named \"ttyS0\" under GNU/Linux."
@@ -3944,7 +4024,7 @@ msgstr ""
"Jekk jogħĥbok agÄ§ĆŒel il-port it-tajjeb. Per eĆŒempju, il-port \"COM1\" fil-\n"
"Windows huwa ekwivalenti għal \"ttyS0\" fil-GNU/Linux."
-#: ../../help.pm_.c:628
+#: ../../help.pm_.c:634
msgid ""
"This is the most crucial decision point for the security of your GNU/Linux\n"
"system: you have to enter the \"root\" password. \"root\" is the system\n"
@@ -3974,9 +4054,9 @@ msgid ""
"In Expert mode, you will be asked if you will be connecting to an\n"
"authentication server, like NIS or LDAP.\n"
"\n"
-"If your network uses the LDAP (or NIS) protocol for authentication, select\n"
-"\"LDAP\" (or \"NIS\") as authentication. If you do not know, ask your\n"
-"network administrator.\n"
+"If your network uses either of the LDAP, NIS, or PDC Windows Domain\n"
+"authentication services, select the appropriate one as \"authentication\".\n"
+"If you do not know, ask your network administrator.\n"
"\n"
"If your computer is not connected to any administrated network, you will\n"
"want to choose \"Local files\" for authentication."
@@ -3989,8 +4069,8 @@ msgstr ""
"password li diffiċli biex taqtagħha -DrakX iwissik jekk tagÄ§ĆŒel waħda faċli\n"
"wisq. Kif tista' tinduna, huwa anke possibbli li ma ddaħħal xejn bħala "
"password,\n"
-"imma dan huwa perikoluĆŒ ÄŠAFNA u aħna ma nirrakkomandawh qatt. Peress li "
-"\"root\"\n"
+"imma dan huwa perikoluĆŒ ÄŠAFNA u aħna ma nirrikmandawh qatt. Peress li \"root"
+"\"\n"
"jista' jegħleb kull limitazzjoni, saħansitra jħassar l-informazzjoni u \n"
"partizzjonijiet kollha, huwa mportanti li jkun diffiċli kemm jista' jkun li\n"
"nies oħra jidħlu bħala \"root\".\n"
@@ -4000,7 +4080,7 @@ msgstr ""
"karattri. M'għandek qatt tikteb il-password ta' \"root\" - dan jagħmilha\n"
"faċli wisq tikkomprometti s-sistema.\n"
"\n"
-"Fl-istess ħin tagħmilx il-password twil jew komplikat wisq għax int trid\n"
+"Fl-istess ħin tagħmilx il-password twil jew kumplikata wisq għax int trid\n"
"tkun kapaċi tiftakarha.\n"
"\n"
"Il-password mhux se jintwera fuq l-iskrin waqt li tittajpjah. Għalhekk trid\n"
@@ -4013,7 +4093,7 @@ msgstr ""
"awtentikazzjoni,\n"
"bħal NIS jew LDAP.\n"
"\n"
-"Jekk in-network tiegħek juħa protokoll LDAP (jew NIS) għall-"
+"Jekk in-network tiegħek juĆŒa protokoll LDAP (jew NIS) għall-"
"awtentikazzjoni,\n"
"agÄ§ĆŒel \"LDAP\" jew \"NIS\" bħala awtentikazzjoni. Jekk ma tafx, staqsi "
"lill-\n"
@@ -4022,7 +4102,7 @@ msgstr ""
"Jekk il-kompjuter tiegħek mhux imqabbad ma' network amministrat, agÄ§ĆŒel\n"
"\"Fajls lokali\" għall-awtentikazzjoni."
-#: ../../help.pm_.c:664
+#: ../../help.pm_.c:670
msgid ""
"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
@@ -4061,16 +4141,7 @@ msgid ""
"options. !!\n"
"\n"
"Clicking the \"Advanced\" button in this dialog will offer many advanced\n"
-"options, which are reserved to the expert user.\n"
-"\n"
-"After you have configured the general bootloader parameters, the list of\n"
-"boot options which will be available at boot time will be displayed.\n"
-"\n"
-"If there is another operating system installed on your machine, it will\n"
-"automatically be added to the boot menu. Here, you can choose to fine-tune\n"
-"the existing options. Select an entry and click \"Modify\" to modify or\n"
-"remove it; \"Add\" creates a new entry; and \"Done\" goes on to the next\n"
-"installation step."
+"options, which are reserved for the expert user."
msgstr ""
"LILO u grub huma \"boot loaders\" għall-GNU/Linux. Dan l-istadju normalment\n"
"huwa totalment awtomatizzat. Fil-fatt, DrakX janalizza s-settur \"boot\" "
@@ -4092,7 +4163,7 @@ msgstr ""
" * \"Apparat boot\": ġeneralment ma tbiddilx il-valur impliċitu (\"/dev/hda"
"\"),\n"
"imma jekk tippreferi, il-bootloader jista' jiÄĄi nstallat fuq it-tieni diska\n"
-"(\"/dev/hdb\") jew saħanistra floppy (\"/dev/fd0\").\n"
+"(\"/dev/hdb\") jew saħansitra flopi (\"/dev/fd0\").\n"
"\n"
" * \"PawĆŒa qabel ittella' impliċitu\": meta tixgħel il-kompjuter, dan "
"jistenna\n"
@@ -4116,13 +4187,16 @@ msgstr ""
"tneħħi l-element. \"ƻid\" joħloq element ĥdid, u \"Lest\" imur fil-pass\n"
"li jmiss ta' l-installazzjoni."
-#: ../../help.pm_.c:713
+#: ../../help.pm_.c:710
msgid ""
-"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
-"either GNU/Linux or any other operating system present on your computer.\n"
-"Normally, these other operating systems are correctly detected and\n"
-"installed. If this is not the case, you can add an entry by hand in this\n"
-"screen. Be careful to choose the correct parameters.\n"
+"After you have configured the general bootloader parameters, the list of\n"
+"boot options which will be available at boot time will be displayed.\n"
+"\n"
+"If there is another operating system installed on your machine, it will\n"
+"automatically be added to the boot menu. Here, you can choose to fine-tune\n"
+"the existing options. Select an entry and click \"Modify\" to modify or\n"
+"remove it; \"Add\" creates a new entry; and \"Done\" goes on to the next\n"
+"installation step.\n"
"\n"
"You may also not want to give access to these other operating systems to\n"
"anyone. In which case, you can delete the corresponding entries. But then,\n"
@@ -4138,8 +4212,8 @@ msgstr ""
"\n"
"Għandek mnejn ma tkunx trid tagħti aċċess għal dawn is-sistemi operattivi "
"lill\n"
-"ħadd. F'dak il-kaĆŒ tista' tħassar dawn l-elementi. Imma mbgħad tkun trid "
-"floppy\n"
+"ħadd. F'dak il-kaĆŒ tista' tħassar dawn l-elementi. Imma mbagħad tkun trid "
+"flopi\n"
"apposta biex tidħol f'dawn is-sistemi operattivi!"
#: ../../help.pm_.c:724
@@ -4218,18 +4292,18 @@ msgstr ""
#: ../../help.pm_.c:759
msgid ""
-"DrakX now detects any IDE device present in your computer. It will also\n"
-"scan for one or more PCI SCSI card(s) on your system. If a SCSI card is\n"
+"DrakX now detects any IDE devices present in your computer. It will also\n"
+"scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
"found, DrakX will automatically install the appropriate driver.\n"
"\n"
"Because hardware detection does not always detect a piece of hardware,\n"
"DrakX will ask you to confirm if a PCI SCSI card is present. Click \"Yes\"\n"
"if you know that there is a SCSI card installed in your machine. You will\n"
-"be presented a list of SCSI cards to choose from. Click \"No\" if you have\n"
-"no SCSI hardware. If you are unsure, you can check the list of hardware\n"
-"detected in your machine by selecting \"See hardware info\" and clicking\n"
-"\"OK\". Examine the list of hardware and then click on the \"OK\" button to\n"
-"return to the SCSI interface question.\n"
+"be presented with a list of SCSI cards to choose from. Click \"No\" if you\n"
+"have no SCSI hardware. If you are unsure, you can check the list of\n"
+"hardware detected in your machine by selecting \"See hardware info\" and\n"
+"clicking \"OK\". Examine the list of hardware and then click on the \"OK\"\n"
+"button to return to the SCSI interface question.\n"
"\n"
"If you have to manually specify your adapter, DrakX will ask if you want to\n"
"specify options for it. You should allow DrakX to probe the hardware for\n"
@@ -4246,15 +4320,15 @@ msgid ""
msgstr ""
"DrakX issa se jfittex apparat IDE fuq il-kompjuter tiegħek. Huwa wkoll\n"
"ifittex kard waħda jew iĆŒjed SCSI PCI fuq is-sistema. Jekk tinstab kard\n"
-"SCSI, DrakX awtomatikament jinstalla d-driver għaliha.\n"
+"SCSI, DrakX awtomatikament jinstalla d-drajver għaliha.\n"
"\n"
-"Press li dan il-proċess mhux dejjem isib ċerti apparat. DrakX jitolbok\n"
+"Peress li dan il-proċess mhux dejjem isib ċerti apparat. DrakX jitolbok\n"
"tikkonferma jekk hemmx kard SCSI PCI fuq il-kompjuter. Agħfas \"Iva\" jekk\n"
"taf li għandek kard simili fuq il-kompjuter. Int tingħata lista ta' kards \n"
"SCSI mnejn tagÄ§ĆŒel tiegħek. AgÄ§ĆŒel \"Le\" jekk m'għandekx kards SCSI. Jekk \n"
"m'intix ċert tista' tiċċekkja l-lista ta' ħardwer misjub fis-sistema billi\n"
-"tagħfas \"Ara info. ħardwer\" u mbgħad \"OK\". EĆŒamina l-lista ta' apparat u "
-"mbgħad agħfas \"OK\" biex tiĥi lura fil-konfigurazzjoni ta' SCSI.\n"
+"tagħfas \"Ara info. ħardwer\" u mbagħad \"OK\". EĆŒamina l-lista ta' apparat "
+"u mbagħad agħfas \"OK\" biex tiĥi lura fil-konfigurazzjoni ta' SCSI.\n"
"\n"
"Jekk trid tissettja l-adattur manwalment, DrakX jistaqsik jekk tridx \n"
"tispeċifika għaĆŒliet għalih. Jaqbillek tħalli lill DrakX jeĆŒamina l-ħardwer\n"
@@ -4262,7 +4336,7 @@ msgstr ""
"normalment jaħdem sew.\n"
"\n"
"Jekk DrakX mhux kapaċi jagħraf l-għaĆŒliet li jridu jiÄĄu mgħoddija, trid\n"
-"tispeċifikahom manwalment lid-driver. Jekk jogħġbok iċċekkja l-\"User Guide"
+"tispeċifikahom manwalment lid-drajver. Jekk jogħġbok iċċekkja l-\"User Guide"
"\", (kapitlu 3, \"Collecting Information on Your Hardware\") għal ħjilijiet "
"dwar\n"
"kif issir taf il-parametri meħtieĥa mid-dokumentazzjoni ta' l-apparat, "
@@ -4372,7 +4446,9 @@ msgid ""
"order to configure the clock according to the time zone you are in;\n"
"\n"
" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
-"configuration wizard;\n"
+"configuration wizard. Consult the corresponding chapter of the ``User\n"
+"Guide'' for more information on how to setup a new printer. The interface\n"
+"presented there is similar to the one used during installation;\n"
"\n"
" * \"Sound card\": if a sound card is detected on your system, it is\n"
"displayed here. No modification possible at installation time;\n"
@@ -4411,7 +4487,7 @@ msgstr ""
"assoċjati\n"
"magħha."
-#: ../../help.pm_.c:894
+#: ../../help.pm_.c:896
msgid ""
"Choose the hard drive you want to erase in order to install your new\n"
"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
@@ -4421,7 +4497,7 @@ msgstr ""
"Mandrake Linux fuqha. Oqgħod attent, l-informazzjoni kollha fuq din id-\n"
"diska jintilef u ma jkunx jista' jinÄĄab lura!"
-#: ../../help.pm_.c:899
+#: ../../help.pm_.c:901
msgid ""
"Click on \"OK\" if you want to delete all data and partitions present on\n"
"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
@@ -4447,15 +4523,15 @@ msgid ""
"Installation medium (please create a newer boot floppy)"
msgstr ""
"Ma nistax naċċessa moduli tal-kernel li jikkorrispondu għall-kernel (fajl %s "
-"nieqes). Dan normalment ifisser li l-floppy mhuwiex sinkronizzat mal- "
-"installazzjoni. Jekk jogħĥbok oħloq floppy ĥdida biex tistartja fuqha."
+"nieqes). Dan normalment ifisser li l-flopi mhuwiex sinkronizzat mal- "
+"installazzjoni. Jekk jogħĥbok oħloq flopi ĥdida biex tistartja fuqha."
#: ../../install2.pm_.c:167
#, c-format
msgid "You must also format %s"
msgstr "Trid ukoll tifformattja %s"
-#: ../../install_any.pm_.c:418
+#: ../../install_any.pm_.c:423
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -4480,39 +4556,56 @@ msgstr ""
"\n"
"ƻgur li trid tinstalla dawn is-servers?\n"
-#: ../../install_any.pm_.c:453
+#: ../../install_any.pm_.c:441
+#, c-format
+msgid ""
+"The following packages will be removed to allow upgrading your system: %s\n"
+"\n"
+"\n"
+"Do you really want to remove these packages?\n"
+msgstr ""
+
+#: ../../install_any.pm_.c:471
msgid "Can't use broadcast with no NIS domain"
-msgstr "Ma nsitax nuĆŒa \"broadcast\" minngħajr dominju NIS"
+msgstr "Ma nistax nuĆŒa \"broadcast\" minngħajr dominju NIS"
-#: ../../install_any.pm_.c:841
+#: ../../install_any.pm_.c:862
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
-msgstr "Daħħal floppy formattjata FAT fid-drive %s"
+msgstr "Daħħal flopi formattjata FAT fid-drajv %s"
-#: ../../install_any.pm_.c:845
+#: ../../install_any.pm_.c:866
msgid "This floppy is not FAT formatted"
-msgstr "Din il-floppy m'hix formattjata FAT"
+msgstr "Din il-flopi m'hix formattjata FAT"
-#: ../../install_any.pm_.c:857
+#: ../../install_any.pm_.c:878
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
msgstr ""
-"Bex tuĆŒa din l-għaĆŒla ta' pakketti, ħaddem l-installazzjoni b' \"linux "
-"defcfg=floppy\""
+"Biex tuĆŒa din l-għaĆŒla ta' pakketti, ħaddem l-installazzjoni b' \"linux "
+"defcfg=flopi\""
-#: ../../install_any.pm_.c:880 ../../partition_table.pm_.c:771
+#: ../../install_any.pm_.c:901 ../../partition_table.pm_.c:767
#, c-format
msgid "Error reading file %s"
msgstr "Problema fil-qari tal-fajl %s"
+#: ../../install_any.pm_.c:1023
+msgid ""
+"An error occurred - no valid devices were found on which to create new "
+"filesystems. Please check your hardware for the cause of this problem"
+msgstr ""
+"Instabet problema - ebda apparat validu ma nstab fejn jinħolqu filesystems "
+"ÄĄodda. Iċċekkja l-kompjuter għall-kawĆŒa ta' din il-problema."
+
#: ../../install_interactive.pm_.c:23
#, c-format
msgid ""
"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
"You can find some information about them at: %s"
msgstr ""
-"Xi apparat fil-kompjuter tiegħek jeħtieġ drivers speċjali biex jaħdem.\n"
+"Xi apparat fil-kompjuter tiegħek jeħtieġ drajvers speċjali biex jaħdem.\n"
"Tista' ssib iĆŒjed informazzjoni dwarhom fuq: %s"
#: ../../install_interactive.pm_.c:58
@@ -4523,7 +4616,7 @@ msgid ""
msgstr ""
"Għandek bĆŒonn partizzjoni \"root\".\n"
"Għal dan l-ewwel oħloq partizzjoni (jew agÄ§ĆŒel waħda eĆŒistenti)\n"
-"Imbgħad agÄ§ĆŒel \"Punt ta' mmuntar\" u ssettjah għal \"/\""
+"Imbagħad agÄ§ĆŒel \"Punt ta' mmuntar\" u ssettjah għal \"/\""
#: ../../install_interactive.pm_.c:63
msgid "You must have a swap partition"
@@ -4539,59 +4632,59 @@ msgstr ""
"\n"
"Trid tkompli xorta?"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:168
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:169
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "Għandek bĆŒonn partizzjoni FAT immuntata fuq /boot/efi"
-#: ../../install_interactive.pm_.c:91
+#: ../../install_interactive.pm_.c:92
msgid "Use free space"
msgstr "UĆŒa l-ispazju vojt"
-#: ../../install_interactive.pm_.c:93
+#: ../../install_interactive.pm_.c:94
msgid "Not enough free space to allocate new partitions"
msgstr "M'hemmx biĆŒĆŒejjed spazju vojt biex jinħolqu l-partizzjonijiet il-ÄĄodda"
-#: ../../install_interactive.pm_.c:101
+#: ../../install_interactive.pm_.c:102
msgid "Use existing partitions"
msgstr "UĆŒa partizzjoni eĆŒistenti"
-#: ../../install_interactive.pm_.c:103
+#: ../../install_interactive.pm_.c:104
msgid "There is no existing partition to use"
msgstr "M'hemmx partizzjonijiet eĆŒistenti x'nuĆŒa"
-#: ../../install_interactive.pm_.c:110
+#: ../../install_interactive.pm_.c:111
msgid "Use the Windows partition for loopback"
msgstr "UĆŒa l-partizzjoni tal-Windows għal loopback"
-#: ../../install_interactive.pm_.c:113
+#: ../../install_interactive.pm_.c:114
msgid "Which partition do you want to use for Linux4Win?"
msgstr "Liema partizzjoni trid tuĆŒa għal Linux4Win?"
-#: ../../install_interactive.pm_.c:115
+#: ../../install_interactive.pm_.c:116
msgid "Choose the sizes"
msgstr "AgÄ§ĆŒel id-daqsijiet"
-#: ../../install_interactive.pm_.c:116
+#: ../../install_interactive.pm_.c:117
msgid "Root partition size in MB: "
msgstr "Daqs tal-partizzjoni root f' MB: "
-#: ../../install_interactive.pm_.c:117
+#: ../../install_interactive.pm_.c:118
msgid "Swap partition size in MB: "
msgstr "Daqs tal-partizzjoni Swap f' MB: "
-#: ../../install_interactive.pm_.c:126
+#: ../../install_interactive.pm_.c:128
msgid "Use the free space on the Windows partition"
msgstr "UĆŒa l-ispazju vojt fil-partizzjoni tal-Windows"
-#: ../../install_interactive.pm_.c:129
+#: ../../install_interactive.pm_.c:131
msgid "Which partition do you want to resize?"
msgstr "Liema partizzjoni trid tibdlilha d-daqs?"
-#: ../../install_interactive.pm_.c:131
+#: ../../install_interactive.pm_.c:133
msgid "Resizing Windows partition"
msgstr "Qed nikkalkula l-limiti tal-filesystem tal-Windows"
-#: ../../install_interactive.pm_.c:134
+#: ../../install_interactive.pm_.c:136
#, c-format
msgid ""
"The FAT resizer is unable to handle your partition, \n"
@@ -4601,7 +4694,7 @@ msgstr ""
"kapaċi tbiddel din il-partizzjoni - instabet din il-problema:\n"
"%s"
-#: ../../install_interactive.pm_.c:137
+#: ../../install_interactive.pm_.c:139
msgid ""
"Your Windows partition is too fragmented. Please reboot your computer under "
"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
@@ -4610,7 +4703,7 @@ msgstr ""
"Il-partizzjoni tal-Windows hija mgerfxa wisq. Jekk jogħĥbok ħaddem \"defrag"
"\"."
-#: ../../install_interactive.pm_.c:138
+#: ../../install_interactive.pm_.c:140
msgid ""
"WARNING!\n"
"\n"
@@ -4627,60 +4720,60 @@ msgstr ""
"attent: dan il-proċess huwa perikoluĆŒ. Jekk għadek m'għamiltx dan,\n"
"jaqbillek l-ewwel toħroġ mill-proċess tal-installazzjoni, tħaddem\n"
"\"scandisk\" mill-Windows (u idejalment anke \"defrag\"), u \n"
-"mbgħad terĥa' tibda l-installazzjoni. Int rakkomandat ukoll li \n"
-"tieħu \"backup\" tal-informazzjoni importanti.\n"
+"mbagħad terĥa' tibda l-installazzjoni. Int rakkomandat ukoll li \n"
+"tieħu kopja tas-sigurtà tal-informazzjoni importanti.\n"
"Meta tkun ċert, agħfas Ok."
-#: ../../install_interactive.pm_.c:148
+#: ../../install_interactive.pm_.c:150
msgid "Which size do you want to keep for Windows on"
msgstr "X'daqs trid iĆŒĆŒomm għall-windows fuq"
-#: ../../install_interactive.pm_.c:149
+#: ../../install_interactive.pm_.c:151
#, c-format
msgid "partition %s"
msgstr "partizzjoni %s"
-#: ../../install_interactive.pm_.c:156
+#: ../../install_interactive.pm_.c:158
#, c-format
msgid "FAT resizing failed: %s"
msgstr "Bdil tad-daqs FAT falla: %s"
-#: ../../install_interactive.pm_.c:171
+#: ../../install_interactive.pm_.c:173
msgid ""
"There is no FAT partition to resize or to use as loopback (or not enough "
"space left)"
msgstr ""
-"M'hemmx partizzjoijiet FAT biex tibdel id-daqs jew biex tuĆŒahom bħala\n"
+"M'hemmx partizzjonijiet FAT biex tibdel id-daqs jew biex tuĆŒahom bħala\n"
"\"loopback\" (jew m'hemmx biĆŒĆŒejjed spazju)."
-#: ../../install_interactive.pm_.c:177
+#: ../../install_interactive.pm_.c:179
msgid "Erase entire disk"
msgstr "ÄŠassar kull m'hemm fid-diska"
-#: ../../install_interactive.pm_.c:177
+#: ../../install_interactive.pm_.c:179
msgid "Remove Windows(TM)"
msgstr "Neħħi l-Windows(TM)"
-#: ../../install_interactive.pm_.c:180
+#: ../../install_interactive.pm_.c:182
msgid "You have more than one hard drive, which one do you install linux on?"
msgstr "Għandek iĆŒjed minn ħard disk waħda. Fuq liema trid tinstalla l-Linux?"
-#: ../../install_interactive.pm_.c:183
+#: ../../install_interactive.pm_.c:185
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr ""
"Il-partizzjonijiet kollha fuq id-diska %s u l-informazzjoni ta' ÄĄo fihom se "
"jintilfu"
-#: ../../install_interactive.pm_.c:191
+#: ../../install_interactive.pm_.c:193
msgid "Custom disk partitioning"
msgstr "Partizzjonament personalizzat"
-#: ../../install_interactive.pm_.c:195
+#: ../../install_interactive.pm_.c:197
msgid "Use fdisk"
msgstr "UĆŒa fdisk"
-#: ../../install_interactive.pm_.c:198
+#: ../../install_interactive.pm_.c:200
#, c-format
msgid ""
"You can now partition %s.\n"
@@ -4689,28 +4782,28 @@ msgstr ""
"Tista' tippartizzjona %s.\n"
"X'ħin tlesti, tinsiex tikteb il-bidliet billi tittajpja \"w\"."
-#: ../../install_interactive.pm_.c:227
+#: ../../install_interactive.pm_.c:229
msgid "You don't have enough free space on your Windows partition"
msgstr "M'għandekx biĆŒĆŒejjed spazju fuq il-partizzjoni Windows."
-#: ../../install_interactive.pm_.c:243
+#: ../../install_interactive.pm_.c:245
msgid "I can't find any room for installing"
msgstr "Ma nistax insib spazju fejn ninstalla."
-#: ../../install_interactive.pm_.c:246
+#: ../../install_interactive.pm_.c:248
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr "Is-saħħar ta' partizzjonament DrakX sab dawn is-soluzzjonijiet:"
-#: ../../install_interactive.pm_.c:250
+#: ../../install_interactive.pm_.c:252
#, c-format
msgid "Partitioning failed: %s"
msgstr "Partizzjonament falla: %s"
-#: ../../install_interactive.pm_.c:260
+#: ../../install_interactive.pm_.c:262
msgid "Bringing up the network"
msgstr "Qed intella' n-network"
-#: ../../install_interactive.pm_.c:265
+#: ../../install_interactive.pm_.c:267
msgid "Bringing down the network"
msgstr "Qed inniĆŒĆŒel in-network"
@@ -4720,14 +4813,14 @@ msgid ""
"Continue at your own risk."
msgstr ""
"Inqalgħet problema, imma ma nafx kif nieħu ħsieba sew.\n"
-"Tista' tkompli b'risku tiegħek"
+"Tista' tkompli b'riskju tiegħek"
-#: ../../install_steps.pm_.c:210
+#: ../../install_steps.pm_.c:211
#, c-format
msgid "Duplicate mount point %s"
msgstr "Punt ta' mmuntar doppju %s"
-#: ../../install_steps.pm_.c:379
+#: ../../install_steps.pm_.c:380
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -4735,18 +4828,18 @@ msgid ""
"\"\n"
msgstr ""
"Xi pakketti importanti ma ÄĄewx installati sew.\n"
-"Jew id-drive tas-CDROM, jew is-CD nnifisha huma difettuĆŒi.\n"
+"Jew id-drajv tas-CDROM, jew is-CD nnifisha huma difettuĆŒi.\n"
"Tista' tiċċekkja s-CD fuq kompjuter diġà nstallat permezz tal-kmand \"rpm -"
"qpl Mandrake/RPMS/*.rpm\"\n"
-#: ../../install_steps.pm_.c:451
+#: ../../install_steps.pm_.c:452
#, c-format
msgid "Welcome to %s"
msgstr "Merħba għal %s"
-#: ../../install_steps.pm_.c:530 ../../install_steps.pm_.c:770
+#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:772
msgid "No floppy drive available"
-msgstr "M'hemmx drive floppy"
+msgstr "M'hemmx drajv flopi"
#: ../../install_steps_auto_install.pm_.c:76
#: ../../install_steps_stdio.pm_.c:22
@@ -4764,7 +4857,7 @@ msgstr ""
"Is-sistema hija nieqsa mir-riĆŒorsi. Jista' jkollok problema biex tinstalla \n"
"l-Mandrake Linux. Jekk jiĥri dan, ipprova installazzjoni testwali. Għal "
"dan,\n"
-"agħfas F1 meta titla' s-CD, imbgħad ittajpja \"text\"."
+"agħfas F1 meta titla' s-CD, imbagħad ittajpja \"text\"."
#: ../../install_steps_gtk.pm_.c:161 ../../install_steps_interactive.pm_.c:231
msgid "Install Class"
@@ -4774,70 +4867,70 @@ msgstr "Klassi ta' installazzjoni"
msgid "Please choose one of the following classes of installation:"
msgstr "Jekk jogħĥbok agÄ§ĆŒel waħda minn dawn il-klassijiet ta' installazzjoni:"
-#: ../../install_steps_gtk.pm_.c:243 ../../install_steps_interactive.pm_.c:694
+#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:678
msgid "Package Group Selection"
msgstr "GħaĆŒla ta' gruppi ta' pakketti"
-#: ../../install_steps_gtk.pm_.c:276 ../../install_steps_interactive.pm_.c:709
+#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:693
msgid "Individual package selection"
msgstr "AgÄ§ĆŒel pakketti individwalment"
-#: ../../install_steps_gtk.pm_.c:299 ../../install_steps_interactive.pm_.c:633
+#: ../../install_steps_gtk.pm_.c:293 ../../install_steps_interactive.pm_.c:617
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Daqs totali: %d / %d MB"
-#: ../../install_steps_gtk.pm_.c:341
+#: ../../install_steps_gtk.pm_.c:335
msgid "Bad package"
msgstr "Pakkett ħaĆŒin"
-#: ../../install_steps_gtk.pm_.c:342
+#: ../../install_steps_gtk.pm_.c:336
#, c-format
msgid "Name: %s\n"
msgstr "Isem: %s\n"
-#: ../../install_steps_gtk.pm_.c:343
+#: ../../install_steps_gtk.pm_.c:337
#, c-format
msgid "Version: %s\n"
msgstr "VerĆŒjoni: %s\n"
-#: ../../install_steps_gtk.pm_.c:344
+#: ../../install_steps_gtk.pm_.c:338
#, c-format
msgid "Size: %d KB\n"
msgstr "Daqs: %d KB\n"
-#: ../../install_steps_gtk.pm_.c:345
+#: ../../install_steps_gtk.pm_.c:339
#, c-format
msgid "Importance: %s\n"
msgstr "Importanza: %s\n"
-#: ../../install_steps_gtk.pm_.c:367
+#: ../../install_steps_gtk.pm_.c:361
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr ""
"Ma tistax tagÄ§ĆŒel dan il-pakkett għax ma fadalx biĆŒĆŒejjed spazju għalih"
-#: ../../install_steps_gtk.pm_.c:372
+#: ../../install_steps_gtk.pm_.c:366
msgid "The following packages are going to be installed"
msgstr "Dawn huma l-pakketti li se jiÄĄu nstallati"
-#: ../../install_steps_gtk.pm_.c:373
+#: ../../install_steps_gtk.pm_.c:367
msgid "The following packages are going to be removed"
msgstr "Dawn huma l-pakketti li se jiĥu mneħħija"
-#: ../../install_steps_gtk.pm_.c:385
+#: ../../install_steps_gtk.pm_.c:379
msgid "You can't select/unselect this package"
msgstr "Ma tistax tagÄ§ĆŒel dan il-pakkett"
-#: ../../install_steps_gtk.pm_.c:397
+#: ../../install_steps_gtk.pm_.c:391
msgid "This is a mandatory package, it can't be unselected"
msgstr "Dan il-pakkett huwa kruċjali, ma jistax jitneħħa"
-#: ../../install_steps_gtk.pm_.c:399
+#: ../../install_steps_gtk.pm_.c:393
msgid "You can't unselect this package. It is already installed"
msgstr "Ma tistax tneħħi l-għaĆŒla minn dan il-pakkett, diÄĄĂ  nstallat."
-#: ../../install_steps_gtk.pm_.c:402
+#: ../../install_steps_gtk.pm_.c:396
msgid ""
"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
@@ -4845,74 +4938,74 @@ msgstr ""
"Dan il-pakkett għandu bĆŒonn jiÄĄi aÄĄÄĄornat.\n"
"Ć»gur li trid tneħħi l-għaĆŒla?"
-#: ../../install_steps_gtk.pm_.c:405
+#: ../../install_steps_gtk.pm_.c:399
msgid "You can't unselect this package. It must be upgraded"
msgstr "Ma tistax tneħħi l-għaĆŒla minn dan il-pakkett. Irid jiÄĄi aÄĄÄĄornat."
-#: ../../install_steps_gtk.pm_.c:410
+#: ../../install_steps_gtk.pm_.c:404
msgid "Show automatically selected packages"
msgstr "Uri l-pakketti magÄ§ĆŒula awtomatikament"
-#: ../../install_steps_gtk.pm_.c:411 ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_gtk.pm_.c:405 ../../install_steps_interactive.pm_.c:255
#: ../../install_steps_interactive.pm_.c:259
-#: ../../standalone/drakbackup_.c:3600
+#: ../../standalone/drakbackup_.c:4257
msgid "Install"
msgstr "Installa"
-#: ../../install_steps_gtk.pm_.c:414
+#: ../../install_steps_gtk.pm_.c:408
msgid "Load/Save on floppy"
-msgstr "Aqra/ikteb fuq floppy"
+msgstr "Aqra/ikteb fuq flopi"
-#: ../../install_steps_gtk.pm_.c:415
+#: ../../install_steps_gtk.pm_.c:409
msgid "Updating package selection"
msgstr "Qed naÄĄÄĄorna l-għaĆŒla ta' pakketti"
-#: ../../install_steps_gtk.pm_.c:420
+#: ../../install_steps_gtk.pm_.c:414
msgid "Minimal install"
msgstr "Installazzjoni minima"
-#: ../../install_steps_gtk.pm_.c:435 ../../install_steps_interactive.pm_.c:538
+#: ../../install_steps_gtk.pm_.c:429 ../../install_steps_interactive.pm_.c:522
msgid "Choose the packages you want to install"
msgstr "AgÄ§ĆŒel il-pakketti li trid tinstalla"
-#: ../../install_steps_gtk.pm_.c:451 ../../install_steps_interactive.pm_.c:778
+#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:762
msgid "Installing"
msgstr "Qed ninstalla"
-#: ../../install_steps_gtk.pm_.c:457
+#: ../../install_steps_gtk.pm_.c:451
msgid "Estimating"
-msgstr "Qed nistima"
+msgstr "Qed nieħu stima"
-#: ../../install_steps_gtk.pm_.c:464
+#: ../../install_steps_gtk.pm_.c:458
msgid "Time remaining "
msgstr "ÄŠin li fadal "
-#: ../../install_steps_gtk.pm_.c:476
+#: ../../install_steps_gtk.pm_.c:470
msgid "Please wait, preparing installation..."
msgstr "Stenna ftit, qed nipprepara l-installazzjoni"
-#: ../../install_steps_gtk.pm_.c:560
+#: ../../install_steps_gtk.pm_.c:554
#, c-format
msgid "%d packages"
msgstr "%d pakketti"
-#: ../../install_steps_gtk.pm_.c:565
+#: ../../install_steps_gtk.pm_.c:559
#, c-format
msgid "Installing package %s"
msgstr "Qed jinstalla il-pakkett %s"
-#: ../../install_steps_gtk.pm_.c:602 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:802
+#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:786
#: ../../standalone/drakautoinst_.c:202
msgid "Accept"
msgstr "Naċċetta"
-#: ../../install_steps_gtk.pm_.c:602 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:802
+#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:786
msgid "Refuse"
msgstr "Ma naċċettax"
-#: ../../install_steps_gtk.pm_.c:603 ../../install_steps_interactive.pm_.c:803
+#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:787
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4923,22 +5016,22 @@ msgid ""
msgstr ""
"Ibdel id-diska CD!\n"
"\n"
-"Jekk jogħĥbok daħħal id-diska mmarkata \"%s\" fid-drive u agħfas Ok meta "
+"Jekk jogħĥbok daħħal id-diska mmarkata \"%s\" fid-drajv u agħfas Ok meta "
"tlesti.\n"
"Jekk m'għandekx din id-diska, agħfas \"Ikkanċella\" biex taqbeĆŒ il-pakketti "
"li qegħdin fuqha."
-#: ../../install_steps_gtk.pm_.c:617 ../../install_steps_gtk.pm_.c:621
-#: ../../install_steps_interactive.pm_.c:815
-#: ../../install_steps_interactive.pm_.c:819
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_gtk.pm_.c:615
+#: ../../install_steps_interactive.pm_.c:799
+#: ../../install_steps_interactive.pm_.c:803
msgid "Go on anyway?"
msgstr "Trid tkompli xorta?"
-#: ../../install_steps_gtk.pm_.c:617 ../../install_steps_interactive.pm_.c:815
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:799
msgid "There was an error ordering packages:"
msgstr "Kien hemm problema fl-ordni tal-pakketti:"
-#: ../../install_steps_gtk.pm_.c:621 ../../install_steps_interactive.pm_.c:819
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:803
msgid "There was an error installing packages:"
msgstr "Kien hemm problema fl-installazzjoni tal-pakketti:"
@@ -4986,16 +5079,17 @@ msgstr ""
"kundizzjonijiet tal-liċenzja speċifika tiegħu. Jekk jogħġbok aqra sew\n"
"u segwi dawn il-liċenzji speċifiċi qabel tuĆŒa jew tiddistribwixxi dawn il-\n"
"komponenti.\n"
-"Dawn il-liċenzji ġeneralment jipprojbixxu t-trasferiment, kupjar (ħlief \n"
-"bħala backup), ridistribuzzjoni, \"reverse engineering\", diĆŒassemblaÄĄÄĄ,\n"
-"dekompilazzjoni jew modifika ta' dawn il-komponenti. Ksur ta' dan\n"
+"Dawn il-liċenzji ġeneralment jipprojbixxu t-trasferiment, ikkupjar (ħlief \n"
+"bħala kopja tas-sigurtà), ridistribuzzjoni, \"reverse engineering\", "
+"diĆŒassemblaÄĄÄĄ,\n"
+"dikompilazzjoni jew modifika ta' dawn il-komponenti. Ksur ta' dan\n"
"il-qbil jittermina immedjatament id-drittijiet tiegħek taħt din il-"
"liċenzja.\n"
"Sakemm il-liċenzja ma tagħtikx dawn id-drittijiet, normalment ma tistax\n"
-"tinstalla dawn il-programmi duq iĆŒjed minn kompjuter wieħed, jew \n"
+"tinstalla dawn il-programmi fuq iĆŒjed minn kompjuter wieħed, jew \n"
"tadattahom biex jintuĆŒaw fuq network. Jekk għandek xi dubju, jekk \n"
"jogħĥbok ikkuntattja direttament lid-distributur jew editur tal-komponent.\n"
-"It-trasferiment lill terzi partijiet jew kupjar ta' dawn il-komponenti "
+"It-trasferiment lill terzi partijiet jew ikkupjar ta' dawn il-komponenti "
"inkluĆŒ\n"
"id-dokumentazzjoni normalment huwa miċħud.\n"
"\n"
@@ -5144,7 +5238,7 @@ msgid "Are you sure you refuse the licence?"
msgstr "Ć»gur li tirrifjuta l-liċenzja?"
#: ../../install_steps_interactive.pm_.c:211
-#: ../../install_steps_interactive.pm_.c:1038
+#: ../../install_steps_interactive.pm_.c:1023
#: ../../standalone/keyboarddrake_.c:31
msgid "Keyboard"
msgstr "Tastiera"
@@ -5192,11 +5286,11 @@ msgstr "AÄĄÄĄorna l-pakketti biss"
msgid "Please choose the type of your mouse."
msgstr "Jekk jogħĥbok agÄ§ĆŒel it-tip tal-maws."
-#: ../../install_steps_interactive.pm_.c:281 ../../standalone/mousedrake_.c:59
+#: ../../install_steps_interactive.pm_.c:281 ../../standalone/mousedrake_.c:60
msgid "Mouse Port"
msgstr "Port tal-maws"
-#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:61
msgid "Please choose on which serial port your mouse is connected to."
msgstr "Jekk jogħĥbok agÄ§ĆŒel il-port serjali li miegħu hemm imqabbad il-maws."
@@ -5228,87 +5322,62 @@ msgstr "Qed nikkonfigura IDE"
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:336
+#: ../../install_steps_interactive.pm_.c:338
msgid "No partition available"
msgstr "m'hemmx partizzjonijiet disponibbli"
-#: ../../install_steps_interactive.pm_.c:339
+#: ../../install_steps_interactive.pm_.c:341
msgid "Scanning partitions to find mount points"
msgstr "Qed niskannja partizzjonijiet biex insib punti ta' mmuntar"
-#: ../../install_steps_interactive.pm_.c:347
+#: ../../install_steps_interactive.pm_.c:349
msgid "Choose the mount points"
msgstr "AgÄ§ĆŒel punti ta' mmuntar"
-#: ../../install_steps_interactive.pm_.c:366
-#, c-format
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to not allow DrakX to modify the partition table.\n"
-"(the error is %s)\n"
-"\n"
-"Do you agree to loose all the partitions?\n"
-msgstr ""
-"Ma nistax naqra t-tabella tal-partizzjonijiet, hija korrotta wisq :(\n"
-"Nista nkompli billi nħassar partizzjonijiet Ä§ĆŒiena (L-INFORMAZZJONI \n"
-"KOLLHA tintilef). L-alternattiva hi li ma tħallix lill DrakX ibiddel\n"
-"it-tabella tal-partizzjonijiet (il-problema hi %s)\n"
-"\n"
-"Trid titlef il-partizzjonijiet kollha?\n"
-
#: ../../install_steps_interactive.pm_.c:379
msgid ""
-"DiskDrake failed to read correctly the partition table.\n"
-"Continue at your own risk!"
-msgstr ""
-"DiskDrake ma rnexxielux jaqra t-tabella tal-partizzjonijiet.\n"
-"Jekk tkompli jkun riskju tiegħel!"
-
-#: ../../install_steps_interactive.pm_.c:396
-msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
msgstr ""
"M'hemmx spazju għal bootstrap ta' 1MB. L-installazzjoni se tkompli, imma "
"biex tħaddem is-sistema trid toħloq partizzjoni bootstrap f' Diskdrake."
-#: ../../install_steps_interactive.pm_.c:405
+#: ../../install_steps_interactive.pm_.c:388
msgid "No root partition found to perform an upgrade"
msgstr "Ebda partizzjoni root ma nstabet biex issir aÄĄÄĄornament"
-#: ../../install_steps_interactive.pm_.c:406
+#: ../../install_steps_interactive.pm_.c:389
msgid "Root Partition"
msgstr "Partizzjoni root"
-#: ../../install_steps_interactive.pm_.c:407
+#: ../../install_steps_interactive.pm_.c:390
msgid "What is the root partition (/) of your system?"
msgstr "Liem hi l-partizzjoni root tas-sistema?"
-#: ../../install_steps_interactive.pm_.c:421
+#: ../../install_steps_interactive.pm_.c:404
msgid "You need to reboot for the partition table modifications to take place"
msgstr ""
"Trid tirristartja sabiex il-bidliet fit-tabella tal-partizzjonijiet ikollhom "
"effett."
-#: ../../install_steps_interactive.pm_.c:445
+#: ../../install_steps_interactive.pm_.c:428
msgid "Choose the partitions you want to format"
msgstr "AgÄ§ĆŒel liema partizzjonijiet trid tifformattja"
-#: ../../install_steps_interactive.pm_.c:446
+#: ../../install_steps_interactive.pm_.c:429
msgid "Check bad blocks?"
msgstr "Trid tiċċekkja għal blokki Ä§ĆŒiena?"
-#: ../../install_steps_interactive.pm_.c:473
+#: ../../install_steps_interactive.pm_.c:456
msgid "Formatting partitions"
msgstr "Qed nifformattja l-partizzjonijiet"
-#: ../../install_steps_interactive.pm_.c:475
+#: ../../install_steps_interactive.pm_.c:458
#, c-format
msgid "Creating and formatting file %s"
msgstr "Qed noħloq u nifformattja fajl %s"
-#: ../../install_steps_interactive.pm_.c:480
+#: ../../install_steps_interactive.pm_.c:463
#, c-format
msgid ""
"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
@@ -5317,28 +5386,28 @@ msgstr ""
"Ma rnexxielix jiċċekkja l-filesystem %s. Trid issewwi l-problemi? (attent, "
"tista' titlef informazzjoni)"
-#: ../../install_steps_interactive.pm_.c:482
+#: ../../install_steps_interactive.pm_.c:465
msgid "Not enough swap space to fulfill installation, please add some"
msgstr ""
"M'hemmx biĆŒĆŒejjed swap biex issir l-installazzjoni, jekk jogħĥbok ĆŒid ftit"
-#: ../../install_steps_interactive.pm_.c:489
+#: ../../install_steps_interactive.pm_.c:472
msgid "Looking for available packages and rebuilding rpm database..."
msgstr "Qed insib pakketti disponibbli u nerÄĄa' nibni d-database RPM..."
-#: ../../install_steps_interactive.pm_.c:490
+#: ../../install_steps_interactive.pm_.c:473
msgid "Looking for available packages..."
msgstr "Qed insib pakketti disponibbli"
-#: ../../install_steps_interactive.pm_.c:493
+#: ../../install_steps_interactive.pm_.c:476
msgid "Looking at packages already installed..."
msgstr "Qed naqra l-pakketti diÄĄĂ  nstallati..."
-#: ../../install_steps_interactive.pm_.c:497
+#: ../../install_steps_interactive.pm_.c:480
msgid "Finding packages to upgrade..."
msgstr "Qed insib pakketti x'naÄĄÄĄorna"
-#: ../../install_steps_interactive.pm_.c:515
+#: ../../install_steps_interactive.pm_.c:498
#, c-format
msgid ""
"Your system does not have enough space left for installation or upgrade (%d "
@@ -5347,43 +5416,43 @@ msgstr ""
"Is-sistema m'għandiex biĆŒĆŒejjed spazju għall-installazzjoni jew aÄĄÄĄornament "
"(%d > %d)"
-#: ../../install_steps_interactive.pm_.c:550
+#: ../../install_steps_interactive.pm_.c:534
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
msgstr ""
"Jekk jogħĥbok agÄ§ĆŒel \"ikteb\" jew \"aqra\" l-għaĆŒla tal-pakketti fuq\n"
-"floppy. Il-format huwa l-istess bħal floppies ĥenerati bl-auto_install."
+"flopi. Il-format huwa l-istess bħal floppies ĥenerati bl-auto_install."
-#: ../../install_steps_interactive.pm_.c:553
+#: ../../install_steps_interactive.pm_.c:537
msgid "Load from floppy"
-msgstr "Aqra' mill-floppy"
+msgstr "Aqra' mill-flopi"
-#: ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_interactive.pm_.c:539
msgid "Loading from floppy"
-msgstr "Qed tinqara' l-floppy"
+msgstr "Qed tinqara' l-flopi"
-#: ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_interactive.pm_.c:539
msgid "Package selection"
msgstr "GħaĆŒla ta' pakketti"
-#: ../../install_steps_interactive.pm_.c:560
+#: ../../install_steps_interactive.pm_.c:544
msgid "Insert a floppy containing package selection"
-msgstr "Daħħal floppy li fiha għaĆŒla ta' pakketti"
+msgstr "Daħħal flopi li fiha għaĆŒla ta' pakketti"
-#: ../../install_steps_interactive.pm_.c:572
+#: ../../install_steps_interactive.pm_.c:556
msgid "Save on floppy"
-msgstr "Ikteb fuq floppy"
+msgstr "Ikteb fuq flopi"
-#: ../../install_steps_interactive.pm_.c:646
+#: ../../install_steps_interactive.pm_.c:630
msgid "Selected size is larger than available space"
msgstr "Id-daqs tal-għaĆŒla huwa ikbar mill-ispazju disponibbli"
-#: ../../install_steps_interactive.pm_.c:660
+#: ../../install_steps_interactive.pm_.c:644
msgid "Type of install"
msgstr "Tip ta' installazzjoni"
-#: ../../install_steps_interactive.pm_.c:661
+#: ../../install_steps_interactive.pm_.c:645
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
@@ -5391,19 +5460,19 @@ msgstr ""
"Għadek m'għaĆŒilt ebda grupp ta' pakketti\n"
"Jekk jogħĥbok agÄ§ĆŒel installazzjoni minima li trid:"
-#: ../../install_steps_interactive.pm_.c:664
+#: ../../install_steps_interactive.pm_.c:648
msgid "With X"
msgstr "Bl-XWindows"
-#: ../../install_steps_interactive.pm_.c:666
+#: ../../install_steps_interactive.pm_.c:650
msgid "With basic documentation (recommended!)"
msgstr "B' dokumentazzjoni baĆŒika (rakkomandat)"
-#: ../../install_steps_interactive.pm_.c:667
+#: ../../install_steps_interactive.pm_.c:651
msgid "Truly minimal install (especially no urpmi)"
msgstr "Installazzjoni verament minima (mingħajr urpmi)"
-#: ../../install_steps_interactive.pm_.c:752
+#: ../../install_steps_interactive.pm_.c:736
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -5413,16 +5482,16 @@ msgstr ""
"Jekk m'għandek ebda waħda agħfas \"Ikkanċella\".\n"
"Jekk m'għandekx uħud minnhom, neħħi li m'għandekx u agħfas \"Ok\"."
-#: ../../install_steps_interactive.pm_.c:757
+#: ../../install_steps_interactive.pm_.c:741
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "CD-ROM immarkat \"%s\""
-#: ../../install_steps_interactive.pm_.c:778
+#: ../../install_steps_interactive.pm_.c:762
msgid "Preparing installation"
msgstr "Qed nipprepara l-installazzjoni"
-#: ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:771
#, c-format
msgid ""
"Installing package %s\n"
@@ -5431,21 +5500,21 @@ msgstr ""
"Qed jiÄĄi nstallat il-pakkett %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:833
+#: ../../install_steps_interactive.pm_.c:817
msgid "Post-install configuration"
msgstr "Konfigurazzjoni ta' wara l-installazzjoni"
-#: ../../install_steps_interactive.pm_.c:839
+#: ../../install_steps_interactive.pm_.c:823
#, c-format
msgid "Please insert the Boot floppy used in drive %s"
-msgstr "Jekk jogħĥbok daħħal \"boot floppy\" fid-drive %s"
+msgstr "Jekk jogħĥbok daħħal \"boot flopi\" fid-drajv %s"
-#: ../../install_steps_interactive.pm_.c:845
+#: ../../install_steps_interactive.pm_.c:829
#, c-format
msgid "Please insert the Update Modules floppy in drive %s"
-msgstr "Jekk jogħĥbok daħħal \"update modules floppy\" fid-drive %s"
+msgstr "Jekk jogħĥbok daħħal \"update modules floppy\" fid-drajv %s"
-#: ../../install_steps_interactive.pm_.c:865
+#: ../../install_steps_interactive.pm_.c:849
msgid ""
"You now have the opportunity to download encryption software.\n"
"\n"
@@ -5519,7 +5588,7 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:904
+#: ../../install_steps_interactive.pm_.c:888
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
"have been released after the distribution was released. They may\n"
@@ -5541,159 +5610,159 @@ msgstr ""
"\n"
"Trid tinstalla dawn l-aÄĄÄĄornamenti?"
-#: ../../install_steps_interactive.pm_.c:919
+#: ../../install_steps_interactive.pm_.c:903
msgid ""
"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr ""
"Qed nikkuntattja l-website ta' Mandrake Linux biex nikseb lista tal-mirja "
"disponibbli"
-#: ../../install_steps_interactive.pm_.c:924
+#: ../../install_steps_interactive.pm_.c:908
msgid "Choose a mirror from which to get the packages"
msgstr "AgÄ§ĆŒel mera minn fejn trid iÄĄÄĄib il-pakketti"
-#: ../../install_steps_interactive.pm_.c:933
+#: ../../install_steps_interactive.pm_.c:917
msgid "Contacting the mirror to get the list of available packages..."
msgstr "Qed nikkuntattja l-mera biex nikseb lista tal-pakketti disponibbli"
-#: ../../install_steps_interactive.pm_.c:960
+#: ../../install_steps_interactive.pm_.c:945
msgid "Which is your timezone?"
msgstr "Liem hi ĆŒ-ĆŒona orarja tiegħek?"
-#: ../../install_steps_interactive.pm_.c:965
+#: ../../install_steps_interactive.pm_.c:950
msgid "Hardware clock set to GMT"
msgstr "ArloÄĄÄĄ tal-kompjuter issettjat GMT"
-#: ../../install_steps_interactive.pm_.c:966
+#: ../../install_steps_interactive.pm_.c:951
msgid "Automatic time synchronization (using NTP)"
msgstr "Sinkronizzazzjoni tal-ħin awtomatiku (permezz ta' NTP)"
-#: ../../install_steps_interactive.pm_.c:973
+#: ../../install_steps_interactive.pm_.c:958
msgid "NTP Server"
msgstr "Server NTP"
-#: ../../install_steps_interactive.pm_.c:1007
-#: ../../install_steps_interactive.pm_.c:1015
+#: ../../install_steps_interactive.pm_.c:992
+#: ../../install_steps_interactive.pm_.c:1000
msgid "Remote CUPS server"
msgstr "Server CUPS remot"
-#: ../../install_steps_interactive.pm_.c:1008
+#: ../../install_steps_interactive.pm_.c:993
msgid "No printer"
msgstr "Ebda printer"
-#: ../../install_steps_interactive.pm_.c:1025
+#: ../../install_steps_interactive.pm_.c:1010
msgid "Do you have an ISA sound card?"
msgstr "Għandek kard tal-awdjo ISA?"
-#: ../../install_steps_interactive.pm_.c:1027
+#: ../../install_steps_interactive.pm_.c:1012
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
"ÄŠaddem \"sndconfig\" wara l-installazzjoni biex tikkonfigura l-kard awdjo."
-#: ../../install_steps_interactive.pm_.c:1029
+#: ../../install_steps_interactive.pm_.c:1014
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
"Ebda kard tal-awdjo ma nstabet. Ipprova ħaddem \"harddrake\" wara l-"
"installazzjoni"
-#: ../../install_steps_interactive.pm_.c:1034 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1019 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Sommarju"
-#: ../../install_steps_interactive.pm_.c:1037
+#: ../../install_steps_interactive.pm_.c:1022
msgid "Mouse"
msgstr "Maws"
-#: ../../install_steps_interactive.pm_.c:1039
+#: ../../install_steps_interactive.pm_.c:1024
msgid "Timezone"
msgstr "ƻona tal-ħin"
-#: ../../install_steps_interactive.pm_.c:1040 ../../printerdrake.pm_.c:2728
-#: ../../printerdrake.pm_.c:2814
+#: ../../install_steps_interactive.pm_.c:1025 ../../printerdrake.pm_.c:2937
+#: ../../printerdrake.pm_.c:3026
msgid "Printer"
msgstr "Printer"
-#: ../../install_steps_interactive.pm_.c:1042
+#: ../../install_steps_interactive.pm_.c:1027
msgid "ISDN card"
msgstr "Kard ISDN"
-#: ../../install_steps_interactive.pm_.c:1045
-#: ../../install_steps_interactive.pm_.c:1047
+#: ../../install_steps_interactive.pm_.c:1030
+#: ../../install_steps_interactive.pm_.c:1032
msgid "Sound card"
msgstr "Kard awdjo"
-#: ../../install_steps_interactive.pm_.c:1049
+#: ../../install_steps_interactive.pm_.c:1034
msgid "TV card"
msgstr "Kard TV"
-#: ../../install_steps_interactive.pm_.c:1089
-#: ../../install_steps_interactive.pm_.c:1114
-#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1074
+#: ../../install_steps_interactive.pm_.c:1099
+#: ../../install_steps_interactive.pm_.c:1103
msgid "LDAP"
msgstr "LDAP"
-#: ../../install_steps_interactive.pm_.c:1090
-#: ../../install_steps_interactive.pm_.c:1114
-#: ../../install_steps_interactive.pm_.c:1127
+#: ../../install_steps_interactive.pm_.c:1075
+#: ../../install_steps_interactive.pm_.c:1099
+#: ../../install_steps_interactive.pm_.c:1112
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1091
-#: ../../install_steps_interactive.pm_.c:1114
-#: ../../install_steps_interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1141
+#: ../../install_steps_interactive.pm_.c:1076
+#: ../../install_steps_interactive.pm_.c:1099
+#: ../../install_steps_interactive.pm_.c:1120
+#: ../../install_steps_interactive.pm_.c:1126
msgid "Windows Domain"
msgstr "Dominju tal-Windows"
-#: ../../install_steps_interactive.pm_.c:1092
-#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1077
+#: ../../install_steps_interactive.pm_.c:1099
msgid "Local files"
msgstr "Fajls lokali"
-#: ../../install_steps_interactive.pm_.c:1101
-#: ../../install_steps_interactive.pm_.c:1102 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1086
+#: ../../install_steps_interactive.pm_.c:1087 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Issettja l-password ta' \"root\""
-#: ../../install_steps_interactive.pm_.c:1103
+#: ../../install_steps_interactive.pm_.c:1088
msgid "No password"
msgstr "Ebda password"
-#: ../../install_steps_interactive.pm_.c:1108
+#: ../../install_steps_interactive.pm_.c:1093
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr "Dan il-password sempliċi wisq (irid ikun twil tal-inqas %d ittri)"
-#: ../../install_steps_interactive.pm_.c:1114 ../../network/modem.pm_.c:49
+#: ../../install_steps_interactive.pm_.c:1099 ../../network/modem.pm_.c:49
#: ../../standalone/drakconnect_.c:625 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Awtentikazzjoni"
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1107
msgid "Authentication LDAP"
msgstr "Awtentikazzjoni LDAP"
-#: ../../install_steps_interactive.pm_.c:1123
+#: ../../install_steps_interactive.pm_.c:1108
msgid "LDAP Base dn"
msgstr "DN baĆŒi LDAP"
-#: ../../install_steps_interactive.pm_.c:1124
+#: ../../install_steps_interactive.pm_.c:1109
msgid "LDAP Server"
msgstr "Server LDAP"
-#: ../../install_steps_interactive.pm_.c:1130
+#: ../../install_steps_interactive.pm_.c:1115
msgid "Authentication NIS"
msgstr "Awtentikazzjoni NIS"
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1116
msgid "NIS Domain"
msgstr "Dominju NIS"
-#: ../../install_steps_interactive.pm_.c:1132
+#: ../../install_steps_interactive.pm_.c:1117
msgid "NIS Server"
msgstr "Server NIS"
-#: ../../install_steps_interactive.pm_.c:1138
+#: ../../install_steps_interactive.pm_.c:1123
msgid ""
"For this to work for a W2K PDC, you will probably need to have the admin "
"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
@@ -5722,19 +5791,19 @@ msgstr ""
"Il-kmand 'wbinfo -t' jittestja jekk is-sigrieti ta' awtentikazzjoni humiex "
"tajbin."
-#: ../../install_steps_interactive.pm_.c:1140
+#: ../../install_steps_interactive.pm_.c:1125
msgid "Authentication Windows Domain"
msgstr "Awtentikazzjoni Dominju Windows"
-#: ../../install_steps_interactive.pm_.c:1142
+#: ../../install_steps_interactive.pm_.c:1127
msgid "Domain Admin User Name"
msgstr "User ta' amministrazzjoni tad-dominju"
-#: ../../install_steps_interactive.pm_.c:1143
+#: ../../install_steps_interactive.pm_.c:1128
msgid "Domain Admin Password"
msgstr "Password ta' amministrazzjoni tad-dominju"
-#: ../../install_steps_interactive.pm_.c:1178
+#: ../../install_steps_interactive.pm_.c:1163
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
"depending on the normal bootloader. This is useful if you don't want to "
@@ -5753,7 +5822,7 @@ msgid ""
msgstr ""
"Bootdisk personalizzata tipprovdi mezz kif ittella' s-sistema Linux\n"
"minngħajr ma' tinstalla l-bootloader normali. Dan huwa utli jekk ma "
-"tixtieqz\n"
+"tixtieqx\n"
"tinstalla SILO fuq is-sistema tiegħek, jew jekk xi programm ineħħilek\n"
"is-SILO, jew jekk SILO ma jaħdimx mal-ħardwer tiegħek. Bootdisk "
"personalizzata\n"
@@ -5761,22 +5830,22 @@ msgstr ""
"ikun\n"
"iĆŒjed faċli tirkupra minn problemi serji.\n"
"\n"
-"Jekk tixtieq toħloq bootdisk għas-sistema tiegħek, daħħal floppy fl-ewwel \n"
-"drive u agħfas OK."
+"Jekk tixtieq toħloq bootdisk għas-sistema tiegħek, daħħal flopi fl-ewwel \n"
+"drajv u agħfas OK."
-#: ../../install_steps_interactive.pm_.c:1194
+#: ../../install_steps_interactive.pm_.c:1179
msgid "First floppy drive"
-msgstr "Floppy drive ewlieni"
+msgstr "Drajv ewlieni tal-flopi"
-#: ../../install_steps_interactive.pm_.c:1195
+#: ../../install_steps_interactive.pm_.c:1180
msgid "Second floppy drive"
-msgstr "It-tieni floppy drive"
+msgstr "It-tieni drajv tal-flopi"
-#: ../../install_steps_interactive.pm_.c:1196 ../../printerdrake.pm_.c:2277
+#: ../../install_steps_interactive.pm_.c:1181 ../../printerdrake.pm_.c:2470
msgid "Skip"
msgstr "AqbeĆŒ"
-#: ../../install_steps_interactive.pm_.c:1201
+#: ../../install_steps_interactive.pm_.c:1186
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5802,7 +5871,7 @@ msgstr ""
"Tixtieq toħloq bootdisk għas-sistema tiegħek?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1207
+#: ../../install_steps_interactive.pm_.c:1192
msgid ""
"\n"
"\n"
@@ -5813,31 +5882,31 @@ msgstr ""
"\n"
"\n"
"(TWISSIJA! Int qed tuĆŒa XFS bħala l-partizzjoni root.\n"
-"Aktarx ma tistax toħloq bootdisk fuq floppy waħda 1.44MB,\n"
-"għax id-driver tal-XFS huwa kbir ħafna)."
+"Aktarx ma tistax toħloq bootdisk fuq flopi waħda 1.44MB,\n"
+"għax id-drajver tal-XFS huwa kbir ħafna)."
-#: ../../install_steps_interactive.pm_.c:1215
+#: ../../install_steps_interactive.pm_.c:1200
msgid "Sorry, no floppy drive available"
-msgstr "Jiddispjaċini, ebda floppy drive disponibbli"
+msgstr "Jiddispjaċini, ebda drajv flopi disponibbli"
-#: ../../install_steps_interactive.pm_.c:1219
+#: ../../install_steps_interactive.pm_.c:1204
msgid "Choose the floppy drive you want to use to make the bootdisk"
-msgstr "AgÄ§ĆŒel liema floppy drive tixtieq tuĆŒa biex toħloq il-bootdisk"
+msgstr "AgÄ§ĆŒel liema drajv flopi tixtieq tuĆŒa biex toħloq il-bootdisk"
-#: ../../install_steps_interactive.pm_.c:1223
+#: ../../install_steps_interactive.pm_.c:1208
#, c-format
msgid "Insert a floppy in %s"
-msgstr "Daħħal floppy ĥdida f' %s"
+msgstr "Daħħal flopi ĥdida f' %s"
-#: ../../install_steps_interactive.pm_.c:1226
+#: ../../install_steps_interactive.pm_.c:1211
msgid "Creating bootdisk..."
msgstr "Qed tinħoloq diska \"boot\""
-#: ../../install_steps_interactive.pm_.c:1233
+#: ../../install_steps_interactive.pm_.c:1218
msgid "Preparing bootloader..."
msgstr "Qed nipprepara l-bootloader"
-#: ../../install_steps_interactive.pm_.c:1244
+#: ../../install_steps_interactive.pm_.c:1229
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5846,30 +5915,30 @@ msgid ""
msgstr ""
"Jidher li għandek magna \"OldWorld\" jew mhux \n"
"magħrufa. Il-bootloader \"yaboot\" m'hux se jaħdem fuqha. \n"
-"L-installazzoni se tkompli, imma trid tuĆŒa BootX biex \n"
+"L-installazzjoni se tkompli, imma trid tuĆŒa BootX biex \n"
"ittella' l-Linux."
-#: ../../install_steps_interactive.pm_.c:1250
+#: ../../install_steps_interactive.pm_.c:1235
msgid "Do you want to use aboot?"
msgstr "Trid tuĆŒa \"aboot\"?"
-#: ../../install_steps_interactive.pm_.c:1253
+#: ../../install_steps_interactive.pm_.c:1238
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
msgstr ""
"Problema fl-installazzjoni ta' aboot.\n"
-"trid tipprova timponi l-installazzoni anke jekk tħassar l-ewwel partizzjoni?"
+"trid tipprova timponi l-installazzjoni anke jekk tħassar l-ewwel partizzjoni?"
-#: ../../install_steps_interactive.pm_.c:1260
+#: ../../install_steps_interactive.pm_.c:1245
msgid "Installing bootloader"
msgstr "Qed ninstalla l-bootloader"
-#: ../../install_steps_interactive.pm_.c:1266
+#: ../../install_steps_interactive.pm_.c:1251
msgid "Installation of bootloader failed. The following error occured:"
msgstr "L-installazzjoni tal-bootloader falla. Dan kien il-messaÄĄÄĄ:"
-#: ../../install_steps_interactive.pm_.c:1274
+#: ../../install_steps_interactive.pm_.c:1259
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -5882,22 +5951,22 @@ msgstr ""
"Għandek mnejn trid tbiddel is-setings tal-Open Firmware u tbiddel l-\n"
"apparat tal-boot biex jiffunzjona l-bootloader. Jekk ma tixtieqx tara\n"
"l-prompt tal-bootloader meta tirristartja, ĆŒomm Command-Option-O-F \n"
-"waqt ir-reboot u daħħal:\n"
+"waqt ir-ristartjar u daħħal:\n"
" setenv boot-device %s,\\\\:tbxi\n"
-" Imbgħad ittajpja: shut-down\n"
+" Imbagħad ittajpja: shut-down\n"
"Meta jerĥa' jitla' għandek tara l-prompt tal-bootloader."
-#: ../../install_steps_interactive.pm_.c:1308
+#: ../../install_steps_interactive.pm_.c:1293
#: ../../standalone/drakautoinst_.c:79
#, c-format
msgid "Insert a blank floppy in drive %s"
-msgstr "Daħħal floppy vojta' fi drive %s"
+msgstr "Daħħal flopi vojta fid-drajv %s"
-#: ../../install_steps_interactive.pm_.c:1312
+#: ../../install_steps_interactive.pm_.c:1297
msgid "Creating auto install floppy..."
-msgstr "Qed jinħoloq floppy awto-installazzjoni"
+msgstr "Qed jinħoloq flopi awto-installazzjoni"
-#: ../../install_steps_interactive.pm_.c:1323
+#: ../../install_steps_interactive.pm_.c:1308
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -5907,7 +5976,7 @@ msgstr ""
"\n"
"Trid toħroĥ issa?"
-#: ../../install_steps_interactive.pm_.c:1334
+#: ../../install_steps_interactive.pm_.c:1319
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
@@ -5926,7 +5995,7 @@ msgid ""
"install chapter of the Official Mandrake Linux User's Guide."
msgstr ""
"Prosit! L-installazzjoni issa lesta.\n"
-"Neħħi l-floppy/CD u agħfas Enter biex tirristartja.\n"
+"Neħħi l-flopi/CD u agħfas Enter biex tirristartja.\n"
"\n"
"\n"
"Għal informazzjoni dwar aÄĄÄĄornamenti li saru għal din il-verĆŒjoni ta' "
@@ -5941,15 +6010,15 @@ msgstr ""
"\" \n"
"fl-Official Mandrake Linux User's Guide."
-#: ../../install_steps_interactive.pm_.c:1347
+#: ../../install_steps_interactive.pm_.c:1332
msgid "http://www.mandrakelinux.com/en/90errata.php3"
msgstr "http://www.mandrakelinux.com/en/90errata.php3"
-#: ../../install_steps_interactive.pm_.c:1352
+#: ../../install_steps_interactive.pm_.c:1337
msgid "Generate auto install floppy"
-msgstr "Oħloq floppy awto-installa"
+msgstr "Oħloq flopi awto-installa"
-#: ../../install_steps_interactive.pm_.c:1354
+#: ../../install_steps_interactive.pm_.c:1339
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -5963,15 +6032,15 @@ msgstr ""
"\n"
"Forsi tippreferi tuĆŒa \"replay\" tal-installazzjoni.\n"
-#: ../../install_steps_interactive.pm_.c:1359
+#: ../../install_steps_interactive.pm_.c:1344
msgid "Automated"
msgstr "Awtomatizzata"
-#: ../../install_steps_interactive.pm_.c:1359
+#: ../../install_steps_interactive.pm_.c:1344
msgid "Replay"
msgstr "Replay"
-#: ../../install_steps_interactive.pm_.c:1362
+#: ../../install_steps_interactive.pm_.c:1347
msgid "Save packages selection"
msgstr "Ikteb l-għaĆŒla ta' pakketti"
@@ -5980,7 +6049,8 @@ msgstr "Ikteb l-għaĆŒla ta' pakketti"
msgid "Mandrake Linux Installation %s"
msgstr "Installazzjoni Mandrake Linux %s"
-#: ../../install_steps_newt.pm_.c:34
+#. -PO This string must fit in a 80-char wide text screen
+#: ../../install_steps_newt.pm_.c:35
msgid ""
" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
msgstr ""
@@ -5998,22 +6068,22 @@ msgstr "consolehelper nieqes"
msgid "Choose a file"
msgstr "AgÄ§ĆŒel fajl"
-#: ../../interactive.pm_.c:317
+#: ../../interactive.pm_.c:320
msgid "Advanced"
msgstr "Avvanzat"
-#: ../../interactive.pm_.c:318
+#: ../../interactive.pm_.c:321
msgid "Basic"
msgstr "BaĆŒiku"
-#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:155
-#: ../../printerdrake.pm_.c:1990
+#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:158
+#: ../../printerdrake.pm_.c:2124
msgid "<- Previous"
msgstr "<- Ta' qabel"
#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
-#: ../../standalone/drakbackup_.c:3464 ../../standalone/drakbackup_.c:3491
-#: ../../standalone/drakbackup_.c:3517
+#: ../../standalone/drakbackup_.c:4112 ../../standalone/drakbackup_.c:4139
+#: ../../standalone/drakbackup_.c:4169 ../../standalone/drakbackup_.c:4195
msgid "Next"
msgstr "Li jmiss"
@@ -6051,7 +6121,7 @@ msgstr "Trid tikklikkja din il-buttuna?"
#: ../../interactive/stdio.pm_.c:105
msgid " enter `void' for void entry"
-msgstr "daħħal `void' għal element vojt"
+msgstr "daħħal \"void\" għal element vojt"
#: ../../interactive/stdio.pm_.c:105
#, c-format
@@ -6084,377 +6154,377 @@ msgstr ""
#: ../../interactive/stdio.pm_.c:146
msgid "Re-submit"
-msgstr "ErÄĄa' sottometti"
+msgstr "ErÄĄa' ssottometti"
-#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:152 ../../keyboard.pm_.c:187
msgid "Czech (QWERTZ)"
msgstr "Ċekk (QWERTZ)"
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:153 ../../keyboard.pm_.c:189
msgid "German"
msgstr "Ä ermaniĆŒ"
-#: ../../keyboard.pm_.c:175
+#: ../../keyboard.pm_.c:154
msgid "Dvorak"
msgstr "Dvorak"
-#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:218
+#: ../../keyboard.pm_.c:155 ../../keyboard.pm_.c:197
msgid "Spanish"
msgstr "Spanjol"
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:156 ../../keyboard.pm_.c:198
msgid "Finnish"
msgstr "FinlandiĆŒ"
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:220
+#: ../../keyboard.pm_.c:157 ../../keyboard.pm_.c:199
msgid "French"
msgstr "FranċiĆŒ"
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:158 ../../keyboard.pm_.c:231
msgid "Norwegian"
msgstr "NorveÄĄiĆŒ"
-#: ../../keyboard.pm_.c:180
+#: ../../keyboard.pm_.c:159
msgid "Polish"
msgstr "Pollakk"
-#: ../../keyboard.pm_.c:181 ../../keyboard.pm_.c:260
+#: ../../keyboard.pm_.c:160 ../../keyboard.pm_.c:239
msgid "Russian"
msgstr "Russu"
-#: ../../keyboard.pm_.c:183 ../../keyboard.pm_.c:262
+#: ../../keyboard.pm_.c:162 ../../keyboard.pm_.c:241
msgid "Swedish"
msgstr "SvediĆŒ"
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:278
+#: ../../keyboard.pm_.c:163 ../../keyboard.pm_.c:257
msgid "UK keyboard"
msgstr "Tastiera UK"
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:279
+#: ../../keyboard.pm_.c:164 ../../keyboard.pm_.c:258
msgid "US keyboard"
msgstr "Tastiera US"
-#: ../../keyboard.pm_.c:187
+#: ../../keyboard.pm_.c:166
msgid "Albanian"
msgstr "AlbaniĆŒ"
-#: ../../keyboard.pm_.c:188
+#: ../../keyboard.pm_.c:167
msgid "Armenian (old)"
msgstr "Armen (antik)"
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:168
msgid "Armenian (typewriter)"
msgstr "Armen (tajprajter)"
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:169
msgid "Armenian (phonetic)"
msgstr "Armen (fonetiku)"
-#: ../../keyboard.pm_.c:195
+#: ../../keyboard.pm_.c:174
msgid "Azerbaidjani (latin)"
msgstr "AĆŒeri (latin)"
-#: ../../keyboard.pm_.c:197
+#: ../../keyboard.pm_.c:176
msgid "Belgian"
msgstr "BelÄĄjan"
-#: ../../keyboard.pm_.c:198
+#: ../../keyboard.pm_.c:177
#, fuzzy
msgid "Bengali"
msgstr "ħaddem"
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:178
msgid "Bulgarian (phonetic)"
msgstr "Bulgaru (fonetiku)"
-#: ../../keyboard.pm_.c:200
+#: ../../keyboard.pm_.c:179
msgid "Bulgarian (BDS)"
msgstr "Bulgaru (BDS)"
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:180
msgid "Brazilian (ABNT-2)"
msgstr "BraĆŒiljan (ABNT-2)"
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:183
#, fuzzy
msgid "Bosnian"
msgstr "Estonjan"
-#: ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:184
msgid "Belarusian"
msgstr "Bjelorussu"
-#: ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:185
msgid "Swiss (German layout)"
msgstr "Svizzeru (tqassim Ä ermaniĆŒ)"
-#: ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:186
msgid "Swiss (French layout)"
msgstr "Svizzeru (tqassim FranċiĆŒ)"
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:188
msgid "Czech (QWERTY)"
msgstr "Ċekk (QWERTY)"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:190
msgid "German (no dead keys)"
msgstr "Ä ermaniĆŒ (bla deadkeys)"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:191
msgid "Devanagari"
msgstr ""
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:192
msgid "Danish"
msgstr "DaniĆŒ"
-#: ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:193
msgid "Dvorak (US)"
msgstr "Dvorak (US)"
-#: ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:194
msgid "Dvorak (Norwegian)"
msgstr "Dvorak (NorveÄĄiĆŒ)"
-#: ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:195
msgid "Dvorak (Swedish)"
msgstr "Dvorak (SvediĆŒ)"
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:196
msgid "Estonian"
msgstr "Estonjan"
-#: ../../keyboard.pm_.c:221
+#: ../../keyboard.pm_.c:200
msgid "Georgian (\"Russian\" layout)"
msgstr "Ä orÄĄjan (tqassim \"Russu\")"
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:201
msgid "Georgian (\"Latin\" layout)"
msgstr "Ä orÄĄjan (tqassim \"Latin\")"
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:202
msgid "Greek"
msgstr "Grieg"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:203
msgid "Gujarati"
msgstr ""
-#: ../../keyboard.pm_.c:225
+#: ../../keyboard.pm_.c:204
msgid "Gurmukhi"
msgstr ""
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:205
msgid "Hungarian"
msgstr "UngeriĆŒ"
-#: ../../keyboard.pm_.c:227
+#: ../../keyboard.pm_.c:206
msgid "Croatian"
msgstr "Kroat"
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:207
msgid "Israeli"
msgstr "IĆŒraeli"
-#: ../../keyboard.pm_.c:229
+#: ../../keyboard.pm_.c:208
msgid "Israeli (Phonetic)"
msgstr "IĆŒraeli (fonetiku)"
-#: ../../keyboard.pm_.c:230
+#: ../../keyboard.pm_.c:209
msgid "Iranian"
msgstr "Iranjan"
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:210
msgid "Icelandic"
msgstr "IslandiĆŒ"
-#: ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:211
msgid "Italian"
msgstr "Taljan"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:212
msgid "Inuktitut"
msgstr ""
-#: ../../keyboard.pm_.c:234
+#: ../../keyboard.pm_.c:213
msgid "Japanese 106 keys"
msgstr "Ä appuniĆŒ 106 buttuna"
-#: ../../keyboard.pm_.c:237
+#: ../../keyboard.pm_.c:216
msgid "Korean keyboard"
msgstr "Korean"
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:217
msgid "Latin American"
msgstr "Latin Amerikan"
-#: ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:218
#, fuzzy
msgid "Laotian"
msgstr "Latvjan"
-#: ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:219
msgid "Lithuanian AZERTY (old)"
msgstr "Litwan AZERTY (antik)"
-#: ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:221
msgid "Lithuanian AZERTY (new)"
msgstr "Litwan AZERTY (ÄĄdid)"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:222
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Litwan QWERTY \"number row\""
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:223
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "Litwan QWERTY fonetiku"
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:224
msgid "Latvian"
msgstr "Latvjan"
-#: ../../keyboard.pm_.c:246
+#: ../../keyboard.pm_.c:225
msgid "Macedonian"
msgstr "Maċedonjan"
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:226
msgid "Myanmar (Burmese)"
msgstr ""
-#: ../../keyboard.pm_.c:248
+#: ../../keyboard.pm_.c:227
#, fuzzy
msgid "Mongolian (cyrillic)"
msgstr "Serb (ċirilliku)"
-#: ../../keyboard.pm_.c:249
+#: ../../keyboard.pm_.c:228
msgid "Maltese (UK)"
msgstr ""
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:229
msgid "Maltese (US)"
msgstr ""
-#: ../../keyboard.pm_.c:251
+#: ../../keyboard.pm_.c:230
msgid "Dutch"
msgstr "OlandiĆŒ"
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:232
msgid "Polish (qwerty layout)"
msgstr "Pollakk (qwerty)"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:233
msgid "Polish (qwertz layout)"
msgstr "Pollakk (qwertz)"
-#: ../../keyboard.pm_.c:255
+#: ../../keyboard.pm_.c:234
msgid "Portuguese"
msgstr "PortugiĆŒ"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:235
msgid "Canadian (Quebec)"
msgstr "KanadiĆŒ (Quebec)"
-#: ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:237
msgid "Romanian (qwertz)"
msgstr "Rumen (qwertz)"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:238
msgid "Romanian (qwerty)"
msgstr "Rumen (qwerty)"
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:240
msgid "Russian (Yawerty)"
msgstr "Russu (Yawerty)"
-#: ../../keyboard.pm_.c:263
+#: ../../keyboard.pm_.c:242
msgid "Slovenian"
msgstr "Sloven"
-#: ../../keyboard.pm_.c:264
+#: ../../keyboard.pm_.c:243
msgid "Slovakian (QWERTZ)"
msgstr "Slovakk (QWERTZ)"
-#: ../../keyboard.pm_.c:265
+#: ../../keyboard.pm_.c:244
msgid "Slovakian (QWERTY)"
msgstr "Slovakk (QWERTY)"
-#: ../../keyboard.pm_.c:267
+#: ../../keyboard.pm_.c:246
msgid "Serbian (cyrillic)"
msgstr "Serb (ċirilliku)"
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:248
msgid "Tamil (Unicode)"
msgstr "Tamil (Unicode)"
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:249
msgid "Tamil (TSCII)"
msgstr "Tamil (TSCII)"
-#: ../../keyboard.pm_.c:271
+#: ../../keyboard.pm_.c:250
msgid "Thai keyboard"
msgstr "Thai"
-#: ../../keyboard.pm_.c:273
+#: ../../keyboard.pm_.c:252
msgid "Tajik keyboard"
msgstr "TaÄĄik"
-#: ../../keyboard.pm_.c:274
+#: ../../keyboard.pm_.c:253
msgid "Turkish (traditional \"F\" model)"
msgstr "Tork (mudell tradizzjonali \"F\")"
-#: ../../keyboard.pm_.c:275
+#: ../../keyboard.pm_.c:254
msgid "Turkish (modern \"Q\" model)"
msgstr "Tork (mudell modern \"Q\")"
-#: ../../keyboard.pm_.c:277
+#: ../../keyboard.pm_.c:256
msgid "Ukrainian"
msgstr "Ukranjan"
-#: ../../keyboard.pm_.c:280
+#: ../../keyboard.pm_.c:259
msgid "US keyboard (international)"
msgstr "Tastiera US (internazzjonali)"
-#: ../../keyboard.pm_.c:281
+#: ../../keyboard.pm_.c:260
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "VjetnamiĆŒ qwerty \"numeric row\""
-#: ../../keyboard.pm_.c:282
+#: ../../keyboard.pm_.c:261
msgid "Yugoslavian (latin)"
msgstr "Jugoslav (latin)"
-#: ../../keyboard.pm_.c:289
+#: ../../keyboard.pm_.c:268
msgid "Right Alt key"
msgstr "Buttuna Alt leminija"
-#: ../../keyboard.pm_.c:290
+#: ../../keyboard.pm_.c:269
msgid "Both Shift keys simultaneously"
msgstr "IĆŒ-ĆŒewÄĄ buttuni \"shift\" flimkien"
-#: ../../keyboard.pm_.c:291
+#: ../../keyboard.pm_.c:270
msgid "Control and Shift keys simultaneously"
msgstr "Ctrl u Shift flimkien"
-#: ../../keyboard.pm_.c:292
+#: ../../keyboard.pm_.c:271
msgid "CapsLock key"
msgstr "Buttuna CapsLock"
-#: ../../keyboard.pm_.c:293
+#: ../../keyboard.pm_.c:272
msgid "Ctrl and Alt keys simultaneously"
msgstr "Ctrl u Alt flimkien"
-#: ../../keyboard.pm_.c:294
+#: ../../keyboard.pm_.c:273
msgid "Alt and Shift keys simultaneously"
msgstr "Alt u Shift flimkien"
-#: ../../keyboard.pm_.c:295
+#: ../../keyboard.pm_.c:274
msgid "\"Menu\" key"
msgstr "Buttuna \"Menu\""
-#: ../../keyboard.pm_.c:296
+#: ../../keyboard.pm_.c:275
msgid "Left \"Windows\" key"
msgstr "Buttuna \"Windows\" tax-xellug"
-#: ../../keyboard.pm_.c:297
+#: ../../keyboard.pm_.c:276
msgid "Right \"Windows\" key"
msgstr "Buttuna \"Windows\" tal-lemin"
@@ -6512,11 +6582,11 @@ msgstr "Maws bir-rota ÄĄeneriku PS2"
msgid "GlidePoint"
msgstr "GlidePoint"
-#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:63
+#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:65
msgid "Kensington Thinking Mouse"
msgstr "Kensington Thinking Mouse"
-#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:59
+#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:61
msgid "Genius NetMouse"
msgstr "Genius NetMouse"
@@ -6524,115 +6594,127 @@ msgstr "Genius NetMouse"
msgid "Genius NetScroll"
msgstr "Genius NetScroll"
-#: ../../mouse.pm_.c:43 ../../mouse.pm_.c:68
+#: ../../mouse.pm_.c:39 ../../mouse.pm_.c:48
+#, fuzzy
+msgid "Microsoft Explorer"
+msgstr "Microsoft IntelliMouse"
+
+#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:70
msgid "1 button"
msgstr "buttuna waħda"
-#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:51
+#: ../../mouse.pm_.c:45 ../../mouse.pm_.c:53
msgid "Generic 2 Button Mouse"
msgstr "Ä eneriku 2 buttuni"
-#: ../../mouse.pm_.c:46
+#: ../../mouse.pm_.c:47
msgid "Wheel"
msgstr "Rota"
-#: ../../mouse.pm_.c:49
+#: ../../mouse.pm_.c:51
msgid "serial"
-msgstr "serjal"
+msgstr "serjali"
-#: ../../mouse.pm_.c:52
+#: ../../mouse.pm_.c:54
msgid "Generic 3 Button Mouse"
msgstr "Ä eneriku 3 buttuni"
-#: ../../mouse.pm_.c:53
+#: ../../mouse.pm_.c:55
msgid "Microsoft IntelliMouse"
msgstr "Microsoft IntelliMouse"
-#: ../../mouse.pm_.c:54
+#: ../../mouse.pm_.c:56
msgid "Logitech MouseMan"
msgstr "Logitech MouseMan"
-#: ../../mouse.pm_.c:55
+#: ../../mouse.pm_.c:57
msgid "Mouse Systems"
msgstr "Mouse Systems"
-#: ../../mouse.pm_.c:57
+#: ../../mouse.pm_.c:59
msgid "Logitech CC Series"
msgstr "Logitech CC Series"
-#: ../../mouse.pm_.c:58
+#: ../../mouse.pm_.c:60
msgid "Logitech MouseMan+/FirstMouse+"
msgstr "Logitech MouseMan+/FirstMouse+"
-#: ../../mouse.pm_.c:60
+#: ../../mouse.pm_.c:62
msgid "MM Series"
msgstr "MM Series"
-#: ../../mouse.pm_.c:61
+#: ../../mouse.pm_.c:63
msgid "MM HitTablet"
msgstr "MM HitTablet"
-#: ../../mouse.pm_.c:62
+#: ../../mouse.pm_.c:64
msgid "Logitech Mouse (serial, old C7 type)"
msgstr "Maws Logitech (serjali, tip C7 antik)"
-#: ../../mouse.pm_.c:66
+#: ../../mouse.pm_.c:68
msgid "busmouse"
msgstr "busmouse"
-#: ../../mouse.pm_.c:69
+#: ../../mouse.pm_.c:71
msgid "2 buttons"
-msgstr "2 buttoni"
+msgstr "2 buttuni"
-#: ../../mouse.pm_.c:70
+#: ../../mouse.pm_.c:72
msgid "3 buttons"
-msgstr "3 buttoni"
+msgstr "3 buttuni"
-#: ../../mouse.pm_.c:73
+#: ../../mouse.pm_.c:75
msgid "none"
msgstr "ebda"
-#: ../../mouse.pm_.c:75
+#: ../../mouse.pm_.c:77
msgid "No mouse"
msgstr "Ebda maws"
-#: ../../mouse.pm_.c:445
+#: ../../mouse.pm_.c:482
msgid "Please test the mouse"
msgstr "Jekk jogħĥbok ittestja l-maws"
-#: ../../mouse.pm_.c:446
+#: ../../mouse.pm_.c:483
msgid "To activate the mouse,"
msgstr "Biex tħaddem il-maws"
-#: ../../mouse.pm_.c:447
+#: ../../mouse.pm_.c:484
msgid "MOVE YOUR WHEEL!"
msgstr "MEXXI R-ROTA!"
-#: ../../my_gtk.pm_.c:156
+#: ../../my_gtk.pm_.c:64
+#, fuzzy
+msgid "-adobe-utopia-regular-r-*-*-25-*-*-*-p-*-iso8859-*,*-r-*"
+msgstr ""
+"-*-times new roman-bold-r-normal--17-*-*-*-p-*-iso8859-3,-*-lucidux serif-*-"
+"r-normal--17-*-*-*-p-*-iso8859-3,*-r-*"
+
+#: ../../my_gtk.pm_.c:159
msgid "Finish"
msgstr "Spiċċa"
-#: ../../my_gtk.pm_.c:156 ../../printerdrake.pm_.c:1992
+#: ../../my_gtk.pm_.c:159 ../../printerdrake.pm_.c:2126
msgid "Next ->"
msgstr "Li jmiss ->"
-#: ../../my_gtk.pm_.c:284
+#: ../../my_gtk.pm_.c:287
msgid "Is this correct?"
msgstr "Dan tajjeb?"
-#: ../../my_gtk.pm_.c:356 ../../services.pm_.c:222
+#: ../../my_gtk.pm_.c:359 ../../services.pm_.c:222
msgid "Info"
msgstr "Info"
-#: ../../my_gtk.pm_.c:377
+#: ../../my_gtk.pm_.c:380
msgid "Expand Tree"
msgstr "Espandi friegħi"
-#: ../../my_gtk.pm_.c:378
+#: ../../my_gtk.pm_.c:381
msgid "Collapse Tree"
msgstr "Agħlaq friegħi"
-#: ../../my_gtk.pm_.c:379
+#: ../../my_gtk.pm_.c:382
msgid "Toggle between flat and group sorted"
msgstr "Aqleb bejn lista sempliċi jew kategorizzata"
@@ -6670,6 +6752,74 @@ msgstr "uĆŒa pppoe"
msgid "use pptp"
msgstr "uĆŒa pptp"
+#: ../../network/drakfirewall.pm_.c:12
+#, fuzzy
+msgid "Web Server"
+msgstr "Server"
+
+#: ../../network/drakfirewall.pm_.c:17
+#, fuzzy
+msgid "Domain Name Server"
+msgstr "Risolvitur ta' ismijiet ta' dominji"
+
+#: ../../network/drakfirewall.pm_.c:32
+#, fuzzy
+msgid "Mail Server"
+msgstr "Ippermetti server"
+
+#: ../../network/drakfirewall.pm_.c:37
+#, fuzzy
+msgid "POP and IMAP Server"
+msgstr "Server LDAP"
+
+#: ../../network/drakfirewall.pm_.c:111
+#, fuzzy
+msgid "No network card"
+msgstr "ebda kard tal-internet ma nstabet"
+
+#: ../../network/drakfirewall.pm_.c:129
+#, fuzzy
+msgid ""
+"drakfirewall configurator\n"
+"\n"
+"This configures a personal firewall for this Mandrake Linux machine.\n"
+"For a powerful dedicated firewall solution, please look to the\n"
+"specialized MandrakeSecurity Firewall distribution."
+msgstr ""
+"Konfiguratur tinyfirewall\n"
+"\n"
+"Dan jikkonfigura firewall personali għal din is-sistema Mandrake Linux.\n"
+"Għal kompjuter firewall dedikat, jekk jogħĥbok ara d-distribuzzjoni\n"
+"speċjalizzata MandrakeSecurity Firewall."
+
+#: ../../network/drakfirewall.pm_.c:147
+msgid "Which services would you like to allow the Internet to connect to?"
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:148
+msgid ""
+"You can enter miscellaneous ports. \n"
+"Valid examples are: 139/tcp 139/udp.\n"
+"Have a look at /etc/services for information."
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:154
+#, c-format
+msgid ""
+"Invalid port given: %s.\n"
+"The proper format is \"port/tcp\" or \"port/udp\", \n"
+"where port is between 1 and 65535."
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:162
+msgid "Everything (no firewall)"
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:164
+#, fuzzy
+msgid "Other ports"
+msgstr "Ittestja ports"
+
#: ../../network/ethernet.pm_.c:37
msgid ""
"Which dhcp client do you want to use?\n"
@@ -6684,9 +6834,9 @@ msgid ""
"I cannot set up this connection type."
msgstr ""
"Ebda kard tan-network ethernet ma nstabet fuq il-kompjuter.\n"
-"Ma nistax nissettja dan it-tip ta' kollegament minngħajrha."
+"Ma nistax nissettja dan it-tip ta' kollegament mingħajrha."
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:247
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:240
msgid "Choose the network interface"
msgstr "AgÄ§ĆŒel l-interfaċċja tan-network"
@@ -6699,9 +6849,9 @@ msgstr ""
#: ../../network/ethernet.pm_.c:178
msgid "no network card found"
-msgstr "ebda kard tal-internet ma stabet"
+msgstr "ebda kard tal-internet ma nstabet"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:366
msgid "Configuring network"
msgstr "Konfigurazzjoni tan-network"
@@ -6717,7 +6867,7 @@ msgstr ""
"tal-kompjuter tiegħek irid ikun wieħed sħiħ, bħal\n"
"\"anna.finanzi.ditta.com\""
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:370
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:371
msgid "Host name"
msgstr "Isem tal-kompjuter"
@@ -6862,7 +7012,7 @@ msgstr ""
#: ../../network/isdn.pm_.c:244
msgid "No ISDN PCI card found. Please select one on the next screen."
-msgstr "Ebda kard ISDN PCI ma stabet. AgÄ§ĆŒel waħda fl-iskrin li jmiss."
+msgstr "Ebda kard ISDN PCI ma nstabet. AgÄ§ĆŒel waħda fl-iskrin li jmiss."
#: ../../network/modem.pm_.c:39
msgid "Please choose which serial port your modem is connected to."
@@ -6894,7 +7044,7 @@ msgstr "PAP"
#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:625
msgid "Script-based"
-msgstr "IbbaĆŒat fuq scripts"
+msgstr "IbbaĆŒat fuq skritti"
#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:625
msgid "Terminal-based"
@@ -6918,7 +7068,7 @@ msgid ""
"You can disconnect or reconfigure your connection."
msgstr ""
"\n"
-"Tista taqta' minn ma' l-internet jew tirrikonfigura l-konnessjoni."
+"Tista' taqta' minn ma' l-internet jew tirrikonfigura l-konnessjoni."
#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
msgid ""
@@ -6926,7 +7076,7 @@ msgid ""
"You can reconfigure your connection."
msgstr ""
"\n"
-"Tista tirrikonfigura l-konnessjoni."
+"Tista' tirrikonfigura l-konnessjoni."
#: ../../network/netconnect.pm_.c:33
msgid "You are currently connected to internet."
@@ -6938,7 +7088,7 @@ msgid ""
"You can connect to Internet or reconfigure your connection."
msgstr ""
"\n"
-"Tista taqbad mal-internet jew tirrikonfigura l-konnessjoni."
+"Tista' taqbad mal-internet jew tirrikonfigura l-konnessjoni."
#: ../../network/netconnect.pm_.c:36
msgid "You are not currently connected to Internet."
@@ -6997,7 +7147,7 @@ msgid ""
"Internet & Network connection.\n"
msgstr ""
"Peress li qed tagħmel installazzjoni minn fuq in-network, in-\n"
-"network diÄĄĂ  konfigurata.\n"
+"network diÄĄĂ  kkonfigurata.\n"
"Agħfas Ok biex iĆŒĆŒomm din il-konfigurazzjoni, jew ikkanċella biex\n"
"tbiddel il-konfigurazzjoni tal-internet u network.\n"
@@ -7021,13 +7171,13 @@ msgstr "AgÄ§ĆŒel profil li trid tissettja"
msgid "Use auto detection"
msgstr "UĆŒa għarfien awtomatiku (auto-detect)"
-#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2930
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:3151
#: ../../standalone/drakconnect_.c:274 ../../standalone/drakconnect_.c:277
#: ../../standalone/drakfloppy_.c:145
msgid "Expert Mode"
msgstr "ModalitĂ  esperti"
-#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:283
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:386
msgid "Detecting devices..."
msgstr "Qed infittex l-apparat..."
@@ -7084,7 +7234,7 @@ msgid ""
"Choose the one you want to use.\n"
"\n"
msgstr ""
-"Int ikkonfigurajet diversi modi biex taqbad ma' l-internet.\n"
+"Int ikkonfigurajt diversi modi biex taqbad ma' l-internet.\n"
"Liema minnhom trid tuĆŒa?\n"
"\n"
@@ -7130,8 +7280,8 @@ msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
msgstr ""
-"Wara li jkun lest, aħna nirrikkmandaw li tirristartja s-sistema X biex "
-"tevita problemi ta' bdil fl-isem tal-kompjuter."
+"Wara li jkun lest, aħna nirrikmandaw li tirristartja s-sistema X biex tevita "
+"problemi ta' bdil fl-isem tal-kompjuter."
#: ../../network/netconnect.pm_.c:270
msgid ""
@@ -7172,7 +7322,7 @@ msgstr "Qed nikkonfigura apparat tan-network %s"
#: ../../network/network.pm_.c:310
#, c-format
msgid " (driver %s)"
-msgstr " (driver %s)"
+msgstr " (drajver %s)"
#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:231
#: ../../standalone/drakconnect_.c:467
@@ -7195,11 +7345,11 @@ msgstr "IP Awtomatiku"
msgid "Start at boot"
msgstr "Tella' fil-bidu"
-#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:753
+#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:860
msgid "IP address should be in format 1.2.3.4"
msgstr "L-indirizz IP irid ikun fil-format \"1.2.3.4\""
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:367
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -7210,43 +7360,55 @@ msgstr ""
"Dan irid ikun isem sħiħ, bħal \"joe.linux.org.mt\".\n"
"Tista' wkoll iddaħħal l-indirizz IP tal-gateway, jekk għandek wieħed."
-#: ../../network/network.pm_.c:371
+#: ../../network/network.pm_.c:372
msgid "DNS server"
msgstr "Server DNS"
-#: ../../network/network.pm_.c:372
+#: ../../network/network.pm_.c:373
#, c-format
msgid "Gateway (e.g. %s)"
msgstr "Gateway (eĆŒ. %s)"
-#: ../../network/network.pm_.c:374
+#: ../../network/network.pm_.c:375
msgid "Gateway device"
msgstr "Apparat gateway"
-#: ../../network/network.pm_.c:386
+#: ../../network/network.pm_.c:387
msgid "Proxies configuration"
msgstr "Konfigurazzjoni tal-proxies"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:388
msgid "HTTP proxy"
msgstr "Proxy HTTP"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:389
msgid "FTP proxy"
msgstr "Proxy FTP"
-#: ../../network/network.pm_.c:389
+#: ../../network/network.pm_.c:390
msgid "Track network card id (useful for laptops)"
msgstr "ƻomm kont tal-ID tal-kard tan-network (utli fuq laptops)"
-#: ../../network/network.pm_.c:392
+#: ../../network/network.pm_.c:393
msgid "Proxy should be http://..."
msgstr "Proxy mistenni jibda' http://"
-#: ../../network/network.pm_.c:393
+#: ../../network/network.pm_.c:394
msgid "Proxy should be ftp://..."
msgstr "Proxy mistenni jibda' ftp://"
+#: ../../network/shorewall.pm_.c:24
+msgid "Firewalling configuration detected!"
+msgstr "Instabet konfigurazzjoni ta' firewall!"
+
+#: ../../network/shorewall.pm_.c:25
+msgid ""
+"Warning! An existing firewalling configuration has been detected. You may "
+"need some manual fix after installation."
+msgstr ""
+"Twissija: Instabet konfigurazzjoni eĆŒistenti ta' firewall. Għandek mnejn "
+"tkun trid tirranÄĄaha manwalment wara l-installazzjoni."
+
#: ../../network/tools.pm_.c:41
msgid "Internet configuration"
msgstr "Konfigurazzjoni ta' l-internet"
@@ -7352,15 +7514,15 @@ msgstr "Password tal-kont"
msgid "United Kingdom"
msgstr "Renju Unit"
-#: ../../partition_table.pm_.c:606
+#: ../../partition_table.pm_.c:602
msgid "mount failed: "
msgstr "immuntar falla: "
-#: ../../partition_table.pm_.c:670
+#: ../../partition_table.pm_.c:666
msgid "Extended partition not supported on this platform"
msgstr "Partizzjoni estiĆŒa m'hix sapportita fuq din il-pjattaforma"
-#: ../../partition_table.pm_.c:688
+#: ../../partition_table.pm_.c:684
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
@@ -7370,21 +7532,21 @@ msgstr ""
"L-unika soluzzjoni hija li tmexxi l-partizzjoni primarja sabiex din it-toqba "
"tkun maÄĄenb il-partizzjoni estiĆŒa"
-#: ../../partition_table.pm_.c:778
+#: ../../partition_table.pm_.c:774
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "Restawr minn fajl %s falliet: %s"
-#: ../../partition_table.pm_.c:780
+#: ../../partition_table.pm_.c:776
msgid "Bad backup file"
-msgstr "Fajl ta' backup ħaĆŒin"
+msgstr "Fajl ta' kopja tas-sigurtĂ  ħaĆŒin"
-#: ../../partition_table.pm_.c:802
+#: ../../partition_table.pm_.c:798
#, c-format
msgid "Error writing to file %s"
msgstr "Problema waqt kitba fil-fajl %s"
-#: ../../partition_table/raw.pm_.c:187
+#: ../../partition_table/raw.pm_.c:189
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
@@ -7430,150 +7592,154 @@ msgstr "LPD - Line Printer Daemon"
msgid "PDQ - Print, Don't Queue"
msgstr "PDQ - Printja minngħajr kju"
-#: ../../printer.pm_.c:35 ../../printer.pm_.c:854
+#: ../../printer.pm_.c:34 ../../printer.pm_.c:1125
msgid "CUPS"
msgstr "CUPS"
-#: ../../printer.pm_.c:36
+#: ../../printer.pm_.c:35
msgid "LPRng"
msgstr "LPRng"
-#: ../../printer.pm_.c:37
+#: ../../printer.pm_.c:36
msgid "LPD"
msgstr "LPD"
-#: ../../printer.pm_.c:38
+#: ../../printer.pm_.c:37
msgid "PDQ"
msgstr "PDQ"
-#: ../../printer.pm_.c:50
+#: ../../printer.pm_.c:49
msgid "Local printer"
msgstr "Printer lokali"
-#: ../../printer.pm_.c:51
+#: ../../printer.pm_.c:50
msgid "Remote printer"
msgstr "Printer remot"
-#: ../../printer.pm_.c:52
+#: ../../printer.pm_.c:51
msgid "Printer on remote CUPS server"
msgstr "Printer fuq server CUPS remot"
-#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:776
+#: ../../printer.pm_.c:52 ../../printerdrake.pm_.c:883
msgid "Printer on remote lpd server"
msgstr "Printer fuq server lpd remot"
-#: ../../printer.pm_.c:54
+#: ../../printer.pm_.c:53
msgid "Network printer (TCP/Socket)"
msgstr "Printer tan-network (TCP/socket)"
-#: ../../printer.pm_.c:55
+#: ../../printer.pm_.c:54
msgid "Printer on SMB/Windows 95/98/NT server"
msgstr "Printer fuq SMB/Windows 95/98/NT"
-#: ../../printer.pm_.c:56
+#: ../../printer.pm_.c:55
msgid "Printer on NetWare server"
msgstr "Printer fuq server NetWare"
-#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:780
+#: ../../printer.pm_.c:56 ../../printerdrake.pm_.c:887
msgid "Enter a printer device URI"
msgstr "Daħħal URI tal-printer"
-#: ../../printer.pm_.c:58
+#: ../../printer.pm_.c:57
msgid "Pipe job into a command"
msgstr "Għaddi x-xogħol lill kmand"
-#: ../../printer.pm_.c:487 ../../printer.pm_.c:678 ../../printer.pm_.c:1000
-#: ../../printerdrake.pm_.c:2070 ../../printerdrake.pm_.c:3189
+#: ../../printer.pm_.c:324 ../../printer.pm_.c:366 ../../printer.pm_.c:533
+msgid "Unknown Model"
+msgstr "Mudell mhux magħruf"
+
+#: ../../printer.pm_.c:735 ../../printer.pm_.c:926 ../../printer.pm_.c:1318
+#: ../../printerdrake.pm_.c:2260 ../../printerdrake.pm_.c:3414
msgid "Unknown model"
msgstr "Mudell mhux magħruf"
-#: ../../printer.pm_.c:515
+#: ../../printer.pm_.c:763
msgid "Local Printers"
msgstr "Printers lokali"
-#: ../../printer.pm_.c:517 ../../printer.pm_.c:855
+#: ../../printer.pm_.c:765 ../../printer.pm_.c:1126
msgid "Remote Printers"
msgstr "Printers remoti"
-#: ../../printer.pm_.c:524 ../../printerdrake.pm_.c:301
+#: ../../printer.pm_.c:772 ../../printerdrake.pm_.c:404
#, c-format
msgid " on parallel port \\/*%s"
-msgstr " fuq port parallell \\/*%s"
+msgstr " fuq port parallel \\/*%s"
-#: ../../printer.pm_.c:527 ../../printerdrake.pm_.c:303
+#: ../../printer.pm_.c:775 ../../printerdrake.pm_.c:406
#, c-format
msgid ", USB printer \\/*%s"
msgstr ", printer USB \\/*%s"
-#: ../../printer.pm_.c:532
+#: ../../printer.pm_.c:780
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
-msgstr ", apparat multi-funzjoni fuq port parallell \\/*%s"
+msgstr ", apparat multi-funzjoni fuq port parallel \\/*%s"
-#: ../../printer.pm_.c:535
+#: ../../printer.pm_.c:783
msgid ", multi-function device on USB"
msgstr ", apparat multi-funzjoni fuq USB"
-#: ../../printer.pm_.c:537
+#: ../../printer.pm_.c:785
msgid ", multi-function device on HP JetDirect"
msgstr ", apparat multi-funzjoni fuq HP JetDirect"
-#: ../../printer.pm_.c:539
+#: ../../printer.pm_.c:787
msgid ", multi-function device"
msgstr ", apparat multi-funzjoni"
-#: ../../printer.pm_.c:542
+#: ../../printer.pm_.c:790
#, c-format
msgid ", printing to %s"
msgstr ", qed jipprintja fuq %s"
-#: ../../printer.pm_.c:544
+#: ../../printer.pm_.c:792
#, c-format
msgid " on LPD server \"%s\", printer \"%s\""
msgstr " fuq server LPD \"%s\", printer \"%s\""
-#: ../../printer.pm_.c:546
+#: ../../printer.pm_.c:794
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ", server TCP/IP \"%s\", printer \"%s\""
-#: ../../printer.pm_.c:550
+#: ../../printer.pm_.c:798
#, c-format
msgid " on SMB/Windows server \"%s\", share \"%s\""
msgstr " fuq server Windows \"%s\", share \"%s\""
-#: ../../printer.pm_.c:554
+#: ../../printer.pm_.c:802
#, c-format
msgid " on Novell server \"%s\", printer \"%s\""
msgstr " fuq server Novell \"%s\", printer \"%s\""
-#: ../../printer.pm_.c:556
+#: ../../printer.pm_.c:804
#, c-format
msgid ", using command %s"
msgstr ", bil-kmand %s"
-#: ../../printer.pm_.c:675 ../../printerdrake.pm_.c:1540
+#: ../../printer.pm_.c:923 ../../printerdrake.pm_.c:1656
msgid "Raw printer (No driver)"
-msgstr "Printer dirett (bla driver)"
+msgstr "Printer dirett (bla drajver)"
-#: ../../printer.pm_.c:824
+#: ../../printer.pm_.c:1095
#, c-format
msgid "(on %s)"
msgstr "(fuq %s)"
-#: ../../printer.pm_.c:826
+#: ../../printer.pm_.c:1097
msgid "(on this machine)"
msgstr "(fuq dan il-kompjuter)"
-#: ../../printer.pm_.c:851
+#: ../../printer.pm_.c:1122
#, c-format
msgid "On CUPS server \"%s\""
msgstr "Fuq server CUPS \"%s\""
-#: ../../printer.pm_.c:857 ../../printerdrake.pm_.c:2851
-#: ../../printerdrake.pm_.c:2862 ../../printerdrake.pm_.c:3078
-#: ../../printerdrake.pm_.c:3130 ../../printerdrake.pm_.c:3156
-#: ../../printerdrake.pm_.c:3326 ../../printerdrake.pm_.c:3328
+#: ../../printer.pm_.c:1128 ../../printerdrake.pm_.c:3071
+#: ../../printerdrake.pm_.c:3082 ../../printerdrake.pm_.c:3303
+#: ../../printerdrake.pm_.c:3355 ../../printerdrake.pm_.c:3381
+#: ../../printerdrake.pm_.c:3556 ../../printerdrake.pm_.c:3558
msgid " (Default)"
msgstr " (Impliċitu)"
@@ -7600,11 +7766,11 @@ msgid "Printer auto-detection (Local, TCP/Socket, and SMB printers)"
msgstr ""
"Għarfien awtomatiku tal-printer (printers lokali, TCP/socket u SMB/Windows)"
-#: ../../printerdrake.pm_.c:84 ../../printerdrake.pm_.c:2914
+#: ../../printerdrake.pm_.c:84 ../../printerdrake.pm_.c:3135
msgid "CUPS configuration"
msgstr "Konfigurazzjoni CUPS"
-#: ../../printerdrake.pm_.c:85 ../../printerdrake.pm_.c:2915
+#: ../../printerdrake.pm_.c:85 ../../printerdrake.pm_.c:3136
msgid "Specify CUPS server"
msgstr "Speċifika server CUPS"
@@ -7647,7 +7813,7 @@ msgstr ""
msgid "The IP address should look like 192.168.1.20"
msgstr "L-indirizz IP jidher xi ħaĥa hekk: 192.168.1.20"
-#: ../../printerdrake.pm_.c:95 ../../printerdrake.pm_.c:987
+#: ../../printerdrake.pm_.c:95 ../../printerdrake.pm_.c:1094
msgid "The port number should be an integer!"
msgstr "In-numru tal-port irid ikun sħiħ!"
@@ -7655,7 +7821,7 @@ msgstr "In-numru tal-port irid ikun sħiħ!"
msgid "CUPS server IP"
msgstr "Indirizz IP tas-server CUPS"
-#: ../../printerdrake.pm_.c:103 ../../printerdrake.pm_.c:1007
+#: ../../printerdrake.pm_.c:103 ../../printerdrake.pm_.c:1114
msgid "Port"
msgstr "Port"
@@ -7663,12 +7829,130 @@ msgstr "Port"
msgid "Automatic CUPS configuration"
msgstr "Konfigurazzjoni CUPS awtomatika"
-#: ../../printerdrake.pm_.c:183 ../../printerdrake.pm_.c:192
-#: ../../printerdrake.pm_.c:2897 ../../printerdrake.pm_.c:3017
+#: ../../printerdrake.pm_.c:177 ../../printerdrake.pm_.c:247
+#: ../../printerdrake.pm_.c:1529 ../../printerdrake.pm_.c:1533
+#: ../../printerdrake.pm_.c:1651 ../../printerdrake.pm_.c:2203
+#: ../../printerdrake.pm_.c:2356 ../../printerdrake.pm_.c:2415
+#: ../../printerdrake.pm_.c:2488 ../../printerdrake.pm_.c:2509
+#: ../../printerdrake.pm_.c:2699 ../../printerdrake.pm_.c:2740
+#: ../../printerdrake.pm_.c:2745 ../../printerdrake.pm_.c:2779
+#: ../../printerdrake.pm_.c:2784 ../../printerdrake.pm_.c:2821
+#: ../../printerdrake.pm_.c:2874 ../../printerdrake.pm_.c:2894
+#: ../../printerdrake.pm_.c:2908 ../../printerdrake.pm_.c:2942
+#: ../../printerdrake.pm_.c:2988 ../../printerdrake.pm_.c:3006
+#: ../../printerdrake.pm_.c:3095 ../../printerdrake.pm_.c:3169
+#: ../../printerdrake.pm_.c:3471 ../../printerdrake.pm_.c:3526
+#: ../../printerdrake.pm_.c:3579 ../../standalone/printerdrake_.c:57
+msgid "Printerdrake"
+msgstr "Printerdrake"
+
+#: ../../printerdrake.pm_.c:178
+#, fuzzy
+msgid "Checking your system..."
+msgstr "Qed nirristartja s-sistema ta' printjar..."
+
+#: ../../printerdrake.pm_.c:186
+msgid ""
+"There are no printers found which are directly connected to your machine"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:198
+#, fuzzy
+msgid ""
+"The following printers\n"
+"\n"
+msgstr "Dawn huma l-pakketti li se jiĥu mneħħija"
+
+#: ../../printerdrake.pm_.c:199
+#, fuzzy
+msgid ""
+"The following printer\n"
+"\n"
+msgstr "Dawn huma l-pakketti li se jiĥu mneħħija"
+
+#: ../../printerdrake.pm_.c:201
+msgid ""
+"\n"
+"and one unknown printer are "
+msgstr ""
+
+#: ../../printerdrake.pm_.c:203
+#, c-format
+msgid ""
+"\n"
+"and %d unknown printers are "
+msgstr ""
+
+#: ../../printerdrake.pm_.c:207
+msgid ""
+"\n"
+"are "
+msgstr ""
+
+#: ../../printerdrake.pm_.c:208
+msgid ""
+"\n"
+"is "
+msgstr ""
+
+#: ../../printerdrake.pm_.c:210
+#, fuzzy
+msgid "directly connected to your system"
+msgstr "Ikkopja fonts għas-sistema"
+
+#: ../../printerdrake.pm_.c:213
+msgid ""
+"\n"
+"There is one unknown printer directly connected to your system"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:215
+#, c-format
+msgid ""
+"\n"
+"There are %d unknown printers directly connected to your system"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:221
+#, fuzzy
+msgid " (Make sure that all your printers are connected and turned on).\n"
+msgstr "Jekk jogħĥbok agÄ§ĆŒel il-port ma' fejn hu mqabbad il-printer."
+
+#: ../../printerdrake.pm_.c:235
+msgid ""
+"Do you want to enable printing on the printers mentioned above or on "
+"printers in the local network?\n"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:236
+#, fuzzy
+msgid "Do you want to enable printing on printers in the local network?\n"
+msgstr ""
+"Tixtieq tissettja dan il-printer (\"%s\")\n"
+"bħala l-printer impliċitu?"
+
+#: ../../printerdrake.pm_.c:238
+#, fuzzy
+msgid "Do you want to enable printing on the printers mentioned above?\n"
+msgstr "Trid taqbad b'din il-konnessjoni malli tixgħel?"
+
+#: ../../printerdrake.pm_.c:239
+msgid "Are you sure that you want to set up printing on this machine?\n"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:240
+#, c-format
+msgid ""
+"NOTE: Depending on the printer model and the printing system up to %d MB of "
+"additional software will be installed."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:269 ../../printerdrake.pm_.c:278
+#: ../../printerdrake.pm_.c:3117 ../../printerdrake.pm_.c:3242
msgid "Add a new printer"
msgstr "ƻid printer ĥdid"
-#: ../../printerdrake.pm_.c:184
+#: ../../printerdrake.pm_.c:270
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7681,16 +7965,17 @@ msgid ""
"connection types."
msgstr ""
"\n"
-"Merħba għas-saħħar tal-konfigurazzoni tal-printer\n"
+"Merħba għas-saħħar tal-konfigurazzjoni tal-printer\n"
"\n"
"Dan is-saħħar iħallik tinstalla printers lokali jew remoti biex jintuĆŒaw "
"minn dan il-kompjuter kif ukoll kompjuters oħra fuq in-network.\n"
"\n"
"Huwa jitolbok l-informazzjoni kollha meħtieĥa biex tissettja l-printer u "
-"jagħtik aċċess għad-drivers tal-printers kollha disponibbli, l-għaĆŒliet tad-"
-"driver, u t-tipi ta' konnessjoni."
+"jagħtik aċċess għad-drajvers tal-printers kollha disponibbli, l-għaĆŒliet tad-"
+"drajver, u t-tipi ta' konnessjoni."
-#: ../../printerdrake.pm_.c:193
+#: ../../printerdrake.pm_.c:280
+#, fuzzy
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7699,7 +7984,7 @@ msgid ""
"computer, connected directly to the network or to a remote Windows machine.\n"
"\n"
"If you have printer(s) connected to this machine, Please plug it/them in on "
-"this computer and turn it/them on so that they can be auto-detected. Also "
+"this computer and turn it/them on so that it/they can be auto-detected. Also "
"your network printer(s) and you Windows machines must be connected and "
"turned on.\n"
"\n"
@@ -7730,7 +8015,41 @@ msgstr ""
"Agħfas \"Li jmiss\" meta tlesti, jew \"Ikkanċella\" jekk ma tridx tissettja "
"printers għalissa."
-#: ../../printerdrake.pm_.c:202
+#: ../../printerdrake.pm_.c:289 ../../printerdrake.pm_.c:306
+#, fuzzy
+msgid ""
+"\n"
+"Welcome to the Printer Setup Wizard\n"
+"\n"
+"This wizard will help you to install your printer(s) connected to this "
+"computer.\n"
+"\n"
+"If you have printer(s) connected to this machine, Please plug it/them in on "
+"this computer and turn it/them on so that it/they can be auto-detected.\n"
+"\n"
+" Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
+"want to set up your printer(s) now."
+msgstr ""
+"\n"
+"Merħba għas-saħħar tal-printers\n"
+"\n"
+"Dan is-saħħar jgħinek tinstalla printer(s) imqabbda direttament ma' dan il-"
+"kompjuter jew imqabbda direttament man-network.\n"
+"\n"
+"Jekk għandek printer imqabbad direttament ma' dan il-kompjuter, jekk "
+"jogħĥbok ixgħelhu issa u ara li mqabbad sew, ħalli dan jingħaraf "
+"awtomatikament. Bl-istess mod, jekk għandek printers man-network, dawn "
+"iridu jkunu mqabbdin u mixgħula.\n"
+"\n"
+"Innota li l-għarfien awtomatiku ta' printers fuq in-network idum iĆŒjed mill-"
+"għarfien ta' printers imqabbda lokalment, għalhekk itfi l-għarfien "
+"awtomatiku ta' printers fuq in-network jekk m'hemmx.\n"
+"\n"
+"Agħfas \"Li jmiss\" meta tlesti, jew \"Ikkanċella\" jekk ma tridx tissettja "
+"printers għalissa."
+
+#: ../../printerdrake.pm_.c:297
+#, fuzzy
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7739,7 +8058,7 @@ msgid ""
"computer or connected directly to the network.\n"
"\n"
"If you have printer(s) connected to this machine, Please plug it/them in on "
-"this computer and turn it/them on so that they can be auto-detected. Also "
+"this computer and turn it/them on so that it/they can be auto-detected. Also "
"your network printer(s) must be connected and turned on.\n"
"\n"
"Note that auto-detecting printers on the network takes longer than the auto-"
@@ -7767,25 +8086,25 @@ msgstr ""
"Agħfas \"Li jmiss\" meta tlesti, jew \"Ikkanċella\" jekk ma tridx tissettja "
"printers għalissa."
-#: ../../printerdrake.pm_.c:213
+#: ../../printerdrake.pm_.c:315
msgid "Auto-detect printers connected to this machine"
msgstr "Għarfien awtomatiku tal-printers imqabbda lokalment"
-#: ../../printerdrake.pm_.c:215
+#: ../../printerdrake.pm_.c:318
msgid "Auto-detect printers connected directly to the local network"
msgstr "Għarfien awtomatiku tal-printers imqabbda direttament man-network"
-#: ../../printerdrake.pm_.c:218
+#: ../../printerdrake.pm_.c:321
msgid "Auto-detect printers connected to machines running Microsoft Windows"
msgstr ""
"Għarfien awtomatiku tal-printers imqabbda fuq PCs bil-Microsoft Windows"
-#: ../../printerdrake.pm_.c:245 ../../printerdrake.pm_.c:459
-#: ../../printerdrake.pm_.c:484
+#: ../../printerdrake.pm_.c:348 ../../printerdrake.pm_.c:562
+#: ../../printerdrake.pm_.c:587
msgid "Local Printer"
msgstr "Printer lokali"
-#: ../../printerdrake.pm_.c:246
+#: ../../printerdrake.pm_.c:349
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -7808,49 +8127,49 @@ msgstr ""
"tbiddel is-setings impliċiti (daqs tal-karta, kwalitĂ  eċċ), agÄ§ĆŒel \"Printer"
"\" mis-sezzjoni \"ĩardwer\" taċ-Ċentru tal-Kontroll Mandrake."
-#: ../../printerdrake.pm_.c:283 ../../printerdrake.pm_.c:474
-#: ../../printerdrake.pm_.c:683 ../../printerdrake.pm_.c:923
+#: ../../printerdrake.pm_.c:386 ../../printerdrake.pm_.c:577
+#: ../../printerdrake.pm_.c:790 ../../printerdrake.pm_.c:1030
msgid "Printer auto-detection"
msgstr "Għarfien awtomatiku tal-printer"
-#: ../../printerdrake.pm_.c:305
+#: ../../printerdrake.pm_.c:408
#, c-format
msgid ", network printer \"%s\", port %s"
msgstr ", printer tan-network \"%s\", port %s"
-#: ../../printerdrake.pm_.c:307
+#: ../../printerdrake.pm_.c:410
#, c-format
msgid ", printer \"%s\" on SMB/Windows server \"%s\""
msgstr ", Printer \"%s\" fuq server SMB/Windows \"%s\""
-#: ../../printerdrake.pm_.c:313
+#: ../../printerdrake.pm_.c:416
#, c-format
msgid "Detected %s"
msgstr "Instab %s"
-#: ../../printerdrake.pm_.c:317 ../../printerdrake.pm_.c:348
-#: ../../printerdrake.pm_.c:367
+#: ../../printerdrake.pm_.c:420 ../../printerdrake.pm_.c:451
+#: ../../printerdrake.pm_.c:470
#, c-format
msgid "Printer on parallel port \\/*%s"
-msgstr "Printer fuq port parallell \\/*%s"
+msgstr "Printer fuq port parallel \\/*%s"
-#: ../../printerdrake.pm_.c:319 ../../printerdrake.pm_.c:350
-#: ../../printerdrake.pm_.c:372
+#: ../../printerdrake.pm_.c:422 ../../printerdrake.pm_.c:453
+#: ../../printerdrake.pm_.c:475
#, c-format
msgid "USB printer \\/*%s"
msgstr "Printer USB \\/*%s"
-#: ../../printerdrake.pm_.c:321
+#: ../../printerdrake.pm_.c:424
#, c-format
msgid "Network printer \"%s\", port %s"
msgstr "Printer tan-network \"%s\", port %s"
-#: ../../printerdrake.pm_.c:323
+#: ../../printerdrake.pm_.c:426
#, c-format
msgid "Printer \"%s\" on SMB/Windows server \"%s\""
msgstr "Printer \"%s\" fuq server SMB/Windows \"%s\""
-#: ../../printerdrake.pm_.c:460
+#: ../../printerdrake.pm_.c:563
msgid ""
"No local printer found! To manually install a printer enter a device name/"
"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
@@ -7858,22 +8177,22 @@ msgid ""
"printer: /dev/usb/lp1, ...)."
msgstr ""
"Ma nstab ebda printer lokali. Biex tinstalla printer manwalment daħħal l-"
-"isem tal-port jew fajl fl-input. (Portijiet parallelli: /dev/lp0=LPT1, /dev/"
+"isem tal-port jew fajl fl-input. (Portijiet paralleli: /dev/lp0=LPT1, /dev/"
"lp1=LPT2 eċċ; printers USB: /dev/usb/lp0, /dev/usb/lp1 eċċ)"
-#: ../../printerdrake.pm_.c:464
+#: ../../printerdrake.pm_.c:567
msgid "You must enter a device or file name!"
msgstr "Trid iddaħħal isem ta' port jew fajl!"
-#: ../../printerdrake.pm_.c:475
+#: ../../printerdrake.pm_.c:578
msgid "No printer found!"
msgstr "Ebda printer ma nstab!"
-#: ../../printerdrake.pm_.c:485
+#: ../../printerdrake.pm_.c:588
msgid "Available printers"
msgstr "Printers disponibbli"
-#: ../../printerdrake.pm_.c:489
+#: ../../printerdrake.pm_.c:592
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
@@ -7881,7 +8200,7 @@ msgstr ""
"Dan huwa l-printer li nstab awtomatikament. Jekk dan m'hux il-printer li "
"ridt tissettja, daħħal isem ta' port/fajl fil-linja tal-input."
-#: ../../printerdrake.pm_.c:490
+#: ../../printerdrake.pm_.c:593
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up or enter a device name/file name in the input line"
@@ -7890,7 +8209,7 @@ msgstr ""
"agÄ§ĆŒel il-printer li trid tissettja, jew daħħal isem ta' port/fajl fil-linja "
"tal-input."
-#: ../../printerdrake.pm_.c:492
+#: ../../printerdrake.pm_.c:595
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
@@ -7901,7 +8220,7 @@ msgstr ""
"issir awtomatikament. Jekk il-printer ma ngħarafx sew, jew jekk tippreferi "
"konfigurazzjoni personalizzata, ixgħel \"Konfigurazzjoni manwali\"."
-#: ../../printerdrake.pm_.c:493
+#: ../../printerdrake.pm_.c:596
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
@@ -7913,7 +8232,7 @@ msgstr ""
"awtomatikament. Jekk il-printer ma ngħarafx sew, jew jekk tippreferi "
"konfigurazzjoni personalizzata, ixgħel \"Konfigurazzjoni manwali\"."
-#: ../../printerdrake.pm_.c:495
+#: ../../printerdrake.pm_.c:598
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
@@ -7921,32 +8240,32 @@ msgstr ""
"Jekk jogħĥbok agÄ§ĆŒel il-port fejn huwa mqabbad il-printer, jew agÄ§ĆŒel isem "
"ta' port/fajl fil-linja ta' kmand."
-#: ../../printerdrake.pm_.c:496
+#: ../../printerdrake.pm_.c:599
msgid "Please choose the port where your printer is connected to."
msgstr "Jekk jogħĥbok agÄ§ĆŒel il-port ma' fejn hu mqabbad il-printer."
-#: ../../printerdrake.pm_.c:498
+#: ../../printerdrake.pm_.c:601
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
msgstr ""
-" (portijiet parallelli: /dev/lp0, /dev/lp1 huma ekwivalenti għal LPT1, LPT2 "
+" (portijiet paralleli: /dev/lp0, /dev/lp1 huma ekwivalenti għal LPT1, LPT2 "
"eċċ. L-ewwel printer USB = /dev/usb/lp0, it-tieni printer USB = /dev/usb/lp1 "
"eċċ )"
-#: ../../printerdrake.pm_.c:503
+#: ../../printerdrake.pm_.c:606
msgid "You must choose/enter a printer/device!"
msgstr "Trid tagÄ§ĆŒel/iddaħħal printer/apparat!"
-#: ../../printerdrake.pm_.c:523
+#: ../../printerdrake.pm_.c:626
msgid "Manual configuration"
msgstr "Konfigurazzjoni manwali"
-#: ../../printerdrake.pm_.c:577
+#: ../../printerdrake.pm_.c:680
msgid "Remote lpd Printer Options"
msgstr "GħaĆŒliet għal printer lpd remot"
-#: ../../printerdrake.pm_.c:578
+#: ../../printerdrake.pm_.c:681
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
"server and the printer name on that server."
@@ -7954,46 +8273,46 @@ msgstr ""
"Biex tipprintja fuq printer remot lpd, trid tagħti l-isem tal-kompjuter kif "
"ukoll l-isem tal-printer fuq dak is-server."
-#: ../../printerdrake.pm_.c:579
+#: ../../printerdrake.pm_.c:682
msgid "Remote host name"
msgstr "Isem tal-kompjuter remot"
-#: ../../printerdrake.pm_.c:580
+#: ../../printerdrake.pm_.c:683
msgid "Remote printer name"
msgstr "Isem tal-printer remot"
-#: ../../printerdrake.pm_.c:583
+#: ../../printerdrake.pm_.c:686
msgid "Remote host name missing!"
msgstr "Isem tal-kompjuter remot nieqes!"
-#: ../../printerdrake.pm_.c:587
+#: ../../printerdrake.pm_.c:690
msgid "Remote printer name missing!"
msgstr "Isem tal-printer remot nieqes!"
-#: ../../printerdrake.pm_.c:609 ../../printerdrake.pm_.c:1119
+#: ../../printerdrake.pm_.c:712 ../../printerdrake.pm_.c:1225
#, c-format
msgid "Detected model: %s %s"
msgstr "Mudell misjub: %s %s"
-#: ../../printerdrake.pm_.c:683 ../../printerdrake.pm_.c:923
+#: ../../printerdrake.pm_.c:790 ../../printerdrake.pm_.c:1030
msgid "Scanning network..."
msgstr "Qed infittex fuq in-network..."
-#: ../../printerdrake.pm_.c:692 ../../printerdrake.pm_.c:713
+#: ../../printerdrake.pm_.c:799 ../../printerdrake.pm_.c:820
#, c-format
msgid ", printer \"%s\" on server \"%s\""
msgstr ", printer \"%s\" fuq server \"%s\""
-#: ../../printerdrake.pm_.c:695 ../../printerdrake.pm_.c:716
+#: ../../printerdrake.pm_.c:802 ../../printerdrake.pm_.c:823
#, c-format
msgid "Printer \"%s\" on server \"%s\""
msgstr "Printer \"%s\" fuq server \"%s\""
-#: ../../printerdrake.pm_.c:736
+#: ../../printerdrake.pm_.c:843
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "GħaĆŒliet għal printer SMB (Windows 9x/NT)"
-#: ../../printerdrake.pm_.c:737
+#: ../../printerdrake.pm_.c:844
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
"may be different from its TCP/IP hostname!) and possibly the IP address of "
@@ -8006,7 +8325,7 @@ msgstr ""
"possibbilment l-isem u password tal-user li trid taqbad bih, u informazzjoni "
"dwar il-workgroup."
-#: ../../printerdrake.pm_.c:738
+#: ../../printerdrake.pm_.c:845
msgid ""
" If the desired printer was auto-detected, simply choose it from the list "
"and then add user name, password, and/or workgroup if needed."
@@ -8014,39 +8333,39 @@ msgstr ""
" Jekk il-printer meħtieÄĄ instab awtomatikament, sempliċiment għaĆŒlu mil-"
"lista u ĆŒid il-user, password u/jew workgroup jekk meħtieÄĄa."
-#: ../../printerdrake.pm_.c:739
+#: ../../printerdrake.pm_.c:846
msgid "SMB server host"
msgstr "Isem tal-kompjuter SMB"
-#: ../../printerdrake.pm_.c:740
+#: ../../printerdrake.pm_.c:847
msgid "SMB server IP"
msgstr "IP tas-server SMB"
-#: ../../printerdrake.pm_.c:741
+#: ../../printerdrake.pm_.c:848
msgid "Share name"
msgstr "Isem tal-printer (share)"
-#: ../../printerdrake.pm_.c:744
+#: ../../printerdrake.pm_.c:851
msgid "Workgroup"
msgstr "Workgroup"
-#: ../../printerdrake.pm_.c:746
+#: ../../printerdrake.pm_.c:853
msgid "Auto-detected"
msgstr "Magħruf awtomatikament"
-#: ../../printerdrake.pm_.c:757
+#: ../../printerdrake.pm_.c:864
msgid "Either the server name or the server's IP must be given!"
msgstr "Trid tagħti l-isem jew l-indirizz IP tas-server!"
-#: ../../printerdrake.pm_.c:761
+#: ../../printerdrake.pm_.c:868
msgid "Samba share name missing!"
msgstr "Isem tal-printer (share name) nieqes!"
-#: ../../printerdrake.pm_.c:767
+#: ../../printerdrake.pm_.c:874
msgid "SECURITY WARNING!"
msgstr "TWISSIJA TA' SIGURTÀ!"
-#: ../../printerdrake.pm_.c:768
+#: ../../printerdrake.pm_.c:875
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -8069,7 +8388,7 @@ msgid ""
"type in Printerdrake.\n"
"\n"
msgstr ""
-"Int se tissettja l-printing fuq kont tal-Windows li jeħtieĥ password. "
+"Int se tissettja l-ipprintjar fuq kont tal-Windows li jeħtieĥ password. "
"Minħabba difett fl-arkitettura tal-klijent Samba, il-password titpoĥĥa b'mod "
"li jinqara' fuq il-linja ta' kmand li juĆŒa dan il-klijent biex tibgħat ix-"
"xogħol lis-server Windows. Għalhekk huwa possibbli għal kull user li hemm "
@@ -8081,15 +8400,15 @@ msgstr ""
"għandhom aċċess għas-server Windows, per eĆŒempju permezz ta' firewall):\n"
"\n"
"UĆŒa kont minngħajr password fuq is-server Windows, per eĆŒempju l-kont \"GUEST"
-"\" jew kont speċjali dedikat għall-printing. Tneħħix il-protezzjoni tal-"
+"\" jew kont speċjali dedikat għall-ipprintjar. Tneħħix il-protezzjoni tal-"
"password mall-kont personali jew dak tal-amministratur.\n"
"\n"
"Issettja s-server tal-Windows biex jagħmel dan il-printer disponibbli taħt "
-"il-protokoll LPD, imbgħad issettja l-printer fuq dan il-kompjuter permezz "
+"il-protokoll LPD, imbagħad issettja l-printer fuq dan il-kompjuter permezz "
"tat-tip ta' konnessjoni \"%s\" minn PrinterDrake.\n"
"\n"
-#: ../../printerdrake.pm_.c:778
+#: ../../printerdrake.pm_.c:885
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -8098,11 +8417,11 @@ msgid ""
"\n"
msgstr ""
"Issettja s-server tal-Windows biex jagħmel dan il-printer disponibbli taħt "
-"il-protokoll IPP u ssettja l-printing minn din il-magna biex tuĆŒa l-"
+"il-protokoll IPP u ssettja l-ipprintjar minn din il-magna biex tuĆŒa l-"
"konnessjoni tip \"%s\" minn Printerdrake.\n"
"\n"
-#: ../../printerdrake.pm_.c:781
+#: ../../printerdrake.pm_.c:888
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
@@ -8114,53 +8433,53 @@ msgstr ""
"\n"
"Trid tkompli tissettja dan il-printer kif qed tagħmel issa?"
-#: ../../printerdrake.pm_.c:853
+#: ../../printerdrake.pm_.c:960
msgid "NetWare Printer Options"
msgstr "GħaĆŒliet tal-printer NetWare"
-#: ../../printerdrake.pm_.c:854
+#: ../../printerdrake.pm_.c:961
msgid ""
"To print on a NetWare printer, you need to provide the NetWare print server "
"name (Note! it may be different from its 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 ""
-"Biex tipprintja fuq printer NetWare, trid tagħti l-isem Netware tal-"
+"Biex tipprintja fuq printer NetWare, trid tagħti l-isem NetWare tal-"
"kompjuter (li\n"
"jista' jkun differenti mill-isem TCP/IP), kif ukoll l-isem tal-kju ta' "
"printjar li tixtieq tuĆŒa, u isem u password tal-user jekk hemm bĆŒonn."
-#: ../../printerdrake.pm_.c:855
+#: ../../printerdrake.pm_.c:962
msgid "Printer Server"
msgstr "Server tal-printer"
-#: ../../printerdrake.pm_.c:856
+#: ../../printerdrake.pm_.c:963
msgid "Print Queue Name"
msgstr "Isem tal-Kju tal-Ipprintjar"
-#: ../../printerdrake.pm_.c:861
+#: ../../printerdrake.pm_.c:968
msgid "NCP server name missing!"
msgstr "Isem tas-server NCP nieqes!"
-#: ../../printerdrake.pm_.c:865
+#: ../../printerdrake.pm_.c:972
msgid "NCP queue name missing!"
msgstr "Isem tal-kju NCP nieqes!"
-#: ../../printerdrake.pm_.c:932 ../../printerdrake.pm_.c:952
+#: ../../printerdrake.pm_.c:1039 ../../printerdrake.pm_.c:1059
#, c-format
msgid ", host \"%s\", port %s"
msgstr ", kompjuter \"%s\", port %s"
-#: ../../printerdrake.pm_.c:935 ../../printerdrake.pm_.c:955
+#: ../../printerdrake.pm_.c:1042 ../../printerdrake.pm_.c:1062
#, c-format
msgid "Host \"%s\", port %s"
msgstr "Kompjuter \"%s\", port %s"
-#: ../../printerdrake.pm_.c:975
+#: ../../printerdrake.pm_.c:1082
msgid "TCP/Socket Printer Options"
msgstr "GħaĆŒliet Printer TCP/Socket"
-#: ../../printerdrake.pm_.c:977
+#: ../../printerdrake.pm_.c:1084
msgid ""
"Choose one of the auto-detected printers from the list or enter the hostname "
"or IP and the optional port number (default is 9100) into the input fields."
@@ -8169,7 +8488,7 @@ msgstr ""
"IP ta' kompjuter, u jekk trid, n-numru tal-port (impliċitament 9100) fil-"
"kaxex."
-#: ../../printerdrake.pm_.c:978
+#: ../../printerdrake.pm_.c:1085
msgid ""
"To print to a TCP or socket printer, you need to provide the host name or IP "
"of the printer and optionally the port number (default is 9100). On HP "
@@ -8181,19 +8500,19 @@ msgstr ""
"numru tal-port ġeneralment huwa 9100. Fuq printers oħra dan ivarja. Iċċekkja "
"l-manwal tal-printer."
-#: ../../printerdrake.pm_.c:983
+#: ../../printerdrake.pm_.c:1090
msgid "Printer host name or IP missing!"
msgstr "Isem jew indirizz tal-printer nieqes!"
-#: ../../printerdrake.pm_.c:1005
+#: ../../printerdrake.pm_.c:1112
msgid "Printer host name or IP"
msgstr "Isem jew indirizz tal-printer"
-#: ../../printerdrake.pm_.c:1054 ../../printerdrake.pm_.c:1056
+#: ../../printerdrake.pm_.c:1160 ../../printerdrake.pm_.c:1162
msgid "Printer Device URI"
msgstr "URI tal-printer"
-#: ../../printerdrake.pm_.c:1055
+#: ../../printerdrake.pm_.c:1161
msgid ""
"You can specify directly the URI to access the printer. The URI must fulfill "
"either the CUPS or the Foomatic specifications. Note that not all URI types "
@@ -8201,13 +8520,13 @@ msgid ""
msgstr ""
"Tista' tispeċifika l-URI tal-printer direttament. Il-URI irid isegwi l-"
"format tal-CUPS jew tal-Foomatic. Innota li mhux kull tip ta' URI huwa "
-"aċċettat mill-spoolers kollha."
+"aċċettat mill-ispoolers kollha."
-#: ../../printerdrake.pm_.c:1070
+#: ../../printerdrake.pm_.c:1176
msgid "A valid URI must be entered!"
msgstr "Trid iddaħħal URI validu!"
-#: ../../printerdrake.pm_.c:1402
+#: ../../printerdrake.pm_.c:1515
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
"Location fields do not need to be filled in. They are comments for the users."
@@ -8215,27 +8534,27 @@ msgstr ""
"Kull printer jeħtieÄĄ isem, (eĆŒ, \"printer\"). Id-deskrizzjoni u post "
"m'għandhomx bĆŒonn jimtlew. Huma kummenti għall-uĆŒu tiegħek."
-#: ../../printerdrake.pm_.c:1403
+#: ../../printerdrake.pm_.c:1516
msgid "Name of printer"
msgstr "Isem tal-printer"
-#: ../../printerdrake.pm_.c:1405
+#: ../../printerdrake.pm_.c:1518
msgid "Location"
msgstr "Post"
-#: ../../printerdrake.pm_.c:1416 ../../printerdrake.pm_.c:1536
+#: ../../printerdrake.pm_.c:1530 ../../printerdrake.pm_.c:1652
msgid "Reading printer database..."
msgstr "Qed jinqara d-database ta' printers"
-#: ../../printerdrake.pm_.c:1419
+#: ../../printerdrake.pm_.c:1534
msgid "Preparing printer database..."
msgstr "Qed nipprepara d-database tal-printers..."
-#: ../../printerdrake.pm_.c:1516
+#: ../../printerdrake.pm_.c:1631
msgid "Your printer model"
msgstr "Il-mudell tal-printer tiegħek"
-#: ../../printerdrake.pm_.c:1517
+#: ../../printerdrake.pm_.c:1632
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -8260,24 +8579,24 @@ msgstr ""
"\n"
"%s"
-#: ../../printerdrake.pm_.c:1522 ../../printerdrake.pm_.c:1525
+#: ../../printerdrake.pm_.c:1637 ../../printerdrake.pm_.c:1640
msgid "The model is correct"
msgstr "Dan il-mudell huwa tajjeb"
-#: ../../printerdrake.pm_.c:1523 ../../printerdrake.pm_.c:1524
-#: ../../printerdrake.pm_.c:1527
+#: ../../printerdrake.pm_.c:1638 ../../printerdrake.pm_.c:1639
+#: ../../printerdrake.pm_.c:1642
msgid "Select model manually"
msgstr "AgÄ§ĆŒel mudell manwalment"
-#: ../../printerdrake.pm_.c:1543
+#: ../../printerdrake.pm_.c:1659
msgid "Printer model selection"
msgstr "GħaĆŒla tal-mudell tal-printer"
-#: ../../printerdrake.pm_.c:1544
+#: ../../printerdrake.pm_.c:1660
msgid "Which printer model do you have?"
msgstr "Liema mudell ta' printer għandek?"
-#: ../../printerdrake.pm_.c:1545
+#: ../../printerdrake.pm_.c:1661
msgid ""
"\n"
"\n"
@@ -8291,19 +8610,19 @@ msgstr ""
"sew. Jekk il-mudell immarkat m'huwiex tajjeb jew qiegħed fuq \"printer dirett"
"\" ara jekk issibx il-mudell int fil-lista."
-#: ../../printerdrake.pm_.c:1548
+#: ../../printerdrake.pm_.c:1664
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
msgstr ""
-"Jekk il-printer tiegħel mhux imniĆŒĆŒel, agÄ§ĆŒel mudell kompatibbli (ara l-"
+"Jekk il-printer tiegħek mhux imniĆŒĆŒel, agÄ§ĆŒel mudell kompatibbli (ara l-"
"manwal tal-printer) jew wieħed simili."
-#: ../../printerdrake.pm_.c:1624
+#: ../../printerdrake.pm_.c:1741
msgid "OKI winprinter configuration"
msgstr "Konfigurazzjoni OKI WinPrinter"
-#: ../../printerdrake.pm_.c:1625
+#: ../../printerdrake.pm_.c:1742
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -8314,41 +8633,76 @@ msgid ""
msgstr ""
"Qed tikkonfigura \"OKI laser winprinter\". Dawn il-printers juĆŒaw protokoll "
"ta' kommunikazzjoni speċjali u għalhekk jaħdmu biss meta jkunu mqabbdin ma' "
-"l-ewwel port parallell. Meta l-printer ikun imqabbad ma' port ieħor jew ma' "
-"print server, jekk jogħĥbok l-ewwel qabbdu ma' l-ewwel port parallell qabel "
+"l-ewwel port parallel. Meta l-printer ikun imqabbad ma' port ieħor jew ma' "
+"print server, jekk jogħĥbok l-ewwel qabbdu ma' l-ewwel port parallel qabel "
"tipprintja paĥna biex tittestja, inkella l-printer ma jaħdimx. It-tip ta' "
-"konnessjoni jiÄĄi injorat mid-driver."
+"konnessjoni jiÄĄi injorat mid-drajver."
-#: ../../printerdrake.pm_.c:1668 ../../printerdrake.pm_.c:1695
+#: ../../printerdrake.pm_.c:1785 ../../printerdrake.pm_.c:1812
msgid "Lexmark inkjet configuration"
msgstr "Konfigurazzjoni inkjet Lexmark"
-#: ../../printerdrake.pm_.c:1669
+#: ../../printerdrake.pm_.c:1786
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
"no printers on remote machines or print server boxes. Please connect your "
"printer to a local port or configure it on the machine where it is connected "
"to."
msgstr ""
-"Il-drivers tal-printer ipprovduti minn Lexmark jissapportjaw biss printers "
+"Il-drajvers tal-printer ipprovduti minn Lexmark jissapportjaw biss printers "
"lokali, mhux printers fuq magni remoti jew print servers. Jekk jogħĥbok "
"qabbad il-printer ma' port lokali jew ikkonfigurah fuq il-magna fejn qiegħed "
"imqabbad."
-#: ../../printerdrake.pm_.c:1696
+#: ../../printerdrake.pm_.c:1813
+#, fuzzy
msgid ""
"To be able to print with your Lexmark inkjet and this configuration, you "
"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
-"com/). Go to the US site and click on the \"Drivers\" button. Then choose "
-"your model and afterwards \"Linux\" as operating system. The drivers come as "
-"RPM packages or shell scripts with interactive graphical installation. You "
-"do not need to do this configuration by the graphical frontends. Cancel "
-"directly after the license agreement. Then print printhead alignment pages "
-"with \"lexmarkmaintain\" and adjust the head alignment settings with this "
-"program."
+"com/). Click on the \"Drivers\" link. Then choose your model and afterwards "
+"\"Linux\" as operating system. The drivers come as RPM packages or shell "
+"scripts with interactive graphical installation. You do not need to do this "
+"configuration by the graphical frontends. Cancel directly after the license "
+"agreement. Then print printhead alignment pages with \"lexmarkmaintain\" and "
+"adjust the head alignment settings with this program."
+msgstr ""
+"Biex tkun tista' tipprintja bl-inkÄĄet Lexmark u b'din il-konfigurazzjoni, "
+"trid id-drajver tal-printer provdut minn Lexmark (http://www.lexmark.com) "
+"Mur fuq is-sajt US u klikkja l-buttuna \"Drivers\". Imbagħad agÄ§ĆŒel il-"
+"mudell u \"Linux\" bħala sistema operattiva. Id-drajvers jiĥu bħala pakketti "
+"RPM jew skritti tax-shell b'installazzjoni grafika. Ikkanċella malli tlesti "
+"l-qbil tal-liċenzja, imbagħad ipprintja l-paġni ta' allinjament tal-"
+"printhead b' \"lexmarkmaintain\" u irranÄĄa s-setings tal-allinjament b'dan "
+"il-programm."
+
+#: ../../printerdrake.pm_.c:1816
+msgid "GDI Laser Printer using the Zenographics ZJ-Stream Format"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:1817
+msgid ""
+"Your printer belongs to the group of GDI laser printers (winprinters) sold "
+"by different manufacturers which uses the Zenographics ZJ-stream raster "
+"format for the data sent to the printer. The driver for these printers is "
+"still in a very early development stage and so it will perhaps not always "
+"work properly. Especially it is possible that the printer only works when "
+"you choose the A4 paper size.\n"
+"\n"
+"Some of these printers, as the HP LaserJet 1000, for which this driver was "
+"originally created, need their firmware to be uploaded to them after they "
+"are turned on. In the case of the HP LaserJet 1000 you have to search the "
+"printer's Windows driver CD or your Windows partition for the file "
+"\"sihp1000.img\" and upload the file to the printer with one of the "
+"following commands:\n"
+"\n"
+" lpr -o raw sihp1000.img\n"
+" cat sihp1000.img > /dev/usb/lp0\n"
+"\n"
+"The first command can be given by any normal user, the second must be given "
+"as root. After having done so you can print normally.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1912
+#: ../../printerdrake.pm_.c:2040
msgid ""
"Printer default settings\n"
"\n"
@@ -8359,27 +8713,28 @@ msgid ""
msgstr ""
"Setings impliċiti tal-printer\n"
"\n"
-"Aċċerta li d-daqs tal-paġna u t-tip ta' inka/printing (jekk hemm) kif ukoll "
-"il-konfigurazzjoni tal-ħardwer tal-printer (memorja, unità dupleks, kxaxen "
-"extra) huma settjati sew. Innota li jekk tagÄ§ĆŒel kwalitĂ /reĆŒoluzzjoni għolja "
-"ħafna il-printing jista' jdum ħafna iĆŒjed u/jew juĆŒa iĆŒjed inka."
+"Aċċerta li d-daqs tal-paġna u t-tip ta' inka/ipprintjar (jekk hemm) kif "
+"ukoll il-konfigurazzjoni tal-ħardwer tal-printer (memorja, unità dupleks, "
+"kxaxen extra) huma ssettjati sew. Innota li jekk tagÄ§ĆŒel kwalitĂ /"
+"reĆŒoluzzjoni għolja ħafna l-ipprintjar jista' jdum ħafna iĆŒjed u/jew juĆŒa "
+"iĆŒjed inka."
-#: ../../printerdrake.pm_.c:1921
+#: ../../printerdrake.pm_.c:2049
#, c-format
msgid "Option %s must be an integer number!"
msgstr "GħaĆŒla %s trid tkun numru sħiħ!"
-#: ../../printerdrake.pm_.c:1925
+#: ../../printerdrake.pm_.c:2053
#, c-format
msgid "Option %s must be a number!"
msgstr "GħaĆŒla %s trid tkun numru!"
-#: ../../printerdrake.pm_.c:1930
+#: ../../printerdrake.pm_.c:2058
#, c-format
msgid "Option %s out of range!"
msgstr "GħaĆŒla %s barra mil-limiti!"
-#: ../../printerdrake.pm_.c:1969
+#: ../../printerdrake.pm_.c:2097
#, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
@@ -8388,11 +8743,11 @@ msgstr ""
"Tixtieq tissettja dan il-printer (\"%s\")\n"
"bħala l-printer impliċitu?"
-#: ../../printerdrake.pm_.c:1986
+#: ../../printerdrake.pm_.c:2120
msgid "Test pages"
msgstr "PaÄĄni biex tittestja"
-#: ../../printerdrake.pm_.c:1987
+#: ../../printerdrake.pm_.c:2121
msgid ""
"Please select the test pages you want to print.\n"
"Note: the photo test page can take a rather long time to get printed and on "
@@ -8404,39 +8759,39 @@ msgstr ""
"printers bi ftit memorja tista' anqas tipprintja. F'ħafna kaĆŒi huwa "
"biĆŒĆŒejjed li tipprintja l-paÄĄna standard."
-#: ../../printerdrake.pm_.c:1991
+#: ../../printerdrake.pm_.c:2125
msgid "No test pages"
msgstr "Ebda paÄĄni ta' testjar"
-#: ../../printerdrake.pm_.c:1992
+#: ../../printerdrake.pm_.c:2126
msgid "Print"
msgstr "Printja"
-#: ../../printerdrake.pm_.c:1994
+#: ../../printerdrake.pm_.c:2183
msgid "Standard test page"
msgstr "PaÄĄna standard"
-#: ../../printerdrake.pm_.c:1997
+#: ../../printerdrake.pm_.c:2186
msgid "Alternative test page (Letter)"
msgstr "PaÄĄna alternattiva (Letter)"
-#: ../../printerdrake.pm_.c:2000
+#: ../../printerdrake.pm_.c:2189
msgid "Alternative test page (A4)"
msgstr "PaÄĄna alternattiva (A4)"
-#: ../../printerdrake.pm_.c:2002
+#: ../../printerdrake.pm_.c:2191
msgid "Photo test page"
msgstr "PaÄĄna fotografika"
-#: ../../printerdrake.pm_.c:2006
+#: ../../printerdrake.pm_.c:2195
msgid "Do not print any test page"
msgstr "Tipprintjax paĥna għal test"
-#: ../../printerdrake.pm_.c:2014 ../../printerdrake.pm_.c:2166
+#: ../../printerdrake.pm_.c:2204 ../../printerdrake.pm_.c:2357
msgid "Printing test page(s)..."
msgstr "Qed nipprintja paÄĄna/i ta' test..."
-#: ../../printerdrake.pm_.c:2039
+#: ../../printerdrake.pm_.c:2229
#, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -8446,28 +8801,28 @@ msgid ""
"\n"
msgstr ""
"Il-paĥna/i intbagħatu fuq il-printer.\n"
-"Jista jgħaddi xi ftit ħin qabel jibda' l-printjar.\n"
+"Jista' jgħaddi xi ftit ħin qabel jibda' l-printjar.\n"
"Status tal-printjar:\n"
"%s\n"
"\n"
-#: ../../printerdrake.pm_.c:2043
+#: ../../printerdrake.pm_.c:2233
msgid ""
"Test page(s) have been sent to the printer.\n"
"It may take some time before the printer starts.\n"
msgstr ""
"Il-paĥna/i intbagħatu fuq il-printer.\n"
-"Jista jgħaddi xi ftit ħin qabel jibda' l-printjar.\n"
+"Jista' jgħaddi xi ftit ħin qabel jibda' l-printjar.\n"
-#: ../../printerdrake.pm_.c:2050
+#: ../../printerdrake.pm_.c:2240
msgid "Did it work properly?"
msgstr "ÄŠadem sewwa?"
-#: ../../printerdrake.pm_.c:2072 ../../printerdrake.pm_.c:3191
+#: ../../printerdrake.pm_.c:2262 ../../printerdrake.pm_.c:3416
msgid "Raw printer"
msgstr "Printer dirett"
-#: ../../printerdrake.pm_.c:2098
+#: ../../printerdrake.pm_.c:2288
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -8476,22 +8831,22 @@ msgid ""
"to modify the option settings easily.\n"
msgstr ""
"Biex tipprintja fajl mil-linja ta' kmand (terminal), tista' tuĆŒa l-kmand \"%"
-"s <fajl>\" jew programm grafiku: \"xpp <fajl>\" jew \"kprinter <fajl>\". Il-"
+"s <fajl>\" jew programm grafiku: \"upp <fajl>\" jew \"kprinter <fajl>\". Il-"
"programmi grafiċi jħalluk tagÄ§ĆŒel il-printer jew tbiddel is-setings "
"faċilment.\n"
-#: ../../printerdrake.pm_.c:2100
+#: ../../printerdrake.pm_.c:2290
msgid ""
"These commands you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications, but here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
"Dan il-kmand jista' wkoll jintuĆŒa fl-element \"Printing command\" tal-window "
-"tal-ipprintjar ta' ħafna programmi, imma iddaħħalx l-isem tal-fajl hemm għax "
+"tal-ipprintjar ta' ħafna programmi, imma ddaħħalx l-isem tal-fajl hemm għax "
"dak jissupplixxih il-programm.\n"
-#: ../../printerdrake.pm_.c:2103 ../../printerdrake.pm_.c:2120
-#: ../../printerdrake.pm_.c:2130
+#: ../../printerdrake.pm_.c:2293 ../../printerdrake.pm_.c:2310
+#: ../../printerdrake.pm_.c:2320
#, c-format
msgid ""
"\n"
@@ -8504,7 +8859,7 @@ msgstr ""
"partikulari. Sempliċiment ĆŒid is-setings li trid fuq il-linja ta' kmand, eĆŒ "
"\"%s <file>\". "
-#: ../../printerdrake.pm_.c:2106 ../../printerdrake.pm_.c:2146
+#: ../../printerdrake.pm_.c:2296 ../../printerdrake.pm_.c:2336
#, c-format
msgid ""
"To know about the options available for the current printer read either the "
@@ -8515,7 +8870,7 @@ msgstr ""
"li tidher taħt, jew agħfas il-buttuna \"Lista ta' għaĆŒliet tal-printer\".%s%"
"s.\n"
-#: ../../printerdrake.pm_.c:2110
+#: ../../printerdrake.pm_.c:2300
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
@@ -8523,7 +8878,7 @@ msgstr ""
"Dawn huma l-għaĆŒliet disponibbli għal dan il-printer:\n"
"\n"
-#: ../../printerdrake.pm_.c:2115 ../../printerdrake.pm_.c:2125
+#: ../../printerdrake.pm_.c:2305 ../../printerdrake.pm_.c:2315
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
@@ -8532,8 +8887,8 @@ msgstr ""
"Biex tipprintja fajl mil-linja ta' kmand (terminal) uĆŒa l-kmand \"%s <fajl>"
"\".\n"
-#: ../../printerdrake.pm_.c:2117 ../../printerdrake.pm_.c:2127
-#: ../../printerdrake.pm_.c:2137
+#: ../../printerdrake.pm_.c:2307 ../../printerdrake.pm_.c:2317
+#: ../../printerdrake.pm_.c:2327
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
@@ -8543,7 +8898,7 @@ msgstr ""
"tal-ipprintjar ta' ħafna programmi, imma iddaħħalx l-isem tal-fajl hemm għax "
"dak jissupplixxih il-programm.\n"
-#: ../../printerdrake.pm_.c:2122 ../../printerdrake.pm_.c:2132
+#: ../../printerdrake.pm_.c:2312 ../../printerdrake.pm_.c:2322
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
@@ -8551,7 +8906,7 @@ msgstr ""
"Biex tikseb lista ta' għaĆŒliet disponibbli għal dan il-printer agħfas il-"
"buttuna \"Lista ta' għaĆŒliet tal-printer\"."
-#: ../../printerdrake.pm_.c:2135
+#: ../../printerdrake.pm_.c:2325
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
@@ -8560,7 +8915,7 @@ msgstr ""
"Biex tipprintja fajl mil-linja ta' kmand (terminal) uĆŒa l-kmand \"%s <fajl>"
"\" jew \"%s <fajl>\".\n"
-#: ../../printerdrake.pm_.c:2139
+#: ../../printerdrake.pm_.c:2329
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -8569,13 +8924,13 @@ msgid ""
"jobs immediately when you click it. This is for example useful for paper "
"jams.\n"
msgstr ""
-"Tista' wkull tuĆŒa l-interfaċċja grafika \"xpdq\" biex tissettja l-għaĆŒliet u "
+"Tista' wkoll tuĆŒa l-interfaċċja grafika \"xpdq\" biex tissettja l-għaĆŒliet u "
"biex tieħu ħsieb xogħlijiet ta' printjar.\n"
"Jekk qed tuĆŒa l-KDE bħala ambjent tad-desktop, għandek issib ikona fuq id-"
"desktop li tħallik twaqqaf il-printjar kollu, per eĆŒempju jekk jeħlulek il-"
"karti.\n"
-#: ../../printerdrake.pm_.c:2143
+#: ../../printerdrake.pm_.c:2333
#, c-format
msgid ""
"\n"
@@ -8588,40 +8943,40 @@ msgstr ""
"ta' printjar partikulari. Sempliċiment ĆŒid is-setings li trid fuq il-linja "
"ta' kmand, eĆŒ \"%s <file>\".\n"
-#: ../../printerdrake.pm_.c:2153
+#: ../../printerdrake.pm_.c:2343
#, c-format
msgid "Printing/Scanning/Photo Cards on \"%s\""
msgstr "Kards ta' printjar/skannjar/fotografija fuq \"%s\""
-#: ../../printerdrake.pm_.c:2154
+#: ../../printerdrake.pm_.c:2344
#, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "Printjar/skannjar fuq \"%s\""
-#: ../../printerdrake.pm_.c:2156
+#: ../../printerdrake.pm_.c:2346
#, c-format
msgid "Printing/Photo Card Access on \"%s\""
msgstr "Printjar/kard fotografija fuq \"%s\""
-#: ../../printerdrake.pm_.c:2157
+#: ../../printerdrake.pm_.c:2347
#, c-format
msgid "Printing on the printer \"%s\""
msgstr "Printjar fuq printer \"%s\""
-#: ../../printerdrake.pm_.c:2160 ../../printerdrake.pm_.c:2163
-#: ../../printerdrake.pm_.c:2164 ../../printerdrake.pm_.c:2165
-#: ../../printerdrake.pm_.c:3175 ../../standalone/drakTermServ_.c:248
-#: ../../standalone/drakbackup_.c:1485 ../../standalone/drakbackup_.c:3530
-#: ../../standalone/drakbug_.c:129 ../../standalone/drakfont_.c:705
+#: ../../printerdrake.pm_.c:2350 ../../printerdrake.pm_.c:2353
+#: ../../printerdrake.pm_.c:2354 ../../printerdrake.pm_.c:2355
+#: ../../printerdrake.pm_.c:3400 ../../standalone/drakTermServ_.c:248
+#: ../../standalone/drakbackup_.c:1560 ../../standalone/drakbackup_.c:4208
+#: ../../standalone/drakbug_.c:130 ../../standalone/drakfont_.c:705
#: ../../standalone/drakfont_.c:1014
msgid "Close"
msgstr "Agħlaq"
-#: ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2353
msgid "Print option list"
msgstr "Lista ta' għaĆŒliet tal-printer"
-#: ../../printerdrake.pm_.c:2182
+#: ../../printerdrake.pm_.c:2373
#, c-format
msgid ""
"Your multi-function device was configured automatically to be able to scan. "
@@ -8634,8 +8989,17 @@ msgid ""
"\n"
"Do not use \"scannerdrake\" for this device!"
msgstr ""
+"L-apparat multi-funzjoni ÄĄie konfigurat awtomatikament biex ikun jista' "
+"jiskannja. Issa tista' tiskannja bil-programm \"scanimage \" (\"scanimage -d "
+"hp:%s\" biex tispeċifika l-iskaner jekk għandek iĆŒjed minn wieħed) mil-linja "
+"ta' kmand, inkella bil-programmi grafiċi \"xscanimage\" jew \"xsane\". Jekk "
+"qed tuĆŒa l-GIMP, tista' tiskannja wkoll billi tuĆŒa l-menu \"File / Acquire"
+"\". Tista' tuĆŒa \"man scanimage\" fuq il-linja tal-kmand għal iĆŒjed "
+"tagħrif.\n"
+"\n"
+"TuĆŒax \"scannerdrake\" għal dan l-apparat!"
-#: ../../printerdrake.pm_.c:2202
+#: ../../printerdrake.pm_.c:2394
msgid ""
"Your printer was configured automatically to give you access to the photo "
"card drives from your PC. Now you can access your photo cards using the "
@@ -8647,18 +9011,26 @@ msgid ""
"can switch between drive letters with the field at the upper-right corners "
"of the file lists."
msgstr ""
+"Il-printer ġie konfigurat awtomatikament biex jagħtik aċċess għall-\"photo "
+"card drive\" mill-PC. Issa tista' taċċessa l-photo cards mill-programm "
+"grafiku \"MToolsFM\" (Menu: Applikazzjonijiet -> Għodda tal-fajls -> "
+"Maniĥĥjar tal-fajls MTools) jew mil-linja tal-kmand \"mtools\" (daħħal il-"
+"kmand \"man mtools\" għal iĆŒjed tagħrif). Issib il-filesystem tal-kard taħt "
+"l-ittra \"p:\", jew l-ittri sussegwenti jekk għandek iĆŒjed minn printer "
+"wieħed b'photo card. F' \"MToolsFM\" tista' taqleb bejn ittri tad-drajv mill-"
+"kaxxa ta' fuq fil-lemin tal-lista ta' fajls."
-#: ../../printerdrake.pm_.c:2223 ../../printerdrake.pm_.c:2673
-#: ../../printerdrake.pm_.c:2945
+#: ../../printerdrake.pm_.c:2416 ../../printerdrake.pm_.c:2875
+#: ../../printerdrake.pm_.c:3170
msgid "Reading printer data..."
msgstr "Qed jinqara informazzjoni dwar printer..."
-#: ../../printerdrake.pm_.c:2243 ../../printerdrake.pm_.c:2271
-#: ../../printerdrake.pm_.c:2306
+#: ../../printerdrake.pm_.c:2436 ../../printerdrake.pm_.c:2464
+#: ../../printerdrake.pm_.c:2499
msgid "Transfer printer configuration"
-msgstr "Trasferixxi konfigurazzjoni tal-printer"
+msgstr "Ittrasferixxi konfigurazzjoni tal-printer"
-#: ../../printerdrake.pm_.c:2244
+#: ../../printerdrake.pm_.c:2437
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -8673,7 +9045,7 @@ msgstr ""
"trasferiti, imma xogħlijiet eĆŒistenti ta' printjar ma jiÄĄux trasferiti.\n"
"Mhux il-kjus kollha jistgħu jiĥu trasferiti minħabba dawn ir-raĥunijiet:\n"
-#: ../../printerdrake.pm_.c:2247
+#: ../../printerdrake.pm_.c:2440
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
@@ -8681,7 +9053,7 @@ msgstr ""
"CUPS ma jaċċettax printers fuq servers Novell jew servers li jibgħatu d-data "
"lill kmand \"free format\".\n"
-#: ../../printerdrake.pm_.c:2249
+#: ../../printerdrake.pm_.c:2442
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
@@ -8689,11 +9061,11 @@ msgstr ""
"PDQ jaċċetta biss printers lokali, printers remoti LPD, u printers Socket/"
"TCP.\n"
-#: ../../printerdrake.pm_.c:2251
+#: ../../printerdrake.pm_.c:2444
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr "LPD u LPRng ma jaċċettawx printers IPP.\n"
-#: ../../printerdrake.pm_.c:2253
+#: ../../printerdrake.pm_.c:2446
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
@@ -8701,7 +9073,7 @@ msgstr ""
"Apparti minn dan, kjus li ma nħalqux b'dan il-programm jew \"foomatic-"
"configure\" ma jistgħux jiĥu trasferiti."
-#: ../../printerdrake.pm_.c:2254
+#: ../../printerdrake.pm_.c:2447
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
@@ -8709,26 +9081,26 @@ msgid ""
msgstr ""
"\n"
"Ukoll, printer ikkonfigurati bil-fajls PPD provduti mill-manufatturi jew bi "
-"drivers CUPS nativi ma jistgħux jiĥu trasferiti."
+"drajvers CUPS nativi ma jistgħux jiĥu trasferiti."
-#: ../../printerdrake.pm_.c:2255
+#: ../../printerdrake.pm_.c:2448
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
"\"Transfer\"."
msgstr ""
"\n"
-"Immarka l-printers li trid tittrasferixxi u klikkja \"Trasferixxi\"."
+"Immarka l-printers li trid tittrasferixxi u klikkja \"Ittrasferixxi\"."
-#: ../../printerdrake.pm_.c:2258
+#: ../../printerdrake.pm_.c:2451
msgid "Do not transfer printers"
msgstr "Tittrasferixxix printers"
-#: ../../printerdrake.pm_.c:2259 ../../printerdrake.pm_.c:2276
+#: ../../printerdrake.pm_.c:2452 ../../printerdrake.pm_.c:2469
msgid "Transfer"
-msgstr "Trasferixxi"
+msgstr "Ittrasferixxi"
-#: ../../printerdrake.pm_.c:2272
+#: ../../printerdrake.pm_.c:2465
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -8736,14 +9108,14 @@ msgid ""
"You can also type a new name or skip this printer."
msgstr ""
"Printer jismu \"%s\" diÄĄĂ  jeĆŒisti taħt %s.\n"
-"Klikkja \"trasferixxi\" biex tħassar li hemm.\n"
+"Klikkja \"Ittrasferixxi\" biex tħassar li hemm.\n"
"Tista' wkoll tagħtih isem ÄĄdid jew taqbĆŒu."
-#: ../../printerdrake.pm_.c:2280
+#: ../../printerdrake.pm_.c:2473
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr "L-isem tal-printer jista' jkun fih biss ittri, numri, u underscore"
-#: ../../printerdrake.pm_.c:2285
+#: ../../printerdrake.pm_.c:2478
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
@@ -8752,16 +9124,16 @@ msgstr ""
"il-printer \"%s\" diÄĄĂ  jeĆŒisti. \n"
"Trid tħassar il-konfigurazzjoni tiegħu?"
-#: ../../printerdrake.pm_.c:2293
+#: ../../printerdrake.pm_.c:2486
msgid "New printer name"
msgstr "Isem tal-printer ÄĄdid"
-#: ../../printerdrake.pm_.c:2296
+#: ../../printerdrake.pm_.c:2489
#, c-format
msgid "Transferring %s..."
msgstr "Qed nittrasferixxi %s..."
-#: ../../printerdrake.pm_.c:2307
+#: ../../printerdrake.pm_.c:2500
#, c-format
msgid ""
"You have transferred your former default printer (\"%s\"), Should it be also "
@@ -8770,29 +9142,29 @@ msgstr ""
"Int ittrasferixxejt il-printer li kien impliċitu qabel (\"%s\"). Trid li "
"jerġa' jkun il-printer impliċitu taħt is-sistema l-ġdida %s?"
-#: ../../printerdrake.pm_.c:2316
+#: ../../printerdrake.pm_.c:2510
msgid "Refreshing printer data..."
msgstr "Qed nerÄĄa' naqra' l-printers..."
-#: ../../printerdrake.pm_.c:2324 ../../printerdrake.pm_.c:2395
-#: ../../printerdrake.pm_.c:2407
+#: ../../printerdrake.pm_.c:2518 ../../printerdrake.pm_.c:2590
+#: ../../printerdrake.pm_.c:2602
msgid "Configuration of a remote printer"
msgstr "Konfigurazzjoni ta' printer remot"
-#: ../../printerdrake.pm_.c:2325
+#: ../../printerdrake.pm_.c:2519
msgid "Starting network..."
msgstr "Qed nibda' n-network..."
-#: ../../printerdrake.pm_.c:2359 ../../printerdrake.pm_.c:2363
-#: ../../printerdrake.pm_.c:2365
+#: ../../printerdrake.pm_.c:2554 ../../printerdrake.pm_.c:2558
+#: ../../printerdrake.pm_.c:2560
msgid "Configure the network now"
msgstr "Ikkonfigura n-network issa"
-#: ../../printerdrake.pm_.c:2360
+#: ../../printerdrake.pm_.c:2555
msgid "Network functionality not configured"
-msgstr "FunzjonalitĂ  tan-network m'hix konfigurata"
+msgstr "FunzjonalitĂ  tan-network m'hix ikkonfigurata"
-#: ../../printerdrake.pm_.c:2361
+#: ../../printerdrake.pm_.c:2556
msgid ""
"You are going to configure a remote printer. This needs working network "
"access, but your network is not configured yet. If you go on without network "
@@ -8804,11 +9176,11 @@ msgstr ""
"għandu mnejn ma tkunx tuĆŒa l-printer li qed tissettja issa. Kif trid "
"tipproċedi?"
-#: ../../printerdrake.pm_.c:2364
+#: ../../printerdrake.pm_.c:2559
msgid "Go on without configuring the network"
msgstr "Kompli kkonfigura mingħajr network"
-#: ../../printerdrake.pm_.c:2397
+#: ../../printerdrake.pm_.c:2592
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -8819,39 +9191,39 @@ msgid ""
msgstr ""
"Il-konfigurazzjoni tan-network li saret waqt l-installazzjoni ma tistax "
"tittella' issa. Jekk jogħġbok iċċekkja jekk in-network isirx aċċessibbli "
-"wara li tirristartja s-sistema, imbgħad ikkoreġi l-konfigurazzjoni miċ-"
+"wara li tirristartja s-sistema, imbagħad ikkoreġi l-konfigurazzjoni miċ-"
"Ċentru tal-Kontroll Mandrake, taħt is-sezzjoni \"Network u Internet\"/"
"\"Konnessjoni\", u wara ssettja l-printer, mill-istess Ċentru tal-Kontroll, "
"sezzjoni \"ÄŠardwer\"/\"Printer\"."
-#: ../../printerdrake.pm_.c:2398
+#: ../../printerdrake.pm_.c:2593
msgid ""
"The network access was not running and could not be started. Please check "
"your configuration and your hardware. Then try to configure your remote "
"printer again."
msgstr ""
"L-aċċess għan-network ma kienx qed jaħdem u ma setax jittella'. Jekk "
-"jogħġbok iċċekkja l-konfigurazzjoni tal-ħardwer, imbgħad erġa' pprova "
+"jogħġbok iċċekkja l-konfigurazzjoni tal-ħardwer, imbagħad erġa' pprova "
"kkonfigura l-printer remot."
-#: ../../printerdrake.pm_.c:2408
+#: ../../printerdrake.pm_.c:2603
msgid "Restarting printing system..."
msgstr "Qed nirristartja s-sistema ta' printjar..."
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2641
msgid "high"
msgstr "għoli"
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2641
msgid "paranoid"
-msgstr "paranojd"
+msgstr "paranojku"
-#: ../../printerdrake.pm_.c:2447
+#: ../../printerdrake.pm_.c:2642
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr "Qed ninstalla sistema ta' printjar taħt livell ta' sigurtà %s"
-#: ../../printerdrake.pm_.c:2448
+#: ../../printerdrake.pm_.c:2643
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -8871,16 +9243,16 @@ msgstr ""
"Din is-sistema ta' printjar tħaddem daemon (proċess fl-isfond) li jistenna' "
"xogħlijiet ta' printjar u jieħu ħsiebhom. Dan id-daemon huwa wkoll "
"aċċessibbli minn kompjuters oħra fuq in-network għalhekk huwa possibbli għal "
-"attikki fuqu. Għalhekk, id-daemons li jittellgħu f'dan il-livell huma ftit u "
+"attakki fuqu. Għalhekk, id-daemons li jittellgħu f'dan il-livell huma ftit u "
"magÄ§ĆŒula sew.\n"
"\n"
"ƻgur li trid tikkonfigura l-ipprintjar fuq dan il-kompjuter?"
-#: ../../printerdrake.pm_.c:2480
+#: ../../printerdrake.pm_.c:2675
msgid "Starting the printing system at boot time"
msgstr "Qed nistartja s-sistema ta' printjar waqt ix-xegħil"
-#: ../../printerdrake.pm_.c:2481
+#: ../../printerdrake.pm_.c:2676
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -8902,106 +9274,103 @@ msgstr ""
"\n"
"Trid li terĥa' tixgħel it-tlugħ awtomatiku tas-sistema ta' printjar?"
-#: ../../printerdrake.pm_.c:2504 ../../printerdrake.pm_.c:2544
-#: ../../printerdrake.pm_.c:2581 ../../printerdrake.pm_.c:2621
-#: ../../printerdrake.pm_.c:2733
+#: ../../printerdrake.pm_.c:2700 ../../printerdrake.pm_.c:2741
+#: ../../printerdrake.pm_.c:2780 ../../printerdrake.pm_.c:2822
+#: ../../printerdrake.pm_.c:2943
msgid "Checking installed software..."
msgstr "Qed niċċekkja s-softwer li hemm installat..."
-#: ../../printerdrake.pm_.c:2548
+#: ../../printerdrake.pm_.c:2746
msgid "Removing LPRng..."
msgstr "Qed inneħħi LPRng..."
-#: ../../printerdrake.pm_.c:2585
+#: ../../printerdrake.pm_.c:2785
msgid "Removing LPD..."
msgstr "Qed inneħħi LPD..."
-#: ../../printerdrake.pm_.c:2657
+#: ../../printerdrake.pm_.c:2858
msgid "Select Printer Spooler"
msgstr "AgÄ§ĆŒel \"spooler\" tal-printer"
-#: ../../printerdrake.pm_.c:2658
+#: ../../printerdrake.pm_.c:2859
msgid "Which printing system (spooler) do you want to use?"
msgstr "Liema sistema ta' printjar (spooler) tixtieq tuĆŒa?"
-#: ../../printerdrake.pm_.c:2691
+#: ../../printerdrake.pm_.c:2895
#, c-format
msgid "Configuring printer \"%s\"..."
msgstr "Qed nikkonfigura l-printer \"%s\"..."
-#: ../../printerdrake.pm_.c:2704
+#: ../../printerdrake.pm_.c:2909
msgid "Installing Foomatic..."
msgstr "Qed ninstalla Foomatic..."
-#: ../../printerdrake.pm_.c:2769 ../../printerdrake.pm_.c:2808
-#: ../../printerdrake.pm_.c:3192 ../../printerdrake.pm_.c:3262
+#: ../../printerdrake.pm_.c:2979 ../../printerdrake.pm_.c:3020
+#: ../../printerdrake.pm_.c:3417 ../../printerdrake.pm_.c:3490
msgid "Printer options"
msgstr "GħaĆŒliet tal-printer"
-#: ../../printerdrake.pm_.c:2778
-msgid "Preparing PrinterDrake..."
+#: ../../printerdrake.pm_.c:2989
+#, fuzzy
+msgid "Preparing Printerdrake..."
msgstr "Qed jiÄĄi preparat PrinterDrake..."
-#: ../../printerdrake.pm_.c:2795 ../../printerdrake.pm_.c:3349
+#: ../../printerdrake.pm_.c:3007 ../../printerdrake.pm_.c:3580
msgid "Configuring applications..."
msgstr "Qed nikkonfigura programmi..."
-#: ../../printerdrake.pm_.c:2815
+#: ../../printerdrake.pm_.c:3027
msgid "Would you like to configure printing?"
-msgstr "Tixtieq tissettja l-printing?"
+msgstr "Tixtieq tissettja l-ipprintjar?"
-#: ../../printerdrake.pm_.c:2827
+#: ../../printerdrake.pm_.c:3039
msgid "Printing system: "
msgstr "Sistema ta' pprintjar: "
-#: ../../printerdrake.pm_.c:2875
-msgid "Printerdrake"
-msgstr "Printerdrake"
-
-#: ../../printerdrake.pm_.c:2879
+#: ../../printerdrake.pm_.c:3099
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; to view information about it; "
"or to make a printer on a remote CUPS server available for Star Office/"
-"OpenOffice.org."
+"OpenOffice.org/GIMP."
msgstr ""
-"Dawn huma l-printers ikkonfigurati. Klikkja-djoppju fuq printer biex "
+"Dawn huma l-printers ikkonfigurati. Klikkja-doppju fuq printer biex "
"tbiddillu l-konfigurazzjoni, biex tissettjah bħala printer impliċitu, "
"biextara informazzjoni dwaru, jew biex tagħmel printer remot CUPS "
-"aċċessibbli minn StarOffice / OpenOffice.org."
+"aċċessibbli minn StarOffice / OpenOffice.org/GIMP."
-#: ../../printerdrake.pm_.c:2880
+#: ../../printerdrake.pm_.c:3100
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; or to view information about "
"it."
msgstr ""
-"Dawn huma l-printers ikkonfigurati. Klikkja-djoppju fuq printer biex "
+"Dawn huma l-printers ikkonfigurati. Klikkja-doppju fuq printer biex "
"tbiddillu l-konfigurazzjoni, biex tissettjah bħala printer impliċitu, jew "
"tara informazzjoni dwaru."
-#: ../../printerdrake.pm_.c:2906
+#: ../../printerdrake.pm_.c:3127
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr "ErÄĄa' aqra l-lista ta' printers (biex issib printers remoti CUPS)"
-#: ../../printerdrake.pm_.c:2924
+#: ../../printerdrake.pm_.c:3145
msgid "Change the printing system"
msgstr "Ibdel is-sistema tal-ipprintjar"
-#: ../../printerdrake.pm_.c:2929 ../../standalone/drakconnect_.c:277
+#: ../../printerdrake.pm_.c:3150 ../../standalone/drakconnect_.c:277
msgid "Normal Mode"
msgstr "ModalitĂ  normali"
-#: ../../printerdrake.pm_.c:3085 ../../printerdrake.pm_.c:3135
-#: ../../printerdrake.pm_.c:3343
+#: ../../printerdrake.pm_.c:3310 ../../printerdrake.pm_.c:3360
+#: ../../printerdrake.pm_.c:3573
msgid "Do you want to configure another printer?"
msgstr "Trid tikkonfigura dan il-printer?"
-#: ../../printerdrake.pm_.c:3170
+#: ../../printerdrake.pm_.c:3395
msgid "Modify printer configuration"
msgstr "Biddel il-konfigurazzjoni tal-printer"
-#: ../../printerdrake.pm_.c:3172
+#: ../../printerdrake.pm_.c:3397
#, c-format
msgid ""
"Printer %s\n"
@@ -9010,100 +9379,102 @@ msgstr ""
"Printer %s\n"
"Xi trid tagħmel b'dan il-printer?"
-#: ../../printerdrake.pm_.c:3176
+#: ../../printerdrake.pm_.c:3401
msgid "Do it!"
msgstr "Agħmel dan!"
-#: ../../printerdrake.pm_.c:3181 ../../printerdrake.pm_.c:3236
+#: ../../printerdrake.pm_.c:3406 ../../printerdrake.pm_.c:3461
msgid "Printer connection type"
msgstr "Tip ta' konnessjoni tal-printer"
-#: ../../printerdrake.pm_.c:3182 ../../printerdrake.pm_.c:3240
+#: ../../printerdrake.pm_.c:3407 ../../printerdrake.pm_.c:3465
msgid "Printer name, description, location"
msgstr "Isem, deskrizzjoni u fejn qiegħed il-printer"
-#: ../../printerdrake.pm_.c:3184 ../../printerdrake.pm_.c:3255
+#: ../../printerdrake.pm_.c:3409 ../../printerdrake.pm_.c:3483
msgid "Printer manufacturer, model, driver"
-msgstr "Ditta, mudell u driver tal-printer"
+msgstr "Ditta, mudell u drajver tal-printer"
-#: ../../printerdrake.pm_.c:3185 ../../printerdrake.pm_.c:3256
+#: ../../printerdrake.pm_.c:3410 ../../printerdrake.pm_.c:3484
msgid "Printer manufacturer, model"
msgstr "Ditta u mudell tal-printer"
-#: ../../printerdrake.pm_.c:3194 ../../printerdrake.pm_.c:3266
+#: ../../printerdrake.pm_.c:3419 ../../printerdrake.pm_.c:3494
msgid "Set this printer as the default"
msgstr "Nissettja dan bħala l-printer impliċitu"
-#: ../../printerdrake.pm_.c:3196 ../../printerdrake.pm_.c:3271
-msgid "Add this printer to Star Office/OpenOffice.org"
+#: ../../printerdrake.pm_.c:3421 ../../printerdrake.pm_.c:3499
+msgid "Add this printer to Star Office/OpenOffice.org/GIMP"
msgstr "ƻid dan il-printer ma' StarOffice/OpenOffice"
-#: ../../printerdrake.pm_.c:3197 ../../printerdrake.pm_.c:3280
-msgid "Remove this printer from Star Office/OpenOffice.org"
+#: ../../printerdrake.pm_.c:3422 ../../printerdrake.pm_.c:3508
+msgid "Remove this printer from Star Office/OpenOffice.org/GIMP"
msgstr "Neħħi dan il-printer minn StarOffice/OpenOffice"
-#: ../../printerdrake.pm_.c:3198 ../../printerdrake.pm_.c:3289
+#: ../../printerdrake.pm_.c:3423 ../../printerdrake.pm_.c:3517
msgid "Print test pages"
msgstr "Nipprintja paÄĄni biex nittestja"
-#: ../../printerdrake.pm_.c:3199 ../../printerdrake.pm_.c:3291
+#: ../../printerdrake.pm_.c:3424 ../../printerdrake.pm_.c:3519
msgid "Know how to use this printer"
msgstr "Inkun naf kif nuĆŒa dan il-printer"
-#: ../../printerdrake.pm_.c:3201 ../../printerdrake.pm_.c:3293
+#: ../../printerdrake.pm_.c:3426 ../../printerdrake.pm_.c:3521
msgid "Remove printer"
msgstr "Neħħi printer"
-#: ../../printerdrake.pm_.c:3245
+#: ../../printerdrake.pm_.c:3472
#, c-format
msgid "Removing old printer \"%s\"..."
msgstr "Qed inneħħi l-printer antik \"%s\"..."
-#: ../../printerdrake.pm_.c:3269
+#: ../../printerdrake.pm_.c:3497
msgid "Default printer"
msgstr "Printer impliċitu"
-#: ../../printerdrake.pm_.c:3270
+#: ../../printerdrake.pm_.c:3498
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr "Il-printer \"%s\" issa ssettjat bħala printer impliċitu"
-#: ../../printerdrake.pm_.c:3274 ../../printerdrake.pm_.c:3277
-msgid "Adding printer to Star Office/OpenOffice.org"
+#: ../../printerdrake.pm_.c:3502 ../../printerdrake.pm_.c:3505
+msgid "Adding printer to Star Office/OpenOffice.org/GIMP"
msgstr "Qed jiÄĄi miĆŒjud printer ma' StarOffice/OpenOffice"
-#: ../../printerdrake.pm_.c:3275
+#: ../../printerdrake.pm_.c:3503
#, c-format
msgid ""
-"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
+"The printer \"%s\" was successfully added to Star Office/OpenOffice.org/GIMP."
msgstr "Il-printer \"%s\" ÄĄie miĆŒjud ma' StarOffice/OpenOffice"
-#: ../../printerdrake.pm_.c:3278
+#: ../../printerdrake.pm_.c:3506
#, c-format
-msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
+msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org/GIMP."
msgstr "Ma rnexxielix inĆŒid il-printer \"%s\" ma' StarOffice/OpenOffice"
-#: ../../printerdrake.pm_.c:3283 ../../printerdrake.pm_.c:3286
-msgid "Removing printer from Star Office/OpenOffice.org"
-msgstr "Qed nitneħħa printer minn StarOffice/OpenOffice"
+#: ../../printerdrake.pm_.c:3511 ../../printerdrake.pm_.c:3514
+msgid "Removing printer from Star Office/OpenOffice.org/GIMP"
+msgstr "Qed jitneħħa printer minn StarOffice/OpenOffice"
-#: ../../printerdrake.pm_.c:3284
+#: ../../printerdrake.pm_.c:3512
#, c-format
msgid ""
-"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
+"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org/"
+"GIMP."
msgstr "Il-printer \"%s\" tneħħa minn StarOffice/OpenOffice"
-#: ../../printerdrake.pm_.c:3287
+#: ../../printerdrake.pm_.c:3515
#, c-format
-msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
+msgid ""
+"Failed to remove the printer \"%s\" from Star Office/OpenOffice.org/GIMP."
msgstr "Ma rnexxielix inneħħi l-printer \"%s\" minn StarOffice/OpenOffice"
-#: ../../printerdrake.pm_.c:3295
+#: ../../printerdrake.pm_.c:3523
#, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr "ƻgur li trid tneħħi l-printer \"%s\"?"
-#: ../../printerdrake.pm_.c:3297
+#: ../../printerdrake.pm_.c:3527
#, c-format
msgid "Removing printer \"%s\"..."
msgstr "Qed jitneħħa l-printer \"%s\"..."
@@ -9123,7 +9494,7 @@ msgstr ""
"Merħba għall-għodda tal-konfigurazzjoni tal-proxy.\n"
"\n"
"Hawn, tista' tissettja l-proxies ftp u http, bil-\n"
-"login u password jew minngħajrhom.\n"
+"login u password jew mingħajrhom.\n"
#: ../../proxy.pm_.c:38
msgid ""
@@ -9179,7 +9550,7 @@ msgstr "password"
#: ../../proxy.pm_.c:84
msgid "re-type password"
-msgstr "erÄĄa ttajpja password"
+msgstr "erÄĄa' ttajpja password"
#: ../../proxy.pm_.c:88
msgid "The passwords don't match. Try again!"
@@ -9222,7 +9593,7 @@ msgid ""
"It can also be used for shutting down the machine when the battery is low."
msgstr ""
"apmd jintuĆŒa biex tiċċekkja l-istatus tal-batterija ta' laptop u ĆŒĆŒomm\n"
-"rikordju fis-syslog. Jista jintuĆŒa wkoll biex jintefa' awtomatikament\n"
+"rikordju fis-syslog. Jista' jintuĆŒa wkoll biex jintefa' awtomatikament\n"
"beta l-batterija titbaxxa wisq."
#: ../../services.pm_.c:18
@@ -9288,7 +9659,7 @@ msgid ""
"Launch packet filtering for Linux kernel 2.2 series, to set\n"
"up a firewall to protect your machine from network attacks."
msgstr ""
-"ÄŠaddem filtering ta' pakketti għall-kernel verĆŒjoni 2.2 tal-Linux,\n"
+"ÄŠaddem filtrar ta' pakketti għall-kernel verĆŒjoni 2.2 tal-Linux,\n"
"biex tissettja firewall biex tipproteÄĄi l-kompjuter minn attakki \n"
"min-network"
@@ -9352,7 +9723,7 @@ msgid ""
"Manager/Windows), and NCP (NetWare) mount points."
msgstr ""
"Jimmonta u jiĆŒmonta l-filesystems kollha NFS (Unix/Linux), \n"
-"SMB (LANmanager/Windows) jew NCP (Netware)."
+"SMB (LANmanager/Windows) jew NCP (NetWare)."
#: ../../services.pm_.c:50
msgid ""
@@ -9448,7 +9819,7 @@ msgstr ""
"Id-daemon routed jippermetti lit-tabella tar-\"routing\" li tiÄĄi\n"
"aÄĄÄĄornata awtomatikament bil-protokoll RIP. Filwaqt li l-protokoll RIP\n"
"huwa komuni fuq networks ĆŒgħar, huma meħtieÄĄa protokolli ta' routing\n"
-"iĆŒjed sofistikati fuq networks kumplikati."
+"iĆŒjed sofistikati fuq networks komplikati."
#: ../../services.pm_.c:74
msgid ""
@@ -9488,7 +9859,7 @@ msgstr ""
#: ../../services.pm_.c:83
msgid "Load the drivers for your usb devices."
-msgstr "Tella' d-drivers għall-apparat usb"
+msgstr "Tella' d-drajvers għall-apparat usb"
#: ../../services.pm_.c:84
msgid "Starts the X Font Server (this is mandatory for XFree to run)."
@@ -9510,7 +9881,7 @@ msgstr "Internet"
msgid "File sharing"
msgstr "Qsim ta' fajls"
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1669
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1744
msgid "System"
msgstr "Sistema"
@@ -9563,15 +9934,15 @@ msgstr "Ibda"
msgid "Stop"
msgstr "Ieqaf"
-#: ../../share/advertising/00-thanks.pl_.c:9
-msgid "Thank you for choosing Mandrake Linux 8.2"
-msgstr "Grazzi talli għaĆŒilt Mandrake Linux 8.2"
+#: ../../share/advertising/01-thanks.pl_.c:9
+msgid "Thank you for choosing Mandrake Linux 9.0"
+msgstr "Grazzi talli għaĆŒilt Mandrake Linux 9.0"
-#: ../../share/advertising/00-thanks.pl_.c:10
+#: ../../share/advertising/01-thanks.pl_.c:10
msgid "Welcome to the Open Source world"
msgstr "Merħba għad-dinja Sors Miftuħ"
-#: ../../share/advertising/00-thanks.pl_.c:11
+#: ../../share/advertising/01-thanks.pl_.c:11
msgid ""
"The success of MandrakeSoft is based upon the principle of Free Software. "
"Your new operating system is the result of collaborative work on the part of "
@@ -9581,202 +9952,235 @@ msgstr ""
"Is-sistema operattiva ĥdida tiegħek hija frott il-ħidma u koperazzjoni min-"
"naħa tal-kommunità dinjija tal-Linux."
-#: ../../share/advertising/01-gnu.pl_.c:9
-msgid "Join the Free Software world"
+#: ../../share/advertising/02-community.pl_.c:9
+msgid "Get involved in the Free Software world"
msgstr "Ingħaqad mad-dinja ta' Softwer Ċieles"
-#: ../../share/advertising/01-gnu.pl_.c:10
+#: ../../share/advertising/02-community.pl_.c:10
+msgid "Want to know more about the Open Source community?"
+msgstr ""
+
+#: ../../share/advertising/02-community.pl_.c:11
msgid ""
-"Get to know the Open Source community and become a member. Learn, teach, and "
-"help others by joining the many discussion forums that you will find in our "
-"\"Community\" webpages"
+"To share your own knowledge and help build Linux tools, join the discussions "
+"forum you'll find on our \"Community\" webpages"
msgstr ""
"Sir af lill-kommunità Sors Miftuħ u sir membru. Tgħallem, għallem u għin "
"lill-oħrajn billi tingħaqad fid-diversi fora li ssib fuq il-paĥni tal-web "
"għall-kommunità tagħna."
-#: ../../share/advertising/02-internet.pl_.c:9
-msgid "Internet and Messaging"
-msgstr "Internet u MessaÄĄÄĄi"
+#: ../../share/advertising/03-internet.pl_.c:9
+#, fuzzy
+msgid "Get the most from the Internet"
+msgstr "Aqbad ma' l-internet"
-#: ../../share/advertising/02-internet.pl_.c:10
+#: ../../share/advertising/03-internet.pl_.c:10
msgid ""
-"Mandrake Linux 8.2 provides the best software to access everything the "
-"Internet has to offer: Surf the web & view animations with Mozilla and "
-"Konqueror, exchange email & organize your personal information with "
-"Evolution and Kmail, and much more"
+"Mandrake Linux 9.0 has selected the best software for you. Surf the Web and "
+"view animations with Mozilla and Konqueror, or read your mail and handle "
+"your personal information with Evolution and Kmail"
msgstr ""
-"Mandrake Linux 8.2 jipprovdi l-aqwa softwer biex taċċessa kollux li "
+"Mandrake Linux 9.0 jipprovdi l-aqwa softwer biex taċċessa kollox li "
"joffrilek l-internet. BrawĆŒja l-web u ara animazzjonijiet bil-Mozilla u "
"Konqueror, ibgħat imejl u organizza l-informazzjoni personali tiegħek bl-"
"Evolution u KMail, u ħafna iĆŒjed!"
-#: ../../share/advertising/03-graphic.pl_.c:9
-msgid "Multimedia and Graphics"
-msgstr "Multimedia u Grafika"
+#: ../../share/advertising/04-multimedia.pl_.c:9
+msgid "Discover the most up-to-date graphics and multimedia tools!"
+msgstr ""
-#: ../../share/advertising/03-graphic.pl_.c:10
+#: ../../share/advertising/04-multimedia.pl_.c:10
+msgid "Push multimedia to its limits!"
+msgstr ""
+
+#: ../../share/advertising/04-multimedia.pl_.c:11
+#, fuzzy
msgid ""
-"Mandrake Linux 8.2 lets you push your multimedia computer to its limits! Use "
-"the latest software to play music and audio files, edit and organize your "
-"images and photos, watch TV and videos, and much more"
+"Mandrake Linux 9.0 enables you to use the very latest software to play audio "
+"files, edit and handle your images or photos, and play videos"
msgstr ""
-"Mandrake Linux 8.2 iħallik tħaddem il-kompjuter multimedia tiegħek sal-"
+"Mandrake Linux 8.2 iħallik tħaddem il-kompjuter multimedju tiegħek sal-"
"limiti! UĆŒa l-aħħar programmi biex tisma' muĆŒika u awdjo, editja u organizza "
"ritratti u stampi, ara TV u videos, u ħafna iĆŒjed"
-#: ../../share/advertising/04-develop.pl_.c:9
-msgid "Development"
-msgstr "ƻviluppar"
+#: ../../share/advertising/05-games.pl_.c:9
+msgid "Games"
+msgstr "Logħob"
-#: ../../share/advertising/04-develop.pl_.c:10
+#: ../../share/advertising/05-games.pl_.c:10
+#, fuzzy
msgid ""
-"Mandrake Linux 8.2 is the ultimate development platform. Discover the power "
-"of the GNU gcc compiler as well as the best Open Source development "
-"environments"
+"Mandrake Linux 9.0 provides the best Open Source games - arcade, action, "
+"cards, sports, strategy..."
msgstr ""
-"Mandrake Linux 8.2 huwa l-aqwa pjattaforma għall-iĆŒviluppar. Skopri l-qawwa "
-"tal-kompilatur GNU gcc kif ukoll l-aqwa ambjenti ta' ĆŒviluppar Sors Miftuħ."
+"Mandrake Linux 8.2 joffri l-aħjar logħbiet b'sors miftuħ - arcade, azzjoni, "
+"karti, sports, strateÄĄija..."
-#: ../../share/advertising/05-contcenter.pl_.c:9
-#: ../../standalone/drakbug_.c:69
+#: ../../share/advertising/06-mcc.pl_.c:9 ../../standalone/drakbug_.c:69
msgid "Mandrake Control Center"
msgstr "Ċentru tal-Kontroll Mandrake"
-#: ../../share/advertising/05-contcenter.pl_.c:10
+#: ../../share/advertising/06-mcc.pl_.c:10
+#, fuzzy
msgid ""
-"The Mandrake Linux 8.2 Control Center is a one-stop location for fully "
-"customizing and configuring your Mandrake system"
+"Mandrake Linux 9.0 provides a powerful tool to fully customize and configure "
+"your machine"
msgstr ""
"Iċ-Ċentru tal-Kontroll Mandrake Linux huwa post wieħed minn fejn tista' "
"tippersonalizza u tikkonfigura s-sistema Mandrake tiegħek"
-#: ../../share/advertising/06-user.pl_.c:9
+#: ../../share/advertising/07-desktop.pl_.c:9
msgid "User interfaces"
-msgstr "User interfaces"
+msgstr "Interfaċċji tal-user"
-#: ../../share/advertising/06-user.pl_.c:10
+#: ../../share/advertising/07-desktop.pl_.c:10
msgid ""
-"Mandrake Linux 8.2 provides 11 different graphical desktop environments and "
-"window managers to choose from including GNOME 1.4, KDE 2.2.2, Window Maker "
-"0.8, and the rest"
+"Mandrake Linux 9.0 provides 11 user interfaces which can be fully modified: "
+"KDE 3, Gnome 2, WindowMaker..."
msgstr ""
-"Mandrake Linux 8.2 jipprovdilek 11-il ambjent tad-destkop grafiku mnejn "
-"tagÄ§ĆŒel, inkluĆŒ GNOME 1.4, KDE 2.2.2, WindowMaker 0.8 u oħrajn"
-#: ../../share/advertising/07-server.pl_.c:9
-msgid "Server Software"
-msgstr "Programmi għal Server"
+#: ../../share/advertising/08-development.pl_.c:9
+#, fuzzy
+msgid "Development simplified"
+msgstr "ƻviluppar"
-#: ../../share/advertising/07-server.pl_.c:10
+#: ../../share/advertising/08-development.pl_.c:10
+msgid "Mandrake Linux 9.0 is the ultimate development platform"
+msgstr ""
+
+#: ../../share/advertising/08-development.pl_.c:11
+#, fuzzy
+msgid ""
+"Use the full power of the GNU gcc 3 compiler as well as the best Open Source "
+"development environments"
+msgstr ""
+"Mandrake Linux 8.2 huwa l-aqwa pjattaforma għall-iĆŒviluppar. Skopri l-qawwa "
+"tal-kompilatur GNU gcc kif ukoll l-aqwa ambjenti ta' ĆŒviluppar Sors Miftuħ."
+
+#: ../../share/advertising/09-server.pl_.c:9
+msgid "Turn your machine into a reliable server"
+msgstr ""
+
+#: ../../share/advertising/09-server.pl_.c:10
+#, fuzzy
msgid ""
-"Transform your machine into a powerful server with just a few clicks of the "
-"mouse: Web server, email, firewall, router, file and print server, ..."
+"Transform your machine into a powerful server in a few clicks of your mouse: "
+"Web server, mail, firewall, router, file and print server..."
msgstr ""
-"Ibdel il-kompjuter tiegħel f'server b'saħħtu bi ftit azzjonijiet tal-maws: "
+"Ibdel il-kompjuter tiegħek f'server b'saħħtu bi ftit azzjonijiet tal-maws: "
"Servers tal-web, imejl, firewall, router, fajls u printjar, ..."
-#: ../../share/advertising/08-games.pl_.c:9
-msgid "Games"
-msgstr "Logħob"
+#: ../../share/advertising/10-mnf.pl_.c:9
+msgid "Optimize your security"
+msgstr ""
-#: ../../share/advertising/08-games.pl_.c:10
+#: ../../share/advertising/10-mnf.pl_.c:10
msgid ""
-"Mandrake Linux 8.2 provides the best Open Source games - arcade, action, "
-"cards, sports, strategy, ..."
+"The MandrakeSecurity range includes the Multi Network Firewall product (M.N."
+"F.)"
msgstr ""
-"Mandrake Linux 8.2 joffri l-aħjar logħbiet b'sors miftuħ - arcade, azzjoni, "
-"karti, sports, strateÄĄija..."
-#: ../../share/advertising/09-MDKcampus.pl_.c:9
-msgid "MandrakeCampus"
-msgstr "MandrakeCampus"
+#: ../../share/advertising/10-mnf.pl_.c:11
+msgid ""
+"This firewall product includes network features which allow you to fulfill "
+"all your security needs"
+msgstr ""
-#: ../../share/advertising/09-MDKcampus.pl_.c:10
+#: ../../share/advertising/10-mnf.pl_.c:12
+msgid "This product is available on MandrakeStore website"
+msgstr ""
+
+#: ../../share/advertising/11-mdkstore.pl_.c:9
+msgid "The official MandrakeSoft store"
+msgstr ""
+
+#: ../../share/advertising/11-mdkstore.pl_.c:10
+#, fuzzy
msgid ""
-"Would you like to learn Linux simply, quickly, and for free? MandrakeSoft "
-"provides free Linux training, as well as a way to test your progress, at "
-"MandrakeCampus -- our online training center"
+"Our full range of Linux solutions, as well as special offers on products and "
+"'goodies', are available online at our e-store"
msgstr ""
-"Tixtieq titgħallem il-Linux b'mod sempliċi, malajr u b'xejn? MandrakeSoft "
-"jipprovdu stħarriĥ fuq il-Linux, kif ukoll mezz biex tittestja l-progress "
-"tiegħek fuq MandrakeCampus - iċ-ċentru ta' taħriġ elettroniku tagħna"
+"Varjetà sħiħa ta' soluzzjonijiet bil-Linux, kif ukoll offerti speċjali fuq "
+"il-prodotti huma disponibbli online fuq il-ħanut elettroniku tagħna."
-#: ../../share/advertising/10-MDKexpert.pl_.c:9
-msgid "MandrakeExpert"
-msgstr "MandrakeExpert"
+#: ../../share/advertising/12-mdkstore.pl_.c:9
+msgid "Strategic partners"
+msgstr ""
-#: ../../share/advertising/10-MDKexpert.pl_.c:10
+#: ../../share/advertising/12-mdkstore.pl_.c:10
msgid ""
-"Quality support from the Linux Community, and from MandrakeSoft, is just "
-"around the corner. And if you're already a Linux veteran, become an \"Expert"
-"\" and share your knowledge at our support website"
+"MandrakeSoft works alongside a selection of companies offering professional "
+"solutions compatible with Mandrake Linux; a list of these partners is "
+"available on the MandrakeStore"
msgstr ""
-"Għajnuna ta' kwalità mill-Komunità Linux, u minngħand MandrakeSoft, huwa "
-"pass 'il bogħod. U jekk int diĥà veteran tal-Linux, tista' ssir \"Espert\" u "
-"taqsam it-tagħlim tiegħek fil-website ta' sapport tagħna."
-#: ../../share/advertising/11-consul.pl_.c:9
-msgid "MandrakeConsulting"
-msgstr "MandrakeConsulting"
+#: ../../share/advertising/13-mdkcampus.pl_.c:9
+msgid "Discover MandrakeSoft's training catalogue Linux-Campus"
+msgstr ""
-#: ../../share/advertising/11-consul.pl_.c:10
+#: ../../share/advertising/13-mdkcampus.pl_.c:10
msgid ""
-"For all of your IT projects, our consultants are ready to analyze your "
-"requirements and offer a customized solution. Benefit from MandrakeSoft's "
-"vast experience as a Linux producer to provide a true IT alternative for "
-"your business organization"
+"The training program has been create to respond to the needs of both users "
+"and experts (Network and System administrations)"
msgstr ""
-"Għall-proĥetti kollha tal-IT tiegħek, il-konsulenti tagħna lesti janalizzaw "
-"il-ħtiĥijiet tiegħek u joffrulek soluzzjoni personalizzata. Ibbenefika mill-"
-"esperjenza vasta ta' MandrakeSoft bħala produttur tal-Linux biex tipprovdi "
-"soluzzjoni sħiħa alternattiva għad-ditta tiegħek"
-#: ../../share/advertising/12-MDKstore.pl_.c:9
-msgid "MandrakeStore"
-msgstr "MandrakeStore"
+#: ../../share/advertising/13-mdkcampus.pl_.c:11
+msgid "Certify yourself on Linux"
+msgstr ""
-#: ../../share/advertising/12-MDKstore.pl_.c:10
+#: ../../share/advertising/13-mdkcampus.pl_.c:12
msgid ""
-"A full range of Linux solutions, as well as special offers on products and "
-"'goodies', are available online at our e-store"
+"Whether you choose to teach yourself online or via our network of training "
+"partners, the Linux-Campus catalogue prepares you for the acknowledged LPI "
+"certification program (worldwide professional technical certification)"
msgstr ""
-"Varjetà sħiħa ta' soluzzjonijiet bil-Linux, kif ukoll offerti speċjali fuq "
-"il-prodotti huma disponibbli online fuq il-ħanut elettroniku tagħna."
-#: ../../share/advertising/13-Nvert.pl_.c:9
+#: ../../share/advertising/14-mdkexpert.pl_.c:9
+#, fuzzy
+msgid "Become a MandrakeExpert"
+msgstr "MandrakeExpert"
+
+#: ../../share/advertising/14-mdkexpert.pl_.c:10
msgid ""
-"For more information on MandrakeSoft's Professional Services and commercial "
-"offerings, please see the following web page:"
+"Find the solutions to your problems via MandrakeSoft's online support "
+"platform"
+msgstr ""
+
+#: ../../share/advertising/14-mdkexpert.pl_.c:11
+msgid ""
+"Join the MandrakeSoft support teams and the Linux Community online to share "
+"your knowledge and help others by becoming a recognized Expert on the online "
+"technical support website:"
+msgstr ""
+
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:9
+#, fuzzy
+msgid "MandrakeExpert Corporate"
+msgstr "MandrakeExpert"
+
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:10
+msgid "An online platform to respond to company's specific support needs"
msgstr ""
-"Għal iĆŒjed tagħrif dwar is-servizzi professjonali ta' MandrakeSoft kif ukoll "
-"offerti kummerċjali, jekk jogħġbok ara din il-website:"
-#: ../../share/advertising/13-Nvert.pl_.c:11
-msgid "http://www.mandrakesoft.com/sales/contact"
-msgstr "http://www.mandrakesoft.com/sales/contact"
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:11
+msgid ""
+"All incidents will be followed up by a single qualified MandrakeSoft "
+"technical expert."
+msgstr ""
-#: ../../standalone.pm_.c:40
+#: ../../standalone.pm_.c:41
msgid "Installing packages..."
msgstr "Qed ninstalla pakketti..."
-#: ../../standalone/XFdrake_.c:143
+#: ../../standalone/XFdrake_.c:145
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "Jekk jogħĥbok oħroĥ mid-desktop u agħfas Ctrl-Alt-Backspace"
-#: ../../standalone/XFdrake_.c:147
+#: ../../standalone/XFdrake_.c:149
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "Jekk jogħĥbok oħroĥ u erĥa' idħol fuq %s biex tara l-bidliet."
-#: ../../standalone/diskdrake_.c:81
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I'll try to go on blanking bad partitions"
-msgstr ""
-"Ma nistax naqra t-tabella tal-partizzjoni - hija mħarbta wisq :(\n"
-"ÄŠa nipprova nkompli nneħħi partizzjonijet Ä§ĆŒiena"
-
#: ../../standalone/drakTermServ_.c:188
msgid "Mandrake Terminal Server Configuration"
msgstr "Konfigurazzjoni tat-Terminal Server tal-Mandrake"
@@ -9799,7 +10203,7 @@ msgstr "Waqqaf server"
#: ../../standalone/drakTermServ_.c:233
msgid "Etherboot Floppy/ISO"
-msgstr "Etherboot Floppy/ISO"
+msgstr "Etherboot flopi/ISO"
#: ../../standalone/drakTermServ_.c:235
msgid "Net Boot Images"
@@ -9813,12 +10217,13 @@ msgstr "ƻid/neħħi users"
msgid "Add/Del Clients"
msgstr "ƻid/neħħi klijenti"
-#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3282
-#: ../../standalone/drakbackup_.c:3315 ../../standalone/drakbackup_.c:3341
-#: ../../standalone/drakbackup_.c:3368 ../../standalone/drakbackup_.c:3395
-#: ../../standalone/drakbackup_.c:3434 ../../standalone/drakbackup_.c:3455
-#: ../../standalone/drakbackup_.c:3482 ../../standalone/drakbackup_.c:3508
-#: ../../standalone/drakbackup_.c:3533 ../../standalone/drakfont_.c:700
+#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3930
+#: ../../standalone/drakbackup_.c:3963 ../../standalone/drakbackup_.c:3989
+#: ../../standalone/drakbackup_.c:4016 ../../standalone/drakbackup_.c:4043
+#: ../../standalone/drakbackup_.c:4082 ../../standalone/drakbackup_.c:4103
+#: ../../standalone/drakbackup_.c:4130 ../../standalone/drakbackup_.c:4160
+#: ../../standalone/drakbackup_.c:4186 ../../standalone/drakbackup_.c:4211
+#: ../../standalone/drakfont_.c:700
msgid "Help"
msgstr "Għajnuna"
@@ -9880,11 +10285,11 @@ msgstr "<- ÄŠassar klijent"
#: ../../standalone/drakTermServ_.c:741
msgid "dhcpd Config..."
-msgstr "Konfigurazznoji dhcpd..."
+msgstr "Konfigurazzjoni dhcpd..."
#: ../../standalone/drakTermServ_.c:888
msgid "Write Config"
-msgstr "Ikteb konfig."
+msgstr "Ikteb konf."
#: ../../standalone/drakTermServ_.c:946
msgid "Please insert floppy disk:"
@@ -9900,7 +10305,7 @@ msgstr "Il-flopi tista' titneħħa issa"
#: ../../standalone/drakTermServ_.c:955
msgid "No floppy drive available!"
-msgstr "M'hemmx drive flopi!"
+msgstr "M'hemmx drajv flopi!"
#: ../../standalone/drakTermServ_.c:964
#, c-format
@@ -9942,7 +10347,7 @@ msgid ""
"\n"
"Do you want to continue?"
msgstr ""
-"Int issa se tikkonfigura floppy Awto-installazzjoni. Din il-faċilità tista' "
+"Int issa se tikkonfigura flopi Awto-installazzjoni. Din il-faċilità tista' "
"tkun perikoluĆŒa u trid tintuĆŒa bil-galbu.\n"
"\n"
"B'din il-faċilità tista' tirrepeti l-installazzjoni li għamilt fuq dan il-"
@@ -9983,8 +10388,8 @@ msgstr ""
"\n"
"Il-parametri għall-awto-installazzjoni jinstabu fil-parti tax-xellug."
-#: ../../standalone/drakautoinst_.c:239 ../../standalone/drakgw_.c:548
-#: ../../standalone/scannerdrake_.c:105
+#: ../../standalone/drakautoinst_.c:239 ../../standalone/drakgw_.c:484
+#: ../../standalone/scannerdrake_.c:119
msgid "Congratulations!"
msgstr "Prosit!"
@@ -9993,7 +10398,7 @@ msgid ""
"The floppy has been successfully generated.\n"
"You may now replay your installation."
msgstr ""
-"Il-floppy ÄĄie ÄĄenerat kif mitlub.\n"
+"Il-flopi ÄĄie ÄĄenerat kif mitlub.\n"
"Issa tista' tirrepeti l-installazzjoni."
#: ../../standalone/drakautoinst_.c:278
@@ -10008,20 +10413,24 @@ msgstr "ƻid element"
msgid "Remove the last item"
msgstr "Neħħi l-aħħar element"
-#: ../../standalone/drakbackup_.c:625
+#: ../../standalone/drakbackup_.c:619
msgid "Cron not available yet as non-root"
msgstr ""
-#: ../../standalone/drakbackup_.c:731
+#: ../../standalone/drakbackup_.c:725
msgid "WARNING"
msgstr ""
-#: ../../standalone/drakbackup_.c:732
+#: ../../standalone/drakbackup_.c:726
#, fuzzy
msgid "FATAL"
msgstr "FAT"
-#: ../../standalone/drakbackup_.c:744
+#: ../../standalone/drakbackup_.c:727
+msgid "INFO"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:739
msgid ""
"\n"
" DrakBackup Report \n"
@@ -10031,7 +10440,7 @@ msgstr ""
" Rapport DrakBackup\n"
"\n"
-#: ../../standalone/drakbackup_.c:745
+#: ../../standalone/drakbackup_.c:740
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -10043,7 +10452,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:749
+#: ../../standalone/drakbackup_.c:744
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -10055,12 +10464,19 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:770 ../../standalone/drakbackup_.c:840
-#: ../../standalone/drakbackup_.c:894
+#: ../../standalone/drakbackup_.c:765 ../../standalone/drakbackup_.c:835
+#: ../../standalone/drakbackup_.c:889
msgid "Total progess"
msgstr "Progress totali"
-#: ../../standalone/drakbackup_.c:822
+#: ../../standalone/drakbackup_.c:788
+msgid ""
+"Sorry, perl-Expect is not installed/enabled. To use\n"
+"this feature, install perl-Expect and comment lines 772-774,\n"
+" as well as 788,789. Then uncomment line 787."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:817
#, c-format
msgid ""
"%s exists, delete?\n"
@@ -10073,16 +10489,41 @@ msgstr ""
"Twissija: Jekk diġà għamilt dan il-proċess, aktarx tkun trid tneħħi\n"
"dan il-muftieħ minn \"authorized_keys\" fuq is-server."
-#: ../../standalone/drakbackup_.c:831
+#: ../../standalone/drakbackup_.c:826
msgid "This may take a moment to generate the keys."
-msgstr "Dan jista' jieħu ftit tal-ħin sakemm jiĥĥenera l-imfietaħ."
+msgstr "Dan jista' jieħu ftit tal-ħin sakemm jiġġenera ċ-ċifrarji."
-#: ../../standalone/drakbackup_.c:838
+#: ../../standalone/drakbackup_.c:833
#, c-format
msgid "ERROR: Cannot spawn %s."
msgstr "PROBLEMA: Ma nistax inħaddem %s."
-#: ../../standalone/drakbackup_.c:865
+#: ../../standalone/drakbackup_.c:850
+#, c-format
+msgid "No password prompt on %s at port %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:851
+#, fuzzy, c-format
+msgid "Bad password on %s"
+msgstr "Ebda password"
+
+#: ../../standalone/drakbackup_.c:852
+#, c-format
+msgid "Permission denied transferring %s to %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:853
+#, fuzzy, c-format
+msgid "Can't find %s on %s"
+msgstr "Ma jistax jinfetaħ %s: %s\n"
+
+#: ../../standalone/drakbackup_.c:856
+#, c-format
+msgid "%s not responding"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:860
#, c-format
msgid ""
"Transfer successful\n"
@@ -10099,61 +10540,65 @@ msgstr ""
"\n"
"mingħajr ma jistaqsik għal password."
-#: ../../standalone/drakbackup_.c:908
+#: ../../standalone/drakbackup_.c:903
msgid "WebDAV remote site already in sync!"
msgstr ""
-#: ../../standalone/drakbackup_.c:912
+#: ../../standalone/drakbackup_.c:907
msgid "WebDAV transfer failed!"
msgstr ""
-#: ../../standalone/drakbackup_.c:934
+#: ../../standalone/drakbackup_.c:928
msgid "No CDR/DVDR in drive!"
msgstr ""
-#: ../../standalone/drakbackup_.c:938
+#: ../../standalone/drakbackup_.c:932
msgid "Does not appear to be recordable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:942
+#: ../../standalone/drakbackup_.c:936
msgid "Not erasable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:981
-#, fuzzy
+#: ../../standalone/drakbackup_.c:975
msgid "This may take a moment to erase the media."
-msgstr "Dan jista' jieħu ftit tal-ħin sakemm jiĥĥenera l-imfietaħ."
+msgstr "Dan jista' jieħu ftit tal-ħin sakemm titħassar il-medja."
-#: ../../standalone/drakbackup_.c:1045
+#: ../../standalone/drakbackup_.c:1060
msgid "Permission problem accessing CD."
msgstr ""
-#: ../../standalone/drakbackup_.c:1144 ../../standalone/drakbackup_.c:1193
+#: ../../standalone/drakbackup_.c:1087
+#, c-format
+msgid "No tape in %s!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1199 ../../standalone/drakbackup_.c:1248
msgid "Backup system files..."
-msgstr "ÄŠu backup ta' fajls tas-sistema..."
+msgstr "ÄŠu kopja ta' sigurtĂ  tal-fajls tas-sistema..."
-#: ../../standalone/drakbackup_.c:1194 ../../standalone/drakbackup_.c:1261
+#: ../../standalone/drakbackup_.c:1249 ../../standalone/drakbackup_.c:1316
msgid "Hard Disk Backup files..."
-msgstr "Fajls ta' backup fil-ħard disk..."
+msgstr "Fajls ta' kopji tas-sigurtà fil-ħard disk..."
-#: ../../standalone/drakbackup_.c:1206
+#: ../../standalone/drakbackup_.c:1261
msgid "Backup User files..."
-msgstr "ÄŠu backup ta' fajls tal-users..."
+msgstr "ÄŠu kopja tas-sigurtĂ  ta' fajls tal-users..."
-#: ../../standalone/drakbackup_.c:1207
+#: ../../standalone/drakbackup_.c:1262
msgid "Hard Disk Backup Progress..."
-msgstr "Progress tal-backup lill-ħard disk..."
+msgstr "Progress tal-kopja tas-sigurtà lill-ħard disk..."
-#: ../../standalone/drakbackup_.c:1260
+#: ../../standalone/drakbackup_.c:1315
msgid "Backup Other files..."
-msgstr "Ċu backup ta' fajls oħrajn..."
+msgstr "Ċu kopja tas-sigurtà ta' fajls oħrajn..."
-#: ../../standalone/drakbackup_.c:1266
+#: ../../standalone/drakbackup_.c:1321
#, fuzzy
msgid "No changes to backup!"
msgstr "UĆŒa tape għall-backup"
-#: ../../standalone/drakbackup_.c:1282 ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1337 ../../standalone/drakbackup_.c:1360
#, c-format
msgid ""
"\n"
@@ -10164,16 +10609,16 @@ msgstr ""
"AttivitĂ  Drakbackup permezz ta' %s:\n"
"\n"
-#: ../../standalone/drakbackup_.c:1289
+#: ../../standalone/drakbackup_.c:1344
#, c-format
msgid ""
-"file list sent by FTP : %s\n"
+"file list sent by FTP: %s\n"
" "
msgstr ""
-"lista ta' fajls mibgħuta bl-FTP : %s\n"
+"lista ta' fajls mibgħuta bl-FTP: %s\n"
" "
-#: ../../standalone/drakbackup_.c:1292
+#: ../../standalone/drakbackup_.c:1347
msgid ""
"\n"
" FTP connection problem: It was not possible to send your backup files by "
@@ -10182,7 +10627,7 @@ msgstr ""
"\n"
" Problema fil-konnessjoni FTP. Ma kienx possibbli nibgħat il-fajls bl-FTP.\n"
-#: ../../standalone/drakbackup_.c:1310
+#: ../../standalone/drakbackup_.c:1365
msgid ""
"\n"
"Drakbackup activities via CD:\n"
@@ -10192,7 +10637,7 @@ msgstr ""
"AttivitĂ  Drakbackup permezz ta' CD:\n"
"\n"
-#: ../../standalone/drakbackup_.c:1315
+#: ../../standalone/drakbackup_.c:1370
msgid ""
"\n"
"Drakbackup activities via tape:\n"
@@ -10202,24 +10647,24 @@ msgstr ""
"AttivitĂ  Drakbackup permezz ta' tape:\n"
"\n"
-#: ../../standalone/drakbackup_.c:1324
+#: ../../standalone/drakbackup_.c:1379
msgid " Error during mail sending. \n"
msgstr " Problema biex jintbagħat imejl. \n"
-#: ../../standalone/drakbackup_.c:1346
+#: ../../standalone/drakbackup_.c:1404
msgid "Can't create catalog!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1459 ../../standalone/drakbackup_.c:1470
-#: ../../standalone/drakbackup_.c:1481 ../../standalone/drakfont_.c:1004
+#: ../../standalone/drakbackup_.c:1517 ../../standalone/drakbackup_.c:1528
+#: ../../standalone/drakfont_.c:1004
msgid "File Selection"
msgstr "GħaĆŒla ta' fajls"
-#: ../../standalone/drakbackup_.c:1486
+#: ../../standalone/drakbackup_.c:1556
msgid "Select the files or directories and click on 'Add'"
msgstr "AgÄ§ĆŒel fajls jew direttorju u klikkja \"Ć»id\""
-#: ../../standalone/drakbackup_.c:1525
+#: ../../standalone/drakbackup_.c:1600
msgid ""
"\n"
"Please check all options that you need.\n"
@@ -10227,26 +10672,26 @@ msgstr ""
"\n"
"Jekk jogħĥbok immarka l-għaĆŒliet kollha li għandek bĆŒonn.\n"
-#: ../../standalone/drakbackup_.c:1526
+#: ../../standalone/drakbackup_.c:1601
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
-"Dawn l-għaĆŒliet jieħdu backup u jirrestawraw il-fajls kollha tad-direttorju /"
-"etc.\n"
+"Dawn l-għaĆŒliet jieħdu kopja tas-sigurtĂ  u jirrestawraw il-fajls kollha tad-"
+"direttorju /etc.\n"
-#: ../../standalone/drakbackup_.c:1527
+#: ../../standalone/drakbackup_.c:1602
msgid "Backup your System files. (/etc directory)"
-msgstr "ÄŠu backup tal-fajls tas-sistema (direttorju /etc)"
+msgstr "ÄŠu kopja tas-sigurtĂ  tal-fajls tas-sistema (direttorju /etc)"
-#: ../../standalone/drakbackup_.c:1528
+#: ../../standalone/drakbackup_.c:1603
msgid "Use incremental backup (do not replace old backups)"
-msgstr "UĆŒa backups inkrementali (tħassarx l-antiki)"
+msgstr "UĆŒa kopji tas-sigurtĂ  inkrementali (tħassarx l-antiki)"
-#: ../../standalone/drakbackup_.c:1529
+#: ../../standalone/drakbackup_.c:1604
msgid "Do not include critical files (passwd, group, fstab)"
msgstr "Tinkludix fajls kritiċi (passwd, group, fstab)"
-#: ../../standalone/drakbackup_.c:1530
+#: ../../standalone/drakbackup_.c:1605
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
@@ -10254,47 +10699,53 @@ msgstr ""
"B'din l-għaĆŒla tkun tista' tirrestawra kwalinkwa verĆŒjoni\n"
"tad-direttorju /etc."
-#: ../../standalone/drakbackup_.c:1547
+#: ../../standalone/drakbackup_.c:1622
msgid "Please check all users that you want to include in your backup."
-msgstr "Jekk jogħĥbok agÄ§ĆŒel il-users kollha li trid tinkludi f'dan il-backup."
+msgstr ""
+"Jekk jogħĥbok agÄ§ĆŒel il-users kollha li trid tinkludi f'din il-kopja tas-"
+"sigurtĂ ."
-#: ../../standalone/drakbackup_.c:1574
+#: ../../standalone/drakbackup_.c:1649
msgid "Do not include the browser cache"
msgstr "Tinkludix il-cache tal-browser"
-#: ../../standalone/drakbackup_.c:1575 ../../standalone/drakbackup_.c:1599
+#: ../../standalone/drakbackup_.c:1650 ../../standalone/drakbackup_.c:1674
msgid "Use Incremental Backups (do not replace old backups)"
-msgstr "UĆŒa backups inkrementali (tħassarx l-antiki)"
+msgstr "UĆŒa kopji tas-sigurtĂ  inkrementali (tħassarx l-antiki)"
-#: ../../standalone/drakbackup_.c:1597 ../../standalone/drakfont_.c:1058
+#: ../../standalone/drakbackup_.c:1672 ../../standalone/drakfont_.c:1058
msgid "Remove Selected"
msgstr "Neħħi l-magÄ§ĆŒula"
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:1710
msgid "Windows (FAT32)"
msgstr "Windows (FAT32)"
-#: ../../standalone/drakbackup_.c:1674
+#: ../../standalone/drakbackup_.c:1749
msgid "Users"
msgstr "Users"
-#: ../../standalone/drakbackup_.c:1700
+#: ../../standalone/drakbackup_.c:1775
msgid "Use network connection to backup"
-msgstr "UĆŒa konnessjoni bin-network għall-backup"
+msgstr "UĆŒa konnessjoni bin-network għall-kopja tas-sigurtĂ "
+
+#: ../../standalone/drakbackup_.c:1777
+msgid "Net Method:"
+msgstr ""
-#: ../../standalone/drakbackup_.c:1706
+#: ../../standalone/drakbackup_.c:1781
msgid "Use Expect for SSH"
msgstr "UĆŒa \"Expect\" għal SSH"
-#: ../../standalone/drakbackup_.c:1707
+#: ../../standalone/drakbackup_.c:1782
msgid ""
"Create/Transfer\n"
"backup keys for SSH"
msgstr ""
-"Oħloq/ibgħat imfietaħ\n"
+"Oħloq/ibgħat ċifrarji\n"
"tal-backup għal SSH"
-#: ../../standalone/drakbackup_.c:1708
+#: ../../standalone/drakbackup_.c:1783
msgid ""
" Transfer \n"
"Now"
@@ -10302,43 +10753,43 @@ msgstr ""
" Ittrasferixxi \n"
"issa"
-#: ../../standalone/drakbackup_.c:1709
+#: ../../standalone/drakbackup_.c:1784
msgid "Keys in place already"
-msgstr "Imfietaħ diĥà f'posthom"
+msgstr "Ċifrarji diġà f'posthom"
-#: ../../standalone/drakbackup_.c:1713
+#: ../../standalone/drakbackup_.c:1788
msgid "Please enter the host name or IP."
msgstr "Jekk jogħĥbok daħħal l-isem jew IP tal-kompjuter."
-#: ../../standalone/drakbackup_.c:1718
+#: ../../standalone/drakbackup_.c:1793
msgid ""
"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
"Jekk jogħĥbok daħħal id-direttorju (jew modulu) \n"
-"fejn trid tpoÄĄÄĄi l-backup fuq il-kompjuter."
+"fejn trid tpoÄĄÄĄi l-kopja tas-sigurtĂ  fuq il-kompjuter."
-#: ../../standalone/drakbackup_.c:1723
+#: ../../standalone/drakbackup_.c:1798
msgid "Please enter your login"
msgstr "Jekk jogħĥbok daħħal il-login"
-#: ../../standalone/drakbackup_.c:1728
+#: ../../standalone/drakbackup_.c:1803
msgid "Please enter your password"
msgstr "Jekk jogħĥbok daħħal il-password"
-#: ../../standalone/drakbackup_.c:1734
+#: ../../standalone/drakbackup_.c:1809
msgid "Remember this password"
msgstr "Ftakar dan il-password"
-#: ../../standalone/drakbackup_.c:1745
+#: ../../standalone/drakbackup_.c:1820
msgid "Need hostname, username and password!"
msgstr "Hemm bĆŒonn kompjuter, user u password!"
-#: ../../standalone/drakbackup_.c:1841
+#: ../../standalone/drakbackup_.c:1915
msgid "Use CD/DVDROM to backup"
-msgstr "UĆŒa CD/DVDROM għall-backup"
+msgstr "UĆŒa CD/DVDROM għall-kopja tas-sigurtĂ "
-#: ../../standalone/drakbackup_.c:1844
+#: ../../standalone/drakbackup_.c:1918
msgid ""
"Please choose your CD/DVD device\n"
"(Press Enter to propogate settings to other fields.\n"
@@ -10349,40 +10800,36 @@ msgstr ""
"l-oħra. Din il-kaxxa m'hix meħtieĥa, hija biss għodda\n"
"biex timla' l-formola)"
-#: ../../standalone/drakbackup_.c:1849
+#: ../../standalone/drakbackup_.c:1923
msgid "Please choose your CD/DVD media size"
msgstr "Jekk jogħĥbok agÄ§ĆŒel id-daqs tas-CD/DVDs"
-#: ../../standalone/drakbackup_.c:1855
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1929
msgid "Please check for multisession CD"
-msgstr "Jekk jogħĥbok immarka hawn jekk qed tuĆŒa medja CDRW"
+msgstr "Jekk jogħĥbok immarka hawn għal CD multi-sessjoni"
-#: ../../standalone/drakbackup_.c:1861
+#: ../../standalone/drakbackup_.c:1935
msgid "Please check if you are using CDRW media"
msgstr "Jekk jogħĥbok immarka hawn jekk qed tuĆŒa medja CDRW"
-#: ../../standalone/drakbackup_.c:1867
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1941
msgid "Please check if you want to erase your RW media (1st Session)"
-msgstr "Jekk jogħĥbok immarka hawn jekk trid tħassar il-media qabel"
+msgstr ""
+"Jekk jogħĥbok immarka hawn jekk trid tħassar il-media RW (1el sessjoni)"
-#: ../../standalone/drakbackup_.c:1868
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1942
msgid " Erase Now "
-msgstr ""
-" Ittrasferixxi \n"
-"issa"
+msgstr " ÄŠassar issa "
-#: ../../standalone/drakbackup_.c:1874
+#: ../../standalone/drakbackup_.c:1948
msgid "Please check if you are using a DVDR device"
msgstr "Jekk jogħĥbok immarka hawn jekk qed tuĆŒa medja DVDR"
-#: ../../standalone/drakbackup_.c:1880
+#: ../../standalone/drakbackup_.c:1954
msgid "Please check if you are using a DVDRAM device"
msgstr "Jekk jogħĥbok immarka hawn jekk qed tuĆŒa medja DVDRAM"
-#: ../../standalone/drakbackup_.c:1893
+#: ../../standalone/drakbackup_.c:1967
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
@@ -10390,34 +10837,36 @@ msgstr ""
"Jekk jogħĥbok daħħal l-isem tal-apparat CD Writer\n"
" eĆŒ: 0,1,0"
-#: ../../standalone/drakbackup_.c:1926
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2000
msgid "No CD device defined!"
-msgstr "Fajl antik ta' apparat"
+msgstr "Apparat CD mhux speċifikat!"
-#: ../../standalone/drakbackup_.c:1974
+#: ../../standalone/drakbackup_.c:2048
msgid "Use tape to backup"
-msgstr "UĆŒa tape għall-backup"
+msgstr "UĆŒa tape għall-kopja tas-sigurtĂ "
-#: ../../standalone/drakbackup_.c:1977
+#: ../../standalone/drakbackup_.c:2051
msgid "Please enter the device name to use for backup"
-msgstr "Jekk jogħĥbok daħħal l-isem tal-apparat għall-backup"
+msgstr "Jekk jogħĥbok daħħal l-isem tal-apparat għall-kopja tas-sigurtà"
-#: ../../standalone/drakbackup_.c:1983
+#: ../../standalone/drakbackup_.c:2057
msgid "Please check if you want to use the non-rewinding device."
msgstr ""
"Jekk jogħĥbok immarka hawn jekk trid tuĆŒa l-apparat li ma jagħmilx rewind."
-#: ../../standalone/drakbackup_.c:1989
+#: ../../standalone/drakbackup_.c:2063
msgid "Please check if you want to erase your tape before the backup."
-msgstr "Jekk jogħĥbok immarka hawn jekk trid tħassar it-tape qabel il-backup"
+msgstr ""
+"Jekk jogħĥbok immarka hawn jekk trid tħassar it-tape qabel il-kopja tas-"
+"sigurtĂ "
-#: ../../standalone/drakbackup_.c:1995
+#: ../../standalone/drakbackup_.c:2069
msgid "Please check if you want to eject your tape after the backup."
-msgstr "Jekk jogħĥbok immarka hawn jekk trid toħroĥ it-tape wara l-backup."
+msgstr ""
+"Jekk jogħĥbok immarka hawn jekk trid toħroĥ it-tape wara l-kopja tas-sigurtà."
-#: ../../standalone/drakbackup_.c:2001 ../../standalone/drakbackup_.c:2074
-#: ../../standalone/drakbackup_.c:3025
+#: ../../standalone/drakbackup_.c:2075 ../../standalone/drakbackup_.c:2149
+#: ../../standalone/drakbackup_.c:3116
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
@@ -10425,71 +10874,71 @@ msgstr ""
"Jekk jogħĥbok daħħal id-daqs massimu\n"
" permess għal DrakBackup"
-#: ../../standalone/drakbackup_.c:2066
+#: ../../standalone/drakbackup_.c:2140
msgid "Please enter the directory to save to:"
msgstr "Jekk jogħĥbok daħħal id-direttorju fejn tikteb:"
-#: ../../standalone/drakbackup_.c:2080 ../../standalone/drakbackup_.c:3031
+#: ../../standalone/drakbackup_.c:2155 ../../standalone/drakbackup_.c:3122
msgid "Use quota for backup files."
-msgstr "UĆŒa kwota għall-fajls tal-backup."
+msgstr "UĆŒa kwota għall-fajls tal-kopja tas-sigurtĂ ."
-#: ../../standalone/drakbackup_.c:2146
+#: ../../standalone/drakbackup_.c:2221
msgid "Network"
msgstr "Network"
-#: ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:2226
msgid "CDROM / DVDROM"
msgstr "CDROM / DVDROM"
-#: ../../standalone/drakbackup_.c:2156
+#: ../../standalone/drakbackup_.c:2231
msgid "HardDrive / NFS"
msgstr "ÄŠard disk / NFS"
-#: ../../standalone/drakbackup_.c:2161
+#: ../../standalone/drakbackup_.c:2236
msgid "Tape"
msgstr "Tape"
-#: ../../standalone/drakbackup_.c:2175 ../../standalone/drakbackup_.c:2179
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2250 ../../standalone/drakbackup_.c:2254
+#: ../../standalone/drakbackup_.c:2258
msgid "hourly"
msgstr "kull siegħa"
-#: ../../standalone/drakbackup_.c:2176 ../../standalone/drakbackup_.c:2180
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2251 ../../standalone/drakbackup_.c:2255
+#: ../../standalone/drakbackup_.c:2258
msgid "daily"
msgstr "kuljum"
-#: ../../standalone/drakbackup_.c:2177 ../../standalone/drakbackup_.c:2181
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2252 ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2258
msgid "weekly"
msgstr "kull ĥimgħa"
-#: ../../standalone/drakbackup_.c:2178 ../../standalone/drakbackup_.c:2182
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2253 ../../standalone/drakbackup_.c:2257
+#: ../../standalone/drakbackup_.c:2258
msgid "monthly"
msgstr "kull xahar"
-#: ../../standalone/drakbackup_.c:2196
+#: ../../standalone/drakbackup_.c:2271
msgid "Use daemon"
msgstr "UĆŒa daemon"
-#: ../../standalone/drakbackup_.c:2201
+#: ../../standalone/drakbackup_.c:2276
msgid ""
"Please choose the time \n"
"interval between each backup"
msgstr ""
"Jekk jogħĥbok agÄ§ĆŒel l-intervall\n"
-"ta' ħin għal kull backup"
+"ta' ħin għal kull kopja tas-sigurtà"
-#: ../../standalone/drakbackup_.c:2207
+#: ../../standalone/drakbackup_.c:2282
msgid ""
"Please choose the\n"
"media for backup."
msgstr ""
"Jekk jogħĥbok agÄ§ĆŒel\n"
-"il-medja għall-backup."
+"il-medja għall-kopja tas-sigurtà."
-#: ../../standalone/drakbackup_.c:2214
+#: ../../standalone/drakbackup_.c:2289
msgid ""
"Please be sure that the cron daemon is included in your services. \n"
"\n"
@@ -10497,81 +10946,83 @@ msgid ""
msgstr ""
"Aċċerta li d-daemon \"cron\" huwa nkluĆŒ fis-servizzi. \n"
"\n"
-"Innota li bħalissa l-media \"net\" jollha juĆŒaw il-ħard drive ukoll."
+"Innota li bħalissa l-media \"net\" kollha juĆŒaw il-ħard disk ukoll."
-#: ../../standalone/drakbackup_.c:2251
-msgid "Send mail report after each backup to :"
-msgstr "Ibgħat rapport bl-imejl wara kull backup lill:"
+#: ../../standalone/drakbackup_.c:2326
+msgid "Send mail report after each backup to:"
+msgstr "Ibgħat rapport bl-imejl wara kull kopja tas-sigurtà lill:"
-#: ../../standalone/drakbackup_.c:2257
+#: ../../standalone/drakbackup_.c:2332
msgid "Delete Hard Drive tar files after backup to other media."
msgstr ""
+"Ċassar il-fajls tar minn fuq il-ħard disk wara l-kopja tas-sigurtà fuq media "
+"ieħor"
-#: ../../standalone/drakbackup_.c:2296
+#: ../../standalone/drakbackup_.c:2371
msgid "What"
msgstr "Xiex"
-#: ../../standalone/drakbackup_.c:2301
+#: ../../standalone/drakbackup_.c:2376
msgid "Where"
msgstr "Fejn"
-#: ../../standalone/drakbackup_.c:2306
+#: ../../standalone/drakbackup_.c:2381
msgid "When"
msgstr "Meta"
-#: ../../standalone/drakbackup_.c:2311
+#: ../../standalone/drakbackup_.c:2386
msgid "More Options"
msgstr "IĆŒjed għaĆŒliet"
-#: ../../standalone/drakbackup_.c:2330 ../../standalone/drakbackup_.c:3873
+#: ../../standalone/drakbackup_.c:2405 ../../standalone/drakbackup_.c:4530
msgid "Drakbackup Configuration"
msgstr "Konfigurazzjoni DrakBackup"
-#: ../../standalone/drakbackup_.c:2348
+#: ../../standalone/drakbackup_.c:2423
msgid "Please choose where you want to backup"
-msgstr "Jekk jogħĥbok agÄ§ĆŒel fejn trid tieħu backup"
+msgstr "Jekk jogħĥbok agÄ§ĆŒel fejn trid tieħu kopja tas-sigurtĂ "
-#: ../../standalone/drakbackup_.c:2350
+#: ../../standalone/drakbackup_.c:2425
msgid "on Hard Drive"
msgstr "fuq ħard disk"
-#: ../../standalone/drakbackup_.c:2360
+#: ../../standalone/drakbackup_.c:2435
msgid "across Network"
msgstr "fuq in-network"
-#: ../../standalone/drakbackup_.c:2370
+#: ../../standalone/drakbackup_.c:2445
msgid "on CDROM"
msgstr "fuq CDROM"
-#: ../../standalone/drakbackup_.c:2378
+#: ../../standalone/drakbackup_.c:2453
msgid "on Tape Device"
msgstr "Fuq apparat Tape"
-#: ../../standalone/drakbackup_.c:2421
+#: ../../standalone/drakbackup_.c:2496
msgid "Please choose what you want to backup"
-msgstr "Jekk jogħĥbok agÄ§ĆŒel ta' xiex trid tieħu backup"
+msgstr "Jekk jogħĥbok agÄ§ĆŒel ta' xiex trid tieħu kopja tas-sigurtĂ "
-#: ../../standalone/drakbackup_.c:2422
+#: ../../standalone/drakbackup_.c:2497
msgid "Backup system"
-msgstr "ÄŠu backup tas-sistema"
+msgstr "ÄŠu kopja tas-sigurtĂ  tas-sistema"
-#: ../../standalone/drakbackup_.c:2423
+#: ../../standalone/drakbackup_.c:2498
msgid "Backup Users"
-msgstr "ÄŠu backup tal-users"
+msgstr "ÄŠu kopja tas-sigurtĂ  tal-users"
-#: ../../standalone/drakbackup_.c:2426
+#: ../../standalone/drakbackup_.c:2501
msgid "Select user manually"
msgstr "AgÄ§ĆŒel user manwalment"
-#: ../../standalone/drakbackup_.c:2508
+#: ../../standalone/drakbackup_.c:2584
msgid ""
"\n"
"Backup Sources: \n"
msgstr ""
"\n"
-"Sorsi tal-backup: \n"
+"Sorsi tal-kopji tas-sigurtĂ : \n"
-#: ../../standalone/drakbackup_.c:2509
+#: ../../standalone/drakbackup_.c:2585
msgid ""
"\n"
"- System Files:\n"
@@ -10579,7 +11030,7 @@ msgstr ""
"\n"
"- Fajls tas-sistema:\n"
-#: ../../standalone/drakbackup_.c:2511
+#: ../../standalone/drakbackup_.c:2587
msgid ""
"\n"
"- User Files:\n"
@@ -10587,7 +11038,7 @@ msgstr ""
"\n"
"- Fajls tal-user:\n"
-#: ../../standalone/drakbackup_.c:2513
+#: ../../standalone/drakbackup_.c:2589
msgid ""
"\n"
"- Other Files:\n"
@@ -10595,22 +11046,24 @@ msgstr ""
"\n"
"- Fajls oħrajn:\n"
-#: ../../standalone/drakbackup_.c:2515
+#: ../../standalone/drakbackup_.c:2591
#, c-format
msgid ""
"\n"
-"- Save on Hard drive on path : %s\n"
+"- Save on Hard drive on path: %s\n"
msgstr ""
"\n"
-"- Ikteb fuq ħard disk fid-direttorju : %s\n"
+"- Ikteb fuq ħard disk fid-direttorju: %s\n"
-#: ../../standalone/drakbackup_.c:2518
+#: ../../standalone/drakbackup_.c:2594
msgid ""
"\n"
"- Delete hard drive tar files after backup.\n"
msgstr ""
+"\n"
+"- Ċassar il-fajls tar minn fuq il-ħard disk wara l-kopja tas-sigurtà\n"
-#: ../../standalone/drakbackup_.c:2524
+#: ../../standalone/drakbackup_.c:2600
msgid ""
"\n"
"- Burn to CD"
@@ -10618,43 +11071,43 @@ msgstr ""
"\n"
"- Aħraq fuq CD"
-#: ../../standalone/drakbackup_.c:2525
+#: ../../standalone/drakbackup_.c:2601
msgid "RW"
msgstr "RW"
-#: ../../standalone/drakbackup_.c:2526
+#: ../../standalone/drakbackup_.c:2602
#, c-format
-msgid " on device : %s"
-msgstr " fuq apparat : %s"
+msgid " on device: %s"
+msgstr " fuq apparat: %s"
-#: ../../standalone/drakbackup_.c:2527
+#: ../../standalone/drakbackup_.c:2603
msgid " (multi-session)"
-msgstr ""
+msgstr " (multi-sessjoni)"
-#: ../../standalone/drakbackup_.c:2528
+#: ../../standalone/drakbackup_.c:2604
#, c-format
msgid ""
"\n"
-"- Save to Tape on device : %s"
+"- Save to Tape on device: %s"
msgstr ""
"\n"
-"- Ikteb fuq tape fuq l-apparat : %s"
+"- Ikteb fuq tape fuq l-apparat: %s"
-#: ../../standalone/drakbackup_.c:2529
+#: ../../standalone/drakbackup_.c:2605
#, c-format
msgid "\t\tErase=%s"
msgstr "\t\tÄŠassar=%s"
-#: ../../standalone/drakbackup_.c:2532
+#: ../../standalone/drakbackup_.c:2608
#, c-format
msgid ""
"\n"
-"- Save via %s on host : %s\n"
+"- Save via %s on host: %s\n"
msgstr ""
"\n"
-"- Ikteb permezz ta' %s fuq kompjuter : %s\n"
+"- Ikteb permezz ta' %s fuq kompjuter: %s\n"
-#: ../../standalone/drakbackup_.c:2533
+#: ../../standalone/drakbackup_.c:2609
#, c-format
msgid ""
"\t\t user name: %s\n"
@@ -10663,7 +11116,7 @@ msgstr ""
"\t\t isem ta' user: %s\n"
"\t\t fuq direttorju: %s \n"
-#: ../../standalone/drakbackup_.c:2534
+#: ../../standalone/drakbackup_.c:2610
msgid ""
"\n"
"- Options:\n"
@@ -10671,60 +11124,60 @@ msgstr ""
"\n"
"- GħaĆŒliet:\n"
-#: ../../standalone/drakbackup_.c:2535
+#: ../../standalone/drakbackup_.c:2611
msgid "\tDo not include System Files\n"
msgstr "\tTinkludix fajls tas-sistema\n"
-#: ../../standalone/drakbackup_.c:2538
+#: ../../standalone/drakbackup_.c:2614
msgid "\tBackups use tar and bzip2\n"
-msgstr "\tBackups juĆŒaw tar u bzip2\n"
+msgstr "\tKopji tas-sigurtĂ  juĆŒaw tar u bzip2\n"
-#: ../../standalone/drakbackup_.c:2540
+#: ../../standalone/drakbackup_.c:2616
msgid "\tBackups use tar and gzip\n"
-msgstr "\tBackups juĆŒaw tar u gzip\n"
+msgstr "\tKopji tas-sigurtĂ  juĆŒaw tar u gzip\n"
-#: ../../standalone/drakbackup_.c:2543
+#: ../../standalone/drakbackup_.c:2619
#, c-format
msgid ""
"\n"
-"- Daemon (%s) include :\n"
+"- Daemon (%s) include:\n"
msgstr ""
"\n"
-"- Daemon (%s) include :\n"
+"- Daemon (%s) include:\n"
-#: ../../standalone/drakbackup_.c:2544
+#: ../../standalone/drakbackup_.c:2620
msgid "\t-Hard drive.\n"
msgstr "\t-ÄŠard disk.\n"
-#: ../../standalone/drakbackup_.c:2545
+#: ../../standalone/drakbackup_.c:2621
msgid "\t-CDROM.\n"
msgstr "\t-CDROM.\n"
-#: ../../standalone/drakbackup_.c:2546
+#: ../../standalone/drakbackup_.c:2622
msgid "\t-Tape \n"
msgstr "\t-Tape \n"
-#: ../../standalone/drakbackup_.c:2547
+#: ../../standalone/drakbackup_.c:2623
msgid "\t-Network by FTP.\n"
msgstr "\t-Network bl-FTP.\n"
-#: ../../standalone/drakbackup_.c:2548
+#: ../../standalone/drakbackup_.c:2624
msgid "\t-Network by SSH.\n"
msgstr "\t-Network bl-SSH.\n"
-#: ../../standalone/drakbackup_.c:2549
+#: ../../standalone/drakbackup_.c:2625
msgid "\t-Network by rsync.\n"
msgstr "\t-Network bl-rsync.\n"
-#: ../../standalone/drakbackup_.c:2550
+#: ../../standalone/drakbackup_.c:2626
msgid "\t-Network by webdav.\n"
msgstr "\t-Network bil-WebDAV.\n"
-#: ../../standalone/drakbackup_.c:2552
+#: ../../standalone/drakbackup_.c:2628
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr "Ebda konfigurazzjoni, agÄ§ĆŒel Saħħar jew Avvanzat\n"
-#: ../../standalone/drakbackup_.c:2558
+#: ../../standalone/drakbackup_.c:2634
msgid ""
"List of data to restore:\n"
"\n"
@@ -10732,7 +11185,7 @@ msgstr ""
"Lista ta' informazzjoni x'tirrestawra:\n"
"\n"
-#: ../../standalone/drakbackup_.c:2725
+#: ../../standalone/drakbackup_.c:2801
msgid ""
"List of data corrupted:\n"
"\n"
@@ -10740,149 +11193,267 @@ msgstr ""
"Lista ta' informazzjoni korrotta:\n"
"\n"
-#: ../../standalone/drakbackup_.c:2727
+#: ../../standalone/drakbackup_.c:2803
msgid "Please uncheck or remove it on next time."
msgstr "Jekk jogħĥbok neħħiha d-darba li jmiss."
-#: ../../standalone/drakbackup_.c:2737
+#: ../../standalone/drakbackup_.c:2813
msgid "Backup files are corrupted"
-msgstr "Fajls tal-backup ÄĄew korrotti"
+msgstr "Fajls tal-kopja tas-sigurtĂ  ÄĄew korrotti"
-#: ../../standalone/drakbackup_.c:2758
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2834
msgid " All of your selected data have been "
-msgstr " L-informazzjoni kollha magÄ§ĆŒula ÄĄiet..........."
+msgstr " L-informazzjoni kollha magÄ§ĆŒula ÄĄiet "
-#: ../../standalone/drakbackup_.c:2759
+#: ../../standalone/drakbackup_.c:2835
#, c-format
msgid " Successfuly Restored on %s "
msgstr " restawrata għal fuq %s "
-#: ../../standalone/drakbackup_.c:2877
+#: ../../standalone/drakbackup_.c:2953
msgid " Restore Configuration "
msgstr " Konfigurazzjoni ta' restawr....."
-#: ../../standalone/drakbackup_.c:2895
+#: ../../standalone/drakbackup_.c:2971
msgid "OK to restore the other files."
msgstr "OK biex tirrestawra fajls oħra."
-#: ../../standalone/drakbackup_.c:2912
+#: ../../standalone/drakbackup_.c:2988
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
"Lista ta' users x'tirrestawra (l-iĆŒjed data riċenti ta' kull user biss "
"importanti)"
-#: ../../standalone/drakbackup_.c:2975
+#: ../../standalone/drakbackup_.c:3066
msgid "Backup the system files before:"
-msgstr "ÄŠu backup ta' fajls tas-sistema qabel:"
+msgstr "ÄŠu kopja tas-sigurtĂ  ta' fajls tas-sistema qabel:"
-#: ../../standalone/drakbackup_.c:2977
+#: ../../standalone/drakbackup_.c:3068
msgid "please choose the date to restore"
msgstr "jekk jogħĥbok agÄ§ĆŒel data biex tirrestawra"
-#: ../../standalone/drakbackup_.c:3014
+#: ../../standalone/drakbackup_.c:3105
msgid "Use Hard Disk to backup"
-msgstr "UĆŒa ħard disk għal backup"
+msgstr "UĆŒa ħard disk għal kopja tas-sigurtĂ "
-#: ../../standalone/drakbackup_.c:3017
+#: ../../standalone/drakbackup_.c:3108
msgid "Please enter the directory to save:"
msgstr "Jekk jogħĥbok daħħal id-direttorju fejn tikteb:"
-#: ../../standalone/drakbackup_.c:3060
+#: ../../standalone/drakbackup_.c:3151
msgid "FTP Connection"
msgstr "Konnessjoni FTP"
-#: ../../standalone/drakbackup_.c:3067
+#: ../../standalone/drakbackup_.c:3158
msgid "Secure Connection"
msgstr "Konnessjoni ĆŒgura"
-#: ../../standalone/drakbackup_.c:3093
+#: ../../standalone/drakbackup_.c:3184
msgid "Restore from Hard Disk."
msgstr "Irrestawra mill-ħard disk"
-#: ../../standalone/drakbackup_.c:3095
+#: ../../standalone/drakbackup_.c:3186
msgid "Please enter the directory where backups are stored"
-msgstr "Jekk jogħĥbok daħħal id-direttorju fejn qegħdin il-backups"
+msgstr "Jekk jogħĥbok daħħal id-direttorju fejn qegħdin il-kopji tas-sigurtà"
-#: ../../standalone/drakbackup_.c:3157
+#: ../../standalone/drakbackup_.c:3254
msgid "Select another media to restore from"
msgstr "AgÄ§ĆŒel media ieħor biex tirrestawra minnu"
-#: ../../standalone/drakbackup_.c:3159
+#: ../../standalone/drakbackup_.c:3256
msgid "Other Media"
msgstr "Media oħrajn"
-#: ../../standalone/drakbackup_.c:3164
+#: ../../standalone/drakbackup_.c:3261
msgid "Restore system"
msgstr "Irrestawra sistema"
-#: ../../standalone/drakbackup_.c:3165
+#: ../../standalone/drakbackup_.c:3262
msgid "Restore Users"
msgstr "Irrestawra users"
-#: ../../standalone/drakbackup_.c:3166
+#: ../../standalone/drakbackup_.c:3263
msgid "Restore Other"
msgstr "Irrestawra ieħor"
-#: ../../standalone/drakbackup_.c:3168
+#: ../../standalone/drakbackup_.c:3265
msgid "select path to restore (instead of /)"
msgstr "AgÄ§ĆŒel direttorju biex tirrestawra (minflok / )"
-#: ../../standalone/drakbackup_.c:3172
+#: ../../standalone/drakbackup_.c:3269
msgid "Do new backup before restore (only for incremental backups.)"
-msgstr "Agħmel backup ĥdid qabel tirrestawra (għal backups inkrementali biss)"
+msgstr ""
+"Agħmel kopja tas-sigurtà ĥdid qabel tirrestawra (għal kopji tas-sigurtà "
+"inkrementali biss)"
-#: ../../standalone/drakbackup_.c:3174
+#: ../../standalone/drakbackup_.c:3271
msgid "Remove user directories before restore."
msgstr "Neħħi d-direttorji tal-users qabel tirrestawra."
-#: ../../standalone/drakbackup_.c:3232
+#: ../../standalone/drakbackup_.c:3384
+msgid ""
+"Restore Selected\n"
+"Catalog Entry"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3394
+#, fuzzy
+msgid ""
+"Restore Selected\n"
+"Files"
+msgstr "Neħħi l-magÄ§ĆŒula"
+
+#: ../../standalone/drakbackup_.c:3411
+#, fuzzy
+msgid ""
+"Change\n"
+"Restore Path"
+msgstr "Irrestawra ieħor"
+
+#: ../../standalone/drakbackup_.c:3477
+#, fuzzy, c-format
+msgid "Backup files not found at %s."
+msgstr "Ċu kopja ta' sigurtà minn %s għal %s.old"
+
+#: ../../standalone/drakbackup_.c:3490
+#, c-format
+msgid ""
+"Insert the CD with volume label %s\n"
+" in the CD drive under mount point /mnt/cdrom"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3490
+#, fuzzy
+msgid "Restore From CD"
+msgstr "Irrestawra mill-ħard disk"
+
+#: ../../standalone/drakbackup_.c:3492
+#, c-format
+msgid "Not the correct CD label. Disk is labelled %s."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3502
+#, c-format
+msgid ""
+"Insert the tape with volume label %s\n"
+" in the tape drive device %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3502
+#, fuzzy
+msgid "Restore From Tape"
+msgstr "ErÄĄa tella' tabella ta' partizzjonijiet"
+
+#: ../../standalone/drakbackup_.c:3504
+#, c-format
+msgid "Not the correct tape label. Tape is labelled %s."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3524
+#, fuzzy
+msgid "Restore Via Network"
+msgstr "Irrestawra users"
+
+#: ../../standalone/drakbackup_.c:3524
+#, c-format
+msgid "Restore Via Network Protocol: %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3525
+#, fuzzy
+msgid "Host Name"
+msgstr "Isem tal-kompjuter"
+
+#: ../../standalone/drakbackup_.c:3526
+msgid "Host Path or Module"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3533
+#, fuzzy
+msgid "Password required"
+msgstr "Password"
+
+#: ../../standalone/drakbackup_.c:3539
+#, fuzzy
+msgid "Username required"
+msgstr "User"
+
+#: ../../standalone/drakbackup_.c:3542
+#, fuzzy
+msgid "Hostname required"
+msgstr "Isem tal-kompjuter: "
+
+#: ../../standalone/drakbackup_.c:3547
+msgid "Path or Module required"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3560
+msgid "Files Restored..."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3563
+#, fuzzy
+msgid "Restore Failed..."
+msgstr "Irrestawra ieħor"
+
+#: ../../standalone/drakbackup_.c:3801
msgid "Restore all backups"
-msgstr "Irrestawra l-backups kollha"
+msgstr "Irrestawra l-kopji tas-sigurtĂ  kollha"
-#: ../../standalone/drakbackup_.c:3241
+#: ../../standalone/drakbackup_.c:3810
msgid "Custom Restore"
msgstr "Restawr personalizzat"
-#: ../../standalone/drakbackup_.c:3287 ../../standalone/drakbackup_.c:3320
-#: ../../standalone/drakbackup_.c:3346 ../../standalone/drakbackup_.c:3373
-#: ../../standalone/drakbackup_.c:3400 ../../standalone/drakbackup_.c:3460
-#: ../../standalone/drakbackup_.c:3487 ../../standalone/drakbackup_.c:3513
+#: ../../standalone/drakbackup_.c:3856
+msgid "CD in place - continue."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3862
+msgid "Browse to new restore repository."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3865
+#, fuzzy
+msgid "Restore From Catalog"
+msgstr "ErÄĄa tella' tabella ta' partizzjonijiet"
+
+#: ../../standalone/drakbackup_.c:3893
+#, fuzzy
+msgid "Restore Progress"
+msgstr "Irrestawra users"
+
+#: ../../standalone/drakbackup_.c:3935 ../../standalone/drakbackup_.c:3968
+#: ../../standalone/drakbackup_.c:3994 ../../standalone/drakbackup_.c:4021
+#: ../../standalone/drakbackup_.c:4048 ../../standalone/drakbackup_.c:4108
+#: ../../standalone/drakbackup_.c:4135 ../../standalone/drakbackup_.c:4165
+#: ../../standalone/drakbackup_.c:4191
msgid "Previous"
msgstr "Ta' qabel"
-#: ../../standalone/drakbackup_.c:3291 ../../standalone/drakbackup_.c:3377
+#: ../../standalone/drakbackup_.c:3939 ../../standalone/drakbackup_.c:4025
#: ../../standalone/logdrake_.c:223
msgid "Save"
msgstr "Ikteb"
-#: ../../standalone/drakbackup_.c:3350
+#: ../../standalone/drakbackup_.c:3998
msgid "Build Backup"
-msgstr "Ibni backup"
+msgstr "Ibni kopja tas-sigurtĂ "
-#: ../../standalone/drakbackup_.c:3404 ../../standalone/drakbackup_.c:3974
+#: ../../standalone/drakbackup_.c:4052 ../../standalone/drakbackup_.c:4632
msgid "Restore"
msgstr "Irrestawra"
-#: ../../standalone/drakbackup_.c:3553
-msgid ""
-"Please Build backup before to restore it...\n"
-" or verify that your path to save is correct."
-msgstr ""
-"Jekk jogħĥbok ibni backup qabel tirrestawraha...\n"
-" jew ivverifika li d-direttorju huwa tajjeb."
-
-#: ../../standalone/drakbackup_.c:3574
+#: ../../standalone/drakbackup_.c:4231
msgid ""
-"Error during sendmail\n"
-" your report mail was not sent\n"
+"Error during sendmail.\n"
+" Your report mail was not sent.\n"
" Please configure sendmail"
msgstr ""
"Problema waqt sendmail\n"
" ir-rapport ma ntbagħatx.\n"
" Jekk jogħĥbok ikkonfigura s-sendmail"
-#: ../../standalone/drakbackup_.c:3598
+#: ../../standalone/drakbackup_.c:4255
msgid ""
"The following packages need to be installed:\n"
" @list_of_rpm_to_install"
@@ -10890,7 +11461,7 @@ msgstr ""
"Dawn huma l-pakketti li se jiÄĄu nstallati\n"
" @list_of_rpm_to_install"
-#: ../../standalone/drakbackup_.c:3621
+#: ../../standalone/drakbackup_.c:4278
msgid ""
"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
@@ -10898,19 +11469,19 @@ msgstr ""
"Problema biex jintbagħat fajl bl-FTP.\n"
" Jekk jogħĥbok ikkoreĥi l-konfigurazzjoni FTP."
-#: ../../standalone/drakbackup_.c:3644
+#: ../../standalone/drakbackup_.c:4301
msgid "Please select data to restore..."
msgstr "Jekk jogħĥbok agÄ§ĆŒel informazzjoni x'tirrestawra"
-#: ../../standalone/drakbackup_.c:3665
+#: ../../standalone/drakbackup_.c:4322
msgid "Please select media for backup..."
-msgstr "Jekk jogħĥbok agÄ§ĆŒel media għall-backup..."
+msgstr "Jekk jogħĥbok agÄ§ĆŒel media għall-kopja tas-sigurtĂ ..."
-#: ../../standalone/drakbackup_.c:3687
+#: ../../standalone/drakbackup_.c:4344
msgid "Please select data to backup..."
msgstr "Jekk jogħĥbok agÄ§ĆŒel informazzjoni x'tikkopja"
-#: ../../standalone/drakbackup_.c:3709
+#: ../../standalone/drakbackup_.c:4366
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
@@ -10918,59 +11489,59 @@ msgstr ""
"Ebda fajl ta' konfigurazzjoni ma nstab.\n"
"AgÄ§ĆŒel Saħħar jew Avvanzat."
-#: ../../standalone/drakbackup_.c:3730
+#: ../../standalone/drakbackup_.c:4387
msgid "Under Devel ... please wait."
msgstr "Qed jiÄĄi ĆŒviluppat... stenna ftit."
-#: ../../standalone/drakbackup_.c:3811
+#: ../../standalone/drakbackup_.c:4468
msgid "Backup system files"
-msgstr "ÄŠu backup tal-fajls tas-sistema"
+msgstr "ÄŠu kopja tas-sigurtĂ  tal-fajls tas-sistema"
-#: ../../standalone/drakbackup_.c:3813
+#: ../../standalone/drakbackup_.c:4470
msgid "Backup user files"
-msgstr "ÄŠu backup tal-fajls tal-users"
+msgstr "ÄŠu kopja tas-sigurtĂ  tal-fajls tal-users"
-#: ../../standalone/drakbackup_.c:3815
+#: ../../standalone/drakbackup_.c:4472
msgid "Backup other files"
-msgstr "Ċu backup ta' fajls oħrajn"
+msgstr "Ċu kopja tas-sigurtà ta' fajls oħrajn"
-#: ../../standalone/drakbackup_.c:3817 ../../standalone/drakbackup_.c:3850
+#: ../../standalone/drakbackup_.c:4474 ../../standalone/drakbackup_.c:4507
msgid "Total Progress"
msgstr "Progress totali"
-#: ../../standalone/drakbackup_.c:3841
+#: ../../standalone/drakbackup_.c:4498
msgid "files sending by FTP"
msgstr "qed jintbagħatu fajls bl-FTP"
-#: ../../standalone/drakbackup_.c:3845
+#: ../../standalone/drakbackup_.c:4502
msgid "Sending files..."
msgstr "Qed nibgħat fajls..."
-#: ../../standalone/drakbackup_.c:3931
+#: ../../standalone/drakbackup_.c:4588
msgid "Backup Now from configuration file"
-msgstr "ÄŠu backup issa minn fajl ta' konfigurazzjoni"
+msgstr "ÄŠu kopja tas-sigurtĂ  issa minn fajl ta' konfigurazzjoni"
-#: ../../standalone/drakbackup_.c:3936
+#: ../../standalone/drakbackup_.c:4593
msgid "View Backup Configuration."
-msgstr "Ara Konfigurazzjoni Backup."
+msgstr "Ara konfigurazzjoni tal-kopja tas-sigurtĂ ."
-#: ../../standalone/drakbackup_.c:3956
+#: ../../standalone/drakbackup_.c:4614
msgid "Wizard Configuration"
msgstr "Konfigurazzjoni b'Saħħar"
-#: ../../standalone/drakbackup_.c:3961
+#: ../../standalone/drakbackup_.c:4619
msgid "Advanced Configuration"
msgstr "Konfigurazzjoni Avvanzata"
-#: ../../standalone/drakbackup_.c:3966
+#: ../../standalone/drakbackup_.c:4624
msgid "Backup Now"
-msgstr "ÄŠu Backup Issa"
+msgstr "ÄŠu kopja tas-sigurtĂ  Issa"
-#: ../../standalone/drakbackup_.c:3996
+#: ../../standalone/drakbackup_.c:4658
msgid "Drakbackup"
msgstr "Drakbackup"
-#: ../../standalone/drakbackup_.c:4045
+#: ../../standalone/drakbackup_.c:4707
msgid ""
"options description:\n"
"\n"
@@ -11014,9 +11585,9 @@ msgstr ""
"\n"
" - ModalitĂ  aÄĄÄĄornament:\n"
"\n"
-" Din l-għaĆŒla taÄĄÄĄornalek backup, imma m'hijiex utli \n"
-" ħafna għax trid terĥa' tiftaħ il-backup kollu biex \n"
-" taÄĄÄĄornah.\n"
+" Din l-għaĆŒla taÄĄÄĄornalek il-kopja tas-sigurtĂ , imma \n"
+" m'hijiex utli ħafna għax trid terĥa' tiftaħ il-backup kollu \n"
+" biex taÄĄÄĄornah.\n"
"\n"
" - ModalitĂ  \".backupignore\":\n"
"\n"
@@ -11030,7 +11601,7 @@ msgstr ""
" \n"
"\n"
-#: ../../standalone/drakbackup_.c:4075
+#: ../../standalone/drakbackup_.c:4737
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -11044,7 +11615,7 @@ msgstr ""
" jew mydomain fil-fajl /etc/postfix/main.cf\n"
"\n"
-#: ../../standalone/drakbackup_.c:4083
+#: ../../standalone/drakbackup_.c:4745
msgid ""
"options description:\n"
"\n"
@@ -11120,28 +11691,29 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:4122
+#: ../../standalone/drakbackup_.c:4784
+#, fuzzy
msgid ""
"restore description:\n"
" \n"
-"Only the most recent date will be used ,because with incremental \n"
-"backups it is necesarry to restore one by one each older backups.\n"
+"Only the most recent date will be used, because with incremental \n"
+"backups it is necessary to restore one by one each older backup.\n"
"\n"
-"So if you don't like to restore a user please unselect all his\n"
-"check box.\n"
+"So if you don't want to restore a user please unselect all their\n"
+"check boxes.\n"
"\n"
-"Otherwise, you are able to select only one of this\n"
+"Otherwise, you are able to select only one of these.\n"
"\n"
" - Incremental Backups:\n"
"\n"
"\tThe incremental backup is the most powerful \n"
-"\toption to use backup, this option allow you \n"
-"\tto backup all your data the first time, and \n"
-"\tonly the changed after.\n"
-"\tSo you will be able during the restore\n"
+"\toption to use. This option allows you to \n"
+"\tbackup all of your data the first time, and \n"
+"\tonly the changed data after.\n"
+"\tSo you will be able, during the restore\n"
"\tstep, to restore your data from a specified\n"
"\tdate.\n"
-"\tIf you have not selected this options all\n"
+"\tIf you have not selected this option all\n"
"\told backups are deleted before each backup. \n"
"\n"
"\n"
@@ -11171,20 +11743,20 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:4148 ../../standalone/drakbackup_.c:4225
+#: ../../standalone/drakbackup_.c:4810 ../../standalone/drakbackup_.c:4887
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
" Copyright (C) 2001 MandrakeSoft ta' DUPONT Sebastien <dupont_s\\@epita.fr>"
-#: ../../standalone/drakbackup_.c:4150 ../../standalone/drakbackup_.c:4227
+#: ../../standalone/drakbackup_.c:4812 ../../standalone/drakbackup_.c:4889
msgid ""
" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
" aÄĄÄĄornamenti 2002 MandrakeSoft minn Stew Benedict <sbenedict\\@mandrakesoft."
"com>"
-#: ../../standalone/drakbackup_.c:4152 ../../standalone/drakbackup_.c:4229
+#: ../../standalone/drakbackup_.c:4814 ../../standalone/drakbackup_.c:4891
msgid ""
" This program is free software; you can redistribute it and/or modify\n"
" it under the terms of the GNU General Public License as published by\n"
@@ -11203,12 +11775,12 @@ msgstr ""
" Dan il-programm huwa softwer ħieles; tista' tiddistribwih u/jew tibdlu\n"
" skond it-termini tal-Liċenzja Ġenerali Pubblika (GPL) GNU, kif "
"ippubblikata\n"
-" mill-Free Software Foundation; jew verjoni 2 tal-liċenzja, jew (skond il-\n"
+" mill-Free Software Foundation; jew verĆŒjoni 2 tal-liċenzja, jew (skond il-\n"
" ÄĄudizzju tiegħek) waħda iĆŒjed riċenti.\n"
"\n"
" Dan il-programm huwa distribwit bl-isperanza li jkun utli, imma\n"
" MINNGĩAJR EBDA GARANZIJA; minngħajr saħansitra l-garanzija impliċita \n"
-" ta' MERKANTABILITÀ jew LI HU ADEGWAT GĩAL UZU PARTIKULARI. Ara\n"
+" ta' MERKANTABILITÀ jew LI HU ADEGWAT GÄŠAL UĆ»U PARTIKULARI. Ara\n"
" l-Liċenzja Ä enerali Pubblika GNU (GNU General Public License) għal iĆŒjed\n"
" dettalji.\n"
"\n"
@@ -11216,7 +11788,7 @@ msgstr ""
" il-programm. Jekk le, ikteb lill-Free Software Foundation, Inc., \n"
" 59, Temple Place - Suite 330, Boston, MA 02111-1307, USA."
-#: ../../standalone/drakbackup_.c:4166
+#: ../../standalone/drakbackup_.c:4828
msgid ""
"Description:\n"
"\n"
@@ -11257,26 +11829,26 @@ msgid ""
msgstr ""
"Deskrizzjoni:\n"
"\n"
-" Drakbackup jintuĆŒa biex jieħu kopja \"backup\" tas-sistema.\n"
+" Drakbackup jintuĆŒa biex jieħu kopja tas-sigurtĂ  (\"backup\") tas-sistema.\n"
" Waqt il-konfigurazzjoni tista' tagÄ§ĆŒel \n"
"\t- Fajls tas-sistema, \n"
"\t- Fajls tal-users, \n"
"\t- Fajls oħrajn\n"
"\tjew Sistema kollha ... u Oħrajn (bħal partizzjonijiet tal-Windows)\n"
"\n"
-" Drakbackup iħallik tpoĥĥi din il-backup fuq:\n"
+" Drakbackup iħallik tpoĥĥi din il-kopja tas-sigurtà fuq:\n"
"\t- ÄŠard disk.\n"
"\t- NFS.\n"
"\t- CDROM (CDRW), DVDROM (bl-autoboot, rescue u awto-installazzjoni).\n"
"\t- FTP.\n"
"\t- Rsync.\n"
-"\t- Webdav.\n"
+"\t- WebDAV.\n"
"\t- Tape.\n"
"\n"
" Drakbackup iħallik tirrestawra s-sistema għal ĥo direttorju\n"
" li jagÄ§ĆŒel il-user.\n"
"\n"
-" Impliċitament, il-backups jitpoġġew fid-direttorju\n"
+" Impliċitament, il-kopji tas-sigurtà jitpoġġew fid-direttorju\n"
" /var/lib/drakbackup\n"
"\n"
" fajl ta' konfigurazzjoni:\n"
@@ -11286,13 +11858,13 @@ msgstr ""
"Pass ta' restawrazzjoni:\n"
"\n"
" Waqt il-pass ta' restawrazzjoni, Drakbackup iħassar id-\n"
-" direttorju oriÄĄinali u jivverifika li l-fajls tal-backup\n"
-" ma ĥewx korrotti. Huwa rakkomandat li tieħu backup ieħor\n"
+" direttorju oriÄĄinali u jivverifika li l-fajls tal-kopja tas-sigurtĂ \n"
+" ma ĥewx korrotti. Huwa rakkomandat li tieħu kopja tas-sigurtà oħra\n"
" qabel tibda' tirrestawra.\n"
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:4204
+#: ../../standalone/drakbackup_.c:4866
msgid ""
"options description:\n"
"\n"
@@ -11304,13 +11876,13 @@ msgid ""
msgstr ""
"deskrizzjoni tal-għaĆŒliet:\n"
"\n"
-"Jekk jogħĥbok oqgħod attent meta tuĆŒa backup bl-ftp, għax\n"
-"dawk il-backups li huma mibnija biss jintbagħatu fuq is-server.\n"
-"Għalhekk għalissa, trid tibni l-backup fuq il-ħard disk qabel\n"
+"Jekk jogħĥbok oqgħod attent meta tuĆŒa kopja tas-sigurtĂ  bl-ftp, għax\n"
+"dawk il-kopji li huma mibnija biss jintbagħatu fuq is-server.\n"
+"Għalhekk għalissa, trid tibni l-kopja tas-sigurtà fuq il-ħard disk qabel\n"
"jintbagħat lis-server.\n"
"\n"
-#: ../../standalone/drakbackup_.c:4213
+#: ../../standalone/drakbackup_.c:4875
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -11323,15 +11895,15 @@ msgid ""
"backup data files by hand.\n"
msgstr ""
"\n"
-"Problemi ta' restawr ta' backup:\n"
+"Problemi ta' restawr ta' kopja tas-sigurtĂ :\n"
"\n"
"Waqt il-pass ta' restawr, Drakbackup jivverifika l-fajls \n"
-"kollha tal-backup qabel jirrestawrahom. Qabel \n"
+"kollha tal-kopja qabel jirrestawrahom. Qabel \n"
"ir-restawr,.Drakbackup ineħħi d-direttorju oriĥinali, u \n"
"tista' titlef l-informazzjoni kollha. Huwa mportanti li\n"
-"toqgħod attent u ma tbiddilx il-fajls tal-backup manwalment.\n"
+"toqgħod attent u ma tbiddilx il-fajls tal-kopja manwalment.\n"
-#: ../../standalone/drakbackup_.c:4243
+#: ../../standalone/drakbackup_.c:4905
msgid ""
"Description:\n"
"\n"
@@ -11371,26 +11943,26 @@ msgid ""
msgstr ""
"Deskrizzjoni:\n"
"\n"
-" Drakbackup jintuĆŒa biex jieħu kopja \"backup\" tas-sistema.\n"
+" Drakbackup jintuĆŒa biex jieħu kopja tas-sigurtĂ  (\"backup\") tas-sistema.\n"
" Waqt il-konfigurazzjoni tista' tagÄ§ĆŒel \n"
"\t- Fajls tas-sistema, \n"
"\t- Fajls tal-users, \n"
"\t- Fajls oħrajn\n"
"\tjew Sistema kollha ... u Oħrajn (bħal partizzjonijiet tal-Windows)\n"
"\n"
-" Drakbackup iħallik tpoĥĥi din il-backup fuq:\n"
+" Drakbackup iħallik tpoĥĥi din il-kopja fuq:\n"
"\t- ÄŠard disk.\n"
"\t- NFS.\n"
"\t- CDROM (CDRW), DVDROM (bl-autoboot, rescue u awto-installazzjoni).\n"
"\t- FTP.\n"
"\t- Rsync.\n"
-"\t- Webdav.\n"
+"\t- WebDAV.\n"
"\t- Tape.\n"
"\n"
" Drakbackup iħallik tirrestawra s-sistema għal ĥo direttorju\n"
" li jagÄ§ĆŒel il-user.\n"
"\n"
-" Impliċitament, il-backups jitpoġġew fid-direttorju\n"
+" Impliċitament, il-kopji tas-sigurtà jitpoġġew fid-direttorju\n"
" /var/lib/drakbackup\n"
"\n"
" fajl ta' konfigurazzjoni:\n"
@@ -11400,8 +11972,8 @@ msgstr ""
"Pass ta' restawrazzjoni:\n"
"\n"
" Waqt il-pass ta' restawrazzjoni, Drakbackup iħassar id-\n"
-" direttorju oriÄĄinali u jivverifika li l-fajls tal-backup\n"
-" ma ĥewx korrotti. Huwa rakkomandat li tieħu backup ieħor\n"
+" direttorju oriÄĄinali u jivverifika li l-fajls tal-kopja\n"
+" ma ĥewx korrotti. Huwa rakkomandat li tieħu kopja oħra\n"
" qabel tibda' tirrestawra.\n"
"\n"
"\n"
@@ -11442,10 +12014,9 @@ msgstr ""
" --report - il-programm għandu jkun wieħed mill-għodda Mandrake\n"
#: ../../standalone/drakbug_.c:49
-#, fuzzy
msgid " --incident - program should be one of mandrake tools\n"
msgstr ""
-" --report - il-programm għandu jkun wieħed mill-għodda Mandrake\n"
+" --incident - il-programm għandu jkun wieħed mill-għodda Mandrake\n"
#: ../../standalone/drakbug_.c:64
msgid "Mandrake Bug Report Tool"
@@ -11459,9 +12030,9 @@ msgstr "Saħħar ta' l-ewwel darba"
msgid "Synchronization tool"
msgstr "Għodda tas-sinkronizzazzjoni"
-#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:85
-#: ../../standalone/drakbug_.c:150 ../../standalone/drakbug_.c:152
-#: ../../standalone/drakbug_.c:156
+#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:86
+#: ../../standalone/drakbug_.c:151 ../../standalone/drakbug_.c:153
+#: ../../standalone/drakbug_.c:157
msgid "Standalone Tools"
msgstr "Għodda indipendenti"
@@ -11505,23 +12076,23 @@ msgstr "Userdrake"
msgid "Configuration Wizards"
msgstr "Sħaħar tal-Konfigurazzjoni"
-#: ../../standalone/drakbug_.c:96
+#: ../../standalone/drakbug_.c:97
msgid "Application:"
msgstr "Programm:"
-#: ../../standalone/drakbug_.c:97
+#: ../../standalone/drakbug_.c:98
msgid "Package: "
msgstr "Pakkett:"
-#: ../../standalone/drakbug_.c:98
+#: ../../standalone/drakbug_.c:99
msgid "Kernel:"
msgstr "Kernel:"
-#: ../../standalone/drakbug_.c:99
+#: ../../standalone/drakbug_.c:100
msgid "Release: "
msgstr "ÄŠarÄĄa:"
-#: ../../standalone/drakbug_.c:114
+#: ../../standalone/drakbug_.c:115
msgid ""
"\n"
"\n"
@@ -11540,19 +12111,19 @@ msgstr ""
"trasferit lil dak is-server.\n"
"\n"
-#: ../../standalone/drakbug_.c:135
+#: ../../standalone/drakbug_.c:136
msgid "Report"
msgstr "Rapport"
-#: ../../standalone/drakbug_.c:165
+#: ../../standalone/drakbug_.c:166
msgid "Not installed"
msgstr "Mhux installat"
-#: ../../standalone/drakbug_.c:182
+#: ../../standalone/drakbug_.c:183
msgid "connecting to Bugzilla wizard ..."
msgstr "qed naqbad mas-saħħar Bugzilla ..."
-#: ../../standalone/drakbug_.c:189
+#: ../../standalone/drakbug_.c:190
msgid "No browser available! Please install one"
msgstr "Ebda browser disponibbli! Jekk jogħĥbok installa wieħed"
@@ -11998,7 +12569,7 @@ msgid "Font List"
msgstr "Lista ta' fonts"
#: ../../standalone/drakfont_.c:909
-msgid "Choose the applications that will support the fonts :"
+msgid "Choose the applications that will support the fonts:"
msgstr "AgÄ§ĆŒel il-programmi li se juĆŒaw il-fonts :"
#: ../../standalone/drakfont_.c:918
@@ -12069,19 +12640,19 @@ msgstr "Neħħi fonts mis-sistema"
msgid "Post Uninstall"
msgstr "Wara t-tneħħija"
-#: ../../standalone/drakgw_.c:42 ../../standalone/drakgw_.c:195
+#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:188
msgid "Internet Connection Sharing"
msgstr "Qsim tal-konnessjoni tal-internet"
-#: ../../standalone/drakgw_.c:121
+#: ../../standalone/drakgw_.c:119
msgid "Sorry, we support only 2.4 kernels."
msgstr "Jiddispjaċini, aħna nissapportjaw biss kernels 2.4."
-#: ../../standalone/drakgw_.c:133
+#: ../../standalone/drakgw_.c:130
msgid "Internet Connection Sharing currently enabled"
msgstr "Il-qsim tal-konnessjoni tal-internet huwa mixgħul"
-#: ../../standalone/drakgw_.c:134
+#: ../../standalone/drakgw_.c:131
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -12093,31 +12664,31 @@ msgstr ""
"\n"
"X'tixtieq tagħmel?"
-#: ../../standalone/drakgw_.c:138
+#: ../../standalone/drakgw_.c:135
msgid "disable"
msgstr "itfi"
-#: ../../standalone/drakgw_.c:138 ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:135 ../../standalone/drakgw_.c:160
msgid "dismiss"
msgstr "ikkanċella"
-#: ../../standalone/drakgw_.c:138 ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:135 ../../standalone/drakgw_.c:160
msgid "reconfigure"
msgstr "ri-konfigura"
-#: ../../standalone/drakgw_.c:141
+#: ../../standalone/drakgw_.c:138
msgid "Disabling servers..."
msgstr "Qed inniĆŒĆŒel is-servers..."
-#: ../../standalone/drakgw_.c:149
+#: ../../standalone/drakgw_.c:146
msgid "Internet connection sharing is now disabled."
msgstr "Il-qsim tal-konnessjoni tal-internet issa mitfi"
-#: ../../standalone/drakgw_.c:158
+#: ../../standalone/drakgw_.c:155
msgid "Internet Connection Sharing currently disabled"
msgstr "Il-qsim tal-konnessjoni tal-internet huwa mitfi"
-#: ../../standalone/drakgw_.c:159
+#: ../../standalone/drakgw_.c:156
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
@@ -12129,19 +12700,19 @@ msgstr ""
"\n"
"X'tixtieq tagħmel?"
-#: ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:160
msgid "enable"
msgstr "ħaddem"
-#: ../../standalone/drakgw_.c:170
+#: ../../standalone/drakgw_.c:167
msgid "Enabling servers..."
msgstr "Qed intella' s-servers..."
-#: ../../standalone/drakgw_.c:175
+#: ../../standalone/drakgw_.c:172
msgid "Internet connection sharing is now enabled."
msgstr "Qsim tal-konnessjoni tal-internet issa mixgħul."
-#: ../../standalone/drakgw_.c:196
+#: ../../standalone/drakgw_.c:189
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
"With that feature, other computers on your local network will be able to use "
@@ -12157,21 +12728,21 @@ msgstr ""
"Nota: irid ikollok adattur tal-internet dedikat biex tissettja n-network "
"lokali (LAN)"
-#: ../../standalone/drakgw_.c:222
+#: ../../standalone/drakgw_.c:215
#, c-format
msgid "Interface %s (using module %s)"
msgstr "Interfaċċja %s (tuĆŒa modulu %s)"
-#: ../../standalone/drakgw_.c:223
+#: ../../standalone/drakgw_.c:216
#, c-format
msgid "Interface %s"
msgstr "Interfaċċja %s"
-#: ../../standalone/drakgw_.c:231
+#: ../../standalone/drakgw_.c:224
msgid "No network adapter on your system!"
msgstr "Ebda adattur tan-network fuq is-sistema!"
-#: ../../standalone/drakgw_.c:232
+#: ../../standalone/drakgw_.c:225
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
@@ -12179,11 +12750,11 @@ msgstr ""
"Ebda adattur tan-network ethernet ma nstab fuq is-sistema tiegħek. Jekk "
"jogħĥbok ħaddem l-għodda tal-konfigurazzjoni tal-ħardwer."
-#: ../../standalone/drakgw_.c:238
+#: ../../standalone/drakgw_.c:231
msgid "Network interface"
msgstr "Interfaċċja tan-network"
-#: ../../standalone/drakgw_.c:239
+#: ../../standalone/drakgw_.c:232
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -12198,7 +12769,7 @@ msgstr ""
"\n"
"Se nissettja n-network lokali fuq dak l-adattur."
-#: ../../standalone/drakgw_.c:248
+#: ../../standalone/drakgw_.c:241
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
@@ -12206,11 +12777,11 @@ msgstr ""
"Jekk jogħĥbok agÄ§ĆŒel liema adattur tan-network se jkun imqabbad man-network "
"lokali (LAN)."
-#: ../../standalone/drakgw_.c:266
+#: ../../standalone/drakgw_.c:259
msgid "Network interface already configured"
msgstr "Interfaċċja tan-network diġà konfigurata"
-#: ../../standalone/drakgw_.c:267
+#: ../../standalone/drakgw_.c:260
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -12225,15 +12796,15 @@ msgstr ""
"\n"
"Tista' tagħmilha manwalment imma trid tkun taf x'qed tagħmel."
-#: ../../standalone/drakgw_.c:272
+#: ../../standalone/drakgw_.c:265
msgid "Automatic reconfiguration"
msgstr "Ri-konfigurazzjoni awtomatika"
-#: ../../standalone/drakgw_.c:273
+#: ../../standalone/drakgw_.c:266
msgid "Show current interface configuration"
msgstr "Uri l-konfigurazzjoni kurrenti tal-interfaċċja"
-#: ../../standalone/drakgw_.c:275
+#: ../../standalone/drakgw_.c:268
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -12250,7 +12821,7 @@ msgstr ""
"Attribuzzjoni IP: %s\n"
"Driver: %s"
-#: ../../standalone/drakgw_.c:287
+#: ../../standalone/drakgw_.c:280
msgid ""
"I can keep your current configuration and assume you already set up a DHCP "
"server; in that case please verify I correctly read the C-Class Network that "
@@ -12269,54 +12840,42 @@ msgstr ""
"DCHP.\n"
"\n"
-#: ../../standalone/drakgw_.c:292
+#: ../../standalone/drakgw_.c:285
msgid "C-Class Local Network"
msgstr "Network lokali klassi C"
-#: ../../standalone/drakgw_.c:293
+#: ../../standalone/drakgw_.c:286
msgid "(This) DHCP Server IP"
msgstr "IP ta' dan is-server DHCP"
-#: ../../standalone/drakgw_.c:294
+#: ../../standalone/drakgw_.c:287
msgid "Re-configure interface and DHCP server"
msgstr "Erġa' kkonfigura l-interfaċċja u s-server DHCP"
-#: ../../standalone/drakgw_.c:301
+#: ../../standalone/drakgw_.c:294
msgid "The Local Network did not finish with `.0', bailing out."
msgstr "In-network lokali ma jispiċċax b' \".0\", ħiereġ 'il barra."
-#: ../../standalone/drakgw_.c:312
+#: ../../standalone/drakgw_.c:305
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr ""
"Possibbilment hemm konflitt fl-indirizz LAN fil-konfigurazzjoni ta' %s!\n"
-#: ../../standalone/drakgw_.c:320
-msgid "Firewalling configuration detected!"
-msgstr "Instabet konfigurazzjoni ta' firewall!"
-
-#: ../../standalone/drakgw_.c:321
-msgid ""
-"Warning! An existing firewalling configuration has been detected. You may "
-"need some manual fix after installation."
-msgstr ""
-"Twissija: Instabet konfigurazzjoni eĆŒistenti ta' firewall. Għandek mnejn "
-"tkun trid tirranÄĄaha manwalment wara l-installazzjoni."
-
-#: ../../standalone/drakgw_.c:328
+#: ../../standalone/drakgw_.c:315
msgid "Configuring..."
msgstr "Qed nikkonfigura..."
-#: ../../standalone/drakgw_.c:329
+#: ../../standalone/drakgw_.c:316
msgid "Configuring scripts, installing software, starting servers..."
msgstr "Qed nikkonfigura scripts, ninstalla softwer u ntella' servers..."
-#: ../../standalone/drakgw_.c:365
+#: ../../standalone/drakgw_.c:352
#, c-format
msgid "Problems installing package %s"
msgstr "Problemi fl-installazzjoni tal-pakkett %s"
-#: ../../standalone/drakgw_.c:549
+#: ../../standalone/drakgw_.c:485
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
@@ -12326,23 +12885,23 @@ msgstr ""
"Issa tista taqsam konnessjonijiet ma' kompjuters oħra fuq in-network lokali, "
"permezz tal-faċilità ta' konfigurazzjoni awtomatika (DHCP)."
-#: ../../standalone/drakgw_.c:566
+#: ../../standalone/drakgw_.c:504
msgid "The setup has already been done, but it's currently disabled."
msgstr "Dan il-konfigurazzjoni diĥà sar, imma bħalissa mitfi."
-#: ../../standalone/drakgw_.c:567
+#: ../../standalone/drakgw_.c:505
msgid "The setup has already been done, and it's currently enabled."
msgstr "Dan il-konfigurazzjoni diĥà sar, u bħalissa attivat."
-#: ../../standalone/drakgw_.c:568
+#: ../../standalone/drakgw_.c:506
msgid "No Internet Connection Sharing has ever been configured."
msgstr "Ebda qsim tal-konnessjoni għadu ma ĥie konfigurat."
-#: ../../standalone/drakgw_.c:573
+#: ../../standalone/drakgw_.c:511
msgid "Internet connection sharing configuration"
msgstr "Konfigurazzjoni tal-qsim tal-konnessjoni mal-internet"
-#: ../../standalone/drakgw_.c:580
+#: ../../standalone/drakgw_.c:518
#, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -12357,9 +12916,170 @@ msgstr ""
"\n"
"Ikklikkja \"Ikkonfigura\" biex tħaddem is-saħħar tal-konfigurazzjoni."
-#: ../../standalone/drakxtv_.c:49
+#: ../../standalone/draksound_.c:46
+#, fuzzy
+msgid "No Sound Card detected!"
+msgstr "Ebda kard TV ma nstabet!"
+
+#: ../../standalone/draksound_.c:47
#, fuzzy
msgid ""
+"No Sound Card has been detected on your machine. Please verify that a Linux-"
+"supported Sound Card is correctly plugged in.\n"
+"\n"
+"\n"
+"You can visit our hardware database at:\n"
+"\n"
+"\n"
+"http://www.linux-mandrake.com/en/hardware.php3"
+msgstr ""
+"Ebda kard TV ma nstabet fuq il-kompjuter. Jekk jogħġbok iċċekkja li hemm "
+"kard li tieħu l-Linux imqabbda sew.\n"
+"\n"
+"\n"
+"Tista' ĆŒĆŒur id-database ta' apparat magħruf fuq:\n"
+"\n"
+"\n"
+"http://www.linux-mandrake.com/en/hardware.php3"
+
+#: ../../standalone/draksplash_.c:32
+msgid "package ImageMagick is required for correct working"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:76
+#, fuzzy
+msgid "first step creation"
+msgstr "ħolqien ta' diska \"boot\""
+
+#: ../../standalone/draksplash_.c:77
+#, fuzzy
+msgid "final resolution"
+msgstr "ReĆŒoluzzjoni"
+
+#: ../../standalone/draksplash_.c:78 ../../standalone/draksplash_.c:170
+#, fuzzy
+msgid "choose image file"
+msgstr "AgÄ§ĆŒel fajl"
+
+#: ../../standalone/draksplash_.c:79
+#, fuzzy
+msgid "Theme name"
+msgstr "Isem tal-printer (share)"
+
+#: ../../standalone/draksplash_.c:81
+msgid "make bootsplash step 2"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:82
+#, fuzzy
+msgid "go to lilosplash configuration"
+msgstr "Konfigurazzjoni ta' wara l-installazzjoni"
+
+#: ../../standalone/draksplash_.c:83
+#, fuzzy
+msgid "quit"
+msgstr "Noħroĥ"
+
+#: ../../standalone/draksplash_.c:84
+#, fuzzy
+msgid "save theme"
+msgstr "Installa temi"
+
+#: ../../standalone/draksplash_.c:85
+msgid "browse"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:98 ../../standalone/draksplash_.c:159
+#, fuzzy
+msgid "Configure bootsplash picture"
+msgstr "Ma nistax noħloq previĆŒjoni tal-istampa tal-boot"
+
+#: ../../standalone/draksplash_.c:99
+msgid "x coordinate of text box in number of character"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:100
+msgid "y coordinate of text box in number of character"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:101
+msgid "text width"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:102
+msgid "text box height"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:103
+msgid "the progress bar x coordinate of its upper left corner"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:104
+msgid "the progress bar y coordinate of its upper left corner"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:105
+msgid "the width of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:106
+msgid "the heigth of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:107
+msgid "the color of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:119
+#, fuzzy
+msgid "go back"
+msgstr "Loopback"
+
+#: ../../standalone/draksplash_.c:120
+#, fuzzy
+msgid "preview"
+msgstr "apparat"
+
+#: ../../standalone/draksplash_.c:121
+#, fuzzy
+msgid "choose color"
+msgstr "AgÄ§ĆŒel skrin"
+
+#: ../../standalone/draksplash_.c:124
+#, fuzzy
+msgid "Display logo on Console"
+msgstr "Uri tema fil-konsol"
+
+#: ../../standalone/draksplash_.c:125
+msgid "Make kernel message quiet by default"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:161 ../../standalone/draksplash_.c:330
+#, c-format
+msgid "This theme haven't yet any bootsplash in %s !"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:213
+msgid "saving Bootsplash theme..."
+msgstr ""
+
+#: ../../standalone/draksplash_.c:436
+#, fuzzy
+msgid "ProgressBar color selection"
+msgstr "GħaĆŒla tal-mudell tal-printer"
+
+#: ../../standalone/draksplash_.c:454
+#, fuzzy
+msgid "You must choose an image file first!"
+msgstr "Trid tagÄ§ĆŒel/iddaħħal printer/apparat!"
+
+#: ../../standalone/draksplash_.c:463
+#, fuzzy
+msgid "Generating preview ..."
+msgstr "Qed infittex apparat..."
+
+#: ../../standalone/drakxtv_.c:49
+msgid ""
"XawTV isn't installed!\n"
"\n"
"\n"
@@ -12376,10 +13096,10 @@ msgstr ""
"\n"
"\n"
"Jekk għandek kard TV imma DrakX ma ndunax biha (m'hemmx modulu bttv\n"
-"ĥo \"/etc/modules\") u anqas installa xawtv, jekk jogħĥbok ibgħat ir-"
-"riĆŒultat\n"
-"ta' \"lspcidrake -v -f\" lill \"install\\@mandrakesoft.com\" bis-suÄĄÄĄett\n"
-"\"undetected TV card\".\n"
+"jew saa7134 ĥo \"/etc/modules\") u anqas installa xawtv, jekk jogħĥbok \n"
+"ibgħat ir-riĆŒultat ta' \"lspcidrake -v -f\" lill \"install\\@mandrakesoft.com"
+"\" \n"
+"bis-suÄĄÄĄett \"undetected TV card\".\n"
"\n"
"\n"
"Tista' tinstallah billi tittajpja \"urpmi xawtv\" bħala root, ĥo terminal."
@@ -12446,7 +13166,7 @@ msgstr "ArÄĄentina"
#: ../../standalone/drakxtv_.c:72
msgid "Australian Optus cable TV"
-msgstr ""
+msgstr "Optus cable TV Awstraljan"
#: ../../standalone/drakxtv_.c:107
msgid ""
@@ -12457,11 +13177,11 @@ msgstr ""
"daħħal it=\"TV norm\" u l-pajjiĆŒ"
#: ../../standalone/drakxtv_.c:109
-msgid "TV norm :"
+msgid "TV norm:"
msgstr "TV norm :"
#: ../../standalone/drakxtv_.c:110
-msgid "Area :"
+msgid "Area:"
msgstr "ReÄĄjun :"
#: ../../standalone/drakxtv_.c:114
@@ -12545,7 +13265,7 @@ msgstr "Ma stajtx nibda' l-aÄĄÄĄornament \"live\"!!!\n"
msgid "The change is done, but to be effective you must logout"
msgstr "Il-bidliet saru, imma biex ikunu effettivi trid tilloggja 'l barra"
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:517
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:515
msgid "logdrake"
msgstr "logdrake"
@@ -12718,7 +13438,7 @@ msgstr "seting tas-servizz"
#: ../../standalone/logdrake_.c:431
msgid ""
-"You will receive an alert if one of the selected service is no more running"
+"You will receive an alert if one of the selected services is no more running"
msgstr "Tirċievi twissija jekk wieħed minn dawn is-servizzi ma jibqax jaħdem"
#: ../../standalone/logdrake_.c:443
@@ -12737,19 +13457,19 @@ msgstr "konfigurazzjoni tal-allerti"
msgid "Please enter your email address below "
msgstr "Jekk jogħĥbok daħħal l-indirizz tal-imejl taħt"
-#: ../../standalone/logdrake_.c:499
+#: ../../standalone/logdrake_.c:497
msgid "Save as.."
msgstr "Ikteb b'isem ÄĄdid..."
-#: ../../standalone/mousedrake_.c:43
+#: ../../standalone/mousedrake_.c:45
msgid "Please, choose the type of your mouse."
msgstr "Jekk jogħĥbok agÄ§ĆŒel it-tip ta' maws."
-#: ../../standalone/mousedrake_.c:57
+#: ../../standalone/mousedrake_.c:58
msgid "Emulate third button?"
msgstr "Emula t-tielet buttuna?"
-#: ../../standalone/printerdrake_.c:48
+#: ../../standalone/printerdrake_.c:57
msgid "Reading printer data ..."
msgstr "Qed tinqara informazzjoni dwar printer..."
@@ -12761,21 +13481,32 @@ msgstr "Qed infittex apparat..."
msgid "Test ports"
msgstr "Ittestja ports"
-#: ../../standalone/scannerdrake_.c:52
+#: ../../standalone/scannerdrake_.c:53 ../../standalone/scannerdrake_.c:68
+#: ../../standalone/scannerdrake_.c:81
#, c-format
-msgid "%s found on %s, configure it ?"
+msgid "The %s is not supported by this version of Mandrake Linux."
+msgstr ""
+
+#: ../../standalone/scannerdrake_.c:56
+#, fuzzy, c-format
+msgid "%s found on %s, configure it?"
msgstr "%s instab fuq %s, trid tikkonfigurah?"
#: ../../standalone/scannerdrake_.c:59
+#, c-format
+msgid "%s is not in the scanner database, configure it manually?"
+msgstr ""
+
+#: ../../standalone/scannerdrake_.c:65
msgid "Select a scanner"
msgstr "AgÄ§ĆŒel skaner"
-#: ../../standalone/scannerdrake_.c:79
+#: ../../standalone/scannerdrake_.c:93
#, c-format
msgid "This %s scanner is unsupported"
msgstr "Dan l-iskaner %s mhux sapportit"
-#: ../../standalone/scannerdrake_.c:93
+#: ../../standalone/scannerdrake_.c:107
#, c-format
msgid ""
"Scannerdrake was not able to detect your %s scanner.\n"
@@ -12784,11 +13515,11 @@ msgstr ""
"Scannerdrake ma rnexxielux isib l-iskaner %s tiegħek.\n"
"Jekk jogħĥbok agÄ§ĆŒel apparat fejn hu mqabbad l-iskaner."
-#: ../../standalone/scannerdrake_.c:95
+#: ../../standalone/scannerdrake_.c:109
msgid "choose device"
msgstr "agÄ§ĆŒel apparat"
-#: ../../standalone/scannerdrake_.c:101
+#: ../../standalone/scannerdrake_.c:115
#, c-format
msgid ""
"This %s scanner must be configured by printerdrake.\n"
@@ -12799,7 +13530,7 @@ msgstr ""
"Tista' tħaddem lill printerdrake miċ-Ċentru tal-Kontroll Mandrake fis-"
"sezzjoni ÄŠardwer."
-#: ../../standalone/scannerdrake_.c:106
+#: ../../standalone/scannerdrake_.c:120
#, c-format
msgid ""
"Your %s scanner has been configured.\n"
@@ -12810,12 +13541,12 @@ msgstr ""
"Tista' tiskannja dokumenti permezz ta' XSane taħt Multimedia/Grafika fil-"
"menu tal-programmi."
-#: ../../standalone/service_harddrake_.c:57
+#: ../../standalone/service_harddrake_.c:39
#, c-format
msgid "Some devices in the \"%s\" hardware class were removed:\n"
msgstr "Xi apparat fil-klassi tal-ħardwer \"%s\" tneħħew:\n"
-#: ../../standalone/service_harddrake_.c:61
+#: ../../standalone/service_harddrake_.c:43
#, c-format
msgid ""
"\n"
@@ -12824,36 +13555,6 @@ msgstr ""
"\n"
"Ä ie miĆŒjud xi apparat fil-klassi %s:\n"
-#: ../../standalone/tinyfirewall_.c:30
-msgid "Firewalling Configuration"
-msgstr "Konfigurazzjoni tal-Firewall"
-
-#: ../../standalone/tinyfirewall_.c:43
-msgid "Firewalling configuration"
-msgstr "Konfigurazzjoni tal-firewall"
-
-#: ../../standalone/tinyfirewall_.c:78
-msgid ""
-"Firewalling\n"
-"\n"
-"You already have set up a firewall.\n"
-"Click on Configure to change or remove the firewall"
-msgstr ""
-"Firewall\n"
-"\n"
-"Diĥà għandek firewall issettjat.\n"
-"Klikkja fuq \"ikkonfigura\" biex tbiddel jew tneħħi l-firewall."
-
-#: ../../standalone/tinyfirewall_.c:82
-msgid ""
-"Firewalling\n"
-"\n"
-"Click on Configure to set up a standard firewall"
-msgstr ""
-"Firewall\n"
-"\n"
-"Klikkja fuq \"ikkonfigura\" biex tissettja firewall standard."
-
#: ../../steps.pm_.c:14
msgid "Choose your language"
msgstr "AgÄ§ĆŒel il-lingwa"
@@ -12926,222 +13627,7 @@ msgstr "Installa aÄĄÄĄornamenti tas-sigurtĂ "
msgid "Exit install"
msgstr "Oħroĥ mill-installazzjoni"
-#: ../../tinyfirewall.pm_.c:9
-msgid ""
-"tinyfirewall configurator\n"
-"\n"
-"This configures a personal firewall for this Mandrake Linux machine.\n"
-"For a powerful dedicated firewall solution, please look to the\n"
-"specialized MandrakeSecurity Firewall distribution."
-msgstr ""
-"Konfiguratur tinyfirewall\n"
-"\n"
-"Dan jikkonfigura firewall personali għal din is-sistema Mandrake Linux.\n"
-"Għal kompjuter firewall dedikat, jekk jogħĥbok ara d-distribuzzjoni\n"
-"speċjalizzata MandrakeSecurity Firewall."
-
-#: ../../tinyfirewall.pm_.c:14
-msgid ""
-"We'll now ask you questions about which services you'd like to allow\n"
-"the Internet to connect to. Please think carefully about these\n"
-"questions, as your computer's security is important.\n"
-"\n"
-"Please, if you're not currently using one of these services, firewall\n"
-"it off. You can change this configuration anytime you like by\n"
-"re-running this application!"
-msgstr ""
-"Issa se nistaqsuk mistoqsijiet dwar liema servizzi tixtieq tħalli\n"
-"lill ħaddieħor jaċċessa mill-internet. Jekk jogħġbok aħseb sew dwar \n"
-"dawn il-mistoqsijiet, għax is-sigurtà tal-kompjuter huwa mportanti.\n"
-"\n"
-"Jekk m'intix qed tuĆŒa wieħed minn dawn is-servizzi, agÄ§ĆŒel \"Le\".\n"
-"Tista' tbiddel il-konfigurazzjoni meta trid billi terĥa' tħaddem dan\n"
-"il-programm."
-
-#: ../../tinyfirewall.pm_.c:21
-msgid ""
-"Are you running a web server on this machine that you need the whole\n"
-"Internet to see? If you are running a webserver that only needs to be\n"
-"accessed by this machine, you can safely answer NO here.\n"
-"\n"
-msgstr ""
-"Int qed tħaddem \"web server\" fuq dan il-kompjuter li tridu jkun\n"
-"aċċessibbli għall-Internet? Jekk qed tħaddem web server li jiġi\n"
-"aċċessat biss mill-istess kompjuter tista' tagÄ§ĆŒel \"Le\" hawn.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:26
-msgid ""
-"Are you running a name server on this machine? If you didn't set one\n"
-"up to give away IP and zone information to the whole Internet, please\n"
-"answer no.\n"
-"\n"
-msgstr ""
-"Int qed tħaddem name server (DNS) fuq din il-magna? Jekk ma ssettjajtx\n"
-"wieħed biex joffri informazzjoni dwar IP u ĆŒoni lill-internet kollu,\n"
-"agÄ§ĆŒel \"Le\".\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:31
-msgid ""
-"Do you want to allow incoming Secure Shell (ssh) connections? This\n"
-"is a telnet-replacement that you might use to login. If you're using\n"
-"telnet now, you should definitely switch to ssh. telnet is not\n"
-"encrypted -- so some attackers can steal your password if you use\n"
-"it. ssh is encrypted and doesn't allow for this eavesdropping."
-msgstr ""
-"Tixtieq tħalli konnessjonijiet ssh (Secure Shell) deħlin? Dan\n"
-"jieħu post it-telnet li tista' tuĆŒa biex taċċessa l-kompjuter\n"
-"remotament. Jekk kont qed tuĆŒa telnet, definittivament aqleb għall-\n"
-"ssh. Telnet mhuwiex iċċifrat, għalhekk ħaddieħor jista' jisraq il-\n"
-"password. Ssh huwa ċċifrat u ma jippermettix min jissemma'."
-
-#: ../../tinyfirewall.pm_.c:36
-msgid ""
-"Do you want to allow incoming telnet connections?\n"
-"This is horribly unsafe, as we explained in the previous screen. We\n"
-"strongly recommend answering No here and using ssh in place of\n"
-"telnet.\n"
-msgstr ""
-"Trid tħalli konnessjonijiet tat-telnet deħlin?\n"
-"Dan il-metodu huwa perikoluĆŒ ħafna, għax il-password tista' tinqara\n"
-"minn ħaddieħor. Aħna nirrakkomandaw li tirrispondi \"Le\" u tuĆŒa l-\n"
-"ssh minnflok it-telnet.\n"
-
-#: ../../tinyfirewall.pm_.c:41
-msgid ""
-"Are you running an FTP server here that you need accessible to the\n"
-"Internet? If you are, we strongly recommend that you only use it for\n"
-"Anonymous transfers. Any passwords sent by FTP can be stolen by some\n"
-"attackers, since FTP also uses no encryption for transferring passwords.\n"
-msgstr ""
-"Qed tħaddem server FTP li tridu jkun aċċessibbli mill-internet? Jekk\n"
-"iva, aħna nirrakkomandaw li dan jintuĆŒa biss għal trasferiment anonimu.\n"
-"Il-passwords li jintuĆŒaw bl-FTP jistgħu jinsterqu minn terzi persuni,\n"
-"peress li l-FTP ma jiċċifrax il-passwords meta jibgħathom.\n"
-
-#: ../../tinyfirewall.pm_.c:46
-msgid ""
-"Are you running a mail server here? If you're sending you \n"
-"messages through pine, mutt or any other text-based mail client,\n"
-"you probably are. Otherwise, you should firewall this off.\n"
-"\n"
-msgstr ""
-"Qed tħaddem server tal-imejl hawn? Jekk qed tibgħat il-messaĥĥi\n"
-"bil-pine, mutt jew klijent ieħor testwali (mhux grafiku), aktarx\n"
-"iva. Altrimenti jaqbillek tagÄ§ĆŒel \"le\".\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:51
-msgid ""
-"Are you running a POP or IMAP server here? This would\n"
-"be used to host non-web-based mail accounts for people via \n"
-"this machine.\n"
-"\n"
-msgstr ""
-"Qed tħaddem server POP jew IMAP? Dan jintuĆŒa biex tipprovdi\n"
-"imejl lill nies oħra mill-kompjuter tiegħek.\n"
-"\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:56
-msgid ""
-"You appear to be running a 2.2 kernel. If your network IP\n"
-"is automatically set by a computer in your home or office \n"
-"(dynamically assigned), we need to allow for this. Is\n"
-"this the case?\n"
-msgstr ""
-"Jidher li qed tuĆŒa kernel 2.2. Jekk in-numru IP tan-network\n"
-"huwa ssettjat awtomatikament minn kompjuter ieħor id-dar jew\n"
-"fl-uffiċċju (assenjat dinamikament), irridu nieħdu ħsiebu. Dan\n"
-"huwa l-kaĆŒ?\n"
-
-#: ../../tinyfirewall.pm_.c:61
-msgid ""
-"Is your computer getting time syncronized to another computer?\n"
-"Mostly, this is used by medium-large Unix/Linux organizations\n"
-"to synchronize time for logging and such. If you're not part\n"
-"of a larger office and haven't heard of this, you probably \n"
-"aren't."
-msgstr ""
-"Il-kompjuter tiegħek jissinkronizza l-ħin ma' kompjuter ieħor?\n"
-"Normalment, dan jintuĆŒa minn organizzazzjonijiet kbar ibbaĆŒati\n"
-"fuq il-Unix/Linux, biex jissinkronizzaw il-kompjuters. Jekk m'\n"
-"intix fuq sistema kbira u qatt ma smajt b'dan, aktarx li m'initx."
-
-#: ../../tinyfirewall.pm_.c:66
-msgid ""
-"Configuration complete. May we write these changes to disk?\n"
-"\n"
-"\n"
-"\n"
-msgstr ""
-"Konfigurazzjoni lesta. Nistgħu niktbu dawn il-bidliet fuq id-diska?\n"
-"\n"
-"\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:82
-#, c-format
-msgid "Can't open %s: %s\n"
-msgstr "Ma jistax jinfetaħ %s: %s\n"
-
-#: ../../tinyfirewall.pm_.c:84
-#, c-format
-msgid "Can't open %s for writing: %s\n"
-msgstr "Ma jistax jinfetaħ %s għall-kitba: %s\n"
-
-#: ../../tinyfirewall.pm_.c:178
-msgid "No I don't need DHCP"
-msgstr "Le, m'għandix bĆŒonn DHCP"
-
-#: ../../tinyfirewall.pm_.c:178
-msgid "Yes I need DHCP"
-msgstr "Iva għandi bĆŒonn DHCP"
-
-#: ../../tinyfirewall.pm_.c:179
-msgid "No I don't need NTP"
-msgstr "Le, m'għandix bĆŒonn NTP"
-
-#: ../../tinyfirewall.pm_.c:179
-msgid "Yes I need NTP"
-msgstr "Iva għandi bĆŒonn NTP"
-
-#: ../../tinyfirewall.pm_.c:180 ../../tinyfirewall.pm_.c:184
-msgid "Don't Save"
-msgstr "Tiktibx"
-
-#: ../../tinyfirewall.pm_.c:180 ../../tinyfirewall.pm_.c:184
-#: ../../tinyfirewall.pm_.c:204
-msgid "Save & Quit"
-msgstr "Ikteb u oħroĥ"
-
-#: ../../tinyfirewall.pm_.c:195 ../../tinyfirewall.pm_.c:199
-msgid "Firewall Configuration Wizard"
-msgstr "Saħħar tal-konfigurazzjoni tal-Firewall"
-
-#: ../../tinyfirewall.pm_.c:197
-msgid "No (firewall this off from the internet)"
-msgstr "Le (agħlaq dan mill-internet bil-firewall)"
-
-#: ../../tinyfirewall.pm_.c:198
-msgid "Yes (allow this through the firewall)"
-msgstr "Iva (ħalli 'l dan jgħaddi mill-firewall)"
-
-#: ../../tinyfirewall.pm_.c:230
-msgid "Please Wait... Verifying installed packages"
-msgstr "Stenna ftit, qed nivverifika l-pakketti nstallati"
-
-#: ../../tinyfirewall.pm_.c:236
-#, c-format
-msgid ""
-"Failure installing the needed packages : %s and Bastille.\n"
-" Try to install them manually."
-msgstr ""
-"Ma rnexxieliex ninstalla l-pakketti meħtieĥa: %s u Bastille.\n"
-" Ipprova nstallahom manwalment."
-
-#: ../../ugtk.pm_.c:619
+#: ../../ugtk.pm_.c:594
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr ""
"-*-times new roman-bold-r-normal--17-*-*-*-p-*-iso8859-3,-*-lucidux serif-*-"
@@ -13277,6 +13763,10 @@ msgid "Graphical Environment"
msgstr "Ambjent Grafiku"
#: ../../share/compssUsers:999
+msgid "Development"
+msgstr "ƻviluppar"
+
+#: ../../share/compssUsers:999
msgid "Apache, Pro-ftpd"
msgstr "Apache, Pro-ftpd"
@@ -13385,20 +13875,655 @@ msgstr "Multimedia - ÄŠruq ta' CDs"
msgid "Scientific Workstation"
msgstr "Xjentifiku"
-#~ msgid "\n"
-#~ msgstr "\n"
+#~ msgid ""
+#~ "The first time you try the X configuration, you may not be very "
+#~ "satisfied\n"
+#~ "with its display (screen is too small, shifted left or right...). Hence,\n"
+#~ "even if X starts up correctly, DrakX then asks you if the configuration\n"
+#~ "suits you. It will also propose to change it by displaying a list of "
+#~ "valid\n"
+#~ "modes it could find, asking you to select one.\n"
+#~ "\n"
+#~ "As a last resort, if you still cannot get X to work, choose \"Change\n"
+#~ "graphics card\", select \"Unlisted card\", and when prompted on which\n"
+#~ "server, choose \"FBDev\". This is a failsafe option which works with any\n"
+#~ "modern graphics card. Then choose \"Test again\" to be sure."
+#~ msgstr ""
+#~ "L-ewwel darba li tipprova l-konfigurazzjoni X, tista' ma tkunx sodisfatt\n"
+#~ "bid-dehra (skrin ĆŒgħir wisq, mitfugħ wisq lejn ix-xellug/lemin...). "
+#~ "Għalhekk,\n"
+#~ "anke jekk X jaħdem sew, DrakX jistaqsik jekk il-konfigurazzjoni "
+#~ "togħĥbokx.\n"
+#~ "Huwa jistaqsik jekk tixtieq tibdel xi ħaĥa billi jurik lista ta' "
+#~ "modalitajiet\n"
+#~ "differenti li seta' jsib, u jitolbok tagÄ§ĆŒel waħda.\n"
+#~ "\n"
+#~ "Bħala possibbiltĂ  ta' aħħar, jekk ma rnexxielekx tħaddem X, agÄ§ĆŒel "
+#~ "\"Ibdel\n"
+#~ "il-kard grafika\", agÄ§ĆŒel \"Kard mhux imniĆŒĆŒla\" u meta tiÄĄi mistoqsi "
+#~ "liema\n"
+#~ "server trid, agÄ§ĆŒel \"FBDev\". Din hija għaĆŒla ÄĄenerika ħafna li "
+#~ "għandha \n"
+#~ "taħdem mal-kards grafiċi moderni kollha. AgÄ§ĆŒel \"ErÄĄa' pprova\" biex "
+#~ "tkun \n"
+#~ "ĆŒgur."
+
+#~ msgid "Internet and Messaging"
+#~ msgstr "Internet u MessaÄĄÄĄi"
+
+#~ msgid "Multimedia and Graphics"
+#~ msgstr "Multimedja u Grafika"
+
+#~ msgid ""
+#~ "Mandrake Linux 8.2 provides 11 different graphical desktop environments "
+#~ "and window managers to choose from including GNOME 1.4, KDE 2.2.2, Window "
+#~ "Maker 0.8, and the rest"
+#~ msgstr ""
+#~ "Mandrake Linux 8.2 jipprovdilek 11-il ambjent tad-desktop grafiku mnejn "
+#~ "tagÄ§ĆŒel, inkluĆŒ GNOME 1.4, KDE 2.2.2, WindowMaker 0.8 u oħrajn"
+
+#~ msgid "Server Software"
+#~ msgstr "Programmi għal Server"
+
+#~ msgid "MandrakeCampus"
+#~ msgstr "MandrakeCampus"
+
+#~ msgid ""
+#~ "Would you like to learn Linux simply, quickly, and for free? MandrakeSoft "
+#~ "provides free Linux training, as well as a way to test your progress, at "
+#~ "MandrakeCampus -- our online training center"
+#~ msgstr ""
+#~ "Tixtieq titgħallem il-Linux b'mod sempliċi, malajr u b'xejn? MandrakeSoft "
+#~ "jipprovdu stħarriĥ fuq il-Linux, kif ukoll mezz biex tittestja l-progress "
+#~ "tiegħek fuq MandrakeCampus - iċ-ċentru ta' taħriġ elettroniku tagħna"
+
+#~ msgid ""
+#~ "Quality support from the Linux Community, and from MandrakeSoft, is just "
+#~ "around the corner. And if you're already a Linux veteran, become an "
+#~ "\"Expert\" and share your knowledge at our support website"
+#~ msgstr ""
+#~ "Għajnuna ta' kwalità mill-Komunità Linux, u minngħand MandrakeSoft, huwa "
+#~ "pass 'il bogħod. U jekk int diĥà veteran tal-Linux, tista' ssir \"Espert"
+#~ "\" u taqsam it-tagħlim tiegħek fil-website ta' sapport tagħna."
-#~ msgid "$mode: $warning"
-#~ msgstr "$mode: $warning"
+#~ msgid "MandrakeConsulting"
+#~ msgstr "MandrakeConsulting"
#~ msgid ""
+#~ "For all of your IT projects, our consultants are ready to analyze your "
+#~ "requirements and offer a customized solution. Benefit from MandrakeSoft's "
+#~ "vast experience as a Linux producer to provide a true IT alternative for "
+#~ "your business organization"
+#~ msgstr ""
+#~ "Għall-proĥetti kollha tal-IT tiegħek, il-konsulenti tagħna lesti "
+#~ "janalizzaw il-ħtiĥijiet tiegħek u joffrulek soluzzjoni personalizzata. "
+#~ "Ibbenefika mill-esperjenza vasta ta' MandrakeSoft bħala produttur tal-"
+#~ "Linux biex tipprovdi soluzzjoni sħiħa alternattiva għad-ditta tiegħek"
+
+#~ msgid "MandrakeStore"
+#~ msgstr "MandrakeStore"
+
+#~ msgid ""
+#~ "For more information on MandrakeSoft's Professional Services and "
+#~ "commercial offerings, please see the following web page:"
+#~ msgstr ""
+#~ "Għal iĆŒjed tagħrif dwar is-servizzi professjonali ta' MandrakeSoft kif "
+#~ "ukoll offerti kummerċjali, jekk jogħġbok ara din il-website:"
+
+#~ msgid "LBA (doesn't work on old BIOSes)"
+#~ msgstr "LBA (ma jaħdimx ma' kompjuters antiki)"
+
+#~ msgid "Make initrd 'mkinird -f /boot/initrd-%s.img %s'."
+#~ msgstr "Oħloq initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
+
+#~ msgid "You don't have any partitions!"
+#~ msgstr "M'għandek ebda partizzjoni!"
+
+#~ msgid ""
+#~ "The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it "
+#~ "by\n"
+#~ "booting from the CD-ROM, press the >>F1<< key at boot and type "
+#~ ">>rescue<<\n"
+#~ "at the prompt. But in case your computer cannot boot from the CD-ROM, "
+#~ "you\n"
+#~ "should come back to this step for help in at least two situations:\n"
+#~ "\n"
+#~ " * when installing the bootloader, DrakX will rewrite the boot sector "
+#~ "(MBR)\n"
+#~ "of your main disk (unless you are using another boot manager), to allow "
+#~ "you\n"
+#~ "to start up with either Windows or GNU/Linux (assuming you have Windows "
+#~ "in\n"
+#~ "your system). If you need to reinstall Windows, the Microsoft install\n"
+#~ "process will rewrite the boot sector, and then you will not be able to\n"
+#~ "start GNU/Linux!\n"
+#~ "\n"
+#~ " * if a problem arises and you cannot start up GNU/Linux from the hard\n"
+#~ "disk, this floppy disk will be the only means of starting up GNU/Linux. "
+#~ "It\n"
+#~ "contains a fair number of system tools for restoring a system, which has\n"
+#~ "crashed due to a power failure, an unfortunate typing error, a typo in a\n"
+#~ "password, or any other reason.\n"
+#~ "\n"
+#~ "When you click on this step, you will be asked to enter a disk inside "
+#~ "the\n"
+#~ "drive. The floppy disk you will insert must be empty or contain data "
+#~ "which\n"
+#~ "you do not need. You will not have to format it since DrakX will rewrite\n"
+#~ "the whole disk."
+#~ msgstr ""
+#~ "Is-CD tal-Mandrake Linux għandu modalità biex tirkupra sistema. Tista' \n"
+#~ "taċċessaha billi tibda' l-kompjuter minn fuq l-ewwel CD, tagħfas \"F1\" "
+#~ "x'ħin\n"
+#~ "titla', u mbagħad tittajpja \"rescue\" fil-prompt. Imma, f'kaĆŒ li l-"
+#~ "kompjuter\n"
+#~ "ma jistax jitħaddem mis-CDROM, int jista' jkollok bĆŒonn dan il-pass ta' \n"
+#~ "l-inqas f'ĆŒewÄĄ sitwazzjonijiet:\n"
+#~ "\n"
+#~ " * Meta tinstalla l-bootloader, DrakX jikteb is-settur \"boot\" (MBR) "
+#~ "tad-\n"
+#~ "diska prinċipali (sakemm m'intix qed tuĆŒa bootloader ieħor) sabiex tkun "
+#~ "tista'\n"
+#~ "tagÄ§ĆŒel lil-Linux jew Windows x'ħin tixgħel (jekk għandek il-Windows \n"
+#~ "installat). Jekk xi darba jkollok terĥa' tinstalla l-Windows, dan iħassar "
+#~ "din\n"
+#~ "l-informazzjoni, u ma tkunx tista' ttella' l-GNU/Linux.\n"
+#~ "\n"
+#~ " * Jekk tinħoloq xi problema li ma tħallix lill-GNU/Linux jitla' mid-"
+#~ "diska.\n"
+#~ "din il-flopi disk tista' tkun l-uniku mezz biex ittella' l-GNU/Linux. "
+#~ "Fid-\n"
+#~ "diska hemm numru raĥonevoli ta' programmi biex jgħinuk terĥa' "
+#~ "tirrestawra\n"
+#~ "sistema li kkraxxjat minħabba li jmur id-dawl, ĆŒbalji li jsiru, jew "
+#~ "raÄĄunijiet\n"
+#~ "oħra.\n"
+#~ "\n"
+#~ "Meta tikklikkja dan il-pass, int tiĥi mitlub iddaħħal diska fid-drajv. "
+#~ "Il-\n"
+#~ "flopi li ddaħħal trid tkun vojta, jew ikun fiha informazzjoni li tista' \n"
+#~ "tħassar. M'għandekx bĆŒonn tifformattjaha minn qabel għax DrakX se "
+#~ "jħassarha \n"
+#~ "kollha."
+
+#~ msgid ""
+#~ "I can't read your partition table, it's too corrupted for me :(\n"
+#~ "I can try to go on, erasing over bad partitions (ALL DATA will be "
+#~ "lost!).\n"
+#~ "The other solution is to not allow DrakX to modify the partition table.\n"
+#~ "(the error is %s)\n"
+#~ "\n"
+#~ "Do you agree to loose all the partitions?\n"
+#~ msgstr ""
+#~ "Ma nistax naqra t-tabella tal-partizzjonijiet, hija korrotta wisq :(\n"
+#~ "Nista' nkompli billi nħassar partizzjonijiet Ä§ĆŒiena (L-INFORMAZZJONI \n"
+#~ "KOLLHA tintilef). L-alternattiva hi li ma tħallix lill DrakX ibiddel\n"
+#~ "it-tabella tal-partizzjonijiet (il-problema hi %s)\n"
+#~ "\n"
+#~ "Trid titlef il-partizzjonijiet kollha?\n"
+
+#~ msgid ""
+#~ "DiskDrake failed to read correctly the partition table.\n"
+#~ "Continue at your own risk!"
+#~ msgstr ""
+#~ "DiskDrake ma rnexxielux jaqra t-tabella tal-partizzjonijiet.\n"
+#~ "Jekk tkompli jkun riskju tiegħek!"
+
+#~ msgid ""
+#~ "Which ISDN configuration do you prefer?\n"
+#~ "\n"
+#~ "* The Old configuration uses isdn4net. It contains powerfull\n"
+#~ " tools, but is tricky to configure, and not standard.\n"
#~ "\n"
-#~ "Drakbackup activities via $net_proto:\n"
+#~ "* The New configuration is easier to understand, more\n"
+#~ " standard, but with less tools.\n"
#~ "\n"
+#~ "We recommand the light configuration.\n"
#~ msgstr ""
+#~ "X'tip ta' konfigurazzjoni ISDN trid?\n"
#~ "\n"
-#~ "AttivitĂ  Drakbackup permezz ta' $net_proto:\n"
+#~ "* Il-konfigurazzjoni antika tuĆŒa isdn4net. Fiha għodda\n"
+#~ "b'saħħithom imma tista' tkun diffiċli biex tissettjaha\n"
+#~ "u m'hix standard.\n"
#~ "\n"
+#~ "* Il-konfigurazzjoni l-ÄĄdida hija iĆŒjed faċli tifhimha,\n"
+#~ "iĆŒjed standard, imma fiha inqas għodda.\n"
+#~ "\n"
+#~ "Aħna nirrakkomandaw il-konfigurazzjoni ĥdida.\n"
+
+#~ msgid ""
+#~ "\n"
+#~ "Welcome to the Printer Setup Wizard\n"
+#~ "\n"
+#~ "This wizard will help you to install your printer(s) connected to this "
+#~ "computer, connected directly to the network or to a remote Windows "
+#~ "machine.\n"
+#~ "\n"
+#~ "If you have printer(s) connected to this machine, Please plug it/them in "
+#~ "on this computer and turn it/them on so that they can be auto-detected. "
+#~ "Also your network printer(s) and you Windows machines must be connected "
+#~ "and turned on.\n"
+#~ "\n"
+#~ "Note that auto-detecting printers on the network takes longer than the "
+#~ "auto-detection of only the printers connected to this machine. So turn "
+#~ "off the auto-detection of network and/or Windows-hosted printers when you "
+#~ "don't need it.\n"
+#~ "\n"
+#~ " Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
+#~ "want to set up your printer(s) now."
+#~ msgstr ""
+#~ "\n"
+#~ "Merħba għas-saħħar tal-printers\n"
+#~ "\n"
+#~ "Dan is-saħħar jgħinek tinstalla printer(s) imqabbda direttament ma' dan "
+#~ "il-kompjuter, imqabbda direttament man-network, jew imqabbda ma' "
+#~ "kompjuters Windows remoti.\n"
+#~ "\n"
+#~ "Jekk għandek printer imqabbad direttament ma' dan il-kompjuter, jekk "
+#~ "jogħĥbok ixgħelu issa u ara li mqabbad sew, ħalli dan jingħaraf "
+#~ "awtomatikament. Bl-istess mod, jekk għandek printers man-network jew fuq "
+#~ "kompjuters bil-Windows, dawn iridu jkunu mqabbdin u mixgħula.\n"
+#~ "\n"
+#~ "Innota li l-għarfien awtomatiku ta' printers fuq in-network idum iĆŒjed "
+#~ "mill-għarfien ta' printers imqabbda lokalment, għalhekk itfi l-għarfien "
+#~ "awtomatiku ta' printers fuq in-network jew fuq Windows jekk m'hemmx.\n"
+#~ "\n"
+#~ "Agħfas \"Li jmiss\" meta tlesti, jew \"Ikkanċella\" jekk ma tridx "
+#~ "tissettja printers għalissa."
+
+#~ msgid ""
+#~ "\n"
+#~ "Welcome to the Printer Setup Wizard\n"
+#~ "\n"
+#~ "This wizard will help you to install your printer(s) connected to this "
+#~ "computer or connected directly to the network.\n"
+#~ "\n"
+#~ "If you have printer(s) connected to this machine, Please plug it/them in "
+#~ "on this computer and turn it/them on so that they can be auto-detected. "
+#~ "Also your network printer(s) must be connected and turned on.\n"
+#~ "\n"
+#~ "Note that auto-detecting printers on the network takes longer than the "
+#~ "auto-detection of only the printers connected to this machine. So turn "
+#~ "off the auto-detection of network printers when you don't need it.\n"
+#~ "\n"
+#~ " Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
+#~ "want to set up your printer(s) now."
+#~ msgstr ""
+#~ "\n"
+#~ "Merħba għas-saħħar tal-printers\n"
+#~ "\n"
+#~ "Dan is-saħħar jgħinek tinstalla printer(s) imqabbda direttament ma' dan "
+#~ "il-kompjuter jew imqabbda direttament man-network.\n"
+#~ "\n"
+#~ "Jekk għandek printer imqabbad direttament ma' dan il-kompjuter, jekk "
+#~ "jogħĥbok ixgħelu issa u ara li mqabbad sew, ħalli dan jingħaraf "
+#~ "awtomatikament. Bl-istess mod, jekk għandek printers man-network, dawn "
+#~ "iridu jkunu mqabbdin u mixgħula.\n"
+#~ "\n"
+#~ "Innota li l-għarfien awtomatiku ta' printers fuq in-network idum iĆŒjed "
+#~ "mill-għarfien ta' printers imqabbda lokalment, għalhekk itfi l-għarfien "
+#~ "awtomatiku ta' printers fuq in-network jekk m'hemmx.\n"
+#~ "\n"
+#~ "Agħfas \"Li jmiss\" meta tlesti, jew \"Ikkanċella\" jekk ma tridx "
+#~ "tissettja printers għalissa."
+
+#~ msgid "Preparing PrinterDrake..."
+#~ msgstr "Qed jiÄĄi preparat PrinterDrake..."
+
+#~ msgid ""
+#~ "I can't read your partition table, it's too corrupted for me :(\n"
+#~ "I'll try to go on blanking bad partitions"
+#~ msgstr ""
+#~ "Ma nistax naqra t-tabella tal-partizzjoni - hija mħarbta wisq :(\n"
+#~ "ÄŠa nipprova nkompli nneħħi partizzjonijiet Ä§ĆŒiena"
+
+#~ msgid ""
+#~ "Please Build backup before to restore it...\n"
+#~ " or verify that your path to save is correct."
+#~ msgstr ""
+#~ "Jekk jogħĥbok ibni kopja tas-sigurtà qabel tirrestawraha...\n"
+#~ " jew ivverifika li d-direttorju huwa tajjeb."
+
+#~ msgid ""
+#~ "Error durind sendmail\n"
+#~ " your report mail was not sent\n"
+#~ " Please configure sendmail"
+#~ msgstr ""
+#~ "Problema waqt sendmail\n"
+#~ " ir-rapport ma ntbagħatx.\n"
+#~ " Jekk jogħĥbok ikkonfigura s-sendmail"
+
+#~ msgid ""
+#~ "options description:\n"
+#~ "\n"
+#~ " - Backup system files:\n"
+#~ " \n"
+#~ "\tThis option allows you to backup your /etc directory,\n"
+#~ "\twhich contains all configuration files. Please be\n"
+#~ "\tcareful during the restore step to not overwrite:\n"
+#~ "\t\t/etc/passwd \n"
+#~ "\t\t/etc/group \n"
+#~ "\t\t/etc/fstab\n"
+#~ "\n"
+#~ " - Backup User files: \n"
+#~ "\n"
+#~ "\tThis option allows you select all users that you want \n"
+#~ "\tto backup.\n"
+#~ "\tTo preserve disk space, it is recommended that you \n"
+#~ "\tdo not include web browser's cache.\n"
+#~ "\n"
+#~ " - Backup Other files: \n"
+#~ "\n"
+#~ "\tThis option allows you to add more data to save.\n"
+#~ "\tWith the other backup it's not possible at the \n"
+#~ "\tmoment to select select incremental backup.\t\t\n"
+#~ " \n"
+#~ " - Incremental Backups:\n"
+#~ "\n"
+#~ "\tThe incremental backup is the most powerful \n"
+#~ "\toption for backup. This option allows you \n"
+#~ "\tto backup all your data the first time, and \n"
+#~ "\tonly the changed afterward.\n"
+#~ "\tThen you will be able, during the restore\n"
+#~ "\tstep, to restore your data from a specified\n"
+#~ "\tdate.\n"
+#~ "\tIf you have not selected this option all\n"
+#~ "\told backups are deleted before each backup. \n"
+#~ "\n"
+#~ "\n"
+#~ msgstr ""
+#~ "deskrizzjoni ta' l-għaĆŒliet:\n"
+#~ "\n"
+#~ " - ÄŠu kopja tas-sigurtĂ  tal-fajls tas-sistema:\n"
+#~ "\n"
+#~ "\tDin l-għaĆŒla tħallik tieħu kopja tad-direttorju /etc,\n"
+#~ "\tli fih il-fajls kollha tal-konfigurazzjoni tas-sistema.\n"
+#~ "\tJekk jogħĥbok oqgħod attent waqt il-pass ta' restawr li\n"
+#~ "\tma tħassarx:\n"
+#~ "\t\t/etc/passwd \n"
+#~ "\t\t/etc/group \n"
+#~ "\t\t/etc/fstab\n"
+#~ "\n"
+#~ " - ÄŠu kopja tas-sigurtĂ  tal-fajls tal-users:\n"
+#~ "\n"
+#~ "\tDin l-għaĆŒla tħallik tagÄ§ĆŒel il-users kollha li trid tieħu\n"
+#~ "\tkopja tagħhom. Biex tnaqqas l-ispazju li jintuĆŒa, mhux \n"
+#~ "\trakkomandat li tinkludi l-cache tal-web browser.\n"
+#~ "\n"
+#~ " - Ċu kopja tas-sigurtà ta' fajls oħra:\n"
+#~ "\tDin l-għaĆŒla tħallik iĆŒĆŒid informazzjoni oħra x'tikkopja.\n"
+#~ "\tB'din l-għaĆŒla m'hux possibbli tagÄ§ĆŒel \"kopja tas-sigurtĂ  inkrementali"
+#~ "\"\n"
+#~ "\tgħalissa.\n"
+#~ "\n"
+#~ " - Kopja tas-sigurtĂ  inkrementali:\n"
+#~ "\n"
+#~ "\tIl-kopja tas-sigurtĂ  inkrementali huwa l-iĆŒjed metodu b'saħħtu \n"
+#~ "\tgħall-kopji tas-sigurtĂ . Din l-għaĆŒla tħallik tieħu kopja tal-\n"
+#~ "\tinformazzjoni kollha l-ewwel darba, u wara tieħu kopja\n"
+#~ "\tbiss ta' dak li nbidel.\n"
+#~ "\tWara, tkun tista', waqt il-pass ta' restawr, li\n"
+#~ "\ttirrestawra biss dak li nbidel minn ċertu data.\n"
+#~ "\tJekk qatt ma għaĆŒilt din l-għaĆŒla qabel, il-kopji ta' sigurtĂ \n"
+#~ "\tantiki kollha jiĥu mħassra qabel kull kopja tas-sigurtà.\n"
+#~ "\n"
+#~ "\n"
+
+#~ msgid ""
+#~ "restore description:\n"
+#~ " \n"
+#~ "Only the most recent date will be used ,because with incremental \n"
+#~ "backups it is necesarry to restore one by one each older backups.\n"
+#~ "\n"
+#~ "So if you don't like to restore an user please unselect all his\n"
+#~ "check box.\n"
+#~ "\n"
+#~ "Otherwise, you are able to select only one of this\n"
+#~ "\n"
+#~ " - Incremental Backups:\n"
+#~ "\n"
+#~ "\tThe incremental backup is the most powerfull \n"
+#~ "\toption to use backup, this option allow you \n"
+#~ "\tto backup all your data the first time, and \n"
+#~ "\tonly the changed after.\n"
+#~ "\tSo you will be able during the restore\n"
+#~ "\tstep, to restore your data from a specified\n"
+#~ "\tdate.\n"
+#~ "\tIf you have not selected this options all\n"
+#~ "\told backups are deleted before each backup. \n"
+#~ "\n"
+#~ "\n"
+#~ "\n"
+#~ msgstr ""
+#~ "deskrizzjoni tar-restawr:\n"
+#~ "\n"
+#~ "L-iĆŒjed data riċenti biss tintuĆŒa, għax bil-kopji tas-sigurtĂ  "
+#~ "inkrementali\n"
+#~ "huwa neċessarju li tirrestawra l-kopji antiki wieħed wieħed.\n"
+#~ "\n"
+#~ "Għalhekk jekk ma tridx tirrestawra user jekk jogħĥbok neħħi l-marka mill-"
+#~ "kaxxa tiegħu.\n"
+#~ "\n"
+#~ "Altrimenti, tista' tagÄ§ĆŒel biss wieħed minn dawn:\n"
+#~ "\n"
+#~ " - Kopja tas-sigurtĂ  inkrementali\n"
+#~ "\n"
+#~ "\tIl-kopji inkrementali huwa l-iĆŒjed metodu b'saħħtu \n"
+#~ "\tgħall-kopji tas-sigurtĂ . Din l-għaĆŒla tħallik tieħu kopja tal-\n"
+#~ "\tinformazzjoni kollha l-ewwel darba, u wara tieħu kopja\n"
+#~ "\tbiss ta' dak li nbidel.\n"
+#~ "\tGħalhekk huwa possibbli waqt il-pass ta' restawr, li\n"
+#~ "\ttirrestawra biss dak li nbidel minn ċertu data.\n"
+#~ "\tJekk qatt ma għaĆŒilt din l-għaĆŒla qabel, il-kopji tas-sigurtĂ \n"
+#~ "\tantiki kollha jiĥu mħassra qabel kull kopja tas-sigurtà. \n"
+#~ "\n"
+#~ "\n"
+#~ "\n"
+
+#~ msgid ""
+#~ "You will receive an alert if one of the selected service is no more "
+#~ "running"
+#~ msgstr ""
+#~ "Tirċievi twissija jekk wieħed minn dawn is-servizzi ma jibqax jaħdem"
+
+#~ msgid "%s found on %s, configure it ?"
+#~ msgstr "%s instab fuq %s, trid tikkonfigurah?"
+
+#~ msgid "Firewalling Configuration"
+#~ msgstr "Konfigurazzjoni tal-Firewall"
+
+#~ msgid "Firewalling configuration"
+#~ msgstr "Konfigurazzjoni tal-firewall"
+
+#~ msgid ""
+#~ "Firewalling\n"
+#~ "\n"
+#~ "You already have set up a firewall.\n"
+#~ "Click on Configure to change or remove the firewall"
+#~ msgstr ""
+#~ "Firewall\n"
+#~ "\n"
+#~ "Diĥà għandek firewall issettjat.\n"
+#~ "Klikkja fuq \"ikkonfigura\" biex tbiddel jew tneħħi l-firewall."
+
+#~ msgid ""
+#~ "Firewalling\n"
+#~ "\n"
+#~ "Click on Configure to set up a standard firewall"
+#~ msgstr ""
+#~ "Firewall\n"
+#~ "\n"
+#~ "Klikkja fuq \"ikkonfigura\" biex tissettja firewall standard."
+
+#~ msgid ""
+#~ "We'll now ask you questions about which services you'd like to allow\n"
+#~ "the Internet to connect to. Please think carefully about these\n"
+#~ "questions, as your computer's security is important.\n"
+#~ "\n"
+#~ "Please, if you're not currently using one of these services, firewall\n"
+#~ "it off. You can change this configuration anytime you like by\n"
+#~ "re-running this application!"
+#~ msgstr ""
+#~ "Issa se nistaqsuk mistoqsijiet dwar liema servizzi tixtieq tħalli\n"
+#~ "lill ħaddieħor jaċċessa mill-internet. Jekk jogħġbok aħseb sew dwar \n"
+#~ "dawn il-mistoqsijiet, għax is-sigurtà tal-kompjuter huwa mportanti.\n"
+#~ "\n"
+#~ "Jekk m'intix qed tuĆŒa wieħed minn dawn is-servizzi, agÄ§ĆŒel \"Le\".\n"
+#~ "Tista' tbiddel il-konfigurazzjoni meta trid billi terĥa' tħaddem dan\n"
+#~ "il-programm."
+
+#~ msgid ""
+#~ "Are you running a web server on this machine that you need the whole\n"
+#~ "Internet to see? If you are running a webserver that only needs to be\n"
+#~ "accessed by this machine, you can safely answer NO here.\n"
+#~ "\n"
+#~ msgstr ""
+#~ "Int qed tħaddem \"web server\" fuq dan il-kompjuter li tridu jkun\n"
+#~ "aċċessibbli għall-Internet? Jekk qed tħaddem web server li jiġi\n"
+#~ "aċċessat biss mill-istess kompjuter tista' tagÄ§ĆŒel \"Le\" hawn.\n"
+#~ "\n"
+
+#~ msgid ""
+#~ "Are you running a name server on this machine? If you didn't set one\n"
+#~ "up to give away IP and zone information to the whole Internet, please\n"
+#~ "answer no.\n"
+#~ "\n"
+#~ msgstr ""
+#~ "Int qed tħaddem name server (DNS) fuq din il-magna? Jekk ma ssettjajtx\n"
+#~ "wieħed biex joffri informazzjoni dwar IP u ĆŒoni lill-internet kollu,\n"
+#~ "agÄ§ĆŒel \"Le\".\n"
+#~ "\n"
+
+#~ msgid ""
+#~ "Do you want to allow incoming Secure Shell (ssh) connections? This\n"
+#~ "is a telnet-replacement that you might use to login. If you're using\n"
+#~ "telnet now, you should definitely switch to ssh. telnet is not\n"
+#~ "encrypted -- so some attackers can steal your password if you use\n"
+#~ "it. ssh is encrypted and doesn't allow for this eavesdropping."
+#~ msgstr ""
+#~ "Tixtieq tħalli konnessjonijiet ssh (Secure Shell) deħlin? Dan\n"
+#~ "jieħu post it-telnet li tista' tuĆŒa biex taċċessa l-kompjuter\n"
+#~ "remotament. Jekk kont qed tuĆŒa telnet, definittivament aqleb għall-\n"
+#~ "ssh. Telnet mhuwiex iċċifrat, għalhekk ħaddieħor jista' jisraq il-\n"
+#~ "password. Ssh huwa ċċifrat u ma jippermettix min jissemma'."
+
+#~ msgid ""
+#~ "Do you want to allow incoming telnet connections?\n"
+#~ "This is horribly unsafe, as we explained in the previous screen. We\n"
+#~ "strongly recommend answering No here and using ssh in place of\n"
+#~ "telnet.\n"
+#~ msgstr ""
+#~ "Trid tħalli konnessjonijiet tat-telnet deħlin?\n"
+#~ "Dan il-metodu huwa perikoluĆŒ ħafna, għax il-password tista' tinqara\n"
+#~ "minn ħaddieħor. Aħna nirrakkomandaw li tirrispondi \"Le\" u tuĆŒa l-\n"
+#~ "ssh minnflok it-telnet.\n"
+
+#~ msgid ""
+#~ "Are you running an FTP server here that you need accessible to the\n"
+#~ "Internet? If you are, we strongly recommend that you only use it for\n"
+#~ "Anonymous transfers. Any passwords sent by FTP can be stolen by some\n"
+#~ "attackers, since FTP also uses no encryption for transferring passwords.\n"
+#~ msgstr ""
+#~ "Qed tħaddem server FTP li tridu jkun aċċessibbli mill-internet? Jekk\n"
+#~ "iva, aħna nirrakkomandaw li dan jintuĆŒa biss għal trasferiment anonimu.\n"
+#~ "Il-passwords li jintuĆŒaw bl-FTP jistgħu jinsterqu minn terzi persuni,\n"
+#~ "peress li l-FTP ma jiċċifrax il-passwords meta jibgħathom.\n"
+
+#~ msgid ""
+#~ "Are you running a mail server here? If you're sending you \n"
+#~ "messages through pine, mutt or any other text-based mail client,\n"
+#~ "you probably are. Otherwise, you should firewall this off.\n"
+#~ "\n"
+#~ msgstr ""
+#~ "Qed tħaddem server tal-imejl hawn? Jekk qed tibgħat il-messaĥĥi\n"
+#~ "bil-pine, mutt jew klijent ieħor testwali (mhux grafiku), aktarx\n"
+#~ "iva. Altrimenti jaqbillek tagÄ§ĆŒel \"le\".\n"
+#~ "\n"
+
+#~ msgid ""
+#~ "Are you running a POP or IMAP server here? This would\n"
+#~ "be used to host non-web-based mail accounts for people via \n"
+#~ "this machine.\n"
+#~ "\n"
+#~ msgstr ""
+#~ "Qed tħaddem server POP jew IMAP? Dan jintuĆŒa biex tipprovdi\n"
+#~ "imejl lill nies oħra mill-kompjuter tiegħek.\n"
+#~ "\n"
+#~ "\n"
+
+#~ msgid ""
+#~ "You appear to be running a 2.2 kernel. If your network IP\n"
+#~ "is automatically set by a computer in your home or office \n"
+#~ "(dynamically assigned), we need to allow for this. Is\n"
+#~ "this the case?\n"
+#~ msgstr ""
+#~ "Jidher li qed tuĆŒa kernel 2.2. Jekk in-numru IP tan-network\n"
+#~ "huwa ssettjat awtomatikament minn kompjuter ieħor id-dar jew\n"
+#~ "fl-uffiċċju (assenjat dinamikament), irridu nieħdu ħsiebu. Dan\n"
+#~ "huwa l-kaĆŒ?\n"
+
+#~ msgid ""
+#~ "Is your computer getting time syncronized to another computer?\n"
+#~ "Mostly, this is used by medium-large Unix/Linux organizations\n"
+#~ "to synchronize time for logging and such. If you're not part\n"
+#~ "of a larger office and haven't heard of this, you probably \n"
+#~ "aren't."
+#~ msgstr ""
+#~ "Il-kompjuter tiegħek jissinkronizza l-ħin ma' kompjuter ieħor?\n"
+#~ "Normalment, dan jintuĆŒa minn organizzazzjonijiet kbar ibbaĆŒati\n"
+#~ "fuq il-Unix/Linux, biex jissinkronizzaw il-kompjuters. Jekk m'\n"
+#~ "intix fuq sistema kbira u qatt ma smajt b'dan, aktarx li m'initx."
+
+#~ msgid ""
+#~ "Configuration complete. May we write these changes to disk?\n"
+#~ "\n"
+#~ "\n"
+#~ "\n"
+#~ msgstr ""
+#~ "Konfigurazzjoni lesta. Nistgħu niktbu dawn il-bidliet fuq id-diska?\n"
+#~ "\n"
+#~ "\n"
+#~ "\n"
+
+#~ msgid "Can't open %s for writing: %s\n"
+#~ msgstr "Ma jistax jinfetaħ %s għall-kitba: %s\n"
+
+#~ msgid "No I don't need DHCP"
+#~ msgstr "Le, m'għandix bĆŒonn DHCP"
+
+#~ msgid "Yes I need DHCP"
+#~ msgstr "Iva għandi bĆŒonn DHCP"
+
+#~ msgid "No I don't need NTP"
+#~ msgstr "Le, m'għandix bĆŒonn NTP"
+
+#~ msgid "Yes I need NTP"
+#~ msgstr "Iva għandi bĆŒonn NTP"
+
+#~ msgid "Don't Save"
+#~ msgstr "Tiktibx"
+
+#~ msgid "Save & Quit"
+#~ msgstr "Ikteb u oħroĥ"
+
+#~ msgid "Firewall Configuration Wizard"
+#~ msgstr "Saħħar tal-konfigurazzjoni tal-Firewall"
+
+#~ msgid "No (firewall this off from the internet)"
+#~ msgstr "Le (agħlaq dan mill-internet bil-firewall)"
+
+#~ msgid "Yes (allow this through the firewall)"
+#~ msgstr "Iva (ħalli 'l dan jgħaddi mill-firewall)"
+
+#~ msgid "Please Wait... Verifying installed packages"
+#~ msgstr "Stenna ftit, qed nivverifika l-pakketti nstallati"
+
+#~ msgid ""
+#~ "Failure installing the needed packages: %s and Bastille.\n"
+#~ " Try to install them manually."
+#~ msgstr ""
+#~ "Ma rnexxieliex ninstalla l-pakketti meħtieĥa: %s u Bastille.\n"
+#~ " Ipprova nstallahom manwalment."
#~ msgid ""
#~ "This level is to be used with care. It makes your system more easy to "
@@ -13437,12 +14562,6 @@ msgstr "Xjentifiku"
#~ msgid "Security Checks"
#~ msgstr "Ċekkjar ta' sigurtà"
-#~ msgid "WARNING: $warning"
-#~ msgstr "TWISSIJA: $warning"
-
-#~ msgid "$descr"
-#~ msgstr "$descr"
-
#~ msgid "Data list to include on CDROM."
#~ msgstr "Lista ta' informazzjoni x'tinkludi fuq is-CDROM"
@@ -13555,37 +14674,15 @@ msgstr "Xjentifiku"
#~ "Biex tinstalla printer min-network, klikkja \"Ikkanċella\", aqleb għall-"
#~ "modalitĂ  esperti, u erÄĄa' agÄ§ĆŒel \"Ć»id printer ÄĄdid\"."
-#, fuzzy
-#~ msgid ""
-#~ "Is your printer a multi-function device from HP (OfficeJet, PSC, LaserJet "
-#~ "1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart or an HP "
-#~ "LaserJet 2200?"
-#~ msgstr ""
-#~ "Il-printer tiegħek huwa apparat multi-funzjonali tal-HP (OfficeJet, PSC, "
-#~ "LaserJet 1100/1200/1220/3200/3300 bi skaner), HP Photosmart P100 jew "
-#~ "1315, jew HP LaserJet 2200?"
-
#~ msgid "Installing HPOJ package..."
#~ msgstr "Qed ninstalla l-pakkett HPOJ..."
#~ msgid "Checking device and configuring HPOJ..."
#~ msgstr "Qed niċċekkja u nikkonfigura l-apparat HPOJ..."
-#, fuzzy
-#~ msgid "Installing SANE packages..."
-#~ msgstr "Qed ninstalla pakkett SANE..."
-
-#, fuzzy
-#~ msgid "Installing mtools packages..."
-#~ msgstr "Qed ninstalla pakketti..."
-
#~ msgid "Scanning on your HP multi-function device"
#~ msgstr "Skannjar fuq apparat multi-funzjoni HP"
-#, fuzzy
-#~ msgid "Photo memory card access on your HP multi-function device"
-#~ msgstr "Skannjar fuq apparat multi-funzjoni HP"
-
#~ msgid "Making printer port available for CUPS..."
#~ msgstr "Qed nagħmel il-port tal-printer disponibbli għal CUPS..."
diff --git a/perl-install/share/po/nl.po b/perl-install/share/po/nl.po
index 042d562bb..8d69f0490 100644
--- a/perl-install/share/po/nl.po
+++ b/perl-install/share/po/nl.po
@@ -8,15 +8,14 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: drakfloppy 0.30\n"
-"POT-Creation-Date: 2002-08-21 15:44+0200\n"
-"PO-Revision-Date: 2002-07-24 13:29+0200\n"
-"Last-Translator: Peter Bosch <peter.bosch@hccnet.nl>\n"
+"Project-Id-Version: DrakX\n"
+"POT-Creation-Date: 2002-09-02 20:14+0200\n"
+"PO-Revision-Date: 2002-08-31 01:30+0100\n"
+"Last-Translator: Reinout van Schouwen <reinout@cs.vu.nl>\n"
"Language-Team: Nederlands <vertaling@nl.linux.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: KBabel 0.9.6\n"
#: ../../Xconfig/card.pm_.c:16
msgid "256 kB"
@@ -54,19 +53,19 @@ msgstr "32 MB"
msgid "64 MB or more"
msgstr "64 MB of meer"
-#: ../../Xconfig/card.pm_.c:201
+#: ../../Xconfig/card.pm_.c:203
msgid "Choose a X server"
msgstr "Selecteer een X-server"
-#: ../../Xconfig/card.pm_.c:201
+#: ../../Xconfig/card.pm_.c:203
msgid "X server"
msgstr "X-Server"
-#: ../../Xconfig/card.pm_.c:228
+#: ../../Xconfig/card.pm_.c:230
msgid "Multi-head configuration"
msgstr "Multi-koppen instelling"
-#: ../../Xconfig/card.pm_.c:229
+#: ../../Xconfig/card.pm_.c:231
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
@@ -74,30 +73,30 @@ msgstr ""
"Uw systeem ondersteunt een instelling met meerdere koppen.\n"
"Want wenst u te doen?"
-#: ../../Xconfig/card.pm_.c:284
+#: ../../Xconfig/card.pm_.c:286
msgid "Select the memory size of your graphics card"
msgstr "Selecteer de geheugengrootte van uw grafische kaart"
-#: ../../Xconfig/card.pm_.c:345
+#: ../../Xconfig/card.pm_.c:347
msgid "XFree configuration"
msgstr "XFree instellingen"
-#: ../../Xconfig/card.pm_.c:347
+#: ../../Xconfig/card.pm_.c:349
msgid "Which configuration of XFree do you want to have?"
msgstr "Welke instellingen van XFree wilt u hebben?"
-#: ../../Xconfig/card.pm_.c:379
+#: ../../Xconfig/card.pm_.c:381
msgid "Configure all heads independently"
-msgstr "Configureer alle koppen afzonderlijk"
+msgstr "Alle koppen afzonderlijk configureren"
-#: ../../Xconfig/card.pm_.c:380
+#: ../../Xconfig/card.pm_.c:382
msgid "Use Xinerama extension"
-msgstr "Gebruik Xinerama-uitbreiding"
+msgstr "Xinerama-uitbreiding gebruiken"
-#: ../../Xconfig/card.pm_.c:384
-#, fuzzy, c-format
+#: ../../Xconfig/card.pm_.c:386
+#, c-format
msgid "Configure only card \"%s\"%s"
-msgstr "Configureer alleen kaart \"%s\" (%s)"
+msgstr "Alleen kaart \"%s\"%s configureren"
#: ../../Xconfig/card.pm_.c:398 ../../Xconfig/card.pm_.c:399
#: ../../Xconfig/various.pm_.c:23
@@ -105,13 +104,13 @@ msgstr "Configureer alleen kaart \"%s\" (%s)"
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:435
+#: ../../Xconfig/card.pm_.c:410 ../../Xconfig/card.pm_.c:436
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s with 3D hardware acceleration"
msgstr "XFree %s met 3D hardware acceleratie"
-#: ../../Xconfig/card.pm_.c:412
+#: ../../Xconfig/card.pm_.c:413
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -122,17 +121,17 @@ msgstr ""
"Uw kaart wordt ondersteund door XFree %s, welke betere ondersteuning zou \n"
"kunnen hebben in 2D."
-#: ../../Xconfig/card.pm_.c:414 ../../Xconfig/card.pm_.c:437
+#: ../../Xconfig/card.pm_.c:415 ../../Xconfig/card.pm_.c:438
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr "Uw kaart kan 3D acceleratie ondersteuning krijgen met XFree %s."
-#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:443
+#: ../../Xconfig/card.pm_.c:423 ../../Xconfig/card.pm_.c:444
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s met EXPERIMENTELE 3D hardware acceleratie"
-#: ../../Xconfig/card.pm_.c:425
+#: ../../Xconfig/card.pm_.c:426
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -146,7 +145,7 @@ msgstr ""
"Uw kaart wordt ondersteund door XFree %s, welke betere ondersteuning zou \n"
"kunnen hebben in 2D."
-#: ../../Xconfig/card.pm_.c:428 ../../Xconfig/card.pm_.c:445
+#: ../../Xconfig/card.pm_.c:429 ../../Xconfig/card.pm_.c:446
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
@@ -156,53 +155,53 @@ msgstr ""
"LET OP: DIT IS EEN EXPERIMENTELE ONDERSTEUNING, WELKE UW COMPUTER KAN LATEN "
"VASTLOPEN."
-#: ../../Xconfig/card.pm_.c:451
+#: ../../Xconfig/card.pm_.c:452
msgid "Xpmac (installation display driver)"
msgstr "Xpmac (installatie beeldscherm-stuurprogramma)"
-#: ../../Xconfig/main.pm_.c:78 ../../Xconfig/main.pm_.c:79
-#: ../../Xconfig/monitor.pm_.c:94 ../../any.pm_.c:974
+#: ../../Xconfig/main.pm_.c:76 ../../Xconfig/main.pm_.c:77
+#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:977
msgid "Custom"
msgstr "Aangepast"
-#: ../../Xconfig/main.pm_.c:104
-#, fuzzy
+#: ../../Xconfig/main.pm_.c:102
msgid "Graphic Card"
msgstr "Grafische kaart"
-#: ../../Xconfig/main.pm_.c:107 ../../Xconfig/monitor.pm_.c:91
+#: ../../Xconfig/main.pm_.c:105 ../../Xconfig/monitor.pm_.c:93
msgid "Monitor"
msgstr "Monitor"
-#: ../../Xconfig/main.pm_.c:110 ../../Xconfig/resolution_and_depth.pm_.c:209
+#: ../../Xconfig/main.pm_.c:108 ../../Xconfig/resolution_and_depth.pm_.c:209
msgid "Resolution"
msgstr "Resolutie"
-#: ../../Xconfig/main.pm_.c:114
+#: ../../Xconfig/main.pm_.c:113
msgid "Test"
-msgstr ""
+msgstr "Test"
-#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:59
-#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/removable.pm_.c:25
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:63
+#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/removable.pm_.c:25
#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "Opties"
#: ../../Xconfig/main.pm_.c:121 ../../Xconfig/resolution_and_depth.pm_.c:268
-#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:281
+#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:275
#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
-#: ../../interactive.pm_.c:351 ../../interactive/http.pm_.c:104
+#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:104
#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
-#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:156
-#: ../../my_gtk.pm_.c:284 ../../my_gtk.pm_.c:307
-#: ../../standalone/drakbackup_.c:3324 ../../standalone/drakbackup_.c:3419
-#: ../../standalone/drakbackup_.c:3438
+#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:159
+#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310
+#: ../../standalone/drakbackup_.c:3972 ../../standalone/drakbackup_.c:4067
+#: ../../standalone/drakbackup_.c:4086
msgid "Ok"
msgstr "Ok"
#: ../../Xconfig/main.pm_.c:121 ../../diskdrake/dav.pm_.c:24
-#: ../../printerdrake.pm_.c:2933 ../../standalone/logdrake_.c:224
+#: ../../harddrake/ui.pm_.c:98 ../../printerdrake.pm_.c:3155
+#: ../../standalone/logdrake_.c:224
msgid "Quit"
msgstr "Afsluiten"
@@ -219,27 +218,28 @@ msgstr ""
"\n"
"%s"
-#: ../../Xconfig/monitor.pm_.c:91
+#: ../../Xconfig/monitor.pm_.c:93
msgid "Choose a monitor"
msgstr "Selecteer een monitor"
-#: ../../Xconfig/monitor.pm_.c:95
+#: ../../Xconfig/monitor.pm_.c:97
msgid "Plug'n Play"
-msgstr ""
+msgstr "Plug'n Play"
-#: ../../Xconfig/monitor.pm_.c:96 ../../mouse.pm_.c:45
+#: ../../Xconfig/monitor.pm_.c:98 ../../mouse.pm_.c:46
msgid "Generic"
msgstr "Algemeen"
-#: ../../Xconfig/monitor.pm_.c:97 ../../harddrake/ui.pm_.c:36
+#: ../../Xconfig/monitor.pm_.c:99 ../../harddrake/ui.pm_.c:37
msgid "Vendor"
msgstr "Uitgever"
-#: ../../Xconfig/monitor.pm_.c:107
+#: ../../Xconfig/monitor.pm_.c:109
msgid "Plug'n Play probing failed. Please choose a precise monitor"
msgstr ""
+"Plug'n Play-bespeuring mislukt. Kiest u alstublieft een specifieke monitor."
-#: ../../Xconfig/monitor.pm_.c:112
+#: ../../Xconfig/monitor.pm_.c:114
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -264,11 +264,11 @@ msgstr ""
"beschadigen.\n"
"Bij twijfel maak een voorzichtige keuze."
-#: ../../Xconfig/monitor.pm_.c:119
+#: ../../Xconfig/monitor.pm_.c:121
msgid "Horizontal refresh rate"
msgstr "Horizontale verversingsratio"
-#: ../../Xconfig/monitor.pm_.c:120
+#: ../../Xconfig/monitor.pm_.c:122
msgid "Vertical refresh rate"
msgstr "Verticale verversingsratio"
@@ -305,36 +305,42 @@ msgstr "Kies resolutie en kleurdiepte"
msgid "Graphics card: %s"
msgstr "Grafische kaart: %s"
-#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1015
-#: ../../bootlook.pm_.c:334 ../../diskdrake/smbnfs_gtk.pm_.c:87
-#: ../../install_steps_gtk.pm_.c:412 ../../install_steps_gtk.pm_.c:470
-#: ../../install_steps_interactive.pm_.c:576 ../../interactive.pm_.c:142
-#: ../../interactive.pm_.c:351 ../../interactive/http.pm_.c:105
+#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1018
+#: ../../bootlook.pm_.c:338 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:406 ../../install_steps_gtk.pm_.c:464
+#: ../../install_steps_interactive.pm_.c:560 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:105
#: ../../interactive/newt.pm_.c:174 ../../interactive/stdio.pm_.c:39
-#: ../../interactive/stdio.pm_.c:143 ../../my_gtk.pm_.c:155
-#: ../../my_gtk.pm_.c:159 ../../my_gtk.pm_.c:284
-#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1990
-#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3278
-#: ../../standalone/drakbackup_.c:3311 ../../standalone/drakbackup_.c:3337
-#: ../../standalone/drakbackup_.c:3364 ../../standalone/drakbackup_.c:3391
-#: ../../standalone/drakbackup_.c:3451 ../../standalone/drakbackup_.c:3478
-#: ../../standalone/drakbackup_.c:3504 ../../standalone/drakconnect_.c:115
-#: ../../standalone/drakconnect_.c:147 ../../standalone/drakconnect_.c:289
-#: ../../standalone/drakconnect_.c:537 ../../standalone/drakconnect_.c:679
-#: ../../standalone/drakfloppy_.c:234 ../../standalone/drakfloppy_.c:383
-#: ../../standalone/drakfont_.c:970 ../../standalone/drakgw_.c:598
-#: ../../standalone/logdrake_.c:224 ../../standalone/logdrake_.c:528
-#: ../../standalone/tinyfirewall_.c:64
+#: ../../interactive/stdio.pm_.c:143 ../../my_gtk.pm_.c:158
+#: ../../my_gtk.pm_.c:162 ../../my_gtk.pm_.c:287
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:2124
+#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3926
+#: ../../standalone/drakbackup_.c:3959 ../../standalone/drakbackup_.c:3985
+#: ../../standalone/drakbackup_.c:4012 ../../standalone/drakbackup_.c:4039
+#: ../../standalone/drakbackup_.c:4099 ../../standalone/drakbackup_.c:4126
+#: ../../standalone/drakbackup_.c:4156 ../../standalone/drakbackup_.c:4182
+#: ../../standalone/drakconnect_.c:115 ../../standalone/drakconnect_.c:147
+#: ../../standalone/drakconnect_.c:289 ../../standalone/drakconnect_.c:537
+#: ../../standalone/drakconnect_.c:679 ../../standalone/drakfloppy_.c:234
+#: ../../standalone/drakfloppy_.c:383 ../../standalone/drakfont_.c:970
+#: ../../standalone/drakgw_.c:536 ../../standalone/logdrake_.c:224
+#: ../../standalone/logdrake_.c:526
msgid "Cancel"
msgstr "Annuleren"
-#: ../../Xconfig/test.pm_.c:26
+#: ../../Xconfig/test.pm_.c:30
+msgid "Test of the configuration"
+msgstr "Instelling Testen"
+
+#: ../../Xconfig/test.pm_.c:31
msgid "Do you want to test the configuration?"
msgstr "Wenst u de instellingen te testen?"
-#: ../../Xconfig/test.pm_.c:26
-msgid "Test of the configuration"
-msgstr "Instelling Testen"
+#: ../../Xconfig/test.pm_.c:31
+msgid "Warning: testing this graphic card may freeze your computer"
+msgstr ""
+"Waarschuwing: het testen van deze grafische kaart zou uw computer kunnen "
+"laten vastlopen"
#: ../../Xconfig/various.pm_.c:29
#, c-format
@@ -420,11 +426,18 @@ msgid ""
"\n"
"Do you have this feature?"
msgstr ""
+"Uw grafische kaart lijkt een TV-OUT-contact te hebben.\n"
+"Deze kan worden geconfigureerd om met een 'frame-buffer' te werken.\n"
+"\n"
+"Hiervoor dient u uw grafische kaart met uw TV te verbinden voordat u uw "
+"computer start.\n"
+"Vervolgens kiest u het \"TVout\"-item in de opstartlader\n"
+"\n"
+"Heeft u deze mogelijkheid?"
#: ../../Xconfig/various.pm_.c:84
-#, fuzzy
msgid "What norm is your TV using?"
-msgstr "Wat voor een ISDN connectie heeft u?"
+msgstr "Welke norm gebruikt uw TV?"
#: ../../any.pm_.c:108 ../../any.pm_.c:133
msgid "First sector of boot partition"
@@ -470,26 +483,22 @@ msgstr "Opstarten vanuit DOS/Windows (loadlin)"
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:158 ../../any.pm_.c:190
+#: ../../any.pm_.c:159 ../../any.pm_.c:190
msgid "Bootloader main options"
msgstr "Bootloader algemene opties"
-#: ../../any.pm_.c:159 ../../any.pm_.c:191
+#: ../../any.pm_.c:160 ../../any.pm_.c:191
msgid "Bootloader to use"
msgstr "Welke bootloader te gebruiken"
-#: ../../any.pm_.c:161
+#: ../../any.pm_.c:162
msgid "Bootloader installation"
msgstr "Bootloader installatie"
-#: ../../any.pm_.c:163 ../../any.pm_.c:193
+#: ../../any.pm_.c:164 ../../any.pm_.c:193
msgid "Boot device"
msgstr "Boot-apparaat"
-#: ../../any.pm_.c:164
-msgid "LBA (doesn't work on old BIOSes)"
-msgstr "LBA (werkt niet met oude BIOS'en)"
-
#: ../../any.pm_.c:165
msgid "Compact"
msgstr "Compact"
@@ -506,16 +515,17 @@ msgstr "Video-modus"
msgid "Delay before booting default image"
msgstr "Pauze voor het opstarten van standaard-kernel"
-#: ../../any.pm_.c:170 ../../any.pm_.c:786
+#: ../../any.pm_.c:170 ../../any.pm_.c:788
#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1111 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:743 ../../printerdrake.pm_.c:858
-#: ../../standalone/drakconnect_.c:624 ../../standalone/drakconnect_.c:649
+#: ../../install_steps_interactive.pm_.c:1096 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:850 ../../printerdrake.pm_.c:965
+#: ../../standalone/drakbackup_.c:3528 ../../standalone/drakconnect_.c:624
+#: ../../standalone/drakconnect_.c:649
msgid "Password"
msgstr "Wachtwoord"
-#: ../../any.pm_.c:171 ../../any.pm_.c:787
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../any.pm_.c:171 ../../any.pm_.c:789
+#: ../../install_steps_interactive.pm_.c:1097
msgid "Password (again)"
msgstr "Wachtwoord (nogmaals)"
@@ -550,14 +560,14 @@ msgid ""
msgstr ""
"De optie ``Commandoregel-opties beperken'' heeft geen nut zonder wachtwoord"
-#: ../../any.pm_.c:184 ../../any.pm_.c:762
-#: ../../diskdrake/interactive.pm_.c:1180
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../any.pm_.c:184 ../../any.pm_.c:764
+#: ../../diskdrake/interactive.pm_.c:1191
+#: ../../install_steps_interactive.pm_.c:1091
msgid "Please try again"
msgstr "Gelieve opnieuw te proberen"
-#: ../../any.pm_.c:184 ../../any.pm_.c:762
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../any.pm_.c:184 ../../any.pm_.c:764
+#: ../../install_steps_interactive.pm_.c:1091
msgid "The passwords do not match"
msgstr "De wachtwoorden komen niet overeen"
@@ -567,7 +577,7 @@ msgstr "Initialisatie-bericht"
#: ../../any.pm_.c:194
msgid "Open Firmware Delay"
-msgstr "Open Firmware Vertraging"
+msgstr "Open Firmware-vertraging"
#: ../../any.pm_.c:195
msgid "Kernel Boot Timeout"
@@ -607,16 +617,16 @@ msgstr ""
"Hier zijn de waardes voor LILO.\n"
"U kunt er enkele toevoegen of de bestaande wijzigen."
-#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1483
-#: ../../standalone/drakbackup_.c:1596 ../../standalone/drakfont_.c:1011
+#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1558
+#: ../../standalone/drakbackup_.c:1671 ../../standalone/drakfont_.c:1011
#: ../../standalone/drakfont_.c:1054
msgid "Add"
msgstr "Toevoegen"
-#: ../../any.pm_.c:257 ../../any.pm_.c:774 ../../diskdrake/dav.pm_.c:60
+#: ../../any.pm_.c:257 ../../any.pm_.c:776 ../../diskdrake/dav.pm_.c:64
#: ../../diskdrake/hd_gtk.pm_.c:153 ../../diskdrake/removable.pm_.c:27
#: ../../diskdrake/smbnfs_gtk.pm_.c:88 ../../interactive/http.pm_.c:153
-#: ../../standalone/drakbackup_.c:2696
+#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2772
msgid "Done"
msgstr "Klaar"
@@ -628,7 +638,7 @@ msgstr "Aanpassen"
msgid "Which type of entry do you want to add?"
msgstr "Welk type waarde wenst u toe te voegen?"
-#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1630
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1705
msgid "Linux"
msgstr "Linux"
@@ -722,13 +732,13 @@ msgstr "Heeft u er nog Ă©Ă©n?"
msgid "Do you have any %s interfaces?"
msgstr "Heeft u een %s interface?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:821 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:283
+#: ../../any.pm_.c:660 ../../any.pm_.c:823 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:286
msgid "No"
msgstr "Nee"
-#: ../../any.pm_.c:660 ../../any.pm_.c:820 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:283
+#: ../../any.pm_.c:660 ../../any.pm_.c:822 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:286
msgid "Yes"
msgstr "Ja"
@@ -797,11 +807,11 @@ msgstr ""
#: ../../any.pm_.c:722
msgid "Autoprobe"
-msgstr "Automatisch Detecteren"
+msgstr "Automatisch detecteren"
#: ../../any.pm_.c:722
msgid "Specify options"
-msgstr "Geef opties"
+msgstr "Opties specificeren"
#: ../../any.pm_.c:734
#, c-format
@@ -828,38 +838,46 @@ msgstr "\"su\" toestaan"
msgid "access to administrative files"
msgstr "toegang tot administratieve bestanden"
-#: ../../any.pm_.c:758
+#: ../../any.pm_.c:754
+msgid "access to network tools"
+msgstr "toegang tot netwerk-gereedschappen"
+
+#: ../../any.pm_.c:755
+msgid "access to compilation tools"
+msgstr "toegang tot compileer-gereedschappen"
+
+#: ../../any.pm_.c:760
#, c-format
msgid "(already added %s)"
msgstr "(%s reeds toegevoegd)"
-#: ../../any.pm_.c:763
+#: ../../any.pm_.c:765
msgid "This password is too simple"
msgstr "Dit wachtwoord is te eenvoudig"
-#: ../../any.pm_.c:764
+#: ../../any.pm_.c:766
msgid "Please give a user name"
msgstr "Gelieve een gebruikersnaam in te geven"
-#: ../../any.pm_.c:765
+#: ../../any.pm_.c:767
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
"De gebruikersnaam mag slechts kleine letters, cijfers, `-' en`_' bevatten"
-#: ../../any.pm_.c:766
+#: ../../any.pm_.c:768
msgid "The user name is too long"
msgstr "Deze gebruikersnaam is te lang"
-#: ../../any.pm_.c:767
+#: ../../any.pm_.c:769
msgid "This user name is already added"
msgstr "Deze gebruikersnaam is al toegevoegd"
-#: ../../any.pm_.c:771
+#: ../../any.pm_.c:773
msgid "Add user"
msgstr "Gebruiker toevoegen"
-#: ../../any.pm_.c:772
+#: ../../any.pm_.c:774
#, c-format
msgid ""
"Enter a user\n"
@@ -868,32 +886,32 @@ msgstr ""
"Geef een gebruiker in\n"
"%s"
-#: ../../any.pm_.c:773
+#: ../../any.pm_.c:775
msgid "Accept user"
msgstr "Gebruiker aanvaarden"
-#: ../../any.pm_.c:784
+#: ../../any.pm_.c:786
msgid "Real name"
msgstr "Echte naam"
-#: ../../any.pm_.c:785 ../../printerdrake.pm_.c:742
-#: ../../printerdrake.pm_.c:857
+#: ../../any.pm_.c:787 ../../printerdrake.pm_.c:849
+#: ../../printerdrake.pm_.c:964
msgid "User name"
msgstr "Gebruikersnaam"
-#: ../../any.pm_.c:788
+#: ../../any.pm_.c:790
msgid "Shell"
msgstr "Shell"
-#: ../../any.pm_.c:790
+#: ../../any.pm_.c:792
msgid "Icon"
msgstr "Pictogram"
-#: ../../any.pm_.c:817
+#: ../../any.pm_.c:819
msgid "Autologin"
msgstr "Automatisch inloggen"
-#: ../../any.pm_.c:818
+#: ../../any.pm_.c:820
msgid ""
"I can set up your computer to automatically log on one user.\n"
"Do you want to use this feature?"
@@ -901,56 +919,56 @@ msgstr ""
"Ik kan uw computer instellen om automatisch Ă©Ă©n gebruiker in te loggen.\n"
"Wilt u van deze mogelijkheid gebruik maken?"
-#: ../../any.pm_.c:822
+#: ../../any.pm_.c:824
msgid "Choose the default user:"
msgstr "Kies de standaard gebruiker:"
-#: ../../any.pm_.c:823
+#: ../../any.pm_.c:825
msgid "Choose the window manager to run:"
msgstr "Selecteer de 'window manager' die u wilt gebruiken:"
-#: ../../any.pm_.c:838
+#: ../../any.pm_.c:840
msgid "Please choose a language to use."
-msgstr "Gelieve een taal te kiezen."
+msgstr "Kies de taal die u wenst te gebruiken."
-#: ../../any.pm_.c:840
+#: ../../any.pm_.c:842
msgid ""
"Mandrake Linux can support multiple languages. Select\n"
"the languages you would like to install. They will be available\n"
"when your installation is complete and you restart your system."
msgstr "U kunt andere talen kiezen die beschikbaar zullen zijn na installatie"
-#: ../../any.pm_.c:854 ../../install_steps_interactive.pm_.c:708
+#: ../../any.pm_.c:856 ../../install_steps_interactive.pm_.c:692
#: ../../standalone/drakxtv_.c:73
msgid "All"
msgstr "Alles"
-#: ../../any.pm_.c:974
+#: ../../any.pm_.c:977
msgid "Allow all users"
msgstr "Alle gebruikers toestaan"
-#: ../../any.pm_.c:974
+#: ../../any.pm_.c:977
msgid "No sharing"
msgstr "Niet delen"
-#: ../../any.pm_.c:984 ../../standalone.pm_.c:57
+#: ../../any.pm_.c:987 ../../install_any.pm_.c:1183 ../../standalone.pm_.c:58
#, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "Pakket %s dient geĂŻnstalleerd te worden. Wilt u het installeren?"
-#: ../../any.pm_.c:987
+#: ../../any.pm_.c:990
msgid ""
"You can export using NFS or Samba. Please select which you'd like to use."
msgstr ""
"U kunt bestandssystemen delen met behulp van NFS of Samba. Welke daarvan "
"wilt u gebruiken?"
-#: ../../any.pm_.c:995 ../../standalone.pm_.c:61
+#: ../../any.pm_.c:998 ../../install_any.pm_.c:1188 ../../standalone.pm_.c:63
#, c-format
msgid "Mandatory package %s is missing"
-msgstr "Verplicht pakket %s is afwezig"
+msgstr "Verplicht pakket %s ontbreekt"
-#: ../../any.pm_.c:1001
+#: ../../any.pm_.c:1004
msgid ""
"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
@@ -958,17 +976,17 @@ msgid ""
"\n"
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-"Wilt U gebruikers toestaan om enkelle eigen mappen te delen ?\n"
-"Door toe-te-staan kunnen gebruikers in Konquerer en nautilus\n"
-"simpel met \"Share\" hun mappen delen.\n"
+"Wilt U gebruikers toestaan om enkele eigen mappen te delen?\n"
+"Door dit toe te staan kunnen gebruikers in Konquerer en nautilus\n"
+"eenvoudig met een klik op \"Delen\" hun mappen delen.\n"
"\n"
-"\"Custom\" sta per gebruiker instellingen toe.\n"
+"\"Aangepast\": per-gebruiker instellingen toestaan.\n"
-#: ../../any.pm_.c:1015
+#: ../../any.pm_.c:1018
msgid "Launch userdrake"
msgstr "Userdrake opstarten"
-#: ../../any.pm_.c:1017
+#: ../../any.pm_.c:1020
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
@@ -977,31 +995,31 @@ msgstr ""
"\"fileshare\". U kunt met userdrake een gebruiker\n"
"aan deze groep toevoegen."
-#: ../../any.pm_.c:1068
+#: ../../any.pm_.c:1071
msgid "Welcome To Crackers"
msgstr "Welkom Bij krakers"
-#: ../../any.pm_.c:1069
+#: ../../any.pm_.c:1072
msgid "Poor"
msgstr "Weinig"
-#: ../../any.pm_.c:1070 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1073 ../../mouse.pm_.c:31
msgid "Standard"
msgstr "Standaard"
-#: ../../any.pm_.c:1071
+#: ../../any.pm_.c:1074
msgid "High"
msgstr "Hoog"
-#: ../../any.pm_.c:1072
+#: ../../any.pm_.c:1075
msgid "Higher"
msgstr "Hoger"
-#: ../../any.pm_.c:1073
+#: ../../any.pm_.c:1076
msgid "Paranoid"
msgstr "ParanoĂŻde"
-#: ../../any.pm_.c:1076
+#: ../../any.pm_.c:1079
msgid ""
"This level is to be used with care. It makes your system more easy to use,\n"
"but very sensitive: it must not be used for a machine connected to others\n"
@@ -1013,7 +1031,7 @@ msgstr ""
"machine met andere computers of het internet verbonden is. Er worden\n"
"geen wachtwoorden gebruikt."
-#: ../../any.pm_.c:1079
+#: ../../any.pm_.c:1082
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -1021,7 +1039,7 @@ msgstr ""
"Wachtwoorden zijn nu ingeschakeld, maar het gebruik als genetwerkte computer "
"is nog steeds niet aanbevolen."
-#: ../../any.pm_.c:1080
+#: ../../any.pm_.c:1083
msgid ""
"This is the standard security recommended for a computer that will be used "
"to connect to the Internet as a client."
@@ -1029,7 +1047,7 @@ msgstr ""
"Dit is de standaardbeveiliging, aangeraden voor een computer die als cliënt "
"met het Internet verbonden zal worden."
-#: ../../any.pm_.c:1081
+#: ../../any.pm_.c:1084
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
@@ -1037,7 +1055,7 @@ msgstr ""
"Er zijn al enkele restricties en meer automatische checks worden iedere "
"nacht gedraaid."
-#: ../../any.pm_.c:1082
+#: ../../any.pm_.c:1085
msgid ""
"With this security level, the use of this system as a server becomes "
"possible.\n"
@@ -1053,43 +1071,40 @@ msgstr ""
"een\n"
"client op het Internet is, dan kunt u beter een lager niveau kiezen."
-#: ../../any.pm_.c:1085
+#: ../../any.pm_.c:1088
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
"security features are at their maximum."
msgstr ""
-"Gebaseerd op het vorige niveau, maar nu is het systeem volledig afgesloten.\n"
+"Gebaseerd op het lagere niveau, maar nu is het systeem volledig afgesloten.\n"
"Beveiligingsfuncties staan op hun maximumwaarde."
-#: ../../any.pm_.c:1091
-#, fuzzy
+#: ../../any.pm_.c:1094
msgid "DrakSec Basic Options"
-msgstr "Opties"
+msgstr "DrakSec basisopties"
-#: ../../any.pm_.c:1092
-#, fuzzy
+#: ../../any.pm_.c:1095
msgid "Please choose the desired security level"
-msgstr "Kies een veiligheids-niveau"
+msgstr "Kies het gewenste veiligheidsniveau"
-#: ../../any.pm_.c:1095
+#: ../../any.pm_.c:1098
msgid "Security level"
-msgstr "Veiligheids-niveau"
+msgstr "Veiligheidsniveau"
-#: ../../any.pm_.c:1097
+#: ../../any.pm_.c:1100
msgid "Use libsafe for servers"
msgstr "Gebruik libsafe voor servers"
-#: ../../any.pm_.c:1098
+#: ../../any.pm_.c:1101
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
"Een bibliotheek welke bescherming biedt tegen \"buffer-overflow\"- en "
"\"format string\"-aanvallen."
-#: ../../any.pm_.c:1099
-#, fuzzy
+#: ../../any.pm_.c:1102
msgid "Security Administrator (login or email)"
-msgstr "Beveiligings Administrator (gebruikersnaam of e-mail)"
+msgstr "Beveiligings-beheerder (gebruikersnaam of e-mail)"
#: ../../any.pm_.c:1189
msgid ""
@@ -1097,6 +1112,9 @@ msgid ""
"allow switching between the different keyboard layouts\n"
"(eg: latin and non latin)"
msgstr ""
+"Hier kunt u de toets of toetscombinatie kiezen welke\n"
+"schakelen tussen verschillende toetsenbordlay-outs\n"
+"mogelijk maakt (bijv.: Latijn en niet-Latijn)"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#: ../../bootloader.pm_.c:375
@@ -1115,58 +1133,58 @@ msgstr ""
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:935
+#: ../../bootloader.pm_.c:932
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Welkom bij GRUB - Kies uw besturingssysteem!"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:938
+#: ../../bootloader.pm_.c:935
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "Gebruik de %c en %c-toetsen om de aangeduide waarde te selecteren."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:941
+#: ../../bootloader.pm_.c:938
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Druk Enter om het geselecteerde besturingssysteem te booten, druk 'e'"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:941
msgid "commands before booting, or 'c' for a command-line."
msgstr " om de waarde eerst te bewerken, of 'c' voor een command-line."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:947
+#: ../../bootloader.pm_.c:944
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr ""
"De aangeduide waarde zal automatisch gestart worden binnen %d seconden."
-#: ../../bootloader.pm_.c:951
+#: ../../bootloader.pm_.c:948
msgid "not enough room in /boot"
msgstr "niet genoeg ruimte in /boot"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1051
+#: ../../bootloader.pm_.c:1048
msgid "Desktop"
msgstr "Desktop"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1053
+#: ../../bootloader.pm_.c:1050
msgid "Start Menu"
msgstr "Start Menu"
-#: ../../bootloader.pm_.c:1072
+#: ../../bootloader.pm_.c:1069
#, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "U kunt de opstart-lader niet installeren op een %s-partitie\n"
-#: ../../bootlook.pm_.c:45
+#: ../../bootlook.pm_.c:45 ../../standalone/draksplash_.c:25
msgid "no help implemented yet.\n"
msgstr "Nog geen hulp beschikbaar.\n"
@@ -1174,8 +1192,8 @@ msgstr "Nog geen hulp beschikbaar.\n"
msgid "Boot Style Configuration"
msgstr "Instelling van opstart-stijl"
-#: ../../bootlook.pm_.c:78 ../../harddrake/ui.pm_.c:59
-#: ../../harddrake/ui.pm_.c:60 ../../standalone/drakfloppy_.c:81
+#: ../../bootlook.pm_.c:78 ../../harddrake/ui.pm_.c:62
+#: ../../harddrake/ui.pm_.c:63 ../../standalone/drakfloppy_.c:81
#: ../../standalone/logdrake_.c:101
msgid "/_File"
msgstr "/_Bestand"
@@ -1185,7 +1203,7 @@ msgstr "/_Bestand"
msgid "/File/_Quit"
msgstr "/Bestand/_Afsluiten"
-#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:60
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:63
#: ../../standalone/drakfloppy_.c:82 ../../standalone/logdrake_.c:107
msgid "<control>Q"
msgstr "<control>Q"
@@ -1219,102 +1237,110 @@ msgid "Yaboot mode"
msgstr "Yaboot modus"
#: ../../bootlook.pm_.c:143
-#, fuzzy
msgid "Install themes"
-msgstr "Systeem installeren"
+msgstr "Thema's installeren"
#: ../../bootlook.pm_.c:144
msgid "Display theme under console"
-msgstr ""
+msgstr "Thema weergeven onder keuzemenu"
-#: ../../bootlook.pm_.c:166
-msgid "Can't create Bootsplash preview"
-msgstr ""
+#: ../../bootlook.pm_.c:145
+msgid "Create new theme"
+msgstr "Nieuw thema creëren"
-#: ../../bootlook.pm_.c:166 ../../bootlook.pm_.c:184 ../../bootlook.pm_.c:187
-#: ../../bootlook.pm_.c:190 ../../bootlook.pm_.c:220 ../../bootlook.pm_.c:222
-#: ../../bootlook.pm_.c:232 ../../bootlook.pm_.c:241 ../../bootlook.pm_.c:248
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:336
-#: ../../diskdrake/interactive.pm_.c:351 ../../diskdrake/interactive.pm_.c:464
-#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../bootlook.pm_.c:169
+msgid "Can't create Bootsplash preview"
+msgstr "Kan opstartscherm-voorbeeld niet creëren"
+
+#: ../../bootlook.pm_.c:169 ../../bootlook.pm_.c:187 ../../bootlook.pm_.c:190
+#: ../../bootlook.pm_.c:193 ../../bootlook.pm_.c:223 ../../bootlook.pm_.c:225
+#: ../../bootlook.pm_.c:235 ../../bootlook.pm_.c:244 ../../bootlook.pm_.c:251
+#: ../../diskdrake/dav.pm_.c:73 ../../diskdrake/hd_gtk.pm_.c:116
+#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/interactive.pm_.c:355
+#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/interactive.pm_.c:474
+#: ../../diskdrake/smbnfs_gtk.pm_.c:45 ../../fsedit.pm_.c:239
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:365 ../../interactive/http.pm_.c:119
-#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:80
+#: ../../interactive/http.pm_.c:119 ../../interactive/http.pm_.c:120
+#: ../../standalone/draksplash_.c:32
msgid "Error"
msgstr "Fout"
-#: ../../bootlook.pm_.c:183
+#: ../../bootlook.pm_.c:186
#, c-format
msgid "Backup %s to %s.old"
-msgstr ""
+msgstr "Reservekopie maken van %s naar %s.old"
-#: ../../bootlook.pm_.c:184
+#: ../../bootlook.pm_.c:187
msgid "unable to backup lilo message"
-msgstr ""
+msgstr "niet in staat reservekopie te maken van lilo-melding"
-#: ../../bootlook.pm_.c:186
-#, fuzzy, c-format
+#: ../../bootlook.pm_.c:189
+#, c-format
msgid "Copy %s to %s"
-msgstr "Bezig met kopiëren van %s"
+msgstr "%s naar %s kopiëren"
-#: ../../bootlook.pm_.c:187
+#: ../../bootlook.pm_.c:190
msgid "can't change lilo message"
-msgstr ""
+msgstr "kan lilo-melding niet veranderen"
-#: ../../bootlook.pm_.c:190
+#: ../../bootlook.pm_.c:193
msgid "Lilo message not found"
-msgstr ""
+msgstr "Lilo-melding niet gevonden"
-#: ../../bootlook.pm_.c:220
+#: ../../bootlook.pm_.c:223
msgid "Can't write /etc/sysconfig/bootsplash."
-msgstr ""
+msgstr "Kan /etc/sysconfig/bootsplash niet wegschrijven."
-#: ../../bootlook.pm_.c:220
-#, fuzzy, c-format
+#: ../../bootlook.pm_.c:223
+#, c-format
msgid "Write %s"
-msgstr "XFree %s"
+msgstr "%s schrijven"
-#: ../../bootlook.pm_.c:222
+#: ../../bootlook.pm_.c:225
msgid ""
"Can't write /etc/sysconfig/bootsplash\n"
"File not found."
msgstr ""
+"Kan /etc/sysconfig/bootsplash niet wegschrijven\n"
+"Bestand niet gevonden."
-#: ../../bootlook.pm_.c:233
+#: ../../bootlook.pm_.c:236
#, c-format
msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
-msgstr ""
+msgstr "Kan mkinitrd -f /boot/initrd-%s.img %s niet starten."
-#: ../../bootlook.pm_.c:236
+#: ../../bootlook.pm_.c:239
#, c-format
-msgid "Make initrd 'mkinird -f /boot/initrd-%s.img %s'."
-msgstr ""
+msgid "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
+msgstr "initrd maken: 'mkinitrd -f /boot/initrd-%s.img %s'."
-#: ../../bootlook.pm_.c:242
+#: ../../bootlook.pm_.c:245
msgid ""
"Can't relaunch LiLo!\n"
"Launch \"lilo\" as root in command line to complete LiLo theme installation."
msgstr ""
+"Kan LiLo niet opnieuw starten!\n"
+"Start \"lilo\" als root vanaf de opdrachtregel om de LiLo thema-installatie "
+"te voltooien."
-#: ../../bootlook.pm_.c:246
+#: ../../bootlook.pm_.c:249
msgid "Relaunch 'lilo'"
-msgstr ""
+msgstr "'Lilo' opnieuw starten"
-#: ../../bootlook.pm_.c:248
-#, fuzzy
+#: ../../bootlook.pm_.c:251 ../../standalone/draksplash_.c:161
+#: ../../standalone/draksplash_.c:330 ../../standalone/draksplash_.c:454
msgid "Notice"
-msgstr "Geen Video"
+msgstr "Melding"
-#: ../../bootlook.pm_.c:249
+#: ../../bootlook.pm_.c:252
msgid "LiLo and Bootsplash themes installation successfull"
-msgstr ""
+msgstr "Installatie van LiLo- en opstartschermthema's geslaagd"
-#: ../../bootlook.pm_.c:249
-#, fuzzy
+#: ../../bootlook.pm_.c:252
msgid "Theme installation failed!"
-msgstr "Installatieklasse selecteren"
+msgstr "Thema-installatie mislukt!"
-#: ../../bootlook.pm_.c:258
+#: ../../bootlook.pm_.c:261
#, c-format
msgid ""
"You are currently using %s as your boot manager.\n"
@@ -1323,23 +1349,21 @@ msgstr ""
"U gebruikt op dit moment %s als Opstart-manager.\n"
"Klik op Configureer om de instel-hulp te starten."
-#: ../../bootlook.pm_.c:260 ../../standalone/drakbackup_.c:2352
-#: ../../standalone/drakbackup_.c:2362 ../../standalone/drakbackup_.c:2372
-#: ../../standalone/drakbackup_.c:2380 ../../standalone/drakgw_.c:592
-#: ../../standalone/tinyfirewall_.c:58
+#: ../../bootlook.pm_.c:263 ../../standalone/drakbackup_.c:2427
+#: ../../standalone/drakbackup_.c:2437 ../../standalone/drakbackup_.c:2447
+#: ../../standalone/drakbackup_.c:2455 ../../standalone/drakgw_.c:530
msgid "Configure"
msgstr "Configureren"
-#: ../../bootlook.pm_.c:267
-#, fuzzy
+#: ../../bootlook.pm_.c:270
msgid "Splash selection"
-msgstr "Pakket-selectie opslaan"
+msgstr "Selectie opstartscherm"
-#: ../../bootlook.pm_.c:270
+#: ../../bootlook.pm_.c:273
msgid "Themes"
-msgstr ""
+msgstr "Thema's"
-#: ../../bootlook.pm_.c:272
+#: ../../bootlook.pm_.c:275
msgid ""
"\n"
"Select a theme for\n"
@@ -1347,45 +1371,50 @@ msgid ""
"you can choose\n"
"them separatly"
msgstr ""
+"\n"
+"Selecteer een thema voor\n"
+"lilo en het\n"
+"opstartscherm,\n"
+"u kunt ze apart kiezen"
-#: ../../bootlook.pm_.c:275
+#: ../../bootlook.pm_.c:278
msgid "Lilo screen"
-msgstr ""
+msgstr "Lilo-scherm"
-#: ../../bootlook.pm_.c:279
+#: ../../bootlook.pm_.c:283
msgid "Bootsplash"
-msgstr ""
+msgstr "Opstartscherm"
-#: ../../bootlook.pm_.c:314
+#: ../../bootlook.pm_.c:318
msgid "System mode"
msgstr "Systeem modus"
-#: ../../bootlook.pm_.c:316
+#: ../../bootlook.pm_.c:320
msgid "Launch the graphical environment when your system starts"
msgstr "Open het X-Window systeem bij opstarten"
-#: ../../bootlook.pm_.c:321
+#: ../../bootlook.pm_.c:325
msgid "No, I don't want autologin"
msgstr "Nee, ik wil niet automatisch inloggen"
-#: ../../bootlook.pm_.c:323
+#: ../../bootlook.pm_.c:327
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "Ja, ik wil automatisch inloggen met deze (gebruiker, werkomgeving)"
-#: ../../bootlook.pm_.c:333 ../../network/netconnect.pm_.c:101
+#: ../../bootlook.pm_.c:337 ../../network/netconnect.pm_.c:101
#: ../../standalone/drakTermServ_.c:173 ../../standalone/drakTermServ_.c:300
-#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:3513
-#: ../../standalone/drakbackup_.c:4290 ../../standalone/drakconnect_.c:108
+#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4191
+#: ../../standalone/drakbackup_.c:4952 ../../standalone/drakconnect_.c:108
#: ../../standalone/drakconnect_.c:140 ../../standalone/drakconnect_.c:296
#: ../../standalone/drakconnect_.c:435 ../../standalone/drakconnect_.c:521
#: ../../standalone/drakconnect_.c:564 ../../standalone/drakconnect_.c:667
#: ../../standalone/drakfloppy_.c:376 ../../standalone/drakfont_.c:612
#: ../../standalone/drakfont_.c:799 ../../standalone/drakfont_.c:876
-#: ../../standalone/drakfont_.c:963 ../../standalone/logdrake_.c:521
+#: ../../standalone/drakfont_.c:963 ../../standalone/logdrake_.c:519
msgid "OK"
msgstr "OK"
-#: ../../bootlook.pm_.c:403
+#: ../../bootlook.pm_.c:407
#, c-format
msgid "can not open /etc/inittab for reading: %s"
msgstr "kan /etc/inittab niet lezen: %s"
@@ -1482,49 +1511,50 @@ msgstr "Oostenrijk"
msgid "United States"
msgstr "Verenigde Staten"
-#: ../../detect_devices.pm_.c:599 ../../detect_devices.pm_.c:641
-#: ../../detect_devices.pm_.c:803
-#, fuzzy
-msgid "Unknown Model"
-msgstr "Onbekend model"
-
#: ../../diskdrake/dav.pm_.c:23
-#, fuzzy
msgid "New"
-msgstr "nieuw"
+msgstr "Nieuw"
+
+#: ../../diskdrake/dav.pm_.c:59 ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/smbnfs_gtk.pm_.c:81
+msgid "Unmount"
+msgstr "Ontkoppelen"
-#: ../../diskdrake/dav.pm_.c:57
+#: ../../diskdrake/dav.pm_.c:60 ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/smbnfs_gtk.pm_.c:82
+msgid "Mount"
+msgstr "Koppelen"
+
+#: ../../diskdrake/dav.pm_.c:61
msgid "Server"
msgstr "Server"
-#: ../../diskdrake/dav.pm_.c:58 ../../diskdrake/interactive.pm_.c:375
-#: ../../diskdrake/interactive.pm_.c:558 ../../diskdrake/interactive.pm_.c:585
+#: ../../diskdrake/dav.pm_.c:62 ../../diskdrake/interactive.pm_.c:379
+#: ../../diskdrake/interactive.pm_.c:568 ../../diskdrake/interactive.pm_.c:595
#: ../../diskdrake/removable.pm_.c:24 ../../diskdrake/removable_gtk.pm_.c:15
#: ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr "Koppelpunt"
-#: ../../diskdrake/dav.pm_.c:68
-#, fuzzy
+#: ../../diskdrake/dav.pm_.c:81
msgid "Please enter the WebDAV server URL"
-msgstr "Voer de snelheid van de CD-Writer in"
+msgstr "Geef de URL van de WebDAV-server in"
-#: ../../diskdrake/dav.pm_.c:71
+#: ../../diskdrake/dav.pm_.c:84
msgid "The URL must begin with http:// or https://"
-msgstr ""
+msgstr "De URL moet beginnen met http:// of https://"
-#: ../../diskdrake/dav.pm_.c:92
-#, fuzzy
+#: ../../diskdrake/dav.pm_.c:105
msgid "Server: "
-msgstr "Server"
+msgstr "Server:"
-#: ../../diskdrake/dav.pm_.c:93 ../../diskdrake/interactive.pm_.c:435
-#: ../../diskdrake/interactive.pm_.c:1079
-#: ../../diskdrake/interactive.pm_.c:1153
+#: ../../diskdrake/dav.pm_.c:106 ../../diskdrake/interactive.pm_.c:440
+#: ../../diskdrake/interactive.pm_.c:1089
+#: ../../diskdrake/interactive.pm_.c:1164
msgid "Mount point: "
msgstr "Koppelpunt: "
-#: ../../diskdrake/dav.pm_.c:94 ../../diskdrake/interactive.pm_.c:1159
+#: ../../diskdrake/dav.pm_.c:107 ../../diskdrake/interactive.pm_.c:1170
#, c-format
msgid "Options: %s"
msgstr "Opties: %s"
@@ -1533,8 +1563,9 @@ msgstr "Opties: %s"
msgid "Please make a backup of your data first"
msgstr "Maak eerst een veiligheidskopie van uw gegevens"
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:924
-#: ../../diskdrake/interactive.pm_.c:933 ../../diskdrake/interactive.pm_.c:999
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:934
+#: ../../diskdrake/interactive.pm_.c:943
+#: ../../diskdrake/interactive.pm_.c:1009
msgid "Read carefully!"
msgstr "Lees aandachtig!"
@@ -1573,10 +1604,14 @@ msgid "Please click on a partition"
msgstr "Gelieve op een nieuwe partitie te klikken"
#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
-#: ../../install_steps_gtk.pm_.c:471
+#: ../../install_steps_gtk.pm_.c:465
msgid "Details"
msgstr "Details"
+#: ../../diskdrake/hd_gtk.pm_.c:252
+msgid "No hard drives found"
+msgstr "Geen harde schijven gevonden"
+
#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Ext2"
msgstr "Ext2"
@@ -1601,13 +1636,13 @@ msgstr "SunOS"
msgid "Swap"
msgstr "Virtueel geheugen"
-#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1105
msgid "Empty"
msgstr "Leeg"
-#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:331
-#: ../../install_steps_gtk.pm_.c:389 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1679
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:325
+#: ../../install_steps_gtk.pm_.c:383 ../../mouse.pm_.c:165
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1754
msgid "Other"
msgstr "Overig"
@@ -1615,12 +1650,12 @@ msgstr "Overig"
msgid "Filesystem types:"
msgstr "Bestandssysteem types:"
-#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:397
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:402
msgid "Create"
msgstr "Creëer"
-#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:376
-#: ../../diskdrake/interactive.pm_.c:521 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:380
+#: ../../diskdrake/interactive.pm_.c:531 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "Type"
@@ -1630,7 +1665,7 @@ msgstr "Type"
msgid "Use ``%s'' instead"
msgstr "Gebruik ``%s'' in plaats"
-#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:389
msgid "Delete"
msgstr "Verwijderen"
@@ -1638,7 +1673,7 @@ msgstr "Verwijderen"
msgid "Use ``Unmount'' first"
msgstr "Gebruik eerst ``Ontkoppelen''"
-#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:513
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:518
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
@@ -1646,72 +1681,72 @@ msgstr ""
"Na het veranderen van het type van partitie %s, zullen alle gegevens op deze "
"partitie verloren gaan"
-#: ../../diskdrake/interactive.pm_.c:173
+#: ../../diskdrake/interactive.pm_.c:174
msgid "Choose a partition"
msgstr "Kies een partitie"
-#: ../../diskdrake/interactive.pm_.c:173
+#: ../../diskdrake/interactive.pm_.c:174
msgid "Choose another partition"
msgstr "Kies een andere partitie"
-#: ../../diskdrake/interactive.pm_.c:198
+#: ../../diskdrake/interactive.pm_.c:199
msgid "Exit"
msgstr "Afsluiten"
-#: ../../diskdrake/interactive.pm_.c:220
+#: ../../diskdrake/interactive.pm_.c:221
msgid "Toggle to expert mode"
msgstr "Schakel naar expert-modus"
-#: ../../diskdrake/interactive.pm_.c:220
+#: ../../diskdrake/interactive.pm_.c:221
msgid "Toggle to normal mode"
msgstr "Schakel naar normale modus"
-#: ../../diskdrake/interactive.pm_.c:220
+#: ../../diskdrake/interactive.pm_.c:221
msgid "Undo"
msgstr "Ongedaan maken"
-#: ../../diskdrake/interactive.pm_.c:239
+#: ../../diskdrake/interactive.pm_.c:240
msgid "Continue anyway?"
msgstr "Toch doorgaan?"
-#: ../../diskdrake/interactive.pm_.c:244
+#: ../../diskdrake/interactive.pm_.c:245
msgid "Quit without saving"
msgstr "Afsluiten zonder opslaan"
-#: ../../diskdrake/interactive.pm_.c:244
+#: ../../diskdrake/interactive.pm_.c:245
msgid "Quit without writing the partition table?"
msgstr "Afsluiten zonder de partitietabel weg te schrijven?"
-#: ../../diskdrake/interactive.pm_.c:249
+#: ../../diskdrake/interactive.pm_.c:250
msgid "Do you want to save /etc/fstab modifications"
msgstr "Wilt u de /etc/fstab aanpassingen bewaren"
-#: ../../diskdrake/interactive.pm_.c:261
+#: ../../diskdrake/interactive.pm_.c:263
msgid "Auto allocate"
msgstr "Automatisch toewijzen"
-#: ../../diskdrake/interactive.pm_.c:261
+#: ../../diskdrake/interactive.pm_.c:263
msgid "Clear all"
msgstr "Alles wissen"
-#: ../../diskdrake/interactive.pm_.c:261
+#: ../../diskdrake/interactive.pm_.c:263
#: ../../install_steps_interactive.pm_.c:214
msgid "More"
msgstr "Meer"
-#: ../../diskdrake/interactive.pm_.c:264
+#: ../../diskdrake/interactive.pm_.c:267
msgid "Hard drive information"
msgstr "Informatie over harde schijf"
-#: ../../diskdrake/interactive.pm_.c:294
+#: ../../diskdrake/interactive.pm_.c:298
msgid "All primary partitions are used"
msgstr "Alle primaire partities zijn al toegewezen"
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:299
msgid "I can't add any more partition"
msgstr "Ik kan geen partitie meer toevoegen"
-#: ../../diskdrake/interactive.pm_.c:296
+#: ../../diskdrake/interactive.pm_.c:300
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -1719,31 +1754,31 @@ msgstr ""
"Om meer partities te kunnen maken, zal u er een moeten verwijderen. Dan kan\n"
"er een uitgebreide (extended) partitie worden bijgemaakt"
-#: ../../diskdrake/interactive.pm_.c:306
+#: ../../diskdrake/interactive.pm_.c:310
msgid "Save partition table"
msgstr "Partitietabel schrijven"
-#: ../../diskdrake/interactive.pm_.c:307
+#: ../../diskdrake/interactive.pm_.c:311
msgid "Restore partition table"
msgstr "Partitietabel terughalen"
-#: ../../diskdrake/interactive.pm_.c:308
+#: ../../diskdrake/interactive.pm_.c:312
msgid "Rescue partition table"
msgstr "Partitietabel redden"
-#: ../../diskdrake/interactive.pm_.c:310
+#: ../../diskdrake/interactive.pm_.c:314
msgid "Reload partition table"
msgstr "Partitietabel opnieuw laden"
-#: ../../diskdrake/interactive.pm_.c:315
+#: ../../diskdrake/interactive.pm_.c:319
msgid "Removable media automounting"
msgstr "Automatische koppeling van verwisselbare media"
-#: ../../diskdrake/interactive.pm_.c:324 ../../diskdrake/interactive.pm_.c:344
+#: ../../diskdrake/interactive.pm_.c:328 ../../diskdrake/interactive.pm_.c:348
msgid "Select file"
msgstr "Selecteer bestand"
-#: ../../diskdrake/interactive.pm_.c:331
+#: ../../diskdrake/interactive.pm_.c:335
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1751,11 +1786,11 @@ msgstr ""
"De backup partitietabel heeft niet dezelfde grootte\n"
"Toch verdergaan?"
-#: ../../diskdrake/interactive.pm_.c:345
+#: ../../diskdrake/interactive.pm_.c:349
msgid "Warning"
msgstr "Waarschuwing"
-#: ../../diskdrake/interactive.pm_.c:346
+#: ../../diskdrake/interactive.pm_.c:350
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1763,112 +1798,107 @@ msgstr ""
"Plaats een floppy in station\n"
"Alle gegevens op deze floppy zullen verloren gaan"
-#: ../../diskdrake/interactive.pm_.c:357
+#: ../../diskdrake/interactive.pm_.c:361
msgid "Trying to rescue partition table"
msgstr "Proberen om partitietabel te redden"
-#: ../../diskdrake/interactive.pm_.c:363
+#: ../../diskdrake/interactive.pm_.c:367
msgid "Detailed information"
msgstr "Gedetailleerde informatie"
-#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:652
+#: ../../diskdrake/interactive.pm_.c:382 ../../diskdrake/interactive.pm_.c:662
msgid "Resize"
msgstr "Grootte aanpassen"
-#: ../../diskdrake/interactive.pm_.c:379 ../../diskdrake/interactive.pm_.c:705
+#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/interactive.pm_.c:715
msgid "Move"
msgstr "Verplaatsen"
-#: ../../diskdrake/interactive.pm_.c:380
+#: ../../diskdrake/interactive.pm_.c:384
msgid "Format"
msgstr "Formatteren"
-#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/smbnfs_gtk.pm_.c:82
-msgid "Mount"
-msgstr "Koppelen"
-
-#: ../../diskdrake/interactive.pm_.c:382
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Add to RAID"
msgstr "Toevoegen aan RAID"
-#: ../../diskdrake/interactive.pm_.c:383
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Add to LVM"
msgstr "Toevoegen aan LVM"
-#: ../../diskdrake/interactive.pm_.c:384 ../../diskdrake/smbnfs_gtk.pm_.c:81
-msgid "Unmount"
-msgstr "Ontkoppelen"
-
-#: ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/interactive.pm_.c:390
msgid "Remove from RAID"
msgstr "Verwijderen uit RAID"
-#: ../../diskdrake/interactive.pm_.c:387
+#: ../../diskdrake/interactive.pm_.c:391
msgid "Remove from LVM"
msgstr "Verwijderen uit LVM"
-#: ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/interactive.pm_.c:392
msgid "Modify RAID"
msgstr "RAID aanpassen"
-#: ../../diskdrake/interactive.pm_.c:389
+#: ../../diskdrake/interactive.pm_.c:393
msgid "Use for loopback"
msgstr "Voor Loopback gebruiken"
-#: ../../diskdrake/interactive.pm_.c:428
+#: ../../diskdrake/interactive.pm_.c:433
msgid "Create a new partition"
msgstr "Nieuwe partitie creëren"
-#: ../../diskdrake/interactive.pm_.c:431
+#: ../../diskdrake/interactive.pm_.c:436
msgid "Start sector: "
msgstr "Start-sector: "
-#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:805
+#: ../../diskdrake/interactive.pm_.c:438 ../../diskdrake/interactive.pm_.c:815
msgid "Size in MB: "
msgstr "Grootte in MB: "
-#: ../../diskdrake/interactive.pm_.c:434 ../../diskdrake/interactive.pm_.c:806
+#: ../../diskdrake/interactive.pm_.c:439 ../../diskdrake/interactive.pm_.c:816
msgid "Filesystem type: "
msgstr "Bestandssysteem-type: "
-#: ../../diskdrake/interactive.pm_.c:439
+#: ../../diskdrake/interactive.pm_.c:444
msgid "Preference: "
msgstr "Voorkeur: "
-#: ../../diskdrake/interactive.pm_.c:464
+#: ../../diskdrake/interactive.pm_.c:469
msgid ""
"You can't create a new partition\n"
"(since you reached the maximal number of primary partitions).\n"
"First remove a primary partition and create an extended partition."
msgstr ""
+"U kunt geen nieuwe partitie creëren, omdat u\n"
+"het maximale aantal primaire partities bereikt hebt.\n"
+"Verwijder eerst een primaire partitie en creëer een uitgebreide partitie."
-#: ../../diskdrake/interactive.pm_.c:494
+#: ../../diskdrake/interactive.pm_.c:499
msgid "Remove the loopback file?"
msgstr "Het loopback-bestand verwijderen?"
-#: ../../diskdrake/interactive.pm_.c:519
+#: ../../diskdrake/interactive.pm_.c:529
msgid "Change partition type"
msgstr "Verander partitietype"
-#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:530 ../../diskdrake/removable.pm_.c:48
msgid "Which filesystem do you want?"
msgstr "Welk bestandssysteem wilt u?"
-#: ../../diskdrake/interactive.pm_.c:526
+#: ../../diskdrake/interactive.pm_.c:536
msgid "Switching from ext2 to ext3"
msgstr "Omschakelen van ext2 naar ext3"
-#: ../../diskdrake/interactive.pm_.c:556
+#: ../../diskdrake/interactive.pm_.c:566
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "Waar wenst u loopback-apparaat %s aan te koppelen?"
-#: ../../diskdrake/interactive.pm_.c:557
+#: ../../diskdrake/interactive.pm_.c:567
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Waar wilt u apparaat %s koppelen?"
-#: ../../diskdrake/interactive.pm_.c:563
+#: ../../diskdrake/interactive.pm_.c:573
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1876,139 +1906,139 @@ msgstr ""
"Kan een koppelpunt niet verzetten omdat deze partitie gebruikt wordt als\n"
"loopback. Verwijder de loopback eerst."
-#: ../../diskdrake/interactive.pm_.c:584
-#, fuzzy, c-format
+#: ../../diskdrake/interactive.pm_.c:594
+#, c-format
msgid "Where do you want to mount %s?"
-msgstr "Waar wilt u apparaat %s koppelen?"
+msgstr "Waar wilt u %s koppelen?"
-#: ../../diskdrake/interactive.pm_.c:608
+#: ../../diskdrake/interactive.pm_.c:618
msgid "Computing FAT filesystem bounds"
msgstr "Bezig met berekenen van FAT bestandssysteemgrenzen"
-#: ../../diskdrake/interactive.pm_.c:608 ../../diskdrake/interactive.pm_.c:667
-#: ../../install_interactive.pm_.c:131
+#: ../../diskdrake/interactive.pm_.c:618 ../../diskdrake/interactive.pm_.c:677
+#: ../../install_interactive.pm_.c:133
msgid "Resizing"
msgstr "Grootte aanpassen"
-#: ../../diskdrake/interactive.pm_.c:640
+#: ../../diskdrake/interactive.pm_.c:650
msgid "This partition is not resizeable"
msgstr "Deze partitie is niet in grootte aanpasbaar"
-#: ../../diskdrake/interactive.pm_.c:645
+#: ../../diskdrake/interactive.pm_.c:655
msgid "All data on this partition should be backed-up"
msgstr ""
"Er zou een reservekopie gemaakt moeten worden van alle gegevens op deze "
"partitie."
-#: ../../diskdrake/interactive.pm_.c:647
+#: ../../diskdrake/interactive.pm_.c:657
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr ""
"Na het veranderen van de grootte van partitie %s, zullen alle gegevens op "
"deze partitie verloren gaan"
-#: ../../diskdrake/interactive.pm_.c:652
+#: ../../diskdrake/interactive.pm_.c:662
msgid "Choose the new size"
msgstr "Kies de nieuwe grootte"
-#: ../../diskdrake/interactive.pm_.c:653
+#: ../../diskdrake/interactive.pm_.c:663
msgid "New size in MB: "
msgstr "Nieuwe grootte in MB: "
-#: ../../diskdrake/interactive.pm_.c:706
+#: ../../diskdrake/interactive.pm_.c:716
msgid "Which disk do you want to move it to?"
msgstr "Naar welke schijf wenst u het te verplaatsen?"
-#: ../../diskdrake/interactive.pm_.c:707
+#: ../../diskdrake/interactive.pm_.c:717
msgid "Sector"
msgstr "Sector"
-#: ../../diskdrake/interactive.pm_.c:708
+#: ../../diskdrake/interactive.pm_.c:718
msgid "Which sector do you want to move it to?"
msgstr "Naar welke sector wenst u het te verplaatsen?"
-#: ../../diskdrake/interactive.pm_.c:711
+#: ../../diskdrake/interactive.pm_.c:721
msgid "Moving"
msgstr "Aan het verplaatsen"
-#: ../../diskdrake/interactive.pm_.c:711
+#: ../../diskdrake/interactive.pm_.c:721
msgid "Moving partition..."
msgstr "Partitie aan het verplaatsen..."
-#: ../../diskdrake/interactive.pm_.c:728
+#: ../../diskdrake/interactive.pm_.c:738
msgid "Choose an existing RAID to add to"
msgstr "Kies een bestaande RAID om aan toe te voegen"
-#: ../../diskdrake/interactive.pm_.c:729 ../../diskdrake/interactive.pm_.c:746
+#: ../../diskdrake/interactive.pm_.c:739 ../../diskdrake/interactive.pm_.c:756
msgid "new"
msgstr "nieuw"
-#: ../../diskdrake/interactive.pm_.c:744
+#: ../../diskdrake/interactive.pm_.c:754
msgid "Choose an existing LVM to add to"
msgstr "Kies een bestaande LVM om aan toe te voegen"
-#: ../../diskdrake/interactive.pm_.c:749
+#: ../../diskdrake/interactive.pm_.c:759
msgid "LVM name?"
msgstr "Naam van de LVM?"
-#: ../../diskdrake/interactive.pm_.c:790
+#: ../../diskdrake/interactive.pm_.c:800
msgid "This partition can't be used for loopback"
msgstr "Deze partitie kan niet gebruikt worden voor loopback"
-#: ../../diskdrake/interactive.pm_.c:803
+#: ../../diskdrake/interactive.pm_.c:813
msgid "Loopback"
msgstr "Loopback"
-#: ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:814
msgid "Loopback file name: "
msgstr "Loopback-bestandsnaam: "
-#: ../../diskdrake/interactive.pm_.c:809
+#: ../../diskdrake/interactive.pm_.c:819
msgid "Give a file name"
msgstr "Voer een bestandsnaam in"
-#: ../../diskdrake/interactive.pm_.c:812
+#: ../../diskdrake/interactive.pm_.c:822
msgid "File already used by another loopback, choose another one"
msgstr "Loopback-bestand is al in gebruik, gelieve een ander te kiezen"
-#: ../../diskdrake/interactive.pm_.c:813
+#: ../../diskdrake/interactive.pm_.c:823
msgid "File already exists. Use it?"
msgstr "Het bestand bestaat al. Wenst u het te gebruiken?"
-#: ../../diskdrake/interactive.pm_.c:836
+#: ../../diskdrake/interactive.pm_.c:846
msgid "Mount options"
msgstr "Koppel-opties:"
-#: ../../diskdrake/interactive.pm_.c:843
+#: ../../diskdrake/interactive.pm_.c:853
msgid "Various"
msgstr "Diversen"
-#: ../../diskdrake/interactive.pm_.c:907 ../../standalone/drakfloppy_.c:103
+#: ../../diskdrake/interactive.pm_.c:917 ../../standalone/drakfloppy_.c:103
msgid "device"
msgstr "apparaat"
-#: ../../diskdrake/interactive.pm_.c:908
+#: ../../diskdrake/interactive.pm_.c:918
msgid "level"
msgstr "niveau"
-#: ../../diskdrake/interactive.pm_.c:909
+#: ../../diskdrake/interactive.pm_.c:919
msgid "chunk size"
msgstr "blok grootte"
-#: ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:934
msgid "Be careful: this operation is dangerous."
msgstr "Voorzichtig: deze operatie is gevaarlijk."
-#: ../../diskdrake/interactive.pm_.c:939
+#: ../../diskdrake/interactive.pm_.c:949
msgid "What type of partitioning?"
msgstr "Welk type partitionering?"
-#: ../../diskdrake/interactive.pm_.c:955
+#: ../../diskdrake/interactive.pm_.c:965
#, c-format
msgid "The package %s is needed. Install it?"
msgstr "Pakket %s dient geĂŻnstalleerd te worden. Wilt u het installeren?"
-#: ../../diskdrake/interactive.pm_.c:969
+#: ../../diskdrake/interactive.pm_.c:979
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -2022,70 +2052,70 @@ msgstr ""
"heeft\n"
"/boot niet nodig."
-#: ../../diskdrake/interactive.pm_.c:973
+#: ../../diskdrake/interactive.pm_.c:983
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
"the 1024th cylinder of the hard drive, and you have no /boot partition.\n"
"If you plan to use the LILO boot manager, be careful to add a /boot partition"
msgstr ""
-"De partitie die u selecteerde als hoofdpartitie (/) bevindt zich fysiek "
-"voorbij\n"
+"De partitie die u selecteerde als hoofd(root-)partitie (/) bevindt zich "
+"fysiek voorbij\n"
"de 1024e cylinder van de harde schijf en u heeft geen /boot partitie.\n"
"Indien u de LILO boot manager wenst te gebruiken, zorg er dan voor dat u "
"een\n"
"/boot partitie toevoegt aan het begin van de schijf"
-#: ../../diskdrake/interactive.pm_.c:979
+#: ../../diskdrake/interactive.pm_.c:989
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
"So be careful to add a /boot partition"
msgstr ""
-"U heeft een software RAID partitie als hoofd (/) geselecteerd.\n"
+"U heeft een software RAID partitie als root (/) geselecteerd.\n"
"Geen bootloader kan dit aan zonder een /boot partitie, dus wees er zeker\n"
"van ook een /boot-partitie toe te voegen."
-#: ../../diskdrake/interactive.pm_.c:999
+#: ../../diskdrake/interactive.pm_.c:1009
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "Partitietabel van schijf %s wordt weggeschreven!"
-#: ../../diskdrake/interactive.pm_.c:1003
+#: ../../diskdrake/interactive.pm_.c:1013
msgid "You'll need to reboot before the modification can take place"
msgstr "U zal moeten herstarten voordat de aanpassing van kracht wordt"
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1024
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr ""
"Na het formatteren van partitie %s, zullen alle gegevens op deze partitie "
"verloren zijn"
-#: ../../diskdrake/interactive.pm_.c:1016
+#: ../../diskdrake/interactive.pm_.c:1026
msgid "Formatting"
msgstr "Bezig met formatteren"
-#: ../../diskdrake/interactive.pm_.c:1017
+#: ../../diskdrake/interactive.pm_.c:1027
#, c-format
msgid "Formatting loopback file %s"
msgstr "Bezig met formatteren van loopback-bestand %s"
-#: ../../diskdrake/interactive.pm_.c:1018
-#: ../../install_steps_interactive.pm_.c:476
+#: ../../diskdrake/interactive.pm_.c:1028
+#: ../../install_steps_interactive.pm_.c:459
#, c-format
msgid "Formatting partition %s"
msgstr "Bezig met formatteren van partitie %s"
-#: ../../diskdrake/interactive.pm_.c:1029
+#: ../../diskdrake/interactive.pm_.c:1039
msgid "Hide files"
msgstr "Bestanden verbergen"
-#: ../../diskdrake/interactive.pm_.c:1029
+#: ../../diskdrake/interactive.pm_.c:1039
msgid "Move files to the new partition"
msgstr "Bestanden naar de nieuwe partitie verplaatsen"
-#: ../../diskdrake/interactive.pm_.c:1030
+#: ../../diskdrake/interactive.pm_.c:1040
#, c-format
msgid ""
"Directory %s already contains data\n"
@@ -2094,83 +2124,83 @@ msgstr ""
"Map %s bevat reeds gegevens\n"
"(%s)"
-#: ../../diskdrake/interactive.pm_.c:1041
+#: ../../diskdrake/interactive.pm_.c:1051
msgid "Moving files to the new partition"
msgstr "Bezig met verplaatsen van bestanden naar de nieuwe partitie"
-#: ../../diskdrake/interactive.pm_.c:1045
+#: ../../diskdrake/interactive.pm_.c:1055
#, c-format
msgid "Copying %s"
msgstr "Bezig met kopiëren van %s"
-#: ../../diskdrake/interactive.pm_.c:1049
+#: ../../diskdrake/interactive.pm_.c:1059
#, c-format
msgid "Removing %s"
msgstr "Bezig met verwijderen van %s"
-#: ../../diskdrake/interactive.pm_.c:1059
+#: ../../diskdrake/interactive.pm_.c:1069
#, c-format
msgid "partition %s is now known as %s"
msgstr "partitie %s heet vanaf nu %s"
-#: ../../diskdrake/interactive.pm_.c:1080
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1090
+#: ../../diskdrake/interactive.pm_.c:1149
msgid "Device: "
msgstr "Apparaat: "
-#: ../../diskdrake/interactive.pm_.c:1081
+#: ../../diskdrake/interactive.pm_.c:1091
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "DOS schijfletter: %s (dit is slechts een gok)\n"
-#: ../../diskdrake/interactive.pm_.c:1085
-#: ../../diskdrake/interactive.pm_.c:1093
-#: ../../diskdrake/interactive.pm_.c:1157
+#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1103
+#: ../../diskdrake/interactive.pm_.c:1168
msgid "Type: "
msgstr "Type: "
-#: ../../diskdrake/interactive.pm_.c:1089
+#: ../../diskdrake/interactive.pm_.c:1099
msgid "Name: "
msgstr "Naam: "
-#: ../../diskdrake/interactive.pm_.c:1097
+#: ../../diskdrake/interactive.pm_.c:1107
#, c-format
msgid "Start: sector %s\n"
msgstr "Start: sector %s\n"
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1108
#, c-format
msgid "Size: %s"
msgstr "Grootte: %s"
-#: ../../diskdrake/interactive.pm_.c:1100
+#: ../../diskdrake/interactive.pm_.c:1110
#, c-format
msgid ", %s sectors"
msgstr ", %s sectoren"
-#: ../../diskdrake/interactive.pm_.c:1102
+#: ../../diskdrake/interactive.pm_.c:1112
#, c-format
msgid "Cylinder %d to %d\n"
msgstr "Cylinder %d tot %d\n"
-#: ../../diskdrake/interactive.pm_.c:1103
+#: ../../diskdrake/interactive.pm_.c:1113
msgid "Formatted\n"
msgstr "Geformatteerd\n"
-#: ../../diskdrake/interactive.pm_.c:1104
+#: ../../diskdrake/interactive.pm_.c:1114
msgid "Not formatted\n"
msgstr "Niet geformatteerd\n"
-#: ../../diskdrake/interactive.pm_.c:1105
+#: ../../diskdrake/interactive.pm_.c:1115
msgid "Mounted\n"
msgstr "Gekoppeld\n"
-#: ../../diskdrake/interactive.pm_.c:1106
+#: ../../diskdrake/interactive.pm_.c:1116
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1108
+#: ../../diskdrake/interactive.pm_.c:1118
#, c-format
msgid ""
"Loopback file(s):\n"
@@ -2179,7 +2209,7 @@ msgstr ""
"Loopback-bestand(en):\n"
" %s\n"
-#: ../../diskdrake/interactive.pm_.c:1109
+#: ../../diskdrake/interactive.pm_.c:1119
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -2187,27 +2217,27 @@ msgstr ""
"Standaard te starten partitie\n"
" (om MS-DOS te booten, niet voor lilo)\n"
-#: ../../diskdrake/interactive.pm_.c:1111
+#: ../../diskdrake/interactive.pm_.c:1121
#, c-format
msgid "Level %s\n"
msgstr "Niveau %s\n"
-#: ../../diskdrake/interactive.pm_.c:1112
+#: ../../diskdrake/interactive.pm_.c:1122
#, c-format
msgid "Chunk size %s\n"
msgstr "Blok-grootte %s\n"
-#: ../../diskdrake/interactive.pm_.c:1113
+#: ../../diskdrake/interactive.pm_.c:1123
#, c-format
msgid "RAID-disks %s\n"
msgstr "RAID-schijven %s\n"
-#: ../../diskdrake/interactive.pm_.c:1115
+#: ../../diskdrake/interactive.pm_.c:1125
#, c-format
msgid "Loopback file name: %s"
msgstr "Loopback bestandsnaam: %s"
-#: ../../diskdrake/interactive.pm_.c:1118
+#: ../../diskdrake/interactive.pm_.c:1128
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -2220,7 +2250,7 @@ msgstr ""
"kunt hem waarschijnlijk beter met\n"
"rust laten.\n"
-#: ../../diskdrake/interactive.pm_.c:1121
+#: ../../diskdrake/interactive.pm_.c:1131
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2232,65 +2262,69 @@ msgstr ""
"partitie is voor het\n"
"multi-opstarten van uw systeem.\n"
-#: ../../diskdrake/interactive.pm_.c:1140
+#: ../../diskdrake/interactive.pm_.c:1150
+msgid "Read-only"
+msgstr "Alleen-lezen"
+
+#: ../../diskdrake/interactive.pm_.c:1151
#, c-format
msgid "Size: %s\n"
msgstr "Grootte: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1141
+#: ../../diskdrake/interactive.pm_.c:1152
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Indeling: %s cylinders, %s koppen, %s sectoren\n"
-#: ../../diskdrake/interactive.pm_.c:1142
+#: ../../diskdrake/interactive.pm_.c:1153
msgid "Info: "
msgstr "Info: "
-#: ../../diskdrake/interactive.pm_.c:1143
+#: ../../diskdrake/interactive.pm_.c:1154
#, c-format
msgid "LVM-disks %s\n"
msgstr "LVM-schijven %s\n"
-#: ../../diskdrake/interactive.pm_.c:1144
+#: ../../diskdrake/interactive.pm_.c:1155
#, c-format
msgid "Partition table type: %s\n"
msgstr "Partitietabel-type: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1145
-#, fuzzy, c-format
+#: ../../diskdrake/interactive.pm_.c:1156
+#, c-format
msgid "on channel %d id %d\n"
-msgstr "op bus %d id %d\n"
+msgstr "op kanaal %d id %d\n"
-#: ../../diskdrake/interactive.pm_.c:1175
+#: ../../diskdrake/interactive.pm_.c:1186
msgid "Filesystem encryption key"
msgstr "Sleutel voor bestandssysteem-versleuteling"
-#: ../../diskdrake/interactive.pm_.c:1176
+#: ../../diskdrake/interactive.pm_.c:1187
msgid "Choose your filesystem encryption key"
msgstr "Kies uw sleutel voor bestandssysteem-versleuteling"
-#: ../../diskdrake/interactive.pm_.c:1179
+#: ../../diskdrake/interactive.pm_.c:1190
#, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr ""
"Deze versleutelings-sleutel is te makkelijk (moet tenminste %d tekens lang "
"zijn)"
-#: ../../diskdrake/interactive.pm_.c:1180
+#: ../../diskdrake/interactive.pm_.c:1191
msgid "The encryption keys do not match"
msgstr "De versleuteling-sleutels kloppen niet met elkaar"
-#: ../../diskdrake/interactive.pm_.c:1183
+#: ../../diskdrake/interactive.pm_.c:1194
msgid "Encryption key"
msgstr "versleutelings sleutel"
-#: ../../diskdrake/interactive.pm_.c:1184
+#: ../../diskdrake/interactive.pm_.c:1195
msgid "Encryption key (again)"
msgstr "versleutelings sleutel (nogmaals)"
#: ../../diskdrake/removable.pm_.c:47
msgid "Change type"
-msgstr "Verander partitietype"
+msgstr "Type veranderen"
#: ../../diskdrake/removable_gtk.pm_.c:28
msgid "Please click on a medium"
@@ -2314,14 +2348,13 @@ msgid "Which username"
msgstr "Welke gebruikersnaam"
#: ../../diskdrake/smbnfs_gtk.pm_.c:176
-#, fuzzy
msgid ""
"Please enter your username, password and domain name to access this host."
msgstr ""
-"Voer uw gebruikersnaam, wachtwoord en domeinnaam in om met deze host te "
-"verbinden."
+"Voer uw gebruikersnaam, wachtwoord en domeinnaam in om toegang te krijgen "
+"tot deze host."
-#: ../../diskdrake/smbnfs_gtk.pm_.c:178
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3527
msgid "Username"
msgstr "Gebruikersnaam"
@@ -2333,23 +2366,23 @@ msgstr "Domein"
msgid "Search servers"
msgstr "Servers zoeken"
-#: ../../fs.pm_.c:552 ../../fs.pm_.c:562 ../../fs.pm_.c:566 ../../fs.pm_.c:570
-#: ../../fs.pm_.c:574 ../../fs.pm_.c:578
+#: ../../fs.pm_.c:544 ../../fs.pm_.c:554 ../../fs.pm_.c:558 ../../fs.pm_.c:562
+#: ../../fs.pm_.c:566 ../../fs.pm_.c:570
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s formatteren van %s mislukt"
-#: ../../fs.pm_.c:615
+#: ../../fs.pm_.c:607
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "Ik weet niet hoe %s in type %s te formatteren"
-#: ../../fs.pm_.c:687 ../../fs.pm_.c:731
+#: ../../fs.pm_.c:681 ../../fs.pm_.c:724
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr "het koppelen van partitie %s in map %s is mislukt"
-#: ../../fs.pm_.c:746 ../../partition_table.pm_.c:602
+#: ../../fs.pm_.c:739 ../../partition_table.pm_.c:598
#, c-format
msgid "error unmounting %s: %s"
msgstr "fout bij ontkoppelen %s: %s"
@@ -2366,33 +2399,53 @@ msgstr "met /usr"
msgid "server"
msgstr "server"
-#: ../../fsedit.pm_.c:472
+#: ../../fsedit.pm_.c:240
+#, c-format
+msgid ""
+"I can't read the partition table of device %s, it's too corrupted for me :(\n"
+"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
+"The other solution is to not allow DrakX to modify the partition table.\n"
+"(the error is %s)\n"
+"\n"
+"Do you agree to loose all the partitions?\n"
+msgstr ""
+"Niet in staat de partitietabel van apparaat %s niet lezen, ze is te "
+"corrupt. :(\n"
+"Ik kan proberen door te gaan en de slechte partities verwijderen\n"
+"(ALLE GEGEVENS zullen worden gewist!).\n"
+"De andere mogelijkheid is om DrakX de de partitietabel niet te laten "
+"aanpassen.\n"
+"(de fout is %s)\n"
+"\n"
+"Gaat u ermee akkoord alle partities te verliezen?\n"
+
+#: ../../fsedit.pm_.c:501
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr "U kan JFS niet gebruiken op een partitie kleiner dan 16MB"
-#: ../../fsedit.pm_.c:473
+#: ../../fsedit.pm_.c:502
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr "U kan ReiserFS niet gebruiken op een partitie kleiner dan 32MB"
-#: ../../fsedit.pm_.c:492
+#: ../../fsedit.pm_.c:521
msgid "Mount points must begin with a leading /"
msgstr "Koppelpunten moeten beginnen met een /"
-#: ../../fsedit.pm_.c:493
+#: ../../fsedit.pm_.c:522
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Er is al een partitie met als koppelpunt %s\n"
-#: ../../fsedit.pm_.c:497
+#: ../../fsedit.pm_.c:526
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr "U kunt geen LVM schijf voor koppelpunt %s gebruiken"
-#: ../../fsedit.pm_.c:499
+#: ../../fsedit.pm_.c:528
msgid "This directory should remain within the root filesystem"
-msgstr "Deze map zou binnen het hoofd bestandssysteem moeten blijven"
+msgstr "Deze map zou binnen het root-bestandssysteem moeten blijven"
-#: ../../fsedit.pm_.c:501
+#: ../../fsedit.pm_.c:530
msgid ""
"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
"point\n"
@@ -2400,172 +2453,221 @@ msgstr ""
"U heeft een echt bestandssysteem (ext2/ext3, reiserfs, xfs of jfs) voor dit "
"koppelpunt nodig\n"
-#: ../../fsedit.pm_.c:503
+#: ../../fsedit.pm_.c:532
#, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr "U kunt geen versleuteld bestandssysteem voor koppelpunt %s gebruiken"
-#: ../../fsedit.pm_.c:570
+#: ../../fsedit.pm_.c:599
msgid "Not enough free space for auto-allocating"
msgstr "Niet voldoende vrije ruimte voor automatische toewijzing"
-#: ../../fsedit.pm_.c:572
+#: ../../fsedit.pm_.c:601
msgid "Nothing to do"
msgstr "Niets meer te doen"
-#: ../../fsedit.pm_.c:665
+#: ../../fsedit.pm_.c:694
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Fout bij het openen van %s voor schrijfbewerking: %s"
-#: ../../fsedit.pm_.c:750
+#: ../../harddrake/sound.pm_.c:155
+msgid "No alternative driver"
+msgstr "Geen alternatief stuurprogramma"
+
+#: ../../harddrake/sound.pm_.c:156
+#, c-format
+msgid "There's no known OSS/ALSA alternative driver for your sound card (%s)"
+msgstr "Er is geen bekend OSS/ALSA-stuurprogramma voor uw geluidskaart (%s)"
+
+#: ../../harddrake/sound.pm_.c:158
+msgid "Sound configuration"
+msgstr "Geluidsconfiguratie"
+
+#: ../../harddrake/sound.pm_.c:159
+#, c-format
msgid ""
-"An error occurred - no valid devices were found on which to create new "
-"filesystems. Please check your hardware for the cause of this problem"
+"Here you can select an alternative driver (either OSS or ALSA) for your "
+"sound card (%s)"
msgstr ""
-"Er is een fout opgetreden - er werden geen geldige apparaten gevonden "
-"waarop\n"
-"nieuwe bestandssystemen konden worden gecreëerd. Gelieve uw hardware na te\n"
-"kijken voor de oorzaak van dit probleem."
+"Hier kunt u een alternatief stuurprogramma selecteren (OSS of ALSA) voor uw "
+"geluidskaart (%s)"
-#: ../../fsedit.pm_.c:773
-msgid "You don't have any partitions!"
-msgstr "U heeft helemaal geen partities!"
+#: ../../harddrake/sound.pm_.c:162
+msgid "Driver:"
+msgstr "Stuurprogramma:"
-#: ../../harddrake/ui.pm_.c:15
-#, fuzzy
+#: ../../harddrake/sound.pm_.c:173
+msgid "No known driver"
+msgstr "Geen stuurprogramma bekend"
+
+#: ../../harddrake/sound.pm_.c:174
+#, c-format
+msgid "There's no known driver for your sound card (%s)"
+msgstr "Er is geen stuurprogramma bekend voor uw geluidskaart (%s)"
+
+#: ../../harddrake/sound.pm_.c:177
+msgid "Unkown driver"
+msgstr "Onbekend stuurprogramma"
+
+#: ../../harddrake/sound.pm_.c:178
+#, fuzzy, c-format
+msgid ""
+"The \"%s\" driver for your sound card is unlisted\n"
+"\n"
+"Please send the output of the \"lspcidrake -v\" command to\n"
+"<install at mandrakesoft dot com>\n"
+"with subject: unlisted sound driver \"%s\""
+msgstr ""
+"Het \"%s\"-stuurprogramma voor uw geluidskaart staat niet in de lijst\n"
+"\n"
+"Stuurt u alstublieft de uitvoer van de opdracht \"lspcidrake -v\" \n"
+"naar Thierry Vignaud <tvignaud@mandrakesoft.com>\n"
+"met als onderwerp: unlisted sound driver"
+
+#: ../../harddrake/ui.pm_.c:16
msgid "Model"
-msgstr "Module"
+msgstr "Model"
-#: ../../harddrake/ui.pm_.c:15
-#, fuzzy
+#: ../../harddrake/ui.pm_.c:16
msgid "hard disk model"
-msgstr "Kaart model:"
+msgstr "model harde schijf"
-#: ../../harddrake/ui.pm_.c:16
-#, fuzzy
+#: ../../harddrake/ui.pm_.c:17
msgid "Channel"
-msgstr "Annuleren"
+msgstr "Kanaal"
-#: ../../harddrake/ui.pm_.c:16
+#: ../../harddrake/ui.pm_.c:17
msgid "EIDE/SCSI channel"
-msgstr ""
+msgstr "EIDE/SCSI-kanaal"
-#: ../../harddrake/ui.pm_.c:18
+#: ../../harddrake/ui.pm_.c:19
msgid "Bus"
msgstr "Bus"
-#: ../../harddrake/ui.pm_.c:19
+#: ../../harddrake/ui.pm_.c:20
msgid ""
"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
-msgstr ""
+msgstr "de fysieke bus waarmee het apparaat verbonden is (bijv. PCI, USB, ...)"
-#: ../../harddrake/ui.pm_.c:20
+#: ../../harddrake/ui.pm_.c:21
msgid "Module"
msgstr "Module"
-#: ../../harddrake/ui.pm_.c:20
+#: ../../harddrake/ui.pm_.c:21
msgid "the module of the GNU/Linux kernel that handle that device"
-msgstr ""
+msgstr "de GNU/Linux-kernelmodule die dat apparaat aanstuurt"
-#: ../../harddrake/ui.pm_.c:21
-#, fuzzy
+#: ../../harddrake/ui.pm_.c:22
msgid "Media class"
msgstr "Mediaklasse"
-#: ../../harddrake/ui.pm_.c:21
+#: ../../harddrake/ui.pm_.c:22
msgid "class of hardware device"
-msgstr ""
+msgstr "apparaatklasse"
-#: ../../harddrake/ui.pm_.c:22 ../../printerdrake.pm_.c:1404
+#: ../../harddrake/ui.pm_.c:23 ../../printerdrake.pm_.c:1517
msgid "Description"
msgstr "Beschrijving"
-#: ../../harddrake/ui.pm_.c:22
+#: ../../harddrake/ui.pm_.c:23
msgid "this field describe the device"
-msgstr ""
+msgstr "dit veld bevat een omschrijving van het apparaat"
-#: ../../harddrake/ui.pm_.c:24
+#: ../../harddrake/ui.pm_.c:25
msgid "Bus identification"
msgstr "Bus identificatie"
-#: ../../harddrake/ui.pm_.c:25
+#: ../../harddrake/ui.pm_.c:26
msgid ""
-"- PCI and USB devices : this list the vendor, device, subvendor and "
-"subdevice PCI/USB ids"
+"- PCI and USB devices: this list the vendor, device, subvendor and subdevice "
+"PCI/USB ids"
msgstr ""
+"- PCI- en USB-apparaten: dit somt de PCI/USB ID's op van de fabrikant, "
+"apparaat, subfabrikant en subapparaat"
-#: ../../harddrake/ui.pm_.c:27
-#, fuzzy
+#: ../../harddrake/ui.pm_.c:28
msgid "Location on the bus"
msgstr "Locatie op de bus"
-#: ../../harddrake/ui.pm_.c:28
+#: ../../harddrake/ui.pm_.c:29
msgid ""
"- pci devices: this gives the PCI slot, device and function of this card\n"
"- eide devices: the device is either a slave or a master device\n"
"- scsi devices: the scsi bus and the scsi device ids"
msgstr ""
+"- pci-apparaten: dit geeft het PCI-slot, apparaat en functie van deze kaart\n"
+"- eide-apparaten: het apparaat is of een slave- of een master-apparaat\n"
+"- scsi-apparaten: de scsi-bus en de scsi-apparaat-ID's"
-#: ../../harddrake/ui.pm_.c:31
-#, fuzzy
+#: ../../harddrake/ui.pm_.c:32
msgid "Old device file"
-msgstr "Selecteer bestand"
+msgstr "Oud apparaatbestand"
-#: ../../harddrake/ui.pm_.c:32
+#: ../../harddrake/ui.pm_.c:33
msgid "old static device name used in dev package"
-msgstr ""
+msgstr "oude statische apparaatnaam gebruikt in dev-pakket"
-#: ../../harddrake/ui.pm_.c:33
-#, fuzzy
+#: ../../harddrake/ui.pm_.c:34
msgid "New devfs device"
-msgstr "Gateway apparaat"
+msgstr "Nieuw devfs-apparaat"
-#: ../../harddrake/ui.pm_.c:34
+#: ../../harddrake/ui.pm_.c:35
msgid "new dinamic device name generated by incore kernel devfs"
-msgstr ""
+msgstr "nieuwe dynamische naam gegenereerd door de devfs-kernel"
-#: ../../harddrake/ui.pm_.c:35
-#, fuzzy
+#: ../../harddrake/ui.pm_.c:36
msgid "Number of buttons"
-msgstr "2 knoppen"
+msgstr "Aantal knoppen"
-#: ../../harddrake/ui.pm_.c:36
+#: ../../harddrake/ui.pm_.c:37
msgid "the vendor name of the device"
-msgstr ""
+msgstr "de fabrikantnaam van dit apparaat"
-#: ../../harddrake/ui.pm_.c:60
+#: ../../harddrake/ui.pm_.c:38
+#, fuzzy
+msgid "Alternative drivers"
+msgstr "Geen alternatief stuurprogramma"
+
+#: ../../harddrake/ui.pm_.c:39
+#, fuzzy
+msgid "the list of alternative drivers for this sound card"
+msgstr "Er is geen bekend OSS/ALSA-stuurprogramma voor uw geluidskaart (%s)"
+
+#: ../../harddrake/ui.pm_.c:63
msgid "/_Quit"
msgstr "/_Afsluiten"
-#: ../../harddrake/ui.pm_.c:61 ../../harddrake/ui.pm_.c:62
-#: ../../harddrake/ui.pm_.c:68 ../../standalone/logdrake_.c:110
+#: ../../harddrake/ui.pm_.c:64 ../../harddrake/ui.pm_.c:65
+#: ../../harddrake/ui.pm_.c:71 ../../standalone/logdrake_.c:110
msgid "/_Help"
msgstr "/_Hulp"
-#: ../../harddrake/ui.pm_.c:62
+#: ../../harddrake/ui.pm_.c:65
msgid "/_Help..."
-msgstr "/_Help..."
+msgstr "/_Hulp..."
-#: ../../harddrake/ui.pm_.c:63
+#: ../../harddrake/ui.pm_.c:66
msgid "Harddrake help"
-msgstr "Harddrake help"
+msgstr "Harddrake hulp"
-#: ../../harddrake/ui.pm_.c:64
+#: ../../harddrake/ui.pm_.c:67
msgid ""
"Description of the fields:\n"
"\n"
msgstr ""
+"Beschrijving van de velden:\n"
+"\n"
-#: ../../harddrake/ui.pm_.c:68
+#: ../../harddrake/ui.pm_.c:71
msgid "/_About..."
msgstr "/_Info over..."
-#: ../../harddrake/ui.pm_.c:69
+#: ../../harddrake/ui.pm_.c:72
msgid "About Harddrake"
msgstr "Info over Harddrake"
-#: ../../harddrake/ui.pm_.c:70
+#: ../../harddrake/ui.pm_.c:73
msgid ""
"This is HardDrake, a Mandrake hardware configuration tool.\n"
"Version:"
@@ -2573,52 +2675,51 @@ msgstr ""
"Dit is HardDrake, een Mandrake hardware configuratie-tool.\n"
"Versie:"
-#: ../../harddrake/ui.pm_.c:71
+#: ../../harddrake/ui.pm_.c:74
msgid "Author:"
msgstr "Auteur:"
-#: ../../harddrake/ui.pm_.c:83
+#: ../../harddrake/ui.pm_.c:86
msgid "Harddrake2 version "
msgstr "Harddrake2 versie "
-#: ../../harddrake/ui.pm_.c:91
+#: ../../harddrake/ui.pm_.c:103
msgid "Detected hardware"
-msgstr "Gedetecteerde hardware"
+msgstr "Gevonden randapparatuur"
-#: ../../harddrake/ui.pm_.c:92
+#: ../../harddrake/ui.pm_.c:105
+msgid "Information"
+msgstr "Informatie"
+
+#: ../../harddrake/ui.pm_.c:108
msgid "Configure module"
msgstr "Module configureren"
-#: ../../harddrake/ui.pm_.c:92
-#, fuzzy
-msgid "Informations"
-msgstr "Informatie"
-
-#: ../../harddrake/ui.pm_.c:92
+#: ../../harddrake/ui.pm_.c:109
msgid "Run config tool"
msgstr "Start configuratie-tool"
-#: ../../harddrake/ui.pm_.c:96
+#: ../../harddrake/ui.pm_.c:113
msgid "Detection in progress"
msgstr "Bezig met detecteren"
-#: ../../harddrake/ui.pm_.c:96 ../../interactive.pm_.c:388
+#: ../../harddrake/ui.pm_.c:113 ../../interactive.pm_.c:391
msgid "Please wait"
msgstr "Even geduld"
-#: ../../harddrake/ui.pm_.c:139
+#: ../../harddrake/ui.pm_.c:156
msgid "primary"
msgstr "Primaire"
-#: ../../harddrake/ui.pm_.c:139
+#: ../../harddrake/ui.pm_.c:156
msgid "secondary"
msgstr "secundaire"
-#: ../../harddrake/ui.pm_.c:176
+#: ../../harddrake/ui.pm_.c:197
msgid "You can configure each parameter of the module here."
-msgstr ""
+msgstr "U kunt elke vlag van de module hier configureren"
-#: ../../harddrake/ui.pm_.c:192
+#: ../../harddrake/ui.pm_.c:213
#, c-format
msgid "Running \"%s\" ..."
msgstr "Draait \"%s\" ..."
@@ -2632,7 +2733,6 @@ msgid "Unknown|Generic"
msgstr "Onbekend|Algemeen"
#: ../../harddrake/v4l.pm_.c:98
-#, fuzzy
msgid "Unknown|CPH05X (bt878) [many vendors]"
msgstr "Onbekend|CPH05X (bt878) [vele uitvoeringen]"
@@ -2641,7 +2741,6 @@ msgid "Unknown|CPH06X (bt878) [many vendors]"
msgstr "Onbekend|CPH06X (bt878) [vele uitvoeringen]"
#: ../../harddrake/v4l.pm_.c:210
-#, fuzzy
msgid ""
"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
"detect the rights parameters.\n"
@@ -2649,35 +2748,32 @@ msgid ""
"here. Just select your tv card parameters if needed"
msgstr ""
"Voor de meeste modere TV-kaarten worden de juiste parameters automatisch "
-"door de bttv module van de GNU/Linux kernel gedetecteerd.\n"
-"Als uw kaart niet goed is herkent, kunt u de juiste tuner en kaart-type hier "
-"handmatig aangeven. Selecteer alleen parameters voor de kaart als dit nodig "
-"is."
+"door de bttv module van de GNU/Linux kernel gevonden.\n"
+"Indien uw kaart niet goed is herkend, kunt u de juiste tuner en kaart-type "
+"hier handmatig aangeven. Selecteer zonodig de vlaggen voor uw TV-kaart."
#: ../../harddrake/v4l.pm_.c:213
-msgid "Card model :"
+msgid "Card model:"
msgstr "Kaart model:"
#: ../../harddrake/v4l.pm_.c:214
-msgid "Tuner type :"
+msgid "Tuner type:"
msgstr "Tuner type :"
#: ../../harddrake/v4l.pm_.c:215
-#, fuzzy
-msgid "Number of capture buffers :"
-msgstr "Aantal opname buffers:"
+msgid "Number of capture buffers:"
+msgstr "Aantal opnamebuffers:"
#: ../../harddrake/v4l.pm_.c:215
-#, fuzzy
msgid "number of capture buffers for mmap'ed capture"
-msgstr "aantal van opname buffers voor mmap-opname:"
+msgstr "aantal opnamebuffers voor mmap-opname:"
#: ../../harddrake/v4l.pm_.c:217
-msgid "PLL setting :"
+msgid "PLL setting:"
msgstr "PLL instelling:"
#: ../../harddrake/v4l.pm_.c:218
-msgid "Radio support :"
+msgid "Radio support:"
msgstr "Radio ondersteuning:"
#: ../../harddrake/v4l.pm_.c:218
@@ -2685,26 +2781,27 @@ msgid "enable radio support"
msgstr "activeer radio ondersteuning"
#: ../../help.pm_.c:13
+#, fuzzy
msgid ""
"GNU/Linux is a multiuser system, and this means that each user can have his\n"
"own preferences, his own files and so on. You can read the ``User Guide''\n"
"to learn more. But unlike \"root\", which is the administrator, the users\n"
-"you will add here will not be entitled to change anything except their own\n"
-"files and their own configuration. You will have to create at least one\n"
-"regular user for yourself. That account is where you should log in for\n"
-"routine use. Although it is very practical to log in as \"root\" everyday,\n"
-"it may also be very dangerous! The slightest mistake could mean that your\n"
-"system would not work any more. If you make a serious mistake as a regular\n"
-"user, you may only lose some information, but not the entire system.\n"
+"you add here will not be entitled to change anything except their own files\n"
+"and their own configuration. You will have to create at least one regular\n"
+"user for yourself. That account is where you should log in for routine use.\n"
+"Although it is very practical to log in as \"root\" everyday, it may also\n"
+"be very dangerous! The slightest mistake could mean that your system would\n"
+"not work any more. If you make a serious mistake as a regular user, you may\n"
+"only lose some information, but not the entire system.\n"
"\n"
"First, you have to enter your real name. This is not mandatory, of course -\n"
"as you can actually enter whatever you want. DrakX will then take the first\n"
"word you have entered in the box and will bring it over to the \"User\n"
"name\". This is the name this particular user will use to log onto the\n"
"system. You can change it. You then have to enter a password here. A\n"
-"non-privileged (regular) user's password is not as crucial as \"root\"' one\n"
-"from a security point of view, but that is no reason to neglect it: after\n"
-"all, your files are at risk.\n"
+"non-privileged (regular) user's password is not as crucial as the \"root\"'\n"
+"one from a security point of view, but that is no reason to neglect it:\n"
+"after all, your files are at risk.\n"
"\n"
"If you click on \"Accept user\", you can then add as many as you want. Add\n"
"a user for each one of your friends: your father or your sister, for\n"
@@ -2830,6 +2927,7 @@ msgstr ""
"dat nodig is."
#: ../../help.pm_.c:77
+#, fuzzy
msgid ""
"It is now time to specify which programs you wish to install on your\n"
"system. There are thousands of packages available for Mandrake Linux, and\n"
@@ -2858,7 +2956,7 @@ msgid ""
"to have a graphical workstation!\n"
"\n"
"Moving the mouse cursor over a group name will display a short explanatory\n"
-"text about that group. If you deselect all groups when performing a regular\n"
+"text about that group. If you unselect all groups when performing a regular\n"
"installation (by opposition to an upgrade), a dialog will pop up proposing\n"
"different options for a minimal installation:\n"
"\n"
@@ -2948,11 +3046,12 @@ msgstr ""
"systeem."
#: ../../help.pm_.c:128
+#, fuzzy
msgid ""
-"Finally, depending on whether or not you selected individual packages, you\n"
-"will be presented a tree containing all packages classified by groups and\n"
-"subgroups. While browsing the tree, you can select entire groups,\n"
-"subgroups, or individual packages.\n"
+"Finally, depending on whether or not you chose to be able to select\n"
+"individual packages, you will be presented a tree containing all packages\n"
+"classified by groups and subgroups. While browsing the tree, you can select\n"
+"entire groups, subgroups, or individual packages.\n"
"\n"
"Whenever you select a package on the tree, a description appears on the\n"
"right. When your selection is finished, click the \"Install\" button which\n"
@@ -3024,12 +3123,13 @@ msgstr ""
"dergelijke diskette aanmaakt."
#: ../../help.pm_.c:164
+#, fuzzy
msgid ""
-"You are now proposed to set up your Internet/network connection. If you\n"
-"wish to connect your computer to the Internet or to a local network, click\n"
-"\"OK\". The autodetection of network devices and modem will be launched. If\n"
-"this detection fails, uncheck the \"Use auto detection\" box next time. You\n"
-"may also choose not to configure the network, or do it later; in that case,\n"
+"You are now able to set up your Internet/network connection. If you wish to\n"
+"connect your computer to the Internet or to a local network, click \"OK\".\n"
+"The autodetection of network devices and modem will be launched. If this\n"
+"detection fails, uncheck the \"Use auto detection\" box next time. You may\n"
+"also choose not to configure the network, or do it later; in that case,\n"
"simply click the \"Cancel\" button.\n"
"\n"
"Available connections are: traditional modem, ISDN modem, ADSL connection,\n"
@@ -3106,10 +3206,11 @@ msgstr ""
"alleen de services die u echt nodig heeft."
#: ../../help.pm_.c:203
+#, fuzzy
msgid ""
"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
"local time according to the time zone you selected. It is however possible\n"
-"to deactivate this by deselecting \"Hardware clock set to GMT\" so that the\n"
+"to deactivate this by unselecting \"Hardware clock set to GMT\" so that the\n"
"hardware clock is the same as the system clock. This is useful when the\n"
"machine is hosting another operating system like Windows.\n"
"\n"
@@ -3136,6 +3237,7 @@ msgstr ""
"andere computers op uw lokale netwerk."
#: ../../help.pm_.c:217
+#, fuzzy
msgid ""
"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
@@ -3154,7 +3256,9 @@ msgid ""
"If you can see the message during the test, and answer \"Yes\", then DrakX\n"
"will proceed to the next step. If you cannot see the message, it simply\n"
"means that the configuration was wrong and the test will automatically end\n"
-"after 10 seconds, restoring the screen."
+"after 10 seconds, restoring the screen. Refer then to the Video\n"
+"configuration section of the user guide for more information on how to\n"
+"configure your display."
msgstr ""
"X (voor X Window System) is het hart van de GNU/Linux grafische interface\n"
"waarvan alle grafische omgevingen (KDE, GNOME, AfterStep, WindowMaker...)\n"
@@ -3179,36 +3283,7 @@ msgstr ""
"instelling onjuist was. De test zal in dat geval automatisch eindigen na\n"
"10 seconden en het scherm herstellen."
-#: ../../help.pm_.c:237
-msgid ""
-"The first time you try the X configuration, you may not be very satisfied\n"
-"with its display (screen is too small, shifted left or right...). Hence,\n"
-"even if X starts up correctly, DrakX then asks you if the configuration\n"
-"suits you. It will also propose to change it by displaying a list of valid\n"
-"modes it could find, asking you to select one.\n"
-"\n"
-"As a last resort, if you still cannot get X to work, choose \"Change\n"
-"graphics card\", select \"Unlisted card\", and when prompted on which\n"
-"server, choose \"FBDev\". This is a failsafe option which works with any\n"
-"modern graphics card. Then choose \"Test again\" to be sure."
-msgstr ""
-"De eerste keer dat u de X configuratie probeert, zult u misschien niet\n"
-"erg tevreden zijn met het beeld (scherm te klein, naar links of naar rechts\n"
-"verschoven...). Daarom zal DrakX u vragen of de configuratie u bevalt,\n"
-"zelfs als X correct opstart. Het zal u tevens voorstellen om de "
-"configuratie\n"
-"te wijzigen door een lijst van geldige modi te tonen die het gevonden "
-"heeft,\n"
-"en u vragen er Ă©Ă©n te selecteren.\n"
-"\n"
-"Als een uiterste uitwijkmogelijkheid, als het u niet lukt X aan de praat te\n"
-"krijgen, kiest u \"Grafische kaart wijzigen\", selecteer \"Niet vermelde "
-"kaart\",en wanneer u gevraagd wordt welke server u wenst, kiest u \"FBDev\". "
-"Dit\n"
-"is een veilige optie die met iedere moderne grafische kaart werkt. Kiest u\n"
-"vervolgens \"Opnieuw testen\" om u ervan te vergewissen dat het werkt."
-
-#: ../../help.pm_.c:249
+#: ../../help.pm_.c:239
msgid ""
"Finally, you will be asked whether you want to see the graphical interface\n"
"at boot. Note this question will be asked even if you chose not to test the\n"
@@ -3222,7 +3297,8 @@ msgstr ""
"wilt u \"Nee\" antwoorden als uw machine als server moet dienen, of\n"
"indien u er niet in slaagde het beeld te configureren."
-#: ../../help.pm_.c:256
+#: ../../help.pm_.c:246
+#, fuzzy
msgid ""
"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
@@ -3242,10 +3318,10 @@ msgid ""
"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
"password, or any other reason.\n"
"\n"
-"When you click on this step, you will be asked to enter a disk inside the\n"
-"drive. The floppy disk you will insert must be empty or contain data which\n"
-"you do not need. You will not have to format it since DrakX will rewrite\n"
-"the whole disk."
+"If you say \"Yes\", you will be asked to enter a disk inside the drive. The\n"
+"floppy disk you will insert must be empty or contain data which you do not\n"
+"need. You will not have to format it since DrakX will rewrite the whole\n"
+"disk."
msgstr ""
"De Mandrake Linux CD-ROM heeft een ingebouwde reddings-modus. U kunt\n"
"er bij komen door op te starten van de CD-ROM, de \"F1\"-toets in te "
@@ -3278,7 +3354,8 @@ msgstr ""
"u nog nodig heeft. Het is niet nodig om hem te formatteren omdat DrakX de\n"
"gehele diskette zal herschrijven."
-#: ../../help.pm_.c:280
+#: ../../help.pm_.c:270
+#, fuzzy
msgid ""
"At this point, you need to choose where you want to install the Mandrake\n"
"Linux operating system on your hard drive. If your hard drive is empty or\n"
@@ -3311,7 +3388,9 @@ msgid ""
"\n"
" * \"Use existing partition\": the wizard has detected one or more existing\n"
"Linux partitions on your hard drive. If you want to use them, choose this\n"
-"option;\n"
+"option. You will then be asked to choose the mount points associated to\n"
+"each of the partitions. The legacy mount points are selected by default,\n"
+"and you should generally keep them.\n"
"\n"
" * \"Use the free space on the Windows; partition\": if Microsoft Windows\n"
"is installed on your hard drive and takes all the space available on it,\n"
@@ -3344,7 +3423,9 @@ msgid ""
" * \"Expert mode\": choose this option if you want to manually partition\n"
"your hard drive. Be careful - it is a powerful but dangerous choice. You\n"
"can very easily lose all your data. Hence, do not choose this unless you\n"
-"know what you are doing."
+"know what you are doing. To know how do use the DiskDrake utility used\n"
+"here, refer to the section ``Managing Your Partitions'' of the ````User\n"
+"Guide''''"
msgstr ""
"Op dit punt moet u kiezen waar op uw harde schijf u uw Mandrake Linux\n"
"besturingssysteem wilt installeren. Als uw harde schijf leeg is of als een\n"
@@ -3356,7 +3437,7 @@ msgstr ""
"\n"
"Omdat de effecten van het partitioneringsproces over het algemeen niet\n"
"terug te draaien zijn, kan partitioneren intimiderend en spannend zijn voor\n"
-"een onervaren gebruiker. Gelukkig is er een hulp die dit proces\n"
+"een onervaren gebruiker. Gelukkig is er een wizard die dit proces\n"
"vereenvoudigt. Raadpleeg de handleiding voordat u begint en neem de\n"
"tijd.\n"
"\n"
@@ -3426,7 +3507,7 @@ msgstr ""
"hiervoor\n"
"tenzij u weet wat u doet."
-#: ../../help.pm_.c:347
+#: ../../help.pm_.c:341
msgid ""
"There you are. Installation is now complete and your GNU/Linux system is\n"
"ready to use. Just click \"OK\" to reboot the system. You can start\n"
@@ -3494,7 +3575,7 @@ msgstr ""
"(*) U heeft een FAT-geformatteerde dskette nodig (om er Ă©Ă©n onder\n"
"GNU/Linux te creëren, typt u \"mformat a:\")"
-#: ../../help.pm_.c:378
+#: ../../help.pm_.c:372
msgid ""
"Any partitions that have been newly defined must be formatted for use\n"
"(formatting means creating a filesystem).\n"
@@ -3546,7 +3627,7 @@ msgstr ""
"Klik op \"Geavanceerd\" indien u partities wenst te selcteren die op\n"
"onleesbare blokken gecontroleerd zullen worden."
-#: ../../help.pm_.c:404
+#: ../../help.pm_.c:398
msgid ""
"Your new Mandrake Linux operating system is currently being installed.\n"
"Depending on the number of packages you will be installing and the speed of\n"
@@ -3562,12 +3643,13 @@ msgstr ""
"\n"
"Even geduld alstublieft."
-#: ../../help.pm_.c:412
+#: ../../help.pm_.c:406
+#, fuzzy
msgid ""
"At the time you are installing Mandrake Linux, it is likely that some\n"
"packages have been updated since the initial release. Some bugs may have\n"
"been fixed, and security issues solved. To allow you to benefit from these\n"
-"updates, you are now proposed to download them from the Internet. Choose\n"
+"updates, you are now able to download them from the Internet. Choose\n"
"\"Yes\" if you have a working Internet connection, or \"No\" if you prefer\n"
"to install updated packages later.\n"
"\n"
@@ -3591,7 +3673,7 @@ msgstr ""
"om de geselecteerde pakketten op te halen en te installeren. Druk\n"
"op \"Annuleren\" om af te breken."
-#: ../../help.pm_.c:425
+#: ../../help.pm_.c:419
msgid ""
"Before continuing, you should read carefully the terms of the license. It\n"
"covers the whole Mandrake Linux distribution, and if you do not agree with\n"
@@ -3605,14 +3687,15 @@ msgstr ""
"\"Weigeren\"-knop hetgeen de installatie onmiddelijk zal afbreken. Om\n"
"verder te gaan met de installatie, klikt u op de \"Accepteren\"-knop."
-#: ../../help.pm_.c:432
+#: ../../help.pm_.c:426
+#, fuzzy
msgid ""
"At this point, it is time to choose the security level desired for the\n"
"machine. As a rule of thumb, the more exposed the machine is, and the more\n"
"the data stored in it is crucial, the higher the security level should be.\n"
"However, a higher security level is generally obtained at the expense of\n"
-"easiness of use. Refer to the \"msec\" chapter of the ``Reference Manual''\n"
-"to get more information about the meaning of these levels.\n"
+"ease of use. Refer to the \"msec\" chapter of the ``Reference Manual'' to\n"
+"get more information about the meaning of these levels.\n"
"\n"
"If you do not know what to choose, keep the default option."
msgstr ""
@@ -3626,7 +3709,8 @@ msgstr ""
"\n"
"In het geval dat u niet weet wat te kiezen, behoudt u de standaard optie."
-#: ../../help.pm_.c:442
+#: ../../help.pm_.c:436
+#, fuzzy
msgid ""
"At this point, you need to choose which partition(s) will be used for the\n"
"installation of your Mandrake Linux system. If partitions have already been\n"
@@ -3643,26 +3727,26 @@ msgid ""
" * \"Clear all\": this option deletes all partitions on the selected hard\n"
"drive;\n"
"\n"
-" * \"Auto allocate\": this option enables to automatically create \"Ext2\"\n"
-"and swap partitions in free space of your hard drive;\n"
+" * \"Auto allocate\": this option enables to automatically create ext3 and\n"
+"swap partitions in free space of your hard drive;\n"
"\n"
-" * \"More\": gives access to additional features:\n"
+"\"More\": gives access to additional features:\n"
"\n"
-" * \"Save partition table\": saves the partition table to a floppy.\n"
-"Useful for later partition-table recovery if necessary. It is strongly\n"
-"recommended to perform this step;\n"
+" * \"Save partition table\": saves the partition table to a floppy. Useful\n"
+"for later partition-table recovery if necessary. It is strongly recommended\n"
+"to perform this step;\n"
"\n"
-" * \"Restore partition table\": allows to restore a previously saved\n"
+" * \"Restore partition table\": allows to restore a previously saved\n"
"partition table from floppy disk;\n"
"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you\n"
-"can try to recover it using this option. Please be careful and remember\n"
-"that it can fail;\n"
+" * \"Rescue partition table\": if your partition table is damaged, you can\n"
+"try to recover it using this option. Please be careful and remember that it\n"
+"can fail;\n"
"\n"
-" * \"Reload partition table\": discards all changes and loads your\n"
-"initial partition table;\n"
+" * \"Reload partition table\": discards all changes and loads your initial\n"
+"partition table;\n"
"\n"
-" * \"Removable media automounting\": unchecking this option will force\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
"users to manually mount and unmount removable medias such as floppies and\n"
"CD-ROMs.\n"
"\n"
@@ -3690,7 +3774,7 @@ msgid ""
" * Ctrl-m to set the mount point.\n"
"\n"
"To get information about the different filesystem types available, please\n"
-"read the ext2fs chapter from the ``Reference Manual''.\n"
+"read the ext2FS chapter from the ``Reference Manual''.\n"
"\n"
"If you are installing on a PPC machine, you will want to create a small HFS\n"
"``bootstrap'' partition of at least 1MB, which will be used by the yaboot\n"
@@ -3787,7 +3871,7 @@ msgstr ""
"zeg 50MB, dan vindt u het misschien een nuttige plek om een reserve kernel-\n"
"en ramdisk beeldbestand in op te slaan voor opstart-noodgevallen."
-#: ../../help.pm_.c:513
+#: ../../help.pm_.c:507
msgid ""
"More than one Microsoft partition has been detected on your hard drive.\n"
"Please choose the one you want to resize in order to install your new\n"
@@ -3850,34 +3934,35 @@ msgstr ""
"\"Windows naam\" is de letter van uw harde schijf onder Windows (de\n"
"eerste schijf of partitie wordt \"C:\" genoemd)."
-#: ../../help.pm_.c:544
+#: ../../help.pm_.c:538
msgid "Please be patient. This operation can take several minutes."
msgstr "Even geduld a.u.b. Deze operatie kan enkele minuten duren."
-#: ../../help.pm_.c:547
+#: ../../help.pm_.c:541
+#, fuzzy
msgid ""
"DrakX now needs to know if you want to perform a default (\"Recommended\")\n"
"installation or if you want to have greater control (\"Expert\"). You can\n"
"also choose to do a new install or an upgrade of an existing Mandrake Linux\n"
"system:\n"
"\n"
-" * \"Install\": completely wipes out the old system. In fact, depending on\n"
-"what currently holds your machine, you will be able to keep some old (Linux\n"
-"or other) partitions unchanged;\n"
+" * \"Install\": completely wipes out the old system, however, depending on\n"
+"what is currently installed on your machine, you may be able to keep some\n"
+"old partitions (Linux or otherwise) unchanged;\n"
"\n"
" * \"Upgrade\": this installation class allows to simply update the\n"
"packages currently installed on your Mandrake Linux system. It keeps the\n"
"current partitions of your hard drives as well as user configurations. All\n"
-"other configuration steps remain available with respect to plain\n"
+"other configuration steps remain available, similar to a normal\n"
"installation;\n"
"\n"
-" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
-"existing Mandrake Linux system while keeping all system configurations\n"
-"unchanged. Adding new packages to the current installation is also\n"
-"possible.\n"
+" * \"Upgrade Packages Only\": this new installation class allows you to\n"
+"upgrade an existing Mandrake Linux system while keeping all system\n"
+"configurations unchanged. Adding new packages to the current installation\n"
+"is also possible.\n"
"\n"
-"Upgrades should work fine for Mandrake Linux systems starting from \"8.1\"\n"
-"release.\n"
+"Upgrades should work fine on Mandrake Linux systems containing version\n"
+"\"8.1\" or later.\n"
"\n"
"Depending on your knowledge of GNU/Linux, select one of the following\n"
"choices:\n"
@@ -3886,11 +3971,11 @@ msgid ""
"operating system. The installation will be very easy and you will only be\n"
"asked a few questions;\n"
"\n"
-" * Expert: if you have a good knowledge of GNU/Linux, you can choose this\n"
-"installation class. The expert installation will allow you to perform a\n"
-"highly-customized installation. Answering some of the questions can be\n"
-"difficult if you do not have a good knowledge of GNU/Linux, so do not\n"
-"choose this unless you know what you are doing."
+" * Expert: if you have a good understanding of GNU/Linux, you may wish to\n"
+"perform a highly customized installation. Some of the decisions you will\n"
+"have to make may be difficult if you do not have good knowledge of\n"
+"GNU/Linux, so it is not recommended that those without a fair amount of\n"
+"experience select this installation class."
msgstr ""
"DrakX moet nu weten of u een standaard (\"Aanbevolen\") installatie wilt\n"
"uitvoeren, of meer controle wilt kunnen uitoefenen (\"Expert\"). U heeft "
@@ -3932,19 +4017,23 @@ msgstr ""
"kan moeilijk zijn als u geen goede kennis van GNU/Linux bezit, dus kies dit\n"
"niet tenzij u weet wat u doet."
-#: ../../help.pm_.c:584
+#: ../../help.pm_.c:578
+#, fuzzy
msgid ""
"Normally, DrakX selects the right keyboard for you (depending on the\n"
-"language you have chosen) and you won't even see this step. However, you\n"
-"might not have a keyboard that corresponds exactly to your language: for\n"
-"example, if you are an English speaking Swiss person, you may still want\n"
-"your keyboard to be a Swiss keyboard. Or if you speak English but are\n"
-"located in Quebec, you may find yourself in the same situation. In both\n"
-"cases, you will have to go back to this installation step and select an\n"
-"appropriate keyboard from the list.\n"
+"language you have chosen). However, you might not have a keyboard that\n"
+"corresponds exactly to your language: for example, if you are an English\n"
+"speaking Swiss person, you may still want your keyboard to be a Swiss\n"
+"keyboard. Or if you speak English but are located in Quebec, you may find\n"
+"yourself in the same situation. In both cases, you will have to go back to\n"
+"this installation step and select an appropriate keyboard from the list.\n"
"\n"
"Click on the \"More\" button to be presented with the complete list of\n"
-"supported keyboards."
+"supported keyboards.\n"
+"\n"
+"If you choose a keyboard layout based on a non-latin alphabet, you will be\n"
+"asked on next dialog to choose the key binding that will switch the\n"
+"keyboard layout between the latin and non latin layouts."
msgstr ""
"Normaal gesproken selecteert DrakX het juiste toetsenbord voor u\n"
"(afhankelijk van de taal die u heeft gekozen) en zult u deze stap niet eens\n"
@@ -3961,8 +4050,11 @@ msgstr ""
"Klik op de \"Meer\"-knop om de complete lijst van ondersteunde\n"
"toetsenbordindelingen te zien."
-#: ../../help.pm_.c:597
+#: ../../help.pm_.c:594
+#, fuzzy
msgid ""
+"The first step is to choose your preferred language.\n"
+"\n"
"Please choose your preferred language for installation and system usage.\n"
"\n"
"Clicking on the \"Advanced\" button will allow you to select other\n"
@@ -3990,7 +4082,8 @@ msgstr ""
"extra taalgebieden heeft geselecteerd, klikt u op de \"OK\"-knop om verder\n"
"te gaan."
-#: ../../help.pm_.c:610
+#: ../../help.pm_.c:609
+#, fuzzy
msgid ""
"DrakX generally detects the number of buttons your mouse has. If not, it\n"
"assumes you have a two-button mouse and will set it up for third-button\n"
@@ -4003,7 +4096,14 @@ msgid ""
"If you choose a mouse other than the default, a test screen will be\n"
"displayed. Use the buttons and wheel to verify that the settings are\n"
"correct. If the mouse is not working well, press the space bar or [Return]\n"
-"to \"Cancel\" and choose again."
+"to \"Cancel\" and choose again.\n"
+"\n"
+"Wheel mouses are sometimes not automatically detected. You will need to\n"
+"manually select it in the list. Be sure to select the one corresponding to\n"
+"the correct port it is attached to. After you have pressed the \"OK\"\n"
+"button, a mouse image is displayed. You then need to move the wheel of your\n"
+"mouse to activate it correctly. Then test all buttons and movements are\n"
+"correct."
msgstr ""
"Normaal gesproken neemt DrakX aan dat u een tweeknops-muis heeft en\n"
"zal deze instellen voor het nadoen van een derde knop. DrakX zoekt zelf uit\n"
@@ -4018,7 +4118,7 @@ msgstr ""
"controleren dat de instellingen goed zijn. Als de muis niet correct werkt,\n"
"druk dan op de spatiebalk of Enter om te \"Annuleren\" en kies opnieuw."
-#: ../../help.pm_.c:624
+#: ../../help.pm_.c:630
msgid ""
"Please select the correct port. For example, the \"COM1\" port under\n"
"Windows is named \"ttyS0\" under GNU/Linux."
@@ -4026,7 +4126,8 @@ msgstr ""
"Gelieve de juiste poort te kiezen. COM1 onder Windows wordt bijvoorbeeld\n"
"\"ttyS0\" genoemd onder GNU/Linux."
-#: ../../help.pm_.c:628
+#: ../../help.pm_.c:634
+#, fuzzy
msgid ""
"This is the most crucial decision point for the security of your GNU/Linux\n"
"system: you have to enter the \"root\" password. \"root\" is the system\n"
@@ -4056,9 +4157,9 @@ msgid ""
"In Expert mode, you will be asked if you will be connecting to an\n"
"authentication server, like NIS or LDAP.\n"
"\n"
-"If your network uses the LDAP (or NIS) protocol for authentication, select\n"
-"\"LDAP\" (or \"NIS\") as authentication. If you do not know, ask your\n"
-"network administrator.\n"
+"If your network uses either of the LDAP, NIS, or PDC Windows Domain\n"
+"authentication services, select the appropriate one as \"authentication\".\n"
+"If you do not know, ask your network administrator.\n"
"\n"
"If your computer is not connected to any administrated network, you will\n"
"want to choose \"Local files\" for authentication."
@@ -4101,7 +4202,8 @@ msgstr ""
"Indien uw computer niet verbonden is aan een beheerd netwerk, zult u\n"
"willen kiezen voor \"Lokale bestanden\" als wijze van authenticatie."
-#: ../../help.pm_.c:664
+#: ../../help.pm_.c:670
+#, fuzzy
msgid ""
"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
@@ -4140,16 +4242,7 @@ msgid ""
"options. !!\n"
"\n"
"Clicking the \"Advanced\" button in this dialog will offer many advanced\n"
-"options, which are reserved to the expert user.\n"
-"\n"
-"After you have configured the general bootloader parameters, the list of\n"
-"boot options which will be available at boot time will be displayed.\n"
-"\n"
-"If there is another operating system installed on your machine, it will\n"
-"automatically be added to the boot menu. Here, you can choose to fine-tune\n"
-"the existing options. Select an entry and click \"Modify\" to modify or\n"
-"remove it; \"Add\" creates a new entry; and \"Done\" goes on to the next\n"
-"installation step."
+"options, which are reserved for the expert user."
msgstr ""
"LILO en GRUB zijn opstartladers voor GNU/Linux. Normaal gesproken\n"
"is deze fase volledig geautomatiseerd. In feite analyseert DrakX de\n"
@@ -4206,13 +4299,17 @@ msgstr ""
"om hem te wijzigen of te verwijderen; \"Toevoegen\" creëert een nieuw\n"
"item en \"Klaar\" gaat door naar de volgende installatiestap."
-#: ../../help.pm_.c:713
+#: ../../help.pm_.c:710
+#, fuzzy
msgid ""
-"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
-"either GNU/Linux or any other operating system present on your computer.\n"
-"Normally, these other operating systems are correctly detected and\n"
-"installed. If this is not the case, you can add an entry by hand in this\n"
-"screen. Be careful to choose the correct parameters.\n"
+"After you have configured the general bootloader parameters, the list of\n"
+"boot options which will be available at boot time will be displayed.\n"
+"\n"
+"If there is another operating system installed on your machine, it will\n"
+"automatically be added to the boot menu. Here, you can choose to fine-tune\n"
+"the existing options. Select an entry and click \"Modify\" to modify or\n"
+"remove it; \"Add\" creates a new entry; and \"Done\" goes on to the next\n"
+"installation step.\n"
"\n"
"You may also not want to give access to these other operating systems to\n"
"anyone. In which case, you can delete the corresponding entries. But then,\n"
@@ -4308,19 +4405,20 @@ msgstr ""
"in netwerkverband."
#: ../../help.pm_.c:759
+#, fuzzy
msgid ""
-"DrakX now detects any IDE device present in your computer. It will also\n"
-"scan for one or more PCI SCSI card(s) on your system. If a SCSI card is\n"
+"DrakX now detects any IDE devices present in your computer. It will also\n"
+"scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
"found, DrakX will automatically install the appropriate driver.\n"
"\n"
"Because hardware detection does not always detect a piece of hardware,\n"
"DrakX will ask you to confirm if a PCI SCSI card is present. Click \"Yes\"\n"
"if you know that there is a SCSI card installed in your machine. You will\n"
-"be presented a list of SCSI cards to choose from. Click \"No\" if you have\n"
-"no SCSI hardware. If you are unsure, you can check the list of hardware\n"
-"detected in your machine by selecting \"See hardware info\" and clicking\n"
-"\"OK\". Examine the list of hardware and then click on the \"OK\" button to\n"
-"return to the SCSI interface question.\n"
+"be presented with a list of SCSI cards to choose from. Click \"No\" if you\n"
+"have no SCSI hardware. If you are unsure, you can check the list of\n"
+"hardware detected in your machine by selecting \"See hardware info\" and\n"
+"clicking \"OK\". Examine the list of hardware and then click on the \"OK\"\n"
+"button to return to the SCSI interface question.\n"
"\n"
"If you have to manually specify your adapter, DrakX will ask if you want to\n"
"specify options for it. You should allow DrakX to probe the hardware for\n"
@@ -4414,13 +4512,13 @@ msgid ""
"selections."
msgstr ""
"U kent extra parameters toevoegen voor yaboot, voor andere\n"
-"besturingssystemen, alternatieve kernels of voor een nood opstart\n"
-"bestand.\n"
+"besturingssystemen, alternatieve kernels of voor een nood-opstart\n"
+"beeldbestand.\n"
"\n"
"Voor andere besturingssystemen bestaan de parameters uit een\n"
"naam (label) en een hoofd partitie (root partitie).\n"
"\n"
-"Voor Linux zijn er nog enkelle extra opties:\n"
+"Voor Linux zijn er nog enkele extra opties:\n"
"\n"
" * Label: Dit is simpelweg de naam die U moet invoeren op de yaboot\n"
" prompt om deze opstart optie te selecteren;\n"
@@ -4466,7 +4564,7 @@ msgstr ""
" deze selectie zal op de yaboot prompt dan standaard\n"
" verkozen zijn wanneer U op ENTER drukt. Deze selectie\n"
" zal ook met een \"*\" herkenbaar zijn als U op de TAB\n"
-" toets drukt op de yaboot-prompt."
+" toets drloukt op de yaboot-prompt."
#: ../../help.pm_.c:833
msgid ""
@@ -4544,6 +4642,7 @@ msgstr ""
" wordt gestart na de Open Firmware vertraging."
#: ../../help.pm_.c:865
+#, fuzzy
msgid ""
"Here are presented various parameters concerning your machine. Depending on\n"
"your installed hardware, you may - or not, see the following entries:\n"
@@ -4561,7 +4660,9 @@ msgid ""
"order to configure the clock according to the time zone you are in;\n"
"\n"
" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
-"configuration wizard;\n"
+"configuration wizard. Consult the corresponding chapter of the ``User\n"
+"Guide'' for more information on how to setup a new printer. The interface\n"
+"presented there is similar to the one used during installation;\n"
"\n"
" * \"Sound card\": if a sound card is detected on your system, it is\n"
"displayed here. No modification possible at installation time;\n"
@@ -4613,7 +4714,7 @@ msgstr ""
"hier weergegeven. U kunt op de knop klikken om de parameters aan te passen\n"
"die erbij horen."
-#: ../../help.pm_.c:894
+#: ../../help.pm_.c:896
msgid ""
"Choose the hard drive you want to erase in order to install your new\n"
"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
@@ -4623,7 +4724,7 @@ msgstr ""
"Mandrake Linux partitie op te installeren. Wees voorzichtig, alle data die\n"
"op deze schijf staat zal verloren gaan, en niet terug te halen zijn!"
-#: ../../help.pm_.c:899
+#: ../../help.pm_.c:901
msgid ""
"Click on \"OK\" if you want to delete all data and partitions present on\n"
"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
@@ -4660,7 +4761,7 @@ msgstr ""
msgid "You must also format %s"
msgstr "U dient tevens %s te formatteren"
-#: ../../install_any.pm_.c:418
+#: ../../install_any.pm_.c:423
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -4684,21 +4785,35 @@ msgstr ""
"\n"
"Weet u zeker dat u deze servers wilt installeren?\n"
-#: ../../install_any.pm_.c:453
+#: ../../install_any.pm_.c:441
+#, c-format
+msgid ""
+"The following packages will be removed to allow upgrading your system: %s\n"
+"\n"
+"\n"
+"Do you really want to remove these packages?\n"
+msgstr ""
+"De volgende pakketten zullen verwijderd worden om uw systeem te kunnen "
+"opwaarderen: %s\n"
+"\n"
+"\n"
+"Weet u zeker dat u deze pakketten wilt verwijderen?\n"
+
+#: ../../install_any.pm_.c:471
msgid "Can't use broadcast with no NIS domain"
msgstr "Kan niet uitzenden zonder NIS-domein"
-#: ../../install_any.pm_.c:841
+#: ../../install_any.pm_.c:862
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr ""
"Plaats een met het FAT-bestandssysteem geformatteerde diskette in station %s"
-#: ../../install_any.pm_.c:845
+#: ../../install_any.pm_.c:866
msgid "This floppy is not FAT formatted"
msgstr "Deze diskette is niet FAT-geformatteerd"
-#: ../../install_any.pm_.c:857
+#: ../../install_any.pm_.c:878
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -4706,11 +4821,21 @@ msgstr ""
"Om deze opgeslagen pakketselectie te gebruiken, start u de installatie \n"
"met ''linux defcfg=floppy''"
-#: ../../install_any.pm_.c:880 ../../partition_table.pm_.c:771
+#: ../../install_any.pm_.c:901 ../../partition_table.pm_.c:767
#, c-format
msgid "Error reading file %s"
msgstr "Fout bij het lezen van bestand %s"
+#: ../../install_any.pm_.c:1023
+msgid ""
+"An error occurred - no valid devices were found on which to create new "
+"filesystems. Please check your hardware for the cause of this problem"
+msgstr ""
+"Er is een fout opgetreden - er werden geen geldige apparaten gevonden "
+"waarop\n"
+"nieuwe bestandssystemen konden worden gecreëerd. Gelieve uw hardware na te\n"
+"kijken voor de oorzaak van dit probleem."
+
#: ../../install_interactive.pm_.c:23
#, c-format
msgid ""
@@ -4744,60 +4869,60 @@ msgstr ""
"\n"
"Toch verdergaan?"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:168
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:169
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr ""
"U moet een partitie met FAT-bestandssysteem gekoppeld hebben aan /boot/efi"
-#: ../../install_interactive.pm_.c:91
+#: ../../install_interactive.pm_.c:92
msgid "Use free space"
msgstr "Gebruik vrije ruimte"
-#: ../../install_interactive.pm_.c:93
+#: ../../install_interactive.pm_.c:94
msgid "Not enough free space to allocate new partitions"
msgstr "Niet genoeg vrije ruimte om nieuwe partities te maken"
-#: ../../install_interactive.pm_.c:101
+#: ../../install_interactive.pm_.c:102
msgid "Use existing partitions"
msgstr "Gebruik een bestaande partitie"
-#: ../../install_interactive.pm_.c:103
+#: ../../install_interactive.pm_.c:104
msgid "There is no existing partition to use"
msgstr "Er is geen bestaande partitie om te gebruiken"
-#: ../../install_interactive.pm_.c:110
+#: ../../install_interactive.pm_.c:111
msgid "Use the Windows partition for loopback"
msgstr "Gebruik de Windows partitie voor loopback "
-#: ../../install_interactive.pm_.c:113
+#: ../../install_interactive.pm_.c:114
msgid "Which partition do you want to use for Linux4Win?"
msgstr "Welke partitie wenst u te gebruiken voor Linux4Win?"
-#: ../../install_interactive.pm_.c:115
+#: ../../install_interactive.pm_.c:116
msgid "Choose the sizes"
msgstr "Kies de grootte"
-#: ../../install_interactive.pm_.c:116
+#: ../../install_interactive.pm_.c:117
msgid "Root partition size in MB: "
msgstr "Root-partitie-grootte in MB:"
-#: ../../install_interactive.pm_.c:117
+#: ../../install_interactive.pm_.c:118
msgid "Swap partition size in MB: "
msgstr "Swap-partitie-grootte in MB: "
-#: ../../install_interactive.pm_.c:126
+#: ../../install_interactive.pm_.c:128
msgid "Use the free space on the Windows partition"
msgstr "Gebruik de vrije ruimte op de Windows partitie"
-#: ../../install_interactive.pm_.c:129
+#: ../../install_interactive.pm_.c:131
msgid "Which partition do you want to resize?"
msgstr "Van welke partitie wilt u de grootte veranderen?"
-#: ../../install_interactive.pm_.c:131
+#: ../../install_interactive.pm_.c:133
msgid "Resizing Windows partition"
msgstr "Bezig met berekenen van Windows bestandssysteemgrenzen"
-#: ../../install_interactive.pm_.c:134
+#: ../../install_interactive.pm_.c:136
#, c-format
msgid ""
"The FAT resizer is unable to handle your partition, \n"
@@ -4806,7 +4931,7 @@ msgstr ""
"De FAT grootte-aanpasser was niet instaat met uw partitie om te gaan, \n"
"dit is fout gegaan: %s"
-#: ../../install_interactive.pm_.c:137
+#: ../../install_interactive.pm_.c:139
msgid ""
"Your Windows partition is too fragmented. Please reboot your computer under "
"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
@@ -4814,7 +4939,7 @@ msgid ""
msgstr ""
"Uw Windows partitie is te gefragmenteerd, start a.u.b. eerst ``defrag'' eerst"
-#: ../../install_interactive.pm_.c:138
+#: ../../install_interactive.pm_.c:140
msgid ""
"WARNING!\n"
"\n"
@@ -4837,21 +4962,21 @@ msgstr ""
"veiligheidskopie van uw data.\n"
"Als u zeker bent, klik dan OK."
-#: ../../install_interactive.pm_.c:148
+#: ../../install_interactive.pm_.c:150
msgid "Which size do you want to keep for Windows on"
msgstr "Welke grootte wilt u gebruiken om windows op?"
-#: ../../install_interactive.pm_.c:149
+#: ../../install_interactive.pm_.c:151
#, c-format
msgid "partition %s"
msgstr "Partitie %s"
-#: ../../install_interactive.pm_.c:156
+#: ../../install_interactive.pm_.c:158
#, c-format
msgid "FAT resizing failed: %s"
msgstr "FAT grootte-aanpassing mislukt: %s"
-#: ../../install_interactive.pm_.c:171
+#: ../../install_interactive.pm_.c:173
msgid ""
"There is no FAT partition to resize or to use as loopback (or not enough "
"space left)"
@@ -4859,34 +4984,34 @@ msgstr ""
"Er is geen FAT partitie om de grootte van aan te passen of om als \n"
"loopback te gebruiken (of er is te weinig ruimte over)"
-#: ../../install_interactive.pm_.c:177
+#: ../../install_interactive.pm_.c:179
msgid "Erase entire disk"
msgstr "Volledige harde schijf wissen"
-#: ../../install_interactive.pm_.c:177
+#: ../../install_interactive.pm_.c:179
msgid "Remove Windows(TM)"
msgstr "Verwijder Windows(TM)"
-#: ../../install_interactive.pm_.c:180
+#: ../../install_interactive.pm_.c:182
msgid "You have more than one hard drive, which one do you install linux on?"
msgstr "U heeft meer dan Ă©Ă©n harde schijf, op welke wilt u Linux installeren?"
-#: ../../install_interactive.pm_.c:183
+#: ../../install_interactive.pm_.c:185
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr ""
"ALLE bestaande partities en de data die ze bevatten, zal worden gewist van "
"schijf %s"
-#: ../../install_interactive.pm_.c:191
+#: ../../install_interactive.pm_.c:193
msgid "Custom disk partitioning"
msgstr "Aangepaste schijf-partitionering"
-#: ../../install_interactive.pm_.c:195
+#: ../../install_interactive.pm_.c:197
msgid "Use fdisk"
msgstr "Gebruik fdisk"
-#: ../../install_interactive.pm_.c:198
+#: ../../install_interactive.pm_.c:200
#, c-format
msgid ""
"You can now partition %s.\n"
@@ -4895,28 +5020,28 @@ msgstr ""
"U kan nu uw schijf %s partitioneren.\n"
"Vergeet niet op te slaan met `w' wanneer u klaar bent."
-#: ../../install_interactive.pm_.c:227
+#: ../../install_interactive.pm_.c:229
msgid "You don't have enough free space on your Windows partition"
msgstr "U heeft niet genoeg vrije ruimte op uw Windows partitie"
-#: ../../install_interactive.pm_.c:243
+#: ../../install_interactive.pm_.c:245
msgid "I can't find any room for installing"
msgstr "Ik kan geen partitie meer toevoegen"
-#: ../../install_interactive.pm_.c:246
+#: ../../install_interactive.pm_.c:248
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr "De DrakX partitie hulp heeft de volgende oplossingen gevonden:"
-#: ../../install_interactive.pm_.c:250
+#: ../../install_interactive.pm_.c:252
#, c-format
msgid "Partitioning failed: %s"
msgstr "Partitionering mislukt: %s"
-#: ../../install_interactive.pm_.c:260
+#: ../../install_interactive.pm_.c:262
msgid "Bringing up the network"
msgstr "Bezig met opstarten van het netwerk"
-#: ../../install_interactive.pm_.c:265
+#: ../../install_interactive.pm_.c:267
msgid "Bringing down the network"
msgstr "Bezig met stoppen van het netwerk"
@@ -4928,12 +5053,12 @@ msgstr ""
"Er is een fout opgetreden, maar ik weet niet hoe deze te behandelen.\n"
"Als u verdergaat, is dit op eigen risico."
-#: ../../install_steps.pm_.c:210
+#: ../../install_steps.pm_.c:211
#, c-format
msgid "Duplicate mount point %s"
msgstr "Dubbel koppelpunt %s"
-#: ../../install_steps.pm_.c:379
+#: ../../install_steps.pm_.c:380
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -4945,12 +5070,12 @@ msgstr ""
"Controleer de cdrom op een geĂŻnstalleerde computer met\n"
"\"rpm -qpl Mandrake/RPMS/*.rpm\"\n"
-#: ../../install_steps.pm_.c:451
+#: ../../install_steps.pm_.c:452
#, c-format
msgid "Welcome to %s"
msgstr "Welkom bij %s!"
-#: ../../install_steps.pm_.c:530 ../../install_steps.pm_.c:770
+#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:772
msgid "No floppy drive available"
msgstr "Geen diskettestation beschikbaar"
@@ -4980,69 +5105,69 @@ msgstr "Installatie-klasse"
msgid "Please choose one of the following classes of installation:"
msgstr "Gelieve een van de volgende installatieklasses te kiezen:"
-#: ../../install_steps_gtk.pm_.c:243 ../../install_steps_interactive.pm_.c:694
+#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:678
msgid "Package Group Selection"
msgstr "Pakket-groep Selectie"
-#: ../../install_steps_gtk.pm_.c:276 ../../install_steps_interactive.pm_.c:709
+#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:693
msgid "Individual package selection"
msgstr "Individuele pakketselectie"
-#: ../../install_steps_gtk.pm_.c:299 ../../install_steps_interactive.pm_.c:633
+#: ../../install_steps_gtk.pm_.c:293 ../../install_steps_interactive.pm_.c:617
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Totale grootte: %d / %d MB"
-#: ../../install_steps_gtk.pm_.c:341
+#: ../../install_steps_gtk.pm_.c:335
msgid "Bad package"
msgstr "Slecht pakket"
-#: ../../install_steps_gtk.pm_.c:342
+#: ../../install_steps_gtk.pm_.c:336
#, c-format
msgid "Name: %s\n"
msgstr "Naam: %s\n"
-#: ../../install_steps_gtk.pm_.c:343
+#: ../../install_steps_gtk.pm_.c:337
#, c-format
msgid "Version: %s\n"
msgstr "Versie: %s\n"
-#: ../../install_steps_gtk.pm_.c:344
+#: ../../install_steps_gtk.pm_.c:338
#, c-format
msgid "Size: %d KB\n"
msgstr "Grootte: %d kB\n"
-#: ../../install_steps_gtk.pm_.c:345
+#: ../../install_steps_gtk.pm_.c:339
#, c-format
msgid "Importance: %s\n"
msgstr "Belangrijkheid: %s\n"
-#: ../../install_steps_gtk.pm_.c:367
+#: ../../install_steps_gtk.pm_.c:361
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr "U kan dit pakket niet selecteren omdat er te weinig vrije ruimte is"
-#: ../../install_steps_gtk.pm_.c:372
+#: ../../install_steps_gtk.pm_.c:366
msgid "The following packages are going to be installed"
msgstr "De volgende pakketten zullen geĂŻnstalleerd worden"
-#: ../../install_steps_gtk.pm_.c:373
+#: ../../install_steps_gtk.pm_.c:367
msgid "The following packages are going to be removed"
msgstr "De volgende pakketten zullen gedeĂŻnstalleerd worden"
-#: ../../install_steps_gtk.pm_.c:385
+#: ../../install_steps_gtk.pm_.c:379
msgid "You can't select/unselect this package"
msgstr "U kan dit pakket niet (de)selecteren"
-#: ../../install_steps_gtk.pm_.c:397
+#: ../../install_steps_gtk.pm_.c:391
msgid "This is a mandatory package, it can't be unselected"
msgstr "Dit is een verplicht pakket, het kan niet gedeselecteerd worden"
-#: ../../install_steps_gtk.pm_.c:399
+#: ../../install_steps_gtk.pm_.c:393
msgid "You can't unselect this package. It is already installed"
msgstr "U kan dit pakket niet deselecteren. Het is al geinstalleerd."
-#: ../../install_steps_gtk.pm_.c:402
+#: ../../install_steps_gtk.pm_.c:396
msgid ""
"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
@@ -5050,74 +5175,74 @@ msgstr ""
"Dit pakket moet opgewaardeerd worden.\n"
"Weet u zeker dat u het wenst te deselecteren?"
-#: ../../install_steps_gtk.pm_.c:405
+#: ../../install_steps_gtk.pm_.c:399
msgid "You can't unselect this package. It must be upgraded"
msgstr "U kunt dit pakket niet deselecteren. Het moet opgewaardeerd worden."
-#: ../../install_steps_gtk.pm_.c:410
+#: ../../install_steps_gtk.pm_.c:404
msgid "Show automatically selected packages"
msgstr "Toon automatisch geselecteerde pakketten"
-#: ../../install_steps_gtk.pm_.c:411 ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_gtk.pm_.c:405 ../../install_steps_interactive.pm_.c:255
#: ../../install_steps_interactive.pm_.c:259
-#: ../../standalone/drakbackup_.c:3600
+#: ../../standalone/drakbackup_.c:4257
msgid "Install"
msgstr "Installeren"
-#: ../../install_steps_gtk.pm_.c:414
+#: ../../install_steps_gtk.pm_.c:408
msgid "Load/Save on floppy"
msgstr "Laden/Opslaan op diskette"
-#: ../../install_steps_gtk.pm_.c:415
+#: ../../install_steps_gtk.pm_.c:409
msgid "Updating package selection"
msgstr "Bezig met vernieuwen van pakket-selectie"
-#: ../../install_steps_gtk.pm_.c:420
+#: ../../install_steps_gtk.pm_.c:414
msgid "Minimal install"
msgstr "Minimale installatie"
-#: ../../install_steps_gtk.pm_.c:435 ../../install_steps_interactive.pm_.c:538
+#: ../../install_steps_gtk.pm_.c:429 ../../install_steps_interactive.pm_.c:522
msgid "Choose the packages you want to install"
msgstr "Kies de pakketten die u wenst te installeren"
-#: ../../install_steps_gtk.pm_.c:451 ../../install_steps_interactive.pm_.c:778
+#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:762
msgid "Installing"
msgstr "Bezig met installeren"
-#: ../../install_steps_gtk.pm_.c:457
+#: ../../install_steps_gtk.pm_.c:451
msgid "Estimating"
msgstr "Bezig met schatten"
-#: ../../install_steps_gtk.pm_.c:464
+#: ../../install_steps_gtk.pm_.c:458
msgid "Time remaining "
msgstr "Tijd over "
-#: ../../install_steps_gtk.pm_.c:476
+#: ../../install_steps_gtk.pm_.c:470
msgid "Please wait, preparing installation..."
msgstr "Bezig met voorbereiden van installatie, even geduld alstublieft"
-#: ../../install_steps_gtk.pm_.c:560
+#: ../../install_steps_gtk.pm_.c:554
#, c-format
msgid "%d packages"
msgstr "%d pakketten"
-#: ../../install_steps_gtk.pm_.c:565
+#: ../../install_steps_gtk.pm_.c:559
#, c-format
msgid "Installing package %s"
msgstr "Bezig met installeren van pakket %s"
-#: ../../install_steps_gtk.pm_.c:602 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:802
+#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:786
#: ../../standalone/drakautoinst_.c:202
msgid "Accept"
msgstr "Accepteren"
-#: ../../install_steps_gtk.pm_.c:602 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:802
+#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:786
msgid "Refuse"
msgstr "Weigeren"
-#: ../../install_steps_gtk.pm_.c:603 ../../install_steps_interactive.pm_.c:803
+#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:787
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -5134,17 +5259,17 @@ msgstr ""
"Als u deze CD niet heeft, klik dan Annuleren om verdere installatie vanaf "
"deze CD te vermijden."
-#: ../../install_steps_gtk.pm_.c:617 ../../install_steps_gtk.pm_.c:621
-#: ../../install_steps_interactive.pm_.c:815
-#: ../../install_steps_interactive.pm_.c:819
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_gtk.pm_.c:615
+#: ../../install_steps_interactive.pm_.c:799
+#: ../../install_steps_interactive.pm_.c:803
msgid "Go on anyway?"
msgstr "Toch verdergaan?"
-#: ../../install_steps_gtk.pm_.c:617 ../../install_steps_interactive.pm_.c:815
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:799
msgid "There was an error ordering packages:"
msgstr "Er was een fout bij het sorteren van de pakketten:"
-#: ../../install_steps_gtk.pm_.c:621 ../../install_steps_interactive.pm_.c:819
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:803
msgid "There was an error installing packages:"
msgstr "Er was een fout bij het installeren van de pakketten:"
@@ -5348,111 +5473,141 @@ msgstr ""
"Introductie\n"
"\n"
"Het besturingssysteem en de verschillende componenten beschikbaar in de "
-"Mandrake Linux distributie zullen vanaf nu \" Software Producten\" heten.\n"
-"De Software Producten zijn, niet gebonden aan de programmas, methoden, "
-"regels en documentatie, niet gebonden aan het besturingssysteem en de "
-"verschillende onderdelen van de Mandrake Linux distributie.\n"
-"\n"
-"\n"
-"1. Licentie Overeenkomst\n"
-"\n"
-"Lees dit document zorgvuldig. Dit document is een licentie overeenkomst "
-"tussen U en MandrakeSoft S.A. welke van toepassing is op de software "
-"producten.\n"
-"Bij het installeren, dupliceren of gebruiken van de software in welke vorm "
-"dan ook accepteerd U zich volledig te houden aan de bewoording en "
-"voorwaarden van deze licentie.\n"
-"Als U met welke voorwaarde dan ook het niet eens bent, dan mag U deze "
-"Software Producten niet installeren, dupliceren of gebruiken in welke vorm "
-"dan ook.\n"
-"Elke poging om de Software Producten te installeren, dupliceren of gerbuiken "
-"in welke vorm dan ook zonder aan de bewoording en voorwaarden van deze "
-"licentie te voldoen is ongeldig en verliest U het verdere recht onder deze "
-"licentie. Bij verlies van het recht dient U alle kopien te vernietigen van "
-"deze Software Producten.\n"
-"\n"
-"\n"
-"2. Beperkte Garantie\n"
-"\n"
-"De Software Producten en meegeleverde documentatie zijn geleverd zoals ze "
-"zijn zonder garantie, voorzover dat dat wettelijk is toegestaan.\n"
-"MandrakeSoft S.A. zal in geen enkelle omstandigheid, en voorzover dat "
-"wettelijk is toegestaan, verantwoordelijk zijn voor elke vorm van speciale, "
-"incidentele, directe of indirecte schade (inclusief zonder beperking schade "
-"door verlies van zaken, interuptie van zaken, financieel verlies, wettelijke "
-"kosten en boetes resulterend van een rechtszaak/uitspraak, of elke andere "
-"vorm van kosten) veroorzaakt door het gebruik of het niet kunnen gebruiken "
-"van de Software Producten, zelfs als MandrakeSoft S.A. geadviseerd werd over "
-"de mogelijkheid danwel voorkomen van dergelijke schades.\n"
-"\n"
-"BEPERKTE AANSPRAKELIJKHEID VERBONDEN AAN HET BEZIT OF GEBRUIK VAN VERBODEN "
-"SOFTWARE IN SOMMIGE LANDEN\n"
-"\n"
-"Voorzover toegestaan door de wet, MandrakeSoft S.A. of zijn distribuanten "
-"kunnen in geen geval aansprakelijk worden gesteld voor elke vorm van schade "
-"hoe dan ook welke kunnen voortkomen door het bezit of gebruik van Software "
-"componenten of het ophalen van Software componenten van een van Mandrake "
-"Linux websites, welke verboden of beperkt zijn in sommige landen door lokale "
-"wetgeving.\n"
-"Deze beperkte aansprakelijkheid is ook geldig maar niet beperkt aan het "
-"gebruik van de sterke versleutelings componenten bijgesloten in de Software "
-"Producten.\n"
-"\n"
-"\n"
-"3. De GPL Licentie en gerelateerde licenties\n"
-"\n"
-"De Software Producten bestaan uit componenten gemaakt door verschillende "
-"personen of entiteiten. De meeste componenten zijn gekoppeld aan de "
-"bewoording danwel voorwaarden van de GNU General Public License, hierna GPL "
-"genoemd, of van vergelijkbare licenties. De meeste van deze licenties staan "
-"u toe de desbetreffende software te gebruiken, dupliceren, aanpassen of "
-"herdistribueren van de componenten welke deze licenties omvatten. Draagt U "
-"zorg voor het aandachtig lezen van deze licenties alvorens de software te "
-"gebruiken. Elke vraag die voortkomt uit het lezen van een component zijn "
-"licentie kunt U adresseren aan de desbetreffende auteur en niet aan "
-"MandrakeSoft S.A.\n"
-"De programmatuur ontwikkeld door MandrakeSoft S.A. maken gebruik van de GPL "
-"licentie. Documentatie geschreven door MandrakeSoft S.A. zijn per stuk van "
-"hun eigen licentie voorzien. Controlleer de documentatie voor verdere "
-"details.\n"
-"\n"
-"\n"
-"4. Intellectuele eigendoms rechten\n"
-"\n"
-"Alle rechten op de verschillende componenten van de Software Producten zijn "
-"eigendom van hun eigen auteur en zijn beschermd door intellectuele "
-"eigendoms- en kopierecht-rechten toegewezen aan computer programmatuur.\n"
-"MandrakeSoft S.A. behoudt het recht om de Software Producten te veranderen "
-"in zijn geheel of in onderdelen, op welke manier dan ook en voor elk doel.\n"
-"\"Mandrake\", \"Mandrake Linux\" en geassocieerde logos zijn handelsmerken "
+"Mandrake Linux\n"
+"distributie zullen vanaf nu \" Software Produkten\" heten. De Software "
+"Produkten omvatten,\n"
+"maar zijn niet beperkt tot de programma's, methoden, regels en documentatie "
+"gerelateerd aan\n"
+"het besturingssysteem en de verschillende onderdelen van de Mandrake Linux "
+"distributie.\n"
+"\n"
+"\n"
+"1. Licentieovereenkomst\n"
+"\n"
+"Lees dit document zorgvuldig. Dit document is een licentieovereenkomst "
+"tussen U en\n"
+"MandrakeSoft S.A. welke van toepassing is op de Software Produkten.\n"
+"Door het installeren, dupliceren of gebruiken van de Software Produkten in "
+"welke vorm dan ook,\n"
+"gaat u expliciet akkoord en bent het volledig eens met de bewoording en "
+"voorwaarden van deze\n"
+"licentie. Indien U het met welk onderdeel van de Licentie dan ook niet eens "
+"bent, dan is het U\n"
+"niet toegestaan deze Software Produkten niet installeren, dupliceren of "
+"gebruiken.\n"
+"Elke poging om de Software Produkten te installeren, dupliceren of gebruiken "
+"op een wijze die\n"
+"niet in overeenstemming is met de bewoording en voorwaarden van deze "
+"licentie is nietig\n"
+"en beëindigt uw rechten onder deze Licentie. Bij beëindiging van de Licentie "
+"dient u onmiddelijk\n"
+"alle kopieën van de Software Produkten te vernietigen.\n"
+"\n"
+"\n"
+"2. Beperkte garantie\n"
+"\n"
+"De Software Produkten en meegeleverde documentatie zijn geleverd zoals ze "
+"zijn zonder garantie,\n"
+"voorzover dat dat wettelijk is toegestaan.\n"
+"MandrakeSoft S.A. zal in geen enkele omstandigheid, en voorzover dat "
+"wettelijk is toegestaan,\n"
+"aansprakelijk zijn voor elke vorm van speciale, incidentele, directe of "
+"indirecte schade (inclusief\n"
+"zonder beperking schade door verlies van zaken, interruptie van zaken, "
+"financieel verlies, juridische\n"
+"kosten en boetes resulterend uit een rechterlijke uitspraak, of andere "
+"daaruit volgende verliezen)\n"
+"veroorzaakt door het gebruik of het niet kunnen gebruiken van de Software "
+"Produkten, zelfs als\n"
+"MandrakeSoft S.A. op de hoogte was van de mogelijkheid danwel voorkomen van "
+"dergelijke schades.\n"
+"\n"
+"BEPERKTE AANSPRAKELIJKHEID GEKOPPELD AAN HET BEZIT OF GEBRUIK VAN\n"
+"VERBODEN SOFTWARE IN SOMMIGE LANDEN\n"
+"\n"
+"MandrakeSoft S.A. of zijn distributeurs zullen, voorzover wettelijk "
+"toegestaan, in geen geval aansprakelijk\n"
+"zijn voor welke vorm van speciale, incidentele, directe of indirecte schade "
+"dan ook (inclusief\n"
+"zonder beperking schade door verlies van zaken, interruptie van zaken, "
+"financieel verlies, juridische\n"
+"kosten en boetes resulterend uit een rechterlijke uitspraak, of andere "
+"daaruit volgende verliezen)\n"
+"voortkomend uit het bezit of gebruik van softwarecomponenten of voortkomend "
+"uit het downloaden van\n"
+"softwarecomponenten van Ă©Ă©n van Mandrake Linux sites, welke verboden of "
+"beperkt zijn in sommige\n"
+"landen door lokale wetgeving.\n"
+"Deze beperkte aansprakelijkheid geldt voor, maar is niet beperkt tot de "
+"sterke versleutelingscomponenten\n"
+"meegeleverd met de Software Produkten.\n"
+"\n"
+"\n"
+"3. De GPL-licentie en gerelateerde licenties\n"
+"\n"
+"De Software Produkten bestaan uit componenten die ontwikkeld zijn door "
+"verschillende personen\n"
+"of entiteiten. De meeste componenten vallen onder de bewoording en "
+"voorwaarden van de GNU \n"
+"General Public License, hierna te noemen \"GPL\", of onder vergelijkbare "
+"licenties. De meeste van\n"
+"deze licenties staan u toe de desbetreffende componenten te gebruiken, "
+"dupliceren, aanpassen of\n"
+"verder te distribueren. Leest u aandachtig de bewoording en voorwaarden van "
+"deze licentieovereenkomsten\n"
+"alvorens enige component te gebruiken. Elke vraag over een componentlicentie "
+"kunt U richten aan de\n"
+"desbetreffende auteur en niet aan MandrakeSoft S.A.\n"
+"De programmatuur ontwikkeld door MandrakeSoft S.A. valt onder de GPL-"
+"licentie. Documentatie\n"
+"geschreven door MandrakeSoft S.A. valt onder een eigen licentie. Zie de "
+"documentatie voor verdere details.\n"
+"\n"
+"\n"
+"4. Intellectuele eigendomsrechten\n"
+"\n"
+"Alle rechten op de componenten van de Software Produkten behoren toe aan hun "
+"respectievelijke\n"
+"auteurs en zijn beschermd door intellectuele eigendoms- en copyright-wetten "
+"welke gelden voor\n"
+"computerprogrammatuur.\n"
+"MandrakeSoft S.A. behoudt zich het recht voor om de Software Produkten te "
+"veranderen in hun geheel\n"
+"of in onderdelen, op welke manier dan ook en voor welk doel dan ook.\n"
+"\"Mandrake\", \"Mandrake Linux\" en geassocieerde logo's zijn handelsmerken "
"van MandrakeSoft S.A.\n"
"\n"
"\n"
-"5. Landelijke rechten.\n"
+"5. Geldende wetten\n"
"\n"
-"Als welke portie dan ook van deze licentie niet geldig, illegaal of niet "
-"toepasselijk door een rechtszaak wordt bevonden, dan wordt de betreffende "
-"portie uitgesloten van dit contract. U blijft verder wel gebonden aan de "
-"overige toepasselijke secties van de overeenkomst.\n"
-"De bewoording en voorwaarden van deze licentie worden geregeerd door de wet "
+"Als welk deel dan ook van deze overeenkomst niet geldig, illegaal of niet "
+"toepasselijk wordt\n"
+"bevonden door een rechterlijke uitspraak, dan wordt het betreffende deel "
+"uitgesloten van dit\n"
+"contract. U blijft verder wel gebonden aan de overige toepasselijke secties "
+"van de overeenkomst.\n"
+"De bewoording en voorwaarden van deze licentie worden vallen onder de wetten "
"van Frankrijk.\n"
-"Alle argumenten ten aanzien van deze licenties worden het liefst buiten een "
-"rechtszaak om besproken. Als een laatste oplossing, kan de argumentering "
-"worden voortgezet in de rechtszaal van Parijs - Frankrijk.\n"
-"Voor elke vraag over dit document, graag kontakt met MandrakeSoft S.A. "
-"opnemen.\n"
-"\n"
-"Dit document is vanuit het Engels vertaald door een onbeedigde vertaler. "
-"Voor het rechtsgeldig laten maken van dit document zult U dus een engelse "
-"versie van dit document op moeten halen en deze laten vertalen door een "
-"beedigd vertaler.\n"
+"Alle meningsverschillen ten aanzien van deze licentie worden het liefst "
+"buiten een rechtszaak om\n"
+"geschikt. Als een laatste oplossing kan de zaak doorverwezen worden naar de "
+"geschikte\n"
+"gerechtshoven van Parijs - Frankrijk.\n"
+"Bij vragen over dit document, gelieve contact op te nemen met MandrakeSoft S."
+"A.\n"
+"\n"
+"Dit document is vanuit het Engels vertaald door een onbeëdigde vertaler. "
+"Voor het rechtsgeldig\n"
+"laten maken van dit document zult U dus een originele versie van dit "
+"document op moeten halen\n"
+"en deze laten vertalen door een beëdigd vertaler.\n"
#: ../../install_steps_interactive.pm_.c:191
msgid "Are you sure you refuse the licence?"
msgstr "Weet u zeker dat u de licentie niet accepteert?"
#: ../../install_steps_interactive.pm_.c:211
-#: ../../install_steps_interactive.pm_.c:1038
+#: ../../install_steps_interactive.pm_.c:1023
#: ../../standalone/keyboarddrake_.c:31
msgid "Keyboard"
msgstr "Toetsenbord"
@@ -5500,11 +5655,11 @@ msgstr "Alleen pakketten opwaarderen"
msgid "Please choose the type of your mouse."
msgstr "Gelieve het type van uw muis te kiezen."
-#: ../../install_steps_interactive.pm_.c:281 ../../standalone/mousedrake_.c:59
+#: ../../install_steps_interactive.pm_.c:281 ../../standalone/mousedrake_.c:60
msgid "Mouse Port"
msgstr "Muispoort"
-#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:61
msgid "Please choose on which serial port your mouse is connected to."
msgstr "Met welke seriële poort is uw muis verbonden?"
@@ -5536,47 +5691,20 @@ msgstr "IDE-Configuratie"
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:336
+#: ../../install_steps_interactive.pm_.c:338
msgid "No partition available"
msgstr "Geen beschikbare partities"
-#: ../../install_steps_interactive.pm_.c:339
+#: ../../install_steps_interactive.pm_.c:341
msgid "Scanning partitions to find mount points"
msgstr "Bezig met scannen van partities om mount punten te vinden"
-#: ../../install_steps_interactive.pm_.c:347
+#: ../../install_steps_interactive.pm_.c:349
msgid "Choose the mount points"
msgstr "Selecteer de koppelpunten"
-#: ../../install_steps_interactive.pm_.c:366
-#, c-format
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to not allow DrakX to modify the partition table.\n"
-"(the error is %s)\n"
-"\n"
-"Do you agree to loose all the partitions?\n"
-msgstr ""
-"Ik kan uw partitietabel niet lezen, ze is te corrupt voor mij :-(\n"
-"Ik kan proberen door te gaan en de slechte partities verwijderen\n"
-"(ALLE DATA zal worden gewist!).\n"
-"De andere oplossing is om DrakX de de partitie tabel niet te laten "
-"aanpassen.\n"
-"(de fout is %s)\n"
-"\n"
-"Gaat u ermee akkoord alle partities te verliezen?\n"
-
#: ../../install_steps_interactive.pm_.c:379
msgid ""
-"DiskDrake failed to read correctly the partition table.\n"
-"Continue at your own risk!"
-msgstr ""
-"DiskDrake kon de partitietabel niet correct inlezen.\n"
-"Als u verdergaat, is dit op eigen risico!"
-
-#: ../../install_steps_interactive.pm_.c:396
-msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
msgstr ""
@@ -5584,70 +5712,72 @@ msgstr ""
"doorgaan, maar om uw systeem op te starten zult u de bootstrap partitie in "
"DiskDrake moeten creëren."
-#: ../../install_steps_interactive.pm_.c:405
+#: ../../install_steps_interactive.pm_.c:388
msgid "No root partition found to perform an upgrade"
msgstr "Geen \"root\"-partitie gevonden om op te waarderen"
-#: ../../install_steps_interactive.pm_.c:406
+#: ../../install_steps_interactive.pm_.c:389
msgid "Root Partition"
msgstr "Root-partitie"
-#: ../../install_steps_interactive.pm_.c:407
+#: ../../install_steps_interactive.pm_.c:390
msgid "What is the root partition (/) of your system?"
msgstr "Wat is de root-partitie (/) van uw systeem?"
-#: ../../install_steps_interactive.pm_.c:421
+#: ../../install_steps_interactive.pm_.c:404
msgid "You need to reboot for the partition table modifications to take place"
msgstr ""
"U dient te herstarten om de wijzigingen in de partitietabel te activeren."
-#: ../../install_steps_interactive.pm_.c:445
+#: ../../install_steps_interactive.pm_.c:428
msgid "Choose the partitions you want to format"
msgstr "Kies de partities die u wenst te formatteren"
-#: ../../install_steps_interactive.pm_.c:446
+#: ../../install_steps_interactive.pm_.c:429
msgid "Check bad blocks?"
msgstr "Slechte blocks checken?"
-#: ../../install_steps_interactive.pm_.c:473
+#: ../../install_steps_interactive.pm_.c:456
msgid "Formatting partitions"
msgstr "Bezig met formatteren van partities"
-#: ../../install_steps_interactive.pm_.c:475
+#: ../../install_steps_interactive.pm_.c:458
#, c-format
msgid "Creating and formatting file %s"
msgstr "Bezig met aanmaken en formatteren van bestand %s"
-#: ../../install_steps_interactive.pm_.c:480
+#: ../../install_steps_interactive.pm_.c:463
#, c-format
msgid ""
"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
"you can loose data)"
msgstr ""
+"Het controleren van bestandssysteem %s is mislukt. Wilt u de fouten "
+"repareren? (Let op, gegevensverlies is mogelijk)"
-#: ../../install_steps_interactive.pm_.c:482
+#: ../../install_steps_interactive.pm_.c:465
msgid "Not enough swap space to fulfill installation, please add some"
msgstr "Niet genoeg swap voor de installatie, voeg er wat toe"
-#: ../../install_steps_interactive.pm_.c:489
+#: ../../install_steps_interactive.pm_.c:472
msgid "Looking for available packages and rebuilding rpm database..."
msgstr ""
"Bezig met zoeken naar beschikbare pakketten en opnieuw aanmaken van de rpm "
"database..."
-#: ../../install_steps_interactive.pm_.c:490
+#: ../../install_steps_interactive.pm_.c:473
msgid "Looking for available packages..."
msgstr "Bezig met zoeken naar beschikbare pakketten"
-#: ../../install_steps_interactive.pm_.c:493
+#: ../../install_steps_interactive.pm_.c:476
msgid "Looking at packages already installed..."
msgstr "Bezig met zoeken naar reeds geĂŻnstalleerde pakketten..."
-#: ../../install_steps_interactive.pm_.c:497
+#: ../../install_steps_interactive.pm_.c:480
msgid "Finding packages to upgrade..."
msgstr "Bezig met zoeken naar pakketten om op te waarderen"
-#: ../../install_steps_interactive.pm_.c:515
+#: ../../install_steps_interactive.pm_.c:498
#, c-format
msgid ""
"Your system does not have enough space left for installation or upgrade (%d "
@@ -5656,7 +5786,7 @@ msgstr ""
"Uw systeem heeft niet genoeg ruimte over voor installatie of opwaardering (%"
"d > %d)"
-#: ../../install_steps_interactive.pm_.c:550
+#: ../../install_steps_interactive.pm_.c:534
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
@@ -5664,35 +5794,35 @@ msgstr ""
"Gelieve te kiezen of u de pakketselectie wilt laden of opslaan op diskette.\n"
"Het formaat is dezelfde als de met auto_install gegenereerde diskettes."
-#: ../../install_steps_interactive.pm_.c:553
+#: ../../install_steps_interactive.pm_.c:537
msgid "Load from floppy"
msgstr "Laden van diskette"
-#: ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_interactive.pm_.c:539
msgid "Loading from floppy"
msgstr "Bezig met het laden van diskette"
-#: ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_interactive.pm_.c:539
msgid "Package selection"
msgstr "Pakket-selectie"
-#: ../../install_steps_interactive.pm_.c:560
+#: ../../install_steps_interactive.pm_.c:544
msgid "Insert a floppy containing package selection"
msgstr "Plaats een diskette met de pakket-selectie in diskettestation"
-#: ../../install_steps_interactive.pm_.c:572
+#: ../../install_steps_interactive.pm_.c:556
msgid "Save on floppy"
msgstr "Schrijven naar floppy"
-#: ../../install_steps_interactive.pm_.c:646
+#: ../../install_steps_interactive.pm_.c:630
msgid "Selected size is larger than available space"
msgstr "De geselecteerde grootte is meer dan de beschikbare ruimte"
-#: ../../install_steps_interactive.pm_.c:660
+#: ../../install_steps_interactive.pm_.c:644
msgid "Type of install"
msgstr "Type installatie"
-#: ../../install_steps_interactive.pm_.c:661
+#: ../../install_steps_interactive.pm_.c:645
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
@@ -5700,19 +5830,19 @@ msgstr ""
"U heeft geen enkele pakketgroep geselecteerd\n"
"Gelieve de minimale installatie die u wenst te kiezen."
-#: ../../install_steps_interactive.pm_.c:664
+#: ../../install_steps_interactive.pm_.c:648
msgid "With X"
msgstr "Met X"
-#: ../../install_steps_interactive.pm_.c:666
+#: ../../install_steps_interactive.pm_.c:650
msgid "With basic documentation (recommended!)"
msgstr "Met basis-documentatie (aanbevolen!)"
-#: ../../install_steps_interactive.pm_.c:667
+#: ../../install_steps_interactive.pm_.c:651
msgid "Truly minimal install (especially no urpmi)"
msgstr "Werkelijk minimale installatie (in het bijzonder geen urpmi)"
-#: ../../install_steps_interactive.pm_.c:752
+#: ../../install_steps_interactive.pm_.c:736
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -5722,16 +5852,16 @@ msgstr ""
"Als u geen enkele van die CDs heeft, klik dan Annuleren.\n"
"Als maar enkele CDs zoek zijn, deselecteer ze dan, en klik Ok."
-#: ../../install_steps_interactive.pm_.c:757
+#: ../../install_steps_interactive.pm_.c:741
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "CD-Rom genaamd \"%s\""
-#: ../../install_steps_interactive.pm_.c:778
+#: ../../install_steps_interactive.pm_.c:762
msgid "Preparing installation"
msgstr "Bezig met voorbereiden van installatie"
-#: ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:771
#, c-format
msgid ""
"Installing package %s\n"
@@ -5740,21 +5870,21 @@ msgstr ""
"Bezig met installeren van pakket %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:833
+#: ../../install_steps_interactive.pm_.c:817
msgid "Post-install configuration"
msgstr "Installatie na configuratie"
-#: ../../install_steps_interactive.pm_.c:839
+#: ../../install_steps_interactive.pm_.c:823
#, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Plaats de gebruikte Opstartdiskette in station %s alstublieft"
-#: ../../install_steps_interactive.pm_.c:845
+#: ../../install_steps_interactive.pm_.c:829
#, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Plaats de \"Modules Vernieuwen\"-diskette in station %s"
-#: ../../install_steps_interactive.pm_.c:865
+#: ../../install_steps_interactive.pm_.c:849
msgid ""
"You now have the opportunity to download encryption software.\n"
"\n"
@@ -5827,7 +5957,7 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:904
+#: ../../install_steps_interactive.pm_.c:888
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
"have been released after the distribution was released. They may\n"
@@ -5847,157 +5977,159 @@ msgstr ""
"\n"
"Wenst u de vernieuwde pakketten te installeren?"
-#: ../../install_steps_interactive.pm_.c:919
+#: ../../install_steps_interactive.pm_.c:903
msgid ""
"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr ""
-"Bezig te verbinden met Mandrake Linux om de lijst met beschikbare spiegels "
-"te verkrijgen"
+"Bezig te verbinden met de Mandrake Linux-website om de lijst met beschikbare "
+"mirrors op te halen..."
-#: ../../install_steps_interactive.pm_.c:924
+#: ../../install_steps_interactive.pm_.c:908
msgid "Choose a mirror from which to get the packages"
msgstr "Kies een `mirror' om de pakketten van af te halen"
-#: ../../install_steps_interactive.pm_.c:933
+#: ../../install_steps_interactive.pm_.c:917
msgid "Contacting the mirror to get the list of available packages..."
-msgstr "Bezig met de spiegel de lijst met beschikbare pakketten te verkrijgen"
+msgstr ""
+"Bezig met verbinden met de mirror om de lijst met beschikbare pakketten op "
+"te halen..."
-#: ../../install_steps_interactive.pm_.c:960
+#: ../../install_steps_interactive.pm_.c:945
msgid "Which is your timezone?"
msgstr "Wat is uw tijdzone?"
-#: ../../install_steps_interactive.pm_.c:965
+#: ../../install_steps_interactive.pm_.c:950
msgid "Hardware clock set to GMT"
msgstr "Hardware-klok ingesteld op GMT"
-#: ../../install_steps_interactive.pm_.c:966
+#: ../../install_steps_interactive.pm_.c:951
msgid "Automatic time synchronization (using NTP)"
msgstr "Automatische tijdssynchronisatie (met gebruik van NTP)"
-#: ../../install_steps_interactive.pm_.c:973
+#: ../../install_steps_interactive.pm_.c:958
msgid "NTP Server"
msgstr "NTP-server"
-#: ../../install_steps_interactive.pm_.c:1007
-#: ../../install_steps_interactive.pm_.c:1015
+#: ../../install_steps_interactive.pm_.c:992
+#: ../../install_steps_interactive.pm_.c:1000
msgid "Remote CUPS server"
msgstr "Netwerk CUPS server"
-#: ../../install_steps_interactive.pm_.c:1008
+#: ../../install_steps_interactive.pm_.c:993
msgid "No printer"
msgstr "Geen printer"
-#: ../../install_steps_interactive.pm_.c:1025
+#: ../../install_steps_interactive.pm_.c:1010
msgid "Do you have an ISA sound card?"
msgstr "Heeft u een ISA geluidskaart?"
-#: ../../install_steps_interactive.pm_.c:1027
+#: ../../install_steps_interactive.pm_.c:1012
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
"Draai \"sndconfig\" na de installatie om uw geluidskaart te configureren"
-#: ../../install_steps_interactive.pm_.c:1029
+#: ../../install_steps_interactive.pm_.c:1014
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr "Geen geluidskaart bespeurd. Probeer \"harddrake\" na de installatie"
-#: ../../install_steps_interactive.pm_.c:1034 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1019 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Overzicht"
-#: ../../install_steps_interactive.pm_.c:1037
+#: ../../install_steps_interactive.pm_.c:1022
msgid "Mouse"
msgstr "Muis"
-#: ../../install_steps_interactive.pm_.c:1039
+#: ../../install_steps_interactive.pm_.c:1024
msgid "Timezone"
msgstr "Tijdzone"
-#: ../../install_steps_interactive.pm_.c:1040 ../../printerdrake.pm_.c:2728
-#: ../../printerdrake.pm_.c:2814
+#: ../../install_steps_interactive.pm_.c:1025 ../../printerdrake.pm_.c:2937
+#: ../../printerdrake.pm_.c:3026
msgid "Printer"
msgstr "Printer"
-#: ../../install_steps_interactive.pm_.c:1042
+#: ../../install_steps_interactive.pm_.c:1027
msgid "ISDN card"
msgstr "Interne ISDN kaart"
-#: ../../install_steps_interactive.pm_.c:1045
-#: ../../install_steps_interactive.pm_.c:1047
+#: ../../install_steps_interactive.pm_.c:1030
+#: ../../install_steps_interactive.pm_.c:1032
msgid "Sound card"
msgstr "Geluidskaart"
-#: ../../install_steps_interactive.pm_.c:1049
+#: ../../install_steps_interactive.pm_.c:1034
msgid "TV card"
msgstr "TV-kaart"
-#: ../../install_steps_interactive.pm_.c:1089
-#: ../../install_steps_interactive.pm_.c:1114
-#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1074
+#: ../../install_steps_interactive.pm_.c:1099
+#: ../../install_steps_interactive.pm_.c:1103
msgid "LDAP"
msgstr "LDAP"
-#: ../../install_steps_interactive.pm_.c:1090
-#: ../../install_steps_interactive.pm_.c:1114
-#: ../../install_steps_interactive.pm_.c:1127
+#: ../../install_steps_interactive.pm_.c:1075
+#: ../../install_steps_interactive.pm_.c:1099
+#: ../../install_steps_interactive.pm_.c:1112
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1091
-#: ../../install_steps_interactive.pm_.c:1114
-#: ../../install_steps_interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1141
+#: ../../install_steps_interactive.pm_.c:1076
+#: ../../install_steps_interactive.pm_.c:1099
+#: ../../install_steps_interactive.pm_.c:1120
+#: ../../install_steps_interactive.pm_.c:1126
msgid "Windows Domain"
msgstr "Windows Domein"
-#: ../../install_steps_interactive.pm_.c:1092
-#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1077
+#: ../../install_steps_interactive.pm_.c:1099
msgid "Local files"
msgstr "Bestanden op deze computer"
-#: ../../install_steps_interactive.pm_.c:1101
-#: ../../install_steps_interactive.pm_.c:1102 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1086
+#: ../../install_steps_interactive.pm_.c:1087 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Root-wachtwoord instellen"
-#: ../../install_steps_interactive.pm_.c:1103
+#: ../../install_steps_interactive.pm_.c:1088
msgid "No password"
msgstr "Geen wachtwoord"
-#: ../../install_steps_interactive.pm_.c:1108
+#: ../../install_steps_interactive.pm_.c:1093
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr "Dit wachtwoord is te makkelijk (moet tenminste %d tekens lang zijn)"
-#: ../../install_steps_interactive.pm_.c:1114 ../../network/modem.pm_.c:49
+#: ../../install_steps_interactive.pm_.c:1099 ../../network/modem.pm_.c:49
#: ../../standalone/drakconnect_.c:625 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Authenticatie"
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1107
msgid "Authentication LDAP"
msgstr "Authenticatie LDAP"
-#: ../../install_steps_interactive.pm_.c:1123
+#: ../../install_steps_interactive.pm_.c:1108
msgid "LDAP Base dn"
msgstr "LDAP Base dn"
-#: ../../install_steps_interactive.pm_.c:1124
+#: ../../install_steps_interactive.pm_.c:1109
msgid "LDAP Server"
msgstr "LDAP-server"
-#: ../../install_steps_interactive.pm_.c:1130
+#: ../../install_steps_interactive.pm_.c:1115
msgid "Authentication NIS"
msgstr "Authenticatie NIS"
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1116
msgid "NIS Domain"
msgstr "NIS-domein"
-#: ../../install_steps_interactive.pm_.c:1132
+#: ../../install_steps_interactive.pm_.c:1117
msgid "NIS Server"
msgstr "NIS-server"
-#: ../../install_steps_interactive.pm_.c:1138
+#: ../../install_steps_interactive.pm_.c:1123
msgid ""
"For this to work for a W2K PDC, you will probably need to have the admin "
"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
@@ -6012,22 +6144,32 @@ msgid ""
"The command 'wbinfo -t' will test whether your authentication secrets are "
"good."
msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1140
-#, fuzzy
+"Om dit te laten werken met een W2K PDC, zal de beheerder de volgende "
+"opdracht moeten draaien en de server opnieuw opstarten: 'C:\\>net localgroup "
+"\"Pre-Windows 2000 Compatible Access\" everyone /add'\n"
+"U zult tevens de gebruikersnaam/wachtwoord van de domeinbeheerder nodig "
+"hebben om de computer deel te laten nemen aan het Windows(TM)-domein.\n"
+"Indien het netwerk nog niet is ingeschakeld, zal DrakX trachten aan het "
+"domein deel te nemen na afloop van de stap netwerk-instellingen.\n"
+"Mocht deze instelling om wat voor reden dan ook mislukken en de "
+"domeinaanmelding werkt niet, herstart dan het systeem en draai 'smbpasswd -j "
+"DOMEIN -U GEBRUIKER%WACHTWOORD' waarbij u uw Windows(TM)-domein en "
+"beheerdersgebruikersnaam en -wachtwoord invult.\n"
+"De opdracht 'wbinfo -t' gaat na of uw aanmeldingsgeheimen kloppen."
+
+#: ../../install_steps_interactive.pm_.c:1125
msgid "Authentication Windows Domain"
-msgstr "Authenticatie Windows PDC"
+msgstr "Aanmelding Windows-domein"
-#: ../../install_steps_interactive.pm_.c:1142
-#, fuzzy
+#: ../../install_steps_interactive.pm_.c:1127
msgid "Domain Admin User Name"
-msgstr "Domeinnaam"
+msgstr "Gebruikersnaam van domeinbeheerder"
-#: ../../install_steps_interactive.pm_.c:1143
+#: ../../install_steps_interactive.pm_.c:1128
msgid "Domain Admin Password"
-msgstr ""
+msgstr "Wachtwoord domeinbeheerder"
-#: ../../install_steps_interactive.pm_.c:1178
+#: ../../install_steps_interactive.pm_.c:1163
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
"depending on the normal bootloader. This is useful if you don't want to "
@@ -6054,19 +6196,19 @@ msgstr ""
"fouten. Wil u nu een bootdiskette aanmaken voor uw systeem?\n"
"Stop dan een diskette in het station en druk op \"OK\"."
-#: ../../install_steps_interactive.pm_.c:1194
+#: ../../install_steps_interactive.pm_.c:1179
msgid "First floppy drive"
msgstr "Eerste diskettestation"
-#: ../../install_steps_interactive.pm_.c:1195
+#: ../../install_steps_interactive.pm_.c:1180
msgid "Second floppy drive"
msgstr "Tweede diskettestation"
-#: ../../install_steps_interactive.pm_.c:1196 ../../printerdrake.pm_.c:2277
+#: ../../install_steps_interactive.pm_.c:1181 ../../printerdrake.pm_.c:2470
msgid "Skip"
msgstr "Overslaan"
-#: ../../install_steps_interactive.pm_.c:1201
+#: ../../install_steps_interactive.pm_.c:1186
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -6091,7 +6233,7 @@ msgstr ""
"fouten. Wil u nu een opstartdiskette aanmaken voor uw systeem?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1207
+#: ../../install_steps_interactive.pm_.c:1192
msgid ""
"\n"
"\n"
@@ -6106,28 +6248,28 @@ msgstr ""
"zal hoogstwaarschijnlijk mislukken omdat XFS een zeer groot\n"
"stuurprogramma benodigt)."
-#: ../../install_steps_interactive.pm_.c:1215
+#: ../../install_steps_interactive.pm_.c:1200
msgid "Sorry, no floppy drive available"
msgstr "Sorry, geen diskettestation beschikbaar"
-#: ../../install_steps_interactive.pm_.c:1219
+#: ../../install_steps_interactive.pm_.c:1204
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "Kies het diskettestation waarmee u de opstart-diskette wenst te maken"
-#: ../../install_steps_interactive.pm_.c:1223
+#: ../../install_steps_interactive.pm_.c:1208
#, c-format
msgid "Insert a floppy in %s"
msgstr "Plaats een diskette in station %s"
-#: ../../install_steps_interactive.pm_.c:1226
+#: ../../install_steps_interactive.pm_.c:1211
msgid "Creating bootdisk..."
msgstr "Bezig met het aanmaken van de opstart-diskette"
-#: ../../install_steps_interactive.pm_.c:1233
+#: ../../install_steps_interactive.pm_.c:1218
msgid "Preparing bootloader..."
msgstr "Bezig met klaarmaken van opstartlader"
-#: ../../install_steps_interactive.pm_.c:1244
+#: ../../install_steps_interactive.pm_.c:1229
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -6140,11 +6282,11 @@ msgstr ""
"De installatie zal doorgaan, maar u zult BootX nodig \n"
"hebben om uw machine op te starten"
-#: ../../install_steps_interactive.pm_.c:1250
+#: ../../install_steps_interactive.pm_.c:1235
msgid "Do you want to use aboot?"
msgstr "Wenst u aboot te gebruiken?"
-#: ../../install_steps_interactive.pm_.c:1253
+#: ../../install_steps_interactive.pm_.c:1238
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -6152,17 +6294,17 @@ msgstr ""
"Fout bij het installeren van aboot,\n"
"toch proberen te installeren, zelfs als dat de eerste partitie vernietigt?"
-#: ../../install_steps_interactive.pm_.c:1260
+#: ../../install_steps_interactive.pm_.c:1245
msgid "Installing bootloader"
msgstr "Bezig met opstart-lader installeren"
-#: ../../install_steps_interactive.pm_.c:1266
+#: ../../install_steps_interactive.pm_.c:1251
msgid "Installation of bootloader failed. The following error occured:"
msgstr ""
"De installatie van de opstartlader is mislukt. De volgende fout werd "
"gevonden:"
-#: ../../install_steps_interactive.pm_.c:1274
+#: ../../install_steps_interactive.pm_.c:1259
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -6181,17 +6323,17 @@ msgstr ""
"Bij de volgende keer opstarten zou u dan de opstartlader-prompt \n"
"moeten zien."
-#: ../../install_steps_interactive.pm_.c:1308
+#: ../../install_steps_interactive.pm_.c:1293
#: ../../standalone/drakautoinst_.c:79
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Plaats een lege floppy in station %s"
-#: ../../install_steps_interactive.pm_.c:1312
+#: ../../install_steps_interactive.pm_.c:1297
msgid "Creating auto install floppy..."
msgstr "Bezig met aanmaken van auto-installatiediskette"
-#: ../../install_steps_interactive.pm_.c:1323
+#: ../../install_steps_interactive.pm_.c:1308
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -6201,7 +6343,7 @@ msgstr ""
"\n"
"Weet u zeker dat u op dit moment wilt beëindigen?"
-#: ../../install_steps_interactive.pm_.c:1334
+#: ../../install_steps_interactive.pm_.c:1319
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
@@ -6232,16 +6374,15 @@ msgstr ""
"Informatie over het configureren van uw systeem is beschikbaar in het\n"
"\"post install\"-hoofdstuk van de Official Mandrake Linux User's Guide."
-#: ../../install_steps_interactive.pm_.c:1347
-#, fuzzy
+#: ../../install_steps_interactive.pm_.c:1332
msgid "http://www.mandrakelinux.com/en/90errata.php3"
-msgstr "http://www.mandrakesoft.com/sales/contact"
+msgstr "http://www.mandrakelinux.com/nl/90errata.php3"
-#: ../../install_steps_interactive.pm_.c:1352
+#: ../../install_steps_interactive.pm_.c:1337
msgid "Generate auto install floppy"
msgstr "Maak auto-installatiediskette aan"
-#: ../../install_steps_interactive.pm_.c:1354
+#: ../../install_steps_interactive.pm_.c:1339
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -6255,15 +6396,15 @@ msgstr ""
"\n"
"Wellicht geeft u de voorkeur aan het herhalen van de installatie.\n"
-#: ../../install_steps_interactive.pm_.c:1359
+#: ../../install_steps_interactive.pm_.c:1344
msgid "Automated"
msgstr "Geautomatiseerd"
-#: ../../install_steps_interactive.pm_.c:1359
+#: ../../install_steps_interactive.pm_.c:1344
msgid "Replay"
msgstr "Herhalen"
-#: ../../install_steps_interactive.pm_.c:1362
+#: ../../install_steps_interactive.pm_.c:1347
msgid "Save packages selection"
msgstr "Pakket-selectie opslaan"
@@ -6272,7 +6413,8 @@ msgstr "Pakket-selectie opslaan"
msgid "Mandrake Linux Installation %s"
msgstr "Mandrake Linux Installatie %s"
-#: ../../install_steps_newt.pm_.c:34
+#. -PO This string must fit in a 80-char wide text screen
+#: ../../install_steps_newt.pm_.c:35
msgid ""
" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
msgstr ""
@@ -6291,22 +6433,22 @@ msgstr "ontbrekende console-hulp"
msgid "Choose a file"
msgstr "Kies een bestand"
-#: ../../interactive.pm_.c:317
+#: ../../interactive.pm_.c:320
msgid "Advanced"
msgstr "Geavanceerd"
-#: ../../interactive.pm_.c:318
+#: ../../interactive.pm_.c:321
msgid "Basic"
msgstr "Basis"
-#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:155
-#: ../../printerdrake.pm_.c:1990
+#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:158
+#: ../../printerdrake.pm_.c:2124
msgid "<- Previous"
msgstr "<- Vorige"
#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
-#: ../../standalone/drakbackup_.c:3464 ../../standalone/drakbackup_.c:3491
-#: ../../standalone/drakbackup_.c:3517
+#: ../../standalone/drakbackup_.c:4112 ../../standalone/drakbackup_.c:4139
+#: ../../standalone/drakbackup_.c:4169 ../../standalone/drakbackup_.c:4195
msgid "Next"
msgstr "Volgende"
@@ -6379,375 +6521,371 @@ msgstr ""
msgid "Re-submit"
msgstr "Opnieuw invoeren"
-#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:152 ../../keyboard.pm_.c:187
msgid "Czech (QWERTZ)"
msgstr "Tsjechisch (QWERTZ)"
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:153 ../../keyboard.pm_.c:189
msgid "German"
msgstr "Duits"
-#: ../../keyboard.pm_.c:175
+#: ../../keyboard.pm_.c:154
msgid "Dvorak"
msgstr "Dvorak"
-#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:218
+#: ../../keyboard.pm_.c:155 ../../keyboard.pm_.c:197
msgid "Spanish"
msgstr "Spaans"
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:156 ../../keyboard.pm_.c:198
msgid "Finnish"
msgstr "Fins"
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:220
+#: ../../keyboard.pm_.c:157 ../../keyboard.pm_.c:199
msgid "French"
msgstr "Frans"
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:158 ../../keyboard.pm_.c:231
msgid "Norwegian"
msgstr "Noors"
-#: ../../keyboard.pm_.c:180
+#: ../../keyboard.pm_.c:159
msgid "Polish"
msgstr "Pools"
-#: ../../keyboard.pm_.c:181 ../../keyboard.pm_.c:260
+#: ../../keyboard.pm_.c:160 ../../keyboard.pm_.c:239
msgid "Russian"
msgstr "Russisch"
-#: ../../keyboard.pm_.c:183 ../../keyboard.pm_.c:262
+#: ../../keyboard.pm_.c:162 ../../keyboard.pm_.c:241
msgid "Swedish"
msgstr "Zweeds"
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:278
+#: ../../keyboard.pm_.c:163 ../../keyboard.pm_.c:257
msgid "UK keyboard"
msgstr "UK toetsenbord"
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:279
+#: ../../keyboard.pm_.c:164 ../../keyboard.pm_.c:258
msgid "US keyboard"
msgstr "US toetsenbord"
-#: ../../keyboard.pm_.c:187
+#: ../../keyboard.pm_.c:166
msgid "Albanian"
msgstr "Albanees"
-#: ../../keyboard.pm_.c:188
+#: ../../keyboard.pm_.c:167
msgid "Armenian (old)"
msgstr "Armeens (oud)"
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:168
msgid "Armenian (typewriter)"
msgstr "Armeens (typmachine)"
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:169
msgid "Armenian (phonetic)"
msgstr "Armeens (fonetisch)"
-#: ../../keyboard.pm_.c:195
+#: ../../keyboard.pm_.c:174
msgid "Azerbaidjani (latin)"
msgstr "Azerbeidzjan (latin)"
-#: ../../keyboard.pm_.c:197
+#: ../../keyboard.pm_.c:176
msgid "Belgian"
msgstr "Belgisch"
-#: ../../keyboard.pm_.c:198
-#, fuzzy
+#: ../../keyboard.pm_.c:177
msgid "Bengali"
-msgstr "inschakelen"
+msgstr "Bengali"
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:178
msgid "Bulgarian (phonetic)"
msgstr "Bulgaars (fonetisch)"
-#: ../../keyboard.pm_.c:200
+#: ../../keyboard.pm_.c:179
msgid "Bulgarian (BDS)"
msgstr "Bulgaars (BDS)"
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:180
msgid "Brazilian (ABNT-2)"
msgstr "Braziliaans (ABNT-2)"
-#: ../../keyboard.pm_.c:204
-#, fuzzy
+#: ../../keyboard.pm_.c:183
msgid "Bosnian"
-msgstr "Ests"
+msgstr "Bosnisch"
-#: ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:184
msgid "Belarusian"
msgstr "Belarusiaans"
-#: ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:185
msgid "Swiss (German layout)"
msgstr "Zwitsers (Duitse layout)"
-#: ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:186
msgid "Swiss (French layout)"
msgstr "Zwitsers (Franse layout)"
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:188
msgid "Czech (QWERTY)"
msgstr "Tsjechisch (QWERTY)"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:190
msgid "German (no dead keys)"
msgstr "Duits (geen dode toetsen)"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:191
msgid "Devanagari"
-msgstr ""
+msgstr "Devanagari"
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:192
msgid "Danish"
msgstr "Deens"
-#: ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:193
msgid "Dvorak (US)"
msgstr "Dvorak (US)"
-#: ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:194
msgid "Dvorak (Norwegian)"
msgstr "Dvorak (Noorwegen)"
-#: ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:195
msgid "Dvorak (Swedish)"
msgstr "Dvorak (Zweeds)"
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:196
msgid "Estonian"
msgstr "Ests"
-#: ../../keyboard.pm_.c:221
+#: ../../keyboard.pm_.c:200
msgid "Georgian (\"Russian\" layout)"
msgstr "Georgisch (\"Russische\" layout)"
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:201
msgid "Georgian (\"Latin\" layout)"
msgstr "Georgisch (\"Latin\" layout)"
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:202
msgid "Greek"
msgstr "Grieks"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:203
msgid "Gujarati"
-msgstr ""
+msgstr "Gujarati"
-#: ../../keyboard.pm_.c:225
+#: ../../keyboard.pm_.c:204
msgid "Gurmukhi"
-msgstr ""
+msgstr "Gurmukhi"
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:205
msgid "Hungarian"
msgstr "Hongaars"
-#: ../../keyboard.pm_.c:227
+#: ../../keyboard.pm_.c:206
msgid "Croatian"
msgstr "Kroatisch"
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:207
msgid "Israeli"
msgstr "Israelisch"
-#: ../../keyboard.pm_.c:229
+#: ../../keyboard.pm_.c:208
msgid "Israeli (Phonetic)"
msgstr "Israelisch (Fonetisch)"
-#: ../../keyboard.pm_.c:230
+#: ../../keyboard.pm_.c:209
msgid "Iranian"
msgstr "Iraans"
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:210
msgid "Icelandic"
msgstr "IJslands"
-#: ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:211
msgid "Italian"
msgstr "Italiaans"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:212
msgid "Inuktitut"
-msgstr ""
+msgstr "Inuktitut"
-#: ../../keyboard.pm_.c:234
+#: ../../keyboard.pm_.c:213
msgid "Japanese 106 keys"
msgstr "Japans 106 toetsen"
-#: ../../keyboard.pm_.c:237
+#: ../../keyboard.pm_.c:216
msgid "Korean keyboard"
msgstr "Koreaans toetsenbord"
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:217
msgid "Latin American"
msgstr "Latijns-Amerikaans"
-#: ../../keyboard.pm_.c:239
-#, fuzzy
+#: ../../keyboard.pm_.c:218
msgid "Laotian"
-msgstr "Lets"
+msgstr "Laotiaans"
-#: ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:219
msgid "Lithuanian AZERTY (old)"
msgstr "Lithuaans AZERTY (oud)"
-#: ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:221
msgid "Lithuanian AZERTY (new)"
msgstr "Lithuaans AZERTY (nieuw)"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:222
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Lithuaans \"nummer-rij\" QWERTY"
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:223
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "Lithuaans \"fonetisch\" QWERTY"
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:224
msgid "Latvian"
msgstr "Lets"
-#: ../../keyboard.pm_.c:246
+#: ../../keyboard.pm_.c:225
msgid "Macedonian"
msgstr "Macedonisch"
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:226
msgid "Myanmar (Burmese)"
-msgstr ""
+msgstr "Myanmar (Birmees)"
-#: ../../keyboard.pm_.c:248
-#, fuzzy
+#: ../../keyboard.pm_.c:227
msgid "Mongolian (cyrillic)"
-msgstr "Servisch (cyrillisch)"
+msgstr "Mongools (cyrillisch)"
-#: ../../keyboard.pm_.c:249
+#: ../../keyboard.pm_.c:228
msgid "Maltese (UK)"
-msgstr ""
+msgstr "Maltees (UK)"
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:229
msgid "Maltese (US)"
-msgstr ""
+msgstr "Maltees (US)"
-#: ../../keyboard.pm_.c:251
+#: ../../keyboard.pm_.c:230
msgid "Dutch"
msgstr "Nederlands"
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:232
msgid "Polish (qwerty layout)"
msgstr "Pools (qwerty layout)"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:233
msgid "Polish (qwertz layout)"
msgstr "Pools (qwertz layout)"
-#: ../../keyboard.pm_.c:255
+#: ../../keyboard.pm_.c:234
msgid "Portuguese"
msgstr "Portugees"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:235
msgid "Canadian (Quebec)"
msgstr "Canadees (Quebec)"
-#: ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:237
msgid "Romanian (qwertz)"
msgstr "Roemeens (qwertz)"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:238
msgid "Romanian (qwerty)"
msgstr "Roemeens (qwerty)"
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:240
msgid "Russian (Yawerty)"
msgstr "Roemeens (Yawerty)"
-#: ../../keyboard.pm_.c:263
+#: ../../keyboard.pm_.c:242
msgid "Slovenian"
msgstr "Sloveens"
-#: ../../keyboard.pm_.c:264
+#: ../../keyboard.pm_.c:243
msgid "Slovakian (QWERTZ)"
msgstr "Slovaaks (QWERTZ)"
-#: ../../keyboard.pm_.c:265
+#: ../../keyboard.pm_.c:244
msgid "Slovakian (QWERTY)"
msgstr "Slovaaks (QWERTY)"
-#: ../../keyboard.pm_.c:267
+#: ../../keyboard.pm_.c:246
msgid "Serbian (cyrillic)"
msgstr "Servisch (cyrillisch)"
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:248
msgid "Tamil (Unicode)"
msgstr "Tamil (Unicode)"
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:249
msgid "Tamil (TSCII)"
msgstr "Tamil (TSCII)"
-#: ../../keyboard.pm_.c:271
+#: ../../keyboard.pm_.c:250
msgid "Thai keyboard"
msgstr "Thai-toetsenbord"
-#: ../../keyboard.pm_.c:273
+#: ../../keyboard.pm_.c:252
msgid "Tajik keyboard"
msgstr "Tadzjikisch toetsenbord"
-#: ../../keyboard.pm_.c:274
+#: ../../keyboard.pm_.c:253
msgid "Turkish (traditional \"F\" model)"
msgstr "Turks (traditioneel \"F\"-model)"
-#: ../../keyboard.pm_.c:275
+#: ../../keyboard.pm_.c:254
msgid "Turkish (modern \"Q\" model)"
msgstr "Turks (modern \"Q\"-model)"
-#: ../../keyboard.pm_.c:277
+#: ../../keyboard.pm_.c:256
msgid "Ukrainian"
msgstr "OekraĂŻens"
-#: ../../keyboard.pm_.c:280
+#: ../../keyboard.pm_.c:259
msgid "US keyboard (international)"
msgstr "US toetsenbord (internationaal)"
-#: ../../keyboard.pm_.c:281
+#: ../../keyboard.pm_.c:260
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "Vietnamese \"nummer-rij\" QWERTY"
-#: ../../keyboard.pm_.c:282
+#: ../../keyboard.pm_.c:261
msgid "Yugoslavian (latin)"
msgstr "Joegoslavisch (latin)"
-#: ../../keyboard.pm_.c:289
+#: ../../keyboard.pm_.c:268
msgid "Right Alt key"
msgstr "Rechter Alt-knop"
-#: ../../keyboard.pm_.c:290
+#: ../../keyboard.pm_.c:269
msgid "Both Shift keys simultaneously"
msgstr "Beide Shift-toetsen tegelijkertijd"
-#: ../../keyboard.pm_.c:291
+#: ../../keyboard.pm_.c:270
msgid "Control and Shift keys simultaneously"
msgstr "Control- en Shift-toetsen tegelijkertijd"
-#: ../../keyboard.pm_.c:292
+#: ../../keyboard.pm_.c:271
msgid "CapsLock key"
msgstr "CapsLock-toets"
-#: ../../keyboard.pm_.c:293
+#: ../../keyboard.pm_.c:272
msgid "Ctrl and Alt keys simultaneously"
msgstr "Ctrl- en Alt-toetsen tegelijkertijd"
-#: ../../keyboard.pm_.c:294
+#: ../../keyboard.pm_.c:273
msgid "Alt and Shift keys simultaneously"
msgstr "Alt- en Shift-toetsen tegelijkertijd"
-#: ../../keyboard.pm_.c:295
+#: ../../keyboard.pm_.c:274
msgid "\"Menu\" key"
msgstr "\"Menu\"-toets"
-#: ../../keyboard.pm_.c:296
+#: ../../keyboard.pm_.c:275
msgid "Left \"Windows\" key"
msgstr "Linker \"Windows\"-toets"
-#: ../../keyboard.pm_.c:297
+#: ../../keyboard.pm_.c:276
msgid "Right \"Windows\" key"
msgstr "Rechter \"Windows\"-toets"
@@ -6805,11 +6943,11 @@ msgstr "Algemene PS/2 wielmuis"
msgid "GlidePoint"
msgstr "GlidePoint"
-#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:63
+#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:65
msgid "Kensington Thinking Mouse"
msgstr "Kensington Thinking Mouse"
-#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:59
+#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:61
msgid "Genius NetMouse"
msgstr "Genius NetMouse"
@@ -6817,115 +6955,123 @@ msgstr "Genius NetMouse"
msgid "Genius NetScroll"
msgstr "Genius NetScroll"
-#: ../../mouse.pm_.c:43 ../../mouse.pm_.c:68
+#: ../../mouse.pm_.c:39 ../../mouse.pm_.c:48
+msgid "Microsoft Explorer"
+msgstr "Microsoft Explorer"
+
+#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:70
msgid "1 button"
msgstr "1 knop"
-#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:51
+#: ../../mouse.pm_.c:45 ../../mouse.pm_.c:53
msgid "Generic 2 Button Mouse"
msgstr "Algemene 2-knopsmuis"
-#: ../../mouse.pm_.c:46
+#: ../../mouse.pm_.c:47
msgid "Wheel"
msgstr "Wiel"
-#: ../../mouse.pm_.c:49
+#: ../../mouse.pm_.c:51
msgid "serial"
msgstr "seriëel"
-#: ../../mouse.pm_.c:52
+#: ../../mouse.pm_.c:54
msgid "Generic 3 Button Mouse"
msgstr "Algemene 3-knopsmuis"
-#: ../../mouse.pm_.c:53
+#: ../../mouse.pm_.c:55
msgid "Microsoft IntelliMouse"
msgstr "Microsoft IntelliMouse"
-#: ../../mouse.pm_.c:54
+#: ../../mouse.pm_.c:56
msgid "Logitech MouseMan"
msgstr "Logitech MouseMan"
-#: ../../mouse.pm_.c:55
+#: ../../mouse.pm_.c:57
msgid "Mouse Systems"
msgstr "Mouse Systems"
-#: ../../mouse.pm_.c:57
+#: ../../mouse.pm_.c:59
msgid "Logitech CC Series"
msgstr "Logitech CC Series"
-#: ../../mouse.pm_.c:58
+#: ../../mouse.pm_.c:60
msgid "Logitech MouseMan+/FirstMouse+"
msgstr "Logitech MouseMan+/FirstMouse+"
-#: ../../mouse.pm_.c:60
+#: ../../mouse.pm_.c:62
msgid "MM Series"
msgstr "MM Series"
-#: ../../mouse.pm_.c:61
+#: ../../mouse.pm_.c:63
msgid "MM HitTablet"
msgstr "MM HitTablet"
-#: ../../mouse.pm_.c:62
+#: ../../mouse.pm_.c:64
msgid "Logitech Mouse (serial, old C7 type)"
msgstr "Logitech-muis (seriëel, oud C7-type)"
-#: ../../mouse.pm_.c:66
+#: ../../mouse.pm_.c:68
msgid "busmouse"
msgstr "bus muis"
-#: ../../mouse.pm_.c:69
+#: ../../mouse.pm_.c:71
msgid "2 buttons"
msgstr "2 knoppen"
-#: ../../mouse.pm_.c:70
+#: ../../mouse.pm_.c:72
msgid "3 buttons"
msgstr "3 knoppen"
-#: ../../mouse.pm_.c:73
+#: ../../mouse.pm_.c:75
msgid "none"
msgstr "geen"
-#: ../../mouse.pm_.c:75
+#: ../../mouse.pm_.c:77
msgid "No mouse"
msgstr "Geen muis"
-#: ../../mouse.pm_.c:445
+#: ../../mouse.pm_.c:482
msgid "Please test the mouse"
msgstr "Test uw muis a.u.b."
-#: ../../mouse.pm_.c:446
+#: ../../mouse.pm_.c:483
msgid "To activate the mouse,"
-msgstr "Welk type muis heeft u?"
+msgstr "Om de muis te activeren,"
-#: ../../mouse.pm_.c:447
+#: ../../mouse.pm_.c:484
msgid "MOVE YOUR WHEEL!"
msgstr "BEWEEG UW WIELTJE"
-#: ../../my_gtk.pm_.c:156
+#: ../../my_gtk.pm_.c:64
+msgid "-adobe-utopia-regular-r-*-*-25-*-*-*-p-*-iso8859-*,*-r-*"
+msgstr "-adobe-utopia-regular-r-*-*-25-*-*-*-p-*-iso8859-*,*-r-*"
+
+#: ../../my_gtk.pm_.c:159
msgid "Finish"
-msgstr "Fins"
+msgstr "Klaar"
-#: ../../my_gtk.pm_.c:156 ../../printerdrake.pm_.c:1992
+#: ../../my_gtk.pm_.c:159 ../../printerdrake.pm_.c:2126
msgid "Next ->"
msgstr "Volgende ->"
-#: ../../my_gtk.pm_.c:284
+#: ../../my_gtk.pm_.c:287
msgid "Is this correct?"
msgstr "Is dit correct?"
-#: ../../my_gtk.pm_.c:356 ../../services.pm_.c:222
+#: ../../my_gtk.pm_.c:359 ../../services.pm_.c:222
msgid "Info"
msgstr "Info"
-#: ../../my_gtk.pm_.c:377
+#: ../../my_gtk.pm_.c:380
msgid "Expand Tree"
-msgstr "Boom Uitbreiden"
+msgstr "Boom uitklappen"
-#: ../../my_gtk.pm_.c:378
+#: ../../my_gtk.pm_.c:381
msgid "Collapse Tree"
-msgstr "Boom Inklappen"
+msgstr "Boom inklappen"
-#: ../../my_gtk.pm_.c:379
+#: ../../my_gtk.pm_.c:382
msgid "Toggle between flat and group sorted"
msgstr "Schakelen tussen gewoon en per-groep-gesorteerd"
@@ -6949,7 +7095,7 @@ msgstr "Alcatel speedtouch usb"
#: ../../network/adsl.pm_.c:22
msgid "ECI Hi-Focus"
-msgstr ""
+msgstr "ECI Hi-Focus"
#: ../../network/adsl.pm_.c:22
msgid "use dhcp"
@@ -6963,6 +7109,76 @@ msgstr "gebruik pppoe"
msgid "use pptp"
msgstr "gebruik pptp"
+#: ../../network/drakfirewall.pm_.c:12
+msgid "Web Server"
+msgstr "Web-server"
+
+#: ../../network/drakfirewall.pm_.c:17
+msgid "Domain Name Server"
+msgstr "Domeinnaam-server"
+
+#: ../../network/drakfirewall.pm_.c:32
+msgid "Mail Server"
+msgstr "E-mailserver"
+
+#: ../../network/drakfirewall.pm_.c:37
+msgid "POP and IMAP Server"
+msgstr "POP- en IMAP-server"
+
+#: ../../network/drakfirewall.pm_.c:111
+msgid "No network card"
+msgstr "Geen netwerkkaart"
+
+#: ../../network/drakfirewall.pm_.c:129
+#, fuzzy
+msgid ""
+"drakfirewall configurator\n"
+"\n"
+"This configures a personal firewall for this Mandrake Linux machine.\n"
+"For a powerful dedicated firewall solution, please look to the\n"
+"specialized MandrakeSecurity Firewall distribution."
+msgstr ""
+"Configuratie van tinyfirewall\n"
+"\n"
+"Dit programma configureert een persoonlijk instelling van de firewall\n"
+"voor deze Mandrake Linux machine. Voor een krachtige, specifieke\n"
+"firewall-oplossing, zie de gespecialiseerde MandrakeSecurity Firewall\n"
+"distributie."
+
+#: ../../network/drakfirewall.pm_.c:147
+msgid "Which services would you like to allow the Internet to connect to?"
+msgstr ""
+"Welke diensten zoudt u het Internet willen toestaan om mee te verbinden?"
+
+#: ../../network/drakfirewall.pm_.c:148
+msgid ""
+"You can enter miscellaneous ports. \n"
+"Valid examples are: 139/tcp 139/udp.\n"
+"Have a look at /etc/services for information."
+msgstr ""
+"U kunt diverse poorten opgeven. \n"
+"Geldige voorbeelden zijn: 139/tcp 139/udp.\n"
+"Bekijk /etc/services eens voor informatie."
+
+#: ../../network/drakfirewall.pm_.c:154
+#, c-format
+msgid ""
+"Invalid port given: %s.\n"
+"The proper format is \"port/tcp\" or \"port/udp\", \n"
+"where port is between 1 and 65535."
+msgstr ""
+"Ongeldige poort opgegeven: %s.\n"
+"Het juiste formaat is \"port/tcp\" of \"port/udp\", \n"
+"waar het poortnummer ligt tussen 1 en 65535."
+
+#: ../../network/drakfirewall.pm_.c:162
+msgid "Everything (no firewall)"
+msgstr "Alles (geen firewall)"
+
+#: ../../network/drakfirewall.pm_.c:164
+msgid "Other ports"
+msgstr "Overige poorten"
+
#: ../../network/ethernet.pm_.c:37
msgid ""
"Which dhcp client do you want to use?\n"
@@ -6979,7 +7195,7 @@ msgstr ""
"Er is geen ethernet netwerk adapter op uw systeem gevonden.\n"
"Ik kan dit type connectie niet opzetten."
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:247
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:240
msgid "Choose the network interface"
msgstr "Kies de netwerk interface"
@@ -6992,7 +7208,7 @@ msgstr "Kies a.u.b. met welke netwerkkaart u met het Internet wilt verbinden"
msgid "no network card found"
msgstr "Geen netwerkkaart gevonden"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:366
msgid "Configuring network"
msgstr "Bezig met configureren van netwerk"
@@ -7007,7 +7223,7 @@ msgstr ""
"Sommige DHCP servers hebben de computernaam nodig om te werken.\n"
"Het moet een volledige computernaam zijn, zoals ``mybox.mylab.myco.com''."
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:370
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:371
msgid "Host name"
msgstr "Computer naam:"
@@ -7313,13 +7529,13 @@ msgstr "Kies het profiel om in te stellen"
msgid "Use auto detection"
msgstr "Gebruik auto-detectie"
-#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2930
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:3151
#: ../../standalone/drakconnect_.c:274 ../../standalone/drakconnect_.c:277
#: ../../standalone/drakfloppy_.c:145
msgid "Expert Mode"
msgstr "Expert modus"
-#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:283
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:386
msgid "Detecting devices..."
msgstr "Bezig met het detecteren van apparaten..."
@@ -7490,11 +7706,11 @@ msgstr "Automatisch IP"
msgid "Start at boot"
msgstr "Bij opstarten starten"
-#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:753
+#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:860
msgid "IP address should be in format 1.2.3.4"
msgstr "Het IP-adres moet het formaat 1.2.3.4 hebben"
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:367
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -7505,43 +7721,55 @@ msgstr ""
"Het moet een volledige computernaam zijn, zoals ``mybox.mylab.myco.com''.\n"
"U mag ook het IP-adres van de gateway invoeren als u er een heeft."
-#: ../../network/network.pm_.c:371
+#: ../../network/network.pm_.c:372
msgid "DNS server"
msgstr "DNS server"
-#: ../../network/network.pm_.c:372
+#: ../../network/network.pm_.c:373
#, c-format
msgid "Gateway (e.g. %s)"
msgstr "Gateway (bijvoorbeeld %s)"
-#: ../../network/network.pm_.c:374
+#: ../../network/network.pm_.c:375
msgid "Gateway device"
msgstr "Gateway apparaat"
-#: ../../network/network.pm_.c:386
+#: ../../network/network.pm_.c:387
msgid "Proxies configuration"
msgstr "Configuratie van proxie(s)"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:388
msgid "HTTP proxy"
msgstr "HTTP-proxy"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:389
msgid "FTP proxy"
msgstr "FTP-proxy"
-#: ../../network/network.pm_.c:389
+#: ../../network/network.pm_.c:390
msgid "Track network card id (useful for laptops)"
msgstr "Netwerkkaart id onthouden (nuttig voor laptops)"
-#: ../../network/network.pm_.c:392
+#: ../../network/network.pm_.c:393
msgid "Proxy should be http://..."
msgstr "Proxy moet http://... zijn"
-#: ../../network/network.pm_.c:393
+#: ../../network/network.pm_.c:394
msgid "Proxy should be ftp://..."
msgstr "Proxy moet ftp://... zijn"
+#: ../../network/shorewall.pm_.c:24
+msgid "Firewalling configuration detected!"
+msgstr "Firewall configuratie gedetecteerd!"
+
+#: ../../network/shorewall.pm_.c:25
+msgid ""
+"Warning! An existing firewalling configuration has been detected. You may "
+"need some manual fix after installation."
+msgstr ""
+"Waarschuwing! Een bestaande firewall configuratie is gevonden. U kunt "
+"misschien na de installatie een handmatige aanpassing nodig hebben."
+
#: ../../network/tools.pm_.c:41
msgid "Internet configuration"
msgstr "Internet configuratie"
@@ -7647,15 +7875,15 @@ msgstr "Wachtwoord"
msgid "United Kingdom"
msgstr "Verenigd Koninkrijk"
-#: ../../partition_table.pm_.c:606
+#: ../../partition_table.pm_.c:602
msgid "mount failed: "
msgstr "koppelen mislukt: "
-#: ../../partition_table.pm_.c:670
+#: ../../partition_table.pm_.c:666
msgid "Extended partition not supported on this platform"
msgstr "Extended partitie niet ondersteund op dit platform"
-#: ../../partition_table.pm_.c:688
+#: ../../partition_table.pm_.c:684
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
@@ -7665,21 +7893,21 @@ msgstr ""
"De enige oplossing is om uw primaire partitie te verplaatsen zodat het gat "
"naast de extended partitie komt te liggen"
-#: ../../partition_table.pm_.c:778
+#: ../../partition_table.pm_.c:774
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "Het herstellen van bestand %s is niet gelukt: %s"
-#: ../../partition_table.pm_.c:780
+#: ../../partition_table.pm_.c:776
msgid "Bad backup file"
msgstr "Slechte reservekopie"
-#: ../../partition_table.pm_.c:802
+#: ../../partition_table.pm_.c:798
#, c-format
msgid "Error writing to file %s"
msgstr "Fout bij het schrijven naar bestand %s"
-#: ../../partition_table/raw.pm_.c:187
+#: ../../partition_table/raw.pm_.c:189
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
@@ -7726,150 +7954,154 @@ msgstr "LPD - Line Printer Daemon"
msgid "PDQ - Print, Don't Queue"
msgstr "PDQ - Print, Don't Queue"
-#: ../../printer.pm_.c:35 ../../printer.pm_.c:854
+#: ../../printer.pm_.c:34 ../../printer.pm_.c:1125
msgid "CUPS"
msgstr "CUPS"
-#: ../../printer.pm_.c:36
+#: ../../printer.pm_.c:35
msgid "LPRng"
msgstr "LPRng"
-#: ../../printer.pm_.c:37
+#: ../../printer.pm_.c:36
msgid "LPD"
msgstr "LPD"
-#: ../../printer.pm_.c:38
+#: ../../printer.pm_.c:37
msgid "PDQ"
msgstr "PDQ"
-#: ../../printer.pm_.c:50
+#: ../../printer.pm_.c:49
msgid "Local printer"
msgstr "Lokale printer"
-#: ../../printer.pm_.c:51
+#: ../../printer.pm_.c:50
msgid "Remote printer"
msgstr "Netwerk printer"
-#: ../../printer.pm_.c:52
+#: ../../printer.pm_.c:51
msgid "Printer on remote CUPS server"
msgstr "Printer aan CUPS server op afstand"
-#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:776
+#: ../../printer.pm_.c:52 ../../printerdrake.pm_.c:883
msgid "Printer on remote lpd server"
msgstr "Printer aan lpd server op afstand"
-#: ../../printer.pm_.c:54
+#: ../../printer.pm_.c:53
msgid "Network printer (TCP/Socket)"
msgstr "Netwerkprinter (TCP/Socket)"
-#: ../../printer.pm_.c:55
+#: ../../printer.pm_.c:54
msgid "Printer on SMB/Windows 95/98/NT server"
msgstr "Printer aan SMB/Windows 95/98/NT server"
-#: ../../printer.pm_.c:56
+#: ../../printer.pm_.c:55
msgid "Printer on NetWare server"
msgstr "Printer aan NetWare server"
-#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:780
+#: ../../printer.pm_.c:56 ../../printerdrake.pm_.c:887
msgid "Enter a printer device URI"
msgstr "Voer een apparaat-URI voor de printer in"
-#: ../../printer.pm_.c:58
+#: ../../printer.pm_.c:57
msgid "Pipe job into a command"
msgstr "Job doorsluizen naar een commando"
-#: ../../printer.pm_.c:487 ../../printer.pm_.c:678 ../../printer.pm_.c:1000
-#: ../../printerdrake.pm_.c:2070 ../../printerdrake.pm_.c:3189
+#: ../../printer.pm_.c:324 ../../printer.pm_.c:366 ../../printer.pm_.c:533
+msgid "Unknown Model"
+msgstr "Onbekend model"
+
+#: ../../printer.pm_.c:735 ../../printer.pm_.c:926 ../../printer.pm_.c:1318
+#: ../../printerdrake.pm_.c:2260 ../../printerdrake.pm_.c:3414
msgid "Unknown model"
msgstr "Onbekend model"
-#: ../../printer.pm_.c:515
+#: ../../printer.pm_.c:763
msgid "Local Printers"
msgstr "Lokale printers"
-#: ../../printer.pm_.c:517 ../../printer.pm_.c:855
+#: ../../printer.pm_.c:765 ../../printer.pm_.c:1126
msgid "Remote Printers"
msgstr "Printers op afstand"
-#: ../../printer.pm_.c:524 ../../printerdrake.pm_.c:301
+#: ../../printer.pm_.c:772 ../../printerdrake.pm_.c:404
#, c-format
msgid " on parallel port \\/*%s"
msgstr "op parallelle poort \\/*%s"
-#: ../../printer.pm_.c:527 ../../printerdrake.pm_.c:303
+#: ../../printer.pm_.c:775 ../../printerdrake.pm_.c:406
#, c-format
msgid ", USB printer \\/*%s"
msgstr ", USB printer \\/*%s"
-#: ../../printer.pm_.c:532
+#: ../../printer.pm_.c:780
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ", multi-functioneel apparaat op parallelle poort \\/*%s"
-#: ../../printer.pm_.c:535
+#: ../../printer.pm_.c:783
msgid ", multi-function device on USB"
msgstr ", multi-functioneel apparaat op USB"
-#: ../../printer.pm_.c:537
+#: ../../printer.pm_.c:785
msgid ", multi-function device on HP JetDirect"
msgstr ". multi-functioneel apparaat op HP JetDirect"
-#: ../../printer.pm_.c:539
+#: ../../printer.pm_.c:787
msgid ", multi-function device"
msgstr ", multi-functioneel apparaat"
-#: ../../printer.pm_.c:542
+#: ../../printer.pm_.c:790
#, c-format
msgid ", printing to %s"
msgstr ", bezig met printen naar %s"
-#: ../../printer.pm_.c:544
-#, fuzzy, c-format
+#: ../../printer.pm_.c:792
+#, c-format
msgid " on LPD server \"%s\", printer \"%s\""
-msgstr "op LPD server \"%s\", printer \"%s\""
+msgstr " op LPD server \"%s\", printer \"%s\""
-#: ../../printer.pm_.c:546
+#: ../../printer.pm_.c:794
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ", TCP/IP host \"%s\", poort %s"
-#: ../../printer.pm_.c:550
-#, fuzzy, c-format
+#: ../../printer.pm_.c:798
+#, c-format
msgid " on SMB/Windows server \"%s\", share \"%s\""
-msgstr "op Windows server \"%s\", share \"%s\""
+msgstr " op SMB/Windows server \"%s\", share \"%s\""
-#: ../../printer.pm_.c:554
-#, fuzzy, c-format
+#: ../../printer.pm_.c:802
+#, c-format
msgid " on Novell server \"%s\", printer \"%s\""
-msgstr "op Novell server \"%s\", printer \"%s\""
+msgstr " op Novell server \"%s\", printer \"%s\""
-#: ../../printer.pm_.c:556
+#: ../../printer.pm_.c:804
#, c-format
msgid ", using command %s"
msgstr ", met gebruik van opdracht %s"
-#: ../../printer.pm_.c:675 ../../printerdrake.pm_.c:1540
+#: ../../printer.pm_.c:923 ../../printerdrake.pm_.c:1656
msgid "Raw printer (No driver)"
msgstr "Raw printer (geen stuurprogramma)"
-#: ../../printer.pm_.c:824
+#: ../../printer.pm_.c:1095
#, c-format
msgid "(on %s)"
msgstr "(aan %s)"
-#: ../../printer.pm_.c:826
+#: ../../printer.pm_.c:1097
msgid "(on this machine)"
msgstr "(aan deze machine)"
-#: ../../printer.pm_.c:851
+#: ../../printer.pm_.c:1122
#, c-format
msgid "On CUPS server \"%s\""
msgstr "Op CUPS-server \"%s\""
-#: ../../printer.pm_.c:857 ../../printerdrake.pm_.c:2851
-#: ../../printerdrake.pm_.c:2862 ../../printerdrake.pm_.c:3078
-#: ../../printerdrake.pm_.c:3130 ../../printerdrake.pm_.c:3156
-#: ../../printerdrake.pm_.c:3326 ../../printerdrake.pm_.c:3328
+#: ../../printer.pm_.c:1128 ../../printerdrake.pm_.c:3071
+#: ../../printerdrake.pm_.c:3082 ../../printerdrake.pm_.c:3303
+#: ../../printerdrake.pm_.c:3355 ../../printerdrake.pm_.c:3381
+#: ../../printerdrake.pm_.c:3556 ../../printerdrake.pm_.c:3558
msgid " (Default)"
msgstr " (Standaard)"
@@ -7893,13 +8125,13 @@ msgstr ""
#: ../../printerdrake.pm_.c:36
msgid "Printer auto-detection (Local, TCP/Socket, and SMB printers)"
-msgstr ""
+msgstr "Automatische printerbespeuring (Lokaal, TCP/Socket en SMB-printers)"
-#: ../../printerdrake.pm_.c:84 ../../printerdrake.pm_.c:2914
+#: ../../printerdrake.pm_.c:84 ../../printerdrake.pm_.c:3135
msgid "CUPS configuration"
msgstr "CUPS configuratie"
-#: ../../printerdrake.pm_.c:85 ../../printerdrake.pm_.c:2915
+#: ../../printerdrake.pm_.c:85 ../../printerdrake.pm_.c:3136
msgid "Specify CUPS server"
msgstr "CUPS server specificeren"
@@ -7943,7 +8175,7 @@ msgstr ""
msgid "The IP address should look like 192.168.1.20"
msgstr "Het IP-adres zou er uit moeten zien als 192.168.1.20"
-#: ../../printerdrake.pm_.c:95 ../../printerdrake.pm_.c:987
+#: ../../printerdrake.pm_.c:95 ../../printerdrake.pm_.c:1094
msgid "The port number should be an integer!"
msgstr "Het poortnummer moet een geheel getal zijn!"
@@ -7951,7 +8183,7 @@ msgstr "Het poortnummer moet een geheel getal zijn!"
msgid "CUPS server IP"
msgstr "CUPS-server IP"
-#: ../../printerdrake.pm_.c:103 ../../printerdrake.pm_.c:1007
+#: ../../printerdrake.pm_.c:103 ../../printerdrake.pm_.c:1114
msgid "Port"
msgstr "Poort"
@@ -7959,12 +8191,142 @@ msgstr "Poort"
msgid "Automatic CUPS configuration"
msgstr "Automatische CUPS-configuratie"
-#: ../../printerdrake.pm_.c:183 ../../printerdrake.pm_.c:192
-#: ../../printerdrake.pm_.c:2897 ../../printerdrake.pm_.c:3017
+#: ../../printerdrake.pm_.c:177 ../../printerdrake.pm_.c:247
+#: ../../printerdrake.pm_.c:1529 ../../printerdrake.pm_.c:1533
+#: ../../printerdrake.pm_.c:1651 ../../printerdrake.pm_.c:2203
+#: ../../printerdrake.pm_.c:2356 ../../printerdrake.pm_.c:2415
+#: ../../printerdrake.pm_.c:2488 ../../printerdrake.pm_.c:2509
+#: ../../printerdrake.pm_.c:2699 ../../printerdrake.pm_.c:2740
+#: ../../printerdrake.pm_.c:2745 ../../printerdrake.pm_.c:2779
+#: ../../printerdrake.pm_.c:2784 ../../printerdrake.pm_.c:2821
+#: ../../printerdrake.pm_.c:2874 ../../printerdrake.pm_.c:2894
+#: ../../printerdrake.pm_.c:2908 ../../printerdrake.pm_.c:2942
+#: ../../printerdrake.pm_.c:2988 ../../printerdrake.pm_.c:3006
+#: ../../printerdrake.pm_.c:3095 ../../printerdrake.pm_.c:3169
+#: ../../printerdrake.pm_.c:3471 ../../printerdrake.pm_.c:3526
+#: ../../printerdrake.pm_.c:3579 ../../standalone/printerdrake_.c:57
+msgid "Printerdrake"
+msgstr "Printerdrake"
+
+#: ../../printerdrake.pm_.c:178
+msgid "Checking your system..."
+msgstr "Bezig met controleren van uw systeem..."
+
+#: ../../printerdrake.pm_.c:186
+msgid ""
+"There are no printers found which are directly connected to your machine"
+msgstr ""
+"Er zijn geen printers gevonden die direct aan uw machine verbonden zijn"
+
+#: ../../printerdrake.pm_.c:198
+msgid ""
+"The following printers\n"
+"\n"
+msgstr ""
+"De volgende printers\n"
+"\n"
+
+#: ../../printerdrake.pm_.c:199
+msgid ""
+"The following printer\n"
+"\n"
+msgstr ""
+"De volgende printer\n"
+"\n"
+
+#: ../../printerdrake.pm_.c:201
+msgid ""
+"\n"
+"and one unknown printer are "
+msgstr ""
+"\n"
+"en Ă©Ă©n onbekende printer is"
+
+#: ../../printerdrake.pm_.c:203
+#, c-format
+msgid ""
+"\n"
+"and %d unknown printers are "
+msgstr ""
+"\n"
+"en %d onbekende printers zijn"
+
+#: ../../printerdrake.pm_.c:207
+msgid ""
+"\n"
+"are "
+msgstr ""
+"\n"
+"zijn"
+
+#: ../../printerdrake.pm_.c:208
+msgid ""
+"\n"
+"is "
+msgstr ""
+"\n"
+"is"
+
+#: ../../printerdrake.pm_.c:210
+msgid "directly connected to your system"
+msgstr "direct verbonden aan uw systeem"
+
+#: ../../printerdrake.pm_.c:213
+msgid ""
+"\n"
+"There is one unknown printer directly connected to your system"
+msgstr ""
+"\n"
+"Er is Ă©Ă©n onbekende printer direct aan uw systeem verbonden"
+
+#: ../../printerdrake.pm_.c:215
+#, c-format
+msgid ""
+"\n"
+"There are %d unknown printers directly connected to your system"
+msgstr ""
+"\n"
+"Er zijn %d onbekende printers direct aan uw systeem verbonden"
+
+#: ../../printerdrake.pm_.c:221
+msgid " (Make sure that all your printers are connected and turned on).\n"
+msgstr " (Zorg ervoor dat al uw printers verbonden zijn en aangezet).\n"
+
+#: ../../printerdrake.pm_.c:235
+msgid ""
+"Do you want to enable printing on the printers mentioned above or on "
+"printers in the local network?\n"
+msgstr ""
+"Wilt u afdrukken mogelijk maken voor de bovengenoemde printers of op "
+"printers in het lokale netwerk?\n"
+
+#: ../../printerdrake.pm_.c:236
+msgid "Do you want to enable printing on printers in the local network?\n"
+msgstr "Wilt u afdrukken inschakelen voor printers op het lokale netwerk?\n"
+
+#: ../../printerdrake.pm_.c:238
+msgid "Do you want to enable printing on the printers mentioned above?\n"
+msgstr "Wilt u afdrukken inschakelen op de hierboven genoemde printers?\n"
+
+#: ../../printerdrake.pm_.c:239
+msgid "Are you sure that you want to set up printing on this machine?\n"
+msgstr "Weet u zeker dat u afdrukken op deze computer wilt inschakelen?\n"
+
+#: ../../printerdrake.pm_.c:240
+#, c-format
+msgid ""
+"NOTE: Depending on the printer model and the printing system up to %d MB of "
+"additional software will be installed."
+msgstr ""
+"OPMERKING: Afhankelijk van het printermodel en het printsysteem zal tot %d "
+"MB aan extra software worden geĂŻnstalleerd."
+
+#: ../../printerdrake.pm_.c:269 ../../printerdrake.pm_.c:278
+#: ../../printerdrake.pm_.c:3117 ../../printerdrake.pm_.c:3242
msgid "Add a new printer"
msgstr "Printer toevoegen"
-#: ../../printerdrake.pm_.c:184
+#: ../../printerdrake.pm_.c:270
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7986,7 +8348,7 @@ msgstr ""
"en geeft u toegang tot alle beschikbare printer-stuurprogramma's, "
"stuurprogramma-opties en printerverbindingtypes."
-#: ../../printerdrake.pm_.c:193
+#: ../../printerdrake.pm_.c:280
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7995,7 +8357,7 @@ msgid ""
"computer, connected directly to the network or to a remote Windows machine.\n"
"\n"
"If you have printer(s) connected to this machine, Please plug it/them in on "
-"this computer and turn it/them on so that they can be auto-detected. Also "
+"this computer and turn it/them on so that it/they can be auto-detected. Also "
"your network printer(s) and you Windows machines must be connected and "
"turned on.\n"
"\n"
@@ -8007,8 +8369,50 @@ msgid ""
" Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
"want to set up your printer(s) now."
msgstr ""
+"\n"
+"Welkom bij de Printerinstellingen-wizard.\n"
+"\n"
+"Deze wizard helpt u de printer(s) te installeren die aan uw computer, direct "
+"aan het netwerk of aan een Windows-computer op afstand verbonden zijn.\n"
+"\n"
+"Als u printer(s) verbonden heeft aan deze computer, zet deze dan aan zodat "
+"ze automatisch gevonden kunnen worden. Uw netwerkprinter(s) en Windows-"
+"machines moeten ook verbonden en aangezet zijn.\n"
+"\n"
+"Merk op dat het automatisch bespeuren van printers op het netwerk langer "
+"duurt dan de automatische bespeuring van printers verbonden aan deze "
+"computer. U kunt dus beter de automatische bespeuring van netwerk- en "
+"Windowsprinters uitzetten wanneer u deze niet nodig heeft.\n"
+"\n"
+" Klik op \"Volgende\" wanneer u gereed bent, en \"Annuleren\" indien u niet "
+"op dit moment uw printer(s) wilt instellen."
+
+#: ../../printerdrake.pm_.c:289 ../../printerdrake.pm_.c:306
+msgid ""
+"\n"
+"Welcome to the Printer Setup Wizard\n"
+"\n"
+"This wizard will help you to install your printer(s) connected to this "
+"computer.\n"
+"\n"
+"If you have printer(s) connected to this machine, Please plug it/them in on "
+"this computer and turn it/them on so that it/they can be auto-detected.\n"
+"\n"
+" Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
+"want to set up your printer(s) now."
+msgstr ""
+"\n"
+"Welkom bij de Printerinstellingen-wizard.\n"
+"\n"
+"Deze wizard helpt u uw printer(s) te installeren die aan uw computer "
+"verbonden zijn.\n"
+"\n"
+"Als u printer(s) verbonden heeft aan deze computer, zet deze dan aan zodat "
+"ze automatisch gevonden kunnen worden.\n"
+" Klik op \"Volgende\" wanneer u gereed bent, en \"Annuleren\" indien u niet "
+"op dit moment uw printer(s) wilt instellen."
-#: ../../printerdrake.pm_.c:202
+#: ../../printerdrake.pm_.c:297
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -8017,7 +8421,7 @@ msgid ""
"computer or connected directly to the network.\n"
"\n"
"If you have printer(s) connected to this machine, Please plug it/them in on "
-"this computer and turn it/them on so that they can be auto-detected. Also "
+"this computer and turn it/them on so that it/they can be auto-detected. Also "
"your network printer(s) must be connected and turned on.\n"
"\n"
"Note that auto-detecting printers on the network takes longer than the auto-"
@@ -8027,26 +8431,44 @@ msgid ""
" Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
"want to set up your printer(s) now."
msgstr ""
+"\n"
+"Welkom bij de Printerinstellingen-wizard.\n"
+"\n"
+"Deze wizard helpt u uw printer(s) te installeren die aan uw computer of "
+"direct aan het netwerk verbonden zijn.\n"
+"\n"
+"Als u printer(s) verbonden heeft aan deze computer, zet deze dan aan zodat "
+"ze automatisch gevonden kunnen worden. Uw netwerkprinter(s) moeten ook "
+"verbonden en aangezet zijn.\n"
+"\n"
+"Merk op dat het automatisch bespeuren van printers op het netwerk langer "
+"duurt dan de automatische bespeuring van printers verbonden aan deze "
+"computer. U kunt dus beter de automatische bespeuring van netwerkprinters "
+"uitzetten wanneer u deze niet nodig heeft.\n"
+"\n"
+" Klik op \"Volgende\" wanneer u gereed bent, en \"Annuleren\" indien u niet "
+"op dit moment uw printer(s) wilt instellen."
-#: ../../printerdrake.pm_.c:213
-#, fuzzy
+#: ../../printerdrake.pm_.c:315
msgid "Auto-detect printers connected to this machine"
-msgstr "Automatisch bespeuren van printers"
+msgstr "Automatisch bespeuren van printers verbonden aan deze computer"
-#: ../../printerdrake.pm_.c:215
+#: ../../printerdrake.pm_.c:318
msgid "Auto-detect printers connected directly to the local network"
-msgstr ""
+msgstr "Automatisch bespeuren van printers direct verbonden aan lokaal netwerk"
-#: ../../printerdrake.pm_.c:218
+#: ../../printerdrake.pm_.c:321
msgid "Auto-detect printers connected to machines running Microsoft Windows"
msgstr ""
+"Automatisch bespeuren van printers verbonden aan computers die Microsoft "
+"Windows draaien"
-#: ../../printerdrake.pm_.c:245 ../../printerdrake.pm_.c:459
-#: ../../printerdrake.pm_.c:484
+#: ../../printerdrake.pm_.c:348 ../../printerdrake.pm_.c:562
+#: ../../printerdrake.pm_.c:587
msgid "Local Printer"
msgstr "Lokale printer"
-#: ../../printerdrake.pm_.c:246
+#: ../../printerdrake.pm_.c:349
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -8070,50 +8492,49 @@ msgstr ""
"afdrukkwaliteit, ...), selecteert u dan \"Printer\" in het \"Hardware\"-"
"gedeelte van het Mandrake Controle Centrum."
-#: ../../printerdrake.pm_.c:283 ../../printerdrake.pm_.c:474
-#: ../../printerdrake.pm_.c:683 ../../printerdrake.pm_.c:923
-#, fuzzy
+#: ../../printerdrake.pm_.c:386 ../../printerdrake.pm_.c:577
+#: ../../printerdrake.pm_.c:790 ../../printerdrake.pm_.c:1030
msgid "Printer auto-detection"
-msgstr "Bespeur automatisch"
+msgstr "Automatische printerbespeuring"
-#: ../../printerdrake.pm_.c:305
-#, fuzzy, c-format
+#: ../../printerdrake.pm_.c:408
+#, c-format
msgid ", network printer \"%s\", port %s"
-msgstr ", TCP/IP host \"%s\", poort %s"
+msgstr ", netwerkprinter \"%s\", poort %s"
-#: ../../printerdrake.pm_.c:307
-#, fuzzy, c-format
+#: ../../printerdrake.pm_.c:410
+#, c-format
msgid ", printer \"%s\" on SMB/Windows server \"%s\""
-msgstr "Printer aan SMB/Windows 95/98/NT server"
+msgstr ", printer \"%s\" aan SMB/Windows server \"%s\""
-#: ../../printerdrake.pm_.c:313
+#: ../../printerdrake.pm_.c:416
#, c-format
msgid "Detected %s"
msgstr "%s bespeurd"
-#: ../../printerdrake.pm_.c:317 ../../printerdrake.pm_.c:348
-#: ../../printerdrake.pm_.c:367
+#: ../../printerdrake.pm_.c:420 ../../printerdrake.pm_.c:451
+#: ../../printerdrake.pm_.c:470
#, c-format
msgid "Printer on parallel port \\/*%s"
msgstr "Printer op parallelle poort \\/*%s"
-#: ../../printerdrake.pm_.c:319 ../../printerdrake.pm_.c:350
-#: ../../printerdrake.pm_.c:372
+#: ../../printerdrake.pm_.c:422 ../../printerdrake.pm_.c:453
+#: ../../printerdrake.pm_.c:475
#, c-format
msgid "USB printer \\/*%s"
msgstr "USB printer \\/*%s"
-#: ../../printerdrake.pm_.c:321
-#, fuzzy, c-format
+#: ../../printerdrake.pm_.c:424
+#, c-format
msgid "Network printer \"%s\", port %s"
-msgstr "Netwerkprinter (TCP/Socket)"
+msgstr "Netwerkprinter \"%s\", poort %s"
-#: ../../printerdrake.pm_.c:323
-#, fuzzy, c-format
+#: ../../printerdrake.pm_.c:426
+#, c-format
msgid "Printer \"%s\" on SMB/Windows server \"%s\""
-msgstr "Printer aan SMB/Windows 95/98/NT server"
+msgstr "Printer \"%s\" aan SMB/Windows server \"%s\""
-#: ../../printerdrake.pm_.c:460
+#: ../../printerdrake.pm_.c:563
msgid ""
"No local printer found! To manually install a printer enter a device name/"
"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
@@ -8125,23 +8546,19 @@ msgstr ""
"poorten: /dev/lp0, /dev/lp1, ..., equivalent aan LPT1:,LPT2:, ..., 1ste USB "
"printer: /dev/usb/lp0, 2de USB printer: /dev/usb/lp1, ...)."
-#: ../../printerdrake.pm_.c:464
+#: ../../printerdrake.pm_.c:567
msgid "You must enter a device or file name!"
msgstr "U dient een apparaat of bestandsnaam in te voeren!"
-#: ../../printerdrake.pm_.c:475
-#, fuzzy
+#: ../../printerdrake.pm_.c:578
msgid "No printer found!"
-msgstr ""
-"Geen lokale printer gevonden!\n"
-"\n"
+msgstr "Geen printer gevonden!"
-#: ../../printerdrake.pm_.c:485
-#, fuzzy
+#: ../../printerdrake.pm_.c:588
msgid "Available printers"
-msgstr "Lokale printer"
+msgstr "Beschikbare printers"
-#: ../../printerdrake.pm_.c:489
+#: ../../printerdrake.pm_.c:592
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
@@ -8149,7 +8566,7 @@ msgstr ""
"De volgende printer is bespeurd. Is dit niet degene die u wilt configureren, "
"geef dan een apparaatnaam/bestandsnaam op de invoerregel"
-#: ../../printerdrake.pm_.c:490
+#: ../../printerdrake.pm_.c:593
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up or enter a device name/file name in the input line"
@@ -8157,7 +8574,7 @@ msgstr ""
"Dit is een lijst van alle automatisch bespeurde printers. Kiest u de printer "
"om in te stellen of geef een apparaatnaam/bestandsnaam op de invoerregel"
-#: ../../printerdrake.pm_.c:492
+#: ../../printerdrake.pm_.c:595
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
@@ -8169,7 +8586,7 @@ msgstr ""
"of indien u liever een aangepaste printerconfiguratie wilt, zet dan "
"\"Handmatige configuratie\" aan."
-#: ../../printerdrake.pm_.c:493
+#: ../../printerdrake.pm_.c:596
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
@@ -8182,7 +8599,7 @@ msgstr ""
"een aangepaste printerconfiguratie wenst, zet dan \"Handmatige configuratie"
"\" aan."
-#: ../../printerdrake.pm_.c:495
+#: ../../printerdrake.pm_.c:598
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
@@ -8190,11 +8607,11 @@ msgstr ""
"Kiest u de poort waaraan uw printer is verbonden of geef een apparaatnaam/"
"bestandsnaam op de invoerregel"
-#: ../../printerdrake.pm_.c:496
+#: ../../printerdrake.pm_.c:599
msgid "Please choose the port where your printer is connected to."
msgstr "Kiest u de poort waaraan uw printer is verbonden."
-#: ../../printerdrake.pm_.c:498
+#: ../../printerdrake.pm_.c:601
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
@@ -8203,19 +8620,19 @@ msgstr ""
"LPT2:, ..., 1ste USB printer: /dev/usb/lp0, 2de USB printer: /dev/usb/"
"lp1, ...)."
-#: ../../printerdrake.pm_.c:503
+#: ../../printerdrake.pm_.c:606
msgid "You must choose/enter a printer/device!"
msgstr "U dient een printer of apparaat te kiezen/in te voeren!"
-#: ../../printerdrake.pm_.c:523
+#: ../../printerdrake.pm_.c:626
msgid "Manual configuration"
msgstr "Handmatige configuratie"
-#: ../../printerdrake.pm_.c:577
+#: ../../printerdrake.pm_.c:680
msgid "Remote lpd Printer Options"
msgstr "lpd op afstand - Printer-opties"
-#: ../../printerdrake.pm_.c:578
+#: ../../printerdrake.pm_.c:681
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
"server and the printer name on that server."
@@ -8223,47 +8640,46 @@ msgstr ""
"Om een lpd-printer op afstand te gebruiken, dient u de hostnaam van de "
"printerserver en de printernaam op die server in te voeren."
-#: ../../printerdrake.pm_.c:579
+#: ../../printerdrake.pm_.c:682
msgid "Remote host name"
msgstr "Naam van host op afstand:"
-#: ../../printerdrake.pm_.c:580
+#: ../../printerdrake.pm_.c:683
msgid "Remote printer name"
msgstr "Naam van printer op afstand"
-#: ../../printerdrake.pm_.c:583
+#: ../../printerdrake.pm_.c:686
msgid "Remote host name missing!"
msgstr "De naam van de host op afstand is afwezig!"
-#: ../../printerdrake.pm_.c:587
+#: ../../printerdrake.pm_.c:690
msgid "Remote printer name missing!"
msgstr "De naam van de printer op afstand is afwezig!"
-#: ../../printerdrake.pm_.c:609 ../../printerdrake.pm_.c:1119
-#, fuzzy, c-format
+#: ../../printerdrake.pm_.c:712 ../../printerdrake.pm_.c:1225
+#, c-format
msgid "Detected model: %s %s"
-msgstr "%s bespeurd"
+msgstr "Gevonden model: %s %s"
-#: ../../printerdrake.pm_.c:683 ../../printerdrake.pm_.c:923
-#, fuzzy
+#: ../../printerdrake.pm_.c:790 ../../printerdrake.pm_.c:1030
msgid "Scanning network..."
-msgstr "Bezig met inschakelen van het netwerk..."
+msgstr "Bezig met afzoeken van het netwerk..."
-#: ../../printerdrake.pm_.c:692 ../../printerdrake.pm_.c:713
-#, fuzzy, c-format
+#: ../../printerdrake.pm_.c:799 ../../printerdrake.pm_.c:820
+#, c-format
msgid ", printer \"%s\" on server \"%s\""
-msgstr "op Windows server \"%s\", share \"%s\""
+msgstr ", printer \"%s\" op server \"%s\""
-#: ../../printerdrake.pm_.c:695 ../../printerdrake.pm_.c:716
-#, fuzzy, c-format
+#: ../../printerdrake.pm_.c:802 ../../printerdrake.pm_.c:823
+#, c-format
msgid "Printer \"%s\" on server \"%s\""
-msgstr "Bezig met afdrukken op printer \"%s\""
+msgstr "Printer \"%s\" op server \"%s\""
-#: ../../printerdrake.pm_.c:736
+#: ../../printerdrake.pm_.c:843
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "SMB (Windows 9x/NT) Printer-opties"
-#: ../../printerdrake.pm_.c:737
+#: ../../printerdrake.pm_.c:844
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
"may be different from its TCP/IP hostname!) and possibly the IP address of "
@@ -8276,46 +8692,48 @@ msgstr ""
"wenst en, indien nodig, informatie over gebruikersnaam, wachtwoord en "
"werkgroep."
-#: ../../printerdrake.pm_.c:738
+#: ../../printerdrake.pm_.c:845
msgid ""
" If the desired printer was auto-detected, simply choose it from the list "
"and then add user name, password, and/or workgroup if needed."
msgstr ""
+" Als de gewenste printer automatisch gevonden is, kies hem dan eenvoudigweg "
+"uit de lijst en voeg zonodig de gebruikersnaam, wachtwoord en/of werkgroep "
+"toe."
-#: ../../printerdrake.pm_.c:739
+#: ../../printerdrake.pm_.c:846
msgid "SMB server host"
msgstr "SMB-server host"
-#: ../../printerdrake.pm_.c:740
+#: ../../printerdrake.pm_.c:847
msgid "SMB server IP"
msgstr "SMB-server IP"
-#: ../../printerdrake.pm_.c:741
+#: ../../printerdrake.pm_.c:848
msgid "Share name"
msgstr "Sharenaam"
-#: ../../printerdrake.pm_.c:744
+#: ../../printerdrake.pm_.c:851
msgid "Workgroup"
msgstr "Werkgroep"
-#: ../../printerdrake.pm_.c:746
-#, fuzzy
+#: ../../printerdrake.pm_.c:853
msgid "Auto-detected"
-msgstr "Autodetecteren"
+msgstr "Automatisch bespeurd"
-#: ../../printerdrake.pm_.c:757
+#: ../../printerdrake.pm_.c:864
msgid "Either the server name or the server's IP must be given!"
msgstr "Ofwel de servernaam ofwel het IP van de server moet ingevoerd worden!"
-#: ../../printerdrake.pm_.c:761
+#: ../../printerdrake.pm_.c:868
msgid "Samba share name missing!"
msgstr "Naam van Samba-share is afwezig!"
-#: ../../printerdrake.pm_.c:767
+#: ../../printerdrake.pm_.c:874
msgid "SECURITY WARNING!"
msgstr "VEILIGHEIDS WAARSCHUWING!"
-#: ../../printerdrake.pm_.c:768
+#: ../../printerdrake.pm_.c:875
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -8358,7 +8776,7 @@ msgstr ""
"Printerdrake.\n"
"\n"
-#: ../../printerdrake.pm_.c:778
+#: ../../printerdrake.pm_.c:885
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -8371,7 +8789,7 @@ msgstr ""
"Printerdrake.\n"
"\n"
-#: ../../printerdrake.pm_.c:781
+#: ../../printerdrake.pm_.c:888
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
@@ -8384,11 +8802,11 @@ msgstr ""
"Weet U zeker dat U het instellen van deze printer wilt vervolgen zoals U nu "
"doet ?"
-#: ../../printerdrake.pm_.c:853
+#: ../../printerdrake.pm_.c:960
msgid "NetWare Printer Options"
msgstr "NetWare Printer-Opties"
-#: ../../printerdrake.pm_.c:854
+#: ../../printerdrake.pm_.c:961
msgid ""
"To print on a NetWare printer, you need to provide the NetWare print server "
"name (Note! it may be different from its TCP/IP hostname!) as well as the "
@@ -8400,70 +8818,71 @@ msgstr ""
"alsook de naam van de printerwachtrij waar u toegang tot wilt en, indien "
"nodig, een gebruikersnaam en wachtwoord."
-#: ../../printerdrake.pm_.c:855
+#: ../../printerdrake.pm_.c:962
msgid "Printer Server"
msgstr "Printer Server"
-#: ../../printerdrake.pm_.c:856
+#: ../../printerdrake.pm_.c:963
msgid "Print Queue Name"
msgstr "Naam van de printerwachtrij"
-#: ../../printerdrake.pm_.c:861
+#: ../../printerdrake.pm_.c:968
msgid "NCP server name missing!"
msgstr "NCP-servernaam is afwezig!"
-#: ../../printerdrake.pm_.c:865
+#: ../../printerdrake.pm_.c:972
msgid "NCP queue name missing!"
msgstr "NCP-wachtrijnaam is afwezig!"
-#: ../../printerdrake.pm_.c:932 ../../printerdrake.pm_.c:952
-#, fuzzy, c-format
+#: ../../printerdrake.pm_.c:1039 ../../printerdrake.pm_.c:1059
+#, c-format
msgid ", host \"%s\", port %s"
-msgstr ", TCP/IP host \"%s\", poort %s"
+msgstr ", host \"%s\", poort %s"
-#: ../../printerdrake.pm_.c:935 ../../printerdrake.pm_.c:955
-#, fuzzy, c-format
+#: ../../printerdrake.pm_.c:1042 ../../printerdrake.pm_.c:1062
+#, c-format
msgid "Host \"%s\", port %s"
-msgstr ", TCP/IP host \"%s\", poort %s"
+msgstr "Host \"%s\", poort %s"
-#: ../../printerdrake.pm_.c:975
+#: ../../printerdrake.pm_.c:1082
msgid "TCP/Socket Printer Options"
msgstr "TCP/Socket Printer opties"
-#: ../../printerdrake.pm_.c:977
+#: ../../printerdrake.pm_.c:1084
msgid ""
"Choose one of the auto-detected printers from the list or enter the hostname "
"or IP and the optional port number (default is 9100) into the input fields."
msgstr ""
+"Kies Ă©Ă©n van de automatisch bespeurde printers uit de lijst of vul de "
+"hostnaam / IP-adres en optioneel het poortnummer (standaard 9100) in op de "
+"invoervelden."
-#: ../../printerdrake.pm_.c:978
-#, fuzzy
+#: ../../printerdrake.pm_.c:1085
msgid ""
"To print to a TCP or socket printer, you need to provide the host name or IP "
"of the printer and optionally the port number (default is 9100). On HP "
"JetDirect servers the port number is usually 9100, on other servers it can "
"vary. See the manual of your hardware."
msgstr ""
-"Om naar een TCP- of socketprinter af te drukken, dient u de computernaam van "
-"de printer en zonodig het poortnummer op te geven. Op HP JetDirect-servers "
-"is het poortnummer over het algemeen 9100, op andere servers kan het "
-"variëren. Kijk voor de zekerheid naar het handboek van uw hardware."
+"Om naar een TCP- of socketprinter af te drukken, dient u de hostnaam of IP-"
+"adres van de printer en zonodig het poortnummer op te geven (standaardwaarde "
+"is 9100). Op HP JetDirect-servers is het poortnummer over het algemeen 9100, "
+"op andere servers kan het variëren. Kijk voor de zekerheid in het handboek "
+"van uw apparatuur."
-#: ../../printerdrake.pm_.c:983
-#, fuzzy
+#: ../../printerdrake.pm_.c:1090
msgid "Printer host name or IP missing!"
-msgstr "Printer computernaam is afwezig!"
+msgstr "Printer-hostnaam of IP-adres ontbreekt!"
-#: ../../printerdrake.pm_.c:1005
-#, fuzzy
+#: ../../printerdrake.pm_.c:1112
msgid "Printer host name or IP"
-msgstr "Printer computernaam"
+msgstr "Printer-hostaam of IP-adres"
-#: ../../printerdrake.pm_.c:1054 ../../printerdrake.pm_.c:1056
+#: ../../printerdrake.pm_.c:1160 ../../printerdrake.pm_.c:1162
msgid "Printer Device URI"
msgstr "Printerapparaat URI"
-#: ../../printerdrake.pm_.c:1055
+#: ../../printerdrake.pm_.c:1161
msgid ""
"You can specify directly the URI to access the printer. The URI must fulfill "
"either the CUPS or the Foomatic specifications. Note that not all URI types "
@@ -8473,11 +8892,11 @@ msgstr ""
"voldoen aan ofwel de CUPS-, ofwel de Foomatic specificaties. Let op dat\n"
"niet alle URI-typen door alle \"spoolers\" ondersteund worden."
-#: ../../printerdrake.pm_.c:1070
+#: ../../printerdrake.pm_.c:1176
msgid "A valid URI must be entered!"
msgstr "Een geldige URI moet worden ingevoerd!"
-#: ../../printerdrake.pm_.c:1402
+#: ../../printerdrake.pm_.c:1515
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
"Location fields do not need to be filled in. They are comments for the users."
@@ -8486,27 +8905,27 @@ msgstr ""
"Beschrijving- en Locatie-velden behoeven niet te worden ingevuld. Dit zijn "
"opmerkingen voor de gebruikers."
-#: ../../printerdrake.pm_.c:1403
+#: ../../printerdrake.pm_.c:1516
msgid "Name of printer"
msgstr "Naam van de printer"
-#: ../../printerdrake.pm_.c:1405
+#: ../../printerdrake.pm_.c:1518
msgid "Location"
msgstr "Locatie"
-#: ../../printerdrake.pm_.c:1416 ../../printerdrake.pm_.c:1536
+#: ../../printerdrake.pm_.c:1530 ../../printerdrake.pm_.c:1652
msgid "Reading printer database..."
msgstr "Bezig met lezen van printer-database..."
-#: ../../printerdrake.pm_.c:1419
+#: ../../printerdrake.pm_.c:1534
msgid "Preparing printer database..."
msgstr "Bezig met voorbereiden van printer-database..."
-#: ../../printerdrake.pm_.c:1516
+#: ../../printerdrake.pm_.c:1631
msgid "Your printer model"
msgstr "Uw printermodel"
-#: ../../printerdrake.pm_.c:1517
+#: ../../printerdrake.pm_.c:1632
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -8532,24 +8951,24 @@ msgstr ""
"\n"
"%s"
-#: ../../printerdrake.pm_.c:1522 ../../printerdrake.pm_.c:1525
+#: ../../printerdrake.pm_.c:1637 ../../printerdrake.pm_.c:1640
msgid "The model is correct"
msgstr "Het model is juist"
-#: ../../printerdrake.pm_.c:1523 ../../printerdrake.pm_.c:1524
-#: ../../printerdrake.pm_.c:1527
+#: ../../printerdrake.pm_.c:1638 ../../printerdrake.pm_.c:1639
+#: ../../printerdrake.pm_.c:1642
msgid "Select model manually"
msgstr "Handmatig model selecteren"
-#: ../../printerdrake.pm_.c:1543
+#: ../../printerdrake.pm_.c:1659
msgid "Printer model selection"
msgstr "Selectie van printer-model"
-#: ../../printerdrake.pm_.c:1544
+#: ../../printerdrake.pm_.c:1660
msgid "Which printer model do you have?"
msgstr "Welk model printer heeft u?"
-#: ../../printerdrake.pm_.c:1545
+#: ../../printerdrake.pm_.c:1661
msgid ""
"\n"
"\n"
@@ -8563,7 +8982,7 @@ msgstr ""
"correct heeft uitgevoerd. Zoek het juiste model in de lijst indien de "
"selectie staat op een onjuist model, of op \"Raw printer\"."
-#: ../../printerdrake.pm_.c:1548
+#: ../../printerdrake.pm_.c:1664
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
@@ -8571,11 +8990,11 @@ msgstr ""
"Indien uw printer niet getoond wordt, kies dan een compatibel model (zie uw "
"printerhandleiding) of Ă©Ă©n die er op lijkt."
-#: ../../printerdrake.pm_.c:1624
+#: ../../printerdrake.pm_.c:1741
msgid "OKI winprinter configuration"
msgstr "OKI winprinter-configuratie"
-#: ../../printerdrake.pm_.c:1625
+#: ../../printerdrake.pm_.c:1742
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -8592,11 +9011,11 @@ msgstr ""
"printer niet werken. De instelling van het verbindingstype wordt door het "
"stuurprogramma genegeerd."
-#: ../../printerdrake.pm_.c:1668 ../../printerdrake.pm_.c:1695
+#: ../../printerdrake.pm_.c:1785 ../../printerdrake.pm_.c:1812
msgid "Lexmark inkjet configuration"
msgstr "Lexmark inkjet-configuratie"
-#: ../../printerdrake.pm_.c:1669
+#: ../../printerdrake.pm_.c:1786
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
"no printers on remote machines or print server boxes. Please connect your "
@@ -8608,17 +9027,17 @@ msgstr ""
"printservers. Gelieve uw printer aan een lokale poort te verbinden of hem te "
"configureren op de machine waaraan hij is verbonden."
-#: ../../printerdrake.pm_.c:1696
+#: ../../printerdrake.pm_.c:1813
+#, fuzzy
msgid ""
"To be able to print with your Lexmark inkjet and this configuration, you "
"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
-"com/). Go to the US site and click on the \"Drivers\" button. Then choose "
-"your model and afterwards \"Linux\" as operating system. The drivers come as "
-"RPM packages or shell scripts with interactive graphical installation. You "
-"do not need to do this configuration by the graphical frontends. Cancel "
-"directly after the license agreement. Then print printhead alignment pages "
-"with \"lexmarkmaintain\" and adjust the head alignment settings with this "
-"program."
+"com/). Click on the \"Drivers\" link. Then choose your model and afterwards "
+"\"Linux\" as operating system. The drivers come as RPM packages or shell "
+"scripts with interactive graphical installation. You do not need to do this "
+"configuration by the graphical frontends. Cancel directly after the license "
+"agreement. Then print printhead alignment pages with \"lexmarkmaintain\" and "
+"adjust the head alignment settings with this program."
msgstr ""
"Om met uw Lexmark inkjet en deze configuratie te kunnen afdrukken, heeft u "
"de inkjet-printerstuurprogramma's nodig die door Lexmark (http://www.lexmark."
@@ -8631,7 +9050,34 @@ msgstr ""
"uitlijningpagina's af met \"lexmarkmaintain\" en pas de "
"kopuitlijningsinstellingen aan met dit programma."
-#: ../../printerdrake.pm_.c:1912
+#: ../../printerdrake.pm_.c:1816
+msgid "GDI Laser Printer using the Zenographics ZJ-Stream Format"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:1817
+msgid ""
+"Your printer belongs to the group of GDI laser printers (winprinters) sold "
+"by different manufacturers which uses the Zenographics ZJ-stream raster "
+"format for the data sent to the printer. The driver for these printers is "
+"still in a very early development stage and so it will perhaps not always "
+"work properly. Especially it is possible that the printer only works when "
+"you choose the A4 paper size.\n"
+"\n"
+"Some of these printers, as the HP LaserJet 1000, for which this driver was "
+"originally created, need their firmware to be uploaded to them after they "
+"are turned on. In the case of the HP LaserJet 1000 you have to search the "
+"printer's Windows driver CD or your Windows partition for the file "
+"\"sihp1000.img\" and upload the file to the printer with one of the "
+"following commands:\n"
+"\n"
+" lpr -o raw sihp1000.img\n"
+" cat sihp1000.img > /dev/usb/lp0\n"
+"\n"
+"The first command can be given by any normal user, the second must be given "
+"as root. After having done so you can print normally.\n"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:2040
msgid ""
"Printer default settings\n"
"\n"
@@ -8647,22 +9093,22 @@ msgstr ""
"duplex-eenheid, extra trays) juist ingesteld zijn. Let op dat een zeer hoge "
"printkwaliteit het afdrukken behoorlijk kan vertragen."
-#: ../../printerdrake.pm_.c:1921
+#: ../../printerdrake.pm_.c:2049
#, c-format
msgid "Option %s must be an integer number!"
msgstr "Optie %s moet een geheel getal zijn!"
-#: ../../printerdrake.pm_.c:1925
+#: ../../printerdrake.pm_.c:2053
#, c-format
msgid "Option %s must be a number!"
msgstr "Optie %s moet een getal zijn!"
-#: ../../printerdrake.pm_.c:1930
+#: ../../printerdrake.pm_.c:2058
#, c-format
msgid "Option %s out of range!"
msgstr "Optie %s valt buiten het bereik!"
-#: ../../printerdrake.pm_.c:1969
+#: ../../printerdrake.pm_.c:2097
#, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
@@ -8671,11 +9117,11 @@ msgstr ""
"Wenst u deze printer (\"%s\")\n"
"als standaard printer in te stellen?"
-#: ../../printerdrake.pm_.c:1986
+#: ../../printerdrake.pm_.c:2120
msgid "Test pages"
msgstr "Test-pagina's"
-#: ../../printerdrake.pm_.c:1987
+#: ../../printerdrake.pm_.c:2121
msgid ""
"Please select the test pages you want to print.\n"
"Note: the photo test page can take a rather long time to get printed and on "
@@ -8688,39 +9134,39 @@ msgstr ""
"wellicht helemaal niet afgedrukt. In de meeste gevallen is het voldoende om "
"de standaard test-pagina af te drukken."
-#: ../../printerdrake.pm_.c:1991
+#: ../../printerdrake.pm_.c:2125
msgid "No test pages"
msgstr "Geen test-pagina's"
-#: ../../printerdrake.pm_.c:1992
+#: ../../printerdrake.pm_.c:2126
msgid "Print"
msgstr "Afdrukken"
-#: ../../printerdrake.pm_.c:1994
+#: ../../printerdrake.pm_.c:2183
msgid "Standard test page"
msgstr "Standaard testpagina"
-#: ../../printerdrake.pm_.c:1997
+#: ../../printerdrake.pm_.c:2186
msgid "Alternative test page (Letter)"
msgstr "Alternatieve test-pagina (Letter-formaat)"
-#: ../../printerdrake.pm_.c:2000
+#: ../../printerdrake.pm_.c:2189
msgid "Alternative test page (A4)"
msgstr "Alternatieve test-pagina (A4-formaat)"
-#: ../../printerdrake.pm_.c:2002
+#: ../../printerdrake.pm_.c:2191
msgid "Photo test page"
msgstr "Foto-testpagina"
-#: ../../printerdrake.pm_.c:2006
+#: ../../printerdrake.pm_.c:2195
msgid "Do not print any test page"
msgstr "Druk geen enkele testpagina af"
-#: ../../printerdrake.pm_.c:2014 ../../printerdrake.pm_.c:2166
+#: ../../printerdrake.pm_.c:2204 ../../printerdrake.pm_.c:2357
msgid "Printing test page(s)..."
msgstr "Bezig met afdrukken van testpagina(s)..."
-#: ../../printerdrake.pm_.c:2039
+#: ../../printerdrake.pm_.c:2229
#, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -8735,7 +9181,7 @@ msgstr ""
"%s\n"
"\n"
-#: ../../printerdrake.pm_.c:2043
+#: ../../printerdrake.pm_.c:2233
msgid ""
"Test page(s) have been sent to the printer.\n"
"It may take some time before the printer starts.\n"
@@ -8743,15 +9189,15 @@ msgstr ""
"Testpagina's) werd(en) naar de printer gestuurd.\n"
"Het kan even duren voordat het eigenlijke afdrukken begint.\n"
-#: ../../printerdrake.pm_.c:2050
+#: ../../printerdrake.pm_.c:2240
msgid "Did it work properly?"
msgstr "Werkt het afdrukken naar behoren?"
-#: ../../printerdrake.pm_.c:2072 ../../printerdrake.pm_.c:3191
+#: ../../printerdrake.pm_.c:2262 ../../printerdrake.pm_.c:3416
msgid "Raw printer"
msgstr "Kale ('raw') printer"
-#: ../../printerdrake.pm_.c:2098
+#: ../../printerdrake.pm_.c:2288
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -8765,7 +9211,7 @@ msgstr ""
"grafische hulpprogramma's stellen u in staat om de printer te kiezen en "
"gemakkelijk de opties te wijzigen.\n"
-#: ../../printerdrake.pm_.c:2100
+#: ../../printerdrake.pm_.c:2290
msgid ""
"These commands you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications, but here do not supply the file name "
@@ -8775,8 +9221,8 @@ msgstr ""
"printdialogen van veel applicaties. Maar vul daar dan geen bestandsnaam in "
"omdat het af te drukken bestand wordt geleverd door de applicatie.\n"
-#: ../../printerdrake.pm_.c:2103 ../../printerdrake.pm_.c:2120
-#: ../../printerdrake.pm_.c:2130
+#: ../../printerdrake.pm_.c:2293 ../../printerdrake.pm_.c:2310
+#: ../../printerdrake.pm_.c:2320
#, c-format
msgid ""
"\n"
@@ -8789,19 +9235,19 @@ msgstr ""
"voor een specifieke printtaak. Voeg de gewenste instellingen eenvoudigweg "
"toe aan de commandoregel, bijvoorbeeld \"%s <bestand>\"."
-#: ../../printerdrake.pm_.c:2106 ../../printerdrake.pm_.c:2146
-#, fuzzy, c-format
+#: ../../printerdrake.pm_.c:2296 ../../printerdrake.pm_.c:2336
+#, c-format
msgid ""
"To know about the options available for the current printer read either the "
"list shown below or click on the \"Print option list\" button.%s%s\n"
"\n"
msgstr ""
"Om de beschikbare opties voor de huidige printer te weten te komen, kunt u "
-"ofwel de lijsthieronder lezen, ofwel klikken op de knop \"Lijst van print-"
-"opties\".%s\n"
+"ofwel de lijst hieronder lezen, ofwel klikken op de knop \"Lijst van print-"
+"opties\".%s%s\n"
"\n"
-#: ../../printerdrake.pm_.c:2110
+#: ../../printerdrake.pm_.c:2300
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
@@ -8809,7 +9255,7 @@ msgstr ""
"Dit is een lijst van de beschikbare opties voor de huidige printer:\n"
"\n"
-#: ../../printerdrake.pm_.c:2115 ../../printerdrake.pm_.c:2125
+#: ../../printerdrake.pm_.c:2305 ../../printerdrake.pm_.c:2315
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
@@ -8818,8 +9264,8 @@ msgstr ""
"Om een bestand vanaf de commandoregel (terminalvenster) af te drukken, \n"
"gebruikt u het commando \"%s <bestand>\".\n"
-#: ../../printerdrake.pm_.c:2117 ../../printerdrake.pm_.c:2127
-#: ../../printerdrake.pm_.c:2137
+#: ../../printerdrake.pm_.c:2307 ../../printerdrake.pm_.c:2317
+#: ../../printerdrake.pm_.c:2327
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
@@ -8829,7 +9275,7 @@ msgstr ""
"printdialogen van veel applicaties. Maar vul daar dan geen bestandsnaam in "
"omdat het af te drukken bestand wordt geleverd door de applicatie. \n"
-#: ../../printerdrake.pm_.c:2122 ../../printerdrake.pm_.c:2132
+#: ../../printerdrake.pm_.c:2312 ../../printerdrake.pm_.c:2322
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
@@ -8837,7 +9283,7 @@ msgstr ""
"Om een lijst te verkrijgen van alle beschikbare opties voor de huidige "
"printer, klikt u op de knop \"Lijst van print-opties\"."
-#: ../../printerdrake.pm_.c:2135
+#: ../../printerdrake.pm_.c:2325
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
@@ -8846,7 +9292,7 @@ msgstr ""
"Om een bestand vanaf de commandoregel (terminalvenster) af te drukken, \n"
"gebruikt u het commando \"%s <bestand>\" of \"%s <bestand>\".\n"
-#: ../../printerdrake.pm_.c:2139
+#: ../../printerdrake.pm_.c:2329
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -8860,7 +9306,7 @@ msgstr ""
"\"STOP Printer!\", welke onmiddelijk alle printtaken stopt wanneer u er op "
"klikt. Dit is handig bijvoorbeeld in het geval van papierstoringen.\n"
-#: ../../printerdrake.pm_.c:2143
+#: ../../printerdrake.pm_.c:2333
#, c-format
msgid ""
"\n"
@@ -8873,41 +9319,41 @@ msgstr ""
"van de opties voor een specifieke printtaak. Voeg de gewenste instellingen "
"eenvoudigweg toe aan de commandoregel, bijvoorbeeld \"%s <bestand>\".\n"
-#: ../../printerdrake.pm_.c:2153
-#, fuzzy, c-format
+#: ../../printerdrake.pm_.c:2343
+#, c-format
msgid "Printing/Scanning/Photo Cards on \"%s\""
-msgstr "Bezig met afdrukken/scannen op \"%s\""
+msgstr "Bezig met afdrukken/scannen/fotokaarten op \"%s\""
-#: ../../printerdrake.pm_.c:2154
+#: ../../printerdrake.pm_.c:2344
#, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "Bezig met afdrukken/scannen op \"%s\""
-#: ../../printerdrake.pm_.c:2156
-#, fuzzy, c-format
+#: ../../printerdrake.pm_.c:2346
+#, c-format
msgid "Printing/Photo Card Access on \"%s\""
-msgstr "Bezig met afdrukken/scannen op \"%s\""
+msgstr "Bezig met afdrukken/fotokaart-benadering op \"%s\""
-#: ../../printerdrake.pm_.c:2157
+#: ../../printerdrake.pm_.c:2347
#, c-format
msgid "Printing on the printer \"%s\""
msgstr "Bezig met afdrukken op printer \"%s\""
-#: ../../printerdrake.pm_.c:2160 ../../printerdrake.pm_.c:2163
-#: ../../printerdrake.pm_.c:2164 ../../printerdrake.pm_.c:2165
-#: ../../printerdrake.pm_.c:3175 ../../standalone/drakTermServ_.c:248
-#: ../../standalone/drakbackup_.c:1485 ../../standalone/drakbackup_.c:3530
-#: ../../standalone/drakbug_.c:129 ../../standalone/drakfont_.c:705
+#: ../../printerdrake.pm_.c:2350 ../../printerdrake.pm_.c:2353
+#: ../../printerdrake.pm_.c:2354 ../../printerdrake.pm_.c:2355
+#: ../../printerdrake.pm_.c:3400 ../../standalone/drakTermServ_.c:248
+#: ../../standalone/drakbackup_.c:1560 ../../standalone/drakbackup_.c:4208
+#: ../../standalone/drakbug_.c:130 ../../standalone/drakfont_.c:705
#: ../../standalone/drakfont_.c:1014
msgid "Close"
msgstr "Sluiten"
-#: ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2353
msgid "Print option list"
msgstr "Lijst van print-opties"
-#: ../../printerdrake.pm_.c:2182
-#, fuzzy, c-format
+#: ../../printerdrake.pm_.c:2373
+#, c-format
msgid ""
"Your multi-function device was configured automatically to be able to scan. "
"Now you can scan with \"scanimage\" (\"scanimage -d hp:%s\" to specify the "
@@ -8919,18 +9365,17 @@ msgid ""
"\n"
"Do not use \"scannerdrake\" for this device!"
msgstr ""
-"Uw HP multifunctioneel apparaat is automatisch geconfigureerd om te kunnen "
+"Uw multifunctioneel apparaat is automatisch geconfigureerd om te kunnen "
"scannen. U kunt nu scannen met \"scanimage\" (\"scanimage -d hp:%s\" om de "
-"scanner te specificeren als u er meer dan Ă©Ă©n heeft) vanaf de commandoregel "
+"scanner te specificeren als u er meer dan Ă©Ă©n heeft) vanaf de opdrachtregel "
"of met behulp van de grafische interfaces \"xscanimage\" of \"xsane\". "
"Indien u gebruik maakt van The GIMP, kunt u ook scannen door het juiste punt "
"te kiezen in het \"Bestand\"/\"Importeren\"-menu. U kunt ook \"man scanimage"
-"\" en \"man sane-hp\" aanroepen vanaf de commandoregel om meer informatie te "
-"krijgen.\n"
+"\" aanroepen vanaf de opdrachtregel om meer informatie te krijgen.\n"
"\n"
"Gebruik voor dit apparaat geen \"scannerdrake\"!"
-#: ../../printerdrake.pm_.c:2202
+#: ../../printerdrake.pm_.c:2394
msgid ""
"Your printer was configured automatically to give you access to the photo "
"card drives from your PC. Now you can access your photo cards using the "
@@ -8942,18 +9387,27 @@ msgid ""
"can switch between drive letters with the field at the upper-right corners "
"of the file lists."
msgstr ""
-
-#: ../../printerdrake.pm_.c:2223 ../../printerdrake.pm_.c:2673
-#: ../../printerdrake.pm_.c:2945
+"Uw printer is automatisch geconfigureerd zodat u toegang krijgt tot de "
+"fotokaart-stations vanaf uw PC. Nu kunt u uw fotokaarten benaderen met de "
+"toepassing \"MtoolsFM\" (Menu: \"Toepassingen\" -> \"Bestandsgereedschappen"
+"\" -> \"MTools-bestandsbeheer\") of met de opdrachtregel-hulpprogramma's "
+"\"mtools\" (geef \"man mtools\" op de opdrachtregel voor meer info). U kunt "
+"het bestandssysteem van de kaart vinden onder stationsletter \"p:\", of "
+"opvolgende stationsletters indien u meer dan Ă©Ă©n HP-priner met fotokaart-"
+"stations heeft. In \"MtoolsFM\" kunt u schakelen tussen stationsletters met "
+"het veld rechtsbovenaan de bestandslijsten."
+
+#: ../../printerdrake.pm_.c:2416 ../../printerdrake.pm_.c:2875
+#: ../../printerdrake.pm_.c:3170
msgid "Reading printer data..."
msgstr "Bezig met lezen van printer-informatie..."
-#: ../../printerdrake.pm_.c:2243 ../../printerdrake.pm_.c:2271
-#: ../../printerdrake.pm_.c:2306
+#: ../../printerdrake.pm_.c:2436 ../../printerdrake.pm_.c:2464
+#: ../../printerdrake.pm_.c:2499
msgid "Transfer printer configuration"
msgstr "Printer-configuratie overzetten"
-#: ../../printerdrake.pm_.c:2244
+#: ../../printerdrake.pm_.c:2437
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -8968,7 +9422,7 @@ msgstr ""
"worden dan overgenomen, maar printtaken zullen niet worden overgezet.\n"
"Niet alle wachtrijen kunnen worden overgezet, vanwege de volgende redenen:\n"
-#: ../../printerdrake.pm_.c:2247
+#: ../../printerdrake.pm_.c:2440
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
@@ -8976,7 +9430,7 @@ msgstr ""
"CUPS ondersteunt geen printers op Novell-servers of printers die gegevens in "
"een vrije vorm-opdracht versturen.\n"
-#: ../../printerdrake.pm_.c:2249
+#: ../../printerdrake.pm_.c:2442
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
@@ -8984,11 +9438,11 @@ msgstr ""
"PDQ ondersteunt alleen printers aan deze computer, LPD printers op afstand, "
"en Socket/TCP printers.\n"
-#: ../../printerdrake.pm_.c:2251
+#: ../../printerdrake.pm_.c:2444
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr "LPD en LPRng ondersteunen geen IPP printers.\n"
-#: ../../printerdrake.pm_.c:2253
+#: ../../printerdrake.pm_.c:2446
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
@@ -8996,7 +9450,7 @@ msgstr ""
"Daarbij komt dat wachtrijen die niet met dit programma of met \"foomatic-"
"configure\" zijn aangemaakt, niet kunnen worden overgezet."
-#: ../../printerdrake.pm_.c:2254
+#: ../../printerdrake.pm_.c:2447
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
@@ -9006,7 +9460,7 @@ msgstr ""
"Ook printers geconfigureerd met door hun fabrikant geleverde PPD-bestanden, "
"of met eigen CUPS drivers, kunnen niet worden overgezet."
-#: ../../printerdrake.pm_.c:2255
+#: ../../printerdrake.pm_.c:2448
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
@@ -9016,15 +9470,15 @@ msgstr ""
"Markeer de printers die u wilt overzetten en klik \n"
"\"Overzetten\"."
-#: ../../printerdrake.pm_.c:2258
+#: ../../printerdrake.pm_.c:2451
msgid "Do not transfer printers"
msgstr "De printers niet overzetten"
-#: ../../printerdrake.pm_.c:2259 ../../printerdrake.pm_.c:2276
+#: ../../printerdrake.pm_.c:2452 ../../printerdrake.pm_.c:2469
msgid "Transfer"
msgstr "Overzetten"
-#: ../../printerdrake.pm_.c:2272
+#: ../../printerdrake.pm_.c:2465
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -9035,13 +9489,13 @@ msgstr ""
"Klik op \"Overzetten\" om deze te overschrijven.\n"
"U kunt ook een nieuwe naam ingeven of deze printer overslaan."
-#: ../../printerdrake.pm_.c:2280
+#: ../../printerdrake.pm_.c:2473
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr ""
"Een printernaam mag alleen letters, getallen en een laag liggend streepje "
"bevatten"
-#: ../../printerdrake.pm_.c:2285
+#: ../../printerdrake.pm_.c:2478
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
@@ -9050,16 +9504,16 @@ msgstr ""
"De printer \"%s\" bestaat reeds, \n"
"weet u zeker dat u de configuratie ervan wilt overschrijven?"
-#: ../../printerdrake.pm_.c:2293
+#: ../../printerdrake.pm_.c:2486
msgid "New printer name"
msgstr "Nieuwe printernaam"
-#: ../../printerdrake.pm_.c:2296
+#: ../../printerdrake.pm_.c:2489
#, c-format
msgid "Transferring %s..."
msgstr "Bezig met overzetten van %s ..."
-#: ../../printerdrake.pm_.c:2307
+#: ../../printerdrake.pm_.c:2500
#, c-format
msgid ""
"You have transferred your former default printer (\"%s\"), Should it be also "
@@ -9068,29 +9522,29 @@ msgstr ""
"U heeft uw vorige standaardprinter (\"%s\") overgezet. Moet dit ook de "
"standaardprinter worden in het nieuwe printsysteem %s?"
-#: ../../printerdrake.pm_.c:2316
+#: ../../printerdrake.pm_.c:2510
msgid "Refreshing printer data..."
msgstr "Bezig met verversen van printergegevens..."
-#: ../../printerdrake.pm_.c:2324 ../../printerdrake.pm_.c:2395
-#: ../../printerdrake.pm_.c:2407
+#: ../../printerdrake.pm_.c:2518 ../../printerdrake.pm_.c:2590
+#: ../../printerdrake.pm_.c:2602
msgid "Configuration of a remote printer"
msgstr "Printer-op-afstand configureren"
-#: ../../printerdrake.pm_.c:2325
+#: ../../printerdrake.pm_.c:2519
msgid "Starting network..."
msgstr "Bezig met inschakelen van het netwerk..."
-#: ../../printerdrake.pm_.c:2359 ../../printerdrake.pm_.c:2363
-#: ../../printerdrake.pm_.c:2365
+#: ../../printerdrake.pm_.c:2554 ../../printerdrake.pm_.c:2558
+#: ../../printerdrake.pm_.c:2560
msgid "Configure the network now"
msgstr "Configureer het netwerk nu"
-#: ../../printerdrake.pm_.c:2360
+#: ../../printerdrake.pm_.c:2555
msgid "Network functionality not configured"
msgstr "Netwerk-functionaliteit niet geconfigureerd"
-#: ../../printerdrake.pm_.c:2361
+#: ../../printerdrake.pm_.c:2556
msgid ""
"You are going to configure a remote printer. This needs working network "
"access, but your network is not configured yet. If you go on without network "
@@ -9102,11 +9556,11 @@ msgstr ""
"Als u verder wilt gaan zonder netwerkconfiguratie, zult u niet in staat zijn "
"om de printer te gebruiken die u nu configureert. Hoe wenst u verder te gaan?"
-#: ../../printerdrake.pm_.c:2364
+#: ../../printerdrake.pm_.c:2559
msgid "Go on without configuring the network"
msgstr "Doorgaan zonder configureren van netwerk"
-#: ../../printerdrake.pm_.c:2397
+#: ../../printerdrake.pm_.c:2592
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -9123,7 +9577,7 @@ msgstr ""
"printer instellen, ook met het Mandrake Control Center, onderdeel \"Hardware"
"\"/\"Printer\""
-#: ../../printerdrake.pm_.c:2398
+#: ../../printerdrake.pm_.c:2593
msgid ""
"The network access was not running and could not be started. Please check "
"your configuration and your hardware. Then try to configure your remote "
@@ -9133,25 +9587,25 @@ msgstr ""
"Gelieve uw configuratie en uw hardware na te kijken. Probeert u daarna "
"opnieuw uw printer-op-afstand te configureren."
-#: ../../printerdrake.pm_.c:2408
+#: ../../printerdrake.pm_.c:2603
msgid "Restarting printing system..."
msgstr "Bezig met herstarten van het printsysteem..."
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2641
msgid "high"
msgstr "hoog"
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2641
msgid "paranoid"
msgstr "paranoĂŻde"
-#: ../../printerdrake.pm_.c:2447
+#: ../../printerdrake.pm_.c:2642
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr ""
"Bezig met installeren van een printsysteem in het %s beveiligingsniveau"
-#: ../../printerdrake.pm_.c:2448
+#: ../../printerdrake.pm_.c:2643
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -9176,11 +9630,11 @@ msgstr ""
"\n"
"Weet u zeker dat u het afdrukken wilt configureren op deze computer?"
-#: ../../printerdrake.pm_.c:2480
+#: ../../printerdrake.pm_.c:2675
msgid "Starting the printing system at boot time"
msgstr "Het printsysteem zal bij het opstarten worden ingeschakeld"
-#: ../../printerdrake.pm_.c:2481
+#: ../../printerdrake.pm_.c:2676
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -9203,75 +9657,71 @@ msgstr ""
"Wilt u dat het automatisch inschakelen van het printsysteem weer wordt "
"aangezet?"
-#: ../../printerdrake.pm_.c:2504 ../../printerdrake.pm_.c:2544
-#: ../../printerdrake.pm_.c:2581 ../../printerdrake.pm_.c:2621
-#: ../../printerdrake.pm_.c:2733
+#: ../../printerdrake.pm_.c:2700 ../../printerdrake.pm_.c:2741
+#: ../../printerdrake.pm_.c:2780 ../../printerdrake.pm_.c:2822
+#: ../../printerdrake.pm_.c:2943
msgid "Checking installed software..."
msgstr "Bezig met nagaan welke software geĂŻnstalleerd is..."
-#: ../../printerdrake.pm_.c:2548
+#: ../../printerdrake.pm_.c:2746
msgid "Removing LPRng..."
msgstr "Bezig met verwijderen van LPRng..."
-#: ../../printerdrake.pm_.c:2585
+#: ../../printerdrake.pm_.c:2785
msgid "Removing LPD..."
msgstr "Bezig met verwijderen van LPD..."
-#: ../../printerdrake.pm_.c:2657
+#: ../../printerdrake.pm_.c:2858
msgid "Select Printer Spooler"
msgstr "Selecteer printer-spooler"
-#: ../../printerdrake.pm_.c:2658
+#: ../../printerdrake.pm_.c:2859
msgid "Which printing system (spooler) do you want to use?"
msgstr "Welk printsysteem (\"spooler\") wilt u gebruiken?"
-#: ../../printerdrake.pm_.c:2691
+#: ../../printerdrake.pm_.c:2895
#, c-format
msgid "Configuring printer \"%s\"..."
msgstr "Bezig met instellen van printer \"%s\" ..."
-#: ../../printerdrake.pm_.c:2704
+#: ../../printerdrake.pm_.c:2909
msgid "Installing Foomatic..."
msgstr "Bezig met installeren van Foomatic..."
-#: ../../printerdrake.pm_.c:2769 ../../printerdrake.pm_.c:2808
-#: ../../printerdrake.pm_.c:3192 ../../printerdrake.pm_.c:3262
+#: ../../printerdrake.pm_.c:2979 ../../printerdrake.pm_.c:3020
+#: ../../printerdrake.pm_.c:3417 ../../printerdrake.pm_.c:3490
msgid "Printer options"
msgstr "Printer-opties"
-#: ../../printerdrake.pm_.c:2778
-msgid "Preparing PrinterDrake..."
-msgstr "Bezig met het voorbereiden van PrinterDrake..."
+#: ../../printerdrake.pm_.c:2989
+msgid "Preparing Printerdrake..."
+msgstr "Bezig met het voorbereiden van Printerdrake..."
-#: ../../printerdrake.pm_.c:2795 ../../printerdrake.pm_.c:3349
+#: ../../printerdrake.pm_.c:3007 ../../printerdrake.pm_.c:3580
msgid "Configuring applications..."
msgstr "Bezig met instellen van toepassingen ..."
-#: ../../printerdrake.pm_.c:2815
+#: ../../printerdrake.pm_.c:3027
msgid "Would you like to configure printing?"
msgstr "Wenst u een printer in te stellen?"
-#: ../../printerdrake.pm_.c:2827
+#: ../../printerdrake.pm_.c:3039
msgid "Printing system: "
msgstr "Printsysteem:"
-#: ../../printerdrake.pm_.c:2875
-msgid "Printerdrake"
-msgstr "Printerdrake"
-
-#: ../../printerdrake.pm_.c:2879
+#: ../../printerdrake.pm_.c:3099
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; to view information about it; "
"or to make a printer on a remote CUPS server available for Star Office/"
-"OpenOffice.org."
+"OpenOffice.org/GIMP."
msgstr ""
"De volgende printers zijn ingesteld. Dubbelklik op een printer om zijn "
"instellingen te wijzigen; om hem als standaardprinter in te stellen; om "
"informatie erover te bekijken; of om een printer op een CUPS-server op "
-"afstand ter beschikking te stellen in Star Office/OpenOffice.org."
+"afstand ter beschikking te stellen in Star Office/OpenOffice.org/GIMP."
-#: ../../printerdrake.pm_.c:2880
+#: ../../printerdrake.pm_.c:3100
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; or to view information about "
@@ -9281,29 +9731,29 @@ msgstr ""
"instellingen te wijzigen; hem als standaardprinter in te stellen; of om "
"informatie erover te bekijken."
-#: ../../printerdrake.pm_.c:2906
+#: ../../printerdrake.pm_.c:3127
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr ""
"Printerlijst verversen (om alle CUPS printers-op-afstand zichtbaar te maken)"
-#: ../../printerdrake.pm_.c:2924
+#: ../../printerdrake.pm_.c:3145
msgid "Change the printing system"
msgstr "Wijzig het printsysteem"
-#: ../../printerdrake.pm_.c:2929 ../../standalone/drakconnect_.c:277
+#: ../../printerdrake.pm_.c:3150 ../../standalone/drakconnect_.c:277
msgid "Normal Mode"
msgstr "Normale modus"
-#: ../../printerdrake.pm_.c:3085 ../../printerdrake.pm_.c:3135
-#: ../../printerdrake.pm_.c:3343
+#: ../../printerdrake.pm_.c:3310 ../../printerdrake.pm_.c:3360
+#: ../../printerdrake.pm_.c:3573
msgid "Do you want to configure another printer?"
msgstr "Wenst u een andere printer in te stellen?"
-#: ../../printerdrake.pm_.c:3170
+#: ../../printerdrake.pm_.c:3395
msgid "Modify printer configuration"
msgstr "Printer instellingen aanpassen"
-#: ../../printerdrake.pm_.c:3172
+#: ../../printerdrake.pm_.c:3397
#, c-format
msgid ""
"Printer %s\n"
@@ -9312,106 +9762,110 @@ msgstr ""
"Printer %s\n"
"Wat wilt u aanpassen aan deze printer?"
-#: ../../printerdrake.pm_.c:3176
+#: ../../printerdrake.pm_.c:3401
msgid "Do it!"
msgstr "Doe het!"
-#: ../../printerdrake.pm_.c:3181 ../../printerdrake.pm_.c:3236
+#: ../../printerdrake.pm_.c:3406 ../../printerdrake.pm_.c:3461
msgid "Printer connection type"
msgstr "Soort printerverbinding"
-#: ../../printerdrake.pm_.c:3182 ../../printerdrake.pm_.c:3240
+#: ../../printerdrake.pm_.c:3407 ../../printerdrake.pm_.c:3465
msgid "Printer name, description, location"
msgstr "Printernaam, beschrijving, locatie"
-#: ../../printerdrake.pm_.c:3184 ../../printerdrake.pm_.c:3255
+#: ../../printerdrake.pm_.c:3409 ../../printerdrake.pm_.c:3483
msgid "Printer manufacturer, model, driver"
msgstr "Printerfabrikant, model, aansturingsprogramma"
-#: ../../printerdrake.pm_.c:3185 ../../printerdrake.pm_.c:3256
+#: ../../printerdrake.pm_.c:3410 ../../printerdrake.pm_.c:3484
msgid "Printer manufacturer, model"
msgstr "Printerfabrikant, model"
-#: ../../printerdrake.pm_.c:3194 ../../printerdrake.pm_.c:3266
+#: ../../printerdrake.pm_.c:3419 ../../printerdrake.pm_.c:3494
msgid "Set this printer as the default"
msgstr "Stel deze printer in als standaardprinter"
-#: ../../printerdrake.pm_.c:3196 ../../printerdrake.pm_.c:3271
-msgid "Add this printer to Star Office/OpenOffice.org"
-msgstr "Deze printer aan Star Office/OpenOffice.org toevoegen"
+#: ../../printerdrake.pm_.c:3421 ../../printerdrake.pm_.c:3499
+msgid "Add this printer to Star Office/OpenOffice.org/GIMP"
+msgstr "Deze printer aan Star Office/OpenOffice.org/GIMP toevoegen"
-#: ../../printerdrake.pm_.c:3197 ../../printerdrake.pm_.c:3280
-msgid "Remove this printer from Star Office/OpenOffice.org"
-msgstr "Deze printer verwijderen uit Star Office/OpenOffice.org"
+#: ../../printerdrake.pm_.c:3422 ../../printerdrake.pm_.c:3508
+msgid "Remove this printer from Star Office/OpenOffice.org/GIMP"
+msgstr "Deze printer verwijderen uit Star Office/OpenOffice.org/GIMP"
-#: ../../printerdrake.pm_.c:3198 ../../printerdrake.pm_.c:3289
+#: ../../printerdrake.pm_.c:3423 ../../printerdrake.pm_.c:3517
msgid "Print test pages"
msgstr "Druk testpagina('s) af"
-#: ../../printerdrake.pm_.c:3199 ../../printerdrake.pm_.c:3291
+#: ../../printerdrake.pm_.c:3424 ../../printerdrake.pm_.c:3519
msgid "Know how to use this printer"
msgstr "Weet hoe deze printer kan worden gebruikt"
-#: ../../printerdrake.pm_.c:3201 ../../printerdrake.pm_.c:3293
+#: ../../printerdrake.pm_.c:3426 ../../printerdrake.pm_.c:3521
msgid "Remove printer"
msgstr "Printer verwijderen"
-#: ../../printerdrake.pm_.c:3245
+#: ../../printerdrake.pm_.c:3472
#, c-format
msgid "Removing old printer \"%s\"..."
msgstr "Bezig met verwijderen van oude printer \"%s\" ..."
-#: ../../printerdrake.pm_.c:3269
+#: ../../printerdrake.pm_.c:3497
msgid "Default printer"
msgstr "Standaard printer"
-#: ../../printerdrake.pm_.c:3270
+#: ../../printerdrake.pm_.c:3498
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr "De \"%s\"-printer is nu ingesteld als de standaardprinter."
-#: ../../printerdrake.pm_.c:3274 ../../printerdrake.pm_.c:3277
-msgid "Adding printer to Star Office/OpenOffice.org"
-msgstr "Bezig met toevoegen van printer aan Star Office/OpenOffice.org"
+#: ../../printerdrake.pm_.c:3502 ../../printerdrake.pm_.c:3505
+msgid "Adding printer to Star Office/OpenOffice.org/GIMP"
+msgstr "Bezig met toevoegen van printer aan Star Office/OpenOffice.org/GIMP"
-#: ../../printerdrake.pm_.c:3275
+#: ../../printerdrake.pm_.c:3503
#, c-format
msgid ""
-"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
+"The printer \"%s\" was successfully added to Star Office/OpenOffice.org/GIMP."
msgstr ""
-"De printer \"%s\" is succesvol aan Star Office/OpenOffice.org toegevoegd."
+"De printer \"%s\" is succesvol aan Star Office/OpenOffice.org/GIMP "
+"toegevoegd."
-#: ../../printerdrake.pm_.c:3278
+#: ../../printerdrake.pm_.c:3506
#, c-format
-msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
+msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org/GIMP."
msgstr ""
-"Het toevoegen van de printer \"%s\" aan Star Office/OpenOffice.org is "
+"Het toevoegen van de printer \"%s\" aan Star Office/OpenOffice.org/GIMP is "
"mislukt."
-#: ../../printerdrake.pm_.c:3283 ../../printerdrake.pm_.c:3286
-msgid "Removing printer from Star Office/OpenOffice.org"
-msgstr "Bezig met verwijderen van printer uit Star Office/OpenOffice.org"
+#: ../../printerdrake.pm_.c:3511 ../../printerdrake.pm_.c:3514
+msgid "Removing printer from Star Office/OpenOffice.org/GIMP"
+msgstr "Bezig met verwijderen van printer uit Star Office/OpenOffice.org/GIMP"
-#: ../../printerdrake.pm_.c:3284
+#: ../../printerdrake.pm_.c:3512
#, c-format
msgid ""
-"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
+"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org/"
+"GIMP."
msgstr ""
-"De printer \"%s\" is succesvol uit Star Office/OpenOffice.org verwijderd."
+"De printer \"%s\" is succesvol uit Star Office/OpenOffice.org/GIMP "
+"verwijderd."
-#: ../../printerdrake.pm_.c:3287
+#: ../../printerdrake.pm_.c:3515
#, c-format
-msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
+msgid ""
+"Failed to remove the printer \"%s\" from Star Office/OpenOffice.org/GIMP."
msgstr ""
-"Het verwijderen van de printer \"%s\" uit Star Office/OpenOffice.org is "
+"Het verwijderen van de printer \"%s\" uit Star Office/OpenOffice.org/GIMP is "
"mislukt."
-#: ../../printerdrake.pm_.c:3295
+#: ../../printerdrake.pm_.c:3523
#, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr "Weet u zeker dat u de printer \"%s\" wilt verwijderen?"
-#: ../../printerdrake.pm_.c:3297
+#: ../../printerdrake.pm_.c:3527
#, c-format
msgid "Removing printer \"%s\"..."
msgstr "Bezig met verwijderen van printer \"%s\" ..."
@@ -9466,9 +9920,8 @@ msgstr ""
"in te vullen. Laat het leeg als u geen ftp proxy wenst"
#: ../../proxy.pm_.c:65
-#, fuzzy
msgid "Url should begin with 'ftp:' or 'http:'"
-msgstr "Proxy moet beginnen met http:"
+msgstr "URL moet beginnen met 'ftp:' of 'http:'"
#: ../../proxy.pm_.c:79
msgid ""
@@ -9836,7 +10289,7 @@ msgstr "Internet"
msgid "File sharing"
msgstr "Bestanden delen"
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1669
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1744
msgid "System"
msgstr "Systeem"
@@ -9889,15 +10342,15 @@ msgstr "Start"
msgid "Stop"
msgstr "Stop"
-#: ../../share/advertising/00-thanks.pl_.c:9
-msgid "Thank you for choosing Mandrake Linux 8.2"
-msgstr "Bedankt dat u voor Mandrake Linux 8.2 gekozen hebt"
+#: ../../share/advertising/01-thanks.pl_.c:9
+msgid "Thank you for choosing Mandrake Linux 9.0"
+msgstr "Bedankt dat u voor Mandrake Linux 9.0 gekozen hebt"
-#: ../../share/advertising/00-thanks.pl_.c:10
+#: ../../share/advertising/01-thanks.pl_.c:10
msgid "Welcome to the Open Source world"
msgstr "Welkom in de Open Source-wereld"
-#: ../../share/advertising/00-thanks.pl_.c:11
+#: ../../share/advertising/01-thanks.pl_.c:11
msgid ""
"The success of MandrakeSoft is based upon the principle of Free Software. "
"Your new operating system is the result of collaborative work on the part of "
@@ -9907,204 +10360,236 @@ msgstr ""
"Uw nieuwe besturingssysteem is het resultaat van het gezamenlijke werk van "
"de wereldwijde Linux-gemeenschap."
-#: ../../share/advertising/01-gnu.pl_.c:9
-msgid "Join the Free Software world"
+#: ../../share/advertising/02-community.pl_.c:9
+msgid "Get involved in the Free Software world"
msgstr "Doe mee met de wereld van Vrije Software"
-#: ../../share/advertising/01-gnu.pl_.c:10
+#: ../../share/advertising/02-community.pl_.c:10
+msgid "Want to know more about the Open Source community?"
+msgstr ""
+
+#: ../../share/advertising/02-community.pl_.c:11
msgid ""
-"Get to know the Open Source community and become a member. Learn, teach, and "
-"help others by joining the many discussion forums that you will find in our "
-"\"Community\" webpages"
+"To share your own knowledge and help build Linux tools, join the discussions "
+"forum you'll find on our \"Community\" webpages"
msgstr ""
"Leer de Open Source-gemeenschap kennen en word er deelgenoot van. Leer, "
"doceer en help anderen door u aan te sluiten bij de vele discussiefora die u "
"vindt op onze \"Community\"-webpagina's"
-#: ../../share/advertising/02-internet.pl_.c:9
-msgid "Internet and Messaging"
-msgstr "Internet en Berichten"
+#: ../../share/advertising/03-internet.pl_.c:9
+#, fuzzy
+msgid "Get the most from the Internet"
+msgstr "Verbinden met het Internet"
-#: ../../share/advertising/02-internet.pl_.c:10
+#: ../../share/advertising/03-internet.pl_.c:10
msgid ""
-"Mandrake Linux 8.2 provides the best software to access everything the "
-"Internet has to offer: Surf the web & view animations with Mozilla and "
-"Konqueror, exchange email & organize your personal information with "
-"Evolution and Kmail, and much more"
+"Mandrake Linux 9.0 has selected the best software for you. Surf the Web and "
+"view animations with Mozilla and Konqueror, or read your mail and handle "
+"your personal information with Evolution and Kmail"
msgstr ""
-"Mandrake Linux 8.2 biedt de software om toegang te krijgen tot alles wat het "
+"Mandrake Linux 9.0 biedt de software om toegang te krijgen tot alles wat het "
"Internet te bieden heeft: Surf over het web en bekijk animaties met Mozilla "
"en Konqueror, wissel e-mail uit & beheer uw persoonlijke informatie met "
"Evolution en Kmail, en veel meer"
-#: ../../share/advertising/03-graphic.pl_.c:9
-msgid "Multimedia and Graphics"
-msgstr "Multimedia en Grafisch"
+#: ../../share/advertising/04-multimedia.pl_.c:9
+msgid "Discover the most up-to-date graphics and multimedia tools!"
+msgstr ""
+
+#: ../../share/advertising/04-multimedia.pl_.c:10
+msgid "Push multimedia to its limits!"
+msgstr ""
-#: ../../share/advertising/03-graphic.pl_.c:10
+#: ../../share/advertising/04-multimedia.pl_.c:11
+#, fuzzy
msgid ""
-"Mandrake Linux 8.2 lets you push your multimedia computer to its limits! Use "
-"the latest software to play music and audio files, edit and organize your "
-"images and photos, watch TV and videos, and much more"
+"Mandrake Linux 9.0 enables you to use the very latest software to play audio "
+"files, edit and handle your images or photos, and play videos"
msgstr ""
"Mandrake Linux 8.2 laat u uw multimedia-computer tot aan zijn grenzen "
"drijven! Gebruik de allernieuwste software om muziek- en audiobestanden af "
"te spelen, uw plaatjes en foto's te bewerken en te beheren, TV en video's te "
"kijken en veel meer"
-#: ../../share/advertising/04-develop.pl_.c:9
-msgid "Development"
-msgstr "Ontwikkeling"
+#: ../../share/advertising/05-games.pl_.c:9
+msgid "Games"
+msgstr "Spelletjes"
-#: ../../share/advertising/04-develop.pl_.c:10
+#: ../../share/advertising/05-games.pl_.c:10
+#, fuzzy
msgid ""
-"Mandrake Linux 8.2 is the ultimate development platform. Discover the power "
-"of the GNU gcc compiler as well as the best Open Source development "
-"environments"
+"Mandrake Linux 9.0 provides the best Open Source games - arcade, action, "
+"cards, sports, strategy..."
msgstr ""
-"Mandrake Linux 8.2 is het ultieme ontwikkelplatform. Ontdek de kracht van de "
-"GNU gcc compiler naast de beste Open Source ontwikkelomgevingen"
+"Mandrake Linux 8.2 biedt het beste in Open Source games - arcade, actie, "
+"kaarten, sporten, strategie, ..."
-#: ../../share/advertising/05-contcenter.pl_.c:9
-#: ../../standalone/drakbug_.c:69
+#: ../../share/advertising/06-mcc.pl_.c:9 ../../standalone/drakbug_.c:69
msgid "Mandrake Control Center"
msgstr "Mandrake Controlecentrum"
-#: ../../share/advertising/05-contcenter.pl_.c:10
+#: ../../share/advertising/06-mcc.pl_.c:10
+#, fuzzy
msgid ""
-"The Mandrake Linux 8.2 Control Center is a one-stop location for fully "
-"customizing and configuring your Mandrake system"
+"Mandrake Linux 9.0 provides a powerful tool to fully customize and configure "
+"your machine"
msgstr ""
"Het Mandrake Linux 8.2 Controlecentrum is een alles-in-Ă©Ă©n-plek om uw "
"Mandrake-systeem volledig aan te passen en te configureren"
-#: ../../share/advertising/06-user.pl_.c:9
+#: ../../share/advertising/07-desktop.pl_.c:9
msgid "User interfaces"
msgstr "Gebruiker-interfaces"
-#: ../../share/advertising/06-user.pl_.c:10
+#: ../../share/advertising/07-desktop.pl_.c:10
msgid ""
-"Mandrake Linux 8.2 provides 11 different graphical desktop environments and "
-"window managers to choose from including GNOME 1.4, KDE 2.2.2, Window Maker "
-"0.8, and the rest"
+"Mandrake Linux 9.0 provides 11 user interfaces which can be fully modified: "
+"KDE 3, Gnome 2, WindowMaker..."
msgstr ""
-"Mandrake Linux 8.2 biedt 11 verschillende grafische werkplek-omgevingen en "
-"window managers waaruit u kunt kiezen, waaronder GNOME 1.4, KDE 2.2.2, "
-"Window Maker 0.8 en de rest"
-#: ../../share/advertising/07-server.pl_.c:9
-msgid "Server Software"
-msgstr "Server software"
+#: ../../share/advertising/08-development.pl_.c:9
+#, fuzzy
+msgid "Development simplified"
+msgstr "Ontwikkeling"
+
+#: ../../share/advertising/08-development.pl_.c:10
+msgid "Mandrake Linux 9.0 is the ultimate development platform"
+msgstr ""
-#: ../../share/advertising/07-server.pl_.c:10
+#: ../../share/advertising/08-development.pl_.c:11
+#, fuzzy
msgid ""
-"Transform your machine into a powerful server with just a few clicks of the "
-"mouse: Web server, email, firewall, router, file and print server, ..."
+"Use the full power of the GNU gcc 3 compiler as well as the best Open Source "
+"development environments"
+msgstr ""
+"Mandrake Linux 8.2 is het ultieme ontwikkelplatform. Ontdek de kracht van de "
+"GNU gcc compiler naast de beste Open Source ontwikkelomgevingen"
+
+#: ../../share/advertising/09-server.pl_.c:9
+msgid "Turn your machine into a reliable server"
+msgstr ""
+
+#: ../../share/advertising/09-server.pl_.c:10
+#, fuzzy
+msgid ""
+"Transform your machine into a powerful server in a few clicks of your mouse: "
+"Web server, mail, firewall, router, file and print server..."
msgstr ""
"Transformeer uw computer naar een krachtige server met slechts enkele "
"muisklikken: Web server, e-mail, firewall, router, file- en printserver, ..."
-#: ../../share/advertising/08-games.pl_.c:9
-msgid "Games"
-msgstr "Spelletjes"
+#: ../../share/advertising/10-mnf.pl_.c:9
+msgid "Optimize your security"
+msgstr ""
-#: ../../share/advertising/08-games.pl_.c:10
+#: ../../share/advertising/10-mnf.pl_.c:10
msgid ""
-"Mandrake Linux 8.2 provides the best Open Source games - arcade, action, "
-"cards, sports, strategy, ..."
+"The MandrakeSecurity range includes the Multi Network Firewall product (M.N."
+"F.)"
+msgstr ""
+
+#: ../../share/advertising/10-mnf.pl_.c:11
+msgid ""
+"This firewall product includes network features which allow you to fulfill "
+"all your security needs"
+msgstr ""
+
+#: ../../share/advertising/10-mnf.pl_.c:12
+msgid "This product is available on MandrakeStore website"
msgstr ""
-"Mandrake Linux 8.2 biedt het beste in Open Source games - arcade, actie, "
-"kaarten, sporten, strategie, ..."
-#: ../../share/advertising/09-MDKcampus.pl_.c:9
-msgid "MandrakeCampus"
-msgstr "MandrakeCampus"
+#: ../../share/advertising/11-mdkstore.pl_.c:9
+msgid "The official MandrakeSoft store"
+msgstr ""
-#: ../../share/advertising/09-MDKcampus.pl_.c:10
+#: ../../share/advertising/11-mdkstore.pl_.c:10
+#, fuzzy
msgid ""
-"Would you like to learn Linux simply, quickly, and for free? MandrakeSoft "
-"provides free Linux training, as well as a way to test your progress, at "
-"MandrakeCampus -- our online training center"
+"Our full range of Linux solutions, as well as special offers on products and "
+"'goodies', are available online at our e-store"
msgstr ""
-"Wilt u Linux leren op een eenvoudige, snelle en gratis manier? MandrakeSoft "
-"biedt gratis Linux-training, naast een manier om uw voortgang te testen, op "
-"MandrakeCampus -- ons online trainingscentrum"
+"Ons volledige scala aan Linux-oplossingen, naast speciale aanbiedingen voor "
+"onze produkten en 'goodies', is beschikbaar op onze e-store"
-#: ../../share/advertising/10-MDKexpert.pl_.c:9
-msgid "MandrakeExpert"
-msgstr "MandrakeExpert"
+#: ../../share/advertising/12-mdkstore.pl_.c:9
+msgid "Strategic partners"
+msgstr ""
-#: ../../share/advertising/10-MDKexpert.pl_.c:10
+#: ../../share/advertising/12-mdkstore.pl_.c:10
msgid ""
-"Quality support from the Linux Community, and from MandrakeSoft, is just "
-"around the corner. And if you're already a Linux veteran, become an \"Expert"
-"\" and share your knowledge at our support website"
+"MandrakeSoft works alongside a selection of companies offering professional "
+"solutions compatible with Mandrake Linux; a list of these partners is "
+"available on the MandrakeStore"
msgstr ""
-"Kwaliteits-ondersteuning vanuit de Linux-gemeenschap, en van MandrakeSoft, "
-"is om de hoek! En indien u al een Linux-veteraan bent, word een \"Expert\" "
-"en deel uw kennis op onze ondersteuningswebpagina"
-#: ../../share/advertising/11-consul.pl_.c:9
-msgid "MandrakeConsulting"
-msgstr "MandrakeConsulting"
+#: ../../share/advertising/13-mdkcampus.pl_.c:9
+msgid "Discover MandrakeSoft's training catalogue Linux-Campus"
+msgstr ""
-#: ../../share/advertising/11-consul.pl_.c:10
+#: ../../share/advertising/13-mdkcampus.pl_.c:10
msgid ""
-"For all of your IT projects, our consultants are ready to analyze your "
-"requirements and offer a customized solution. Benefit from MandrakeSoft's "
-"vast experience as a Linux producer to provide a true IT alternative for "
-"your business organization"
+"The training program has been create to respond to the needs of both users "
+"and experts (Network and System administrations)"
msgstr ""
-"Voor al uw IT-projecten staan onze consultants klaar om te analyseren wat u "
-"nodig heeft en een aangepaste oplossing te bieden. Profiteer van "
-"MandrakeSoft's enorme ervaring als Linux-producent voor een waar IT-"
-"alternatief voor uw bedrijfsorganisatie"
-#: ../../share/advertising/12-MDKstore.pl_.c:9
-msgid "MandrakeStore"
-msgstr "MandrakeStore"
+#: ../../share/advertising/13-mdkcampus.pl_.c:11
+msgid "Certify yourself on Linux"
+msgstr ""
-#: ../../share/advertising/12-MDKstore.pl_.c:10
+#: ../../share/advertising/13-mdkcampus.pl_.c:12
msgid ""
-"A full range of Linux solutions, as well as special offers on products and "
-"'goodies', are available online at our e-store"
+"Whether you choose to teach yourself online or via our network of training "
+"partners, the Linux-Campus catalogue prepares you for the acknowledged LPI "
+"certification program (worldwide professional technical certification)"
msgstr ""
-"Ons volledige scala aan Linux-oplossingen, naast speciale aanbiedingen voor "
-"onze produkten en 'goodies', is beschikbaar op onze e-store"
-#: ../../share/advertising/13-Nvert.pl_.c:9
+#: ../../share/advertising/14-mdkexpert.pl_.c:9
+#, fuzzy
+msgid "Become a MandrakeExpert"
+msgstr "MandrakeExpert"
+
+#: ../../share/advertising/14-mdkexpert.pl_.c:10
msgid ""
-"For more information on MandrakeSoft's Professional Services and commercial "
-"offerings, please see the following web page:"
+"Find the solutions to your problems via MandrakeSoft's online support "
+"platform"
msgstr ""
-"Voor meer informatie over MandrakeSoft's Professional Services en "
-"commerciële produkten, zie de volgende webpagina:"
-#: ../../share/advertising/13-Nvert.pl_.c:11
-msgid "http://www.mandrakesoft.com/sales/contact"
-msgstr "http://www.mandrakesoft.com/sales/contact"
+#: ../../share/advertising/14-mdkexpert.pl_.c:11
+msgid ""
+"Join the MandrakeSoft support teams and the Linux Community online to share "
+"your knowledge and help others by becoming a recognized Expert on the online "
+"technical support website:"
+msgstr ""
+
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:9
+#, fuzzy
+msgid "MandrakeExpert Corporate"
+msgstr "MandrakeExpert"
-#: ../../standalone.pm_.c:40
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:10
+msgid "An online platform to respond to company's specific support needs"
+msgstr ""
+
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:11
+msgid ""
+"All incidents will be followed up by a single qualified MandrakeSoft "
+"technical expert."
+msgstr ""
+
+#: ../../standalone.pm_.c:41
msgid "Installing packages..."
msgstr "Bezig met installeren van pakketten..."
-#: ../../standalone/XFdrake_.c:143
+#: ../../standalone/XFdrake_.c:145
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "Gelieve uit te loggen en daarna Ctrl-Alt-Backspace te gebruiken"
-#: ../../standalone/XFdrake_.c:147
+#: ../../standalone/XFdrake_.c:149
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "Gelieve opnieuw in te loggen op %s om de wijzigingen te activeren"
-#: ../../standalone/diskdrake_.c:81
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I'll try to go on blanking bad partitions"
-msgstr ""
-"Ik kan uw partitietabel niet lezen, ze is te corrupt voor mij :-(\n"
-"Ik zal proberen door te gaan en de slechte partities te verwijderen"
-
#: ../../standalone/drakTermServ_.c:188
msgid "Mandrake Terminal Server Configuration"
msgstr "Mandrake Terminal Server Configuratie"
@@ -10131,7 +10616,7 @@ msgstr "Etherboot Floppy/ISO"
#: ../../standalone/drakTermServ_.c:235
msgid "Net Boot Images"
-msgstr "Net Boot Images"
+msgstr "Netwerk-beeldbestanden voor opstarten"
#: ../../standalone/drakTermServ_.c:239
msgid "Add/Del Users"
@@ -10141,12 +10626,13 @@ msgstr "Gebruikers toevoegen/verwijderen"
msgid "Add/Del Clients"
msgstr "Clienten toevoegen/verwijderen"
-#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3282
-#: ../../standalone/drakbackup_.c:3315 ../../standalone/drakbackup_.c:3341
-#: ../../standalone/drakbackup_.c:3368 ../../standalone/drakbackup_.c:3395
-#: ../../standalone/drakbackup_.c:3434 ../../standalone/drakbackup_.c:3455
-#: ../../standalone/drakbackup_.c:3482 ../../standalone/drakbackup_.c:3508
-#: ../../standalone/drakbackup_.c:3533 ../../standalone/drakfont_.c:700
+#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3930
+#: ../../standalone/drakbackup_.c:3963 ../../standalone/drakbackup_.c:3989
+#: ../../standalone/drakbackup_.c:4016 ../../standalone/drakbackup_.c:4043
+#: ../../standalone/drakbackup_.c:4082 ../../standalone/drakbackup_.c:4103
+#: ../../standalone/drakbackup_.c:4130 ../../standalone/drakbackup_.c:4160
+#: ../../standalone/drakbackup_.c:4186 ../../standalone/drakbackup_.c:4211
+#: ../../standalone/drakfont_.c:700
msgid "Help"
msgstr "Help"
@@ -10159,9 +10645,8 @@ msgid "Boot ISO"
msgstr "Boot ISO"
#: ../../standalone/drakTermServ_.c:507
-#, fuzzy
msgid "Build Whole Kernel -->"
-msgstr "Kernel maken -->"
+msgstr "Gehele kernel bouwen -->"
#: ../../standalone/drakTermServ_.c:509 ../../standalone/drakTermServ_.c:539
msgid "This will take a few minutes."
@@ -10172,18 +10657,16 @@ msgid "No kernel selected!"
msgstr "Geen kernel geselecteerd!"
#: ../../standalone/drakTermServ_.c:524
-#, fuzzy
msgid "Build Single NIC -->"
-msgstr "Maak NIC -->"
+msgstr "Enkele NIC bouwen -->"
#: ../../standalone/drakTermServ_.c:535
msgid "No nic selected!"
msgstr "Geen nic geselecteerd!"
#: ../../standalone/drakTermServ_.c:538
-#, fuzzy
msgid "Build All Kernels -->"
-msgstr "Maak alle kernels -->"
+msgstr "Alle kernels bouwen -->"
#: ../../standalone/drakTermServ_.c:552
msgid "<-- Delete"
@@ -10218,17 +10701,14 @@ msgid "Write Config"
msgstr "Schrijf configuratie weg"
#: ../../standalone/drakTermServ_.c:946
-#, fuzzy
msgid "Please insert floppy disk:"
msgstr "Plaats een diskette in het station:"
#: ../../standalone/drakTermServ_.c:950
-#, fuzzy
msgid "Couldn't access the floppy!"
-msgstr "Kon de diskette niet vinden!"
+msgstr "Kon de diskette niet benaderen!"
#: ../../standalone/drakTermServ_.c:952
-#, fuzzy
msgid "Floppy can be removed now"
msgstr "De diskette kan nu worden uitgenomen"
@@ -10242,9 +10722,8 @@ msgid "Etherboot ISO image is %s"
msgstr "Etherboot ISO image is %s"
#: ../../standalone/drakTermServ_.c:966
-#, fuzzy
msgid "Something went wrong! - Is mkisofs installed?"
-msgstr "Er ging iets fout!"
+msgstr "Er ging iets fout - Is mkisofs wel geĂŻnstalleerd?"
#: ../../standalone/drakTermServ_.c:985
msgid "Need to create /etc/dhcpd.conf first!"
@@ -10319,8 +10798,8 @@ msgstr ""
"De parameters van de auto-installatie zijn aanwezig in de afdelingen aan de "
"linkerkant"
-#: ../../standalone/drakautoinst_.c:239 ../../standalone/drakgw_.c:548
-#: ../../standalone/scannerdrake_.c:105
+#: ../../standalone/drakautoinst_.c:239 ../../standalone/drakgw_.c:484
+#: ../../standalone/scannerdrake_.c:119
msgid "Congratulations!"
msgstr "Gefeliciteerd!"
@@ -10344,20 +10823,23 @@ msgstr "Item toevoegen"
msgid "Remove the last item"
msgstr "Het laatste item verwijderen"
-#: ../../standalone/drakbackup_.c:625
+#: ../../standalone/drakbackup_.c:619
msgid "Cron not available yet as non-root"
-msgstr ""
+msgstr "Cron nog niet beschikbaar als niet-root"
-#: ../../standalone/drakbackup_.c:731
+#: ../../standalone/drakbackup_.c:725
msgid "WARNING"
-msgstr ""
+msgstr "WAARSCHUWING"
-#: ../../standalone/drakbackup_.c:732
-#, fuzzy
+#: ../../standalone/drakbackup_.c:726
msgid "FATAL"
-msgstr "FAT"
+msgstr "FATAAL"
-#: ../../standalone/drakbackup_.c:744
+#: ../../standalone/drakbackup_.c:727
+msgid "INFO"
+msgstr "INFO"
+
+#: ../../standalone/drakbackup_.c:739
msgid ""
"\n"
" DrakBackup Report \n"
@@ -10367,7 +10849,7 @@ msgstr ""
" DrakBackup Rapport \n"
"\n"
-#: ../../standalone/drakbackup_.c:745
+#: ../../standalone/drakbackup_.c:740
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -10379,7 +10861,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:749
+#: ../../standalone/drakbackup_.c:744
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -10391,13 +10873,25 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:770 ../../standalone/drakbackup_.c:840
-#: ../../standalone/drakbackup_.c:894
-#, fuzzy
+#: ../../standalone/drakbackup_.c:765 ../../standalone/drakbackup_.c:835
+#: ../../standalone/drakbackup_.c:889
msgid "Total progess"
-msgstr "totale voortgang"
+msgstr "Totale voortgang"
-#: ../../standalone/drakbackup_.c:822
+#: ../../standalone/drakbackup_.c:788
+#, fuzzy
+msgid ""
+"Sorry, perl-Expect is not installed/enabled. To use\n"
+"this feature, install perl-Expect and comment lines 772-774,\n"
+" as well as 788,789. Then uncomment line 787."
+msgstr ""
+"Sorry, perl-Exect is niet geĂŻnstalleerd of ingeschakeld. \n"
+"Om deze mogelijkheid te gebruiken dient u perl-Expect te\n"
+"installeren en de regels 702-704 zowel als 718,719\n"
+"in commentaar te zetten. Vervolgens haalt u regel 717\n"
+"uit commentaar."
+
+#: ../../standalone/drakbackup_.c:817
#, c-format
msgid ""
"%s exists, delete?\n"
@@ -10405,17 +10899,47 @@ msgid ""
"Warning: If you've already done this process you'll probably\n"
" need to purge the entry from authorized_keys on the server."
msgstr ""
+"%s bestaat al, verwijderen?\n"
+"\n"
+"Waarschuwing: Indien u dit proces reeds doorlopen hebt\n"
+" is het waarschijnlijk nodig om de ingang uit authorized_keys\n"
+" op de server te verwijderen."
-#: ../../standalone/drakbackup_.c:831
+#: ../../standalone/drakbackup_.c:826
msgid "This may take a moment to generate the keys."
-msgstr ""
+msgstr "Het kan enige tijd duren om de sleutels te genereren."
-#: ../../standalone/drakbackup_.c:838
+#: ../../standalone/drakbackup_.c:833
#, c-format
msgid "ERROR: Cannot spawn %s."
+msgstr "FOUT: kan %s niet starten."
+
+#: ../../standalone/drakbackup_.c:850
+#, c-format
+msgid "No password prompt on %s at port %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:851
+#, fuzzy, c-format
+msgid "Bad password on %s"
+msgstr "Geen wachtwoord"
+
+#: ../../standalone/drakbackup_.c:852
+#, c-format
+msgid "Permission denied transferring %s to %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:853
+#, c-format
+msgid "Can't find %s on %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:856
+#, c-format
+msgid "%s not responding"
msgstr ""
-#: ../../standalone/drakbackup_.c:865
+#: ../../standalone/drakbackup_.c:860
#, c-format
msgid ""
"Transfer successful\n"
@@ -10425,120 +10949,138 @@ msgid ""
"\n"
"without being prompted for a password."
msgstr ""
+"Overdracht geslaagd\n"
+"U wilt wellicht nagaan of u zich op de server kunt aanmelden met:\n"
+"\n"
+"ssh -i %s %s\\@%s\n"
+"\n"
+"zonder om een wachtwoord gevraagd te worden."
-#: ../../standalone/drakbackup_.c:908
+#: ../../standalone/drakbackup_.c:903
msgid "WebDAV remote site already in sync!"
-msgstr ""
+msgstr "WebDAV-site op afstand loopt al synchroon!"
-#: ../../standalone/drakbackup_.c:912
+#: ../../standalone/drakbackup_.c:907
msgid "WebDAV transfer failed!"
-msgstr ""
+msgstr "WebDAV-overdracht mislukt!"
-#: ../../standalone/drakbackup_.c:934
+#: ../../standalone/drakbackup_.c:928
msgid "No CDR/DVDR in drive!"
-msgstr ""
+msgstr "Geen CD-R/DVD-R in station!"
-#: ../../standalone/drakbackup_.c:938
+#: ../../standalone/drakbackup_.c:932
msgid "Does not appear to be recordable media!"
-msgstr ""
+msgstr "Dit lijkt geen opneembare media te zijn!"
-#: ../../standalone/drakbackup_.c:942
+#: ../../standalone/drakbackup_.c:936
msgid "Not erasable media!"
-msgstr ""
+msgstr "Geen wisbare media!"
-#: ../../standalone/drakbackup_.c:981
+#: ../../standalone/drakbackup_.c:975
msgid "This may take a moment to erase the media."
-msgstr ""
+msgstr "Het kan enige tijd duren voordat de media gewist is."
-#: ../../standalone/drakbackup_.c:1045
+#: ../../standalone/drakbackup_.c:1060
msgid "Permission problem accessing CD."
+msgstr "Rechten-probleem bij benaderen CD."
+
+#: ../../standalone/drakbackup_.c:1087
+#, c-format
+msgid "No tape in %s!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1144 ../../standalone/drakbackup_.c:1193
+#: ../../standalone/drakbackup_.c:1199 ../../standalone/drakbackup_.c:1248
msgid "Backup system files..."
msgstr "Reservekopie maken van systeembestanden..."
-#: ../../standalone/drakbackup_.c:1194 ../../standalone/drakbackup_.c:1261
+#: ../../standalone/drakbackup_.c:1249 ../../standalone/drakbackup_.c:1316
msgid "Hard Disk Backup files..."
msgstr "Harde schijf reservekopie..."
-#: ../../standalone/drakbackup_.c:1206
+#: ../../standalone/drakbackup_.c:1261
msgid "Backup User files..."
msgstr "Reservekopie gebruikersbestanden..."
-#: ../../standalone/drakbackup_.c:1207
+#: ../../standalone/drakbackup_.c:1262
msgid "Hard Disk Backup Progress..."
msgstr "Voortgang reservekopie harde schijf..."
-#: ../../standalone/drakbackup_.c:1260
+#: ../../standalone/drakbackup_.c:1315
msgid "Backup Other files..."
msgstr "Reservekopie andere bestanden..."
-#: ../../standalone/drakbackup_.c:1266
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1321
msgid "No changes to backup!"
-msgstr "Gebruik tape voor backup"
+msgstr "Geen veranderingen om een reservekopie van te maken!"
-#: ../../standalone/drakbackup_.c:1282 ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1337 ../../standalone/drakbackup_.c:1360
#, c-format
msgid ""
"\n"
"Drakbackup activities via %s:\n"
"\n"
msgstr ""
+"\n"
+"Drakbackup-activiteiten via %s:\n"
+"\n"
-#: ../../standalone/drakbackup_.c:1289
-#, fuzzy, c-format
+#: ../../standalone/drakbackup_.c:1344
+#, c-format
msgid ""
-"file list sent by FTP : %s\n"
+"file list sent by FTP: %s\n"
" "
msgstr ""
"bestandslijst via FTP verzonden: %s\n"
" "
-#: ../../standalone/drakbackup_.c:1292
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1347
msgid ""
"\n"
" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
"\n"
-" FTP verbindings probleem: het was niet mogelijk uw reservekopie via FTP te "
+" FTP verbindingsprobleem: het was niet mogelijk uw reservekopie via FTP te "
"versturen.\n"
-#: ../../standalone/drakbackup_.c:1310
+#: ../../standalone/drakbackup_.c:1365
msgid ""
"\n"
"Drakbackup activities via CD:\n"
"\n"
msgstr ""
+"\n"
+"Drakbackup-activiteiten via CD:\n"
+"\n"
-#: ../../standalone/drakbackup_.c:1315
+#: ../../standalone/drakbackup_.c:1370
msgid ""
"\n"
"Drakbackup activities via tape:\n"
"\n"
msgstr ""
+"\n"
+"Drakbackup-activiteiten via tape:\n"
+"\n"
-#: ../../standalone/drakbackup_.c:1324
+#: ../../standalone/drakbackup_.c:1379
msgid " Error during mail sending. \n"
msgstr "Fout tijdens versturen post.\n"
-#: ../../standalone/drakbackup_.c:1346
+#: ../../standalone/drakbackup_.c:1404
msgid "Can't create catalog!"
-msgstr ""
+msgstr "Kan catalogus niet creëren!"
-#: ../../standalone/drakbackup_.c:1459 ../../standalone/drakbackup_.c:1470
-#: ../../standalone/drakbackup_.c:1481 ../../standalone/drakfont_.c:1004
+#: ../../standalone/drakbackup_.c:1517 ../../standalone/drakbackup_.c:1528
+#: ../../standalone/drakfont_.c:1004
msgid "File Selection"
msgstr "Bestandsselectie"
-#: ../../standalone/drakbackup_.c:1486
+#: ../../standalone/drakbackup_.c:1556
msgid "Select the files or directories and click on 'Add'"
msgstr "Selecteer de bestanden of mappen en klik op 'Toevoegen'"
-#: ../../standalone/drakbackup_.c:1525
+#: ../../standalone/drakbackup_.c:1600
msgid ""
"\n"
"Please check all options that you need.\n"
@@ -10546,160 +11088,161 @@ msgstr ""
"\n"
"Gelieve alle opties te selecteren die u nodig heeft.\n"
-#: ../../standalone/drakbackup_.c:1526
+#: ../../standalone/drakbackup_.c:1601
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
"Deze opties kunnen een reservekopie maken van alle bestanden in uw /etc "
"map.\n"
-#: ../../standalone/drakbackup_.c:1527
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1602
msgid "Backup your System files. (/etc directory)"
-msgstr "Reservekopie maken van uw systeembestanden ( /etc map )"
+msgstr "Reservekopie maken van uw systeembestanden. ( /etc map )"
-#: ../../standalone/drakbackup_.c:1528
+#: ../../standalone/drakbackup_.c:1603
msgid "Use incremental backup (do not replace old backups)"
msgstr ""
"Gebruik incrementele reservekopie (de oude reservekopieën niet vervangen)"
-#: ../../standalone/drakbackup_.c:1529
+#: ../../standalone/drakbackup_.c:1604
msgid "Do not include critical files (passwd, group, fstab)"
msgstr "Essentiële bestanden niet opnemen (passwd, group, fstab)"
-#: ../../standalone/drakbackup_.c:1530
+#: ../../standalone/drakbackup_.c:1605
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr "Met deze optie kunt u iedere versie van uw /etc herstellen."
-#: ../../standalone/drakbackup_.c:1547
+#: ../../standalone/drakbackup_.c:1622
msgid "Please check all users that you want to include in your backup."
msgstr ""
"Gelieve alle gebruikers te selecteren die u in uw reservekopie wilt opnemen."
-#: ../../standalone/drakbackup_.c:1574
+#: ../../standalone/drakbackup_.c:1649
msgid "Do not include the browser cache"
msgstr "Browser-cache niet opnemen"
-#: ../../standalone/drakbackup_.c:1575 ../../standalone/drakbackup_.c:1599
+#: ../../standalone/drakbackup_.c:1650 ../../standalone/drakbackup_.c:1674
msgid "Use Incremental Backups (do not replace old backups)"
msgstr "Gebruik incrementele reservekopieën (vervang geen oude reservekopieën)"
-#: ../../standalone/drakbackup_.c:1597 ../../standalone/drakfont_.c:1058
+#: ../../standalone/drakbackup_.c:1672 ../../standalone/drakfont_.c:1058
msgid "Remove Selected"
msgstr "Verwijder geselecteerden"
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:1710
msgid "Windows (FAT32)"
msgstr "Windows (FAT32) "
-#: ../../standalone/drakbackup_.c:1674
+#: ../../standalone/drakbackup_.c:1749
msgid "Users"
msgstr "Gebruikers"
-#: ../../standalone/drakbackup_.c:1700
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1775
msgid "Use network connection to backup"
-msgstr "Gebruik FTP-verbinding voor reservekopie"
+msgstr "Netwerkverbinding gebruiken voor reservekopie"
-#: ../../standalone/drakbackup_.c:1706
-msgid "Use Expect for SSH"
+#: ../../standalone/drakbackup_.c:1777
+msgid "Net Method:"
msgstr ""
-#: ../../standalone/drakbackup_.c:1707
+#: ../../standalone/drakbackup_.c:1781
+msgid "Use Expect for SSH"
+msgstr "Expect voor SSH gebruiken"
+
+#: ../../standalone/drakbackup_.c:1782
msgid ""
"Create/Transfer\n"
"backup keys for SSH"
msgstr ""
+"Reservesleutels voor SSH\n"
+"creëren/overzetten"
-#: ../../standalone/drakbackup_.c:1708
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1783
msgid ""
" Transfer \n"
"Now"
-msgstr "Overzetten"
+msgstr ""
+" Nu\n"
+"Overzetten"
-#: ../../standalone/drakbackup_.c:1709
+#: ../../standalone/drakbackup_.c:1784
msgid "Keys in place already"
-msgstr ""
+msgstr "Sleutels staan reeds op hun plaats"
-#: ../../standalone/drakbackup_.c:1713
+#: ../../standalone/drakbackup_.c:1788
msgid "Please enter the host name or IP."
msgstr "Gelieve hostnaam of IP in te voeren."
-#: ../../standalone/drakbackup_.c:1718
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1793
msgid ""
"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
-"Gelieve de map op deze computer aangeven\n"
+"Voer de map op deze computer in\n"
" om de reservekopie in op te slaan."
-#: ../../standalone/drakbackup_.c:1723
+#: ../../standalone/drakbackup_.c:1798
msgid "Please enter your login"
msgstr "Voer uw login in"
-#: ../../standalone/drakbackup_.c:1728
+#: ../../standalone/drakbackup_.c:1803
msgid "Please enter your password"
msgstr "Voer uw wachtwoord in"
-#: ../../standalone/drakbackup_.c:1734
+#: ../../standalone/drakbackup_.c:1809
msgid "Remember this password"
msgstr "Onthoud dit wachtwoord"
-#: ../../standalone/drakbackup_.c:1745
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1820
msgid "Need hostname, username and password!"
-msgstr "Kan niet inloggen met gebruikersnaam %s (verkeerd wachtwoord?)"
+msgstr "Hostnaam, gebruikersnaam en wachtwoord benodigd!"
-#: ../../standalone/drakbackup_.c:1841
+#: ../../standalone/drakbackup_.c:1915
msgid "Use CD/DVDROM to backup"
msgstr "Gebruik CD/DVD-ROM voor reservekopie"
-#: ../../standalone/drakbackup_.c:1844
+#: ../../standalone/drakbackup_.c:1918
msgid ""
"Please choose your CD/DVD device\n"
"(Press Enter to propogate settings to other fields.\n"
"This field isn't necessary, only a tool to fill in the form.)"
msgstr ""
+"Kies uw CD/DVD-apparaat\n"
+"(Druk op Enter om de instellingen aan andere velden door te geven.\n"
+"Dit veld is niet vereist, slechts een hulpmiddel voor het invullen van het "
+"formulier.)"
-#: ../../standalone/drakbackup_.c:1849
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1923
msgid "Please choose your CD/DVD media size"
-msgstr "Kies uw CD-ruimte"
+msgstr "Kies uw CD/DVD-mediagrootte"
-#: ../../standalone/drakbackup_.c:1855
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1929
msgid "Please check for multisession CD"
-msgstr "Ga na of u CDRW-media gebruikt"
+msgstr "Ga na of u een multisessie-CD gebruikt"
-#: ../../standalone/drakbackup_.c:1861
+#: ../../standalone/drakbackup_.c:1935
msgid "Please check if you are using CDRW media"
msgstr "Ga na of u CDRW-media gebruikt"
-#: ../../standalone/drakbackup_.c:1867
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1941
msgid "Please check if you want to erase your RW media (1st Session)"
-msgstr "Gelieve na te gaan of u uw CDRW wilt wissen voor u verdergaat"
+msgstr "Ga alstublieft na of u uw RW-media (eerste sessie) wilt wissen"
-#: ../../standalone/drakbackup_.c:1868
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1942
msgid " Erase Now "
-msgstr "Overzetten"
+msgstr " Nu wissen"
-#: ../../standalone/drakbackup_.c:1874
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1948
msgid "Please check if you are using a DVDR device"
-msgstr "Ga na of u CDRW-media gebruikt"
+msgstr "Ga alstublieft na of u een DVDR-apparaat gebruikt"
-#: ../../standalone/drakbackup_.c:1880
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1954
msgid "Please check if you are using a DVDRAM device"
-msgstr "Ga na of u CDRW-media gebruikt"
+msgstr "Ga alstublieft na of een DVDRAM-apparaat gebruikt"
-#: ../../standalone/drakbackup_.c:1893
+#: ../../standalone/drakbackup_.c:1967
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
@@ -10707,36 +11250,34 @@ msgstr ""
"Voer het apparaatnaam van uw CD Writer in\n"
" Voorbeeld: 0,1,0"
-#: ../../standalone/drakbackup_.c:1926
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2000
msgid "No CD device defined!"
-msgstr "Selecteer bestand"
+msgstr "Geen CD-apparaat gedefiniëerd!"
-#: ../../standalone/drakbackup_.c:1974
+#: ../../standalone/drakbackup_.c:2048
msgid "Use tape to backup"
msgstr "Gebruik tape voor backup"
-#: ../../standalone/drakbackup_.c:1977
+#: ../../standalone/drakbackup_.c:2051
msgid "Please enter the device name to use for backup"
msgstr "Voer de apparaatnaam in om voor de reservekopie te gebruiken"
-#: ../../standalone/drakbackup_.c:1983
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2057
msgid "Please check if you want to use the non-rewinding device."
-msgstr "Gelieve na te gaan of u uw CDRW wilt wissen voor u verdergaat"
+msgstr "Ga alstublieft na te gaan of u uw CDRW wilt wissen voor u verdergaat"
-#: ../../standalone/drakbackup_.c:1989
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2063
msgid "Please check if you want to erase your tape before the backup."
-msgstr "Gelieve na te gaan of u uw CDRW wilt wissen voor u verdergaat"
+msgstr ""
+"Geeft u aan of u uw tape wilt wissen vóór de reservekopie gemaakt wordt."
-#: ../../standalone/drakbackup_.c:1995
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2069
msgid "Please check if you want to eject your tape after the backup."
-msgstr "Gelieve na te gaan of u uw CDRW wilt wissen voor u verdergaat"
+msgstr ""
+"Geeft u aan of u uw tape wilt uitwerpen nadat de reservekopie gemaakt is."
-#: ../../standalone/drakbackup_.c:2001 ../../standalone/drakbackup_.c:2074
-#: ../../standalone/drakbackup_.c:3025
+#: ../../standalone/drakbackup_.c:2075 ../../standalone/drakbackup_.c:2149
+#: ../../standalone/drakbackup_.c:3116
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
@@ -10744,57 +11285,55 @@ msgstr ""
"Voer de maximumruimte in die\n"
" Drakbackup mag gebruiken"
-#: ../../standalone/drakbackup_.c:2066
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2140
msgid "Please enter the directory to save to:"
msgstr "Voer de map voor opslaan in:"
-#: ../../standalone/drakbackup_.c:2080 ../../standalone/drakbackup_.c:3031
+#: ../../standalone/drakbackup_.c:2155 ../../standalone/drakbackup_.c:3122
msgid "Use quota for backup files."
msgstr "Gebruik quota voor reservekopie-bestanden"
-#: ../../standalone/drakbackup_.c:2146
+#: ../../standalone/drakbackup_.c:2221
msgid "Network"
msgstr "Netwerk"
-#: ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:2226
msgid "CDROM / DVDROM"
-msgstr ""
+msgstr "CD-ROM / DVD-ROM"
-#: ../../standalone/drakbackup_.c:2156
+#: ../../standalone/drakbackup_.c:2231
msgid "HardDrive / NFS"
msgstr "Harde schijf / NFS"
-#: ../../standalone/drakbackup_.c:2161
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2236
msgid "Tape"
-msgstr "Type"
+msgstr "Tape"
-#: ../../standalone/drakbackup_.c:2175 ../../standalone/drakbackup_.c:2179
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2250 ../../standalone/drakbackup_.c:2254
+#: ../../standalone/drakbackup_.c:2258
msgid "hourly"
msgstr "ieder uur"
-#: ../../standalone/drakbackup_.c:2176 ../../standalone/drakbackup_.c:2180
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2251 ../../standalone/drakbackup_.c:2255
+#: ../../standalone/drakbackup_.c:2258
msgid "daily"
msgstr "dagelijks"
-#: ../../standalone/drakbackup_.c:2177 ../../standalone/drakbackup_.c:2181
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2252 ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2258
msgid "weekly"
msgstr "wekelijks"
-#: ../../standalone/drakbackup_.c:2178 ../../standalone/drakbackup_.c:2182
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2253 ../../standalone/drakbackup_.c:2257
+#: ../../standalone/drakbackup_.c:2258
msgid "monthly"
msgstr "maandelijks"
-#: ../../standalone/drakbackup_.c:2196
+#: ../../standalone/drakbackup_.c:2271
msgid "Use daemon"
msgstr "Gebruik daemon"
-#: ../../standalone/drakbackup_.c:2201
+#: ../../standalone/drakbackup_.c:2276
msgid ""
"Please choose the time \n"
"interval between each backup"
@@ -10802,7 +11341,7 @@ msgstr ""
"Gelieve het tijdsinterval \n"
"tussen iedere backup te kiezen"
-#: ../../standalone/drakbackup_.c:2207
+#: ../../standalone/drakbackup_.c:2282
msgid ""
"Please choose the\n"
"media for backup."
@@ -10810,79 +11349,82 @@ msgstr ""
"Kies de media\n"
"voor de reservekopie."
-#: ../../standalone/drakbackup_.c:2214
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2289
msgid ""
"Please be sure that the cron daemon is included in your services. \n"
"\n"
"Note that currently all 'net' medias also use the hard drive."
-msgstr "Let u op dat de cron daemon aanstaat in uw 'diensten'."
+msgstr ""
+"Let u op dat de cron-daemon aanstaat in uw 'diensten'.\n"
+"\n"
+"Merk op dat momenteel alle 'net'-media ook van de harde schijf gebruikmaken."
-#: ../../standalone/drakbackup_.c:2251
-msgid "Send mail report after each backup to :"
+#: ../../standalone/drakbackup_.c:2326
+msgid "Send mail report after each backup to:"
msgstr "Verstuur e-mailrapport na elke reservekopie naar:"
-#: ../../standalone/drakbackup_.c:2257
+#: ../../standalone/drakbackup_.c:2332
msgid "Delete Hard Drive tar files after backup to other media."
msgstr ""
+"Tar-bestanden op harde schijf wissen na reservekopie naar andere media."
-#: ../../standalone/drakbackup_.c:2296
+#: ../../standalone/drakbackup_.c:2371
msgid "What"
msgstr "Wat"
-#: ../../standalone/drakbackup_.c:2301
+#: ../../standalone/drakbackup_.c:2376
msgid "Where"
msgstr "Waar"
-#: ../../standalone/drakbackup_.c:2306
+#: ../../standalone/drakbackup_.c:2381
msgid "When"
msgstr "Wanneer"
-#: ../../standalone/drakbackup_.c:2311
+#: ../../standalone/drakbackup_.c:2386
msgid "More Options"
msgstr "Meer opties"
-#: ../../standalone/drakbackup_.c:2330 ../../standalone/drakbackup_.c:3873
+#: ../../standalone/drakbackup_.c:2405 ../../standalone/drakbackup_.c:4530
msgid "Drakbackup Configuration"
msgstr "Drakbackup configuratie"
-#: ../../standalone/drakbackup_.c:2348
+#: ../../standalone/drakbackup_.c:2423
msgid "Please choose where you want to backup"
msgstr "Bepaal waar u de reservekopie wilt maken"
-#: ../../standalone/drakbackup_.c:2350
+#: ../../standalone/drakbackup_.c:2425
msgid "on Hard Drive"
msgstr "op harde schijf"
-#: ../../standalone/drakbackup_.c:2360
+#: ../../standalone/drakbackup_.c:2435
msgid "across Network"
msgstr "over netwerk"
-#: ../../standalone/drakbackup_.c:2370
+#: ../../standalone/drakbackup_.c:2445
msgid "on CDROM"
-msgstr ""
+msgstr "op CDROM"
-#: ../../standalone/drakbackup_.c:2378
+#: ../../standalone/drakbackup_.c:2453
msgid "on Tape Device"
-msgstr ""
+msgstr "op Tape-apparaat"
-#: ../../standalone/drakbackup_.c:2421
+#: ../../standalone/drakbackup_.c:2496
msgid "Please choose what you want to backup"
msgstr "Kies waar u een reservekopie van wilt maken"
-#: ../../standalone/drakbackup_.c:2422
+#: ../../standalone/drakbackup_.c:2497
msgid "Backup system"
msgstr "Reservekopie-systeem"
-#: ../../standalone/drakbackup_.c:2423
+#: ../../standalone/drakbackup_.c:2498
msgid "Backup Users"
msgstr "Reservekopie Gebruikers"
-#: ../../standalone/drakbackup_.c:2426
+#: ../../standalone/drakbackup_.c:2501
msgid "Select user manually"
msgstr "Handmatig gebruiker selecteren"
-#: ../../standalone/drakbackup_.c:2508
+#: ../../standalone/drakbackup_.c:2584
msgid ""
"\n"
"Backup Sources: \n"
@@ -10890,7 +11432,7 @@ msgstr ""
"\n"
"Reservekopie-bronnen: \n"
-#: ../../standalone/drakbackup_.c:2509
+#: ../../standalone/drakbackup_.c:2585
msgid ""
"\n"
"- System Files:\n"
@@ -10898,7 +11440,7 @@ msgstr ""
"\n"
"- Systeembestanden:\n"
-#: ../../standalone/drakbackup_.c:2511
+#: ../../standalone/drakbackup_.c:2587
msgid ""
"\n"
"- User Files:\n"
@@ -10906,7 +11448,7 @@ msgstr ""
"\n"
"- Gebruikersbestanden:\n"
-#: ../../standalone/drakbackup_.c:2513
+#: ../../standalone/drakbackup_.c:2589
msgid ""
"\n"
"- Other Files:\n"
@@ -10914,64 +11456,68 @@ msgstr ""
"\n"
"- Overige bestanden:\n"
-#: ../../standalone/drakbackup_.c:2515
+#: ../../standalone/drakbackup_.c:2591
#, c-format
msgid ""
"\n"
-"- Save on Hard drive on path : %s\n"
+"- Save on Hard drive on path: %s\n"
msgstr ""
"\n"
"- Pad voor opslaan op harde schijf: %s\n"
-#: ../../standalone/drakbackup_.c:2518
+#: ../../standalone/drakbackup_.c:2594
msgid ""
"\n"
"- Delete hard drive tar files after backup.\n"
msgstr ""
+"\n"
+"- Tar-bestanden op harde schijf wissen na reservekopie.\n"
-#: ../../standalone/drakbackup_.c:2524
+#: ../../standalone/drakbackup_.c:2600
msgid ""
"\n"
"- Burn to CD"
msgstr ""
+"\n"
+"- Naar CD branden"
-#: ../../standalone/drakbackup_.c:2525
+#: ../../standalone/drakbackup_.c:2601
msgid "RW"
-msgstr ""
+msgstr "RW"
-#: ../../standalone/drakbackup_.c:2526
-#, fuzzy, c-format
-msgid " on device : %s"
-msgstr "Muis apparaat: %s\n"
+#: ../../standalone/drakbackup_.c:2602
+#, c-format
+msgid " on device: %s"
+msgstr " op apparaat: %s"
-#: ../../standalone/drakbackup_.c:2527
+#: ../../standalone/drakbackup_.c:2603
msgid " (multi-session)"
-msgstr ""
+msgstr " (multi-sessie)"
-#: ../../standalone/drakbackup_.c:2528
-#, fuzzy, c-format
+#: ../../standalone/drakbackup_.c:2604
+#, c-format
msgid ""
"\n"
-"- Save to Tape on device : %s"
+"- Save to Tape on device: %s"
msgstr ""
"\n"
-"- Computer voor opslaan via FTP: %s\n"
+"- Naar tape opslaan op apparaat: %s"
-#: ../../standalone/drakbackup_.c:2529
+#: ../../standalone/drakbackup_.c:2605
#, c-format
msgid "\t\tErase=%s"
-msgstr ""
+msgstr "\t\tWissen=%s"
-#: ../../standalone/drakbackup_.c:2532
-#, fuzzy, c-format
+#: ../../standalone/drakbackup_.c:2608
+#, c-format
msgid ""
"\n"
-"- Save via %s on host : %s\n"
+"- Save via %s on host: %s\n"
msgstr ""
"\n"
-"- Computer voor opslaan via FTP: %s\n"
+"- Opslaan via %s op host: %s\n"
-#: ../../standalone/drakbackup_.c:2533
+#: ../../standalone/drakbackup_.c:2609
#, c-format
msgid ""
"\t\t user name: %s\n"
@@ -10980,7 +11526,7 @@ msgstr ""
"\t\t gebruikersnaam: %s\n"
"\t\t op pad: %s \n"
-#: ../../standalone/drakbackup_.c:2534
+#: ../../standalone/drakbackup_.c:2610
msgid ""
"\n"
"- Options:\n"
@@ -10988,63 +11534,61 @@ msgstr ""
"\n"
"- Opties:\n"
-#: ../../standalone/drakbackup_.c:2535
+#: ../../standalone/drakbackup_.c:2611
msgid "\tDo not include System Files\n"
msgstr "\tSysteembestanden niet opnemen\n"
-#: ../../standalone/drakbackup_.c:2538
+#: ../../standalone/drakbackup_.c:2614
msgid "\tBackups use tar and bzip2\n"
msgstr "\tReservekopieën gebruiken tar en bzip2\n"
-#: ../../standalone/drakbackup_.c:2540
+#: ../../standalone/drakbackup_.c:2616
msgid "\tBackups use tar and gzip\n"
msgstr "\tReservekopieën gebruiken tar en gzip\n"
# check if this is the right translation, unclear! -Reinout
-#: ../../standalone/drakbackup_.c:2543
+#: ../../standalone/drakbackup_.c:2619
#, c-format
msgid ""
"\n"
-"- Daemon (%s) include :\n"
+"- Daemon (%s) include:\n"
msgstr ""
"\n"
"- Daemon (%s) invoegen: \n"
-#: ../../standalone/drakbackup_.c:2544
+#: ../../standalone/drakbackup_.c:2620
msgid "\t-Hard drive.\n"
msgstr "\t-Harde schijf.\n"
-#: ../../standalone/drakbackup_.c:2545
+#: ../../standalone/drakbackup_.c:2621
msgid "\t-CDROM.\n"
msgstr "\t-CDROM.\n"
-#: ../../standalone/drakbackup_.c:2546
+#: ../../standalone/drakbackup_.c:2622
msgid "\t-Tape \n"
-msgstr ""
+msgstr "\t-Tape \n"
-#: ../../standalone/drakbackup_.c:2547
+#: ../../standalone/drakbackup_.c:2623
msgid "\t-Network by FTP.\n"
msgstr "\t-Netwerk over FTP.\n"
-#: ../../standalone/drakbackup_.c:2548
+#: ../../standalone/drakbackup_.c:2624
msgid "\t-Network by SSH.\n"
msgstr "\t-Netwerk over SSH.\n"
-#: ../../standalone/drakbackup_.c:2549
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2625
msgid "\t-Network by rsync.\n"
-msgstr "\t-Netwerk over FTP.\n"
+msgstr "\t-Netwerk over rsync.\n"
-#: ../../standalone/drakbackup_.c:2550
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2626
msgid "\t-Network by webdav.\n"
-msgstr "\t-Netwerk over FTP.\n"
+msgstr "\t-Netwerk over webdav.\n"
-#: ../../standalone/drakbackup_.c:2552
+#: ../../standalone/drakbackup_.c:2628
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr "Geen configuratie, gelieve Hulp of Geavanceerd aan te klikken.\n"
-#: ../../standalone/drakbackup_.c:2558
+#: ../../standalone/drakbackup_.c:2634
msgid ""
"List of data to restore:\n"
"\n"
@@ -11052,7 +11596,7 @@ msgstr ""
"Lijst van te herstellen gegevens:\n"
"\n"
-#: ../../standalone/drakbackup_.c:2725
+#: ../../standalone/drakbackup_.c:2801
msgid ""
"List of data corrupted:\n"
"\n"
@@ -11060,180 +11604,292 @@ msgstr ""
"Lijst van beschadigde gegevens:\n"
"\n"
-#: ../../standalone/drakbackup_.c:2727
+#: ../../standalone/drakbackup_.c:2803
msgid "Please uncheck or remove it on next time."
msgstr "Gelieve het de volgende keer te deselecteren of te verwijderen"
-#: ../../standalone/drakbackup_.c:2737
+#: ../../standalone/drakbackup_.c:2813
msgid "Backup files are corrupted"
msgstr "Reservekopie bestanden zijn beschadigd"
-#: ../../standalone/drakbackup_.c:2758
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2834
msgid " All of your selected data have been "
msgstr " Al uw geselecteerde gegevens zijn "
-#: ../../standalone/drakbackup_.c:2759
+#: ../../standalone/drakbackup_.c:2835
#, c-format
msgid " Successfuly Restored on %s "
msgstr " Succesvol hersteld op %s "
-#: ../../standalone/drakbackup_.c:2877
+#: ../../standalone/drakbackup_.c:2953
msgid " Restore Configuration "
msgstr " Instellingen herstellen "
-#: ../../standalone/drakbackup_.c:2895
+#: ../../standalone/drakbackup_.c:2971
msgid "OK to restore the other files."
msgstr "OK om de overige bestanden te herstellen"
-#: ../../standalone/drakbackup_.c:2912
+#: ../../standalone/drakbackup_.c:2988
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
"Te herstellen gebruikerslijst (alleen de meest recente datum per gebruiker "
"is van belang)"
-#: ../../standalone/drakbackup_.c:2975
+#: ../../standalone/drakbackup_.c:3066
msgid "Backup the system files before:"
msgstr "Reservekopie maken van systeembestanden voor:"
-#: ../../standalone/drakbackup_.c:2977
+#: ../../standalone/drakbackup_.c:3068
msgid "please choose the date to restore"
msgstr "Gelieve de datum te kiezen om te herstellen"
-#: ../../standalone/drakbackup_.c:3014
+#: ../../standalone/drakbackup_.c:3105
msgid "Use Hard Disk to backup"
msgstr "Gebruik harde schijf voor reservekopie"
-#: ../../standalone/drakbackup_.c:3017
+#: ../../standalone/drakbackup_.c:3108
msgid "Please enter the directory to save:"
msgstr "Voer de map voor opslaan in:"
-#: ../../standalone/drakbackup_.c:3060
+#: ../../standalone/drakbackup_.c:3151
msgid "FTP Connection"
msgstr "FTP-verbinding"
-#: ../../standalone/drakbackup_.c:3067
+#: ../../standalone/drakbackup_.c:3158
msgid "Secure Connection"
msgstr "Beveiligde verbinding"
-#: ../../standalone/drakbackup_.c:3093
+#: ../../standalone/drakbackup_.c:3184
msgid "Restore from Hard Disk."
msgstr "Herstellen van harde schijf"
-#: ../../standalone/drakbackup_.c:3095
+#: ../../standalone/drakbackup_.c:3186
msgid "Please enter the directory where backups are stored"
msgstr "Voer de map in waar reservekopieën opgeslagen worden"
-#: ../../standalone/drakbackup_.c:3157
+#: ../../standalone/drakbackup_.c:3254
msgid "Select another media to restore from"
msgstr "Selecteer andere media om vanaf te herstellen"
-#: ../../standalone/drakbackup_.c:3159
+#: ../../standalone/drakbackup_.c:3256
msgid "Other Media"
msgstr "Andere media"
-#: ../../standalone/drakbackup_.c:3164
+#: ../../standalone/drakbackup_.c:3261
msgid "Restore system"
msgstr "Systeem herstellen"
-#: ../../standalone/drakbackup_.c:3165
+#: ../../standalone/drakbackup_.c:3262
msgid "Restore Users"
msgstr "Gebruikers herstellen"
-#: ../../standalone/drakbackup_.c:3166
+#: ../../standalone/drakbackup_.c:3263
msgid "Restore Other"
msgstr "Overige herstellen"
-#: ../../standalone/drakbackup_.c:3168
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3265
msgid "select path to restore (instead of /)"
msgstr "selecteer te herstellen pad (in plaats van / )"
-#: ../../standalone/drakbackup_.c:3172
+#: ../../standalone/drakbackup_.c:3269
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
"Voer nieuwe backup uit alvorens te herstellen (alleen voor incrementele "
"reservekopieën)"
-#: ../../standalone/drakbackup_.c:3174
+#: ../../standalone/drakbackup_.c:3271
msgid "Remove user directories before restore."
msgstr "Verwijder gebruikersmappen alvorens te herstellen"
-#: ../../standalone/drakbackup_.c:3232
+#: ../../standalone/drakbackup_.c:3384
+msgid ""
+"Restore Selected\n"
+"Catalog Entry"
+msgstr "Geselecteerd catalogus-item herstellen"
+
+#: ../../standalone/drakbackup_.c:3394
+msgid ""
+"Restore Selected\n"
+"Files"
+msgstr ""
+"Geselecteerde bestanden\n"
+"herstellen"
+
+#: ../../standalone/drakbackup_.c:3411
+msgid ""
+"Change\n"
+"Restore Path"
+msgstr ""
+"Herstel-pad\n"
+"veranderen"
+
+#: ../../standalone/drakbackup_.c:3477
+#, c-format
+msgid "Backup files not found at %s."
+msgstr "Reservekopie-bestanden niet op %s gevonden."
+
+#: ../../standalone/drakbackup_.c:3490
+#, c-format
+msgid ""
+"Insert the CD with volume label %s\n"
+" in the CD drive under mount point /mnt/cdrom"
+msgstr ""
+"Plaats de CD met volume label %s\n"
+" in het CD-ROM-station onder koppelpunt /mnt/cdrom"
+
+#: ../../standalone/drakbackup_.c:3490
+msgid "Restore From CD"
+msgstr "Herstellen van CD"
+
+#: ../../standalone/drakbackup_.c:3492
+#, c-format
+msgid "Not the correct CD label. Disk is labelled %s."
+msgstr "Incorrect CD-label. Het label van deze schijf is %s."
+
+#: ../../standalone/drakbackup_.c:3502
+#, c-format
+msgid ""
+"Insert the tape with volume label %s\n"
+" in the tape drive device %s"
+msgstr ""
+"Plaats de tape met volume label %s\n"
+" in tape-apparaat %s"
+
+#: ../../standalone/drakbackup_.c:3502
+msgid "Restore From Tape"
+msgstr "Herstellen van tape"
+
+#: ../../standalone/drakbackup_.c:3504
+#, c-format
+msgid "Not the correct tape label. Tape is labelled %s."
+msgstr "Incorrect tape-label. Het label van deze tape is %s."
+
+#: ../../standalone/drakbackup_.c:3524
+msgid "Restore Via Network"
+msgstr "Herstellen via netwerk"
+
+#: ../../standalone/drakbackup_.c:3524
+#, c-format
+msgid "Restore Via Network Protocol: %s"
+msgstr "Herstellen via netwerkprotocol: %s"
+
+#: ../../standalone/drakbackup_.c:3525
+msgid "Host Name"
+msgstr "Hostnaam"
+
+#: ../../standalone/drakbackup_.c:3526
+msgid "Host Path or Module"
+msgstr "Host-pad of module"
+
+#: ../../standalone/drakbackup_.c:3533
+msgid "Password required"
+msgstr "Wachtwoord vereist"
+
+#: ../../standalone/drakbackup_.c:3539
+msgid "Username required"
+msgstr "Gebruikersnaam vereist"
+
+#: ../../standalone/drakbackup_.c:3542
+msgid "Hostname required"
+msgstr "Hostnaam vereist"
+
+#: ../../standalone/drakbackup_.c:3547
+msgid "Path or Module required"
+msgstr "Pad of module vereist"
+
+#: ../../standalone/drakbackup_.c:3560
+msgid "Files Restored..."
+msgstr "Bestanden teruggezet..."
+
+#: ../../standalone/drakbackup_.c:3563
+msgid "Restore Failed..."
+msgstr "Herstellen mislukt..."
+
+#: ../../standalone/drakbackup_.c:3801
msgid "Restore all backups"
msgstr "Alle reservekopieën herstellen"
-#: ../../standalone/drakbackup_.c:3241
+#: ../../standalone/drakbackup_.c:3810
msgid "Custom Restore"
msgstr "Aangepast herstellen"
-#: ../../standalone/drakbackup_.c:3287 ../../standalone/drakbackup_.c:3320
-#: ../../standalone/drakbackup_.c:3346 ../../standalone/drakbackup_.c:3373
-#: ../../standalone/drakbackup_.c:3400 ../../standalone/drakbackup_.c:3460
-#: ../../standalone/drakbackup_.c:3487 ../../standalone/drakbackup_.c:3513
+#: ../../standalone/drakbackup_.c:3856
+msgid "CD in place - continue."
+msgstr "CD geplaatst - doorgaan."
+
+#: ../../standalone/drakbackup_.c:3862
+msgid "Browse to new restore repository."
+msgstr "Bladeren naar nieuwe herstellocatie."
+
+#: ../../standalone/drakbackup_.c:3865
+msgid "Restore From Catalog"
+msgstr "Herstellen vanuit catalogus"
+
+#: ../../standalone/drakbackup_.c:3893
+#, fuzzy
+msgid "Restore Progress"
+msgstr "Gebruikers herstellen"
+
+#: ../../standalone/drakbackup_.c:3935 ../../standalone/drakbackup_.c:3968
+#: ../../standalone/drakbackup_.c:3994 ../../standalone/drakbackup_.c:4021
+#: ../../standalone/drakbackup_.c:4048 ../../standalone/drakbackup_.c:4108
+#: ../../standalone/drakbackup_.c:4135 ../../standalone/drakbackup_.c:4165
+#: ../../standalone/drakbackup_.c:4191
msgid "Previous"
msgstr "Vorige"
-#: ../../standalone/drakbackup_.c:3291 ../../standalone/drakbackup_.c:3377
+#: ../../standalone/drakbackup_.c:3939 ../../standalone/drakbackup_.c:4025
#: ../../standalone/logdrake_.c:223
msgid "Save"
msgstr "Opslaan"
-#: ../../standalone/drakbackup_.c:3350
+#: ../../standalone/drakbackup_.c:3998
msgid "Build Backup"
msgstr "Reservekopie maken"
-#: ../../standalone/drakbackup_.c:3404 ../../standalone/drakbackup_.c:3974
+#: ../../standalone/drakbackup_.c:4052 ../../standalone/drakbackup_.c:4632
msgid "Restore"
msgstr "Reservekopie herstellen"
-#: ../../standalone/drakbackup_.c:3553
-msgid ""
-"Please Build backup before to restore it...\n"
-" or verify that your path to save is correct."
-msgstr ""
-"Gelieve eerst een reservekopie te maken voordat u probeert te herstellen...\n"
-" of ga na dat uw pad voor opslaan correct is."
-
-#: ../../standalone/drakbackup_.c:3574
+#: ../../standalone/drakbackup_.c:4231
msgid ""
-"Error during sendmail\n"
-" your report mail was not sent\n"
+"Error during sendmail.\n"
+" Your report mail was not sent.\n"
" Please configure sendmail"
msgstr ""
"Er trad een fout op tijdens \"sendmail\"\n"
" Uw melding is niet verstuurd.\n"
-" Gelieve sendmail in te stellen."
+" Gelieve sendmail te configureren."
-#: ../../standalone/drakbackup_.c:3598
-#, fuzzy
+#: ../../standalone/drakbackup_.c:4255
msgid ""
"The following packages need to be installed:\n"
" @list_of_rpm_to_install"
-msgstr "De volgende pakketten zullen geĂŻnstalleerd worden"
+msgstr ""
+"De volgende pakketten moeten geĂŻnstalleerd worden:\n"
+" @list_of_rpm_to_install"
-#: ../../standalone/drakbackup_.c:3621
-#, fuzzy
+#: ../../standalone/drakbackup_.c:4278
msgid ""
"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
-"Er trad een fout op tijdens het versturen via FTP.\n"
-" Gelieve uw FTP-configuratie te corrigeren."
+"Er trad een fout op tijdens de bestandsoverdracht via FTP.\n"
+" Corrigeert u alstublieft uw FTP-configuratie."
-#: ../../standalone/drakbackup_.c:3644
+#: ../../standalone/drakbackup_.c:4301
msgid "Please select data to restore..."
msgstr "Selecteer de gegevens om te herstellen"
-#: ../../standalone/drakbackup_.c:3665
+#: ../../standalone/drakbackup_.c:4322
msgid "Please select media for backup..."
msgstr "Selecteer media voor de reservekopie"
-#: ../../standalone/drakbackup_.c:3687
+#: ../../standalone/drakbackup_.c:4344
msgid "Please select data to backup..."
msgstr "Selecteer de gegevens waarvan u een reservekopie wilt maken..."
-#: ../../standalone/drakbackup_.c:3709
+#: ../../standalone/drakbackup_.c:4366
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
@@ -11241,60 +11897,59 @@ msgstr ""
"Kan geen instellingen-bestand vinden \n"
"klikt u op Hulp of Geavanceerd."
-#: ../../standalone/drakbackup_.c:3730
+#: ../../standalone/drakbackup_.c:4387
msgid "Under Devel ... please wait."
msgstr "In ontwikkeling ... nog even wachten."
-#: ../../standalone/drakbackup_.c:3811
+#: ../../standalone/drakbackup_.c:4468
msgid "Backup system files"
msgstr "Reservekopie maken van systeembestanden"
-#: ../../standalone/drakbackup_.c:3813
+#: ../../standalone/drakbackup_.c:4470
msgid "Backup user files"
msgstr "Reservekopie maken van gebruikersbestanden"
-#: ../../standalone/drakbackup_.c:3815
+#: ../../standalone/drakbackup_.c:4472
msgid "Backup other files"
msgstr "Reservekopie maken van overige bestanden"
-#: ../../standalone/drakbackup_.c:3817 ../../standalone/drakbackup_.c:3850
+#: ../../standalone/drakbackup_.c:4474 ../../standalone/drakbackup_.c:4507
msgid "Total Progress"
msgstr "Totale voortgang"
-#: ../../standalone/drakbackup_.c:3841
+#: ../../standalone/drakbackup_.c:4498
msgid "files sending by FTP"
msgstr "bestanden worden per FTP verstuurd"
-#: ../../standalone/drakbackup_.c:3845
+#: ../../standalone/drakbackup_.c:4502
msgid "Sending files..."
msgstr "Bezig met versturen van bestanden..."
-#: ../../standalone/drakbackup_.c:3931
+#: ../../standalone/drakbackup_.c:4588
msgid "Backup Now from configuration file"
msgstr "Nu reservekopie maken vanaf configuratiebestand"
-#: ../../standalone/drakbackup_.c:3936
+#: ../../standalone/drakbackup_.c:4593
msgid "View Backup Configuration."
msgstr "Backup-configuratie bekijken"
-#: ../../standalone/drakbackup_.c:3956
+#: ../../standalone/drakbackup_.c:4614
msgid "Wizard Configuration"
msgstr "Configuratie met hulp"
-#: ../../standalone/drakbackup_.c:3961
+#: ../../standalone/drakbackup_.c:4619
msgid "Advanced Configuration"
msgstr "Geavanceerde configuratie"
-#: ../../standalone/drakbackup_.c:3966
+#: ../../standalone/drakbackup_.c:4624
msgid "Backup Now"
msgstr "Nu reservekopie maken"
-#: ../../standalone/drakbackup_.c:3996
+#: ../../standalone/drakbackup_.c:4658
msgid "Drakbackup"
msgstr "Drakbackup"
-#: ../../standalone/drakbackup_.c:4045
-#, fuzzy
+#: ../../standalone/drakbackup_.c:4707
msgid ""
"options description:\n"
"\n"
@@ -11325,28 +11980,28 @@ msgid ""
" \n"
"\n"
msgstr ""
-"opties omschrijving:\n"
+"opties-omschrijving:\n"
"\n"
-" In deze stap zal Drakbackup u toestaan om :\n"
+" In deze stap zal Drakbackup u in staat stellen om :\n"
"\n"
" - De compressie modus:\n"
" \n"
" Als U bzip2 compressie selecteert, dan comprimeert\n"
-" U (tot 2-10%) beter dan gzip.\n"
+" U (tot 2-10%) uw gegevens beter dan gzip.\n"
" Deze optie is daarentegen niet standaard aangezet\n"
-" daar deze compressie modus meer tijd nodig heeft\n"
+" daar deze compressiemodus meer tijd nodig heeft\n"
" (zo'n 1000% meer).\n"
" \n"
-" - De vernieuwings modus:\n"
+" - De vernieuwingsmodus:\n"
"\n"
" Deze optie zal uw reservekopie vernieuwen, maar is\n"
-" niet echt bruikbaar daar de reservekopie eerst\n"
+" niet echt nuttig daar de reservekopie eerst\n"
" gedecomprimeerd dient te worden alvorens deze\n"
" vernieuwd kan worden.\n"
" \n"
" - De .backupignore modus:\n"
"\n"
-" Zoals met cvs, Drakbackup zal alle referenties in\n"
+" Zoals met cvs, zal Drakbackup alle referenties in\n"
" .backupignore bestanden in elke map negeren.\n"
" voorbeeld: \n"
" /*> cat .backupignore*/\n"
@@ -11356,7 +12011,7 @@ msgstr ""
" \n"
"\n"
-#: ../../standalone/drakbackup_.c:4075
+#: ../../standalone/drakbackup_.c:4737
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -11371,7 +12026,7 @@ msgstr ""
" in te stellen in /etc/postfix/main.cf\n"
"\n"
-#: ../../standalone/drakbackup_.c:4083
+#: ../../standalone/drakbackup_.c:4745
msgid ""
"options description:\n"
"\n"
@@ -11418,7 +12073,7 @@ msgstr ""
"\tDeze optie staat U toe een reservekopie van de\n"
"\t/etc map te maken, welke alle instellings\n"
"\tbestanden bevat. Let aub wel op dat tijdens\n"
-"\thet terugzetten van de reservekopie deze\n"
+"\thet herstellen van de reservekopie deze\n"
"\tbestanden niet worden overschreven:\n"
"\t\t/etc/passwd \n"
"\t\t/etc/group \n"
@@ -11453,28 +12108,28 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:4122
+#: ../../standalone/drakbackup_.c:4784
msgid ""
"restore description:\n"
" \n"
-"Only the most recent date will be used ,because with incremental \n"
-"backups it is necesarry to restore one by one each older backups.\n"
+"Only the most recent date will be used, because with incremental \n"
+"backups it is necessary to restore one by one each older backup.\n"
"\n"
-"So if you don't like to restore a user please unselect all his\n"
-"check box.\n"
+"So if you don't want to restore a user please unselect all their\n"
+"check boxes.\n"
"\n"
-"Otherwise, you are able to select only one of this\n"
+"Otherwise, you are able to select only one of these.\n"
"\n"
" - Incremental Backups:\n"
"\n"
"\tThe incremental backup is the most powerful \n"
-"\toption to use backup, this option allow you \n"
-"\tto backup all your data the first time, and \n"
-"\tonly the changed after.\n"
-"\tSo you will be able during the restore\n"
+"\toption to use. This option allows you to \n"
+"\tbackup all of your data the first time, and \n"
+"\tonly the changed data after.\n"
+"\tSo you will be able, during the restore\n"
"\tstep, to restore your data from a specified\n"
"\tdate.\n"
-"\tIf you have not selected this options all\n"
+"\tIf you have not selected this option all\n"
"\told backups are deleted before each backup. \n"
"\n"
"\n"
@@ -11489,7 +12144,7 @@ msgstr ""
"Dus indien U geen herstel voor een gebruiker wilt uitvoeren\n"
"zult U al zijn bestanden moeten de-selecteren.\n"
"\n"
-"Anders heeft u maar Ă©Ă©n keus\n"
+"Anders kunt u slechts kiezen uit het volgende:\n"
"\n"
" - Periodieke reservekopieën:\n"
"\n"
@@ -11497,27 +12152,29 @@ msgstr ""
"\toptie voor een reservekopie, deze optie stelt U in\n"
"\tstaat alles de eerste keer op te slaan, en\n"
"\tvervolgens alleen gewijzigde bestanden.\n"
-"\tDus U zult tijdens de herstel stap, de\n"
-"\tmogelijkheid hebben een specifieke datum te selecteren\n"
-"\tvoor herstel.\n"
-"\tIndien U deze optie niet selecteerd overschrijft U alle\n"
+"\tDus U zult tijdens de herstelstap, de\n"
+"\tmogelijkheid hebben uw gegevens vanaf een\n"
+"\tbepaalde datum te herstellen.\n"
+"\tIndien U deze optie niet selecteert, overschrijft U alle\n"
"\toude reservekopieën voor elke nieuwe reservekopie.\n"
"\n"
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:4148 ../../standalone/drakbackup_.c:4225
+#: ../../standalone/drakbackup_.c:4810 ../../standalone/drakbackup_.c:4887
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
-#: ../../standalone/drakbackup_.c:4150 ../../standalone/drakbackup_.c:4227
+#: ../../standalone/drakbackup_.c:4812 ../../standalone/drakbackup_.c:4889
msgid ""
" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
+" vernieuwingen 2002 MandrakeSoft door Stew Benedict <sbenedict"
+"\\@mandrakesoft.com>"
-#: ../../standalone/drakbackup_.c:4152 ../../standalone/drakbackup_.c:4229
+#: ../../standalone/drakbackup_.c:4814 ../../standalone/drakbackup_.c:4891
msgid ""
" This program is free software; you can redistribute it and/or modify\n"
" it under the terms of the GNU General Public License as published by\n"
@@ -11553,7 +12210,7 @@ msgstr ""
" MA 02111-1307\n"
" USA."
-#: ../../standalone/drakbackup_.c:4166
+#: ../../standalone/drakbackup_.c:4828
msgid ""
"Description:\n"
"\n"
@@ -11631,7 +12288,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:4204
+#: ../../standalone/drakbackup_.c:4866
msgid ""
"options description:\n"
"\n"
@@ -11650,7 +12307,7 @@ msgstr ""
"de server.\n"
"\n"
-#: ../../standalone/drakbackup_.c:4213
+#: ../../standalone/drakbackup_.c:4875
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -11674,7 +12331,7 @@ msgstr ""
"te betrachten en de reservekopiebestanden niet\n"
"handmatig te wijzigen.\n"
-#: ../../standalone/drakbackup_.c:4243
+#: ../../standalone/drakbackup_.c:4905
msgid ""
"Description:\n"
"\n"
@@ -11767,39 +12424,47 @@ msgid ""
"\n"
"OPTIONS:\n"
msgstr ""
+"drakbug versie %s\n"
+"Copyright (C) 2002 MandrakeSoft.\n"
+"Dit is vrije software en mag verder gedistribueerd worden onder de "
+"voorwaarden van de GNU GPL.\n"
+"\n"
+"gebruik: drakbug [OPTIES] [PROGRAMMA_NAAM]\n"
+"\n"
+"OPTIES:\n"
#: ../../standalone/drakbug_.c:47
msgid " --help - print this help message.\n"
-msgstr ""
+msgstr " --help - drukt deze hulpboodschap af.\n"
#: ../../standalone/drakbug_.c:48
msgid " --report - program should be one of mandrake tools\n"
msgstr ""
+" --report - (Rapporteren) PROGRAMMA_NAAM moet een Mandrake-"
+"hulpprogramma zijn\n"
#: ../../standalone/drakbug_.c:49
msgid " --incident - program should be one of mandrake tools\n"
msgstr ""
+" --incident - PROGRAMMA_NAAM moet een Mandrake-hulpprogramma zijn\n"
#: ../../standalone/drakbug_.c:64
-#, fuzzy
msgid "Mandrake Bug Report Tool"
-msgstr "Mandrake Bugraportage Gereedschap"
+msgstr "Mandrake foutrapportage-programma"
#: ../../standalone/drakbug_.c:70
-#, fuzzy
msgid "First Time Wizard"
-msgstr "Eerste keer Wizard"
+msgstr "Eerste keer-wizard"
#: ../../standalone/drakbug_.c:71
msgid "Synchronization tool"
-msgstr "Synchronizatie Gereedschap"
+msgstr "Synchronisatie-hulpprogramma"
-#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:85
-#: ../../standalone/drakbug_.c:150 ../../standalone/drakbug_.c:152
-#: ../../standalone/drakbug_.c:156
-#, fuzzy
+#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:86
+#: ../../standalone/drakbug_.c:151 ../../standalone/drakbug_.c:153
+#: ../../standalone/drakbug_.c:157
msgid "Standalone Tools"
-msgstr "Commandoregel-gereedschappen"
+msgstr "Zelfstandige hulpprogramma's"
#: ../../standalone/drakbug_.c:73
msgid "HardDrake"
@@ -11827,12 +12492,11 @@ msgstr "Softwarebeheer"
#: ../../standalone/drakbug_.c:79
msgid "Urpmi"
-msgstr ""
+msgstr "Urpmi"
#: ../../standalone/drakbug_.c:80
-#, fuzzy
msgid "Windows Migration tool"
-msgstr "Windows Migratie Gereedschap"
+msgstr "Windows-migratiegereedschap"
#: ../../standalone/drakbug_.c:81
msgid "Userdrake"
@@ -11842,24 +12506,23 @@ msgstr "Userdrake"
msgid "Configuration Wizards"
msgstr "Configuratie Wizards"
-#: ../../standalone/drakbug_.c:96
+#: ../../standalone/drakbug_.c:97
msgid "Application:"
-msgstr "Applicatie:"
+msgstr "Toepassing:"
-#: ../../standalone/drakbug_.c:97
+#: ../../standalone/drakbug_.c:98
msgid "Package: "
msgstr "Pakket: "
-#: ../../standalone/drakbug_.c:98
+#: ../../standalone/drakbug_.c:99
msgid "Kernel:"
msgstr "Kernel:"
-#: ../../standalone/drakbug_.c:99
+#: ../../standalone/drakbug_.c:100
msgid "Release: "
msgstr "Uitgave: "
-#: ../../standalone/drakbug_.c:114
-#, fuzzy
+#: ../../standalone/drakbug_.c:115
msgid ""
"\n"
"\n"
@@ -11872,29 +12535,28 @@ msgid ""
msgstr ""
"\n"
"\n"
-"Om een bugrapport te versturen, klikt u op de knop rapporteren.\n"
-"Hierdoor wordt een browservenster geopend naar https://www.bugzilla.com\n"
-" waar u een formulier vindt om in te vullen. De bovenstaande informatie zal "
+"Om een foutrapport te versturen, klikt u op de knop 'rapporteren'.\n"
+"Hierdoor wordt een browservenster geopend op 'bugzilla'\n"
+"waar u een formulier vindt om in te vullen. De bovenstaande informatie zal "
"worden \n"
"verstuurd naar die server\n"
"\n"
-#: ../../standalone/drakbug_.c:135
+#: ../../standalone/drakbug_.c:136
msgid "Report"
msgstr "Rapporteren"
-#: ../../standalone/drakbug_.c:165
+#: ../../standalone/drakbug_.c:166
msgid "Not installed"
msgstr "Niet geĂŻnstalleerd"
-#: ../../standalone/drakbug_.c:182
+#: ../../standalone/drakbug_.c:183
msgid "connecting to Bugzilla wizard ..."
msgstr "Bezig met verbinden naar Bugzilla Wizard..."
-#: ../../standalone/drakbug_.c:189
-#, fuzzy
+#: ../../standalone/drakbug_.c:190
msgid "No browser available! Please install one"
-msgstr "Geen browser beschikbaar! Installeer a.u.b. een"
+msgstr "Geen bladerprogramma beschikbaar! Installeert u er alstublieft Ă©Ă©n."
#: ../../standalone/drakconnect_.c:79
#, c-format
@@ -12343,7 +13005,7 @@ msgid "Font List"
msgstr "Lettertypenlijst"
#: ../../standalone/drakfont_.c:909
-msgid "Choose the applications that will support the fonts :"
+msgid "Choose the applications that will support the fonts:"
msgstr "Kies de applicaties waarin de lettertypen beschikbaar zullen zijn:"
#: ../../standalone/drakfont_.c:918
@@ -12414,19 +13076,19 @@ msgstr "Lettertypen op uw systeem verwijderen"
msgid "Post Uninstall"
msgstr "Post-deĂŻnstallatie"
-#: ../../standalone/drakgw_.c:42 ../../standalone/drakgw_.c:195
+#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:188
msgid "Internet Connection Sharing"
msgstr "Internetverbinding delen"
-#: ../../standalone/drakgw_.c:121
+#: ../../standalone/drakgw_.c:119
msgid "Sorry, we support only 2.4 kernels."
msgstr "Helaas, wij ondersteunen alleen 2.4 kernels."
-#: ../../standalone/drakgw_.c:133
+#: ../../standalone/drakgw_.c:130
msgid "Internet Connection Sharing currently enabled"
msgstr "Internetverbinding delen staat op dit moment aan"
-#: ../../standalone/drakgw_.c:134
+#: ../../standalone/drakgw_.c:131
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -12438,31 +13100,31 @@ msgstr ""
"\n"
"Wat wenst u te doen?"
-#: ../../standalone/drakgw_.c:138
+#: ../../standalone/drakgw_.c:135
msgid "disable"
msgstr "uitschakelen"
-#: ../../standalone/drakgw_.c:138 ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:135 ../../standalone/drakgw_.c:160
msgid "dismiss"
msgstr "klaar"
-#: ../../standalone/drakgw_.c:138 ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:135 ../../standalone/drakgw_.c:160
msgid "reconfigure"
msgstr "herconfigureren"
-#: ../../standalone/drakgw_.c:141
+#: ../../standalone/drakgw_.c:138
msgid "Disabling servers..."
msgstr "Bezig met servers uitzetten..."
-#: ../../standalone/drakgw_.c:149
+#: ../../standalone/drakgw_.c:146
msgid "Internet connection sharing is now disabled."
msgstr "Internetverbinding delen staat op dit moment uit."
-#: ../../standalone/drakgw_.c:158
+#: ../../standalone/drakgw_.c:155
msgid "Internet Connection Sharing currently disabled"
msgstr "Internet Connectie Delen staat niet aan"
-#: ../../standalone/drakgw_.c:159
+#: ../../standalone/drakgw_.c:156
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
@@ -12474,19 +13136,19 @@ msgstr ""
"\n"
"Wat wenst u te doen?"
-#: ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:160
msgid "enable"
msgstr "inschakelen"
-#: ../../standalone/drakgw_.c:170
+#: ../../standalone/drakgw_.c:167
msgid "Enabling servers..."
msgstr "Bezig met inschakelen van servers..."
-#: ../../standalone/drakgw_.c:175
+#: ../../standalone/drakgw_.c:172
msgid "Internet connection sharing is now enabled."
msgstr "Internetverbinding delen staat op dit moment aan"
-#: ../../standalone/drakgw_.c:196
+#: ../../standalone/drakgw_.c:189
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
"With that feature, other computers on your local network will be able to use "
@@ -12502,21 +13164,21 @@ msgstr ""
"Opmerking: u heeft een specifiek hiervoor bestemde netwerk-adapter nodig\n"
"om een Local Area Network (LAN) op te zetten."
-#: ../../standalone/drakgw_.c:222
+#: ../../standalone/drakgw_.c:215
#, c-format
msgid "Interface %s (using module %s)"
msgstr "Interface %s (gebruikt module %s)"
-#: ../../standalone/drakgw_.c:223
+#: ../../standalone/drakgw_.c:216
#, c-format
msgid "Interface %s"
msgstr "Interface %s"
-#: ../../standalone/drakgw_.c:231
+#: ../../standalone/drakgw_.c:224
msgid "No network adapter on your system!"
msgstr "Geen netwerk adapter op uw systeem!"
-#: ../../standalone/drakgw_.c:232
+#: ../../standalone/drakgw_.c:225
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
@@ -12524,11 +13186,11 @@ msgstr ""
"Er is geen ethernet netwerkadapter op uw systeem gevonden. Gelieve het "
"hardware configuratieprogramma te draaien."
-#: ../../standalone/drakgw_.c:238
+#: ../../standalone/drakgw_.c:231
msgid "Network interface"
msgstr "Netwerk Interface"
-#: ../../standalone/drakgw_.c:239
+#: ../../standalone/drakgw_.c:232
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -12544,7 +13206,7 @@ msgstr ""
"Ik sta op het punt om uw Local Area Network te koppelen aan\n"
"deze adapter."
-#: ../../standalone/drakgw_.c:248
+#: ../../standalone/drakgw_.c:241
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
@@ -12552,11 +13214,11 @@ msgstr ""
"Kies alstublieft welke netwerkadapter verbinding zal maken met uw Local Area "
"Network."
-#: ../../standalone/drakgw_.c:266
+#: ../../standalone/drakgw_.c:259
msgid "Network interface already configured"
msgstr "Netwerk-interface reeds geconfigureerd"
-#: ../../standalone/drakgw_.c:267
+#: ../../standalone/drakgw_.c:260
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -12571,15 +13233,15 @@ msgstr ""
"\n"
"U kunt het ook handmatig doen, maar u moet dan wel weten wat u doet."
-#: ../../standalone/drakgw_.c:272
+#: ../../standalone/drakgw_.c:265
msgid "Automatic reconfiguration"
msgstr "Automatisch opnieuw configureren"
-#: ../../standalone/drakgw_.c:273
+#: ../../standalone/drakgw_.c:266
msgid "Show current interface configuration"
msgstr "Toon huidige interface-configuratie"
-#: ../../standalone/drakgw_.c:275
+#: ../../standalone/drakgw_.c:268
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -12596,7 +13258,7 @@ msgstr ""
"IP attribution: %s\n"
"Stuurprogramma: %s"
-#: ../../standalone/drakgw_.c:287
+#: ../../standalone/drakgw_.c:280
msgid ""
"I can keep your current configuration and assume you already set up a DHCP "
"server; in that case please verify I correctly read the C-Class Network that "
@@ -12617,57 +13279,45 @@ msgstr ""
"en een DHCP-server voor u instellen.\n"
"\n"
-#: ../../standalone/drakgw_.c:292
+#: ../../standalone/drakgw_.c:285
msgid "C-Class Local Network"
msgstr "C-Class lokaal netwerk"
-#: ../../standalone/drakgw_.c:293
+#: ../../standalone/drakgw_.c:286
msgid "(This) DHCP Server IP"
msgstr "(Deze) DHCP-server IP"
-#: ../../standalone/drakgw_.c:294
+#: ../../standalone/drakgw_.c:287
msgid "Re-configure interface and DHCP server"
msgstr "Interface en DHCP-server opnieuw configureren"
-#: ../../standalone/drakgw_.c:301
+#: ../../standalone/drakgw_.c:294
msgid "The Local Network did not finish with `.0', bailing out."
msgstr "Het lokale netwerk eindigde niet op '.0', procedure gestaakt"
-#: ../../standalone/drakgw_.c:312
+#: ../../standalone/drakgw_.c:305
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr ""
"Potentieel LAN-adresconflict gevonden in de huidige configuratie \n"
"van %s!\n"
-#: ../../standalone/drakgw_.c:320
-msgid "Firewalling configuration detected!"
-msgstr "Firewall configuratie gedetecteerd!"
-
-#: ../../standalone/drakgw_.c:321
-msgid ""
-"Warning! An existing firewalling configuration has been detected. You may "
-"need some manual fix after installation."
-msgstr ""
-"Waarschuwing! Een bestaande firewall configuratie is gevonden. U kunt "
-"misschien na de installatie een handmatige aanpassing nodig hebben."
-
-#: ../../standalone/drakgw_.c:328
+#: ../../standalone/drakgw_.c:315
msgid "Configuring..."
msgstr "Configureren..."
-#: ../../standalone/drakgw_.c:329
+#: ../../standalone/drakgw_.c:316
msgid "Configuring scripts, installing software, starting servers..."
msgstr ""
"Bezig met het configureren van scripts, installeren van software, starten "
"vanservers..."
-#: ../../standalone/drakgw_.c:365
+#: ../../standalone/drakgw_.c:352
#, c-format
msgid "Problems installing package %s"
msgstr "Problemen met installeren van pakket %s"
-#: ../../standalone/drakgw_.c:549
+#: ../../standalone/drakgw_.c:485
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
@@ -12677,27 +13327,27 @@ msgstr ""
"U kunt nu uw internetverbinding delen met andere gebruikers op uw Local Area "
"Network, met gebruikmaking van automatische netwerkconfiguratie (DHCP)."
-#: ../../standalone/drakgw_.c:566
+#: ../../standalone/drakgw_.c:504
msgid "The setup has already been done, but it's currently disabled."
msgstr ""
"De setup van Internetverbinding delen is al uitgevoerd.\n"
"Het staat op dit moment uit."
-#: ../../standalone/drakgw_.c:567
+#: ../../standalone/drakgw_.c:505
msgid "The setup has already been done, and it's currently enabled."
msgstr ""
"De setup van Internetverbinding delen is al uitgevoerd.\n"
"Het staat op dit moment aan."
-#: ../../standalone/drakgw_.c:568
+#: ../../standalone/drakgw_.c:506
msgid "No Internet Connection Sharing has ever been configured."
msgstr "Internetverbinding delen is tot op heden nooit geconfigureerd."
-#: ../../standalone/drakgw_.c:573
+#: ../../standalone/drakgw_.c:511
msgid "Internet connection sharing configuration"
msgstr "Configuratie van Internetverbinding delen"
-#: ../../standalone/drakgw_.c:580
+#: ../../standalone/drakgw_.c:518
#, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -12712,8 +13362,152 @@ msgstr ""
"\n"
"Klik op Configureer om de instellingen-hulp in te schakelen."
+#: ../../standalone/draksound_.c:46
+msgid "No Sound Card detected!"
+msgstr "Geen geluidskaart gevonden!"
+
+#: ../../standalone/draksound_.c:47
+msgid ""
+"No Sound Card has been detected on your machine. Please verify that a Linux-"
+"supported Sound Card is correctly plugged in.\n"
+"\n"
+"\n"
+"You can visit our hardware database at:\n"
+"\n"
+"\n"
+"http://www.linux-mandrake.com/en/hardware.php3"
+msgstr ""
+"Er is geen geluidskaart gevonden op uw computer. Ga na dat een door Linux "
+"ondersteunde geluidskaart correct aangesloten is.\n"
+"\n"
+"\n"
+"U kunt onze randapparatuur-database bereiken op:\n"
+"\n"
+"\n"
+"http://www.linux-mandrake.com/nl/hardware.php3"
+
+#: ../../standalone/draksplash_.c:32
+msgid "package ImageMagick is required for correct working"
+msgstr "pakket ImageMagick is vereist voor correct functioneren"
+
+#: ../../standalone/draksplash_.c:76
+msgid "first step creation"
+msgstr "creëren van eerste stap"
+
+#: ../../standalone/draksplash_.c:77
+msgid "final resolution"
+msgstr "uiteindelijke resolutie"
+
+#: ../../standalone/draksplash_.c:78 ../../standalone/draksplash_.c:170
+msgid "choose image file"
+msgstr "kies het beeldbestand"
+
+#: ../../standalone/draksplash_.c:79
+msgid "Theme name"
+msgstr "Themanaam"
+
+#: ../../standalone/draksplash_.c:81
+msgid "make bootsplash step 2"
+msgstr "opstartscherm maken stap 2"
+
+#: ../../standalone/draksplash_.c:82
+msgid "go to lilosplash configuration"
+msgstr "Ga naar configuratie van lilo-opstartscherm"
+
+#: ../../standalone/draksplash_.c:83
+msgid "quit"
+msgstr "afsluiten"
+
+#: ../../standalone/draksplash_.c:84
+msgid "save theme"
+msgstr "thema opslaan"
+
+#: ../../standalone/draksplash_.c:85
+msgid "browse"
+msgstr "bladeren"
+
+#: ../../standalone/draksplash_.c:98 ../../standalone/draksplash_.c:159
+msgid "Configure bootsplash picture"
+msgstr "Opstartscherm-afbeelding configureren"
+
+#: ../../standalone/draksplash_.c:99
+msgid "x coordinate of text box in number of character"
+msgstr "X-coördinaat van tekstveld in aantal tekens"
+
+#: ../../standalone/draksplash_.c:100
+msgid "y coordinate of text box in number of character"
+msgstr "Y-coördinaat van tekstveld in aantal tekens"
+
+#: ../../standalone/draksplash_.c:101
+msgid "text width"
+msgstr "tekstbreedte"
+
+#: ../../standalone/draksplash_.c:102
+msgid "text box height"
+msgstr "tekstveld-hoogte"
+
+#: ../../standalone/draksplash_.c:103
+msgid "the progress bar x coordinate of its upper left corner"
+msgstr "de X-coördinaat van de linkerbovenhoek van de voortgangsbalk"
+
+#: ../../standalone/draksplash_.c:104
+msgid "the progress bar y coordinate of its upper left corner"
+msgstr "de Y-coördinaat van de linkerbovenhoek van de voortgangsbalk"
+
+#: ../../standalone/draksplash_.c:105
+msgid "the width of the progress bar"
+msgstr "de breedte van de voortgangsbalk"
+
+#: ../../standalone/draksplash_.c:106
+msgid "the heigth of the progress bar"
+msgstr "de hoogte van de voortgangsbalk"
+
+#: ../../standalone/draksplash_.c:107
+msgid "the color of the progress bar"
+msgstr "de kleur van de voortgangsbalk"
+
+#: ../../standalone/draksplash_.c:119
+msgid "go back"
+msgstr "ga terug"
+
+#: ../../standalone/draksplash_.c:120
+msgid "preview"
+msgstr "voorbeeld"
+
+#: ../../standalone/draksplash_.c:121
+msgid "choose color"
+msgstr "kies een kleur"
+
+#: ../../standalone/draksplash_.c:124
+msgid "Display logo on Console"
+msgstr "Logo weergeven in tekstscherm (console)"
+
+#: ../../standalone/draksplash_.c:125
+msgid "Make kernel message quiet by default"
+msgstr "Kernel-meldingen standaard onderdrukken"
+
+#: ../../standalone/draksplash_.c:161 ../../standalone/draksplash_.c:330
+#, c-format
+msgid "This theme haven't yet any bootsplash in %s !"
+msgstr "Dit thema heeft nog geen opstartscherm in %s!"
+
+#: ../../standalone/draksplash_.c:213
+msgid "saving Bootsplash theme..."
+msgstr "bezig met opslaan opstartscherm-thema..."
+
+#: ../../standalone/draksplash_.c:436
+msgid "ProgressBar color selection"
+msgstr "Voortgangsbalk-kleurselectie"
+
+#: ../../standalone/draksplash_.c:454
+msgid "You must choose an image file first!"
+msgstr "U dient eerst een beeldbestand te kiezen!"
+
+#: ../../standalone/draksplash_.c:463
+msgid "Generating preview ..."
+msgstr "Bezig met genereren voorbeeld..."
+
#: ../../standalone/drakxtv_.c:49
-#, fuzzy
msgid ""
"XawTV isn't installed!\n"
"\n"
@@ -12730,14 +13524,14 @@ msgstr ""
"XawTV is niet geĂŻnstalleerd!\n"
"\n"
"\n"
-"Indien U wel een TV kaart heeft, maar DrakX deze niet gedetecteerd\n"
-"heeft (geen module bttv in \"/etc/modules\") of xawtv is niet\n"
+"Indien U wel een TV-kaart heeft, maar DrakX deze niet gevonden\n"
+"heeft (geen module bttv of saa7134 in \"/etc/modules\") of xawtv is niet\n"
"geĂŻnstalleerd, stuur dan het resultaat van \"lspcidrake -v -f\" naar\n"
"\"install\\@mandrakesoft.com\" met als onderwerp \"undetected TV card\".\n"
"\n"
"\n"
-"U kunt het alsnog installeren door \"urpmi xawtv\" als root gebruiker\n"
-"uit te voeren op een console."
+"U kunt het alsnog installeren door \"urpmi xawtv\" als root-gebruiker\n"
+"uit te voeren in een terminalvenster."
#: ../../standalone/drakxtv_.c:66
msgid "Canada (cable)"
@@ -12801,7 +13595,7 @@ msgstr "Argentinië"
#: ../../standalone/drakxtv_.c:72
msgid "Australian Optus cable TV"
-msgstr ""
+msgstr "Australische Optus kabel-TV"
#: ../../standalone/drakxtv_.c:107
msgid ""
@@ -12812,11 +13606,11 @@ msgstr ""
"TV-norm en land in te geven"
#: ../../standalone/drakxtv_.c:109
-msgid "TV norm :"
+msgid "TV norm:"
msgstr "TV norm :"
#: ../../standalone/drakxtv_.c:110
-msgid "Area :"
+msgid "Area:"
msgstr "Gebied :"
#: ../../standalone/drakxtv_.c:114
@@ -12900,7 +13694,7 @@ msgid "The change is done, but to be effective you must logout"
msgstr ""
"De wijziging is gemaakt, maar u moet uitloggen voordat het effect heeft"
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:517
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:515
msgid "logdrake"
msgstr "logdrake"
@@ -13009,9 +13803,8 @@ msgid "Content of the file"
msgstr "Inhoud van het bestand"
#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:391
-#, fuzzy
msgid "Mail alert"
-msgstr "waarschuwing via e-mail/SMS"
+msgstr "Waarschuwing via e-mail"
#: ../../standalone/logdrake_.c:267
#, c-format
@@ -13019,59 +13812,50 @@ msgid "please wait, parsing file: %s"
msgstr "Even geduld, bezig met ontleden van bestand: %s"
#: ../../standalone/logdrake_.c:408
-#, fuzzy
msgid "Mail alert configuration"
-msgstr "Configuratie van waarschuwing per e-mail/SMS"
+msgstr "Configuratie van waarschuwing per e-mail"
#: ../../standalone/logdrake_.c:409
-#, fuzzy
msgid ""
"Welcome to the mail configuration utility.\n"
"\n"
"Here, you'll be able to set up the alert system.\n"
msgstr ""
-"Welkom bij het e-mail/SMS configuratieprogramma.\n"
+"Welkom bij het e-mail configuratieprogramma.\n"
"\n"
"Hier kunt u het waarschuwingssysteem instellen.\n"
#: ../../standalone/logdrake_.c:416
msgid "Apache World Wide Web Server"
-msgstr ""
+msgstr "Apache World Wide Web Server"
#: ../../standalone/logdrake_.c:417
-#, fuzzy
msgid "Domain Name Resolver"
-msgstr "Domeinnaam"
+msgstr "Domeinnaam-opzoeker"
#: ../../standalone/logdrake_.c:418
-#, fuzzy
msgid "Ftp Server"
-msgstr "Stop Server"
+msgstr "FTP-server"
#: ../../standalone/logdrake_.c:419
-#, fuzzy
msgid "Postfix Mail Server"
-msgstr "Postfix post-server, Inn nieuws-server"
+msgstr "Postfix e-mailserver"
#: ../../standalone/logdrake_.c:420
-#, fuzzy
msgid "Samba Server"
-msgstr "Start Server"
+msgstr "Samba-server"
#: ../../standalone/logdrake_.c:421
-#, fuzzy
msgid "SSH Server"
-msgstr "NIS-server"
+msgstr "SSH-server"
#: ../../standalone/logdrake_.c:422
-#, fuzzy
msgid "Webmin Service"
-msgstr "Diensten"
+msgstr "Webmin-dienst"
#: ../../standalone/logdrake_.c:423
-#, fuzzy
msgid "Xinetd Service"
-msgstr "Printer Server"
+msgstr "Xinetd-dienst"
#: ../../standalone/logdrake_.c:430
msgid "service setting"
@@ -13079,10 +13863,10 @@ msgstr "instelling diensten"
#: ../../standalone/logdrake_.c:431
msgid ""
-"You will receive an alert if one of the selected service is no more running"
+"You will receive an alert if one of the selected services is no more running"
msgstr ""
-"U zult een waarschuwing ontvangen indien Ă©Ă©n van de geselecteerde diensten "
-"niet meer draait"
+"U zult een waarschuwing ontvangen als Ă©Ă©n van de geselecteerde diensten niet "
+"meer draait"
#: ../../standalone/logdrake_.c:443
msgid "load setting"
@@ -13099,23 +13883,22 @@ msgid "alert configuration"
msgstr "configuratie van waarschuwing"
#: ../../standalone/logdrake_.c:458
-#, fuzzy
msgid "Please enter your email address below "
-msgstr "Voer uw wachtwoord in"
+msgstr "Voert u alstublieft hieronder uw e-mailadres in"
-#: ../../standalone/logdrake_.c:499
+#: ../../standalone/logdrake_.c:497
msgid "Save as.."
msgstr "Opslaan als..."
-#: ../../standalone/mousedrake_.c:43
+#: ../../standalone/mousedrake_.c:45
msgid "Please, choose the type of your mouse."
msgstr "Welk type muis heeft u?"
-#: ../../standalone/mousedrake_.c:57
+#: ../../standalone/mousedrake_.c:58
msgid "Emulate third button?"
msgstr "Derde knop emuleren?"
-#: ../../standalone/printerdrake_.c:48
+#: ../../standalone/printerdrake_.c:57
msgid "Reading printer data ..."
msgstr "Bezig met lezen van printer-informatie..."
@@ -13127,21 +13910,32 @@ msgstr "Bezig met het zoeken van apparaten..."
msgid "Test ports"
msgstr "Poorten testen"
-#: ../../standalone/scannerdrake_.c:52
+#: ../../standalone/scannerdrake_.c:53 ../../standalone/scannerdrake_.c:68
+#: ../../standalone/scannerdrake_.c:81
+#, c-format
+msgid "The %s is not supported by this version of Mandrake Linux."
+msgstr "De %s wordt niet ondersteund in deze versie van Mandrake Linux."
+
+#: ../../standalone/scannerdrake_.c:56
#, c-format
-msgid "%s found on %s, configure it ?"
+msgid "%s found on %s, configure it?"
msgstr "%s gevonden op %s, deze configureren?"
#: ../../standalone/scannerdrake_.c:59
+#, c-format
+msgid "%s is not in the scanner database, configure it manually?"
+msgstr "%s is niet in de scanner-database, handmatig configureren?"
+
+#: ../../standalone/scannerdrake_.c:65
msgid "Select a scanner"
msgstr "Selecteer een scanner"
-#: ../../standalone/scannerdrake_.c:79
+#: ../../standalone/scannerdrake_.c:93
#, c-format
msgid "This %s scanner is unsupported"
msgstr "Deze %s-scanner is niet ondersteund"
-#: ../../standalone/scannerdrake_.c:93
+#: ../../standalone/scannerdrake_.c:107
#, c-format
msgid ""
"Scannerdrake was not able to detect your %s scanner.\n"
@@ -13150,11 +13944,11 @@ msgstr ""
"Scannerdrake kon uw %s scanner niet detecteren.\n"
"Selecteer het apparaat waar uw scanner op verbonden is."
-#: ../../standalone/scannerdrake_.c:95
+#: ../../standalone/scannerdrake_.c:109
msgid "choose device"
msgstr "kies apparaat"
-#: ../../standalone/scannerdrake_.c:101
+#: ../../standalone/scannerdrake_.c:115
#, c-format
msgid ""
"This %s scanner must be configured by printerdrake.\n"
@@ -13165,7 +13959,7 @@ msgstr ""
"U kunt printerdrake opstarten vanuit het Mandrake Controlecentrum in de "
"Hardware-afdeling."
-#: ../../standalone/scannerdrake_.c:106
+#: ../../standalone/scannerdrake_.c:120
#, c-format
msgid ""
"Your %s scanner has been configured.\n"
@@ -13176,12 +13970,12 @@ msgstr ""
"U kunt nu documenten scannen met ``XSane'' via Multimedia/Graphics in het "
"applicatie menu."
-#: ../../standalone/service_harddrake_.c:57
+#: ../../standalone/service_harddrake_.c:39
#, c-format
msgid "Some devices in the \"%s\" hardware class were removed:\n"
msgstr "Bepaalde apparaten in de hardware klasse \"%s\" zijn verwijderd:\n"
-#: ../../standalone/service_harddrake_.c:61
+#: ../../standalone/service_harddrake_.c:43
#, c-format
msgid ""
"\n"
@@ -13190,35 +13984,6 @@ msgstr ""
"\n"
"Bepaalde apparaten in de hardware klasse \"%s\" zijn toegevoegd:\n"
-#: ../../standalone/tinyfirewall_.c:30
-msgid "Firewalling Configuration"
-msgstr "Firewall configuratie"
-
-#: ../../standalone/tinyfirewall_.c:43
-msgid "Firewalling configuration"
-msgstr "Firewall configuratie"
-
-#: ../../standalone/tinyfirewall_.c:78
-msgid ""
-"Firewalling\n"
-"\n"
-"You already have set up a firewall.\n"
-"Click on Configure to change or remove the firewall"
-msgstr ""
-"U heeft reeds een firewall ingesteld.\n"
-"Klik op Configureer om de firewall te wijzigen\n"
-"of te verwijderen."
-
-#: ../../standalone/tinyfirewall_.c:82
-msgid ""
-"Firewalling\n"
-"\n"
-"Click on Configure to set up a standard firewall"
-msgstr ""
-"Firewall\n"
-"\n"
-"Klik op Configureer om een standaard-firewall in te stellen."
-
#: ../../steps.pm_.c:14
msgid "Choose your language"
msgstr "Kies uw taal"
@@ -13291,233 +14056,7 @@ msgstr "Installeer systeemupdates"
msgid "Exit install"
msgstr "Installatie afsluiten"
-#: ../../tinyfirewall.pm_.c:9
-msgid ""
-"tinyfirewall configurator\n"
-"\n"
-"This configures a personal firewall for this Mandrake Linux machine.\n"
-"For a powerful dedicated firewall solution, please look to the\n"
-"specialized MandrakeSecurity Firewall distribution."
-msgstr ""
-"Configuratie van tinyfirewall\n"
-"\n"
-"Dit programma configureert een persoonlijk instelling van de firewall\n"
-"voor deze Mandrake Linux machine. Voor een krachtige, specifieke\n"
-"firewall-oplossing, zie de gespecialiseerde MandrakeSecurity Firewall\n"
-"distributie."
-
-#: ../../tinyfirewall.pm_.c:14
-msgid ""
-"We'll now ask you questions about which services you'd like to allow\n"
-"the Internet to connect to. Please think carefully about these\n"
-"questions, as your computer's security is important.\n"
-"\n"
-"Please, if you're not currently using one of these services, firewall\n"
-"it off. You can change this configuration anytime you like by\n"
-"re-running this application!"
-msgstr ""
-"We zullen u nu enkele vragen stellen over de diensten waar u het \n"
-"Internet toestemming voor wilt geven om mee te verbinden.\n"
-"Denk alstublieft goed na over deze vragen, omdat de veiligheid \n"
-"van uw computer op het spel staat. \n"
-"\n"
-"Wanneer u op dit moment niet Ă©Ă©n van deze diensten draait,\n"
-"blokkeer deze dan met de firewall. U kunt deze configuratie \n"
-"altijd nog veranderen door dit programma opnieuw \n"
-"te starten!"
-
-#: ../../tinyfirewall.pm_.c:21
-msgid ""
-"Are you running a web server on this machine that you need the whole\n"
-"Internet to see? If you are running a webserver that only needs to be\n"
-"accessed by this machine, you can safely answer NO here.\n"
-"\n"
-msgstr ""
-"Draait u een webserver op deze machine waar het hele Internet \n"
-"bij moet kunnen? Wanneer u een webserver draait die alleen door \n"
-"deze machine aangesproken moet kunnen worden, dan kunt u \n"
-"hier veilig 'nee' antwoorden. \n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:26
-msgid ""
-"Are you running a name server on this machine? If you didn't set one\n"
-"up to give away IP and zone information to the whole Internet, please\n"
-"answer no.\n"
-"\n"
-msgstr ""
-"Draait u een 'name server' op deze machine? Als u er geen hebt \n"
-"ingesteld om IP- en zone-informatie uit te delen naar het hele \n"
-"Internet, antwoordt u dan alstublieft 'nee'. \n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:31
-msgid ""
-"Do you want to allow incoming Secure Shell (ssh) connections? This\n"
-"is a telnet-replacement that you might use to login. If you're using\n"
-"telnet now, you should definitely switch to ssh. telnet is not\n"
-"encrypted -- so some attackers can steal your password if you use\n"
-"it. ssh is encrypted and doesn't allow for this eavesdropping."
-msgstr ""
-"Wilt u binnenkomende Secure Shell (ssh)-verbindingen toestaan?\n"
-"Dit is een vervanging voor telnet welke u kunt gebruiken om in te \n"
-"loggen. Als u op dit moment telnet gebruikt, dan is het ten zeerste \n"
-"aan te raden om over te schakelen naar ssh. Telnet is niet versleuteld \n"
-"-- dus sommige aanvallers kunnen uw wachtwoord stelen als u het \n"
-"gebruikt. Ssh is versleuteld en staat dit soort afluisterpraktijken \n"
-"niet toe."
-
-#: ../../tinyfirewall.pm_.c:36
-msgid ""
-"Do you want to allow incoming telnet connections?\n"
-"This is horribly unsafe, as we explained in the previous screen. We\n"
-"strongly recommend answering No here and using ssh in place of\n"
-"telnet.\n"
-msgstr ""
-"Wenst u binnenkomende telnet-verbindingen toe te staan?\n"
-"Dit is vreselijk onveilig, zoals we op het vorige scherm uiteen hebben\n"
-"gezet. We raden u sterk aan hier 'Nee' te antwoorden en ssh te \n"
-"gebruiken in plaats van telnet.\n"
-
-#: ../../tinyfirewall.pm_.c:41
-msgid ""
-"Are you running an FTP server here that you need accessible to the\n"
-"Internet? If you are, we strongly recommend that you only use it for\n"
-"Anonymous transfers. Any passwords sent by FTP can be stolen by some\n"
-"attackers, since FTP also uses no encryption for transferring passwords.\n"
-msgstr ""
-"Draait u een FTP server hier die vanaf het Internet toegankelijk moet\n"
-"zijn? Zoja, dan raden wij u sterk aan deze alleen voor 'Anonymous'\n"
-"bestandsoverdrachten te gebruiken. Ieder wachtwoord dat via FTP\n"
-"verstuurd wordt kan gestolen worden door aanvallers, omdat FTP\n"
-"eveneens geen versleuteling toepast bij het versturen van wachtwoorden.\n"
-
-#: ../../tinyfirewall.pm_.c:46
-msgid ""
-"Are you running a mail server here? If you're sending you \n"
-"messages through pine, mutt or any other text-based mail client,\n"
-"you probably are. Otherwise, you should firewall this off.\n"
-"\n"
-msgstr ""
-"Draait u een mail-server hier? Als u uw berichten met pine,\n"
-"mutt of een andere tekstgebaseerde mail-client verstuurt,\n"
-"dan is het antwoord waarschijnlijk 'ja'. In andere gevalen\n"
-"kunt u dit het beste blokkeren met de firewall.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:51
-msgid ""
-"Are you running a POP or IMAP server here? This would\n"
-"be used to host non-web-based mail accounts for people via \n"
-"this machine.\n"
-"\n"
-msgstr ""
-"Draait u een POP- of IMAP-server hier? Dit zou gebruikt\n"
-"worden om niet-webgebaseerde mail-accounts te hosten\n"
-"via deze machine.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:56
-msgid ""
-"You appear to be running a 2.2 kernel. If your network IP\n"
-"is automatically set by a computer in your home or office \n"
-"(dynamically assigned), we need to allow for this. Is\n"
-"this the case?\n"
-msgstr ""
-"Het heeft er alle schijn van dat u een 2.2-kernel draait. Als\n"
-"uw netwerk-IP automatisch wordt ingesteld door een computer\n"
-"in uw huis of kantoor (dynamische toewijzing), dan moeten\n"
-"we dit toelaten. Is dit het geval?\n"
-
-#: ../../tinyfirewall.pm_.c:61
-msgid ""
-"Is your computer getting time syncronized to another computer?\n"
-"Mostly, this is used by medium-large Unix/Linux organizations\n"
-"to synchronize time for logging and such. If you're not part\n"
-"of a larger office and haven't heard of this, you probably \n"
-"aren't."
-msgstr ""
-"Wordt de tijd op uw computer gesynchroniseerd met een andere computer?\n"
-"Meestal wordt dit gebruikt door middelgrote Unix/Linux-organisaties\n"
-"om de tijd voor het loggen en dergelijke te synchroniseren. Als u geen\n"
-"deel uitmaakt van een groter kantoor en hier nog nooit van gehoord\n"
-"hebt, dan is dit waarschijnlijk niet het geval."
-
-#: ../../tinyfirewall.pm_.c:66
-msgid ""
-"Configuration complete. May we write these changes to disk?\n"
-"\n"
-"\n"
-"\n"
-msgstr ""
-"Configuratie is gereed. Kunnen we deze wijzigingen naar schijf "
-"wegschrijven?\n"
-"\n"
-"\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:82
-#, c-format
-msgid "Can't open %s: %s\n"
-msgstr "Kan %s niet openen: %s \n"
-
-#: ../../tinyfirewall.pm_.c:84
-#, c-format
-msgid "Can't open %s for writing: %s\n"
-msgstr "Fout bij het openen van %s voor schrijfbewerking: %s\n"
-
-#: ../../tinyfirewall.pm_.c:178
-msgid "No I don't need DHCP"
-msgstr "Nee, ik heb geen DHCP nodig"
-
-#: ../../tinyfirewall.pm_.c:178
-msgid "Yes I need DHCP"
-msgstr "Ja, ik heb DHCP nodig"
-
-#: ../../tinyfirewall.pm_.c:179
-msgid "No I don't need NTP"
-msgstr "Nee, ik heb NTP niet nodig"
-
-#: ../../tinyfirewall.pm_.c:179
-msgid "Yes I need NTP"
-msgstr "Ja, ik heb NTP nodig"
-
-#: ../../tinyfirewall.pm_.c:180 ../../tinyfirewall.pm_.c:184
-msgid "Don't Save"
-msgstr "Niet opslaan"
-
-#: ../../tinyfirewall.pm_.c:180 ../../tinyfirewall.pm_.c:184
-#: ../../tinyfirewall.pm_.c:204
-msgid "Save & Quit"
-msgstr "Opslaan en beëindigen"
-
-#: ../../tinyfirewall.pm_.c:195 ../../tinyfirewall.pm_.c:199
-msgid "Firewall Configuration Wizard"
-msgstr "Firewall configuratie-Hulp"
-
-#: ../../tinyfirewall.pm_.c:197
-msgid "No (firewall this off from the internet)"
-msgstr "Nee (dit met de firewall van internet afsluiten)"
-
-#: ../../tinyfirewall.pm_.c:198
-msgid "Yes (allow this through the firewall)"
-msgstr "Ja (dit met de firewall doorlaten)"
-
-#: ../../tinyfirewall.pm_.c:230
-msgid "Please Wait... Verifying installed packages"
-msgstr ""
-"Bezig met nagaan van geĂŻnstalleerde pakketten, even geduld alstublieft..."
-
-#: ../../tinyfirewall.pm_.c:236
-#, c-format
-msgid ""
-"Failure installing the needed packages : %s and Bastille.\n"
-" Try to install them manually."
-msgstr ""
-"Het installeren van de benodigde pakketten is mislukt: %s en Bastille.\n"
-" Probeer ze met de hand te installeren."
-
-#: ../../ugtk.pm_.c:619
+#: ../../ugtk.pm_.c:594
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
@@ -13571,7 +14110,7 @@ msgstr "Audio-gerelateerde programma's: mp3- of midi afspelen, mengpanelen etc"
#: ../../share/compssUsers:999
msgid "Linux Standard Base. Third party applications support"
-msgstr ""
+msgstr "Linux Standaard-Basis. Ondersteuning voor toepassingen van derden."
#: ../../share/compssUsers:999
msgid "Books and Howto's on Linux and Free Software"
@@ -13655,6 +14194,10 @@ msgid "Graphical Environment"
msgstr "Grafische omgeving"
#: ../../share/compssUsers:999
+msgid "Development"
+msgstr "Ontwikkeling"
+
+#: ../../share/compssUsers:999
msgid "Apache, Pro-ftpd"
msgstr "Apache, Pro-ftpd"
@@ -13733,7 +14276,7 @@ msgstr "Clients voor verschillende protcollen waaronder ssh"
#: ../../share/compssUsers:999
msgid "LSB"
-msgstr ""
+msgstr "LSB"
#: ../../share/compssUsers:999
msgid "Internet gateway"
@@ -13768,320 +14311,6 @@ msgstr "Multimedia - CD branden"
msgid "Scientific Workstation"
msgstr "Wetenschappelijk werkstation"
-#~ msgid "$mode: $warning"
-#~ msgstr "$mode: $warning"
-
-#, fuzzy
-#~ msgid ""
-#~ "This level is to be used with care. It makes your system more easy to "
-#~ "use,\n"
-#~ " but very sensitive: it must not be used for a machine "
-#~ "connected to others\n"
-#~ " or to the Internet. There is no password access."
-#~ msgstr ""
-#~ "Dit niveau moet met voorzichtigheid gebruikt worden. Het maakt uw "
-#~ "systeem\n"
-#~ "makkelijker te gebruiken maar erg gevoelig: het moet niet gebruikt worden "
-#~ "indien de\n"
-#~ "machine met andere computers of het internet verbonden is. Er worden\n"
-#~ "geen wachtwoorden gebruikt."
-
-#, fuzzy
-#~ msgid ""
-#~ "With this security level, the use of this system as a server becomes "
-#~ "possible.\n"
-#~ " The security is now high enough to use the system as a "
-#~ "server which can accept\n"
-#~ " connections from many clients. Note: if your machine is "
-#~ "only a client on the Internet, you should choose a lower level."
-#~ msgstr ""
-#~ "Met dit veiligheidsniveau wordt het mogelijk dit systeem als server te "
-#~ "gebruiken.\n"
-#~ "De beveiliging is nu goed genoeg om de computer als server te gebruiken "
-#~ "die\n"
-#~ "verbindingen van vele clients accepteert. Merk op: als uw computer alleen "
-#~ "een\n"
-#~ "client op het Internet is, dan kunt u beter een lager niveau kiezen."
-
-#, fuzzy
-#~ msgid "Basic Options"
-#~ msgstr "Opties"
-
-#, fuzzy
-#~ msgid "Security Checks"
-#~ msgstr "Veiligheid"
-
-#~ msgid "Data list to include on CDROM."
-#~ msgstr "Lijst van gegevens om op te nemen op CD-ROM."
-
-#~ msgid "Please choose your CD space"
-#~ msgstr "Kies uw CD-ruimte"
-
-#~ msgid "Please enter the cd writer speed"
-#~ msgstr "Voer de snelheid van de CD-Writer in"
-
-#~ msgid "Please check if you want to erase your CDRW before"
-#~ msgstr "Gelieve na te gaan of u uw CDRW wilt wissen voor u verdergaat"
-
-#~ msgid "Please enter your CD Writer device name (ex: 0,1,0)"
-#~ msgstr "Gelieve uw CD Writer apparaatnaam in te voeren (Voorbeeld: 0,1,0)"
-
-#~ msgid "Please check if you want to include install boot on your CD."
-#~ msgstr "Ga na of u de installatie-opstartprocedure wilt opnemen op uw CD."
-
-#~ msgid "Url should begin with 'ftp:'"
-#~ msgstr "URL moet beginnen met ftp:"
-
-#~ msgid ""
-#~ "Please check if you want to include\n"
-#~ " install boot on your CD."
-#~ msgstr ""
-#~ "Ga na of u de installatie-opstartprocedure\n"
-#~ " wilt opnemen op uw CD."
-
-#, fuzzy
-#~ msgid "Windows PDC"
-#~ msgstr "Windows (PDC) "
-
-#, fuzzy
-#~ msgid "PDC Server Name"
-#~ msgstr "PDC Server Naam"
-
-#~ msgid ""
-#~ "For this to work for a W2K PDC, you will probably need to have the admin "
-#~ "run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
-#~ "add and reboot the server"
-#~ msgstr ""
-#~ "Om dit voor een W2K PDC te laten werken, moet u misschien dit de admin "
-#~ "laten uitvoeren:C:\\>net localgroup \"Pre-Windows 2000 Compatible Access"
-#~ "\" everyone /add en de server opnieuw opstarten."
-
-#~ msgid ""
-#~ "\n"
-#~ "Welcome to the Printer Setup Wizard\n"
-#~ "\n"
-#~ "This wizard will help you to install your printer(s) connected to this "
-#~ "computer.\n"
-#~ "\n"
-#~ "Please plug in your printer(s) on this computer and turn it/them on. "
-#~ "Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
-#~ "want to set up your printer(s) now.\n"
-#~ "\n"
-#~ "Note that some computers can crash during the printer auto-detection, "
-#~ "turn off \"Auto-detect printers\" to do a printer installation without "
-#~ "auto-detection. Use the \"Expert Mode\" of printerdrake when you want to "
-#~ "set up printing on a remote printer if printerdrake does not list it "
-#~ "automatically."
-#~ msgstr ""
-#~ "\n"
-#~ "Welkom bij de Printer Instellingen Hulp\n"
-#~ "\n"
-#~ "Deze hulp helpt u bij het installren van uw printer(s) verbonden aan deze "
-#~ "computer.\n"
-#~ "\n"
-#~ "Gelieve uw printer(s) in deze computer te pluggen en aan te zetten. Klik "
-#~ "op \"Volgende\" wanneer u klaar bent, en op \"Annuleren\" wanneer u niet "
-#~ "op dit moment uw printer(s) wilt instellen.\n"
-#~ "\n"
-#~ "Merk op dat sommige computers kunnen vastlopen gedurende de automatische "
-#~ "bespeuring van de printer. Schakel \"Automatisch bespeuren van printer(s)"
-#~ "\" uit om een printerinstallatie uit te voeren zonder automatische "
-#~ "bespeuring. Gebruik de \"Expert-modus\" van Printerdrake indien u een "
-#~ "printer-op-afstand wilt instellen die niet automatisch door Printerdrake "
-#~ "getoond wordt."
-
-#~ msgid "Auto-Detection of Printers"
-#~ msgstr "Automatisch bespeuren van printers"
-
-#~ msgid ""
-#~ "Printerdrake is able to auto-detect your locally connected parallel and "
-#~ "USB printers for you, but note that on some systems the auto-detection "
-#~ "CAN FREEZE YOUR SYSTEM AND THIS CAN LEAD TO CORRUPTED FILE SYSTEMS! So do "
-#~ "it ON YOUR OWN RISK!\n"
-#~ "\n"
-#~ "Do you really want to get your printers auto-detected?"
-#~ msgstr ""
-#~ "Printerdrake is in staat om de parallelle- en USB-printers die aan uw "
-#~ "computer verbonden zijn, automatisch te bespeuren. Let u echter op dat op "
-#~ "sommige systemen de automatische bespeuring UW MACHINE KAN LATEN "
-#~ "VASTLOPEN. DIT KAN LEIDEN TOT BESCHADIGING VAN BESTANDSSYSTEMEN! Dus doe "
-#~ "dit OP EIGEN RISICO!\n"
-#~ "\n"
-#~ "Weet u zeker dat u uw printers automatisch wilt laten bespeuren?"
-
-#~ msgid "Set up printer manually"
-#~ msgstr "Handmatig printer instellen"
-
-#~ msgid ""
-#~ "Network printers can only be installed after the installation. Choose "
-#~ "\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
-#~ msgstr ""
-#~ "Netwerkprinters kunnen alleen na de installatie worden ingesteld. Kies "
-#~ "\"Hardware\" en daarna \"Printer\" in het Mandrake Controlecentrum."
-
-#~ msgid ""
-#~ "To install network printers, click \"Cancel\", switch to the \"Expert Mode"
-#~ "\", and click \"Add a new printer\" again."
-#~ msgstr ""
-#~ "Om netwerkprinters te installeren, klikt u op \"Annuleren\", schakel over "
-#~ "naar \"Expert modus\" en klik opnieuw op \"Nieuwe printer toevoegen\"."
-
-#, fuzzy
-#~ msgid ""
-#~ "Is your printer a multi-function device from HP (OfficeJet, PSC, LaserJet "
-#~ "1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart or an HP "
-#~ "LaserJet 2200?"
-#~ msgstr ""
-#~ "Is uw printer een multi-functioneel apparaat van HP (OfficeJet, PSC, "
-#~ "LaserJet 1100/1200/1220/3200/3300 met scanner), een HP PhotoSmart P100 of "
-#~ "1315 of een HP LaserJet 2200 ?"
-
-#~ msgid "Installing HPOJ package..."
-#~ msgstr "Bezig met installeren van HPOJ pakket..."
-
-#~ msgid "Checking device and configuring HPOJ..."
-#~ msgstr "Bezig met nagaan en configureren van apparaat HPOJ ..."
-
-#, fuzzy
-#~ msgid "Installing SANE packages..."
-#~ msgstr "Bezig met installeren van SANE pakket..."
-
-#, fuzzy
-#~ msgid "Installing mtools packages..."
-#~ msgstr "Bezig met installeren van pakketten..."
-
-#~ msgid "Scanning on your HP multi-function device"
-#~ msgstr "Scannen op uw HP multi-functioneel apparaat"
-
-#, fuzzy
-#~ msgid "Photo memory card access on your HP multi-function device"
-#~ msgstr "Scannen op uw HP multi-functioneel apparaat"
-
-#~ msgid "Making printer port available for CUPS..."
-#~ msgstr "Bezig met beschikbaar maken van printerpoort voor CUPS..."
-
-#~ msgid "Control Center"
-#~ msgstr "Controle-Centrum"
-
-#~ msgid "Choose the tool you want to use"
-#~ msgstr "Selecteer het programma dat u wenst te gebruiken"
-
-#~ msgid "Configure the way the system will alert you"
-#~ msgstr "Configureer de manier waarop het systeem u waarschuwt"
-
-#~ msgid "no serial_usb found\n"
-#~ msgstr "Geen seriële USB gevonden\n"
-
-#~ msgid "fsck failed with exit code %d or signal %d"
-#~ msgstr "fsck is mislukt met afsluitcode %d of signaal %d"
-
-#~ msgid "Graphics card identification: %s\n"
-#~ msgstr "Identificatie grafische kaart: %s\n"
-
-#~ msgid "Choose options for server"
-#~ msgstr "Selecteer de opties voor de X-server"
-
-#~ msgid "Monitor not configured"
-#~ msgstr "Monitor niet geconfigureerd"
-
-#~ msgid "Graphics card not configured yet"
-#~ msgstr "Grafische kaart nog niet geconfigureerd"
-
-#~ msgid "Resolutions not chosen yet"
-#~ msgstr "Resoluties nog niet gekozen"
-
-#~ msgid ""
-#~ "\n"
-#~ "try to change some parameters"
-#~ msgstr ""
-#~ "\n"
-#~ "probeer enkele parameters aan te passen"
-
-#~ msgid "An error occurred:"
-#~ msgstr "Er is een fout opgetreden:"
-
-#~ msgid "Leaving in %d seconds"
-#~ msgstr "Verdwijnt binnen %d seconden"
-
-#~ msgid "Is this the correct setting?"
-#~ msgstr "Is dit de juiste instelling?"
-
-#~ msgid "An error occurred, try to change some parameters"
-#~ msgstr ""
-#~ "Er is een fout opgetreden, probeer een aantal parameters aan te passen"
-
-#~ msgid "XFree86 server: %s"
-#~ msgstr "XFree86-server: %s"
-
-#~ msgid "Show all"
-#~ msgstr "Toon alles"
-
-#~ msgid "Preparing X-Window configuration"
-#~ msgstr "Bezig met het voorbereiden van de X-Window instellingen"
-
-#~ msgid "What do you want to do?"
-#~ msgstr "Wat wenst u te doen?"
-
-#~ msgid "Change Monitor"
-#~ msgstr "Verander Monitor"
-
-#~ msgid "Change Graphics card"
-#~ msgstr "Verander grafische kaart"
-
-#~ msgid "Change Server options"
-#~ msgstr "Verander Server-opties"
-
-#~ msgid "Change Resolution"
-#~ msgstr "Resolutie wijzigen"
-
-#~ msgid "Show information"
-#~ msgstr "Informatie tonen"
-
-#~ msgid "Test again"
-#~ msgstr "Opnieuw testen"
-
-#~ msgid ""
-#~ "Your HP multi-function device was configured automatically to be able to "
-#~ "scan. Now you can scan from the command line with \"ptal-hp %s scan ..."
-#~ "\". Scanning via a graphical interface or from the GIMP is not supported "
-#~ "yet for your device. More information you will find in the \"/usr/share/"
-#~ "doc/hpoj-0.8/ptal-hp-scan.html\" file on your system. If you have an HP "
-#~ "LaserJet 1100 or 1200 you can only scan when you have the scanner option "
-#~ "installed.\n"
-#~ "\n"
-#~ "Do not use \"scannerdrake\" for this device!"
-#~ msgstr ""
-#~ "Uw HP multifunctioneel apparaat is automatisch geconfigureerd om te "
-#~ "kunnen scannen. U kunt nu scannen vanaf de commandoregel met \"ptal-hp %s "
-#~ "scan ...\". Scannen via een grafische interface of vanuit The GIMP is nog "
-#~ "niet ondersteund voor uw apparaat. U vindt meer informatie in het bestand "
-#~ "\"/usr/share/doc/hpoj-0.8/ptal-hp-scan.html\" op uw systeem. Als u een HP "
-#~ "LaserJet 1100 of 1200 heeft kunt u alleen scannen indien u de scanner-"
-#~ "optie geĂŻnstalleerd heeft.\n"
-#~ "\n"
-#~ "Gebruik voor dit apparaat geen \"scannerdrake\"!"
-
-#~ msgid "Use Hard Drive with daemon"
-#~ msgstr "Harde schijf met daemon gebruiken"
-
-#~ msgid "Use FTP with daemon"
-#~ msgstr "FTP met daemon gebruiken"
-
-#~ msgid "Package List to Install"
-#~ msgstr "Lijst van te installeren pakketten"
-
-#~ msgid "proftpd"
-#~ msgstr "proftpd"
-
-#~ msgid "sshd"
-#~ msgstr "sshd"
-
-#~ msgid "webmin"
-#~ msgstr "webmin"
-
-#~ msgid "xinetd"
-#~ msgstr "xinetd"
-
#~ msgid ""
#~ "GNU/Linux is a multiuser system, and this means that each user can have "
#~ "his\n"
@@ -14101,8 +14330,8 @@ msgstr "Wetenschappelijk werkstation"
#~ "regular\n"
#~ "user, you may only lose some information, but not the entire system.\n"
#~ "\n"
-#~ "First, you have to enter your real name. This is not mandatory, of "
-#~ "course\n"
+#~ "First, you have to enter your real name. This is not mandatory, of course "
+#~ "-\n"
#~ "as you can actually enter whatever you want. DrakX will then take the "
#~ "first\n"
#~ "word you have entered in the box and will bring it over to the \"User\n"
@@ -14172,144 +14401,130 @@ msgstr "Wetenschappelijk werkstation"
#~ "voor een gebruiker te veranderen (standaard is dit bash)."
#~ msgid ""
-#~ "It is now time to specify which programs you wish to install on your\n"
-#~ "system. There are thousands of packages available for Mandrake Linux, "
-#~ "and\n"
-#~ "you are not supposed to know them all by heart.\n"
-#~ "\n"
-#~ "If you are performing a standard installation from a CD-ROM, you will "
-#~ "first\n"
-#~ "be asked to specify the CDs you currently have (in Expert mode only). "
-#~ "Check\n"
-#~ "the CD labels and highlight the boxes corresponding to the CDs you have\n"
-#~ "available for installation. Click \"OK\" when you are ready to continue.\n"
-#~ "\n"
-#~ "Packages are sorted in groups corresponding to a particular use of your\n"
-#~ "machine. The groups themselves are sorted into four sections:\n"
-#~ "\n"
-#~ " * \"Workstation\": if you plan to use your machine as a workstation, "
-#~ "select\n"
-#~ "one or more of the corresponding groups;\n"
-#~ "\n"
-#~ " * \"Development\": if your machine is to be used for programming, "
-#~ "choose\n"
-#~ "the desired group(s);\n"
-#~ "\n"
-#~ " * \"Server\": if your machine is intended to be a server, you will be "
-#~ "able\n"
-#~ "to select which of the most common services you wish to install on your\n"
-#~ "machine;\n"
-#~ "\n"
-#~ " * \"Graphical Environment\": finally, this is where you will choose "
-#~ "your\n"
-#~ "preferred graphical environment. At least one must be selected if you "
-#~ "want\n"
-#~ "to have a graphical workstation!\n"
-#~ "\n"
-#~ "Moving the mouse cursor over a group name will display a short "
-#~ "explanatory\n"
-#~ "text about that group. If you deselect all groups when performing a "
-#~ "regular\n"
-#~ "installation (by opposition to an upgrade), a dialog will pop up "
-#~ "proposing\n"
-#~ "different options for a minimal installation:\n"
-#~ "\n"
-#~ " * \"With X\": install the fewer packages possible to have a working\n"
-#~ "graphical desktop;\n"
-#~ "\n"
-#~ " * \"With basic documentation\": installs the base system plus basic\n"
-#~ "utilities and their documentation. This installation is suitable for\n"
-#~ "setting up a server;\n"
-#~ "\n"
-#~ " * \"Truly minimal install\": will install the strict minimum necessary "
-#~ "to\n"
-#~ "get a working Linux system, in command line only. This installation is\n"
-#~ "about 65Mb large.\n"
+#~ "You are now proposed to set up your Internet/network connection. If you\n"
+#~ "wish to connect your computer to the Internet or to a local network, "
+#~ "click\n"
+#~ "\"OK\". The autodetection of network devices and modem will be launched. "
+#~ "If\n"
+#~ "this detection fails, uncheck the \"Use auto detection\" box next time. "
+#~ "You\n"
+#~ "may also choose not to configure the network, or do it later; in that "
+#~ "case,\n"
+#~ "simply click the \"Cancel\" button.\n"
+#~ "\n"
+#~ "Available connections are: traditional modem, ISDN modem, ADSL "
+#~ "connection,\n"
+#~ "cable modem, and finally a simple LAN connection (Ethernet).\n"
+#~ "\n"
+#~ "Here, we will not detail each configuration. Simply make sure that you "
+#~ "have\n"
+#~ "all the parameters from your Internet Service Provider or system\n"
+#~ "administrator.\n"
#~ "\n"
-#~ "You can check the \"Individual package selection\" box, which is useful "
-#~ "if\n"
-#~ "you are familiar with the packages being offered or if you want to have\n"
-#~ "total control over what will be installed.\n"
+#~ "You can consult the ``User Guide'' chapter about Internet connections "
+#~ "for\n"
+#~ "details about the configuration, or simply wait until your system is\n"
+#~ "installed and use the program described there to configure your "
+#~ "connection.\n"
#~ "\n"
-#~ "If you started the installation in \"Upgrade\" mode, you can unselect "
-#~ "all\n"
-#~ "groups to avoid installing any new package. This is useful for repairing "
-#~ "or\n"
-#~ "updating an existing system."
+#~ "If you wish to configure the network later after installation, or if you\n"
+#~ "are finished configuring your network connection, click \"Cancel\"."
#~ msgstr ""
-#~ "Het is nu tijd om te bepalen welke programma's u op uw systeem\n"
-#~ "wenst te installeren. Er zijn duizenden pakketten beschikbaar voor "
-#~ "Mandrake\n"
-#~ "Linux, en er wordt niet van u verwacht dat u ze allemaal uit uw hoofd "
-#~ "kent.\n"
-#~ "\n"
-#~ "Indien u een standaard-installatie vanaf CD-ROM uitvoert, zal u eerst\n"
-#~ "gevraagd worden de CD's die u bij de hand heeft te specificeren (alleen\n"
-#~ "in Expert-modus). Ga de CD-etiketten na en selecteer de vakjes die\n"
-#~ "corresponderen met de CD's die u heeft voor de installatie. Klik op \"OK"
-#~ "\"\n"
-#~ "zodra u gereed bent om verder te gaan.\n"
-#~ "\n"
-#~ "Pakketten zijn samengebracht in groepen die corresponderen met een\n"
-#~ "bepaald gebruik van uw computer. De groepen zelf zijn ingedeeld in vier\n"
-#~ "categorieën:\n"
-#~ "\n"
-#~ "* \"Werkstation\": indien u van plan bent uw computer als werkstation te\n"
-#~ "gaan gebruiken, selecteer dan Ă©Ă©n of meer van de corresponderende\n"
-#~ "groepen. \n"
-#~ "\n"
-#~ "* \"Ontwikkeling\": als de computer gebruikt gaat worden voor "
-#~ "programmeren,\n"
-#~ "kiest u de gewenste groep(en).\n"
-#~ "\n"
-#~ "* \"Server\": als de computer bestemd is voor server-doeleinden, dan\n"
-#~ "kunt u aangeven welke van de meest algemene diensten u op uw\n"
-#~ "computer geĂŻnstalleerd wilt zien.\n"
-#~ "\n"
-#~ "* \"Grafische Omgeving\": tot slot is dit waar u uw voorkeur voor een "
-#~ "grafische\n"
-#~ "omgeving kunt aangeven. Tenminste Ă©Ă©n moet geselecteerd zijn als u een\n"
-#~ "grafisch werkstation wilt hebben!\n"
-#~ "\n"
-#~ "Bij het bewegen van de muispijl boven een groepnaam zal er een korte "
-#~ "verklarende\n"
-#~ "tekst over die groep getoond worden. Als u alle groepen deselecteert "
-#~ "tijdens het\n"
-#~ "uitvoeren van een reguliere installatie (in tegenstelling tot een "
-#~ "opwaardering), dan\n"
-#~ "zal een dialoogvenster verschijnen dat verscheidene opties voor een "
-#~ "minimale\n"
-#~ "installatie voorstelt:\n"
-#~ " * \"Met X\" Installeer zo min mogelijk pakketten met behoud van een "
-#~ "grafische\n"
-#~ "werkomgeving;\n"
-#~ " \n"
-#~ " * \"Met basis-documentatie\" installeert het basissysteem plus algemene\n"
-#~ "hulpprogramma's en hun documentatie. Deze installatie is geschikt om een "
-#~ "server\n"
-#~ "mee in te richten.\n"
-#~ "\n"
-#~ " * \"Werkelijk minimale installatie\" zal het absolute minimum "
-#~ "installeren dat nodig\n"
-#~ "is om een werkend Linux-systeem te verkrijgen, slechts met een "
-#~ "commandoregel.\n"
-#~ "Deze installatie is ongeveer 65MB groot.\n"
-#~ "\n"
-#~ "U kunt het \"Individuele pakketselectie\"-vakje selecteren, welke nuttig "
-#~ "is als\n"
-#~ "u bekend bent met de aangeboden pakketten of indien u totale controle "
-#~ "wenst\n"
-#~ "over wat er geĂŻnstalleerd zal worden.\n"
-#~ "\n"
-#~ "In het geval dat u de installatie in \"Opwaarderen\"-modus heeft gestart, "
-#~ "kunt u\n"
-#~ "alle groepen deselecteren om te voorkomen dat er nieuwe pakketten "
-#~ "geĂŻnstalleerd\n"
-#~ "worden. Dit is nuttig bij het repareren of het vernieuwen van een "
-#~ "bestaand systeem."
+#~ "Het is nu mogelijk om uw internet- of netwerkverbinding in te stellen.\n"
+#~ "Indien u wenst uw computer aan het Internet of aan een lokaal netwerk te\n"
+#~ "verbinden, klik dan op \"OK\". De automatische bespeuring van netwerk-\n"
+#~ "apparaten en modem zal worden opgestart. Als deze bespeuring mislukt,\n"
+#~ "deselecteer dan het \"Automatische bespeuring gebruiken\"-vakje de\n"
+#~ "volgende keer. U kunt ook besluiten het netwerk niet te configureren of\n"
+#~ "het later pas te doen; in dat geval klikt u op de \"Annuleren\"-knop.\n"
+#~ "Beschikbare verbindingstypen zijn:\n"
+#~ "conventionele modem, ISDN-adapter, ADSL-verbinding, kabelmodem en\n"
+#~ "tenslotte een eenvoudige LAN-verbinding (Ethernet).\n"
+#~ "\n"
+#~ "Wij zullen hier niet tot in detail ingaan op elke configuratie. Zorgt u "
+#~ "er\n"
+#~ "gewoon voor dat u alle instellingen van uw Internetprovider of\n"
+#~ "systeembeheerder bij de hand heeft.\n"
+#~ "\n"
+#~ "U kunt het hoofdstuk over Internetverbindingen in het handboek\n"
+#~ "raadplegen voor details over de instellingen, of gewoon wachten\n"
+#~ "totdat uw systeem geĂŻnstalleerd is en dan het beschreven programma\n"
+#~ "gebruiken om uw verbinding in te stellen.\n"
+#~ "\n"
+#~ "Indien u wenst het netwerk later na de installatie in te stellen of\n"
+#~ "indien u klaar bent met het instellen van uw verbinding, klikt u\n"
+#~ "op \"Annuleren\"."
+
+#~ msgid ""
+#~ "GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
+#~ "local time according to the time zone you selected. It is however "
+#~ "possible\n"
+#~ "to deactivate this by deselecting \"Hardware clock set to GMT\" so that "
+#~ "the\n"
+#~ "hardware clock is the same as the system clock. This is useful when the\n"
+#~ "machine is hosting another operating system like Windows.\n"
+#~ "\n"
+#~ "The \"Automatic time synchronization\" option will automatically "
+#~ "regulate\n"
+#~ "the clock by connecting to a remote time server on the Internet. In the\n"
+#~ "list that is presented, choose a server located near you. Of course you\n"
+#~ "must have a working Internet connection for this feature to work. It "
+#~ "will\n"
+#~ "actually install on your machine a time server which can be optionally "
+#~ "used\n"
+#~ "by other machines on your local network."
+#~ msgstr ""
+#~ "GNU/Linux houdt de tijd bij in GMT (Greenwich Mean Time) en vertaalt\n"
+#~ "het naar lokale tijd volgens de tijdzone die u geselecteerd heeft. Het "
+#~ "is\n"
+#~ "echter mogelijk om dit te deactiveren door \"Hardware klok ingesteld op\n"
+#~ "GMT\" te deselecteren zodat de hardware-klok dezelfde is als de systeem-\n"
+#~ "klok. Dit is nuttig wanneer er op de computer nog een ander besturings-\n"
+#~ "systeem staat zoals Windows.\n"
+#~ "\n"
+#~ "De \"Automatische tijdssynchronisatie\"-optie zal de klok automatisch\n"
+#~ "bijstellen door verbinding te maken met een tijdsserver op internet. In\n"
+#~ "de getoonde lijst kunt u een server kiezen bij u in de buurt. Uiteraard\n"
+#~ "moet u een werkende internetverbinding hebben voordat deze functie\n"
+#~ "werkt. Dit zorgt er tevens voor dat er een tijdsserver op uw computer\n"
+#~ "wordt geĂŻnstalleerd die mogelijkerwijs gebruikt kan worden door\n"
+#~ "andere computers op uw lokale netwerk."
#~ msgid ""
-#~ "The Mandrake LinuxCD-ROM has a built-in rescue mode. You can access it "
+#~ "The first time you try the X configuration, you may not be very "
+#~ "satisfied\n"
+#~ "with its display (screen is too small, shifted left or right...). Hence,\n"
+#~ "even if X starts up correctly, DrakX then asks you if the configuration\n"
+#~ "suits you. It will also propose to change it by displaying a list of "
+#~ "valid\n"
+#~ "modes it could find, asking you to select one.\n"
+#~ "\n"
+#~ "As a last resort, if you still cannot get X to work, choose \"Change\n"
+#~ "graphics card\", select \"Unlisted card\", and when prompted on which\n"
+#~ "server, choose \"FBDev\". This is a failsafe option which works with any\n"
+#~ "modern graphics card. Then choose \"Test again\" to be sure."
+#~ msgstr ""
+#~ "De eerste keer dat u de X configuratie probeert, zult u misschien niet\n"
+#~ "erg tevreden zijn met het beeld (scherm te klein, naar links of naar "
+#~ "rechts\n"
+#~ "verschoven...). Daarom zal DrakX u vragen of de configuratie u bevalt,\n"
+#~ "zelfs als X correct opstart. Het zal u tevens voorstellen om de "
+#~ "configuratie\n"
+#~ "te wijzigen door een lijst van geldige modi te tonen die het gevonden "
+#~ "heeft,\n"
+#~ "en u vragen er Ă©Ă©n te selecteren.\n"
+#~ "\n"
+#~ "Als een uiterste uitwijkmogelijkheid, als het u niet lukt X aan de praat "
+#~ "te\n"
+#~ "krijgen, kiest u \"Grafische kaart wijzigen\", selecteer \"Niet vermelde "
+#~ "kaart\",en wanneer u gevraagd wordt welke server u wenst, kiest u \"FBDev"
+#~ "\". Dit\n"
+#~ "is een veilige optie die met iedere moderne grafische kaart werkt. Kiest "
+#~ "u\n"
+#~ "vervolgens \"Opnieuw testen\" om u ervan te vergewissen dat het werkt."
+
+#~ msgid ""
+#~ "The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it "
#~ "by\n"
#~ "booting from the CD-ROM, press the >>F1<< key at boot and type "
#~ ">>rescue<<\n"
@@ -14327,14 +14542,14 @@ msgstr "Wetenschappelijk werkstation"
#~ "process will rewrite the boot sector, and then you will not be able to\n"
#~ "start GNU/Linux!\n"
#~ "\n"
-#~ " * if a problem arises and you cannot start up GNU/Linux from the hard "
-#~ "disk,\n"
-#~ "this floppy disk will be the only means of starting up GNU/Linux. It\n"
+#~ " * if a problem arises and you cannot start up GNU/Linux from the hard\n"
+#~ "disk, this floppy disk will be the only means of starting up GNU/Linux. "
+#~ "It\n"
#~ "contains a fair number of system tools for restoring a system, which has\n"
#~ "crashed due to a power failure, an unfortunate typing error, a typo in a\n"
#~ "password, or any other reason.\n"
#~ "\n"
-#~ "When you click on this step, you will be asked to enter a disk inside "
+#~ "When you click on this step, you will be asked to insert a disk inside "
#~ "the\n"
#~ "drive. The floppy disk you will insert must be empty or contain data "
#~ "which\n"
@@ -14420,27 +14635,25 @@ msgstr "Wetenschappelijk werkstation"
#~ "this\n"
#~ "option;\n"
#~ "\n"
-#~ " * \"Use the free space on the Windows; partition\": if MicrosoftWindows "
-#~ "is\n"
-#~ "installed on your hard drive and takes all the space available on it, "
-#~ "you\n"
-#~ "have to create free space for Linux data. To do so, you can delete your\n"
-#~ "MicrosoftWindows partition and data (see ``Erase entire disk'' or "
+#~ " * \"Use the free space on the Windows; partition\": if Microsoft "
+#~ "Windows\n"
+#~ "is installed on your hard drive and takes all the space available on it,\n"
+#~ "you have to create free space for Linux data. To do so, you can delete "
+#~ "your\n"
+#~ "Microsoft Windows partition and data (see ``Erase entire disk'' or "
#~ "``Expert\n"
-#~ "mode'' solutions) or resize your MicrosoftWindows partition. Resizing "
+#~ "mode'' solutions) or resize your Microsoft Windows partition. Resizing "
#~ "can\n"
#~ "be performed without the loss of any data, provided you previously\n"
#~ "defragment the Windows partition. Backing up your data won't hurt "
#~ "either..\n"
#~ "This solution is recommended if you want to use both Mandrake Linux and\n"
-#~ "MicrosoftWindows on the same computer.\n"
+#~ "Microsoft Windows on the same computer.\n"
#~ "\n"
-#~ " Before choosing this option, please understand that after this "
-#~ "procedure,\n"
-#~ "the size of your MicrosoftWindows partition will be smaller than at the\n"
-#~ "present time. You will have less free space under MicrosoftWindows to "
-#~ "store\n"
-#~ "your data or to install new software;\n"
+#~ " Before choosing this option, please understand that after this\n"
+#~ "procedure, the size of your Microsoft Windows partition will be smaller\n"
+#~ "than at the present time. You will have less free space under Microsoft\n"
+#~ "Windows to store your data or to install new software;\n"
#~ "\n"
#~ " * \"Erase entire disk\": if you want to delete all data and all "
#~ "partitions\n"
@@ -14459,11 +14672,9 @@ msgstr "Wetenschappelijk werkstation"
#~ " !! If you choose this option, all data on your disk will be lost. !!\n"
#~ "\n"
#~ " * \"Expert mode\": choose this option if you want to manually partition\n"
-#~ "your hard drive. Be careful it is a powerful but dangerous choice. You "
-#~ "can\n"
-#~ "very easily lose all your data. Hence, do not choose this unless you "
-#~ "know\n"
-#~ "what you are doing."
+#~ "your hard drive. Be careful - it is a powerful but dangerous choice. You\n"
+#~ "can very easily lose all your data. Hence, do not choose this unless you\n"
+#~ "know what you are doing."
#~ msgstr ""
#~ "Op dit punt moet u kiezen waar op uw harde schijf u uw Mandrake Linux\n"
#~ "besturingssysteem wilt installeren. Als uw harde schijf leeg is of als "
@@ -14478,7 +14689,7 @@ msgstr "Wetenschappelijk werkstation"
#~ "Omdat de effecten van het partitioneringsproces over het algemeen niet\n"
#~ "terug te draaien zijn, kan partitioneren intimiderend en spannend zijn "
#~ "voor\n"
-#~ "een onervaren gebruiker. Gelukkig is er een hulp die dit proces\n"
+#~ "een onervaren gebruiker. Gelukkig is er een wizard die dit proces\n"
#~ "vereenvoudigt. Raadpleeg de handleiding voordat u begint en neem de\n"
#~ "tijd.\n"
#~ "\n"
@@ -14560,82 +14771,34 @@ msgstr "Wetenschappelijk werkstation"
#~ "tenzij u weet wat u doet."
#~ msgid ""
-#~ "There you are. Installation is now complete and your GNU/Linux system is\n"
-#~ "ready to use. Just click \"OK\" to reboot the system. You can start\n"
-#~ "GNU/Linux or Windows, whichever you prefer (if you are dual-booting), as\n"
-#~ "soon as the computer has booted up again.\n"
-#~ "\n"
-#~ "The \"Advanced\" button (in Expert mode only) shows two more buttons to:\n"
-#~ "\n"
-#~ " * \"generate auto-install floppy\": to create an installation floppy "
-#~ "disk\n"
-#~ "which will automatically perform a whole installation without the help "
-#~ "of\n"
-#~ "an operator, similar to the installation you just configured.\n"
-#~ "\n"
-#~ " Note that two different options are available after clicking the "
-#~ "button:\n"
-#~ "\n"
-#~ " * \"Replay\". This is a partially automated installation as the\n"
-#~ "partitioning step (and only this one) remains interactive;\n"
-#~ "\n"
-#~ " * \"Automated\". Fully automated installation: the hard disk is "
-#~ "completely\n"
-#~ "rewritten, all data is lost.\n"
-#~ "\n"
-#~ " This feature is very handy when installing a great number of similar\n"
-#~ "machines. See the Auto install section on our web site;\n"
-#~ "\n"
-#~ " * \"Save packages selection\"(*): saves the package selection as done\n"
-#~ "previously. Then, when doing another installation, insert the floppy "
-#~ "inside\n"
-#~ "the drive and run the installation going to the help screen by pressing "
-#~ "on\n"
-#~ "the [F1] key, and by issuing >>linux defcfg=\"floppy\"<<.\n"
-#~ "\n"
-#~ "(*) You need a FAT-formatted floppy (to create one under GNU/Linux, type\n"
-#~ "\"mformat a:\")"
+#~ "At the time you are installing Mandrake Linux, it is likely that some\n"
+#~ "packages have been updated since the initial release. Some bugs may have\n"
+#~ "been fixed, and security issues solved. To allow you to benefit from "
+#~ "these\n"
+#~ "updates, you are now proposed to download them from the Internet. Choose\n"
+#~ "\"Yes\" if you have a working Internet connection, or \"No\" if you "
+#~ "prefer\n"
+#~ "to install updated packages later.\n"
+#~ "\n"
+#~ "Choosing \"Yes\" displays a list of places from which updates can be\n"
+#~ "retrieved. Choose the one nearest you. Then a package-selection tree\n"
+#~ "appears: review the selection, and press \"Install\" to retrieve and\n"
+#~ "install the selected package(s), or \"Cancel\" to abort."
#~ msgstr ""
-#~ "Alstublieft. De installatieprocedure is voltooid en uw GNU/Linux-systeem\n"
-#~ "is klaar voor gebruik. Klik gewoon op \"OK\" om uw computer opnieuw te\n"
-#~ "starten. Indien u een meervoudig opstartsysteem gebruikt, kunt u GNU/"
-#~ "Linux\n"
-#~ "of Windows opstarten, welke u prefereert, zodra de computer de\n"
-#~ "zelftestprocedure heeft doorlopen.\n"
-#~ "\n"
-#~ "De \"Geavanceerd\"-knop (alleen in Expert-modus) toont twee knoppen meer\n"
-#~ "voor:\n"
-#~ "\n"
-#~ " * \"auto-installatiediskette aanmaken\": om een installatiediskette te\n"
-#~ "creëren weke de gehele installatie automatisch zal uitvoeren zonder hulp\n"
-#~ "van een beheerder, gelijkend op de installatie die u zonet heeft\n"
-#~ "geconfigureerd.\n"
-#~ "\n"
-#~ "Merk op dat er twee verschillende opties zijn na het klikken van deze "
-#~ "knop:\n"
-#~ "\n"
-#~ " * \"Afspelen\". Dit is een gedeeltelijk geautomatiseerde installatie, "
-#~ "omdat\n"
-#~ "de partitioneringsstap (alleen deze) interactief blijft.\n"
-#~ "\n"
-#~ " * \"Geautomatiseerd\". Volledig geautomatiseerde installatie: de "
-#~ "harde\n"
-#~ "schijf wordt volledig overschreven en alle gegevens erop raken verloren.\n"
-#~ "\n"
-#~ " Deze mogelijkheid is erg handig wanneer u een grote hoeveelheid\n"
-#~ "soortgelijke computers installeert. Zie ook de Auto-installatie afdeling "
-#~ "op\n"
-#~ "onze website.\n"
-#~ "\n"
-#~ " * \"Pakketselectie opslaan\"(*) : slaat de pakketselectie op zoals u "
-#~ "hem\n"
-#~ "eerder heeft gemaakt. Vervolgens, wanneer u een andere installatie\n"
-#~ "uitvoert, plaatst u de diskette in het diskettestation en draait u het\n"
-#~ "installatieprogramma waarna u naar het helpscherm gaat door op de\n"
-#~ "[F1]-toets te drukken, en door ''linux defcfg=\"floppy\" '' in te geven.\n"
-#~ "\n"
-#~ "(*) U heeft een FAT-geformatteerde dskette nodig (om er Ă©Ă©n onder\n"
-#~ "GNU/Linux te creëren, typt u \"mformat a:\")"
+#~ "Op het moment dat u Mandrake Linux installeert, is het waarschijnlijk\n"
+#~ "dat sommige pakketten vernieuwd zijn sinds het moment dat het werd\n"
+#~ "uitgebracht. Sommige onvolkomenheden kunnen gerepareerd zijn en\n"
+#~ "beveiligingsproblemen opgelost. Om u te kunnen laten profiteren van\n"
+#~ "deze vernieuwingen kunt u ze nu downloaden van het internet.\n"
+#~ "Kies \"Ja\" indien u een werkende internetverbinding heeft, of \"Nee\"\n"
+#~ "als u liever later vernieuwde pakketten installeert.\n"
+#~ "\n"
+#~ "Wanneeru op \"Ja\" klikt verschijnt er een lijst van plaatsen waar\n"
+#~ "vernieuwingen van kunnen worden opgehaald. Kies degene waar\n"
+#~ "u zich het dichtst bij in de buurt bevindt. Daarna verschijnt een\n"
+#~ "pakketselectieboom: ga de selectie na en druk op \"Installeren\"\n"
+#~ "om de geselecteerde pakketten op te halen en te installeren. Druk\n"
+#~ "op \"Annuleren\" om af te breken."
#~ msgid ""
#~ "At this point, you need to choose which partition(s) will be used for "
@@ -14665,40 +14828,36 @@ msgstr "Wetenschappelijk werkstation"
#~ "\n"
#~ " * \"More\": gives access to additional features:\n"
#~ "\n"
-#~ " * \"Save partition table\": saves the partition table to a floppy. "
-#~ "Useful\n"
-#~ "for later partition-table recovery if necessary. It is strongly "
-#~ "recommended\n"
-#~ "to perform this step;\n"
+#~ " * \"Save partition table\": saves the partition table to a floppy.\n"
+#~ "Useful for later partition-table recovery if necessary. It is strongly\n"
+#~ "recommended to perform this step;\n"
#~ "\n"
#~ " * \"Restore partition table\": allows to restore a previously saved\n"
#~ "partition table from floppy disk;\n"
#~ "\n"
-#~ " * \"Rescue partition table\": if your partition table is damaged, you "
-#~ "can\n"
-#~ "try to recover it using this option. Please be careful and remember that "
-#~ "it\n"
-#~ "can fail;\n"
+#~ " * \"Rescue partition table\": if your partition table is damaged, "
+#~ "you\n"
+#~ "can try to recover it using this option. Please be careful and remember\n"
+#~ "that it can fail;\n"
#~ "\n"
-#~ " * \"Reload partition table\": discards all changes and loads your "
-#~ "initial\n"
-#~ "partition table;\n"
+#~ " * \"Reload partition table\": discards all changes and loads your\n"
+#~ "initial partition table;\n"
#~ "\n"
-#~ " * \"Removable media automounting\": unchecking this option will force "
-#~ "users\n"
-#~ "to manually mount and unmount removable medias such as floppies and\n"
+#~ " * \"Removable media automounting\": unchecking this option will "
+#~ "force\n"
+#~ "users to manually mount and unmount removable medias such as floppies "
+#~ "and\n"
#~ "CD-ROMs.\n"
#~ "\n"
-#~ " * \"Wizard\": use this option if you wish to use a wizard to partition "
-#~ "your\n"
-#~ "hard drive. This is recommended if you do not have a good knowledge of\n"
+#~ " * \"Wizard\": use this option if you wish to use a wizard to partition\n"
+#~ "your hard drive. This is recommended if you do not have a good knowledge "
+#~ "of\n"
#~ "partitioning;\n"
#~ "\n"
#~ " * \"Undo\": use this option to cancel your changes;\n"
#~ "\n"
-#~ " * \"Toggle to normal/expert mode\": allows additional actions on "
-#~ "partitions\n"
-#~ "(type, options, format) and gives more information;\n"
+#~ " * \"Toggle to normal/expert mode\": allows additional actions on\n"
+#~ "partitions (type, options, format) and gives more information;\n"
#~ "\n"
#~ " * \"Done\": when you are finished partitioning your hard drive, this "
#~ "will\n"
@@ -14838,11 +14997,12 @@ msgstr "Wetenschappelijk werkstation"
#~ "(Linux\n"
#~ "or other) partitions unchanged;\n"
#~ "\n"
-#~ " * \"Upgrade\": this installation class allows to simply update the "
-#~ "packages\n"
-#~ "currently installed on your Mandrake Linux system. It keeps the current\n"
-#~ "partitions of your hard drives as well as user configurations. All other\n"
-#~ "configuration steps remain available with respect to plain installation;\n"
+#~ " * \"Upgrade\": this installation class allows to simply update the\n"
+#~ "packages currently installed on your Mandrake Linux system. It keeps the\n"
+#~ "current partitions of your hard drives as well as user configurations. "
+#~ "All\n"
+#~ "other configuration steps remain available with respect to plain\n"
+#~ "installation;\n"
#~ "\n"
#~ " * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
#~ "existing Mandrake Linux system while keeping all system configurations\n"
@@ -14913,6 +15073,36 @@ msgstr "Wetenschappelijk werkstation"
#~ "niet tenzij u weet wat u doet."
#~ msgid ""
+#~ "DrakX generally detects the number of buttons your mouse has. If not, it\n"
+#~ "assumes you have a two-button mouse and will set it up for third-button\n"
+#~ "emulation. DrakX will automatically know whether it is a PS/2, serial or\n"
+#~ "USB mouse.\n"
+#~ "\n"
+#~ "If you wish to specify a different type of mouse select the appropriate\n"
+#~ "type from the provided list.\n"
+#~ "\n"
+#~ "If you choose a mouse other than the default, a test screen will be\n"
+#~ "displayed. Use the buttons and wheel to verify that the settings are\n"
+#~ "correct. If the mouse is not working well, press the space bar or "
+#~ "[Return]\n"
+#~ "to \"Cancel\" and choose again."
+#~ msgstr ""
+#~ "Normaal gesproken neemt DrakX aan dat u een tweeknops-muis heeft en\n"
+#~ "zal deze instellen voor het nadoen van een derde knop. DrakX zoekt zelf "
+#~ "uit\n"
+#~ "of dit een PS/2-, seriële- of USB-muis is.\n"
+#~ "\n"
+#~ "Indien u een ander type muis wenst te specificeren, selecteer dan het "
+#~ "juiste\n"
+#~ "type uit de getoonde lijst.\n"
+#~ "\n"
+#~ "Indien u een andere muis kiest dan de standaardmuis, zult u een muis-\n"
+#~ "testscherm te zien krijgen. Gebruik de knoppen en het wieltje om te\n"
+#~ "controleren dat de instellingen goed zijn. Als de muis niet correct "
+#~ "werkt,\n"
+#~ "druk dan op de spatiebalk of Enter om te \"Annuleren\" en kies opnieuw."
+
+#~ msgid ""
#~ "This is the most crucial decision point for the security of your GNU/"
#~ "Linux\n"
#~ "system: you have to enter the \"root\" password. \"root\" is the system\n"
@@ -14921,20 +15111,21 @@ msgstr "Wetenschappelijk werkstation"
#~ "can\n"
#~ "do everything! That is why you must choose a password that is difficult "
#~ "to\n"
-#~ "guess DrakX will tell you if it is too easy. As you can see, you can "
-#~ "choose\n"
-#~ "not to enter a password, but we strongly advise you against this if only\n"
-#~ "for one reason: do not think that because you booted GNU/Linux that your\n"
-#~ "other operating systems are safe from mistakes. Since \"root\" can "
-#~ "overcome\n"
-#~ "all limitations and unintentionally erase all data on partitions by\n"
-#~ "carelessly accessing the partitions themselves, it is important for it "
-#~ "to\n"
-#~ "be difficult to become \"root\".\n"
+#~ "guess - DrakX will tell you if it is too easy. As you can see, you can\n"
+#~ "choose not to enter a password, but we strongly advise you against this "
+#~ "if\n"
+#~ "only for one reason: do not think that because you booted GNU/Linux that\n"
+#~ "your other operating systems are safe from mistakes. Since \"root\" can\n"
+#~ "overcome all limitations and unintentionally erase all data on "
+#~ "partitions\n"
+#~ "by carelessly accessing the partitions themselves, it is important for "
+#~ "it\n"
+#~ "to be difficult to become \"root\".\n"
#~ "\n"
#~ "The password should be a mixture of alphanumeric characters and at least "
#~ "8\n"
-#~ "characters long. Never write down the \"root\" password it makes it too\n"
+#~ "characters long. Never write down the \"root\" password - it makes it "
+#~ "too\n"
#~ "easy to compromise a system.\n"
#~ "\n"
#~ "However, please do not make the password too long or complicated because\n"
@@ -15024,7 +15215,7 @@ msgstr "Wetenschappelijk werkstation"
#~ "graphical\n"
#~ "interface.\n"
#~ "\n"
-#~ " * \"LILO with text menu\": if you prefer LILO with its text menu "
+#~ " * \"LILO with text menu\": if you prefer LILO with its text menu\n"
#~ "interface.\n"
#~ "\n"
#~ " * \"Boot device\": in most cases, you will not change the default\n"
@@ -15035,7 +15226,8 @@ msgstr "Wetenschappelijk werkstation"
#~ "\n"
#~ " * \"Delay before booting the default image\": when rebooting the "
#~ "computer,\n"
-#~ "this is the delay granted to the user to choose in the bootloader menu,\n"
+#~ "this is the delay granted to the user to choose - in the bootloader "
+#~ "menu,\n"
#~ "another boot entry than the default one.\n"
#~ "\n"
#~ "!! Beware that if you choose not to install a bootloader (by selecting\n"
@@ -15115,80 +15307,30 @@ msgstr "Wetenschappelijk werkstation"
#~ "item en \"Klaar\" gaat door naar de volgende installatiestap."
#~ msgid ""
-#~ "Here, we select a printing system for your computer. Other OSs may offer\n"
-#~ "you one, but Mandrake Linux offers three.\n"
-#~ "\n"
-#~ " * \"pdq\" which means ``print, don't queue'', is the choice if you have "
-#~ "a\n"
-#~ "direct connection to your printer and you want to be able to panic out "
-#~ "of\n"
-#~ "printer jams, and you do not have networked printers. It will handle "
-#~ "only\n"
-#~ "very simple network cases and is somewhat slow for networks. Pick \"pdq"
-#~ "\"\n"
-#~ "if this is your maiden voyage to GNU/Linux. You can change your choices\n"
-#~ "after installation by running PrinterDrake from the Mandrake Control "
-#~ "Center\n"
-#~ "and clicking the expert button.\n"
-#~ "\n"
-#~ " * \"CUPS\"``Common Unix Printing System'', is excellent at printing to "
-#~ "your\n"
-#~ "local printer and also halfway-around the planet. It is simple and can "
-#~ "act\n"
-#~ "as a server or a client for the ancient \"lpd\" printing system. Hence, "
-#~ "it\n"
-#~ "is compatible with the systems that went before. It can do many tricks, "
-#~ "but\n"
-#~ "the basic setup is almost as easy as \"pdq\". If you need this to "
-#~ "emulate\n"
-#~ "an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
-#~ "graphical front-ends for printing or choosing printer options.\n"
-#~ "\n"
-#~ " * \"lprNG\"``line printer daemon New Generation''. This system can do\n"
-#~ "approximately the same things the others can do, but it will print to\n"
-#~ "printers mounted on a Novell Network, because it supports the IPX "
-#~ "protocol,\n"
-#~ "and it can print directly to shell commands. If you have need of Novell "
-#~ "or\n"
-#~ "printing to commands without using a separate pipe construct, use lprNG.\n"
-#~ "Otherwise, CUPS is preferable as it is simpler and better at working "
-#~ "over\n"
-#~ "networks."
+#~ "LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
+#~ "either GNU/Linux or any other operating system present on your computer.\n"
+#~ "Normally, these other operating systems are correctly detected and\n"
+#~ "installed. If this is not the case, you can add an entry by hand in this\n"
+#~ "screen. Be careful to choose the correct parameters.\n"
+#~ "\n"
+#~ "You may also not want to give access to these other operating systems to\n"
+#~ "anyone. In which case, you can delete the corresponding entries. But "
+#~ "then,\n"
+#~ "you will need a boot disk in order to boot those other operating systems!"
#~ msgstr ""
-#~ "Hier selecteren we een printsysteem voor uw computer. Andere\n"
-#~ "besturingssystemen geven u er wellicht maar Ă©Ă©n, maar Mandrake\n"
-#~ "heeft er drie.\n"
-#~ "\n"
-#~ " * \"pdq\" - hetgeen betekent \"print, don't queue\", is de keuze indien\n"
-#~ "u een directe verbinding tussen uw computer en uw printer heeft en u\n"
-#~ "in staat wilt zijn om printtaken snel te stoppen in het geval van\n"
-#~ "papierstoringen en u niet beschikt over netwerkprinters. Het kan\n"
-#~ "alleen omgaan met erg simpele netwerkprinttaken en is enigszins\n"
-#~ "langzaam wanneer gebruikt in een netwerk. Kies \"pdq\" indien\n"
-#~ "dit uw eerste kennismaking met GNU/Linux is. U kunt uw keuze\n"
-#~ "achteraf nog wijzigen door PrinterDrake te draaien vanuit het\n"
-#~ "Mandrake Controlecentrum op de expert-knop te klikken.\n"
-#~ "\n"
-#~ " * \"CUPS\"``Common Unix Printing System'' is uitstekend geschikt\n"
-#~ "om naar uw lokale printer af te drukken maar ook naar de andere kant\n"
-#~ "van de planeet. Het is eenvoudig en kan dienstdoen als een server of\n"
-#~ "een client voor het antieke \"lpd\" printsysteem, zodat het compatibel\n"
-#~ "is met voorgaande systemen. Het kent vele kunstjes, maar een\n"
-#~ "basisinstallatie is bijna net zo eenvoudig als \"pdq\". Indien u dit "
-#~ "nodig\n"
-#~ "heeft om een \"lpd\"-server te emuleren, dient u de \"cups-lpd\"-daemon\n"
-#~ "in te schakelen. CUPS heeft grafische schillen voor het afdrukken of\n"
-#~ "het kiezen van printeropties.\n"
-#~ "\n"
-#~ " * \"lprNG\"``line printer daemon New Generation''. Dit systeem kan\n"
-#~ "ongeveer hetzelfde als de anderen, maar het kan ook afdrukken naar\n"
-#~ "printers gekoppeld aan een Novell Netwerk, omdat het het IPX-protocol\n"
-#~ "ondersteunt. Verder kan het direct afdrukken naar shell-opdrachten.\n"
-#~ "Indien u Novell nodig heeft of het afdrukken naar opdrachten zonder\n"
-#~ "een afzonderlijk pijplijn-construct, gebruik dan lprNG. In andere "
-#~ "gevallen\n"
-#~ "verdient CUPS de voorkeur omdat het eenvoudiger is en beter werkt\n"
-#~ "in netwerkverband."
+#~ "LILO (de LInux LOader) en GRUB zijn opstart-laders: ze kunnen Linux of\n"
+#~ "eender welk ander besturingssysteem opstarten op uw computer.\n"
+#~ "Normaal gesproken worden deze besturingssystemen correct bespeurd en\n"
+#~ "geĂŻnstalleerd. Als dit niet het geval is, kunt u handmatig een ingang "
+#~ "toevoegen\n"
+#~ "op dit scherm. Let goed op dat u de juiste opties kiest.\n"
+#~ "\n"
+#~ "U wilt verder misschien niet iedereen toegang geven tot die "
+#~ "besturingssystemen.\n"
+#~ "In dat geval kunt u de overeenkomstige ingangen verwijderen. Maar dan "
+#~ "zult\n"
+#~ "u echter wel een opstartdiskette nodig hebben om ze nog te kunnen "
+#~ "opstarten!"
#~ msgid ""
#~ "DrakX now detects any IDE device present in your computer. It will also\n"
@@ -15220,7 +15362,7 @@ msgstr "Wetenschappelijk werkstation"
#~ "``User Guide'' (chapter 3, in the ``Collecting Information on Your\n"
#~ "Hardware'' section) for hints on retrieving the parameters required from\n"
#~ "hardware documentation, from the manufacturer's web site (if you have\n"
-#~ "Internet access) or from MicrosoftWindows (if you used this hardware "
+#~ "Internet access) or from Microsoft Windows (if you used this hardware "
#~ "with\n"
#~ "Windows on your system)."
#~ msgstr ""
@@ -15256,377 +15398,122 @@ msgstr "Wetenschappelijk werkstation"
#~ "internettoegang heeft), of uit Microsoft Windows (als u deze hardware\n"
#~ "met Windows heeft gebruikt op uw systeem)."
-#~ msgid ""
-#~ "You can add additional entries for yaboot, either for other operating\n"
-#~ "systems, alternate kernels, or for an emergency boot image.\n"
-#~ "\n"
-#~ "For other OSs, the entry consists only of a label and the \"root\"\n"
-#~ "partition.\n"
-#~ "\n"
-#~ "For Linux, there are a few possible options:\n"
-#~ "\n"
-#~ " * Label: this is simply the name you will have to type at the yaboot "
-#~ "prompt\n"
-#~ "to select this boot option;\n"
-#~ "\n"
-#~ " * Image: this would be the name of the kernel to boot. Typically, "
-#~ "vmlinux\n"
-#~ "or a variation of vmlinux with an extension;\n"
-#~ "\n"
-#~ " * Root: the \"root\" device or ``/'' for your Linux installation;\n"
-#~ "\n"
-#~ " * Append: on Apple hardware, the kernel append option is used quite "
-#~ "often\n"
-#~ "to assist in initializing video hardware, or to enable keyboard mouse\n"
-#~ "button emulation for the often lacking 2nd and 3rd mouse buttons on a "
-#~ "stock\n"
-#~ "Apple mouse. The following are some examples:\n"
-#~ "\n"
-#~ " video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
-#~ "hda=autotune\n"
-#~ "\n"
-#~ " video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
-#~ "\n"
-#~ " * Initrd: this option can be used either to load initial modules, "
-#~ "before\n"
-#~ "the boot device is available, or to load a ramdisk image for an "
-#~ "emergency\n"
-#~ "boot situation;\n"
-#~ "\n"
-#~ " * Initrd-size: the default ramdisk size is generally 4,096 bytes. If "
-#~ "you\n"
-#~ "need to allocate a large ramdisk, this option can be used;\n"
-#~ "\n"
-#~ " * Read-write: normally the \"root\" partition is initially brought up "
-#~ "in\n"
-#~ "read-only, to allow a file system check before the system becomes "
-#~ "``live''.\n"
-#~ "Here, you can override this option;\n"
-#~ "\n"
-#~ " * NoVideo: should the Apple video hardware prove to be exceptionally\n"
-#~ "problematic, you can select this option to boot in ``novideo'' mode, "
-#~ "with\n"
-#~ "native frame buffer support;\n"
-#~ "\n"
-#~ " * Default: selects this entry as being the default Linux selection,\n"
-#~ "selectable by just pressing ENTER at the yaboot prompt. This entry will\n"
-#~ "also be highlighted with a ``*'', if you press [Tab] to see the boot\n"
-#~ "selections."
-#~ msgstr ""
-#~ "U kent extra parameters toevoegen voor yaboot, voor andere\n"
-#~ "besturingssystemen, alternatieve kernels of voor een nood opstart\n"
-#~ "bestand.\n"
-#~ "\n"
-#~ "Voor andere besturingssystemen bestaan de parameters uit een\n"
-#~ "naam (label) en een hoofd partitie (root partitie).\n"
-#~ "\n"
-#~ "Voor Linux zijn er nog enkelle extra opties:\n"
-#~ "\n"
-#~ " * Label: Dit is simpelweg de naam die U moet invoeren op de yaboot\n"
-#~ " prompt om deze opstart optie te selecteren;\n"
-#~ "\n"
-#~ " * Image: dit is de naam van de kernel, gebruikelijk is vmlinux of een\n"
-#~ " variatie van vmlinux-met-een-extensie;\n"
-#~ "\n"
-#~ " * Root: het hoofd apparaat (root) voor uw Linux installatie;\n"
-#~ "\n"
-#~ " * Append: op Apple apparaten wordt de kernel-append optie veel\n"
-#~ " gebruikt om te assisteren bij het ingebruik nemen "
-#~ "van\n"
-#~ " de video apparatuur, of om het toetsenbord en muis "
-#~ "te\n"
-#~ " activeren ivm de ontbrekende 2e en 3e muisknop op "
-#~ "een\n"
-#~ " standaard apple muis. Dit zijn wat voorbeelden:\n"
-#~ "\n"
-#~ " video=aty128fb:vmode:17,cmode:32,mclk:71 "
-#~ "adb_buttons=\n"
-#~ " 103,111 hda=autotune\n"
-#~ "\n"
-#~ " video=atyfb:vmode=12,cmode=24 adb_buttons=103,111\n"
-#~ "\n"
-#~ " * Initrd: deze optie kan voor twee doelen gebruikt worden, het kunnen\n"
-#~ " laden van initiele modulen voordat het opstart apparaat\n"
-#~ " bereikbaar is, of om een geheugen schijf te laden voor "
-#~ "een\n"
-#~ " nood opstart situatie;\n"
-#~ "\n"
-#~ " * Initrd-size: de standaard geheugen schijf grootte is 4MB, indien U\n"
-#~ " een grotere geheugenschijf wilt laden, kunt U met "
-#~ "deze\n"
-#~ " optie de grootte instellen;\n"
-#~ "\n"
-#~ " * Read-write: normaal gesproken wordt de hoofd(root) partitie tijdens\n"
-#~ " opstarten alleen-lezen geladen om een controlle "
-#~ "te\n"
-#~ " kunnen uitvoeren alvorens \"live\" te gaan.\n"
-#~ " Hier kunt U deze optie met de hand instellen;\n"
-#~ "\n"
-#~ " * NoVideo: indien het Apple video apparaat exceptioneel veel\n"
-#~ " problemen geeft, kunt U hiermee opstarten in een\n"
-#~ " zogenaamde \"novideo\" modus met standaard\n"
-#~ " framebuffer ondersteuning;\n"
-#~ "\n"
-#~ " * Default: selecteerd deze selectie als de standaard selectie,\n"
-#~ " deze selectie zal op de yaboot prompt dan standaard\n"
-#~ " verkozen zijn wanneer U op ENTER drukt. Deze selectie\n"
-#~ " zal ook met een \"*\" herkenbaar zijn als U op de TAB\n"
-#~ " toets drukt op de yaboot-prompt."
+#~ msgid "Thank you for choosing Mandrake Linux 8.2"
+#~ msgstr "Bedankt dat u voor Mandrake Linux 8.2 gekozen hebt"
-#~ msgid ""
-#~ "Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to "
-#~ "boot\n"
-#~ "either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
-#~ "these other operating systems are correctly detected and installed. If "
-#~ "this\n"
-#~ "is not the case, you can add an entry by hand in this screen. Be careful "
-#~ "to\n"
-#~ "choose the correct parameters.\n"
-#~ "\n"
-#~ "Yaboot's main options are:\n"
-#~ "\n"
-#~ " * Init Message: a simple text message displayed before the boot prompt;\n"
-#~ "\n"
-#~ " * Boot Device: indicates where you want to place the information "
-#~ "required\n"
-#~ "to boot to GNU/Linux. Generally, you set up a bootstrap partition "
-#~ "earlier\n"
-#~ "to hold this information;\n"
-#~ "\n"
-#~ " * Open Firmware Delay: unlike LILO, there are two delays available with\n"
-#~ "yaboot. The first delay is measured in seconds and at this point, you "
-#~ "can\n"
-#~ "choose between CD, OF boot, MacOS or Linux;\n"
-#~ "\n"
-#~ " * Kernel Boot Timeout: this timeout is similar to the LILO boot delay.\n"
-#~ "After selecting Linux, you will have this delay in 0.1 second before "
-#~ "your\n"
-#~ "default kernel description is selected;\n"
-#~ "\n"
-#~ " * Enable CD Boot?: checking this option allows you to choose ``C'' for "
-#~ "CD\n"
-#~ "at the first boot prompt;\n"
-#~ "\n"
-#~ " * Enable OF Boot?: checking this option allows you to choose ``N'' for "
-#~ "Open\n"
-#~ "Firmware at the first boot prompt;\n"
-#~ "\n"
-#~ " * Default OS: you can select which OS will boot by default when the "
-#~ "Open\n"
-#~ "Firmware Delay expires."
-#~ msgstr ""
-#~ "Yaboot is een zogenaamde bootloader (opstart selector) voor moderne\n"
-#~ "MacIntosh apparatuur. Het kan GNU/Linux, MacOS of MacOSX opstarten\n"
-#~ "indien aanwezig op uw computer. Normaal gesproken worden deze\n"
-#~ "besturingssystemen automatisch gedetecteerd en ingesteld. Als dit niet "
-#~ "het\n"
-#~ "geval is, dan kunt U hier handmatig deze toegangen toevoegen. Kijk uit\n"
-#~ "om de correcte parameters te selecteren.\n"
-#~ "\n"
-#~ "Yaboots hoofd opties zijn:\n"
-#~ "\n"
-#~ " * Init Message: een eenvoudig tekst bericht getoond voor de bootprompt\n"
-#~ " (opstart regel);\n"
-#~ "\n"
-#~ " * Boot Device: indiceert waar U de benodigde informatie om GNU/Linux\n"
-#~ " op te starten wilt plaatsen. Normaal "
-#~ "gesproken stelt U\n"
-#~ " eerder in waar U deze informatie wilt "
-#~ "plaatsen;\n"
-#~ " * Open Firmware Delay: Anders dan LILO zijn er twee vertragingen\n"
-#~ " beschikbaar met yaboot. De "
-#~ "eerste vertraging\n"
-#~ " wordt in seconden ingesteld "
-#~ "en op dit punt kunt\n"
-#~ " U kiezen uit CD, OF opstart, "
-#~ "MacOS of Linux;\n"
-#~ "\n"
-#~ " * Kernel Boot Timeout: deze pauze komt overeen met de boot delay van\n"
-#~ " LILO. Na het selecteren van "
-#~ "Linux heeft U een\n"
-#~ " tijd van 0,1 seconden voordat "
-#~ "uw standaard\n"
-#~ " kernel wordt geselecteerd;\n"
-#~ "\n"
-#~ " * Enable CD Boot?: het instellen van deze optie staat U toe op te "
-#~ "starten\n"
-#~ " met \"C\" voor CD op de opstart "
-#~ "prompt;\n"
-#~ "\n"
-#~ " * Enable OF Boot?: het instellen van deze optie staat U toe om \"N\" "
-#~ "voor\n"
-#~ " Open Firmware start te selecteren op "
-#~ "de bootprompt;\n"
-#~ "\n"
-#~ " * Default OS: hier kunt U selecteren welk besturingssysteem automatisch\n"
-#~ " wordt gestart na de Open Firmware vertraging."
+#~ msgid "Join the Free Software world"
+#~ msgstr "Doe mee met de wereld van Vrije Software"
#~ msgid ""
-#~ "Here are presented various parameters concerning your machine. Depending "
-#~ "on\n"
-#~ "your installed hardware, you may or not, see the following entries:\n"
-#~ "\n"
-#~ " * \"Mouse\": check the current mouse configuration and click on the "
-#~ "button\n"
-#~ "to change it if necessary;\n"
-#~ "\n"
-#~ " * \"Keyboard\": check the current keyboard map configuration and click "
-#~ "on\n"
-#~ "the button to change that if necessary;\n"
-#~ "\n"
-#~ " * \"Timezone\": DrakX, by default, guesses your time zone from the "
-#~ "language\n"
-#~ "you have chosen. But here again, as for the choice of a keyboard, you "
-#~ "may\n"
-#~ "not be in the country for which the chosen language should correspond.\n"
-#~ "Hence, you may need to click on the \"Timezone\" button in order to\n"
-#~ "configure the clock according to the time zone you are in;\n"
-#~ "\n"
-#~ " * \"Printer\": clicking on the \"No Printer\" button will open the "
-#~ "printer\n"
-#~ "configuration wizard;\n"
-#~ "\n"
-#~ " * \"Sound card\": if a sound card is detected on your system, it is\n"
-#~ "displayed here. No modification possible at installation time;\n"
-#~ "\n"
-#~ " * \"TV card\": if a TV card is detected on your system, it is displayed\n"
-#~ "here. No modification possible at installation time;\n"
-#~ "\n"
-#~ " * \"ISDN card\": if an ISDN card is detected on your system, it is\n"
-#~ "displayed here. You can click on the button to change the parameters\n"
-#~ "associated with it."
+#~ "Get to know the Open Source community and become a member. Learn, teach, "
+#~ "and help others by joining the many discussion forums that you will find "
+#~ "in our \"Community\" webpages"
#~ msgstr ""
-#~ "Hier ziet u verscheidene paramaters die betrekking hebben op uw "
-#~ "computer.\n"
-#~ "Afhankelijk van welke hardware u heeft, kunt u al dan niet (zie "
-#~ "hieronder):\n"
-#~ "\n"
-#~ " * \"Muis\": de huidige muisconfiguratie nagaan en zonodig op deze knop "
-#~ "klikken\n"
-#~ "om hem aan te passen.\n"
-#~ "\n"
-#~ " * \"Toetsenbord\": de huidige toetsenbordindeling nagaan en zonodig op "
-#~ "deze\n"
-#~ "knop klikken om hem aan te passen.\n"
-#~ "\n"
-#~ " * \"Tijdzone\": Normaal gesproken raadt DrakX uw tijdzone aan de hand "
-#~ "van de\n"
-#~ "taal die u gekozen heeft. Maar hier, net zoals bij de keuze voor een "
-#~ "toetsenbord,\n"
-#~ "hoeft u zich niet in het land te bevinden dat correspondeert met de "
-#~ "gekozen taal.\n"
-#~ "Daarom is het mogelijk dat u op de \"Tijdzone\"-knop moet klikken om de "
-#~ "klok in\n"
-#~ "te stellen aan de hand van de tijdzone waarin u zich bevindt.\n"
-#~ "\n"
-#~ " * \"Printer\": klikken op de \"Geen printer\"-knop zal de "
-#~ "printerconfiguratie-hulp\n"
-#~ "openen.\n"
-#~ "\n"
-#~ " * \"Geluidskaart\": indien een geluidskaart bespeurd is op uw systeem, "
-#~ "wordt dat\n"
-#~ "hier weergegeven. Het is niet mogelijk dit aan te passen gedurende de "
-#~ "installatie.\n"
-#~ "\n"
-#~ " * \"TV-kaart\": indien een TV-kaart bespeurd is op uw systeem, wordt dat "
-#~ "hier\n"
-#~ "weergegeven. Het is niet mogelijk dit aan te passen gedurende de "
-#~ "installatie.\n"
-#~ "\n"
-#~ "* \"ISDN-kaart\": indien een ISDN-kaart bespeurd is op uw systeem, wordt "
-#~ "dat\n"
-#~ "hier weergegeven. U kunt op de knop klikken om de parameters aan te "
-#~ "passen\n"
-#~ "die erbij horen."
-
-#~ msgid "Setting security level"
-#~ msgstr "Selecteer een veiligheids-niveau"
+#~ "Leer de Open Source-gemeenschap kennen en word er deelgenoot van. Leer, "
+#~ "doceer en help anderen door u aan te sluiten bij de vele discussiefora "
+#~ "die u vindt op onze \"Community\"-webpagina's"
-#~ msgid "Select a graphics card"
-#~ msgstr "Selecteer een grafische kaart"
+#~ msgid "Internet and Messaging"
+#~ msgstr "Internet en Berichten"
-#~ msgid "Choose a X driver"
-#~ msgstr "Kiest u een X-stuurprogramma"
+#~ msgid "Multimedia and Graphics"
+#~ msgstr "Multimedia en Grafisch"
-#~ msgid "X driver"
-#~ msgstr "X-stuurprogramma"
-
-#~ msgid "Warning: testing this graphics card may freeze your computer"
+#~ msgid ""
+#~ "Mandrake Linux 8.2 lets you push your multimedia computer to its limits! "
+#~ "Use the latest software to play music and audio files, edit and organize "
+#~ "your images and photos, watch TV and videos, and much more"
#~ msgstr ""
-#~ "Waarschuwing: door deze grafische kaart te testen, kan uw computer "
-#~ "vastlopen"
-
-#~ msgid "Standard VGA, 640x480 at 60 Hz"
-#~ msgstr "Standaard VGA, 640x480 aan 60 Hz"
+#~ "Mandrake Linux 8.2 laat u uw multimedia-computer tot aan zijn grenzen "
+#~ "drijven! Gebruik de allernieuwste software om muziek- en audiobestanden "
+#~ "af te spelen, uw plaatjes en foto's te bewerken en te beheren, TV en "
+#~ "video's te kijken en veel meer"
-#~ msgid "Super VGA, 800x600 at 56 Hz"
-#~ msgstr "Super VGA, 800x600 aan 56 Hz"
-
-#~ msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
-#~ msgstr "8514 Compatibel, 1024x768 aan 87 Hz interlaced (geen 800x600)"
-
-#~ msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
-#~ msgstr "Super VGA, 1024x768 aan 87 Hz interlaced, 800x600 aan 56 Hz"
+#~ msgid ""
+#~ "Mandrake Linux 8.2 is the ultimate development platform. Discover the "
+#~ "power of the GNU gcc compiler as well as the best Open Source development "
+#~ "environments"
+#~ msgstr ""
+#~ "Mandrake Linux 8.2 is het ultieme ontwikkelplatform. Ontdek de kracht van "
+#~ "de GNU gcc compiler naast de beste Open Source ontwikkelomgevingen"
-#~ msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
-#~ msgstr "Extended Super VGA, 800x600 aan 60 Hz, 640x480 aan 72 Hz"
+#~ msgid ""
+#~ "The Mandrake Linux 8.2 Control Center is a one-stop location for fully "
+#~ "customizing and configuring your Mandrake system"
+#~ msgstr ""
+#~ "Het Mandrake Linux 8.2 Controlecentrum is een alles-in-Ă©Ă©n-plek om uw "
+#~ "Mandrake-systeem volledig aan te passen en te configureren"
-#~ msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
-#~ msgstr "Non-Interlaced SVGA, 1024x768 aan 60 Hz, 800x600 aan 72 Hz"
+#~ msgid ""
+#~ "Mandrake Linux 8.2 provides 11 different graphical desktop environments "
+#~ "and window managers to choose from including GNOME 1.4, KDE 2.2.2, Window "
+#~ "Maker 0.8, and the rest"
+#~ msgstr ""
+#~ "Mandrake Linux 8.2 biedt 11 verschillende grafische werkplek-omgevingen "
+#~ "en window managers waaruit u kunt kiezen, waaronder GNOME 1.4, KDE 2.2.2, "
+#~ "Window Maker 0.8 en de rest"
-#~ msgid "High Frequency SVGA, 1024x768 at 70 Hz"
-#~ msgstr "High Frequency SVGA, 1024x768 aan 70 Hz"
+#~ msgid "Server Software"
+#~ msgstr "Server software"
-#~ msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
-#~ msgstr "Multi-frequency in staat om 1280x1024 aan 60 Hz weer te geven"
+#~ msgid ""
+#~ "Mandrake Linux 8.2 provides the best Open Source games - arcade, action, "
+#~ "cards, sports, strategy, ..."
+#~ msgstr ""
+#~ "Mandrake Linux 8.2 biedt het beste in Open Source games - arcade, actie, "
+#~ "kaarten, sporten, strategie, ..."
-#~ msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
-#~ msgstr "Multi-frequency in staat om 1280x1024 aan 74 Hz weer te geven"
+#~ msgid "MandrakeCampus"
+#~ msgstr "MandrakeCampus"
-#~ msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
-#~ msgstr "Multi-frequency in staat om 1280x1024 aan 76 Hz weer te geven"
+#~ msgid ""
+#~ "Would you like to learn Linux simply, quickly, and for free? MandrakeSoft "
+#~ "provides free Linux training, as well as a way to test your progress, at "
+#~ "MandrakeCampus -- our online training center"
+#~ msgstr ""
+#~ "Wilt u Linux leren op een eenvoudige, snelle en gratis manier? "
+#~ "MandrakeSoft biedt gratis Linux-training, naast een manier om uw "
+#~ "voortgang te testen, op MandrakeCampus -- ons online trainingscentrum"
-#~ msgid "Monitor that can do 1600x1200 at 70 Hz"
-#~ msgstr "Multi-frequency in staat om 1600x1200 aan 70 Hz weer te geven"
+#~ msgid ""
+#~ "Quality support from the Linux Community, and from MandrakeSoft, is just "
+#~ "around the corner. And if you're already a Linux veteran, become an "
+#~ "\"Expert\" and share your knowledge at our support website"
+#~ msgstr ""
+#~ "Kwaliteits-ondersteuning vanuit de Linux-gemeenschap, en van "
+#~ "MandrakeSoft, is om de hoek! En indien u al een Linux-veteraan bent, word "
+#~ "een \"Expert\" en deel uw kennis op onze ondersteuningswebpagina"
-#~ msgid "Monitor that can do 1600x1200 at 76 Hz"
-#~ msgstr "Multi-frequency in staat om 1600x1200 aan 76 Hz weer te geven"
+#~ msgid "MandrakeConsulting"
+#~ msgstr "MandrakeConsulting"
#~ msgid ""
-#~ "The total size for the groups you have selected is approximately %d MB.\n"
+#~ "For all of your IT projects, our consultants are ready to analyze your "
+#~ "requirements and offer a customized solution. Benefit from MandrakeSoft's "
+#~ "vast experience as a Linux producer to provide a true IT alternative for "
+#~ "your business organization"
#~ msgstr ""
-#~ "De totale grootte voor de geselecteerde groepen is ongeveer %d MB.\n"
+#~ "Voor al uw IT-projecten staan onze consultants klaar om te analyseren wat "
+#~ "u nodig heeft en een aangepaste oplossing te bieden. Profiteer van "
+#~ "MandrakeSoft's enorme ervaring als Linux-producent voor een waar IT-"
+#~ "alternatief voor uw bedrijfsorganisatie"
+
+#~ msgid "MandrakeStore"
+#~ msgstr "MandrakeStore"
#~ msgid ""
-#~ "If you wish to install less than this size,\n"
-#~ "select the percentage of packages that you want to install.\n"
-#~ "\n"
-#~ "A low percentage will install only the most important packages;\n"
-#~ "a percentage of 100%% will install all selected packages."
+#~ "A full range of Linux solutions, as well as special offers on products "
+#~ "and 'goodies', are available online at our e-store"
#~ msgstr ""
-#~ "Als u minder dan deze grootte wenst te installeren,\n"
-#~ "selectere dan het percentage pakketten dat u wenst te installeren.\n"
-#~ "\n"
-#~ "Een laag percentage zal enkel de belangrijkste pakketten installeren;\n"
-#~ "een percentage van 100%% zal alle geselecteerde pakketten installeren."
+#~ "Ons volledige scala aan Linux-oplossingen, naast speciale aanbiedingen "
+#~ "voor onze produkten en 'goodies', is beschikbaar op onze e-store"
#~ msgid ""
-#~ "You have space on your disk for only %d%% of these packages.\n"
-#~ "\n"
-#~ "If you wish to install less than this,\n"
-#~ "select the percentage of packages that you want to install.\n"
-#~ "A low percentage will install only the most important packages;\n"
-#~ "a percentage of %d%% will install as many packages as possible."
+#~ "For more information on MandrakeSoft's Professional Services and "
+#~ "commercial offerings, please see the following web page:"
#~ msgstr ""
-#~ "U heeft schijfruimte voor slechts %d%% van deze pakketten.\n"
-#~ "\n"
-#~ "Als u minder wenst te installeren,\n"
-#~ "selecteer dan het percentage pakketten dat u wenst te installeren.\n"
-#~ "Een laag percentage zal enkel de belangrijkste pakketten installeren;\n"
-#~ "een percentage van %d%% zal alle geselecteerde pakketten installeren."
-
-#~ msgid "You will be able to choose them more specifically in the next step."
-#~ msgstr "Het is mogelijk preciezer te kiezen in de volgende stap."
+#~ "Voor meer informatie over MandrakeSoft's Professional Services en "
+#~ "commerciële produkten, zie de volgende webpagina:"
-#~ msgid "Percentage of packages to install"
-#~ msgstr "Percentage pakketten om te installeren"
+#~ msgid "http://www.mandrakesoft.com/sales/contact"
+#~ msgstr "http://www.mandrakesoft.com/sales/contact"
diff --git a/perl-install/share/po/no.po b/perl-install/share/po/no.po
index c6a7f6de6..5361e1e0c 100644
--- a/perl-install/share/po/no.po
+++ b/perl-install/share/po/no.po
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2002-08-31 16:29+0200\n"
+"POT-Creation-Date: 2002-09-02 20:14+0200\n"
"PO-Revision-Date: 2002-03-10 11:04GMT\n"
"Last-Translator: Terje Bjerkelia <terje@bjerkelia.com>\n"
"Language-Team: Norsk\n"
@@ -196,7 +196,7 @@ msgid "Ok"
msgstr "Ok"
#: ../../Xconfig/main.pm_.c:121 ../../diskdrake/dav.pm_.c:24
-#: ../../harddrake/ui.pm_.c:95 ../../printerdrake.pm_.c:3135
+#: ../../harddrake/ui.pm_.c:98 ../../printerdrake.pm_.c:3155
#: ../../standalone/logdrake_.c:224
msgid "Quit"
msgstr "Avslutt"
@@ -226,7 +226,7 @@ msgstr ""
msgid "Generic"
msgstr "Generisk"
-#: ../../Xconfig/monitor.pm_.c:99 ../../harddrake/ui.pm_.c:36
+#: ../../Xconfig/monitor.pm_.c:99 ../../harddrake/ui.pm_.c:37
#, fuzzy
msgid "Vendor"
msgstr "Angre"
@@ -308,7 +308,7 @@ msgstr "Grafikk-kort: %s"
#: ../../interactive/newt.pm_.c:174 ../../interactive/stdio.pm_.c:39
#: ../../interactive/stdio.pm_.c:143 ../../my_gtk.pm_.c:158
#: ../../my_gtk.pm_.c:162 ../../my_gtk.pm_.c:287
-#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:2113
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:2124
#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3926
#: ../../standalone/drakbackup_.c:3959 ../../standalone/drakbackup_.c:3985
#: ../../standalone/drakbackup_.c:4012 ../../standalone/drakbackup_.c:4039
@@ -504,7 +504,7 @@ msgstr "Forsinkelse fűr oppstart av standard bilde"
#: ../../any.pm_.c:170 ../../any.pm_.c:788
#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1095 ../../network/modem.pm_.c:48
+#: ../../install_steps_interactive.pm_.c:1096 ../../network/modem.pm_.c:48
#: ../../printerdrake.pm_.c:850 ../../printerdrake.pm_.c:965
#: ../../standalone/drakbackup_.c:3528 ../../standalone/drakconnect_.c:624
#: ../../standalone/drakconnect_.c:649
@@ -512,7 +512,7 @@ msgid "Password"
msgstr "Passord"
#: ../../any.pm_.c:171 ../../any.pm_.c:789
-#: ../../install_steps_interactive.pm_.c:1096
+#: ../../install_steps_interactive.pm_.c:1097
msgid "Password (again)"
msgstr "Passord (igjen)"
@@ -549,12 +549,12 @@ msgstr ""
#: ../../any.pm_.c:184 ../../any.pm_.c:764
#: ../../diskdrake/interactive.pm_.c:1191
-#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1091
msgid "Please try again"
msgstr "Vennligst prűv igjen"
#: ../../any.pm_.c:184 ../../any.pm_.c:764
-#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1091
msgid "The passwords do not match"
msgstr "Passordene stemmer ikke overens"
@@ -613,7 +613,7 @@ msgstr "Legg til"
#: ../../any.pm_.c:257 ../../any.pm_.c:776 ../../diskdrake/dav.pm_.c:64
#: ../../diskdrake/hd_gtk.pm_.c:153 ../../diskdrake/removable.pm_.c:27
#: ../../diskdrake/smbnfs_gtk.pm_.c:88 ../../interactive/http.pm_.c:153
-#: ../../printerdrake.pm_.c:3135 ../../standalone/drakbackup_.c:2772
+#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2772
msgid "Done"
msgstr "Ferdig"
@@ -943,7 +943,7 @@ msgstr "Tillat alle brukere"
msgid "No sharing"
msgstr "Ingen deling"
-#: ../../any.pm_.c:987 ../../install_any.pm_.c:1180 ../../standalone.pm_.c:58
+#: ../../any.pm_.c:987 ../../install_any.pm_.c:1183 ../../standalone.pm_.c:58
#, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "Pakken %s mć installeres. Vil du installere den?"
@@ -953,7 +953,7 @@ msgid ""
"You can export using NFS or Samba. Please select which you'd like to use."
msgstr "Du kan eksportere med NFS eller Samba. Hvilken av dem űnsker du"
-#: ../../any.pm_.c:998 ../../install_any.pm_.c:1185 ../../standalone.pm_.c:63
+#: ../../any.pm_.c:998 ../../install_any.pm_.c:1188 ../../standalone.pm_.c:63
#, c-format
msgid "Mandatory package %s is missing"
msgstr "Obligatorisk pakke %s mangler"
@@ -1170,8 +1170,8 @@ msgstr "ingen hjelp implementert ennć.\n"
msgid "Boot Style Configuration"
msgstr "Oppstartsstilkonfigurasjon"
-#: ../../bootlook.pm_.c:78 ../../harddrake/ui.pm_.c:59
-#: ../../harddrake/ui.pm_.c:60 ../../standalone/drakfloppy_.c:81
+#: ../../bootlook.pm_.c:78 ../../harddrake/ui.pm_.c:62
+#: ../../harddrake/ui.pm_.c:63 ../../standalone/drakfloppy_.c:81
#: ../../standalone/logdrake_.c:101
msgid "/_File"
msgstr "/_Fil"
@@ -1181,7 +1181,7 @@ msgstr "/_Fil"
msgid "/File/_Quit"
msgstr "/Fil/_Avslutt"
-#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:60
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:63
#: ../../standalone/drakfloppy_.c:82 ../../standalone/logdrake_.c:107
msgid "<control>Q"
msgstr "<control>Q"
@@ -2465,225 +2465,234 @@ msgstr ""
msgid "Driver:"
msgstr "Driver"
-#: ../../harddrake/sound.pm_.c:172
+#: ../../harddrake/sound.pm_.c:173
#, fuzzy
msgid "No known driver"
msgstr "X driver"
-#: ../../harddrake/sound.pm_.c:173
+#: ../../harddrake/sound.pm_.c:174
#, c-format
msgid "There's no known driver for your sound card (%s)"
msgstr ""
-#: ../../harddrake/sound.pm_.c:176
+#: ../../harddrake/sound.pm_.c:177
#, fuzzy
msgid "Unkown driver"
msgstr "Ukjent modell"
-#: ../../harddrake/sound.pm_.c:177
+#: ../../harddrake/sound.pm_.c:178
#, c-format
msgid ""
"The \"%s\" driver for your sound card is unlisted\n"
"\n"
"Please send the output of the \"lspcidrake -v\" command to\n"
-"Thierry Vignaud <tvignaud at mandrakesoft dot com>\n"
-"with subject: unlisted sound driver"
+"<install at mandrakesoft dot com>\n"
+"with subject: unlisted sound driver \"%s\""
msgstr ""
-#: ../../harddrake/ui.pm_.c:15
+#: ../../harddrake/ui.pm_.c:16
#, fuzzy
msgid "Model"
msgstr "Mus"
-#: ../../harddrake/ui.pm_.c:15
+#: ../../harddrake/ui.pm_.c:16
#, fuzzy
msgid "hard disk model"
msgstr "Kort mem (DMA)"
-#: ../../harddrake/ui.pm_.c:16
+#: ../../harddrake/ui.pm_.c:17
#, fuzzy
msgid "Channel"
msgstr "Avbryt"
-#: ../../harddrake/ui.pm_.c:16
+#: ../../harddrake/ui.pm_.c:17
msgid "EIDE/SCSI channel"
msgstr ""
-#: ../../harddrake/ui.pm_.c:18
+#: ../../harddrake/ui.pm_.c:19
msgid "Bus"
msgstr ""
-#: ../../harddrake/ui.pm_.c:19
+#: ../../harddrake/ui.pm_.c:20
msgid ""
"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
msgstr ""
-#: ../../harddrake/ui.pm_.c:20
+#: ../../harddrake/ui.pm_.c:21
#, fuzzy
msgid "Module"
msgstr "Mus"
-#: ../../harddrake/ui.pm_.c:20
+#: ../../harddrake/ui.pm_.c:21
msgid "the module of the GNU/Linux kernel that handle that device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:21
+#: ../../harddrake/ui.pm_.c:22
msgid "Media class"
msgstr ""
-#: ../../harddrake/ui.pm_.c:21
+#: ../../harddrake/ui.pm_.c:22
msgid "class of hardware device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:22 ../../printerdrake.pm_.c:1517
+#: ../../harddrake/ui.pm_.c:23 ../../printerdrake.pm_.c:1517
msgid "Description"
msgstr "Beskrivelse"
-#: ../../harddrake/ui.pm_.c:22
+#: ../../harddrake/ui.pm_.c:23
msgid "this field describe the device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:24
+#: ../../harddrake/ui.pm_.c:25
#, fuzzy
msgid "Bus identification"
msgstr "Autentifikasjon"
-#: ../../harddrake/ui.pm_.c:25
+#: ../../harddrake/ui.pm_.c:26
msgid ""
"- PCI and USB devices: this list the vendor, device, subvendor and subdevice "
"PCI/USB ids"
msgstr ""
-#: ../../harddrake/ui.pm_.c:27
+#: ../../harddrake/ui.pm_.c:28
msgid "Location on the bus"
msgstr ""
-#: ../../harddrake/ui.pm_.c:28
+#: ../../harddrake/ui.pm_.c:29
msgid ""
"- pci devices: this gives the PCI slot, device and function of this card\n"
"- eide devices: the device is either a slave or a master device\n"
"- scsi devices: the scsi bus and the scsi device ids"
msgstr ""
-#: ../../harddrake/ui.pm_.c:31
+#: ../../harddrake/ui.pm_.c:32
#, fuzzy
msgid "Old device file"
msgstr "Velg fil"
-#: ../../harddrake/ui.pm_.c:32
+#: ../../harddrake/ui.pm_.c:33
msgid "old static device name used in dev package"
msgstr ""
-#: ../../harddrake/ui.pm_.c:33
+#: ../../harddrake/ui.pm_.c:34
#, fuzzy
msgid "New devfs device"
msgstr "Gateway-enhet"
-#: ../../harddrake/ui.pm_.c:34
+#: ../../harddrake/ui.pm_.c:35
msgid "new dinamic device name generated by incore kernel devfs"
msgstr ""
-#: ../../harddrake/ui.pm_.c:35
+#: ../../harddrake/ui.pm_.c:36
#, fuzzy
msgid "Number of buttons"
msgstr "2 knapper"
-#: ../../harddrake/ui.pm_.c:36
+#: ../../harddrake/ui.pm_.c:37
msgid "the vendor name of the device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:60
+#: ../../harddrake/ui.pm_.c:38
+#, fuzzy
+msgid "Alternative drivers"
+msgstr "Alternativ testside (A4)"
+
+#: ../../harddrake/ui.pm_.c:39
+msgid "the list of alternative drivers for this sound card"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:63
#, fuzzy
msgid "/_Quit"
msgstr "Avslutt"
-#: ../../harddrake/ui.pm_.c:61 ../../harddrake/ui.pm_.c:62
-#: ../../harddrake/ui.pm_.c:68 ../../standalone/logdrake_.c:110
+#: ../../harddrake/ui.pm_.c:64 ../../harddrake/ui.pm_.c:65
+#: ../../harddrake/ui.pm_.c:71 ../../standalone/logdrake_.c:110
msgid "/_Help"
msgstr "/_Hjelp"
-#: ../../harddrake/ui.pm_.c:62
+#: ../../harddrake/ui.pm_.c:65
#, fuzzy
msgid "/_Help..."
msgstr "/_Hjelp"
-#: ../../harddrake/ui.pm_.c:63
+#: ../../harddrake/ui.pm_.c:66
msgid "Harddrake help"
msgstr ""
-#: ../../harddrake/ui.pm_.c:64
+#: ../../harddrake/ui.pm_.c:67
msgid ""
"Description of the fields:\n"
"\n"
msgstr ""
-#: ../../harddrake/ui.pm_.c:68
+#: ../../harddrake/ui.pm_.c:71
#, fuzzy
msgid "/_About..."
msgstr "/Hjelp/_Om..."
-#: ../../harddrake/ui.pm_.c:69
+#: ../../harddrake/ui.pm_.c:72
msgid "About Harddrake"
msgstr ""
-#: ../../harddrake/ui.pm_.c:70
+#: ../../harddrake/ui.pm_.c:73
msgid ""
"This is HardDrake, a Mandrake hardware configuration tool.\n"
"Version:"
msgstr ""
-#: ../../harddrake/ui.pm_.c:71
+#: ../../harddrake/ui.pm_.c:74
#, fuzzy
msgid "Author:"
msgstr "Automatisk sondering"
-#: ../../harddrake/ui.pm_.c:83
+#: ../../harddrake/ui.pm_.c:86
#, fuzzy
msgid "Harddrake2 version "
msgstr "Oppdaging av harddisk"
-#: ../../harddrake/ui.pm_.c:100
+#: ../../harddrake/ui.pm_.c:103
#, fuzzy
msgid "Detected hardware"
msgstr "Se maskinvareinfo"
-#: ../../harddrake/ui.pm_.c:102
+#: ../../harddrake/ui.pm_.c:105
#, fuzzy
msgid "Information"
msgstr "Vis informasjon"
-#: ../../harddrake/ui.pm_.c:105
+#: ../../harddrake/ui.pm_.c:108
#, fuzzy
msgid "Configure module"
msgstr "Konfigurer mus"
-#: ../../harddrake/ui.pm_.c:106
+#: ../../harddrake/ui.pm_.c:109
msgid "Run config tool"
msgstr ""
-#: ../../harddrake/ui.pm_.c:110
+#: ../../harddrake/ui.pm_.c:113
#, fuzzy
msgid "Detection in progress"
msgstr "oppdaget pć port %s"
-#: ../../harddrake/ui.pm_.c:110 ../../interactive.pm_.c:391
+#: ../../harddrake/ui.pm_.c:113 ../../interactive.pm_.c:391
msgid "Please wait"
msgstr "Vennligst vent"
-#: ../../harddrake/ui.pm_.c:153
+#: ../../harddrake/ui.pm_.c:156
msgid "primary"
msgstr ""
-#: ../../harddrake/ui.pm_.c:153
+#: ../../harddrake/ui.pm_.c:156
#, fuzzy
msgid "secondary"
msgstr "%d sekunder"
-#: ../../harddrake/ui.pm_.c:190
+#: ../../harddrake/ui.pm_.c:197
msgid "You can configure each parameter of the module here."
msgstr ""
-#: ../../harddrake/ui.pm_.c:206
+#: ../../harddrake/ui.pm_.c:213
#, fuzzy, c-format
msgid "Running \"%s\" ..."
msgstr "Fjerner skriver \"%s\" ..."
@@ -4084,7 +4093,7 @@ msgid ""
"order to configure the clock according to the time zone you are in;\n"
"\n"
" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
-"configuration wizard. Consult the correpsonding chapter of the ``User\n"
+"configuration wizard. Consult the corresponding chapter of the ``User\n"
"Guide'' for more information on how to setup a new printer. The interface\n"
"presented there is similar to the one used during installation;\n"
"\n"
@@ -4209,16 +4218,16 @@ msgstr ""
msgid "Can't use broadcast with no NIS domain"
msgstr "Kan ikke bruke broadcast med intet NIS domene"
-#: ../../install_any.pm_.c:859
+#: ../../install_any.pm_.c:862
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Sett inn en FAT-formatert diskett i stasjon %s"
-#: ../../install_any.pm_.c:863
+#: ../../install_any.pm_.c:866
msgid "This floppy is not FAT formatted"
msgstr "Denne disketten er ikke FAT-formatert"
-#: ../../install_any.pm_.c:875
+#: ../../install_any.pm_.c:878
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -4226,12 +4235,12 @@ msgstr ""
"For ć bruke dette valget av pakker, start installasjonen med'linux "
"defcfg=floppy'"
-#: ../../install_any.pm_.c:898 ../../partition_table.pm_.c:767
+#: ../../install_any.pm_.c:901 ../../partition_table.pm_.c:767
#, c-format
msgid "Error reading file %s"
msgstr "Feil ved lesing av fil %s"
-#: ../../install_any.pm_.c:1020
+#: ../../install_any.pm_.c:1023
msgid ""
"An error occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
@@ -4473,7 +4482,7 @@ msgstr ""
msgid "Welcome to %s"
msgstr "Velkommen til %s"
-#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:771
+#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:772
msgid "No floppy drive available"
msgstr "Ingen diskettstasjon tilgjengelig"
@@ -4986,7 +4995,7 @@ msgid "Are you sure you refuse the licence?"
msgstr ""
#: ../../install_steps_interactive.pm_.c:211
-#: ../../install_steps_interactive.pm_.c:1022
+#: ../../install_steps_interactive.pm_.c:1023
#: ../../standalone/keyboarddrake_.c:31
msgid "Keyboard"
msgstr "Tastatur"
@@ -5369,143 +5378,143 @@ msgstr "Velg et speil som pakkene kan hentes fra"
msgid "Contacting the mirror to get the list of available packages..."
msgstr "Kontakter speilet for ć fć en liste over tilgjengelige pakker"
-#: ../../install_steps_interactive.pm_.c:944
+#: ../../install_steps_interactive.pm_.c:945
msgid "Which is your timezone?"
msgstr "Hva er din tidsone?"
-#: ../../install_steps_interactive.pm_.c:949
+#: ../../install_steps_interactive.pm_.c:950
msgid "Hardware clock set to GMT"
msgstr "Maskinvareklokken din satt til GMT"
-#: ../../install_steps_interactive.pm_.c:950
+#: ../../install_steps_interactive.pm_.c:951
msgid "Automatic time synchronization (using NTP)"
msgstr "Automatisk tidssynkronisering (ved hjelp av NTP)"
-#: ../../install_steps_interactive.pm_.c:957
+#: ../../install_steps_interactive.pm_.c:958
msgid "NTP Server"
msgstr "NTP-tjener"
-#: ../../install_steps_interactive.pm_.c:991
-#: ../../install_steps_interactive.pm_.c:999
+#: ../../install_steps_interactive.pm_.c:992
+#: ../../install_steps_interactive.pm_.c:1000
msgid "Remote CUPS server"
msgstr "Fjern-CUPS tjener"
-#: ../../install_steps_interactive.pm_.c:992
+#: ../../install_steps_interactive.pm_.c:993
msgid "No printer"
msgstr "Ingen skriver"
-#: ../../install_steps_interactive.pm_.c:1009
+#: ../../install_steps_interactive.pm_.c:1010
msgid "Do you have an ISA sound card?"
msgstr "Har du et ISA lydkort?"
-#: ../../install_steps_interactive.pm_.c:1011
+#: ../../install_steps_interactive.pm_.c:1012
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
"Kjűr \"sndconfig\" etter installasjonen for ć konfigurere lydkortet ditt"
-#: ../../install_steps_interactive.pm_.c:1013
+#: ../../install_steps_interactive.pm_.c:1014
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr "Lydkort ikke oppdaget. Prűv \"harddrake\" etter installasjonen"
-#: ../../install_steps_interactive.pm_.c:1018 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1019 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Oppsummering"
-#: ../../install_steps_interactive.pm_.c:1021
+#: ../../install_steps_interactive.pm_.c:1022
msgid "Mouse"
msgstr "Mus"
-#: ../../install_steps_interactive.pm_.c:1023
+#: ../../install_steps_interactive.pm_.c:1024
msgid "Timezone"
msgstr "Tidssone"
-#: ../../install_steps_interactive.pm_.c:1024 ../../printerdrake.pm_.c:2926
-#: ../../printerdrake.pm_.c:3015
+#: ../../install_steps_interactive.pm_.c:1025 ../../printerdrake.pm_.c:2937
+#: ../../printerdrake.pm_.c:3026
msgid "Printer"
msgstr "Skriver"
-#: ../../install_steps_interactive.pm_.c:1026
+#: ../../install_steps_interactive.pm_.c:1027
msgid "ISDN card"
msgstr "ISDN-kort"
-#: ../../install_steps_interactive.pm_.c:1029
-#: ../../install_steps_interactive.pm_.c:1031
+#: ../../install_steps_interactive.pm_.c:1030
+#: ../../install_steps_interactive.pm_.c:1032
msgid "Sound card"
msgstr "Lydkort"
-#: ../../install_steps_interactive.pm_.c:1033
+#: ../../install_steps_interactive.pm_.c:1034
msgid "TV card"
msgstr "TV-kort"
-#: ../../install_steps_interactive.pm_.c:1073
-#: ../../install_steps_interactive.pm_.c:1098
-#: ../../install_steps_interactive.pm_.c:1102
+#: ../../install_steps_interactive.pm_.c:1074
+#: ../../install_steps_interactive.pm_.c:1099
+#: ../../install_steps_interactive.pm_.c:1103
msgid "LDAP"
msgstr "LDAP"
-#: ../../install_steps_interactive.pm_.c:1074
-#: ../../install_steps_interactive.pm_.c:1098
-#: ../../install_steps_interactive.pm_.c:1111
+#: ../../install_steps_interactive.pm_.c:1075
+#: ../../install_steps_interactive.pm_.c:1099
+#: ../../install_steps_interactive.pm_.c:1112
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1075
-#: ../../install_steps_interactive.pm_.c:1098
-#: ../../install_steps_interactive.pm_.c:1119
-#: ../../install_steps_interactive.pm_.c:1125
+#: ../../install_steps_interactive.pm_.c:1076
+#: ../../install_steps_interactive.pm_.c:1099
+#: ../../install_steps_interactive.pm_.c:1120
+#: ../../install_steps_interactive.pm_.c:1126
#, fuzzy
msgid "Windows Domain"
msgstr "NIS-domene"
-#: ../../install_steps_interactive.pm_.c:1076
-#: ../../install_steps_interactive.pm_.c:1098
+#: ../../install_steps_interactive.pm_.c:1077
+#: ../../install_steps_interactive.pm_.c:1099
msgid "Local files"
msgstr "Lokale filer"
-#: ../../install_steps_interactive.pm_.c:1085
-#: ../../install_steps_interactive.pm_.c:1086 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1086
+#: ../../install_steps_interactive.pm_.c:1087 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Sett root-passord"
-#: ../../install_steps_interactive.pm_.c:1087
+#: ../../install_steps_interactive.pm_.c:1088
msgid "No password"
msgstr "Intet passord"
-#: ../../install_steps_interactive.pm_.c:1092
+#: ../../install_steps_interactive.pm_.c:1093
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr "Dette passordet er for enkelt (mć være minst %d tegn langt)"
-#: ../../install_steps_interactive.pm_.c:1098 ../../network/modem.pm_.c:49
+#: ../../install_steps_interactive.pm_.c:1099 ../../network/modem.pm_.c:49
#: ../../standalone/drakconnect_.c:625 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Autentifikasjon"
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../install_steps_interactive.pm_.c:1107
msgid "Authentication LDAP"
msgstr "Autentisering LDAP"
-#: ../../install_steps_interactive.pm_.c:1107
+#: ../../install_steps_interactive.pm_.c:1108
msgid "LDAP Base dn"
msgstr "LDAP grunnleggende dn"
-#: ../../install_steps_interactive.pm_.c:1108
+#: ../../install_steps_interactive.pm_.c:1109
msgid "LDAP Server"
msgstr "LDAP-tjener"
-#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1115
msgid "Authentication NIS"
msgstr "Autentisering NIS"
-#: ../../install_steps_interactive.pm_.c:1115
+#: ../../install_steps_interactive.pm_.c:1116
msgid "NIS Domain"
msgstr "NIS-domene"
-#: ../../install_steps_interactive.pm_.c:1116
+#: ../../install_steps_interactive.pm_.c:1117
msgid "NIS Server"
msgstr "NIS-tjener"
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1123
msgid ""
"For this to work for a W2K PDC, you will probably need to have the admin "
"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
@@ -5521,21 +5530,21 @@ msgid ""
"good."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1124
+#: ../../install_steps_interactive.pm_.c:1125
#, fuzzy
msgid "Authentication Windows Domain"
msgstr "Autentisering LDAP"
-#: ../../install_steps_interactive.pm_.c:1126
+#: ../../install_steps_interactive.pm_.c:1127
#, fuzzy
msgid "Domain Admin User Name"
msgstr "Domenenavn"
-#: ../../install_steps_interactive.pm_.c:1127
+#: ../../install_steps_interactive.pm_.c:1128
msgid "Domain Admin Password"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1162
+#: ../../install_steps_interactive.pm_.c:1163
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
"depending on the normal bootloader. This is useful if you don't want to "
@@ -5566,19 +5575,19 @@ msgstr ""
"en diskett\n"
"i den fűrste stasjonen og trykk \"Ok\"."
-#: ../../install_steps_interactive.pm_.c:1178
+#: ../../install_steps_interactive.pm_.c:1179
msgid "First floppy drive"
msgstr "Fűrste diskettstasjon"
-#: ../../install_steps_interactive.pm_.c:1179
+#: ../../install_steps_interactive.pm_.c:1180
msgid "Second floppy drive"
msgstr "Andre diskettstasjon"
-#: ../../install_steps_interactive.pm_.c:1180 ../../printerdrake.pm_.c:2459
+#: ../../install_steps_interactive.pm_.c:1181 ../../printerdrake.pm_.c:2470
msgid "Skip"
msgstr "Dropp"
-#: ../../install_steps_interactive.pm_.c:1185
+#: ../../install_steps_interactive.pm_.c:1186
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5606,7 +5615,7 @@ msgstr ""
"ditt?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1191
+#: ../../install_steps_interactive.pm_.c:1192
msgid ""
"\n"
"\n"
@@ -5620,28 +5629,28 @@ msgstr ""
"det ć lage en oppstartsdiskett pć en 1,44 Mb diskett vil\n"
"antageligvis ikke gć, dan XFS trenger en veldig stor driver)."
-#: ../../install_steps_interactive.pm_.c:1199
+#: ../../install_steps_interactive.pm_.c:1200
msgid "Sorry, no floppy drive available"
msgstr "Beklager, ingen diskettstasjon tilgjengelig"
-#: ../../install_steps_interactive.pm_.c:1203
+#: ../../install_steps_interactive.pm_.c:1204
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "Velg diskettstasjonen du űnsker ć bruke for ć lage oppstartsdisketten"
-#: ../../install_steps_interactive.pm_.c:1207
+#: ../../install_steps_interactive.pm_.c:1208
#, c-format
msgid "Insert a floppy in %s"
msgstr "Sett inn en diskett i %s"
-#: ../../install_steps_interactive.pm_.c:1210
+#: ../../install_steps_interactive.pm_.c:1211
msgid "Creating bootdisk..."
msgstr "Oppretter oppstartdiskett"
-#: ../../install_steps_interactive.pm_.c:1217
+#: ../../install_steps_interactive.pm_.c:1218
msgid "Preparing bootloader..."
msgstr "Klargjűr oppstartslaster"
-#: ../../install_steps_interactive.pm_.c:1228
+#: ../../install_steps_interactive.pm_.c:1229
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5653,11 +5662,11 @@ msgstr ""
"Installasjonen vil fortsette, men du mć\n"
"bruke BootX for ć starte din maskin."
-#: ../../install_steps_interactive.pm_.c:1234
+#: ../../install_steps_interactive.pm_.c:1235
msgid "Do you want to use aboot?"
msgstr "Űnsker du ć bruke aboot?"
-#: ../../install_steps_interactive.pm_.c:1237
+#: ../../install_steps_interactive.pm_.c:1238
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -5665,15 +5674,15 @@ msgstr ""
"Feil ved installasjon av aboot, \n"
"prűve ć installere selv om det űdelegger den fűrste partisjonen?"
-#: ../../install_steps_interactive.pm_.c:1244
+#: ../../install_steps_interactive.pm_.c:1245
msgid "Installing bootloader"
msgstr "Installer oppstartslaster"
-#: ../../install_steps_interactive.pm_.c:1250
+#: ../../install_steps_interactive.pm_.c:1251
msgid "Installation of bootloader failed. The following error occured:"
msgstr "Installasjon av oppstartslaster mislykket. Fűlgende feil oppsto:"
-#: ../../install_steps_interactive.pm_.c:1258
+#: ../../install_steps_interactive.pm_.c:1259
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -5690,17 +5699,17 @@ msgstr ""
" Skriv sć: shut-down\n"
"Ved din neste oppstart burde du se oppstartslasteren."
-#: ../../install_steps_interactive.pm_.c:1292
+#: ../../install_steps_interactive.pm_.c:1293
#: ../../standalone/drakautoinst_.c:79
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Sett inn en tom diskett i stasjon %s"
-#: ../../install_steps_interactive.pm_.c:1296
+#: ../../install_steps_interactive.pm_.c:1297
msgid "Creating auto install floppy..."
msgstr "Oppretter diskett for autoinstallasjon"
-#: ../../install_steps_interactive.pm_.c:1307
+#: ../../install_steps_interactive.pm_.c:1308
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -5710,7 +5719,7 @@ msgstr ""
"\n"
"Űnsker du virkelig ć avslutte nć?"
-#: ../../install_steps_interactive.pm_.c:1318
+#: ../../install_steps_interactive.pm_.c:1319
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
@@ -5743,16 +5752,16 @@ msgstr ""
"Informasjon om konfigurering av systemet ditt finnes i post\n"
"install-kapittelet i Official Mandrake Linux User's Guide."
-#: ../../install_steps_interactive.pm_.c:1331
+#: ../../install_steps_interactive.pm_.c:1332
#, fuzzy
msgid "http://www.mandrakelinux.com/en/90errata.php3"
msgstr "http://www.mandrakesoft.com/sales/contact"
-#: ../../install_steps_interactive.pm_.c:1336
+#: ../../install_steps_interactive.pm_.c:1337
msgid "Generate auto install floppy"
msgstr "Oppretter diskett for autoinstallasjon"
-#: ../../install_steps_interactive.pm_.c:1338
+#: ../../install_steps_interactive.pm_.c:1339
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -5766,15 +5775,15 @@ msgstr ""
"\n"
"Du kanskje űnske ć kjűre installasjonen omigjen.\n"
-#: ../../install_steps_interactive.pm_.c:1343
+#: ../../install_steps_interactive.pm_.c:1344
msgid "Automated"
msgstr "Automatisert"
-#: ../../install_steps_interactive.pm_.c:1343
+#: ../../install_steps_interactive.pm_.c:1344
msgid "Replay"
msgstr "Gjűr igjen"
-#: ../../install_steps_interactive.pm_.c:1346
+#: ../../install_steps_interactive.pm_.c:1347
msgid "Save packages selection"
msgstr "Lagre pakkevalg"
@@ -5811,7 +5820,7 @@ msgid "Basic"
msgstr "Grunnleggende"
#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:158
-#: ../../printerdrake.pm_.c:2113
+#: ../../printerdrake.pm_.c:2124
msgid "<- Previous"
msgstr "<- Forrige"
@@ -6428,7 +6437,7 @@ msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgid "Finish"
msgstr "Avslutt"
-#: ../../my_gtk.pm_.c:159 ../../printerdrake.pm_.c:2115
+#: ../../my_gtk.pm_.c:159 ../../printerdrake.pm_.c:2126
msgid "Next ->"
msgstr "Neste ->"
@@ -6486,6 +6495,74 @@ msgstr "bruk pppoe"
msgid "use pptp"
msgstr "bruk pptp"
+#: ../../network/drakfirewall.pm_.c:12
+#, fuzzy
+msgid "Web Server"
+msgstr "Tjener"
+
+#: ../../network/drakfirewall.pm_.c:17
+#, fuzzy
+msgid "Domain Name Server"
+msgstr "Domenenavn"
+
+#: ../../network/drakfirewall.pm_.c:32
+#, fuzzy
+msgid "Mail Server"
+msgstr "Databasetjener"
+
+#: ../../network/drakfirewall.pm_.c:37
+#, fuzzy
+msgid "POP and IMAP Server"
+msgstr "LDAP-tjener"
+
+#: ../../network/drakfirewall.pm_.c:111
+#, fuzzy
+msgid "No network card"
+msgstr "ingen nettverkskort funnet"
+
+#: ../../network/drakfirewall.pm_.c:129
+#, fuzzy
+msgid ""
+"drakfirewall configurator\n"
+"\n"
+"This configures a personal firewall for this Mandrake Linux machine.\n"
+"For a powerful dedicated firewall solution, please look to the\n"
+"specialized MandrakeSecurity Firewall distribution."
+msgstr ""
+"tinyfirewall konfigurering\n"
+"\n"
+"Dette konfigurerer en personlig brannmur for denne Mandrake Linux maskinen.\n"
+"For en kraftig dedikert brannmurlűsning ta en kikk pć den\n"
+"spesialiserte MandrakeSecurity Firewall distribusjonen."
+
+#: ../../network/drakfirewall.pm_.c:147
+msgid "Which services would you like to allow the Internet to connect to?"
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:148
+msgid ""
+"You can enter miscellaneous ports. \n"
+"Valid examples are: 139/tcp 139/udp.\n"
+"Have a look at /etc/services for information."
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:154
+#, c-format
+msgid ""
+"Invalid port given: %s.\n"
+"The proper format is \"port/tcp\" or \"port/udp\", \n"
+"where port is between 1 and 65535."
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:162
+msgid "Everything (no firewall)"
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:164
+#, fuzzy
+msgid "Other ports"
+msgstr "Test porter"
+
#: ../../network/ethernet.pm_.c:37
msgid ""
"Which dhcp client do you want to use?\n"
@@ -6838,7 +6915,7 @@ msgstr "Velg profilen som skal konfigureres"
msgid "Use auto detection"
msgstr "Bruk automatisk detektering"
-#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:3131
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:3151
#: ../../standalone/drakconnect_.c:274 ../../standalone/drakconnect_.c:277
#: ../../standalone/drakfloppy_.c:145
msgid "Expert Mode"
@@ -7079,73 +7156,6 @@ msgstr ""
"Advarsel! En eksisterende brannmurkonfigurasjon har blitt oppdaget. Du "
"trenger muligens ć konfigurere noe manuelt etter installasjon."
-#: ../../network/tinyfirewall.pm_.c:12
-#, fuzzy
-msgid "Web Server"
-msgstr "Tjener"
-
-#: ../../network/tinyfirewall.pm_.c:17
-#, fuzzy
-msgid "Domain Name Server"
-msgstr "Domenenavn"
-
-#: ../../network/tinyfirewall.pm_.c:32
-#, fuzzy
-msgid "Mail Server"
-msgstr "Databasetjener"
-
-#: ../../network/tinyfirewall.pm_.c:37
-#, fuzzy
-msgid "POP and IMAP Server"
-msgstr "LDAP-tjener"
-
-#: ../../network/tinyfirewall.pm_.c:111
-#, fuzzy
-msgid "No network card"
-msgstr "ingen nettverkskort funnet"
-
-#: ../../network/tinyfirewall.pm_.c:129
-msgid ""
-"tinyfirewall configurator\n"
-"\n"
-"This configures a personal firewall for this Mandrake Linux machine.\n"
-"For a powerful dedicated firewall solution, please look to the\n"
-"specialized MandrakeSecurity Firewall distribution."
-msgstr ""
-"tinyfirewall konfigurering\n"
-"\n"
-"Dette konfigurerer en personlig brannmur for denne Mandrake Linux maskinen.\n"
-"For en kraftig dedikert brannmurlűsning ta en kikk pć den\n"
-"spesialiserte MandrakeSecurity Firewall distribusjonen."
-
-#: ../../network/tinyfirewall.pm_.c:147
-msgid "Which services would you like to allow the Internet to connect to?"
-msgstr ""
-
-#: ../../network/tinyfirewall.pm_.c:148
-msgid ""
-"You can enter miscellaneous ports. \n"
-"Valid examples are: 139/tcp 139/udp.\n"
-"Have a look at /etc/services for information."
-msgstr ""
-
-#: ../../network/tinyfirewall.pm_.c:154
-#, c-format
-msgid ""
-"Invalid port given: %s.\n"
-"The proper format is \"port/tcp\" or \"port/udp\", \n"
-"where port is between 1 and 65535."
-msgstr ""
-
-#: ../../network/tinyfirewall.pm_.c:162
-msgid "Everything (no firewall)"
-msgstr ""
-
-#: ../../network/tinyfirewall.pm_.c:164
-#, fuzzy
-msgid "Other ports"
-msgstr "Test porter"
-
#: ../../network/tools.pm_.c:41
msgid "Internet configuration"
msgstr "Internett-konfigurasjon"
@@ -7387,7 +7397,7 @@ msgid "Unknown Model"
msgstr "Ukjent modell"
#: ../../printer.pm_.c:735 ../../printer.pm_.c:926 ../../printer.pm_.c:1318
-#: ../../printerdrake.pm_.c:2249 ../../printerdrake.pm_.c:3394
+#: ../../printerdrake.pm_.c:2260 ../../printerdrake.pm_.c:3414
msgid "Unknown model"
msgstr "Ukjent modell"
@@ -7474,10 +7484,10 @@ msgstr "(pć denne maskin)"
msgid "On CUPS server \"%s\""
msgstr "Pć CUPS tjener \"%s\""
-#: ../../printer.pm_.c:1128 ../../printerdrake.pm_.c:3052
-#: ../../printerdrake.pm_.c:3063 ../../printerdrake.pm_.c:3283
-#: ../../printerdrake.pm_.c:3335 ../../printerdrake.pm_.c:3361
-#: ../../printerdrake.pm_.c:3536 ../../printerdrake.pm_.c:3538
+#: ../../printer.pm_.c:1128 ../../printerdrake.pm_.c:3071
+#: ../../printerdrake.pm_.c:3082 ../../printerdrake.pm_.c:3303
+#: ../../printerdrake.pm_.c:3355 ../../printerdrake.pm_.c:3381
+#: ../../printerdrake.pm_.c:3556 ../../printerdrake.pm_.c:3558
msgid " (Default)"
msgstr " (Standard)"
@@ -7503,11 +7513,11 @@ msgstr ""
msgid "Printer auto-detection (Local, TCP/Socket, and SMB printers)"
msgstr ""
-#: ../../printerdrake.pm_.c:84 ../../printerdrake.pm_.c:3115
+#: ../../printerdrake.pm_.c:84 ../../printerdrake.pm_.c:3135
msgid "CUPS configuration"
msgstr "CUPS konfigurasjon"
-#: ../../printerdrake.pm_.c:85 ../../printerdrake.pm_.c:3116
+#: ../../printerdrake.pm_.c:85 ../../printerdrake.pm_.c:3136
msgid "Specify CUPS server"
msgstr "Spesifiser CUPS tjener"
@@ -7567,18 +7577,18 @@ msgstr "Automatisk CUPS konfigurasjon"
#: ../../printerdrake.pm_.c:177 ../../printerdrake.pm_.c:247
#: ../../printerdrake.pm_.c:1529 ../../printerdrake.pm_.c:1533
-#: ../../printerdrake.pm_.c:1651 ../../printerdrake.pm_.c:2192
-#: ../../printerdrake.pm_.c:2345 ../../printerdrake.pm_.c:2404
-#: ../../printerdrake.pm_.c:2477 ../../printerdrake.pm_.c:2498
-#: ../../printerdrake.pm_.c:2688 ../../printerdrake.pm_.c:2729
-#: ../../printerdrake.pm_.c:2734 ../../printerdrake.pm_.c:2768
-#: ../../printerdrake.pm_.c:2773 ../../printerdrake.pm_.c:2810
-#: ../../printerdrake.pm_.c:2863 ../../printerdrake.pm_.c:2883
-#: ../../printerdrake.pm_.c:2897 ../../printerdrake.pm_.c:2931
-#: ../../printerdrake.pm_.c:2977 ../../printerdrake.pm_.c:2995
-#: ../../printerdrake.pm_.c:3076 ../../printerdrake.pm_.c:3149
-#: ../../printerdrake.pm_.c:3451 ../../printerdrake.pm_.c:3506
-#: ../../printerdrake.pm_.c:3559 ../../standalone/printerdrake_.c:57
+#: ../../printerdrake.pm_.c:1651 ../../printerdrake.pm_.c:2203
+#: ../../printerdrake.pm_.c:2356 ../../printerdrake.pm_.c:2415
+#: ../../printerdrake.pm_.c:2488 ../../printerdrake.pm_.c:2509
+#: ../../printerdrake.pm_.c:2699 ../../printerdrake.pm_.c:2740
+#: ../../printerdrake.pm_.c:2745 ../../printerdrake.pm_.c:2779
+#: ../../printerdrake.pm_.c:2784 ../../printerdrake.pm_.c:2821
+#: ../../printerdrake.pm_.c:2874 ../../printerdrake.pm_.c:2894
+#: ../../printerdrake.pm_.c:2908 ../../printerdrake.pm_.c:2942
+#: ../../printerdrake.pm_.c:2988 ../../printerdrake.pm_.c:3006
+#: ../../printerdrake.pm_.c:3095 ../../printerdrake.pm_.c:3169
+#: ../../printerdrake.pm_.c:3471 ../../printerdrake.pm_.c:3526
+#: ../../printerdrake.pm_.c:3579 ../../standalone/printerdrake_.c:57
msgid "Printerdrake"
msgstr "Printerdrake"
@@ -7684,7 +7694,7 @@ msgid ""
msgstr ""
#: ../../printerdrake.pm_.c:269 ../../printerdrake.pm_.c:278
-#: ../../printerdrake.pm_.c:3098 ../../printerdrake.pm_.c:3222
+#: ../../printerdrake.pm_.c:3117 ../../printerdrake.pm_.c:3242
msgid "Add a new printer"
msgstr "Legg til en ny skriver"
@@ -8298,16 +8308,16 @@ msgstr ""
"lokal port eller konfigurer den pć maskinen hvor det er koblet til."
#: ../../printerdrake.pm_.c:1813
+#, fuzzy
msgid ""
"To be able to print with your Lexmark inkjet and this configuration, you "
"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
-"com/). Go to the US site and click on the \"Drivers\" button. Then choose "
-"your model and afterwards \"Linux\" as operating system. The drivers come as "
-"RPM packages or shell scripts with interactive graphical installation. You "
-"do not need to do this configuration by the graphical frontends. Cancel "
-"directly after the license agreement. Then print printhead alignment pages "
-"with \"lexmarkmaintain\" and adjust the head alignment settings with this "
-"program."
+"com/). Click on the \"Drivers\" link. Then choose your model and afterwards "
+"\"Linux\" as operating system. The drivers come as RPM packages or shell "
+"scripts with interactive graphical installation. You do not need to do this "
+"configuration by the graphical frontends. Cancel directly after the license "
+"agreement. Then print printhead alignment pages with \"lexmarkmaintain\" and "
+"adjust the head alignment settings with this program."
msgstr ""
"For ć kunne skrive med din Lexmark inkjet og denne konfigurasjonen, trenger "
"du inkjet skriverdriverene fra Lexmark (http://www.lexmark.com/). Gć til US "
@@ -8318,7 +8328,34 @@ msgstr ""
"agreement. Skriv sć skriverhode alignment sider med \"lexmarkmaintain\" og "
"juster hode alignment innstillinger med dette programmet."
-#: ../../printerdrake.pm_.c:2029
+#: ../../printerdrake.pm_.c:1816
+msgid "GDI Laser Printer using the Zenographics ZJ-Stream Format"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:1817
+msgid ""
+"Your printer belongs to the group of GDI laser printers (winprinters) sold "
+"by different manufacturers which uses the Zenographics ZJ-stream raster "
+"format for the data sent to the printer. The driver for these printers is "
+"still in a very early development stage and so it will perhaps not always "
+"work properly. Especially it is possible that the printer only works when "
+"you choose the A4 paper size.\n"
+"\n"
+"Some of these printers, as the HP LaserJet 1000, for which this driver was "
+"originally created, need their firmware to be uploaded to them after they "
+"are turned on. In the case of the HP LaserJet 1000 you have to search the "
+"printer's Windows driver CD or your Windows partition for the file "
+"\"sihp1000.img\" and upload the file to the printer with one of the "
+"following commands:\n"
+"\n"
+" lpr -o raw sihp1000.img\n"
+" cat sihp1000.img > /dev/usb/lp0\n"
+"\n"
+"The first command can be given by any normal user, the second must be given "
+"as root. After having done so you can print normally.\n"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:2040
#, fuzzy
msgid ""
"Printer default settings\n"
@@ -8333,22 +8370,22 @@ msgstr ""
"er satt riktig. Merk deg at veldig god utskriftskvalitet\n"
"kan gjűre utskriften treg."
-#: ../../printerdrake.pm_.c:2038
+#: ../../printerdrake.pm_.c:2049
#, c-format
msgid "Option %s must be an integer number!"
msgstr "Valg %s mć være ett helt tall!"
-#: ../../printerdrake.pm_.c:2042
+#: ../../printerdrake.pm_.c:2053
#, c-format
msgid "Option %s must be a number!"
msgstr "Valg %s mć være ett tall!"
-#: ../../printerdrake.pm_.c:2047
+#: ../../printerdrake.pm_.c:2058
#, c-format
msgid "Option %s out of range!"
msgstr "Valg %s er utenfor rekkevidden!"
-#: ../../printerdrake.pm_.c:2086
+#: ../../printerdrake.pm_.c:2097
#, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
@@ -8357,11 +8394,11 @@ msgstr ""
"Űnsker du ć sette denne skriveren (\"%s\")\n"
"som standard skriver?"
-#: ../../printerdrake.pm_.c:2109
+#: ../../printerdrake.pm_.c:2120
msgid "Test pages"
msgstr "Testsider"
-#: ../../printerdrake.pm_.c:2110
+#: ../../printerdrake.pm_.c:2121
#, fuzzy
msgid ""
"Please select the test pages you want to print.\n"
@@ -8375,39 +8412,39 @@ msgstr ""
"skrives ut i det hele tatt. Som regel vil det holde ć\n"
"skrive ut standard testside."
-#: ../../printerdrake.pm_.c:2114
+#: ../../printerdrake.pm_.c:2125
msgid "No test pages"
msgstr "Ingen testsider"
-#: ../../printerdrake.pm_.c:2115
+#: ../../printerdrake.pm_.c:2126
msgid "Print"
msgstr "Skriv ut"
-#: ../../printerdrake.pm_.c:2172
+#: ../../printerdrake.pm_.c:2183
msgid "Standard test page"
msgstr "Standard testside"
-#: ../../printerdrake.pm_.c:2175
+#: ../../printerdrake.pm_.c:2186
msgid "Alternative test page (Letter)"
msgstr "Alternativ testside (letter)"
-#: ../../printerdrake.pm_.c:2178
+#: ../../printerdrake.pm_.c:2189
msgid "Alternative test page (A4)"
msgstr "Alternativ testside (A4)"
-#: ../../printerdrake.pm_.c:2180
+#: ../../printerdrake.pm_.c:2191
msgid "Photo test page"
msgstr "Fototestside"
-#: ../../printerdrake.pm_.c:2184
+#: ../../printerdrake.pm_.c:2195
msgid "Do not print any test page"
msgstr "Ikke skriv ut noen testside"
-#: ../../printerdrake.pm_.c:2193 ../../printerdrake.pm_.c:2346
+#: ../../printerdrake.pm_.c:2204 ../../printerdrake.pm_.c:2357
msgid "Printing test page(s)..."
msgstr "Skriver ut testside(r)..."
-#: ../../printerdrake.pm_.c:2218
+#: ../../printerdrake.pm_.c:2229
#, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -8422,7 +8459,7 @@ msgstr ""
"%s\n"
"\n"
-#: ../../printerdrake.pm_.c:2222
+#: ../../printerdrake.pm_.c:2233
msgid ""
"Test page(s) have been sent to the printer.\n"
"It may take some time before the printer starts.\n"
@@ -8430,15 +8467,15 @@ msgstr ""
"Testsiden(e) har blitt sendt til skriver-daemonen.\n"
"Det kan ta litt tid fűr skriveren starter.\n"
-#: ../../printerdrake.pm_.c:2229
+#: ../../printerdrake.pm_.c:2240
msgid "Did it work properly?"
msgstr "Virker det som det skal?"
-#: ../../printerdrake.pm_.c:2251 ../../printerdrake.pm_.c:3396
+#: ../../printerdrake.pm_.c:2262 ../../printerdrake.pm_.c:3416
msgid "Raw printer"
msgstr "Rć skriver"
-#: ../../printerdrake.pm_.c:2277
+#: ../../printerdrake.pm_.c:2288
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -8447,15 +8484,15 @@ msgid ""
"to modify the option settings easily.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2279
+#: ../../printerdrake.pm_.c:2290
msgid ""
"These commands you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications, but here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2282 ../../printerdrake.pm_.c:2299
-#: ../../printerdrake.pm_.c:2309
+#: ../../printerdrake.pm_.c:2293 ../../printerdrake.pm_.c:2310
+#: ../../printerdrake.pm_.c:2320
#, c-format
msgid ""
"\n"
@@ -8464,7 +8501,7 @@ msgid ""
"line, e. g. \"%s <file>\". "
msgstr ""
-#: ../../printerdrake.pm_.c:2285 ../../printerdrake.pm_.c:2325
+#: ../../printerdrake.pm_.c:2296 ../../printerdrake.pm_.c:2336
#, fuzzy, c-format
msgid ""
"To know about the options available for the current printer read either the "
@@ -8474,28 +8511,28 @@ msgstr ""
"Fćr ć fć en liste over tilgjengelige valg for nćværende skriver klikk pć "
"\"Print option list\" knappen."
-#: ../../printerdrake.pm_.c:2289
+#: ../../printerdrake.pm_.c:2300
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2294 ../../printerdrake.pm_.c:2304
+#: ../../printerdrake.pm_.c:2305 ../../printerdrake.pm_.c:2315
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2296 ../../printerdrake.pm_.c:2306
-#: ../../printerdrake.pm_.c:2316
+#: ../../printerdrake.pm_.c:2307 ../../printerdrake.pm_.c:2317
+#: ../../printerdrake.pm_.c:2327
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2301 ../../printerdrake.pm_.c:2311
+#: ../../printerdrake.pm_.c:2312 ../../printerdrake.pm_.c:2322
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
@@ -8503,7 +8540,7 @@ msgstr ""
"Fćr ć fć en liste over tilgjengelige valg for nćværende skriver klikk pć "
"\"Print option list\" knappen."
-#: ../../printerdrake.pm_.c:2314
+#: ../../printerdrake.pm_.c:2325
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
@@ -8512,7 +8549,7 @@ msgstr ""
"Fćr ć skrive ut en fil fra kommandolinjen (terminalvindu) bruk kommandoen \"%"
"s <file>\" eller \"%s <file>\".\n"
-#: ../../printerdrake.pm_.c:2318
+#: ../../printerdrake.pm_.c:2329
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -8522,7 +8559,7 @@ msgid ""
"jams.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2322
+#: ../../printerdrake.pm_.c:2333
#, c-format
msgid ""
"\n"
@@ -8531,40 +8568,40 @@ msgid ""
"line, e. g. \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2332
+#: ../../printerdrake.pm_.c:2343
#, fuzzy, c-format
msgid "Printing/Scanning/Photo Cards on \"%s\""
msgstr "Skriver ut/Skanner pć \"%s\""
-#: ../../printerdrake.pm_.c:2333
+#: ../../printerdrake.pm_.c:2344
#, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "Skriver ut/Skanner pć \"%s\""
-#: ../../printerdrake.pm_.c:2335
+#: ../../printerdrake.pm_.c:2346
#, fuzzy, c-format
msgid "Printing/Photo Card Access on \"%s\""
msgstr "Skriver ut/Skanner pć \"%s\""
-#: ../../printerdrake.pm_.c:2336
+#: ../../printerdrake.pm_.c:2347
#, c-format
msgid "Printing on the printer \"%s\""
msgstr "Skriver ut pć skriver \"%s\""
-#: ../../printerdrake.pm_.c:2339 ../../printerdrake.pm_.c:2342
-#: ../../printerdrake.pm_.c:2343 ../../printerdrake.pm_.c:2344
-#: ../../printerdrake.pm_.c:3380 ../../standalone/drakTermServ_.c:248
+#: ../../printerdrake.pm_.c:2350 ../../printerdrake.pm_.c:2353
+#: ../../printerdrake.pm_.c:2354 ../../printerdrake.pm_.c:2355
+#: ../../printerdrake.pm_.c:3400 ../../standalone/drakTermServ_.c:248
#: ../../standalone/drakbackup_.c:1560 ../../standalone/drakbackup_.c:4208
-#: ../../standalone/drakbug_.c:129 ../../standalone/drakfont_.c:705
+#: ../../standalone/drakbug_.c:130 ../../standalone/drakfont_.c:705
#: ../../standalone/drakfont_.c:1014
msgid "Close"
msgstr "Lukk"
-#: ../../printerdrake.pm_.c:2342
+#: ../../printerdrake.pm_.c:2353
msgid "Print option list"
msgstr "Skriv ut liste over valg"
-#: ../../printerdrake.pm_.c:2362
+#: ../../printerdrake.pm_.c:2373
#, c-format
msgid ""
"Your multi-function device was configured automatically to be able to scan. "
@@ -8578,7 +8615,7 @@ msgid ""
"Do not use \"scannerdrake\" for this device!"
msgstr ""
-#: ../../printerdrake.pm_.c:2383
+#: ../../printerdrake.pm_.c:2394
msgid ""
"Your printer was configured automatically to give you access to the photo "
"card drives from your PC. Now you can access your photo cards using the "
@@ -8591,17 +8628,17 @@ msgid ""
"of the file lists."
msgstr ""
-#: ../../printerdrake.pm_.c:2405 ../../printerdrake.pm_.c:2864
-#: ../../printerdrake.pm_.c:3150
+#: ../../printerdrake.pm_.c:2416 ../../printerdrake.pm_.c:2875
+#: ../../printerdrake.pm_.c:3170
msgid "Reading printer data..."
msgstr "Leser skriverdata: ..."
-#: ../../printerdrake.pm_.c:2425 ../../printerdrake.pm_.c:2453
-#: ../../printerdrake.pm_.c:2488
+#: ../../printerdrake.pm_.c:2436 ../../printerdrake.pm_.c:2464
+#: ../../printerdrake.pm_.c:2499
msgid "Transfer printer configuration"
msgstr "Overfűr skriverkonfigurasjon"
-#: ../../printerdrake.pm_.c:2426
+#: ../../printerdrake.pm_.c:2437
#, fuzzy, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -8616,7 +8653,7 @@ msgstr ""
"ikke jobber.\n"
"Ikke alle kűer kan overfűres grunnet:\n"
-#: ../../printerdrake.pm_.c:2429
+#: ../../printerdrake.pm_.c:2440
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
@@ -8624,7 +8661,7 @@ msgstr ""
"CUPS stűtter ikke skrivere pć Novelltjenere eller skrivere som sender "
"dataene inn i en fritt formet kommando.\n"
-#: ../../printerdrake.pm_.c:2431
+#: ../../printerdrake.pm_.c:2442
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
@@ -8632,11 +8669,11 @@ msgstr ""
"PDQ stűtter bare lokale skrivere, fjern-LPD skrivere, og Socket/TCP "
"skrivere.\n"
-#: ../../printerdrake.pm_.c:2433
+#: ../../printerdrake.pm_.c:2444
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr "LPD og LPRng stűtter ikke IPP skrivere.\n"
-#: ../../printerdrake.pm_.c:2435
+#: ../../printerdrake.pm_.c:2446
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
@@ -8644,7 +8681,7 @@ msgstr ""
"I tillegg, kűer laget med dette programmet eller \"foomatic -configure\" kan "
"ikke overflyttes."
-#: ../../printerdrake.pm_.c:2436
+#: ../../printerdrake.pm_.c:2447
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
@@ -8654,7 +8691,7 @@ msgstr ""
"Skrivere konfigurert med PPD filene som produsenten har laget eller med CUPS "
"drivere ikke ikke overflyttes."
-#: ../../printerdrake.pm_.c:2437
+#: ../../printerdrake.pm_.c:2448
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
@@ -8664,15 +8701,15 @@ msgstr ""
"Velg skriverene som du vil overflytte og klikk\n"
"\"Overfűr\"."
-#: ../../printerdrake.pm_.c:2440
+#: ../../printerdrake.pm_.c:2451
msgid "Do not transfer printers"
msgstr "Ikke overfűr skrivere"
-#: ../../printerdrake.pm_.c:2441 ../../printerdrake.pm_.c:2458
+#: ../../printerdrake.pm_.c:2452 ../../printerdrake.pm_.c:2469
msgid "Transfer"
msgstr "Overfűr"
-#: ../../printerdrake.pm_.c:2454
+#: ../../printerdrake.pm_.c:2465
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -8683,11 +8720,11 @@ msgstr ""
"Klikk \"Overfűr\" for ć overskrive.\n"
"Du kan ogsć gi ett nytt skrivernavn, eller hoppe over denne skriveren."
-#: ../../printerdrake.pm_.c:2462
+#: ../../printerdrake.pm_.c:2473
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr "Skrivernavn bűr inneholde kun bokstaver, tall og understrek"
-#: ../../printerdrake.pm_.c:2467
+#: ../../printerdrake.pm_.c:2478
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
@@ -8696,45 +8733,45 @@ msgstr ""
"Skriveren \"%s\" eksisterer allerede,\n"
"űnsker du ć overskrive dens konfigurasjon?"
-#: ../../printerdrake.pm_.c:2475
+#: ../../printerdrake.pm_.c:2486
msgid "New printer name"
msgstr "Nytt skrivernavn"
-#: ../../printerdrake.pm_.c:2478
+#: ../../printerdrake.pm_.c:2489
#, c-format
msgid "Transferring %s..."
msgstr "Overfűrer %s ..."
-#: ../../printerdrake.pm_.c:2489
+#: ../../printerdrake.pm_.c:2500
#, c-format
msgid ""
"You have transferred your former default printer (\"%s\"), Should it be also "
"the default printer under the new printing system %s?"
msgstr ""
-#: ../../printerdrake.pm_.c:2499
+#: ../../printerdrake.pm_.c:2510
msgid "Refreshing printer data..."
msgstr "Frisker opp skriverdata ..."
-#: ../../printerdrake.pm_.c:2507 ../../printerdrake.pm_.c:2579
-#: ../../printerdrake.pm_.c:2591
+#: ../../printerdrake.pm_.c:2518 ../../printerdrake.pm_.c:2590
+#: ../../printerdrake.pm_.c:2602
msgid "Configuration of a remote printer"
msgstr "Konfigurasjon av en fjernskriver"
-#: ../../printerdrake.pm_.c:2508
+#: ../../printerdrake.pm_.c:2519
msgid "Starting network..."
msgstr "Starter nettverk ..."
-#: ../../printerdrake.pm_.c:2543 ../../printerdrake.pm_.c:2547
-#: ../../printerdrake.pm_.c:2549
+#: ../../printerdrake.pm_.c:2554 ../../printerdrake.pm_.c:2558
+#: ../../printerdrake.pm_.c:2560
msgid "Configure the network now"
msgstr "Konfigurer nettverket nć"
-#: ../../printerdrake.pm_.c:2544
+#: ../../printerdrake.pm_.c:2555
msgid "Network functionality not configured"
msgstr "Nettverksfunksjonalitet ikke konfigurert"
-#: ../../printerdrake.pm_.c:2545
+#: ../../printerdrake.pm_.c:2556
msgid ""
"You are going to configure a remote printer. This needs working network "
"access, but your network is not configured yet. If you go on without network "
@@ -8742,11 +8779,11 @@ msgid ""
"configuring now. How do you want to proceed?"
msgstr ""
-#: ../../printerdrake.pm_.c:2548
+#: ../../printerdrake.pm_.c:2559
msgid "Go on without configuring the network"
msgstr "Fortsett uten ć konfigurere nettverket"
-#: ../../printerdrake.pm_.c:2581
+#: ../../printerdrake.pm_.c:2592
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -8756,31 +8793,31 @@ msgid ""
"\"Printer\""
msgstr ""
-#: ../../printerdrake.pm_.c:2582
+#: ../../printerdrake.pm_.c:2593
msgid ""
"The network access was not running and could not be started. Please check "
"your configuration and your hardware. Then try to configure your remote "
"printer again."
msgstr ""
-#: ../../printerdrake.pm_.c:2592
+#: ../../printerdrake.pm_.c:2603
msgid "Restarting printing system..."
msgstr "Starter skriversystemet pć nytt ..."
-#: ../../printerdrake.pm_.c:2630
+#: ../../printerdrake.pm_.c:2641
msgid "high"
msgstr "hűy"
-#: ../../printerdrake.pm_.c:2630
+#: ../../printerdrake.pm_.c:2641
msgid "paranoid"
msgstr "paranoid"
-#: ../../printerdrake.pm_.c:2631
+#: ../../printerdrake.pm_.c:2642
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr "Installerer et utskriftsystem pć %s sikkerhetsnivćet"
-#: ../../printerdrake.pm_.c:2632
+#: ../../printerdrake.pm_.c:2643
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -8795,11 +8832,11 @@ msgid ""
"Do you really want to configure printing on this machine?"
msgstr ""
-#: ../../printerdrake.pm_.c:2664
+#: ../../printerdrake.pm_.c:2675
msgid "Starting the printing system at boot time"
msgstr "Starter utskriftsystemet ved oppstart"
-#: ../../printerdrake.pm_.c:2665
+#: ../../printerdrake.pm_.c:2676
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -8813,60 +8850,60 @@ msgid ""
"again?"
msgstr ""
-#: ../../printerdrake.pm_.c:2689 ../../printerdrake.pm_.c:2730
-#: ../../printerdrake.pm_.c:2769 ../../printerdrake.pm_.c:2811
-#: ../../printerdrake.pm_.c:2932
+#: ../../printerdrake.pm_.c:2700 ../../printerdrake.pm_.c:2741
+#: ../../printerdrake.pm_.c:2780 ../../printerdrake.pm_.c:2822
+#: ../../printerdrake.pm_.c:2943
msgid "Checking installed software..."
msgstr "Sjekker installert programvare..."
-#: ../../printerdrake.pm_.c:2735
+#: ../../printerdrake.pm_.c:2746
msgid "Removing LPRng..."
msgstr "Fjerner LPRng..."
-#: ../../printerdrake.pm_.c:2774
+#: ../../printerdrake.pm_.c:2785
msgid "Removing LPD..."
msgstr "Fjerner LPD..."
-#: ../../printerdrake.pm_.c:2847
+#: ../../printerdrake.pm_.c:2858
msgid "Select Printer Spooler"
msgstr "Velg skrivertkűbehandler"
-#: ../../printerdrake.pm_.c:2848
+#: ../../printerdrake.pm_.c:2859
msgid "Which printing system (spooler) do you want to use?"
msgstr "Hvilket utskriftsystem (spooler) űnsker du ć bruke?"
-#: ../../printerdrake.pm_.c:2884
+#: ../../printerdrake.pm_.c:2895
#, fuzzy, c-format
msgid "Configuring printer \"%s\"..."
msgstr "Konfigurerer skriver \"%s\" ..."
-#: ../../printerdrake.pm_.c:2898
+#: ../../printerdrake.pm_.c:2909
msgid "Installing Foomatic..."
msgstr "Installerer Foomatic ..."
-#: ../../printerdrake.pm_.c:2968 ../../printerdrake.pm_.c:3009
-#: ../../printerdrake.pm_.c:3397 ../../printerdrake.pm_.c:3470
+#: ../../printerdrake.pm_.c:2979 ../../printerdrake.pm_.c:3020
+#: ../../printerdrake.pm_.c:3417 ../../printerdrake.pm_.c:3490
msgid "Printer options"
msgstr "Opsjoner for skriver"
-#: ../../printerdrake.pm_.c:2978
+#: ../../printerdrake.pm_.c:2989
#, fuzzy
msgid "Preparing Printerdrake..."
msgstr "Klargjűrer PrinterDrake ..."
-#: ../../printerdrake.pm_.c:2996 ../../printerdrake.pm_.c:3560
+#: ../../printerdrake.pm_.c:3007 ../../printerdrake.pm_.c:3580
msgid "Configuring applications..."
msgstr "Konfigurerer applikasjoner..."
-#: ../../printerdrake.pm_.c:3016
+#: ../../printerdrake.pm_.c:3027
msgid "Would you like to configure printing?"
msgstr "Űnsker du ć konfigurere en skriver?"
-#: ../../printerdrake.pm_.c:3028
+#: ../../printerdrake.pm_.c:3039
msgid "Printing system: "
msgstr "Utskriftssystem: "
-#: ../../printerdrake.pm_.c:3080
+#: ../../printerdrake.pm_.c:3099
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
@@ -8877,7 +8914,7 @@ msgstr ""
"Her er fűlgende skriverkű.\n"
"Du kan legge til flere eller endre de eksisterende."
-#: ../../printerdrake.pm_.c:3081
+#: ../../printerdrake.pm_.c:3100
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
@@ -8887,28 +8924,28 @@ msgstr ""
"Her er fűlgende skriverkű.\n"
"Du kan legge til flere eller endre de eksisterende."
-#: ../../printerdrake.pm_.c:3107
+#: ../../printerdrake.pm_.c:3127
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr "Frisker opp skriverliste (for ć vise alle tilgjengelige CUPS skrivere)"
-#: ../../printerdrake.pm_.c:3125
+#: ../../printerdrake.pm_.c:3145
msgid "Change the printing system"
msgstr "Endrer utskriftssystemet"
-#: ../../printerdrake.pm_.c:3130 ../../standalone/drakconnect_.c:277
+#: ../../printerdrake.pm_.c:3150 ../../standalone/drakconnect_.c:277
msgid "Normal Mode"
msgstr "Normalt modus"
-#: ../../printerdrake.pm_.c:3290 ../../printerdrake.pm_.c:3340
-#: ../../printerdrake.pm_.c:3553
+#: ../../printerdrake.pm_.c:3310 ../../printerdrake.pm_.c:3360
+#: ../../printerdrake.pm_.c:3573
msgid "Do you want to configure another printer?"
msgstr "Űnsker du ć konfigurere enda en skriver?"
-#: ../../printerdrake.pm_.c:3375
+#: ../../printerdrake.pm_.c:3395
msgid "Modify printer configuration"
msgstr "Modifiser skriverkonfigurasjon"
-#: ../../printerdrake.pm_.c:3377
+#: ../../printerdrake.pm_.c:3397
#, c-format
msgid ""
"Printer %s\n"
@@ -8917,103 +8954,103 @@ msgstr ""
"Skriver %s\n"
"Hva űnsker du ć forandre pć denne skriveren?"
-#: ../../printerdrake.pm_.c:3381
+#: ../../printerdrake.pm_.c:3401
msgid "Do it!"
msgstr "Gjűr det!"
-#: ../../printerdrake.pm_.c:3386 ../../printerdrake.pm_.c:3441
+#: ../../printerdrake.pm_.c:3406 ../../printerdrake.pm_.c:3461
msgid "Printer connection type"
msgstr "Skrivertilkoblingstype"
-#: ../../printerdrake.pm_.c:3387 ../../printerdrake.pm_.c:3445
+#: ../../printerdrake.pm_.c:3407 ../../printerdrake.pm_.c:3465
msgid "Printer name, description, location"
msgstr "Skrivernavn, beskrivelse, sted"
-#: ../../printerdrake.pm_.c:3389 ../../printerdrake.pm_.c:3463
+#: ../../printerdrake.pm_.c:3409 ../../printerdrake.pm_.c:3483
msgid "Printer manufacturer, model, driver"
msgstr "Skriverprodusent, modell, driver"
-#: ../../printerdrake.pm_.c:3390 ../../printerdrake.pm_.c:3464
+#: ../../printerdrake.pm_.c:3410 ../../printerdrake.pm_.c:3484
msgid "Printer manufacturer, model"
msgstr "Skriverprodusent, modell"
-#: ../../printerdrake.pm_.c:3399 ../../printerdrake.pm_.c:3474
+#: ../../printerdrake.pm_.c:3419 ../../printerdrake.pm_.c:3494
msgid "Set this printer as the default"
msgstr "Sett denne skriveren som standard"
-#: ../../printerdrake.pm_.c:3401 ../../printerdrake.pm_.c:3479
+#: ../../printerdrake.pm_.c:3421 ../../printerdrake.pm_.c:3499
msgid "Add this printer to Star Office/OpenOffice.org/GIMP"
msgstr "Legg denne skriveren til Star Office/OpenOffice.org/GIMP"
-#: ../../printerdrake.pm_.c:3402 ../../printerdrake.pm_.c:3488
+#: ../../printerdrake.pm_.c:3422 ../../printerdrake.pm_.c:3508
msgid "Remove this printer from Star Office/OpenOffice.org/GIMP"
msgstr "Fjern denne skriveren fra Star Office/OpenOffice.org/GIMP"
-#: ../../printerdrake.pm_.c:3403 ../../printerdrake.pm_.c:3497
+#: ../../printerdrake.pm_.c:3423 ../../printerdrake.pm_.c:3517
msgid "Print test pages"
msgstr "Skriver ut testsider"
-#: ../../printerdrake.pm_.c:3404 ../../printerdrake.pm_.c:3499
+#: ../../printerdrake.pm_.c:3424 ../../printerdrake.pm_.c:3519
msgid "Know how to use this printer"
msgstr "Vet hvordan man skal bruke denne skriveren"
-#: ../../printerdrake.pm_.c:3406 ../../printerdrake.pm_.c:3501
+#: ../../printerdrake.pm_.c:3426 ../../printerdrake.pm_.c:3521
msgid "Remove printer"
msgstr "Fjern skriver"
-#: ../../printerdrake.pm_.c:3452
+#: ../../printerdrake.pm_.c:3472
#, fuzzy, c-format
msgid "Removing old printer \"%s\"..."
msgstr "Fjerner gammel skriver \"%s\" ..."
-#: ../../printerdrake.pm_.c:3477
+#: ../../printerdrake.pm_.c:3497
msgid "Default printer"
msgstr "Standardskriver"
-#: ../../printerdrake.pm_.c:3478
+#: ../../printerdrake.pm_.c:3498
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr "Skriveren \"%s\" er nć satt til standard skriver."
-#: ../../printerdrake.pm_.c:3482 ../../printerdrake.pm_.c:3485
+#: ../../printerdrake.pm_.c:3502 ../../printerdrake.pm_.c:3505
msgid "Adding printer to Star Office/OpenOffice.org/GIMP"
msgstr "Legger skriver til Star Office/OpenOffice.org/GIMP"
-#: ../../printerdrake.pm_.c:3483
+#: ../../printerdrake.pm_.c:3503
#, c-format
msgid ""
"The printer \"%s\" was successfully added to Star Office/OpenOffice.org/GIMP."
msgstr ""
"Skriveren \"%s\" ble vellykket lagt til Star Office/OpenOffice.org/GIMP."
-#: ../../printerdrake.pm_.c:3486
+#: ../../printerdrake.pm_.c:3506
#, c-format
msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org/GIMP."
msgstr ""
-#: ../../printerdrake.pm_.c:3491 ../../printerdrake.pm_.c:3494
+#: ../../printerdrake.pm_.c:3511 ../../printerdrake.pm_.c:3514
msgid "Removing printer from Star Office/OpenOffice.org/GIMP"
msgstr ""
-#: ../../printerdrake.pm_.c:3492
+#: ../../printerdrake.pm_.c:3512
#, c-format
msgid ""
"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org/"
"GIMP."
msgstr ""
-#: ../../printerdrake.pm_.c:3495
+#: ../../printerdrake.pm_.c:3515
#, c-format
msgid ""
"Failed to remove the printer \"%s\" from Star Office/OpenOffice.org/GIMP."
msgstr ""
-#: ../../printerdrake.pm_.c:3503
+#: ../../printerdrake.pm_.c:3523
#, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr "Űnsker du virkelig ć fjerne skriveren \"%s\"?"
-#: ../../printerdrake.pm_.c:3507
+#: ../../printerdrake.pm_.c:3527
#, fuzzy, c-format
msgid "Removing printer \"%s\"..."
msgstr "Fjerner skriver \"%s\" ..."
@@ -9485,19 +9522,19 @@ msgid "Thank you for choosing Mandrake Linux 9.0"
msgstr "Takk for at du valgte Mandrake Linux 9.0"
#: ../../share/advertising/01-thanks.pl_.c:10
-msgid "Welcome to the Open Source world."
+msgid "Welcome to the Open Source world"
msgstr "Velkommen til ćpen kilde verdenen"
#: ../../share/advertising/01-thanks.pl_.c:11
msgid ""
"The success of MandrakeSoft is based upon the principle of Free Software. "
"Your new operating system is the result of collaborative work on the part of "
-"the worldwide Linux Community."
+"the worldwide Linux Community"
msgstr ""
#: ../../share/advertising/02-community.pl_.c:9
#, fuzzy
-msgid "Get involved in the Free Software world."
+msgid "Get involved in the Free Software world"
msgstr "Protokoll for resten av verden"
#: ../../share/advertising/02-community.pl_.c:10
@@ -9507,7 +9544,7 @@ msgstr ""
#: ../../share/advertising/02-community.pl_.c:11
msgid ""
"To share your own knowledge and help build Linux tools, join the discussions "
-"forum you'll find on our \"Community\" webpages."
+"forum you'll find on our \"Community\" webpages"
msgstr ""
#: ../../share/advertising/03-internet.pl_.c:9
@@ -9519,7 +9556,7 @@ msgstr "Koble opp mot Internett"
msgid ""
"Mandrake Linux 9.0 has selected the best software for you. Surf the Web and "
"view animations with Mozilla and Konqueror, or read your mail and handle "
-"your personal information with Evolution and Kmail."
+"your personal information with Evolution and Kmail"
msgstr ""
#: ../../share/advertising/04-multimedia.pl_.c:9
@@ -9533,7 +9570,7 @@ msgstr ""
#: ../../share/advertising/04-multimedia.pl_.c:11
msgid ""
"Mandrake Linux 9.0 enables you to use the very latest software to play audio "
-"files, edit and handle your images or photos, and play videos."
+"files, edit and handle your images or photos, and play videos"
msgstr ""
#: ../../share/advertising/05-games.pl_.c:9
@@ -9553,7 +9590,7 @@ msgstr "Mandrake kontrollpanel"
#: ../../share/advertising/06-mcc.pl_.c:10
msgid ""
"Mandrake Linux 9.0 provides a powerful tool to fully customize and configure "
-"your machine."
+"your machine"
msgstr ""
#: ../../share/advertising/07-desktop.pl_.c:9
@@ -9572,17 +9609,17 @@ msgid "Development simplified"
msgstr "Utvikling"
#: ../../share/advertising/08-development.pl_.c:10
-msgid "Mandrake Linux 9.0 is the ultimate development platform."
+msgid "Mandrake Linux 9.0 is the ultimate development platform"
msgstr ""
#: ../../share/advertising/08-development.pl_.c:11
msgid ""
"Use the full power of the GNU gcc 3 compiler as well as the best Open Source "
-"development environments."
+"development environments"
msgstr ""
#: ../../share/advertising/09-server.pl_.c:9
-msgid "Turn your machine into a reliable server."
+msgid "Turn your machine into a reliable server"
msgstr ""
#: ../../share/advertising/09-server.pl_.c:10
@@ -9598,7 +9635,7 @@ msgstr ""
#: ../../share/advertising/10-mnf.pl_.c:10
msgid ""
"The MandrakeSecurity range includes the Multi Network Firewall product (M.N."
-"F.)."
+"F.)"
msgstr ""
#: ../../share/advertising/10-mnf.pl_.c:11
@@ -9618,7 +9655,7 @@ msgstr ""
#: ../../share/advertising/11-mdkstore.pl_.c:10
msgid ""
"Our full range of Linux solutions, as well as special offers on products and "
-"'goodies', are available online at our e-store."
+"'goodies', are available online at our e-store"
msgstr ""
#: ../../share/advertising/12-mdkstore.pl_.c:9
@@ -9629,7 +9666,7 @@ msgstr ""
msgid ""
"MandrakeSoft works alongside a selection of companies offering professional "
"solutions compatible with Mandrake Linux; a list of these partners is "
-"available on the MandrakeStore."
+"available on the MandrakeStore"
msgstr ""
#: ../../share/advertising/13-mdkcampus.pl_.c:9
@@ -9643,14 +9680,14 @@ msgid ""
msgstr ""
#: ../../share/advertising/13-mdkcampus.pl_.c:11
-msgid "Certify yourself on Linux."
+msgid "Certify yourself on Linux"
msgstr ""
#: ../../share/advertising/13-mdkcampus.pl_.c:12
msgid ""
"Whether you choose to teach yourself online or via our network of training "
"partners, the Linux-Campus catalogue prepares you for the acknowledged LPI "
-"certification program (worldwide professional technical certification)."
+"certification program (worldwide professional technical certification)"
msgstr ""
#: ../../share/advertising/14-mdkexpert.pl_.c:9
@@ -9661,14 +9698,14 @@ msgstr "MandrakeExpert"
#: ../../share/advertising/14-mdkexpert.pl_.c:10
msgid ""
"Find the solutions to your problems via MandrakeSoft's online support "
-"platform."
+"platform"
msgstr ""
#: ../../share/advertising/14-mdkexpert.pl_.c:11
msgid ""
"Join the MandrakeSoft support teams and the Linux Community online to share "
-"your knowledge and help others by becoming a recognized Expert on the "
-"online technical support website:"
+"your knowledge and help others by becoming a recognized Expert on the online "
+"technical support website:"
msgstr ""
#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:9
@@ -9677,7 +9714,7 @@ msgid "MandrakeExpert Corporate"
msgstr "MandrakeExpert"
#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:10
-msgid "An online platform to respond to company's specific support needs."
+msgid "An online platform to respond to company's specific support needs"
msgstr ""
#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:11
@@ -11314,9 +11351,9 @@ msgstr ""
msgid "Synchronization tool"
msgstr ""
-#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:85
-#: ../../standalone/drakbug_.c:150 ../../standalone/drakbug_.c:152
-#: ../../standalone/drakbug_.c:156
+#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:86
+#: ../../standalone/drakbug_.c:151 ../../standalone/drakbug_.c:153
+#: ../../standalone/drakbug_.c:157
#, fuzzy
msgid "Standalone Tools"
msgstr "Konsollverktűy"
@@ -11368,26 +11405,26 @@ msgstr "Printerdrake"
msgid "Configuration Wizards"
msgstr "Nettverkskonfigurasjonveiviser"
-#: ../../standalone/drakbug_.c:96
+#: ../../standalone/drakbug_.c:97
#, fuzzy
msgid "Application:"
msgstr "Autentifikasjon"
-#: ../../standalone/drakbug_.c:97
+#: ../../standalone/drakbug_.c:98
#, fuzzy
msgid "Package: "
msgstr "Pakkevalg"
-#: ../../standalone/drakbug_.c:98
+#: ../../standalone/drakbug_.c:99
msgid "Kernel:"
msgstr ""
-#: ../../standalone/drakbug_.c:99
+#: ../../standalone/drakbug_.c:100
#, fuzzy
msgid "Release: "
msgstr "Vennligst vent"
-#: ../../standalone/drakbug_.c:114
+#: ../../standalone/drakbug_.c:115
msgid ""
"\n"
"\n"
@@ -11399,21 +11436,21 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbug_.c:135
+#: ../../standalone/drakbug_.c:136
#, fuzzy
msgid "Report"
msgstr "port"
-#: ../../standalone/drakbug_.c:165
+#: ../../standalone/drakbug_.c:166
#, fuzzy
msgid "Not installed"
msgstr "Avslutt installering"
-#: ../../standalone/drakbug_.c:182
+#: ../../standalone/drakbug_.c:183
msgid "connecting to Bugzilla wizard ..."
msgstr ""
-#: ../../standalone/drakbug_.c:189
+#: ../../standalone/drakbug_.c:190
#, fuzzy
msgid "No browser available! Please install one"
msgstr "Skjermbilder vil være tilgjengelig etter installasjon i %s"
@@ -12897,7 +12934,7 @@ msgstr "Installer systemet"
msgid "Exit install"
msgstr "Avslutt installering"
-#: ../../ugtk.pm_.c:595
+#: ../../ugtk.pm_.c:594
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
diff --git a/perl-install/share/po/pt.po b/perl-install/share/po/pt.po
index b3387d980..e82617243 100644
--- a/perl-install/share/po/pt.po
+++ b/perl-install/share/po/pt.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX\n"
-"POT-Creation-Date: 2002-08-21 15:44+0200\n"
+"POT-Creation-Date: 2002-09-02 20:14+0200\n"
"PO-Revision-Date: 2002-08-20 15:15+0200\n"
"Last-Translator: José JORGE <jose.jorge@oreka.com>\n"
"Language-Team: Português\n"
@@ -50,19 +50,19 @@ msgstr "32 MB"
msgid "64 MB or more"
msgstr "64 MB ou mais"
-#: ../../Xconfig/card.pm_.c:201
+#: ../../Xconfig/card.pm_.c:203
msgid "Choose a X server"
msgstr "Escolha um servidor X"
-#: ../../Xconfig/card.pm_.c:201
+#: ../../Xconfig/card.pm_.c:203
msgid "X server"
msgstr "servidor X"
-#: ../../Xconfig/card.pm_.c:228
+#: ../../Xconfig/card.pm_.c:230
msgid "Multi-head configuration"
msgstr "Configuraçăo Multi-Cabeça"
-#: ../../Xconfig/card.pm_.c:229
+#: ../../Xconfig/card.pm_.c:231
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
@@ -70,27 +70,27 @@ msgstr ""
"O seu sistema suporta configuraçăo multi-cabeça.\n"
"O que deseja afazer?"
-#: ../../Xconfig/card.pm_.c:284
+#: ../../Xconfig/card.pm_.c:286
msgid "Select the memory size of your graphics card"
msgstr "Seleccione o tamanho da memória da sua placa gráfica"
-#: ../../Xconfig/card.pm_.c:345
+#: ../../Xconfig/card.pm_.c:347
msgid "XFree configuration"
msgstr "Configuraçăo do XFree"
-#: ../../Xconfig/card.pm_.c:347
+#: ../../Xconfig/card.pm_.c:349
msgid "Which configuration of XFree do you want to have?"
msgstr "Qual a configuraçăo do Servidor X que deseja ter?"
-#: ../../Xconfig/card.pm_.c:379
+#: ../../Xconfig/card.pm_.c:381
msgid "Configure all heads independently"
msgstr "Configurar todas as cabeças independentemente"
-#: ../../Xconfig/card.pm_.c:380
+#: ../../Xconfig/card.pm_.c:382
msgid "Use Xinerama extension"
msgstr "Usar extensăo Xinerama"
-#: ../../Xconfig/card.pm_.c:384
+#: ../../Xconfig/card.pm_.c:386
#, c-format
msgid "Configure only card \"%s\"%s"
msgstr "Configurar somente placa \"%s\"%s"
@@ -101,13 +101,13 @@ msgstr "Configurar somente placa \"%s\"%s"
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:435
+#: ../../Xconfig/card.pm_.c:410 ../../Xconfig/card.pm_.c:436
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s with 3D hardware acceleration"
msgstr "XFree %s com aceleraçăo 3D por hardware"
-#: ../../Xconfig/card.pm_.c:412
+#: ../../Xconfig/card.pm_.c:413
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -117,18 +117,18 @@ msgstr ""
"XFree%s.\n"
"A sua placa é suportada pelo XFree %s que pode ter um melhor suporte para 2D."
-#: ../../Xconfig/card.pm_.c:414 ../../Xconfig/card.pm_.c:437
+#: ../../Xconfig/card.pm_.c:415 ../../Xconfig/card.pm_.c:438
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr ""
"A sua placa pode ter suporte para aceleraçăo 3D por hardware com o XFree%s."
-#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:443
+#: ../../Xconfig/card.pm_.c:423 ../../Xconfig/card.pm_.c:444
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s com aceleraçăo 3D por hardware EXPERIMENTAL"
-#: ../../Xconfig/card.pm_.c:425
+#: ../../Xconfig/card.pm_.c:426
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -139,7 +139,7 @@ msgstr ""
"ATENÇĂO ESTE SUPORTE É EXPERIMENTAL E PODE CONGELAR O SEU COMPUTADOR.A sua "
"placa é suportada pelo XFree %s que pode ter um melhor suporte para 2D."
-#: ../../Xconfig/card.pm_.c:428 ../../Xconfig/card.pm_.c:445
+#: ../../Xconfig/card.pm_.c:429 ../../Xconfig/card.pm_.c:446
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
@@ -148,52 +148,53 @@ msgstr ""
"A sua placa pode ter suporte para aceleraçăo 3D por hardware com o XFree%s,\n"
"ATENÇĂO ESTE SUPORTE É EXPERIMENTAL E PODE CONGELAR O SEU COMPUTADOR."
-#: ../../Xconfig/card.pm_.c:451
+#: ../../Xconfig/card.pm_.c:452
msgid "Xpmac (installation display driver)"
msgstr "Xpmac (instalaçăo do gestor da placa)"
-#: ../../Xconfig/main.pm_.c:78 ../../Xconfig/main.pm_.c:79
-#: ../../Xconfig/monitor.pm_.c:94 ../../any.pm_.c:974
+#: ../../Xconfig/main.pm_.c:76 ../../Xconfig/main.pm_.c:77
+#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:977
msgid "Custom"
msgstr "Personalizado"
-#: ../../Xconfig/main.pm_.c:104
+#: ../../Xconfig/main.pm_.c:102
msgid "Graphic Card"
msgstr "Placa Gráfica"
-#: ../../Xconfig/main.pm_.c:107 ../../Xconfig/monitor.pm_.c:91
+#: ../../Xconfig/main.pm_.c:105 ../../Xconfig/monitor.pm_.c:93
msgid "Monitor"
msgstr "Monitor"
-#: ../../Xconfig/main.pm_.c:110 ../../Xconfig/resolution_and_depth.pm_.c:209
+#: ../../Xconfig/main.pm_.c:108 ../../Xconfig/resolution_and_depth.pm_.c:209
msgid "Resolution"
msgstr "Resoluçăo"
-#: ../../Xconfig/main.pm_.c:114
+#: ../../Xconfig/main.pm_.c:113
msgid "Test"
msgstr "Testar"
-#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:59
-#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/removable.pm_.c:25
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:63
+#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/removable.pm_.c:25
#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "Opçőes"
#: ../../Xconfig/main.pm_.c:121 ../../Xconfig/resolution_and_depth.pm_.c:268
-#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:281
+#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:275
#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
-#: ../../interactive.pm_.c:351 ../../interactive/http.pm_.c:104
+#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:104
#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
-#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:156
-#: ../../my_gtk.pm_.c:284 ../../my_gtk.pm_.c:307
-#: ../../standalone/drakbackup_.c:3324 ../../standalone/drakbackup_.c:3419
-#: ../../standalone/drakbackup_.c:3438
+#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:159
+#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310
+#: ../../standalone/drakbackup_.c:3972 ../../standalone/drakbackup_.c:4067
+#: ../../standalone/drakbackup_.c:4086
msgid "Ok"
msgstr "OK"
#: ../../Xconfig/main.pm_.c:121 ../../diskdrake/dav.pm_.c:24
-#: ../../printerdrake.pm_.c:2933 ../../standalone/logdrake_.c:224
+#: ../../harddrake/ui.pm_.c:98 ../../printerdrake.pm_.c:3155
+#: ../../standalone/logdrake_.c:224
msgid "Quit"
msgstr "Sair"
@@ -210,27 +211,27 @@ msgstr ""
"\n"
"%s"
-#: ../../Xconfig/monitor.pm_.c:91
+#: ../../Xconfig/monitor.pm_.c:93
msgid "Choose a monitor"
msgstr "Escolha um monitor"
-#: ../../Xconfig/monitor.pm_.c:95
+#: ../../Xconfig/monitor.pm_.c:97
msgid "Plug'n Play"
msgstr "Plug'n Play"
-#: ../../Xconfig/monitor.pm_.c:96 ../../mouse.pm_.c:45
+#: ../../Xconfig/monitor.pm_.c:98 ../../mouse.pm_.c:46
msgid "Generic"
msgstr "Genérico"
-#: ../../Xconfig/monitor.pm_.c:97 ../../harddrake/ui.pm_.c:36
+#: ../../Xconfig/monitor.pm_.c:99 ../../harddrake/ui.pm_.c:37
msgid "Vendor"
msgstr "Marca"
-#: ../../Xconfig/monitor.pm_.c:107
+#: ../../Xconfig/monitor.pm_.c:109
msgid "Plug'n Play probing failed. Please choose a precise monitor"
msgstr ""
-#: ../../Xconfig/monitor.pm_.c:112
+#: ../../Xconfig/monitor.pm_.c:114
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -252,11 +253,11 @@ msgstr ""
"para além das capacidades do seu monitor: pode danificar seu monitor.\n"
" Se tiver dúvidas, escolha definiçőes conservadoras."
-#: ../../Xconfig/monitor.pm_.c:119
+#: ../../Xconfig/monitor.pm_.c:121
msgid "Horizontal refresh rate"
msgstr "Taxa de refrescamento horizontal"
-#: ../../Xconfig/monitor.pm_.c:120
+#: ../../Xconfig/monitor.pm_.c:122
msgid "Vertical refresh rate"
msgstr "Taxa de refrescamento vertical"
@@ -293,36 +294,41 @@ msgstr "Escolha a resoluçăo e a profundidade de cor"
msgid "Graphics card: %s"
msgstr "Placa Gráfica: %s"
-#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1015
-#: ../../bootlook.pm_.c:334 ../../diskdrake/smbnfs_gtk.pm_.c:87
-#: ../../install_steps_gtk.pm_.c:412 ../../install_steps_gtk.pm_.c:470
-#: ../../install_steps_interactive.pm_.c:576 ../../interactive.pm_.c:142
-#: ../../interactive.pm_.c:351 ../../interactive/http.pm_.c:105
+#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1018
+#: ../../bootlook.pm_.c:338 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:406 ../../install_steps_gtk.pm_.c:464
+#: ../../install_steps_interactive.pm_.c:560 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:105
#: ../../interactive/newt.pm_.c:174 ../../interactive/stdio.pm_.c:39
-#: ../../interactive/stdio.pm_.c:143 ../../my_gtk.pm_.c:155
-#: ../../my_gtk.pm_.c:159 ../../my_gtk.pm_.c:284
-#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1990
-#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3278
-#: ../../standalone/drakbackup_.c:3311 ../../standalone/drakbackup_.c:3337
-#: ../../standalone/drakbackup_.c:3364 ../../standalone/drakbackup_.c:3391
-#: ../../standalone/drakbackup_.c:3451 ../../standalone/drakbackup_.c:3478
-#: ../../standalone/drakbackup_.c:3504 ../../standalone/drakconnect_.c:115
-#: ../../standalone/drakconnect_.c:147 ../../standalone/drakconnect_.c:289
-#: ../../standalone/drakconnect_.c:537 ../../standalone/drakconnect_.c:679
-#: ../../standalone/drakfloppy_.c:234 ../../standalone/drakfloppy_.c:383
-#: ../../standalone/drakfont_.c:970 ../../standalone/drakgw_.c:598
-#: ../../standalone/logdrake_.c:224 ../../standalone/logdrake_.c:528
-#: ../../standalone/tinyfirewall_.c:64
+#: ../../interactive/stdio.pm_.c:143 ../../my_gtk.pm_.c:158
+#: ../../my_gtk.pm_.c:162 ../../my_gtk.pm_.c:287
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:2124
+#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3926
+#: ../../standalone/drakbackup_.c:3959 ../../standalone/drakbackup_.c:3985
+#: ../../standalone/drakbackup_.c:4012 ../../standalone/drakbackup_.c:4039
+#: ../../standalone/drakbackup_.c:4099 ../../standalone/drakbackup_.c:4126
+#: ../../standalone/drakbackup_.c:4156 ../../standalone/drakbackup_.c:4182
+#: ../../standalone/drakconnect_.c:115 ../../standalone/drakconnect_.c:147
+#: ../../standalone/drakconnect_.c:289 ../../standalone/drakconnect_.c:537
+#: ../../standalone/drakconnect_.c:679 ../../standalone/drakfloppy_.c:234
+#: ../../standalone/drakfloppy_.c:383 ../../standalone/drakfont_.c:970
+#: ../../standalone/drakgw_.c:536 ../../standalone/logdrake_.c:224
+#: ../../standalone/logdrake_.c:526
msgid "Cancel"
msgstr "Cancelar"
-#: ../../Xconfig/test.pm_.c:26
+#: ../../Xconfig/test.pm_.c:30
+msgid "Test of the configuration"
+msgstr "Teste da configuraçăo"
+
+#: ../../Xconfig/test.pm_.c:31
msgid "Do you want to test the configuration?"
msgstr "Quer testar a configuraçăo?"
-#: ../../Xconfig/test.pm_.c:26
-msgid "Test of the configuration"
-msgstr "Teste da configuraçăo"
+#: ../../Xconfig/test.pm_.c:31
+#, fuzzy
+msgid "Warning: testing this graphic card may freeze your computer"
+msgstr "Aviso: o teste desta placa gráfica pode congelar o seu computador"
#: ../../Xconfig/various.pm_.c:29
#, c-format
@@ -466,26 +472,22 @@ msgstr "Arrancar do DOS/Windows (loadlin)"
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:158 ../../any.pm_.c:190
+#: ../../any.pm_.c:159 ../../any.pm_.c:190
msgid "Bootloader main options"
msgstr "Principais opçőes do carregador de arranque"
-#: ../../any.pm_.c:159 ../../any.pm_.c:191
+#: ../../any.pm_.c:160 ../../any.pm_.c:191
msgid "Bootloader to use"
msgstr "Carregador de arranque deve usar"
-#: ../../any.pm_.c:161
+#: ../../any.pm_.c:162
msgid "Bootloader installation"
msgstr "Instalaçăo do carregador de arranque"
-#: ../../any.pm_.c:163 ../../any.pm_.c:193
+#: ../../any.pm_.c:164 ../../any.pm_.c:193
msgid "Boot device"
msgstr "Dispositivo de arranque"
-#: ../../any.pm_.c:164
-msgid "LBA (doesn't work on old BIOSes)"
-msgstr "LBA (năo funciona com BIOS antigas)"
-
#: ../../any.pm_.c:165
msgid "Compact"
msgstr "Compacto"
@@ -502,16 +504,17 @@ msgstr "Modo de Vídeo"
msgid "Delay before booting default image"
msgstr "Tempo de espera antes de arrancar na imagem padrăo"
-#: ../../any.pm_.c:170 ../../any.pm_.c:786
+#: ../../any.pm_.c:170 ../../any.pm_.c:788
#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1111 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:743 ../../printerdrake.pm_.c:858
-#: ../../standalone/drakconnect_.c:624 ../../standalone/drakconnect_.c:649
+#: ../../install_steps_interactive.pm_.c:1096 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:850 ../../printerdrake.pm_.c:965
+#: ../../standalone/drakbackup_.c:3528 ../../standalone/drakconnect_.c:624
+#: ../../standalone/drakconnect_.c:649
msgid "Password"
msgstr "Senha"
-#: ../../any.pm_.c:171 ../../any.pm_.c:787
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../any.pm_.c:171 ../../any.pm_.c:789
+#: ../../install_steps_interactive.pm_.c:1097
msgid "Password (again)"
msgstr "Senha (de novo)"
@@ -545,14 +548,14 @@ msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr "Opçăo ``Restringir opçőes da linha de comando'' năo tem uso sem senha"
-#: ../../any.pm_.c:184 ../../any.pm_.c:762
-#: ../../diskdrake/interactive.pm_.c:1180
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../any.pm_.c:184 ../../any.pm_.c:764
+#: ../../diskdrake/interactive.pm_.c:1191
+#: ../../install_steps_interactive.pm_.c:1091
msgid "Please try again"
msgstr "Por favor tente novamente"
-#: ../../any.pm_.c:184 ../../any.pm_.c:762
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../any.pm_.c:184 ../../any.pm_.c:764
+#: ../../install_steps_interactive.pm_.c:1091
msgid "The passwords do not match"
msgstr "As senhas năo coincidem"
@@ -602,16 +605,16 @@ msgstr ""
"Aqui estăo a diferentes entradas.\n"
"Pode adicionar mais ou alterar as existentes"
-#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1483
-#: ../../standalone/drakbackup_.c:1596 ../../standalone/drakfont_.c:1011
+#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1558
+#: ../../standalone/drakbackup_.c:1671 ../../standalone/drakfont_.c:1011
#: ../../standalone/drakfont_.c:1054
msgid "Add"
msgstr "Adicionar"
-#: ../../any.pm_.c:257 ../../any.pm_.c:774 ../../diskdrake/dav.pm_.c:60
+#: ../../any.pm_.c:257 ../../any.pm_.c:776 ../../diskdrake/dav.pm_.c:64
#: ../../diskdrake/hd_gtk.pm_.c:153 ../../diskdrake/removable.pm_.c:27
#: ../../diskdrake/smbnfs_gtk.pm_.c:88 ../../interactive/http.pm_.c:153
-#: ../../standalone/drakbackup_.c:2696
+#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2772
msgid "Done"
msgstr "Feito"
@@ -623,7 +626,7 @@ msgstr "Modificar"
msgid "Which type of entry do you want to add?"
msgstr "Qual tipo de entrada que quer adicionar?"
-#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1630
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1705
msgid "Linux"
msgstr "Linux"
@@ -717,13 +720,13 @@ msgstr "Tem algum outro?"
msgid "Do you have any %s interfaces?"
msgstr "Tem algum interface %s?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:821 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:283
+#: ../../any.pm_.c:660 ../../any.pm_.c:823 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:286
msgid "No"
msgstr "Năo"
-#: ../../any.pm_.c:660 ../../any.pm_.c:820 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:283
+#: ../../any.pm_.c:660 ../../any.pm_.c:822 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:286
msgid "Yes"
msgstr "Sim"
@@ -823,38 +826,48 @@ msgstr "permitir \"su\""
msgid "access to administrative files"
msgstr "aceder aos ficheiros de administraçăo"
-#: ../../any.pm_.c:758
+#: ../../any.pm_.c:754
+#, fuzzy
+msgid "access to network tools"
+msgstr "aceder às ferramentas rpm"
+
+#: ../../any.pm_.c:755
+#, fuzzy
+msgid "access to compilation tools"
+msgstr "aceder às ferramentas rpm"
+
+#: ../../any.pm_.c:760
#, c-format
msgid "(already added %s)"
msgstr "(já adicionado %s)"
-#: ../../any.pm_.c:763
+#: ../../any.pm_.c:765
msgid "This password is too simple"
msgstr "Essa senha é demasiado simples"
-#: ../../any.pm_.c:764
+#: ../../any.pm_.c:766
msgid "Please give a user name"
msgstr "Por favor indique um nome de utilizador"
-#: ../../any.pm_.c:765
+#: ../../any.pm_.c:767
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
"O nome de utilizador deve conter apenas letras minúsculas, números, `-' e `_'"
-#: ../../any.pm_.c:766
+#: ../../any.pm_.c:768
msgid "The user name is too long"
msgstr "O nome de utilizador é demasiado comprido"
-#: ../../any.pm_.c:767
+#: ../../any.pm_.c:769
msgid "This user name is already added"
msgstr "Este nome de utilizador já foi adicionado"
-#: ../../any.pm_.c:771
+#: ../../any.pm_.c:773
msgid "Add user"
msgstr "Adicionar utilizador"
-#: ../../any.pm_.c:772
+#: ../../any.pm_.c:774
#, c-format
msgid ""
"Enter a user\n"
@@ -863,32 +876,32 @@ msgstr ""
"Introduza um utilizador\n"
"%s"
-#: ../../any.pm_.c:773
+#: ../../any.pm_.c:775
msgid "Accept user"
msgstr "Aceitar utilizador"
-#: ../../any.pm_.c:784
+#: ../../any.pm_.c:786
msgid "Real name"
msgstr "Nome real"
-#: ../../any.pm_.c:785 ../../printerdrake.pm_.c:742
-#: ../../printerdrake.pm_.c:857
+#: ../../any.pm_.c:787 ../../printerdrake.pm_.c:849
+#: ../../printerdrake.pm_.c:964
msgid "User name"
msgstr "Nome de utilizador"
-#: ../../any.pm_.c:788
+#: ../../any.pm_.c:790
msgid "Shell"
msgstr "Shell"
-#: ../../any.pm_.c:790
+#: ../../any.pm_.c:792
msgid "Icon"
msgstr "Ícone"
-#: ../../any.pm_.c:817
+#: ../../any.pm_.c:819
msgid "Autologin"
msgstr "Autoligaçăo"
-#: ../../any.pm_.c:818
+#: ../../any.pm_.c:820
msgid ""
"I can set up your computer to automatically log on one user.\n"
"Do you want to use this feature?"
@@ -896,56 +909,56 @@ msgstr ""
"Eu posso configurar o computador para ligar automaticamente um utilizador.\n"
"Quer utilizar esta possibilidade?"
-#: ../../any.pm_.c:822
+#: ../../any.pm_.c:824
msgid "Choose the default user:"
msgstr "Escolha o utilizador por omissăo :"
-#: ../../any.pm_.c:823
+#: ../../any.pm_.c:825
msgid "Choose the window manager to run:"
msgstr "Escolha o gestor de janelas a correr:"
-#: ../../any.pm_.c:838
+#: ../../any.pm_.c:840
msgid "Please choose a language to use."
msgstr "Por favor escolha o idioma a utilizar."
-#: ../../any.pm_.c:840
+#: ../../any.pm_.c:842
msgid ""
"Mandrake Linux can support multiple languages. Select\n"
"the languages you would like to install. They will be available\n"
"when your installation is complete and you restart your system."
msgstr "Pode escolher outros idiomas que estarăo disponíveis após a instalaçăo"
-#: ../../any.pm_.c:854 ../../install_steps_interactive.pm_.c:708
+#: ../../any.pm_.c:856 ../../install_steps_interactive.pm_.c:692
#: ../../standalone/drakxtv_.c:73
msgid "All"
msgstr "Tudo"
-#: ../../any.pm_.c:974
+#: ../../any.pm_.c:977
msgid "Allow all users"
msgstr "Permitir todos os utilizadores"
-#: ../../any.pm_.c:974
+#: ../../any.pm_.c:977
msgid "No sharing"
msgstr "Năo partilhar"
-#: ../../any.pm_.c:984 ../../standalone.pm_.c:57
+#: ../../any.pm_.c:987 ../../install_any.pm_.c:1183 ../../standalone.pm_.c:58
#, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr ""
"O pacote %s tem que ser instalado. Tem certeza que năo o quer seleccionar?"
-#: ../../any.pm_.c:987
+#: ../../any.pm_.c:990
msgid ""
"You can export using NFS or Samba. Please select which you'd like to use."
msgstr ""
"Pode partilhar com NFS ou Samba. Escolha por favor qual deseja utilizar."
-#: ../../any.pm_.c:995 ../../standalone.pm_.c:61
+#: ../../any.pm_.c:998 ../../install_any.pm_.c:1188 ../../standalone.pm_.c:63
#, c-format
msgid "Mandatory package %s is missing"
msgstr "O pacote imperativo %s falta"
-#: ../../any.pm_.c:1001
+#: ../../any.pm_.c:1004
msgid ""
"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
@@ -959,11 +972,11 @@ msgstr ""
"\n"
"\"Personalizado\" permite de escolher para cada utilizador.\n"
-#: ../../any.pm_.c:1015
+#: ../../any.pm_.c:1018
msgid "Launch userdrake"
msgstr "Lançar userdrake"
-#: ../../any.pm_.c:1017
+#: ../../any.pm_.c:1020
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
@@ -971,31 +984,31 @@ msgstr ""
"A partilha por utilizador utiliza o grupo \"fileshare\". \n"
"Pode utilizar userdrake para inscrever um utilizador a este grupo."
-#: ../../any.pm_.c:1068
+#: ../../any.pm_.c:1071
msgid "Welcome To Crackers"
msgstr "Bem-vinda aos Piratas"
-#: ../../any.pm_.c:1069
+#: ../../any.pm_.c:1072
msgid "Poor"
msgstr "Pobre"
-#: ../../any.pm_.c:1070 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1073 ../../mouse.pm_.c:31
msgid "Standard"
msgstr "Padrăo"
-#: ../../any.pm_.c:1071
+#: ../../any.pm_.c:1074
msgid "High"
msgstr "Alto"
-#: ../../any.pm_.c:1072
+#: ../../any.pm_.c:1075
msgid "Higher"
msgstr "Superior"
-#: ../../any.pm_.c:1073
+#: ../../any.pm_.c:1076
msgid "Paranoid"
msgstr "Paranóico"
-#: ../../any.pm_.c:1076
+#: ../../any.pm_.c:1079
msgid ""
"This level is to be used with care. It makes your system more easy to use,\n"
"but very sensitive: it must not be used for a machine connected to others\n"
@@ -1005,7 +1018,7 @@ msgstr ""
"de usar, mas muito sensível: năo deve ser usado numa máquina \n"
"ligada a outras ou à Internet. Năo existe acesso por senha."
-#: ../../any.pm_.c:1079
+#: ../../any.pm_.c:1082
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -1013,7 +1026,7 @@ msgstr ""
"As senhas agora estăo activadas, mas o uso como computador de rede ainda năo "
"é recomendado."
-#: ../../any.pm_.c:1080
+#: ../../any.pm_.c:1083
msgid ""
"This is the standard security recommended for a computer that will be used "
"to connect to the Internet as a client."
@@ -1021,7 +1034,7 @@ msgstr ""
"Esta é a segurança padrăo recomendada para um computador que será usadopara "
"se ligar à Internet como um cliente."
-#: ../../any.pm_.c:1081
+#: ../../any.pm_.c:1084
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
@@ -1029,7 +1042,7 @@ msgstr ""
"Já há algumas restriçőes, e mais controlos automáticos săo lançados todas as "
"noites."
-#: ../../any.pm_.c:1082
+#: ../../any.pm_.c:1085
msgid ""
"With this security level, the use of this system as a server becomes "
"possible.\n"
@@ -1044,7 +1057,7 @@ msgstr ""
"servidor que aceita ligaçőes de muitos clientes. Nota: se o sistema é só um "
"cliente que se liga à Internet, deveria escolher um nível mais baixo."
-#: ../../any.pm_.c:1085
+#: ../../any.pm_.c:1088
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
"security features are at their maximum."
@@ -1052,30 +1065,30 @@ msgstr ""
"Este é similar ăo nível abaixo, mas agora o sistema está totalmente fechado "
"e as características de segurança estăo no máximo."
-#: ../../any.pm_.c:1091
+#: ../../any.pm_.c:1094
msgid "DrakSec Basic Options"
msgstr "Draksec Opçőes Simples"
-#: ../../any.pm_.c:1092
+#: ../../any.pm_.c:1095
msgid "Please choose the desired security level"
msgstr "Por favor, escolha o nível de segurança desejado"
-#: ../../any.pm_.c:1095
+#: ../../any.pm_.c:1098
msgid "Security level"
msgstr "Nível de segurança"
-#: ../../any.pm_.c:1097
+#: ../../any.pm_.c:1100
msgid "Use libsafe for servers"
msgstr "Utilizar libsafe para os servidores"
-#: ../../any.pm_.c:1098
+#: ../../any.pm_.c:1101
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
"Uma livraria que protege contra ataques de tipo 'buffer overflow' e cadeia "
"formatada."
-#: ../../any.pm_.c:1099
+#: ../../any.pm_.c:1102
msgid "Security Administrator (login or email)"
msgstr "Administrador da segurança (login ou email)"
@@ -1111,58 +1124,58 @@ msgstr ""
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:935
+#: ../../bootloader.pm_.c:932
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Bem-Vindo ăo GRUB o seleccionador de Sistema Operativo!"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:938
+#: ../../bootloader.pm_.c:935
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "Use a tecla %c e %c para escolher qual a entrada seleccionada."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:941
+#: ../../bootloader.pm_.c:938
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Prima 'enter' para arrancar o SO seleccionado, 'e' para editar os"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:941
msgid "commands before booting, or 'c' for a command-line."
msgstr "comandos antes de arrancar, ou 'c' para linha de comando."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:947
+#: ../../bootloader.pm_.c:944
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr ""
"A opçăo seleccionada vai arrancar automaticamente dentro de %d segundos."
-#: ../../bootloader.pm_.c:951
+#: ../../bootloader.pm_.c:948
msgid "not enough room in /boot"
msgstr "năo há espaço suficiente em /boot"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1051
+#: ../../bootloader.pm_.c:1048
msgid "Desktop"
msgstr "Ambiente de trabalho"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1053
+#: ../../bootloader.pm_.c:1050
msgid "Start Menu"
msgstr "Menu Iniciar"
-#: ../../bootloader.pm_.c:1072
+#: ../../bootloader.pm_.c:1069
#, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "Năo pode instalar o carregador de arranque numa partiçăo %s\n"
-#: ../../bootlook.pm_.c:45
+#: ../../bootlook.pm_.c:45 ../../standalone/draksplash_.c:25
msgid "no help implemented yet.\n"
msgstr "nenhuma ajuda implementada ainda.\n"
@@ -1170,8 +1183,8 @@ msgstr "nenhuma ajuda implementada ainda.\n"
msgid "Boot Style Configuration"
msgstr "Configuraçăo do Estilo de Arranque"
-#: ../../bootlook.pm_.c:78 ../../harddrake/ui.pm_.c:59
-#: ../../harddrake/ui.pm_.c:60 ../../standalone/drakfloppy_.c:81
+#: ../../bootlook.pm_.c:78 ../../harddrake/ui.pm_.c:62
+#: ../../harddrake/ui.pm_.c:63 ../../standalone/drakfloppy_.c:81
#: ../../standalone/logdrake_.c:101
msgid "/_File"
msgstr "/_Ficheiro"
@@ -1181,7 +1194,7 @@ msgstr "/_Ficheiro"
msgid "/File/_Quit"
msgstr "/Ficheiro/_Sair"
-#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:60
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:63
#: ../../standalone/drakfloppy_.c:82 ../../standalone/logdrake_.c:107
msgid "<control>Q"
msgstr "<control>S"
@@ -1222,54 +1235,60 @@ msgstr "Instalar temas"
msgid "Display theme under console"
msgstr "Mostrar o tema na linha de commando"
-#: ../../bootlook.pm_.c:166
+#: ../../bootlook.pm_.c:145
+#, fuzzy
+msgid "Create new theme"
+msgstr "Criar uma nova partiçăo"
+
+#: ../../bootlook.pm_.c:169
msgid "Can't create Bootsplash preview"
msgstr "Năo consigo criar uma pré-visualizaçăo da imagem de início"
-#: ../../bootlook.pm_.c:166 ../../bootlook.pm_.c:184 ../../bootlook.pm_.c:187
-#: ../../bootlook.pm_.c:190 ../../bootlook.pm_.c:220 ../../bootlook.pm_.c:222
-#: ../../bootlook.pm_.c:232 ../../bootlook.pm_.c:241 ../../bootlook.pm_.c:248
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:336
-#: ../../diskdrake/interactive.pm_.c:351 ../../diskdrake/interactive.pm_.c:464
-#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../bootlook.pm_.c:169 ../../bootlook.pm_.c:187 ../../bootlook.pm_.c:190
+#: ../../bootlook.pm_.c:193 ../../bootlook.pm_.c:223 ../../bootlook.pm_.c:225
+#: ../../bootlook.pm_.c:235 ../../bootlook.pm_.c:244 ../../bootlook.pm_.c:251
+#: ../../diskdrake/dav.pm_.c:73 ../../diskdrake/hd_gtk.pm_.c:116
+#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/interactive.pm_.c:355
+#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/interactive.pm_.c:474
+#: ../../diskdrake/smbnfs_gtk.pm_.c:45 ../../fsedit.pm_.c:239
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:365 ../../interactive/http.pm_.c:119
-#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:80
+#: ../../interactive/http.pm_.c:119 ../../interactive/http.pm_.c:120
+#: ../../standalone/draksplash_.c:32
msgid "Error"
msgstr "Erro"
-#: ../../bootlook.pm_.c:183
+#: ../../bootlook.pm_.c:186
#, c-format
msgid "Backup %s to %s.old"
msgstr "Guardar %s em %s.old"
-#: ../../bootlook.pm_.c:184
+#: ../../bootlook.pm_.c:187
msgid "unable to backup lilo message"
msgstr "incapaz de guardar a mensagem de lilo"
-#: ../../bootlook.pm_.c:186
+#: ../../bootlook.pm_.c:189
#, c-format
msgid "Copy %s to %s"
msgstr "A copiar %s para %s"
-#: ../../bootlook.pm_.c:187
+#: ../../bootlook.pm_.c:190
msgid "can't change lilo message"
msgstr "năo consigo mudar a mensagem de lilo"
-#: ../../bootlook.pm_.c:190
+#: ../../bootlook.pm_.c:193
msgid "Lilo message not found"
msgstr "Năo encontro a mensagem de lilo"
-#: ../../bootlook.pm_.c:220
+#: ../../bootlook.pm_.c:223
msgid "Can't write /etc/sysconfig/bootsplash."
msgstr "Năo posso escrever /etc/sysconfig/bootsplash."
-#: ../../bootlook.pm_.c:220
+#: ../../bootlook.pm_.c:223
#, c-format
msgid "Write %s"
msgstr "Escreve %s"
-#: ../../bootlook.pm_.c:222
+#: ../../bootlook.pm_.c:225
msgid ""
"Can't write /etc/sysconfig/bootsplash\n"
"File not found."
@@ -1277,17 +1296,17 @@ msgstr ""
"Năo posso escrever /etc/sysconfig/bootsplash\n"
"Năo encontrei o ficheiro."
-#: ../../bootlook.pm_.c:233
+#: ../../bootlook.pm_.c:236
#, c-format
msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
msgstr "Năo posso executar mkinitrd -f /boot/initrd-%s.img %s."
-#: ../../bootlook.pm_.c:236
+#: ../../bootlook.pm_.c:239
#, c-format
-msgid "Make initrd 'mkinird -f /boot/initrd-%s.img %s'."
-msgstr "Fazer o initrd 'mkinird -f /boot/initrd-%s.img %s'."
+msgid "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
+msgstr "Fazer o initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
-#: ../../bootlook.pm_.c:242
+#: ../../bootlook.pm_.c:245
msgid ""
"Can't relaunch LiLo!\n"
"Launch \"lilo\" as root in command line to complete LiLo theme installation."
@@ -1296,23 +1315,24 @@ msgstr ""
"Lança \"lilo\" como root na linha de commando para acabar a instalaçăo de "
"tema LiLo."
-#: ../../bootlook.pm_.c:246
+#: ../../bootlook.pm_.c:249
msgid "Relaunch 'lilo'"
msgstr "Relançar 'lilo'"
-#: ../../bootlook.pm_.c:248
+#: ../../bootlook.pm_.c:251 ../../standalone/draksplash_.c:161
+#: ../../standalone/draksplash_.c:330 ../../standalone/draksplash_.c:454
msgid "Notice"
msgstr "Nota"
-#: ../../bootlook.pm_.c:249
+#: ../../bootlook.pm_.c:252
msgid "LiLo and Bootsplash themes installation successfull"
msgstr "A instalaçăo dos temas de LiLo de Arranque foi conseguida"
-#: ../../bootlook.pm_.c:249
+#: ../../bootlook.pm_.c:252
msgid "Theme installation failed!"
msgstr "A instalaçăo de temas falhou"
-#: ../../bootlook.pm_.c:258
+#: ../../bootlook.pm_.c:261
#, c-format
msgid ""
"You are currently using %s as your boot manager.\n"
@@ -1321,22 +1341,21 @@ msgstr ""
"Está correntemente a usar %s como Gestor de Arranque.\n"
"Clique em Configurar para iniciar o assistente de configuraçăo."
-#: ../../bootlook.pm_.c:260 ../../standalone/drakbackup_.c:2352
-#: ../../standalone/drakbackup_.c:2362 ../../standalone/drakbackup_.c:2372
-#: ../../standalone/drakbackup_.c:2380 ../../standalone/drakgw_.c:592
-#: ../../standalone/tinyfirewall_.c:58
+#: ../../bootlook.pm_.c:263 ../../standalone/drakbackup_.c:2427
+#: ../../standalone/drakbackup_.c:2437 ../../standalone/drakbackup_.c:2447
+#: ../../standalone/drakbackup_.c:2455 ../../standalone/drakgw_.c:530
msgid "Configure"
msgstr "Configurar"
-#: ../../bootlook.pm_.c:267
+#: ../../bootlook.pm_.c:270
msgid "Splash selection"
msgstr "Selecçăo da imagem de arranque"
-#: ../../bootlook.pm_.c:270
+#: ../../bootlook.pm_.c:273
msgid "Themes"
msgstr "Temas"
-#: ../../bootlook.pm_.c:272
+#: ../../bootlook.pm_.c:275
msgid ""
"\n"
"Select a theme for\n"
@@ -1350,44 +1369,44 @@ msgstr ""
"eles podem ser\n"
"diferentes"
-#: ../../bootlook.pm_.c:275
+#: ../../bootlook.pm_.c:278
msgid "Lilo screen"
msgstr "Ecră Lilo"
-#: ../../bootlook.pm_.c:279
+#: ../../bootlook.pm_.c:283
msgid "Bootsplash"
msgstr "Imagem de Arranque"
-#: ../../bootlook.pm_.c:314
+#: ../../bootlook.pm_.c:318
msgid "System mode"
msgstr "Modo do sistema"
-#: ../../bootlook.pm_.c:316
+#: ../../bootlook.pm_.c:320
msgid "Launch the graphical environment when your system starts"
msgstr "Iniciar o X-Window na inicializaçăo"
-#: ../../bootlook.pm_.c:321
+#: ../../bootlook.pm_.c:325
msgid "No, I don't want autologin"
msgstr "Năo, eu năo quero autoligaçăo"
-#: ../../bootlook.pm_.c:323
+#: ../../bootlook.pm_.c:327
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "Sim, eu quero autoligaçăo com este (utilizador, ambiente de trabalho)"
-#: ../../bootlook.pm_.c:333 ../../network/netconnect.pm_.c:101
+#: ../../bootlook.pm_.c:337 ../../network/netconnect.pm_.c:101
#: ../../standalone/drakTermServ_.c:173 ../../standalone/drakTermServ_.c:300
-#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:3513
-#: ../../standalone/drakbackup_.c:4290 ../../standalone/drakconnect_.c:108
+#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4191
+#: ../../standalone/drakbackup_.c:4952 ../../standalone/drakconnect_.c:108
#: ../../standalone/drakconnect_.c:140 ../../standalone/drakconnect_.c:296
#: ../../standalone/drakconnect_.c:435 ../../standalone/drakconnect_.c:521
#: ../../standalone/drakconnect_.c:564 ../../standalone/drakconnect_.c:667
#: ../../standalone/drakfloppy_.c:376 ../../standalone/drakfont_.c:612
#: ../../standalone/drakfont_.c:799 ../../standalone/drakfont_.c:876
-#: ../../standalone/drakfont_.c:963 ../../standalone/logdrake_.c:521
+#: ../../standalone/drakfont_.c:963 ../../standalone/logdrake_.c:519
msgid "OK"
msgstr "OK"
-#: ../../bootlook.pm_.c:403
+#: ../../bootlook.pm_.c:407
#, c-format
msgid "can not open /etc/inittab for reading: %s"
msgstr "năo possível abrir /etc/inittab para leitura: %s"
@@ -1484,45 +1503,50 @@ msgstr "Áustria"
msgid "United States"
msgstr "Estados Unidos"
-#: ../../detect_devices.pm_.c:599 ../../detect_devices.pm_.c:641
-#: ../../detect_devices.pm_.c:803
-msgid "Unknown Model"
-msgstr "Modelo Desconhecido"
-
#: ../../diskdrake/dav.pm_.c:23
msgid "New"
msgstr "Novo"
-#: ../../diskdrake/dav.pm_.c:57
+#: ../../diskdrake/dav.pm_.c:59 ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/smbnfs_gtk.pm_.c:81
+msgid "Unmount"
+msgstr "Desmontar"
+
+#: ../../diskdrake/dav.pm_.c:60 ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/smbnfs_gtk.pm_.c:82
+msgid "Mount"
+msgstr "Montar"
+
+#: ../../diskdrake/dav.pm_.c:61
msgid "Server"
msgstr "Servidor"
-#: ../../diskdrake/dav.pm_.c:58 ../../diskdrake/interactive.pm_.c:375
-#: ../../diskdrake/interactive.pm_.c:558 ../../diskdrake/interactive.pm_.c:585
+#: ../../diskdrake/dav.pm_.c:62 ../../diskdrake/interactive.pm_.c:379
+#: ../../diskdrake/interactive.pm_.c:568 ../../diskdrake/interactive.pm_.c:595
#: ../../diskdrake/removable.pm_.c:24 ../../diskdrake/removable_gtk.pm_.c:15
#: ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr "Ponto de Montagem"
-#: ../../diskdrake/dav.pm_.c:68
+#: ../../diskdrake/dav.pm_.c:81
msgid "Please enter the WebDAV server URL"
msgstr "Por favor escolha a URL do servidor WebDAV"
-#: ../../diskdrake/dav.pm_.c:71
+#: ../../diskdrake/dav.pm_.c:84
msgid "The URL must begin with http:// or https://"
msgstr "O Url deve começar com http:// ou https://"
-#: ../../diskdrake/dav.pm_.c:92
+#: ../../diskdrake/dav.pm_.c:105
msgid "Server: "
msgstr "Servidor : "
-#: ../../diskdrake/dav.pm_.c:93 ../../diskdrake/interactive.pm_.c:435
-#: ../../diskdrake/interactive.pm_.c:1079
-#: ../../diskdrake/interactive.pm_.c:1153
+#: ../../diskdrake/dav.pm_.c:106 ../../diskdrake/interactive.pm_.c:440
+#: ../../diskdrake/interactive.pm_.c:1089
+#: ../../diskdrake/interactive.pm_.c:1164
msgid "Mount point: "
msgstr "Ponto de montagem: "
-#: ../../diskdrake/dav.pm_.c:94 ../../diskdrake/interactive.pm_.c:1159
+#: ../../diskdrake/dav.pm_.c:107 ../../diskdrake/interactive.pm_.c:1170
#, c-format
msgid "Options: %s"
msgstr "Opçőes: %s"
@@ -1531,8 +1555,9 @@ msgstr "Opçőes: %s"
msgid "Please make a backup of your data first"
msgstr "Por favor faça primeiro uma cópia de segurança dos seus dados"
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:924
-#: ../../diskdrake/interactive.pm_.c:933 ../../diskdrake/interactive.pm_.c:999
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:934
+#: ../../diskdrake/interactive.pm_.c:943
+#: ../../diskdrake/interactive.pm_.c:1009
msgid "Read carefully!"
msgstr "Leia com atençăo!"
@@ -1571,10 +1596,15 @@ msgid "Please click on a partition"
msgstr "Por favor clique numa partiçăo"
#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
-#: ../../install_steps_gtk.pm_.c:471
+#: ../../install_steps_gtk.pm_.c:465
msgid "Details"
msgstr "Detalhes"
+#: ../../diskdrake/hd_gtk.pm_.c:252
+#, fuzzy
+msgid "No hard drives found"
+msgstr "Nenhuma impressora encontrada!"
+
#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Ext2"
msgstr "Ext2"
@@ -1599,13 +1629,13 @@ msgstr "SunOS"
msgid "Swap"
msgstr "Memória virtual"
-#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1105
msgid "Empty"
msgstr "Vazio"
-#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:331
-#: ../../install_steps_gtk.pm_.c:389 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1679
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:325
+#: ../../install_steps_gtk.pm_.c:383 ../../mouse.pm_.c:165
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1754
msgid "Other"
msgstr "Outro"
@@ -1613,12 +1643,12 @@ msgstr "Outro"
msgid "Filesystem types:"
msgstr "Tipos de sistema de ficheiros:"
-#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:397
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:402
msgid "Create"
msgstr "Criar"
-#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:376
-#: ../../diskdrake/interactive.pm_.c:521 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:380
+#: ../../diskdrake/interactive.pm_.c:531 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "Tipo"
@@ -1628,7 +1658,7 @@ msgstr "Tipo"
msgid "Use ``%s'' instead"
msgstr "Use ``%s'' ăo invés"
-#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:389
msgid "Delete"
msgstr "Eliminar"
@@ -1636,7 +1666,7 @@ msgstr "Eliminar"
msgid "Use ``Unmount'' first"
msgstr "Use ``Desmontar'' primeiro"
-#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:513
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:518
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
@@ -1644,72 +1674,72 @@ msgstr ""
"Após alterar o tipo de partiçăo %s, todos os dados desta partiçăo serăo "
"perdidos"
-#: ../../diskdrake/interactive.pm_.c:173
+#: ../../diskdrake/interactive.pm_.c:174
msgid "Choose a partition"
msgstr "Escolha uma partiçăo"
-#: ../../diskdrake/interactive.pm_.c:173
+#: ../../diskdrake/interactive.pm_.c:174
msgid "Choose another partition"
msgstr "Escolha outra partiçăo"
-#: ../../diskdrake/interactive.pm_.c:198
+#: ../../diskdrake/interactive.pm_.c:199
msgid "Exit"
msgstr "Sair"
-#: ../../diskdrake/interactive.pm_.c:220
+#: ../../diskdrake/interactive.pm_.c:221
msgid "Toggle to expert mode"
msgstr "Alternar para modo perito"
-#: ../../diskdrake/interactive.pm_.c:220
+#: ../../diskdrake/interactive.pm_.c:221
msgid "Toggle to normal mode"
msgstr "Alternar para modo normal"
-#: ../../diskdrake/interactive.pm_.c:220
+#: ../../diskdrake/interactive.pm_.c:221
msgid "Undo"
msgstr "Anular"
-#: ../../diskdrake/interactive.pm_.c:239
+#: ../../diskdrake/interactive.pm_.c:240
msgid "Continue anyway?"
msgstr "Continuar mesmo assim?"
-#: ../../diskdrake/interactive.pm_.c:244
+#: ../../diskdrake/interactive.pm_.c:245
msgid "Quit without saving"
msgstr "Sair sem guardar"
-#: ../../diskdrake/interactive.pm_.c:244
+#: ../../diskdrake/interactive.pm_.c:245
msgid "Quit without writing the partition table?"
msgstr "Sair sem gravar na tabela de partiçăo?"
-#: ../../diskdrake/interactive.pm_.c:249
+#: ../../diskdrake/interactive.pm_.c:250
msgid "Do you want to save /etc/fstab modifications"
msgstr "Quer gravar as modificaçőes de /etc/fstab?"
-#: ../../diskdrake/interactive.pm_.c:261
+#: ../../diskdrake/interactive.pm_.c:263
msgid "Auto allocate"
msgstr "Auto alocar"
-#: ../../diskdrake/interactive.pm_.c:261
+#: ../../diskdrake/interactive.pm_.c:263
msgid "Clear all"
msgstr "Limpar tudo"
-#: ../../diskdrake/interactive.pm_.c:261
+#: ../../diskdrake/interactive.pm_.c:263
#: ../../install_steps_interactive.pm_.c:214
msgid "More"
msgstr "Mais"
-#: ../../diskdrake/interactive.pm_.c:264
+#: ../../diskdrake/interactive.pm_.c:267
msgid "Hard drive information"
msgstr "Informaçőes dos discos rígidos"
-#: ../../diskdrake/interactive.pm_.c:294
+#: ../../diskdrake/interactive.pm_.c:298
msgid "All primary partitions are used"
msgstr "Todas as partiçőes primárias estăo usadas"
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:299
msgid "I can't add any more partition"
msgstr "Eu năo posso adicionar mais nenhuma partiçăo"
-#: ../../diskdrake/interactive.pm_.c:296
+#: ../../diskdrake/interactive.pm_.c:300
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -1717,31 +1747,31 @@ msgstr ""
"Para ter mais partiçőes, por favor elimine uma para poder criar uma partiçăo "
"extendida"
-#: ../../diskdrake/interactive.pm_.c:306
+#: ../../diskdrake/interactive.pm_.c:310
msgid "Save partition table"
msgstr "Gravar a tabela das partiçőes"
-#: ../../diskdrake/interactive.pm_.c:307
+#: ../../diskdrake/interactive.pm_.c:311
msgid "Restore partition table"
msgstr "Restaurar a tabela de partiçőes"
-#: ../../diskdrake/interactive.pm_.c:308
+#: ../../diskdrake/interactive.pm_.c:312
msgid "Rescue partition table"
msgstr "Reparar a tabela de partiçőes"
-#: ../../diskdrake/interactive.pm_.c:310
+#: ../../diskdrake/interactive.pm_.c:314
msgid "Reload partition table"
msgstr "Recarregar a tabela de partiçőes"
-#: ../../diskdrake/interactive.pm_.c:315
+#: ../../diskdrake/interactive.pm_.c:319
msgid "Removable media automounting"
msgstr "Automontagem dos médias amovíveis"
-#: ../../diskdrake/interactive.pm_.c:324 ../../diskdrake/interactive.pm_.c:344
+#: ../../diskdrake/interactive.pm_.c:328 ../../diskdrake/interactive.pm_.c:348
msgid "Select file"
msgstr "Seleccione ficheiro"
-#: ../../diskdrake/interactive.pm_.c:331
+#: ../../diskdrake/interactive.pm_.c:335
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1749,11 +1779,11 @@ msgstr ""
"A tabela de partiçőes de segurança năo tem o \n"
"mesmo tamanho. Continuar mesmo assim?"
-#: ../../diskdrake/interactive.pm_.c:345
+#: ../../diskdrake/interactive.pm_.c:349
msgid "Warning"
msgstr "Aviso"
-#: ../../diskdrake/interactive.pm_.c:346
+#: ../../diskdrake/interactive.pm_.c:350
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1761,79 +1791,71 @@ msgstr ""
"Insira uma disquete no drive\n"
"Todos os dados na disquete serăo perdidos"
-#: ../../diskdrake/interactive.pm_.c:357
+#: ../../diskdrake/interactive.pm_.c:361
msgid "Trying to rescue partition table"
msgstr "Tentando resgatar tabela de partiçőes"
-#: ../../diskdrake/interactive.pm_.c:363
+#: ../../diskdrake/interactive.pm_.c:367
msgid "Detailed information"
msgstr "Informaçăo detalhada"
-#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:652
+#: ../../diskdrake/interactive.pm_.c:382 ../../diskdrake/interactive.pm_.c:662
msgid "Resize"
msgstr "Redimensionar"
-#: ../../diskdrake/interactive.pm_.c:379 ../../diskdrake/interactive.pm_.c:705
+#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/interactive.pm_.c:715
msgid "Move"
msgstr "Mover"
-#: ../../diskdrake/interactive.pm_.c:380
+#: ../../diskdrake/interactive.pm_.c:384
msgid "Format"
msgstr "Formatar"
-#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/smbnfs_gtk.pm_.c:82
-msgid "Mount"
-msgstr "Montar"
-
-#: ../../diskdrake/interactive.pm_.c:382
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Add to RAID"
msgstr "Adicionar ăo RAID"
-#: ../../diskdrake/interactive.pm_.c:383
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Add to LVM"
msgstr "Adicionar ăo LVM"
-#: ../../diskdrake/interactive.pm_.c:384 ../../diskdrake/smbnfs_gtk.pm_.c:81
-msgid "Unmount"
-msgstr "Desmontar"
-
-#: ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/interactive.pm_.c:390
msgid "Remove from RAID"
msgstr "Remover do RAID"
-#: ../../diskdrake/interactive.pm_.c:387
+#: ../../diskdrake/interactive.pm_.c:391
msgid "Remove from LVM"
msgstr "Remover do LVM"
-#: ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/interactive.pm_.c:392
msgid "Modify RAID"
msgstr "Modificar RAID"
-#: ../../diskdrake/interactive.pm_.c:389
+#: ../../diskdrake/interactive.pm_.c:393
msgid "Use for loopback"
msgstr "Usar para loopback"
-#: ../../diskdrake/interactive.pm_.c:428
+#: ../../diskdrake/interactive.pm_.c:433
msgid "Create a new partition"
msgstr "Criar uma nova partiçăo"
-#: ../../diskdrake/interactive.pm_.c:431
+#: ../../diskdrake/interactive.pm_.c:436
msgid "Start sector: "
msgstr "Sector inicial: "
-#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:805
+#: ../../diskdrake/interactive.pm_.c:438 ../../diskdrake/interactive.pm_.c:815
msgid "Size in MB: "
msgstr "Tamanho em MB: "
-#: ../../diskdrake/interactive.pm_.c:434 ../../diskdrake/interactive.pm_.c:806
+#: ../../diskdrake/interactive.pm_.c:439 ../../diskdrake/interactive.pm_.c:816
msgid "Filesystem type: "
msgstr "Tipo do Sistema de Ficheiros: "
-#: ../../diskdrake/interactive.pm_.c:439
+#: ../../diskdrake/interactive.pm_.c:444
msgid "Preference: "
msgstr "Preferência: "
-#: ../../diskdrake/interactive.pm_.c:464
+#: ../../diskdrake/interactive.pm_.c:469
msgid ""
"You can't create a new partition\n"
"(since you reached the maximal number of primary partitions).\n"
@@ -1843,33 +1865,33 @@ msgstr ""
"(porque atingiu o numero máximo de partiçőes primárias).\n"
"Apague primeiro uma partiçăo primária e crie uma partiçăo extensa."
-#: ../../diskdrake/interactive.pm_.c:494
+#: ../../diskdrake/interactive.pm_.c:499
msgid "Remove the loopback file?"
msgstr "Apagar o ficheiro loopback?"
-#: ../../diskdrake/interactive.pm_.c:519
+#: ../../diskdrake/interactive.pm_.c:529
msgid "Change partition type"
msgstr "Alterar tipo de partiçăo"
-#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:530 ../../diskdrake/removable.pm_.c:48
msgid "Which filesystem do you want?"
msgstr "Que sistema de ficheiros deseja?"
-#: ../../diskdrake/interactive.pm_.c:526
+#: ../../diskdrake/interactive.pm_.c:536
msgid "Switching from ext2 to ext3"
msgstr "Mudando de ext2 para ext3"
-#: ../../diskdrake/interactive.pm_.c:556
+#: ../../diskdrake/interactive.pm_.c:566
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "Onde deseja montar o ficheiro loopback %s?"
-#: ../../diskdrake/interactive.pm_.c:557
+#: ../../diskdrake/interactive.pm_.c:567
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Onde deseja montar o dispositivo %s?"
-#: ../../diskdrake/interactive.pm_.c:563
+#: ../../diskdrake/interactive.pm_.c:573
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1877,136 +1899,136 @@ msgstr ""
"Năo posso remover a definiçăo do ponto de montagem enquanto \n"
"a partiçăo for usada para loopback. Remova o loopback primeiro"
-#: ../../diskdrake/interactive.pm_.c:584
+#: ../../diskdrake/interactive.pm_.c:594
#, c-format
msgid "Where do you want to mount %s?"
msgstr "Onde deseja montar %s?"
-#: ../../diskdrake/interactive.pm_.c:608
+#: ../../diskdrake/interactive.pm_.c:618
msgid "Computing FAT filesystem bounds"
msgstr "A computar limites do sistema de ficheiros FAT"
-#: ../../diskdrake/interactive.pm_.c:608 ../../diskdrake/interactive.pm_.c:667
-#: ../../install_interactive.pm_.c:131
+#: ../../diskdrake/interactive.pm_.c:618 ../../diskdrake/interactive.pm_.c:677
+#: ../../install_interactive.pm_.c:133
msgid "Resizing"
msgstr "A redimensionar"
-#: ../../diskdrake/interactive.pm_.c:640
+#: ../../diskdrake/interactive.pm_.c:650
msgid "This partition is not resizeable"
msgstr "Esta partiçăo năo é redimensionável"
-#: ../../diskdrake/interactive.pm_.c:645
+#: ../../diskdrake/interactive.pm_.c:655
msgid "All data on this partition should be backed-up"
msgstr "Deveria fazer uma cópia de segurança de todos os dados nesta partiçăo"
-#: ../../diskdrake/interactive.pm_.c:647
+#: ../../diskdrake/interactive.pm_.c:657
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr ""
"Após redimensionar a partiçăo %s, todos os dados da partiçăo serăo perdidos"
-#: ../../diskdrake/interactive.pm_.c:652
+#: ../../diskdrake/interactive.pm_.c:662
msgid "Choose the new size"
msgstr "Escolha o novo tamanho"
-#: ../../diskdrake/interactive.pm_.c:653
+#: ../../diskdrake/interactive.pm_.c:663
msgid "New size in MB: "
msgstr "Novo tamanho em MB: "
-#: ../../diskdrake/interactive.pm_.c:706
+#: ../../diskdrake/interactive.pm_.c:716
msgid "Which disk do you want to move it to?"
msgstr "Para qual disco quer mover?"
-#: ../../diskdrake/interactive.pm_.c:707
+#: ../../diskdrake/interactive.pm_.c:717
msgid "Sector"
msgstr "Sector"
-#: ../../diskdrake/interactive.pm_.c:708
+#: ../../diskdrake/interactive.pm_.c:718
msgid "Which sector do you want to move it to?"
msgstr "Para qual sector quer mover?"
-#: ../../diskdrake/interactive.pm_.c:711
+#: ../../diskdrake/interactive.pm_.c:721
msgid "Moving"
msgstr "A mover"
-#: ../../diskdrake/interactive.pm_.c:711
+#: ../../diskdrake/interactive.pm_.c:721
msgid "Moving partition..."
msgstr "A mover partiçăo..."
-#: ../../diskdrake/interactive.pm_.c:728
+#: ../../diskdrake/interactive.pm_.c:738
msgid "Choose an existing RAID to add to"
msgstr "Escolha um RAID existente para adicionar a"
-#: ../../diskdrake/interactive.pm_.c:729 ../../diskdrake/interactive.pm_.c:746
+#: ../../diskdrake/interactive.pm_.c:739 ../../diskdrake/interactive.pm_.c:756
msgid "new"
msgstr "novo"
-#: ../../diskdrake/interactive.pm_.c:744
+#: ../../diskdrake/interactive.pm_.c:754
msgid "Choose an existing LVM to add to"
msgstr "Escolha um LVM existente para adicionar a"
-#: ../../diskdrake/interactive.pm_.c:749
+#: ../../diskdrake/interactive.pm_.c:759
msgid "LVM name?"
msgstr "Nome do LVM?"
-#: ../../diskdrake/interactive.pm_.c:790
+#: ../../diskdrake/interactive.pm_.c:800
msgid "This partition can't be used for loopback"
msgstr "Essa partiçăo năo pode ser usada para loopback"
-#: ../../diskdrake/interactive.pm_.c:803
+#: ../../diskdrake/interactive.pm_.c:813
msgid "Loopback"
msgstr "Loopback"
-#: ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:814
msgid "Loopback file name: "
msgstr "Nome do ficheiro loopback: "
-#: ../../diskdrake/interactive.pm_.c:809
+#: ../../diskdrake/interactive.pm_.c:819
msgid "Give a file name"
msgstr "Escreva um nome de ficheiro"
-#: ../../diskdrake/interactive.pm_.c:812
+#: ../../diskdrake/interactive.pm_.c:822
msgid "File already used by another loopback, choose another one"
msgstr "O ficheiro já é utilizado por outro loopback, escolha outro"
-#: ../../diskdrake/interactive.pm_.c:813
+#: ../../diskdrake/interactive.pm_.c:823
msgid "File already exists. Use it?"
msgstr "O ficheiro já existe. Utilizá-lo?"
-#: ../../diskdrake/interactive.pm_.c:836
+#: ../../diskdrake/interactive.pm_.c:846
msgid "Mount options"
msgstr "Opçőes do montagem:"
-#: ../../diskdrake/interactive.pm_.c:843
+#: ../../diskdrake/interactive.pm_.c:853
msgid "Various"
msgstr "Diversos"
-#: ../../diskdrake/interactive.pm_.c:907 ../../standalone/drakfloppy_.c:103
+#: ../../diskdrake/interactive.pm_.c:917 ../../standalone/drakfloppy_.c:103
msgid "device"
msgstr "dispositivo"
-#: ../../diskdrake/interactive.pm_.c:908
+#: ../../diskdrake/interactive.pm_.c:918
msgid "level"
msgstr "nível"
-#: ../../diskdrake/interactive.pm_.c:909
+#: ../../diskdrake/interactive.pm_.c:919
msgid "chunk size"
msgstr "tamanho do bloco"
-#: ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:934
msgid "Be careful: this operation is dangerous."
msgstr "Tenha cuidado: essa operaçăo é perigosa."
-#: ../../diskdrake/interactive.pm_.c:939
+#: ../../diskdrake/interactive.pm_.c:949
msgid "What type of partitioning?"
msgstr "Que tipo de particionamento?"
-#: ../../diskdrake/interactive.pm_.c:955
+#: ../../diskdrake/interactive.pm_.c:965
#, c-format
msgid "The package %s is needed. Install it?"
msgstr "O pacote %s é necessário. Instalo-o?"
-#: ../../diskdrake/interactive.pm_.c:969
+#: ../../diskdrake/interactive.pm_.c:979
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -2018,7 +2040,7 @@ msgstr ""
"Ou usa o LILO e ele năo funcionará, ou você năo usa o LILO e năo precisará "
"de /boot"
-#: ../../diskdrake/interactive.pm_.c:973
+#: ../../diskdrake/interactive.pm_.c:983
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -2031,7 +2053,7 @@ msgstr ""
"Se quer usar o gestor de arranque LILO, tenha cuidado em adicionar uma "
"partiçăo /boot."
-#: ../../diskdrake/interactive.pm_.c:979
+#: ../../diskdrake/interactive.pm_.c:989
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
@@ -2041,45 +2063,45 @@ msgstr ""
"Nenhum gestor de arranque năo consegue acedê-lo sem uma\n"
"partiçăo /boot. Tenha o cuidado de adicionar uma partiçăo /boot"
-#: ../../diskdrake/interactive.pm_.c:999
+#: ../../diskdrake/interactive.pm_.c:1009
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "A tabela de partiçőes do drive %s vai ser escrita no disco!"
-#: ../../diskdrake/interactive.pm_.c:1003
+#: ../../diskdrake/interactive.pm_.c:1013
msgid "You'll need to reboot before the modification can take place"
msgstr "Precisará re-arrancar antes que as modificaçőes tenham efeito"
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1024
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr ""
"Após formatar a partiçăo %s, todos os dados desta partiçăo serăo perdidos"
-#: ../../diskdrake/interactive.pm_.c:1016
+#: ../../diskdrake/interactive.pm_.c:1026
msgid "Formatting"
msgstr "A formatar"
-#: ../../diskdrake/interactive.pm_.c:1017
+#: ../../diskdrake/interactive.pm_.c:1027
#, c-format
msgid "Formatting loopback file %s"
msgstr "A formatar o ficheiro loopback %s"
-#: ../../diskdrake/interactive.pm_.c:1018
-#: ../../install_steps_interactive.pm_.c:476
+#: ../../diskdrake/interactive.pm_.c:1028
+#: ../../install_steps_interactive.pm_.c:459
#, c-format
msgid "Formatting partition %s"
msgstr "A formatar a partiçăo %s"
-#: ../../diskdrake/interactive.pm_.c:1029
+#: ../../diskdrake/interactive.pm_.c:1039
msgid "Hide files"
msgstr "Esconder os ficheiros"
-#: ../../diskdrake/interactive.pm_.c:1029
+#: ../../diskdrake/interactive.pm_.c:1039
msgid "Move files to the new partition"
msgstr "Mover os ficheiros para a nova partiçăo"
-#: ../../diskdrake/interactive.pm_.c:1030
+#: ../../diskdrake/interactive.pm_.c:1040
#, c-format
msgid ""
"Directory %s already contains data\n"
@@ -2088,83 +2110,83 @@ msgstr ""
"A pasta %s já contém dados\n"
"(%s)"
-#: ../../diskdrake/interactive.pm_.c:1041
+#: ../../diskdrake/interactive.pm_.c:1051
msgid "Moving files to the new partition"
msgstr "Movendo os ficheiros para a nova partiçăo"
-#: ../../diskdrake/interactive.pm_.c:1045
+#: ../../diskdrake/interactive.pm_.c:1055
#, c-format
msgid "Copying %s"
msgstr "Copiando %s"
-#: ../../diskdrake/interactive.pm_.c:1049
+#: ../../diskdrake/interactive.pm_.c:1059
#, c-format
msgid "Removing %s"
msgstr "A apagar %s"
-#: ../../diskdrake/interactive.pm_.c:1059
+#: ../../diskdrake/interactive.pm_.c:1069
#, c-format
msgid "partition %s is now known as %s"
msgstr "a partiçăo %s é agora conhecida como %s"
-#: ../../diskdrake/interactive.pm_.c:1080
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1090
+#: ../../diskdrake/interactive.pm_.c:1149
msgid "Device: "
msgstr "Dispositivo: "
-#: ../../diskdrake/interactive.pm_.c:1081
+#: ../../diskdrake/interactive.pm_.c:1091
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "Letra do drive no DOS: %s (apenas um palpite)\n"
-#: ../../diskdrake/interactive.pm_.c:1085
-#: ../../diskdrake/interactive.pm_.c:1093
-#: ../../diskdrake/interactive.pm_.c:1157
+#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1103
+#: ../../diskdrake/interactive.pm_.c:1168
msgid "Type: "
msgstr "Tipo: "
-#: ../../diskdrake/interactive.pm_.c:1089
+#: ../../diskdrake/interactive.pm_.c:1099
msgid "Name: "
msgstr "Nome: "
-#: ../../diskdrake/interactive.pm_.c:1097
+#: ../../diskdrake/interactive.pm_.c:1107
#, c-format
msgid "Start: sector %s\n"
msgstr "Inicial: sector: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1108
#, c-format
msgid "Size: %s"
msgstr "Tamanho: %s"
-#: ../../diskdrake/interactive.pm_.c:1100
+#: ../../diskdrake/interactive.pm_.c:1110
#, c-format
msgid ", %s sectors"
msgstr ", %s sectores"
-#: ../../diskdrake/interactive.pm_.c:1102
+#: ../../diskdrake/interactive.pm_.c:1112
#, c-format
msgid "Cylinder %d to %d\n"
msgstr "Cilindro %d ăo %d\n"
-#: ../../diskdrake/interactive.pm_.c:1103
+#: ../../diskdrake/interactive.pm_.c:1113
msgid "Formatted\n"
msgstr "Formatado\n"
-#: ../../diskdrake/interactive.pm_.c:1104
+#: ../../diskdrake/interactive.pm_.c:1114
msgid "Not formatted\n"
msgstr "Năo formatado\n"
-#: ../../diskdrake/interactive.pm_.c:1105
+#: ../../diskdrake/interactive.pm_.c:1115
msgid "Mounted\n"
msgstr "Montado\n"
-#: ../../diskdrake/interactive.pm_.c:1106
+#: ../../diskdrake/interactive.pm_.c:1116
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1108
+#: ../../diskdrake/interactive.pm_.c:1118
#, c-format
msgid ""
"Loopback file(s):\n"
@@ -2173,7 +2195,7 @@ msgstr ""
"Ficheiro(s) loopback:\n"
" %s\n"
-#: ../../diskdrake/interactive.pm_.c:1109
+#: ../../diskdrake/interactive.pm_.c:1119
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -2181,27 +2203,27 @@ msgstr ""
"Partiçăo de arranque por omissăo\n"
" (para arranque do MS-DOS, năo para o lilo)\n"
-#: ../../diskdrake/interactive.pm_.c:1111
+#: ../../diskdrake/interactive.pm_.c:1121
#, c-format
msgid "Level %s\n"
msgstr "Nível %s\n"
-#: ../../diskdrake/interactive.pm_.c:1112
+#: ../../diskdrake/interactive.pm_.c:1122
#, c-format
msgid "Chunk size %s\n"
msgstr "Tamanho do bloco %s\n"
-#: ../../diskdrake/interactive.pm_.c:1113
+#: ../../diskdrake/interactive.pm_.c:1123
#, c-format
msgid "RAID-disks %s\n"
msgstr "Discos RAID %s\n"
-#: ../../diskdrake/interactive.pm_.c:1115
+#: ../../diskdrake/interactive.pm_.c:1125
#, c-format
msgid "Loopback file name: %s"
msgstr "Nome do ficheiro loopback: %s"
-#: ../../diskdrake/interactive.pm_.c:1118
+#: ../../diskdrake/interactive.pm_.c:1128
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -2213,7 +2235,7 @@ msgstr ""
"uma partiçăo Driver, năo lhe\n"
"deve mexer.\n"
-#: ../../diskdrake/interactive.pm_.c:1121
+#: ../../diskdrake/interactive.pm_.c:1131
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2225,58 +2247,62 @@ msgstr ""
" Bootstrap serve para o \n"
"duplo arranque do seu sistema.\n"
-#: ../../diskdrake/interactive.pm_.c:1140
+#: ../../diskdrake/interactive.pm_.c:1150
+msgid "Read-only"
+msgstr ""
+
+#: ../../diskdrake/interactive.pm_.c:1151
#, c-format
msgid "Size: %s\n"
msgstr "Tamanho: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1141
+#: ../../diskdrake/interactive.pm_.c:1152
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Geometria: %s cilindros, %s cabeças, %s sectores\n"
-#: ../../diskdrake/interactive.pm_.c:1142
+#: ../../diskdrake/interactive.pm_.c:1153
msgid "Info: "
msgstr "Informaçăo: "
-#: ../../diskdrake/interactive.pm_.c:1143
+#: ../../diskdrake/interactive.pm_.c:1154
#, c-format
msgid "LVM-disks %s\n"
msgstr "Discos LVM %s\n"
-#: ../../diskdrake/interactive.pm_.c:1144
+#: ../../diskdrake/interactive.pm_.c:1155
#, c-format
msgid "Partition table type: %s\n"
msgstr "Tipo da tabela de partiçőes: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1145
+#: ../../diskdrake/interactive.pm_.c:1156
#, c-format
msgid "on channel %d id %d\n"
msgstr "na cadeia %d id %d\n"
-#: ../../diskdrake/interactive.pm_.c:1175
+#: ../../diskdrake/interactive.pm_.c:1186
msgid "Filesystem encryption key"
msgstr "Senha de codificaçăo do sistema de ficheiros"
-#: ../../diskdrake/interactive.pm_.c:1176
+#: ../../diskdrake/interactive.pm_.c:1187
msgid "Choose your filesystem encryption key"
msgstr "Escolha a sua senha de codificaçăo do sistema de ficheiros"
-#: ../../diskdrake/interactive.pm_.c:1179
+#: ../../diskdrake/interactive.pm_.c:1190
#, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr ""
"Essa senha de codificaçăo é muito simples (deve ter ăo menos %d caracteres)"
-#: ../../diskdrake/interactive.pm_.c:1180
+#: ../../diskdrake/interactive.pm_.c:1191
msgid "The encryption keys do not match"
msgstr "As senhas de codificaçăo năo coincidem"
-#: ../../diskdrake/interactive.pm_.c:1183
+#: ../../diskdrake/interactive.pm_.c:1194
msgid "Encryption key"
msgstr "Senha de codificaçăo"
-#: ../../diskdrake/interactive.pm_.c:1184
+#: ../../diskdrake/interactive.pm_.c:1195
msgid "Encryption key (again)"
msgstr "Senha de codificaçăo (outra vez)"
@@ -2312,7 +2338,7 @@ msgstr ""
"Por favor escreva a seu nome de utilizador, senha e nome de domínio para "
"aceder a esta maquina."
-#: ../../diskdrake/smbnfs_gtk.pm_.c:178
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3527
msgid "Username"
msgstr "Nome de utilizador"
@@ -2324,23 +2350,23 @@ msgstr "Domínio"
msgid "Search servers"
msgstr "Procurar Servidores"
-#: ../../fs.pm_.c:552 ../../fs.pm_.c:562 ../../fs.pm_.c:566 ../../fs.pm_.c:570
-#: ../../fs.pm_.c:574 ../../fs.pm_.c:578
+#: ../../fs.pm_.c:544 ../../fs.pm_.c:554 ../../fs.pm_.c:558 ../../fs.pm_.c:562
+#: ../../fs.pm_.c:566 ../../fs.pm_.c:570
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s formataçăo de %s falhou"
-#: ../../fs.pm_.c:615
+#: ../../fs.pm_.c:607
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "Năo sei como formatar %s no tipo %s"
-#: ../../fs.pm_.c:687 ../../fs.pm_.c:731
+#: ../../fs.pm_.c:681 ../../fs.pm_.c:724
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr "a montagem da partiçăo %s na pasta %s falhou"
-#: ../../fs.pm_.c:746 ../../partition_table.pm_.c:602
+#: ../../fs.pm_.c:739 ../../partition_table.pm_.c:598
#, c-format
msgid "error unmounting %s: %s"
msgstr "erro a desmontar %s: %s"
@@ -2357,33 +2383,48 @@ msgstr "com /usr"
msgid "server"
msgstr "servidor"
-#: ../../fsedit.pm_.c:472
+#: ../../fsedit.pm_.c:240
+#, fuzzy, c-format
+msgid ""
+"I can't read the partition table of device %s, it's too corrupted for me :(\n"
+"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
+"The other solution is to not allow DrakX to modify the partition table.\n"
+"(the error is %s)\n"
+"\n"
+"Do you agree to loose all the partitions?\n"
+msgstr ""
+"Năo consigo ler sua tabela de partiçăo, é muito defeituosa para mim :(\n"
+"Eu posso tentar continuar limpando as partiçőes defeituosas (TODOS OS DADOS\n"
+"serăo perdidos!). A outra soluçăo é năo deixar o DrakX modificar a tabela\n"
+"de partiçőes. (o erro é %s)\n"
+
+#: ../../fsedit.pm_.c:501
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr "Năo pode usar JFS em partiçőes menores que 16MB"
-#: ../../fsedit.pm_.c:473
+#: ../../fsedit.pm_.c:502
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr "Năo pode usar ReiserFS em partiçőes menores que 32MB"
-#: ../../fsedit.pm_.c:492
+#: ../../fsedit.pm_.c:521
msgid "Mount points must begin with a leading /"
msgstr "Pontos de montagem devem começar com uma /"
-#: ../../fsedit.pm_.c:493
+#: ../../fsedit.pm_.c:522
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Já existe uma partiçăo no ponto de montagem %s\n"
-#: ../../fsedit.pm_.c:497
+#: ../../fsedit.pm_.c:526
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr "Năo pode usar LVM Volume Lógico para o ponto de montagem %s"
-#: ../../fsedit.pm_.c:499
+#: ../../fsedit.pm_.c:528
msgid "This directory should remain within the root filesystem"
msgstr "Esta directoria deveria permanecer dentro do sistema de ficheiros root"
-#: ../../fsedit.pm_.c:501
+#: ../../fsedit.pm_.c:530
msgid ""
"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
"point\n"
@@ -2391,104 +2432,142 @@ msgstr ""
"Precisa de um verdadeiro sistema de ficheiros (ext2/ext3, ReiserFS, xfs ou "
"JFS) para este ponto de montagem\n"
-#: ../../fsedit.pm_.c:503
+#: ../../fsedit.pm_.c:532
#, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr ""
"Năo pode usar um sistema de ficheiros codificado para o ponto de montagem %s"
-#: ../../fsedit.pm_.c:570
+#: ../../fsedit.pm_.c:599
msgid "Not enough free space for auto-allocating"
msgstr "Falta de espaço livre suficiente para auto-alocaçăo"
-#: ../../fsedit.pm_.c:572
+#: ../../fsedit.pm_.c:601
msgid "Nothing to do"
msgstr "Nada a fazer"
-#: ../../fsedit.pm_.c:665
+#: ../../fsedit.pm_.c:694
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Erro ăo abrir %s para escrita: %s"
-#: ../../fsedit.pm_.c:750
+#: ../../harddrake/sound.pm_.c:155
+msgid "No alternative driver"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:156
+#, c-format
+msgid "There's no known OSS/ALSA alternative driver for your sound card (%s)"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:158
+#, fuzzy
+msgid "Sound configuration"
+msgstr "Configuraçăo de CUPS"
+
+#: ../../harddrake/sound.pm_.c:159
+#, c-format
msgid ""
-"An error occurred - no valid devices were found on which to create new "
-"filesystems. Please check your hardware for the cause of this problem"
+"Here you can select an alternative driver (either OSS or ALSA) for your "
+"sound card (%s)"
msgstr ""
-"Ocorreu um erro - nenhum dispositivo válido foi encontrado para criar novos "
-"sistemas de ficheiros. Por favor verifique no hardware a causa deste problema"
-#: ../../fsedit.pm_.c:773
-msgid "You don't have any partitions!"
-msgstr "Năo tem partiçőes!"
+#: ../../harddrake/sound.pm_.c:162
+#, fuzzy
+msgid "Driver:"
+msgstr "Driver"
+
+#: ../../harddrake/sound.pm_.c:173
+msgid "No known driver"
+msgstr ""
-#: ../../harddrake/ui.pm_.c:15
+#: ../../harddrake/sound.pm_.c:174
+#, c-format
+msgid "There's no known driver for your sound card (%s)"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:177
+#, fuzzy
+msgid "Unkown driver"
+msgstr "Modelo desconhecido"
+
+#: ../../harddrake/sound.pm_.c:178
+#, c-format
+msgid ""
+"The \"%s\" driver for your sound card is unlisted\n"
+"\n"
+"Please send the output of the \"lspcidrake -v\" command to\n"
+"<install at mandrakesoft dot com>\n"
+"with subject: unlisted sound driver \"%s\""
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:16
msgid "Model"
msgstr "Modelo"
-#: ../../harddrake/ui.pm_.c:15
+#: ../../harddrake/ui.pm_.c:16
msgid "hard disk model"
msgstr "Modelo de disco rígido"
-#: ../../harddrake/ui.pm_.c:16
+#: ../../harddrake/ui.pm_.c:17
msgid "Channel"
msgstr "Canal"
-#: ../../harddrake/ui.pm_.c:16
+#: ../../harddrake/ui.pm_.c:17
msgid "EIDE/SCSI channel"
msgstr "Canal EIDE/SCSI"
-#: ../../harddrake/ui.pm_.c:18
+#: ../../harddrake/ui.pm_.c:19
msgid "Bus"
msgstr "Bus"
-#: ../../harddrake/ui.pm_.c:19
+#: ../../harddrake/ui.pm_.c:20
msgid ""
"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
msgstr ""
"este é o caminho físico onde está ligado o dispositivo (ex: PCI, USB, ...)"
-#: ../../harddrake/ui.pm_.c:20
+#: ../../harddrake/ui.pm_.c:21
msgid "Module"
msgstr "Módulo"
-#: ../../harddrake/ui.pm_.c:20
+#: ../../harddrake/ui.pm_.c:21
msgid "the module of the GNU/Linux kernel that handle that device"
msgstr "o módulo do núcleo GNU/Linux que pilota este dispositivo"
-#: ../../harddrake/ui.pm_.c:21
+#: ../../harddrake/ui.pm_.c:22
msgid "Media class"
msgstr "Classe Média"
-#: ../../harddrake/ui.pm_.c:21
+#: ../../harddrake/ui.pm_.c:22
msgid "class of hardware device"
msgstr "classe do dispositivo material"
-#: ../../harddrake/ui.pm_.c:22 ../../printerdrake.pm_.c:1404
+#: ../../harddrake/ui.pm_.c:23 ../../printerdrake.pm_.c:1517
msgid "Description"
msgstr "Descriçăo"
-#: ../../harddrake/ui.pm_.c:22
+#: ../../harddrake/ui.pm_.c:23
msgid "this field describe the device"
msgstr "este campo descreve o dispositivo"
-#: ../../harddrake/ui.pm_.c:24
+#: ../../harddrake/ui.pm_.c:25
msgid "Bus identification"
msgstr "Identificaçăo do Bus?"
-#: ../../harddrake/ui.pm_.c:25
+#: ../../harddrake/ui.pm_.c:26
msgid ""
-"- PCI and USB devices : this list the vendor, device, subvendor and "
-"subdevice PCI/USB ids"
+"- PCI and USB devices: this list the vendor, device, subvendor and subdevice "
+"PCI/USB ids"
msgstr ""
"- dispositivos PCI e USB : isto indica os ids PCI/USB do vendedor, do "
"dispositivo, e dos sub"
-#: ../../harddrake/ui.pm_.c:27
+#: ../../harddrake/ui.pm_.c:28
msgid "Location on the bus"
msgstr "sitio no bus"
-#: ../../harddrake/ui.pm_.c:28
+#: ../../harddrake/ui.pm_.c:29
msgid ""
"- pci devices: this gives the PCI slot, device and function of this card\n"
"- eide devices: the device is either a slave or a master device\n"
@@ -2499,48 +2578,57 @@ msgstr ""
"- dispositivos EIDE : o dispositivo é um mestre ou um escravo\n"
"- dispositivos scsi : o bus scsi o os ids scsi do dispositivo"
-#: ../../harddrake/ui.pm_.c:31
+#: ../../harddrake/ui.pm_.c:32
msgid "Old device file"
msgstr "Antigo ficheiro de periférico"
-#: ../../harddrake/ui.pm_.c:32
+#: ../../harddrake/ui.pm_.c:33
msgid "old static device name used in dev package"
msgstr "Antigo nome fixo do dispositivo utilizado no pacote dev"
-#: ../../harddrake/ui.pm_.c:33
+#: ../../harddrake/ui.pm_.c:34
msgid "New devfs device"
msgstr "Novo periférico devfs"
-#: ../../harddrake/ui.pm_.c:34
+#: ../../harddrake/ui.pm_.c:35
msgid "new dinamic device name generated by incore kernel devfs"
msgstr "Novo nome dinâmico do dispositivo criado pelo devfs do núcleo"
-#: ../../harddrake/ui.pm_.c:35
+#: ../../harddrake/ui.pm_.c:36
msgid "Number of buttons"
msgstr "Número de botőes"
-#: ../../harddrake/ui.pm_.c:36
+#: ../../harddrake/ui.pm_.c:37
msgid "the vendor name of the device"
msgstr "o nome do vendedor do dispositivo"
-#: ../../harddrake/ui.pm_.c:60
+#: ../../harddrake/ui.pm_.c:38
+#, fuzzy
+msgid "Alternative drivers"
+msgstr "Página de teste alternativa (A4)"
+
+#: ../../harddrake/ui.pm_.c:39
+msgid "the list of alternative drivers for this sound card"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:63
msgid "/_Quit"
msgstr "/_Sair"
-#: ../../harddrake/ui.pm_.c:61 ../../harddrake/ui.pm_.c:62
-#: ../../harddrake/ui.pm_.c:68 ../../standalone/logdrake_.c:110
+#: ../../harddrake/ui.pm_.c:64 ../../harddrake/ui.pm_.c:65
+#: ../../harddrake/ui.pm_.c:71 ../../standalone/logdrake_.c:110
msgid "/_Help"
msgstr "/_Ajuda"
-#: ../../harddrake/ui.pm_.c:62
+#: ../../harddrake/ui.pm_.c:65
msgid "/_Help..."
msgstr "/_Ajuda..."
-#: ../../harddrake/ui.pm_.c:63
+#: ../../harddrake/ui.pm_.c:66
msgid "Harddrake help"
msgstr "Ajuda de HardDrake"
-#: ../../harddrake/ui.pm_.c:64
+#: ../../harddrake/ui.pm_.c:67
msgid ""
"Description of the fields:\n"
"\n"
@@ -2548,15 +2636,15 @@ msgstr ""
"Descriçăo dos campos :\n"
"\n"
-#: ../../harddrake/ui.pm_.c:68
+#: ../../harddrake/ui.pm_.c:71
msgid "/_About..."
msgstr "/_Acerca..."
-#: ../../harddrake/ui.pm_.c:69
+#: ../../harddrake/ui.pm_.c:72
msgid "About Harddrake"
msgstr "Acerca de HardDrake"
-#: ../../harddrake/ui.pm_.c:70
+#: ../../harddrake/ui.pm_.c:73
msgid ""
"This is HardDrake, a Mandrake hardware configuration tool.\n"
"Version:"
@@ -2564,51 +2652,51 @@ msgstr ""
"Isto é HardDrake, uma ferramenta Mandrake de configuraçăo do material.\n"
"Versăo:"
-#: ../../harddrake/ui.pm_.c:71
+#: ../../harddrake/ui.pm_.c:74
msgid "Author:"
msgstr "Autor:"
-#: ../../harddrake/ui.pm_.c:83
+#: ../../harddrake/ui.pm_.c:86
msgid "Harddrake2 version "
msgstr "Versăo de HardDrake2 "
-#: ../../harddrake/ui.pm_.c:91
+#: ../../harddrake/ui.pm_.c:103
msgid "Detected hardware"
msgstr "Material encontrado"
-#: ../../harddrake/ui.pm_.c:92
+#: ../../harddrake/ui.pm_.c:105
+msgid "Information"
+msgstr "Informaçőes"
+
+#: ../../harddrake/ui.pm_.c:108
msgid "Configure module"
msgstr "Configurar modulo"
-#: ../../harddrake/ui.pm_.c:92
-msgid "Informations"
-msgstr "Informaçőes"
-
-#: ../../harddrake/ui.pm_.c:92
+#: ../../harddrake/ui.pm_.c:109
msgid "Run config tool"
msgstr "Lançar ferramenta de configuraçăo"
-#: ../../harddrake/ui.pm_.c:96
+#: ../../harddrake/ui.pm_.c:113
msgid "Detection in progress"
msgstr "A detectar"
-#: ../../harddrake/ui.pm_.c:96 ../../interactive.pm_.c:388
+#: ../../harddrake/ui.pm_.c:113 ../../interactive.pm_.c:391
msgid "Please wait"
msgstr "Por favor aguarde"
-#: ../../harddrake/ui.pm_.c:139
+#: ../../harddrake/ui.pm_.c:156
msgid "primary"
msgstr "principal"
-#: ../../harddrake/ui.pm_.c:139
+#: ../../harddrake/ui.pm_.c:156
msgid "secondary"
msgstr "secundario"
-#: ../../harddrake/ui.pm_.c:176
+#: ../../harddrake/ui.pm_.c:197
msgid "You can configure each parameter of the module here."
msgstr "Você pode configurar cada parametro do módulo aqui."
-#: ../../harddrake/ui.pm_.c:192
+#: ../../harddrake/ui.pm_.c:213
#, c-format
msgid "Running \"%s\" ..."
msgstr "Lançando \"%s\" ..."
@@ -2642,15 +2730,15 @@ msgstr ""
"de placa aqui. Escolha os seus parametros somente se necessário."
#: ../../harddrake/v4l.pm_.c:213
-msgid "Card model :"
+msgid "Card model:"
msgstr "Modelo da Placa :"
#: ../../harddrake/v4l.pm_.c:214
-msgid "Tuner type :"
+msgid "Tuner type:"
msgstr "Tipo de Sintonisador :"
#: ../../harddrake/v4l.pm_.c:215
-msgid "Number of capture buffers :"
+msgid "Number of capture buffers:"
msgstr "Numero de tampos de captura :"
#: ../../harddrake/v4l.pm_.c:215
@@ -2658,11 +2746,11 @@ msgid "number of capture buffers for mmap'ed capture"
msgstr "Numero de tampos de captura de tipo mmap :"
#: ../../harddrake/v4l.pm_.c:217
-msgid "PLL setting :"
+msgid "PLL setting:"
msgstr "Configuraçăo PLL :"
#: ../../harddrake/v4l.pm_.c:218
-msgid "Radio support :"
+msgid "Radio support:"
msgstr "Suporte de radio :"
#: ../../harddrake/v4l.pm_.c:218
@@ -2674,22 +2762,22 @@ msgid ""
"GNU/Linux is a multiuser system, and this means that each user can have his\n"
"own preferences, his own files and so on. You can read the ``User Guide''\n"
"to learn more. But unlike \"root\", which is the administrator, the users\n"
-"you will add here will not be entitled to change anything except their own\n"
-"files and their own configuration. You will have to create at least one\n"
-"regular user for yourself. That account is where you should log in for\n"
-"routine use. Although it is very practical to log in as \"root\" everyday,\n"
-"it may also be very dangerous! The slightest mistake could mean that your\n"
-"system would not work any more. If you make a serious mistake as a regular\n"
-"user, you may only lose some information, but not the entire system.\n"
+"you add here will not be entitled to change anything except their own files\n"
+"and their own configuration. You will have to create at least one regular\n"
+"user for yourself. That account is where you should log in for routine use.\n"
+"Although it is very practical to log in as \"root\" everyday, it may also\n"
+"be very dangerous! The slightest mistake could mean that your system would\n"
+"not work any more. If you make a serious mistake as a regular user, you may\n"
+"only lose some information, but not the entire system.\n"
"\n"
"First, you have to enter your real name. This is not mandatory, of course -\n"
"as you can actually enter whatever you want. DrakX will then take the first\n"
"word you have entered in the box and will bring it over to the \"User\n"
"name\". This is the name this particular user will use to log onto the\n"
"system. You can change it. You then have to enter a password here. A\n"
-"non-privileged (regular) user's password is not as crucial as \"root\"' one\n"
-"from a security point of view, but that is no reason to neglect it: after\n"
-"all, your files are at risk.\n"
+"non-privileged (regular) user's password is not as crucial as the \"root\"'\n"
+"one from a security point of view, but that is no reason to neglect it:\n"
+"after all, your files are at risk.\n"
"\n"
"If you click on \"Accept user\", you can then add as many as you want. Add\n"
"a user for each one of your friends: your father or your sister, for\n"
@@ -2835,7 +2923,7 @@ msgid ""
"to have a graphical workstation!\n"
"\n"
"Moving the mouse cursor over a group name will display a short explanatory\n"
-"text about that group. If you deselect all groups when performing a regular\n"
+"text about that group. If you unselect all groups when performing a regular\n"
"installation (by opposition to an upgrade), a dialog will pop up proposing\n"
"different options for a minimal installation:\n"
"\n"
@@ -2861,10 +2949,10 @@ msgstr ""
#: ../../help.pm_.c:128
msgid ""
-"Finally, depending on whether or not you selected individual packages, you\n"
-"will be presented a tree containing all packages classified by groups and\n"
-"subgroups. While browsing the tree, you can select entire groups,\n"
-"subgroups, or individual packages.\n"
+"Finally, depending on whether or not you chose to be able to select\n"
+"individual packages, you will be presented a tree containing all packages\n"
+"classified by groups and subgroups. While browsing the tree, you can select\n"
+"entire groups, subgroups, or individual packages.\n"
"\n"
"Whenever you select a package on the tree, a description appears on the\n"
"right. When your selection is finished, click the \"Install\" button which\n"
@@ -2899,11 +2987,11 @@ msgstr ""
#: ../../help.pm_.c:164
msgid ""
-"You are now proposed to set up your Internet/network connection. If you\n"
-"wish to connect your computer to the Internet or to a local network, click\n"
-"\"OK\". The autodetection of network devices and modem will be launched. If\n"
-"this detection fails, uncheck the \"Use auto detection\" box next time. You\n"
-"may also choose not to configure the network, or do it later; in that case,\n"
+"You are now able to set up your Internet/network connection. If you wish to\n"
+"connect your computer to the Internet or to a local network, click \"OK\".\n"
+"The autodetection of network devices and modem will be launched. If this\n"
+"detection fails, uncheck the \"Use auto detection\" box next time. You may\n"
+"also choose not to configure the network, or do it later; in that case,\n"
"simply click the \"Cancel\" button.\n"
"\n"
"Available connections are: traditional modem, ISDN modem, ADSL connection,\n"
@@ -2944,7 +3032,7 @@ msgstr ""
msgid ""
"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
"local time according to the time zone you selected. It is however possible\n"
-"to deactivate this by deselecting \"Hardware clock set to GMT\" so that the\n"
+"to deactivate this by unselecting \"Hardware clock set to GMT\" so that the\n"
"hardware clock is the same as the system clock. This is useful when the\n"
"machine is hosting another operating system like Windows.\n"
"\n"
@@ -2987,24 +3075,12 @@ msgid ""
"If you can see the message during the test, and answer \"Yes\", then DrakX\n"
"will proceed to the next step. If you cannot see the message, it simply\n"
"means that the configuration was wrong and the test will automatically end\n"
-"after 10 seconds, restoring the screen."
-msgstr ""
-
-#: ../../help.pm_.c:237
-msgid ""
-"The first time you try the X configuration, you may not be very satisfied\n"
-"with its display (screen is too small, shifted left or right...). Hence,\n"
-"even if X starts up correctly, DrakX then asks you if the configuration\n"
-"suits you. It will also propose to change it by displaying a list of valid\n"
-"modes it could find, asking you to select one.\n"
-"\n"
-"As a last resort, if you still cannot get X to work, choose \"Change\n"
-"graphics card\", select \"Unlisted card\", and when prompted on which\n"
-"server, choose \"FBDev\". This is a failsafe option which works with any\n"
-"modern graphics card. Then choose \"Test again\" to be sure."
+"after 10 seconds, restoring the screen. Refer then to the Video\n"
+"configuration section of the user guide for more information on how to\n"
+"configure your display."
msgstr ""
-#: ../../help.pm_.c:249
+#: ../../help.pm_.c:239
msgid ""
"Finally, you will be asked whether you want to see the graphical interface\n"
"at boot. Note this question will be asked even if you chose not to test the\n"
@@ -3018,7 +3094,7 @@ msgstr ""
"sua maquina vai ser um servidor, ou se năo conseguiu obter uma\n"
"configuraçăo correcta do ecră."
-#: ../../help.pm_.c:256
+#: ../../help.pm_.c:246
msgid ""
"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
@@ -3038,13 +3114,13 @@ msgid ""
"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
"password, or any other reason.\n"
"\n"
-"When you click on this step, you will be asked to enter a disk inside the\n"
-"drive. The floppy disk you will insert must be empty or contain data which\n"
-"you do not need. You will not have to format it since DrakX will rewrite\n"
-"the whole disk."
+"If you say \"Yes\", you will be asked to enter a disk inside the drive. The\n"
+"floppy disk you will insert must be empty or contain data which you do not\n"
+"need. You will not have to format it since DrakX will rewrite the whole\n"
+"disk."
msgstr ""
-#: ../../help.pm_.c:280
+#: ../../help.pm_.c:270
msgid ""
"At this point, you need to choose where you want to install the Mandrake\n"
"Linux operating system on your hard drive. If your hard drive is empty or\n"
@@ -3077,7 +3153,9 @@ msgid ""
"\n"
" * \"Use existing partition\": the wizard has detected one or more existing\n"
"Linux partitions on your hard drive. If you want to use them, choose this\n"
-"option;\n"
+"option. You will then be asked to choose the mount points associated to\n"
+"each of the partitions. The legacy mount points are selected by default,\n"
+"and you should generally keep them.\n"
"\n"
" * \"Use the free space on the Windows; partition\": if Microsoft Windows\n"
"is installed on your hard drive and takes all the space available on it,\n"
@@ -3110,10 +3188,12 @@ msgid ""
" * \"Expert mode\": choose this option if you want to manually partition\n"
"your hard drive. Be careful - it is a powerful but dangerous choice. You\n"
"can very easily lose all your data. Hence, do not choose this unless you\n"
-"know what you are doing."
+"know what you are doing. To know how do use the DiskDrake utility used\n"
+"here, refer to the section ``Managing Your Partitions'' of the ````User\n"
+"Guide''''"
msgstr ""
-#: ../../help.pm_.c:347
+#: ../../help.pm_.c:341
msgid ""
"There you are. Installation is now complete and your GNU/Linux system is\n"
"ready to use. Just click \"OK\" to reboot the system. You can start\n"
@@ -3146,7 +3226,7 @@ msgid ""
"\"mformat a:\")"
msgstr ""
-#: ../../help.pm_.c:378
+#: ../../help.pm_.c:372
msgid ""
"Any partitions that have been newly defined must be formatted for use\n"
"(formatting means creating a filesystem).\n"
@@ -3174,7 +3254,7 @@ msgid ""
"for bad blocks on the disk."
msgstr ""
-#: ../../help.pm_.c:404
+#: ../../help.pm_.c:398
msgid ""
"Your new Mandrake Linux operating system is currently being installed.\n"
"Depending on the number of packages you will be installing and the speed of\n"
@@ -3190,12 +3270,12 @@ msgstr ""
"\n"
"Por favor seja paciente."
-#: ../../help.pm_.c:412
+#: ../../help.pm_.c:406
msgid ""
"At the time you are installing Mandrake Linux, it is likely that some\n"
"packages have been updated since the initial release. Some bugs may have\n"
"been fixed, and security issues solved. To allow you to benefit from these\n"
-"updates, you are now proposed to download them from the Internet. Choose\n"
+"updates, you are now able to download them from the Internet. Choose\n"
"\"Yes\" if you have a working Internet connection, or \"No\" if you prefer\n"
"to install updated packages later.\n"
"\n"
@@ -3205,7 +3285,7 @@ msgid ""
"install the selected package(s), or \"Cancel\" to abort."
msgstr ""
-#: ../../help.pm_.c:425
+#: ../../help.pm_.c:419
msgid ""
"Before continuing, you should read carefully the terms of the license. It\n"
"covers the whole Mandrake Linux distribution, and if you do not agree with\n"
@@ -3219,14 +3299,14 @@ msgstr ""
"terminar a instalaçăo. Para continuar a instalaçăo, carregue no botăo\n"
"\"Aceitar\"."
-#: ../../help.pm_.c:432
+#: ../../help.pm_.c:426
msgid ""
"At this point, it is time to choose the security level desired for the\n"
"machine. As a rule of thumb, the more exposed the machine is, and the more\n"
"the data stored in it is crucial, the higher the security level should be.\n"
"However, a higher security level is generally obtained at the expense of\n"
-"easiness of use. Refer to the \"msec\" chapter of the ``Reference Manual''\n"
-"to get more information about the meaning of these levels.\n"
+"ease of use. Refer to the \"msec\" chapter of the ``Reference Manual'' to\n"
+"get more information about the meaning of these levels.\n"
"\n"
"If you do not know what to choose, keep the default option."
msgstr ""
@@ -3239,7 +3319,7 @@ msgstr ""
"\n"
"Se năo sabe o que escolher, guarde o valor por omissăo."
-#: ../../help.pm_.c:442
+#: ../../help.pm_.c:436
msgid ""
"At this point, you need to choose which partition(s) will be used for the\n"
"installation of your Mandrake Linux system. If partitions have already been\n"
@@ -3256,26 +3336,26 @@ msgid ""
" * \"Clear all\": this option deletes all partitions on the selected hard\n"
"drive;\n"
"\n"
-" * \"Auto allocate\": this option enables to automatically create \"Ext2\"\n"
-"and swap partitions in free space of your hard drive;\n"
+" * \"Auto allocate\": this option enables to automatically create ext3 and\n"
+"swap partitions in free space of your hard drive;\n"
"\n"
-" * \"More\": gives access to additional features:\n"
+"\"More\": gives access to additional features:\n"
"\n"
-" * \"Save partition table\": saves the partition table to a floppy.\n"
-"Useful for later partition-table recovery if necessary. It is strongly\n"
-"recommended to perform this step;\n"
+" * \"Save partition table\": saves the partition table to a floppy. Useful\n"
+"for later partition-table recovery if necessary. It is strongly recommended\n"
+"to perform this step;\n"
"\n"
-" * \"Restore partition table\": allows to restore a previously saved\n"
+" * \"Restore partition table\": allows to restore a previously saved\n"
"partition table from floppy disk;\n"
"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you\n"
-"can try to recover it using this option. Please be careful and remember\n"
-"that it can fail;\n"
+" * \"Rescue partition table\": if your partition table is damaged, you can\n"
+"try to recover it using this option. Please be careful and remember that it\n"
+"can fail;\n"
"\n"
-" * \"Reload partition table\": discards all changes and loads your\n"
-"initial partition table;\n"
+" * \"Reload partition table\": discards all changes and loads your initial\n"
+"partition table;\n"
"\n"
-" * \"Removable media automounting\": unchecking this option will force\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
"users to manually mount and unmount removable medias such as floppies and\n"
"CD-ROMs.\n"
"\n"
@@ -3303,7 +3383,7 @@ msgid ""
" * Ctrl-m to set the mount point.\n"
"\n"
"To get information about the different filesystem types available, please\n"
-"read the ext2fs chapter from the ``Reference Manual''.\n"
+"read the ext2FS chapter from the ``Reference Manual''.\n"
"\n"
"If you are installing on a PPC machine, you will want to create a small HFS\n"
"``bootstrap'' partition of at least 1MB, which will be used by the yaboot\n"
@@ -3312,7 +3392,7 @@ msgid ""
"emergency boot situations."
msgstr ""
-#: ../../help.pm_.c:513
+#: ../../help.pm_.c:507
msgid ""
"More than one Microsoft partition has been detected on your hard drive.\n"
"Please choose the one you want to resize in order to install your new\n"
@@ -3345,34 +3425,34 @@ msgid ""
"disk or partition is called \"C:\")."
msgstr ""
-#: ../../help.pm_.c:544
+#: ../../help.pm_.c:538
msgid "Please be patient. This operation can take several minutes."
msgstr "Espere por favor. Esta operaçăo pode durar alguns minutos."
-#: ../../help.pm_.c:547
+#: ../../help.pm_.c:541
msgid ""
"DrakX now needs to know if you want to perform a default (\"Recommended\")\n"
"installation or if you want to have greater control (\"Expert\"). You can\n"
"also choose to do a new install or an upgrade of an existing Mandrake Linux\n"
"system:\n"
"\n"
-" * \"Install\": completely wipes out the old system. In fact, depending on\n"
-"what currently holds your machine, you will be able to keep some old (Linux\n"
-"or other) partitions unchanged;\n"
+" * \"Install\": completely wipes out the old system, however, depending on\n"
+"what is currently installed on your machine, you may be able to keep some\n"
+"old partitions (Linux or otherwise) unchanged;\n"
"\n"
" * \"Upgrade\": this installation class allows to simply update the\n"
"packages currently installed on your Mandrake Linux system. It keeps the\n"
"current partitions of your hard drives as well as user configurations. All\n"
-"other configuration steps remain available with respect to plain\n"
+"other configuration steps remain available, similar to a normal\n"
"installation;\n"
"\n"
-" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
-"existing Mandrake Linux system while keeping all system configurations\n"
-"unchanged. Adding new packages to the current installation is also\n"
-"possible.\n"
+" * \"Upgrade Packages Only\": this new installation class allows you to\n"
+"upgrade an existing Mandrake Linux system while keeping all system\n"
+"configurations unchanged. Adding new packages to the current installation\n"
+"is also possible.\n"
"\n"
-"Upgrades should work fine for Mandrake Linux systems starting from \"8.1\"\n"
-"release.\n"
+"Upgrades should work fine on Mandrake Linux systems containing version\n"
+"\"8.1\" or later.\n"
"\n"
"Depending on your knowledge of GNU/Linux, select one of the following\n"
"choices:\n"
@@ -3381,11 +3461,11 @@ msgid ""
"operating system. The installation will be very easy and you will only be\n"
"asked a few questions;\n"
"\n"
-" * Expert: if you have a good knowledge of GNU/Linux, you can choose this\n"
-"installation class. The expert installation will allow you to perform a\n"
-"highly-customized installation. Answering some of the questions can be\n"
-"difficult if you do not have a good knowledge of GNU/Linux, so do not\n"
-"choose this unless you know what you are doing."
+" * Expert: if you have a good understanding of GNU/Linux, you may wish to\n"
+"perform a highly customized installation. Some of the decisions you will\n"
+"have to make may be difficult if you do not have good knowledge of\n"
+"GNU/Linux, so it is not recommended that those without a fair amount of\n"
+"experience select this installation class."
msgstr ""
"DrakX precisa agora de saber se você deseja fazer uma instalaçăo por\n"
"omissăo (\"Aconselhada\") ou se quer ter mais controlo (\"Perito\"). Também\n"
@@ -3422,23 +3502,28 @@ msgstr ""
"bom conhecimento sobre GNU/Linux, portanto năo escolha esta classe se\n"
"năo souber o que está a fazer."
-#: ../../help.pm_.c:584
+#: ../../help.pm_.c:578
msgid ""
"Normally, DrakX selects the right keyboard for you (depending on the\n"
-"language you have chosen) and you won't even see this step. However, you\n"
-"might not have a keyboard that corresponds exactly to your language: for\n"
-"example, if you are an English speaking Swiss person, you may still want\n"
-"your keyboard to be a Swiss keyboard. Or if you speak English but are\n"
-"located in Quebec, you may find yourself in the same situation. In both\n"
-"cases, you will have to go back to this installation step and select an\n"
-"appropriate keyboard from the list.\n"
+"language you have chosen). However, you might not have a keyboard that\n"
+"corresponds exactly to your language: for example, if you are an English\n"
+"speaking Swiss person, you may still want your keyboard to be a Swiss\n"
+"keyboard. Or if you speak English but are located in Quebec, you may find\n"
+"yourself in the same situation. In both cases, you will have to go back to\n"
+"this installation step and select an appropriate keyboard from the list.\n"
"\n"
"Click on the \"More\" button to be presented with the complete list of\n"
-"supported keyboards."
+"supported keyboards.\n"
+"\n"
+"If you choose a keyboard layout based on a non-latin alphabet, you will be\n"
+"asked on next dialog to choose the key binding that will switch the\n"
+"keyboard layout between the latin and non latin layouts."
msgstr ""
-#: ../../help.pm_.c:597
+#: ../../help.pm_.c:594
msgid ""
+"The first step is to choose your preferred language.\n"
+"\n"
"Please choose your preferred language for installation and system usage.\n"
"\n"
"Clicking on the \"Advanced\" button will allow you to select other\n"
@@ -3452,7 +3537,7 @@ msgid ""
"additional locales, click the \"OK\" button to continue."
msgstr ""
-#: ../../help.pm_.c:610
+#: ../../help.pm_.c:609
msgid ""
"DrakX generally detects the number of buttons your mouse has. If not, it\n"
"assumes you have a two-button mouse and will set it up for third-button\n"
@@ -3465,10 +3550,17 @@ msgid ""
"If you choose a mouse other than the default, a test screen will be\n"
"displayed. Use the buttons and wheel to verify that the settings are\n"
"correct. If the mouse is not working well, press the space bar or [Return]\n"
-"to \"Cancel\" and choose again."
+"to \"Cancel\" and choose again.\n"
+"\n"
+"Wheel mouses are sometimes not automatically detected. You will need to\n"
+"manually select it in the list. Be sure to select the one corresponding to\n"
+"the correct port it is attached to. After you have pressed the \"OK\"\n"
+"button, a mouse image is displayed. You then need to move the wheel of your\n"
+"mouse to activate it correctly. Then test all buttons and movements are\n"
+"correct."
msgstr ""
-#: ../../help.pm_.c:624
+#: ../../help.pm_.c:630
msgid ""
"Please select the correct port. For example, the \"COM1\" port under\n"
"Windows is named \"ttyS0\" under GNU/Linux."
@@ -3476,7 +3568,7 @@ msgstr ""
"Por favor escolha o bom dispositivo. Por exemplo, o \"COM1\" sob\n"
"Windows chama-se \"ttyS0\" sob GNU/Linux."
-#: ../../help.pm_.c:628
+#: ../../help.pm_.c:634
msgid ""
"This is the most crucial decision point for the security of your GNU/Linux\n"
"system: you have to enter the \"root\" password. \"root\" is the system\n"
@@ -3506,15 +3598,15 @@ msgid ""
"In Expert mode, you will be asked if you will be connecting to an\n"
"authentication server, like NIS or LDAP.\n"
"\n"
-"If your network uses the LDAP (or NIS) protocol for authentication, select\n"
-"\"LDAP\" (or \"NIS\") as authentication. If you do not know, ask your\n"
-"network administrator.\n"
+"If your network uses either of the LDAP, NIS, or PDC Windows Domain\n"
+"authentication services, select the appropriate one as \"authentication\".\n"
+"If you do not know, ask your network administrator.\n"
"\n"
"If your computer is not connected to any administrated network, you will\n"
"want to choose \"Local files\" for authentication."
msgstr ""
-#: ../../help.pm_.c:664
+#: ../../help.pm_.c:670
msgid ""
"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
@@ -3553,8 +3645,11 @@ msgid ""
"options. !!\n"
"\n"
"Clicking the \"Advanced\" button in this dialog will offer many advanced\n"
-"options, which are reserved to the expert user.\n"
-"\n"
+"options, which are reserved for the expert user."
+msgstr ""
+
+#: ../../help.pm_.c:710
+msgid ""
"After you have configured the general bootloader parameters, the list of\n"
"boot options which will be available at boot time will be displayed.\n"
"\n"
@@ -3562,16 +3657,7 @@ msgid ""
"automatically be added to the boot menu. Here, you can choose to fine-tune\n"
"the existing options. Select an entry and click \"Modify\" to modify or\n"
"remove it; \"Add\" creates a new entry; and \"Done\" goes on to the next\n"
-"installation step."
-msgstr ""
-
-#: ../../help.pm_.c:713
-msgid ""
-"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
-"either GNU/Linux or any other operating system present on your computer.\n"
-"Normally, these other operating systems are correctly detected and\n"
-"installed. If this is not the case, you can add an entry by hand in this\n"
-"screen. Be careful to choose the correct parameters.\n"
+"installation step.\n"
"\n"
"You may also not want to give access to these other operating systems to\n"
"anyone. In which case, you can delete the corresponding entries. But then,\n"
@@ -3625,18 +3711,18 @@ msgstr ""
#: ../../help.pm_.c:759
msgid ""
-"DrakX now detects any IDE device present in your computer. It will also\n"
-"scan for one or more PCI SCSI card(s) on your system. If a SCSI card is\n"
+"DrakX now detects any IDE devices present in your computer. It will also\n"
+"scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
"found, DrakX will automatically install the appropriate driver.\n"
"\n"
"Because hardware detection does not always detect a piece of hardware,\n"
"DrakX will ask you to confirm if a PCI SCSI card is present. Click \"Yes\"\n"
"if you know that there is a SCSI card installed in your machine. You will\n"
-"be presented a list of SCSI cards to choose from. Click \"No\" if you have\n"
-"no SCSI hardware. If you are unsure, you can check the list of hardware\n"
-"detected in your machine by selecting \"See hardware info\" and clicking\n"
-"\"OK\". Examine the list of hardware and then click on the \"OK\" button to\n"
-"return to the SCSI interface question.\n"
+"be presented with a list of SCSI cards to choose from. Click \"No\" if you\n"
+"have no SCSI hardware. If you are unsure, you can check the list of\n"
+"hardware detected in your machine by selecting \"See hardware info\" and\n"
+"clicking \"OK\". Examine the list of hardware and then click on the \"OK\"\n"
+"button to return to the SCSI interface question.\n"
"\n"
"If you have to manually specify your adapter, DrakX will ask if you want to\n"
"specify options for it. You should allow DrakX to probe the hardware for\n"
@@ -3779,7 +3865,9 @@ msgid ""
"order to configure the clock according to the time zone you are in;\n"
"\n"
" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
-"configuration wizard;\n"
+"configuration wizard. Consult the corresponding chapter of the ``User\n"
+"Guide'' for more information on how to setup a new printer. The interface\n"
+"presented there is similar to the one used during installation;\n"
"\n"
" * \"Sound card\": if a sound card is detected on your system, it is\n"
"displayed here. No modification possible at installation time;\n"
@@ -3792,7 +3880,7 @@ msgid ""
"associated with it."
msgstr ""
-#: ../../help.pm_.c:894
+#: ../../help.pm_.c:896
msgid ""
"Choose the hard drive you want to erase in order to install your new\n"
"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
@@ -3802,7 +3890,7 @@ msgstr ""
"Mandrake Linux. Cuidado, todos os ficheiros dentro dele văo ser\n"
"apagados sem possibilidade de voltar atrás."
-#: ../../help.pm_.c:899
+#: ../../help.pm_.c:901
msgid ""
"Click on \"OK\" if you want to delete all data and partitions present on\n"
"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
@@ -3830,7 +3918,7 @@ msgstr ""
msgid "You must also format %s"
msgstr "Você também deve formatar %s"
-#: ../../install_any.pm_.c:418
+#: ../../install_any.pm_.c:423
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -3855,20 +3943,29 @@ msgstr ""
"\n"
"Deseja mesmo instalar estes servidores?\n"
-#: ../../install_any.pm_.c:453
+#: ../../install_any.pm_.c:441
+#, c-format
+msgid ""
+"The following packages will be removed to allow upgrading your system: %s\n"
+"\n"
+"\n"
+"Do you really want to remove these packages?\n"
+msgstr ""
+
+#: ../../install_any.pm_.c:471
msgid "Can't use broadcast with no NIS domain"
msgstr "Năo é possível usar 'broadcast' sem algum domínio NIS"
-#: ../../install_any.pm_.c:841
+#: ../../install_any.pm_.c:862
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Insira uma disquete formatada em FAT no drive %s"
-#: ../../install_any.pm_.c:845
+#: ../../install_any.pm_.c:866
msgid "This floppy is not FAT formatted"
msgstr "Esta disquete năo está formatada em FAT"
-#: ../../install_any.pm_.c:857
+#: ../../install_any.pm_.c:878
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -3876,11 +3973,19 @@ msgstr ""
"Para usar esta selecçăo guardada de pacotes, arranque a instalaçăo com "
"``linux defcfg=floppy''"
-#: ../../install_any.pm_.c:880 ../../partition_table.pm_.c:771
+#: ../../install_any.pm_.c:901 ../../partition_table.pm_.c:767
#, c-format
msgid "Error reading file %s"
msgstr "Erro ăo ler o ficheiro %s"
+#: ../../install_any.pm_.c:1023
+msgid ""
+"An error occurred - no valid devices were found on which to create new "
+"filesystems. Please check your hardware for the cause of this problem"
+msgstr ""
+"Ocorreu um erro - nenhum dispositivo válido foi encontrado para criar novos "
+"sistemas de ficheiros. Por favor verifique no hardware a causa deste problema"
+
#: ../../install_interactive.pm_.c:23
#, c-format
msgid ""
@@ -3914,59 +4019,59 @@ msgstr ""
"\n"
"Continuar mesmo assim?"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:168
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:169
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "Tem que ter uma partiçăo FAT montada em /boot/efi"
-#: ../../install_interactive.pm_.c:91
+#: ../../install_interactive.pm_.c:92
msgid "Use free space"
msgstr "Usar espaço livre"
-#: ../../install_interactive.pm_.c:93
+#: ../../install_interactive.pm_.c:94
msgid "Not enough free space to allocate new partitions"
msgstr "Sem espaço livre suficiente para alocar as novas partiçőes"
-#: ../../install_interactive.pm_.c:101
+#: ../../install_interactive.pm_.c:102
msgid "Use existing partitions"
msgstr "Usar a partiçăo existente"
-#: ../../install_interactive.pm_.c:103
+#: ../../install_interactive.pm_.c:104
msgid "There is no existing partition to use"
msgstr "Năo existe nenhuma partiçăo para usar"
-#: ../../install_interactive.pm_.c:110
+#: ../../install_interactive.pm_.c:111
msgid "Use the Windows partition for loopback"
msgstr "Usar a partiçăo Windows para loopback"
-#: ../../install_interactive.pm_.c:113
+#: ../../install_interactive.pm_.c:114
msgid "Which partition do you want to use for Linux4Win?"
msgstr "Qual partiçăo que quer usar para o Linux4Win?"
-#: ../../install_interactive.pm_.c:115
+#: ../../install_interactive.pm_.c:116
msgid "Choose the sizes"
msgstr "Escolha os tamanhos"
-#: ../../install_interactive.pm_.c:116
+#: ../../install_interactive.pm_.c:117
msgid "Root partition size in MB: "
msgstr "Tamanho da partiçăo root em MB:"
-#: ../../install_interactive.pm_.c:117
+#: ../../install_interactive.pm_.c:118
msgid "Swap partition size in MB: "
msgstr "Tamanho da partiçăo de memória virtual em MB: "
-#: ../../install_interactive.pm_.c:126
+#: ../../install_interactive.pm_.c:128
msgid "Use the free space on the Windows partition"
msgstr "Usar o espaço livre na partiçăo Windows"
-#: ../../install_interactive.pm_.c:129
+#: ../../install_interactive.pm_.c:131
msgid "Which partition do you want to resize?"
msgstr "Qual partiçăo que quer redimensionar?"
-#: ../../install_interactive.pm_.c:131
+#: ../../install_interactive.pm_.c:133
msgid "Resizing Windows partition"
msgstr "Computando limites do sistema de ficheiros do Windows"
-#: ../../install_interactive.pm_.c:134
+#: ../../install_interactive.pm_.c:136
#, c-format
msgid ""
"The FAT resizer is unable to handle your partition, \n"
@@ -3975,7 +4080,7 @@ msgstr ""
"O redimensionador de FAT é incapaz de manipular sua partiçăo, \n"
"ocorreu o seguinte erro: %s"
-#: ../../install_interactive.pm_.c:137
+#: ../../install_interactive.pm_.c:139
msgid ""
"Your Windows partition is too fragmented. Please reboot your computer under "
"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
@@ -3983,7 +4088,7 @@ msgid ""
msgstr ""
"A sua partiçăo Windows está muito fragmentada, corra primeiro o ``defrag''"
-#: ../../install_interactive.pm_.c:138
+#: ../../install_interactive.pm_.c:140
msgid ""
"WARNING!\n"
"\n"
@@ -4002,21 +4107,21 @@ msgstr ""
"entăo reiniciar a instalaçăo. Também deveria fazer backup dos seus\n"
"dados. Quando tiver certeza, pressione Ok."
-#: ../../install_interactive.pm_.c:148
+#: ../../install_interactive.pm_.c:150
msgid "Which size do you want to keep for Windows on"
msgstr "Quanto de espaço quer deixar para o Windows em"
-#: ../../install_interactive.pm_.c:149
+#: ../../install_interactive.pm_.c:151
#, c-format
msgid "partition %s"
msgstr "partiçăo %s"
-#: ../../install_interactive.pm_.c:156
+#: ../../install_interactive.pm_.c:158
#, c-format
msgid "FAT resizing failed: %s"
msgstr "Falha no redimensionamento FAT: %s"
-#: ../../install_interactive.pm_.c:171
+#: ../../install_interactive.pm_.c:173
msgid ""
"There is no FAT partition to resize or to use as loopback (or not enough "
"space left)"
@@ -4024,33 +4129,33 @@ msgstr ""
"Năo existem partiçőes FAT para redimensionar ou para usar como loopback (ou "
"năo existe espaço suficiente)"
-#: ../../install_interactive.pm_.c:177
+#: ../../install_interactive.pm_.c:179
msgid "Erase entire disk"
msgstr "Apagar o disco inteiro"
-#: ../../install_interactive.pm_.c:177
+#: ../../install_interactive.pm_.c:179
msgid "Remove Windows(TM)"
msgstr "Remover Windows(TM)"
-#: ../../install_interactive.pm_.c:180
+#: ../../install_interactive.pm_.c:182
msgid "You have more than one hard drive, which one do you install linux on?"
msgstr "Tem mais de um disco rígido, em qual deles quer instalar o linux?"
-#: ../../install_interactive.pm_.c:183
+#: ../../install_interactive.pm_.c:185
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr ""
"Todas as partiçőes existentes e os dados nelas contidos serăo perdidos %s"
-#: ../../install_interactive.pm_.c:191
+#: ../../install_interactive.pm_.c:193
msgid "Custom disk partitioning"
msgstr "Particionamento de disco personalizado"
-#: ../../install_interactive.pm_.c:195
+#: ../../install_interactive.pm_.c:197
msgid "Use fdisk"
msgstr "Usar fdisk"
-#: ../../install_interactive.pm_.c:198
+#: ../../install_interactive.pm_.c:200
#, c-format
msgid ""
"You can now partition %s.\n"
@@ -4059,28 +4164,28 @@ msgstr ""
"Pode agora particionar %s.\n"
"Quando terminar, năo esqueça de guardar usando `w'"
-#: ../../install_interactive.pm_.c:227
+#: ../../install_interactive.pm_.c:229
msgid "You don't have enough free space on your Windows partition"
msgstr "Năo tem espaço livre suficiente na sua partiçăo Windows"
-#: ../../install_interactive.pm_.c:243
+#: ../../install_interactive.pm_.c:245
msgid "I can't find any room for installing"
msgstr "Năo consigo encontrar espaço para instalaçăo"
-#: ../../install_interactive.pm_.c:246
+#: ../../install_interactive.pm_.c:248
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr "O assistente de particionamento DrakX encontrou as seguintes soluçőes:"
-#: ../../install_interactive.pm_.c:250
+#: ../../install_interactive.pm_.c:252
#, c-format
msgid "Partitioning failed: %s"
msgstr "O particionamento falhou: %s"
-#: ../../install_interactive.pm_.c:260
+#: ../../install_interactive.pm_.c:262
msgid "Bringing up the network"
msgstr "A ligar a rede"
-#: ../../install_interactive.pm_.c:265
+#: ../../install_interactive.pm_.c:267
msgid "Bringing down the network"
msgstr "A desligar a rede"
@@ -4092,12 +4197,12 @@ msgstr ""
"Ocorreu um erro, mas eu năo sei como lidar com ele.\n"
"Continue a seu próprio risco."
-#: ../../install_steps.pm_.c:210
+#: ../../install_steps.pm_.c:211
#, c-format
msgid "Duplicate mount point %s"
msgstr "Ponto de montagem %s duplicado"
-#: ../../install_steps.pm_.c:379
+#: ../../install_steps.pm_.c:380
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -4109,12 +4214,12 @@ msgstr ""
"Verifique o cdrom num computador instalado usando \"rpm -qpl Mandrake/RPMS/*."
"rpm\"\n"
-#: ../../install_steps.pm_.c:451
+#: ../../install_steps.pm_.c:452
#, c-format
msgid "Welcome to %s"
msgstr "Bem-vindo à %s"
-#: ../../install_steps.pm_.c:530 ../../install_steps.pm_.c:770
+#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:772
msgid "No floppy drive available"
msgstr "Nenhum drive de disquete disponível"
@@ -4145,70 +4250,70 @@ msgstr "Classe de Instalaçăo"
msgid "Please choose one of the following classes of installation:"
msgstr "Por favor escolha uma das seguintes classes de instalaçăo:"
-#: ../../install_steps_gtk.pm_.c:243 ../../install_steps_interactive.pm_.c:694
+#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:678
msgid "Package Group Selection"
msgstr "Selecçăo de Grupo de Pacotes"
-#: ../../install_steps_gtk.pm_.c:276 ../../install_steps_interactive.pm_.c:709
+#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:693
msgid "Individual package selection"
msgstr "Selecçăo individual de pacotes"
-#: ../../install_steps_gtk.pm_.c:299 ../../install_steps_interactive.pm_.c:633
+#: ../../install_steps_gtk.pm_.c:293 ../../install_steps_interactive.pm_.c:617
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Tamanho total: %d / %d MB"
-#: ../../install_steps_gtk.pm_.c:341
+#: ../../install_steps_gtk.pm_.c:335
msgid "Bad package"
msgstr "Pacote defeituoso"
-#: ../../install_steps_gtk.pm_.c:342
+#: ../../install_steps_gtk.pm_.c:336
#, c-format
msgid "Name: %s\n"
msgstr "Nome: %s\n"
-#: ../../install_steps_gtk.pm_.c:343
+#: ../../install_steps_gtk.pm_.c:337
#, c-format
msgid "Version: %s\n"
msgstr "Versăo: %s\n"
-#: ../../install_steps_gtk.pm_.c:344
+#: ../../install_steps_gtk.pm_.c:338
#, c-format
msgid "Size: %d KB\n"
msgstr "Tamanho: %d KB\n"
-#: ../../install_steps_gtk.pm_.c:345
+#: ../../install_steps_gtk.pm_.c:339
#, c-format
msgid "Importance: %s\n"
msgstr "Importância: %s\n"
-#: ../../install_steps_gtk.pm_.c:367
+#: ../../install_steps_gtk.pm_.c:361
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr ""
"Năo pode seleccionar esse pacote pois năo existe espaço livre para o instalar"
-#: ../../install_steps_gtk.pm_.c:372
+#: ../../install_steps_gtk.pm_.c:366
msgid "The following packages are going to be installed"
msgstr "Os seguintes pacotes serăo instalados"
-#: ../../install_steps_gtk.pm_.c:373
+#: ../../install_steps_gtk.pm_.c:367
msgid "The following packages are going to be removed"
msgstr "Os seguintes pacotes serăo removidos"
-#: ../../install_steps_gtk.pm_.c:385
+#: ../../install_steps_gtk.pm_.c:379
msgid "You can't select/unselect this package"
msgstr "Năo pode seleccionar/deseleccionar esse pacote"
-#: ../../install_steps_gtk.pm_.c:397
+#: ../../install_steps_gtk.pm_.c:391
msgid "This is a mandatory package, it can't be unselected"
msgstr "Este é um pacote obrigatório, tem que ser seleccionado"
-#: ../../install_steps_gtk.pm_.c:399
+#: ../../install_steps_gtk.pm_.c:393
msgid "You can't unselect this package. It is already installed"
msgstr "Năo pode deixar de seleccionar este pacote. Ele já está instalado"
-#: ../../install_steps_gtk.pm_.c:402
+#: ../../install_steps_gtk.pm_.c:396
msgid ""
"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
@@ -4216,75 +4321,75 @@ msgstr ""
"Este pacote tem que ser actualizado\n"
"Tem certeza que năo o quer seleccionar?"
-#: ../../install_steps_gtk.pm_.c:405
+#: ../../install_steps_gtk.pm_.c:399
msgid "You can't unselect this package. It must be upgraded"
msgstr ""
"Năo pode deixar de seleccionar este pacote. Ele tem que ser actualizado"
-#: ../../install_steps_gtk.pm_.c:410
+#: ../../install_steps_gtk.pm_.c:404
msgid "Show automatically selected packages"
msgstr "Mostrar automaticamente pacotes seleccionados"
-#: ../../install_steps_gtk.pm_.c:411 ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_gtk.pm_.c:405 ../../install_steps_interactive.pm_.c:255
#: ../../install_steps_interactive.pm_.c:259
-#: ../../standalone/drakbackup_.c:3600
+#: ../../standalone/drakbackup_.c:4257
msgid "Install"
msgstr "Instalar"
-#: ../../install_steps_gtk.pm_.c:414
+#: ../../install_steps_gtk.pm_.c:408
msgid "Load/Save on floppy"
msgstr "Carregar/Gravar em disquete"
-#: ../../install_steps_gtk.pm_.c:415
+#: ../../install_steps_gtk.pm_.c:409
msgid "Updating package selection"
msgstr "Refrescando a selecçăo de pacotes"
-#: ../../install_steps_gtk.pm_.c:420
+#: ../../install_steps_gtk.pm_.c:414
msgid "Minimal install"
msgstr "Instalaçăo mínima"
-#: ../../install_steps_gtk.pm_.c:435 ../../install_steps_interactive.pm_.c:538
+#: ../../install_steps_gtk.pm_.c:429 ../../install_steps_interactive.pm_.c:522
msgid "Choose the packages you want to install"
msgstr "Escolha os pacotes que deseja instalar"
-#: ../../install_steps_gtk.pm_.c:451 ../../install_steps_interactive.pm_.c:778
+#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:762
msgid "Installing"
msgstr "A instalar"
-#: ../../install_steps_gtk.pm_.c:457
+#: ../../install_steps_gtk.pm_.c:451
msgid "Estimating"
msgstr "A estimar"
-#: ../../install_steps_gtk.pm_.c:464
+#: ../../install_steps_gtk.pm_.c:458
msgid "Time remaining "
msgstr "Tempo restante "
-#: ../../install_steps_gtk.pm_.c:476
+#: ../../install_steps_gtk.pm_.c:470
msgid "Please wait, preparing installation..."
msgstr "Por favor aguarde, a preparar a instalaçăo"
-#: ../../install_steps_gtk.pm_.c:560
+#: ../../install_steps_gtk.pm_.c:554
#, c-format
msgid "%d packages"
msgstr "%d pacotes"
-#: ../../install_steps_gtk.pm_.c:565
+#: ../../install_steps_gtk.pm_.c:559
#, c-format
msgid "Installing package %s"
msgstr "A instalar pacote %s"
-#: ../../install_steps_gtk.pm_.c:602 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:802
+#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:786
#: ../../standalone/drakautoinst_.c:202
msgid "Accept"
msgstr "Aceitar"
-#: ../../install_steps_gtk.pm_.c:602 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:802
+#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:786
msgid "Refuse"
msgstr "Recusar"
-#: ../../install_steps_gtk.pm_.c:603 ../../install_steps_interactive.pm_.c:803
+#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:787
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4299,17 +4404,17 @@ msgstr ""
"estiver pronto.\n"
"Se năo o tiver, prima Cancelar para evitar a instalaçăo deste Cd-Rom."
-#: ../../install_steps_gtk.pm_.c:617 ../../install_steps_gtk.pm_.c:621
-#: ../../install_steps_interactive.pm_.c:815
-#: ../../install_steps_interactive.pm_.c:819
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_gtk.pm_.c:615
+#: ../../install_steps_interactive.pm_.c:799
+#: ../../install_steps_interactive.pm_.c:803
msgid "Go on anyway?"
msgstr "Continuar mesmo assim?"
-#: ../../install_steps_gtk.pm_.c:617 ../../install_steps_interactive.pm_.c:815
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:799
msgid "There was an error ordering packages:"
msgstr "Houve um erro na ordenaçăo dos pacotes:"
-#: ../../install_steps_gtk.pm_.c:621 ../../install_steps_interactive.pm_.c:819
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:803
msgid "There was an error installing packages:"
msgstr "Houve um erro a instalar os pacotes:"
@@ -4511,7 +4616,7 @@ msgid "Are you sure you refuse the licence?"
msgstr "Tem a certeza de recusar a licença?"
#: ../../install_steps_interactive.pm_.c:211
-#: ../../install_steps_interactive.pm_.c:1038
+#: ../../install_steps_interactive.pm_.c:1023
#: ../../standalone/keyboarddrake_.c:31
msgid "Keyboard"
msgstr "Teclado"
@@ -4559,11 +4664,11 @@ msgstr "Actualizar somente os pacotes"
msgid "Please choose the type of your mouse."
msgstr "Por favor escolha o tipo de rato."
-#: ../../install_steps_interactive.pm_.c:281 ../../standalone/mousedrake_.c:59
+#: ../../install_steps_interactive.pm_.c:281 ../../standalone/mousedrake_.c:60
msgid "Mouse Port"
msgstr "Porta do Rato"
-#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:61
msgid "Please choose on which serial port your mouse is connected to."
msgstr "Por favor escolha a que porta série o rato está ligado."
@@ -4595,43 +4700,20 @@ msgstr "A configurar IDE"
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:336
+#: ../../install_steps_interactive.pm_.c:338
msgid "No partition available"
msgstr "sem partiçőes disponíveis"
-#: ../../install_steps_interactive.pm_.c:339
+#: ../../install_steps_interactive.pm_.c:341
msgid "Scanning partitions to find mount points"
msgstr "Procurando partiçőes para encontrar pontos de montagem"
-#: ../../install_steps_interactive.pm_.c:347
+#: ../../install_steps_interactive.pm_.c:349
msgid "Choose the mount points"
msgstr "Escolha os pontos de montagem"
-#: ../../install_steps_interactive.pm_.c:366
-#, c-format
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to not allow DrakX to modify the partition table.\n"
-"(the error is %s)\n"
-"\n"
-"Do you agree to loose all the partitions?\n"
-msgstr ""
-"Năo consigo ler sua tabela de partiçăo, é muito defeituosa para mim :(\n"
-"Eu posso tentar continuar limpando as partiçőes defeituosas (TODOS OS DADOS\n"
-"serăo perdidos!). A outra soluçăo é năo deixar o DrakX modificar a tabela\n"
-"de partiçőes. (o erro é %s)\n"
-
#: ../../install_steps_interactive.pm_.c:379
msgid ""
-"DiskDrake failed to read correctly the partition table.\n"
-"Continue at your own risk!"
-msgstr ""
-"O DiskDrake falhou na leitura da tabela de partiçőes.\n"
-"Continue por sua conta e risco!"
-
-#: ../../install_steps_interactive.pm_.c:396
-msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
msgstr ""
@@ -4639,42 +4721,42 @@ msgstr ""
"arrancar o seu sistema, vai precisar de criar a partiçăo de arranque no "
"DiskDrake"
-#: ../../install_steps_interactive.pm_.c:405
+#: ../../install_steps_interactive.pm_.c:388
msgid "No root partition found to perform an upgrade"
msgstr "Nenhuma partiçăo raiz foi encontrada para actualizar"
-#: ../../install_steps_interactive.pm_.c:406
+#: ../../install_steps_interactive.pm_.c:389
msgid "Root Partition"
msgstr "Partiçăo Root"
-#: ../../install_steps_interactive.pm_.c:407
+#: ../../install_steps_interactive.pm_.c:390
msgid "What is the root partition (/) of your system?"
msgstr "Qual a partiçăo root (/) do seu sistema?"
-#: ../../install_steps_interactive.pm_.c:421
+#: ../../install_steps_interactive.pm_.c:404
msgid "You need to reboot for the partition table modifications to take place"
msgstr ""
"Precisa reiniciar para que as modificaçőes na tabela de partiçăo tenham "
"efeito"
-#: ../../install_steps_interactive.pm_.c:445
+#: ../../install_steps_interactive.pm_.c:428
msgid "Choose the partitions you want to format"
msgstr "Escolha as partiçőes que quer formatar"
-#: ../../install_steps_interactive.pm_.c:446
+#: ../../install_steps_interactive.pm_.c:429
msgid "Check bad blocks?"
msgstr "Verificar blocos defeituosos?"
-#: ../../install_steps_interactive.pm_.c:473
+#: ../../install_steps_interactive.pm_.c:456
msgid "Formatting partitions"
msgstr "A formatar partiçőes"
-#: ../../install_steps_interactive.pm_.c:475
+#: ../../install_steps_interactive.pm_.c:458
#, c-format
msgid "Creating and formatting file %s"
msgstr "A criar e formatar ficheiro %s"
-#: ../../install_steps_interactive.pm_.c:480
+#: ../../install_steps_interactive.pm_.c:463
#, c-format
msgid ""
"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
@@ -4683,29 +4765,29 @@ msgstr ""
"A verificaçăo do sistema de ficheiros %s falhou. Deseja corrigir os erros? "
"(cuidado, pode perder dados)"
-#: ../../install_steps_interactive.pm_.c:482
+#: ../../install_steps_interactive.pm_.c:465
msgid "Not enough swap space to fulfill installation, please add some"
msgstr ""
"Sem memória virtual suficiente para completar a instalaçăo, por favor "
"adicione mais"
-#: ../../install_steps_interactive.pm_.c:489
+#: ../../install_steps_interactive.pm_.c:472
msgid "Looking for available packages and rebuilding rpm database..."
msgstr "A procurar pacotes disponíveis e a reconstruir a base rpm..."
-#: ../../install_steps_interactive.pm_.c:490
+#: ../../install_steps_interactive.pm_.c:473
msgid "Looking for available packages..."
msgstr "A procurar pacotes disponíveis..."
-#: ../../install_steps_interactive.pm_.c:493
+#: ../../install_steps_interactive.pm_.c:476
msgid "Looking at packages already installed..."
msgstr "A procurar os pacotes já instalados..."
-#: ../../install_steps_interactive.pm_.c:497
+#: ../../install_steps_interactive.pm_.c:480
msgid "Finding packages to upgrade..."
msgstr "A procurar pacotes para actualizar"
-#: ../../install_steps_interactive.pm_.c:515
+#: ../../install_steps_interactive.pm_.c:498
#, c-format
msgid ""
"Your system does not have enough space left for installation or upgrade (%d "
@@ -4714,7 +4796,7 @@ msgstr ""
"O seu sistema năo tem espaço suficiente para instalaçăo ou actualizaçăo (%d "
"> %d)"
-#: ../../install_steps_interactive.pm_.c:550
+#: ../../install_steps_interactive.pm_.c:534
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
@@ -4722,35 +4804,35 @@ msgstr ""
"Por favor carregue ou grave uma selecçăo de pacotes numa\n"
"disquete. O formato é o mesmo que nas disquetes de auto_install."
-#: ../../install_steps_interactive.pm_.c:553
+#: ../../install_steps_interactive.pm_.c:537
msgid "Load from floppy"
msgstr "Restaurar a partir da disquete"
-#: ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_interactive.pm_.c:539
msgid "Loading from floppy"
msgstr "A restaurar da disquete"
-#: ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_interactive.pm_.c:539
msgid "Package selection"
msgstr "Selecçăo de Pacotes"
-#: ../../install_steps_interactive.pm_.c:560
+#: ../../install_steps_interactive.pm_.c:544
msgid "Insert a floppy containing package selection"
msgstr "Insira uma disquete com a selecçăo de pacotes"
-#: ../../install_steps_interactive.pm_.c:572
+#: ../../install_steps_interactive.pm_.c:556
msgid "Save on floppy"
msgstr "Guardar em disquete"
-#: ../../install_steps_interactive.pm_.c:646
+#: ../../install_steps_interactive.pm_.c:630
msgid "Selected size is larger than available space"
msgstr "O tamanho seleccionado é maior que o espaço disponível"
-#: ../../install_steps_interactive.pm_.c:660
+#: ../../install_steps_interactive.pm_.c:644
msgid "Type of install"
msgstr "Tipo de instalaçăo"
-#: ../../install_steps_interactive.pm_.c:661
+#: ../../install_steps_interactive.pm_.c:645
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
@@ -4758,19 +4840,19 @@ msgstr ""
"Você năo escolheu nenhum grupo de pacotes.\n"
"Escolha por favor o tipo de instalaçăo mínima que deseja:"
-#: ../../install_steps_interactive.pm_.c:664
+#: ../../install_steps_interactive.pm_.c:648
msgid "With X"
msgstr "Com X"
-#: ../../install_steps_interactive.pm_.c:666
+#: ../../install_steps_interactive.pm_.c:650
msgid "With basic documentation (recommended!)"
msgstr "Com a documentaçăo de base (recomendado!)"
-#: ../../install_steps_interactive.pm_.c:667
+#: ../../install_steps_interactive.pm_.c:651
msgid "Truly minimal install (especially no urpmi)"
msgstr "Verdadeira instalaçăo mínima (nem sequer urpmi)"
-#: ../../install_steps_interactive.pm_.c:752
+#: ../../install_steps_interactive.pm_.c:736
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -4780,16 +4862,16 @@ msgstr ""
"Se năo tiver nenhum desses CDs, clique em Cancelar.\n"
"Se apenas alguns CDs estiverem em falta, desmarque-os e entăo clique em Ok."
-#: ../../install_steps_interactive.pm_.c:757
+#: ../../install_steps_interactive.pm_.c:741
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "Cd-Rom rotulado como \"%s\""
-#: ../../install_steps_interactive.pm_.c:778
+#: ../../install_steps_interactive.pm_.c:762
msgid "Preparing installation"
msgstr "A preparar a instalaçăo"
-#: ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:771
#, c-format
msgid ""
"Installing package %s\n"
@@ -4798,21 +4880,21 @@ msgstr ""
"Instalando o pacote %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:833
+#: ../../install_steps_interactive.pm_.c:817
msgid "Post-install configuration"
msgstr "Configuraçăo pós-instalaçăo"
-#: ../../install_steps_interactive.pm_.c:839
+#: ../../install_steps_interactive.pm_.c:823
#, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Insira a disquete de arranque utilizada no drive %s"
-#: ../../install_steps_interactive.pm_.c:845
+#: ../../install_steps_interactive.pm_.c:829
#, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Insira uma disquete com os módulos actualizados no drive %s"
-#: ../../install_steps_interactive.pm_.c:865
+#: ../../install_steps_interactive.pm_.c:849
msgid ""
"You now have the opportunity to download encryption software.\n"
"\n"
@@ -4888,7 +4970,7 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:904
+#: ../../install_steps_interactive.pm_.c:888
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
"have been released after the distribution was released. They may\n"
@@ -4908,160 +4990,160 @@ msgstr ""
"\n"
"deseja instalar as actualizaçőes ?"
-#: ../../install_steps_interactive.pm_.c:919
+#: ../../install_steps_interactive.pm_.c:903
msgid ""
"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr ""
"A contactar o site Mandrake Linux para obter a lista dos servidores espelho "
"disponivéis..."
-#: ../../install_steps_interactive.pm_.c:924
+#: ../../install_steps_interactive.pm_.c:908
msgid "Choose a mirror from which to get the packages"
msgstr "Escolha um servidor espelho de onde obter os pacotes"
-#: ../../install_steps_interactive.pm_.c:933
+#: ../../install_steps_interactive.pm_.c:917
msgid "Contacting the mirror to get the list of available packages..."
msgstr ""
"A contactar o servidor espelho para obter a lista de pacotes disponíveis"
-#: ../../install_steps_interactive.pm_.c:960
+#: ../../install_steps_interactive.pm_.c:945
msgid "Which is your timezone?"
msgstr "Qual é o seu fuso horário?"
-#: ../../install_steps_interactive.pm_.c:965
+#: ../../install_steps_interactive.pm_.c:950
msgid "Hardware clock set to GMT"
msgstr "O relógio material está na hora GMT"
-#: ../../install_steps_interactive.pm_.c:966
+#: ../../install_steps_interactive.pm_.c:951
msgid "Automatic time synchronization (using NTP)"
msgstr "Sincronizaçăo automática da hora (com NTP)"
-#: ../../install_steps_interactive.pm_.c:973
+#: ../../install_steps_interactive.pm_.c:958
msgid "NTP Server"
msgstr "Servidor NTP"
-#: ../../install_steps_interactive.pm_.c:1007
-#: ../../install_steps_interactive.pm_.c:1015
+#: ../../install_steps_interactive.pm_.c:992
+#: ../../install_steps_interactive.pm_.c:1000
msgid "Remote CUPS server"
msgstr "Servidor CUPS remoto"
-#: ../../install_steps_interactive.pm_.c:1008
+#: ../../install_steps_interactive.pm_.c:993
msgid "No printer"
msgstr "Nenhuma impressora"
-#: ../../install_steps_interactive.pm_.c:1025
+#: ../../install_steps_interactive.pm_.c:1010
msgid "Do you have an ISA sound card?"
msgstr "Tem alguma placa de som ISA?"
-#: ../../install_steps_interactive.pm_.c:1027
+#: ../../install_steps_interactive.pm_.c:1012
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
"Lance \"sndconfig\" depois da instalaçăo para configurar a sua placa de som"
-#: ../../install_steps_interactive.pm_.c:1029
+#: ../../install_steps_interactive.pm_.c:1014
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
"Nenhum dispositivo de som foi encontrado. Tente \"harddrake\" depois da "
"instalaçăo"
-#: ../../install_steps_interactive.pm_.c:1034 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1019 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Sumário"
-#: ../../install_steps_interactive.pm_.c:1037
+#: ../../install_steps_interactive.pm_.c:1022
msgid "Mouse"
msgstr "Rato"
-#: ../../install_steps_interactive.pm_.c:1039
+#: ../../install_steps_interactive.pm_.c:1024
msgid "Timezone"
msgstr "Fuso horário"
-#: ../../install_steps_interactive.pm_.c:1040 ../../printerdrake.pm_.c:2728
-#: ../../printerdrake.pm_.c:2814
+#: ../../install_steps_interactive.pm_.c:1025 ../../printerdrake.pm_.c:2937
+#: ../../printerdrake.pm_.c:3026
msgid "Printer"
msgstr "Impressora"
-#: ../../install_steps_interactive.pm_.c:1042
+#: ../../install_steps_interactive.pm_.c:1027
msgid "ISDN card"
msgstr "Placa RDIS"
-#: ../../install_steps_interactive.pm_.c:1045
-#: ../../install_steps_interactive.pm_.c:1047
+#: ../../install_steps_interactive.pm_.c:1030
+#: ../../install_steps_interactive.pm_.c:1032
msgid "Sound card"
msgstr "Placa de Som"
-#: ../../install_steps_interactive.pm_.c:1049
+#: ../../install_steps_interactive.pm_.c:1034
msgid "TV card"
msgstr "Placa TV"
-#: ../../install_steps_interactive.pm_.c:1089
-#: ../../install_steps_interactive.pm_.c:1114
-#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1074
+#: ../../install_steps_interactive.pm_.c:1099
+#: ../../install_steps_interactive.pm_.c:1103
msgid "LDAP"
msgstr "LDAP"
-#: ../../install_steps_interactive.pm_.c:1090
-#: ../../install_steps_interactive.pm_.c:1114
-#: ../../install_steps_interactive.pm_.c:1127
+#: ../../install_steps_interactive.pm_.c:1075
+#: ../../install_steps_interactive.pm_.c:1099
+#: ../../install_steps_interactive.pm_.c:1112
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1091
-#: ../../install_steps_interactive.pm_.c:1114
-#: ../../install_steps_interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1141
+#: ../../install_steps_interactive.pm_.c:1076
+#: ../../install_steps_interactive.pm_.c:1099
+#: ../../install_steps_interactive.pm_.c:1120
+#: ../../install_steps_interactive.pm_.c:1126
msgid "Windows Domain"
msgstr "Domínio Windows"
-#: ../../install_steps_interactive.pm_.c:1092
-#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1077
+#: ../../install_steps_interactive.pm_.c:1099
msgid "Local files"
msgstr "Ficheiros locais"
-#: ../../install_steps_interactive.pm_.c:1101
-#: ../../install_steps_interactive.pm_.c:1102 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1086
+#: ../../install_steps_interactive.pm_.c:1087 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Especificar senha do root"
-#: ../../install_steps_interactive.pm_.c:1103
+#: ../../install_steps_interactive.pm_.c:1088
msgid "No password"
msgstr "Nenhuma senha"
-#: ../../install_steps_interactive.pm_.c:1108
+#: ../../install_steps_interactive.pm_.c:1093
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr "Essa senha é muito simples (deve ter ăo menos %d caracteres)"
-#: ../../install_steps_interactive.pm_.c:1114 ../../network/modem.pm_.c:49
+#: ../../install_steps_interactive.pm_.c:1099 ../../network/modem.pm_.c:49
#: ../../standalone/drakconnect_.c:625 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Autenticaçăo?"
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1107
msgid "Authentication LDAP"
msgstr "Autenticaçăo LDAP"
-#: ../../install_steps_interactive.pm_.c:1123
+#: ../../install_steps_interactive.pm_.c:1108
msgid "LDAP Base dn"
msgstr "dn de base LDAP"
-#: ../../install_steps_interactive.pm_.c:1124
+#: ../../install_steps_interactive.pm_.c:1109
msgid "LDAP Server"
msgstr "Servidor LDAP"
-#: ../../install_steps_interactive.pm_.c:1130
+#: ../../install_steps_interactive.pm_.c:1115
msgid "Authentication NIS"
msgstr "Autenticaçăo NIS"
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1116
msgid "NIS Domain"
msgstr "Domínio NIS"
-#: ../../install_steps_interactive.pm_.c:1132
+#: ../../install_steps_interactive.pm_.c:1117
msgid "NIS Server"
msgstr "Servidor NIS"
-#: ../../install_steps_interactive.pm_.c:1138
+#: ../../install_steps_interactive.pm_.c:1123
msgid ""
"For this to work for a W2K PDC, you will probably need to have the admin "
"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
@@ -5077,19 +5159,19 @@ msgid ""
"good."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1140
+#: ../../install_steps_interactive.pm_.c:1125
msgid "Authentication Windows Domain"
msgstr "Autenticaçăo Domínio Windows"
-#: ../../install_steps_interactive.pm_.c:1142
+#: ../../install_steps_interactive.pm_.c:1127
msgid "Domain Admin User Name"
msgstr "Nome do Administrador do Domínio"
-#: ../../install_steps_interactive.pm_.c:1143
+#: ../../install_steps_interactive.pm_.c:1128
msgid "Domain Admin Password"
msgstr "Senha do Administrador de Domínio"
-#: ../../install_steps_interactive.pm_.c:1178
+#: ../../install_steps_interactive.pm_.c:1163
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
"depending on the normal bootloader. This is useful if you don't want to "
@@ -5121,19 +5203,19 @@ msgstr ""
"disquete\n"
"no drive e aperte em \"OK\"."
-#: ../../install_steps_interactive.pm_.c:1194
+#: ../../install_steps_interactive.pm_.c:1179
msgid "First floppy drive"
msgstr "Primeiro drive de disquetes"
-#: ../../install_steps_interactive.pm_.c:1195
+#: ../../install_steps_interactive.pm_.c:1180
msgid "Second floppy drive"
msgstr "Segundo drive de disquetes"
-#: ../../install_steps_interactive.pm_.c:1196 ../../printerdrake.pm_.c:2277
+#: ../../install_steps_interactive.pm_.c:1181 ../../printerdrake.pm_.c:2470
msgid "Skip"
msgstr "Saltar"
-#: ../../install_steps_interactive.pm_.c:1201
+#: ../../install_steps_interactive.pm_.c:1186
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5160,7 +5242,7 @@ msgstr ""
"Deseja criar uma disquete de arranque para o seu sistema?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1207
+#: ../../install_steps_interactive.pm_.c:1192
msgid ""
"\n"
"\n"
@@ -5174,29 +5256,29 @@ msgstr ""
"criar um disco de arranque numa disquete de 1.44 Mb vai\n"
"certamente falhar, pois XFS precisa de um grande piloto)."
-#: ../../install_steps_interactive.pm_.c:1215
+#: ../../install_steps_interactive.pm_.c:1200
msgid "Sorry, no floppy drive available"
msgstr "Desculpe, nenhum drive de disquetes disponível"
-#: ../../install_steps_interactive.pm_.c:1219
+#: ../../install_steps_interactive.pm_.c:1204
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr ""
"Escolha o drive de disquetes que quer usar para criar a disquete de arranque"
-#: ../../install_steps_interactive.pm_.c:1223
+#: ../../install_steps_interactive.pm_.c:1208
#, c-format
msgid "Insert a floppy in %s"
msgstr "Insira uma disquete em %s"
-#: ../../install_steps_interactive.pm_.c:1226
+#: ../../install_steps_interactive.pm_.c:1211
msgid "Creating bootdisk..."
msgstr "A criar disquete de arranque"
-#: ../../install_steps_interactive.pm_.c:1233
+#: ../../install_steps_interactive.pm_.c:1218
msgid "Preparing bootloader..."
msgstr "A preparar o carregador de arranque"
-#: ../../install_steps_interactive.pm_.c:1244
+#: ../../install_steps_interactive.pm_.c:1229
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5209,11 +5291,11 @@ msgstr ""
"A instalaçăo vai continuar, mas vai precisar de utilizar\n"
" BootX para arrancar a sua maquina."
-#: ../../install_steps_interactive.pm_.c:1250
+#: ../../install_steps_interactive.pm_.c:1235
msgid "Do you want to use aboot?"
msgstr "Quer usar o aboot?"
-#: ../../install_steps_interactive.pm_.c:1253
+#: ../../install_steps_interactive.pm_.c:1238
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -5221,16 +5303,16 @@ msgstr ""
"Erro ăo instalar o aboot, \n"
"tento forçar a instalaçăo, mesmo que isso estrague a primeira partiçăo?"
-#: ../../install_steps_interactive.pm_.c:1260
+#: ../../install_steps_interactive.pm_.c:1245
msgid "Installing bootloader"
msgstr "A instalar o carregador de arranque"
-#: ../../install_steps_interactive.pm_.c:1266
+#: ../../install_steps_interactive.pm_.c:1251
msgid "Installation of bootloader failed. The following error occured:"
msgstr ""
"A instalaçăo do carregador de arranque falhou. Ocorreram os seguintes erros:"
-#: ../../install_steps_interactive.pm_.c:1274
+#: ../../install_steps_interactive.pm_.c:1259
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -5248,17 +5330,17 @@ msgstr ""
" E depois escreva : shut-down\n"
"No próximo inicio deveria obter o carregador de arranque."
-#: ../../install_steps_interactive.pm_.c:1308
+#: ../../install_steps_interactive.pm_.c:1293
#: ../../standalone/drakautoinst_.c:79
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Insira uma disquete vazia no drive %s"
-#: ../../install_steps_interactive.pm_.c:1312
+#: ../../install_steps_interactive.pm_.c:1297
msgid "Creating auto install floppy..."
msgstr "A criar disquete de auto-instalaçăo"
-#: ../../install_steps_interactive.pm_.c:1323
+#: ../../install_steps_interactive.pm_.c:1308
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -5268,7 +5350,7 @@ msgstr ""
"\n"
"Quer realmente sair agora?"
-#: ../../install_steps_interactive.pm_.c:1334
+#: ../../install_steps_interactive.pm_.c:1319
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
@@ -5301,15 +5383,15 @@ msgstr ""
"Informaçăo sobre como configurar o seu sistema está disponível no\n"
"capítulo pós-instalaçăo do Guia Oficial do Utilizador do Mandrake Linux."
-#: ../../install_steps_interactive.pm_.c:1347
+#: ../../install_steps_interactive.pm_.c:1332
msgid "http://www.mandrakelinux.com/en/90errata.php3"
msgstr "http://www.mandrakelinux.com/en/90errata.php3"
-#: ../../install_steps_interactive.pm_.c:1352
+#: ../../install_steps_interactive.pm_.c:1337
msgid "Generate auto install floppy"
msgstr "Criar disquete de auto instalaçăo"
-#: ../../install_steps_interactive.pm_.c:1354
+#: ../../install_steps_interactive.pm_.c:1339
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -5323,15 +5405,15 @@ msgstr ""
"\n"
"Pode preferir repetir a instalaçăo.\n"
-#: ../../install_steps_interactive.pm_.c:1359
+#: ../../install_steps_interactive.pm_.c:1344
msgid "Automated"
msgstr "Automático"
-#: ../../install_steps_interactive.pm_.c:1359
+#: ../../install_steps_interactive.pm_.c:1344
msgid "Replay"
msgstr "Repetir"
-#: ../../install_steps_interactive.pm_.c:1362
+#: ../../install_steps_interactive.pm_.c:1347
msgid "Save packages selection"
msgstr "Guardar selecçăo de pacotes"
@@ -5340,7 +5422,8 @@ msgstr "Guardar selecçăo de pacotes"
msgid "Mandrake Linux Installation %s"
msgstr "Instalaçăo do Mandrake Linux %s"
-#: ../../install_steps_newt.pm_.c:34
+#. -PO This string must fit in a 80-char wide text screen
+#: ../../install_steps_newt.pm_.c:35
msgid ""
" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
msgstr ""
@@ -5358,22 +5441,22 @@ msgstr "falta o ajudante da linha de commando"
msgid "Choose a file"
msgstr "Escolha um ficheiro"
-#: ../../interactive.pm_.c:317
+#: ../../interactive.pm_.c:320
msgid "Advanced"
msgstr "Avançado"
-#: ../../interactive.pm_.c:318
+#: ../../interactive.pm_.c:321
msgid "Basic"
msgstr "Básico"
-#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:155
-#: ../../printerdrake.pm_.c:1990
+#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:158
+#: ../../printerdrake.pm_.c:2124
msgid "<- Previous"
msgstr "<- Anterior"
#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
-#: ../../standalone/drakbackup_.c:3464 ../../standalone/drakbackup_.c:3491
-#: ../../standalone/drakbackup_.c:3517
+#: ../../standalone/drakbackup_.c:4112 ../../standalone/drakbackup_.c:4139
+#: ../../standalone/drakbackup_.c:4169 ../../standalone/drakbackup_.c:4195
msgid "Next"
msgstr "Próximo"
@@ -5446,375 +5529,375 @@ msgstr ""
msgid "Re-submit"
msgstr "Re-submeter"
-#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:152 ../../keyboard.pm_.c:187
msgid "Czech (QWERTZ)"
msgstr "Checo (QWERTZ)"
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:153 ../../keyboard.pm_.c:189
msgid "German"
msgstr "Alemăo"
-#: ../../keyboard.pm_.c:175
+#: ../../keyboard.pm_.c:154
msgid "Dvorak"
msgstr "Dvorak"
-#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:218
+#: ../../keyboard.pm_.c:155 ../../keyboard.pm_.c:197
msgid "Spanish"
msgstr "Espanhol"
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:156 ../../keyboard.pm_.c:198
msgid "Finnish"
msgstr "Finlandês"
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:220
+#: ../../keyboard.pm_.c:157 ../../keyboard.pm_.c:199
msgid "French"
msgstr "Francês"
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:158 ../../keyboard.pm_.c:231
msgid "Norwegian"
msgstr "Norueguês"
-#: ../../keyboard.pm_.c:180
+#: ../../keyboard.pm_.c:159
msgid "Polish"
msgstr "Polaco"
-#: ../../keyboard.pm_.c:181 ../../keyboard.pm_.c:260
+#: ../../keyboard.pm_.c:160 ../../keyboard.pm_.c:239
msgid "Russian"
msgstr "Russo"
-#: ../../keyboard.pm_.c:183 ../../keyboard.pm_.c:262
+#: ../../keyboard.pm_.c:162 ../../keyboard.pm_.c:241
msgid "Swedish"
msgstr "Sueco"
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:278
+#: ../../keyboard.pm_.c:163 ../../keyboard.pm_.c:257
msgid "UK keyboard"
msgstr "Teclado Inglês"
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:279
+#: ../../keyboard.pm_.c:164 ../../keyboard.pm_.c:258
msgid "US keyboard"
msgstr "Teclado Americano"
-#: ../../keyboard.pm_.c:187
+#: ../../keyboard.pm_.c:166
msgid "Albanian"
msgstr "Albano"
-#: ../../keyboard.pm_.c:188
+#: ../../keyboard.pm_.c:167
msgid "Armenian (old)"
msgstr "Arménio (velho)"
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:168
msgid "Armenian (typewriter)"
msgstr "Arménio (máquina de escrever)"
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:169
msgid "Armenian (phonetic)"
msgstr "Arménio (Fonético)"
-#: ../../keyboard.pm_.c:195
+#: ../../keyboard.pm_.c:174
msgid "Azerbaidjani (latin)"
msgstr "Azerbaijăo (latino)"
-#: ../../keyboard.pm_.c:197
+#: ../../keyboard.pm_.c:176
msgid "Belgian"
msgstr "Belga"
-#: ../../keyboard.pm_.c:198
+#: ../../keyboard.pm_.c:177
#, fuzzy
msgid "Bengali"
msgstr "activar"
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:178
msgid "Bulgarian (phonetic)"
msgstr "Búlgaro (fonético)"
-#: ../../keyboard.pm_.c:200
+#: ../../keyboard.pm_.c:179
msgid "Bulgarian (BDS)"
msgstr "Búlgaro (BDS)"
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:180
msgid "Brazilian (ABNT-2)"
msgstr "Brasileiro (ABNT-2)"
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:183
#, fuzzy
msgid "Bosnian"
msgstr "Estoniano"
-#: ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:184
msgid "Belarusian"
msgstr "Bielorrusso"
-#: ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:185
msgid "Swiss (German layout)"
msgstr "Suíço (mapa Alemăo)"
-#: ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:186
msgid "Swiss (French layout)"
msgstr "Suíço (mapa Francês)"
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:188
msgid "Czech (QWERTY)"
msgstr "Checo (QWERTY)"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:190
msgid "German (no dead keys)"
msgstr "Alemăo (sem teclas mortas)"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:191
msgid "Devanagari"
msgstr ""
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:192
msgid "Danish"
msgstr "Dinamarquês"
-#: ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:193
msgid "Dvorak (US)"
msgstr "Dvorak (US)"
-#: ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:194
msgid "Dvorak (Norwegian)"
msgstr "Dvorak (Norueguês)"
-#: ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:195
msgid "Dvorak (Swedish)"
msgstr "Dvorak (Sueco)"
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:196
msgid "Estonian"
msgstr "Estoniano"
-#: ../../keyboard.pm_.c:221
+#: ../../keyboard.pm_.c:200
msgid "Georgian (\"Russian\" layout)"
msgstr "Georgiano (mapa \"Russo\")"
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:201
msgid "Georgian (\"Latin\" layout)"
msgstr "Georgiano (mapa \"Latim\")"
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:202
msgid "Greek"
msgstr "Grego"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:203
msgid "Gujarati"
msgstr ""
-#: ../../keyboard.pm_.c:225
+#: ../../keyboard.pm_.c:204
msgid "Gurmukhi"
msgstr ""
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:205
msgid "Hungarian"
msgstr "Húngaro"
-#: ../../keyboard.pm_.c:227
+#: ../../keyboard.pm_.c:206
msgid "Croatian"
msgstr "Croata"
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:207
msgid "Israeli"
msgstr "Israeliano"
-#: ../../keyboard.pm_.c:229
+#: ../../keyboard.pm_.c:208
msgid "Israeli (Phonetic)"
msgstr "Israeliano (Fonético)"
-#: ../../keyboard.pm_.c:230
+#: ../../keyboard.pm_.c:209
msgid "Iranian"
msgstr "Iraniano"
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:210
msgid "Icelandic"
msgstr "Islandês"
-#: ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:211
msgid "Italian"
msgstr "Italiano"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:212
msgid "Inuktitut"
msgstr ""
-#: ../../keyboard.pm_.c:234
+#: ../../keyboard.pm_.c:213
msgid "Japanese 106 keys"
msgstr "Japonês 106 teclas"
-#: ../../keyboard.pm_.c:237
+#: ../../keyboard.pm_.c:216
msgid "Korean keyboard"
msgstr "Teclado coreano"
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:217
msgid "Latin American"
msgstr "Latino Americano"
-#: ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:218
#, fuzzy
msgid "Laotian"
msgstr "Latuniano"
-#: ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:219
msgid "Lithuanian AZERTY (old)"
msgstr "Lituano AZERTY (velho)"
-#: ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:221
msgid "Lithuanian AZERTY (new)"
msgstr "Lituano AZERTY (novo)"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:222
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Lituano \"número de colunas\" QWERTY"
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:223
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "Lituano \"fonético\" QWERTY"
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:224
msgid "Latvian"
msgstr "Latuniano"
-#: ../../keyboard.pm_.c:246
+#: ../../keyboard.pm_.c:225
msgid "Macedonian"
msgstr "Macedónio"
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:226
msgid "Myanmar (Burmese)"
msgstr ""
-#: ../../keyboard.pm_.c:248
+#: ../../keyboard.pm_.c:227
#, fuzzy
msgid "Mongolian (cyrillic)"
msgstr "Serbo (cirílico)"
-#: ../../keyboard.pm_.c:249
+#: ../../keyboard.pm_.c:228
msgid "Maltese (UK)"
msgstr ""
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:229
msgid "Maltese (US)"
msgstr ""
-#: ../../keyboard.pm_.c:251
+#: ../../keyboard.pm_.c:230
msgid "Dutch"
msgstr "Holandês"
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:232
msgid "Polish (qwerty layout)"
msgstr "Polaco (mapa QWERTY)"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:233
msgid "Polish (qwertz layout)"
msgstr "Polaco (mapa QWERTZ)"
-#: ../../keyboard.pm_.c:255
+#: ../../keyboard.pm_.c:234
msgid "Portuguese"
msgstr "Português"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:235
msgid "Canadian (Quebec)"
msgstr "Canadiano (Quebeco)"
-#: ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:237
msgid "Romanian (qwertz)"
msgstr "Romeno (QWERTZ)"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:238
msgid "Romanian (qwerty)"
msgstr "Romeno (QWERTY)"
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:240
msgid "Russian (Yawerty)"
msgstr "Russo (Yawerty)"
-#: ../../keyboard.pm_.c:263
+#: ../../keyboard.pm_.c:242
msgid "Slovenian"
msgstr "Eslovaco"
-#: ../../keyboard.pm_.c:264
+#: ../../keyboard.pm_.c:243
msgid "Slovakian (QWERTZ)"
msgstr "Eslovaco (QWERTZ)"
-#: ../../keyboard.pm_.c:265
+#: ../../keyboard.pm_.c:244
msgid "Slovakian (QWERTY)"
msgstr "Eslovaco (QWERTY)"
-#: ../../keyboard.pm_.c:267
+#: ../../keyboard.pm_.c:246
msgid "Serbian (cyrillic)"
msgstr "Serbo (cirílico)"
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:248
msgid "Tamil (Unicode)"
msgstr "Tamil (Unicode)"
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:249
msgid "Tamil (TSCII)"
msgstr "Tamil (TSCII)"
-#: ../../keyboard.pm_.c:271
+#: ../../keyboard.pm_.c:250
msgid "Thai keyboard"
msgstr "Teclado Tailandês"
-#: ../../keyboard.pm_.c:273
+#: ../../keyboard.pm_.c:252
msgid "Tajik keyboard"
msgstr "Teclado Tajik"
-#: ../../keyboard.pm_.c:274
+#: ../../keyboard.pm_.c:253
msgid "Turkish (traditional \"F\" model)"
msgstr "Turco (modelo \"F\" tradicional)"
-#: ../../keyboard.pm_.c:275
+#: ../../keyboard.pm_.c:254
msgid "Turkish (modern \"Q\" model)"
msgstr "Turco (modelo moderno \"Q\")"
-#: ../../keyboard.pm_.c:277
+#: ../../keyboard.pm_.c:256
msgid "Ukrainian"
msgstr "Ucraniano"
-#: ../../keyboard.pm_.c:280
+#: ../../keyboard.pm_.c:259
msgid "US keyboard (international)"
msgstr "Teclado Americano (Internacional)"
-#: ../../keyboard.pm_.c:281
+#: ../../keyboard.pm_.c:260
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "Vietnamita \"número de colunas\" QWERTY"
-#: ../../keyboard.pm_.c:282
+#: ../../keyboard.pm_.c:261
msgid "Yugoslavian (latin)"
msgstr "Jugoslavo (latim)"
-#: ../../keyboard.pm_.c:289
+#: ../../keyboard.pm_.c:268
msgid "Right Alt key"
msgstr "A tecla Alt Direita"
-#: ../../keyboard.pm_.c:290
+#: ../../keyboard.pm_.c:269
msgid "Both Shift keys simultaneously"
msgstr "As duas teclas Maiúscula simultaneamente"
-#: ../../keyboard.pm_.c:291
+#: ../../keyboard.pm_.c:270
msgid "Control and Shift keys simultaneously"
msgstr "As teclas Ctrl e Maiúscula simultaneamente"
-#: ../../keyboard.pm_.c:292
+#: ../../keyboard.pm_.c:271
msgid "CapsLock key"
msgstr "A tecla de bloqueamento das Maiúsculas"
-#: ../../keyboard.pm_.c:293
+#: ../../keyboard.pm_.c:272
msgid "Ctrl and Alt keys simultaneously"
msgstr "As teclas Ctrl e Alt simultaneamente"
-#: ../../keyboard.pm_.c:294
+#: ../../keyboard.pm_.c:273
msgid "Alt and Shift keys simultaneously"
msgstr "As teclas Alt e Maiúscula simultaneamente"
-#: ../../keyboard.pm_.c:295
+#: ../../keyboard.pm_.c:274
msgid "\"Menu\" key"
msgstr "A tecla \"Menu\""
-#: ../../keyboard.pm_.c:296
+#: ../../keyboard.pm_.c:275
msgid "Left \"Windows\" key"
msgstr "A tecla \"Windows\" esquerda"
-#: ../../keyboard.pm_.c:297
+#: ../../keyboard.pm_.c:276
msgid "Right \"Windows\" key"
msgstr "A tecla \"Windows\" direita"
@@ -5872,11 +5955,11 @@ msgstr "Rato Genérico PS2 com roda"
msgid "GlidePoint"
msgstr "GlidePoint"
-#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:63
+#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:65
msgid "Kensington Thinking Mouse"
msgstr "Rato Pensador Kensington"
-#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:59
+#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:61
msgid "Genius NetMouse"
msgstr "Rato Rede Genius"
@@ -5884,115 +5967,125 @@ msgstr "Rato Rede Genius"
msgid "Genius NetScroll"
msgstr "Genius RodaRede"
-#: ../../mouse.pm_.c:43 ../../mouse.pm_.c:68
+#: ../../mouse.pm_.c:39 ../../mouse.pm_.c:48
+#, fuzzy
+msgid "Microsoft Explorer"
+msgstr "Microsoft IntelliRato"
+
+#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:70
msgid "1 button"
msgstr "1 botăo"
-#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:51
+#: ../../mouse.pm_.c:45 ../../mouse.pm_.c:53
msgid "Generic 2 Button Mouse"
msgstr "Rato Genérico com 2 Botőes"
-#: ../../mouse.pm_.c:46
+#: ../../mouse.pm_.c:47
msgid "Wheel"
msgstr "Roda"
-#: ../../mouse.pm_.c:49
+#: ../../mouse.pm_.c:51
msgid "serial"
msgstr "série"
-#: ../../mouse.pm_.c:52
+#: ../../mouse.pm_.c:54
msgid "Generic 3 Button Mouse"
msgstr "Rato Genérico com 3 Botőes"
-#: ../../mouse.pm_.c:53
+#: ../../mouse.pm_.c:55
msgid "Microsoft IntelliMouse"
msgstr "Microsoft IntelliRato"
-#: ../../mouse.pm_.c:54
+#: ../../mouse.pm_.c:56
msgid "Logitech MouseMan"
msgstr "Logitech RatoHomem"
-#: ../../mouse.pm_.c:55
+#: ../../mouse.pm_.c:57
msgid "Mouse Systems"
msgstr "Rato Systems"
-#: ../../mouse.pm_.c:57
+#: ../../mouse.pm_.c:59
msgid "Logitech CC Series"
msgstr "Logitech Séries CC"
-#: ../../mouse.pm_.c:58
+#: ../../mouse.pm_.c:60
msgid "Logitech MouseMan+/FirstMouse+"
msgstr "Logitech RatoHomem+/PrimeiroRato+"
-#: ../../mouse.pm_.c:60
+#: ../../mouse.pm_.c:62
msgid "MM Series"
msgstr "Séries MM"
-#: ../../mouse.pm_.c:61
+#: ../../mouse.pm_.c:63
msgid "MM HitTablet"
msgstr "MM HitTablet"
-#: ../../mouse.pm_.c:62
+#: ../../mouse.pm_.c:64
msgid "Logitech Mouse (serial, old C7 type)"
msgstr "Rato Logitech (série, tipo C7 antigo)"
-#: ../../mouse.pm_.c:66
+#: ../../mouse.pm_.c:68
msgid "busmouse"
msgstr "Rato Bus"
-#: ../../mouse.pm_.c:69
+#: ../../mouse.pm_.c:71
msgid "2 buttons"
msgstr "2 botőes"
-#: ../../mouse.pm_.c:70
+#: ../../mouse.pm_.c:72
msgid "3 buttons"
msgstr "3 botőes"
-#: ../../mouse.pm_.c:73
+#: ../../mouse.pm_.c:75
msgid "none"
msgstr "nenhum"
-#: ../../mouse.pm_.c:75
+#: ../../mouse.pm_.c:77
msgid "No mouse"
msgstr "Nenhum Rato"
-#: ../../mouse.pm_.c:445
+#: ../../mouse.pm_.c:482
msgid "Please test the mouse"
msgstr "Por favor teste o rato"
-#: ../../mouse.pm_.c:446
+#: ../../mouse.pm_.c:483
msgid "To activate the mouse,"
msgstr "Para activar o rato,"
-#: ../../mouse.pm_.c:447
+#: ../../mouse.pm_.c:484
msgid "MOVE YOUR WHEEL!"
msgstr "MOVA A SUA RODA!"
-#: ../../my_gtk.pm_.c:156
+#: ../../my_gtk.pm_.c:64
+#, fuzzy
+msgid "-adobe-utopia-regular-r-*-*-25-*-*-*-p-*-iso8859-*,*-r-*"
+msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
+
+#: ../../my_gtk.pm_.c:159
msgid "Finish"
msgstr "Terminar"
-#: ../../my_gtk.pm_.c:156 ../../printerdrake.pm_.c:1992
+#: ../../my_gtk.pm_.c:159 ../../printerdrake.pm_.c:2126
msgid "Next ->"
msgstr "Próximo ->"
-#: ../../my_gtk.pm_.c:284
+#: ../../my_gtk.pm_.c:287
msgid "Is this correct?"
msgstr "Isto está correcto?"
-#: ../../my_gtk.pm_.c:356 ../../services.pm_.c:222
+#: ../../my_gtk.pm_.c:359 ../../services.pm_.c:222
msgid "Info"
msgstr "Informaçăo"
-#: ../../my_gtk.pm_.c:377
+#: ../../my_gtk.pm_.c:380
msgid "Expand Tree"
msgstr "Expandir Árvore"
-#: ../../my_gtk.pm_.c:378
+#: ../../my_gtk.pm_.c:381
msgid "Collapse Tree"
msgstr "Encolher Árvore"
-#: ../../my_gtk.pm_.c:379
+#: ../../my_gtk.pm_.c:382
msgid "Toggle between flat and group sorted"
msgstr "Alternar entre organizaçăo plana ou em grupo"
@@ -6030,6 +6123,74 @@ msgstr "usar pppoe"
msgid "use pptp"
msgstr "usar pptp"
+#: ../../network/drakfirewall.pm_.c:12
+#, fuzzy
+msgid "Web Server"
+msgstr "Servidor"
+
+#: ../../network/drakfirewall.pm_.c:17
+#, fuzzy
+msgid "Domain Name Server"
+msgstr "Calculador de Nome do domínio"
+
+#: ../../network/drakfirewall.pm_.c:32
+#, fuzzy
+msgid "Mail Server"
+msgstr "Activar o servidor"
+
+#: ../../network/drakfirewall.pm_.c:37
+#, fuzzy
+msgid "POP and IMAP Server"
+msgstr "Servidor LDAP"
+
+#: ../../network/drakfirewall.pm_.c:111
+#, fuzzy
+msgid "No network card"
+msgstr "nenhuma placa de rede encontrada"
+
+#: ../../network/drakfirewall.pm_.c:129
+#, fuzzy
+msgid ""
+"drakfirewall configurator\n"
+"\n"
+"This configures a personal firewall for this Mandrake Linux machine.\n"
+"For a powerful dedicated firewall solution, please look to the\n"
+"specialized MandrakeSecurity Firewall distribution."
+msgstr ""
+"Configurador do tinyfirewall\n"
+"\n"
+"Configura uma firewall pessoal para esta máquina Linux Mandrake.\n"
+"Para uma firewall poderosa e dedicada, por favor procure a \n"
+"distribuiçăo especializada MandrakeSecurity Firewall"
+
+#: ../../network/drakfirewall.pm_.c:147
+msgid "Which services would you like to allow the Internet to connect to?"
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:148
+msgid ""
+"You can enter miscellaneous ports. \n"
+"Valid examples are: 139/tcp 139/udp.\n"
+"Have a look at /etc/services for information."
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:154
+#, c-format
+msgid ""
+"Invalid port given: %s.\n"
+"The proper format is \"port/tcp\" or \"port/udp\", \n"
+"where port is between 1 and 65535."
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:162
+msgid "Everything (no firewall)"
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:164
+#, fuzzy
+msgid "Other ports"
+msgstr "Testar portas"
+
#: ../../network/ethernet.pm_.c:37
msgid ""
"Which dhcp client do you want to use?\n"
@@ -6046,7 +6207,7 @@ msgstr ""
"Nenhum adaptador de rede ethernet foi detectado no seu sistema.\n"
"Eu năo posso configurar este tipo de ligaçăo."
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:247
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:240
msgid "Choose the network interface"
msgstr "Escolha o interface de rede"
@@ -6060,7 +6221,7 @@ msgstr ""
msgid "no network card found"
msgstr "nenhuma placa de rede encontrada"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:366
msgid "Configuring network"
msgstr "A configurar a rede"
@@ -6076,7 +6237,7 @@ msgstr ""
"O nome do anfitriăo deve ser um nome de anfitriăo totalmente qualificado,\n"
"como por exemplo ``mybox.mylab.myco.com''."
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:370
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:371
msgid "Host name"
msgstr "Nome do anfitriăo"
@@ -6379,13 +6540,13 @@ msgstr "Escolha o perfil a configurar:"
msgid "Use auto detection"
msgstr "Usar auto-detecçăo"
-#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2930
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:3151
#: ../../standalone/drakconnect_.c:274 ../../standalone/drakconnect_.c:277
#: ../../standalone/drakfloppy_.c:145
msgid "Expert Mode"
msgstr "Modo de Perito"
-#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:283
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:386
msgid "Detecting devices..."
msgstr "A detectar dispositivos..."
@@ -6553,11 +6714,11 @@ msgstr "IP Automático"
msgid "Start at boot"
msgstr "Iniciado ăo arranque"
-#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:753
+#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:860
msgid "IP address should be in format 1.2.3.4"
msgstr "O endereço IP deve estar no formato 1.2.3.4"
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:367
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -6569,43 +6730,55 @@ msgstr ""
"como por exemplo ``mybox.mylab.myco.com'' .\n"
"Também pode introduzir o endereço IP de um ponte se tiver um"
-#: ../../network/network.pm_.c:371
+#: ../../network/network.pm_.c:372
msgid "DNS server"
msgstr "Servidor DNS"
-#: ../../network/network.pm_.c:372
+#: ../../network/network.pm_.c:373
#, c-format
msgid "Gateway (e.g. %s)"
msgstr "Porta de ligaçăo (ex. %s)"
-#: ../../network/network.pm_.c:374
+#: ../../network/network.pm_.c:375
msgid "Gateway device"
msgstr "Dispositivo de ponte"
-#: ../../network/network.pm_.c:386
+#: ../../network/network.pm_.c:387
msgid "Proxies configuration"
msgstr "Configuraçăo de proxies"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:388
msgid "HTTP proxy"
msgstr "Proxy HTTP"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:389
msgid "FTP proxy"
msgstr "Proxy FTP"
-#: ../../network/network.pm_.c:389
+#: ../../network/network.pm_.c:390
msgid "Track network card id (useful for laptops)"
msgstr "Procurar o id da placa rede (util para os portaveis)"
-#: ../../network/network.pm_.c:392
+#: ../../network/network.pm_.c:393
msgid "Proxy should be http://..."
msgstr "O Proxy deve ser http://..."
-#: ../../network/network.pm_.c:393
+#: ../../network/network.pm_.c:394
msgid "Proxy should be ftp://..."
msgstr "O Proxy deve ser ftp://..."
+#: ../../network/shorewall.pm_.c:24
+msgid "Firewalling configuration detected!"
+msgstr "Configuraçăo de firewall detectada!"
+
+#: ../../network/shorewall.pm_.c:25
+msgid ""
+"Warning! An existing firewalling configuration has been detected. You may "
+"need some manual fix after installation."
+msgstr ""
+"Aviso! Uma configuraçăo de firewall existente foi detectada. Pode necessitar "
+"de configuraçăo manual depois da instalaçăo."
+
#: ../../network/tools.pm_.c:41
msgid "Internet configuration"
msgstr "Configuraçăo da Internet"
@@ -6711,15 +6884,15 @@ msgstr "Senha da conta"
msgid "United Kingdom"
msgstr "Reino Unido"
-#: ../../partition_table.pm_.c:606
+#: ../../partition_table.pm_.c:602
msgid "mount failed: "
msgstr "falhou ăo montar: "
-#: ../../partition_table.pm_.c:670
+#: ../../partition_table.pm_.c:666
msgid "Extended partition not supported on this platform"
msgstr "Partiçăo extendida năo é suportada nesta plataforma"
-#: ../../partition_table.pm_.c:688
+#: ../../partition_table.pm_.c:684
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
@@ -6729,21 +6902,21 @@ msgstr ""
"A única soluçăo é mover as suas partiçőes primárias para ter o buraco "
"próximo das partiçőes extendidas"
-#: ../../partition_table.pm_.c:778
+#: ../../partition_table.pm_.c:774
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "A restauraçăo pelo ficheiro %s falhou: %s"
-#: ../../partition_table.pm_.c:780
+#: ../../partition_table.pm_.c:776
msgid "Bad backup file"
msgstr "Ficheiro de cópia de segurança defeituoso"
-#: ../../partition_table.pm_.c:802
+#: ../../partition_table.pm_.c:798
#, c-format
msgid "Error writing to file %s"
msgstr "Erro ăo escrever no ficheiro %s"
-#: ../../partition_table/raw.pm_.c:187
+#: ../../partition_table/raw.pm_.c:189
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
@@ -6789,150 +6962,154 @@ msgstr "LPD - Demónio de Impressăo em Linha"
msgid "PDQ - Print, Don't Queue"
msgstr "PDQ - Imprimir, năo meter em fila."
-#: ../../printer.pm_.c:35 ../../printer.pm_.c:854
+#: ../../printer.pm_.c:34 ../../printer.pm_.c:1125
msgid "CUPS"
msgstr "CUPS"
-#: ../../printer.pm_.c:36
+#: ../../printer.pm_.c:35
msgid "LPRng"
msgstr "LPRng"
-#: ../../printer.pm_.c:37
+#: ../../printer.pm_.c:36
msgid "LPD"
msgstr "LPD"
-#: ../../printer.pm_.c:38
+#: ../../printer.pm_.c:37
msgid "PDQ"
msgstr "PDQ"
-#: ../../printer.pm_.c:50
+#: ../../printer.pm_.c:49
msgid "Local printer"
msgstr "Impressora local"
-#: ../../printer.pm_.c:51
+#: ../../printer.pm_.c:50
msgid "Remote printer"
msgstr "Impressora remota"
-#: ../../printer.pm_.c:52
+#: ../../printer.pm_.c:51
msgid "Printer on remote CUPS server"
msgstr "Impressora num Servidor CUPS remoto"
-#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:776
+#: ../../printer.pm_.c:52 ../../printerdrake.pm_.c:883
msgid "Printer on remote lpd server"
msgstr "Impressora num servidor lpd remoto"
-#: ../../printer.pm_.c:54
+#: ../../printer.pm_.c:53
msgid "Network printer (TCP/Socket)"
msgstr "Impressora da rede (TCP/Socket)"
-#: ../../printer.pm_.c:55
+#: ../../printer.pm_.c:54
msgid "Printer on SMB/Windows 95/98/NT server"
msgstr "Impressora num servidor SMB/Windows 95/98/NT"
-#: ../../printer.pm_.c:56
+#: ../../printer.pm_.c:55
msgid "Printer on NetWare server"
msgstr "Impressora num servidor NetWare"
-#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:780
+#: ../../printer.pm_.c:56 ../../printerdrake.pm_.c:887
msgid "Enter a printer device URI"
msgstr "Entre uma impressora URI"
-#: ../../printer.pm_.c:58
+#: ../../printer.pm_.c:57
msgid "Pipe job into a command"
msgstr "Envia o trabalho para um commando"
-#: ../../printer.pm_.c:487 ../../printer.pm_.c:678 ../../printer.pm_.c:1000
-#: ../../printerdrake.pm_.c:2070 ../../printerdrake.pm_.c:3189
+#: ../../printer.pm_.c:324 ../../printer.pm_.c:366 ../../printer.pm_.c:533
+msgid "Unknown Model"
+msgstr "Modelo Desconhecido"
+
+#: ../../printer.pm_.c:735 ../../printer.pm_.c:926 ../../printer.pm_.c:1318
+#: ../../printerdrake.pm_.c:2260 ../../printerdrake.pm_.c:3414
msgid "Unknown model"
msgstr "Modelo desconhecido"
-#: ../../printer.pm_.c:515
+#: ../../printer.pm_.c:763
msgid "Local Printers"
msgstr "Impressoras locais"
-#: ../../printer.pm_.c:517 ../../printer.pm_.c:855
+#: ../../printer.pm_.c:765 ../../printer.pm_.c:1126
msgid "Remote Printers"
msgstr "Impressoras remotas"
-#: ../../printer.pm_.c:524 ../../printerdrake.pm_.c:301
+#: ../../printer.pm_.c:772 ../../printerdrake.pm_.c:404
#, c-format
msgid " on parallel port \\/*%s"
msgstr " no cabo parallelo \\/*%s"
-#: ../../printer.pm_.c:527 ../../printerdrake.pm_.c:303
+#: ../../printer.pm_.c:775 ../../printerdrake.pm_.c:406
#, c-format
msgid ", USB printer \\/*%s"
msgstr ", impressora USB \\/*%s"
-#: ../../printer.pm_.c:532
+#: ../../printer.pm_.c:780
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ", dispositivo multi-funçőes no cabo parallelo \\/*%s"
-#: ../../printer.pm_.c:535
+#: ../../printer.pm_.c:783
msgid ", multi-function device on USB"
msgstr ", dispositivo multi-funçőes em USB"
-#: ../../printer.pm_.c:537
+#: ../../printer.pm_.c:785
msgid ", multi-function device on HP JetDirect"
msgstr ", dispositivo multi-funçőes em HP JetDirect"
-#: ../../printer.pm_.c:539
+#: ../../printer.pm_.c:787
msgid ", multi-function device"
msgstr ", dispositivo multi-funçőes"
-#: ../../printer.pm_.c:542
+#: ../../printer.pm_.c:790
#, c-format
msgid ", printing to %s"
msgstr ", a imprimir para %s"
-#: ../../printer.pm_.c:544
+#: ../../printer.pm_.c:792
#, c-format
msgid " on LPD server \"%s\", printer \"%s\""
msgstr " no servidor LPD \"%s\", impressora \"%s\""
-#: ../../printer.pm_.c:546
+#: ../../printer.pm_.c:794
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ", anfitriăo TCP/IP \"%s\", porta %s"
-#: ../../printer.pm_.c:550
+#: ../../printer.pm_.c:798
#, c-format
msgid " on SMB/Windows server \"%s\", share \"%s\""
msgstr " no servidor SMB/Windows \"%s\", partilho \"%s\""
-#: ../../printer.pm_.c:554
+#: ../../printer.pm_.c:802
#, c-format
msgid " on Novell server \"%s\", printer \"%s\""
msgstr " no servidor Novell \"%s\", impressora \"%s\""
-#: ../../printer.pm_.c:556
+#: ../../printer.pm_.c:804
#, c-format
msgid ", using command %s"
msgstr ", utilizando o commando %s"
-#: ../../printer.pm_.c:675 ../../printerdrake.pm_.c:1540
+#: ../../printer.pm_.c:923 ../../printerdrake.pm_.c:1656
msgid "Raw printer (No driver)"
msgstr "Impressora directa (sem piloto)"
-#: ../../printer.pm_.c:824
+#: ../../printer.pm_.c:1095
#, c-format
msgid "(on %s)"
msgstr "(em %s)"
-#: ../../printer.pm_.c:826
+#: ../../printer.pm_.c:1097
msgid "(on this machine)"
msgstr "(nesta maquina)"
-#: ../../printer.pm_.c:851
+#: ../../printer.pm_.c:1122
#, c-format
msgid "On CUPS server \"%s\""
msgstr "No servidor CUPS \"%s\""
-#: ../../printer.pm_.c:857 ../../printerdrake.pm_.c:2851
-#: ../../printerdrake.pm_.c:2862 ../../printerdrake.pm_.c:3078
-#: ../../printerdrake.pm_.c:3130 ../../printerdrake.pm_.c:3156
-#: ../../printerdrake.pm_.c:3326 ../../printerdrake.pm_.c:3328
+#: ../../printer.pm_.c:1128 ../../printerdrake.pm_.c:3071
+#: ../../printerdrake.pm_.c:3082 ../../printerdrake.pm_.c:3303
+#: ../../printerdrake.pm_.c:3355 ../../printerdrake.pm_.c:3381
+#: ../../printerdrake.pm_.c:3556 ../../printerdrake.pm_.c:3558
msgid " (Default)"
msgstr " (Por omissăo)"
@@ -6958,11 +7135,11 @@ msgstr ""
msgid "Printer auto-detection (Local, TCP/Socket, and SMB printers)"
msgstr "Auto-detecçăo de impressora (Impressoras Locais, TCP/Socket, e SMB)"
-#: ../../printerdrake.pm_.c:84 ../../printerdrake.pm_.c:2914
+#: ../../printerdrake.pm_.c:84 ../../printerdrake.pm_.c:3135
msgid "CUPS configuration"
msgstr "Configuraçăo de CUPS"
-#: ../../printerdrake.pm_.c:85 ../../printerdrake.pm_.c:2915
+#: ../../printerdrake.pm_.c:85 ../../printerdrake.pm_.c:3136
msgid "Specify CUPS server"
msgstr "Indicar o servidor CUPS"
@@ -7006,7 +7183,7 @@ msgstr ""
msgid "The IP address should look like 192.168.1.20"
msgstr "O endereço IP tem de ser parecido com 192.168.1.20"
-#: ../../printerdrake.pm_.c:95 ../../printerdrake.pm_.c:987
+#: ../../printerdrake.pm_.c:95 ../../printerdrake.pm_.c:1094
msgid "The port number should be an integer!"
msgstr "O número da porta deve ser um inteiro!"
@@ -7014,7 +7191,7 @@ msgstr "O número da porta deve ser um inteiro!"
msgid "CUPS server IP"
msgstr "IP do servidor CUPS"
-#: ../../printerdrake.pm_.c:103 ../../printerdrake.pm_.c:1007
+#: ../../printerdrake.pm_.c:103 ../../printerdrake.pm_.c:1114
msgid "Port"
msgstr "Porta"
@@ -7022,12 +7199,130 @@ msgstr "Porta"
msgid "Automatic CUPS configuration"
msgstr "Configuraçăo automática de CUPS"
-#: ../../printerdrake.pm_.c:183 ../../printerdrake.pm_.c:192
-#: ../../printerdrake.pm_.c:2897 ../../printerdrake.pm_.c:3017
+#: ../../printerdrake.pm_.c:177 ../../printerdrake.pm_.c:247
+#: ../../printerdrake.pm_.c:1529 ../../printerdrake.pm_.c:1533
+#: ../../printerdrake.pm_.c:1651 ../../printerdrake.pm_.c:2203
+#: ../../printerdrake.pm_.c:2356 ../../printerdrake.pm_.c:2415
+#: ../../printerdrake.pm_.c:2488 ../../printerdrake.pm_.c:2509
+#: ../../printerdrake.pm_.c:2699 ../../printerdrake.pm_.c:2740
+#: ../../printerdrake.pm_.c:2745 ../../printerdrake.pm_.c:2779
+#: ../../printerdrake.pm_.c:2784 ../../printerdrake.pm_.c:2821
+#: ../../printerdrake.pm_.c:2874 ../../printerdrake.pm_.c:2894
+#: ../../printerdrake.pm_.c:2908 ../../printerdrake.pm_.c:2942
+#: ../../printerdrake.pm_.c:2988 ../../printerdrake.pm_.c:3006
+#: ../../printerdrake.pm_.c:3095 ../../printerdrake.pm_.c:3169
+#: ../../printerdrake.pm_.c:3471 ../../printerdrake.pm_.c:3526
+#: ../../printerdrake.pm_.c:3579 ../../standalone/printerdrake_.c:57
+msgid "Printerdrake"
+msgstr "PrinterDrake"
+
+#: ../../printerdrake.pm_.c:178
+#, fuzzy
+msgid "Checking your system..."
+msgstr "A re-lançar o sistema de impressăo..."
+
+#: ../../printerdrake.pm_.c:186
+msgid ""
+"There are no printers found which are directly connected to your machine"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:198
+#, fuzzy
+msgid ""
+"The following printers\n"
+"\n"
+msgstr "Os seguintes pacotes serăo removidos"
+
+#: ../../printerdrake.pm_.c:199
+#, fuzzy
+msgid ""
+"The following printer\n"
+"\n"
+msgstr "Os seguintes pacotes serăo removidos"
+
+#: ../../printerdrake.pm_.c:201
+msgid ""
+"\n"
+"and one unknown printer are "
+msgstr ""
+
+#: ../../printerdrake.pm_.c:203
+#, c-format
+msgid ""
+"\n"
+"and %d unknown printers are "
+msgstr ""
+
+#: ../../printerdrake.pm_.c:207
+msgid ""
+"\n"
+"are "
+msgstr ""
+
+#: ../../printerdrake.pm_.c:208
+msgid ""
+"\n"
+"is "
+msgstr ""
+
+#: ../../printerdrake.pm_.c:210
+#, fuzzy
+msgid "directly connected to your system"
+msgstr "Cópia das polícias no seu sistema"
+
+#: ../../printerdrake.pm_.c:213
+msgid ""
+"\n"
+"There is one unknown printer directly connected to your system"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:215
+#, c-format
+msgid ""
+"\n"
+"There are %d unknown printers directly connected to your system"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:221
+#, fuzzy
+msgid " (Make sure that all your printers are connected and turned on).\n"
+msgstr "Por favor escolha a ficha em que a sua impressora está ligada."
+
+#: ../../printerdrake.pm_.c:235
+msgid ""
+"Do you want to enable printing on the printers mentioned above or on "
+"printers in the local network?\n"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:236
+#, fuzzy
+msgid "Do you want to enable printing on printers in the local network?\n"
+msgstr ""
+"Quer definir esta impressora (\"%s\")\n"
+"como impressora por omissăo?"
+
+#: ../../printerdrake.pm_.c:238
+#, fuzzy
+msgid "Do you want to enable printing on the printers mentioned above?\n"
+msgstr "Quer iniciar a sua ligaçăo ăo iniciar?"
+
+#: ../../printerdrake.pm_.c:239
+msgid "Are you sure that you want to set up printing on this machine?\n"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:240
+#, c-format
+msgid ""
+"NOTE: Depending on the printer model and the printing system up to %d MB of "
+"additional software will be installed."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:269 ../../printerdrake.pm_.c:278
+#: ../../printerdrake.pm_.c:3117 ../../printerdrake.pm_.c:3242
msgid "Add a new printer"
msgstr "Instalar uma nova impressora"
-#: ../../printerdrake.pm_.c:184
+#: ../../printerdrake.pm_.c:270
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7049,7 +7344,8 @@ msgstr ""
"e dar-lhe acesso a todos os pilotos de impressoras disponivéis, todas as "
"opçoes, e tipos os tipos de ligaçăo."
-#: ../../printerdrake.pm_.c:193
+#: ../../printerdrake.pm_.c:280
+#, fuzzy
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7058,7 +7354,7 @@ msgid ""
"computer, connected directly to the network or to a remote Windows machine.\n"
"\n"
"If you have printer(s) connected to this machine, Please plug it/them in on "
-"this computer and turn it/them on so that they can be auto-detected. Also "
+"this computer and turn it/them on so that it/they can be auto-detected. Also "
"your network printer(s) and you Windows machines must be connected and "
"turned on.\n"
"\n"
@@ -7087,7 +7383,40 @@ msgstr ""
" Carregue em \"Seguinte\" quando está pronto, e em \"Anular\" se năo quiser "
"configurar a(s) sua(s) impressora(s) agora."
-#: ../../printerdrake.pm_.c:202
+#: ../../printerdrake.pm_.c:289 ../../printerdrake.pm_.c:306
+#, fuzzy
+msgid ""
+"\n"
+"Welcome to the Printer Setup Wizard\n"
+"\n"
+"This wizard will help you to install your printer(s) connected to this "
+"computer.\n"
+"\n"
+"If you have printer(s) connected to this machine, Please plug it/them in on "
+"this computer and turn it/them on so that it/they can be auto-detected.\n"
+"\n"
+" Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
+"want to set up your printer(s) now."
+msgstr ""
+"\n"
+"Bemvindo ao Assistente de Configuraçăo de Impressoras\n"
+"\n"
+"Esta assistente vai ajudar-lo a instalar a(s) impressora(s) ligada(s) a este "
+"computador ou directamente à rede.\n"
+"\n"
+"Se tem alguma impressora ligada a esta maquina, por favor ligue-a de maneira "
+"a poder detectar-la. As impressoras remotas também têm de estar ligadas e "
+"acesas.\n"
+"\n"
+"Note que a auto-detecçăo de impressoras remotas na rede é mais lento do que "
+"a auto-detecçăo das impressoras locais. Portanto deveria desactivar a auto-"
+"detecçăo na rede se năo precisa dela.\n"
+"\n"
+" Carregue em \"Seguinte\" quando está pronto, e em \"Anular\" se năo quiser "
+"configurar a(s) sua(s) impressora(s) agora."
+
+#: ../../printerdrake.pm_.c:297
+#, fuzzy
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7096,7 +7425,7 @@ msgid ""
"computer or connected directly to the network.\n"
"\n"
"If you have printer(s) connected to this machine, Please plug it/them in on "
-"this computer and turn it/them on so that they can be auto-detected. Also "
+"this computer and turn it/them on so that it/they can be auto-detected. Also "
"your network printer(s) must be connected and turned on.\n"
"\n"
"Note that auto-detecting printers on the network takes longer than the auto-"
@@ -7123,25 +7452,25 @@ msgstr ""
" Carregue em \"Seguinte\" quando está pronto, e em \"Anular\" se năo quiser "
"configurar a(s) sua(s) impressora(s) agora."
-#: ../../printerdrake.pm_.c:213
+#: ../../printerdrake.pm_.c:315
msgid "Auto-detect printers connected to this machine"
msgstr "Auto-detectar as impressoras ligadas a esta máquina"
-#: ../../printerdrake.pm_.c:215
+#: ../../printerdrake.pm_.c:318
msgid "Auto-detect printers connected directly to the local network"
msgstr "Auto-detectar as impressoras ligadas directamente à rede local"
-#: ../../printerdrake.pm_.c:218
+#: ../../printerdrake.pm_.c:321
msgid "Auto-detect printers connected to machines running Microsoft Windows"
msgstr ""
"Auto-detectar as impressoras ligadas a uma maquina sob Microsoft Windows"
-#: ../../printerdrake.pm_.c:245 ../../printerdrake.pm_.c:459
-#: ../../printerdrake.pm_.c:484
+#: ../../printerdrake.pm_.c:348 ../../printerdrake.pm_.c:562
+#: ../../printerdrake.pm_.c:587
msgid "Local Printer"
msgstr "Impressora local"
-#: ../../printerdrake.pm_.c:246
+#: ../../printerdrake.pm_.c:349
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -7165,49 +7494,49 @@ msgstr ""
"impressăo, ...),escolha \"Impressora\" na secçăo \"Material\" do Centro de "
"Controlo Mandrake ."
-#: ../../printerdrake.pm_.c:283 ../../printerdrake.pm_.c:474
-#: ../../printerdrake.pm_.c:683 ../../printerdrake.pm_.c:923
+#: ../../printerdrake.pm_.c:386 ../../printerdrake.pm_.c:577
+#: ../../printerdrake.pm_.c:790 ../../printerdrake.pm_.c:1030
msgid "Printer auto-detection"
msgstr "Auto-detecçăo de impressoras"
-#: ../../printerdrake.pm_.c:305
+#: ../../printerdrake.pm_.c:408
#, c-format
msgid ", network printer \"%s\", port %s"
msgstr ", impressora rede \"%s\", porta %s"
-#: ../../printerdrake.pm_.c:307
+#: ../../printerdrake.pm_.c:410
#, c-format
msgid ", printer \"%s\" on SMB/Windows server \"%s\""
msgstr ", impressora \"%s\" num servidor SMB/Windows \"%s\""
-#: ../../printerdrake.pm_.c:313
+#: ../../printerdrake.pm_.c:416
#, c-format
msgid "Detected %s"
msgstr "Detectou %s"
-#: ../../printerdrake.pm_.c:317 ../../printerdrake.pm_.c:348
-#: ../../printerdrake.pm_.c:367
+#: ../../printerdrake.pm_.c:420 ../../printerdrake.pm_.c:451
+#: ../../printerdrake.pm_.c:470
#, c-format
msgid "Printer on parallel port \\/*%s"
msgstr "Impressora no cabo parallelo \\/*%s"
-#: ../../printerdrake.pm_.c:319 ../../printerdrake.pm_.c:350
-#: ../../printerdrake.pm_.c:372
+#: ../../printerdrake.pm_.c:422 ../../printerdrake.pm_.c:453
+#: ../../printerdrake.pm_.c:475
#, c-format
msgid "USB printer \\/*%s"
msgstr "Impressora USB \\/*%s"
-#: ../../printerdrake.pm_.c:321
+#: ../../printerdrake.pm_.c:424
#, c-format
msgid "Network printer \"%s\", port %s"
msgstr "Impressora na rede \"%s\", porta %s"
-#: ../../printerdrake.pm_.c:323
+#: ../../printerdrake.pm_.c:426
#, c-format
msgid "Printer \"%s\" on SMB/Windows server \"%s\""
msgstr "Impressora \"%s\" num servidor SMB/Windows \"%s\""
-#: ../../printerdrake.pm_.c:460
+#: ../../printerdrake.pm_.c:563
msgid ""
"No local printer found! To manually install a printer enter a device name/"
"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
@@ -7219,19 +7548,19 @@ msgstr ""
"Parallelo : /dev/lp0, /dev/lp1, ..., equivalem a LPT1:, LPT2:, ..., Primeira "
"impressora USB : /dev/usb/lp0, segunda impressora USB : /dev/usb/lp1, ...)."
-#: ../../printerdrake.pm_.c:464
+#: ../../printerdrake.pm_.c:567
msgid "You must enter a device or file name!"
msgstr "Você deve entrar um periférico ou um nome de ficheiro!"
-#: ../../printerdrake.pm_.c:475
+#: ../../printerdrake.pm_.c:578
msgid "No printer found!"
msgstr "Nenhuma impressora encontrada!"
-#: ../../printerdrake.pm_.c:485
+#: ../../printerdrake.pm_.c:588
msgid "Available printers"
msgstr "Impressoras disponíveis"
-#: ../../printerdrake.pm_.c:489
+#: ../../printerdrake.pm_.c:592
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
@@ -7239,7 +7568,7 @@ msgstr ""
"A impressora seguinte foi auto-detectada, se năo é a que deseja configurar, "
"escreva um nome de dispositivo/ficheiro na linha de entrada"
-#: ../../printerdrake.pm_.c:490
+#: ../../printerdrake.pm_.c:593
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up or enter a device name/file name in the input line"
@@ -7248,7 +7577,7 @@ msgstr ""
"escolha a impressora que deseja configurar ou escreva um nome de dispositivo/"
"ficheiro na linha d'entrada"
-#: ../../printerdrake.pm_.c:492
+#: ../../printerdrake.pm_.c:595
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
@@ -7260,7 +7589,7 @@ msgstr ""
"detectada ou se prefere configurar à măo, carregue em \"Configuraçăo Manual"
"\"."
-#: ../../printerdrake.pm_.c:493
+#: ../../printerdrake.pm_.c:596
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
@@ -7272,7 +7601,7 @@ msgstr ""
"inteiramente automática. Se a sua impressora năo foi correctamente detectada "
"ou se prefere configurar à măo, carregue em \"Configuraçăo Manual\"."
-#: ../../printerdrake.pm_.c:495
+#: ../../printerdrake.pm_.c:598
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
@@ -7280,11 +7609,11 @@ msgstr ""
"Por favor escolha a ficha em que a sua impressora está ligada ou escreva um "
"nome de dispositivo/ficheiro na linha de entrada"
-#: ../../printerdrake.pm_.c:496
+#: ../../printerdrake.pm_.c:599
msgid "Please choose the port where your printer is connected to."
msgstr "Por favor escolha a ficha em que a sua impressora está ligada."
-#: ../../printerdrake.pm_.c:498
+#: ../../printerdrake.pm_.c:601
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
@@ -7293,19 +7622,19 @@ msgstr ""
"Primeira impressora USB : /dev/usb/lp0, segunda impressora USB : /dev/usb/"
"lp1, ...)."
-#: ../../printerdrake.pm_.c:503
+#: ../../printerdrake.pm_.c:606
msgid "You must choose/enter a printer/device!"
msgstr "Você deve escolher/entrar um dispositivo/impressora!"
-#: ../../printerdrake.pm_.c:523
+#: ../../printerdrake.pm_.c:626
msgid "Manual configuration"
msgstr "Configuraçăo manual"
-#: ../../printerdrake.pm_.c:577
+#: ../../printerdrake.pm_.c:680
msgid "Remote lpd Printer Options"
msgstr "Opçőes da impressora lpd Remota"
-#: ../../printerdrake.pm_.c:578
+#: ../../printerdrake.pm_.c:681
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
"server and the printer name on that server."
@@ -7313,46 +7642,46 @@ msgstr ""
"Para usar uma fila de impressăo lpd remota, precisa indicar o nome do "
"servidor de impressăo e o nome da impressora naquele servidor."
-#: ../../printerdrake.pm_.c:579
+#: ../../printerdrake.pm_.c:682
msgid "Remote host name"
msgstr "Nome do anfitriăo remoto"
-#: ../../printerdrake.pm_.c:580
+#: ../../printerdrake.pm_.c:683
msgid "Remote printer name"
msgstr "Nome da impressora remota"
-#: ../../printerdrake.pm_.c:583
+#: ../../printerdrake.pm_.c:686
msgid "Remote host name missing!"
msgstr "Falta o nome do anfitriăo remoto!"
-#: ../../printerdrake.pm_.c:587
+#: ../../printerdrake.pm_.c:690
msgid "Remote printer name missing!"
msgstr "Falta o nome da impressora remota!"
-#: ../../printerdrake.pm_.c:609 ../../printerdrake.pm_.c:1119
+#: ../../printerdrake.pm_.c:712 ../../printerdrake.pm_.c:1225
#, c-format
msgid "Detected model: %s %s"
msgstr "Modelo detectado : %s %s"
-#: ../../printerdrake.pm_.c:683 ../../printerdrake.pm_.c:923
+#: ../../printerdrake.pm_.c:790 ../../printerdrake.pm_.c:1030
msgid "Scanning network..."
msgstr "A procurar na rede..."
-#: ../../printerdrake.pm_.c:692 ../../printerdrake.pm_.c:713
+#: ../../printerdrake.pm_.c:799 ../../printerdrake.pm_.c:820
#, c-format
msgid ", printer \"%s\" on server \"%s\""
msgstr ", impressora \"%s\" no servidor \"%s\""
-#: ../../printerdrake.pm_.c:695 ../../printerdrake.pm_.c:716
+#: ../../printerdrake.pm_.c:802 ../../printerdrake.pm_.c:823
#, c-format
msgid "Printer \"%s\" on server \"%s\""
msgstr "Impressora \"%s\" no servidor \"%s\""
-#: ../../printerdrake.pm_.c:736
+#: ../../printerdrake.pm_.c:843
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "Opçőes de Impressăo SMB (Windows 9x/NT)"
-#: ../../printerdrake.pm_.c:737
+#: ../../printerdrake.pm_.c:844
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
"may be different from its TCP/IP hostname!) and possibly the IP address of "
@@ -7365,7 +7694,7 @@ msgstr ""
"impressora que deseja aceder e qualquer informaçăo aplicável sobre nome de "
"utilizador, senha e grupo de trabalho."
-#: ../../printerdrake.pm_.c:738
+#: ../../printerdrake.pm_.c:845
msgid ""
" If the desired printer was auto-detected, simply choose it from the list "
"and then add user name, password, and/or workgroup if needed."
@@ -7374,39 +7703,39 @@ msgstr ""
"e entăo adicione um nome de utilizador, uma senha e um grupo de trabalho se "
"necessário."
-#: ../../printerdrake.pm_.c:739
+#: ../../printerdrake.pm_.c:846
msgid "SMB server host"
msgstr "Anfitriăo servidor SMB"
-#: ../../printerdrake.pm_.c:740
+#: ../../printerdrake.pm_.c:847
msgid "SMB server IP"
msgstr "IP do servidor SMB"
-#: ../../printerdrake.pm_.c:741
+#: ../../printerdrake.pm_.c:848
msgid "Share name"
msgstr "Nome de partilha"
-#: ../../printerdrake.pm_.c:744
+#: ../../printerdrake.pm_.c:851
msgid "Workgroup"
msgstr "Grupo de trabalho"
-#: ../../printerdrake.pm_.c:746
+#: ../../printerdrake.pm_.c:853
msgid "Auto-detected"
msgstr "Auto-detectada"
-#: ../../printerdrake.pm_.c:757
+#: ../../printerdrake.pm_.c:864
msgid "Either the server name or the server's IP must be given!"
msgstr "Ou o nome de servidor ou o seu endereço IP têm de ser indicados !"
-#: ../../printerdrake.pm_.c:761
+#: ../../printerdrake.pm_.c:868
msgid "Samba share name missing!"
msgstr "Falta o nome do partilho Samba!"
-#: ../../printerdrake.pm_.c:767
+#: ../../printerdrake.pm_.c:874
msgid "SECURITY WARNING!"
msgstr "ALERTA DE SEGURANÇA!"
-#: ../../printerdrake.pm_.c:768
+#: ../../printerdrake.pm_.c:875
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -7449,7 +7778,7 @@ msgstr ""
"tipo \"%s\" em Printerdrake.\n"
"\n"
-#: ../../printerdrake.pm_.c:778
+#: ../../printerdrake.pm_.c:885
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -7461,7 +7790,7 @@ msgstr ""
"protocolo IPP e configure entăo a impressăo a partir desta maquina com a "
"ligaçăo de tipo \"%s\" em Printerdrake.\n"
-#: ../../printerdrake.pm_.c:781
+#: ../../printerdrake.pm_.c:888
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
@@ -7473,11 +7802,11 @@ msgstr ""
"\n"
"Deseja mesmo continuar a configurar a impressora desta maneira ?"
-#: ../../printerdrake.pm_.c:853
+#: ../../printerdrake.pm_.c:960
msgid "NetWare Printer Options"
msgstr "Opçőes de Impressăo NetWare"
-#: ../../printerdrake.pm_.c:854
+#: ../../printerdrake.pm_.c:961
msgid ""
"To print on a NetWare printer, you need to provide the NetWare print server "
"name (Note! it may be different from its TCP/IP hostname!) as well as the "
@@ -7489,37 +7818,37 @@ msgstr ""
"também o nome da fila de impressăo para a impressora que deseja aceder e "
"qualquer nome de utilizador e senha aplicável."
-#: ../../printerdrake.pm_.c:855
+#: ../../printerdrake.pm_.c:962
msgid "Printer Server"
msgstr "Servidor de Impressăo"
-#: ../../printerdrake.pm_.c:856
+#: ../../printerdrake.pm_.c:963
msgid "Print Queue Name"
msgstr "Nome da Fila de Impressăo"
-#: ../../printerdrake.pm_.c:861
+#: ../../printerdrake.pm_.c:968
msgid "NCP server name missing!"
msgstr "Falta o nome do servidor NCP!"
-#: ../../printerdrake.pm_.c:865
+#: ../../printerdrake.pm_.c:972
msgid "NCP queue name missing!"
msgstr "Falta o nome da fila NCP!"
-#: ../../printerdrake.pm_.c:932 ../../printerdrake.pm_.c:952
+#: ../../printerdrake.pm_.c:1039 ../../printerdrake.pm_.c:1059
#, c-format
msgid ", host \"%s\", port %s"
msgstr ", anfitriăo \"%s\", porta %s"
-#: ../../printerdrake.pm_.c:935 ../../printerdrake.pm_.c:955
+#: ../../printerdrake.pm_.c:1042 ../../printerdrake.pm_.c:1062
#, c-format
msgid "Host \"%s\", port %s"
msgstr "Anfitriăo \"%s\", porta %s"
-#: ../../printerdrake.pm_.c:975
+#: ../../printerdrake.pm_.c:1082
msgid "TCP/Socket Printer Options"
msgstr "Opçőes do TCP/Socket da Impressora"
-#: ../../printerdrake.pm_.c:977
+#: ../../printerdrake.pm_.c:1084
msgid ""
"Choose one of the auto-detected printers from the list or enter the hostname "
"or IP and the optional port number (default is 9100) into the input fields."
@@ -7528,7 +7857,7 @@ msgstr ""
"anfitriăo ou o IP e em opçăo a porta (9100 por omissăo) nas linhas de "
"entrada."
-#: ../../printerdrake.pm_.c:978
+#: ../../printerdrake.pm_.c:1085
msgid ""
"To print to a TCP or socket printer, you need to provide the host name or IP "
"of the printer and optionally the port number (default is 9100). On HP "
@@ -7540,19 +7869,19 @@ msgstr ""
"servidores HP JetDirect a porta é normalemente 9100, noutros servidores pode "
"ser diferente. Leia o manual do seu material."
-#: ../../printerdrake.pm_.c:983
+#: ../../printerdrake.pm_.c:1090
msgid "Printer host name or IP missing!"
msgstr "Falta o nome ou o IP da impressora!"
-#: ../../printerdrake.pm_.c:1005
+#: ../../printerdrake.pm_.c:1112
msgid "Printer host name or IP"
msgstr "Nome do Servidor da impressora ou IP"
-#: ../../printerdrake.pm_.c:1054 ../../printerdrake.pm_.c:1056
+#: ../../printerdrake.pm_.c:1160 ../../printerdrake.pm_.c:1162
msgid "Printer Device URI"
msgstr "Dispositivo de Impressăo URI"
-#: ../../printerdrake.pm_.c:1055
+#: ../../printerdrake.pm_.c:1161
msgid ""
"You can specify directly the URI to access the printer. The URI must fulfill "
"either the CUPS or the Foomatic specifications. Note that not all URI types "
@@ -7562,11 +7891,11 @@ msgstr ""
"conforme às especificaçőes CUPS ou Foomatic. Note que todos os tipos de URI "
"săo suportados por todos as filas de impressăo."
-#: ../../printerdrake.pm_.c:1070
+#: ../../printerdrake.pm_.c:1176
msgid "A valid URI must be entered!"
msgstr "Uma URI valida deve ser escrevida!"
-#: ../../printerdrake.pm_.c:1402
+#: ../../printerdrake.pm_.c:1515
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
"Location fields do not need to be filled in. They are comments for the users."
@@ -7575,27 +7904,27 @@ msgstr ""
"e a Localizaçăo năo săo obrigatórias. Săo só comentarios para os "
"utilizadores."
-#: ../../printerdrake.pm_.c:1403
+#: ../../printerdrake.pm_.c:1516
msgid "Name of printer"
msgstr "Nome da impressora"
-#: ../../printerdrake.pm_.c:1405
+#: ../../printerdrake.pm_.c:1518
msgid "Location"
msgstr "Localizaçăo"
-#: ../../printerdrake.pm_.c:1416 ../../printerdrake.pm_.c:1536
+#: ../../printerdrake.pm_.c:1530 ../../printerdrake.pm_.c:1652
msgid "Reading printer database..."
msgstr "Lendo banco de dados das impressoras..."
-#: ../../printerdrake.pm_.c:1419
+#: ../../printerdrake.pm_.c:1534
msgid "Preparing printer database..."
msgstr "A preparar a base de dados das impressoras..."
-#: ../../printerdrake.pm_.c:1516
+#: ../../printerdrake.pm_.c:1631
msgid "Your printer model"
msgstr "O seu modelo de impressora"
-#: ../../printerdrake.pm_.c:1517
+#: ../../printerdrake.pm_.c:1632
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -7620,24 +7949,24 @@ msgstr ""
"\n"
"%s"
-#: ../../printerdrake.pm_.c:1522 ../../printerdrake.pm_.c:1525
+#: ../../printerdrake.pm_.c:1637 ../../printerdrake.pm_.c:1640
msgid "The model is correct"
msgstr "O modelo está correcto"
-#: ../../printerdrake.pm_.c:1523 ../../printerdrake.pm_.c:1524
-#: ../../printerdrake.pm_.c:1527
+#: ../../printerdrake.pm_.c:1638 ../../printerdrake.pm_.c:1639
+#: ../../printerdrake.pm_.c:1642
msgid "Select model manually"
msgstr "Escolher o modelo manualmente"
-#: ../../printerdrake.pm_.c:1543
+#: ../../printerdrake.pm_.c:1659
msgid "Printer model selection"
msgstr "Escolha do modelo da impressora"
-#: ../../printerdrake.pm_.c:1544
+#: ../../printerdrake.pm_.c:1660
msgid "Which printer model do you have?"
msgstr "Qual é o modelo de impressora que tem?"
-#: ../../printerdrake.pm_.c:1545
+#: ../../printerdrake.pm_.c:1661
msgid ""
"\n"
"\n"
@@ -7651,7 +7980,7 @@ msgstr ""
"impressora. Procure o bom modelo na lista quando está escolhido um modelo "
"errado ou \"Impressora directa\"."
-#: ../../printerdrake.pm_.c:1548
+#: ../../printerdrake.pm_.c:1664
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
@@ -7659,11 +7988,11 @@ msgstr ""
"Se a sua impressora năo está na lista, escolha uma compativél (veja no "
"manual da impressora) ou uma parecida."
-#: ../../printerdrake.pm_.c:1624
+#: ../../printerdrake.pm_.c:1741
msgid "OKI winprinter configuration"
msgstr "OK| configuraçăo duma winimpressora"
-#: ../../printerdrake.pm_.c:1625
+#: ../../printerdrake.pm_.c:1742
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -7679,11 +8008,11 @@ msgstr ""
"antes de imprimir uma pagina de teste. Senăo a impressora năo vai funcionar. "
"O parametro de tipo de ligaçăo vai ser ignorado pelo piloto."
-#: ../../printerdrake.pm_.c:1668 ../../printerdrake.pm_.c:1695
+#: ../../printerdrake.pm_.c:1785 ../../printerdrake.pm_.c:1812
msgid "Lexmark inkjet configuration"
msgstr "Configuraçăo das Lexmark a jacto de tinta"
-#: ../../printerdrake.pm_.c:1669
+#: ../../printerdrake.pm_.c:1786
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
"no printers on remote machines or print server boxes. Please connect your "
@@ -7695,17 +8024,17 @@ msgstr ""
"servidor de impressăo. Por favor ligue a sua impressora localmente ou "
"configure-a na maquina à qual está ligada."
-#: ../../printerdrake.pm_.c:1696
+#: ../../printerdrake.pm_.c:1813
+#, fuzzy
msgid ""
"To be able to print with your Lexmark inkjet and this configuration, you "
"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
-"com/). Go to the US site and click on the \"Drivers\" button. Then choose "
-"your model and afterwards \"Linux\" as operating system. The drivers come as "
-"RPM packages or shell scripts with interactive graphical installation. You "
-"do not need to do this configuration by the graphical frontends. Cancel "
-"directly after the license agreement. Then print printhead alignment pages "
-"with \"lexmarkmaintain\" and adjust the head alignment settings with this "
-"program."
+"com/). Click on the \"Drivers\" link. Then choose your model and afterwards "
+"\"Linux\" as operating system. The drivers come as RPM packages or shell "
+"scripts with interactive graphical installation. You do not need to do this "
+"configuration by the graphical frontends. Cancel directly after the license "
+"agreement. Then print printhead alignment pages with \"lexmarkmaintain\" and "
+"adjust the head alignment settings with this program."
msgstr ""
"Para poder imprimir com a sua Lexmark a jacto de tinta e com esta "
"configuraçăo, precisa dos pilotos fornecidos por Lexmark (http://www.lexmark."
@@ -7717,7 +8046,34 @@ msgstr ""
"das cabeças com \"lexmarkmaintain\" e configure a posiçăo das cabeças com o "
"mesmo programa."
-#: ../../printerdrake.pm_.c:1912
+#: ../../printerdrake.pm_.c:1816
+msgid "GDI Laser Printer using the Zenographics ZJ-Stream Format"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:1817
+msgid ""
+"Your printer belongs to the group of GDI laser printers (winprinters) sold "
+"by different manufacturers which uses the Zenographics ZJ-stream raster "
+"format for the data sent to the printer. The driver for these printers is "
+"still in a very early development stage and so it will perhaps not always "
+"work properly. Especially it is possible that the printer only works when "
+"you choose the A4 paper size.\n"
+"\n"
+"Some of these printers, as the HP LaserJet 1000, for which this driver was "
+"originally created, need their firmware to be uploaded to them after they "
+"are turned on. In the case of the HP LaserJet 1000 you have to search the "
+"printer's Windows driver CD or your Windows partition for the file "
+"\"sihp1000.img\" and upload the file to the printer with one of the "
+"following commands:\n"
+"\n"
+" lpr -o raw sihp1000.img\n"
+" cat sihp1000.img > /dev/usb/lp0\n"
+"\n"
+"The first command can be given by any normal user, the second must be given "
+"as root. After having done so you can print normally.\n"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:2040
msgid ""
"Printer default settings\n"
"\n"
@@ -7733,22 +8089,22 @@ msgstr ""
"(memoria, opçoes) estăo configurados correctamente. Pense que com uma muito "
"alta qualidade/resoluçăo a impressăo pode tornar-se bastante lenta."
-#: ../../printerdrake.pm_.c:1921
+#: ../../printerdrake.pm_.c:2049
#, c-format
msgid "Option %s must be an integer number!"
msgstr "A opçăo %s deve ser um numero inteiro!"
-#: ../../printerdrake.pm_.c:1925
+#: ../../printerdrake.pm_.c:2053
#, c-format
msgid "Option %s must be a number!"
msgstr "A opçăo %s deve ser um numero!"
-#: ../../printerdrake.pm_.c:1930
+#: ../../printerdrake.pm_.c:2058
#, c-format
msgid "Option %s out of range!"
msgstr "A opçăo %s é fora de alcance!"
-#: ../../printerdrake.pm_.c:1969
+#: ../../printerdrake.pm_.c:2097
#, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
@@ -7757,11 +8113,11 @@ msgstr ""
"Quer definir esta impressora (\"%s\")\n"
"como impressora por omissăo?"
-#: ../../printerdrake.pm_.c:1986
+#: ../../printerdrake.pm_.c:2120
msgid "Test pages"
msgstr "Páginas de teste"
-#: ../../printerdrake.pm_.c:1987
+#: ../../printerdrake.pm_.c:2121
msgid ""
"Please select the test pages you want to print.\n"
"Note: the photo test page can take a rather long time to get printed and on "
@@ -7773,39 +8129,39 @@ msgstr ""
"impressoras laser com pouca memoria podem mesmo năo conseguir imprimir-la. "
"Em geral basta imprimir a pagina de teste padrăo."
-#: ../../printerdrake.pm_.c:1991
+#: ../../printerdrake.pm_.c:2125
msgid "No test pages"
msgstr "Nenhuma página de teste"
-#: ../../printerdrake.pm_.c:1992
+#: ../../printerdrake.pm_.c:2126
msgid "Print"
msgstr "Imprimir"
-#: ../../printerdrake.pm_.c:1994
+#: ../../printerdrake.pm_.c:2183
msgid "Standard test page"
msgstr "Página de teste padrăo"
-#: ../../printerdrake.pm_.c:1997
+#: ../../printerdrake.pm_.c:2186
msgid "Alternative test page (Letter)"
msgstr "Página de teste alternativa (Letter)"
-#: ../../printerdrake.pm_.c:2000
+#: ../../printerdrake.pm_.c:2189
msgid "Alternative test page (A4)"
msgstr "Página de teste alternativa (A4)"
-#: ../../printerdrake.pm_.c:2002
+#: ../../printerdrake.pm_.c:2191
msgid "Photo test page"
msgstr "Página de teste com fotos"
-#: ../../printerdrake.pm_.c:2006
+#: ../../printerdrake.pm_.c:2195
msgid "Do not print any test page"
msgstr "Năo imprime nenhuma página de teste"
-#: ../../printerdrake.pm_.c:2014 ../../printerdrake.pm_.c:2166
+#: ../../printerdrake.pm_.c:2204 ../../printerdrake.pm_.c:2357
msgid "Printing test page(s)..."
msgstr "A imprimir página(s) de teste..."
-#: ../../printerdrake.pm_.c:2039
+#: ../../printerdrake.pm_.c:2229
#, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -7820,7 +8176,7 @@ msgstr ""
"%s\n"
"\n"
-#: ../../printerdrake.pm_.c:2043
+#: ../../printerdrake.pm_.c:2233
msgid ""
"Test page(s) have been sent to the printer.\n"
"It may take some time before the printer starts.\n"
@@ -7828,15 +8184,15 @@ msgstr ""
"A(s) página(s) foi(foram) enviada(s) para a impressora.\n"
"Pode demorar algum tempo antes da impressăo começar.\n"
-#: ../../printerdrake.pm_.c:2050
+#: ../../printerdrake.pm_.c:2240
msgid "Did it work properly?"
msgstr "Funcionou correctamente?"
-#: ../../printerdrake.pm_.c:2072 ../../printerdrake.pm_.c:3191
+#: ../../printerdrake.pm_.c:2262 ../../printerdrake.pm_.c:3416
msgid "Raw printer"
msgstr "Impressora directa"
-#: ../../printerdrake.pm_.c:2098
+#: ../../printerdrake.pm_.c:2288
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -7849,15 +8205,15 @@ msgstr ""
"gráfica : \"xpp <ficheiro>\". A ferramenta gráfica permite-lhe de escolher "
"mais facilmente a impressora a utilizar e as opçoes de configuraçăo.\n"
-#: ../../printerdrake.pm_.c:2100
+#: ../../printerdrake.pm_.c:2290
msgid ""
"These commands you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications, but here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2103 ../../printerdrake.pm_.c:2120
-#: ../../printerdrake.pm_.c:2130
+#: ../../printerdrake.pm_.c:2293 ../../printerdrake.pm_.c:2310
+#: ../../printerdrake.pm_.c:2320
#, c-format
msgid ""
"\n"
@@ -7866,7 +8222,7 @@ msgid ""
"line, e. g. \"%s <file>\". "
msgstr ""
-#: ../../printerdrake.pm_.c:2106 ../../printerdrake.pm_.c:2146
+#: ../../printerdrake.pm_.c:2296 ../../printerdrake.pm_.c:2336
#, c-format
msgid ""
"To know about the options available for the current printer read either the "
@@ -7874,7 +8230,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2110
+#: ../../printerdrake.pm_.c:2300
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
@@ -7882,7 +8238,7 @@ msgstr ""
"Aqui tem uma lista das opçőes disponivéis para a impressora actual :\n"
"\n"
-#: ../../printerdrake.pm_.c:2115 ../../printerdrake.pm_.c:2125
+#: ../../printerdrake.pm_.c:2305 ../../printerdrake.pm_.c:2315
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
@@ -7891,28 +8247,28 @@ msgstr ""
"Para imprimir um ficheiro a partir da linha de commando (janela de sessăo) "
"use o commando \"%s <ficheiro>\".\n"
-#: ../../printerdrake.pm_.c:2117 ../../printerdrake.pm_.c:2127
-#: ../../printerdrake.pm_.c:2137
+#: ../../printerdrake.pm_.c:2307 ../../printerdrake.pm_.c:2317
+#: ../../printerdrake.pm_.c:2327
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2122 ../../printerdrake.pm_.c:2132
+#: ../../printerdrake.pm_.c:2312 ../../printerdrake.pm_.c:2322
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
msgstr ""
-#: ../../printerdrake.pm_.c:2135
+#: ../../printerdrake.pm_.c:2325
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\" or \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2139
+#: ../../printerdrake.pm_.c:2329
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -7922,7 +8278,7 @@ msgid ""
"jams.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2143
+#: ../../printerdrake.pm_.c:2333
#, c-format
msgid ""
"\n"
@@ -7931,40 +8287,40 @@ msgid ""
"line, e. g. \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2153
+#: ../../printerdrake.pm_.c:2343
#, c-format
msgid "Printing/Scanning/Photo Cards on \"%s\""
msgstr "Cartas de impressăo/digitalizaçăo/fotos em \"%s\""
-#: ../../printerdrake.pm_.c:2154
+#: ../../printerdrake.pm_.c:2344
#, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "Impressăo/digitalizaçăo em \"%s\""
-#: ../../printerdrake.pm_.c:2156
+#: ../../printerdrake.pm_.c:2346
#, c-format
msgid "Printing/Photo Card Access on \"%s\""
msgstr "Carta de impressăo/fotos acessível em \"%s\""
-#: ../../printerdrake.pm_.c:2157
+#: ../../printerdrake.pm_.c:2347
#, c-format
msgid "Printing on the printer \"%s\""
msgstr "A imprimir na impressora \"%s\""
-#: ../../printerdrake.pm_.c:2160 ../../printerdrake.pm_.c:2163
-#: ../../printerdrake.pm_.c:2164 ../../printerdrake.pm_.c:2165
-#: ../../printerdrake.pm_.c:3175 ../../standalone/drakTermServ_.c:248
-#: ../../standalone/drakbackup_.c:1485 ../../standalone/drakbackup_.c:3530
-#: ../../standalone/drakbug_.c:129 ../../standalone/drakfont_.c:705
+#: ../../printerdrake.pm_.c:2350 ../../printerdrake.pm_.c:2353
+#: ../../printerdrake.pm_.c:2354 ../../printerdrake.pm_.c:2355
+#: ../../printerdrake.pm_.c:3400 ../../standalone/drakTermServ_.c:248
+#: ../../standalone/drakbackup_.c:1560 ../../standalone/drakbackup_.c:4208
+#: ../../standalone/drakbug_.c:130 ../../standalone/drakfont_.c:705
#: ../../standalone/drakfont_.c:1014
msgid "Close"
msgstr "Fechar"
-#: ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2353
msgid "Print option list"
msgstr "Lista das opçőes da impressora"
-#: ../../printerdrake.pm_.c:2182
+#: ../../printerdrake.pm_.c:2373
#, c-format
msgid ""
"Your multi-function device was configured automatically to be able to scan. "
@@ -7978,7 +8334,7 @@ msgid ""
"Do not use \"scannerdrake\" for this device!"
msgstr ""
-#: ../../printerdrake.pm_.c:2202
+#: ../../printerdrake.pm_.c:2394
msgid ""
"Your printer was configured automatically to give you access to the photo "
"card drives from your PC. Now you can access your photo cards using the "
@@ -7991,17 +8347,17 @@ msgid ""
"of the file lists."
msgstr ""
-#: ../../printerdrake.pm_.c:2223 ../../printerdrake.pm_.c:2673
-#: ../../printerdrake.pm_.c:2945
+#: ../../printerdrake.pm_.c:2416 ../../printerdrake.pm_.c:2875
+#: ../../printerdrake.pm_.c:3170
msgid "Reading printer data..."
msgstr "Lendo os dados da impressora..."
-#: ../../printerdrake.pm_.c:2243 ../../printerdrake.pm_.c:2271
-#: ../../printerdrake.pm_.c:2306
+#: ../../printerdrake.pm_.c:2436 ../../printerdrake.pm_.c:2464
+#: ../../printerdrake.pm_.c:2499
msgid "Transfer printer configuration"
msgstr "Transfere a configuraçăo da impressora"
-#: ../../printerdrake.pm_.c:2244
+#: ../../printerdrake.pm_.c:2437
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -8011,7 +8367,7 @@ msgid ""
"Not all queues can be transferred due to the following reasons:\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2247
+#: ../../printerdrake.pm_.c:2440
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
@@ -8019,7 +8375,7 @@ msgstr ""
"CUPS năo suporta as impressoras em servidores Novell que enviam os dados em "
"commandos livremente-escritos.\n"
-#: ../../printerdrake.pm_.c:2249
+#: ../../printerdrake.pm_.c:2442
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
@@ -8027,39 +8383,39 @@ msgstr ""
"PDQ só suporta impressoras locais, impressoras LPD remotas, e impressoras "
"TCP/Socket.\n"
-#: ../../printerdrake.pm_.c:2251
+#: ../../printerdrake.pm_.c:2444
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr "LPD e LPRng năo suportam impressoras IPP.\n"
-#: ../../printerdrake.pm_.c:2253
+#: ../../printerdrake.pm_.c:2446
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:2254
+#: ../../printerdrake.pm_.c:2447
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
"or with native CUPS drivers cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:2255
+#: ../../printerdrake.pm_.c:2448
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
"\"Transfer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:2258
+#: ../../printerdrake.pm_.c:2451
msgid "Do not transfer printers"
msgstr "Năo transferir as impressoras"
-#: ../../printerdrake.pm_.c:2259 ../../printerdrake.pm_.c:2276
+#: ../../printerdrake.pm_.c:2452 ../../printerdrake.pm_.c:2469
msgid "Transfer"
msgstr "Transferir"
-#: ../../printerdrake.pm_.c:2272
+#: ../../printerdrake.pm_.c:2465
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -8070,28 +8426,28 @@ msgstr ""
"Carregue em \"Transferir\" para a sobrescrever.\n"
"Também pode escrever um novo nome ou saltar esta impressora."
-#: ../../printerdrake.pm_.c:2280
+#: ../../printerdrake.pm_.c:2473
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr ""
"O nome da impressora deve apenas conter letras, números e traços baixos"
-#: ../../printerdrake.pm_.c:2285
+#: ../../printerdrake.pm_.c:2478
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
"do you really want to overwrite its configuration?"
msgstr ""
-#: ../../printerdrake.pm_.c:2293
+#: ../../printerdrake.pm_.c:2486
msgid "New printer name"
msgstr "Novo nome da impressora"
-#: ../../printerdrake.pm_.c:2296
+#: ../../printerdrake.pm_.c:2489
#, c-format
msgid "Transferring %s..."
msgstr "A transferir %s ..."
-#: ../../printerdrake.pm_.c:2307
+#: ../../printerdrake.pm_.c:2500
#, c-format
msgid ""
"You have transferred your former default printer (\"%s\"), Should it be also "
@@ -8100,29 +8456,29 @@ msgstr ""
"Você transferiu a sua impressora por omissăo (\"%s\"). Devo indicar-la como "
"impressora por omissăo no novo sistema de impressăo %s?"
-#: ../../printerdrake.pm_.c:2316
+#: ../../printerdrake.pm_.c:2510
msgid "Refreshing printer data..."
msgstr "A refrescar os dados da impressora"
-#: ../../printerdrake.pm_.c:2324 ../../printerdrake.pm_.c:2395
-#: ../../printerdrake.pm_.c:2407
+#: ../../printerdrake.pm_.c:2518 ../../printerdrake.pm_.c:2590
+#: ../../printerdrake.pm_.c:2602
msgid "Configuration of a remote printer"
msgstr ""
-#: ../../printerdrake.pm_.c:2325
+#: ../../printerdrake.pm_.c:2519
msgid "Starting network..."
msgstr "A iniciar a sua ligaçăo à rede..."
-#: ../../printerdrake.pm_.c:2359 ../../printerdrake.pm_.c:2363
-#: ../../printerdrake.pm_.c:2365
+#: ../../printerdrake.pm_.c:2554 ../../printerdrake.pm_.c:2558
+#: ../../printerdrake.pm_.c:2560
msgid "Configure the network now"
msgstr "Configurar a rede agora"
-#: ../../printerdrake.pm_.c:2360
+#: ../../printerdrake.pm_.c:2555
msgid "Network functionality not configured"
msgstr "Ligaçăo à rede năo configurada"
-#: ../../printerdrake.pm_.c:2361
+#: ../../printerdrake.pm_.c:2556
msgid ""
"You are going to configure a remote printer. This needs working network "
"access, but your network is not configured yet. If you go on without network "
@@ -8130,11 +8486,11 @@ msgid ""
"configuring now. How do you want to proceed?"
msgstr ""
-#: ../../printerdrake.pm_.c:2364
+#: ../../printerdrake.pm_.c:2559
msgid "Go on without configuring the network"
msgstr "Continuar sem configurar a rede"
-#: ../../printerdrake.pm_.c:2397
+#: ../../printerdrake.pm_.c:2592
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -8144,31 +8500,31 @@ msgid ""
"\"Printer\""
msgstr ""
-#: ../../printerdrake.pm_.c:2398
+#: ../../printerdrake.pm_.c:2593
msgid ""
"The network access was not running and could not be started. Please check "
"your configuration and your hardware. Then try to configure your remote "
"printer again."
msgstr ""
-#: ../../printerdrake.pm_.c:2408
+#: ../../printerdrake.pm_.c:2603
msgid "Restarting printing system..."
msgstr "A re-lançar o sistema de impressăo..."
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2641
msgid "high"
msgstr "alto"
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2641
msgid "paranoid"
msgstr "paranóico"
-#: ../../printerdrake.pm_.c:2447
+#: ../../printerdrake.pm_.c:2642
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr ""
-#: ../../printerdrake.pm_.c:2448
+#: ../../printerdrake.pm_.c:2643
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -8183,11 +8539,11 @@ msgid ""
"Do you really want to configure printing on this machine?"
msgstr ""
-#: ../../printerdrake.pm_.c:2480
+#: ../../printerdrake.pm_.c:2675
msgid "Starting the printing system at boot time"
msgstr ""
-#: ../../printerdrake.pm_.c:2481
+#: ../../printerdrake.pm_.c:2676
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -8201,75 +8557,72 @@ msgid ""
"again?"
msgstr ""
-#: ../../printerdrake.pm_.c:2504 ../../printerdrake.pm_.c:2544
-#: ../../printerdrake.pm_.c:2581 ../../printerdrake.pm_.c:2621
-#: ../../printerdrake.pm_.c:2733
+#: ../../printerdrake.pm_.c:2700 ../../printerdrake.pm_.c:2741
+#: ../../printerdrake.pm_.c:2780 ../../printerdrake.pm_.c:2822
+#: ../../printerdrake.pm_.c:2943
msgid "Checking installed software..."
msgstr ""
-#: ../../printerdrake.pm_.c:2548
+#: ../../printerdrake.pm_.c:2746
msgid "Removing LPRng..."
msgstr ""
-#: ../../printerdrake.pm_.c:2585
+#: ../../printerdrake.pm_.c:2785
msgid "Removing LPD..."
msgstr ""
-#: ../../printerdrake.pm_.c:2657
+#: ../../printerdrake.pm_.c:2858
msgid "Select Printer Spooler"
msgstr "Seleccionar a fila da Impressora"
-#: ../../printerdrake.pm_.c:2658
+#: ../../printerdrake.pm_.c:2859
msgid "Which printing system (spooler) do you want to use?"
msgstr "Que sistema de impressăo (fila) deseja usar?"
-#: ../../printerdrake.pm_.c:2691
+#: ../../printerdrake.pm_.c:2895
#, c-format
msgid "Configuring printer \"%s\"..."
msgstr "Configurar Impressora \"%s\"..."
-#: ../../printerdrake.pm_.c:2704
+#: ../../printerdrake.pm_.c:2909
msgid "Installing Foomatic..."
msgstr "A instalar Foomatic..."
-#: ../../printerdrake.pm_.c:2769 ../../printerdrake.pm_.c:2808
-#: ../../printerdrake.pm_.c:3192 ../../printerdrake.pm_.c:3262
+#: ../../printerdrake.pm_.c:2979 ../../printerdrake.pm_.c:3020
+#: ../../printerdrake.pm_.c:3417 ../../printerdrake.pm_.c:3490
msgid "Printer options"
msgstr "Opçőes da impressora"
-#: ../../printerdrake.pm_.c:2778
-msgid "Preparing PrinterDrake..."
+#: ../../printerdrake.pm_.c:2989
+#, fuzzy
+msgid "Preparing Printerdrake..."
msgstr "A preparar PrinterDrake..."
-#: ../../printerdrake.pm_.c:2795 ../../printerdrake.pm_.c:3349
+#: ../../printerdrake.pm_.c:3007 ../../printerdrake.pm_.c:3580
msgid "Configuring applications..."
msgstr "Configurar aplicaçőes..."
-#: ../../printerdrake.pm_.c:2815
+#: ../../printerdrake.pm_.c:3027
msgid "Would you like to configure printing?"
msgstr "Deseja configurar a impressăo?"
-#: ../../printerdrake.pm_.c:2827
+#: ../../printerdrake.pm_.c:3039
msgid "Printing system: "
msgstr ""
-#: ../../printerdrake.pm_.c:2875
-msgid "Printerdrake"
-msgstr "PrinterDrake"
-
-#: ../../printerdrake.pm_.c:2879
+#: ../../printerdrake.pm_.c:3099
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; to view information about it; "
"or to make a printer on a remote CUPS server available for Star Office/"
-"OpenOffice.org."
+"OpenOffice.org/GIMP."
msgstr ""
"As impressoras seguintes estăo configuradas. Carregue duas vezes numa "
"impressora para mudar a sua configuraçăo, para a definir por omissăo, para "
"ver informaçőes sobre ela ou para meter uma impressora num servidor CUPS "
-"remoto disponivél para Star Office/OpenOffice.org."
+"remoto disponivél para Star Office/OpenOffice.org/GIMP."
-#: ../../printerdrake.pm_.c:2880
+#: ../../printerdrake.pm_.c:3100
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; or to view information about "
@@ -8279,30 +8632,30 @@ msgstr ""
"impressora para mudar a sua configuraçăo, para a definir por omissăo, ou "
"para ver informaçőes sobre ela."
-#: ../../printerdrake.pm_.c:2906
+#: ../../printerdrake.pm_.c:3127
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr ""
"Refrescar a lista das impressoras (para ver todas as impressoras CUPS "
"remotas disponivéis)"
-#: ../../printerdrake.pm_.c:2924
+#: ../../printerdrake.pm_.c:3145
msgid "Change the printing system"
msgstr "Mudar de sistema de impressăo"
-#: ../../printerdrake.pm_.c:2929 ../../standalone/drakconnect_.c:277
+#: ../../printerdrake.pm_.c:3150 ../../standalone/drakconnect_.c:277
msgid "Normal Mode"
msgstr "Modo Normal"
-#: ../../printerdrake.pm_.c:3085 ../../printerdrake.pm_.c:3135
-#: ../../printerdrake.pm_.c:3343
+#: ../../printerdrake.pm_.c:3310 ../../printerdrake.pm_.c:3360
+#: ../../printerdrake.pm_.c:3573
msgid "Do you want to configure another printer?"
msgstr "Quer configurar outra impressora?"
-#: ../../printerdrake.pm_.c:3170
+#: ../../printerdrake.pm_.c:3395
msgid "Modify printer configuration"
msgstr "Mudar a configuraçăo da impressora"
-#: ../../printerdrake.pm_.c:3172
+#: ../../printerdrake.pm_.c:3397
#, c-format
msgid ""
"Printer %s\n"
@@ -8311,100 +8664,102 @@ msgstr ""
"Impressora %s\n"
"Que deseja mudar nesta impressora?"
-#: ../../printerdrake.pm_.c:3176
+#: ../../printerdrake.pm_.c:3401
msgid "Do it!"
msgstr "Fazer-lo!"
-#: ../../printerdrake.pm_.c:3181 ../../printerdrake.pm_.c:3236
+#: ../../printerdrake.pm_.c:3406 ../../printerdrake.pm_.c:3461
msgid "Printer connection type"
msgstr "Tipo de ligaçăo da impressora"
-#: ../../printerdrake.pm_.c:3182 ../../printerdrake.pm_.c:3240
+#: ../../printerdrake.pm_.c:3407 ../../printerdrake.pm_.c:3465
msgid "Printer name, description, location"
msgstr "Nome da Impressora, descriçăo, localizaçăo"
-#: ../../printerdrake.pm_.c:3184 ../../printerdrake.pm_.c:3255
+#: ../../printerdrake.pm_.c:3409 ../../printerdrake.pm_.c:3483
msgid "Printer manufacturer, model, driver"
msgstr ""
-#: ../../printerdrake.pm_.c:3185 ../../printerdrake.pm_.c:3256
+#: ../../printerdrake.pm_.c:3410 ../../printerdrake.pm_.c:3484
msgid "Printer manufacturer, model"
msgstr ""
-#: ../../printerdrake.pm_.c:3194 ../../printerdrake.pm_.c:3266
+#: ../../printerdrake.pm_.c:3419 ../../printerdrake.pm_.c:3494
msgid "Set this printer as the default"
msgstr ""
-#: ../../printerdrake.pm_.c:3196 ../../printerdrake.pm_.c:3271
-msgid "Add this printer to Star Office/OpenOffice.org"
+#: ../../printerdrake.pm_.c:3421 ../../printerdrake.pm_.c:3499
+msgid "Add this printer to Star Office/OpenOffice.org/GIMP"
msgstr ""
-#: ../../printerdrake.pm_.c:3197 ../../printerdrake.pm_.c:3280
-msgid "Remove this printer from Star Office/OpenOffice.org"
+#: ../../printerdrake.pm_.c:3422 ../../printerdrake.pm_.c:3508
+msgid "Remove this printer from Star Office/OpenOffice.org/GIMP"
msgstr ""
-#: ../../printerdrake.pm_.c:3198 ../../printerdrake.pm_.c:3289
+#: ../../printerdrake.pm_.c:3423 ../../printerdrake.pm_.c:3517
msgid "Print test pages"
msgstr "Imprimir páginas de teste"
-#: ../../printerdrake.pm_.c:3199 ../../printerdrake.pm_.c:3291
+#: ../../printerdrake.pm_.c:3424 ../../printerdrake.pm_.c:3519
msgid "Know how to use this printer"
msgstr "Saber como utilizar esta impressora"
-#: ../../printerdrake.pm_.c:3201 ../../printerdrake.pm_.c:3293
+#: ../../printerdrake.pm_.c:3426 ../../printerdrake.pm_.c:3521
msgid "Remove printer"
msgstr "Suprimir esta impressora"
-#: ../../printerdrake.pm_.c:3245
+#: ../../printerdrake.pm_.c:3472
#, c-format
msgid "Removing old printer \"%s\"..."
msgstr "A suprimir a antiga impressora \"%s\"..."
-#: ../../printerdrake.pm_.c:3269
+#: ../../printerdrake.pm_.c:3497
msgid "Default printer"
msgstr "Impressora por omissăo"
-#: ../../printerdrake.pm_.c:3270
+#: ../../printerdrake.pm_.c:3498
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr ""
-#: ../../printerdrake.pm_.c:3274 ../../printerdrake.pm_.c:3277
-msgid "Adding printer to Star Office/OpenOffice.org"
+#: ../../printerdrake.pm_.c:3502 ../../printerdrake.pm_.c:3505
+msgid "Adding printer to Star Office/OpenOffice.org/GIMP"
msgstr ""
-#: ../../printerdrake.pm_.c:3275
+#: ../../printerdrake.pm_.c:3503
#, c-format
msgid ""
-"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
+"The printer \"%s\" was successfully added to Star Office/OpenOffice.org/GIMP."
msgstr ""
-#: ../../printerdrake.pm_.c:3278
+#: ../../printerdrake.pm_.c:3506
#, c-format
-msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
+msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org/GIMP."
msgstr ""
-#: ../../printerdrake.pm_.c:3283 ../../printerdrake.pm_.c:3286
-msgid "Removing printer from Star Office/OpenOffice.org"
+#: ../../printerdrake.pm_.c:3511 ../../printerdrake.pm_.c:3514
+msgid "Removing printer from Star Office/OpenOffice.org/GIMP"
msgstr ""
-#: ../../printerdrake.pm_.c:3284
+#: ../../printerdrake.pm_.c:3512
#, c-format
msgid ""
-"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
+"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org/"
+"GIMP."
msgstr ""
-#: ../../printerdrake.pm_.c:3287
+#: ../../printerdrake.pm_.c:3515
#, c-format
-msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
+msgid ""
+"Failed to remove the printer \"%s\" from Star Office/OpenOffice.org/GIMP."
msgstr ""
-#: ../../printerdrake.pm_.c:3295
+#: ../../printerdrake.pm_.c:3523
#, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr "Quer mesmo suprimir a impressora \"%s\"?"
-#: ../../printerdrake.pm_.c:3297
+#: ../../printerdrake.pm_.c:3527
#, c-format
msgid "Removing printer \"%s\"..."
msgstr "A suprimir a impressora \"%s\"..."
@@ -8822,7 +9177,7 @@ msgstr "Internet"
msgid "File sharing"
msgstr "Partilhar ficheiros"
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1669
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1744
msgid "System"
msgstr "Sistema"
@@ -8875,200 +9230,230 @@ msgstr "Arrancar"
msgid "Stop"
msgstr "Parar"
-#: ../../share/advertising/00-thanks.pl_.c:9
-msgid "Thank you for choosing Mandrake Linux 8.2"
+#: ../../share/advertising/01-thanks.pl_.c:9
+msgid "Thank you for choosing Mandrake Linux 9.0"
msgstr ""
-#: ../../share/advertising/00-thanks.pl_.c:10
+#: ../../share/advertising/01-thanks.pl_.c:10
msgid "Welcome to the Open Source world"
msgstr "Seja bemvindo no mundo dos Códigos de programaçăo Abertos"
-#: ../../share/advertising/00-thanks.pl_.c:11
+#: ../../share/advertising/01-thanks.pl_.c:11
msgid ""
"The success of MandrakeSoft is based upon the principle of Free Software. "
"Your new operating system is the result of collaborative work on the part of "
"the worldwide Linux Community"
msgstr ""
-#: ../../share/advertising/01-gnu.pl_.c:9
-msgid "Join the Free Software world"
+#: ../../share/advertising/02-community.pl_.c:9
+msgid "Get involved in the Free Software world"
msgstr "Junte-se ao mundo dos Programas Livres"
-#: ../../share/advertising/01-gnu.pl_.c:10
+#: ../../share/advertising/02-community.pl_.c:10
+msgid "Want to know more about the Open Source community?"
+msgstr ""
+
+#: ../../share/advertising/02-community.pl_.c:11
msgid ""
-"Get to know the Open Source community and become a member. Learn, teach, and "
-"help others by joining the many discussion forums that you will find in our "
-"\"Community\" webpages"
+"To share your own knowledge and help build Linux tools, join the discussions "
+"forum you'll find on our \"Community\" webpages"
msgstr ""
"Conheça a comunidade dos Códigos de programaçăo Abertos e seja um membro. "
"Leia, ensine, e ajude os outros ligando-se aos numerosos forums de discussăo "
"que vai poder encontrar nas nossas páginas \"Comunidade\""
-#: ../../share/advertising/02-internet.pl_.c:9
-msgid "Internet and Messaging"
-msgstr "Internet e Correio"
+#: ../../share/advertising/03-internet.pl_.c:9
+#, fuzzy
+msgid "Get the most from the Internet"
+msgstr "Ligar à Internet"
-#: ../../share/advertising/02-internet.pl_.c:10
+#: ../../share/advertising/03-internet.pl_.c:10
msgid ""
-"Mandrake Linux 8.2 provides the best software to access everything the "
-"Internet has to offer: Surf the web & view animations with Mozilla and "
-"Konqueror, exchange email & organize your personal information with "
-"Evolution and Kmail, and much more"
+"Mandrake Linux 9.0 has selected the best software for you. Surf the Web and "
+"view animations with Mozilla and Konqueror, or read your mail and handle "
+"your personal information with Evolution and Kmail"
msgstr ""
-#: ../../share/advertising/03-graphic.pl_.c:9
-msgid "Multimedia and Graphics"
-msgstr "Multimédia e Gráficos"
+#: ../../share/advertising/04-multimedia.pl_.c:9
+msgid "Discover the most up-to-date graphics and multimedia tools!"
+msgstr ""
-#: ../../share/advertising/03-graphic.pl_.c:10
+#: ../../share/advertising/04-multimedia.pl_.c:10
+msgid "Push multimedia to its limits!"
+msgstr ""
+
+#: ../../share/advertising/04-multimedia.pl_.c:11
msgid ""
-"Mandrake Linux 8.2 lets you push your multimedia computer to its limits! Use "
-"the latest software to play music and audio files, edit and organize your "
-"images and photos, watch TV and videos, and much more"
+"Mandrake Linux 9.0 enables you to use the very latest software to play audio "
+"files, edit and handle your images or photos, and play videos"
msgstr ""
-#: ../../share/advertising/04-develop.pl_.c:9
-msgid "Development"
-msgstr "Desenvolvimento"
+#: ../../share/advertising/05-games.pl_.c:9
+msgid "Games"
+msgstr "Jogos"
-#: ../../share/advertising/04-develop.pl_.c:10
+#: ../../share/advertising/05-games.pl_.c:10
msgid ""
-"Mandrake Linux 8.2 is the ultimate development platform. Discover the power "
-"of the GNU gcc compiler as well as the best Open Source development "
-"environments"
+"Mandrake Linux 9.0 provides the best Open Source games - arcade, action, "
+"cards, sports, strategy..."
msgstr ""
-#: ../../share/advertising/05-contcenter.pl_.c:9
-#: ../../standalone/drakbug_.c:69
+#: ../../share/advertising/06-mcc.pl_.c:9 ../../standalone/drakbug_.c:69
msgid "Mandrake Control Center"
msgstr "Centro de Controlo Mandrake"
-#: ../../share/advertising/05-contcenter.pl_.c:10
+#: ../../share/advertising/06-mcc.pl_.c:10
msgid ""
-"The Mandrake Linux 8.2 Control Center is a one-stop location for fully "
-"customizing and configuring your Mandrake system"
+"Mandrake Linux 9.0 provides a powerful tool to fully customize and configure "
+"your machine"
msgstr ""
-#: ../../share/advertising/06-user.pl_.c:9
+#: ../../share/advertising/07-desktop.pl_.c:9
msgid "User interfaces"
msgstr "Interfaces do utilizador"
-#: ../../share/advertising/06-user.pl_.c:10
+#: ../../share/advertising/07-desktop.pl_.c:10
msgid ""
-"Mandrake Linux 8.2 provides 11 different graphical desktop environments and "
-"window managers to choose from including GNOME 1.4, KDE 2.2.2, Window Maker "
-"0.8, and the rest"
+"Mandrake Linux 9.0 provides 11 user interfaces which can be fully modified: "
+"KDE 3, Gnome 2, WindowMaker..."
msgstr ""
-#: ../../share/advertising/07-server.pl_.c:9
-msgid "Server Software"
-msgstr "Programas de servidor"
+#: ../../share/advertising/08-development.pl_.c:9
+#, fuzzy
+msgid "Development simplified"
+msgstr "Desenvolvimento"
-#: ../../share/advertising/07-server.pl_.c:10
-msgid ""
-"Transform your machine into a powerful server with just a few clicks of the "
-"mouse: Web server, email, firewall, router, file and print server, ..."
+#: ../../share/advertising/08-development.pl_.c:10
+msgid "Mandrake Linux 9.0 is the ultimate development platform"
msgstr ""
-#: ../../share/advertising/08-games.pl_.c:9
-msgid "Games"
-msgstr "Jogos"
-
-#: ../../share/advertising/08-games.pl_.c:10
+#: ../../share/advertising/08-development.pl_.c:11
msgid ""
-"Mandrake Linux 8.2 provides the best Open Source games - arcade, action, "
-"cards, sports, strategy, ..."
+"Use the full power of the GNU gcc 3 compiler as well as the best Open Source "
+"development environments"
msgstr ""
-#: ../../share/advertising/09-MDKcampus.pl_.c:9
-msgid "MandrakeCampus"
-msgstr "MandrakeCampus"
+#: ../../share/advertising/09-server.pl_.c:9
+msgid "Turn your machine into a reliable server"
+msgstr ""
-#: ../../share/advertising/09-MDKcampus.pl_.c:10
+#: ../../share/advertising/09-server.pl_.c:10
msgid ""
-"Would you like to learn Linux simply, quickly, and for free? MandrakeSoft "
-"provides free Linux training, as well as a way to test your progress, at "
-"MandrakeCampus -- our online training center"
+"Transform your machine into a powerful server in a few clicks of your mouse: "
+"Web server, mail, firewall, router, file and print server..."
msgstr ""
-"Deseja aprender o Linux de maneira simples, rápida, e gratuita? A "
-"MandrakeSoft fornece treino gratuito a Linux, assim como meios de testar os "
-"seus progressos, em MandrakeCampus -- o nosso centro de treino em linha"
-#: ../../share/advertising/10-MDKexpert.pl_.c:9
-msgid "MandrakeExpert"
-msgstr "MandrakeExpert"
+#: ../../share/advertising/10-mnf.pl_.c:9
+msgid "Optimize your security"
+msgstr ""
-#: ../../share/advertising/10-MDKexpert.pl_.c:10
+#: ../../share/advertising/10-mnf.pl_.c:10
msgid ""
-"Quality support from the Linux Community, and from MandrakeSoft, is just "
-"around the corner. And if you're already a Linux veteran, become an \"Expert"
-"\" and share your knowledge at our support website"
+"The MandrakeSecurity range includes the Multi Network Firewall product (M.N."
+"F.)"
msgstr ""
-"Um suporte de qualidade pela Comunidade Linux, e por MandrakeSoft, está ao "
-"seu alcance. E se você já é um veterano do Linux, inscreva-se como \"Perito"
-"\" e partilhe o que sabe no nosso servidor web de suporte"
-
-#: ../../share/advertising/11-consul.pl_.c:9
-msgid "MandrakeConsulting"
-msgstr "MandrakeConsulting"
-#: ../../share/advertising/11-consul.pl_.c:10
+#: ../../share/advertising/10-mnf.pl_.c:11
msgid ""
-"For all of your IT projects, our consultants are ready to analyze your "
-"requirements and offer a customized solution. Benefit from MandrakeSoft's "
-"vast experience as a Linux producer to provide a true IT alternative for "
-"your business organization"
+"This firewall product includes network features which allow you to fulfill "
+"all your security needs"
msgstr ""
-"Para todos os seus projectos IT, os nossos consultantes estăo prontos a "
-"analisar as necessidades e a propor uma soluçăo personalizada. Aproveite da "
-"grande experiência de MandrakeSoft como produtor de Linux para obter uma "
-"verdadeira soluçăo IT alternativa na sua empresa"
-#: ../../share/advertising/12-MDKstore.pl_.c:9
-msgid "MandrakeStore"
-msgstr "MandrakeStore"
+#: ../../share/advertising/10-mnf.pl_.c:12
+msgid "This product is available on MandrakeStore website"
+msgstr ""
+
+#: ../../share/advertising/11-mdkstore.pl_.c:9
+msgid "The official MandrakeSoft store"
+msgstr ""
-#: ../../share/advertising/12-MDKstore.pl_.c:10
+#: ../../share/advertising/11-mdkstore.pl_.c:10
+#, fuzzy
msgid ""
-"A full range of Linux solutions, as well as special offers on products and "
+"Our full range of Linux solutions, as well as special offers on products and "
"'goodies', are available online at our e-store"
msgstr ""
"Uma linha completa de soluçőes Linux, assim como ofertas especiais e "
"suplementos, estăo disponivéis em linha na nossa e-loja"
-#: ../../share/advertising/13-Nvert.pl_.c:9
+#: ../../share/advertising/12-mdkstore.pl_.c:9
+msgid "Strategic partners"
+msgstr ""
+
+#: ../../share/advertising/12-mdkstore.pl_.c:10
msgid ""
-"For more information on MandrakeSoft's Professional Services and commercial "
-"offerings, please see the following web page:"
+"MandrakeSoft works alongside a selection of companies offering professional "
+"solutions compatible with Mandrake Linux; a list of these partners is "
+"available on the MandrakeStore"
msgstr ""
-"Para mais informaçőes sobre os Serviços Profissionais MandrakeSoft e ofertas "
-"comerciais, visite por favor a seguinte pagina web :"
-#: ../../share/advertising/13-Nvert.pl_.c:11
-msgid "http://www.mandrakesoft.com/sales/contact"
-msgstr "http://www.mandrakesoft.com/sales/contact"
+#: ../../share/advertising/13-mdkcampus.pl_.c:9
+msgid "Discover MandrakeSoft's training catalogue Linux-Campus"
+msgstr ""
-#: ../../standalone.pm_.c:40
+#: ../../share/advertising/13-mdkcampus.pl_.c:10
+msgid ""
+"The training program has been create to respond to the needs of both users "
+"and experts (Network and System administrations)"
+msgstr ""
+
+#: ../../share/advertising/13-mdkcampus.pl_.c:11
+msgid "Certify yourself on Linux"
+msgstr ""
+
+#: ../../share/advertising/13-mdkcampus.pl_.c:12
+msgid ""
+"Whether you choose to teach yourself online or via our network of training "
+"partners, the Linux-Campus catalogue prepares you for the acknowledged LPI "
+"certification program (worldwide professional technical certification)"
+msgstr ""
+
+#: ../../share/advertising/14-mdkexpert.pl_.c:9
+#, fuzzy
+msgid "Become a MandrakeExpert"
+msgstr "MandrakeExpert"
+
+#: ../../share/advertising/14-mdkexpert.pl_.c:10
+msgid ""
+"Find the solutions to your problems via MandrakeSoft's online support "
+"platform"
+msgstr ""
+
+#: ../../share/advertising/14-mdkexpert.pl_.c:11
+msgid ""
+"Join the MandrakeSoft support teams and the Linux Community online to share "
+"your knowledge and help others by becoming a recognized Expert on the online "
+"technical support website:"
+msgstr ""
+
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:9
+#, fuzzy
+msgid "MandrakeExpert Corporate"
+msgstr "MandrakeExpert"
+
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:10
+msgid "An online platform to respond to company's specific support needs"
+msgstr ""
+
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:11
+msgid ""
+"All incidents will be followed up by a single qualified MandrakeSoft "
+"technical expert."
+msgstr ""
+
+#: ../../standalone.pm_.c:41
msgid "Installing packages..."
msgstr "A instalar os pacotes..."
-#: ../../standalone/XFdrake_.c:143
+#: ../../standalone/XFdrake_.c:145
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "Por favor saía e depois utilize Ctrl-Alt-BackSpace"
-#: ../../standalone/XFdrake_.c:147
+#: ../../standalone/XFdrake_.c:149
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "Por favor volte a entrar no %s para activar a alteraçőes"
-#: ../../standalone/diskdrake_.c:81
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I'll try to go on blanking bad partitions"
-msgstr ""
-"Eu năo consigo ler sua tabela de partiçőes, é demasiado defeituosa\n"
-"para mim. Tentarei continuar limpando as partiçőes defeituosas"
-
#: ../../standalone/drakTermServ_.c:188
msgid "Mandrake Terminal Server Configuration"
msgstr "Configuraçăo do Mandrake Terminal Server"
@@ -9105,12 +9490,13 @@ msgstr "Adicionar/Suprimir utilizadores"
msgid "Add/Del Clients"
msgstr "Adicionar/Suprimir Clientes"
-#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3282
-#: ../../standalone/drakbackup_.c:3315 ../../standalone/drakbackup_.c:3341
-#: ../../standalone/drakbackup_.c:3368 ../../standalone/drakbackup_.c:3395
-#: ../../standalone/drakbackup_.c:3434 ../../standalone/drakbackup_.c:3455
-#: ../../standalone/drakbackup_.c:3482 ../../standalone/drakbackup_.c:3508
-#: ../../standalone/drakbackup_.c:3533 ../../standalone/drakfont_.c:700
+#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3930
+#: ../../standalone/drakbackup_.c:3963 ../../standalone/drakbackup_.c:3989
+#: ../../standalone/drakbackup_.c:4016 ../../standalone/drakbackup_.c:4043
+#: ../../standalone/drakbackup_.c:4082 ../../standalone/drakbackup_.c:4103
+#: ../../standalone/drakbackup_.c:4130 ../../standalone/drakbackup_.c:4160
+#: ../../standalone/drakbackup_.c:4186 ../../standalone/drakbackup_.c:4211
+#: ../../standalone/drakfont_.c:700
msgid "Help"
msgstr "Ajuda"
@@ -9274,8 +9660,8 @@ msgstr ""
"\n"
"Os parametros da auto-instalaçăo estăo disponivéis nas secçőes à esquerda"
-#: ../../standalone/drakautoinst_.c:239 ../../standalone/drakgw_.c:548
-#: ../../standalone/scannerdrake_.c:105
+#: ../../standalone/drakautoinst_.c:239 ../../standalone/drakgw_.c:484
+#: ../../standalone/scannerdrake_.c:119
msgid "Congratulations!"
msgstr "Parabéns!"
@@ -9299,20 +9685,24 @@ msgstr "Adicionar um elemento"
msgid "Remove the last item"
msgstr "Suprimir o ultimo elemento"
-#: ../../standalone/drakbackup_.c:625
+#: ../../standalone/drakbackup_.c:619
msgid "Cron not available yet as non-root"
msgstr ""
-#: ../../standalone/drakbackup_.c:731
+#: ../../standalone/drakbackup_.c:725
msgid "WARNING"
msgstr ""
-#: ../../standalone/drakbackup_.c:732
+#: ../../standalone/drakbackup_.c:726
#, fuzzy
msgid "FATAL"
msgstr "FAT"
-#: ../../standalone/drakbackup_.c:744
+#: ../../standalone/drakbackup_.c:727
+msgid "INFO"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:739
msgid ""
"\n"
" DrakBackup Report \n"
@@ -9322,7 +9712,7 @@ msgstr ""
" Jornal do DrakBackup \n"
"\n"
-#: ../../standalone/drakbackup_.c:745
+#: ../../standalone/drakbackup_.c:740
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -9334,7 +9724,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:749
+#: ../../standalone/drakbackup_.c:744
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -9346,12 +9736,19 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:770 ../../standalone/drakbackup_.c:840
-#: ../../standalone/drakbackup_.c:894
+#: ../../standalone/drakbackup_.c:765 ../../standalone/drakbackup_.c:835
+#: ../../standalone/drakbackup_.c:889
msgid "Total progess"
msgstr "Progressăo total"
-#: ../../standalone/drakbackup_.c:822
+#: ../../standalone/drakbackup_.c:788
+msgid ""
+"Sorry, perl-Expect is not installed/enabled. To use\n"
+"this feature, install perl-Expect and comment lines 772-774,\n"
+" as well as 788,789. Then uncomment line 787."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:817
#, c-format
msgid ""
"%s exists, delete?\n"
@@ -9364,16 +9761,41 @@ msgstr ""
"Cuidado : Se já fez isto vai provavelmente\n"
" ter que limpar a entrada das chaves autorizadas no servidor."
-#: ../../standalone/drakbackup_.c:831
+#: ../../standalone/drakbackup_.c:826
msgid "This may take a moment to generate the keys."
msgstr "Pode tomar um momento a criar as chaves."
-#: ../../standalone/drakbackup_.c:838
+#: ../../standalone/drakbackup_.c:833
#, c-format
msgid "ERROR: Cannot spawn %s."
msgstr "ERRO : Năo consigo semear %s."
-#: ../../standalone/drakbackup_.c:865
+#: ../../standalone/drakbackup_.c:850
+#, c-format
+msgid "No password prompt on %s at port %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:851
+#, fuzzy, c-format
+msgid "Bad password on %s"
+msgstr "Nenhuma senha"
+
+#: ../../standalone/drakbackup_.c:852
+#, c-format
+msgid "Permission denied transferring %s to %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:853
+#, fuzzy, c-format
+msgid "Can't find %s on %s"
+msgstr "Năo é possível abrir %s: %s\n"
+
+#: ../../standalone/drakbackup_.c:856
+#, c-format
+msgid "%s not responding"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:860
#, c-format
msgid ""
"Transfer successful\n"
@@ -9390,60 +9812,65 @@ msgstr ""
"\n"
"sem que lhe seja pedido uma senha."
-#: ../../standalone/drakbackup_.c:908
+#: ../../standalone/drakbackup_.c:903
msgid "WebDAV remote site already in sync!"
msgstr ""
-#: ../../standalone/drakbackup_.c:912
+#: ../../standalone/drakbackup_.c:907
msgid "WebDAV transfer failed!"
msgstr ""
-#: ../../standalone/drakbackup_.c:934
+#: ../../standalone/drakbackup_.c:928
msgid "No CDR/DVDR in drive!"
msgstr ""
-#: ../../standalone/drakbackup_.c:938
+#: ../../standalone/drakbackup_.c:932
msgid "Does not appear to be recordable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:942
+#: ../../standalone/drakbackup_.c:936
msgid "Not erasable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:981
+#: ../../standalone/drakbackup_.c:975
msgid "This may take a moment to erase the media."
msgstr "Vai tomar um momento para apagar o média."
-#: ../../standalone/drakbackup_.c:1045
+#: ../../standalone/drakbackup_.c:1060
msgid "Permission problem accessing CD."
msgstr ""
-#: ../../standalone/drakbackup_.c:1144 ../../standalone/drakbackup_.c:1193
+#: ../../standalone/drakbackup_.c:1087
+#, c-format
+msgid "No tape in %s!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1199 ../../standalone/drakbackup_.c:1248
msgid "Backup system files..."
msgstr "A arquivar os ficheiros do sistema..."
-#: ../../standalone/drakbackup_.c:1194 ../../standalone/drakbackup_.c:1261
+#: ../../standalone/drakbackup_.c:1249 ../../standalone/drakbackup_.c:1316
msgid "Hard Disk Backup files..."
msgstr "Cópia de segurança dos ficheiros do disco rígido..."
-#: ../../standalone/drakbackup_.c:1206
+#: ../../standalone/drakbackup_.c:1261
msgid "Backup User files..."
msgstr "Cópia de segurança dos ficheiros do utilizador..."
-#: ../../standalone/drakbackup_.c:1207
+#: ../../standalone/drakbackup_.c:1262
msgid "Hard Disk Backup Progress..."
msgstr "A arquivar o disco rígido..."
-#: ../../standalone/drakbackup_.c:1260
+#: ../../standalone/drakbackup_.c:1315
msgid "Backup Other files..."
msgstr "Cópia de segurança d'outros ficheiros..."
-#: ../../standalone/drakbackup_.c:1266
+#: ../../standalone/drakbackup_.c:1321
#, fuzzy
msgid "No changes to backup!"
msgstr "Utilizar um leitor de cassetes para arquivar"
-#: ../../standalone/drakbackup_.c:1282 ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1337 ../../standalone/drakbackup_.c:1360
#, c-format
msgid ""
"\n"
@@ -9454,16 +9881,16 @@ msgstr ""
"Drakbackup trabalha com %s:\n"
"\n"
-#: ../../standalone/drakbackup_.c:1289
+#: ../../standalone/drakbackup_.c:1344
#, c-format
msgid ""
-"file list sent by FTP : %s\n"
+"file list sent by FTP: %s\n"
" "
msgstr ""
"lista dos ficheiros enviada por FTP : %s\n"
" "
-#: ../../standalone/drakbackup_.c:1292
+#: ../../standalone/drakbackup_.c:1347
msgid ""
"\n"
" FTP connection problem: It was not possible to send your backup files by "
@@ -9473,7 +9900,7 @@ msgstr ""
" Problema na ligaçăo FTP : Năo foi possível enviar o seus ficheiros de "
"arquivo por FTP.\n"
-#: ../../standalone/drakbackup_.c:1310
+#: ../../standalone/drakbackup_.c:1365
msgid ""
"\n"
"Drakbackup activities via CD:\n"
@@ -9483,7 +9910,7 @@ msgstr ""
"Operaçőes Drakbackup por CD:\n"
"\n"
-#: ../../standalone/drakbackup_.c:1315
+#: ../../standalone/drakbackup_.c:1370
msgid ""
"\n"
"Drakbackup activities via tape:\n"
@@ -9493,24 +9920,24 @@ msgstr ""
"Operaçőes Drakbackup por cassete:\n"
"\n"
-#: ../../standalone/drakbackup_.c:1324
+#: ../../standalone/drakbackup_.c:1379
msgid " Error during mail sending. \n"
msgstr " Erro ao enviar o correio. \n"
-#: ../../standalone/drakbackup_.c:1346
+#: ../../standalone/drakbackup_.c:1404
msgid "Can't create catalog!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1459 ../../standalone/drakbackup_.c:1470
-#: ../../standalone/drakbackup_.c:1481 ../../standalone/drakfont_.c:1004
+#: ../../standalone/drakbackup_.c:1517 ../../standalone/drakbackup_.c:1528
+#: ../../standalone/drakfont_.c:1004
msgid "File Selection"
msgstr "Selecçăo de Ficheiros"
-#: ../../standalone/drakbackup_.c:1486
+#: ../../standalone/drakbackup_.c:1556
msgid "Select the files or directories and click on 'Add'"
msgstr "Escolha os ficheiros e pastas e carregue em 'Adicionar'"
-#: ../../standalone/drakbackup_.c:1525
+#: ../../standalone/drakbackup_.c:1600
msgid ""
"\n"
"Please check all options that you need.\n"
@@ -9518,25 +9945,25 @@ msgstr ""
"\n"
"Por favor escolha todas as opçoes que precise.\n"
-#: ../../standalone/drakbackup_.c:1526
+#: ../../standalone/drakbackup_.c:1601
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
"Estas opçoes podem arquivar e restaurar todos os ficheiros na pasta /etc.\n"
-#: ../../standalone/drakbackup_.c:1527
+#: ../../standalone/drakbackup_.c:1602
msgid "Backup your System files. (/etc directory)"
msgstr "Arquivar os ficheiros do sistema. (pasta /etc)"
-#: ../../standalone/drakbackup_.c:1528
+#: ../../standalone/drakbackup_.c:1603
msgid "Use incremental backup (do not replace old backups)"
msgstr "Utilizar arquivos por incrementaçăo (năo esmaga os antigos arquivos)"
-#: ../../standalone/drakbackup_.c:1529
+#: ../../standalone/drakbackup_.c:1604
msgid "Do not include critical files (passwd, group, fstab)"
msgstr "Năo incluir os ficheiros importantes (senhas, grupos, fstab)"
-#: ../../standalone/drakbackup_.c:1530
+#: ../../standalone/drakbackup_.c:1605
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
@@ -9544,41 +9971,45 @@ msgstr ""
"Com esta opçăo vai poder restaurar qualquer versăo\n"
" da sua pasta /etc."
-#: ../../standalone/drakbackup_.c:1547
+#: ../../standalone/drakbackup_.c:1622
msgid "Please check all users that you want to include in your backup."
msgstr ""
"Por favor escolha todos os utilizadores que quer incluir na cópia de "
"segurança."
-#: ../../standalone/drakbackup_.c:1574
+#: ../../standalone/drakbackup_.c:1649
msgid "Do not include the browser cache"
msgstr "Năo incluir o cache do navegador"
-#: ../../standalone/drakbackup_.c:1575 ../../standalone/drakbackup_.c:1599
+#: ../../standalone/drakbackup_.c:1650 ../../standalone/drakbackup_.c:1674
msgid "Use Incremental Backups (do not replace old backups)"
msgstr "Utilizar arquivos por incrementaçăo (năo esmaga os antigos arquivos)"
-#: ../../standalone/drakbackup_.c:1597 ../../standalone/drakfont_.c:1058
+#: ../../standalone/drakbackup_.c:1672 ../../standalone/drakfont_.c:1058
msgid "Remove Selected"
msgstr "Remover selecçăo"
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:1710
msgid "Windows (FAT32)"
msgstr "Windows (FAT32)"
-#: ../../standalone/drakbackup_.c:1674
+#: ../../standalone/drakbackup_.c:1749
msgid "Users"
msgstr "Utilizadores"
-#: ../../standalone/drakbackup_.c:1700
+#: ../../standalone/drakbackup_.c:1775
msgid "Use network connection to backup"
msgstr "Utilizar uma ligaçăo à rede para a cópia de segurança"
-#: ../../standalone/drakbackup_.c:1706
+#: ../../standalone/drakbackup_.c:1777
+msgid "Net Method:"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1781
msgid "Use Expect for SSH"
msgstr "Utilizar Expect para SSH"
-#: ../../standalone/drakbackup_.c:1707
+#: ../../standalone/drakbackup_.c:1782
msgid ""
"Create/Transfer\n"
"backup keys for SSH"
@@ -9586,7 +10017,7 @@ msgstr ""
"Criar/Transferir\n"
"senhas de arquivo para SSH"
-#: ../../standalone/drakbackup_.c:1708
+#: ../../standalone/drakbackup_.c:1783
msgid ""
" Transfer \n"
"Now"
@@ -9594,15 +10025,15 @@ msgstr ""
" Transferir \n"
"Agora"
-#: ../../standalone/drakbackup_.c:1709
+#: ../../standalone/drakbackup_.c:1784
msgid "Keys in place already"
msgstr "A senhas já estăo no sitio"
-#: ../../standalone/drakbackup_.c:1713
+#: ../../standalone/drakbackup_.c:1788
msgid "Please enter the host name or IP."
msgstr "Por favor escreva o nome de anfitriăo ou o IP."
-#: ../../standalone/drakbackup_.c:1718
+#: ../../standalone/drakbackup_.c:1793
msgid ""
"Please enter the directory (or module) to\n"
" put the backup on this host."
@@ -9610,27 +10041,27 @@ msgstr ""
"Por favor escreva a pasta (ou modulo) para\n"
" meter o arquivo neste anfitriăo."
-#: ../../standalone/drakbackup_.c:1723
+#: ../../standalone/drakbackup_.c:1798
msgid "Please enter your login"
msgstr "Por favor escreva a seu nome de utilizador"
-#: ../../standalone/drakbackup_.c:1728
+#: ../../standalone/drakbackup_.c:1803
msgid "Please enter your password"
msgstr "Por favor escreva a senha"
-#: ../../standalone/drakbackup_.c:1734
+#: ../../standalone/drakbackup_.c:1809
msgid "Remember this password"
msgstr "Lembrar a senha"
-#: ../../standalone/drakbackup_.c:1745
+#: ../../standalone/drakbackup_.c:1820
msgid "Need hostname, username and password!"
msgstr "Preciso do nome de anfitriăo, do nome do utilizador e da senha !"
-#: ../../standalone/drakbackup_.c:1841
+#: ../../standalone/drakbackup_.c:1915
msgid "Use CD/DVDROM to backup"
msgstr "Utilizar CD/DVDROM para arquivar"
-#: ../../standalone/drakbackup_.c:1844
+#: ../../standalone/drakbackup_.c:1918
msgid ""
"Please choose your CD/DVD device\n"
"(Press Enter to propogate settings to other fields.\n"
@@ -9641,35 +10072,35 @@ msgstr ""
"Esta zona năo é necessária, é só uma ferramenta para preencher este "
"formulario.)"
-#: ../../standalone/drakbackup_.c:1849
+#: ../../standalone/drakbackup_.c:1923
msgid "Please choose your CD/DVD media size"
msgstr "Por favor escolha o tamanho do CD/DVD"
-#: ../../standalone/drakbackup_.c:1855
+#: ../../standalone/drakbackup_.c:1929
msgid "Please check for multisession CD"
msgstr "Por favor verifique se usa um CD multisessăo"
-#: ../../standalone/drakbackup_.c:1861
+#: ../../standalone/drakbackup_.c:1935
msgid "Please check if you are using CDRW media"
msgstr "Por favor escolha se usa um média CDRW"
-#: ../../standalone/drakbackup_.c:1867
+#: ../../standalone/drakbackup_.c:1941
msgid "Please check if you want to erase your RW media (1st Session)"
msgstr "Por favor escolha se quer apagar o média RW (1ra Sessăo)"
-#: ../../standalone/drakbackup_.c:1868
+#: ../../standalone/drakbackup_.c:1942
msgid " Erase Now "
msgstr " Apagar Agora "
-#: ../../standalone/drakbackup_.c:1874
+#: ../../standalone/drakbackup_.c:1948
msgid "Please check if you are using a DVDR device"
msgstr "Por favor escolha se usa um média DVDR"
-#: ../../standalone/drakbackup_.c:1880
+#: ../../standalone/drakbackup_.c:1954
msgid "Please check if you are using a DVDRAM device"
msgstr "Por favor escolha se usa um média DVDRAM"
-#: ../../standalone/drakbackup_.c:1893
+#: ../../standalone/drakbackup_.c:1967
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
@@ -9677,32 +10108,32 @@ msgstr ""
"Por favor indique o nome do dispositivo gravador de CD\n"
" ex: 0,1,0"
-#: ../../standalone/drakbackup_.c:1926
+#: ../../standalone/drakbackup_.c:2000
msgid "No CD device defined!"
msgstr "Nenhum periférico CD definido !"
-#: ../../standalone/drakbackup_.c:1974
+#: ../../standalone/drakbackup_.c:2048
msgid "Use tape to backup"
msgstr "Utilizar um leitor de cassetes para arquivar"
-#: ../../standalone/drakbackup_.c:1977
+#: ../../standalone/drakbackup_.c:2051
msgid "Please enter the device name to use for backup"
msgstr "Por favor indique o nome do dispositivo a utilizar para arquivar"
-#: ../../standalone/drakbackup_.c:1983
+#: ../../standalone/drakbackup_.c:2057
msgid "Please check if you want to use the non-rewinding device."
msgstr "Por favor escolha se deseja o dispositivo sem rembobinagem."
-#: ../../standalone/drakbackup_.c:1989
+#: ../../standalone/drakbackup_.c:2063
msgid "Please check if you want to erase your tape before the backup."
msgstr "Por favor escolha se deseja apagar a cassete antes de fazer a cópia."
-#: ../../standalone/drakbackup_.c:1995
+#: ../../standalone/drakbackup_.c:2069
msgid "Please check if you want to eject your tape after the backup."
msgstr "Por favor escolha se deseja ejectar a cassete depois de arquivar."
-#: ../../standalone/drakbackup_.c:2001 ../../standalone/drakbackup_.c:2074
-#: ../../standalone/drakbackup_.c:3025
+#: ../../standalone/drakbackup_.c:2075 ../../standalone/drakbackup_.c:2149
+#: ../../standalone/drakbackup_.c:3116
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
@@ -9710,55 +10141,55 @@ msgstr ""
"Por favor indique o tamanho máximo\n"
" permitido parra Drakbackup"
-#: ../../standalone/drakbackup_.c:2066
+#: ../../standalone/drakbackup_.c:2140
msgid "Please enter the directory to save to:"
msgstr "Por favor escreva a pasta onde gravar:"
-#: ../../standalone/drakbackup_.c:2080 ../../standalone/drakbackup_.c:3031
+#: ../../standalone/drakbackup_.c:2155 ../../standalone/drakbackup_.c:3122
msgid "Use quota for backup files."
msgstr "Utilizar quotas para os ficheiros da cópia de segurança."
-#: ../../standalone/drakbackup_.c:2146
+#: ../../standalone/drakbackup_.c:2221
msgid "Network"
msgstr "Rede"
-#: ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:2226
msgid "CDROM / DVDROM"
msgstr "CDROM / DVDROM"
-#: ../../standalone/drakbackup_.c:2156
+#: ../../standalone/drakbackup_.c:2231
msgid "HardDrive / NFS"
msgstr "Disco Rígido / NFS"
-#: ../../standalone/drakbackup_.c:2161
+#: ../../standalone/drakbackup_.c:2236
msgid "Tape"
msgstr "Cassete"
-#: ../../standalone/drakbackup_.c:2175 ../../standalone/drakbackup_.c:2179
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2250 ../../standalone/drakbackup_.c:2254
+#: ../../standalone/drakbackup_.c:2258
msgid "hourly"
msgstr "todas as horas"
-#: ../../standalone/drakbackup_.c:2176 ../../standalone/drakbackup_.c:2180
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2251 ../../standalone/drakbackup_.c:2255
+#: ../../standalone/drakbackup_.c:2258
msgid "daily"
msgstr "todos os dias"
-#: ../../standalone/drakbackup_.c:2177 ../../standalone/drakbackup_.c:2181
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2252 ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2258
msgid "weekly"
msgstr "todas as semanas"
-#: ../../standalone/drakbackup_.c:2178 ../../standalone/drakbackup_.c:2182
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2253 ../../standalone/drakbackup_.c:2257
+#: ../../standalone/drakbackup_.c:2258
msgid "monthly"
msgstr "todos os meses"
-#: ../../standalone/drakbackup_.c:2196
+#: ../../standalone/drakbackup_.c:2271
msgid "Use daemon"
msgstr "Utilizar um demónio"
-#: ../../standalone/drakbackup_.c:2201
+#: ../../standalone/drakbackup_.c:2276
msgid ""
"Please choose the time \n"
"interval between each backup"
@@ -9766,7 +10197,7 @@ msgstr ""
"Por favor escolha o intervalo de\n"
"tempo entre cada cópia de segurança"
-#: ../../standalone/drakbackup_.c:2207
+#: ../../standalone/drakbackup_.c:2282
msgid ""
"Please choose the\n"
"media for backup."
@@ -9774,7 +10205,7 @@ msgstr ""
"Por favor escolha o média\n"
"a utilizar para a cópia de segurança."
-#: ../../standalone/drakbackup_.c:2214
+#: ../../standalone/drakbackup_.c:2289
msgid ""
"Please be sure that the cron daemon is included in your services. \n"
"\n"
@@ -9784,71 +10215,71 @@ msgstr ""
"\n"
"Note que por agora todos os médias 'rede' também utilizam o disco rígido."
-#: ../../standalone/drakbackup_.c:2251
-msgid "Send mail report after each backup to :"
+#: ../../standalone/drakbackup_.c:2326
+msgid "Send mail report after each backup to:"
msgstr "Enviar um resumo por correio após cada operaçăo para :"
-#: ../../standalone/drakbackup_.c:2257
+#: ../../standalone/drakbackup_.c:2332
msgid "Delete Hard Drive tar files after backup to other media."
msgstr ""
-#: ../../standalone/drakbackup_.c:2296
+#: ../../standalone/drakbackup_.c:2371
msgid "What"
msgstr "O quê"
-#: ../../standalone/drakbackup_.c:2301
+#: ../../standalone/drakbackup_.c:2376
msgid "Where"
msgstr "Onde"
-#: ../../standalone/drakbackup_.c:2306
+#: ../../standalone/drakbackup_.c:2381
msgid "When"
msgstr "Quando"
-#: ../../standalone/drakbackup_.c:2311
+#: ../../standalone/drakbackup_.c:2386
msgid "More Options"
msgstr "Mais Opçőes"
-#: ../../standalone/drakbackup_.c:2330 ../../standalone/drakbackup_.c:3873
+#: ../../standalone/drakbackup_.c:2405 ../../standalone/drakbackup_.c:4530
msgid "Drakbackup Configuration"
msgstr "Configuraçăo de Drakbackup"
-#: ../../standalone/drakbackup_.c:2348
+#: ../../standalone/drakbackup_.c:2423
msgid "Please choose where you want to backup"
msgstr "Por favor escolha onde quer fazer a cópia de segurança"
-#: ../../standalone/drakbackup_.c:2350
+#: ../../standalone/drakbackup_.c:2425
msgid "on Hard Drive"
msgstr "no Disco Rígido"
-#: ../../standalone/drakbackup_.c:2360
+#: ../../standalone/drakbackup_.c:2435
msgid "across Network"
msgstr "Através da Rede"
-#: ../../standalone/drakbackup_.c:2370
+#: ../../standalone/drakbackup_.c:2445
msgid "on CDROM"
msgstr "no CDROM"
-#: ../../standalone/drakbackup_.c:2378
+#: ../../standalone/drakbackup_.c:2453
msgid "on Tape Device"
msgstr "no dispositivo Cassete"
-#: ../../standalone/drakbackup_.c:2421
+#: ../../standalone/drakbackup_.c:2496
msgid "Please choose what you want to backup"
msgstr "Por favor escolha o que quer na cópia de segurança"
-#: ../../standalone/drakbackup_.c:2422
+#: ../../standalone/drakbackup_.c:2497
msgid "Backup system"
msgstr "Cópia de segurança do sistema"
-#: ../../standalone/drakbackup_.c:2423
+#: ../../standalone/drakbackup_.c:2498
msgid "Backup Users"
msgstr "Arquiva os Utilizadores"
-#: ../../standalone/drakbackup_.c:2426
+#: ../../standalone/drakbackup_.c:2501
msgid "Select user manually"
msgstr "Escolher o utilizador manualmente"
-#: ../../standalone/drakbackup_.c:2508
+#: ../../standalone/drakbackup_.c:2584
msgid ""
"\n"
"Backup Sources: \n"
@@ -9856,7 +10287,7 @@ msgstr ""
"\n"
"Fontes de Arquivo : \n"
-#: ../../standalone/drakbackup_.c:2509
+#: ../../standalone/drakbackup_.c:2585
msgid ""
"\n"
"- System Files:\n"
@@ -9864,7 +10295,7 @@ msgstr ""
"\n"
"- Ficheiros do sistema :\n"
-#: ../../standalone/drakbackup_.c:2511
+#: ../../standalone/drakbackup_.c:2587
msgid ""
"\n"
"- User Files:\n"
@@ -9872,7 +10303,7 @@ msgstr ""
"\n"
"- Ficheiros dos Utilizadores :\n"
-#: ../../standalone/drakbackup_.c:2513
+#: ../../standalone/drakbackup_.c:2589
msgid ""
"\n"
"- Other Files:\n"
@@ -9880,22 +10311,22 @@ msgstr ""
"\n"
"- Outros Ficheiros:\n"
-#: ../../standalone/drakbackup_.c:2515
+#: ../../standalone/drakbackup_.c:2591
#, c-format
msgid ""
"\n"
-"- Save on Hard drive on path : %s\n"
+"- Save on Hard drive on path: %s\n"
msgstr ""
"\n"
"- Grava no Disco Rígido no caminho : %s\n"
-#: ../../standalone/drakbackup_.c:2518
+#: ../../standalone/drakbackup_.c:2594
msgid ""
"\n"
"- Delete hard drive tar files after backup.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2524
+#: ../../standalone/drakbackup_.c:2600
msgid ""
"\n"
"- Burn to CD"
@@ -9903,43 +10334,43 @@ msgstr ""
"\n"
"- Grava no CD"
-#: ../../standalone/drakbackup_.c:2525
+#: ../../standalone/drakbackup_.c:2601
msgid "RW"
msgstr "RW"
-#: ../../standalone/drakbackup_.c:2526
+#: ../../standalone/drakbackup_.c:2602
#, c-format
-msgid " on device : %s"
+msgid " on device: %s"
msgstr "no dispositivo : %s"
-#: ../../standalone/drakbackup_.c:2527
+#: ../../standalone/drakbackup_.c:2603
msgid " (multi-session)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2528
+#: ../../standalone/drakbackup_.c:2604
#, c-format
msgid ""
"\n"
-"- Save to Tape on device : %s"
+"- Save to Tape on device: %s"
msgstr ""
"\n"
"- Grava na cassete no dispositivo : %s"
-#: ../../standalone/drakbackup_.c:2529
+#: ../../standalone/drakbackup_.c:2605
#, c-format
msgid "\t\tErase=%s"
msgstr "\t\tApaga=%s"
-#: ../../standalone/drakbackup_.c:2532
+#: ../../standalone/drakbackup_.c:2608
#, c-format
msgid ""
"\n"
-"- Save via %s on host : %s\n"
+"- Save via %s on host: %s\n"
msgstr ""
"\n"
"- Grava por %s no anfitriăo : %s\n"
-#: ../../standalone/drakbackup_.c:2533
+#: ../../standalone/drakbackup_.c:2609
#, c-format
msgid ""
"\t\t user name: %s\n"
@@ -9948,7 +10379,7 @@ msgstr ""
"\t\t nome do utilizador : %s\n"
"\t\t no caminho : %s \n"
-#: ../../standalone/drakbackup_.c:2534
+#: ../../standalone/drakbackup_.c:2610
msgid ""
"\n"
"- Options:\n"
@@ -9956,60 +10387,60 @@ msgstr ""
"\n"
"- Opçőes:\n"
-#: ../../standalone/drakbackup_.c:2535
+#: ../../standalone/drakbackup_.c:2611
msgid "\tDo not include System Files\n"
msgstr "\tNăo incluir os ficheiros do sistema\n"
-#: ../../standalone/drakbackup_.c:2538
+#: ../../standalone/drakbackup_.c:2614
msgid "\tBackups use tar and bzip2\n"
msgstr "\tOs arquivos utilizam tar e bzip2\n"
-#: ../../standalone/drakbackup_.c:2540
+#: ../../standalone/drakbackup_.c:2616
msgid "\tBackups use tar and gzip\n"
msgstr "\tOs arquivos utilizam tar e gzip\n"
-#: ../../standalone/drakbackup_.c:2543
+#: ../../standalone/drakbackup_.c:2619
#, c-format
msgid ""
"\n"
-"- Daemon (%s) include :\n"
+"- Daemon (%s) include:\n"
msgstr ""
"\n"
"- O demónio (%s) inclui :\n"
-#: ../../standalone/drakbackup_.c:2544
+#: ../../standalone/drakbackup_.c:2620
msgid "\t-Hard drive.\n"
msgstr "\t-Disco Rígido.\n"
-#: ../../standalone/drakbackup_.c:2545
+#: ../../standalone/drakbackup_.c:2621
msgid "\t-CDROM.\n"
msgstr "\t-CDROM.\n"
-#: ../../standalone/drakbackup_.c:2546
+#: ../../standalone/drakbackup_.c:2622
msgid "\t-Tape \n"
msgstr "\t-Cassete \n"
-#: ../../standalone/drakbackup_.c:2547
+#: ../../standalone/drakbackup_.c:2623
msgid "\t-Network by FTP.\n"
msgstr "\t-Rede por FTP.\n"
-#: ../../standalone/drakbackup_.c:2548
+#: ../../standalone/drakbackup_.c:2624
msgid "\t-Network by SSH.\n"
msgstr "\t-Rede por SSH.\n"
-#: ../../standalone/drakbackup_.c:2549
+#: ../../standalone/drakbackup_.c:2625
msgid "\t-Network by rsync.\n"
msgstr "\t-Rede por rsync.\n"
-#: ../../standalone/drakbackup_.c:2550
+#: ../../standalone/drakbackup_.c:2626
msgid "\t-Network by webdav.\n"
msgstr "\t-Rede por webdav.\n"
-#: ../../standalone/drakbackup_.c:2552
+#: ../../standalone/drakbackup_.c:2628
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr "Nenhuma configuraçăo, carregue por favor em Assistente ou Avançado.\n"
-#: ../../standalone/drakbackup_.c:2558
+#: ../../standalone/drakbackup_.c:2634
msgid ""
"List of data to restore:\n"
"\n"
@@ -10017,7 +10448,7 @@ msgstr ""
"Lista dos dados a restaurar :\n"
"\n"
-#: ../../standalone/drakbackup_.c:2725
+#: ../../standalone/drakbackup_.c:2801
msgid ""
"List of data corrupted:\n"
"\n"
@@ -10025,149 +10456,267 @@ msgstr ""
"Lista dos dados estragados :\n"
"\n"
-#: ../../standalone/drakbackup_.c:2727
+#: ../../standalone/drakbackup_.c:2803
msgid "Please uncheck or remove it on next time."
msgstr "Por favor desligue ou suprima-o na próxima vez."
-#: ../../standalone/drakbackup_.c:2737
+#: ../../standalone/drakbackup_.c:2813
msgid "Backup files are corrupted"
msgstr "Os ficheiros arquivados estăo estragados"
-#: ../../standalone/drakbackup_.c:2758
+#: ../../standalone/drakbackup_.c:2834
msgid " All of your selected data have been "
msgstr " Todos os dados seleccionados foram "
-#: ../../standalone/drakbackup_.c:2759
+#: ../../standalone/drakbackup_.c:2835
#, c-format
msgid " Successfuly Restored on %s "
msgstr " Bem Restaurada em %s "
-#: ../../standalone/drakbackup_.c:2877
+#: ../../standalone/drakbackup_.c:2953
msgid " Restore Configuration "
msgstr " Restaurar Configuraçăo "
-#: ../../standalone/drakbackup_.c:2895
+#: ../../standalone/drakbackup_.c:2971
msgid "OK to restore the other files."
msgstr "OK para restaurar os outros ficheiros."
-#: ../../standalone/drakbackup_.c:2912
+#: ../../standalone/drakbackup_.c:2988
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
"Lista dos utilizadores a restaurar (só a data mais recente por utilizador é "
"importante)"
-#: ../../standalone/drakbackup_.c:2975
+#: ../../standalone/drakbackup_.c:3066
msgid "Backup the system files before:"
msgstr "Arquivar os ficheiros do sistema antes de:"
-#: ../../standalone/drakbackup_.c:2977
+#: ../../standalone/drakbackup_.c:3068
msgid "please choose the date to restore"
msgstr "Por favor a data a restaurar"
-#: ../../standalone/drakbackup_.c:3014
+#: ../../standalone/drakbackup_.c:3105
msgid "Use Hard Disk to backup"
msgstr "Utilizar o disco rígido para fazer a cópia de segurança"
-#: ../../standalone/drakbackup_.c:3017
+#: ../../standalone/drakbackup_.c:3108
msgid "Please enter the directory to save:"
msgstr "Por favor escolha a pasta onde gravar:"
-#: ../../standalone/drakbackup_.c:3060
+#: ../../standalone/drakbackup_.c:3151
msgid "FTP Connection"
msgstr "Ligaçăo FTP"
-#: ../../standalone/drakbackup_.c:3067
+#: ../../standalone/drakbackup_.c:3158
msgid "Secure Connection"
msgstr "Ligaçăo Segura"
-#: ../../standalone/drakbackup_.c:3093
+#: ../../standalone/drakbackup_.c:3184
msgid "Restore from Hard Disk."
msgstr "Restaurar a partir do Disco Rígido."
-#: ../../standalone/drakbackup_.c:3095
+#: ../../standalone/drakbackup_.c:3186
msgid "Please enter the directory where backups are stored"
msgstr "Por favor indique a pasta onde os arquivos văo ser gravados"
-#: ../../standalone/drakbackup_.c:3157
+#: ../../standalone/drakbackup_.c:3254
msgid "Select another media to restore from"
msgstr "Escolha outro média de onde restaurar"
-#: ../../standalone/drakbackup_.c:3159
+#: ../../standalone/drakbackup_.c:3256
msgid "Other Media"
msgstr "Outro Média"
-#: ../../standalone/drakbackup_.c:3164
+#: ../../standalone/drakbackup_.c:3261
msgid "Restore system"
msgstr "Restaurar o sistema"
-#: ../../standalone/drakbackup_.c:3165
+#: ../../standalone/drakbackup_.c:3262
msgid "Restore Users"
msgstr "Restaurar os Utilizadores"
-#: ../../standalone/drakbackup_.c:3166
+#: ../../standalone/drakbackup_.c:3263
msgid "Restore Other"
msgstr "Restaurar os Outros"
-#: ../../standalone/drakbackup_.c:3168
+#: ../../standalone/drakbackup_.c:3265
msgid "select path to restore (instead of /)"
msgstr "escolha o caminho onde restaurar (no lugar de /)"
-#: ../../standalone/drakbackup_.c:3172
+#: ../../standalone/drakbackup_.c:3269
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
"Arquivar de novo antes de restaurar (só para os arquivos por incrementaçăo)"
-#: ../../standalone/drakbackup_.c:3174
+#: ../../standalone/drakbackup_.c:3271
msgid "Remove user directories before restore."
msgstr "Apagar as pastas do usuários antes de restaurar."
-#: ../../standalone/drakbackup_.c:3232
+#: ../../standalone/drakbackup_.c:3384
+msgid ""
+"Restore Selected\n"
+"Catalog Entry"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3394
+#, fuzzy
+msgid ""
+"Restore Selected\n"
+"Files"
+msgstr "Remover selecçăo"
+
+#: ../../standalone/drakbackup_.c:3411
+#, fuzzy
+msgid ""
+"Change\n"
+"Restore Path"
+msgstr "Restaurar os Outros"
+
+#: ../../standalone/drakbackup_.c:3477
+#, fuzzy, c-format
+msgid "Backup files not found at %s."
+msgstr "Guardar %s em %s.old"
+
+#: ../../standalone/drakbackup_.c:3490
+#, c-format
+msgid ""
+"Insert the CD with volume label %s\n"
+" in the CD drive under mount point /mnt/cdrom"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3490
+#, fuzzy
+msgid "Restore From CD"
+msgstr "Restaurar a partir do Disco Rígido."
+
+#: ../../standalone/drakbackup_.c:3492
+#, c-format
+msgid "Not the correct CD label. Disk is labelled %s."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3502
+#, c-format
+msgid ""
+"Insert the tape with volume label %s\n"
+" in the tape drive device %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3502
+#, fuzzy
+msgid "Restore From Tape"
+msgstr "Restaurar a tabela de partiçőes"
+
+#: ../../standalone/drakbackup_.c:3504
+#, c-format
+msgid "Not the correct tape label. Tape is labelled %s."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3524
+#, fuzzy
+msgid "Restore Via Network"
+msgstr "Restaurar os Utilizadores"
+
+#: ../../standalone/drakbackup_.c:3524
+#, c-format
+msgid "Restore Via Network Protocol: %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3525
+#, fuzzy
+msgid "Host Name"
+msgstr "Nome do anfitriăo"
+
+#: ../../standalone/drakbackup_.c:3526
+msgid "Host Path or Module"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3533
+#, fuzzy
+msgid "Password required"
+msgstr "Senha"
+
+#: ../../standalone/drakbackup_.c:3539
+#, fuzzy
+msgid "Username required"
+msgstr "Nome de utilizador"
+
+#: ../../standalone/drakbackup_.c:3542
+#, fuzzy
+msgid "Hostname required"
+msgstr "Anfitriăo: "
+
+#: ../../standalone/drakbackup_.c:3547
+msgid "Path or Module required"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3560
+msgid "Files Restored..."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3563
+#, fuzzy
+msgid "Restore Failed..."
+msgstr "Restaurar os Outros"
+
+#: ../../standalone/drakbackup_.c:3801
msgid "Restore all backups"
msgstr "Restaurar todos os arquivos"
-#: ../../standalone/drakbackup_.c:3241
+#: ../../standalone/drakbackup_.c:3810
msgid "Custom Restore"
msgstr "Restauraçăo Personalizada"
-#: ../../standalone/drakbackup_.c:3287 ../../standalone/drakbackup_.c:3320
-#: ../../standalone/drakbackup_.c:3346 ../../standalone/drakbackup_.c:3373
-#: ../../standalone/drakbackup_.c:3400 ../../standalone/drakbackup_.c:3460
-#: ../../standalone/drakbackup_.c:3487 ../../standalone/drakbackup_.c:3513
+#: ../../standalone/drakbackup_.c:3856
+msgid "CD in place - continue."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3862
+msgid "Browse to new restore repository."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3865
+#, fuzzy
+msgid "Restore From Catalog"
+msgstr "Restaurar a tabela de partiçőes"
+
+#: ../../standalone/drakbackup_.c:3893
+#, fuzzy
+msgid "Restore Progress"
+msgstr "Restaurar os Utilizadores"
+
+#: ../../standalone/drakbackup_.c:3935 ../../standalone/drakbackup_.c:3968
+#: ../../standalone/drakbackup_.c:3994 ../../standalone/drakbackup_.c:4021
+#: ../../standalone/drakbackup_.c:4048 ../../standalone/drakbackup_.c:4108
+#: ../../standalone/drakbackup_.c:4135 ../../standalone/drakbackup_.c:4165
+#: ../../standalone/drakbackup_.c:4191
msgid "Previous"
msgstr "Anterior"
-#: ../../standalone/drakbackup_.c:3291 ../../standalone/drakbackup_.c:3377
+#: ../../standalone/drakbackup_.c:3939 ../../standalone/drakbackup_.c:4025
#: ../../standalone/logdrake_.c:223
msgid "Save"
msgstr "Gravar"
-#: ../../standalone/drakbackup_.c:3350
+#: ../../standalone/drakbackup_.c:3998
msgid "Build Backup"
msgstr "Construir a cópia de segurança"
-#: ../../standalone/drakbackup_.c:3404 ../../standalone/drakbackup_.c:3974
+#: ../../standalone/drakbackup_.c:4052 ../../standalone/drakbackup_.c:4632
msgid "Restore"
msgstr "Restaurar"
-#: ../../standalone/drakbackup_.c:3553
-msgid ""
-"Please Build backup before to restore it...\n"
-" or verify that your path to save is correct."
-msgstr ""
-"Por favor Arquive antes de Restaurar...\n"
-" ou verifique que o caminho onde arquivar é correcto."
-
-#: ../../standalone/drakbackup_.c:3574
+#: ../../standalone/drakbackup_.c:4231
+#, fuzzy
msgid ""
-"Error during sendmail\n"
-" your report mail was not sent\n"
+"Error during sendmail.\n"
+" Your report mail was not sent.\n"
" Please configure sendmail"
msgstr ""
"Erro ao enviar o correio\n"
" o seu correio de resumo năo foi enviado\n"
" Por favor configure o envio do correio"
-#: ../../standalone/drakbackup_.c:3598
+#: ../../standalone/drakbackup_.c:4255
msgid ""
"The following packages need to be installed:\n"
" @list_of_rpm_to_install"
@@ -10175,7 +10724,7 @@ msgstr ""
"Os seguintes pacotes precisam de ser instalados:\n"
" @list_of_rpm_to_install"
-#: ../../standalone/drakbackup_.c:3621
+#: ../../standalone/drakbackup_.c:4278
msgid ""
"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
@@ -10183,19 +10732,19 @@ msgstr ""
"Erro ao enviar os ficheiros por FTP.\n"
" Por favor veja a sua configuraçăo FTP."
-#: ../../standalone/drakbackup_.c:3644
+#: ../../standalone/drakbackup_.c:4301
msgid "Please select data to restore..."
msgstr "Por favor escolha os dados a restaurar..."
-#: ../../standalone/drakbackup_.c:3665
+#: ../../standalone/drakbackup_.c:4322
msgid "Please select media for backup..."
msgstr "Por favor escolha o média para a cópia de segurança..."
-#: ../../standalone/drakbackup_.c:3687
+#: ../../standalone/drakbackup_.c:4344
msgid "Please select data to backup..."
msgstr "Por favor escolha os dados que quer na cópia de segurança..."
-#: ../../standalone/drakbackup_.c:3709
+#: ../../standalone/drakbackup_.c:4366
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
@@ -10203,60 +10752,60 @@ msgstr ""
"Nenhum ficheiro de configuraçăo encontrado \n"
"Por favor carregue em Assistente ou Avançado."
-#: ../../standalone/drakbackup_.c:3730
+#: ../../standalone/drakbackup_.c:4387
msgid "Under Devel ... please wait."
msgstr "Em Desenvolvimento ... por favor aguarde."
-#: ../../standalone/drakbackup_.c:3811
+#: ../../standalone/drakbackup_.c:4468
msgid "Backup system files"
msgstr "Arquivar os ficheiros do sistema"
-#: ../../standalone/drakbackup_.c:3813
+#: ../../standalone/drakbackup_.c:4470
msgid "Backup user files"
msgstr "Cópia de segurança dos ficheiros dos utilizadores"
-#: ../../standalone/drakbackup_.c:3815
+#: ../../standalone/drakbackup_.c:4472
msgid "Backup other files"
msgstr "Cópia de segurança dos outros ficheiros"
-#: ../../standalone/drakbackup_.c:3817 ../../standalone/drakbackup_.c:3850
+#: ../../standalone/drakbackup_.c:4474 ../../standalone/drakbackup_.c:4507
msgid "Total Progress"
msgstr "Progressăo Total"
-#: ../../standalone/drakbackup_.c:3841
+#: ../../standalone/drakbackup_.c:4498
msgid "files sending by FTP"
msgstr "ficheiros a serem enviados por FTP"
-#: ../../standalone/drakbackup_.c:3845
+#: ../../standalone/drakbackup_.c:4502
msgid "Sending files..."
msgstr "A enviar os ficheiros..."
-#: ../../standalone/drakbackup_.c:3931
+#: ../../standalone/drakbackup_.c:4588
msgid "Backup Now from configuration file"
msgstr ""
"Fazer uma cópia de segurança agora a partir do ficheiro de configuraçăo"
-#: ../../standalone/drakbackup_.c:3936
+#: ../../standalone/drakbackup_.c:4593
msgid "View Backup Configuration."
msgstr "Ver a configuraçăo da cópia de segurança"
-#: ../../standalone/drakbackup_.c:3956
+#: ../../standalone/drakbackup_.c:4614
msgid "Wizard Configuration"
msgstr "Assistente de Configuraçăo"
-#: ../../standalone/drakbackup_.c:3961
+#: ../../standalone/drakbackup_.c:4619
msgid "Advanced Configuration"
msgstr "Configuraçăo Avançada"
-#: ../../standalone/drakbackup_.c:3966
+#: ../../standalone/drakbackup_.c:4624
msgid "Backup Now"
msgstr "Arquivar agora"
-#: ../../standalone/drakbackup_.c:3996
+#: ../../standalone/drakbackup_.c:4658
msgid "Drakbackup"
msgstr "Drakbackup"
-#: ../../standalone/drakbackup_.c:4045
+#: ../../standalone/drakbackup_.c:4707
msgid ""
"options description:\n"
"\n"
@@ -10316,7 +10865,7 @@ msgstr ""
" \n"
"\n"
-#: ../../standalone/drakbackup_.c:4075
+#: ../../standalone/drakbackup_.c:4737
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -10330,7 +10879,7 @@ msgstr ""
" definir meu_nome_de_anfitriăo ou meu_domínio em /etc/postfix/main.cf\n"
"\n"
-#: ../../standalone/drakbackup_.c:4083
+#: ../../standalone/drakbackup_.c:4745
msgid ""
"options description:\n"
"\n"
@@ -10371,48 +10920,48 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4122
+#: ../../standalone/drakbackup_.c:4784
msgid ""
"restore description:\n"
" \n"
-"Only the most recent date will be used ,because with incremental \n"
-"backups it is necesarry to restore one by one each older backups.\n"
+"Only the most recent date will be used, because with incremental \n"
+"backups it is necessary to restore one by one each older backup.\n"
"\n"
-"So if you don't like to restore a user please unselect all his\n"
-"check box.\n"
+"So if you don't want to restore a user please unselect all their\n"
+"check boxes.\n"
"\n"
-"Otherwise, you are able to select only one of this\n"
+"Otherwise, you are able to select only one of these.\n"
"\n"
" - Incremental Backups:\n"
"\n"
"\tThe incremental backup is the most powerful \n"
-"\toption to use backup, this option allow you \n"
-"\tto backup all your data the first time, and \n"
-"\tonly the changed after.\n"
-"\tSo you will be able during the restore\n"
+"\toption to use. This option allows you to \n"
+"\tbackup all of your data the first time, and \n"
+"\tonly the changed data after.\n"
+"\tSo you will be able, during the restore\n"
"\tstep, to restore your data from a specified\n"
"\tdate.\n"
-"\tIf you have not selected this options all\n"
+"\tIf you have not selected this option all\n"
"\told backups are deleted before each backup. \n"
"\n"
"\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4148 ../../standalone/drakbackup_.c:4225
+#: ../../standalone/drakbackup_.c:4810 ../../standalone/drakbackup_.c:4887
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
" Copyright (C) 2001 MandrakeSoft por DUPONT Sebastien <dupont_s\\@epita.fr>"
-#: ../../standalone/drakbackup_.c:4150 ../../standalone/drakbackup_.c:4227
+#: ../../standalone/drakbackup_.c:4812 ../../standalone/drakbackup_.c:4889
msgid ""
" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
" actualizaçőes 2002 MandrakeSoft por Stew Benedict <sbenedict\\@mandrakesoft."
"com>"
-#: ../../standalone/drakbackup_.c:4152 ../../standalone/drakbackup_.c:4229
+#: ../../standalone/drakbackup_.c:4814 ../../standalone/drakbackup_.c:4891
msgid ""
" This program is free software; you can redistribute it and/or modify\n"
" it under the terms of the GNU General Public License as published by\n"
@@ -10429,7 +10978,7 @@ msgid ""
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
msgstr ""
-#: ../../standalone/drakbackup_.c:4166
+#: ../../standalone/drakbackup_.c:4828
msgid ""
"Description:\n"
"\n"
@@ -10504,7 +11053,7 @@ msgstr ""
" \n"
"\n"
-#: ../../standalone/drakbackup_.c:4204
+#: ../../standalone/drakbackup_.c:4866
msgid ""
"options description:\n"
"\n"
@@ -10522,7 +11071,7 @@ msgstr ""
"rígido antes de enviar para o servidor.\n"
"\n"
-#: ../../standalone/drakbackup_.c:4213
+#: ../../standalone/drakbackup_.c:4875
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -10544,7 +11093,7 @@ msgstr ""
"dados. É importante de ser cuidadoso e de năo modificar \n"
"os ficheiros de arquivo à măo.\n"
-#: ../../standalone/drakbackup_.c:4243
+#: ../../standalone/drakbackup_.c:4905
msgid ""
"Description:\n"
"\n"
@@ -10670,9 +11219,9 @@ msgstr "Assistente de Primeira Vez"
msgid "Synchronization tool"
msgstr "Ferramenta de sincronizaçăo"
-#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:85
-#: ../../standalone/drakbug_.c:150 ../../standalone/drakbug_.c:152
-#: ../../standalone/drakbug_.c:156
+#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:86
+#: ../../standalone/drakbug_.c:151 ../../standalone/drakbug_.c:153
+#: ../../standalone/drakbug_.c:157
msgid "Standalone Tools"
msgstr "Ferramentas exteriores"
@@ -10716,23 +11265,23 @@ msgstr "Userdrake"
msgid "Configuration Wizards"
msgstr "Assistentes de Configuraçăo"
-#: ../../standalone/drakbug_.c:96
+#: ../../standalone/drakbug_.c:97
msgid "Application:"
msgstr "Aplicaçăo:"
-#: ../../standalone/drakbug_.c:97
+#: ../../standalone/drakbug_.c:98
msgid "Package: "
msgstr "Pacote: "
-#: ../../standalone/drakbug_.c:98
+#: ../../standalone/drakbug_.c:99
msgid "Kernel:"
msgstr "Núcleo :"
-#: ../../standalone/drakbug_.c:99
+#: ../../standalone/drakbug_.c:100
msgid "Release: "
msgstr "Versăo: "
-#: ../../standalone/drakbug_.c:114
+#: ../../standalone/drakbug_.c:115
msgid ""
"\n"
"\n"
@@ -10752,19 +11301,19 @@ msgstr ""
"văo ser transferidas a este servidor\n"
"\n"
-#: ../../standalone/drakbug_.c:135
+#: ../../standalone/drakbug_.c:136
msgid "Report"
msgstr "Detalhes"
-#: ../../standalone/drakbug_.c:165
+#: ../../standalone/drakbug_.c:166
msgid "Not installed"
msgstr "Năo instalado"
-#: ../../standalone/drakbug_.c:182
+#: ../../standalone/drakbug_.c:183
msgid "connecting to Bugzilla wizard ..."
msgstr "a ligar-se ao assistente Bugzilla ..."
-#: ../../standalone/drakbug_.c:189
+#: ../../standalone/drakbug_.c:190
msgid "No browser available! Please install one"
msgstr "Nenhum navegador disponivél! Instale um por favor"
@@ -11211,7 +11760,7 @@ msgid "Font List"
msgstr "Lista das Polícias"
#: ../../standalone/drakfont_.c:909
-msgid "Choose the applications that will support the fonts :"
+msgid "Choose the applications that will support the fonts:"
msgstr "Escolha os programas que văo aceitar as polícias :"
#: ../../standalone/drakfont_.c:918
@@ -11282,19 +11831,19 @@ msgstr "Suprimir as polícias do seu sistema"
msgid "Post Uninstall"
msgstr "Pós-supressăo"
-#: ../../standalone/drakgw_.c:42 ../../standalone/drakgw_.c:195
+#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:188
msgid "Internet Connection Sharing"
msgstr "Partilha da Ligaçăo à Internet"
-#: ../../standalone/drakgw_.c:121
+#: ../../standalone/drakgw_.c:119
msgid "Sorry, we support only 2.4 kernels."
msgstr "Desculpe, só suportamos núcleos 2.4."
-#: ../../standalone/drakgw_.c:133
+#: ../../standalone/drakgw_.c:130
msgid "Internet Connection Sharing currently enabled"
msgstr "A Partilha da Ligaçăo à Internet está activa"
-#: ../../standalone/drakgw_.c:134
+#: ../../standalone/drakgw_.c:131
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -11306,31 +11855,31 @@ msgstr ""
"\n"
"O que deseja fazer?"
-#: ../../standalone/drakgw_.c:138
+#: ../../standalone/drakgw_.c:135
msgid "disable"
msgstr "desactivar"
-#: ../../standalone/drakgw_.c:138 ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:135 ../../standalone/drakgw_.c:160
msgid "dismiss"
msgstr "libertar"
-#: ../../standalone/drakgw_.c:138 ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:135 ../../standalone/drakgw_.c:160
msgid "reconfigure"
msgstr "reconfigurar"
-#: ../../standalone/drakgw_.c:141
+#: ../../standalone/drakgw_.c:138
msgid "Disabling servers..."
msgstr "A desactivar servidores..."
-#: ../../standalone/drakgw_.c:149
+#: ../../standalone/drakgw_.c:146
msgid "Internet connection sharing is now disabled."
msgstr "Partilha da Ligaçăo à Internet está agora desactivada."
-#: ../../standalone/drakgw_.c:158
+#: ../../standalone/drakgw_.c:155
msgid "Internet Connection Sharing currently disabled"
msgstr "A Partilha da Ligaçăo à Internet está actualmente desactivada"
-#: ../../standalone/drakgw_.c:159
+#: ../../standalone/drakgw_.c:156
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
@@ -11342,19 +11891,19 @@ msgstr ""
"\n"
"O que deseja fazer?"
-#: ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:160
msgid "enable"
msgstr "activar"
-#: ../../standalone/drakgw_.c:170
+#: ../../standalone/drakgw_.c:167
msgid "Enabling servers..."
msgstr "A activar servidores..."
-#: ../../standalone/drakgw_.c:175
+#: ../../standalone/drakgw_.c:172
msgid "Internet connection sharing is now enabled."
msgstr "Partilha da Ligaçăo à Internet está agora activa."
-#: ../../standalone/drakgw_.c:196
+#: ../../standalone/drakgw_.c:189
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
"With that feature, other computers on your local network will be able to use "
@@ -11371,21 +11920,21 @@ msgstr ""
"Nota: necessita de um Adaptador de Rede dedicado para configurar uma Rede de "
"Área Local (LAN)."
-#: ../../standalone/drakgw_.c:222
+#: ../../standalone/drakgw_.c:215
#, c-format
msgid "Interface %s (using module %s)"
msgstr "Interface %s (a usar módulo %s)"
-#: ../../standalone/drakgw_.c:223
+#: ../../standalone/drakgw_.c:216
#, c-format
msgid "Interface %s"
msgstr "Interface %s"
-#: ../../standalone/drakgw_.c:231
+#: ../../standalone/drakgw_.c:224
msgid "No network adapter on your system!"
msgstr "Nenhum adaptador de rede no seu sistema!"
-#: ../../standalone/drakgw_.c:232
+#: ../../standalone/drakgw_.c:225
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
@@ -11393,11 +11942,11 @@ msgstr ""
"Nenhum adaptador de rede foi encontrado no seu sistema. Por favor execute a "
"ferramenta de configuraçăo de hardware."
-#: ../../standalone/drakgw_.c:238
+#: ../../standalone/drakgw_.c:231
msgid "Network interface"
msgstr "Interface de rede"
-#: ../../standalone/drakgw_.c:239
+#: ../../standalone/drakgw_.c:232
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -11412,7 +11961,7 @@ msgstr ""
"\n"
"Estou prestes a configurar a sua Rede de Área Local com esse adaptador."
-#: ../../standalone/drakgw_.c:248
+#: ../../standalone/drakgw_.c:241
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
@@ -11420,11 +11969,11 @@ msgstr ""
"Por favor escolha qual adaptador de rede que estará ligado a sua Rede de "
"Área Local."
-#: ../../standalone/drakgw_.c:266
+#: ../../standalone/drakgw_.c:259
msgid "Network interface already configured"
msgstr "A placa rede já está configurada"
-#: ../../standalone/drakgw_.c:267
+#: ../../standalone/drakgw_.c:260
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -11439,15 +11988,15 @@ msgstr ""
"\n"
"Pode fazer-la manualmente mas precisa de saber o que está fazendo."
-#: ../../standalone/drakgw_.c:272
+#: ../../standalone/drakgw_.c:265
msgid "Automatic reconfiguration"
msgstr "Reconfiguraçăo automática"
-#: ../../standalone/drakgw_.c:273
+#: ../../standalone/drakgw_.c:266
msgid "Show current interface configuration"
msgstr "Mostra a configuraçăo actual da placa"
-#: ../../standalone/drakgw_.c:275
+#: ../../standalone/drakgw_.c:268
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -11464,7 +12013,7 @@ msgstr ""
"Atribuiçăo IP : %s\n"
"Piloto : %s"
-#: ../../standalone/drakgw_.c:287
+#: ../../standalone/drakgw_.c:280
msgid ""
"I can keep your current configuration and assume you already set up a DHCP "
"server; in that case please verify I correctly read the C-Class Network that "
@@ -11484,55 +12033,43 @@ msgstr ""
"para si.\n"
"\n"
-#: ../../standalone/drakgw_.c:292
+#: ../../standalone/drakgw_.c:285
msgid "C-Class Local Network"
msgstr "Rede Local Classe C"
-#: ../../standalone/drakgw_.c:293
+#: ../../standalone/drakgw_.c:286
msgid "(This) DHCP Server IP"
msgstr "IP deste servidor DHCP"
-#: ../../standalone/drakgw_.c:294
+#: ../../standalone/drakgw_.c:287
msgid "Re-configure interface and DHCP server"
msgstr "Re-configurar o interface e o servidor DHCP"
-#: ../../standalone/drakgw_.c:301
+#: ../../standalone/drakgw_.c:294
msgid "The Local Network did not finish with `.0', bailing out."
msgstr "A rede local năo acaba com '.0', a parar."
-#: ../../standalone/drakgw_.c:312
+#: ../../standalone/drakgw_.c:305
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr ""
"Potencial conflito de endereços de LAN encontrado na configuraçăo actual de %"
"s!\n"
-#: ../../standalone/drakgw_.c:320
-msgid "Firewalling configuration detected!"
-msgstr "Configuraçăo de firewall detectada!"
-
-#: ../../standalone/drakgw_.c:321
-msgid ""
-"Warning! An existing firewalling configuration has been detected. You may "
-"need some manual fix after installation."
-msgstr ""
-"Aviso! Uma configuraçăo de firewall existente foi detectada. Pode necessitar "
-"de configuraçăo manual depois da instalaçăo."
-
-#: ../../standalone/drakgw_.c:328
+#: ../../standalone/drakgw_.c:315
msgid "Configuring..."
msgstr "A configurar..."
-#: ../../standalone/drakgw_.c:329
+#: ../../standalone/drakgw_.c:316
msgid "Configuring scripts, installing software, starting servers..."
msgstr "A configurar scripts, a instalar software, iniciando servidores..."
-#: ../../standalone/drakgw_.c:365
+#: ../../standalone/drakgw_.c:352
#, c-format
msgid "Problems installing package %s"
msgstr "Problemas a instalar o pacote %s"
-#: ../../standalone/drakgw_.c:549
+#: ../../standalone/drakgw_.c:485
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
@@ -11542,23 +12079,23 @@ msgstr ""
"Pode agora partilhar a sua Ligaçăo à Internet com outros computadores na sua "
"Rede Local, usando a configuraçăo de rede automática (DHCP)."
-#: ../../standalone/drakgw_.c:566
+#: ../../standalone/drakgw_.c:504
msgid "The setup has already been done, but it's currently disabled."
msgstr "A configuraçăo já foi feita, mas está actualmente desactivada."
-#: ../../standalone/drakgw_.c:567
+#: ../../standalone/drakgw_.c:505
msgid "The setup has already been done, and it's currently enabled."
msgstr "A configuraçăo já foi feita, e está actualmente activa."
-#: ../../standalone/drakgw_.c:568
+#: ../../standalone/drakgw_.c:506
msgid "No Internet Connection Sharing has ever been configured."
msgstr "Nenhuma Partilha da Ligaçăo à Internet foi alguma vez configurada."
-#: ../../standalone/drakgw_.c:573
+#: ../../standalone/drakgw_.c:511
msgid "Internet connection sharing configuration"
msgstr "Configuraçăo da Partilha de Ligaçăo à Internet"
-#: ../../standalone/drakgw_.c:580
+#: ../../standalone/drakgw_.c:518
#, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -11573,6 +12110,168 @@ msgstr ""
"\n"
"Clique em Configurar para iniciar o assistente de configuraçăo."
+#: ../../standalone/draksound_.c:46
+#, fuzzy
+msgid "No Sound Card detected!"
+msgstr "Nenhuma placa TV detectada!"
+
+#: ../../standalone/draksound_.c:47
+#, fuzzy
+msgid ""
+"No Sound Card has been detected on your machine. Please verify that a Linux-"
+"supported Sound Card is correctly plugged in.\n"
+"\n"
+"\n"
+"You can visit our hardware database at:\n"
+"\n"
+"\n"
+"http://www.linux-mandrake.com/en/hardware.php3"
+msgstr ""
+"Nenhuma placa TV foi encontrada na sua maquina. Por favor verifique que uma "
+"placa Video/TV suportada por Linux está bem ligada.\n"
+"\n"
+"\n"
+"Pode visitar a nossa base de dados de material em :\n"
+"\n"
+"\n"
+"http://www.linux-mandrake.com/en/hardware.php3"
+
+#: ../../standalone/draksplash_.c:32
+msgid "package ImageMagick is required for correct working"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:76
+#, fuzzy
+msgid "first step creation"
+msgstr "criaçăo de disquete de arranque"
+
+#: ../../standalone/draksplash_.c:77
+#, fuzzy
+msgid "final resolution"
+msgstr "Resoluçăo"
+
+#: ../../standalone/draksplash_.c:78 ../../standalone/draksplash_.c:170
+#, fuzzy
+msgid "choose image file"
+msgstr "Escolha um ficheiro"
+
+#: ../../standalone/draksplash_.c:79
+#, fuzzy
+msgid "Theme name"
+msgstr "Nome de partilha"
+
+#: ../../standalone/draksplash_.c:81
+msgid "make bootsplash step 2"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:82
+#, fuzzy
+msgid "go to lilosplash configuration"
+msgstr "Configuraçăo pós-instalaçăo"
+
+#: ../../standalone/draksplash_.c:83
+#, fuzzy
+msgid "quit"
+msgstr "Sair"
+
+#: ../../standalone/draksplash_.c:84
+#, fuzzy
+msgid "save theme"
+msgstr "Instalar temas"
+
+#: ../../standalone/draksplash_.c:85
+msgid "browse"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:98 ../../standalone/draksplash_.c:159
+#, fuzzy
+msgid "Configure bootsplash picture"
+msgstr "Năo consigo criar uma pré-visualizaçăo da imagem de início"
+
+#: ../../standalone/draksplash_.c:99
+msgid "x coordinate of text box in number of character"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:100
+msgid "y coordinate of text box in number of character"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:101
+msgid "text width"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:102
+msgid "text box height"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:103
+msgid "the progress bar x coordinate of its upper left corner"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:104
+msgid "the progress bar y coordinate of its upper left corner"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:105
+msgid "the width of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:106
+msgid "the heigth of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:107
+msgid "the color of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:119
+#, fuzzy
+msgid "go back"
+msgstr "Loopback"
+
+#: ../../standalone/draksplash_.c:120
+#, fuzzy
+msgid "preview"
+msgstr "dispositivo"
+
+#: ../../standalone/draksplash_.c:121
+#, fuzzy
+msgid "choose color"
+msgstr "Escolha um monitor"
+
+#: ../../standalone/draksplash_.c:124
+#, fuzzy
+msgid "Display logo on Console"
+msgstr "Mostrar o tema na linha de commando"
+
+#: ../../standalone/draksplash_.c:125
+msgid "Make kernel message quiet by default"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:161 ../../standalone/draksplash_.c:330
+#, c-format
+msgid "This theme haven't yet any bootsplash in %s !"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:213
+msgid "saving Bootsplash theme..."
+msgstr ""
+
+#: ../../standalone/draksplash_.c:436
+#, fuzzy
+msgid "ProgressBar color selection"
+msgstr "Escolha do modelo da impressora"
+
+#: ../../standalone/draksplash_.c:454
+#, fuzzy
+msgid "You must choose an image file first!"
+msgstr "Você deve escolher/entrar um dispositivo/impressora!"
+
+#: ../../standalone/draksplash_.c:463
+#, fuzzy
+msgid "Generating preview ..."
+msgstr "A detectar dispositivos..."
+
#: ../../standalone/drakxtv_.c:49
msgid ""
"XawTV isn't installed!\n"
@@ -11671,11 +12370,11 @@ msgstr ""
"escreva o seu sistema de TV e o país"
#: ../../standalone/drakxtv_.c:109
-msgid "TV norm :"
+msgid "TV norm:"
msgstr "Sistema TV :"
#: ../../standalone/drakxtv_.c:110
-msgid "Area :"
+msgid "Area:"
msgstr "Área :"
#: ../../standalone/drakxtv_.c:114
@@ -11759,7 +12458,7 @@ msgstr "Năo é possível iniciar actualizaçăo directa!!!\n"
msgid "The change is done, but to be effective you must logout"
msgstr "A mudança está feita, mas para ser efectiva é preciso desligar-se"
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:517
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:515
msgid "logdrake"
msgstr "logdrake"
@@ -11927,8 +12626,9 @@ msgid "service setting"
msgstr "Configuraçăo dos serviços"
#: ../../standalone/logdrake_.c:431
+#, fuzzy
msgid ""
-"You will receive an alert if one of the selected service is no more running"
+"You will receive an alert if one of the selected services is no more running"
msgstr ""
"Você vai receber uma alerta se um dos serviços seleccionados pára de "
"funcionar"
@@ -11949,19 +12649,19 @@ msgstr "Configuraçăo das alertas"
msgid "Please enter your email address below "
msgstr "Por favor escreva o seu endereço de correio abaixo "
-#: ../../standalone/logdrake_.c:499
+#: ../../standalone/logdrake_.c:497
msgid "Save as.."
msgstr "Guardar como..."
-#: ../../standalone/mousedrake_.c:43
+#: ../../standalone/mousedrake_.c:45
msgid "Please, choose the type of your mouse."
msgstr "Por favor escolha o tipo de rato."
-#: ../../standalone/mousedrake_.c:57
+#: ../../standalone/mousedrake_.c:58
msgid "Emulate third button?"
msgstr "Deseja emulaçăo de 3 botőes?"
-#: ../../standalone/printerdrake_.c:48
+#: ../../standalone/printerdrake_.c:57
msgid "Reading printer data ..."
msgstr "Lendo os dados da impressora ..."
@@ -11973,21 +12673,32 @@ msgstr "A detectar dispositivos..."
msgid "Test ports"
msgstr "Testar portas"
-#: ../../standalone/scannerdrake_.c:52
+#: ../../standalone/scannerdrake_.c:53 ../../standalone/scannerdrake_.c:68
+#: ../../standalone/scannerdrake_.c:81
#, c-format
-msgid "%s found on %s, configure it ?"
+msgid "The %s is not supported by this version of Mandrake Linux."
+msgstr ""
+
+#: ../../standalone/scannerdrake_.c:56
+#, fuzzy, c-format
+msgid "%s found on %s, configure it?"
msgstr "%s encontrado em %s, configurar-lo ?"
#: ../../standalone/scannerdrake_.c:59
+#, c-format
+msgid "%s is not in the scanner database, configure it manually?"
+msgstr ""
+
+#: ../../standalone/scannerdrake_.c:65
msgid "Select a scanner"
msgstr "Seleccione um digitalizador"
-#: ../../standalone/scannerdrake_.c:79
+#: ../../standalone/scannerdrake_.c:93
#, c-format
msgid "This %s scanner is unsupported"
msgstr "O digitalizador %s năo é suportado"
-#: ../../standalone/scannerdrake_.c:93
+#: ../../standalone/scannerdrake_.c:107
#, c-format
msgid ""
"Scannerdrake was not able to detect your %s scanner.\n"
@@ -11996,11 +12707,11 @@ msgstr ""
"Scannerdrake năo consegui detectar o seu digitalizador %s.\n"
"Por favor escolha o dispositivo onde o digitalizador está ligado"
-#: ../../standalone/scannerdrake_.c:95
+#: ../../standalone/scannerdrake_.c:109
msgid "choose device"
msgstr "Escolha o dispositivo"
-#: ../../standalone/scannerdrake_.c:101
+#: ../../standalone/scannerdrake_.c:115
#, c-format
msgid ""
"This %s scanner must be configured by printerdrake.\n"
@@ -12011,7 +12722,7 @@ msgstr ""
"Pode lançar PrinterDrake a partir do Centro de Controlo Mandrake na secçăo "
"material."
-#: ../../standalone/scannerdrake_.c:106
+#: ../../standalone/scannerdrake_.c:120
#, c-format
msgid ""
"Your %s scanner has been configured.\n"
@@ -12022,12 +12733,12 @@ msgstr ""
"Pode agora digitalizar documentos com XSane em Multimédia/Gráficos no menu "
"das aplicaçőes."
-#: ../../standalone/service_harddrake_.c:57
+#: ../../standalone/service_harddrake_.c:39
#, c-format
msgid "Some devices in the \"%s\" hardware class were removed:\n"
msgstr "Alguns dispositivos na classe material \"%s\" foram removidos :\n"
-#: ../../standalone/service_harddrake_.c:61
+#: ../../standalone/service_harddrake_.c:43
#, c-format
msgid ""
"\n"
@@ -12036,36 +12747,6 @@ msgstr ""
"\n"
"Alguns dispositivos na classe %s foram adicionados :\n"
-#: ../../standalone/tinyfirewall_.c:30
-msgid "Firewalling Configuration"
-msgstr "Configuraçăo de firewalling"
-
-#: ../../standalone/tinyfirewall_.c:43
-msgid "Firewalling configuration"
-msgstr "Configuraçăo de firewalling"
-
-#: ../../standalone/tinyfirewall_.c:78
-msgid ""
-"Firewalling\n"
-"\n"
-"You already have set up a firewall.\n"
-"Click on Configure to change or remove the firewall"
-msgstr ""
-"Firewalling\n"
-"\n"
-"Já configurou a firewall.\n"
-"Clique em Configurar para alterar ou remover a firewall"
-
-#: ../../standalone/tinyfirewall_.c:82
-msgid ""
-"Firewalling\n"
-"\n"
-"Click on Configure to set up a standard firewall"
-msgstr ""
-"Firewalling\n"
-"\n"
-"Clique em Configurar para configurar uma firewall padrăo"
-
#: ../../steps.pm_.c:14
msgid "Choose your language"
msgstr "Escolha a seu idioma"
@@ -12138,224 +12819,7 @@ msgstr "Instalar os pacotes mais recentes para o sistema"
msgid "Exit install"
msgstr "Sair da instalaçăo"
-#: ../../tinyfirewall.pm_.c:9
-msgid ""
-"tinyfirewall configurator\n"
-"\n"
-"This configures a personal firewall for this Mandrake Linux machine.\n"
-"For a powerful dedicated firewall solution, please look to the\n"
-"specialized MandrakeSecurity Firewall distribution."
-msgstr ""
-"Configurador do tinyfirewall\n"
-"\n"
-"Configura uma firewall pessoal para esta máquina Linux Mandrake.\n"
-"Para uma firewall poderosa e dedicada, por favor procure a \n"
-"distribuiçăo especializada MandrakeSecurity Firewall"
-
-#: ../../tinyfirewall.pm_.c:14
-msgid ""
-"We'll now ask you questions about which services you'd like to allow\n"
-"the Internet to connect to. Please think carefully about these\n"
-"questions, as your computer's security is important.\n"
-"\n"
-"Please, if you're not currently using one of these services, firewall\n"
-"it off. You can change this configuration anytime you like by\n"
-"re-running this application!"
-msgstr ""
-"Vou agora perguntar-lhe a quais serviços deseja autorizar\n"
-"Internet a ligar-se. Por favor faça atençăo a estas questőes,\n"
-"pois a segurança do seu computador é importante.\n"
-"\n"
-"Portanto, se năo utiliza alguns destes serviços, exclua-o do\n"
-"para-fogo. Poderá mudar esta configuraçăo quando quiser\n"
-"com esta aplicaçăo !"
-
-#: ../../tinyfirewall.pm_.c:21
-msgid ""
-"Are you running a web server on this machine that you need the whole\n"
-"Internet to see? If you are running a webserver that only needs to be\n"
-"accessed by this machine, you can safely answer NO here.\n"
-"\n"
-msgstr ""
-"Está utilizando um servidor web nesta máquina que precisa ser\n"
-"visto de todo o Internet? Se utiliza só um servidor acedido por\n"
-"esta maquina, pode dizer NĂO aqui.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:26
-msgid ""
-"Are you running a name server on this machine? If you didn't set one\n"
-"up to give away IP and zone information to the whole Internet, please\n"
-"answer no.\n"
-"\n"
-msgstr ""
-"Está a correr um servidor de nomes nesta máquina? Se năo definiu \n"
-"um para enviar informaçőes de IP e zona a toda a Internet por favor \n"
-"responda năo.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:31
-msgid ""
-"Do you want to allow incoming Secure Shell (ssh) connections? This\n"
-"is a telnet-replacement that you might use to login. If you're using\n"
-"telnet now, you should definitely switch to ssh. telnet is not\n"
-"encrypted -- so some attackers can steal your password if you use\n"
-"it. ssh is encrypted and doesn't allow for this eavesdropping."
-msgstr ""
-"Deseja autorizar ligaçőes Secure Shell (ssh) recebidas do exterior? \n"
-"Isto é um substituto de telnet que pode utilizar para efectuar o login.\n"
-"Se estiver a utilizar telnet agora, deve mudar para ssh. telnet năo é \n"
-"codificado -- possibilitando o roubo da sua palavra-passe se o usar\n"
-"ssh é codificado e năo autoriza este 'eavesdropping'."
-
-#: ../../tinyfirewall.pm_.c:36
-msgid ""
-"Do you want to allow incoming telnet connections?\n"
-"This is horribly unsafe, as we explained in the previous screen. We\n"
-"strongly recommend answering No here and using ssh in place of\n"
-"telnet.\n"
-msgstr ""
-"Deseja autorizar ligaçőes telnet recebidas do exterior?\n"
-"Isto é muito inseguro, como já explicamos. Nós recomendamos\n"
-"vivamente responder Năo aqui e usar ssh em vez de telnet.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:41
-msgid ""
-"Are you running an FTP server here that you need accessible to the\n"
-"Internet? If you are, we strongly recommend that you only use it for\n"
-"Anonymous transfers. Any passwords sent by FTP can be stolen by some\n"
-"attackers, since FTP also uses no encryption for transferring passwords.\n"
-msgstr ""
-"Está a correr um servidor FTP aqui que necessita que esteja acessível na\n"
-"Internet? Se estiver, recomendamos que apenas o utilize para transferências\n"
-"Anónimas. Quaisquer palavras-passe enviadas por FTP podem ser roubadas,\n"
-" uma vez que o FTP também năo utiliza encriptaçăo para palavras-passe.\n"
-
-#: ../../tinyfirewall.pm_.c:46
-msgid ""
-"Are you running a mail server here? If you're sending you \n"
-"messages through pine, mutt or any other text-based mail client,\n"
-"you probably are. Otherwise, you should firewall this off.\n"
-"\n"
-msgstr ""
-"Está a correr um servidor de correio aqui? Se está a enviar a si \n"
-"mensagens através do pine, mutt ou outro cliente de correio base-\n"
-"ado em texto provavelmente está. De outra forma deveria remover \n"
-"o firewall para isto.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:51
-msgid ""
-"Are you running a POP or IMAP server here? This would\n"
-"be used to host non-web-based mail accounts for people via \n"
-"this machine.\n"
-"\n"
-msgstr ""
-"Esta a correr um servidor POP OU IMAP aqui? Isto seria\n"
-"usado para albergar contas de correio năo baseadas na web\n"
-"para pessoas via esta máquina.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:56
-msgid ""
-"You appear to be running a 2.2 kernel. If your network IP\n"
-"is automatically set by a computer in your home or office \n"
-"(dynamically assigned), we need to allow for this. Is\n"
-"this the case?\n"
-msgstr ""
-"Aparentemente está a correr um núcleo 2.2. Se o seu IP de \n"
-"Rede é automaticamente definido por um computador na sua \n"
-"casa ou escritório (dinamicamente atribuído), necessitamos \n"
-"permitir isto. É este o caso?\n"
-
-#: ../../tinyfirewall.pm_.c:61
-msgid ""
-"Is your computer getting time syncronized to another computer?\n"
-"Mostly, this is used by medium-large Unix/Linux organizations\n"
-"to synchronize time for logging and such. If you're not part\n"
-"of a larger office and haven't heard of this, you probably \n"
-"aren't."
-msgstr ""
-"O seu computador está a sincronizar a hora com outro computador?\n"
-"Isto é usado por maioritariamente por organizaçőes Unix/Linux médias-\n"
-"grandes para sincronizar a hora para registos e assim. Se năo faz parte \n"
-"de um grande escritório e nunca ouviu falar disto, provavelmente năo \n"
-"estará."
-
-#: ../../tinyfirewall.pm_.c:66
-msgid ""
-"Configuration complete. May we write these changes to disk?\n"
-"\n"
-"\n"
-"\n"
-msgstr ""
-"Configuraçăo completa. Posso escrever estas mudanças no disco?\n"
-"\n"
-"\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:82
-#, c-format
-msgid "Can't open %s: %s\n"
-msgstr "Năo é possível abrir %s: %s\n"
-
-#: ../../tinyfirewall.pm_.c:84
-#, c-format
-msgid "Can't open %s for writing: %s\n"
-msgstr "Năo é possível abrir %s para escrita: %s\n"
-
-#: ../../tinyfirewall.pm_.c:178
-msgid "No I don't need DHCP"
-msgstr "Năo, eu năo preciso DHCP"
-
-#: ../../tinyfirewall.pm_.c:178
-msgid "Yes I need DHCP"
-msgstr "Sim, eu preciso DHCP"
-
-#: ../../tinyfirewall.pm_.c:179
-msgid "No I don't need NTP"
-msgstr "Năo, eu năo preciso NTP"
-
-#: ../../tinyfirewall.pm_.c:179
-msgid "Yes I need NTP"
-msgstr "Sim, eu preciso NTP"
-
-#: ../../tinyfirewall.pm_.c:180 ../../tinyfirewall.pm_.c:184
-msgid "Don't Save"
-msgstr "Năo Gravar"
-
-#: ../../tinyfirewall.pm_.c:180 ../../tinyfirewall.pm_.c:184
-#: ../../tinyfirewall.pm_.c:204
-msgid "Save & Quit"
-msgstr "Gravar e Sair"
-
-#: ../../tinyfirewall.pm_.c:195 ../../tinyfirewall.pm_.c:199
-msgid "Firewall Configuration Wizard"
-msgstr "Assistente de configuraçăo de firewalling"
-
-#: ../../tinyfirewall.pm_.c:197
-msgid "No (firewall this off from the internet)"
-msgstr "Năo (recusar isto no pára-fogo)"
-
-#: ../../tinyfirewall.pm_.c:198
-msgid "Yes (allow this through the firewall)"
-msgstr "Sim (permitir isto através do pára-fogo)"
-
-#: ../../tinyfirewall.pm_.c:230
-msgid "Please Wait... Verifying installed packages"
-msgstr "Por favor aguarde... Verificaçăo dos pacotes instalados"
-
-#: ../../tinyfirewall.pm_.c:236
-#, c-format
-msgid ""
-"Failure installing the needed packages : %s and Bastille.\n"
-" Try to install them manually."
-msgstr ""
-"A instalaçăo dos pacotes necessários falhou : %s e Bastille.\n"
-" Tente instalar-los manualmente."
-
-#: ../../ugtk.pm_.c:619
+#: ../../ugtk.pm_.c:594
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
@@ -12490,6 +12954,10 @@ msgid "Graphical Environment"
msgstr "Ambiente Gráfico"
#: ../../share/compssUsers:999
+msgid "Development"
+msgstr "Desenvolvimento"
+
+#: ../../share/compssUsers:999
msgid "Apache, Pro-ftpd"
msgstr "Apache e Pro-ftpd"
@@ -12602,22 +13070,287 @@ msgstr "Multimédia - Gravaçăo de CDs"
msgid "Scientific Workstation"
msgstr "Estaçăo de Trabalho Científica"
-#~ msgid "\n"
-#~ msgstr "\n"
+#~ msgid "Internet and Messaging"
+#~ msgstr "Internet e Correio"
+
+#~ msgid "Multimedia and Graphics"
+#~ msgstr "Multimédia e Gráficos"
+
+#~ msgid "Server Software"
+#~ msgstr "Programas de servidor"
+
+#~ msgid "MandrakeCampus"
+#~ msgstr "MandrakeCampus"
+
+#~ msgid ""
+#~ "Would you like to learn Linux simply, quickly, and for free? MandrakeSoft "
+#~ "provides free Linux training, as well as a way to test your progress, at "
+#~ "MandrakeCampus -- our online training center"
+#~ msgstr ""
+#~ "Deseja aprender o Linux de maneira simples, rápida, e gratuita? A "
+#~ "MandrakeSoft fornece treino gratuito a Linux, assim como meios de testar "
+#~ "os seus progressos, em MandrakeCampus -- o nosso centro de treino em linha"
+
+#~ msgid ""
+#~ "Quality support from the Linux Community, and from MandrakeSoft, is just "
+#~ "around the corner. And if you're already a Linux veteran, become an "
+#~ "\"Expert\" and share your knowledge at our support website"
+#~ msgstr ""
+#~ "Um suporte de qualidade pela Comunidade Linux, e por MandrakeSoft, está "
+#~ "ao seu alcance. E se você já é um veterano do Linux, inscreva-se como "
+#~ "\"Perito\" e partilhe o que sabe no nosso servidor web de suporte"
+
+#~ msgid "MandrakeConsulting"
+#~ msgstr "MandrakeConsulting"
+
+#~ msgid ""
+#~ "For all of your IT projects, our consultants are ready to analyze your "
+#~ "requirements and offer a customized solution. Benefit from MandrakeSoft's "
+#~ "vast experience as a Linux producer to provide a true IT alternative for "
+#~ "your business organization"
+#~ msgstr ""
+#~ "Para todos os seus projectos IT, os nossos consultantes estăo prontos a "
+#~ "analisar as necessidades e a propor uma soluçăo personalizada. Aproveite "
+#~ "da grande experiência de MandrakeSoft como produtor de Linux para obter "
+#~ "uma verdadeira soluçăo IT alternativa na sua empresa"
+
+#~ msgid "MandrakeStore"
+#~ msgstr "MandrakeStore"
+
+#~ msgid ""
+#~ "For more information on MandrakeSoft's Professional Services and "
+#~ "commercial offerings, please see the following web page:"
+#~ msgstr ""
+#~ "Para mais informaçőes sobre os Serviços Profissionais MandrakeSoft e "
+#~ "ofertas comerciais, visite por favor a seguinte pagina web :"
+
+#~ msgid "LBA (doesn't work on old BIOSes)"
+#~ msgstr "LBA (năo funciona com BIOS antigas)"
+
+#~ msgid "You don't have any partitions!"
+#~ msgstr "Năo tem partiçőes!"
+
+#~ msgid ""
+#~ "DiskDrake failed to read correctly the partition table.\n"
+#~ "Continue at your own risk!"
+#~ msgstr ""
+#~ "O DiskDrake falhou na leitura da tabela de partiçőes.\n"
+#~ "Continue por sua conta e risco!"
+
+#~ msgid ""
+#~ "I can't read your partition table, it's too corrupted for me :(\n"
+#~ "I'll try to go on blanking bad partitions"
+#~ msgstr ""
+#~ "Eu năo consigo ler sua tabela de partiçőes, é demasiado defeituosa\n"
+#~ "para mim. Tentarei continuar limpando as partiçőes defeituosas"
+
+#~ msgid ""
+#~ "Please Build backup before to restore it...\n"
+#~ " or verify that your path to save is correct."
+#~ msgstr ""
+#~ "Por favor Arquive antes de Restaurar...\n"
+#~ " ou verifique que o caminho onde arquivar é correcto."
+
+#~ msgid "Firewalling Configuration"
+#~ msgstr "Configuraçăo de firewalling"
-#~ msgid "$mode: $warning"
-#~ msgstr "$mode : $warning"
+#~ msgid "Firewalling configuration"
+#~ msgstr "Configuraçăo de firewalling"
#~ msgid ""
+#~ "Firewalling\n"
#~ "\n"
-#~ "Drakbackup activities via $net_proto:\n"
+#~ "You already have set up a firewall.\n"
+#~ "Click on Configure to change or remove the firewall"
+#~ msgstr ""
+#~ "Firewalling\n"
+#~ "\n"
+#~ "Já configurou a firewall.\n"
+#~ "Clique em Configurar para alterar ou remover a firewall"
+
+#~ msgid ""
+#~ "Firewalling\n"
+#~ "\n"
+#~ "Click on Configure to set up a standard firewall"
+#~ msgstr ""
+#~ "Firewalling\n"
+#~ "\n"
+#~ "Clique em Configurar para configurar uma firewall padrăo"
+
+#~ msgid ""
+#~ "We'll now ask you questions about which services you'd like to allow\n"
+#~ "the Internet to connect to. Please think carefully about these\n"
+#~ "questions, as your computer's security is important.\n"
#~ "\n"
+#~ "Please, if you're not currently using one of these services, firewall\n"
+#~ "it off. You can change this configuration anytime you like by\n"
+#~ "re-running this application!"
#~ msgstr ""
+#~ "Vou agora perguntar-lhe a quais serviços deseja autorizar\n"
+#~ "Internet a ligar-se. Por favor faça atençăo a estas questőes,\n"
+#~ "pois a segurança do seu computador é importante.\n"
#~ "\n"
-#~ "Operaçőes Drakbackup por $net_proto:\n"
+#~ "Portanto, se năo utiliza alguns destes serviços, exclua-o do\n"
+#~ "para-fogo. Poderá mudar esta configuraçăo quando quiser\n"
+#~ "com esta aplicaçăo !"
+
+#~ msgid ""
+#~ "Are you running a web server on this machine that you need the whole\n"
+#~ "Internet to see? If you are running a webserver that only needs to be\n"
+#~ "accessed by this machine, you can safely answer NO here.\n"
+#~ "\n"
+#~ msgstr ""
+#~ "Está utilizando um servidor web nesta máquina que precisa ser\n"
+#~ "visto de todo o Internet? Se utiliza só um servidor acedido por\n"
+#~ "esta maquina, pode dizer NĂO aqui.\n"
+#~ "\n"
+
+#~ msgid ""
+#~ "Are you running a name server on this machine? If you didn't set one\n"
+#~ "up to give away IP and zone information to the whole Internet, please\n"
+#~ "answer no.\n"
+#~ "\n"
+#~ msgstr ""
+#~ "Está a correr um servidor de nomes nesta máquina? Se năo definiu \n"
+#~ "um para enviar informaçőes de IP e zona a toda a Internet por favor \n"
+#~ "responda năo.\n"
#~ "\n"
#~ msgid ""
+#~ "Do you want to allow incoming Secure Shell (ssh) connections? This\n"
+#~ "is a telnet-replacement that you might use to login. If you're using\n"
+#~ "telnet now, you should definitely switch to ssh. telnet is not\n"
+#~ "encrypted -- so some attackers can steal your password if you use\n"
+#~ "it. ssh is encrypted and doesn't allow for this eavesdropping."
+#~ msgstr ""
+#~ "Deseja autorizar ligaçőes Secure Shell (ssh) recebidas do exterior? \n"
+#~ "Isto é um substituto de telnet que pode utilizar para efectuar o login.\n"
+#~ "Se estiver a utilizar telnet agora, deve mudar para ssh. telnet năo é \n"
+#~ "codificado -- possibilitando o roubo da sua palavra-passe se o usar\n"
+#~ "ssh é codificado e năo autoriza este 'eavesdropping'."
+
+#~ msgid ""
+#~ "Do you want to allow incoming telnet connections?\n"
+#~ "This is horribly unsafe, as we explained in the previous screen. We\n"
+#~ "strongly recommend answering No here and using ssh in place of\n"
+#~ "telnet.\n"
+#~ msgstr ""
+#~ "Deseja autorizar ligaçőes telnet recebidas do exterior?\n"
+#~ "Isto é muito inseguro, como já explicamos. Nós recomendamos\n"
+#~ "vivamente responder Năo aqui e usar ssh em vez de telnet.\n"
+#~ "\n"
+
+#~ msgid ""
+#~ "Are you running an FTP server here that you need accessible to the\n"
+#~ "Internet? If you are, we strongly recommend that you only use it for\n"
+#~ "Anonymous transfers. Any passwords sent by FTP can be stolen by some\n"
+#~ "attackers, since FTP also uses no encryption for transferring passwords.\n"
+#~ msgstr ""
+#~ "Está a correr um servidor FTP aqui que necessita que esteja acessível na\n"
+#~ "Internet? Se estiver, recomendamos que apenas o utilize para "
+#~ "transferências\n"
+#~ "Anónimas. Quaisquer palavras-passe enviadas por FTP podem ser roubadas,\n"
+#~ " uma vez que o FTP também năo utiliza encriptaçăo para palavras-passe.\n"
+
+#~ msgid ""
+#~ "Are you running a mail server here? If you're sending you \n"
+#~ "messages through pine, mutt or any other text-based mail client,\n"
+#~ "you probably are. Otherwise, you should firewall this off.\n"
+#~ "\n"
+#~ msgstr ""
+#~ "Está a correr um servidor de correio aqui? Se está a enviar a si \n"
+#~ "mensagens através do pine, mutt ou outro cliente de correio base-\n"
+#~ "ado em texto provavelmente está. De outra forma deveria remover \n"
+#~ "o firewall para isto.\n"
+#~ "\n"
+
+#~ msgid ""
+#~ "Are you running a POP or IMAP server here? This would\n"
+#~ "be used to host non-web-based mail accounts for people via \n"
+#~ "this machine.\n"
+#~ "\n"
+#~ msgstr ""
+#~ "Esta a correr um servidor POP OU IMAP aqui? Isto seria\n"
+#~ "usado para albergar contas de correio năo baseadas na web\n"
+#~ "para pessoas via esta máquina.\n"
+#~ "\n"
+
+#~ msgid ""
+#~ "You appear to be running a 2.2 kernel. If your network IP\n"
+#~ "is automatically set by a computer in your home or office \n"
+#~ "(dynamically assigned), we need to allow for this. Is\n"
+#~ "this the case?\n"
+#~ msgstr ""
+#~ "Aparentemente está a correr um núcleo 2.2. Se o seu IP de \n"
+#~ "Rede é automaticamente definido por um computador na sua \n"
+#~ "casa ou escritório (dinamicamente atribuído), necessitamos \n"
+#~ "permitir isto. É este o caso?\n"
+
+#~ msgid ""
+#~ "Is your computer getting time syncronized to another computer?\n"
+#~ "Mostly, this is used by medium-large Unix/Linux organizations\n"
+#~ "to synchronize time for logging and such. If you're not part\n"
+#~ "of a larger office and haven't heard of this, you probably \n"
+#~ "aren't."
+#~ msgstr ""
+#~ "O seu computador está a sincronizar a hora com outro computador?\n"
+#~ "Isto é usado por maioritariamente por organizaçőes Unix/Linux médias-\n"
+#~ "grandes para sincronizar a hora para registos e assim. Se năo faz parte \n"
+#~ "de um grande escritório e nunca ouviu falar disto, provavelmente năo \n"
+#~ "estará."
+
+#~ msgid ""
+#~ "Configuration complete. May we write these changes to disk?\n"
+#~ "\n"
+#~ "\n"
+#~ "\n"
+#~ msgstr ""
+#~ "Configuraçăo completa. Posso escrever estas mudanças no disco?\n"
+#~ "\n"
+#~ "\n"
+#~ "\n"
+
+#~ msgid "Can't open %s for writing: %s\n"
+#~ msgstr "Năo é possível abrir %s para escrita: %s\n"
+
+#~ msgid "No I don't need DHCP"
+#~ msgstr "Năo, eu năo preciso DHCP"
+
+#~ msgid "Yes I need DHCP"
+#~ msgstr "Sim, eu preciso DHCP"
+
+#~ msgid "No I don't need NTP"
+#~ msgstr "Năo, eu năo preciso NTP"
+
+#~ msgid "Yes I need NTP"
+#~ msgstr "Sim, eu preciso NTP"
+
+#~ msgid "Don't Save"
+#~ msgstr "Năo Gravar"
+
+#~ msgid "Save & Quit"
+#~ msgstr "Gravar e Sair"
+
+#~ msgid "Firewall Configuration Wizard"
+#~ msgstr "Assistente de configuraçăo de firewalling"
+
+#~ msgid "No (firewall this off from the internet)"
+#~ msgstr "Năo (recusar isto no pára-fogo)"
+
+#~ msgid "Yes (allow this through the firewall)"
+#~ msgstr "Sim (permitir isto através do pára-fogo)"
+
+#~ msgid "Please Wait... Verifying installed packages"
+#~ msgstr "Por favor aguarde... Verificaçăo dos pacotes instalados"
+
+#~ msgid ""
+#~ "Failure installing the needed packages: %s and Bastille.\n"
+#~ " Try to install them manually."
+#~ msgstr ""
+#~ "A instalaçăo dos pacotes necessários falhou : %s e Bastille.\n"
+#~ " Tente instalar-los manualmente."
+
+#~ msgid ""
#~ "This level is to be used with care. It makes your system more easy to "
#~ "use,\n"
#~ " but very sensitive: it must not be used for a machine "
@@ -12649,9 +13382,6 @@ msgstr "Estaçăo de Trabalho Científica"
#~ msgid "Security Checks"
#~ msgstr "Verificaçőes da Segurança"
-#~ msgid "$descr"
-#~ msgstr "$descr"
-
#~ msgid "Data list to include on CDROM."
#~ msgstr "Lista dos dados a incluir no CDROM."
@@ -12784,9 +13514,6 @@ msgstr "Estaçăo de Trabalho Científica"
#~ msgid "Select a graphics card"
#~ msgstr "Seleccione uma placa gráfica"
-#~ msgid "Warning: testing this graphics card may freeze your computer"
-#~ msgstr "Aviso: o teste desta placa gráfica pode congelar o seu computador"
-
#~ msgid "Standard VGA, 640x480 at 60 Hz"
#~ msgstr "VGA Padrăo, 640x480 a 60 Hz"
diff --git a/perl-install/share/po/pt_BR.po b/perl-install/share/po/pt_BR.po
index da9e75b44..d11152d0b 100644
--- a/perl-install/share/po/pt_BR.po
+++ b/perl-install/share/po/pt_BR.po
@@ -5,8 +5,8 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: drakfloppy 0.43\n"
-"POT-Creation-Date: 2002-08-21 15:44+0200\n"
+"Project-Id-Version: DrakX\n"
+"POT-Creation-Date: 2002-09-02 20:14+0200\n"
"PO-Revision-Date: 2002-02-14 00:06GMT\n"
"Last-Translator: Bruno Dorfman Buys <brunobuys@zipmail.com.br>\n"
"Language-Team: Português <pt@li.org>\n"
@@ -51,19 +51,19 @@ msgstr "32 MB"
msgid "64 MB or more"
msgstr "64 MB ou mais"
-#: ../../Xconfig/card.pm_.c:201
+#: ../../Xconfig/card.pm_.c:203
msgid "Choose a X server"
msgstr "Escolha um servidor X"
-#: ../../Xconfig/card.pm_.c:201
+#: ../../Xconfig/card.pm_.c:203
msgid "X server"
msgstr "Servidor X"
-#: ../../Xconfig/card.pm_.c:228
+#: ../../Xconfig/card.pm_.c:230
msgid "Multi-head configuration"
msgstr "Configuraçăo multi-cabeça"
-#: ../../Xconfig/card.pm_.c:229
+#: ../../Xconfig/card.pm_.c:231
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
@@ -71,27 +71,27 @@ msgstr ""
"Seu sistema suporta configuraçăo de cabeça múltipla.\n"
"O que você quer fazer?"
-#: ../../Xconfig/card.pm_.c:284
+#: ../../Xconfig/card.pm_.c:286
msgid "Select the memory size of your graphics card"
msgstr "Selecione o tamanho da memória de sua placa gráfica"
-#: ../../Xconfig/card.pm_.c:345
+#: ../../Xconfig/card.pm_.c:347
msgid "XFree configuration"
msgstr "Configuraçăo do XFree"
-#: ../../Xconfig/card.pm_.c:347
+#: ../../Xconfig/card.pm_.c:349
msgid "Which configuration of XFree do you want to have?"
msgstr "Qual configuraçăo do XFree você quer ter?"
-#: ../../Xconfig/card.pm_.c:379
+#: ../../Xconfig/card.pm_.c:381
msgid "Configure all heads independently"
msgstr "Configurar todas as cabeças independentemente"
-#: ../../Xconfig/card.pm_.c:380
+#: ../../Xconfig/card.pm_.c:382
msgid "Use Xinerama extension"
msgstr "Usar extensăo Xinerama"
-#: ../../Xconfig/card.pm_.c:384
+#: ../../Xconfig/card.pm_.c:386
#, fuzzy, c-format
msgid "Configure only card \"%s\"%s"
msgstr "Configurar apenas placa \"%s\" (%s)"
@@ -102,13 +102,13 @@ msgstr "Configurar apenas placa \"%s\" (%s)"
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:435
+#: ../../Xconfig/card.pm_.c:410 ../../Xconfig/card.pm_.c:436
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s with 3D hardware acceleration"
msgstr "XFree %s com aceleraçăo hardware 3D"
-#: ../../Xconfig/card.pm_.c:412
+#: ../../Xconfig/card.pm_.c:413
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -117,17 +117,17 @@ msgstr ""
"Seu placa suporta aceleraçăo hardware 3D mas apenas com o XFree %s.\n"
"Sua placa é suportada pelo XFree %s que pode ter melhor suporte 2D."
-#: ../../Xconfig/card.pm_.c:414 ../../Xconfig/card.pm_.c:437
+#: ../../Xconfig/card.pm_.c:415 ../../Xconfig/card.pm_.c:438
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr "Sua placa suporta aceleraçăo hardware 3D com o XFree %s."
-#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:443
+#: ../../Xconfig/card.pm_.c:423 ../../Xconfig/card.pm_.c:444
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s com aceleraçăo hardware 3D EXPERIMENTAL"
-#: ../../Xconfig/card.pm_.c:425
+#: ../../Xconfig/card.pm_.c:426
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -138,7 +138,7 @@ msgstr ""
"NOTE QUE O SUPORTE É EXPERIMENTAL E PODE TRAVAR O SEU COMPUTADOR.\n"
"Sua placa é suportada pelo XFree %s que pode ter melhor suporte 2D."
-#: ../../Xconfig/card.pm_.c:428 ../../Xconfig/card.pm_.c:445
+#: ../../Xconfig/card.pm_.c:429 ../../Xconfig/card.pm_.c:446
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
@@ -147,53 +147,54 @@ msgstr ""
"Seu placa suporta aceleraçăo hardware 3D com o XFree %s,\n"
"NOTE QUE O SUPORTE É EXPERIMENTAL E PODE TRAVAR O SEU COMPUTADOR."
-#: ../../Xconfig/card.pm_.c:451
+#: ../../Xconfig/card.pm_.c:452
msgid "Xpmac (installation display driver)"
msgstr "Xpmac (installation display driver)"
-#: ../../Xconfig/main.pm_.c:78 ../../Xconfig/main.pm_.c:79
-#: ../../Xconfig/monitor.pm_.c:94 ../../any.pm_.c:974
+#: ../../Xconfig/main.pm_.c:76 ../../Xconfig/main.pm_.c:77
+#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:977
msgid "Custom"
msgstr "Personalizada"
-#: ../../Xconfig/main.pm_.c:104
+#: ../../Xconfig/main.pm_.c:102
#, fuzzy
msgid "Graphic Card"
msgstr "Placa Gráfica"
-#: ../../Xconfig/main.pm_.c:107 ../../Xconfig/monitor.pm_.c:91
+#: ../../Xconfig/main.pm_.c:105 ../../Xconfig/monitor.pm_.c:93
msgid "Monitor"
msgstr "Monitor"
-#: ../../Xconfig/main.pm_.c:110 ../../Xconfig/resolution_and_depth.pm_.c:209
+#: ../../Xconfig/main.pm_.c:108 ../../Xconfig/resolution_and_depth.pm_.c:209
msgid "Resolution"
msgstr "Resoluçăo"
-#: ../../Xconfig/main.pm_.c:114
+#: ../../Xconfig/main.pm_.c:113
msgid "Test"
msgstr ""
-#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:59
-#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/removable.pm_.c:25
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:63
+#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/removable.pm_.c:25
#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "Opçőes"
#: ../../Xconfig/main.pm_.c:121 ../../Xconfig/resolution_and_depth.pm_.c:268
-#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:281
+#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:275
#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
-#: ../../interactive.pm_.c:351 ../../interactive/http.pm_.c:104
+#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:104
#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
-#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:156
-#: ../../my_gtk.pm_.c:284 ../../my_gtk.pm_.c:307
-#: ../../standalone/drakbackup_.c:3324 ../../standalone/drakbackup_.c:3419
-#: ../../standalone/drakbackup_.c:3438
+#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:159
+#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310
+#: ../../standalone/drakbackup_.c:3972 ../../standalone/drakbackup_.c:4067
+#: ../../standalone/drakbackup_.c:4086
msgid "Ok"
msgstr "Ok"
#: ../../Xconfig/main.pm_.c:121 ../../diskdrake/dav.pm_.c:24
-#: ../../printerdrake.pm_.c:2933 ../../standalone/logdrake_.c:224
+#: ../../harddrake/ui.pm_.c:98 ../../printerdrake.pm_.c:3155
+#: ../../standalone/logdrake_.c:224
msgid "Quit"
msgstr "Sair"
@@ -210,28 +211,28 @@ msgstr ""
"\n"
"%s"
-#: ../../Xconfig/monitor.pm_.c:91
+#: ../../Xconfig/monitor.pm_.c:93
msgid "Choose a monitor"
msgstr "Escolha um monitor"
-#: ../../Xconfig/monitor.pm_.c:95
+#: ../../Xconfig/monitor.pm_.c:97
msgid "Plug'n Play"
msgstr ""
-#: ../../Xconfig/monitor.pm_.c:96 ../../mouse.pm_.c:45
+#: ../../Xconfig/monitor.pm_.c:98 ../../mouse.pm_.c:46
msgid "Generic"
msgstr "Genérico"
-#: ../../Xconfig/monitor.pm_.c:97 ../../harddrake/ui.pm_.c:36
+#: ../../Xconfig/monitor.pm_.c:99 ../../harddrake/ui.pm_.c:37
#, fuzzy
msgid "Vendor"
msgstr "Desfazer"
-#: ../../Xconfig/monitor.pm_.c:107
+#: ../../Xconfig/monitor.pm_.c:109
msgid "Plug'n Play probing failed. Please choose a precise monitor"
msgstr ""
-#: ../../Xconfig/monitor.pm_.c:112
+#: ../../Xconfig/monitor.pm_.c:114
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -254,11 +255,11 @@ msgstr ""
"monitor.\n"
" Se tiver dúvida, escolha características conservadoras."
-#: ../../Xconfig/monitor.pm_.c:119
+#: ../../Xconfig/monitor.pm_.c:121
msgid "Horizontal refresh rate"
msgstr "Taxa de atualizaçăo horizontal"
-#: ../../Xconfig/monitor.pm_.c:120
+#: ../../Xconfig/monitor.pm_.c:122
msgid "Vertical refresh rate"
msgstr "Taxa de atualizaçăo vertical"
@@ -295,36 +296,41 @@ msgstr "Escolha a resoluçăo e número de cores"
msgid "Graphics card: %s"
msgstr "Placa Gráfica: %s"
-#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1015
-#: ../../bootlook.pm_.c:334 ../../diskdrake/smbnfs_gtk.pm_.c:87
-#: ../../install_steps_gtk.pm_.c:412 ../../install_steps_gtk.pm_.c:470
-#: ../../install_steps_interactive.pm_.c:576 ../../interactive.pm_.c:142
-#: ../../interactive.pm_.c:351 ../../interactive/http.pm_.c:105
+#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1018
+#: ../../bootlook.pm_.c:338 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:406 ../../install_steps_gtk.pm_.c:464
+#: ../../install_steps_interactive.pm_.c:560 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:105
#: ../../interactive/newt.pm_.c:174 ../../interactive/stdio.pm_.c:39
-#: ../../interactive/stdio.pm_.c:143 ../../my_gtk.pm_.c:155
-#: ../../my_gtk.pm_.c:159 ../../my_gtk.pm_.c:284
-#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1990
-#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3278
-#: ../../standalone/drakbackup_.c:3311 ../../standalone/drakbackup_.c:3337
-#: ../../standalone/drakbackup_.c:3364 ../../standalone/drakbackup_.c:3391
-#: ../../standalone/drakbackup_.c:3451 ../../standalone/drakbackup_.c:3478
-#: ../../standalone/drakbackup_.c:3504 ../../standalone/drakconnect_.c:115
-#: ../../standalone/drakconnect_.c:147 ../../standalone/drakconnect_.c:289
-#: ../../standalone/drakconnect_.c:537 ../../standalone/drakconnect_.c:679
-#: ../../standalone/drakfloppy_.c:234 ../../standalone/drakfloppy_.c:383
-#: ../../standalone/drakfont_.c:970 ../../standalone/drakgw_.c:598
-#: ../../standalone/logdrake_.c:224 ../../standalone/logdrake_.c:528
-#: ../../standalone/tinyfirewall_.c:64
+#: ../../interactive/stdio.pm_.c:143 ../../my_gtk.pm_.c:158
+#: ../../my_gtk.pm_.c:162 ../../my_gtk.pm_.c:287
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:2124
+#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3926
+#: ../../standalone/drakbackup_.c:3959 ../../standalone/drakbackup_.c:3985
+#: ../../standalone/drakbackup_.c:4012 ../../standalone/drakbackup_.c:4039
+#: ../../standalone/drakbackup_.c:4099 ../../standalone/drakbackup_.c:4126
+#: ../../standalone/drakbackup_.c:4156 ../../standalone/drakbackup_.c:4182
+#: ../../standalone/drakconnect_.c:115 ../../standalone/drakconnect_.c:147
+#: ../../standalone/drakconnect_.c:289 ../../standalone/drakconnect_.c:537
+#: ../../standalone/drakconnect_.c:679 ../../standalone/drakfloppy_.c:234
+#: ../../standalone/drakfloppy_.c:383 ../../standalone/drakfont_.c:970
+#: ../../standalone/drakgw_.c:536 ../../standalone/logdrake_.c:224
+#: ../../standalone/logdrake_.c:526
msgid "Cancel"
msgstr "Cancelar"
-#: ../../Xconfig/test.pm_.c:26
+#: ../../Xconfig/test.pm_.c:30
+msgid "Test of the configuration"
+msgstr "Testar configuraçăo"
+
+#: ../../Xconfig/test.pm_.c:31
msgid "Do you want to test the configuration?"
msgstr "Você quer testar a configuraçăo?"
-#: ../../Xconfig/test.pm_.c:26
-msgid "Test of the configuration"
-msgstr "Testar configuraçăo"
+#: ../../Xconfig/test.pm_.c:31
+#, fuzzy
+msgid "Warning: testing this graphic card may freeze your computer"
+msgstr "Atençăo: testar essa placa gráfica pode travar o seu computador"
#: ../../Xconfig/various.pm_.c:29
#, c-format
@@ -460,26 +466,22 @@ msgstr "Inicializaçăo pelo DOS/Windows (loadlin)"
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:158 ../../any.pm_.c:190
+#: ../../any.pm_.c:159 ../../any.pm_.c:190
msgid "Bootloader main options"
msgstr "Principais opçőes do gerenciador de inicializaçăo"
-#: ../../any.pm_.c:159 ../../any.pm_.c:191
+#: ../../any.pm_.c:160 ../../any.pm_.c:191
msgid "Bootloader to use"
msgstr "Gerenciador de inicializaçăo a ser usado"
-#: ../../any.pm_.c:161
+#: ../../any.pm_.c:162
msgid "Bootloader installation"
msgstr "Instalaçăo do gerenciador de inicializaçăo"
-#: ../../any.pm_.c:163 ../../any.pm_.c:193
+#: ../../any.pm_.c:164 ../../any.pm_.c:193
msgid "Boot device"
msgstr "Dispositivo de boot"
-#: ../../any.pm_.c:164
-msgid "LBA (doesn't work on old BIOSes)"
-msgstr "LBA (năo funciona em BIOS antigas)"
-
#: ../../any.pm_.c:165
msgid "Compact"
msgstr "Compacto"
@@ -496,16 +498,17 @@ msgstr "Modo de Vídeo"
msgid "Delay before booting default image"
msgstr "Tempo antes de entrar na imagem padrăo"
-#: ../../any.pm_.c:170 ../../any.pm_.c:786
+#: ../../any.pm_.c:170 ../../any.pm_.c:788
#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1111 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:743 ../../printerdrake.pm_.c:858
-#: ../../standalone/drakconnect_.c:624 ../../standalone/drakconnect_.c:649
+#: ../../install_steps_interactive.pm_.c:1096 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:850 ../../printerdrake.pm_.c:965
+#: ../../standalone/drakbackup_.c:3528 ../../standalone/drakconnect_.c:624
+#: ../../standalone/drakconnect_.c:649
msgid "Password"
msgstr "Senha"
-#: ../../any.pm_.c:171 ../../any.pm_.c:787
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../any.pm_.c:171 ../../any.pm_.c:789
+#: ../../install_steps_interactive.pm_.c:1097
msgid "Password (again)"
msgstr "Senha (de novo)"
@@ -539,14 +542,14 @@ msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr "Opçăo ``Restringir opçőes da linha de comando'' năo tem uso sem senha"
-#: ../../any.pm_.c:184 ../../any.pm_.c:762
-#: ../../diskdrake/interactive.pm_.c:1180
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../any.pm_.c:184 ../../any.pm_.c:764
+#: ../../diskdrake/interactive.pm_.c:1191
+#: ../../install_steps_interactive.pm_.c:1091
msgid "Please try again"
msgstr "Favor tentar novamente"
-#: ../../any.pm_.c:184 ../../any.pm_.c:762
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../any.pm_.c:184 ../../any.pm_.c:764
+#: ../../install_steps_interactive.pm_.c:1091
msgid "The passwords do not match"
msgstr "As senhas năo conferem"
@@ -591,16 +594,16 @@ msgstr ""
"Aqui estăo as entradas diferentes.\n"
"Você pode adicionar mais ou modificar as existentes."
-#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1483
-#: ../../standalone/drakbackup_.c:1596 ../../standalone/drakfont_.c:1011
+#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1558
+#: ../../standalone/drakbackup_.c:1671 ../../standalone/drakfont_.c:1011
#: ../../standalone/drakfont_.c:1054
msgid "Add"
msgstr "Adicionar"
-#: ../../any.pm_.c:257 ../../any.pm_.c:774 ../../diskdrake/dav.pm_.c:60
+#: ../../any.pm_.c:257 ../../any.pm_.c:776 ../../diskdrake/dav.pm_.c:64
#: ../../diskdrake/hd_gtk.pm_.c:153 ../../diskdrake/removable.pm_.c:27
#: ../../diskdrake/smbnfs_gtk.pm_.c:88 ../../interactive/http.pm_.c:153
-#: ../../standalone/drakbackup_.c:2696
+#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2772
msgid "Done"
msgstr "Pronto"
@@ -612,7 +615,7 @@ msgstr "Modificar"
msgid "Which type of entry do you want to add?"
msgstr "Qual tipo de entrada você quer adicionar"
-#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1630
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1705
msgid "Linux"
msgstr "Linux"
@@ -706,13 +709,13 @@ msgstr "Você tem alguma outra?"
msgid "Do you have any %s interfaces?"
msgstr "Você tem alguma interface %s?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:821 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:283
+#: ../../any.pm_.c:660 ../../any.pm_.c:823 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:286
msgid "No"
msgstr "Năo"
-#: ../../any.pm_.c:660 ../../any.pm_.c:820 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:283
+#: ../../any.pm_.c:660 ../../any.pm_.c:822 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:286
msgid "Yes"
msgstr "Sim"
@@ -810,39 +813,49 @@ msgstr "Permitir \"su\""
msgid "access to administrative files"
msgstr "Acesso a arquivos administrativos"
-#: ../../any.pm_.c:758
+#: ../../any.pm_.c:754
+#, fuzzy
+msgid "access to network tools"
+msgstr "Acesso a ferramentas rpm"
+
+#: ../../any.pm_.c:755
+#, fuzzy
+msgid "access to compilation tools"
+msgstr "Acesso a ferramentas rpm"
+
+#: ../../any.pm_.c:760
#, c-format
msgid "(already added %s)"
msgstr "(já adicionado %s)"
-#: ../../any.pm_.c:763
+#: ../../any.pm_.c:765
msgid "This password is too simple"
msgstr "Essa senha é muito simples"
-#: ../../any.pm_.c:764
+#: ../../any.pm_.c:766
msgid "Please give a user name"
msgstr "Favor dar um nome de usuário"
-#: ../../any.pm_.c:765
+#: ../../any.pm_.c:767
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
"O nome do usuário deve conter apenas letras minúsculas, números `-' e `_'"
-#: ../../any.pm_.c:766
+#: ../../any.pm_.c:768
#, fuzzy
msgid "The user name is too long"
msgstr "Esse usuário já foi adicionado"
-#: ../../any.pm_.c:767
+#: ../../any.pm_.c:769
msgid "This user name is already added"
msgstr "Esse usuário já foi adicionado"
-#: ../../any.pm_.c:771
+#: ../../any.pm_.c:773
msgid "Add user"
msgstr "Adicionar usuário"
-#: ../../any.pm_.c:772
+#: ../../any.pm_.c:774
#, c-format
msgid ""
"Enter a user\n"
@@ -851,32 +864,32 @@ msgstr ""
"Entre com o usuário\n"
"%s"
-#: ../../any.pm_.c:773
+#: ../../any.pm_.c:775
msgid "Accept user"
msgstr "Aceitar usuário"
-#: ../../any.pm_.c:784
+#: ../../any.pm_.c:786
msgid "Real name"
msgstr "Nome real"
-#: ../../any.pm_.c:785 ../../printerdrake.pm_.c:742
-#: ../../printerdrake.pm_.c:857
+#: ../../any.pm_.c:787 ../../printerdrake.pm_.c:849
+#: ../../printerdrake.pm_.c:964
msgid "User name"
msgstr "Nome do usuário"
-#: ../../any.pm_.c:788
+#: ../../any.pm_.c:790
msgid "Shell"
msgstr "Shell"
-#: ../../any.pm_.c:790
+#: ../../any.pm_.c:792
msgid "Icon"
msgstr "Ícone"
-#: ../../any.pm_.c:817
+#: ../../any.pm_.c:819
msgid "Autologin"
msgstr "Autologin"
-#: ../../any.pm_.c:818
+#: ../../any.pm_.c:820
msgid ""
"I can set up your computer to automatically log on one user.\n"
"Do you want to use this feature?"
@@ -884,19 +897,19 @@ msgstr ""
"Eu posso configurar o seu computador para automaticamente logar um usuário.\n"
"Se você năo quiser utilisar esta funçăo, clique em \"Cancelar\"."
-#: ../../any.pm_.c:822
+#: ../../any.pm_.c:824
msgid "Choose the default user:"
msgstr "Escolha o usuário:"
-#: ../../any.pm_.c:823
+#: ../../any.pm_.c:825
msgid "Choose the window manager to run:"
msgstr "Escolha o gerenciador de janelas para ele:"
-#: ../../any.pm_.c:838
+#: ../../any.pm_.c:840
msgid "Please choose a language to use."
msgstr "Favor escolher o idioma a ser utilizado."
-#: ../../any.pm_.c:840
+#: ../../any.pm_.c:842
msgid ""
"Mandrake Linux can support multiple languages. Select\n"
"the languages you would like to install. They will be available\n"
@@ -904,35 +917,35 @@ msgid ""
msgstr ""
"Você pode escolher outros idiomas que estarăo disponíveis após a instalaçăo"
-#: ../../any.pm_.c:854 ../../install_steps_interactive.pm_.c:708
+#: ../../any.pm_.c:856 ../../install_steps_interactive.pm_.c:692
#: ../../standalone/drakxtv_.c:73
msgid "All"
msgstr "Tudo"
-#: ../../any.pm_.c:974
+#: ../../any.pm_.c:977
msgid "Allow all users"
msgstr "Permite todos os usuários"
-#: ../../any.pm_.c:974
+#: ../../any.pm_.c:977
msgid "No sharing"
msgstr "Sem compartilhamento"
-#: ../../any.pm_.c:984 ../../standalone.pm_.c:57
+#: ../../any.pm_.c:987 ../../install_any.pm_.c:1183 ../../standalone.pm_.c:58
#, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "O pacote %s precisa ser instalado. Você deseja instalá-lo?"
-#: ../../any.pm_.c:987
+#: ../../any.pm_.c:990
msgid ""
"You can export using NFS or Samba. Please select which you'd like to use."
msgstr "Você pode exportar usando SAMBA ou NFS. Qual deles você quer"
-#: ../../any.pm_.c:995 ../../standalone.pm_.c:61
+#: ../../any.pm_.c:998 ../../install_any.pm_.c:1188 ../../standalone.pm_.c:63
#, c-format
msgid "Mandatory package %s is missing"
msgstr "Pacote obrigatório %s faltando"
-#: ../../any.pm_.c:1001
+#: ../../any.pm_.c:1004
msgid ""
"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
@@ -941,11 +954,11 @@ msgid ""
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:1015
+#: ../../any.pm_.c:1018
msgid "Launch userdrake"
msgstr "Carregar Userdrake"
-#: ../../any.pm_.c:1017
+#: ../../any.pm_.c:1020
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
@@ -953,32 +966,32 @@ msgstr ""
"O compartilhamento por usuário usa o grupo \"fileshare\".\n"
"Você pode usar o userdrake para adicionar um usuário neste grupo."
-#: ../../any.pm_.c:1068
+#: ../../any.pm_.c:1071
msgid "Welcome To Crackers"
msgstr "Bem-vindo à Crackers"
-#: ../../any.pm_.c:1069
+#: ../../any.pm_.c:1072
msgid "Poor"
msgstr "Pobre"
-#: ../../any.pm_.c:1070 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1073 ../../mouse.pm_.c:31
msgid "Standard"
msgstr "Padrăo"
-#: ../../any.pm_.c:1071
+#: ../../any.pm_.c:1074
msgid "High"
msgstr "Alto"
-#: ../../any.pm_.c:1072
+#: ../../any.pm_.c:1075
#, fuzzy
msgid "Higher"
msgstr "Alto"
-#: ../../any.pm_.c:1073
+#: ../../any.pm_.c:1076
msgid "Paranoid"
msgstr "Paranóico"
-#: ../../any.pm_.c:1076
+#: ../../any.pm_.c:1079
msgid ""
"This level is to be used with care. It makes your system more easy to use,\n"
"but very sensitive: it must not be used for a machine connected to others\n"
@@ -990,7 +1003,7 @@ msgstr ""
"outros\n"
"ou à internet. Năo existe acesso por senha."
-#: ../../any.pm_.c:1079
+#: ../../any.pm_.c:1082
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -998,7 +1011,7 @@ msgstr ""
"As senhas agora estăo ativadas, mas o uso como computador de rede ainda năo "
"é recomendado."
-#: ../../any.pm_.c:1080
+#: ../../any.pm_.c:1083
#, fuzzy
msgid ""
"This is the standard security recommended for a computer that will be used "
@@ -1008,13 +1021,13 @@ msgstr ""
"para se conectar à Internet como um cliente. Agora existe checagens de "
"segurança. "
-#: ../../any.pm_.c:1081
+#: ../../any.pm_.c:1084
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr ""
-#: ../../any.pm_.c:1082
+#: ../../any.pm_.c:1085
#, fuzzy
msgid ""
"With this security level, the use of this system as a server becomes "
@@ -1030,7 +1043,7 @@ msgstr ""
"servidor\n"
"que aceita conexăo de muitos clientes. "
-#: ../../any.pm_.c:1085
+#: ../../any.pm_.c:1088
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
"security features are at their maximum."
@@ -1038,32 +1051,32 @@ msgstr ""
"Baseado no nível anterior, mas agora o sistema está totalmente fechado.\n"
"As características de segurança estăo no máximo."
-#: ../../any.pm_.c:1091
+#: ../../any.pm_.c:1094
#, fuzzy
msgid "DrakSec Basic Options"
msgstr "Opçőes"
-#: ../../any.pm_.c:1092
+#: ../../any.pm_.c:1095
#, fuzzy
msgid "Please choose the desired security level"
msgstr "Escolha nível de segurança"
-#: ../../any.pm_.c:1095
+#: ../../any.pm_.c:1098
msgid "Security level"
msgstr "Nível de segurança"
-#: ../../any.pm_.c:1097
+#: ../../any.pm_.c:1100
msgid "Use libsafe for servers"
msgstr "Use lbsafe para servidores"
-#: ../../any.pm_.c:1098
+#: ../../any.pm_.c:1101
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
"Uma livraria que defende contra ataques de buffer overflow e strings de "
"format"
-#: ../../any.pm_.c:1099
+#: ../../any.pm_.c:1102
msgid "Security Administrator (login or email)"
msgstr ""
@@ -1105,59 +1118,59 @@ msgstr ""
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:935
+#: ../../bootloader.pm_.c:932
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Bem-vindo ao GRUB o selecionador de sistema operacional!"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:938
+#: ../../bootloader.pm_.c:935
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "Use as teclas %c e %c para selecionar a entrada que quiser."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:941
+#: ../../bootloader.pm_.c:938
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Pressione entrar para entrar no SO selecionado, 'e' para editar os"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:941
msgid "commands before booting, or 'c' for a command-line."
msgstr "comandos antes da inicializacao, ou 'c' para linha de comando."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:947
+#: ../../bootloader.pm_.c:944
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr ""
"A inicializacao da entrada selecionada ocorrera automaticamente em %d "
"segundos."
-#: ../../bootloader.pm_.c:951
+#: ../../bootloader.pm_.c:948
msgid "not enough room in /boot"
msgstr "sem espaco suficiente em /boot"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1051
+#: ../../bootloader.pm_.c:1048
msgid "Desktop"
msgstr "Desktop"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1053
+#: ../../bootloader.pm_.c:1050
msgid "Start Menu"
msgstr "Menu Iniciar"
-#: ../../bootloader.pm_.c:1072
+#: ../../bootloader.pm_.c:1069
#, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "Você năo pode instalar o carregador de boot em uma %s partiçăo\n"
-#: ../../bootlook.pm_.c:45
+#: ../../bootlook.pm_.c:45 ../../standalone/draksplash_.c:25
msgid "no help implemented yet.\n"
msgstr "ajuda ainda năo implementada.\n"
@@ -1165,8 +1178,8 @@ msgstr "ajuda ainda năo implementada.\n"
msgid "Boot Style Configuration"
msgstr "Configuraçăo do estilo de inicializaçăo"
-#: ../../bootlook.pm_.c:78 ../../harddrake/ui.pm_.c:59
-#: ../../harddrake/ui.pm_.c:60 ../../standalone/drakfloppy_.c:81
+#: ../../bootlook.pm_.c:78 ../../harddrake/ui.pm_.c:62
+#: ../../harddrake/ui.pm_.c:63 ../../standalone/drakfloppy_.c:81
#: ../../standalone/logdrake_.c:101
msgid "/_File"
msgstr "/_Arquivo"
@@ -1176,7 +1189,7 @@ msgstr "/_Arquivo"
msgid "/File/_Quit"
msgstr "/Arquivo/Sai_r"
-#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:60
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:63
#: ../../standalone/drakfloppy_.c:82 ../../standalone/logdrake_.c:107
msgid "<control>Q"
msgstr "<control>R"
@@ -1218,94 +1231,101 @@ msgstr "Instalar sistema"
msgid "Display theme under console"
msgstr ""
-#: ../../bootlook.pm_.c:166
+#: ../../bootlook.pm_.c:145
+#, fuzzy
+msgid "Create new theme"
+msgstr "Criar uma nova partiçăo"
+
+#: ../../bootlook.pm_.c:169
msgid "Can't create Bootsplash preview"
msgstr ""
-#: ../../bootlook.pm_.c:166 ../../bootlook.pm_.c:184 ../../bootlook.pm_.c:187
-#: ../../bootlook.pm_.c:190 ../../bootlook.pm_.c:220 ../../bootlook.pm_.c:222
-#: ../../bootlook.pm_.c:232 ../../bootlook.pm_.c:241 ../../bootlook.pm_.c:248
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:336
-#: ../../diskdrake/interactive.pm_.c:351 ../../diskdrake/interactive.pm_.c:464
-#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../bootlook.pm_.c:169 ../../bootlook.pm_.c:187 ../../bootlook.pm_.c:190
+#: ../../bootlook.pm_.c:193 ../../bootlook.pm_.c:223 ../../bootlook.pm_.c:225
+#: ../../bootlook.pm_.c:235 ../../bootlook.pm_.c:244 ../../bootlook.pm_.c:251
+#: ../../diskdrake/dav.pm_.c:73 ../../diskdrake/hd_gtk.pm_.c:116
+#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/interactive.pm_.c:355
+#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/interactive.pm_.c:474
+#: ../../diskdrake/smbnfs_gtk.pm_.c:45 ../../fsedit.pm_.c:239
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:365 ../../interactive/http.pm_.c:119
-#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:80
+#: ../../interactive/http.pm_.c:119 ../../interactive/http.pm_.c:120
+#: ../../standalone/draksplash_.c:32
msgid "Error"
msgstr "Erro"
-#: ../../bootlook.pm_.c:183
+#: ../../bootlook.pm_.c:186
#, c-format
msgid "Backup %s to %s.old"
msgstr ""
-#: ../../bootlook.pm_.c:184
+#: ../../bootlook.pm_.c:187
msgid "unable to backup lilo message"
msgstr ""
-#: ../../bootlook.pm_.c:186
+#: ../../bootlook.pm_.c:189
#, fuzzy, c-format
msgid "Copy %s to %s"
msgstr "Copiando %s"
-#: ../../bootlook.pm_.c:187
+#: ../../bootlook.pm_.c:190
msgid "can't change lilo message"
msgstr ""
-#: ../../bootlook.pm_.c:190
+#: ../../bootlook.pm_.c:193
msgid "Lilo message not found"
msgstr ""
-#: ../../bootlook.pm_.c:220
+#: ../../bootlook.pm_.c:223
msgid "Can't write /etc/sysconfig/bootsplash."
msgstr ""
-#: ../../bootlook.pm_.c:220
+#: ../../bootlook.pm_.c:223
#, fuzzy, c-format
msgid "Write %s"
msgstr "XFree %s"
-#: ../../bootlook.pm_.c:222
+#: ../../bootlook.pm_.c:225
msgid ""
"Can't write /etc/sysconfig/bootsplash\n"
"File not found."
msgstr ""
-#: ../../bootlook.pm_.c:233
+#: ../../bootlook.pm_.c:236
#, c-format
msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
msgstr ""
-#: ../../bootlook.pm_.c:236
+#: ../../bootlook.pm_.c:239
#, c-format
-msgid "Make initrd 'mkinird -f /boot/initrd-%s.img %s'."
+msgid "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
msgstr ""
-#: ../../bootlook.pm_.c:242
+#: ../../bootlook.pm_.c:245
msgid ""
"Can't relaunch LiLo!\n"
"Launch \"lilo\" as root in command line to complete LiLo theme installation."
msgstr ""
-#: ../../bootlook.pm_.c:246
+#: ../../bootlook.pm_.c:249
msgid "Relaunch 'lilo'"
msgstr ""
-#: ../../bootlook.pm_.c:248
+#: ../../bootlook.pm_.c:251 ../../standalone/draksplash_.c:161
+#: ../../standalone/draksplash_.c:330 ../../standalone/draksplash_.c:454
#, fuzzy
msgid "Notice"
msgstr "Sem vídeo"
-#: ../../bootlook.pm_.c:249
+#: ../../bootlook.pm_.c:252
msgid "LiLo and Bootsplash themes installation successfull"
msgstr ""
-#: ../../bootlook.pm_.c:249
+#: ../../bootlook.pm_.c:252
#, fuzzy
msgid "Theme installation failed!"
msgstr "Selecione a classe da instalaçăo"
-#: ../../bootlook.pm_.c:258
+#: ../../bootlook.pm_.c:261
#, c-format
msgid ""
"You are currently using %s as your boot manager.\n"
@@ -1314,23 +1334,22 @@ msgstr ""
"Você está utilizando o %s como gerenciador de inicializaçăo.\n"
"Clique em Configurar para abrir o auxiliar de configuraçăo."
-#: ../../bootlook.pm_.c:260 ../../standalone/drakbackup_.c:2352
-#: ../../standalone/drakbackup_.c:2362 ../../standalone/drakbackup_.c:2372
-#: ../../standalone/drakbackup_.c:2380 ../../standalone/drakgw_.c:592
-#: ../../standalone/tinyfirewall_.c:58
+#: ../../bootlook.pm_.c:263 ../../standalone/drakbackup_.c:2427
+#: ../../standalone/drakbackup_.c:2437 ../../standalone/drakbackup_.c:2447
+#: ../../standalone/drakbackup_.c:2455 ../../standalone/drakgw_.c:530
msgid "Configure"
msgstr "Configurar"
-#: ../../bootlook.pm_.c:267
+#: ../../bootlook.pm_.c:270
#, fuzzy
msgid "Splash selection"
msgstr "Salvar seleçăo de pacotes"
-#: ../../bootlook.pm_.c:270
+#: ../../bootlook.pm_.c:273
msgid "Themes"
msgstr ""
-#: ../../bootlook.pm_.c:272
+#: ../../bootlook.pm_.c:275
msgid ""
"\n"
"Select a theme for\n"
@@ -1339,44 +1358,44 @@ msgid ""
"them separatly"
msgstr ""
-#: ../../bootlook.pm_.c:275
+#: ../../bootlook.pm_.c:278
msgid "Lilo screen"
msgstr ""
-#: ../../bootlook.pm_.c:279
+#: ../../bootlook.pm_.c:283
msgid "Bootsplash"
msgstr ""
-#: ../../bootlook.pm_.c:314
+#: ../../bootlook.pm_.c:318
msgid "System mode"
msgstr "Modo do sistema"
-#: ../../bootlook.pm_.c:316
+#: ../../bootlook.pm_.c:320
msgid "Launch the graphical environment when your system starts"
msgstr "Executar o sistema X-Window na inicializaçăo"
-#: ../../bootlook.pm_.c:321
+#: ../../bootlook.pm_.c:325
msgid "No, I don't want autologin"
msgstr "Năo, eu năo quero autologin"
-#: ../../bootlook.pm_.c:323
+#: ../../bootlook.pm_.c:327
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "Sim, eu quero autologin com esse (usuário, desktop)"
-#: ../../bootlook.pm_.c:333 ../../network/netconnect.pm_.c:101
+#: ../../bootlook.pm_.c:337 ../../network/netconnect.pm_.c:101
#: ../../standalone/drakTermServ_.c:173 ../../standalone/drakTermServ_.c:300
-#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:3513
-#: ../../standalone/drakbackup_.c:4290 ../../standalone/drakconnect_.c:108
+#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4191
+#: ../../standalone/drakbackup_.c:4952 ../../standalone/drakconnect_.c:108
#: ../../standalone/drakconnect_.c:140 ../../standalone/drakconnect_.c:296
#: ../../standalone/drakconnect_.c:435 ../../standalone/drakconnect_.c:521
#: ../../standalone/drakconnect_.c:564 ../../standalone/drakconnect_.c:667
#: ../../standalone/drakfloppy_.c:376 ../../standalone/drakfont_.c:612
#: ../../standalone/drakfont_.c:799 ../../standalone/drakfont_.c:876
-#: ../../standalone/drakfont_.c:963 ../../standalone/logdrake_.c:521
+#: ../../standalone/drakfont_.c:963 ../../standalone/logdrake_.c:519
msgid "OK"
msgstr "OK"
-#: ../../bootlook.pm_.c:403
+#: ../../bootlook.pm_.c:407
#, c-format
msgid "can not open /etc/inittab for reading: %s"
msgstr "năo foi possívek abrir /etc/inittb para leitura: %s"
@@ -1473,49 +1492,54 @@ msgstr "Áustria"
msgid "United States"
msgstr "Estados Unidos"
-#: ../../detect_devices.pm_.c:599 ../../detect_devices.pm_.c:641
-#: ../../detect_devices.pm_.c:803
-msgid "Unknown Model"
-msgstr ""
-
#: ../../diskdrake/dav.pm_.c:23
#, fuzzy
msgid "New"
msgstr "novo"
-#: ../../diskdrake/dav.pm_.c:57
+#: ../../diskdrake/dav.pm_.c:59 ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/smbnfs_gtk.pm_.c:81
+msgid "Unmount"
+msgstr "Desmontar"
+
+#: ../../diskdrake/dav.pm_.c:60 ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/smbnfs_gtk.pm_.c:82
+msgid "Mount"
+msgstr "Montar"
+
+#: ../../diskdrake/dav.pm_.c:61
msgid "Server"
msgstr "servidor"
-#: ../../diskdrake/dav.pm_.c:58 ../../diskdrake/interactive.pm_.c:375
-#: ../../diskdrake/interactive.pm_.c:558 ../../diskdrake/interactive.pm_.c:585
+#: ../../diskdrake/dav.pm_.c:62 ../../diskdrake/interactive.pm_.c:379
+#: ../../diskdrake/interactive.pm_.c:568 ../../diskdrake/interactive.pm_.c:595
#: ../../diskdrake/removable.pm_.c:24 ../../diskdrake/removable_gtk.pm_.c:15
#: ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr "Ponto de Montagem"
-#: ../../diskdrake/dav.pm_.c:68
+#: ../../diskdrake/dav.pm_.c:81
#, fuzzy
msgid "Please enter the WebDAV server URL"
msgstr "Favor testar o mouse"
-#: ../../diskdrake/dav.pm_.c:71
+#: ../../diskdrake/dav.pm_.c:84
#, fuzzy
msgid "The URL must begin with http:// or https://"
msgstr "O proxy deve ser http://..."
-#: ../../diskdrake/dav.pm_.c:92
+#: ../../diskdrake/dav.pm_.c:105
#, fuzzy
msgid "Server: "
msgstr "servidor"
-#: ../../diskdrake/dav.pm_.c:93 ../../diskdrake/interactive.pm_.c:435
-#: ../../diskdrake/interactive.pm_.c:1079
-#: ../../diskdrake/interactive.pm_.c:1153
+#: ../../diskdrake/dav.pm_.c:106 ../../diskdrake/interactive.pm_.c:440
+#: ../../diskdrake/interactive.pm_.c:1089
+#: ../../diskdrake/interactive.pm_.c:1164
msgid "Mount point: "
msgstr "Ponto de montagem: "
-#: ../../diskdrake/dav.pm_.c:94 ../../diskdrake/interactive.pm_.c:1159
+#: ../../diskdrake/dav.pm_.c:107 ../../diskdrake/interactive.pm_.c:1170
#, c-format
msgid "Options: %s"
msgstr "Opçőes: %s"
@@ -1524,8 +1548,9 @@ msgstr "Opçőes: %s"
msgid "Please make a backup of your data first"
msgstr "Favor primeiro fazer um backup de seus dados"
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:924
-#: ../../diskdrake/interactive.pm_.c:933 ../../diskdrake/interactive.pm_.c:999
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:934
+#: ../../diskdrake/interactive.pm_.c:943
+#: ../../diskdrake/interactive.pm_.c:1009
msgid "Read carefully!"
msgstr "Ler com atençăo!"
@@ -1564,10 +1589,15 @@ msgid "Please click on a partition"
msgstr "Favor clicar em uma partiçăo"
#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
-#: ../../install_steps_gtk.pm_.c:471
+#: ../../install_steps_gtk.pm_.c:465
msgid "Details"
msgstr "Detalhes"
+#: ../../diskdrake/hd_gtk.pm_.c:252
+#, fuzzy
+msgid "No hard drives found"
+msgstr "Impressora local"
+
#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Ext2"
msgstr "Ext2"
@@ -1592,13 +1622,13 @@ msgstr "SunOS"
msgid "Swap"
msgstr "Swap"
-#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1105
msgid "Empty"
msgstr "Vazio"
-#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:331
-#: ../../install_steps_gtk.pm_.c:389 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1679
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:325
+#: ../../install_steps_gtk.pm_.c:383 ../../mouse.pm_.c:165
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1754
msgid "Other"
msgstr "Outro"
@@ -1606,12 +1636,12 @@ msgstr "Outro"
msgid "Filesystem types:"
msgstr "Tipos de sistema de arquivo:"
-#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:397
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:402
msgid "Create"
msgstr "Criar"
-#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:376
-#: ../../diskdrake/interactive.pm_.c:521 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:380
+#: ../../diskdrake/interactive.pm_.c:531 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "Tipo"
@@ -1621,7 +1651,7 @@ msgstr "Tipo"
msgid "Use ``%s'' instead"
msgstr "Use ``%s'' ao invés"
-#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:389
msgid "Delete"
msgstr "Deletar"
@@ -1629,7 +1659,7 @@ msgstr "Deletar"
msgid "Use ``Unmount'' first"
msgstr "Use ``Desmontar'' primeiro"
-#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:513
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:518
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
@@ -1637,72 +1667,72 @@ msgstr ""
"Após alterar o tipo da partiçăo %s, todos os dados desta partiçăo serăo "
"perdidos"
-#: ../../diskdrake/interactive.pm_.c:173
+#: ../../diskdrake/interactive.pm_.c:174
msgid "Choose a partition"
msgstr "Escolher partiçăo"
-#: ../../diskdrake/interactive.pm_.c:173
+#: ../../diskdrake/interactive.pm_.c:174
msgid "Choose another partition"
msgstr "Escolher outra partiçăo"
-#: ../../diskdrake/interactive.pm_.c:198
+#: ../../diskdrake/interactive.pm_.c:199
msgid "Exit"
msgstr "Sair"
-#: ../../diskdrake/interactive.pm_.c:220
+#: ../../diskdrake/interactive.pm_.c:221
msgid "Toggle to expert mode"
msgstr "Mudar para modo expert"
-#: ../../diskdrake/interactive.pm_.c:220
+#: ../../diskdrake/interactive.pm_.c:221
msgid "Toggle to normal mode"
msgstr "Mudar para modo normal"
-#: ../../diskdrake/interactive.pm_.c:220
+#: ../../diskdrake/interactive.pm_.c:221
msgid "Undo"
msgstr "Desfazer"
-#: ../../diskdrake/interactive.pm_.c:239
+#: ../../diskdrake/interactive.pm_.c:240
msgid "Continue anyway?"
msgstr "Continuar mesmo assim?"
-#: ../../diskdrake/interactive.pm_.c:244
+#: ../../diskdrake/interactive.pm_.c:245
msgid "Quit without saving"
msgstr "Sair sem salvar"
-#: ../../diskdrake/interactive.pm_.c:244
+#: ../../diskdrake/interactive.pm_.c:245
msgid "Quit without writing the partition table?"
msgstr "Sair sem gravar na tabela de partiçăo?"
-#: ../../diskdrake/interactive.pm_.c:249
+#: ../../diskdrake/interactive.pm_.c:250
msgid "Do you want to save /etc/fstab modifications"
msgstr "Você quer salvar as modificaçőes /etc/fstab"
-#: ../../diskdrake/interactive.pm_.c:261
+#: ../../diskdrake/interactive.pm_.c:263
msgid "Auto allocate"
msgstr "Auto alocar"
-#: ../../diskdrake/interactive.pm_.c:261
+#: ../../diskdrake/interactive.pm_.c:263
msgid "Clear all"
msgstr "Limpar tudo"
-#: ../../diskdrake/interactive.pm_.c:261
+#: ../../diskdrake/interactive.pm_.c:263
#: ../../install_steps_interactive.pm_.c:214
msgid "More"
msgstr "Mais"
-#: ../../diskdrake/interactive.pm_.c:264
+#: ../../diskdrake/interactive.pm_.c:267
msgid "Hard drive information"
msgstr "Informaçăo de discos rigidos"
-#: ../../diskdrake/interactive.pm_.c:294
+#: ../../diskdrake/interactive.pm_.c:298
msgid "All primary partitions are used"
msgstr "Todas as partiçőes primárias estăo sendo usadas"
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:299
msgid "I can't add any more partition"
msgstr "Eu năo posso adicionar mais nenhuma partiçăo"
-#: ../../diskdrake/interactive.pm_.c:296
+#: ../../diskdrake/interactive.pm_.c:300
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -1710,31 +1740,31 @@ msgstr ""
"Para ter mais partiçőes, favor deletar uma para poder criar uma partiçăo "
"extendida"
-#: ../../diskdrake/interactive.pm_.c:306
+#: ../../diskdrake/interactive.pm_.c:310
msgid "Save partition table"
msgstr "Gravar tabela de partiçăo"
-#: ../../diskdrake/interactive.pm_.c:307
+#: ../../diskdrake/interactive.pm_.c:311
msgid "Restore partition table"
msgstr "Restaurar tabela de partiçăo"
-#: ../../diskdrake/interactive.pm_.c:308
+#: ../../diskdrake/interactive.pm_.c:312
msgid "Rescue partition table"
msgstr "Recuperar tabela de partiçăo"
-#: ../../diskdrake/interactive.pm_.c:310
+#: ../../diskdrake/interactive.pm_.c:314
msgid "Reload partition table"
msgstr "Recuperar tabela de partiçăo"
-#: ../../diskdrake/interactive.pm_.c:315
+#: ../../diskdrake/interactive.pm_.c:319
msgid "Removable media automounting"
msgstr "Auto-montagem da mídia removível"
-#: ../../diskdrake/interactive.pm_.c:324 ../../diskdrake/interactive.pm_.c:344
+#: ../../diskdrake/interactive.pm_.c:328 ../../diskdrake/interactive.pm_.c:348
msgid "Select file"
msgstr "Selecione arquivo"
-#: ../../diskdrake/interactive.pm_.c:331
+#: ../../diskdrake/interactive.pm_.c:335
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1742,11 +1772,11 @@ msgstr ""
"O backup da tabela de partiçăo năo tem o mesmo tamanho\n"
"Ainda continuar?"
-#: ../../diskdrake/interactive.pm_.c:345
+#: ../../diskdrake/interactive.pm_.c:349
msgid "Warning"
msgstr "Aviso"
-#: ../../diskdrake/interactive.pm_.c:346
+#: ../../diskdrake/interactive.pm_.c:350
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1754,112 +1784,104 @@ msgstr ""
"Insira um disquete no drive\n"
"Todos os dados no disquete serăo perdidos"
-#: ../../diskdrake/interactive.pm_.c:357
+#: ../../diskdrake/interactive.pm_.c:361
msgid "Trying to rescue partition table"
msgstr "Tentando resgatar tabela de partiçăo"
-#: ../../diskdrake/interactive.pm_.c:363
+#: ../../diskdrake/interactive.pm_.c:367
msgid "Detailed information"
msgstr "Mostrar informaçăo detalhada"
-#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:652
+#: ../../diskdrake/interactive.pm_.c:382 ../../diskdrake/interactive.pm_.c:662
msgid "Resize"
msgstr "Redimensionar"
-#: ../../diskdrake/interactive.pm_.c:379 ../../diskdrake/interactive.pm_.c:705
+#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/interactive.pm_.c:715
msgid "Move"
msgstr "Mover"
-#: ../../diskdrake/interactive.pm_.c:380
+#: ../../diskdrake/interactive.pm_.c:384
msgid "Format"
msgstr "Formatar"
-#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/smbnfs_gtk.pm_.c:82
-msgid "Mount"
-msgstr "Montar"
-
-#: ../../diskdrake/interactive.pm_.c:382
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Add to RAID"
msgstr "Adicionar ao RAID"
-#: ../../diskdrake/interactive.pm_.c:383
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Add to LVM"
msgstr "Adicionar ao LVM"
-#: ../../diskdrake/interactive.pm_.c:384 ../../diskdrake/smbnfs_gtk.pm_.c:81
-msgid "Unmount"
-msgstr "Desmontar"
-
-#: ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/interactive.pm_.c:390
msgid "Remove from RAID"
msgstr "Remover do RAID"
-#: ../../diskdrake/interactive.pm_.c:387
+#: ../../diskdrake/interactive.pm_.c:391
msgid "Remove from LVM"
msgstr "Remover do LVM"
-#: ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/interactive.pm_.c:392
msgid "Modify RAID"
msgstr "Modificar RAID"
-#: ../../diskdrake/interactive.pm_.c:389
+#: ../../diskdrake/interactive.pm_.c:393
msgid "Use for loopback"
msgstr "Usar para loopback"
-#: ../../diskdrake/interactive.pm_.c:428
+#: ../../diskdrake/interactive.pm_.c:433
msgid "Create a new partition"
msgstr "Criar uma nova partiçăo"
-#: ../../diskdrake/interactive.pm_.c:431
+#: ../../diskdrake/interactive.pm_.c:436
msgid "Start sector: "
msgstr "Setor inicial: "
-#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:805
+#: ../../diskdrake/interactive.pm_.c:438 ../../diskdrake/interactive.pm_.c:815
msgid "Size in MB: "
msgstr "Tamanho em MB: "
-#: ../../diskdrake/interactive.pm_.c:434 ../../diskdrake/interactive.pm_.c:806
+#: ../../diskdrake/interactive.pm_.c:439 ../../diskdrake/interactive.pm_.c:816
msgid "Filesystem type: "
msgstr "Tipo do Sistema de Arquivos: "
-#: ../../diskdrake/interactive.pm_.c:439
+#: ../../diskdrake/interactive.pm_.c:444
msgid "Preference: "
msgstr "Preferência: "
-#: ../../diskdrake/interactive.pm_.c:464
+#: ../../diskdrake/interactive.pm_.c:469
msgid ""
"You can't create a new partition\n"
"(since you reached the maximal number of primary partitions).\n"
"First remove a primary partition and create an extended partition."
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:494
+#: ../../diskdrake/interactive.pm_.c:499
msgid "Remove the loopback file?"
msgstr "Remove o arquivo de loopback?"
-#: ../../diskdrake/interactive.pm_.c:519
+#: ../../diskdrake/interactive.pm_.c:529
msgid "Change partition type"
msgstr "Mudar tipo de partiçăo"
-#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:530 ../../diskdrake/removable.pm_.c:48
msgid "Which filesystem do you want?"
msgstr "Qual sistema de arquivos você quer?"
-#: ../../diskdrake/interactive.pm_.c:526
+#: ../../diskdrake/interactive.pm_.c:536
msgid "Switching from ext2 to ext3"
msgstr "Mudando de ext2 para ext3"
-#: ../../diskdrake/interactive.pm_.c:556
+#: ../../diskdrake/interactive.pm_.c:566
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "Onde você quer montar o arquivo loopback %s?"
-#: ../../diskdrake/interactive.pm_.c:557
+#: ../../diskdrake/interactive.pm_.c:567
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Onde você quer montar o dispositivo %s?"
-#: ../../diskdrake/interactive.pm_.c:563
+#: ../../diskdrake/interactive.pm_.c:573
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1867,136 +1889,136 @@ msgstr ""
"Năo posso desmacar o ponto de montagem enquanto a partiçăo for\n"
"usada para loop back. Remova o loopback primeiro"
-#: ../../diskdrake/interactive.pm_.c:584
+#: ../../diskdrake/interactive.pm_.c:594
#, fuzzy, c-format
msgid "Where do you want to mount %s?"
msgstr "Onde você quer montar o dispositivo %s?"
-#: ../../diskdrake/interactive.pm_.c:608
+#: ../../diskdrake/interactive.pm_.c:618
msgid "Computing FAT filesystem bounds"
msgstr "Computando limites do sistema de arquivo fat"
-#: ../../diskdrake/interactive.pm_.c:608 ../../diskdrake/interactive.pm_.c:667
-#: ../../install_interactive.pm_.c:131
+#: ../../diskdrake/interactive.pm_.c:618 ../../diskdrake/interactive.pm_.c:677
+#: ../../install_interactive.pm_.c:133
msgid "Resizing"
msgstr "Redimensionando"
-#: ../../diskdrake/interactive.pm_.c:640
+#: ../../diskdrake/interactive.pm_.c:650
msgid "This partition is not resizeable"
msgstr "Esta partiçăo năo é redimensionável"
-#: ../../diskdrake/interactive.pm_.c:645
+#: ../../diskdrake/interactive.pm_.c:655
msgid "All data on this partition should be backed-up"
msgstr "Você deveria fazer backup de todos os dados desta partiçăo"
-#: ../../diskdrake/interactive.pm_.c:647
+#: ../../diskdrake/interactive.pm_.c:657
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr ""
"Após redimensionar a particăo %s, todos os dados da partiçăo serăo perdidos"
-#: ../../diskdrake/interactive.pm_.c:652
+#: ../../diskdrake/interactive.pm_.c:662
msgid "Choose the new size"
msgstr "Escolha o novo tamanho"
-#: ../../diskdrake/interactive.pm_.c:653
+#: ../../diskdrake/interactive.pm_.c:663
msgid "New size in MB: "
msgstr "Novo tamanho em MB: "
-#: ../../diskdrake/interactive.pm_.c:706
+#: ../../diskdrake/interactive.pm_.c:716
msgid "Which disk do you want to move it to?"
msgstr "Qual disco você quer mover?"
-#: ../../diskdrake/interactive.pm_.c:707
+#: ../../diskdrake/interactive.pm_.c:717
msgid "Sector"
msgstr "Setor"
-#: ../../diskdrake/interactive.pm_.c:708
+#: ../../diskdrake/interactive.pm_.c:718
msgid "Which sector do you want to move it to?"
msgstr "Qual setor você quer mover?"
-#: ../../diskdrake/interactive.pm_.c:711
+#: ../../diskdrake/interactive.pm_.c:721
msgid "Moving"
msgstr "Movendo"
-#: ../../diskdrake/interactive.pm_.c:711
+#: ../../diskdrake/interactive.pm_.c:721
msgid "Moving partition..."
msgstr "Movendo partiçăo..."
-#: ../../diskdrake/interactive.pm_.c:728
+#: ../../diskdrake/interactive.pm_.c:738
msgid "Choose an existing RAID to add to"
msgstr "Escolha um RAID existente para adicionar"
-#: ../../diskdrake/interactive.pm_.c:729 ../../diskdrake/interactive.pm_.c:746
+#: ../../diskdrake/interactive.pm_.c:739 ../../diskdrake/interactive.pm_.c:756
msgid "new"
msgstr "novo"
-#: ../../diskdrake/interactive.pm_.c:744
+#: ../../diskdrake/interactive.pm_.c:754
msgid "Choose an existing LVM to add to"
msgstr "Escolha um LVM existente para adicionar"
-#: ../../diskdrake/interactive.pm_.c:749
+#: ../../diskdrake/interactive.pm_.c:759
msgid "LVM name?"
msgstr "Nome LVM?"
-#: ../../diskdrake/interactive.pm_.c:790
+#: ../../diskdrake/interactive.pm_.c:800
msgid "This partition can't be used for loopback"
msgstr "Essa partiçăo năo pode ser usada para loopback"
-#: ../../diskdrake/interactive.pm_.c:803
+#: ../../diskdrake/interactive.pm_.c:813
msgid "Loopback"
msgstr "Loopback"
-#: ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:814
msgid "Loopback file name: "
msgstr "Nome do arquivo loopback: "
-#: ../../diskdrake/interactive.pm_.c:809
+#: ../../diskdrake/interactive.pm_.c:819
msgid "Give a file name"
msgstr "Dê um nome de arquivo"
-#: ../../diskdrake/interactive.pm_.c:812
+#: ../../diskdrake/interactive.pm_.c:822
msgid "File already used by another loopback, choose another one"
msgstr "Arquivo já utilizado por outro loopback, escolha outro"
-#: ../../diskdrake/interactive.pm_.c:813
+#: ../../diskdrake/interactive.pm_.c:823
msgid "File already exists. Use it?"
msgstr "Arquivo já existe. Utilizá-lo?"
-#: ../../diskdrake/interactive.pm_.c:836
+#: ../../diskdrake/interactive.pm_.c:846
msgid "Mount options"
msgstr "Opçőes de montagem"
-#: ../../diskdrake/interactive.pm_.c:843
+#: ../../diskdrake/interactive.pm_.c:853
msgid "Various"
msgstr "Vários"
-#: ../../diskdrake/interactive.pm_.c:907 ../../standalone/drakfloppy_.c:103
+#: ../../diskdrake/interactive.pm_.c:917 ../../standalone/drakfloppy_.c:103
msgid "device"
msgstr "dispositivos"
-#: ../../diskdrake/interactive.pm_.c:908
+#: ../../diskdrake/interactive.pm_.c:918
msgid "level"
msgstr "nível"
-#: ../../diskdrake/interactive.pm_.c:909
+#: ../../diskdrake/interactive.pm_.c:919
msgid "chunk size"
msgstr "tamanho do bloco"
-#: ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:934
msgid "Be careful: this operation is dangerous."
msgstr "Tenha cuidade: essa operaçăo é perigosa."
-#: ../../diskdrake/interactive.pm_.c:939
+#: ../../diskdrake/interactive.pm_.c:949
msgid "What type of partitioning?"
msgstr "Qual tipo de particionamento?"
-#: ../../diskdrake/interactive.pm_.c:955
+#: ../../diskdrake/interactive.pm_.c:965
#, fuzzy, c-format
msgid "The package %s is needed. Install it?"
msgstr "O pacote %s precisa ser instalado. Você deseja instalá-lo?"
-#: ../../diskdrake/interactive.pm_.c:969
+#: ../../diskdrake/interactive.pm_.c:979
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -2008,7 +2030,7 @@ msgstr ""
"Ou você usa LILO e ele năo funcionará, ou você năo usará LILO e você năo "
"precisará de /boot"
-#: ../../diskdrake/interactive.pm_.c:973
+#: ../../diskdrake/interactive.pm_.c:983
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -2021,7 +2043,7 @@ msgstr ""
"Se você quer usar o gerenciador de inicializaçăo LILO, năo esqueça "
"deadicionar uma partiçăo /boot."
-#: ../../diskdrake/interactive.pm_.c:979
+#: ../../diskdrake/interactive.pm_.c:989
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
@@ -2031,45 +2053,45 @@ msgstr ""
"O gerenciador de inicializaçăo năo consegue acessá-lo sem uma\n"
"partiçăo /boot. Entăo năo esqueça de adicioná-la"
-#: ../../diskdrake/interactive.pm_.c:999
+#: ../../diskdrake/interactive.pm_.c:1009
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "A tabela de partiçăo do drive %s está para ser gravada no disco!"
-#: ../../diskdrake/interactive.pm_.c:1003
+#: ../../diskdrake/interactive.pm_.c:1013
msgid "You'll need to reboot before the modification can take place"
msgstr "Você precisará reiniciar antes que as modificaçőes tenham efeito"
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1024
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr ""
"Após formatar a partiçăo %s, todos os dados desta partiçăo serăo perdidos"
-#: ../../diskdrake/interactive.pm_.c:1016
+#: ../../diskdrake/interactive.pm_.c:1026
msgid "Formatting"
msgstr "Formatando"
-#: ../../diskdrake/interactive.pm_.c:1017
+#: ../../diskdrake/interactive.pm_.c:1027
#, c-format
msgid "Formatting loopback file %s"
msgstr "Formatando arquivo loopback %s"
-#: ../../diskdrake/interactive.pm_.c:1018
-#: ../../install_steps_interactive.pm_.c:476
+#: ../../diskdrake/interactive.pm_.c:1028
+#: ../../install_steps_interactive.pm_.c:459
#, c-format
msgid "Formatting partition %s"
msgstr "Formatando partiçăo %s"
-#: ../../diskdrake/interactive.pm_.c:1029
+#: ../../diskdrake/interactive.pm_.c:1039
msgid "Hide files"
msgstr "Esconder arquivos"
-#: ../../diskdrake/interactive.pm_.c:1029
+#: ../../diskdrake/interactive.pm_.c:1039
msgid "Move files to the new partition"
msgstr "Mover arquivos para nova partiçăo"
-#: ../../diskdrake/interactive.pm_.c:1030
+#: ../../diskdrake/interactive.pm_.c:1040
#, c-format
msgid ""
"Directory %s already contains data\n"
@@ -2078,83 +2100,83 @@ msgstr ""
"Diretório %s já contém alguns dados\n"
"(%s)"
-#: ../../diskdrake/interactive.pm_.c:1041
+#: ../../diskdrake/interactive.pm_.c:1051
msgid "Moving files to the new partition"
msgstr "Movendo arquivos para a nova partiçăo"
-#: ../../diskdrake/interactive.pm_.c:1045
+#: ../../diskdrake/interactive.pm_.c:1055
#, c-format
msgid "Copying %s"
msgstr "Copiando %s"
-#: ../../diskdrake/interactive.pm_.c:1049
+#: ../../diskdrake/interactive.pm_.c:1059
#, c-format
msgid "Removing %s"
msgstr "Removing %s"
-#: ../../diskdrake/interactive.pm_.c:1059
+#: ../../diskdrake/interactive.pm_.c:1069
#, c-format
msgid "partition %s is now known as %s"
msgstr "Partiçăo %s agora chama-se %s"
-#: ../../diskdrake/interactive.pm_.c:1080
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1090
+#: ../../diskdrake/interactive.pm_.c:1149
msgid "Device: "
msgstr "Dispositivo: "
-#: ../../diskdrake/interactive.pm_.c:1081
+#: ../../diskdrake/interactive.pm_.c:1091
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "Letra do drive no DOS: %s (apena um palpite)\n"
-#: ../../diskdrake/interactive.pm_.c:1085
-#: ../../diskdrake/interactive.pm_.c:1093
-#: ../../diskdrake/interactive.pm_.c:1157
+#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1103
+#: ../../diskdrake/interactive.pm_.c:1168
msgid "Type: "
msgstr "Tipo: "
-#: ../../diskdrake/interactive.pm_.c:1089
+#: ../../diskdrake/interactive.pm_.c:1099
msgid "Name: "
msgstr "Nome: "
-#: ../../diskdrake/interactive.pm_.c:1097
+#: ../../diskdrake/interactive.pm_.c:1107
#, c-format
msgid "Start: sector %s\n"
msgstr "Iniciar: setor: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1108
#, c-format
msgid "Size: %s"
msgstr "Tamanho: %s"
-#: ../../diskdrake/interactive.pm_.c:1100
+#: ../../diskdrake/interactive.pm_.c:1110
#, c-format
msgid ", %s sectors"
msgstr ", %s setores"
-#: ../../diskdrake/interactive.pm_.c:1102
+#: ../../diskdrake/interactive.pm_.c:1112
#, fuzzy, c-format
msgid "Cylinder %d to %d\n"
msgstr "Cilindro %d ao cilindro %d\n"
-#: ../../diskdrake/interactive.pm_.c:1103
+#: ../../diskdrake/interactive.pm_.c:1113
msgid "Formatted\n"
msgstr "Formatado\n"
-#: ../../diskdrake/interactive.pm_.c:1104
+#: ../../diskdrake/interactive.pm_.c:1114
msgid "Not formatted\n"
msgstr "Năo formatado\n"
-#: ../../diskdrake/interactive.pm_.c:1105
+#: ../../diskdrake/interactive.pm_.c:1115
msgid "Mounted\n"
msgstr "Montado\n"
-#: ../../diskdrake/interactive.pm_.c:1106
+#: ../../diskdrake/interactive.pm_.c:1116
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1108
+#: ../../diskdrake/interactive.pm_.c:1118
#, c-format
msgid ""
"Loopback file(s):\n"
@@ -2163,7 +2185,7 @@ msgstr ""
"Loopback file(s):\n"
" %s\n"
-#: ../../diskdrake/interactive.pm_.c:1109
+#: ../../diskdrake/interactive.pm_.c:1119
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -2171,27 +2193,27 @@ msgstr ""
"Partiçăo de inicializaçăo padrăo\n"
" (para inicializaçăo do MS-DOS, năo para o lilo)\n"
-#: ../../diskdrake/interactive.pm_.c:1111
+#: ../../diskdrake/interactive.pm_.c:1121
#, c-format
msgid "Level %s\n"
msgstr "Nível %s\n"
-#: ../../diskdrake/interactive.pm_.c:1112
+#: ../../diskdrake/interactive.pm_.c:1122
#, c-format
msgid "Chunk size %s\n"
msgstr "Tamanho do bloco %s\n"
-#: ../../diskdrake/interactive.pm_.c:1113
+#: ../../diskdrake/interactive.pm_.c:1123
#, c-format
msgid "RAID-disks %s\n"
msgstr "Discos RAID %s\n"
-#: ../../diskdrake/interactive.pm_.c:1115
+#: ../../diskdrake/interactive.pm_.c:1125
#, c-format
msgid "Loopback file name: %s"
msgstr "Nome do arquivo loopback: %s"
-#: ../../diskdrake/interactive.pm_.c:1118
+#: ../../diskdrake/interactive.pm_.c:1128
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -2203,7 +2225,7 @@ msgstr ""
"partiçăo Driver, você provavelmente\n"
"năo deveria mexer nela.\n"
-#: ../../diskdrake/interactive.pm_.c:1121
+#: ../../diskdrake/interactive.pm_.c:1131
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2215,57 +2237,61 @@ msgstr ""
"Bootstrap é para o\n"
"boot-duplo do seu sistema.\n"
-#: ../../diskdrake/interactive.pm_.c:1140
+#: ../../diskdrake/interactive.pm_.c:1150
+msgid "Read-only"
+msgstr ""
+
+#: ../../diskdrake/interactive.pm_.c:1151
#, c-format
msgid "Size: %s\n"
msgstr "Tamanho: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1141
+#: ../../diskdrake/interactive.pm_.c:1152
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Geometria: %s cilindros, %s cabeças, %s setores\n"
-#: ../../diskdrake/interactive.pm_.c:1142
+#: ../../diskdrake/interactive.pm_.c:1153
msgid "Info: "
msgstr "Informaçăo: "
-#: ../../diskdrake/interactive.pm_.c:1143
+#: ../../diskdrake/interactive.pm_.c:1154
#, c-format
msgid "LVM-disks %s\n"
msgstr "Discos LVM %s\n"
-#: ../../diskdrake/interactive.pm_.c:1144
+#: ../../diskdrake/interactive.pm_.c:1155
#, c-format
msgid "Partition table type: %s\n"
msgstr "Tipo da tabela de partiçăo: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1145
+#: ../../diskdrake/interactive.pm_.c:1156
#, fuzzy, c-format
msgid "on channel %d id %d\n"
msgstr "no barramento %d id %d\n"
-#: ../../diskdrake/interactive.pm_.c:1175
+#: ../../diskdrake/interactive.pm_.c:1186
msgid "Filesystem encryption key"
msgstr "Chave criptográfica do sistema de arquivos"
-#: ../../diskdrake/interactive.pm_.c:1176
+#: ../../diskdrake/interactive.pm_.c:1187
msgid "Choose your filesystem encryption key"
msgstr "Escolha a sua chave criptográfica do sistema de arquivos"
-#: ../../diskdrake/interactive.pm_.c:1179
+#: ../../diskdrake/interactive.pm_.c:1190
#, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr "Essa chave é muito simples (deve ter ao menos %d caracteres)"
-#: ../../diskdrake/interactive.pm_.c:1180
+#: ../../diskdrake/interactive.pm_.c:1191
msgid "The encryption keys do not match"
msgstr "As chaves criptográficas năo conferem"
-#: ../../diskdrake/interactive.pm_.c:1183
+#: ../../diskdrake/interactive.pm_.c:1194
msgid "Encryption key"
msgstr "Chave criptográfica"
-#: ../../diskdrake/interactive.pm_.c:1184
+#: ../../diskdrake/interactive.pm_.c:1195
msgid "Encryption key (again)"
msgstr "Chave criptográfica (de novo)"
@@ -2302,7 +2328,7 @@ msgid ""
"Please enter your username, password and domain name to access this host."
msgstr ""
-#: ../../diskdrake/smbnfs_gtk.pm_.c:178
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3527
#, fuzzy
msgid "Username"
msgstr "Nome do usuário"
@@ -2316,23 +2342,23 @@ msgstr "Domínio NIS"
msgid "Search servers"
msgstr "Servidores de busca"
-#: ../../fs.pm_.c:552 ../../fs.pm_.c:562 ../../fs.pm_.c:566 ../../fs.pm_.c:570
-#: ../../fs.pm_.c:574 ../../fs.pm_.c:578
+#: ../../fs.pm_.c:544 ../../fs.pm_.c:554 ../../fs.pm_.c:558 ../../fs.pm_.c:562
+#: ../../fs.pm_.c:566 ../../fs.pm_.c:570
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s formataçăo de %s falhou"
-#: ../../fs.pm_.c:615
+#: ../../fs.pm_.c:607
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "Eu năo sei como formatar %s no tipo %s"
-#: ../../fs.pm_.c:687 ../../fs.pm_.c:731
+#: ../../fs.pm_.c:681 ../../fs.pm_.c:724
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../fs.pm_.c:746 ../../partition_table.pm_.c:602
+#: ../../fs.pm_.c:739 ../../partition_table.pm_.c:598
#, c-format
msgid "error unmounting %s: %s"
msgstr "erro desmontando %s: %s"
@@ -2349,33 +2375,48 @@ msgstr ""
msgid "server"
msgstr "servidor"
-#: ../../fsedit.pm_.c:472
+#: ../../fsedit.pm_.c:240
+#, fuzzy, c-format
+msgid ""
+"I can't read the partition table of device %s, it's too corrupted for me :(\n"
+"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
+"The other solution is to not allow DrakX to modify the partition table.\n"
+"(the error is %s)\n"
+"\n"
+"Do you agree to loose all the partitions?\n"
+msgstr ""
+"Eu năo consigo ler sua tabela de partiçăo, é muito defeituosa para mim :(\n"
+"Eu posso tentar continuar limpando as partiçőes defeituosas (TODOS OS DADOS\n"
+"serăo perdidos!). A outra soluçăo é năo deixar o DrakX modificar a tabela\n"
+"de particăo. (o erro é %s)\n"
+
+#: ../../fsedit.pm_.c:501
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr "Você năo pode usar JFS em partiçőes menores que 16MB"
-#: ../../fsedit.pm_.c:473
+#: ../../fsedit.pm_.c:502
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr "Você năo pode usar ReiserFS em partiçőes menores que 32MB"
-#: ../../fsedit.pm_.c:492
+#: ../../fsedit.pm_.c:521
msgid "Mount points must begin with a leading /"
msgstr "Pontos de montagem devem começar com uma /"
-#: ../../fsedit.pm_.c:493
+#: ../../fsedit.pm_.c:522
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Já existe uma partiçăo no ponto de montagem %s\n"
-#: ../../fsedit.pm_.c:497
+#: ../../fsedit.pm_.c:526
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr "Você năo pode usar um Volume Lógivo LVM para o ponto de montagem %s"
-#: ../../fsedit.pm_.c:499
+#: ../../fsedit.pm_.c:528
msgid "This directory should remain within the root filesystem"
msgstr "Esse diretório deveria permanecer dentro do sistema de arquivo root"
-#: ../../fsedit.pm_.c:501
+#: ../../fsedit.pm_.c:530
#, fuzzy
msgid ""
"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
@@ -2384,232 +2425,278 @@ msgstr ""
"Você precisa de um verdadeiro sistema de arquivo (ext2, reiserfs) para esse "
"ponto de montagem\n"
-#: ../../fsedit.pm_.c:503
+#: ../../fsedit.pm_.c:532
#, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr ""
"Você năo pode usar um sistema de arquivos criptografado como ponto de "
"montagem %s"
-#: ../../fsedit.pm_.c:570
+#: ../../fsedit.pm_.c:599
msgid "Not enough free space for auto-allocating"
msgstr "Sem espaço livre suficiente para auto-alocaçăo"
-#: ../../fsedit.pm_.c:572
+#: ../../fsedit.pm_.c:601
msgid "Nothing to do"
msgstr "Nada a fazer"
-#: ../../fsedit.pm_.c:665
+#: ../../fsedit.pm_.c:694
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Erro abrindo %s para gravaçăo: %s"
-#: ../../fsedit.pm_.c:750
+#: ../../harddrake/sound.pm_.c:155
+msgid "No alternative driver"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:156
+#, c-format
+msgid "There's no known OSS/ALSA alternative driver for your sound card (%s)"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:158
+#, fuzzy
+msgid "Sound configuration"
+msgstr "Configuraçăo LAN"
+
+#: ../../harddrake/sound.pm_.c:159
+#, c-format
msgid ""
-"An error occurred - no valid devices were found on which to create new "
-"filesystems. Please check your hardware for the cause of this problem"
+"Here you can select an alternative driver (either OSS or ALSA) for your "
+"sound card (%s)"
msgstr ""
-"Ocorreu um erro - nenhum dispositivo válido foi encontrado para criar novos "
-"sistema de arquivos. Favor checar seu hardware para a causa desse problema"
-#: ../../fsedit.pm_.c:773
-msgid "You don't have any partitions!"
-msgstr "Você năo tem nenhuma partiçăo!"
+#: ../../harddrake/sound.pm_.c:162
+#, fuzzy
+msgid "Driver:"
+msgstr "Driver"
+
+#: ../../harddrake/sound.pm_.c:173
+msgid "No known driver"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:174
+#, c-format
+msgid "There's no known driver for your sound card (%s)"
+msgstr ""
-#: ../../harddrake/ui.pm_.c:15
+#: ../../harddrake/sound.pm_.c:177
+msgid "Unkown driver"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:178
+#, c-format
+msgid ""
+"The \"%s\" driver for your sound card is unlisted\n"
+"\n"
+"Please send the output of the \"lspcidrake -v\" command to\n"
+"<install at mandrakesoft dot com>\n"
+"with subject: unlisted sound driver \"%s\""
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:16
#, fuzzy
msgid "Model"
msgstr "Mouse"
-#: ../../harddrake/ui.pm_.c:15
+#: ../../harddrake/ui.pm_.c:16
#, fuzzy
msgid "hard disk model"
msgstr "Memória da Placa (DMA)"
-#: ../../harddrake/ui.pm_.c:16
+#: ../../harddrake/ui.pm_.c:17
#, fuzzy
msgid "Channel"
msgstr "Cancelar"
-#: ../../harddrake/ui.pm_.c:16
+#: ../../harddrake/ui.pm_.c:17
msgid "EIDE/SCSI channel"
msgstr ""
-#: ../../harddrake/ui.pm_.c:18
+#: ../../harddrake/ui.pm_.c:19
msgid "Bus"
msgstr ""
-#: ../../harddrake/ui.pm_.c:19
+#: ../../harddrake/ui.pm_.c:20
msgid ""
"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
msgstr ""
-#: ../../harddrake/ui.pm_.c:20
+#: ../../harddrake/ui.pm_.c:21
#, fuzzy
msgid "Module"
msgstr "Mouse"
-#: ../../harddrake/ui.pm_.c:20
+#: ../../harddrake/ui.pm_.c:21
msgid "the module of the GNU/Linux kernel that handle that device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:21
+#: ../../harddrake/ui.pm_.c:22
msgid "Media class"
msgstr ""
-#: ../../harddrake/ui.pm_.c:21
+#: ../../harddrake/ui.pm_.c:22
msgid "class of hardware device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:22 ../../printerdrake.pm_.c:1404
+#: ../../harddrake/ui.pm_.c:23 ../../printerdrake.pm_.c:1517
msgid "Description"
msgstr "Descriçăo"
-#: ../../harddrake/ui.pm_.c:22
+#: ../../harddrake/ui.pm_.c:23
msgid "this field describe the device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:24
+#: ../../harddrake/ui.pm_.c:25
#, fuzzy
msgid "Bus identification"
msgstr "Autenticaçăo?"
-#: ../../harddrake/ui.pm_.c:25
+#: ../../harddrake/ui.pm_.c:26
msgid ""
-"- PCI and USB devices : this list the vendor, device, subvendor and "
-"subdevice PCI/USB ids"
+"- PCI and USB devices: this list the vendor, device, subvendor and subdevice "
+"PCI/USB ids"
msgstr ""
-#: ../../harddrake/ui.pm_.c:27
+#: ../../harddrake/ui.pm_.c:28
msgid "Location on the bus"
msgstr ""
-#: ../../harddrake/ui.pm_.c:28
+#: ../../harddrake/ui.pm_.c:29
msgid ""
"- pci devices: this gives the PCI slot, device and function of this card\n"
"- eide devices: the device is either a slave or a master device\n"
"- scsi devices: the scsi bus and the scsi device ids"
msgstr ""
-#: ../../harddrake/ui.pm_.c:31
+#: ../../harddrake/ui.pm_.c:32
#, fuzzy
msgid "Old device file"
msgstr "Selecione arquivo"
-#: ../../harddrake/ui.pm_.c:32
+#: ../../harddrake/ui.pm_.c:33
msgid "old static device name used in dev package"
msgstr ""
-#: ../../harddrake/ui.pm_.c:33
+#: ../../harddrake/ui.pm_.c:34
#, fuzzy
msgid "New devfs device"
msgstr "Dispositivo de gateway"
-#: ../../harddrake/ui.pm_.c:34
+#: ../../harddrake/ui.pm_.c:35
msgid "new dinamic device name generated by incore kernel devfs"
msgstr ""
-#: ../../harddrake/ui.pm_.c:35
+#: ../../harddrake/ui.pm_.c:36
#, fuzzy
msgid "Number of buttons"
msgstr "2 botőes"
-#: ../../harddrake/ui.pm_.c:36
+#: ../../harddrake/ui.pm_.c:37
msgid "the vendor name of the device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:60
+#: ../../harddrake/ui.pm_.c:38
+#, fuzzy
+msgid "Alternative drivers"
+msgstr "Imprimindo página(s) de teste..."
+
+#: ../../harddrake/ui.pm_.c:39
+msgid "the list of alternative drivers for this sound card"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:63
#, fuzzy
msgid "/_Quit"
msgstr "Sair"
-#: ../../harddrake/ui.pm_.c:61 ../../harddrake/ui.pm_.c:62
-#: ../../harddrake/ui.pm_.c:68 ../../standalone/logdrake_.c:110
+#: ../../harddrake/ui.pm_.c:64 ../../harddrake/ui.pm_.c:65
+#: ../../harddrake/ui.pm_.c:71 ../../standalone/logdrake_.c:110
msgid "/_Help"
msgstr "/Aj_uda"
-#: ../../harddrake/ui.pm_.c:62
+#: ../../harddrake/ui.pm_.c:65
#, fuzzy
msgid "/_Help..."
msgstr "/Aj_uda"
-#: ../../harddrake/ui.pm_.c:63
+#: ../../harddrake/ui.pm_.c:66
msgid "Harddrake help"
msgstr ""
-#: ../../harddrake/ui.pm_.c:64
+#: ../../harddrake/ui.pm_.c:67
msgid ""
"Description of the fields:\n"
"\n"
msgstr ""
-#: ../../harddrake/ui.pm_.c:68
+#: ../../harddrake/ui.pm_.c:71
#, fuzzy
msgid "/_About..."
msgstr "/Ajuda/_Sobre..."
-#: ../../harddrake/ui.pm_.c:69
+#: ../../harddrake/ui.pm_.c:72
msgid "About Harddrake"
msgstr ""
-#: ../../harddrake/ui.pm_.c:70
+#: ../../harddrake/ui.pm_.c:73
msgid ""
"This is HardDrake, a Mandrake hardware configuration tool.\n"
"Version:"
msgstr ""
-#: ../../harddrake/ui.pm_.c:71
+#: ../../harddrake/ui.pm_.c:74
#, fuzzy
msgid "Author:"
msgstr "Auto detectar"
-#: ../../harddrake/ui.pm_.c:83
+#: ../../harddrake/ui.pm_.c:86
#, fuzzy
msgid "Harddrake2 version "
msgstr "Detecçăo de discos rigidos"
-#: ../../harddrake/ui.pm_.c:91
+#: ../../harddrake/ui.pm_.c:103
#, fuzzy
msgid "Detected hardware"
msgstr "Ver informaçăo do hardware"
-#: ../../harddrake/ui.pm_.c:92
+#: ../../harddrake/ui.pm_.c:105
#, fuzzy
-msgid "Configure module"
-msgstr "Configurar mouse"
+msgid "Information"
+msgstr "Mostrar informaçăo"
-#: ../../harddrake/ui.pm_.c:92
+#: ../../harddrake/ui.pm_.c:108
#, fuzzy
-msgid "Informations"
-msgstr "Mostrar informaçăo"
+msgid "Configure module"
+msgstr "Configurar mouse"
-#: ../../harddrake/ui.pm_.c:92
+#: ../../harddrake/ui.pm_.c:109
msgid "Run config tool"
msgstr ""
-#: ../../harddrake/ui.pm_.c:96
+#: ../../harddrake/ui.pm_.c:113
#, fuzzy
msgid "Detection in progress"
msgstr "detectado na porta %s"
-#: ../../harddrake/ui.pm_.c:96 ../../interactive.pm_.c:388
+#: ../../harddrake/ui.pm_.c:113 ../../interactive.pm_.c:391
msgid "Please wait"
msgstr "Por favor aguarde"
-#: ../../harddrake/ui.pm_.c:139
+#: ../../harddrake/ui.pm_.c:156
msgid "primary"
msgstr ""
-#: ../../harddrake/ui.pm_.c:139
+#: ../../harddrake/ui.pm_.c:156
#, fuzzy
msgid "secondary"
msgstr "%d segundos"
-#: ../../harddrake/ui.pm_.c:176
+#: ../../harddrake/ui.pm_.c:197
msgid "You can configure each parameter of the module here."
msgstr ""
-#: ../../harddrake/ui.pm_.c:192
+#: ../../harddrake/ui.pm_.c:213
#, fuzzy, c-format
msgid "Running \"%s\" ..."
msgstr "Lendo banco de dados de drivers do CUPS"
@@ -2642,16 +2729,16 @@ msgstr ""
#: ../../harddrake/v4l.pm_.c:213
#, fuzzy
-msgid "Card model :"
+msgid "Card model:"
msgstr "Memória da Placa (DMA)"
#: ../../harddrake/v4l.pm_.c:214
#, fuzzy
-msgid "Tuner type :"
+msgid "Tuner type:"
msgstr "Mudar tipo"
#: ../../harddrake/v4l.pm_.c:215
-msgid "Number of capture buffers :"
+msgid "Number of capture buffers:"
msgstr ""
#: ../../harddrake/v4l.pm_.c:215
@@ -2660,11 +2747,11 @@ msgstr ""
#: ../../harddrake/v4l.pm_.c:217
#, fuzzy
-msgid "PLL setting :"
+msgid "PLL setting:"
msgstr "Formatando"
#: ../../harddrake/v4l.pm_.c:218
-msgid "Radio support :"
+msgid "Radio support:"
msgstr ""
#: ../../harddrake/v4l.pm_.c:218
@@ -2676,22 +2763,22 @@ msgid ""
"GNU/Linux is a multiuser system, and this means that each user can have his\n"
"own preferences, his own files and so on. You can read the ``User Guide''\n"
"to learn more. But unlike \"root\", which is the administrator, the users\n"
-"you will add here will not be entitled to change anything except their own\n"
-"files and their own configuration. You will have to create at least one\n"
-"regular user for yourself. That account is where you should log in for\n"
-"routine use. Although it is very practical to log in as \"root\" everyday,\n"
-"it may also be very dangerous! The slightest mistake could mean that your\n"
-"system would not work any more. If you make a serious mistake as a regular\n"
-"user, you may only lose some information, but not the entire system.\n"
+"you add here will not be entitled to change anything except their own files\n"
+"and their own configuration. You will have to create at least one regular\n"
+"user for yourself. That account is where you should log in for routine use.\n"
+"Although it is very practical to log in as \"root\" everyday, it may also\n"
+"be very dangerous! The slightest mistake could mean that your system would\n"
+"not work any more. If you make a serious mistake as a regular user, you may\n"
+"only lose some information, but not the entire system.\n"
"\n"
"First, you have to enter your real name. This is not mandatory, of course -\n"
"as you can actually enter whatever you want. DrakX will then take the first\n"
"word you have entered in the box and will bring it over to the \"User\n"
"name\". This is the name this particular user will use to log onto the\n"
"system. You can change it. You then have to enter a password here. A\n"
-"non-privileged (regular) user's password is not as crucial as \"root\"' one\n"
-"from a security point of view, but that is no reason to neglect it: after\n"
-"all, your files are at risk.\n"
+"non-privileged (regular) user's password is not as crucial as the \"root\"'\n"
+"one from a security point of view, but that is no reason to neglect it:\n"
+"after all, your files are at risk.\n"
"\n"
"If you click on \"Accept user\", you can then add as many as you want. Add\n"
"a user for each one of your friends: your father or your sister, for\n"
@@ -2853,7 +2940,7 @@ msgid ""
"to have a graphical workstation!\n"
"\n"
"Moving the mouse cursor over a group name will display a short explanatory\n"
-"text about that group. If you deselect all groups when performing a regular\n"
+"text about that group. If you unselect all groups when performing a regular\n"
"installation (by opposition to an upgrade), a dialog will pop up proposing\n"
"different options for a minimal installation:\n"
"\n"
@@ -2930,10 +3017,10 @@ msgstr ""
#: ../../help.pm_.c:128
msgid ""
-"Finally, depending on whether or not you selected individual packages, you\n"
-"will be presented a tree containing all packages classified by groups and\n"
-"subgroups. While browsing the tree, you can select entire groups,\n"
-"subgroups, or individual packages.\n"
+"Finally, depending on whether or not you chose to be able to select\n"
+"individual packages, you will be presented a tree containing all packages\n"
+"classified by groups and subgroups. While browsing the tree, you can select\n"
+"entire groups, subgroups, or individual packages.\n"
"\n"
"Whenever you select a package on the tree, a description appears on the\n"
"right. When your selection is finished, click the \"Install\" button which\n"
@@ -3021,11 +3108,11 @@ msgstr ""
#: ../../help.pm_.c:164
#, fuzzy
msgid ""
-"You are now proposed to set up your Internet/network connection. If you\n"
-"wish to connect your computer to the Internet or to a local network, click\n"
-"\"OK\". The autodetection of network devices and modem will be launched. If\n"
-"this detection fails, uncheck the \"Use auto detection\" box next time. You\n"
-"may also choose not to configure the network, or do it later; in that case,\n"
+"You are now able to set up your Internet/network connection. If you wish to\n"
+"connect your computer to the Internet or to a local network, click \"OK\".\n"
+"The autodetection of network devices and modem will be launched. If this\n"
+"detection fails, uncheck the \"Use auto detection\" box next time. You may\n"
+"also choose not to configure the network, or do it later; in that case,\n"
"simply click the \"Cancel\" button.\n"
"\n"
"Available connections are: traditional modem, ISDN modem, ADSL connection,\n"
@@ -3109,7 +3196,7 @@ msgstr ""
msgid ""
"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
"local time according to the time zone you selected. It is however possible\n"
-"to deactivate this by deselecting \"Hardware clock set to GMT\" so that the\n"
+"to deactivate this by unselecting \"Hardware clock set to GMT\" so that the\n"
"hardware clock is the same as the system clock. This is useful when the\n"
"machine is hosting another operating system like Windows.\n"
"\n"
@@ -3156,7 +3243,9 @@ msgid ""
"If you can see the message during the test, and answer \"Yes\", then DrakX\n"
"will proceed to the next step. If you cannot see the message, it simply\n"
"means that the configuration was wrong and the test will automatically end\n"
-"after 10 seconds, restoring the screen."
+"after 10 seconds, restoring the screen. Refer then to the Video\n"
+"configuration section of the user guide for more information on how to\n"
+"configure your display."
msgstr ""
"O X (o sistema X window) é o coraçăo da interface gráfica GNU/Linux\n"
"na qual todos os ambientes gráficos (KDE, Gnome, AfterStep, WindowMaker...)\n"
@@ -3184,38 +3273,7 @@ msgstr ""
"restaurando\n"
"a tela."
-#: ../../help.pm_.c:237
-msgid ""
-"The first time you try the X configuration, you may not be very satisfied\n"
-"with its display (screen is too small, shifted left or right...). Hence,\n"
-"even if X starts up correctly, DrakX then asks you if the configuration\n"
-"suits you. It will also propose to change it by displaying a list of valid\n"
-"modes it could find, asking you to select one.\n"
-"\n"
-"As a last resort, if you still cannot get X to work, choose \"Change\n"
-"graphics card\", select \"Unlisted card\", and when prompted on which\n"
-"server, choose \"FBDev\". This is a failsafe option which works with any\n"
-"modern graphics card. Then choose \"Test again\" to be sure."
-msgstr ""
-"Na primeira vez que você usar o sistema X, você pode năo ficar muito\n"
-"satisfeito com a imagem (tela muito pequena, errada no sentido esquerdo -"
-"direito...).\n"
-"Porém, mesmo se o X começar corretamente, o DrakX irá perguntar se a "
-"configuraçăo\n"
-"o agrada. Irá também propôr modificaçőes, mostrando uma lista de "
-"alternativas, pedindo \n"
-"a você para escolher uma.\n"
-"\n"
-"Como último recurso, se você ainda năo conseguir fazer o X funcionar,, "
-"escolha\n"
-"\"Mudar placa de vídeo\", selecione \"Placas năo listadas\", e quando "
-"perguntado em qual \n"
-"servidor você deseja, escolha \"FBDev\". É uma opçăo à prova de erros, que "
-"funciona\n"
-"com qualquer placa de vídeo moderna. Depois escolha \"Testar de novo\" para "
-"se certificar."
-
-#: ../../help.pm_.c:249
+#: ../../help.pm_.c:239
msgid ""
"Finally, you will be asked whether you want to see the graphical interface\n"
"at boot. Note this question will be asked even if you chose not to test the\n"
@@ -3230,7 +3288,8 @@ msgstr ""
"funcionar\n"
"como um servidor, ou se você năo conseguiu configurar o display."
-#: ../../help.pm_.c:256
+#: ../../help.pm_.c:246
+#, fuzzy
msgid ""
"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
@@ -3250,10 +3309,10 @@ msgid ""
"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
"password, or any other reason.\n"
"\n"
-"When you click on this step, you will be asked to enter a disk inside the\n"
-"drive. The floppy disk you will insert must be empty or contain data which\n"
-"you do not need. You will not have to format it since DrakX will rewrite\n"
-"the whole disk."
+"If you say \"Yes\", you will be asked to enter a disk inside the drive. The\n"
+"floppy disk you will insert must be empty or contain data which you do not\n"
+"need. You will not have to format it since DrakX will rewrite the whole\n"
+"disk."
msgstr ""
"O CDROM Mandrake Linux possui um modo de resgate embutido. Você pode ter "
"acesso\n"
@@ -3290,7 +3349,7 @@ msgstr ""
"Você năo precisará reformatá-lo, porque o DrakX irá reescrever o disco "
"inteiro."
-#: ../../help.pm_.c:280
+#: ../../help.pm_.c:270
msgid ""
"At this point, you need to choose where you want to install the Mandrake\n"
"Linux operating system on your hard drive. If your hard drive is empty or\n"
@@ -3323,7 +3382,9 @@ msgid ""
"\n"
" * \"Use existing partition\": the wizard has detected one or more existing\n"
"Linux partitions on your hard drive. If you want to use them, choose this\n"
-"option;\n"
+"option. You will then be asked to choose the mount points associated to\n"
+"each of the partitions. The legacy mount points are selected by default,\n"
+"and you should generally keep them.\n"
"\n"
" * \"Use the free space on the Windows; partition\": if Microsoft Windows\n"
"is installed on your hard drive and takes all the space available on it,\n"
@@ -3356,7 +3417,9 @@ msgid ""
" * \"Expert mode\": choose this option if you want to manually partition\n"
"your hard drive. Be careful - it is a powerful but dangerous choice. You\n"
"can very easily lose all your data. Hence, do not choose this unless you\n"
-"know what you are doing."
+"know what you are doing. To know how do use the DiskDrake utility used\n"
+"here, refer to the section ``Managing Your Partitions'' of the ````User\n"
+"Guide''''"
msgstr ""
"A esse ponto, você precisa escolher onde você quer instalar o seu sistema\n"
"Mandrake Linux no seu disco rígido. Se estiver vazio ou se um sistema\n"
@@ -3426,7 +3489,7 @@ msgstr ""
"perder todos os seus dados\n"
" facilmente. Entăo năo escolha essa soluçăo a năo ser que saiba o que faz."
-#: ../../help.pm_.c:347
+#: ../../help.pm_.c:341
msgid ""
"There you are. Installation is now complete and your GNU/Linux system is\n"
"ready to use. Just click \"OK\" to reboot the system. You can start\n"
@@ -3497,7 +3560,7 @@ msgstr ""
"GNU/Linux\n"
"digite \"mformat a:\")"
-#: ../../help.pm_.c:378
+#: ../../help.pm_.c:372
msgid ""
"Any partitions that have been newly defined must be formatted for use\n"
"(formatting means creating a filesystem).\n"
@@ -3548,7 +3611,7 @@ msgstr ""
"instalar\n"
"o seu novo sistema operacional Mandrake Linux."
-#: ../../help.pm_.c:404
+#: ../../help.pm_.c:398
msgid ""
"Your new Mandrake Linux operating system is currently being installed.\n"
"Depending on the number of packages you will be installing and the speed of\n"
@@ -3563,12 +3626,12 @@ msgstr ""
"\n"
"Por favor seja paciente."
-#: ../../help.pm_.c:412
+#: ../../help.pm_.c:406
msgid ""
"At the time you are installing Mandrake Linux, it is likely that some\n"
"packages have been updated since the initial release. Some bugs may have\n"
"been fixed, and security issues solved. To allow you to benefit from these\n"
-"updates, you are now proposed to download them from the Internet. Choose\n"
+"updates, you are now able to download them from the Internet. Choose\n"
"\"Yes\" if you have a working Internet connection, or \"No\" if you prefer\n"
"to install updated packages later.\n"
"\n"
@@ -3578,7 +3641,7 @@ msgid ""
"install the selected package(s), or \"Cancel\" to abort."
msgstr ""
-#: ../../help.pm_.c:425
+#: ../../help.pm_.c:419
msgid ""
"Before continuing, you should read carefully the terms of the license. It\n"
"covers the whole Mandrake Linux distribution, and if you do not agree with\n"
@@ -3594,14 +3657,14 @@ msgstr ""
"na instalaçăo,\n"
"clique em \"Aceitar\"."
-#: ../../help.pm_.c:432
+#: ../../help.pm_.c:426
msgid ""
"At this point, it is time to choose the security level desired for the\n"
"machine. As a rule of thumb, the more exposed the machine is, and the more\n"
"the data stored in it is crucial, the higher the security level should be.\n"
"However, a higher security level is generally obtained at the expense of\n"
-"easiness of use. Refer to the \"msec\" chapter of the ``Reference Manual''\n"
-"to get more information about the meaning of these levels.\n"
+"ease of use. Refer to the \"msec\" chapter of the ``Reference Manual'' to\n"
+"get more information about the meaning of these levels.\n"
"\n"
"If you do not know what to choose, keep the default option."
msgstr ""
@@ -3619,7 +3682,7 @@ msgstr ""
"\n"
"Se você năo souber o que escolher, siga os defaults."
-#: ../../help.pm_.c:442
+#: ../../help.pm_.c:436
msgid ""
"At this point, you need to choose which partition(s) will be used for the\n"
"installation of your Mandrake Linux system. If partitions have already been\n"
@@ -3636,26 +3699,26 @@ msgid ""
" * \"Clear all\": this option deletes all partitions on the selected hard\n"
"drive;\n"
"\n"
-" * \"Auto allocate\": this option enables to automatically create \"Ext2\"\n"
-"and swap partitions in free space of your hard drive;\n"
+" * \"Auto allocate\": this option enables to automatically create ext3 and\n"
+"swap partitions in free space of your hard drive;\n"
"\n"
-" * \"More\": gives access to additional features:\n"
+"\"More\": gives access to additional features:\n"
"\n"
-" * \"Save partition table\": saves the partition table to a floppy.\n"
-"Useful for later partition-table recovery if necessary. It is strongly\n"
-"recommended to perform this step;\n"
+" * \"Save partition table\": saves the partition table to a floppy. Useful\n"
+"for later partition-table recovery if necessary. It is strongly recommended\n"
+"to perform this step;\n"
"\n"
-" * \"Restore partition table\": allows to restore a previously saved\n"
+" * \"Restore partition table\": allows to restore a previously saved\n"
"partition table from floppy disk;\n"
"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you\n"
-"can try to recover it using this option. Please be careful and remember\n"
-"that it can fail;\n"
+" * \"Rescue partition table\": if your partition table is damaged, you can\n"
+"try to recover it using this option. Please be careful and remember that it\n"
+"can fail;\n"
"\n"
-" * \"Reload partition table\": discards all changes and loads your\n"
-"initial partition table;\n"
+" * \"Reload partition table\": discards all changes and loads your initial\n"
+"partition table;\n"
"\n"
-" * \"Removable media automounting\": unchecking this option will force\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
"users to manually mount and unmount removable medias such as floppies and\n"
"CD-ROMs.\n"
"\n"
@@ -3683,7 +3746,7 @@ msgid ""
" * Ctrl-m to set the mount point.\n"
"\n"
"To get information about the different filesystem types available, please\n"
-"read the ext2fs chapter from the ``Reference Manual''.\n"
+"read the ext2FS chapter from the ``Reference Manual''.\n"
"\n"
"If you are installing on a PPC machine, you will want to create a small HFS\n"
"``bootstrap'' partition of at least 1MB, which will be used by the yaboot\n"
@@ -3753,7 +3816,7 @@ msgstr ""
"pouco maior, digamos 50MB, você pode usar o espaço \n"
"para guardar um kernel extra e uma imagem ramdisk para emergências."
-#: ../../help.pm_.c:513
+#: ../../help.pm_.c:507
msgid ""
"More than one Microsoft partition has been detected on your hard drive.\n"
"Please choose the one you want to resize in order to install your new\n"
@@ -3816,11 +3879,11 @@ msgstr ""
"\"Nome Windows\" é a letra do seu disco rígido no Windows (o primeirodisco\n"
"ou partiçăo é chamado \"C:\")."
-#: ../../help.pm_.c:544
+#: ../../help.pm_.c:538
msgid "Please be patient. This operation can take several minutes."
msgstr "Por favor seja paciente. Essa operaçăo pode demorar vários minutos."
-#: ../../help.pm_.c:547
+#: ../../help.pm_.c:541
#, fuzzy
msgid ""
"DrakX now needs to know if you want to perform a default (\"Recommended\")\n"
@@ -3828,23 +3891,23 @@ msgid ""
"also choose to do a new install or an upgrade of an existing Mandrake Linux\n"
"system:\n"
"\n"
-" * \"Install\": completely wipes out the old system. In fact, depending on\n"
-"what currently holds your machine, you will be able to keep some old (Linux\n"
-"or other) partitions unchanged;\n"
+" * \"Install\": completely wipes out the old system, however, depending on\n"
+"what is currently installed on your machine, you may be able to keep some\n"
+"old partitions (Linux or otherwise) unchanged;\n"
"\n"
" * \"Upgrade\": this installation class allows to simply update the\n"
"packages currently installed on your Mandrake Linux system. It keeps the\n"
"current partitions of your hard drives as well as user configurations. All\n"
-"other configuration steps remain available with respect to plain\n"
+"other configuration steps remain available, similar to a normal\n"
"installation;\n"
"\n"
-" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
-"existing Mandrake Linux system while keeping all system configurations\n"
-"unchanged. Adding new packages to the current installation is also\n"
-"possible.\n"
+" * \"Upgrade Packages Only\": this new installation class allows you to\n"
+"upgrade an existing Mandrake Linux system while keeping all system\n"
+"configurations unchanged. Adding new packages to the current installation\n"
+"is also possible.\n"
"\n"
-"Upgrades should work fine for Mandrake Linux systems starting from \"8.1\"\n"
-"release.\n"
+"Upgrades should work fine on Mandrake Linux systems containing version\n"
+"\"8.1\" or later.\n"
"\n"
"Depending on your knowledge of GNU/Linux, select one of the following\n"
"choices:\n"
@@ -3853,11 +3916,11 @@ msgid ""
"operating system. The installation will be very easy and you will only be\n"
"asked a few questions;\n"
"\n"
-" * Expert: if you have a good knowledge of GNU/Linux, you can choose this\n"
-"installation class. The expert installation will allow you to perform a\n"
-"highly-customized installation. Answering some of the questions can be\n"
-"difficult if you do not have a good knowledge of GNU/Linux, so do not\n"
-"choose this unless you know what you are doing."
+" * Expert: if you have a good understanding of GNU/Linux, you may wish to\n"
+"perform a highly customized installation. Some of the decisions you will\n"
+"have to make may be difficult if you do not have good knowledge of\n"
+"GNU/Linux, so it is not recommended that those without a fair amount of\n"
+"experience select this installation class."
msgstr ""
"dRakX agora precisa saber se você deseja fazer uma isntalaçăo default\n"
" (\"recomendada\") ou se você deseja ter maior controle sobre o processo "
@@ -3903,19 +3966,22 @@ msgstr ""
"conhecimento sobre GNU/Linux.\n"
"Entăo, só escolha essa classe se souber o que está fazendo."
-#: ../../help.pm_.c:584
+#: ../../help.pm_.c:578
msgid ""
"Normally, DrakX selects the right keyboard for you (depending on the\n"
-"language you have chosen) and you won't even see this step. However, you\n"
-"might not have a keyboard that corresponds exactly to your language: for\n"
-"example, if you are an English speaking Swiss person, you may still want\n"
-"your keyboard to be a Swiss keyboard. Or if you speak English but are\n"
-"located in Quebec, you may find yourself in the same situation. In both\n"
-"cases, you will have to go back to this installation step and select an\n"
-"appropriate keyboard from the list.\n"
+"language you have chosen). However, you might not have a keyboard that\n"
+"corresponds exactly to your language: for example, if you are an English\n"
+"speaking Swiss person, you may still want your keyboard to be a Swiss\n"
+"keyboard. Or if you speak English but are located in Quebec, you may find\n"
+"yourself in the same situation. In both cases, you will have to go back to\n"
+"this installation step and select an appropriate keyboard from the list.\n"
"\n"
"Click on the \"More\" button to be presented with the complete list of\n"
-"supported keyboards."
+"supported keyboards.\n"
+"\n"
+"If you choose a keyboard layout based on a non-latin alphabet, you will be\n"
+"asked on next dialog to choose the key binding that will switch the\n"
+"keyboard layout between the latin and non latin layouts."
msgstr ""
"Normalmente o DrakX esoclhe o teclado certo para você, (dependendo da "
"linguagem\n"
@@ -3931,8 +3997,10 @@ msgstr ""
"\n"
"Clique em \"Mais\" para ver uma lista completa de teclados disponíveis."
-#: ../../help.pm_.c:597
+#: ../../help.pm_.c:594
msgid ""
+"The first step is to choose your preferred language.\n"
+"\n"
"Please choose your preferred language for installation and system usage.\n"
"\n"
"Clicking on the \"Advanced\" button will allow you to select other\n"
@@ -3964,7 +4032,7 @@ msgstr ""
"selecionou \n"
"quaisquer adicionais, clique em \"OK\" para continuar."
-#: ../../help.pm_.c:610
+#: ../../help.pm_.c:609
msgid ""
"DrakX generally detects the number of buttons your mouse has. If not, it\n"
"assumes you have a two-button mouse and will set it up for third-button\n"
@@ -3977,7 +4045,14 @@ msgid ""
"If you choose a mouse other than the default, a test screen will be\n"
"displayed. Use the buttons and wheel to verify that the settings are\n"
"correct. If the mouse is not working well, press the space bar or [Return]\n"
-"to \"Cancel\" and choose again."
+"to \"Cancel\" and choose again.\n"
+"\n"
+"Wheel mouses are sometimes not automatically detected. You will need to\n"
+"manually select it in the list. Be sure to select the one corresponding to\n"
+"the correct port it is attached to. After you have pressed the \"OK\"\n"
+"button, a mouse image is displayed. You then need to move the wheel of your\n"
+"mouse to activate it correctly. Then test all buttons and movements are\n"
+"correct."
msgstr ""
"Por default, o DrakX assume que você tem um mouse de dois botőes, e irá setá-"
"lo para\n"
@@ -3995,7 +4070,7 @@ msgstr ""
"\"Cancelar\"\n"
"e escolher de novo."
-#: ../../help.pm_.c:624
+#: ../../help.pm_.c:630
msgid ""
"Please select the correct port. For example, the \"COM1\" port under\n"
"Windows is named \"ttyS0\" under GNU/Linux."
@@ -4003,7 +4078,7 @@ msgstr ""
"Favor selecionar a porta correta. Por exemplo, a porta COM1\n"
"no MS Windows é chamada ttyS0 no GNU/Linux."
-#: ../../help.pm_.c:628
+#: ../../help.pm_.c:634
msgid ""
"This is the most crucial decision point for the security of your GNU/Linux\n"
"system: you have to enter the \"root\" password. \"root\" is the system\n"
@@ -4033,9 +4108,9 @@ msgid ""
"In Expert mode, you will be asked if you will be connecting to an\n"
"authentication server, like NIS or LDAP.\n"
"\n"
-"If your network uses the LDAP (or NIS) protocol for authentication, select\n"
-"\"LDAP\" (or \"NIS\") as authentication. If you do not know, ask your\n"
-"network administrator.\n"
+"If your network uses either of the LDAP, NIS, or PDC Windows Domain\n"
+"authentication services, select the appropriate one as \"authentication\".\n"
+"If you do not know, ask your network administrator.\n"
"\n"
"If your computer is not connected to any administrated network, you will\n"
"want to choose \"Local files\" for authentication."
@@ -4085,7 +4160,7 @@ msgstr ""
"Se seu computador năo está conectado a uma rede administrada, você deverá\n"
"esoclher \"Local Files\" para autenticaçăo."
-#: ../../help.pm_.c:664
+#: ../../help.pm_.c:670
msgid ""
"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
@@ -4124,16 +4199,7 @@ msgid ""
"options. !!\n"
"\n"
"Clicking the \"Advanced\" button in this dialog will offer many advanced\n"
-"options, which are reserved to the expert user.\n"
-"\n"
-"After you have configured the general bootloader parameters, the list of\n"
-"boot options which will be available at boot time will be displayed.\n"
-"\n"
-"If there is another operating system installed on your machine, it will\n"
-"automatically be added to the boot menu. Here, you can choose to fine-tune\n"
-"the existing options. Select an entry and click \"Modify\" to modify or\n"
-"remove it; \"Add\" creates a new entry; and \"Done\" goes on to the next\n"
-"installation step."
+"options, which are reserved for the expert user."
msgstr ""
"O LILO e o Grub săo gerenciadores de iniciaçăo do GNU/Linux. Este estágio "
"via de regra\n"
@@ -4195,13 +4261,16 @@ msgstr ""
"\"Adicionar\" cria uma nova entrada, e \"Feito\" vai para o próximo passo da "
"instalaçăo."
-#: ../../help.pm_.c:713
+#: ../../help.pm_.c:710
msgid ""
-"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
-"either GNU/Linux or any other operating system present on your computer.\n"
-"Normally, these other operating systems are correctly detected and\n"
-"installed. If this is not the case, you can add an entry by hand in this\n"
-"screen. Be careful to choose the correct parameters.\n"
+"After you have configured the general bootloader parameters, the list of\n"
+"boot options which will be available at boot time will be displayed.\n"
+"\n"
+"If there is another operating system installed on your machine, it will\n"
+"automatically be added to the boot menu. Here, you can choose to fine-tune\n"
+"the existing options. Select an entry and click \"Modify\" to modify or\n"
+"remove it; \"Add\" creates a new entry; and \"Done\" goes on to the next\n"
+"installation step.\n"
"\n"
"You may also not want to give access to these other operating systems to\n"
"anyone. In which case, you can delete the corresponding entries. But then,\n"
@@ -4267,18 +4336,18 @@ msgstr ""
#: ../../help.pm_.c:759
#, fuzzy
msgid ""
-"DrakX now detects any IDE device present in your computer. It will also\n"
-"scan for one or more PCI SCSI card(s) on your system. If a SCSI card is\n"
+"DrakX now detects any IDE devices present in your computer. It will also\n"
+"scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
"found, DrakX will automatically install the appropriate driver.\n"
"\n"
"Because hardware detection does not always detect a piece of hardware,\n"
"DrakX will ask you to confirm if a PCI SCSI card is present. Click \"Yes\"\n"
"if you know that there is a SCSI card installed in your machine. You will\n"
-"be presented a list of SCSI cards to choose from. Click \"No\" if you have\n"
-"no SCSI hardware. If you are unsure, you can check the list of hardware\n"
-"detected in your machine by selecting \"See hardware info\" and clicking\n"
-"\"OK\". Examine the list of hardware and then click on the \"OK\" button to\n"
-"return to the SCSI interface question.\n"
+"be presented with a list of SCSI cards to choose from. Click \"No\" if you\n"
+"have no SCSI hardware. If you are unsure, you can check the list of\n"
+"hardware detected in your machine by selecting \"See hardware info\" and\n"
+"clicking \"OK\". Examine the list of hardware and then click on the \"OK\"\n"
+"button to return to the SCSI interface question.\n"
"\n"
"If you have to manually specify your adapter, DrakX will ask if you want to\n"
"specify options for it. You should allow DrakX to probe the hardware for\n"
@@ -4532,7 +4601,9 @@ msgid ""
"order to configure the clock according to the time zone you are in;\n"
"\n"
" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
-"configuration wizard;\n"
+"configuration wizard. Consult the corresponding chapter of the ``User\n"
+"Guide'' for more information on how to setup a new printer. The interface\n"
+"presented there is similar to the one used during installation;\n"
"\n"
" * \"Sound card\": if a sound card is detected on your system, it is\n"
"displayed here. No modification possible at installation time;\n"
@@ -4545,7 +4616,7 @@ msgid ""
"associated with it."
msgstr ""
-#: ../../help.pm_.c:894
+#: ../../help.pm_.c:896
#, fuzzy
msgid ""
"Choose the hard drive you want to erase in order to install your new\n"
@@ -4557,7 +4628,7 @@ msgstr ""
"serăo\n"
"perdidos e năo poderăo ser recuperados."
-#: ../../help.pm_.c:899
+#: ../../help.pm_.c:901
#, fuzzy
msgid ""
"Click on \"OK\" if you want to delete all data and partitions present on\n"
@@ -4592,7 +4663,7 @@ msgstr ""
msgid "You must also format %s"
msgstr ""
-#: ../../install_any.pm_.c:418
+#: ../../install_any.pm_.c:423
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -4617,20 +4688,29 @@ msgstr ""
"\n"
"Você realmente quer instalar esses servidores?\n"
-#: ../../install_any.pm_.c:453
+#: ../../install_any.pm_.c:441
+#, c-format
+msgid ""
+"The following packages will be removed to allow upgrading your system: %s\n"
+"\n"
+"\n"
+"Do you really want to remove these packages?\n"
+msgstr ""
+
+#: ../../install_any.pm_.c:471
msgid "Can't use broadcast with no NIS domain"
msgstr "Năo pode usar broadcast sem domínio NIS"
-#: ../../install_any.pm_.c:841
+#: ../../install_any.pm_.c:862
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Insira um disquete FAT formatado no drive %s"
-#: ../../install_any.pm_.c:845
+#: ../../install_any.pm_.c:866
msgid "This floppy is not FAT formatted"
msgstr "Esse disquete năo está formatado como FAT"
-#: ../../install_any.pm_.c:857
+#: ../../install_any.pm_.c:878
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -4638,11 +4718,19 @@ msgstr ""
"Para usar a seleçăo salva de pacotes, entre na instalaçăo com ``linux "
"defcfg=floppy''"
-#: ../../install_any.pm_.c:880 ../../partition_table.pm_.c:771
+#: ../../install_any.pm_.c:901 ../../partition_table.pm_.c:767
#, c-format
msgid "Error reading file %s"
msgstr "Erro lendo arquivo %s"
+#: ../../install_any.pm_.c:1023
+msgid ""
+"An error occurred - no valid devices were found on which to create new "
+"filesystems. Please check your hardware for the cause of this problem"
+msgstr ""
+"Ocorreu um erro - nenhum dispositivo válido foi encontrado para criar novos "
+"sistema de arquivos. Favor checar seu hardware para a causa desse problema"
+
#: ../../install_interactive.pm_.c:23
#, c-format
msgid ""
@@ -4676,60 +4764,60 @@ msgstr ""
"\n"
"Continuar mesmo assim?"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:168
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:169
#, fuzzy
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "Você tem que ter uma partiçăo swap"
-#: ../../install_interactive.pm_.c:91
+#: ../../install_interactive.pm_.c:92
msgid "Use free space"
msgstr "Usar espaço livre"
-#: ../../install_interactive.pm_.c:93
+#: ../../install_interactive.pm_.c:94
msgid "Not enough free space to allocate new partitions"
msgstr "Sem espaço livre suficiente para alocar as novas partiçőes"
-#: ../../install_interactive.pm_.c:101
+#: ../../install_interactive.pm_.c:102
msgid "Use existing partitions"
msgstr "Use partiçăo existindo"
-#: ../../install_interactive.pm_.c:103
+#: ../../install_interactive.pm_.c:104
msgid "There is no existing partition to use"
msgstr "Năo existe nenhuma tabela de partiçăo para usar"
-#: ../../install_interactive.pm_.c:110
+#: ../../install_interactive.pm_.c:111
msgid "Use the Windows partition for loopback"
msgstr "Usar a partiçăo Windows para loopback"
-#: ../../install_interactive.pm_.c:113
+#: ../../install_interactive.pm_.c:114
msgid "Which partition do you want to use for Linux4Win?"
msgstr "Qual partiçăo você quer usar para o Linux4Win?"
-#: ../../install_interactive.pm_.c:115
+#: ../../install_interactive.pm_.c:116
msgid "Choose the sizes"
msgstr "Escolha os tamanhos"
-#: ../../install_interactive.pm_.c:116
+#: ../../install_interactive.pm_.c:117
msgid "Root partition size in MB: "
msgstr "Tamanho da partiçăo root em MB:"
-#: ../../install_interactive.pm_.c:117
+#: ../../install_interactive.pm_.c:118
msgid "Swap partition size in MB: "
msgstr "Tamanho da partiçăo swap em MB: "
-#: ../../install_interactive.pm_.c:126
+#: ../../install_interactive.pm_.c:128
msgid "Use the free space on the Windows partition"
msgstr "Usar o espaço livre da partiçăo Windows"
-#: ../../install_interactive.pm_.c:129
+#: ../../install_interactive.pm_.c:131
msgid "Which partition do you want to resize?"
msgstr "Qual partiçăo você quer redimensionar?"
-#: ../../install_interactive.pm_.c:131
+#: ../../install_interactive.pm_.c:133
msgid "Resizing Windows partition"
msgstr "Computando limites do sistema de arquivo do Windows"
-#: ../../install_interactive.pm_.c:134
+#: ../../install_interactive.pm_.c:136
#, c-format
msgid ""
"The FAT resizer is unable to handle your partition, \n"
@@ -4738,7 +4826,7 @@ msgstr ""
"O redimensionar FAT é incapaz de manipular sua partiçăo, \n"
"o seguinte erro ocorreu: %s"
-#: ../../install_interactive.pm_.c:137
+#: ../../install_interactive.pm_.c:139
msgid ""
"Your Windows partition is too fragmented. Please reboot your computer under "
"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
@@ -4747,7 +4835,7 @@ msgstr ""
"Sua partiçăo Windows está muito fragmentada, favor rodar primeiro o "
"``defrag''"
-#: ../../install_interactive.pm_.c:138
+#: ../../install_interactive.pm_.c:140
#, fuzzy
msgid ""
"WARNING!\n"
@@ -4767,21 +4855,21 @@ msgstr ""
"entăo reiniciar a instalaçăo. Você também deveria fazer backup de seus\n"
"dados. Quando tiver certeza, pressione Ok."
-#: ../../install_interactive.pm_.c:148
+#: ../../install_interactive.pm_.c:150
msgid "Which size do you want to keep for Windows on"
msgstr "Quanto de espaço você quer deixar para o windows em"
-#: ../../install_interactive.pm_.c:149
+#: ../../install_interactive.pm_.c:151
#, c-format
msgid "partition %s"
msgstr "partiçăo %s"
-#: ../../install_interactive.pm_.c:156
+#: ../../install_interactive.pm_.c:158
#, c-format
msgid "FAT resizing failed: %s"
msgstr "Falha no redimensionamento FAT: %s"
-#: ../../install_interactive.pm_.c:171
+#: ../../install_interactive.pm_.c:173
msgid ""
"There is no FAT partition to resize or to use as loopback (or not enough "
"space left)"
@@ -4789,34 +4877,34 @@ msgstr ""
"Năo existem partiçőes FAT para redimensionar ou para usar como loopback (ou "
"năo existe espaço suficiente)"
-#: ../../install_interactive.pm_.c:177
+#: ../../install_interactive.pm_.c:179
msgid "Erase entire disk"
msgstr "Apague disco inteiro"
-#: ../../install_interactive.pm_.c:177
+#: ../../install_interactive.pm_.c:179
msgid "Remove Windows(TM)"
msgstr "Remover Windows(TM)"
-#: ../../install_interactive.pm_.c:180
+#: ../../install_interactive.pm_.c:182
msgid "You have more than one hard drive, which one do you install linux on?"
msgstr ""
"Você tem mais de um disco rígido, em qual deles você quer instalar o linux?"
-#: ../../install_interactive.pm_.c:183
+#: ../../install_interactive.pm_.c:185
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr ""
"Todas as partiçőes que existem e todos os dados serăo perdidos em disco %s"
-#: ../../install_interactive.pm_.c:191
+#: ../../install_interactive.pm_.c:193
msgid "Custom disk partitioning"
msgstr "Particionamento de disco personalizada"
-#: ../../install_interactive.pm_.c:195
+#: ../../install_interactive.pm_.c:197
msgid "Use fdisk"
msgstr "Usar fdisk"
-#: ../../install_interactive.pm_.c:198
+#: ../../install_interactive.pm_.c:200
#, c-format
msgid ""
"You can now partition %s.\n"
@@ -4825,28 +4913,28 @@ msgstr ""
"Você pode agorar particionar %s.\n"
"Quando terminar, năo esqueça de salvar usando `w'"
-#: ../../install_interactive.pm_.c:227
+#: ../../install_interactive.pm_.c:229
msgid "You don't have enough free space on your Windows partition"
msgstr "Você năo tem espaço livre na sua partiçăo Windows"
-#: ../../install_interactive.pm_.c:243
+#: ../../install_interactive.pm_.c:245
msgid "I can't find any room for installing"
msgstr "Eu năo achei espaço para instalaçăo"
-#: ../../install_interactive.pm_.c:246
+#: ../../install_interactive.pm_.c:248
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr "O particionador DrakX encontrou as soluçőes seguintes:"
-#: ../../install_interactive.pm_.c:250
+#: ../../install_interactive.pm_.c:252
#, c-format
msgid "Partitioning failed: %s"
msgstr "O particionamento falhou: %s"
-#: ../../install_interactive.pm_.c:260
+#: ../../install_interactive.pm_.c:262
msgid "Bringing up the network"
msgstr "Trazendo (acessando) a rede"
-#: ../../install_interactive.pm_.c:265
+#: ../../install_interactive.pm_.c:267
msgid "Bringing down the network"
msgstr "Fechando (desconectando) a rede"
@@ -4858,12 +4946,12 @@ msgstr ""
"Um erro ocorreu, mas eu năo sei como lidar com ele.\n"
"Continue a seu próprio risco."
-#: ../../install_steps.pm_.c:210
+#: ../../install_steps.pm_.c:211
#, c-format
msgid "Duplicate mount point %s"
msgstr "Ponto de montagem %s duplicado"
-#: ../../install_steps.pm_.c:379
+#: ../../install_steps.pm_.c:380
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -4875,12 +4963,12 @@ msgstr ""
"Cheque o cdrom em um computador instalado usando \"rpm -qpl Mandarke/RPMS/*."
"rpm\"\n"
-#: ../../install_steps.pm_.c:451
+#: ../../install_steps.pm_.c:452
#, c-format
msgid "Welcome to %s"
msgstr "Bem-vindo à %s"
-#: ../../install_steps.pm_.c:530 ../../install_steps.pm_.c:770
+#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:772
msgid "No floppy drive available"
msgstr "Nenhum drive de disquete disponível"
@@ -4911,71 +4999,71 @@ msgstr "Classe de Instalaçăo"
msgid "Please choose one of the following classes of installation:"
msgstr "Por favor escolhe uma das seguintes classes de instalaçăo:"
-#: ../../install_steps_gtk.pm_.c:243 ../../install_steps_interactive.pm_.c:694
+#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:678
msgid "Package Group Selection"
msgstr "Seleçăo de Grupo de Pacotes"
-#: ../../install_steps_gtk.pm_.c:276 ../../install_steps_interactive.pm_.c:709
+#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:693
msgid "Individual package selection"
msgstr "Seleçăo individual de pacotes"
-#: ../../install_steps_gtk.pm_.c:299 ../../install_steps_interactive.pm_.c:633
+#: ../../install_steps_gtk.pm_.c:293 ../../install_steps_interactive.pm_.c:617
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Tamanho total: %d / %d MB"
-#: ../../install_steps_gtk.pm_.c:341
+#: ../../install_steps_gtk.pm_.c:335
msgid "Bad package"
msgstr "Pacote defeituoso"
-#: ../../install_steps_gtk.pm_.c:342
+#: ../../install_steps_gtk.pm_.c:336
#, c-format
msgid "Name: %s\n"
msgstr "Nome: %s\n"
-#: ../../install_steps_gtk.pm_.c:343
+#: ../../install_steps_gtk.pm_.c:337
#, c-format
msgid "Version: %s\n"
msgstr "Versăo: %s\n"
-#: ../../install_steps_gtk.pm_.c:344
+#: ../../install_steps_gtk.pm_.c:338
#, c-format
msgid "Size: %d KB\n"
msgstr "Tamanho: %d KB\n"
-#: ../../install_steps_gtk.pm_.c:345
+#: ../../install_steps_gtk.pm_.c:339
#, c-format
msgid "Importance: %s\n"
msgstr "Importância: %s\n"
-#: ../../install_steps_gtk.pm_.c:367
+#: ../../install_steps_gtk.pm_.c:361
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr ""
"Você năo pode selecionar esse pacote pois năo existe espaço livre para "
"instalá-lo"
-#: ../../install_steps_gtk.pm_.c:372
+#: ../../install_steps_gtk.pm_.c:366
msgid "The following packages are going to be installed"
msgstr "Os seguintes pacotes serăo instalados"
-#: ../../install_steps_gtk.pm_.c:373
+#: ../../install_steps_gtk.pm_.c:367
msgid "The following packages are going to be removed"
msgstr "Os seguintes pacotes serăo removidos"
-#: ../../install_steps_gtk.pm_.c:385
+#: ../../install_steps_gtk.pm_.c:379
msgid "You can't select/unselect this package"
msgstr "Você năo pode selecionar/deselecionar esse pacote"
-#: ../../install_steps_gtk.pm_.c:397
+#: ../../install_steps_gtk.pm_.c:391
msgid "This is a mandatory package, it can't be unselected"
msgstr "Esse é um pacote obrigatório, năo pode ser deselecionado"
-#: ../../install_steps_gtk.pm_.c:399
+#: ../../install_steps_gtk.pm_.c:393
msgid "You can't unselect this package. It is already installed"
msgstr "Você năo pode deselecionar esse pacote. Ele já está instalado"
-#: ../../install_steps_gtk.pm_.c:402
+#: ../../install_steps_gtk.pm_.c:396
msgid ""
"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
@@ -4983,77 +5071,77 @@ msgstr ""
"Esse pacote tem que ser atualizado\n"
"Tem certeza que você quer deselecioná-lo?"
-#: ../../install_steps_gtk.pm_.c:405
+#: ../../install_steps_gtk.pm_.c:399
msgid "You can't unselect this package. It must be upgraded"
msgstr "Você năo pode deselecionar essa pacote. Ele tem que ser atualizado"
-#: ../../install_steps_gtk.pm_.c:410
+#: ../../install_steps_gtk.pm_.c:404
msgid "Show automatically selected packages"
msgstr "Mostra automaticamente os pacotes selecionados"
-#: ../../install_steps_gtk.pm_.c:411 ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_gtk.pm_.c:405 ../../install_steps_interactive.pm_.c:255
#: ../../install_steps_interactive.pm_.c:259
-#: ../../standalone/drakbackup_.c:3600
+#: ../../standalone/drakbackup_.c:4257
msgid "Install"
msgstr "Instalar"
-#: ../../install_steps_gtk.pm_.c:414
+#: ../../install_steps_gtk.pm_.c:408
#, fuzzy
msgid "Load/Save on floppy"
msgstr "Salvar em disquete"
-#: ../../install_steps_gtk.pm_.c:415
+#: ../../install_steps_gtk.pm_.c:409
#, fuzzy
msgid "Updating package selection"
msgstr "Salvar seleçăo de pacotes"
-#: ../../install_steps_gtk.pm_.c:420
+#: ../../install_steps_gtk.pm_.c:414
#, fuzzy
msgid "Minimal install"
msgstr "Sair da instalaçăo"
-#: ../../install_steps_gtk.pm_.c:435 ../../install_steps_interactive.pm_.c:538
+#: ../../install_steps_gtk.pm_.c:429 ../../install_steps_interactive.pm_.c:522
msgid "Choose the packages you want to install"
msgstr "Escolha os pacotes que você quer instalar"
-#: ../../install_steps_gtk.pm_.c:451 ../../install_steps_interactive.pm_.c:778
+#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:762
msgid "Installing"
msgstr "Instalando"
-#: ../../install_steps_gtk.pm_.c:457
+#: ../../install_steps_gtk.pm_.c:451
msgid "Estimating"
msgstr "Estimando"
-#: ../../install_steps_gtk.pm_.c:464
+#: ../../install_steps_gtk.pm_.c:458
msgid "Time remaining "
msgstr "Tempo restante "
-#: ../../install_steps_gtk.pm_.c:476
+#: ../../install_steps_gtk.pm_.c:470
msgid "Please wait, preparing installation..."
msgstr "Por favor aguarde, preparando instalaçăo"
-#: ../../install_steps_gtk.pm_.c:560
+#: ../../install_steps_gtk.pm_.c:554
#, c-format
msgid "%d packages"
msgstr "%d pacotes"
-#: ../../install_steps_gtk.pm_.c:565
+#: ../../install_steps_gtk.pm_.c:559
#, c-format
msgid "Installing package %s"
msgstr "Instalando pacote %s"
-#: ../../install_steps_gtk.pm_.c:602 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:802
+#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:786
#: ../../standalone/drakautoinst_.c:202
msgid "Accept"
msgstr "Aceitar"
-#: ../../install_steps_gtk.pm_.c:602 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:802
+#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:786
msgid "Refuse"
msgstr "Recusar"
-#: ../../install_steps_gtk.pm_.c:603 ../../install_steps_interactive.pm_.c:803
+#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:787
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -5069,17 +5157,17 @@ msgstr ""
"Se você năo o tiver, aperte em Cancelar para evitar a instalaçăo desse Cd-"
"Rom."
-#: ../../install_steps_gtk.pm_.c:617 ../../install_steps_gtk.pm_.c:621
-#: ../../install_steps_interactive.pm_.c:815
-#: ../../install_steps_interactive.pm_.c:819
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_gtk.pm_.c:615
+#: ../../install_steps_interactive.pm_.c:799
+#: ../../install_steps_interactive.pm_.c:803
msgid "Go on anyway?"
msgstr "Continuar mesmo assim?"
-#: ../../install_steps_gtk.pm_.c:617 ../../install_steps_interactive.pm_.c:815
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:799
msgid "There was an error ordering packages:"
msgstr "Houve um erro ordenando os pacotes:"
-#: ../../install_steps_gtk.pm_.c:621 ../../install_steps_interactive.pm_.c:819
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:803
msgid "There was an error installing packages:"
msgstr "Houve um erro instalando os pacotes:"
@@ -5399,7 +5487,7 @@ msgid "Are you sure you refuse the licence?"
msgstr ""
#: ../../install_steps_interactive.pm_.c:211
-#: ../../install_steps_interactive.pm_.c:1038
+#: ../../install_steps_interactive.pm_.c:1023
#: ../../standalone/keyboarddrake_.c:31
msgid "Keyboard"
msgstr "Teclado"
@@ -5451,11 +5539,11 @@ msgstr "Salvar seleçăo de pacotes"
msgid "Please choose the type of your mouse."
msgstr "Favor escolher o tipo do seu mouse."
-#: ../../install_steps_interactive.pm_.c:281 ../../standalone/mousedrake_.c:59
+#: ../../install_steps_interactive.pm_.c:281 ../../standalone/mousedrake_.c:60
msgid "Mouse Port"
msgstr "Porta do Mouse"
-#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:61
msgid "Please choose on which serial port your mouse is connected to."
msgstr "Favor escolher em qual porta serial seu mouse está conectado."
@@ -5487,113 +5575,90 @@ msgstr "Configurando IDE"
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:336
+#: ../../install_steps_interactive.pm_.c:338
msgid "No partition available"
msgstr "sem partiçőes disponíveis"
-#: ../../install_steps_interactive.pm_.c:339
+#: ../../install_steps_interactive.pm_.c:341
msgid "Scanning partitions to find mount points"
msgstr "Escanenado partiçőes para encontrar pontos de montagem"
-#: ../../install_steps_interactive.pm_.c:347
+#: ../../install_steps_interactive.pm_.c:349
msgid "Choose the mount points"
msgstr "Escolha os ponto de montagem"
-#: ../../install_steps_interactive.pm_.c:366
-#, c-format
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to not allow DrakX to modify the partition table.\n"
-"(the error is %s)\n"
-"\n"
-"Do you agree to loose all the partitions?\n"
-msgstr ""
-"Eu năo consigo ler sua tabela de partiçăo, é muito defeituosa para mim :(\n"
-"Eu posso tentar continuar limpando as partiçőes defeituosas (TODOS OS DADOS\n"
-"serăo perdidos!). A outra soluçăo é năo deixar o DrakX modificar a tabela\n"
-"de particăo. (o erro é %s)\n"
-
#: ../../install_steps_interactive.pm_.c:379
msgid ""
-"DiskDrake failed to read correctly the partition table.\n"
-"Continue at your own risk!"
-msgstr ""
-"O DiskDrake falhou na leitura da tabela de partiçăo.\n"
-"Continue a seu próprio risco!"
-
-#: ../../install_steps_interactive.pm_.c:396
-msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:405
+#: ../../install_steps_interactive.pm_.c:388
#, fuzzy
msgid "No root partition found to perform an upgrade"
msgstr "Escolha as partiçőes que você quer formatar"
-#: ../../install_steps_interactive.pm_.c:406
+#: ../../install_steps_interactive.pm_.c:389
msgid "Root Partition"
msgstr "Partiçăo Root"
-#: ../../install_steps_interactive.pm_.c:407
+#: ../../install_steps_interactive.pm_.c:390
msgid "What is the root partition (/) of your system?"
msgstr "Qual a partiçăo root (/) do seu sistema?"
-#: ../../install_steps_interactive.pm_.c:421
+#: ../../install_steps_interactive.pm_.c:404
msgid "You need to reboot for the partition table modifications to take place"
msgstr ""
"Você precisa reiniciar para que as modificaçőes na tabela de partiçăo tenham "
"efeito"
-#: ../../install_steps_interactive.pm_.c:445
+#: ../../install_steps_interactive.pm_.c:428
msgid "Choose the partitions you want to format"
msgstr "Escolha as partiçőes que você quer formatar"
-#: ../../install_steps_interactive.pm_.c:446
+#: ../../install_steps_interactive.pm_.c:429
msgid "Check bad blocks?"
msgstr "Checar blocos defeituosos?"
-#: ../../install_steps_interactive.pm_.c:473
+#: ../../install_steps_interactive.pm_.c:456
msgid "Formatting partitions"
msgstr "Formatando partiçőes"
-#: ../../install_steps_interactive.pm_.c:475
+#: ../../install_steps_interactive.pm_.c:458
#, c-format
msgid "Creating and formatting file %s"
msgstr "Criando e formatando arquivo %s"
-#: ../../install_steps_interactive.pm_.c:480
+#: ../../install_steps_interactive.pm_.c:463
#, c-format
msgid ""
"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
"you can loose data)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:482
+#: ../../install_steps_interactive.pm_.c:465
msgid "Not enough swap space to fulfill installation, please add some"
msgstr "Sem swap suficiente para completar a instalaçăo, favor adicionar mais"
-#: ../../install_steps_interactive.pm_.c:489
+#: ../../install_steps_interactive.pm_.c:472
#, fuzzy
msgid "Looking for available packages and rebuilding rpm database..."
msgstr "Procurando por pacotes disponíveis"
-#: ../../install_steps_interactive.pm_.c:490
+#: ../../install_steps_interactive.pm_.c:473
msgid "Looking for available packages..."
msgstr "Procurando por pacotes disponíveis"
-#: ../../install_steps_interactive.pm_.c:493
+#: ../../install_steps_interactive.pm_.c:476
#, fuzzy
msgid "Looking at packages already installed..."
msgstr "Você năo pode deselecionar esse pacote. Ele já está instalado"
-#: ../../install_steps_interactive.pm_.c:497
+#: ../../install_steps_interactive.pm_.c:480
msgid "Finding packages to upgrade..."
msgstr "Procurando pacotes à atualizar"
-#: ../../install_steps_interactive.pm_.c:515
+#: ../../install_steps_interactive.pm_.c:498
#, c-format
msgid ""
"Your system does not have enough space left for installation or upgrade (%d "
@@ -5601,63 +5666,63 @@ msgid ""
msgstr ""
"Seu sistema năo tem espaço suficiente para instalçăo ou atualizaçăo (%d > %d)"
-#: ../../install_steps_interactive.pm_.c:550
+#: ../../install_steps_interactive.pm_.c:534
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:553
+#: ../../install_steps_interactive.pm_.c:537
#, fuzzy
msgid "Load from floppy"
msgstr "Restaurar do disquete"
-#: ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_interactive.pm_.c:539
#, fuzzy
msgid "Loading from floppy"
msgstr "Restaurar do disquete"
-#: ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_interactive.pm_.c:539
#, fuzzy
msgid "Package selection"
msgstr "Seleçăo de Grupo de Pacotes"
-#: ../../install_steps_interactive.pm_.c:560
+#: ../../install_steps_interactive.pm_.c:544
#, fuzzy
msgid "Insert a floppy containing package selection"
msgstr "Insira um disquete no drive %s"
-#: ../../install_steps_interactive.pm_.c:572
+#: ../../install_steps_interactive.pm_.c:556
msgid "Save on floppy"
msgstr "Salvar em disquete"
-#: ../../install_steps_interactive.pm_.c:646
+#: ../../install_steps_interactive.pm_.c:630
msgid "Selected size is larger than available space"
msgstr "O tamanho escolhido é maior que o espaço disponível"
-#: ../../install_steps_interactive.pm_.c:660
+#: ../../install_steps_interactive.pm_.c:644
msgid "Type of install"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:661
+#: ../../install_steps_interactive.pm_.c:645
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:664
+#: ../../install_steps_interactive.pm_.c:648
msgid "With X"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:666
+#: ../../install_steps_interactive.pm_.c:650
msgid "With basic documentation (recommended!)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:667
+#: ../../install_steps_interactive.pm_.c:651
msgid "Truly minimal install (especially no urpmi)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:752
+#: ../../install_steps_interactive.pm_.c:736
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -5667,16 +5732,16 @@ msgstr ""
"Se você năo tiver nenhum desses CDs, clique em Cancelar.\n"
"Se apenas alguns CDs estiverem faltando, desmarque-os, entăo clique em Ok."
-#: ../../install_steps_interactive.pm_.c:757
+#: ../../install_steps_interactive.pm_.c:741
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "Cd-Rom rotualdo \"%s\""
-#: ../../install_steps_interactive.pm_.c:778
+#: ../../install_steps_interactive.pm_.c:762
msgid "Preparing installation"
msgstr "Preparando instalaçăo"
-#: ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:771
#, c-format
msgid ""
"Installing package %s\n"
@@ -5685,21 +5750,21 @@ msgstr ""
"Instalando pacote %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:833
+#: ../../install_steps_interactive.pm_.c:817
msgid "Post-install configuration"
msgstr "Configuraçăo pós-instalaçăo"
-#: ../../install_steps_interactive.pm_.c:839
+#: ../../install_steps_interactive.pm_.c:823
#, fuzzy, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Insira um disquete no drive %s"
-#: ../../install_steps_interactive.pm_.c:845
+#: ../../install_steps_interactive.pm_.c:829
#, fuzzy, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Insira um disquete vazio no drive %s"
-#: ../../install_steps_interactive.pm_.c:865
+#: ../../install_steps_interactive.pm_.c:849
msgid ""
"You now have the opportunity to download encryption software.\n"
"\n"
@@ -5773,7 +5838,7 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:904
+#: ../../install_steps_interactive.pm_.c:888
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
"have been released after the distribution was released. They may\n"
@@ -5785,166 +5850,166 @@ msgid ""
"Do you want to install the updates ?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:919
+#: ../../install_steps_interactive.pm_.c:903
#, fuzzy
msgid ""
"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr ""
"Contactando o mirror (espelho) para pegar a lista de pacotes disponíveis"
-#: ../../install_steps_interactive.pm_.c:924
+#: ../../install_steps_interactive.pm_.c:908
msgid "Choose a mirror from which to get the packages"
msgstr "Escolha um mirror (espelho) de onde pegar os pacotes"
-#: ../../install_steps_interactive.pm_.c:933
+#: ../../install_steps_interactive.pm_.c:917
msgid "Contacting the mirror to get the list of available packages..."
msgstr ""
"Contactando o mirror (espelho) para pegar a lista de pacotes disponíveis"
-#: ../../install_steps_interactive.pm_.c:960
+#: ../../install_steps_interactive.pm_.c:945
msgid "Which is your timezone?"
msgstr "Qual é o seu fuso horário?"
-#: ../../install_steps_interactive.pm_.c:965
+#: ../../install_steps_interactive.pm_.c:950
#, fuzzy
msgid "Hardware clock set to GMT"
msgstr "O seu relógio do hardware está configurado como GMT?"
-#: ../../install_steps_interactive.pm_.c:966
+#: ../../install_steps_interactive.pm_.c:951
msgid "Automatic time synchronization (using NTP)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:973
+#: ../../install_steps_interactive.pm_.c:958
#, fuzzy
msgid "NTP Server"
msgstr "Servidor NIS"
-#: ../../install_steps_interactive.pm_.c:1007
-#: ../../install_steps_interactive.pm_.c:1015
+#: ../../install_steps_interactive.pm_.c:992
+#: ../../install_steps_interactive.pm_.c:1000
msgid "Remote CUPS server"
msgstr "Sevidor CUPS remoto"
-#: ../../install_steps_interactive.pm_.c:1008
+#: ../../install_steps_interactive.pm_.c:993
msgid "No printer"
msgstr "Nenhuma impressora"
-#: ../../install_steps_interactive.pm_.c:1025
+#: ../../install_steps_interactive.pm_.c:1010
#, fuzzy
msgid "Do you have an ISA sound card?"
msgstr "Você tem alguma outra?"
-#: ../../install_steps_interactive.pm_.c:1027
+#: ../../install_steps_interactive.pm_.c:1012
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1029
+#: ../../install_steps_interactive.pm_.c:1014
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1034 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1019 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Sumário"
-#: ../../install_steps_interactive.pm_.c:1037
+#: ../../install_steps_interactive.pm_.c:1022
msgid "Mouse"
msgstr "Mouse"
-#: ../../install_steps_interactive.pm_.c:1039
+#: ../../install_steps_interactive.pm_.c:1024
msgid "Timezone"
msgstr "Fuso horário"
-#: ../../install_steps_interactive.pm_.c:1040 ../../printerdrake.pm_.c:2728
-#: ../../printerdrake.pm_.c:2814
+#: ../../install_steps_interactive.pm_.c:1025 ../../printerdrake.pm_.c:2937
+#: ../../printerdrake.pm_.c:3026
msgid "Printer"
msgstr "Impressora"
-#: ../../install_steps_interactive.pm_.c:1042
+#: ../../install_steps_interactive.pm_.c:1027
msgid "ISDN card"
msgstr "Placa ISDN"
-#: ../../install_steps_interactive.pm_.c:1045
-#: ../../install_steps_interactive.pm_.c:1047
+#: ../../install_steps_interactive.pm_.c:1030
+#: ../../install_steps_interactive.pm_.c:1032
msgid "Sound card"
msgstr "Placa de som"
-#: ../../install_steps_interactive.pm_.c:1049
+#: ../../install_steps_interactive.pm_.c:1034
msgid "TV card"
msgstr "Placa de TV"
-#: ../../install_steps_interactive.pm_.c:1089
-#: ../../install_steps_interactive.pm_.c:1114
-#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1074
+#: ../../install_steps_interactive.pm_.c:1099
+#: ../../install_steps_interactive.pm_.c:1103
msgid "LDAP"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1090
-#: ../../install_steps_interactive.pm_.c:1114
-#: ../../install_steps_interactive.pm_.c:1127
+#: ../../install_steps_interactive.pm_.c:1075
+#: ../../install_steps_interactive.pm_.c:1099
+#: ../../install_steps_interactive.pm_.c:1112
#, fuzzy
msgid "NIS"
msgstr "Usar NIS"
-#: ../../install_steps_interactive.pm_.c:1091
-#: ../../install_steps_interactive.pm_.c:1114
-#: ../../install_steps_interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1141
+#: ../../install_steps_interactive.pm_.c:1076
+#: ../../install_steps_interactive.pm_.c:1099
+#: ../../install_steps_interactive.pm_.c:1120
+#: ../../install_steps_interactive.pm_.c:1126
#, fuzzy
msgid "Windows Domain"
msgstr "Domínio NIS"
-#: ../../install_steps_interactive.pm_.c:1092
-#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1077
+#: ../../install_steps_interactive.pm_.c:1099
#, fuzzy
msgid "Local files"
msgstr "Impressora local"
-#: ../../install_steps_interactive.pm_.c:1101
-#: ../../install_steps_interactive.pm_.c:1102 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1086
+#: ../../install_steps_interactive.pm_.c:1087 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Especificar senha do root"
-#: ../../install_steps_interactive.pm_.c:1103
+#: ../../install_steps_interactive.pm_.c:1088
msgid "No password"
msgstr "Nenhuma senha"
-#: ../../install_steps_interactive.pm_.c:1108
+#: ../../install_steps_interactive.pm_.c:1093
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr "Essa senha é muito simples (deve ter ao menos %d caracteres)"
-#: ../../install_steps_interactive.pm_.c:1114 ../../network/modem.pm_.c:49
+#: ../../install_steps_interactive.pm_.c:1099 ../../network/modem.pm_.c:49
#: ../../standalone/drakconnect_.c:625 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Autenticaçăo?"
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1107
#, fuzzy
msgid "Authentication LDAP"
msgstr "Autenticaçăo?"
-#: ../../install_steps_interactive.pm_.c:1123
+#: ../../install_steps_interactive.pm_.c:1108
msgid "LDAP Base dn"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1124
+#: ../../install_steps_interactive.pm_.c:1109
#, fuzzy
msgid "LDAP Server"
msgstr "servidor"
-#: ../../install_steps_interactive.pm_.c:1130
+#: ../../install_steps_interactive.pm_.c:1115
#, fuzzy
msgid "Authentication NIS"
msgstr "Autenticaçăo NIS"
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1116
msgid "NIS Domain"
msgstr "Domínio NIS"
-#: ../../install_steps_interactive.pm_.c:1132
+#: ../../install_steps_interactive.pm_.c:1117
msgid "NIS Server"
msgstr "Servidor NIS"
-#: ../../install_steps_interactive.pm_.c:1138
+#: ../../install_steps_interactive.pm_.c:1123
msgid ""
"For this to work for a W2K PDC, you will probably need to have the admin "
"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
@@ -5960,21 +6025,21 @@ msgid ""
"good."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1140
+#: ../../install_steps_interactive.pm_.c:1125
#, fuzzy
msgid "Authentication Windows Domain"
msgstr "Autenticaçăo?"
-#: ../../install_steps_interactive.pm_.c:1142
+#: ../../install_steps_interactive.pm_.c:1127
#, fuzzy
msgid "Domain Admin User Name"
msgstr "Nome do domínio"
-#: ../../install_steps_interactive.pm_.c:1143
+#: ../../install_steps_interactive.pm_.c:1128
msgid "Domain Admin Password"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1178
+#: ../../install_steps_interactive.pm_.c:1163
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
"depending on the normal bootloader. This is useful if you don't want to "
@@ -6006,19 +6071,19 @@ msgstr ""
"disquete\n"
"no drive e aperte em \"OK\"."
-#: ../../install_steps_interactive.pm_.c:1194
+#: ../../install_steps_interactive.pm_.c:1179
msgid "First floppy drive"
msgstr "Primeiro drive de disquete"
-#: ../../install_steps_interactive.pm_.c:1195
+#: ../../install_steps_interactive.pm_.c:1180
msgid "Second floppy drive"
msgstr "Segundo drive de disquete"
-#: ../../install_steps_interactive.pm_.c:1196 ../../printerdrake.pm_.c:2277
+#: ../../install_steps_interactive.pm_.c:1181 ../../printerdrake.pm_.c:2470
msgid "Skip"
msgstr "Pular"
-#: ../../install_steps_interactive.pm_.c:1201
+#: ../../install_steps_interactive.pm_.c:1186
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -6045,7 +6110,7 @@ msgstr ""
"com danos severos. Você quer criar um disco de inicializaçăo?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1207
+#: ../../install_steps_interactive.pm_.c:1192
msgid ""
"\n"
"\n"
@@ -6054,30 +6119,30 @@ msgid ""
"because XFS needs a very large driver)."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1215
+#: ../../install_steps_interactive.pm_.c:1200
msgid "Sorry, no floppy drive available"
msgstr "Desculpe, nenhum drive de disquete disponível"
-#: ../../install_steps_interactive.pm_.c:1219
+#: ../../install_steps_interactive.pm_.c:1204
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr ""
"Escolha o drive de disquete que você quer usar para criar o disco de "
"inicializaçăo"
-#: ../../install_steps_interactive.pm_.c:1223
+#: ../../install_steps_interactive.pm_.c:1208
#, fuzzy, c-format
msgid "Insert a floppy in %s"
msgstr "Insira um disquete no drive %s"
-#: ../../install_steps_interactive.pm_.c:1226
+#: ../../install_steps_interactive.pm_.c:1211
msgid "Creating bootdisk..."
msgstr "Criando disco de inicializaçăo"
-#: ../../install_steps_interactive.pm_.c:1233
+#: ../../install_steps_interactive.pm_.c:1218
msgid "Preparing bootloader..."
msgstr "Preparando gerenciador de inicializaçăo"
-#: ../../install_steps_interactive.pm_.c:1244
+#: ../../install_steps_interactive.pm_.c:1229
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -6085,11 +6150,11 @@ msgid ""
" need to use BootX to boot your machine"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1250
+#: ../../install_steps_interactive.pm_.c:1235
msgid "Do you want to use aboot?"
msgstr "Você quer usar o aboot?"
-#: ../../install_steps_interactive.pm_.c:1253
+#: ../../install_steps_interactive.pm_.c:1238
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -6097,19 +6162,19 @@ msgstr ""
"Erro instalando o aboot, \n"
"tentar forçar a instalaçăo, mesmo que isso destrua a primeira partiçăo?"
-#: ../../install_steps_interactive.pm_.c:1260
+#: ../../install_steps_interactive.pm_.c:1245
#, fuzzy
msgid "Installing bootloader"
msgstr "Instalar gerenciador de inicializaçăo"
-#: ../../install_steps_interactive.pm_.c:1266
+#: ../../install_steps_interactive.pm_.c:1251
msgid "Installation of bootloader failed. The following error occured:"
msgstr ""
"A instalaçăo do gerenciador de inicializaçăo falhou. Ocorreram os seguintes "
"erros:"
-#: ../../install_steps_interactive.pm_.c:1274
-#, fuzzy, c-format
+#: ../../install_steps_interactive.pm_.c:1259
+#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
" enable the bootloader. If you don't see the bootloader prompt at\n"
@@ -6121,21 +6186,21 @@ msgstr ""
"Você pode precisar mudar seu dispostivo de boot Open Firmware\n"
" para ativar o gerenciado de boot. Se você năo ver o prompt dele ao\n"
" reiniciar, segure Command-Option-O-F ao reiniciar e digite:\n"
-" setenv boot-device $of_boot,\\\\:tbxi\n"
+" setenv boot-device %s,\\\\:tbxi\n"
" Entăo escreva: shut-down\n"
"No seu próximo boot, você deve ver o prompt do gerenciador de boot."
-#: ../../install_steps_interactive.pm_.c:1308
+#: ../../install_steps_interactive.pm_.c:1293
#: ../../standalone/drakautoinst_.c:79
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Insira um disquete vazio no drive %s"
-#: ../../install_steps_interactive.pm_.c:1312
+#: ../../install_steps_interactive.pm_.c:1297
msgid "Creating auto install floppy..."
msgstr "Criando disquete de auto instalaçăo"
-#: ../../install_steps_interactive.pm_.c:1323
+#: ../../install_steps_interactive.pm_.c:1308
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -6145,7 +6210,7 @@ msgstr ""
"\n"
"Você realmente quer sair agora?"
-#: ../../install_steps_interactive.pm_.c:1334
+#: ../../install_steps_interactive.pm_.c:1319
#, fuzzy, c-format
msgid ""
"Congratulations, installation is complete.\n"
@@ -6173,15 +6238,15 @@ msgstr ""
"Informaçőes sobre a configuraçăo do sistema estăo disponíveis no\n"
"capítulo pós-instalaçăo do Guia Oficial de Usuário Mandrake Linux."
-#: ../../install_steps_interactive.pm_.c:1347
+#: ../../install_steps_interactive.pm_.c:1332
msgid "http://www.mandrakelinux.com/en/90errata.php3"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1352
+#: ../../install_steps_interactive.pm_.c:1337
msgid "Generate auto install floppy"
msgstr "Criar disquete de auto instalaçăo"
-#: ../../install_steps_interactive.pm_.c:1354
+#: ../../install_steps_interactive.pm_.c:1339
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -6195,15 +6260,15 @@ msgstr ""
"\n"
"Você pode preferir repetir a instalaçăo.\n"
-#: ../../install_steps_interactive.pm_.c:1359
+#: ../../install_steps_interactive.pm_.c:1344
msgid "Automated"
msgstr "Automático"
-#: ../../install_steps_interactive.pm_.c:1359
+#: ../../install_steps_interactive.pm_.c:1344
msgid "Replay"
msgstr "Repetir"
-#: ../../install_steps_interactive.pm_.c:1362
+#: ../../install_steps_interactive.pm_.c:1347
msgid "Save packages selection"
msgstr "Salvar seleçăo de pacotes"
@@ -6212,7 +6277,8 @@ msgstr "Salvar seleçăo de pacotes"
msgid "Mandrake Linux Installation %s"
msgstr "Instalaçăo do Mandrake Linux %s"
-#: ../../install_steps_newt.pm_.c:34
+#. -PO This string must fit in a 80-char wide text screen
+#: ../../install_steps_newt.pm_.c:35
msgid ""
" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
msgstr ""
@@ -6232,22 +6298,22 @@ msgstr ""
msgid "Choose a file"
msgstr "Escolher açăo"
-#: ../../interactive.pm_.c:317
+#: ../../interactive.pm_.c:320
msgid "Advanced"
msgstr "Avançado"
-#: ../../interactive.pm_.c:318
+#: ../../interactive.pm_.c:321
msgid "Basic"
msgstr ""
-#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:155
-#: ../../printerdrake.pm_.c:1990
+#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:158
+#: ../../printerdrake.pm_.c:2124
msgid "<- Previous"
msgstr "<- Anterior"
#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
-#: ../../standalone/drakbackup_.c:3464 ../../standalone/drakbackup_.c:3491
-#: ../../standalone/drakbackup_.c:3517
+#: ../../standalone/drakbackup_.c:4112 ../../standalone/drakbackup_.c:4139
+#: ../../standalone/drakbackup_.c:4169 ../../standalone/drakbackup_.c:4195
#, fuzzy
msgid "Next"
msgstr "Próximo ->"
@@ -6315,385 +6381,385 @@ msgstr ""
msgid "Re-submit"
msgstr ""
-#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:152 ../../keyboard.pm_.c:187
msgid "Czech (QWERTZ)"
msgstr "Tcheco (QWERTZ)"
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:153 ../../keyboard.pm_.c:189
msgid "German"
msgstr "Alemăo"
-#: ../../keyboard.pm_.c:175
+#: ../../keyboard.pm_.c:154
msgid "Dvorak"
msgstr "Dvorak"
-#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:218
+#: ../../keyboard.pm_.c:155 ../../keyboard.pm_.c:197
msgid "Spanish"
msgstr "Espanhol"
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:156 ../../keyboard.pm_.c:198
msgid "Finnish"
msgstr "Filandês"
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:220
+#: ../../keyboard.pm_.c:157 ../../keyboard.pm_.c:199
msgid "French"
msgstr "Francês"
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:158 ../../keyboard.pm_.c:231
msgid "Norwegian"
msgstr "Norueguês"
-#: ../../keyboard.pm_.c:180
+#: ../../keyboard.pm_.c:159
msgid "Polish"
msgstr "Polonês"
-#: ../../keyboard.pm_.c:181 ../../keyboard.pm_.c:260
+#: ../../keyboard.pm_.c:160 ../../keyboard.pm_.c:239
msgid "Russian"
msgstr "Russo"
-#: ../../keyboard.pm_.c:183 ../../keyboard.pm_.c:262
+#: ../../keyboard.pm_.c:162 ../../keyboard.pm_.c:241
msgid "Swedish"
msgstr "Sueco"
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:278
+#: ../../keyboard.pm_.c:163 ../../keyboard.pm_.c:257
msgid "UK keyboard"
msgstr "Inglês (UK)"
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:279
+#: ../../keyboard.pm_.c:164 ../../keyboard.pm_.c:258
msgid "US keyboard"
msgstr "Americano (US)"
-#: ../../keyboard.pm_.c:187
+#: ../../keyboard.pm_.c:166
#, fuzzy
msgid "Albanian"
msgstr "Iraniano"
-#: ../../keyboard.pm_.c:188
+#: ../../keyboard.pm_.c:167
msgid "Armenian (old)"
msgstr "Armênio (velho)"
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:168
msgid "Armenian (typewriter)"
msgstr "Armênio (máquina de escrever)"
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:169
msgid "Armenian (phonetic)"
msgstr "Armênio (fonético)"
-#: ../../keyboard.pm_.c:195
+#: ../../keyboard.pm_.c:174
msgid "Azerbaidjani (latin)"
msgstr "Azerbaidjani (latino)"
-#: ../../keyboard.pm_.c:197
+#: ../../keyboard.pm_.c:176
msgid "Belgian"
msgstr "Belga"
-#: ../../keyboard.pm_.c:198
+#: ../../keyboard.pm_.c:177
#, fuzzy
msgid "Bengali"
msgstr "ativar"
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:178
#, fuzzy
msgid "Bulgarian (phonetic)"
msgstr "Armênio (fonético)"
-#: ../../keyboard.pm_.c:200
+#: ../../keyboard.pm_.c:179
#, fuzzy
msgid "Bulgarian (BDS)"
msgstr "Búlgaro"
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:180
msgid "Brazilian (ABNT-2)"
msgstr "Brasileiro (ABNT-2)"
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:183
#, fuzzy
msgid "Bosnian"
msgstr "Estoniano"
-#: ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:184
msgid "Belarusian"
msgstr "Bielorusso"
-#: ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:185
msgid "Swiss (German layout)"
msgstr "Suíço (layout Alemăo)"
-#: ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:186
msgid "Swiss (French layout)"
msgstr "Suíço (layout Francês)"
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:188
msgid "Czech (QWERTY)"
msgstr "Tcheco (QWERTY)"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:190
msgid "German (no dead keys)"
msgstr "Alemăo (sem teclas mortas)"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:191
msgid "Devanagari"
msgstr ""
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:192
msgid "Danish"
msgstr "Dinamarquês"
-#: ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:193
msgid "Dvorak (US)"
msgstr "Dvorak (US)"
-#: ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:194
msgid "Dvorak (Norwegian)"
msgstr "Dvorak (Norueguês)"
-#: ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:195
#, fuzzy
msgid "Dvorak (Swedish)"
msgstr "Dvorak (US)"
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:196
msgid "Estonian"
msgstr "Estoniano"
-#: ../../keyboard.pm_.c:221
+#: ../../keyboard.pm_.c:200
msgid "Georgian (\"Russian\" layout)"
msgstr "Georgiano (layout \"Russo\")"
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:201
msgid "Georgian (\"Latin\" layout)"
msgstr "Georgiano (layout \"Latin\")"
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:202
msgid "Greek"
msgstr "Grego"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:203
msgid "Gujarati"
msgstr ""
-#: ../../keyboard.pm_.c:225
+#: ../../keyboard.pm_.c:204
msgid "Gurmukhi"
msgstr ""
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:205
msgid "Hungarian"
msgstr "Húngaro"
-#: ../../keyboard.pm_.c:227
+#: ../../keyboard.pm_.c:206
msgid "Croatian"
msgstr "Croata"
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:207
msgid "Israeli"
msgstr "Israelense"
-#: ../../keyboard.pm_.c:229
+#: ../../keyboard.pm_.c:208
msgid "Israeli (Phonetic)"
msgstr "Israelense (Fonético)"
-#: ../../keyboard.pm_.c:230
+#: ../../keyboard.pm_.c:209
msgid "Iranian"
msgstr "Iraniano"
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:210
msgid "Icelandic"
msgstr "Islandês"
-#: ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:211
msgid "Italian"
msgstr "Italiano"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:212
msgid "Inuktitut"
msgstr ""
-#: ../../keyboard.pm_.c:234
+#: ../../keyboard.pm_.c:213
msgid "Japanese 106 keys"
msgstr "Japonês 106 teclas"
-#: ../../keyboard.pm_.c:237
+#: ../../keyboard.pm_.c:216
msgid "Korean keyboard"
msgstr "Koreano"
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:217
msgid "Latin American"
msgstr "Latino Americano"
-#: ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:218
#, fuzzy
msgid "Laotian"
msgstr "Lugar"
-#: ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:219
msgid "Lithuanian AZERTY (old)"
msgstr "Lituânio AZERTY (velho)"
-#: ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:221
msgid "Lithuanian AZERTY (new)"
msgstr "Lituânio AZERTY (novo)"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:222
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Lituânio \"número de colunas\" QWERTY"
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:223
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "Lituânio \"fonético\" QWERTY"
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:224
#, fuzzy
msgid "Latvian"
msgstr "Lugar"
-#: ../../keyboard.pm_.c:246
+#: ../../keyboard.pm_.c:225
msgid "Macedonian"
msgstr "Macedônio"
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:226
msgid "Myanmar (Burmese)"
msgstr ""
-#: ../../keyboard.pm_.c:248
+#: ../../keyboard.pm_.c:227
#, fuzzy
msgid "Mongolian (cyrillic)"
msgstr "Azerbaidjani (cirílico)"
-#: ../../keyboard.pm_.c:249
+#: ../../keyboard.pm_.c:228
msgid "Maltese (UK)"
msgstr ""
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:229
msgid "Maltese (US)"
msgstr ""
-#: ../../keyboard.pm_.c:251
+#: ../../keyboard.pm_.c:230
msgid "Dutch"
msgstr "Holandês"
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:232
msgid "Polish (qwerty layout)"
msgstr "Polonês (layout QWERTY)"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:233
msgid "Polish (qwertz layout)"
msgstr "Polonês (layout QWERTZ)"
-#: ../../keyboard.pm_.c:255
+#: ../../keyboard.pm_.c:234
msgid "Portuguese"
msgstr "Português"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:235
msgid "Canadian (Quebec)"
msgstr "Canadense (Quebec)"
-#: ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:237
#, fuzzy
msgid "Romanian (qwertz)"
msgstr "Russo (Yawerty)"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:238
#, fuzzy
msgid "Romanian (qwerty)"
msgstr "Russo (Yawerty)"
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:240
msgid "Russian (Yawerty)"
msgstr "Russo (Yawerty)"
-#: ../../keyboard.pm_.c:263
+#: ../../keyboard.pm_.c:242
msgid "Slovenian"
msgstr "Eslovênio"
-#: ../../keyboard.pm_.c:264
+#: ../../keyboard.pm_.c:243
msgid "Slovakian (QWERTZ)"
msgstr "Eslováquio (QWERTZ)"
-#: ../../keyboard.pm_.c:265
+#: ../../keyboard.pm_.c:244
msgid "Slovakian (QWERTY)"
msgstr "Eslováquio (QWERTY)"
-#: ../../keyboard.pm_.c:267
+#: ../../keyboard.pm_.c:246
#, fuzzy
msgid "Serbian (cyrillic)"
msgstr "Azerbaidjani (cirílico)"
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:248
msgid "Tamil (Unicode)"
msgstr ""
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:249
msgid "Tamil (TSCII)"
msgstr ""
-#: ../../keyboard.pm_.c:271
+#: ../../keyboard.pm_.c:250
msgid "Thai keyboard"
msgstr "Teclado Tailandês"
-#: ../../keyboard.pm_.c:273
+#: ../../keyboard.pm_.c:252
#, fuzzy
msgid "Tajik keyboard"
msgstr "Teclado Tailandês"
-#: ../../keyboard.pm_.c:274
+#: ../../keyboard.pm_.c:253
msgid "Turkish (traditional \"F\" model)"
msgstr "Turco (modelo \"F\" tradicional)"
-#: ../../keyboard.pm_.c:275
+#: ../../keyboard.pm_.c:254
msgid "Turkish (modern \"Q\" model)"
msgstr "Turco (modelo moderno \"Q\")"
-#: ../../keyboard.pm_.c:277
+#: ../../keyboard.pm_.c:256
msgid "Ukrainian"
msgstr "Ucraniano"
-#: ../../keyboard.pm_.c:280
+#: ../../keyboard.pm_.c:259
msgid "US keyboard (international)"
msgstr "Americano (Internacional)"
-#: ../../keyboard.pm_.c:281
+#: ../../keyboard.pm_.c:260
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "Vietnamita \"número de colunas\" QWERTY"
-#: ../../keyboard.pm_.c:282
+#: ../../keyboard.pm_.c:261
#, fuzzy
msgid "Yugoslavian (latin)"
msgstr "Iugoslávio (latin/cirílico)"
-#: ../../keyboard.pm_.c:289
+#: ../../keyboard.pm_.c:268
msgid "Right Alt key"
msgstr ""
-#: ../../keyboard.pm_.c:290
+#: ../../keyboard.pm_.c:269
msgid "Both Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:291
+#: ../../keyboard.pm_.c:270
msgid "Control and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:292
+#: ../../keyboard.pm_.c:271
msgid "CapsLock key"
msgstr ""
-#: ../../keyboard.pm_.c:293
+#: ../../keyboard.pm_.c:272
msgid "Ctrl and Alt keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:294
+#: ../../keyboard.pm_.c:273
msgid "Alt and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:295
+#: ../../keyboard.pm_.c:274
msgid "\"Menu\" key"
msgstr ""
-#: ../../keyboard.pm_.c:296
+#: ../../keyboard.pm_.c:275
msgid "Left \"Windows\" key"
msgstr ""
-#: ../../keyboard.pm_.c:297
+#: ../../keyboard.pm_.c:276
msgid "Right \"Windows\" key"
msgstr ""
@@ -6751,11 +6817,11 @@ msgstr "Mouse Genérico PS2 com roda"
msgid "GlidePoint"
msgstr "GlidePoint"
-#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:63
+#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:65
msgid "Kensington Thinking Mouse"
msgstr "Kensington Thinking Mouse"
-#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:59
+#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:61
msgid "Genius NetMouse"
msgstr "Genius NetMouse"
@@ -6763,115 +6829,124 @@ msgstr "Genius NetMouse"
msgid "Genius NetScroll"
msgstr "Genius NetScroll"
-#: ../../mouse.pm_.c:43 ../../mouse.pm_.c:68
+#: ../../mouse.pm_.c:39 ../../mouse.pm_.c:48
+#, fuzzy
+msgid "Microsoft Explorer"
+msgstr "Microsoft IntelliMouse"
+
+#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:70
msgid "1 button"
msgstr "1 botăo"
-#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:51
+#: ../../mouse.pm_.c:45 ../../mouse.pm_.c:53
msgid "Generic 2 Button Mouse"
msgstr "Mouse Genérico com 2 Botőes"
-#: ../../mouse.pm_.c:46
+#: ../../mouse.pm_.c:47
msgid "Wheel"
msgstr "Roda"
-#: ../../mouse.pm_.c:49
+#: ../../mouse.pm_.c:51
msgid "serial"
msgstr "serial"
-#: ../../mouse.pm_.c:52
+#: ../../mouse.pm_.c:54
msgid "Generic 3 Button Mouse"
msgstr "Mouse Genérico com 3 Botőes"
-#: ../../mouse.pm_.c:53
+#: ../../mouse.pm_.c:55
msgid "Microsoft IntelliMouse"
msgstr "Microsoft IntelliMouse"
-#: ../../mouse.pm_.c:54
+#: ../../mouse.pm_.c:56
msgid "Logitech MouseMan"
msgstr "Logitech MouseMan"
-#: ../../mouse.pm_.c:55
+#: ../../mouse.pm_.c:57
msgid "Mouse Systems"
msgstr "Mouse Systems"
-#: ../../mouse.pm_.c:57
+#: ../../mouse.pm_.c:59
msgid "Logitech CC Series"
msgstr "Logitech Série CC (serial)"
-#: ../../mouse.pm_.c:58
+#: ../../mouse.pm_.c:60
msgid "Logitech MouseMan+/FirstMouse+"
msgstr "Logitech MouseMan+/FirstMouse+"
-#: ../../mouse.pm_.c:60
+#: ../../mouse.pm_.c:62
msgid "MM Series"
msgstr "Série MM"
-#: ../../mouse.pm_.c:61
+#: ../../mouse.pm_.c:63
msgid "MM HitTablet"
msgstr "MM HitTablet"
-#: ../../mouse.pm_.c:62
+#: ../../mouse.pm_.c:64
msgid "Logitech Mouse (serial, old C7 type)"
msgstr "Mouse Logitech (serial, tipo C7 antigo)"
-#: ../../mouse.pm_.c:66
+#: ../../mouse.pm_.c:68
msgid "busmouse"
msgstr "busmouse"
-#: ../../mouse.pm_.c:69
+#: ../../mouse.pm_.c:71
msgid "2 buttons"
msgstr "2 botőes"
-#: ../../mouse.pm_.c:70
+#: ../../mouse.pm_.c:72
msgid "3 buttons"
msgstr "3 botőes"
-#: ../../mouse.pm_.c:73
+#: ../../mouse.pm_.c:75
msgid "none"
msgstr "nenhum"
-#: ../../mouse.pm_.c:75
+#: ../../mouse.pm_.c:77
msgid "No mouse"
msgstr "Nenhum Mouse"
-#: ../../mouse.pm_.c:445
+#: ../../mouse.pm_.c:482
msgid "Please test the mouse"
msgstr "Favor testar o mouse"
-#: ../../mouse.pm_.c:446
+#: ../../mouse.pm_.c:483
msgid "To activate the mouse,"
msgstr "Para ativar o mouse,"
-#: ../../mouse.pm_.c:447
+#: ../../mouse.pm_.c:484
msgid "MOVE YOUR WHEEL!"
msgstr "MOVA SUA RODA!"
-#: ../../my_gtk.pm_.c:156
+#: ../../my_gtk.pm_.c:64
+msgid "-adobe-utopia-regular-r-*-*-25-*-*-*-p-*-iso8859-*,*-r-*"
+msgstr ""
+
+#: ../../my_gtk.pm_.c:159
msgid "Finish"
msgstr "Terminar"
-#: ../../my_gtk.pm_.c:156 ../../printerdrake.pm_.c:1992
+#: ../../my_gtk.pm_.c:159 ../../printerdrake.pm_.c:2126
msgid "Next ->"
msgstr "Próximo ->"
-#: ../../my_gtk.pm_.c:284
+#: ../../my_gtk.pm_.c:287
msgid "Is this correct?"
msgstr "Isto está correto?"
-#: ../../my_gtk.pm_.c:356 ../../services.pm_.c:222
+#: ../../my_gtk.pm_.c:359 ../../services.pm_.c:222
msgid "Info"
msgstr "Informaçăo"
-#: ../../my_gtk.pm_.c:377
+#: ../../my_gtk.pm_.c:380
msgid "Expand Tree"
msgstr "Expandir Árvore"
-#: ../../my_gtk.pm_.c:378
+#: ../../my_gtk.pm_.c:381
msgid "Collapse Tree"
msgstr "Colapsar Árvore"
-#: ../../my_gtk.pm_.c:379
+#: ../../my_gtk.pm_.c:382
msgid "Toggle between flat and group sorted"
msgstr "Mudar entre organizaçăo plana ou em grupo"
@@ -6909,6 +6984,74 @@ msgstr "usar pppoe"
msgid "use pptp"
msgstr "usar pptp"
+#: ../../network/drakfirewall.pm_.c:12
+#, fuzzy
+msgid "Web Server"
+msgstr "servidor"
+
+#: ../../network/drakfirewall.pm_.c:17
+#, fuzzy
+msgid "Domain Name Server"
+msgstr "Nome do domínio"
+
+#: ../../network/drakfirewall.pm_.c:32
+#, fuzzy
+msgid "Mail Server"
+msgstr "Servidor, Bancos de dados"
+
+#: ../../network/drakfirewall.pm_.c:37
+#, fuzzy
+msgid "POP and IMAP Server"
+msgstr "servidor"
+
+#: ../../network/drakfirewall.pm_.c:111
+#, fuzzy
+msgid "No network card"
+msgstr "nenhuma placa de rede encontrada"
+
+#: ../../network/drakfirewall.pm_.c:129
+#, fuzzy
+msgid ""
+"drakfirewall configurator\n"
+"\n"
+"This configures a personal firewall for this Mandrake Linux machine.\n"
+"For a powerful dedicated firewall solution, please look to the\n"
+"specialized MandrakeSecurity Firewall distribution."
+msgstr ""
+"configurador pequenoFirewall\n"
+"\n"
+"Isso configura um firewall pessoal para essa máquina Mandrake Linux.\n"
+"Para um firewall dedicado potente, favor procurar a distribuiçăo\n"
+"especilizada MandrakeSecurity Firewall."
+
+#: ../../network/drakfirewall.pm_.c:147
+msgid "Which services would you like to allow the Internet to connect to?"
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:148
+msgid ""
+"You can enter miscellaneous ports. \n"
+"Valid examples are: 139/tcp 139/udp.\n"
+"Have a look at /etc/services for information."
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:154
+#, c-format
+msgid ""
+"Invalid port given: %s.\n"
+"The proper format is \"port/tcp\" or \"port/udp\", \n"
+"where port is between 1 and 65535."
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:162
+msgid "Everything (no firewall)"
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:164
+#, fuzzy
+msgid "Other ports"
+msgstr "Testar portas"
+
#: ../../network/ethernet.pm_.c:37
msgid ""
"Which dhcp client do you want to use?\n"
@@ -6925,7 +7068,7 @@ msgstr ""
"Nenhum adaptador de rede ethernet foi detectado em seu sistema.\n"
"Eu năo posso configurar esse tipo de conexăo."
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:247
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:240
msgid "Choose the network interface"
msgstr "Escolha a interface de rede"
@@ -6940,7 +7083,7 @@ msgstr ""
msgid "no network card found"
msgstr "nenhuma placa de rede encontrada"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:366
msgid "Configuring network"
msgstr "Configurando rede"
@@ -6956,7 +7099,7 @@ msgstr ""
"Seu nome do host deve ser um nome de host totalmente qualificado,\n"
"como por exemplo ``mybox.mylab.myco.com''."
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:370
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:371
msgid "Host name"
msgstr "Host name (nome do host)"
@@ -7254,13 +7397,13 @@ msgstr "Escolha o perfil a configurar:"
msgid "Use auto detection"
msgstr "Usar auto detecçăo"
-#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2930
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:3151
#: ../../standalone/drakconnect_.c:274 ../../standalone/drakconnect_.c:277
#: ../../standalone/drakfloppy_.c:145
msgid "Expert Mode"
msgstr "Modo expert"
-#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:283
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:386
msgid "Detecting devices..."
msgstr "Detectando dispositivos..."
@@ -7427,11 +7570,11 @@ msgstr "IP Automático"
msgid "Start at boot"
msgstr "Iniciado na inicializaçăo"
-#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:753
+#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:860
msgid "IP address should be in format 1.2.3.4"
msgstr "O endereço IP deve ser no formato 1.2.3.4"
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:367
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -7443,43 +7586,55 @@ msgstr ""
"como por exemplo ``mybox.mylab.myco.com'' .\n"
"Você também pode entrar como o endereço IP de um gateway se você tiver um"
-#: ../../network/network.pm_.c:371
+#: ../../network/network.pm_.c:372
msgid "DNS server"
msgstr "Servidor DNS"
-#: ../../network/network.pm_.c:372
+#: ../../network/network.pm_.c:373
#, c-format
msgid "Gateway (e.g. %s)"
msgstr ""
-#: ../../network/network.pm_.c:374
+#: ../../network/network.pm_.c:375
msgid "Gateway device"
msgstr "Dispositivo de gateway"
-#: ../../network/network.pm_.c:386
+#: ../../network/network.pm_.c:387
msgid "Proxies configuration"
msgstr "Configuraçăo de proxies"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:388
msgid "HTTP proxy"
msgstr "Proxy HTTP"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:389
msgid "FTP proxy"
msgstr "Proxy FTP"
-#: ../../network/network.pm_.c:389
+#: ../../network/network.pm_.c:390
msgid "Track network card id (useful for laptops)"
msgstr ""
-#: ../../network/network.pm_.c:392
+#: ../../network/network.pm_.c:393
msgid "Proxy should be http://..."
msgstr "O proxy deve ser http://..."
-#: ../../network/network.pm_.c:393
+#: ../../network/network.pm_.c:394
msgid "Proxy should be ftp://..."
msgstr "O proxy deve ser ftp://..."
+#: ../../network/shorewall.pm_.c:24
+msgid "Firewalling configuration detected!"
+msgstr "Configuraçăo de Firewall detectado!"
+
+#: ../../network/shorewall.pm_.c:25
+msgid ""
+"Warning! An existing firewalling configuration has been detected. You may "
+"need some manual fix after installation."
+msgstr ""
+"Atençăo! Uma configuraçăo de firewall foi detectada. Talvez você terá que "
+"fazer alguma correçăo manual após a instalaçăo."
+
#: ../../network/tools.pm_.c:41
msgid "Internet configuration"
msgstr "Configuraçăo da Internet"
@@ -7588,15 +7743,15 @@ msgstr "Senha da conta"
msgid "United Kingdom"
msgstr ""
-#: ../../partition_table.pm_.c:606
+#: ../../partition_table.pm_.c:602
msgid "mount failed: "
msgstr "falhou ao montar: "
-#: ../../partition_table.pm_.c:670
+#: ../../partition_table.pm_.c:666
msgid "Extended partition not supported on this platform"
msgstr "Partiçăo extendida năo suportada nessa plataforma"
-#: ../../partition_table.pm_.c:688
+#: ../../partition_table.pm_.c:684
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
@@ -7606,21 +7761,21 @@ msgstr ""
"A única soluçăo é mover suas partiçőes primárias para ter o buraco próximo "
"das partiçőes extendidas"
-#: ../../partition_table.pm_.c:778
+#: ../../partition_table.pm_.c:774
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "Restauraçăo pelo arquivo %s falhou: %s"
-#: ../../partition_table.pm_.c:780
+#: ../../partition_table.pm_.c:776
msgid "Bad backup file"
msgstr "Arquivo de backup defeituoso"
-#: ../../partition_table.pm_.c:802
+#: ../../partition_table.pm_.c:798
#, c-format
msgid "Error writing to file %s"
msgstr "Erro gravando no arquivo %s"
-#: ../../partition_table/raw.pm_.c:187
+#: ../../partition_table/raw.pm_.c:189
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
@@ -7666,157 +7821,161 @@ msgstr ""
msgid "PDQ - Print, Don't Queue"
msgstr ""
-#: ../../printer.pm_.c:35 ../../printer.pm_.c:854
+#: ../../printer.pm_.c:34 ../../printer.pm_.c:1125
msgid "CUPS"
msgstr ""
-#: ../../printer.pm_.c:36
+#: ../../printer.pm_.c:35
msgid "LPRng"
msgstr ""
-#: ../../printer.pm_.c:37
+#: ../../printer.pm_.c:36
msgid "LPD"
msgstr ""
-#: ../../printer.pm_.c:38
+#: ../../printer.pm_.c:37
msgid "PDQ"
msgstr ""
-#: ../../printer.pm_.c:50
+#: ../../printer.pm_.c:49
msgid "Local printer"
msgstr "Impressora local"
-#: ../../printer.pm_.c:51
+#: ../../printer.pm_.c:50
msgid "Remote printer"
msgstr "Impressora remota"
-#: ../../printer.pm_.c:52
+#: ../../printer.pm_.c:51
#, fuzzy
msgid "Printer on remote CUPS server"
msgstr "Sevidor CUPS remoto"
-#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:776
+#: ../../printer.pm_.c:52 ../../printerdrake.pm_.c:883
#, fuzzy
msgid "Printer on remote lpd server"
msgstr "Servidor lpd remoto"
-#: ../../printer.pm_.c:54
+#: ../../printer.pm_.c:53
msgid "Network printer (TCP/Socket)"
msgstr "Impressora da rede (TCP/Socket)"
-#: ../../printer.pm_.c:55
+#: ../../printer.pm_.c:54
#, fuzzy
msgid "Printer on SMB/Windows 95/98/NT server"
msgstr "SMB/Windows 95/98/NT"
-#: ../../printer.pm_.c:56
+#: ../../printer.pm_.c:55
#, fuzzy
msgid "Printer on NetWare server"
msgstr "Servidor de Impressăo"
-#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:780
+#: ../../printer.pm_.c:56 ../../printerdrake.pm_.c:887
#, fuzzy
msgid "Enter a printer device URI"
msgstr "Dispositivo de Impressăo URI"
-#: ../../printer.pm_.c:58
+#: ../../printer.pm_.c:57
msgid "Pipe job into a command"
msgstr ""
-#: ../../printer.pm_.c:487 ../../printer.pm_.c:678 ../../printer.pm_.c:1000
-#: ../../printerdrake.pm_.c:2070 ../../printerdrake.pm_.c:3189
+#: ../../printer.pm_.c:324 ../../printer.pm_.c:366 ../../printer.pm_.c:533
+msgid "Unknown Model"
+msgstr ""
+
+#: ../../printer.pm_.c:735 ../../printer.pm_.c:926 ../../printer.pm_.c:1318
+#: ../../printerdrake.pm_.c:2260 ../../printerdrake.pm_.c:3414
msgid "Unknown model"
msgstr ""
-#: ../../printer.pm_.c:515
+#: ../../printer.pm_.c:763
#, fuzzy
msgid "Local Printers"
msgstr "Impressora local"
-#: ../../printer.pm_.c:517 ../../printer.pm_.c:855
+#: ../../printer.pm_.c:765 ../../printer.pm_.c:1126
#, fuzzy
msgid "Remote Printers"
msgstr "Impressora remota"
-#: ../../printer.pm_.c:524 ../../printerdrake.pm_.c:301
+#: ../../printer.pm_.c:772 ../../printerdrake.pm_.c:404
#, c-format
msgid " on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:527 ../../printerdrake.pm_.c:303
+#: ../../printer.pm_.c:775 ../../printerdrake.pm_.c:406
#, c-format
msgid ", USB printer \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:532
+#: ../../printer.pm_.c:780
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:535
+#: ../../printer.pm_.c:783
msgid ", multi-function device on USB"
msgstr ""
-#: ../../printer.pm_.c:537
+#: ../../printer.pm_.c:785
msgid ", multi-function device on HP JetDirect"
msgstr ""
-#: ../../printer.pm_.c:539
+#: ../../printer.pm_.c:787
msgid ", multi-function device"
msgstr ""
-#: ../../printer.pm_.c:542
+#: ../../printer.pm_.c:790
#, fuzzy, c-format
msgid ", printing to %s"
msgstr "Erro gravando no arquivo %s"
-#: ../../printer.pm_.c:544
+#: ../../printer.pm_.c:792
#, c-format
msgid " on LPD server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:546
+#: ../../printer.pm_.c:794
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ""
-#: ../../printer.pm_.c:550
+#: ../../printer.pm_.c:798
#, c-format
msgid " on SMB/Windows server \"%s\", share \"%s\""
msgstr ""
-#: ../../printer.pm_.c:554
+#: ../../printer.pm_.c:802
#, c-format
msgid " on Novell server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:556
+#: ../../printer.pm_.c:804
#, c-format
msgid ", using command %s"
msgstr ""
-#: ../../printer.pm_.c:675 ../../printerdrake.pm_.c:1540
+#: ../../printer.pm_.c:923 ../../printerdrake.pm_.c:1656
msgid "Raw printer (No driver)"
msgstr ""
-#: ../../printer.pm_.c:824
+#: ../../printer.pm_.c:1095
#, fuzzy, c-format
msgid "(on %s)"
msgstr "(módulo %s)"
-#: ../../printer.pm_.c:826
+#: ../../printer.pm_.c:1097
msgid "(on this machine)"
msgstr ""
-#: ../../printer.pm_.c:851
+#: ../../printer.pm_.c:1122
#, fuzzy, c-format
msgid "On CUPS server \"%s\""
msgstr "IP do servidor CUPS"
-#: ../../printer.pm_.c:857 ../../printerdrake.pm_.c:2851
-#: ../../printerdrake.pm_.c:2862 ../../printerdrake.pm_.c:3078
-#: ../../printerdrake.pm_.c:3130 ../../printerdrake.pm_.c:3156
-#: ../../printerdrake.pm_.c:3326 ../../printerdrake.pm_.c:3328
+#: ../../printer.pm_.c:1128 ../../printerdrake.pm_.c:3071
+#: ../../printerdrake.pm_.c:3082 ../../printerdrake.pm_.c:3303
+#: ../../printerdrake.pm_.c:3355 ../../printerdrake.pm_.c:3381
+#: ../../printerdrake.pm_.c:3556 ../../printerdrake.pm_.c:3558
msgid " (Default)"
msgstr " (Default)"
@@ -7843,12 +8002,12 @@ msgstr ""
msgid "Printer auto-detection (Local, TCP/Socket, and SMB printers)"
msgstr ""
-#: ../../printerdrake.pm_.c:84 ../../printerdrake.pm_.c:2914
+#: ../../printerdrake.pm_.c:84 ../../printerdrake.pm_.c:3135
#, fuzzy
msgid "CUPS configuration"
msgstr "Configuraçăo LAN"
-#: ../../printerdrake.pm_.c:85 ../../printerdrake.pm_.c:2915
+#: ../../printerdrake.pm_.c:85 ../../printerdrake.pm_.c:3136
#, fuzzy
msgid "Specify CUPS server"
msgstr "Sevidor CUPS remoto"
@@ -7879,7 +8038,7 @@ msgstr ""
msgid "The IP address should look like 192.168.1.20"
msgstr "O endereço IP deve ser no formato 1.2.3.4"
-#: ../../printerdrake.pm_.c:95 ../../printerdrake.pm_.c:987
+#: ../../printerdrake.pm_.c:95 ../../printerdrake.pm_.c:1094
#, fuzzy
msgid "The port number should be an integer!"
msgstr "O número da porta deve ser numérico"
@@ -7888,7 +8047,7 @@ msgstr "O número da porta deve ser numérico"
msgid "CUPS server IP"
msgstr "IP do servidor CUPS"
-#: ../../printerdrake.pm_.c:103 ../../printerdrake.pm_.c:1007
+#: ../../printerdrake.pm_.c:103 ../../printerdrake.pm_.c:1114
msgid "Port"
msgstr "Porta"
@@ -7897,13 +8056,129 @@ msgstr "Porta"
msgid "Automatic CUPS configuration"
msgstr "Configuraçăo do estilo de inicializaçăo"
-#: ../../printerdrake.pm_.c:183 ../../printerdrake.pm_.c:192
-#: ../../printerdrake.pm_.c:2897 ../../printerdrake.pm_.c:3017
+#: ../../printerdrake.pm_.c:177 ../../printerdrake.pm_.c:247
+#: ../../printerdrake.pm_.c:1529 ../../printerdrake.pm_.c:1533
+#: ../../printerdrake.pm_.c:1651 ../../printerdrake.pm_.c:2203
+#: ../../printerdrake.pm_.c:2356 ../../printerdrake.pm_.c:2415
+#: ../../printerdrake.pm_.c:2488 ../../printerdrake.pm_.c:2509
+#: ../../printerdrake.pm_.c:2699 ../../printerdrake.pm_.c:2740
+#: ../../printerdrake.pm_.c:2745 ../../printerdrake.pm_.c:2779
+#: ../../printerdrake.pm_.c:2784 ../../printerdrake.pm_.c:2821
+#: ../../printerdrake.pm_.c:2874 ../../printerdrake.pm_.c:2894
+#: ../../printerdrake.pm_.c:2908 ../../printerdrake.pm_.c:2942
+#: ../../printerdrake.pm_.c:2988 ../../printerdrake.pm_.c:3006
+#: ../../printerdrake.pm_.c:3095 ../../printerdrake.pm_.c:3169
+#: ../../printerdrake.pm_.c:3471 ../../printerdrake.pm_.c:3526
+#: ../../printerdrake.pm_.c:3579 ../../standalone/printerdrake_.c:57
+msgid "Printerdrake"
+msgstr "Printerdrake"
+
+#: ../../printerdrake.pm_.c:178
+#, fuzzy
+msgid "Checking your system..."
+msgstr "Qual sistema de impressăo você quer usar?"
+
+#: ../../printerdrake.pm_.c:186
+msgid ""
+"There are no printers found which are directly connected to your machine"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:198
+#, fuzzy
+msgid ""
+"The following printers\n"
+"\n"
+msgstr "Os seguintes pacotes serăo removidos"
+
+#: ../../printerdrake.pm_.c:199
+#, fuzzy
+msgid ""
+"The following printer\n"
+"\n"
+msgstr "Os seguintes pacotes serăo removidos"
+
+#: ../../printerdrake.pm_.c:201
+msgid ""
+"\n"
+"and one unknown printer are "
+msgstr ""
+
+#: ../../printerdrake.pm_.c:203
+#, c-format
+msgid ""
+"\n"
+"and %d unknown printers are "
+msgstr ""
+
+#: ../../printerdrake.pm_.c:207
+msgid ""
+"\n"
+"are "
+msgstr ""
+
+#: ../../printerdrake.pm_.c:208
+msgid ""
+"\n"
+"is "
+msgstr ""
+
+#: ../../printerdrake.pm_.c:210
+#, fuzzy
+msgid "directly connected to your system"
+msgstr "Nenhum adaptador de rede em seu sistema!"
+
+#: ../../printerdrake.pm_.c:213
+msgid ""
+"\n"
+"There is one unknown printer directly connected to your system"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:215
+#, c-format
+msgid ""
+"\n"
+"There are %d unknown printers directly connected to your system"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:221
+#, fuzzy
+msgid " (Make sure that all your printers are connected and turned on).\n"
+msgstr "Favor escolher em qual porta serial seu modem está conectado."
+
+#: ../../printerdrake.pm_.c:235
+msgid ""
+"Do you want to enable printing on the printers mentioned above or on "
+"printers in the local network?\n"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:236
+#, fuzzy
+msgid "Do you want to enable printing on printers in the local network?\n"
+msgstr "Você quer testar a impressăo?"
+
+#: ../../printerdrake.pm_.c:238
+#, fuzzy
+msgid "Do you want to enable printing on the printers mentioned above?\n"
+msgstr "Você quer iniciar sua conexăo ao iniciar?"
+
+#: ../../printerdrake.pm_.c:239
+msgid "Are you sure that you want to set up printing on this machine?\n"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:240
+#, c-format
+msgid ""
+"NOTE: Depending on the printer model and the printing system up to %d MB of "
+"additional software will be installed."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:269 ../../printerdrake.pm_.c:278
+#: ../../printerdrake.pm_.c:3117 ../../printerdrake.pm_.c:3242
#, fuzzy
msgid "Add a new printer"
msgstr "Nenhuma impressora"
-#: ../../printerdrake.pm_.c:184
+#: ../../printerdrake.pm_.c:270
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7916,7 +8191,7 @@ msgid ""
"connection types."
msgstr ""
-#: ../../printerdrake.pm_.c:193
+#: ../../printerdrake.pm_.c:280
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7925,7 +8200,7 @@ msgid ""
"computer, connected directly to the network or to a remote Windows machine.\n"
"\n"
"If you have printer(s) connected to this machine, Please plug it/them in on "
-"this computer and turn it/them on so that they can be auto-detected. Also "
+"this computer and turn it/them on so that it/they can be auto-detected. Also "
"your network printer(s) and you Windows machines must be connected and "
"turned on.\n"
"\n"
@@ -7938,7 +8213,22 @@ msgid ""
"want to set up your printer(s) now."
msgstr ""
-#: ../../printerdrake.pm_.c:202
+#: ../../printerdrake.pm_.c:289 ../../printerdrake.pm_.c:306
+msgid ""
+"\n"
+"Welcome to the Printer Setup Wizard\n"
+"\n"
+"This wizard will help you to install your printer(s) connected to this "
+"computer.\n"
+"\n"
+"If you have printer(s) connected to this machine, Please plug it/them in on "
+"this computer and turn it/them on so that it/they can be auto-detected.\n"
+"\n"
+" Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
+"want to set up your printer(s) now."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:297
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7947,7 +8237,7 @@ msgid ""
"computer or connected directly to the network.\n"
"\n"
"If you have printer(s) connected to this machine, Please plug it/them in on "
-"this computer and turn it/them on so that they can be auto-detected. Also "
+"this computer and turn it/them on so that it/they can be auto-detected. Also "
"your network printer(s) must be connected and turned on.\n"
"\n"
"Note that auto-detecting printers on the network takes longer than the auto-"
@@ -7958,26 +8248,26 @@ msgid ""
"want to set up your printer(s) now."
msgstr ""
-#: ../../printerdrake.pm_.c:213
+#: ../../printerdrake.pm_.c:315
#, fuzzy
msgid "Auto-detect printers connected to this machine"
msgstr "Impressora remota"
-#: ../../printerdrake.pm_.c:215
+#: ../../printerdrake.pm_.c:318
msgid "Auto-detect printers connected directly to the local network"
msgstr ""
-#: ../../printerdrake.pm_.c:218
+#: ../../printerdrake.pm_.c:321
msgid "Auto-detect printers connected to machines running Microsoft Windows"
msgstr ""
-#: ../../printerdrake.pm_.c:245 ../../printerdrake.pm_.c:459
-#: ../../printerdrake.pm_.c:484
+#: ../../printerdrake.pm_.c:348 ../../printerdrake.pm_.c:562
+#: ../../printerdrake.pm_.c:587
#, fuzzy
msgid "Local Printer"
msgstr "Impressora local"
-#: ../../printerdrake.pm_.c:246
+#: ../../printerdrake.pm_.c:349
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -7991,50 +8281,50 @@ msgid ""
"Center."
msgstr ""
-#: ../../printerdrake.pm_.c:283 ../../printerdrake.pm_.c:474
-#: ../../printerdrake.pm_.c:683 ../../printerdrake.pm_.c:923
+#: ../../printerdrake.pm_.c:386 ../../printerdrake.pm_.c:577
+#: ../../printerdrake.pm_.c:790 ../../printerdrake.pm_.c:1030
#, fuzzy
msgid "Printer auto-detection"
msgstr "Usar auto detecçăo"
-#: ../../printerdrake.pm_.c:305
+#: ../../printerdrake.pm_.c:408
#, c-format
msgid ", network printer \"%s\", port %s"
msgstr ""
-#: ../../printerdrake.pm_.c:307
+#: ../../printerdrake.pm_.c:410
#, fuzzy, c-format
msgid ", printer \"%s\" on SMB/Windows server \"%s\""
msgstr "SMB/Windows 95/98/NT"
-#: ../../printerdrake.pm_.c:313
+#: ../../printerdrake.pm_.c:416
#, fuzzy, c-format
msgid "Detected %s"
msgstr "detectado %s"
-#: ../../printerdrake.pm_.c:317 ../../printerdrake.pm_.c:348
-#: ../../printerdrake.pm_.c:367
+#: ../../printerdrake.pm_.c:420 ../../printerdrake.pm_.c:451
+#: ../../printerdrake.pm_.c:470
#, c-format
msgid "Printer on parallel port \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:319 ../../printerdrake.pm_.c:350
-#: ../../printerdrake.pm_.c:372
+#: ../../printerdrake.pm_.c:422 ../../printerdrake.pm_.c:453
+#: ../../printerdrake.pm_.c:475
#, c-format
msgid "USB printer \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:321
+#: ../../printerdrake.pm_.c:424
#, fuzzy, c-format
msgid "Network printer \"%s\", port %s"
msgstr "Impressora da rede (TCP/Socket)"
-#: ../../printerdrake.pm_.c:323
+#: ../../printerdrake.pm_.c:426
#, fuzzy, c-format
msgid "Printer \"%s\" on SMB/Windows server \"%s\""
msgstr "SMB/Windows 95/98/NT"
-#: ../../printerdrake.pm_.c:460
+#: ../../printerdrake.pm_.c:563
msgid ""
"No local printer found! To manually install a printer enter a device name/"
"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
@@ -8042,34 +8332,34 @@ msgid ""
"printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:464
+#: ../../printerdrake.pm_.c:567
#, fuzzy
msgid "You must enter a device or file name!"
msgstr "Dispositivo de Impressăo URI"
-#: ../../printerdrake.pm_.c:475
+#: ../../printerdrake.pm_.c:578
#, fuzzy
msgid "No printer found!"
msgstr "Impressora local"
-#: ../../printerdrake.pm_.c:485
+#: ../../printerdrake.pm_.c:588
#, fuzzy
msgid "Available printers"
msgstr "Impressora local"
-#: ../../printerdrake.pm_.c:489
+#: ../../printerdrake.pm_.c:592
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:490
+#: ../../printerdrake.pm_.c:593
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up or enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:492
+#: ../../printerdrake.pm_.c:595
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
@@ -8077,7 +8367,7 @@ msgid ""
"configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:493
+#: ../../printerdrake.pm_.c:596
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
@@ -8085,38 +8375,38 @@ msgid ""
"customized printer configuration, turn on \"Manual configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:495
+#: ../../printerdrake.pm_.c:598
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:496
+#: ../../printerdrake.pm_.c:599
#, fuzzy
msgid "Please choose the port where your printer is connected to."
msgstr "Favor escolher em qual porta serial seu modem está conectado."
-#: ../../printerdrake.pm_.c:498
+#: ../../printerdrake.pm_.c:601
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:503
+#: ../../printerdrake.pm_.c:606
#, fuzzy
msgid "You must choose/enter a printer/device!"
msgstr "Dispositivo de Impressăo URI"
-#: ../../printerdrake.pm_.c:523
+#: ../../printerdrake.pm_.c:626
#, fuzzy
msgid "Manual configuration"
msgstr "Configuraçăo"
-#: ../../printerdrake.pm_.c:577
+#: ../../printerdrake.pm_.c:680
msgid "Remote lpd Printer Options"
msgstr "Opçőes da impressora lpd Remota"
-#: ../../printerdrake.pm_.c:578
+#: ../../printerdrake.pm_.c:681
#, fuzzy
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
@@ -8126,51 +8416,51 @@ msgstr ""
"dar o nome do host e o servidor de impressăo e o nome da\n"
"fila naquele servidor."
-#: ../../printerdrake.pm_.c:579
+#: ../../printerdrake.pm_.c:682
#, fuzzy
msgid "Remote host name"
msgstr "Nome do host remoto"
-#: ../../printerdrake.pm_.c:580
+#: ../../printerdrake.pm_.c:683
#, fuzzy
msgid "Remote printer name"
msgstr "Impressora remota"
-#: ../../printerdrake.pm_.c:583
+#: ../../printerdrake.pm_.c:686
#, fuzzy
msgid "Remote host name missing!"
msgstr "Nome do host remoto"
-#: ../../printerdrake.pm_.c:587
+#: ../../printerdrake.pm_.c:690
#, fuzzy
msgid "Remote printer name missing!"
msgstr "Nome do host remoto"
-#: ../../printerdrake.pm_.c:609 ../../printerdrake.pm_.c:1119
+#: ../../printerdrake.pm_.c:712 ../../printerdrake.pm_.c:1225
#, fuzzy, c-format
msgid "Detected model: %s %s"
msgstr "detectado %s"
-#: ../../printerdrake.pm_.c:683 ../../printerdrake.pm_.c:923
+#: ../../printerdrake.pm_.c:790 ../../printerdrake.pm_.c:1030
#, fuzzy
msgid "Scanning network..."
msgstr "Iniciando sua conexăo..."
-#: ../../printerdrake.pm_.c:692 ../../printerdrake.pm_.c:713
+#: ../../printerdrake.pm_.c:799 ../../printerdrake.pm_.c:820
#, c-format
msgid ", printer \"%s\" on server \"%s\""
msgstr ""
-#: ../../printerdrake.pm_.c:695 ../../printerdrake.pm_.c:716
+#: ../../printerdrake.pm_.c:802 ../../printerdrake.pm_.c:823
#, fuzzy, c-format
msgid "Printer \"%s\" on server \"%s\""
msgstr "Fechando (desconectando) a rede"
-#: ../../printerdrake.pm_.c:736
+#: ../../printerdrake.pm_.c:843
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "Opçőes de Impressăo SMB (Windows 9x/NT)"
-#: ../../printerdrake.pm_.c:737
+#: ../../printerdrake.pm_.c:844
#, fuzzy
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
@@ -8186,46 +8476,46 @@ msgstr ""
"qualquer informaçăo aplicável sobre nome de usuário, senha e grupo de "
"trabalho."
-#: ../../printerdrake.pm_.c:738
+#: ../../printerdrake.pm_.c:845
msgid ""
" If the desired printer was auto-detected, simply choose it from the list "
"and then add user name, password, and/or workgroup if needed."
msgstr ""
-#: ../../printerdrake.pm_.c:739
+#: ../../printerdrake.pm_.c:846
msgid "SMB server host"
msgstr "Host servidor SMB"
-#: ../../printerdrake.pm_.c:740
+#: ../../printerdrake.pm_.c:847
msgid "SMB server IP"
msgstr "IP do servidor SMB"
-#: ../../printerdrake.pm_.c:741
+#: ../../printerdrake.pm_.c:848
msgid "Share name"
msgstr "Nome compartilhado"
-#: ../../printerdrake.pm_.c:744
+#: ../../printerdrake.pm_.c:851
msgid "Workgroup"
msgstr "Grupo de trabalho"
-#: ../../printerdrake.pm_.c:746
+#: ../../printerdrake.pm_.c:853
#, fuzzy
msgid "Auto-detected"
msgstr "Usar auto detecçăo"
-#: ../../printerdrake.pm_.c:757
+#: ../../printerdrake.pm_.c:864
msgid "Either the server name or the server's IP must be given!"
msgstr ""
-#: ../../printerdrake.pm_.c:761
+#: ../../printerdrake.pm_.c:868
msgid "Samba share name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:767
+#: ../../printerdrake.pm_.c:874
msgid "SECURITY WARNING!"
msgstr ""
-#: ../../printerdrake.pm_.c:768
+#: ../../printerdrake.pm_.c:875
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -8249,7 +8539,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:778
+#: ../../printerdrake.pm_.c:885
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -8258,7 +8548,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:781
+#: ../../printerdrake.pm_.c:888
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
@@ -8266,11 +8556,11 @@ msgid ""
"Do you really want to continue setting up this printer as you are doing now?"
msgstr ""
-#: ../../printerdrake.pm_.c:853
+#: ../../printerdrake.pm_.c:960
msgid "NetWare Printer Options"
msgstr "Opçőes de Impressăo NetWare"
-#: ../../printerdrake.pm_.c:854
+#: ../../printerdrake.pm_.c:961
#, fuzzy
msgid ""
"To print on a NetWare printer, you need to provide the NetWare print server "
@@ -8283,44 +8573,44 @@ msgstr ""
"do host TCP/IP!) como também o nome da fila de impressăo para a impressora\n"
"que você deseja acessar como qualquer nome de usuário e senha aplicável."
-#: ../../printerdrake.pm_.c:855
+#: ../../printerdrake.pm_.c:962
msgid "Printer Server"
msgstr "Servidor de Impressăo"
-#: ../../printerdrake.pm_.c:856
+#: ../../printerdrake.pm_.c:963
msgid "Print Queue Name"
msgstr "Nome da Fila de Impressăo"
-#: ../../printerdrake.pm_.c:861
+#: ../../printerdrake.pm_.c:968
msgid "NCP server name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:865
+#: ../../printerdrake.pm_.c:972
msgid "NCP queue name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:932 ../../printerdrake.pm_.c:952
+#: ../../printerdrake.pm_.c:1039 ../../printerdrake.pm_.c:1059
#, c-format
msgid ", host \"%s\", port %s"
msgstr ""
-#: ../../printerdrake.pm_.c:935 ../../printerdrake.pm_.c:955
+#: ../../printerdrake.pm_.c:1042 ../../printerdrake.pm_.c:1062
#, c-format
msgid "Host \"%s\", port %s"
msgstr ""
-#: ../../printerdrake.pm_.c:975
+#: ../../printerdrake.pm_.c:1082
#, fuzzy
msgid "TCP/Socket Printer Options"
msgstr "Opçőes da Impressora Socket"
-#: ../../printerdrake.pm_.c:977
+#: ../../printerdrake.pm_.c:1084
msgid ""
"Choose one of the auto-detected printers from the list or enter the hostname "
"or IP and the optional port number (default is 9100) into the input fields."
msgstr ""
-#: ../../printerdrake.pm_.c:978
+#: ../../printerdrake.pm_.c:1085
#, fuzzy
msgid ""
"To print to a TCP or socket printer, you need to provide the host name or IP "
@@ -8331,61 +8621,61 @@ msgstr ""
"Para imprimir em uma impressora socket, você precisa prover\n"
"o nome do host da impressora e a número da porta (opcional)."
-#: ../../printerdrake.pm_.c:983
+#: ../../printerdrake.pm_.c:1090
#, fuzzy
msgid "Printer host name or IP missing!"
msgstr "Nome do host da impressora"
-#: ../../printerdrake.pm_.c:1005
+#: ../../printerdrake.pm_.c:1112
#, fuzzy
msgid "Printer host name or IP"
msgstr "Nome do host da impressora"
-#: ../../printerdrake.pm_.c:1054 ../../printerdrake.pm_.c:1056
+#: ../../printerdrake.pm_.c:1160 ../../printerdrake.pm_.c:1162
msgid "Printer Device URI"
msgstr "Dispositivo de Impressăo URI"
-#: ../../printerdrake.pm_.c:1055
+#: ../../printerdrake.pm_.c:1161
msgid ""
"You can specify directly the URI to access the printer. The URI must fulfill "
"either the CUPS or the Foomatic specifications. Note that not all URI types "
"are supported by all the spoolers."
msgstr ""
-#: ../../printerdrake.pm_.c:1070
+#: ../../printerdrake.pm_.c:1176
msgid "A valid URI must be entered!"
msgstr ""
-#: ../../printerdrake.pm_.c:1402
+#: ../../printerdrake.pm_.c:1515
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
"Location fields do not need to be filled in. They are comments for the users."
msgstr ""
-#: ../../printerdrake.pm_.c:1403
+#: ../../printerdrake.pm_.c:1516
msgid "Name of printer"
msgstr "Nome da impressora"
-#: ../../printerdrake.pm_.c:1405
+#: ../../printerdrake.pm_.c:1518
msgid "Location"
msgstr "Lugar"
-#: ../../printerdrake.pm_.c:1416 ../../printerdrake.pm_.c:1536
+#: ../../printerdrake.pm_.c:1530 ../../printerdrake.pm_.c:1652
#, fuzzy
msgid "Reading printer database..."
msgstr "Lendo banco de dados de drivers do CUPS"
-#: ../../printerdrake.pm_.c:1419
+#: ../../printerdrake.pm_.c:1534
#, fuzzy
msgid "Preparing printer database..."
msgstr "Lendo banco de dados de drivers do CUPS"
-#: ../../printerdrake.pm_.c:1516
+#: ../../printerdrake.pm_.c:1631
#, fuzzy
msgid "Your printer model"
msgstr "Impressora remota"
-#: ../../printerdrake.pm_.c:1517
+#: ../../printerdrake.pm_.c:1632
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -8400,28 +8690,28 @@ msgid ""
"%s"
msgstr ""
-#: ../../printerdrake.pm_.c:1522 ../../printerdrake.pm_.c:1525
+#: ../../printerdrake.pm_.c:1637 ../../printerdrake.pm_.c:1640
#, fuzzy
msgid "The model is correct"
msgstr "Isto está correto?"
-#: ../../printerdrake.pm_.c:1523 ../../printerdrake.pm_.c:1524
-#: ../../printerdrake.pm_.c:1527
+#: ../../printerdrake.pm_.c:1638 ../../printerdrake.pm_.c:1639
+#: ../../printerdrake.pm_.c:1642
#, fuzzy
msgid "Select model manually"
msgstr "Impressora remota"
-#: ../../printerdrake.pm_.c:1543
+#: ../../printerdrake.pm_.c:1659
#, fuzzy
msgid "Printer model selection"
msgstr "Conexăo da Impressora"
-#: ../../printerdrake.pm_.c:1544
+#: ../../printerdrake.pm_.c:1660
#, fuzzy
msgid "Which printer model do you have?"
msgstr "Qual tipo de impressora você tem?"
-#: ../../printerdrake.pm_.c:1545
+#: ../../printerdrake.pm_.c:1661
msgid ""
"\n"
"\n"
@@ -8430,18 +8720,18 @@ msgid ""
"standing on a wrong model or on \"Raw printer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1548
+#: ../../printerdrake.pm_.c:1664
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
msgstr ""
-#: ../../printerdrake.pm_.c:1624
+#: ../../printerdrake.pm_.c:1741
#, fuzzy
msgid "OKI winprinter configuration"
msgstr "Configuraçăo da Internet"
-#: ../../printerdrake.pm_.c:1625
+#: ../../printerdrake.pm_.c:1742
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -8451,12 +8741,12 @@ msgid ""
"not work. Your connection type setting will be ignored by the driver."
msgstr ""
-#: ../../printerdrake.pm_.c:1668 ../../printerdrake.pm_.c:1695
+#: ../../printerdrake.pm_.c:1785 ../../printerdrake.pm_.c:1812
#, fuzzy
msgid "Lexmark inkjet configuration"
msgstr "Configuraçăo da Internet"
-#: ../../printerdrake.pm_.c:1669
+#: ../../printerdrake.pm_.c:1786
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
"no printers on remote machines or print server boxes. Please connect your "
@@ -8464,20 +8754,46 @@ msgid ""
"to."
msgstr ""
-#: ../../printerdrake.pm_.c:1696
+#: ../../printerdrake.pm_.c:1813
msgid ""
"To be able to print with your Lexmark inkjet and this configuration, you "
"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
-"com/). Go to the US site and click on the \"Drivers\" button. Then choose "
-"your model and afterwards \"Linux\" as operating system. The drivers come as "
-"RPM packages or shell scripts with interactive graphical installation. You "
-"do not need to do this configuration by the graphical frontends. Cancel "
-"directly after the license agreement. Then print printhead alignment pages "
-"with \"lexmarkmaintain\" and adjust the head alignment settings with this "
-"program."
+"com/). Click on the \"Drivers\" link. Then choose your model and afterwards "
+"\"Linux\" as operating system. The drivers come as RPM packages or shell "
+"scripts with interactive graphical installation. You do not need to do this "
+"configuration by the graphical frontends. Cancel directly after the license "
+"agreement. Then print printhead alignment pages with \"lexmarkmaintain\" and "
+"adjust the head alignment settings with this program."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:1816
+msgid "GDI Laser Printer using the Zenographics ZJ-Stream Format"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:1817
+msgid ""
+"Your printer belongs to the group of GDI laser printers (winprinters) sold "
+"by different manufacturers which uses the Zenographics ZJ-stream raster "
+"format for the data sent to the printer. The driver for these printers is "
+"still in a very early development stage and so it will perhaps not always "
+"work properly. Especially it is possible that the printer only works when "
+"you choose the A4 paper size.\n"
+"\n"
+"Some of these printers, as the HP LaserJet 1000, for which this driver was "
+"originally created, need their firmware to be uploaded to them after they "
+"are turned on. In the case of the HP LaserJet 1000 you have to search the "
+"printer's Windows driver CD or your Windows partition for the file "
+"\"sihp1000.img\" and upload the file to the printer with one of the "
+"following commands:\n"
+"\n"
+" lpr -o raw sihp1000.img\n"
+" cat sihp1000.img > /dev/usb/lp0\n"
+"\n"
+"The first command can be given by any normal user, the second must be given "
+"as root. After having done so you can print normally.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1912
+#: ../../printerdrake.pm_.c:2040
msgid ""
"Printer default settings\n"
"\n"
@@ -8487,34 +8803,34 @@ msgid ""
"printout quality/resolution printing can get substantially slower."
msgstr ""
-#: ../../printerdrake.pm_.c:1921
+#: ../../printerdrake.pm_.c:2049
#, c-format
msgid "Option %s must be an integer number!"
msgstr ""
-#: ../../printerdrake.pm_.c:1925
+#: ../../printerdrake.pm_.c:2053
#, c-format
msgid "Option %s must be a number!"
msgstr ""
-#: ../../printerdrake.pm_.c:1930
+#: ../../printerdrake.pm_.c:2058
#, c-format
msgid "Option %s out of range!"
msgstr ""
-#: ../../printerdrake.pm_.c:1969
+#: ../../printerdrake.pm_.c:2097
#, fuzzy, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
"as the default printer?"
msgstr "Você quer testar a impressăo?"
-#: ../../printerdrake.pm_.c:1986
+#: ../../printerdrake.pm_.c:2120
#, fuzzy
msgid "Test pages"
msgstr "Testar portas"
-#: ../../printerdrake.pm_.c:1987
+#: ../../printerdrake.pm_.c:2121
msgid ""
"Please select the test pages you want to print.\n"
"Note: the photo test page can take a rather long time to get printed and on "
@@ -8522,45 +8838,45 @@ msgid ""
"it is enough to print the standard test page."
msgstr ""
-#: ../../printerdrake.pm_.c:1991
+#: ../../printerdrake.pm_.c:2125
#, fuzzy
msgid "No test pages"
msgstr "Sim, imprimir ambas as páginas de teste"
-#: ../../printerdrake.pm_.c:1992
+#: ../../printerdrake.pm_.c:2126
#, fuzzy
msgid "Print"
msgstr "Impressora"
-#: ../../printerdrake.pm_.c:1994
+#: ../../printerdrake.pm_.c:2183
#, fuzzy
msgid "Standard test page"
msgstr "Padrăo"
-#: ../../printerdrake.pm_.c:1997
+#: ../../printerdrake.pm_.c:2186
msgid "Alternative test page (Letter)"
msgstr ""
-#: ../../printerdrake.pm_.c:2000
+#: ../../printerdrake.pm_.c:2189
#, fuzzy
msgid "Alternative test page (A4)"
msgstr "Imprimindo página(s) de teste..."
-#: ../../printerdrake.pm_.c:2002
+#: ../../printerdrake.pm_.c:2191
#, fuzzy
msgid "Photo test page"
msgstr "Imprimindo página(s) de teste..."
-#: ../../printerdrake.pm_.c:2006
+#: ../../printerdrake.pm_.c:2195
#, fuzzy
msgid "Do not print any test page"
msgstr "Imprimindo página(s) de teste..."
-#: ../../printerdrake.pm_.c:2014 ../../printerdrake.pm_.c:2166
+#: ../../printerdrake.pm_.c:2204 ../../printerdrake.pm_.c:2357
msgid "Printing test page(s)..."
msgstr "Imprimindo página(s) de teste..."
-#: ../../printerdrake.pm_.c:2039
+#: ../../printerdrake.pm_.c:2229
#, fuzzy, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -8576,7 +8892,7 @@ msgstr ""
"\n"
"A impressăo funcionou corretamente?"
-#: ../../printerdrake.pm_.c:2043
+#: ../../printerdrake.pm_.c:2233
#, fuzzy
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -8586,16 +8902,16 @@ msgstr ""
"pode demorar um pouco até a impressora começar.\n"
"A impressăo funcionou corretamente?"
-#: ../../printerdrake.pm_.c:2050
+#: ../../printerdrake.pm_.c:2240
msgid "Did it work properly?"
msgstr ""
-#: ../../printerdrake.pm_.c:2072 ../../printerdrake.pm_.c:3191
+#: ../../printerdrake.pm_.c:2262 ../../printerdrake.pm_.c:3416
#, fuzzy
msgid "Raw printer"
msgstr "Nenhuma impressora"
-#: ../../printerdrake.pm_.c:2098
+#: ../../printerdrake.pm_.c:2288
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -8604,15 +8920,15 @@ msgid ""
"to modify the option settings easily.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2100
+#: ../../printerdrake.pm_.c:2290
msgid ""
"These commands you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications, but here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2103 ../../printerdrake.pm_.c:2120
-#: ../../printerdrake.pm_.c:2130
+#: ../../printerdrake.pm_.c:2293 ../../printerdrake.pm_.c:2310
+#: ../../printerdrake.pm_.c:2320
#, c-format
msgid ""
"\n"
@@ -8621,7 +8937,7 @@ msgid ""
"line, e. g. \"%s <file>\". "
msgstr ""
-#: ../../printerdrake.pm_.c:2106 ../../printerdrake.pm_.c:2146
+#: ../../printerdrake.pm_.c:2296 ../../printerdrake.pm_.c:2336
#, c-format
msgid ""
"To know about the options available for the current printer read either the "
@@ -8629,41 +8945,41 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2110
+#: ../../printerdrake.pm_.c:2300
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2115 ../../printerdrake.pm_.c:2125
+#: ../../printerdrake.pm_.c:2305 ../../printerdrake.pm_.c:2315
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2117 ../../printerdrake.pm_.c:2127
-#: ../../printerdrake.pm_.c:2137
+#: ../../printerdrake.pm_.c:2307 ../../printerdrake.pm_.c:2317
+#: ../../printerdrake.pm_.c:2327
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2122 ../../printerdrake.pm_.c:2132
+#: ../../printerdrake.pm_.c:2312 ../../printerdrake.pm_.c:2322
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
msgstr ""
-#: ../../printerdrake.pm_.c:2135
+#: ../../printerdrake.pm_.c:2325
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\" or \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2139
+#: ../../printerdrake.pm_.c:2329
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -8673,7 +8989,7 @@ msgid ""
"jams.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2143
+#: ../../printerdrake.pm_.c:2333
#, c-format
msgid ""
"\n"
@@ -8682,41 +8998,41 @@ msgid ""
"line, e. g. \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2153
+#: ../../printerdrake.pm_.c:2343
#, fuzzy, c-format
msgid "Printing/Scanning/Photo Cards on \"%s\""
msgstr "Fechando (desconectando) a rede"
-#: ../../printerdrake.pm_.c:2154
+#: ../../printerdrake.pm_.c:2344
#, fuzzy, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "Fechando (desconectando) a rede"
-#: ../../printerdrake.pm_.c:2156
+#: ../../printerdrake.pm_.c:2346
#, fuzzy, c-format
msgid "Printing/Photo Card Access on \"%s\""
msgstr "Fechando (desconectando) a rede"
-#: ../../printerdrake.pm_.c:2157
+#: ../../printerdrake.pm_.c:2347
#, fuzzy, c-format
msgid "Printing on the printer \"%s\""
msgstr "Fechando (desconectando) a rede"
-#: ../../printerdrake.pm_.c:2160 ../../printerdrake.pm_.c:2163
-#: ../../printerdrake.pm_.c:2164 ../../printerdrake.pm_.c:2165
-#: ../../printerdrake.pm_.c:3175 ../../standalone/drakTermServ_.c:248
-#: ../../standalone/drakbackup_.c:1485 ../../standalone/drakbackup_.c:3530
-#: ../../standalone/drakbug_.c:129 ../../standalone/drakfont_.c:705
+#: ../../printerdrake.pm_.c:2350 ../../printerdrake.pm_.c:2353
+#: ../../printerdrake.pm_.c:2354 ../../printerdrake.pm_.c:2355
+#: ../../printerdrake.pm_.c:3400 ../../standalone/drakTermServ_.c:248
+#: ../../standalone/drakbackup_.c:1560 ../../standalone/drakbackup_.c:4208
+#: ../../standalone/drakbug_.c:130 ../../standalone/drakfont_.c:705
#: ../../standalone/drakfont_.c:1014
msgid "Close"
msgstr "Fechar"
-#: ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2353
#, fuzzy
msgid "Print option list"
msgstr "Opçőes da impressora"
-#: ../../printerdrake.pm_.c:2182
+#: ../../printerdrake.pm_.c:2373
#, c-format
msgid ""
"Your multi-function device was configured automatically to be able to scan. "
@@ -8730,7 +9046,7 @@ msgid ""
"Do not use \"scannerdrake\" for this device!"
msgstr ""
-#: ../../printerdrake.pm_.c:2202
+#: ../../printerdrake.pm_.c:2394
msgid ""
"Your printer was configured automatically to give you access to the photo "
"card drives from your PC. Now you can access your photo cards using the "
@@ -8743,19 +9059,19 @@ msgid ""
"of the file lists."
msgstr ""
-#: ../../printerdrake.pm_.c:2223 ../../printerdrake.pm_.c:2673
-#: ../../printerdrake.pm_.c:2945
+#: ../../printerdrake.pm_.c:2416 ../../printerdrake.pm_.c:2875
+#: ../../printerdrake.pm_.c:3170
#, fuzzy
msgid "Reading printer data..."
msgstr "Lendo banco de dados de drivers do CUPS"
-#: ../../printerdrake.pm_.c:2243 ../../printerdrake.pm_.c:2271
-#: ../../printerdrake.pm_.c:2306
+#: ../../printerdrake.pm_.c:2436 ../../printerdrake.pm_.c:2464
+#: ../../printerdrake.pm_.c:2499
#, fuzzy
msgid "Transfer printer configuration"
msgstr "Configuraçăo da Internet"
-#: ../../printerdrake.pm_.c:2244
+#: ../../printerdrake.pm_.c:2437
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -8765,51 +9081,51 @@ msgid ""
"Not all queues can be transferred due to the following reasons:\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2247
+#: ../../printerdrake.pm_.c:2440
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2249
+#: ../../printerdrake.pm_.c:2442
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2251
+#: ../../printerdrake.pm_.c:2444
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2253
+#: ../../printerdrake.pm_.c:2446
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:2254
+#: ../../printerdrake.pm_.c:2447
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
"or with native CUPS drivers cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:2255
+#: ../../printerdrake.pm_.c:2448
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
"\"Transfer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:2258
+#: ../../printerdrake.pm_.c:2451
msgid "Do not transfer printers"
msgstr ""
-#: ../../printerdrake.pm_.c:2259 ../../printerdrake.pm_.c:2276
+#: ../../printerdrake.pm_.c:2452 ../../printerdrake.pm_.c:2469
msgid "Transfer"
msgstr ""
-#: ../../printerdrake.pm_.c:2272
+#: ../../printerdrake.pm_.c:2465
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -8817,61 +9133,61 @@ msgid ""
"You can also type a new name or skip this printer."
msgstr ""
-#: ../../printerdrake.pm_.c:2280
+#: ../../printerdrake.pm_.c:2473
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr "O nome da impressora deve conter apenas letras, números e o símbolo _"
-#: ../../printerdrake.pm_.c:2285
+#: ../../printerdrake.pm_.c:2478
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
"do you really want to overwrite its configuration?"
msgstr ""
-#: ../../printerdrake.pm_.c:2293
+#: ../../printerdrake.pm_.c:2486
#, fuzzy
msgid "New printer name"
msgstr "Nenhuma impressora"
-#: ../../printerdrake.pm_.c:2296
+#: ../../printerdrake.pm_.c:2489
#, c-format
msgid "Transferring %s..."
msgstr ""
-#: ../../printerdrake.pm_.c:2307
+#: ../../printerdrake.pm_.c:2500
#, c-format
msgid ""
"You have transferred your former default printer (\"%s\"), Should it be also "
"the default printer under the new printing system %s?"
msgstr ""
-#: ../../printerdrake.pm_.c:2316
+#: ../../printerdrake.pm_.c:2510
#, fuzzy
msgid "Refreshing printer data..."
msgstr "Lendo banco de dados de drivers do CUPS"
-#: ../../printerdrake.pm_.c:2324 ../../printerdrake.pm_.c:2395
-#: ../../printerdrake.pm_.c:2407
+#: ../../printerdrake.pm_.c:2518 ../../printerdrake.pm_.c:2590
+#: ../../printerdrake.pm_.c:2602
msgid "Configuration of a remote printer"
msgstr ""
-#: ../../printerdrake.pm_.c:2325
+#: ../../printerdrake.pm_.c:2519
#, fuzzy
msgid "Starting network..."
msgstr "Iniciando sua conexăo..."
-#: ../../printerdrake.pm_.c:2359 ../../printerdrake.pm_.c:2363
-#: ../../printerdrake.pm_.c:2365
+#: ../../printerdrake.pm_.c:2554 ../../printerdrake.pm_.c:2558
+#: ../../printerdrake.pm_.c:2560
#, fuzzy
msgid "Configure the network now"
msgstr "Configurar rede"
-#: ../../printerdrake.pm_.c:2360
+#: ../../printerdrake.pm_.c:2555
#, fuzzy
msgid "Network functionality not configured"
msgstr "Monitor năo configurado"
-#: ../../printerdrake.pm_.c:2361
+#: ../../printerdrake.pm_.c:2556
msgid ""
"You are going to configure a remote printer. This needs working network "
"access, but your network is not configured yet. If you go on without network "
@@ -8879,12 +9195,12 @@ msgid ""
"configuring now. How do you want to proceed?"
msgstr ""
-#: ../../printerdrake.pm_.c:2364
+#: ../../printerdrake.pm_.c:2559
#, fuzzy
msgid "Go on without configuring the network"
msgstr "Configurando rede"
-#: ../../printerdrake.pm_.c:2397
+#: ../../printerdrake.pm_.c:2592
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -8894,34 +9210,34 @@ msgid ""
"\"Printer\""
msgstr ""
-#: ../../printerdrake.pm_.c:2398
+#: ../../printerdrake.pm_.c:2593
msgid ""
"The network access was not running and could not be started. Please check "
"your configuration and your hardware. Then try to configure your remote "
"printer again."
msgstr ""
-#: ../../printerdrake.pm_.c:2408
+#: ../../printerdrake.pm_.c:2603
#, fuzzy
msgid "Restarting printing system..."
msgstr "Qual sistema de impressăo você quer usar?"
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2641
#, fuzzy
msgid "high"
msgstr "Alto"
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2641
#, fuzzy
msgid "paranoid"
msgstr "Paranóico"
-#: ../../printerdrake.pm_.c:2447
+#: ../../printerdrake.pm_.c:2642
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr ""
-#: ../../printerdrake.pm_.c:2448
+#: ../../printerdrake.pm_.c:2643
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -8936,12 +9252,12 @@ msgid ""
"Do you really want to configure printing on this machine?"
msgstr ""
-#: ../../printerdrake.pm_.c:2480
+#: ../../printerdrake.pm_.c:2675
#, fuzzy
msgid "Starting the printing system at boot time"
msgstr "Qual sistema de impressăo você quer usar?"
-#: ../../printerdrake.pm_.c:2481
+#: ../../printerdrake.pm_.c:2676
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -8955,80 +9271,76 @@ msgid ""
"again?"
msgstr ""
-#: ../../printerdrake.pm_.c:2504 ../../printerdrake.pm_.c:2544
-#: ../../printerdrake.pm_.c:2581 ../../printerdrake.pm_.c:2621
-#: ../../printerdrake.pm_.c:2733
+#: ../../printerdrake.pm_.c:2700 ../../printerdrake.pm_.c:2741
+#: ../../printerdrake.pm_.c:2780 ../../printerdrake.pm_.c:2822
+#: ../../printerdrake.pm_.c:2943
msgid "Checking installed software..."
msgstr ""
-#: ../../printerdrake.pm_.c:2548
+#: ../../printerdrake.pm_.c:2746
msgid "Removing LPRng..."
msgstr ""
-#: ../../printerdrake.pm_.c:2585
+#: ../../printerdrake.pm_.c:2785
msgid "Removing LPD..."
msgstr ""
-#: ../../printerdrake.pm_.c:2657
+#: ../../printerdrake.pm_.c:2858
#, fuzzy
msgid "Select Printer Spooler"
msgstr "Selecionar Coneçăo da Impressora"
-#: ../../printerdrake.pm_.c:2658
+#: ../../printerdrake.pm_.c:2859
#, fuzzy
msgid "Which printing system (spooler) do you want to use?"
msgstr "Qual sistema de impressăo você quer usar?"
-#: ../../printerdrake.pm_.c:2691
+#: ../../printerdrake.pm_.c:2895
#, fuzzy, c-format
msgid "Configuring printer \"%s\"..."
msgstr "Configurar Impressora"
-#: ../../printerdrake.pm_.c:2704
+#: ../../printerdrake.pm_.c:2909
#, fuzzy
msgid "Installing Foomatic..."
msgstr "Instalando pacote %s"
-#: ../../printerdrake.pm_.c:2769 ../../printerdrake.pm_.c:2808
-#: ../../printerdrake.pm_.c:3192 ../../printerdrake.pm_.c:3262
+#: ../../printerdrake.pm_.c:2979 ../../printerdrake.pm_.c:3020
+#: ../../printerdrake.pm_.c:3417 ../../printerdrake.pm_.c:3490
msgid "Printer options"
msgstr "Opçőes da impressora"
-#: ../../printerdrake.pm_.c:2778
+#: ../../printerdrake.pm_.c:2989
#, fuzzy
-msgid "Preparing PrinterDrake..."
+msgid "Preparing Printerdrake..."
msgstr "Lendo banco de dados de drivers do CUPS"
-#: ../../printerdrake.pm_.c:2795 ../../printerdrake.pm_.c:3349
+#: ../../printerdrake.pm_.c:3007 ../../printerdrake.pm_.c:3580
#, fuzzy
msgid "Configuring applications..."
msgstr "Configurar Impressora"
-#: ../../printerdrake.pm_.c:2815
+#: ../../printerdrake.pm_.c:3027
#, fuzzy
msgid "Would you like to configure printing?"
msgstr "Você gostaria de configurar uma impressora?"
-#: ../../printerdrake.pm_.c:2827
+#: ../../printerdrake.pm_.c:3039
msgid "Printing system: "
msgstr ""
-#: ../../printerdrake.pm_.c:2875
-msgid "Printerdrake"
-msgstr "Printerdrake"
-
-#: ../../printerdrake.pm_.c:2879
+#: ../../printerdrake.pm_.c:3099
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; to view information about it; "
"or to make a printer on a remote CUPS server available for Star Office/"
-"OpenOffice.org."
+"OpenOffice.org/GIMP."
msgstr ""
"Aqui estăo as filas de impressăo.\n"
"Você pode adicionar mais ou modificar as existentes."
-#: ../../printerdrake.pm_.c:2880
+#: ../../printerdrake.pm_.c:3100
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
@@ -9038,137 +9350,139 @@ msgstr ""
"Aqui estăo as filas de impressăo.\n"
"Você pode adicionar mais ou modificar as existentes."
-#: ../../printerdrake.pm_.c:2906
+#: ../../printerdrake.pm_.c:3127
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr ""
-#: ../../printerdrake.pm_.c:2924
+#: ../../printerdrake.pm_.c:3145
#, fuzzy
msgid "Change the printing system"
msgstr "Configurar rede"
-#: ../../printerdrake.pm_.c:2929 ../../standalone/drakconnect_.c:277
+#: ../../printerdrake.pm_.c:3150 ../../standalone/drakconnect_.c:277
msgid "Normal Mode"
msgstr "Modo Normal"
-#: ../../printerdrake.pm_.c:3085 ../../printerdrake.pm_.c:3135
-#: ../../printerdrake.pm_.c:3343
+#: ../../printerdrake.pm_.c:3310 ../../printerdrake.pm_.c:3360
+#: ../../printerdrake.pm_.c:3573
#, fuzzy
msgid "Do you want to configure another printer?"
msgstr "Você quer testar a configuraçăo?"
-#: ../../printerdrake.pm_.c:3170
+#: ../../printerdrake.pm_.c:3395
#, fuzzy
msgid "Modify printer configuration"
msgstr "Configuraçăo da Internet"
-#: ../../printerdrake.pm_.c:3172
+#: ../../printerdrake.pm_.c:3397
#, fuzzy, c-format
msgid ""
"Printer %s\n"
"What do you want to modify on this printer?"
msgstr "Você quer testar a configuraçăo?"
-#: ../../printerdrake.pm_.c:3176
+#: ../../printerdrake.pm_.c:3401
msgid "Do it!"
msgstr ""
-#: ../../printerdrake.pm_.c:3181 ../../printerdrake.pm_.c:3236
+#: ../../printerdrake.pm_.c:3406 ../../printerdrake.pm_.c:3461
#, fuzzy
msgid "Printer connection type"
msgstr "Compartilhamento da Conexăo à Internet"
-#: ../../printerdrake.pm_.c:3182 ../../printerdrake.pm_.c:3240
+#: ../../printerdrake.pm_.c:3407 ../../printerdrake.pm_.c:3465
#, fuzzy
msgid "Printer name, description, location"
msgstr "Conexăo da Impressora"
-#: ../../printerdrake.pm_.c:3184 ../../printerdrake.pm_.c:3255
+#: ../../printerdrake.pm_.c:3409 ../../printerdrake.pm_.c:3483
msgid "Printer manufacturer, model, driver"
msgstr ""
-#: ../../printerdrake.pm_.c:3185 ../../printerdrake.pm_.c:3256
+#: ../../printerdrake.pm_.c:3410 ../../printerdrake.pm_.c:3484
msgid "Printer manufacturer, model"
msgstr ""
-#: ../../printerdrake.pm_.c:3194 ../../printerdrake.pm_.c:3266
+#: ../../printerdrake.pm_.c:3419 ../../printerdrake.pm_.c:3494
msgid "Set this printer as the default"
msgstr ""
-#: ../../printerdrake.pm_.c:3196 ../../printerdrake.pm_.c:3271
-msgid "Add this printer to Star Office/OpenOffice.org"
+#: ../../printerdrake.pm_.c:3421 ../../printerdrake.pm_.c:3499
+msgid "Add this printer to Star Office/OpenOffice.org/GIMP"
msgstr ""
-#: ../../printerdrake.pm_.c:3197 ../../printerdrake.pm_.c:3280
-msgid "Remove this printer from Star Office/OpenOffice.org"
+#: ../../printerdrake.pm_.c:3422 ../../printerdrake.pm_.c:3508
+msgid "Remove this printer from Star Office/OpenOffice.org/GIMP"
msgstr ""
-#: ../../printerdrake.pm_.c:3198 ../../printerdrake.pm_.c:3289
+#: ../../printerdrake.pm_.c:3423 ../../printerdrake.pm_.c:3517
#, fuzzy
msgid "Print test pages"
msgstr "Imprimindo página(s) de teste..."
-#: ../../printerdrake.pm_.c:3199 ../../printerdrake.pm_.c:3291
+#: ../../printerdrake.pm_.c:3424 ../../printerdrake.pm_.c:3519
#, fuzzy
msgid "Know how to use this printer"
msgstr "Você quer testar a configuraçăo?"
-#: ../../printerdrake.pm_.c:3201 ../../printerdrake.pm_.c:3293
+#: ../../printerdrake.pm_.c:3426 ../../printerdrake.pm_.c:3521
#, fuzzy
msgid "Remove printer"
msgstr "Impressora remota"
-#: ../../printerdrake.pm_.c:3245
+#: ../../printerdrake.pm_.c:3472
#, fuzzy, c-format
msgid "Removing old printer \"%s\"..."
msgstr "Lendo banco de dados de drivers do CUPS"
-#: ../../printerdrake.pm_.c:3269
+#: ../../printerdrake.pm_.c:3497
#, fuzzy
msgid "Default printer"
msgstr "Impressora local"
-#: ../../printerdrake.pm_.c:3270
+#: ../../printerdrake.pm_.c:3498
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr ""
-#: ../../printerdrake.pm_.c:3274 ../../printerdrake.pm_.c:3277
-msgid "Adding printer to Star Office/OpenOffice.org"
+#: ../../printerdrake.pm_.c:3502 ../../printerdrake.pm_.c:3505
+msgid "Adding printer to Star Office/OpenOffice.org/GIMP"
msgstr ""
-#: ../../printerdrake.pm_.c:3275
+#: ../../printerdrake.pm_.c:3503
#, c-format
msgid ""
-"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
+"The printer \"%s\" was successfully added to Star Office/OpenOffice.org/GIMP."
msgstr ""
-#: ../../printerdrake.pm_.c:3278
+#: ../../printerdrake.pm_.c:3506
#, c-format
-msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
+msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org/GIMP."
msgstr ""
-#: ../../printerdrake.pm_.c:3283 ../../printerdrake.pm_.c:3286
-msgid "Removing printer from Star Office/OpenOffice.org"
+#: ../../printerdrake.pm_.c:3511 ../../printerdrake.pm_.c:3514
+msgid "Removing printer from Star Office/OpenOffice.org/GIMP"
msgstr ""
-#: ../../printerdrake.pm_.c:3284
+#: ../../printerdrake.pm_.c:3512
#, c-format
msgid ""
-"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
+"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org/"
+"GIMP."
msgstr ""
-#: ../../printerdrake.pm_.c:3287
+#: ../../printerdrake.pm_.c:3515
#, c-format
-msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
+msgid ""
+"Failed to remove the printer \"%s\" from Star Office/OpenOffice.org/GIMP."
msgstr ""
-#: ../../printerdrake.pm_.c:3295
+#: ../../printerdrake.pm_.c:3523
#, fuzzy, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr "Você quer reiniciar a rede"
-#: ../../printerdrake.pm_.c:3297
+#: ../../printerdrake.pm_.c:3527
#, fuzzy, c-format
msgid "Removing printer \"%s\"..."
msgstr "Lendo banco de dados de drivers do CUPS"
@@ -9588,7 +9902,7 @@ msgstr "Internet"
msgid "File sharing"
msgstr ""
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1669
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1744
#, fuzzy
msgid "System"
msgstr "Modo do sistema"
@@ -9647,192 +9961,229 @@ msgstr "Status:"
msgid "Stop"
msgstr "Setor"
-#: ../../share/advertising/00-thanks.pl_.c:9
-msgid "Thank you for choosing Mandrake Linux 8.2"
+#: ../../share/advertising/01-thanks.pl_.c:9
+msgid "Thank you for choosing Mandrake Linux 9.0"
msgstr ""
-#: ../../share/advertising/00-thanks.pl_.c:10
+#: ../../share/advertising/01-thanks.pl_.c:10
msgid "Welcome to the Open Source world"
msgstr ""
-#: ../../share/advertising/00-thanks.pl_.c:11
+#: ../../share/advertising/01-thanks.pl_.c:11
msgid ""
"The success of MandrakeSoft is based upon the principle of Free Software. "
"Your new operating system is the result of collaborative work on the part of "
"the worldwide Linux Community"
msgstr ""
-#: ../../share/advertising/01-gnu.pl_.c:9
+#: ../../share/advertising/02-community.pl_.c:9
#, fuzzy
-msgid "Join the Free Software world"
+msgid "Get involved in the Free Software world"
msgstr "Resto do mundo"
-#: ../../share/advertising/01-gnu.pl_.c:10
+#: ../../share/advertising/02-community.pl_.c:10
+msgid "Want to know more about the Open Source community?"
+msgstr ""
+
+#: ../../share/advertising/02-community.pl_.c:11
msgid ""
-"Get to know the Open Source community and become a member. Learn, teach, and "
-"help others by joining the many discussion forums that you will find in our "
-"\"Community\" webpages"
+"To share your own knowledge and help build Linux tools, join the discussions "
+"forum you'll find on our \"Community\" webpages"
msgstr ""
-#: ../../share/advertising/02-internet.pl_.c:9
+#: ../../share/advertising/03-internet.pl_.c:9
#, fuzzy
-msgid "Internet and Messaging"
-msgstr "Acesso à Internet"
+msgid "Get the most from the Internet"
+msgstr "Conectar à Internet"
-#: ../../share/advertising/02-internet.pl_.c:10
+#: ../../share/advertising/03-internet.pl_.c:10
msgid ""
-"Mandrake Linux 8.2 provides the best software to access everything the "
-"Internet has to offer: Surf the web & view animations with Mozilla and "
-"Konqueror, exchange email & organize your personal information with "
-"Evolution and Kmail, and much more"
+"Mandrake Linux 9.0 has selected the best software for you. Surf the Web and "
+"view animations with Mozilla and Konqueror, or read your mail and handle "
+"your personal information with Evolution and Kmail"
msgstr ""
-#: ../../share/advertising/03-graphic.pl_.c:9
-#, fuzzy
-msgid "Multimedia and Graphics"
-msgstr "Multimídia - Gráficos"
+#: ../../share/advertising/04-multimedia.pl_.c:9
+msgid "Discover the most up-to-date graphics and multimedia tools!"
+msgstr ""
-#: ../../share/advertising/03-graphic.pl_.c:10
+#: ../../share/advertising/04-multimedia.pl_.c:10
+msgid "Push multimedia to its limits!"
+msgstr ""
+
+#: ../../share/advertising/04-multimedia.pl_.c:11
msgid ""
-"Mandrake Linux 8.2 lets you push your multimedia computer to its limits! Use "
-"the latest software to play music and audio files, edit and organize your "
-"images and photos, watch TV and videos, and much more"
+"Mandrake Linux 9.0 enables you to use the very latest software to play audio "
+"files, edit and handle your images or photos, and play videos"
msgstr ""
-#: ../../share/advertising/04-develop.pl_.c:9
-msgid "Development"
-msgstr "Desenvolvimento"
+#: ../../share/advertising/05-games.pl_.c:9
+msgid "Games"
+msgstr "Jogos"
-#: ../../share/advertising/04-develop.pl_.c:10
+#: ../../share/advertising/05-games.pl_.c:10
msgid ""
-"Mandrake Linux 8.2 is the ultimate development platform. Discover the power "
-"of the GNU gcc compiler as well as the best Open Source development "
-"environments"
+"Mandrake Linux 9.0 provides the best Open Source games - arcade, action, "
+"cards, sports, strategy..."
msgstr ""
-#: ../../share/advertising/05-contcenter.pl_.c:9
-#: ../../standalone/drakbug_.c:69
+#: ../../share/advertising/06-mcc.pl_.c:9 ../../standalone/drakbug_.c:69
#, fuzzy
msgid "Mandrake Control Center"
msgstr "Centro de Controle"
-#: ../../share/advertising/05-contcenter.pl_.c:10
+#: ../../share/advertising/06-mcc.pl_.c:10
msgid ""
-"The Mandrake Linux 8.2 Control Center is a one-stop location for fully "
-"customizing and configuring your Mandrake system"
+"Mandrake Linux 9.0 provides a powerful tool to fully customize and configure "
+"your machine"
msgstr ""
-#: ../../share/advertising/06-user.pl_.c:9
+#: ../../share/advertising/07-desktop.pl_.c:9
#, fuzzy
msgid "User interfaces"
msgstr "Interface de rede"
-#: ../../share/advertising/06-user.pl_.c:10
+#: ../../share/advertising/07-desktop.pl_.c:10
msgid ""
-"Mandrake Linux 8.2 provides 11 different graphical desktop environments and "
-"window managers to choose from including GNOME 1.4, KDE 2.2.2, Window Maker "
-"0.8, and the rest"
+"Mandrake Linux 9.0 provides 11 user interfaces which can be fully modified: "
+"KDE 3, Gnome 2, WindowMaker..."
msgstr ""
-#: ../../share/advertising/07-server.pl_.c:9
+#: ../../share/advertising/08-development.pl_.c:9
#, fuzzy
-msgid "Server Software"
-msgstr "Host servidor SMB"
+msgid "Development simplified"
+msgstr "Desenvolvimento"
+
+#: ../../share/advertising/08-development.pl_.c:10
+msgid "Mandrake Linux 9.0 is the ultimate development platform"
+msgstr ""
-#: ../../share/advertising/07-server.pl_.c:10
+#: ../../share/advertising/08-development.pl_.c:11
msgid ""
-"Transform your machine into a powerful server with just a few clicks of the "
-"mouse: Web server, email, firewall, router, file and print server, ..."
+"Use the full power of the GNU gcc 3 compiler as well as the best Open Source "
+"development environments"
msgstr ""
-#: ../../share/advertising/08-games.pl_.c:9
-msgid "Games"
-msgstr "Jogos"
+#: ../../share/advertising/09-server.pl_.c:9
+msgid "Turn your machine into a reliable server"
+msgstr ""
-#: ../../share/advertising/08-games.pl_.c:10
+#: ../../share/advertising/09-server.pl_.c:10
msgid ""
-"Mandrake Linux 8.2 provides the best Open Source games - arcade, action, "
-"cards, sports, strategy, ..."
+"Transform your machine into a powerful server in a few clicks of your mouse: "
+"Web server, mail, firewall, router, file and print server..."
msgstr ""
-#: ../../share/advertising/09-MDKcampus.pl_.c:9
-msgid "MandrakeCampus"
+#: ../../share/advertising/10-mnf.pl_.c:9
+msgid "Optimize your security"
msgstr ""
-#: ../../share/advertising/09-MDKcampus.pl_.c:10
+#: ../../share/advertising/10-mnf.pl_.c:10
msgid ""
-"Would you like to learn Linux simply, quickly, and for free? MandrakeSoft "
-"provides free Linux training, as well as a way to test your progress, at "
-"MandrakeCampus -- our online training center"
+"The MandrakeSecurity range includes the Multi Network Firewall product (M.N."
+"F.)"
msgstr ""
-#: ../../share/advertising/10-MDKexpert.pl_.c:9
-#, fuzzy
-msgid "MandrakeExpert"
-msgstr "Expert"
+#: ../../share/advertising/10-mnf.pl_.c:11
+msgid ""
+"This firewall product includes network features which allow you to fulfill "
+"all your security needs"
+msgstr ""
-#: ../../share/advertising/10-MDKexpert.pl_.c:10
+#: ../../share/advertising/10-mnf.pl_.c:12
+msgid "This product is available on MandrakeStore website"
+msgstr ""
+
+#: ../../share/advertising/11-mdkstore.pl_.c:9
+msgid "The official MandrakeSoft store"
+msgstr ""
+
+#: ../../share/advertising/11-mdkstore.pl_.c:10
msgid ""
-"Quality support from the Linux Community, and from MandrakeSoft, is just "
-"around the corner. And if you're already a Linux veteran, become an \"Expert"
-"\" and share your knowledge at our support website"
+"Our full range of Linux solutions, as well as special offers on products and "
+"'goodies', are available online at our e-store"
msgstr ""
-#: ../../share/advertising/11-consul.pl_.c:9
-msgid "MandrakeConsulting"
+#: ../../share/advertising/12-mdkstore.pl_.c:9
+msgid "Strategic partners"
msgstr ""
-#: ../../share/advertising/11-consul.pl_.c:10
+#: ../../share/advertising/12-mdkstore.pl_.c:10
msgid ""
-"For all of your IT projects, our consultants are ready to analyze your "
-"requirements and offer a customized solution. Benefit from MandrakeSoft's "
-"vast experience as a Linux producer to provide a true IT alternative for "
-"your business organization"
+"MandrakeSoft works alongside a selection of companies offering professional "
+"solutions compatible with Mandrake Linux; a list of these partners is "
+"available on the MandrakeStore"
msgstr ""
-#: ../../share/advertising/12-MDKstore.pl_.c:9
-msgid "MandrakeStore"
+#: ../../share/advertising/13-mdkcampus.pl_.c:9
+msgid "Discover MandrakeSoft's training catalogue Linux-Campus"
msgstr ""
-#: ../../share/advertising/12-MDKstore.pl_.c:10
+#: ../../share/advertising/13-mdkcampus.pl_.c:10
msgid ""
-"A full range of Linux solutions, as well as special offers on products and "
-"'goodies', are available online at our e-store"
+"The training program has been create to respond to the needs of both users "
+"and experts (Network and System administrations)"
msgstr ""
-#: ../../share/advertising/13-Nvert.pl_.c:9
+#: ../../share/advertising/13-mdkcampus.pl_.c:11
+msgid "Certify yourself on Linux"
+msgstr ""
+
+#: ../../share/advertising/13-mdkcampus.pl_.c:12
+msgid ""
+"Whether you choose to teach yourself online or via our network of training "
+"partners, the Linux-Campus catalogue prepares you for the acknowledged LPI "
+"certification program (worldwide professional technical certification)"
+msgstr ""
+
+#: ../../share/advertising/14-mdkexpert.pl_.c:9
+#, fuzzy
+msgid "Become a MandrakeExpert"
+msgstr "Expert"
+
+#: ../../share/advertising/14-mdkexpert.pl_.c:10
msgid ""
-"For more information on MandrakeSoft's Professional Services and commercial "
-"offerings, please see the following web page:"
+"Find the solutions to your problems via MandrakeSoft's online support "
+"platform"
msgstr ""
-#: ../../share/advertising/13-Nvert.pl_.c:11
-msgid "http://www.mandrakesoft.com/sales/contact"
+#: ../../share/advertising/14-mdkexpert.pl_.c:11
+msgid ""
+"Join the MandrakeSoft support teams and the Linux Community online to share "
+"your knowledge and help others by becoming a recognized Expert on the online "
+"technical support website:"
msgstr ""
-#: ../../standalone.pm_.c:40
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:9
+#, fuzzy
+msgid "MandrakeExpert Corporate"
+msgstr "Expert"
+
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:10
+msgid "An online platform to respond to company's specific support needs"
+msgstr ""
+
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:11
+msgid ""
+"All incidents will be followed up by a single qualified MandrakeSoft "
+"technical expert."
+msgstr ""
+
+#: ../../standalone.pm_.c:41
#, fuzzy
msgid "Installing packages..."
msgstr "Instalando pacote %s"
-#: ../../standalone/XFdrake_.c:143
+#: ../../standalone/XFdrake_.c:145
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr ""
"Favor fazer um log out (sair) e entăo usar as teclas Ctrl-Alt-BackSpace"
-#: ../../standalone/XFdrake_.c:147
+#: ../../standalone/XFdrake_.c:149
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "Favor relogar em %s para ativar as mudanças"
-#: ../../standalone/diskdrake_.c:81
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I'll try to go on blanking bad partitions"
-msgstr ""
-"Eu năo consigo ler sua tabela de partiçăo, é muito defeituosa\n"
-"para mim. Eu irei tentar continuar limpando as partiçőes defeituosas"
-
#: ../../standalone/drakTermServ_.c:188
#, fuzzy
msgid "Mandrake Terminal Server Configuration"
@@ -9876,12 +10227,13 @@ msgstr "Adicionar usuário"
msgid "Add/Del Clients"
msgstr "Cliente DHCP"
-#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3282
-#: ../../standalone/drakbackup_.c:3315 ../../standalone/drakbackup_.c:3341
-#: ../../standalone/drakbackup_.c:3368 ../../standalone/drakbackup_.c:3395
-#: ../../standalone/drakbackup_.c:3434 ../../standalone/drakbackup_.c:3455
-#: ../../standalone/drakbackup_.c:3482 ../../standalone/drakbackup_.c:3508
-#: ../../standalone/drakbackup_.c:3533 ../../standalone/drakfont_.c:700
+#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3930
+#: ../../standalone/drakbackup_.c:3963 ../../standalone/drakbackup_.c:3989
+#: ../../standalone/drakbackup_.c:4016 ../../standalone/drakbackup_.c:4043
+#: ../../standalone/drakbackup_.c:4082 ../../standalone/drakbackup_.c:4103
+#: ../../standalone/drakbackup_.c:4130 ../../standalone/drakbackup_.c:4160
+#: ../../standalone/drakbackup_.c:4186 ../../standalone/drakbackup_.c:4211
+#: ../../standalone/drakfont_.c:700
#, fuzzy
msgid "Help"
msgstr "/Aj_uda"
@@ -10042,8 +10394,8 @@ msgid ""
"The parameters of the auto-install are available in the sections on the left"
msgstr ""
-#: ../../standalone/drakautoinst_.c:239 ../../standalone/drakgw_.c:548
-#: ../../standalone/scannerdrake_.c:105
+#: ../../standalone/drakautoinst_.c:239 ../../standalone/drakgw_.c:484
+#: ../../standalone/scannerdrake_.c:119
msgid "Congratulations!"
msgstr "Parabéns!"
@@ -10068,27 +10420,31 @@ msgstr "Adicionar um usuário"
msgid "Remove the last item"
msgstr "Formatando arquivo loopback %s"
-#: ../../standalone/drakbackup_.c:625
+#: ../../standalone/drakbackup_.c:619
msgid "Cron not available yet as non-root"
msgstr ""
-#: ../../standalone/drakbackup_.c:731
+#: ../../standalone/drakbackup_.c:725
msgid "WARNING"
msgstr ""
-#: ../../standalone/drakbackup_.c:732
+#: ../../standalone/drakbackup_.c:726
#, fuzzy
msgid "FATAL"
msgstr "FAT"
-#: ../../standalone/drakbackup_.c:744
+#: ../../standalone/drakbackup_.c:727
+msgid "INFO"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:739
msgid ""
"\n"
" DrakBackup Report \n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:745
+#: ../../standalone/drakbackup_.c:740
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -10096,7 +10452,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:749
+#: ../../standalone/drakbackup_.c:744
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -10104,13 +10460,20 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:770 ../../standalone/drakbackup_.c:840
-#: ../../standalone/drakbackup_.c:894
+#: ../../standalone/drakbackup_.c:765 ../../standalone/drakbackup_.c:835
+#: ../../standalone/drakbackup_.c:889
#, fuzzy
msgid "Total progess"
msgstr "Testar portas"
-#: ../../standalone/drakbackup_.c:822
+#: ../../standalone/drakbackup_.c:788
+msgid ""
+"Sorry, perl-Expect is not installed/enabled. To use\n"
+"this feature, install perl-Expect and comment lines 772-774,\n"
+" as well as 788,789. Then uncomment line 787."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:817
#, c-format
msgid ""
"%s exists, delete?\n"
@@ -10119,16 +10482,41 @@ msgid ""
" need to purge the entry from authorized_keys on the server."
msgstr ""
-#: ../../standalone/drakbackup_.c:831
+#: ../../standalone/drakbackup_.c:826
msgid "This may take a moment to generate the keys."
msgstr ""
-#: ../../standalone/drakbackup_.c:838
+#: ../../standalone/drakbackup_.c:833
#, c-format
msgid "ERROR: Cannot spawn %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:865
+#: ../../standalone/drakbackup_.c:850
+#, c-format
+msgid "No password prompt on %s at port %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:851
+#, fuzzy, c-format
+msgid "Bad password on %s"
+msgstr "Nenhuma senha"
+
+#: ../../standalone/drakbackup_.c:852
+#, c-format
+msgid "Permission denied transferring %s to %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:853
+#, fuzzy, c-format
+msgid "Can't find %s on %s"
+msgstr "Năo foi possível abrir %s: %s\n"
+
+#: ../../standalone/drakbackup_.c:856
+#, c-format
+msgid "%s not responding"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:860
#, c-format
msgid ""
"Transfer successful\n"
@@ -10139,63 +10527,68 @@ msgid ""
"without being prompted for a password."
msgstr ""
-#: ../../standalone/drakbackup_.c:908
+#: ../../standalone/drakbackup_.c:903
msgid "WebDAV remote site already in sync!"
msgstr ""
-#: ../../standalone/drakbackup_.c:912
+#: ../../standalone/drakbackup_.c:907
msgid "WebDAV transfer failed!"
msgstr ""
-#: ../../standalone/drakbackup_.c:934
+#: ../../standalone/drakbackup_.c:928
msgid "No CDR/DVDR in drive!"
msgstr ""
-#: ../../standalone/drakbackup_.c:938
+#: ../../standalone/drakbackup_.c:932
msgid "Does not appear to be recordable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:942
+#: ../../standalone/drakbackup_.c:936
msgid "Not erasable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:981
+#: ../../standalone/drakbackup_.c:975
msgid "This may take a moment to erase the media."
msgstr ""
-#: ../../standalone/drakbackup_.c:1045
+#: ../../standalone/drakbackup_.c:1060
msgid "Permission problem accessing CD."
msgstr ""
-#: ../../standalone/drakbackup_.c:1144 ../../standalone/drakbackup_.c:1193
+#: ../../standalone/drakbackup_.c:1087
+#, c-format
+msgid "No tape in %s!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1199 ../../standalone/drakbackup_.c:1248
msgid "Backup system files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:1194 ../../standalone/drakbackup_.c:1261
+#: ../../standalone/drakbackup_.c:1249 ../../standalone/drakbackup_.c:1316
#, fuzzy
msgid "Hard Disk Backup files..."
msgstr "Arquivo de backup defeituoso"
-#: ../../standalone/drakbackup_.c:1206
+#: ../../standalone/drakbackup_.c:1261
#, fuzzy
msgid "Backup User files..."
msgstr "Arquivo de backup defeituoso"
-#: ../../standalone/drakbackup_.c:1207
+#: ../../standalone/drakbackup_.c:1262
msgid "Hard Disk Backup Progress..."
msgstr ""
-#: ../../standalone/drakbackup_.c:1260
+#: ../../standalone/drakbackup_.c:1315
#, fuzzy
msgid "Backup Other files..."
msgstr "Arquivo de backup defeituoso"
-#: ../../standalone/drakbackup_.c:1266
+#: ../../standalone/drakbackup_.c:1321
#, fuzzy
msgid "No changes to backup!"
msgstr "Arquivo de backup defeituoso"
-#: ../../standalone/drakbackup_.c:1282 ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1337 ../../standalone/drakbackup_.c:1360
#, c-format
msgid ""
"\n"
@@ -10203,800 +10596,923 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1289
+#: ../../standalone/drakbackup_.c:1344
#, c-format
msgid ""
-"file list sent by FTP : %s\n"
+"file list sent by FTP: %s\n"
" "
msgstr ""
-#: ../../standalone/drakbackup_.c:1292
+#: ../../standalone/drakbackup_.c:1347
msgid ""
"\n"
" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1310
+#: ../../standalone/drakbackup_.c:1365
msgid ""
"\n"
"Drakbackup activities via CD:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1315
+#: ../../standalone/drakbackup_.c:1370
msgid ""
"\n"
"Drakbackup activities via tape:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1324
+#: ../../standalone/drakbackup_.c:1379
#, fuzzy
msgid " Error during mail sending. \n"
msgstr "Erro lendo arquivo %s"
-#: ../../standalone/drakbackup_.c:1346
+#: ../../standalone/drakbackup_.c:1404
msgid "Can't create catalog!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1459 ../../standalone/drakbackup_.c:1470
-#: ../../standalone/drakbackup_.c:1481 ../../standalone/drakfont_.c:1004
+#: ../../standalone/drakbackup_.c:1517 ../../standalone/drakbackup_.c:1528
+#: ../../standalone/drakfont_.c:1004
#, fuzzy
msgid "File Selection"
msgstr "Seleçăo de Grupo de Pacotes"
-#: ../../standalone/drakbackup_.c:1486
+#: ../../standalone/drakbackup_.c:1556
msgid "Select the files or directories and click on 'Add'"
msgstr ""
-#: ../../standalone/drakbackup_.c:1525
+#: ../../standalone/drakbackup_.c:1600
msgid ""
"\n"
"Please check all options that you need.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1526
+#: ../../standalone/drakbackup_.c:1601
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1527
+#: ../../standalone/drakbackup_.c:1602
#, fuzzy
msgid "Backup your System files. (/etc directory)"
msgstr "Arquivo de backup defeituoso"
-#: ../../standalone/drakbackup_.c:1528
+#: ../../standalone/drakbackup_.c:1603
msgid "Use incremental backup (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1529
+#: ../../standalone/drakbackup_.c:1604
msgid "Do not include critical files (passwd, group, fstab)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1530
+#: ../../standalone/drakbackup_.c:1605
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr ""
-#: ../../standalone/drakbackup_.c:1547
+#: ../../standalone/drakbackup_.c:1622
#, fuzzy
msgid "Please check all users that you want to include in your backup."
msgstr "Escolha os pacotes que você quer instalar"
-#: ../../standalone/drakbackup_.c:1574
+#: ../../standalone/drakbackup_.c:1649
msgid "Do not include the browser cache"
msgstr ""
-#: ../../standalone/drakbackup_.c:1575 ../../standalone/drakbackup_.c:1599
+#: ../../standalone/drakbackup_.c:1650 ../../standalone/drakbackup_.c:1674
msgid "Use Incremental Backups (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1597 ../../standalone/drakfont_.c:1058
+#: ../../standalone/drakbackup_.c:1672 ../../standalone/drakfont_.c:1058
#, fuzzy
msgid "Remove Selected"
msgstr "Fila remota"
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:1710
#, fuzzy
msgid "Windows (FAT32)"
msgstr "Remover Windows(TM)"
-#: ../../standalone/drakbackup_.c:1674
+#: ../../standalone/drakbackup_.c:1749
#, fuzzy
msgid "Users"
msgstr "Nome do usuário"
-#: ../../standalone/drakbackup_.c:1700
+#: ../../standalone/drakbackup_.c:1775
#, fuzzy
msgid "Use network connection to backup"
msgstr "Arquivo de backup defeituoso"
-#: ../../standalone/drakbackup_.c:1706
+#: ../../standalone/drakbackup_.c:1777
+msgid "Net Method:"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1781
msgid "Use Expect for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1707
+#: ../../standalone/drakbackup_.c:1782
msgid ""
"Create/Transfer\n"
"backup keys for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1708
+#: ../../standalone/drakbackup_.c:1783
msgid ""
" Transfer \n"
"Now"
msgstr ""
-#: ../../standalone/drakbackup_.c:1709
+#: ../../standalone/drakbackup_.c:1784
msgid "Keys in place already"
msgstr ""
-#: ../../standalone/drakbackup_.c:1713
+#: ../../standalone/drakbackup_.c:1788
#, fuzzy
msgid "Please enter the host name or IP."
msgstr "Favor testar o mouse"
-#: ../../standalone/drakbackup_.c:1718
+#: ../../standalone/drakbackup_.c:1793
msgid ""
"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
-#: ../../standalone/drakbackup_.c:1723
+#: ../../standalone/drakbackup_.c:1798
#, fuzzy
msgid "Please enter your login"
msgstr "Favor tentar novamente"
-#: ../../standalone/drakbackup_.c:1728
+#: ../../standalone/drakbackup_.c:1803
#, fuzzy
msgid "Please enter your password"
msgstr "Favor tentar novamente"
-#: ../../standalone/drakbackup_.c:1734
+#: ../../standalone/drakbackup_.c:1809
#, fuzzy
msgid "Remember this password"
msgstr "Nenhuma senha"
-#: ../../standalone/drakbackup_.c:1745
+#: ../../standalone/drakbackup_.c:1820
msgid "Need hostname, username and password!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1841
+#: ../../standalone/drakbackup_.c:1915
msgid "Use CD/DVDROM to backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1844
+#: ../../standalone/drakbackup_.c:1918
msgid ""
"Please choose your CD/DVD device\n"
"(Press Enter to propogate settings to other fields.\n"
"This field isn't necessary, only a tool to fill in the form.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1849
+#: ../../standalone/drakbackup_.c:1923
#, fuzzy
msgid "Please choose your CD/DVD media size"
msgstr "Favor escolher o layout do seu teclado."
-#: ../../standalone/drakbackup_.c:1855
+#: ../../standalone/drakbackup_.c:1929
#, fuzzy
msgid "Please check for multisession CD"
msgstr "Favor clicar em uma partiçăo"
-#: ../../standalone/drakbackup_.c:1861
+#: ../../standalone/drakbackup_.c:1935
#, fuzzy
msgid "Please check if you are using CDRW media"
msgstr "Favor clicar em uma partiçăo"
-#: ../../standalone/drakbackup_.c:1867
+#: ../../standalone/drakbackup_.c:1941
#, fuzzy
msgid "Please check if you want to erase your RW media (1st Session)"
msgstr "Favor clicar em uma partiçăo"
-#: ../../standalone/drakbackup_.c:1868
+#: ../../standalone/drakbackup_.c:1942
msgid " Erase Now "
msgstr ""
-#: ../../standalone/drakbackup_.c:1874
+#: ../../standalone/drakbackup_.c:1948
#, fuzzy
msgid "Please check if you are using a DVDR device"
msgstr "Favor clicar em uma partiçăo"
-#: ../../standalone/drakbackup_.c:1880
+#: ../../standalone/drakbackup_.c:1954
#, fuzzy
msgid "Please check if you are using a DVDRAM device"
msgstr "Favor clicar em uma partiçăo"
-#: ../../standalone/drakbackup_.c:1893
+#: ../../standalone/drakbackup_.c:1967
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
msgstr ""
-#: ../../standalone/drakbackup_.c:1926
+#: ../../standalone/drakbackup_.c:2000
#, fuzzy
msgid "No CD device defined!"
msgstr "Selecione arquivo"
-#: ../../standalone/drakbackup_.c:1974
+#: ../../standalone/drakbackup_.c:2048
#, fuzzy
msgid "Use tape to backup"
msgstr "Arquivo de backup defeituoso"
-#: ../../standalone/drakbackup_.c:1977
+#: ../../standalone/drakbackup_.c:2051
msgid "Please enter the device name to use for backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1983
+#: ../../standalone/drakbackup_.c:2057
#, fuzzy
msgid "Please check if you want to use the non-rewinding device."
msgstr "Escolha os pacotes que você quer instalar"
-#: ../../standalone/drakbackup_.c:1989
+#: ../../standalone/drakbackup_.c:2063
#, fuzzy
msgid "Please check if you want to erase your tape before the backup."
msgstr "Escolha os pacotes que você quer instalar"
-#: ../../standalone/drakbackup_.c:1995
+#: ../../standalone/drakbackup_.c:2069
#, fuzzy
msgid "Please check if you want to eject your tape after the backup."
msgstr "Escolha os pacotes que você quer instalar"
-#: ../../standalone/drakbackup_.c:2001 ../../standalone/drakbackup_.c:2074
-#: ../../standalone/drakbackup_.c:3025
+#: ../../standalone/drakbackup_.c:2075 ../../standalone/drakbackup_.c:2149
+#: ../../standalone/drakbackup_.c:3116
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:2066
+#: ../../standalone/drakbackup_.c:2140
#, fuzzy
msgid "Please enter the directory to save to:"
msgstr "Favor testar o mouse"
-#: ../../standalone/drakbackup_.c:2080 ../../standalone/drakbackup_.c:3031
+#: ../../standalone/drakbackup_.c:2155 ../../standalone/drakbackup_.c:3122
#, fuzzy
msgid "Use quota for backup files."
msgstr "Arquivo de backup defeituoso"
-#: ../../standalone/drakbackup_.c:2146
+#: ../../standalone/drakbackup_.c:2221
#, fuzzy
msgid "Network"
msgstr "Interface de rede"
-#: ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:2226
msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2156
+#: ../../standalone/drakbackup_.c:2231
msgid "HardDrive / NFS"
msgstr ""
-#: ../../standalone/drakbackup_.c:2161
+#: ../../standalone/drakbackup_.c:2236
#, fuzzy
msgid "Tape"
msgstr "Tipo"
-#: ../../standalone/drakbackup_.c:2175 ../../standalone/drakbackup_.c:2179
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2250 ../../standalone/drakbackup_.c:2254
+#: ../../standalone/drakbackup_.c:2258
msgid "hourly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2176 ../../standalone/drakbackup_.c:2180
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2251 ../../standalone/drakbackup_.c:2255
+#: ../../standalone/drakbackup_.c:2258
msgid "daily"
msgstr ""
-#: ../../standalone/drakbackup_.c:2177 ../../standalone/drakbackup_.c:2181
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2252 ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2258
msgid "weekly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2178 ../../standalone/drakbackup_.c:2182
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2253 ../../standalone/drakbackup_.c:2257
+#: ../../standalone/drakbackup_.c:2258
msgid "monthly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2196
+#: ../../standalone/drakbackup_.c:2271
#, fuzzy
msgid "Use daemon"
msgstr "Nome do usuário"
-#: ../../standalone/drakbackup_.c:2201
+#: ../../standalone/drakbackup_.c:2276
#, fuzzy
msgid ""
"Please choose the time \n"
"interval between each backup"
msgstr "Escolha os pacotes que você quer instalar"
-#: ../../standalone/drakbackup_.c:2207
+#: ../../standalone/drakbackup_.c:2282
#, fuzzy
msgid ""
"Please choose the\n"
"media for backup."
msgstr "Favor escolher o idioma a ser utilizado."
-#: ../../standalone/drakbackup_.c:2214
+#: ../../standalone/drakbackup_.c:2289
msgid ""
"Please be sure that the cron daemon is included in your services. \n"
"\n"
"Note that currently all 'net' medias also use the hard drive."
msgstr ""
-#: ../../standalone/drakbackup_.c:2251
-msgid "Send mail report after each backup to :"
+#: ../../standalone/drakbackup_.c:2326
+msgid "Send mail report after each backup to:"
msgstr ""
-#: ../../standalone/drakbackup_.c:2257
+#: ../../standalone/drakbackup_.c:2332
msgid "Delete Hard Drive tar files after backup to other media."
msgstr ""
-#: ../../standalone/drakbackup_.c:2296
+#: ../../standalone/drakbackup_.c:2371
msgid "What"
msgstr ""
-#: ../../standalone/drakbackup_.c:2301
+#: ../../standalone/drakbackup_.c:2376
#, fuzzy
msgid "Where"
msgstr "Roda"
-#: ../../standalone/drakbackup_.c:2306
+#: ../../standalone/drakbackup_.c:2381
#, fuzzy
msgid "When"
msgstr "Roda"
-#: ../../standalone/drakbackup_.c:2311
+#: ../../standalone/drakbackup_.c:2386
#, fuzzy
msgid "More Options"
msgstr "Opçőes do módulo:"
-#: ../../standalone/drakbackup_.c:2330 ../../standalone/drakbackup_.c:3873
+#: ../../standalone/drakbackup_.c:2405 ../../standalone/drakbackup_.c:4530
#, fuzzy
msgid "Drakbackup Configuration"
msgstr "Configuraçăo da Rede"
-#: ../../standalone/drakbackup_.c:2348
+#: ../../standalone/drakbackup_.c:2423
#, fuzzy
msgid "Please choose where you want to backup"
msgstr "Escolha os pacotes que você quer instalar"
-#: ../../standalone/drakbackup_.c:2350
+#: ../../standalone/drakbackup_.c:2425
msgid "on Hard Drive"
msgstr ""
-#: ../../standalone/drakbackup_.c:2360
+#: ../../standalone/drakbackup_.c:2435
msgid "across Network"
msgstr ""
-#: ../../standalone/drakbackup_.c:2370
+#: ../../standalone/drakbackup_.c:2445
msgid "on CDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2378
+#: ../../standalone/drakbackup_.c:2453
msgid "on Tape Device"
msgstr ""
-#: ../../standalone/drakbackup_.c:2421
+#: ../../standalone/drakbackup_.c:2496
#, fuzzy
msgid "Please choose what you want to backup"
msgstr "Escolha os pacotes que você quer instalar"
-#: ../../standalone/drakbackup_.c:2422
+#: ../../standalone/drakbackup_.c:2497
#, fuzzy
msgid "Backup system"
msgstr "Setup dos sistemas de arquivos"
-#: ../../standalone/drakbackup_.c:2423
+#: ../../standalone/drakbackup_.c:2498
msgid "Backup Users"
msgstr ""
-#: ../../standalone/drakbackup_.c:2426
+#: ../../standalone/drakbackup_.c:2501
msgid "Select user manually"
msgstr ""
-#: ../../standalone/drakbackup_.c:2508
+#: ../../standalone/drakbackup_.c:2584
msgid ""
"\n"
"Backup Sources: \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2509
+#: ../../standalone/drakbackup_.c:2585
msgid ""
"\n"
"- System Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2511
+#: ../../standalone/drakbackup_.c:2587
msgid ""
"\n"
"- User Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2513
+#: ../../standalone/drakbackup_.c:2589
msgid ""
"\n"
"- Other Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2515
+#: ../../standalone/drakbackup_.c:2591
#, c-format
msgid ""
"\n"
-"- Save on Hard drive on path : %s\n"
+"- Save on Hard drive on path: %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2518
+#: ../../standalone/drakbackup_.c:2594
msgid ""
"\n"
"- Delete hard drive tar files after backup.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2524
+#: ../../standalone/drakbackup_.c:2600
msgid ""
"\n"
"- Burn to CD"
msgstr ""
-#: ../../standalone/drakbackup_.c:2525
+#: ../../standalone/drakbackup_.c:2601
msgid "RW"
msgstr ""
-#: ../../standalone/drakbackup_.c:2526
+#: ../../standalone/drakbackup_.c:2602
#, fuzzy, c-format
-msgid " on device : %s"
+msgid " on device: %s"
msgstr "Dispositivo do mouse: %s\n"
-#: ../../standalone/drakbackup_.c:2527
+#: ../../standalone/drakbackup_.c:2603
msgid " (multi-session)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2528
+#: ../../standalone/drakbackup_.c:2604
#, c-format
msgid ""
"\n"
-"- Save to Tape on device : %s"
+"- Save to Tape on device: %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2529
+#: ../../standalone/drakbackup_.c:2605
#, c-format
msgid "\t\tErase=%s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2532
+#: ../../standalone/drakbackup_.c:2608
#, c-format
msgid ""
"\n"
-"- Save via %s on host : %s\n"
+"- Save via %s on host: %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2533
+#: ../../standalone/drakbackup_.c:2609
#, c-format
msgid ""
"\t\t user name: %s\n"
"\t\t on path: %s \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2534
+#: ../../standalone/drakbackup_.c:2610
#, fuzzy
msgid ""
"\n"
"- Options:\n"
msgstr "Opçőes"
-#: ../../standalone/drakbackup_.c:2535
+#: ../../standalone/drakbackup_.c:2611
msgid "\tDo not include System Files\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2538
+#: ../../standalone/drakbackup_.c:2614
msgid "\tBackups use tar and bzip2\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2540
+#: ../../standalone/drakbackup_.c:2616
msgid "\tBackups use tar and gzip\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2543
+#: ../../standalone/drakbackup_.c:2619
#, c-format
msgid ""
"\n"
-"- Daemon (%s) include :\n"
+"- Daemon (%s) include:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2544
+#: ../../standalone/drakbackup_.c:2620
msgid "\t-Hard drive.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2545
+#: ../../standalone/drakbackup_.c:2621
msgid "\t-CDROM.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2546
+#: ../../standalone/drakbackup_.c:2622
msgid "\t-Tape \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2547
+#: ../../standalone/drakbackup_.c:2623
msgid "\t-Network by FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2548
+#: ../../standalone/drakbackup_.c:2624
msgid "\t-Network by SSH.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2549
+#: ../../standalone/drakbackup_.c:2625
msgid "\t-Network by rsync.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2550
+#: ../../standalone/drakbackup_.c:2626
msgid "\t-Network by webdav.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2552
+#: ../../standalone/drakbackup_.c:2628
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2558
+#: ../../standalone/drakbackup_.c:2634
msgid ""
"List of data to restore:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2725
+#: ../../standalone/drakbackup_.c:2801
msgid ""
"List of data corrupted:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2727
+#: ../../standalone/drakbackup_.c:2803
#, fuzzy
msgid "Please uncheck or remove it on next time."
msgstr "Favor escolher em qual porta serial seu modem está conectado."
-#: ../../standalone/drakbackup_.c:2737
+#: ../../standalone/drakbackup_.c:2813
msgid "Backup files are corrupted"
msgstr ""
-#: ../../standalone/drakbackup_.c:2758
+#: ../../standalone/drakbackup_.c:2834
msgid " All of your selected data have been "
msgstr ""
-#: ../../standalone/drakbackup_.c:2759
+#: ../../standalone/drakbackup_.c:2835
#, c-format
msgid " Successfuly Restored on %s "
msgstr ""
-#: ../../standalone/drakbackup_.c:2877
+#: ../../standalone/drakbackup_.c:2953
#, fuzzy
msgid " Restore Configuration "
msgstr "Configuraçăo da Rede"
-#: ../../standalone/drakbackup_.c:2895
+#: ../../standalone/drakbackup_.c:2971
msgid "OK to restore the other files."
msgstr ""
-#: ../../standalone/drakbackup_.c:2912
+#: ../../standalone/drakbackup_.c:2988
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2975
+#: ../../standalone/drakbackup_.c:3066
#, fuzzy
msgid "Backup the system files before:"
msgstr "Arquivo de backup defeituoso"
-#: ../../standalone/drakbackup_.c:2977
+#: ../../standalone/drakbackup_.c:3068
#, fuzzy
msgid "please choose the date to restore"
msgstr "Favor escolher o tipo do seu mouse."
-#: ../../standalone/drakbackup_.c:3014
+#: ../../standalone/drakbackup_.c:3105
#, fuzzy
msgid "Use Hard Disk to backup"
msgstr "Arquivo de backup defeituoso"
-#: ../../standalone/drakbackup_.c:3017
+#: ../../standalone/drakbackup_.c:3108
#, fuzzy
msgid "Please enter the directory to save:"
msgstr "Favor testar o mouse"
-#: ../../standalone/drakbackup_.c:3060
+#: ../../standalone/drakbackup_.c:3151
#, fuzzy
msgid "FTP Connection"
msgstr "Coneçăo LAN"
-#: ../../standalone/drakbackup_.c:3067
+#: ../../standalone/drakbackup_.c:3158
#, fuzzy
msgid "Secure Connection"
msgstr "Selecionar Coneçăo da Impressora"
-#: ../../standalone/drakbackup_.c:3093
+#: ../../standalone/drakbackup_.c:3184
#, fuzzy
msgid "Restore from Hard Disk."
msgstr "Restaurar do disquete"
-#: ../../standalone/drakbackup_.c:3095
+#: ../../standalone/drakbackup_.c:3186
msgid "Please enter the directory where backups are stored"
msgstr ""
-#: ../../standalone/drakbackup_.c:3157
+#: ../../standalone/drakbackup_.c:3254
#, fuzzy
msgid "Select another media to restore from"
msgstr "Favor escolher o tipo do seu mouse."
-#: ../../standalone/drakbackup_.c:3159
+#: ../../standalone/drakbackup_.c:3256
#, fuzzy
msgid "Other Media"
msgstr "Outro"
-#: ../../standalone/drakbackup_.c:3164
+#: ../../standalone/drakbackup_.c:3261
#, fuzzy
msgid "Restore system"
msgstr "Instalar sistema"
-#: ../../standalone/drakbackup_.c:3165
+#: ../../standalone/drakbackup_.c:3262
#, fuzzy
msgid "Restore Users"
msgstr "Restaurar do arquivo"
-#: ../../standalone/drakbackup_.c:3166
+#: ../../standalone/drakbackup_.c:3263
#, fuzzy
msgid "Restore Other"
msgstr "Restaurar do arquivo"
-#: ../../standalone/drakbackup_.c:3168
+#: ../../standalone/drakbackup_.c:3265
#, fuzzy
msgid "select path to restore (instead of /)"
msgstr "Favor escolher o tipo do seu mouse."
-#: ../../standalone/drakbackup_.c:3172
+#: ../../standalone/drakbackup_.c:3269
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:3174
+#: ../../standalone/drakbackup_.c:3271
msgid "Remove user directories before restore."
msgstr ""
-#: ../../standalone/drakbackup_.c:3232
+#: ../../standalone/drakbackup_.c:3384
+msgid ""
+"Restore Selected\n"
+"Catalog Entry"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3394
+#, fuzzy
+msgid ""
+"Restore Selected\n"
+"Files"
+msgstr "Fila remota"
+
+#: ../../standalone/drakbackup_.c:3411
+#, fuzzy
+msgid ""
+"Change\n"
+"Restore Path"
+msgstr "Restaurar do arquivo"
+
+#: ../../standalone/drakbackup_.c:3477
+#, c-format
+msgid "Backup files not found at %s."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3490
+#, c-format
+msgid ""
+"Insert the CD with volume label %s\n"
+" in the CD drive under mount point /mnt/cdrom"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3490
+#, fuzzy
+msgid "Restore From CD"
+msgstr "Restaurar do disquete"
+
+#: ../../standalone/drakbackup_.c:3492
+#, c-format
+msgid "Not the correct CD label. Disk is labelled %s."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3502
+#, c-format
+msgid ""
+"Insert the tape with volume label %s\n"
+" in the tape drive device %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3502
+#, fuzzy
+msgid "Restore From Tape"
+msgstr "Restaurar tabela de partiçăo"
+
+#: ../../standalone/drakbackup_.c:3504
+#, c-format
+msgid "Not the correct tape label. Tape is labelled %s."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3524
+#, fuzzy
+msgid "Restore Via Network"
+msgstr "Restaurar do arquivo"
+
+#: ../../standalone/drakbackup_.c:3524
+#, c-format
+msgid "Restore Via Network Protocol: %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3525
+#, fuzzy
+msgid "Host Name"
+msgstr "Host name (nome do host)"
+
+#: ../../standalone/drakbackup_.c:3526
+msgid "Host Path or Module"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3533
+#, fuzzy
+msgid "Password required"
+msgstr "Senha"
+
+#: ../../standalone/drakbackup_.c:3539
+#, fuzzy
+msgid "Username required"
+msgstr "Nome do usuário"
+
+#: ../../standalone/drakbackup_.c:3542
+#, fuzzy
+msgid "Hostname required"
+msgstr "Hostname:"
+
+#: ../../standalone/drakbackup_.c:3547
+msgid "Path or Module required"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3560
+msgid "Files Restored..."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3563
+#, fuzzy
+msgid "Restore Failed..."
+msgstr "Restaurar do arquivo"
+
+#: ../../standalone/drakbackup_.c:3801
msgid "Restore all backups"
msgstr ""
-#: ../../standalone/drakbackup_.c:3241
+#: ../../standalone/drakbackup_.c:3810
#, fuzzy
msgid "Custom Restore"
msgstr "Personalizada"
-#: ../../standalone/drakbackup_.c:3287 ../../standalone/drakbackup_.c:3320
-#: ../../standalone/drakbackup_.c:3346 ../../standalone/drakbackup_.c:3373
-#: ../../standalone/drakbackup_.c:3400 ../../standalone/drakbackup_.c:3460
-#: ../../standalone/drakbackup_.c:3487 ../../standalone/drakbackup_.c:3513
+#: ../../standalone/drakbackup_.c:3856
+msgid "CD in place - continue."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3862
+msgid "Browse to new restore repository."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3865
+#, fuzzy
+msgid "Restore From Catalog"
+msgstr "Restaurar tabela de partiçăo"
+
+#: ../../standalone/drakbackup_.c:3893
+#, fuzzy
+msgid "Restore Progress"
+msgstr "Restaurar do arquivo"
+
+#: ../../standalone/drakbackup_.c:3935 ../../standalone/drakbackup_.c:3968
+#: ../../standalone/drakbackup_.c:3994 ../../standalone/drakbackup_.c:4021
+#: ../../standalone/drakbackup_.c:4048 ../../standalone/drakbackup_.c:4108
+#: ../../standalone/drakbackup_.c:4135 ../../standalone/drakbackup_.c:4165
+#: ../../standalone/drakbackup_.c:4191
#, fuzzy
msgid "Previous"
msgstr "<- Anterior"
-#: ../../standalone/drakbackup_.c:3291 ../../standalone/drakbackup_.c:3377
+#: ../../standalone/drakbackup_.c:3939 ../../standalone/drakbackup_.c:4025
#: ../../standalone/logdrake_.c:223
#, fuzzy
msgid "Save"
msgstr "Status:"
-#: ../../standalone/drakbackup_.c:3350
+#: ../../standalone/drakbackup_.c:3998
#, fuzzy
msgid "Build Backup"
msgstr "Arquivo de backup defeituoso"
-#: ../../standalone/drakbackup_.c:3404 ../../standalone/drakbackup_.c:3974
+#: ../../standalone/drakbackup_.c:4052 ../../standalone/drakbackup_.c:4632
#, fuzzy
msgid "Restore"
msgstr "Restaurar do arquivo"
-#: ../../standalone/drakbackup_.c:3553
+#: ../../standalone/drakbackup_.c:4231
msgid ""
-"Please Build backup before to restore it...\n"
-" or verify that your path to save is correct."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3574
-msgid ""
-"Error during sendmail\n"
-" your report mail was not sent\n"
+"Error during sendmail.\n"
+" Your report mail was not sent.\n"
" Please configure sendmail"
msgstr ""
-#: ../../standalone/drakbackup_.c:3598
+#: ../../standalone/drakbackup_.c:4255
#, fuzzy
msgid ""
"The following packages need to be installed:\n"
" @list_of_rpm_to_install"
msgstr "Os seguintes pacotes serăo instalados"
-#: ../../standalone/drakbackup_.c:3621
+#: ../../standalone/drakbackup_.c:4278
msgid ""
"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
-#: ../../standalone/drakbackup_.c:3644
+#: ../../standalone/drakbackup_.c:4301
#, fuzzy
msgid "Please select data to restore..."
msgstr "Favor escolher o idioma a ser utilizado."
-#: ../../standalone/drakbackup_.c:3665
+#: ../../standalone/drakbackup_.c:4322
#, fuzzy
msgid "Please select media for backup..."
msgstr "Favor escolher o idioma a ser utilizado."
-#: ../../standalone/drakbackup_.c:3687
+#: ../../standalone/drakbackup_.c:4344
#, fuzzy
msgid "Please select data to backup..."
msgstr "Favor escolher o idioma a ser utilizado."
-#: ../../standalone/drakbackup_.c:3709
+#: ../../standalone/drakbackup_.c:4366
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
msgstr ""
-#: ../../standalone/drakbackup_.c:3730
+#: ../../standalone/drakbackup_.c:4387
msgid "Under Devel ... please wait."
msgstr ""
-#: ../../standalone/drakbackup_.c:3811
+#: ../../standalone/drakbackup_.c:4468
#, fuzzy
msgid "Backup system files"
msgstr "Arquivo de backup defeituoso"
-#: ../../standalone/drakbackup_.c:3813
+#: ../../standalone/drakbackup_.c:4470
#, fuzzy
msgid "Backup user files"
msgstr "Arquivo de backup defeituoso"
-#: ../../standalone/drakbackup_.c:3815
+#: ../../standalone/drakbackup_.c:4472
#, fuzzy
msgid "Backup other files"
msgstr "Arquivo de backup defeituoso"
-#: ../../standalone/drakbackup_.c:3817 ../../standalone/drakbackup_.c:3850
+#: ../../standalone/drakbackup_.c:4474 ../../standalone/drakbackup_.c:4507
msgid "Total Progress"
msgstr ""
-#: ../../standalone/drakbackup_.c:3841
+#: ../../standalone/drakbackup_.c:4498
msgid "files sending by FTP"
msgstr ""
-#: ../../standalone/drakbackup_.c:3845
+#: ../../standalone/drakbackup_.c:4502
#, fuzzy
msgid "Sending files..."
msgstr "Salvar no arquivo"
-#: ../../standalone/drakbackup_.c:3931
+#: ../../standalone/drakbackup_.c:4588
#, fuzzy
msgid "Backup Now from configuration file"
msgstr "Configuraçăo da Rede"
-#: ../../standalone/drakbackup_.c:3936
+#: ../../standalone/drakbackup_.c:4593
#, fuzzy
msgid "View Backup Configuration."
msgstr "Configuraçăo da Rede"
-#: ../../standalone/drakbackup_.c:3956
+#: ../../standalone/drakbackup_.c:4614
#, fuzzy
msgid "Wizard Configuration"
msgstr "Configuraçăo LAN"
-#: ../../standalone/drakbackup_.c:3961
+#: ../../standalone/drakbackup_.c:4619
#, fuzzy
msgid "Advanced Configuration"
msgstr "Configuraçăo LAN"
-#: ../../standalone/drakbackup_.c:3966
+#: ../../standalone/drakbackup_.c:4624
#, fuzzy
msgid "Backup Now"
msgstr "Setup dos sistemas de arquivos"
-#: ../../standalone/drakbackup_.c:3996
+#: ../../standalone/drakbackup_.c:4658
msgid "Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:4045
+#: ../../standalone/drakbackup_.c:4707
msgid ""
"options description:\n"
"\n"
@@ -11028,7 +11544,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4075
+#: ../../standalone/drakbackup_.c:4737
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -11037,7 +11553,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4083
+#: ../../standalone/drakbackup_.c:4745
msgid ""
"options description:\n"
"\n"
@@ -11078,45 +11594,45 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4122
+#: ../../standalone/drakbackup_.c:4784
msgid ""
"restore description:\n"
" \n"
-"Only the most recent date will be used ,because with incremental \n"
-"backups it is necesarry to restore one by one each older backups.\n"
+"Only the most recent date will be used, because with incremental \n"
+"backups it is necessary to restore one by one each older backup.\n"
"\n"
-"So if you don't like to restore a user please unselect all his\n"
-"check box.\n"
+"So if you don't want to restore a user please unselect all their\n"
+"check boxes.\n"
"\n"
-"Otherwise, you are able to select only one of this\n"
+"Otherwise, you are able to select only one of these.\n"
"\n"
" - Incremental Backups:\n"
"\n"
"\tThe incremental backup is the most powerful \n"
-"\toption to use backup, this option allow you \n"
-"\tto backup all your data the first time, and \n"
-"\tonly the changed after.\n"
-"\tSo you will be able during the restore\n"
+"\toption to use. This option allows you to \n"
+"\tbackup all of your data the first time, and \n"
+"\tonly the changed data after.\n"
+"\tSo you will be able, during the restore\n"
"\tstep, to restore your data from a specified\n"
"\tdate.\n"
-"\tIf you have not selected this options all\n"
+"\tIf you have not selected this option all\n"
"\told backups are deleted before each backup. \n"
"\n"
"\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4148 ../../standalone/drakbackup_.c:4225
+#: ../../standalone/drakbackup_.c:4810 ../../standalone/drakbackup_.c:4887
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
-#: ../../standalone/drakbackup_.c:4150 ../../standalone/drakbackup_.c:4227
+#: ../../standalone/drakbackup_.c:4812 ../../standalone/drakbackup_.c:4889
msgid ""
" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
-#: ../../standalone/drakbackup_.c:4152 ../../standalone/drakbackup_.c:4229
+#: ../../standalone/drakbackup_.c:4814 ../../standalone/drakbackup_.c:4891
msgid ""
" This program is free software; you can redistribute it and/or modify\n"
" it under the terms of the GNU General Public License as published by\n"
@@ -11133,7 +11649,7 @@ msgid ""
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
msgstr ""
-#: ../../standalone/drakbackup_.c:4166
+#: ../../standalone/drakbackup_.c:4828
msgid ""
"Description:\n"
"\n"
@@ -11173,7 +11689,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4204
+#: ../../standalone/drakbackup_.c:4866
msgid ""
"options description:\n"
"\n"
@@ -11184,7 +11700,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4213
+#: ../../standalone/drakbackup_.c:4875
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -11197,7 +11713,7 @@ msgid ""
"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4243
+#: ../../standalone/drakbackup_.c:4905
msgid ""
"Description:\n"
"\n"
@@ -11278,9 +11794,9 @@ msgstr ""
msgid "Synchronization tool"
msgstr ""
-#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:85
-#: ../../standalone/drakbug_.c:150 ../../standalone/drakbug_.c:152
-#: ../../standalone/drakbug_.c:156
+#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:86
+#: ../../standalone/drakbug_.c:151 ../../standalone/drakbug_.c:153
+#: ../../standalone/drakbug_.c:157
#, fuzzy
msgid "Standalone Tools"
msgstr "Ferramentas do Console"
@@ -11332,26 +11848,26 @@ msgstr "Printerdrake"
msgid "Configuration Wizards"
msgstr "Auxiliar de Configuraçăo da Rede"
-#: ../../standalone/drakbug_.c:96
+#: ../../standalone/drakbug_.c:97
#, fuzzy
msgid "Application:"
msgstr "Autenticaçăo?"
-#: ../../standalone/drakbug_.c:97
+#: ../../standalone/drakbug_.c:98
#, fuzzy
msgid "Package: "
msgstr "Seleçăo de Grupo de Pacotes"
-#: ../../standalone/drakbug_.c:98
+#: ../../standalone/drakbug_.c:99
msgid "Kernel:"
msgstr ""
-#: ../../standalone/drakbug_.c:99
+#: ../../standalone/drakbug_.c:100
#, fuzzy
msgid "Release: "
msgstr "Por favor aguarde"
-#: ../../standalone/drakbug_.c:114
+#: ../../standalone/drakbug_.c:115
msgid ""
"\n"
"\n"
@@ -11363,21 +11879,21 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbug_.c:135
+#: ../../standalone/drakbug_.c:136
#, fuzzy
msgid "Report"
msgstr "Porta"
-#: ../../standalone/drakbug_.c:165
+#: ../../standalone/drakbug_.c:166
#, fuzzy
msgid "Not installed"
msgstr "Sair da instalaçăo"
-#: ../../standalone/drakbug_.c:182
+#: ../../standalone/drakbug_.c:183
msgid "connecting to Bugzilla wizard ..."
msgstr ""
-#: ../../standalone/drakbug_.c:189
+#: ../../standalone/drakbug_.c:190
#, fuzzy
msgid "No browser available! Please install one"
msgstr "Screenshots estarăo disponíveis depois da instalaçăo em %s"
@@ -11827,7 +12343,7 @@ msgstr "Ponto de Montagem"
#: ../../standalone/drakfont_.c:909
#, fuzzy
-msgid "Choose the applications that will support the fonts :"
+msgid "Choose the applications that will support the fonts:"
msgstr "Escolha as partiçőes que você quer formatar"
#: ../../standalone/drakfont_.c:918
@@ -11909,19 +12425,19 @@ msgstr "Nenhum adaptador de rede em seu sistema!"
msgid "Post Uninstall"
msgstr "Sair da instalaçăo"
-#: ../../standalone/drakgw_.c:42 ../../standalone/drakgw_.c:195
+#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:188
msgid "Internet Connection Sharing"
msgstr "Compartilhamento da Conexăo à Internet"
-#: ../../standalone/drakgw_.c:121
+#: ../../standalone/drakgw_.c:119
msgid "Sorry, we support only 2.4 kernels."
msgstr ""
-#: ../../standalone/drakgw_.c:133
+#: ../../standalone/drakgw_.c:130
msgid "Internet Connection Sharing currently enabled"
msgstr "O Compartilhamento da Conexăo à Internet está ativo"
-#: ../../standalone/drakgw_.c:134
+#: ../../standalone/drakgw_.c:131
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -11933,31 +12449,31 @@ msgstr ""
"\n"
"O que você gostaria de fazer?"
-#: ../../standalone/drakgw_.c:138
+#: ../../standalone/drakgw_.c:135
msgid "disable"
msgstr "desativar"
-#: ../../standalone/drakgw_.c:138 ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:135 ../../standalone/drakgw_.c:160
msgid "dismiss"
msgstr "liberar"
-#: ../../standalone/drakgw_.c:138 ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:135 ../../standalone/drakgw_.c:160
msgid "reconfigure"
msgstr "reconfigurar"
-#: ../../standalone/drakgw_.c:141
+#: ../../standalone/drakgw_.c:138
msgid "Disabling servers..."
msgstr "Desativando servidores..."
-#: ../../standalone/drakgw_.c:149
+#: ../../standalone/drakgw_.c:146
msgid "Internet connection sharing is now disabled."
msgstr "O Compartilhamento da Conexăo à Internet agora está desativado."
-#: ../../standalone/drakgw_.c:158
+#: ../../standalone/drakgw_.c:155
msgid "Internet Connection Sharing currently disabled"
msgstr "O Compartilhamento da Conexăo à Internet está desativado"
-#: ../../standalone/drakgw_.c:159
+#: ../../standalone/drakgw_.c:156
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
@@ -11969,19 +12485,19 @@ msgstr ""
"\n"
"O que você gostaria de fazer?"
-#: ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:160
msgid "enable"
msgstr "ativar"
-#: ../../standalone/drakgw_.c:170
+#: ../../standalone/drakgw_.c:167
msgid "Enabling servers..."
msgstr "Ativando servidores..."
-#: ../../standalone/drakgw_.c:175
+#: ../../standalone/drakgw_.c:172
msgid "Internet connection sharing is now enabled."
msgstr "O Compartilhamento da Conexăo à Internet agora está ativo."
-#: ../../standalone/drakgw_.c:196
+#: ../../standalone/drakgw_.c:189
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
"With that feature, other computers on your local network will be able to use "
@@ -11997,21 +12513,21 @@ msgstr ""
"Nota: você precisa de um Adaptador de Rede dedicado para criar um Rede Local "
"(LAN)."
-#: ../../standalone/drakgw_.c:222
+#: ../../standalone/drakgw_.c:215
#, c-format
msgid "Interface %s (using module %s)"
msgstr "Interface %s (usando módulo %s)"
-#: ../../standalone/drakgw_.c:223
+#: ../../standalone/drakgw_.c:216
#, c-format
msgid "Interface %s"
msgstr "Interface %s"
-#: ../../standalone/drakgw_.c:231
+#: ../../standalone/drakgw_.c:224
msgid "No network adapter on your system!"
msgstr "Nenhum adaptador de rede em seu sistema!"
-#: ../../standalone/drakgw_.c:232
+#: ../../standalone/drakgw_.c:225
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
@@ -12019,11 +12535,11 @@ msgstr ""
"Nenhum adaptador de rede foi detectado em seu sistema. Favor executar a "
"ferramenta de configuraçăo de hardware."
-#: ../../standalone/drakgw_.c:238
+#: ../../standalone/drakgw_.c:231
msgid "Network interface"
msgstr "Interface de rede"
-#: ../../standalone/drakgw_.c:239
+#: ../../standalone/drakgw_.c:232
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -12038,18 +12554,18 @@ msgstr ""
"\n"
"Irei configurar sua Rede Local (LAN) com esse adaptador."
-#: ../../standalone/drakgw_.c:248
+#: ../../standalone/drakgw_.c:241
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
msgstr "Favor escolher qual adaptador de rede será conectado à su Rede Local."
-#: ../../standalone/drakgw_.c:266
+#: ../../standalone/drakgw_.c:259
#, fuzzy
msgid "Network interface already configured"
msgstr "Monitor năo configurado"
-#: ../../standalone/drakgw_.c:267
+#: ../../standalone/drakgw_.c:260
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -12059,17 +12575,17 @@ msgid ""
"You can do it manually but you need to know what you're doing."
msgstr ""
-#: ../../standalone/drakgw_.c:272
+#: ../../standalone/drakgw_.c:265
#, fuzzy
msgid "Automatic reconfiguration"
msgstr "Configuraçăo do estilo de inicializaçăo"
-#: ../../standalone/drakgw_.c:273
+#: ../../standalone/drakgw_.c:266
#, fuzzy
msgid "Show current interface configuration"
msgstr "Configuraçăo da Internet"
-#: ../../standalone/drakgw_.c:275
+#: ../../standalone/drakgw_.c:268
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -12080,7 +12596,7 @@ msgid ""
"Driver: %s"
msgstr ""
-#: ../../standalone/drakgw_.c:287
+#: ../../standalone/drakgw_.c:280
msgid ""
"I can keep your current configuration and assume you already set up a DHCP "
"server; in that case please verify I correctly read the C-Class Network that "
@@ -12092,55 +12608,43 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakgw_.c:292
+#: ../../standalone/drakgw_.c:285
msgid "C-Class Local Network"
msgstr ""
-#: ../../standalone/drakgw_.c:293
+#: ../../standalone/drakgw_.c:286
#, fuzzy
msgid "(This) DHCP Server IP"
msgstr "IP do servidor CUPS"
-#: ../../standalone/drakgw_.c:294
+#: ../../standalone/drakgw_.c:287
msgid "Re-configure interface and DHCP server"
msgstr ""
-#: ../../standalone/drakgw_.c:301
+#: ../../standalone/drakgw_.c:294
msgid "The Local Network did not finish with `.0', bailing out."
msgstr ""
-#: ../../standalone/drakgw_.c:312
+#: ../../standalone/drakgw_.c:305
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr ""
"Potencial conflinto de endereço LAN encontra na configuraçăo atual de %s!\n"
-#: ../../standalone/drakgw_.c:320
-msgid "Firewalling configuration detected!"
-msgstr "Configuraçăo de Firewall detectado!"
-
-#: ../../standalone/drakgw_.c:321
-msgid ""
-"Warning! An existing firewalling configuration has been detected. You may "
-"need some manual fix after installation."
-msgstr ""
-"Atençăo! Uma configuraçăo de firewall foi detectada. Talvez você terá que "
-"fazer alguma correçăo manual após a instalaçăo."
-
-#: ../../standalone/drakgw_.c:328
+#: ../../standalone/drakgw_.c:315
msgid "Configuring..."
msgstr "Configurando..."
-#: ../../standalone/drakgw_.c:329
+#: ../../standalone/drakgw_.c:316
msgid "Configuring scripts, installing software, starting servers..."
msgstr "Configurando scripts, instalando programas, iniciando servidores..."
-#: ../../standalone/drakgw_.c:365
+#: ../../standalone/drakgw_.c:352
#, c-format
msgid "Problems installing package %s"
msgstr "Problemas instalando pacote %s"
-#: ../../standalone/drakgw_.c:549
+#: ../../standalone/drakgw_.c:485
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
@@ -12150,23 +12654,23 @@ msgstr ""
"Você agora pode compartilhar sua conexăo com outros computadores na sua Rede "
"Local (LAN), usando a configuraçăo automática de rede (DHCP)."
-#: ../../standalone/drakgw_.c:566
+#: ../../standalone/drakgw_.c:504
msgid "The setup has already been done, but it's currently disabled."
msgstr "A configuraçăo já foi feita, mas está desativada."
-#: ../../standalone/drakgw_.c:567
+#: ../../standalone/drakgw_.c:505
msgid "The setup has already been done, and it's currently enabled."
msgstr "A configuraçăo já foi feita e está desativada."
-#: ../../standalone/drakgw_.c:568
+#: ../../standalone/drakgw_.c:506
msgid "No Internet Connection Sharing has ever been configured."
msgstr "O Compartilhamento de Conexăo à Internet nunca foi configurado."
-#: ../../standalone/drakgw_.c:573
+#: ../../standalone/drakgw_.c:511
msgid "Internet connection sharing configuration"
msgstr "Configuraçăo do compartilhamento da Internet"
-#: ../../standalone/drakgw_.c:580
+#: ../../standalone/drakgw_.c:518
#, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -12181,6 +12685,158 @@ msgstr ""
"\n"
"Clique em ``Configurar'' se você quiser abrir o ajudante de configuraçăo."
+#: ../../standalone/draksound_.c:46
+#, fuzzy
+msgid "No Sound Card detected!"
+msgstr "Năo conectado"
+
+#: ../../standalone/draksound_.c:47
+msgid ""
+"No Sound Card has been detected on your machine. Please verify that a Linux-"
+"supported Sound Card is correctly plugged in.\n"
+"\n"
+"\n"
+"You can visit our hardware database at:\n"
+"\n"
+"\n"
+"http://www.linux-mandrake.com/en/hardware.php3"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:32
+msgid "package ImageMagick is required for correct working"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:76
+#, fuzzy
+msgid "first step creation"
+msgstr "criaçăo de discos de boot"
+
+#: ../../standalone/draksplash_.c:77
+#, fuzzy
+msgid "final resolution"
+msgstr "Resoluçăo"
+
+#: ../../standalone/draksplash_.c:78 ../../standalone/draksplash_.c:170
+#, fuzzy
+msgid "choose image file"
+msgstr "Escolher açăo"
+
+#: ../../standalone/draksplash_.c:79
+#, fuzzy
+msgid "Theme name"
+msgstr "Nome compartilhado"
+
+#: ../../standalone/draksplash_.c:81
+msgid "make bootsplash step 2"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:82
+#, fuzzy
+msgid "go to lilosplash configuration"
+msgstr "Configuraçăo pós-instalaçăo"
+
+#: ../../standalone/draksplash_.c:83
+#, fuzzy
+msgid "quit"
+msgstr "Sair"
+
+#: ../../standalone/draksplash_.c:84
+#, fuzzy
+msgid "save theme"
+msgstr "Instalar sistema"
+
+#: ../../standalone/draksplash_.c:85
+msgid "browse"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:98 ../../standalone/draksplash_.c:159
+#, fuzzy
+msgid "Configure bootsplash picture"
+msgstr "Configurar serviços"
+
+#: ../../standalone/draksplash_.c:99
+msgid "x coordinate of text box in number of character"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:100
+msgid "y coordinate of text box in number of character"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:101
+msgid "text width"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:102
+msgid "text box height"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:103
+msgid "the progress bar x coordinate of its upper left corner"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:104
+msgid "the progress bar y coordinate of its upper left corner"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:105
+msgid "the width of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:106
+msgid "the heigth of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:107
+msgid "the color of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:119
+#, fuzzy
+msgid "go back"
+msgstr "Loopback"
+
+#: ../../standalone/draksplash_.c:120
+#, fuzzy
+msgid "preview"
+msgstr "dispositivos"
+
+#: ../../standalone/draksplash_.c:121
+#, fuzzy
+msgid "choose color"
+msgstr "Escolha um monitor"
+
+#: ../../standalone/draksplash_.c:124
+msgid "Display logo on Console"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:125
+msgid "Make kernel message quiet by default"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:161 ../../standalone/draksplash_.c:330
+#, c-format
+msgid "This theme haven't yet any bootsplash in %s !"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:213
+msgid "saving Bootsplash theme..."
+msgstr ""
+
+#: ../../standalone/draksplash_.c:436
+#, fuzzy
+msgid "ProgressBar color selection"
+msgstr "Conexăo da Impressora"
+
+#: ../../standalone/draksplash_.c:454
+#, fuzzy
+msgid "You must choose an image file first!"
+msgstr "Dispositivo de Impressăo URI"
+
+#: ../../standalone/draksplash_.c:463
+#, fuzzy
+msgid "Generating preview ..."
+msgstr "Detectando dispositivos..."
+
#: ../../standalone/drakxtv_.c:49
msgid ""
"XawTV isn't installed!\n"
@@ -12273,11 +12929,11 @@ msgid ""
msgstr ""
#: ../../standalone/drakxtv_.c:109
-msgid "TV norm :"
+msgid "TV norm:"
msgstr ""
#: ../../standalone/drakxtv_.c:110
-msgid "Area :"
+msgid "Area:"
msgstr ""
#: ../../standalone/drakxtv_.c:114
@@ -12353,7 +13009,7 @@ msgstr "Incapaz de iniciar a atualizaçăo on-line!!!\n"
msgid "The change is done, but to be effective you must logout"
msgstr ""
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:517
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:515
#, fuzzy
msgid "logdrake"
msgstr "draknet"
@@ -12533,7 +13189,7 @@ msgstr "dispositivo"
#: ../../standalone/logdrake_.c:431
msgid ""
-"You will receive an alert if one of the selected service is no more running"
+"You will receive an alert if one of the selected services is no more running"
msgstr ""
#: ../../standalone/logdrake_.c:443
@@ -12555,19 +13211,19 @@ msgstr "Configuraçăo"
msgid "Please enter your email address below "
msgstr "Favor tentar novamente"
-#: ../../standalone/logdrake_.c:499
+#: ../../standalone/logdrake_.c:497
msgid "Save as.."
msgstr "Salvar como..."
-#: ../../standalone/mousedrake_.c:43
+#: ../../standalone/mousedrake_.c:45
msgid "Please, choose the type of your mouse."
msgstr "Favor escolher o tipo do seu mouse."
-#: ../../standalone/mousedrake_.c:57
+#: ../../standalone/mousedrake_.c:58
msgid "Emulate third button?"
msgstr "Deseja emulaçăo de 3 botőes?"
-#: ../../standalone/printerdrake_.c:48
+#: ../../standalone/printerdrake_.c:57
#, fuzzy
msgid "Reading printer data ..."
msgstr "Lendo banco de dados de drivers do CUPS"
@@ -12581,34 +13237,45 @@ msgstr "Detectando dispositivos..."
msgid "Test ports"
msgstr "Testar portas"
-#: ../../standalone/scannerdrake_.c:52
+#: ../../standalone/scannerdrake_.c:53 ../../standalone/scannerdrake_.c:68
+#: ../../standalone/scannerdrake_.c:81
#, c-format
-msgid "%s found on %s, configure it ?"
+msgid "The %s is not supported by this version of Mandrake Linux."
msgstr ""
+#: ../../standalone/scannerdrake_.c:56
+#, fuzzy, c-format
+msgid "%s found on %s, configure it?"
+msgstr "Você gostaria de configurar uma impressora?"
+
#: ../../standalone/scannerdrake_.c:59
+#, c-format
+msgid "%s is not in the scanner database, configure it manually?"
+msgstr ""
+
+#: ../../standalone/scannerdrake_.c:65
#, fuzzy
msgid "Select a scanner"
msgstr "Selecione uma placa gráfica"
-#: ../../standalone/scannerdrake_.c:79
+#: ../../standalone/scannerdrake_.c:93
#, c-format
msgid "This %s scanner is unsupported"
msgstr ""
-#: ../../standalone/scannerdrake_.c:93
+#: ../../standalone/scannerdrake_.c:107
#, c-format
msgid ""
"Scannerdrake was not able to detect your %s scanner.\n"
"Please select the device where your scanner is plugged"
msgstr ""
-#: ../../standalone/scannerdrake_.c:95
+#: ../../standalone/scannerdrake_.c:109
#, fuzzy
msgid "choose device"
msgstr "Dispositivo de boot"
-#: ../../standalone/scannerdrake_.c:101
+#: ../../standalone/scannerdrake_.c:115
#, c-format
msgid ""
"This %s scanner must be configured by printerdrake.\n"
@@ -12616,7 +13283,7 @@ msgid ""
"section."
msgstr ""
-#: ../../standalone/scannerdrake_.c:106
+#: ../../standalone/scannerdrake_.c:120
#, c-format
msgid ""
"Your %s scanner has been configured.\n"
@@ -12624,48 +13291,18 @@ msgid ""
"applications menu."
msgstr ""
-#: ../../standalone/service_harddrake_.c:57
+#: ../../standalone/service_harddrake_.c:39
#, c-format
msgid "Some devices in the \"%s\" hardware class were removed:\n"
msgstr ""
-#: ../../standalone/service_harddrake_.c:61
+#: ../../standalone/service_harddrake_.c:43
#, c-format
msgid ""
"\n"
"Some devices in the %s class were added:\n"
msgstr ""
-#: ../../standalone/tinyfirewall_.c:30
-msgid "Firewalling Configuration"
-msgstr "Configuraçăo de Firewall"
-
-#: ../../standalone/tinyfirewall_.c:43
-msgid "Firewalling configuration"
-msgstr "Configuraçăo de Firewall"
-
-#: ../../standalone/tinyfirewall_.c:78
-msgid ""
-"Firewalling\n"
-"\n"
-"You already have set up a firewall.\n"
-"Click on Configure to change or remove the firewall"
-msgstr ""
-"Firewall\n"
-"\n"
-"Você já tem um firewall configurado.\n"
-"Clique em configurar para alterar ou remover o firewall"
-
-#: ../../standalone/tinyfirewall_.c:82
-msgid ""
-"Firewalling\n"
-"\n"
-"Click on Configure to set up a standard firewall"
-msgstr ""
-"Firewall\n"
-"\n"
-"Clique em configurar para criar um firewall padrăo"
-
#: ../../steps.pm_.c:14
msgid "Choose your language"
msgstr "Escolha seu idioma"
@@ -12739,223 +13376,7 @@ msgstr "Instalar sistema"
msgid "Exit install"
msgstr "Sair da instalaçăo"
-#: ../../tinyfirewall.pm_.c:9
-msgid ""
-"tinyfirewall configurator\n"
-"\n"
-"This configures a personal firewall for this Mandrake Linux machine.\n"
-"For a powerful dedicated firewall solution, please look to the\n"
-"specialized MandrakeSecurity Firewall distribution."
-msgstr ""
-"configurador pequenoFirewall\n"
-"\n"
-"Isso configura um firewall pessoal para essa máquina Mandrake Linux.\n"
-"Para um firewall dedicado potente, favor procurar a distribuiçăo\n"
-"especilizada MandrakeSecurity Firewall."
-
-#: ../../tinyfirewall.pm_.c:14
-msgid ""
-"We'll now ask you questions about which services you'd like to allow\n"
-"the Internet to connect to. Please think carefully about these\n"
-"questions, as your computer's security is important.\n"
-"\n"
-"Please, if you're not currently using one of these services, firewall\n"
-"it off. You can change this configuration anytime you like by\n"
-"re-running this application!"
-msgstr ""
-"Agora lhe perguntaremos sobre qual serviços você gostaria de permitir\n"
-"a Internet se conectar. Por favor, pense cuidadosamente sobre essas\n"
-"perguntas, já que a segurança do seu computador é importante.\n"
-"\n"
-"Atençăo, se você năo estiver usando um desses serviços, retire o firewall "
-"dele. Você pode alterar essa configuraçăo a qualquer hora,\n"
-"basta re-executar esse aplicativo!"
-
-#: ../../tinyfirewall.pm_.c:21
-msgid ""
-"Are you running a web server on this machine that you need the whole\n"
-"Internet to see? If you are running a webserver that only needs to be\n"
-"accessed by this machine, you can safely answer NO here.\n"
-"\n"
-msgstr ""
-"Você está executando um servidor web nesta máquina que você precisa\n"
-"que toda a Internet veja? Se você estiver executando um servidor web que\n"
-"precisa ser acessado por esta máquina apenas, favor responder NĂO aqui.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:26
-msgid ""
-"Are you running a name server on this machine? If you didn't set one\n"
-"up to give away IP and zone information to the whole Internet, please\n"
-"answer no.\n"
-"\n"
-msgstr ""
-"Você está executando um servidor de nome nesta máquina? Se você năo\n"
-"configurou um que dê a sua informaçăo de zona e IP para toda a Internet,\n"
-"favor responder năo.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:31
-msgid ""
-"Do you want to allow incoming Secure Shell (ssh) connections? This\n"
-"is a telnet-replacement that you might use to login. If you're using\n"
-"telnet now, you should definitely switch to ssh. telnet is not\n"
-"encrypted -- so some attackers can steal your password if you use\n"
-"it. ssh is encrypted and doesn't allow for this eavesdropping."
-msgstr ""
-"Você quer permitir receber conexőes Secure Shell (ssh)? Isso é um\n"
-"substituto da telnet que você pode usar para login. Se você estiver\n"
-"usando telnet agora, você deveria mudar definitivamente para ssh. telnet\n"
-"năo é codificada -- entăo alguns agressores podem roubar sua senha.\n"
-"ssh é codificada e năo permite esse tipo de roubo."
-
-#: ../../tinyfirewall.pm_.c:36
-msgid ""
-"Do you want to allow incoming telnet connections?\n"
-"This is horribly unsafe, as we explained in the previous screen. We\n"
-"strongly recommend answering No here and using ssh in place of\n"
-"telnet.\n"
-msgstr ""
-"Você quer permitir receber conexőes telnet?\n"
-"Isso é terrivelmente inseguro, como explicado na tela anterior. Nós\n"
-"fortemente recomendamos responder Năo aqui e utilizar ssh no lugar\n"
-"da telnet.\n"
-
-#: ../../tinyfirewall.pm_.c:41
-msgid ""
-"Are you running an FTP server here that you need accessible to the\n"
-"Internet? If you are, we strongly recommend that you only use it for\n"
-"Anonymous transfers. Any passwords sent by FTP can be stolen by some\n"
-"attackers, since FTP also uses no encryption for transferring passwords.\n"
-msgstr ""
-"Você está executando um servidor FTP que precisa ser acessível pela\n"
-"Internet? Se você estiver, nós realmente recomendamos que você user\n"
-"apenas para transferências anônimas. Qualquer senha enviada por FTP pode\n"
-"ser roubada por invasores, desde que FTP năo usa codificaçăo de senhas.\n"
-
-#: ../../tinyfirewall.pm_.c:46
-msgid ""
-"Are you running a mail server here? If you're sending you \n"
-"messages through pine, mutt or any other text-based mail client,\n"
-"you probably are. Otherwise, you should firewall this off.\n"
-"\n"
-msgstr ""
-"Você está executando um servidor de mensagens aqui? Se você esiver\n"
-"mando mensagens pelo pine, mutt ou qualquer outro cliente de texto,\n"
-"você provavelmente está. Caso contrário, você deve retirar o firewall dele.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:51
-msgid ""
-"Are you running a POP or IMAP server here? This would\n"
-"be used to host non-web-based mail accounts for people via \n"
-"this machine.\n"
-"\n"
-msgstr ""
-"Você está executando um servidor POP ou IMAP aqui? Ele seria\n"
-"utilizado para hospedar contas năo baseadas na web para\n"
-"pessoas através desta máquina.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:56
-msgid ""
-"You appear to be running a 2.2 kernel. If your network IP\n"
-"is automatically set by a computer in your home or office \n"
-"(dynamically assigned), we need to allow for this. Is\n"
-"this the case?\n"
-msgstr ""
-"Você parece estar utilizando um kernel 2.2. Se seu número IP\n"
-"for automaticamente dado por um computador em sua casa ou \n"
-"escritório (determinado dinamicamente), nós precisamos permitir\n"
-"isso. É esse o caso?\n"
-
-#: ../../tinyfirewall.pm_.c:61
-msgid ""
-"Is your computer getting time syncronized to another computer?\n"
-"Mostly, this is used by medium-large Unix/Linux organizations\n"
-"to synchronize time for logging and such. If you're not part\n"
-"of a larger office and haven't heard of this, you probably \n"
-"aren't."
-msgstr ""
-"O seu computador está sincronizando a hora com outro computador?\n"
-"Normalmente, isso é utilizado por organizaçőes Unix/Linux médias-grandes\n"
-"para sincronizar o tempo para relatório, etc. Se você năo for\n"
-"parte de uma grande empresa ou nunca ouviu sobre isso, você \n"
-"provalvemente năo está."
-
-#: ../../tinyfirewall.pm_.c:66
-msgid ""
-"Configuration complete. May we write these changes to disk?\n"
-"\n"
-"\n"
-"\n"
-msgstr ""
-"Configuraçăo completa. Essas alteraçőes podem ser gravadas no disco?\n"
-"\n"
-"\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:82
-#, c-format
-msgid "Can't open %s: %s\n"
-msgstr "Năo foi possível abrir %s: %s\n"
-
-#: ../../tinyfirewall.pm_.c:84
-#, c-format
-msgid "Can't open %s for writing: %s\n"
-msgstr "Erro arbindo %s para gravaçăo: %s\n"
-
-#: ../../tinyfirewall.pm_.c:178
-msgid "No I don't need DHCP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:178
-msgid "Yes I need DHCP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:179
-msgid "No I don't need NTP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:179
-msgid "Yes I need NTP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:180 ../../tinyfirewall.pm_.c:184
-msgid "Don't Save"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:180 ../../tinyfirewall.pm_.c:184
-#: ../../tinyfirewall.pm_.c:204
-msgid "Save & Quit"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:195 ../../tinyfirewall.pm_.c:199
-#, fuzzy
-msgid "Firewall Configuration Wizard"
-msgstr "Configuraçăo de Firewall"
-
-#: ../../tinyfirewall.pm_.c:197
-msgid "No (firewall this off from the internet)"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:198
-msgid "Yes (allow this through the firewall)"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:230
-#, fuzzy
-msgid "Please Wait... Verifying installed packages"
-msgstr "Por favor aguarde, preparando instalaçăo"
-
-#: ../../tinyfirewall.pm_.c:236
-#, c-format
-msgid ""
-"Failure installing the needed packages : %s and Bastille.\n"
-" Try to install them manually."
-msgstr ""
-
-#: ../../ugtk.pm_.c:619
+#: ../../ugtk.pm_.c:594
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr ""
@@ -13091,6 +13512,10 @@ msgid "Graphical Environment"
msgstr "Ambiente Gráfico"
#: ../../share/compssUsers:999
+msgid "Development"
+msgstr "Desenvolvimento"
+
+#: ../../share/compssUsers:999
msgid "Apache, Pro-ftpd"
msgstr "Apache e Pro-ftpd"
@@ -13202,99 +13627,218 @@ msgstr "Multimídia - Gravaçăo de CD"
msgid "Scientific Workstation"
msgstr "Estaçăo de Trabalho Científica"
-#~ msgid "$mode: $warning"
-#~ msgstr "$mode: $warning"
+#~ msgid ""
+#~ "The first time you try the X configuration, you may not be very "
+#~ "satisfied\n"
+#~ "with its display (screen is too small, shifted left or right...). Hence,\n"
+#~ "even if X starts up correctly, DrakX then asks you if the configuration\n"
+#~ "suits you. It will also propose to change it by displaying a list of "
+#~ "valid\n"
+#~ "modes it could find, asking you to select one.\n"
+#~ "\n"
+#~ "As a last resort, if you still cannot get X to work, choose \"Change\n"
+#~ "graphics card\", select \"Unlisted card\", and when prompted on which\n"
+#~ "server, choose \"FBDev\". This is a failsafe option which works with any\n"
+#~ "modern graphics card. Then choose \"Test again\" to be sure."
+#~ msgstr ""
+#~ "Na primeira vez que você usar o sistema X, você pode năo ficar muito\n"
+#~ "satisfeito com a imagem (tela muito pequena, errada no sentido esquerdo -"
+#~ "direito...).\n"
+#~ "Porém, mesmo se o X começar corretamente, o DrakX irá perguntar se a "
+#~ "configuraçăo\n"
+#~ "o agrada. Irá também propôr modificaçőes, mostrando uma lista de "
+#~ "alternativas, pedindo \n"
+#~ "a você para escolher uma.\n"
+#~ "\n"
+#~ "Como último recurso, se você ainda năo conseguir fazer o X funcionar,, "
+#~ "escolha\n"
+#~ "\"Mudar placa de vídeo\", selecione \"Placas năo listadas\", e quando "
+#~ "perguntado em qual \n"
+#~ "servidor você deseja, escolha \"FBDev\". É uma opçăo à prova de erros, "
+#~ "que funciona\n"
+#~ "com qualquer placa de vídeo moderna. Depois escolha \"Testar de novo\" "
+#~ "para se certificar."
+
+#~ msgid "LBA (doesn't work on old BIOSes)"
+#~ msgstr "LBA (năo funciona em BIOS antigas)"
+
+#~ msgid "You don't have any partitions!"
+#~ msgstr "Você năo tem nenhuma partiçăo!"
-#, fuzzy
#~ msgid ""
-#~ "This level is to be used with care. It makes your system more easy to "
-#~ "use,\n"
-#~ " but very sensitive: it must not be used for a machine "
-#~ "connected to others\n"
-#~ " or to the Internet. There is no password access."
+#~ "DiskDrake failed to read correctly the partition table.\n"
+#~ "Continue at your own risk!"
#~ msgstr ""
-#~ "Esse nível deve ser usado com cuidado. Ele faz o seu sistema mais fácil "
-#~ "de usar,\n"
-#~ "mas muito sensível: ele năo deve ser usado em uma máquina conectada a "
-#~ "outros\n"
-#~ "ou à internet. Năo existe acesso por senha."
+#~ "O DiskDrake falhou na leitura da tabela de partiçăo.\n"
+#~ "Continue a seu próprio risco!"
-#, fuzzy
#~ msgid ""
-#~ "With this security level, the use of this system as a server becomes "
-#~ "possible.\n"
-#~ " The security is now high enough to use the system as a "
-#~ "server which can accept\n"
-#~ " connections from many clients. Note: if your machine is "
-#~ "only a client on the Internet, you should choose a lower level."
+#~ "I can't read your partition table, it's too corrupted for me :(\n"
+#~ "I'll try to go on blanking bad partitions"
#~ msgstr ""
-#~ "Com esse nível de segurança, o uso desse sistema como um servidor se "
-#~ "tornou possível.\n"
-#~ "A segurança agora está alta o suficiente para usar o sistema como um "
-#~ "servidor\n"
-#~ "que aceita conexăo de muitos clientes. "
+#~ "Eu năo consigo ler sua tabela de partiçăo, é muito defeituosa\n"
+#~ "para mim. Eu irei tentar continuar limpando as partiçőes defeituosas"
-#, fuzzy
-#~ msgid "Basic Options"
-#~ msgstr "Opçőes"
+#~ msgid "Firewalling Configuration"
+#~ msgstr "Configuraçăo de Firewall"
-#, fuzzy
-#~ msgid "Security Checks"
-#~ msgstr "Segurança"
+#~ msgid "Firewalling configuration"
+#~ msgstr "Configuraçăo de Firewall"
-#, fuzzy
-#~ msgid "Please choose your CD space"
-#~ msgstr "Favor escolher o layout do seu teclado."
+#~ msgid ""
+#~ "Firewalling\n"
+#~ "\n"
+#~ "You already have set up a firewall.\n"
+#~ "Click on Configure to change or remove the firewall"
+#~ msgstr ""
+#~ "Firewall\n"
+#~ "\n"
+#~ "Você já tem um firewall configurado.\n"
+#~ "Clique em configurar para alterar ou remover o firewall"
-#, fuzzy
-#~ msgid "Please enter the cd writer speed"
-#~ msgstr "Favor testar o mouse"
+#~ msgid ""
+#~ "Firewalling\n"
+#~ "\n"
+#~ "Click on Configure to set up a standard firewall"
+#~ msgstr ""
+#~ "Firewall\n"
+#~ "\n"
+#~ "Clique em configurar para criar um firewall padrăo"
-#, fuzzy
-#~ msgid "Please check if you want to include install boot on your CD."
-#~ msgstr "Escolha os pacotes que você quer instalar"
+#~ msgid ""
+#~ "We'll now ask you questions about which services you'd like to allow\n"
+#~ "the Internet to connect to. Please think carefully about these\n"
+#~ "questions, as your computer's security is important.\n"
+#~ "\n"
+#~ "Please, if you're not currently using one of these services, firewall\n"
+#~ "it off. You can change this configuration anytime you like by\n"
+#~ "re-running this application!"
+#~ msgstr ""
+#~ "Agora lhe perguntaremos sobre qual serviços você gostaria de permitir\n"
+#~ "a Internet se conectar. Por favor, pense cuidadosamente sobre essas\n"
+#~ "perguntas, já que a segurança do seu computador é importante.\n"
+#~ "\n"
+#~ "Atençăo, se você năo estiver usando um desses serviços, retire o firewall "
+#~ "dele. Você pode alterar essa configuraçăo a qualquer hora,\n"
+#~ "basta re-executar esse aplicativo!"
-#, fuzzy
-#~ msgid "Url should begin with 'ftp:'"
-#~ msgstr "O proxy deve ser ftp://..."
+#~ msgid ""
+#~ "Are you running a web server on this machine that you need the whole\n"
+#~ "Internet to see? If you are running a webserver that only needs to be\n"
+#~ "accessed by this machine, you can safely answer NO here.\n"
+#~ "\n"
+#~ msgstr ""
+#~ "Você está executando um servidor web nesta máquina que você precisa\n"
+#~ "que toda a Internet veja? Se você estiver executando um servidor web que\n"
+#~ "precisa ser acessado por esta máquina apenas, favor responder NĂO aqui.\n"
+#~ "\n"
-#, fuzzy
#~ msgid ""
-#~ "Please check if you want to include\n"
-#~ " install boot on your CD."
-#~ msgstr "Escolha os pacotes que você quer instalar"
+#~ "Are you running a name server on this machine? If you didn't set one\n"
+#~ "up to give away IP and zone information to the whole Internet, please\n"
+#~ "answer no.\n"
+#~ "\n"
+#~ msgstr ""
+#~ "Você está executando um servidor de nome nesta máquina? Se você năo\n"
+#~ "configurou um que dê a sua informaçăo de zona e IP para toda a Internet,\n"
+#~ "favor responder năo.\n"
+#~ "\n"
-#, fuzzy
-#~ msgid "Windows PDC"
-#~ msgstr "Remover Windows(TM)"
+#~ msgid ""
+#~ "Do you want to allow incoming Secure Shell (ssh) connections? This\n"
+#~ "is a telnet-replacement that you might use to login. If you're using\n"
+#~ "telnet now, you should definitely switch to ssh. telnet is not\n"
+#~ "encrypted -- so some attackers can steal your password if you use\n"
+#~ "it. ssh is encrypted and doesn't allow for this eavesdropping."
+#~ msgstr ""
+#~ "Você quer permitir receber conexőes Secure Shell (ssh)? Isso é um\n"
+#~ "substituto da telnet que você pode usar para login. Se você estiver\n"
+#~ "usando telnet agora, você deveria mudar definitivamente para ssh. telnet\n"
+#~ "năo é codificada -- entăo alguns agressores podem roubar sua senha.\n"
+#~ "ssh é codificada e năo permite esse tipo de roubo."
-#, fuzzy
-#~ msgid "Tamil"
-#~ msgstr "Table"
+#~ msgid ""
+#~ "Do you want to allow incoming telnet connections?\n"
+#~ "This is horribly unsafe, as we explained in the previous screen. We\n"
+#~ "strongly recommend answering No here and using ssh in place of\n"
+#~ "telnet.\n"
+#~ msgstr ""
+#~ "Você quer permitir receber conexőes telnet?\n"
+#~ "Isso é terrivelmente inseguro, como explicado na tela anterior. Nós\n"
+#~ "fortemente recomendamos responder Năo aqui e utilizar ssh no lugar\n"
+#~ "da telnet.\n"
-#, fuzzy
-#~ msgid "PDC Server Name"
-#~ msgstr "Servidor NIS"
+#~ msgid ""
+#~ "Are you running an FTP server here that you need accessible to the\n"
+#~ "Internet? If you are, we strongly recommend that you only use it for\n"
+#~ "Anonymous transfers. Any passwords sent by FTP can be stolen by some\n"
+#~ "attackers, since FTP also uses no encryption for transferring passwords.\n"
+#~ msgstr ""
+#~ "Você está executando um servidor FTP que precisa ser acessível pela\n"
+#~ "Internet? Se você estiver, nós realmente recomendamos que você user\n"
+#~ "apenas para transferências anônimas. Qualquer senha enviada por FTP pode\n"
+#~ "ser roubada por invasores, desde que FTP năo usa codificaçăo de senhas.\n"
-#, fuzzy
-#~ msgid "Set up printer manually"
-#~ msgstr "Impressora remota"
+#~ msgid ""
+#~ "Are you running a mail server here? If you're sending you \n"
+#~ "messages through pine, mutt or any other text-based mail client,\n"
+#~ "you probably are. Otherwise, you should firewall this off.\n"
+#~ "\n"
+#~ msgstr ""
+#~ "Você está executando um servidor de mensagens aqui? Se você esiver\n"
+#~ "mando mensagens pelo pine, mutt ou qualquer outro cliente de texto,\n"
+#~ "você provavelmente está. Caso contrário, você deve retirar o firewall "
+#~ "dele.\n"
+#~ "\n"
-#, fuzzy
-#~ msgid "Installing HPOJ package..."
-#~ msgstr "Instalando pacote %s"
+#~ msgid ""
+#~ "Are you running a POP or IMAP server here? This would\n"
+#~ "be used to host non-web-based mail accounts for people via \n"
+#~ "this machine.\n"
+#~ "\n"
+#~ msgstr ""
+#~ "Você está executando um servidor POP ou IMAP aqui? Ele seria\n"
+#~ "utilizado para hospedar contas năo baseadas na web para\n"
+#~ "pessoas através desta máquina.\n"
+#~ "\n"
-#, fuzzy
-#~ msgid "Installing SANE packages..."
-#~ msgstr "Instalando pacote %s"
+#~ msgid ""
+#~ "You appear to be running a 2.2 kernel. If your network IP\n"
+#~ "is automatically set by a computer in your home or office \n"
+#~ "(dynamically assigned), we need to allow for this. Is\n"
+#~ "this the case?\n"
+#~ msgstr ""
+#~ "Você parece estar utilizando um kernel 2.2. Se seu número IP\n"
+#~ "for automaticamente dado por um computador em sua casa ou \n"
+#~ "escritório (determinado dinamicamente), nós precisamos permitir\n"
+#~ "isso. É esse o caso?\n"
-#, fuzzy
-#~ msgid "Installing mtools packages..."
-#~ msgstr "Instalando pacote %s"
+#~ msgid ""
+#~ "Is your computer getting time syncronized to another computer?\n"
+#~ "Mostly, this is used by medium-large Unix/Linux organizations\n"
+#~ "to synchronize time for logging and such. If you're not part\n"
+#~ "of a larger office and haven't heard of this, you probably \n"
+#~ "aren't."
+#~ msgstr ""
+#~ "O seu computador está sincronizando a hora com outro computador?\n"
+#~ "Normalmente, isso é utilizado por organizaçőes Unix/Linux médias-grandes\n"
+#~ "para sincronizar o tempo para relatório, etc. Se você năo for\n"
+#~ "parte de uma grande empresa ou nunca ouviu sobre isso, você \n"
+#~ "provalvemente năo está."
-#, fuzzy
-#~ msgid "Making printer port available for CUPS..."
-#~ msgstr "Lendo banco de dados de drivers do CUPS"
+#~ msgid ""
+#~ "Configuration complete. May we write these changes to disk?\n"
+#~ "\n"
+#~ "\n"
+#~ "\n"
+#~ msgstr ""
+#~ "Configuraçăo completa. Essas alteraçőes podem ser gravadas no disco?\n"
+#~ "\n"
+#~ "\n"
+#~ "\n"
+
+#~ msgid "Can't open %s for writing: %s\n"
+#~ msgstr "Erro arbindo %s para gravaçăo: %s\n"
#~ msgid "Control Center"
#~ msgstr "Centro de Controle"
@@ -13378,9 +13922,6 @@ msgstr "Estaçăo de Trabalho Científica"
#~ msgid "Select a graphics card"
#~ msgstr "Selecione uma placa gráfica"
-#~ msgid "Warning: testing this graphics card may freeze your computer"
-#~ msgstr "Atençăo: testar essa placa gráfica pode travar o seu computador"
-
#~ msgid "Standard VGA, 640x480 at 60 Hz"
#~ msgstr "VGA Padrăo, 640x480 a 60 Hz"
diff --git a/perl-install/share/po/ro.po b/perl-install/share/po/ro.po
index f59a47ae6..e22a92896 100644
--- a/perl-install/share/po/ro.po
+++ b/perl-install/share/po/ro.po
@@ -7,8 +7,8 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX 7.1\n"
-"POT-Creation-Date: 2002-08-21 15:44+0200\n"
-"PO-Revision-Date: 2002-08-13 09:41GMT+2\n"
+"POT-Creation-Date: 2002-09-02 20:14+0200\n"
+"PO-Revision-Date: 2002-08-28 13:34GMT+2\n"
"Last-Translator: Harald Ersch <hersch@romatsa.ro>\n"
"Language-Team: romanian <ro@li.org>\n"
"MIME-Version: 1.0\n"
@@ -52,19 +52,19 @@ msgstr "32 MB"
msgid "64 MB or more"
msgstr "64 MB sau mai mult"
-#: ../../Xconfig/card.pm_.c:201
+#: ../../Xconfig/card.pm_.c:203
msgid "Choose a X server"
msgstr "Alegeți un server X"
-#: ../../Xconfig/card.pm_.c:201
+#: ../../Xconfig/card.pm_.c:203
msgid "X server"
msgstr "Server X"
-#: ../../Xconfig/card.pm_.c:228
+#: ../../Xconfig/card.pm_.c:230
msgid "Multi-head configuration"
msgstr "Configurare multi-head (ieșiri multiple)"
-#: ../../Xconfig/card.pm_.c:229
+#: ../../Xconfig/card.pm_.c:231
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
@@ -72,27 +72,27 @@ msgstr ""
"Sistemul dvs. permite configurarea mai multor iesiri de afișare.\n"
"Ce doriți să faceți?"
-#: ../../Xconfig/card.pm_.c:284
+#: ../../Xconfig/card.pm_.c:286
msgid "Select the memory size of your graphics card"
msgstr "Alegeți memoria pentru cartea grafică"
-#: ../../Xconfig/card.pm_.c:345
+#: ../../Xconfig/card.pm_.c:347
msgid "XFree configuration"
msgstr "Configurare XFree"
-#: ../../Xconfig/card.pm_.c:347
+#: ../../Xconfig/card.pm_.c:349
msgid "Which configuration of XFree do you want to have?"
msgstr "Ce tip de configurare doriți să aveți pt. XFree?"
-#: ../../Xconfig/card.pm_.c:379
+#: ../../Xconfig/card.pm_.c:381
msgid "Configure all heads independently"
msgstr "Configurează toate capetele (ieșirile) independent"
-#: ../../Xconfig/card.pm_.c:380
+#: ../../Xconfig/card.pm_.c:382
msgid "Use Xinerama extension"
msgstr "Folosește extensia Xinerama"
-#: ../../Xconfig/card.pm_.c:384
+#: ../../Xconfig/card.pm_.c:386
#, c-format
msgid "Configure only card \"%s\"%s"
msgstr "Configurează numai cartela \"%s\"%s"
@@ -103,13 +103,13 @@ msgstr "Configurează numai cartela \"%s\"%s"
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:435
+#: ../../Xconfig/card.pm_.c:410 ../../Xconfig/card.pm_.c:436
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s with 3D hardware acceleration"
msgstr "XFree %s cu accelerare 3D hardware"
-#: ../../Xconfig/card.pm_.c:412
+#: ../../Xconfig/card.pm_.c:413
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -118,18 +118,18 @@ msgstr ""
"Cartela dvs. poate avea accelerare 3D hardware, dar numai cu XFree %s.\n"
"Cartela dvs. este utilizabilă cu XFree %s ce are un suport mai bun în 2D."
-#: ../../Xconfig/card.pm_.c:414 ../../Xconfig/card.pm_.c:437
+#: ../../Xconfig/card.pm_.c:415 ../../Xconfig/card.pm_.c:438
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr ""
"Cartela dvs. poate avea suport pentru accelerarea 3D hardware cu XFree %s."
-#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:443
+#: ../../Xconfig/card.pm_.c:423 ../../Xconfig/card.pm_.c:444
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s cu accelerare 3D hardware EXPERIMENTALĂ"
-#: ../../Xconfig/card.pm_.c:425
+#: ../../Xconfig/card.pm_.c:426
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -140,7 +140,7 @@ msgstr ""
"ACEST SUPORT ESTE EXPERIMENTAL ȘI POATE BLOCA SISTEMUL DVS!Cartela dvs. este "
"utilizabilă cu XFree %s ce are un suport mai bun în 2D."
-#: ../../Xconfig/card.pm_.c:428 ../../Xconfig/card.pm_.c:445
+#: ../../Xconfig/card.pm_.c:429 ../../Xconfig/card.pm_.c:446
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
@@ -149,52 +149,53 @@ msgstr ""
"Cartela dvs. poate avea suport pentru accelerarea 3D hardware cu XFree %s, \n"
"ACEST SUPORT ESTE EXPERIMENTAL ȘI POATE BLOCA SISTEMUL DVS."
-#: ../../Xconfig/card.pm_.c:451
+#: ../../Xconfig/card.pm_.c:452
msgid "Xpmac (installation display driver)"
msgstr "Xpmac (driver de instalare ecran)"
-#: ../../Xconfig/main.pm_.c:78 ../../Xconfig/main.pm_.c:79
-#: ../../Xconfig/monitor.pm_.c:94 ../../any.pm_.c:974
+#: ../../Xconfig/main.pm_.c:76 ../../Xconfig/main.pm_.c:77
+#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:977
msgid "Custom"
msgstr "Personalizat"
-#: ../../Xconfig/main.pm_.c:104
+#: ../../Xconfig/main.pm_.c:102
msgid "Graphic Card"
msgstr "Cartelă grafică"
-#: ../../Xconfig/main.pm_.c:107 ../../Xconfig/monitor.pm_.c:91
+#: ../../Xconfig/main.pm_.c:105 ../../Xconfig/monitor.pm_.c:93
msgid "Monitor"
msgstr "Monitor"
-#: ../../Xconfig/main.pm_.c:110 ../../Xconfig/resolution_and_depth.pm_.c:209
+#: ../../Xconfig/main.pm_.c:108 ../../Xconfig/resolution_and_depth.pm_.c:209
msgid "Resolution"
msgstr "Rezoluție"
-#: ../../Xconfig/main.pm_.c:114
+#: ../../Xconfig/main.pm_.c:113
msgid "Test"
msgstr "Test"
-#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:59
-#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/removable.pm_.c:25
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:63
+#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/removable.pm_.c:25
#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "Opțiuni"
#: ../../Xconfig/main.pm_.c:121 ../../Xconfig/resolution_and_depth.pm_.c:268
-#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:281
+#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:275
#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
-#: ../../interactive.pm_.c:351 ../../interactive/http.pm_.c:104
+#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:104
#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
-#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:156
-#: ../../my_gtk.pm_.c:284 ../../my_gtk.pm_.c:307
-#: ../../standalone/drakbackup_.c:3324 ../../standalone/drakbackup_.c:3419
-#: ../../standalone/drakbackup_.c:3438
+#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:159
+#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310
+#: ../../standalone/drakbackup_.c:3972 ../../standalone/drakbackup_.c:4067
+#: ../../standalone/drakbackup_.c:4086
msgid "Ok"
msgstr "OK"
#: ../../Xconfig/main.pm_.c:121 ../../diskdrake/dav.pm_.c:24
-#: ../../printerdrake.pm_.c:2933 ../../standalone/logdrake_.c:224
+#: ../../harddrake/ui.pm_.c:98 ../../printerdrake.pm_.c:3155
+#: ../../standalone/logdrake_.c:224
msgid "Quit"
msgstr "Ieșire"
@@ -211,27 +212,27 @@ msgstr ""
"\n"
"%s"
-#: ../../Xconfig/monitor.pm_.c:91
+#: ../../Xconfig/monitor.pm_.c:93
msgid "Choose a monitor"
msgstr "Alegeți un monitor"
-#: ../../Xconfig/monitor.pm_.c:95
+#: ../../Xconfig/monitor.pm_.c:97
msgid "Plug'n Play"
msgstr "Plug'n Play"
-#: ../../Xconfig/monitor.pm_.c:96 ../../mouse.pm_.c:45
+#: ../../Xconfig/monitor.pm_.c:98 ../../mouse.pm_.c:46
msgid "Generic"
msgstr "Generic"
-#: ../../Xconfig/monitor.pm_.c:97 ../../harddrake/ui.pm_.c:36
+#: ../../Xconfig/monitor.pm_.c:99 ../../harddrake/ui.pm_.c:37
msgid "Vendor"
msgstr "Vânzător"
-#: ../../Xconfig/monitor.pm_.c:107
+#: ../../Xconfig/monitor.pm_.c:109
msgid "Plug'n Play probing failed. Please choose a precise monitor"
msgstr ""
-#: ../../Xconfig/monitor.pm_.c:112
+#: ../../Xconfig/monitor.pm_.c:114
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -253,11 +254,11 @@ msgstr ""
"distruge monitorul în acest fel.\n"
"Dacă nu sunteți sigur, alegeți parametri conservativi."
-#: ../../Xconfig/monitor.pm_.c:119
+#: ../../Xconfig/monitor.pm_.c:121
msgid "Horizontal refresh rate"
msgstr "Rata de actualizare orizontală"
-#: ../../Xconfig/monitor.pm_.c:120
+#: ../../Xconfig/monitor.pm_.c:122
msgid "Vertical refresh rate"
msgstr "Rata de actualizare verticală"
@@ -294,46 +295,50 @@ msgstr "Alegeți rezoluția și adâncimea de culoare"
msgid "Graphics card: %s"
msgstr "Cartelă grafică: %s"
-#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1015
-#: ../../bootlook.pm_.c:334 ../../diskdrake/smbnfs_gtk.pm_.c:87
-#: ../../install_steps_gtk.pm_.c:412 ../../install_steps_gtk.pm_.c:470
-#: ../../install_steps_interactive.pm_.c:576 ../../interactive.pm_.c:142
-#: ../../interactive.pm_.c:351 ../../interactive/http.pm_.c:105
+#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1018
+#: ../../bootlook.pm_.c:338 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:406 ../../install_steps_gtk.pm_.c:464
+#: ../../install_steps_interactive.pm_.c:560 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:105
#: ../../interactive/newt.pm_.c:174 ../../interactive/stdio.pm_.c:39
-#: ../../interactive/stdio.pm_.c:143 ../../my_gtk.pm_.c:155
-#: ../../my_gtk.pm_.c:159 ../../my_gtk.pm_.c:284
-#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1990
-#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3278
-#: ../../standalone/drakbackup_.c:3311 ../../standalone/drakbackup_.c:3337
-#: ../../standalone/drakbackup_.c:3364 ../../standalone/drakbackup_.c:3391
-#: ../../standalone/drakbackup_.c:3451 ../../standalone/drakbackup_.c:3478
-#: ../../standalone/drakbackup_.c:3504 ../../standalone/drakconnect_.c:115
-#: ../../standalone/drakconnect_.c:147 ../../standalone/drakconnect_.c:289
-#: ../../standalone/drakconnect_.c:537 ../../standalone/drakconnect_.c:679
-#: ../../standalone/drakfloppy_.c:234 ../../standalone/drakfloppy_.c:383
-#: ../../standalone/drakfont_.c:970 ../../standalone/drakgw_.c:598
-#: ../../standalone/logdrake_.c:224 ../../standalone/logdrake_.c:528
-#: ../../standalone/tinyfirewall_.c:64
+#: ../../interactive/stdio.pm_.c:143 ../../my_gtk.pm_.c:158
+#: ../../my_gtk.pm_.c:162 ../../my_gtk.pm_.c:287
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:2124
+#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3926
+#: ../../standalone/drakbackup_.c:3959 ../../standalone/drakbackup_.c:3985
+#: ../../standalone/drakbackup_.c:4012 ../../standalone/drakbackup_.c:4039
+#: ../../standalone/drakbackup_.c:4099 ../../standalone/drakbackup_.c:4126
+#: ../../standalone/drakbackup_.c:4156 ../../standalone/drakbackup_.c:4182
+#: ../../standalone/drakconnect_.c:115 ../../standalone/drakconnect_.c:147
+#: ../../standalone/drakconnect_.c:289 ../../standalone/drakconnect_.c:537
+#: ../../standalone/drakconnect_.c:679 ../../standalone/drakfloppy_.c:234
+#: ../../standalone/drakfloppy_.c:383 ../../standalone/drakfont_.c:970
+#: ../../standalone/drakgw_.c:536 ../../standalone/logdrake_.c:224
+#: ../../standalone/logdrake_.c:526
msgid "Cancel"
msgstr "Renunță"
-#: ../../Xconfig/test.pm_.c:26
+#: ../../Xconfig/test.pm_.c:30
+msgid "Test of the configuration"
+msgstr "Test de configurație"
+
+#: ../../Xconfig/test.pm_.c:31
msgid "Do you want to test the configuration?"
msgstr "Doriți să testați configurația ?"
-#: ../../Xconfig/test.pm_.c:26
-msgid "Test of the configuration"
-msgstr "Test de configurație"
+#: ../../Xconfig/test.pm_.c:31
+msgid "Warning: testing this graphic card may freeze your computer"
+msgstr ""
#: ../../Xconfig/various.pm_.c:29
#, c-format
msgid "Keyboard layout: %s\n"
-msgstr "Tastatura : %s\n"
+msgstr "Tastatura: %s\n"
#: ../../Xconfig/various.pm_.c:30
#, c-format
msgid "Mouse type: %s\n"
-msgstr "Tip de mouse : %s\n"
+msgstr "Tip de mouse: %s\n"
#: ../../Xconfig/various.pm_.c:31
#, c-format
@@ -348,46 +353,46 @@ msgstr "Monitor: %s\n"
#: ../../Xconfig/various.pm_.c:33
#, c-format
msgid "Monitor HorizSync: %s\n"
-msgstr "Frecvența orizontală pentru monitor : %s\n"
+msgstr "Frecvența orizontală pentru monitor: %s\n"
#: ../../Xconfig/various.pm_.c:34
#, c-format
msgid "Monitor VertRefresh: %s\n"
-msgstr "Frecvența verticală pentru monitor : %s\n"
+msgstr "Frecvența verticală pentru monitor: %s\n"
#: ../../Xconfig/various.pm_.c:35
#, c-format
msgid "Graphics card: %s\n"
-msgstr "Cartelă grafică : %s\n"
+msgstr "Cartelă grafică: %s\n"
#: ../../Xconfig/various.pm_.c:36
#, c-format
msgid "Graphics memory: %s kB\n"
-msgstr "Memorie grafică : %s KB\n"
+msgstr "Memorie grafică: %s KB\n"
#: ../../Xconfig/various.pm_.c:38
-#, fuzzy, c-format
+#, c-format
msgid "Color depth: %s\n"
-msgstr "Opțiuni pentru culori:"
+msgstr "Adâncime de culoare: %s:\n"
#: ../../Xconfig/various.pm_.c:39
-#, fuzzy, c-format
+#, c-format
msgid "Resolution: %s\n"
-msgstr "Rezoluții"
+msgstr "Rezoluție: %s\n"
#: ../../Xconfig/various.pm_.c:41
#, c-format
msgid "XFree86 server: %s\n"
-msgstr "Server XFree86 : %s\n"
+msgstr "Server XFree86: %s\n"
#: ../../Xconfig/various.pm_.c:42
-#, fuzzy, c-format
+#, c-format
msgid "XFree86 driver: %s\n"
-msgstr "Server XFree86 : %s\n"
+msgstr "Driver XFree86: %s\n"
#: ../../Xconfig/various.pm_.c:60
msgid "Graphical interface at startup"
-msgstr "Sever X la demaraj"
+msgstr "Interfața grafică la demaraj"
#: ../../Xconfig/various.pm_.c:61
msgid ""
@@ -411,9 +416,8 @@ msgid ""
msgstr ""
#: ../../Xconfig/various.pm_.c:84
-#, fuzzy
msgid "What norm is your TV using?"
-msgstr "La ce port serial este conectat mouse-ul?"
+msgstr "Ce normă folosește TV-ul dumneavoastră?"
#: ../../any.pm_.c:108 ../../any.pm_.c:133
msgid "First sector of boot partition"
@@ -424,9 +428,8 @@ msgid "First sector of drive (MBR)"
msgstr "Primul sector al discului (MBR)"
#: ../../any.pm_.c:112
-#, fuzzy
msgid "SILO Installation"
-msgstr "Instalare LILO/grub"
+msgstr "Instalare SILO"
#: ../../any.pm_.c:113 ../../any.pm_.c:126
msgid "Where do you want to install the bootloader?"
@@ -438,51 +441,44 @@ msgstr "Instalare LILO/grub"
#: ../../any.pm_.c:137 ../../any.pm_.c:151
msgid "SILO"
-msgstr ""
+msgstr "SILO"
#: ../../any.pm_.c:139
msgid "LILO with text menu"
-msgstr ""
+msgstr "LILO cu meniu text"
#: ../../any.pm_.c:140 ../../any.pm_.c:151
msgid "LILO with graphical menu"
-msgstr ""
+msgstr "LILO cu meniu grafic"
#: ../../any.pm_.c:143
msgid "Grub"
-msgstr ""
+msgstr "Grub"
#: ../../any.pm_.c:147
msgid "Boot from DOS/Windows (loadlin)"
-msgstr ""
+msgstr "Demarare din DOS/Windows (loadlin)"
#: ../../any.pm_.c:149 ../../any.pm_.c:151
-#, fuzzy
msgid "Yaboot"
-msgstr "Root"
+msgstr "Yaboot"
-#: ../../any.pm_.c:158 ../../any.pm_.c:190
+#: ../../any.pm_.c:159 ../../any.pm_.c:190
msgid "Bootloader main options"
msgstr "Opțiunile principale ale gestionarului de demaraj"
-#: ../../any.pm_.c:159 ../../any.pm_.c:191
-#, fuzzy
+#: ../../any.pm_.c:160 ../../any.pm_.c:191
msgid "Bootloader to use"
-msgstr "Opțiunile principale ale gestionarului de demaraj"
+msgstr "Gestionarul de demarare folosit"
-#: ../../any.pm_.c:161
-#, fuzzy
+#: ../../any.pm_.c:162
msgid "Bootloader installation"
-msgstr "Opțiunile principale ale gestionarului de demaraj"
+msgstr "Instalarea gestionarului de demarare"
-#: ../../any.pm_.c:163 ../../any.pm_.c:193
+#: ../../any.pm_.c:164 ../../any.pm_.c:193
msgid "Boot device"
msgstr "Periferic de demaraj"
-#: ../../any.pm_.c:164
-msgid "LBA (doesn't work on old BIOSes)"
-msgstr "LBA (nu funcționează cu BIOS-urile vechi)"
-
#: ../../any.pm_.c:165
msgid "Compact"
msgstr "Compact"
@@ -499,16 +495,17 @@ msgstr "Mod video"
msgid "Delay before booting default image"
msgstr "Timp de așteptare înaintea demarării imaginii standard"
-#: ../../any.pm_.c:170 ../../any.pm_.c:786
+#: ../../any.pm_.c:170 ../../any.pm_.c:788
#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1111 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:743 ../../printerdrake.pm_.c:858
-#: ../../standalone/drakconnect_.c:624 ../../standalone/drakconnect_.c:649
+#: ../../install_steps_interactive.pm_.c:1096 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:850 ../../printerdrake.pm_.c:965
+#: ../../standalone/drakbackup_.c:3528 ../../standalone/drakconnect_.c:624
+#: ../../standalone/drakconnect_.c:649
msgid "Password"
msgstr "Parola"
-#: ../../any.pm_.c:171 ../../any.pm_.c:787
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../any.pm_.c:171 ../../any.pm_.c:789
+#: ../../install_steps_interactive.pm_.c:1097
msgid "Password (again)"
msgstr "Parola (din nou)"
@@ -543,20 +540,20 @@ msgid ""
msgstr ""
"Opțiunea ``Limitează opțiunile liniei de comandă'' e inutilă fără parolă"
-#: ../../any.pm_.c:184 ../../any.pm_.c:762
-#: ../../diskdrake/interactive.pm_.c:1180
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../any.pm_.c:184 ../../any.pm_.c:764
+#: ../../diskdrake/interactive.pm_.c:1191
+#: ../../install_steps_interactive.pm_.c:1091
msgid "Please try again"
msgstr "Încercați din nou"
-#: ../../any.pm_.c:184 ../../any.pm_.c:762
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../any.pm_.c:184 ../../any.pm_.c:764
+#: ../../install_steps_interactive.pm_.c:1091
msgid "The passwords do not match"
msgstr "Parolele nu corespund"
#: ../../any.pm_.c:192
msgid "Init Message"
-msgstr ""
+msgstr "Mesaj de inițializare"
#: ../../any.pm_.c:194
msgid "Open Firmware Delay"
@@ -568,16 +565,15 @@ msgstr ""
#: ../../any.pm_.c:196
msgid "Enable CD Boot?"
-msgstr ""
+msgstr "Demarare de pe CD activă?"
#: ../../any.pm_.c:197
msgid "Enable OF Boot?"
-msgstr ""
+msgstr "Demarare OF activă?"
#: ../../any.pm_.c:198
-#, fuzzy
msgid "Default OS?"
-msgstr "Standard"
+msgstr "Sistem de operare implicit?"
#: ../../any.pm_.c:232
msgid ""
@@ -587,6 +583,11 @@ msgid ""
"\n"
"On which drive are you booting?"
msgstr ""
+"Ați decis să instalați gestionarul de demarare într-o partiție.\n"
+"Aceasta înseamă că aveți instalat deja un gestionar de demarare pe unitatea "
+"de discde pe care demarați (ex. System Commander).\n"
+"\n"
+"De pe ce unitate de disc demarați?"
#: ../../any.pm_.c:247
msgid ""
@@ -596,29 +597,28 @@ msgstr ""
"Acestea sunt diferitele intrările.\n"
"Puteți să mai adăugați și altele sau să schimbați cele existente."
-#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1483
-#: ../../standalone/drakbackup_.c:1596 ../../standalone/drakfont_.c:1011
+#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1558
+#: ../../standalone/drakbackup_.c:1671 ../../standalone/drakfont_.c:1011
#: ../../standalone/drakfont_.c:1054
msgid "Add"
msgstr "Adaugă"
-#: ../../any.pm_.c:257 ../../any.pm_.c:774 ../../diskdrake/dav.pm_.c:60
+#: ../../any.pm_.c:257 ../../any.pm_.c:776 ../../diskdrake/dav.pm_.c:64
#: ../../diskdrake/hd_gtk.pm_.c:153 ../../diskdrake/removable.pm_.c:27
#: ../../diskdrake/smbnfs_gtk.pm_.c:88 ../../interactive/http.pm_.c:153
-#: ../../standalone/drakbackup_.c:2696
+#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2772
msgid "Done"
msgstr "Gata"
#: ../../any.pm_.c:257
-#, fuzzy
msgid "Modify"
-msgstr "Modifică RAID"
+msgstr "Modifică"
#: ../../any.pm_.c:265
msgid "Which type of entry do you want to add?"
msgstr "Ce tip de intrări doriți să adăugați ?"
-#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1630
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1705
msgid "Linux"
msgstr "Linux"
@@ -671,13 +671,12 @@ msgid "Default"
msgstr "Standard"
#: ../../any.pm_.c:317
-#, fuzzy
msgid "Initrd-size"
-msgstr "Initrd"
+msgstr "Dimensiune Initrd"
#: ../../any.pm_.c:319
msgid "NoVideo"
-msgstr ""
+msgstr "Fără imagine video"
#: ../../any.pm_.c:327
msgid "Remove entry"
@@ -689,12 +688,11 @@ msgstr "Eticheta goală nu e permisă"
#: ../../any.pm_.c:331
msgid "You must specify a kernel image"
-msgstr ""
+msgstr "Trebuie să specificați o imagine Kernel"
#: ../../any.pm_.c:331
-#, fuzzy
msgid "You must specify a root partition"
-msgstr "Trebuie să aveți o partiție swap"
+msgstr "Trebuie să specificați o partiție rădăcină (root)"
#: ../../any.pm_.c:332
msgid "This label is already used"
@@ -714,13 +712,13 @@ msgstr "Aveți o altă interfața?"
msgid "Do you have any %s interfaces?"
msgstr "Aveți vreo interfață %s ?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:821 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:283
+#: ../../any.pm_.c:660 ../../any.pm_.c:823 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:286
msgid "No"
msgstr "Nu"
-#: ../../any.pm_.c:660 ../../any.pm_.c:820 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:283
+#: ../../any.pm_.c:660 ../../any.pm_.c:822 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:286
msgid "Yes"
msgstr "Da"
@@ -804,54 +802,63 @@ msgstr ""
#: ../../any.pm_.c:750
msgid "access to X programs"
-msgstr ""
+msgstr "acces la programele X"
#: ../../any.pm_.c:751
msgid "access to rpm tools"
-msgstr ""
+msgstr "acces la uneltele rpm"
#: ../../any.pm_.c:752
msgid "allow \"su\""
-msgstr ""
+msgstr "permite \"su\""
#: ../../any.pm_.c:753
msgid "access to administrative files"
-msgstr ""
+msgstr "acces la fișierele administrative"
+
+#: ../../any.pm_.c:754
+#, fuzzy
+msgid "access to network tools"
+msgstr "acces la uneltele rpm"
-#: ../../any.pm_.c:758
+#: ../../any.pm_.c:755
+#, fuzzy
+msgid "access to compilation tools"
+msgstr "acces la uneltele rpm"
+
+#: ../../any.pm_.c:760
#, c-format
msgid "(already added %s)"
msgstr "(deja adăugat %s)"
-#: ../../any.pm_.c:763
+#: ../../any.pm_.c:765
msgid "This password is too simple"
msgstr "Aceasta parolă e prea simplă"
-#: ../../any.pm_.c:764
+#: ../../any.pm_.c:766
msgid "Please give a user name"
msgstr "Va rog înscrieți numele utilizatorului"
-#: ../../any.pm_.c:765
+#: ../../any.pm_.c:767
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
"Numele utilizatorului trebuie sa conțină numai caractere minuscule, numere, "
"`-' și `_'"
-#: ../../any.pm_.c:766
-#, fuzzy
+#: ../../any.pm_.c:768
msgid "The user name is too long"
-msgstr "Acest nume de utilizator e deja adăugat"
+msgstr "Numele de utilizator este prea lung"
-#: ../../any.pm_.c:767
+#: ../../any.pm_.c:769
msgid "This user name is already added"
msgstr "Acest nume de utilizator e deja adăugat"
-#: ../../any.pm_.c:771
+#: ../../any.pm_.c:773
msgid "Add user"
msgstr "Adăugați un utilizator"
-#: ../../any.pm_.c:772
+#: ../../any.pm_.c:774
#, c-format
msgid ""
"Enter a user\n"
@@ -860,95 +867,91 @@ msgstr ""
"Intrați un utilizator\n"
"%s"
-#: ../../any.pm_.c:773
+#: ../../any.pm_.c:775
msgid "Accept user"
msgstr "Acceptare utilizator"
-#: ../../any.pm_.c:784
+#: ../../any.pm_.c:786
msgid "Real name"
msgstr "Nume real"
-#: ../../any.pm_.c:785 ../../printerdrake.pm_.c:742
-#: ../../printerdrake.pm_.c:857
+#: ../../any.pm_.c:787 ../../printerdrake.pm_.c:849
+#: ../../printerdrake.pm_.c:964
msgid "User name"
msgstr "Numele utilizatorului"
-#: ../../any.pm_.c:788
+#: ../../any.pm_.c:790
msgid "Shell"
msgstr "Shell"
-#: ../../any.pm_.c:790
+#: ../../any.pm_.c:792
msgid "Icon"
msgstr "Icoană"
-#: ../../any.pm_.c:817
+#: ../../any.pm_.c:819
msgid "Autologin"
-msgstr ""
+msgstr "Autologare"
-#: ../../any.pm_.c:818
-#, fuzzy
+#: ../../any.pm_.c:820
msgid ""
"I can set up your computer to automatically log on one user.\n"
"Do you want to use this feature?"
msgstr ""
-"Pot să configurez calculatorul sa demareze automat X la demaraj.\n"
-"Doriți sa demarați X cînd redemarați ?"
+"Pot să configurez calculatorul să logheze automat un utilizator.\n"
+"Doriți să folosiți această facilitate?"
-#: ../../any.pm_.c:822
-#, fuzzy
+#: ../../any.pm_.c:824
msgid "Choose the default user:"
-msgstr "Alegeți noua mărime"
+msgstr "Alegeți utilizatorul implicit:"
-#: ../../any.pm_.c:823
-#, fuzzy
+#: ../../any.pm_.c:825
msgid "Choose the window manager to run:"
-msgstr "Alegeți unealta pe care doriți să o folosiți"
+msgstr "Alegeți managerul de ferestre:"
-#: ../../any.pm_.c:838
-#, fuzzy
+#: ../../any.pm_.c:840
msgid "Please choose a language to use."
-msgstr "Vă rog, alegeți o limbă."
+msgstr "Vă rog să alegeți limba folosită."
-#: ../../any.pm_.c:840
+#: ../../any.pm_.c:842
msgid ""
"Mandrake Linux can support multiple languages. Select\n"
"the languages you would like to install. They will be available\n"
"when your installation is complete and you restart your system."
-msgstr "Puteți să alegeți alte limbi care vor fi disponibile după instalare"
+msgstr ""
+"Mandrake Linux permite folosirea mai multor limbi.\n"
+"Selectați limbile pe care doriți să le instalați. Ele vor fi disponibile\n"
+"după terminarea instalării și repornirea sistemului."
-#: ../../any.pm_.c:854 ../../install_steps_interactive.pm_.c:708
+#: ../../any.pm_.c:856 ../../install_steps_interactive.pm_.c:692
#: ../../standalone/drakxtv_.c:73
msgid "All"
-msgstr ""
+msgstr "Toate"
-#: ../../any.pm_.c:974
-#, fuzzy
+#: ../../any.pm_.c:977
msgid "Allow all users"
-msgstr "Adăugați un utilizator"
+msgstr "Permite tuturor utilizatorilor"
-#: ../../any.pm_.c:974
-#, fuzzy
+#: ../../any.pm_.c:977
msgid "No sharing"
-msgstr "Estimare"
+msgstr "Fără partajare"
-#: ../../any.pm_.c:984 ../../standalone.pm_.c:57
-#, fuzzy, c-format
+#: ../../any.pm_.c:987 ../../install_any.pm_.c:1183 ../../standalone.pm_.c:58
+#, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
-msgstr ""
-"Acest pachet trebuie actualizat\n"
-"Sunteți sigur că doriți să-l deselectați ?"
+msgstr "Pachetul %s trebuie instalat. Doriți să îl instalez?"
-#: ../../any.pm_.c:987
+#: ../../any.pm_.c:990
msgid ""
"You can export using NFS or Samba. Please select which you'd like to use."
msgstr ""
+"Puteți exporta fișiere folosind sistemul NFS sau Samba. Pe care îl alegeți?"
-#: ../../any.pm_.c:995 ../../standalone.pm_.c:61
+#: ../../any.pm_.c:998 ../../install_any.pm_.c:1188 ../../standalone.pm_.c:63
#, c-format
msgid "Mandatory package %s is missing"
-msgstr ""
+msgstr "Pachetul obligatoriu %s lipsește"
-#: ../../any.pm_.c:1001
+#: ../../any.pm_.c:1004
msgid ""
"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
@@ -957,42 +960,41 @@ msgid ""
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:1015
+#: ../../any.pm_.c:1018
msgid "Launch userdrake"
-msgstr ""
+msgstr "Lansează userdrake"
-#: ../../any.pm_.c:1017
+#: ../../any.pm_.c:1020
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
msgstr ""
-#: ../../any.pm_.c:1068
+#: ../../any.pm_.c:1071
msgid "Welcome To Crackers"
msgstr "Bun venit Piraților"
-#: ../../any.pm_.c:1069
+#: ../../any.pm_.c:1072
msgid "Poor"
msgstr "Slab"
-#: ../../any.pm_.c:1070 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1073 ../../mouse.pm_.c:31
msgid "Standard"
-msgstr ""
+msgstr "Standard"
-#: ../../any.pm_.c:1071
+#: ../../any.pm_.c:1074
msgid "High"
msgstr "Ridicat"
-#: ../../any.pm_.c:1072
-#, fuzzy
+#: ../../any.pm_.c:1075
msgid "Higher"
-msgstr "Ridicat"
+msgstr "Mai înaltă"
-#: ../../any.pm_.c:1073
+#: ../../any.pm_.c:1076
msgid "Paranoid"
-msgstr "Paranoiac"
+msgstr "Paranoică"
-#: ../../any.pm_.c:1076
+#: ../../any.pm_.c:1079
msgid ""
"This level is to be used with care. It makes your system more easy to use,\n"
"but very sensitive: it must not be used for a machine connected to others\n"
@@ -1004,7 +1006,7 @@ msgstr ""
"calculator conectat cu altele de pe Internet. Nu există nici o parolă de\n"
"acces."
-#: ../../any.pm_.c:1079
+#: ../../any.pm_.c:1082
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -1012,23 +1014,21 @@ msgstr ""
"Parolele sunt acum activate, dar utilizarea lui ca un calculator într-o\n"
"rețea tot nu recomandată."
-#: ../../any.pm_.c:1080
-#, fuzzy
+#: ../../any.pm_.c:1083
msgid ""
"This is the standard security recommended for a computer that will be used "
"to connect to the Internet as a client."
msgstr ""
-"Acest a nivelul de securitate standard recomandat pentru un calculator care\n"
-"va fi conectat ca un client la Internet. Nu există verificări de securitate."
+"Acesta este nivelul de securitate standard recomandat pentru un calculator "
+"care va fi conectat ca un client la Internet."
-#: ../../any.pm_.c:1081
+#: ../../any.pm_.c:1084
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr ""
-#: ../../any.pm_.c:1082
-#, fuzzy
+#: ../../any.pm_.c:1085
msgid ""
"With this security level, the use of this system as a server becomes "
"possible.\n"
@@ -1039,43 +1039,42 @@ msgid ""
msgstr ""
"Cu acest nivel de securitate, utilizarea acestui calculator ca server\n"
"devine posibilă. Securitatea este destul de ridicată pentru a folosi acest\n"
-"sistem ca server care acceptă conexiuni de la mulți clienți."
+"sistem ca server care acceptă conexiuni de la mulți clienți. Notă: dacă "
+"mașina este numai un client simplu la Internet, folosiți un nivel mai scăzut."
-#: ../../any.pm_.c:1085
-#, fuzzy
+#: ../../any.pm_.c:1088
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
"security features are at their maximum."
msgstr ""
-"Avem funcționalitățile nivelului 4 de securitate dar acum sistemul e\n"
-"complet închis. Securitatea e la maximum."
+"Avem funcționalitățile nivelului anterior de securitate, dar acum sistemul "
+"e\n"
+"complet închis și securitatea e la maximum."
-#: ../../any.pm_.c:1091
-#, fuzzy
+#: ../../any.pm_.c:1094
msgid "DrakSec Basic Options"
-msgstr "Informație"
+msgstr "Opțiuni de bază DrakSec"
-#: ../../any.pm_.c:1092
-#, fuzzy
+#: ../../any.pm_.c:1095
msgid "Please choose the desired security level"
-msgstr "Alegeți nivelul de securitate"
+msgstr "Vă rog să alegeți nivelul de securitate dorit"
-#: ../../any.pm_.c:1095
-#, fuzzy
+#: ../../any.pm_.c:1098
msgid "Security level"
-msgstr "Alegerea nivelului de securitate"
+msgstr "Nivel de securitate"
-#: ../../any.pm_.c:1097
-#, fuzzy
+#: ../../any.pm_.c:1100
msgid "Use libsafe for servers"
-msgstr "Alegeți opțiunile pentru server"
+msgstr "Folosește libsafe pentru servere"
-#: ../../any.pm_.c:1098
+#: ../../any.pm_.c:1101
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
+"O bibliotecă ce protejează contra atacurilor tip buffer overflow și format "
+"string."
-#: ../../any.pm_.c:1099
+#: ../../any.pm_.c:1102
msgid "Security Administrator (login or email)"
msgstr ""
@@ -1090,10 +1089,9 @@ msgstr ""
# only the ascii charset will be available on most machines
# so use only 7bit for this message (and do transliteration or
# leave it in English, as it is the best for your language)
-#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#: ../../bootloader.pm_.c:375
-#, fuzzy, c-format
+#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
"\n"
@@ -1103,9 +1101,7 @@ msgid ""
msgstr ""
"Bun venit la gestionarul de sisteme de operare %s!\n"
"\n"
-"Pentru a afisa diferitele posibilitati, apasati <TAB>.\n"
-"\n"
-"Pentru a demara unul dintre ele, scrieti-i numele si apasati <ENTER> sau\n"
+"Alegeti un sistem de operare din lista de mai sus sau\n"
"asteptati %d secunde pentru demararea din oficiu.\n"
"\n"
@@ -1119,7 +1115,7 @@ msgstr ""
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:935
+#: ../../bootloader.pm_.c:932
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Bun venit la gestionarul de sisteme de operare GRUB!"
@@ -1133,7 +1129,7 @@ msgstr "Bun venit la gestionarul de sisteme de operare GRUB!"
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:938
+#: ../../bootloader.pm_.c:935
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "Folositi tastele %c si %c pentru selectarea intrarii puse in evidenta."
@@ -1148,7 +1144,7 @@ msgstr "Folositi tastele %c si %c pentru selectarea intrarii puse in evidenta."
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:941
+#: ../../bootloader.pm_.c:938
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Apasati enter pentru a demara OS-ul selectat, 'e' pentru a edita"
@@ -1162,7 +1158,7 @@ msgstr "Apasati enter pentru a demara OS-ul selectat, 'e' pentru a edita"
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:941
msgid "commands before booting, or 'c' for a command-line."
msgstr "comandele inainte de a demara, sau 'c' pentru linia de comanda."
@@ -1176,42 +1172,41 @@ msgstr "comandele inainte de a demara, sau 'c' pentru linia de comanda."
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:947
+#: ../../bootloader.pm_.c:944
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "Intrarea selectata va demara dupa %d secunde"
-#: ../../bootloader.pm_.c:951
+#: ../../bootloader.pm_.c:948
msgid "not enough room in /boot"
msgstr "nu e destul spațiu în /boot"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1051
+#: ../../bootloader.pm_.c:1048
msgid "Desktop"
msgstr "Desktop"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1053
+#: ../../bootloader.pm_.c:1050
msgid "Start Menu"
msgstr "Meniu de Start"
-#: ../../bootloader.pm_.c:1072
-#, fuzzy, c-format
+#: ../../bootloader.pm_.c:1069
+#, c-format
msgid "You can't install the bootloader on a %s partition\n"
-msgstr "Unde doriți să instalați Gestionarul de demaraj ?"
+msgstr "Nu puteți instala Gestionarul de demarare într-o partiție %s\n"
-#: ../../bootlook.pm_.c:45
+#: ../../bootlook.pm_.c:45 ../../standalone/draksplash_.c:25
msgid "no help implemented yet.\n"
msgstr ""
#: ../../bootlook.pm_.c:61
-#, fuzzy
msgid "Boot Style Configuration"
-msgstr "Configurație post-install"
+msgstr "Configurare stil demarare"
-#: ../../bootlook.pm_.c:78 ../../harddrake/ui.pm_.c:59
-#: ../../harddrake/ui.pm_.c:60 ../../standalone/drakfloppy_.c:81
+#: ../../bootlook.pm_.c:78 ../../harddrake/ui.pm_.c:62
+#: ../../harddrake/ui.pm_.c:63 ../../standalone/drakfloppy_.c:81
#: ../../standalone/logdrake_.c:101
msgid "/_File"
msgstr "/_Fișier"
@@ -1221,7 +1216,7 @@ msgstr "/_Fișier"
msgid "/File/_Quit"
msgstr "/Fișier/_Ieșire"
-#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:60
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:63
#: ../../standalone/drakfloppy_.c:82 ../../standalone/logdrake_.c:107
msgid "<control>Q"
msgstr "<control>Q"
@@ -1231,155 +1226,153 @@ msgid "NewStyle Categorizing Monitor"
msgstr ""
#: ../../bootlook.pm_.c:91
-#, fuzzy
msgid "NewStyle Monitor"
-msgstr "Monitor"
+msgstr "Monitor stil nou"
#: ../../bootlook.pm_.c:92
-#, fuzzy
msgid "Traditional Monitor"
-msgstr "Alegeți un alt tip de monitor"
+msgstr "Monitor tradițional"
#: ../../bootlook.pm_.c:93
msgid "Traditional Gtk+ Monitor"
-msgstr ""
+msgstr "Monitor tradițional Gtk+"
#: ../../bootlook.pm_.c:94
msgid "Launch Aurora at boot time"
-msgstr ""
+msgstr "Lansează Aurora la pornire"
#: ../../bootlook.pm_.c:97
-#, fuzzy
msgid "Lilo/grub mode"
-msgstr "Nume de domeniu"
+msgstr "Mod LILO/Grub"
#: ../../bootlook.pm_.c:97
-#, fuzzy
msgid "Yaboot mode"
-msgstr "Periferic de demaraj"
+msgstr "Mod Yaboot"
#: ../../bootlook.pm_.c:143
-#, fuzzy
msgid "Install themes"
-msgstr "Instalarea sistemului"
+msgstr "Instalare teme"
#: ../../bootlook.pm_.c:144
msgid "Display theme under console"
msgstr ""
-#: ../../bootlook.pm_.c:166
+#: ../../bootlook.pm_.c:145
+#, fuzzy
+msgid "Create new theme"
+msgstr "Creează o nouă partiție"
+
+#: ../../bootlook.pm_.c:169
msgid "Can't create Bootsplash preview"
msgstr ""
-#: ../../bootlook.pm_.c:166 ../../bootlook.pm_.c:184 ../../bootlook.pm_.c:187
-#: ../../bootlook.pm_.c:190 ../../bootlook.pm_.c:220 ../../bootlook.pm_.c:222
-#: ../../bootlook.pm_.c:232 ../../bootlook.pm_.c:241 ../../bootlook.pm_.c:248
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:336
-#: ../../diskdrake/interactive.pm_.c:351 ../../diskdrake/interactive.pm_.c:464
-#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../bootlook.pm_.c:169 ../../bootlook.pm_.c:187 ../../bootlook.pm_.c:190
+#: ../../bootlook.pm_.c:193 ../../bootlook.pm_.c:223 ../../bootlook.pm_.c:225
+#: ../../bootlook.pm_.c:235 ../../bootlook.pm_.c:244 ../../bootlook.pm_.c:251
+#: ../../diskdrake/dav.pm_.c:73 ../../diskdrake/hd_gtk.pm_.c:116
+#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/interactive.pm_.c:355
+#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/interactive.pm_.c:474
+#: ../../diskdrake/smbnfs_gtk.pm_.c:45 ../../fsedit.pm_.c:239
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:365 ../../interactive/http.pm_.c:119
-#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:80
+#: ../../interactive/http.pm_.c:119 ../../interactive/http.pm_.c:120
+#: ../../standalone/draksplash_.c:32
msgid "Error"
msgstr "Eroare"
-#: ../../bootlook.pm_.c:183
+#: ../../bootlook.pm_.c:186
#, c-format
msgid "Backup %s to %s.old"
msgstr ""
-#: ../../bootlook.pm_.c:184
+#: ../../bootlook.pm_.c:187
msgid "unable to backup lilo message"
msgstr ""
-#: ../../bootlook.pm_.c:186
+#: ../../bootlook.pm_.c:189
#, c-format
msgid "Copy %s to %s"
-msgstr ""
+msgstr "Copiez %s în %s"
-#: ../../bootlook.pm_.c:187
+#: ../../bootlook.pm_.c:190
msgid "can't change lilo message"
-msgstr ""
+msgstr "nu pot schimba mesajul LILO"
-#: ../../bootlook.pm_.c:190
+#: ../../bootlook.pm_.c:193
msgid "Lilo message not found"
-msgstr ""
+msgstr "nu găsesc mesajul LILO"
-#: ../../bootlook.pm_.c:220
+#: ../../bootlook.pm_.c:223
msgid "Can't write /etc/sysconfig/bootsplash."
-msgstr ""
+msgstr "Nu pot scrie fișierul /etc/sysconfig/bootsplash."
-#: ../../bootlook.pm_.c:220
-#, fuzzy, c-format
+#: ../../bootlook.pm_.c:223
+#, c-format
msgid "Write %s"
-msgstr "Server XFree86: %s"
+msgstr "Scrie %s"
-#: ../../bootlook.pm_.c:222
+#: ../../bootlook.pm_.c:225
msgid ""
"Can't write /etc/sysconfig/bootsplash\n"
"File not found."
msgstr ""
-#: ../../bootlook.pm_.c:233
+#: ../../bootlook.pm_.c:236
#, c-format
msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
msgstr ""
-#: ../../bootlook.pm_.c:236
+#: ../../bootlook.pm_.c:239
#, c-format
-msgid "Make initrd 'mkinird -f /boot/initrd-%s.img %s'."
+msgid "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
msgstr ""
-#: ../../bootlook.pm_.c:242
+#: ../../bootlook.pm_.c:245
msgid ""
"Can't relaunch LiLo!\n"
"Launch \"lilo\" as root in command line to complete LiLo theme installation."
msgstr ""
-#: ../../bootlook.pm_.c:246
+#: ../../bootlook.pm_.c:249
msgid "Relaunch 'lilo'"
msgstr ""
-#: ../../bootlook.pm_.c:248
-#, fuzzy
+#: ../../bootlook.pm_.c:251 ../../standalone/draksplash_.c:161
+#: ../../standalone/draksplash_.c:330 ../../standalone/draksplash_.c:454
msgid "Notice"
-msgstr "cravată"
+msgstr "Notificare"
-#: ../../bootlook.pm_.c:249
+#: ../../bootlook.pm_.c:252
msgid "LiLo and Bootsplash themes installation successfull"
msgstr ""
-#: ../../bootlook.pm_.c:249
-#, fuzzy
+#: ../../bootlook.pm_.c:252
msgid "Theme installation failed!"
-msgstr "Alegeți tipul de instalare"
+msgstr "Instalare teme eșuată!"
-#: ../../bootlook.pm_.c:258
-#, fuzzy, c-format
+#: ../../bootlook.pm_.c:261
+#, c-format
msgid ""
"You are currently using %s as your boot manager.\n"
"Click on Configure to launch the setup wizard."
-msgstr "Selectați Conexiunea de imprimantă"
+msgstr ""
+"În prezent folosiți %s ca manager de pornire.\n"
+"Clic pe Configurează pentru a lansa Asistentul de configurare."
-#: ../../bootlook.pm_.c:260 ../../standalone/drakbackup_.c:2352
-#: ../../standalone/drakbackup_.c:2362 ../../standalone/drakbackup_.c:2372
-#: ../../standalone/drakbackup_.c:2380 ../../standalone/drakgw_.c:592
-#: ../../standalone/tinyfirewall_.c:58
-#, fuzzy
+#: ../../bootlook.pm_.c:263 ../../standalone/drakbackup_.c:2427
+#: ../../standalone/drakbackup_.c:2437 ../../standalone/drakbackup_.c:2447
+#: ../../standalone/drakbackup_.c:2455 ../../standalone/drakgw_.c:530
msgid "Configure"
-msgstr "Configurați X"
+msgstr "Configurează"
-#: ../../bootlook.pm_.c:267
-#, fuzzy
+#: ../../bootlook.pm_.c:270
msgid "Splash selection"
-msgstr "Selectare individuală a pachetelor"
+msgstr "Selectare imagine de pornire"
-#: ../../bootlook.pm_.c:270
-#, fuzzy
+#: ../../bootlook.pm_.c:273
msgid "Themes"
-msgstr "Arbore"
+msgstr "Teme"
-#: ../../bootlook.pm_.c:272
+#: ../../bootlook.pm_.c:275
msgid ""
"\n"
"Select a theme for\n"
@@ -1388,55 +1381,55 @@ msgid ""
"them separatly"
msgstr ""
-#: ../../bootlook.pm_.c:275
+#: ../../bootlook.pm_.c:278
msgid "Lilo screen"
msgstr ""
-#: ../../bootlook.pm_.c:279
+#: ../../bootlook.pm_.c:283
msgid "Bootsplash"
msgstr ""
-#: ../../bootlook.pm_.c:314
+#: ../../bootlook.pm_.c:318
msgid "System mode"
-msgstr ""
+msgstr "Mod sistem"
-#: ../../bootlook.pm_.c:316
+#: ../../bootlook.pm_.c:320
msgid "Launch the graphical environment when your system starts"
msgstr ""
-#: ../../bootlook.pm_.c:321
+#: ../../bootlook.pm_.c:325
msgid "No, I don't want autologin"
-msgstr ""
+msgstr "Nu, nu vreau autologare"
-#: ../../bootlook.pm_.c:323
+#: ../../bootlook.pm_.c:327
msgid "Yes, I want autologin with this (user, desktop)"
-msgstr ""
+msgstr "Da, vreau autologare cu acest (utilizator, desktop)"
-#: ../../bootlook.pm_.c:333 ../../network/netconnect.pm_.c:101
+#: ../../bootlook.pm_.c:337 ../../network/netconnect.pm_.c:101
#: ../../standalone/drakTermServ_.c:173 ../../standalone/drakTermServ_.c:300
-#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:3513
-#: ../../standalone/drakbackup_.c:4290 ../../standalone/drakconnect_.c:108
+#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4191
+#: ../../standalone/drakbackup_.c:4952 ../../standalone/drakconnect_.c:108
#: ../../standalone/drakconnect_.c:140 ../../standalone/drakconnect_.c:296
#: ../../standalone/drakconnect_.c:435 ../../standalone/drakconnect_.c:521
#: ../../standalone/drakconnect_.c:564 ../../standalone/drakconnect_.c:667
#: ../../standalone/drakfloppy_.c:376 ../../standalone/drakfont_.c:612
#: ../../standalone/drakfont_.c:799 ../../standalone/drakfont_.c:876
-#: ../../standalone/drakfont_.c:963 ../../standalone/logdrake_.c:521
+#: ../../standalone/drakfont_.c:963 ../../standalone/logdrake_.c:519
msgid "OK"
msgstr "OK"
-#: ../../bootlook.pm_.c:403
+#: ../../bootlook.pm_.c:407
#, c-format
msgid "can not open /etc/inittab for reading: %s"
msgstr ""
#: ../../common.pm_.c:94
msgid "GB"
-msgstr ""
+msgstr "GB"
#: ../../common.pm_.c:94
msgid "KB"
-msgstr ""
+msgstr "KB"
#: ../../common.pm_.c:94
msgid "MB"
@@ -1444,147 +1437,139 @@ msgstr "MB"
#: ../../common.pm_.c:102
msgid "TB"
-msgstr ""
+msgstr "TB"
#: ../../common.pm_.c:110
#, c-format
msgid "%d minutes"
-msgstr ""
+msgstr "%d minute"
#: ../../common.pm_.c:112
msgid "1 minute"
-msgstr ""
+msgstr "1 minut"
#: ../../common.pm_.c:114
-#, fuzzy, c-format
+#, c-format
msgid "%d seconds"
-msgstr "Testul se va termina în %d secunde"
+msgstr "%d secunde"
#: ../../common.pm_.c:159
-#, fuzzy
msgid "Can't make screenshots before partitioning"
-msgstr "Imposibil de adăugat o alta partiție"
+msgstr "Nu pot captura ecranul înainte de partiționare"
#: ../../common.pm_.c:166
-#, fuzzy, c-format
+#, c-format
msgid "Screenshots will be available after install in %s"
-msgstr "Puteți să alegeți alte limbi care vor fi disponibile după instalare"
+msgstr "Capturile ecran vor fi disponibile după instalare în %s"
#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:28 ../../network/tools.pm_.c:104
#: ../../network/tools.pm_.c:113
-#, fuzzy
msgid "France"
-msgstr "Anulează"
+msgstr "Franța"
#: ../../crypto.pm_.c:15
msgid "Costa Rica"
-msgstr ""
+msgstr "Costa Rica"
#: ../../crypto.pm_.c:16 ../../crypto.pm_.c:29 ../../network/tools.pm_.c:104
#: ../../network/tools.pm_.c:116
-#, fuzzy
msgid "Belgium"
-msgstr "Belgian"
+msgstr "Belgia"
#: ../../crypto.pm_.c:17 ../../crypto.pm_.c:30
msgid "Czech Republic"
-msgstr ""
+msgstr "Cehia"
#: ../../crypto.pm_.c:18 ../../crypto.pm_.c:31
-#, fuzzy
msgid "Germany"
-msgstr "German"
+msgstr "Germania"
#: ../../crypto.pm_.c:19 ../../crypto.pm_.c:32
-#, fuzzy
msgid "Greece"
-msgstr "Grec"
+msgstr "Grecia"
#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:33
-#, fuzzy
msgid "Norway"
-msgstr "Norvegian"
+msgstr "Norvegia"
#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:34
-#, fuzzy
msgid "Sweden"
-msgstr "Afișează"
+msgstr "Suedia"
#: ../../crypto.pm_.c:22 ../../crypto.pm_.c:36 ../../network/tools.pm_.c:104
#: ../../network/tools.pm_.c:114
msgid "Netherlands"
-msgstr ""
+msgstr "Olanda"
#: ../../crypto.pm_.c:23 ../../crypto.pm_.c:37 ../../network/tools.pm_.c:104
#: ../../network/tools.pm_.c:115 ../../standalone/drakxtv_.c:68
-#, fuzzy
msgid "Italy"
-msgstr "Italian"
+msgstr "Italia"
#: ../../crypto.pm_.c:24 ../../crypto.pm_.c:38
-#, fuzzy
msgid "Austria"
-msgstr "serie"
+msgstr "Austria"
#: ../../crypto.pm_.c:35 ../../crypto.pm_.c:61 ../../network/tools.pm_.c:104
#: ../../network/tools.pm_.c:117
msgid "United States"
-msgstr ""
-
-#: ../../detect_devices.pm_.c:599 ../../detect_devices.pm_.c:641
-#: ../../detect_devices.pm_.c:803
-msgid "Unknown Model"
-msgstr ""
+msgstr "Statele Unite"
#: ../../diskdrake/dav.pm_.c:23
-#, fuzzy
msgid "New"
-msgstr "nou"
+msgstr ""
-#: ../../diskdrake/dav.pm_.c:57
-#, fuzzy
+#: ../../diskdrake/dav.pm_.c:59 ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/smbnfs_gtk.pm_.c:81
+msgid "Unmount"
+msgstr "Demontează"
+
+#: ../../diskdrake/dav.pm_.c:60 ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/smbnfs_gtk.pm_.c:82
+msgid "Mount"
+msgstr "Montare"
+
+#: ../../diskdrake/dav.pm_.c:61
msgid "Server"
-msgstr "server"
+msgstr "Server"
-#: ../../diskdrake/dav.pm_.c:58 ../../diskdrake/interactive.pm_.c:375
-#: ../../diskdrake/interactive.pm_.c:558 ../../diskdrake/interactive.pm_.c:585
+#: ../../diskdrake/dav.pm_.c:62 ../../diskdrake/interactive.pm_.c:379
+#: ../../diskdrake/interactive.pm_.c:568 ../../diskdrake/interactive.pm_.c:595
#: ../../diskdrake/removable.pm_.c:24 ../../diskdrake/removable_gtk.pm_.c:15
#: ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
-msgstr "Punct de montaj"
+msgstr "Punct de montare"
-#: ../../diskdrake/dav.pm_.c:68
-#, fuzzy
+#: ../../diskdrake/dav.pm_.c:81
msgid "Please enter the WebDAV server URL"
-msgstr "Vă rog să introduceți viteza pt. CD-writer"
+msgstr "Vă rog să introduceți URL-ul pentru serverul WebDAV"
-#: ../../diskdrake/dav.pm_.c:71
-#, fuzzy
+#: ../../diskdrake/dav.pm_.c:84
msgid "The URL must begin with http:// or https://"
-msgstr "Proxy-ul ar trebui să fie http://..."
+msgstr "URL-ul trebuie să înceapă cu http:// sau https://"
-#: ../../diskdrake/dav.pm_.c:92
-#, fuzzy
+#: ../../diskdrake/dav.pm_.c:105
msgid "Server: "
-msgstr "server"
+msgstr "Server:"
-#: ../../diskdrake/dav.pm_.c:93 ../../diskdrake/interactive.pm_.c:435
-#: ../../diskdrake/interactive.pm_.c:1079
-#: ../../diskdrake/interactive.pm_.c:1153
+#: ../../diskdrake/dav.pm_.c:106 ../../diskdrake/interactive.pm_.c:440
+#: ../../diskdrake/interactive.pm_.c:1089
+#: ../../diskdrake/interactive.pm_.c:1164
msgid "Mount point: "
-msgstr "Punct de montaj: "
+msgstr "Punct de montare: "
-#: ../../diskdrake/dav.pm_.c:94 ../../diskdrake/interactive.pm_.c:1159
-#, fuzzy, c-format
+#: ../../diskdrake/dav.pm_.c:107 ../../diskdrake/interactive.pm_.c:1170
+#, c-format
msgid "Options: %s"
-msgstr "Partiție"
+msgstr "Opțiuni: %s"
#: ../../diskdrake/hd_gtk.pm_.c:94
msgid "Please make a backup of your data first"
msgstr "Vă rog faceți mai întîi o copie a datelor dumneavoastră"
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:924
-#: ../../diskdrake/interactive.pm_.c:933 ../../diskdrake/interactive.pm_.c:999
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:934
+#: ../../diskdrake/interactive.pm_.c:943
+#: ../../diskdrake/interactive.pm_.c:1009
msgid "Read carefully!"
msgstr "Citiți cu atenție!"
@@ -1599,7 +1584,7 @@ msgstr ""
#: ../../diskdrake/hd_gtk.pm_.c:151
msgid "Wizard"
-msgstr ""
+msgstr "Asistent"
#: ../../diskdrake/hd_gtk.pm_.c:184 ../../diskdrake/removable_gtk.pm_.c:24
msgid "Choose action"
@@ -1622,10 +1607,15 @@ msgid "Please click on a partition"
msgstr "Vă rog faceți clic pe o partiție"
#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
-#: ../../install_steps_gtk.pm_.c:471
+#: ../../install_steps_gtk.pm_.c:465
msgid "Details"
msgstr "Detalii"
+#: ../../diskdrake/hd_gtk.pm_.c:252
+#, fuzzy
+msgid "No hard drives found"
+msgstr "Nu am găsit nici o imprimantă!"
+
#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Ext2"
msgstr "Ext2"
@@ -1639,25 +1629,24 @@ msgid "HFS"
msgstr "HFS"
#: ../../diskdrake/hd_gtk.pm_.c:323
-#, fuzzy
msgid "Journalised FS"
-msgstr "montare eșuată"
+msgstr "Sistem de fișiere jurnalizat"
#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "SunOS"
-msgstr ""
+msgstr "SunOS"
#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Swap"
msgstr "Swap"
-#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1105
msgid "Empty"
msgstr "Gol"
-#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:331
-#: ../../install_steps_gtk.pm_.c:389 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1679
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:325
+#: ../../install_steps_gtk.pm_.c:383 ../../mouse.pm_.c:165
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1754
msgid "Other"
msgstr "Alt tip"
@@ -1665,12 +1654,12 @@ msgstr "Alt tip"
msgid "Filesystem types:"
msgstr "Tipul de fișiere sistem: "
-#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:397
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:402
msgid "Create"
-msgstr "Crează"
+msgstr "Creează"
-#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:376
-#: ../../diskdrake/interactive.pm_.c:521 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:380
+#: ../../diskdrake/interactive.pm_.c:531 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "Tip"
@@ -1680,7 +1669,7 @@ msgstr "Tip"
msgid "Use ``%s'' instead"
msgstr "Folosește ``%s'' în loc"
-#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:389
msgid "Delete"
msgstr "Șterge"
@@ -1688,7 +1677,7 @@ msgstr "Șterge"
msgid "Use ``Unmount'' first"
msgstr "Folosește ``Demontare' mai întîi"
-#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:513
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:518
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
@@ -1696,78 +1685,72 @@ msgstr ""
"După schimbarea tipului de partiție %s, toate datele de pe aceasta "
"partițievor fi pierdute"
-#: ../../diskdrake/interactive.pm_.c:173
-#, fuzzy
+#: ../../diskdrake/interactive.pm_.c:174
msgid "Choose a partition"
-msgstr "Alegeți acțiunea"
+msgstr "Alegeți o partiție"
-#: ../../diskdrake/interactive.pm_.c:173
-#, fuzzy
+#: ../../diskdrake/interactive.pm_.c:174
msgid "Choose another partition"
-msgstr "Creează o nouă partiție"
+msgstr "Alegeți o altă partiție"
-#: ../../diskdrake/interactive.pm_.c:198
-#, fuzzy
+#: ../../diskdrake/interactive.pm_.c:199
msgid "Exit"
-msgstr "Ext2"
+msgstr "Ieșire"
-#: ../../diskdrake/interactive.pm_.c:220
+#: ../../diskdrake/interactive.pm_.c:221
msgid "Toggle to expert mode"
msgstr "Trece în mod expert"
-#: ../../diskdrake/interactive.pm_.c:220
+#: ../../diskdrake/interactive.pm_.c:221
msgid "Toggle to normal mode"
msgstr "Trece în mod normal"
-#: ../../diskdrake/interactive.pm_.c:220
+#: ../../diskdrake/interactive.pm_.c:221
msgid "Undo"
msgstr "Anulează"
-#: ../../diskdrake/interactive.pm_.c:239
+#: ../../diskdrake/interactive.pm_.c:240
msgid "Continue anyway?"
msgstr "Continuați totuși?"
-#: ../../diskdrake/interactive.pm_.c:244
+#: ../../diskdrake/interactive.pm_.c:245
msgid "Quit without saving"
msgstr "Ieșire fără a înregistra"
-#: ../../diskdrake/interactive.pm_.c:244
+#: ../../diskdrake/interactive.pm_.c:245
msgid "Quit without writing the partition table?"
msgstr "Ieșire din program fără a scrie în tabloul de partiții ?"
-#: ../../diskdrake/interactive.pm_.c:249
-#, fuzzy
+#: ../../diskdrake/interactive.pm_.c:250
msgid "Do you want to save /etc/fstab modifications"
-msgstr "Doriți să testați configurația ?"
+msgstr "Doriți să salvați modificările în /etc/fstab?"
-#: ../../diskdrake/interactive.pm_.c:261
+#: ../../diskdrake/interactive.pm_.c:263
msgid "Auto allocate"
-msgstr "Auto aloca"
+msgstr "Auto alocare"
-#: ../../diskdrake/interactive.pm_.c:261
+#: ../../diskdrake/interactive.pm_.c:263
msgid "Clear all"
msgstr "Șterge tot"
-#: ../../diskdrake/interactive.pm_.c:261
+#: ../../diskdrake/interactive.pm_.c:263
#: ../../install_steps_interactive.pm_.c:214
-#, fuzzy
msgid "More"
-msgstr "Deplasează"
+msgstr "Mai multe"
-#: ../../diskdrake/interactive.pm_.c:264
-#, fuzzy
+#: ../../diskdrake/interactive.pm_.c:267
msgid "Hard drive information"
-msgstr "Afișează informațiile"
+msgstr "Informații despre discurile fixe"
-#: ../../diskdrake/interactive.pm_.c:294
+#: ../../diskdrake/interactive.pm_.c:298
msgid "All primary partitions are used"
msgstr "Toate partițiile principale sunt alocate"
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:299
msgid "I can't add any more partition"
msgstr "Imposibil de adăugat o alta partiție"
-#: ../../diskdrake/interactive.pm_.c:296
+#: ../../diskdrake/interactive.pm_.c:300
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -1775,321 +1758,299 @@ msgstr ""
"Pentru a avea mai multe partiții, ștergeți una pentru a putea crea una de "
"tip Extended "
-#: ../../diskdrake/interactive.pm_.c:306
-#, fuzzy
+#: ../../diskdrake/interactive.pm_.c:310
msgid "Save partition table"
-msgstr "Scrie tabloul de partiții"
+msgstr "Scrie tabelul de partiții"
-#: ../../diskdrake/interactive.pm_.c:307
-#, fuzzy
+#: ../../diskdrake/interactive.pm_.c:311
msgid "Restore partition table"
-msgstr "Salvează tabelul de partiții"
+msgstr "Restaurează tabelul de partiții"
-#: ../../diskdrake/interactive.pm_.c:308
+#: ../../diskdrake/interactive.pm_.c:312
msgid "Rescue partition table"
msgstr "Salvează tabelul de partiții"
-#: ../../diskdrake/interactive.pm_.c:310
-#, fuzzy
+#: ../../diskdrake/interactive.pm_.c:314
msgid "Reload partition table"
-msgstr "Salvează tabelul de partiții"
+msgstr "Reîncarcă tabelul de partiții"
-#: ../../diskdrake/interactive.pm_.c:315
-#, fuzzy
+#: ../../diskdrake/interactive.pm_.c:319
msgid "Removable media automounting"
-msgstr "Automontare automată a perifericelor extractibile"
+msgstr "Automontare mediu detașabil"
-#: ../../diskdrake/interactive.pm_.c:324 ../../diskdrake/interactive.pm_.c:344
+#: ../../diskdrake/interactive.pm_.c:328 ../../diskdrake/interactive.pm_.c:348
msgid "Select file"
-msgstr "Selecționează fișierul"
+msgstr "Selecează fișierul"
-#: ../../diskdrake/interactive.pm_.c:331
+#: ../../diskdrake/interactive.pm_.c:335
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
msgstr ""
-"Tabloul de partiție salvat nu are aceeași mărime\n"
+"Tabelul de partiții salvat nu are aceeași mărime\n"
"Să continui totuși ?"
-#: ../../diskdrake/interactive.pm_.c:345
+#: ../../diskdrake/interactive.pm_.c:349
msgid "Warning"
msgstr "Avertisment"
-#: ../../diskdrake/interactive.pm_.c:346
+#: ../../diskdrake/interactive.pm_.c:350
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
msgstr ""
-"Introduceți o dischetă în periferic\n"
+"Introduceți o dischetă în unitate\n"
"Toate datele de pe această dischetă vor fi pierdute"
-#: ../../diskdrake/interactive.pm_.c:357
+#: ../../diskdrake/interactive.pm_.c:361
msgid "Trying to rescue partition table"
-msgstr "Încercare de salvare a tabloului de partiții"
+msgstr "Încerc să refac tabelul de partiții"
-#: ../../diskdrake/interactive.pm_.c:363
-#, fuzzy
+#: ../../diskdrake/interactive.pm_.c:367
msgid "Detailed information"
-msgstr "Afișează informațiile"
+msgstr "Informații detaliate"
-#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:652
+#: ../../diskdrake/interactive.pm_.c:382 ../../diskdrake/interactive.pm_.c:662
msgid "Resize"
msgstr "Redimensionează"
-#: ../../diskdrake/interactive.pm_.c:379 ../../diskdrake/interactive.pm_.c:705
+#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/interactive.pm_.c:715
msgid "Move"
-msgstr "Deplasează"
+msgstr "Mută"
-#: ../../diskdrake/interactive.pm_.c:380
+#: ../../diskdrake/interactive.pm_.c:384
msgid "Format"
msgstr "Formatează"
-#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/smbnfs_gtk.pm_.c:82
-msgid "Mount"
-msgstr "Montaj"
-
-#: ../../diskdrake/interactive.pm_.c:382
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Add to RAID"
msgstr "Adaugă la RAID"
-#: ../../diskdrake/interactive.pm_.c:383
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Add to LVM"
msgstr "Adaugă la LVM"
-#: ../../diskdrake/interactive.pm_.c:384 ../../diskdrake/smbnfs_gtk.pm_.c:81
-msgid "Unmount"
-msgstr "Demontează"
-
-#: ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/interactive.pm_.c:390
msgid "Remove from RAID"
msgstr "Șterge din RAID"
-#: ../../diskdrake/interactive.pm_.c:387
+#: ../../diskdrake/interactive.pm_.c:391
msgid "Remove from LVM"
msgstr "Șterge din LVM"
-#: ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/interactive.pm_.c:392
msgid "Modify RAID"
msgstr "Modifică RAID"
-#: ../../diskdrake/interactive.pm_.c:389
+#: ../../diskdrake/interactive.pm_.c:393
msgid "Use for loopback"
msgstr "Folosește pentru loopback"
-#: ../../diskdrake/interactive.pm_.c:428
+#: ../../diskdrake/interactive.pm_.c:433
msgid "Create a new partition"
msgstr "Creează o nouă partiție"
-#: ../../diskdrake/interactive.pm_.c:431
+#: ../../diskdrake/interactive.pm_.c:436
msgid "Start sector: "
msgstr "Sector de început: "
-#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:805
+#: ../../diskdrake/interactive.pm_.c:438 ../../diskdrake/interactive.pm_.c:815
msgid "Size in MB: "
msgstr "Mărimea în MB: "
-#: ../../diskdrake/interactive.pm_.c:434 ../../diskdrake/interactive.pm_.c:806
+#: ../../diskdrake/interactive.pm_.c:439 ../../diskdrake/interactive.pm_.c:816
msgid "Filesystem type: "
msgstr "Tipul de fișiere: "
-#: ../../diskdrake/interactive.pm_.c:439
+#: ../../diskdrake/interactive.pm_.c:444
msgid "Preference: "
msgstr "Preferință: "
-#: ../../diskdrake/interactive.pm_.c:464
+#: ../../diskdrake/interactive.pm_.c:469
msgid ""
"You can't create a new partition\n"
"(since you reached the maximal number of primary partitions).\n"
"First remove a primary partition and create an extended partition."
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:494
-#, fuzzy
+#: ../../diskdrake/interactive.pm_.c:499
msgid "Remove the loopback file?"
-msgstr "Formatarea fișierului loopback %s"
+msgstr "Doriți ștergerea fișierului loopback?"
-#: ../../diskdrake/interactive.pm_.c:519
+#: ../../diskdrake/interactive.pm_.c:529
msgid "Change partition type"
msgstr "Schimbă tipul partiției"
-#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:48
-#, fuzzy
+#: ../../diskdrake/interactive.pm_.c:530 ../../diskdrake/removable.pm_.c:48
msgid "Which filesystem do you want?"
-msgstr "Ce limbă doriți ?"
+msgstr "Ce sistem de fișiere doriți?"
-#: ../../diskdrake/interactive.pm_.c:526
+#: ../../diskdrake/interactive.pm_.c:536
msgid "Switching from ext2 to ext3"
-msgstr ""
+msgstr "Trec de la ext2 la ext3"
-#: ../../diskdrake/interactive.pm_.c:556
+#: ../../diskdrake/interactive.pm_.c:566
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "Unde doriți să montați fișierul loopback %s?"
-#: ../../diskdrake/interactive.pm_.c:557
+#: ../../diskdrake/interactive.pm_.c:567
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Unde doriți să montați perifericul %s?"
-#: ../../diskdrake/interactive.pm_.c:563
+#: ../../diskdrake/interactive.pm_.c:573
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
msgstr ""
-"Nu pot să desființez acest punct de montaj pentru că partiția e "
-"folosităpentru loopback.\n"
-"Ștergeți loopback-ul mai întîi"
+"Nu pot să desființez acest punct de montare pentru că partiția e folosită "
+"pentru loopback.\n"
+"Ștergeți loopback-ul mai întâi"
-#: ../../diskdrake/interactive.pm_.c:584
-#, fuzzy, c-format
+#: ../../diskdrake/interactive.pm_.c:594
+#, c-format
msgid "Where do you want to mount %s?"
-msgstr "Unde doriți să montați perifericul %s?"
+msgstr "Unde doriți să montați %s?"
-#: ../../diskdrake/interactive.pm_.c:608
+#: ../../diskdrake/interactive.pm_.c:618
msgid "Computing FAT filesystem bounds"
-msgstr "Calculează salturile de fișiere FAT"
+msgstr "Calculez limitele sistemului de fișiere FAT"
-#: ../../diskdrake/interactive.pm_.c:608 ../../diskdrake/interactive.pm_.c:667
-#: ../../install_interactive.pm_.c:131
+#: ../../diskdrake/interactive.pm_.c:618 ../../diskdrake/interactive.pm_.c:677
+#: ../../install_interactive.pm_.c:133
msgid "Resizing"
-msgstr "Redimensionează"
+msgstr "Redimensionare"
-#: ../../diskdrake/interactive.pm_.c:640
-#, fuzzy
+#: ../../diskdrake/interactive.pm_.c:650
msgid "This partition is not resizeable"
-msgstr "Ce tip de partiție doriți?"
+msgstr "Dimensiunea acestei partiții nu poate fi modificată"
-#: ../../diskdrake/interactive.pm_.c:645
+#: ../../diskdrake/interactive.pm_.c:655
msgid "All data on this partition should be backed-up"
msgstr "Toate datele de pe aceasta partiție ar trebui salvate mai întîi"
-#: ../../diskdrake/interactive.pm_.c:647
+#: ../../diskdrake/interactive.pm_.c:657
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr ""
"După redimensionarea partiției %s toate datele de pe aceasta partiție vor fi "
"pierdute"
-#: ../../diskdrake/interactive.pm_.c:652
+#: ../../diskdrake/interactive.pm_.c:662
msgid "Choose the new size"
msgstr "Alegeți noua mărime"
-#: ../../diskdrake/interactive.pm_.c:653
-#, fuzzy
+#: ../../diskdrake/interactive.pm_.c:663
msgid "New size in MB: "
-msgstr "Mărimea în MB: "
+msgstr "Noua mărime în MB: "
-#: ../../diskdrake/interactive.pm_.c:706
+#: ../../diskdrake/interactive.pm_.c:716
msgid "Which disk do you want to move it to?"
-msgstr "Pe ce disc doriți să schimbați ?"
+msgstr "Pe ce disc doriți să mutați ?"
-#: ../../diskdrake/interactive.pm_.c:707
+#: ../../diskdrake/interactive.pm_.c:717
msgid "Sector"
msgstr "Sector"
-#: ../../diskdrake/interactive.pm_.c:708
+#: ../../diskdrake/interactive.pm_.c:718
msgid "Which sector do you want to move it to?"
-msgstr "La ce sector doriți sa schimbați ?"
+msgstr "La ce sector doriți să mutați?"
-#: ../../diskdrake/interactive.pm_.c:711
+#: ../../diskdrake/interactive.pm_.c:721
msgid "Moving"
-msgstr "Schimbă"
+msgstr "În mutare"
-#: ../../diskdrake/interactive.pm_.c:711
+#: ../../diskdrake/interactive.pm_.c:721
msgid "Moving partition..."
-msgstr "Schimbă partiția..."
+msgstr "Mut partiția..."
-#: ../../diskdrake/interactive.pm_.c:728
+#: ../../diskdrake/interactive.pm_.c:738
msgid "Choose an existing RAID to add to"
msgstr "Alegeți un RAID existent la care să adăugați"
-#: ../../diskdrake/interactive.pm_.c:729 ../../diskdrake/interactive.pm_.c:746
+#: ../../diskdrake/interactive.pm_.c:739 ../../diskdrake/interactive.pm_.c:756
msgid "new"
msgstr "nou"
-#: ../../diskdrake/interactive.pm_.c:744
+#: ../../diskdrake/interactive.pm_.c:754
msgid "Choose an existing LVM to add to"
msgstr "Alegeți un LVM existent la care să adăugați"
-#: ../../diskdrake/interactive.pm_.c:749
+#: ../../diskdrake/interactive.pm_.c:759
msgid "LVM name?"
-msgstr ""
+msgstr "Nume LVM?"
-#: ../../diskdrake/interactive.pm_.c:790
+#: ../../diskdrake/interactive.pm_.c:800
msgid "This partition can't be used for loopback"
msgstr "Această partiție nu poate fi folosită pentru loopback"
-#: ../../diskdrake/interactive.pm_.c:803
+#: ../../diskdrake/interactive.pm_.c:813
msgid "Loopback"
msgstr "Loopback"
-#: ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:814
msgid "Loopback file name: "
msgstr "Numele fișierului loopback"
-#: ../../diskdrake/interactive.pm_.c:809
-#, fuzzy
+#: ../../diskdrake/interactive.pm_.c:819
msgid "Give a file name"
-msgstr "Nume real"
+msgstr "Dați un nume de fișier"
-#: ../../diskdrake/interactive.pm_.c:812
+#: ../../diskdrake/interactive.pm_.c:822
msgid "File already used by another loopback, choose another one"
msgstr "Fișier deja folosit de un alt loopback, alegeți un altul"
-#: ../../diskdrake/interactive.pm_.c:813
+#: ../../diskdrake/interactive.pm_.c:823
msgid "File already exists. Use it?"
msgstr "Fișierul există deja. Să-l folosesc ?"
-#: ../../diskdrake/interactive.pm_.c:836
-#, fuzzy
+#: ../../diskdrake/interactive.pm_.c:846
msgid "Mount options"
-msgstr "Opțiuni pentru module:"
+msgstr "Opțiuni pentru montare:"
-#: ../../diskdrake/interactive.pm_.c:843
+#: ../../diskdrake/interactive.pm_.c:853
msgid "Various"
-msgstr ""
+msgstr "Diverse"
-#: ../../diskdrake/interactive.pm_.c:907 ../../standalone/drakfloppy_.c:103
+#: ../../diskdrake/interactive.pm_.c:917 ../../standalone/drakfloppy_.c:103
msgid "device"
msgstr "dispozitiv"
-#: ../../diskdrake/interactive.pm_.c:908
+#: ../../diskdrake/interactive.pm_.c:918
msgid "level"
msgstr "nivel"
-#: ../../diskdrake/interactive.pm_.c:909
+#: ../../diskdrake/interactive.pm_.c:919
msgid "chunk size"
msgstr "mărimea porțiunii "
-#: ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:934
msgid "Be careful: this operation is dangerous."
msgstr "Atenție: aceasta operație e periculoasă."
-#: ../../diskdrake/interactive.pm_.c:939
-#, fuzzy
+#: ../../diskdrake/interactive.pm_.c:949
msgid "What type of partitioning?"
-msgstr "Ce tip de imprimanta aveți?"
+msgstr "Ce tip de partiționare?"
-#: ../../diskdrake/interactive.pm_.c:955
-#, fuzzy, c-format
+#: ../../diskdrake/interactive.pm_.c:965
+#, c-format
msgid "The package %s is needed. Install it?"
-msgstr ""
-"Acest pachet trebuie actualizat\n"
-"Sunteți sigur că doriți să-l deselectați ?"
+msgstr "Pachetul %s este necesar. Doriți instalarea lui?"
-#: ../../diskdrake/interactive.pm_.c:969
+#: ../../diskdrake/interactive.pm_.c:979
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
"Either you use LILO and it won't work, or you don't use LILO and you don't "
"need /boot"
msgstr ""
-"Îmi pare rău dar nu voi accepta să creez /boot atît de departe ê disc (pe un "
-"cilindru > 1024).\n"
-"Sau folosiți LILO soi nu va funcționa, sau nu folosiți LILO și atunci nu\n"
+"Îmi pare rău dar nu voi accepta să creez /boot atît de departe pe disc (pe "
+"un cilindru > 1024).\n"
+"Sau folosiți LILO și nu va funcționa, sau nu folosiți LILO și atunci nu\n"
"aveți nevoie de /boot"
-#: ../../diskdrake/interactive.pm_.c:973
+#: ../../diskdrake/interactive.pm_.c:983
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -2098,156 +2059,153 @@ msgid ""
msgstr ""
"Partiția pe care ați selecționat-o pentru adăugare ca root (/) e fizic "
"localizată dincolo\n"
-"de cilindru 1024 pe discul dur și nu aveți nici o partiție /boot.\n"
-"Dacă planificați să folosiți LILO ca gestionar de demaraj, asigurați-vă "
-"căați adăugat o partiție /boot."
+"de cilindru 1024 pe discul fix și nu aveți nici o partiție /boot.\n"
+"Dacă planificați să folosiți LILO ca gestionar de demaraj, asigurați-vă că "
+"ați adăugat o partiție /boot."
-#: ../../diskdrake/interactive.pm_.c:979
-#, fuzzy
+#: ../../diskdrake/interactive.pm_.c:989
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
"So be careful to add a /boot partition"
msgstr ""
-"Ați selectat o partiție software root en tant que RAID.\n"
-"Nici un gestionar de boot nu e capabil să gereze aceasta fără\n"
-"o partitie /boot. Folosiți deci o partiție /boot dacă doriți să folosiți\n"
-"lilo sau grub."
+"Ați selectat o partiție RAID software pentru /root.\n"
+"Nici un gestionar de demaraj nu e capabil să folosească aceasta fără\n"
+"o partiție /boot. Adăugați deci o partiție /boot"
-#: ../../diskdrake/interactive.pm_.c:999
+#: ../../diskdrake/interactive.pm_.c:1009
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
-msgstr "Tabloul de partiții al perifericului %s va fi scris pe disc!"
+msgstr "Tabelul de partiții al perifericului %s va fi scris pe disc!"
-#: ../../diskdrake/interactive.pm_.c:1003
+#: ../../diskdrake/interactive.pm_.c:1013
msgid "You'll need to reboot before the modification can take place"
msgstr ""
"Va trebui să redemarați pentru ca schimbările sa fie luate în considerare"
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1024
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr ""
"După formatarea partiției %s toate datele de pe aceasta partiție vor fi "
"pierdute"
-#: ../../diskdrake/interactive.pm_.c:1016
+#: ../../diskdrake/interactive.pm_.c:1026
msgid "Formatting"
msgstr "Formatare"
-#: ../../diskdrake/interactive.pm_.c:1017
+#: ../../diskdrake/interactive.pm_.c:1027
#, c-format
msgid "Formatting loopback file %s"
msgstr "Formatarea fișierului loopback %s"
-#: ../../diskdrake/interactive.pm_.c:1018
-#: ../../install_steps_interactive.pm_.c:476
+#: ../../diskdrake/interactive.pm_.c:1028
+#: ../../install_steps_interactive.pm_.c:459
#, c-format
msgid "Formatting partition %s"
msgstr "Formatarea partiției %s"
-#: ../../diskdrake/interactive.pm_.c:1029
-#, fuzzy
+#: ../../diskdrake/interactive.pm_.c:1039
msgid "Hide files"
-msgstr "mkraid a eșuat"
+msgstr "Ascunde fișiere"
-#: ../../diskdrake/interactive.pm_.c:1029
-#, fuzzy
+#: ../../diskdrake/interactive.pm_.c:1039
msgid "Move files to the new partition"
-msgstr "Creează o nouă partiție"
+msgstr "Mută fișierele pe partiția nouă"
-#: ../../diskdrake/interactive.pm_.c:1030
+#: ../../diskdrake/interactive.pm_.c:1040
#, c-format
msgid ""
"Directory %s already contains data\n"
"(%s)"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1041
-#, fuzzy
+#: ../../diskdrake/interactive.pm_.c:1051
msgid "Moving files to the new partition"
-msgstr "Creează o nouă partiție"
+msgstr "Mut fișierele pe partiția nouă"
-#: ../../diskdrake/interactive.pm_.c:1045
+#: ../../diskdrake/interactive.pm_.c:1055
#, c-format
msgid "Copying %s"
-msgstr ""
+msgstr "Copiez %s"
-#: ../../diskdrake/interactive.pm_.c:1049
-#, fuzzy, c-format
+#: ../../diskdrake/interactive.pm_.c:1059
+#, c-format
msgid "Removing %s"
-msgstr "Rezoluții"
+msgstr "Șterg %s"
-#: ../../diskdrake/interactive.pm_.c:1059
+#: ../../diskdrake/interactive.pm_.c:1069
#, c-format
msgid "partition %s is now known as %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1080
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1090
+#: ../../diskdrake/interactive.pm_.c:1149
msgid "Device: "
msgstr "Periferic: "
-#: ../../diskdrake/interactive.pm_.c:1081
+#: ../../diskdrake/interactive.pm_.c:1091
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "Litera perifericului DOS: %s (doar o presupunere)\n"
-#: ../../diskdrake/interactive.pm_.c:1085
-#: ../../diskdrake/interactive.pm_.c:1093
-#: ../../diskdrake/interactive.pm_.c:1157
+#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1103
+#: ../../diskdrake/interactive.pm_.c:1168
msgid "Type: "
msgstr "Tip: "
-#: ../../diskdrake/interactive.pm_.c:1089
+#: ../../diskdrake/interactive.pm_.c:1099
msgid "Name: "
msgstr "Nume: "
-#: ../../diskdrake/interactive.pm_.c:1097
+#: ../../diskdrake/interactive.pm_.c:1107
#, c-format
msgid "Start: sector %s\n"
msgstr "Start: sector %s\n"
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1108
#, c-format
msgid "Size: %s"
msgstr "Mărimea: %s"
-#: ../../diskdrake/interactive.pm_.c:1100
+#: ../../diskdrake/interactive.pm_.c:1110
#, c-format
msgid ", %s sectors"
msgstr ", %s sectori"
-#: ../../diskdrake/interactive.pm_.c:1102
-#, fuzzy, c-format
+#: ../../diskdrake/interactive.pm_.c:1112
+#, c-format
msgid "Cylinder %d to %d\n"
msgstr "De la cilindrul %d la cilindrul %d\n"
-#: ../../diskdrake/interactive.pm_.c:1103
+#: ../../diskdrake/interactive.pm_.c:1113
msgid "Formatted\n"
msgstr "Formatat\n"
-#: ../../diskdrake/interactive.pm_.c:1104
+#: ../../diskdrake/interactive.pm_.c:1114
msgid "Not formatted\n"
msgstr "Neformatat\n"
-#: ../../diskdrake/interactive.pm_.c:1105
+#: ../../diskdrake/interactive.pm_.c:1115
msgid "Mounted\n"
msgstr "Montat\n"
-#: ../../diskdrake/interactive.pm_.c:1106
+#: ../../diskdrake/interactive.pm_.c:1116
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1108
-#, fuzzy, c-format
+#: ../../diskdrake/interactive.pm_.c:1118
+#, c-format
msgid ""
"Loopback file(s):\n"
" %s\n"
-msgstr "Fișier(e) loopback: %s\n"
+msgstr ""
+"Fișier(e) loopback: \n"
+" %s\n"
-#: ../../diskdrake/interactive.pm_.c:1109
+#: ../../diskdrake/interactive.pm_.c:1119
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -2255,27 +2213,27 @@ msgstr ""
"Partiția demarată din oficiu\n"
" (pentru demaraj MS-DOS, nu pentru lilo)\n"
-#: ../../diskdrake/interactive.pm_.c:1111
+#: ../../diskdrake/interactive.pm_.c:1121
#, c-format
msgid "Level %s\n"
msgstr "Nivel %s\n"
-#: ../../diskdrake/interactive.pm_.c:1112
+#: ../../diskdrake/interactive.pm_.c:1122
#, c-format
msgid "Chunk size %s\n"
msgstr "Mărimea porțiunii %s\n"
-#: ../../diskdrake/interactive.pm_.c:1113
+#: ../../diskdrake/interactive.pm_.c:1123
#, c-format
msgid "RAID-disks %s\n"
msgstr "Discuri-RAID %s\n"
-#: ../../diskdrake/interactive.pm_.c:1115
+#: ../../diskdrake/interactive.pm_.c:1125
#, c-format
msgid "Loopback file name: %s"
msgstr "Numele fișierului loopback: %s"
-#: ../../diskdrake/interactive.pm_.c:1118
+#: ../../diskdrake/interactive.pm_.c:1128
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -2283,7 +2241,7 @@ msgid ""
"probably leave it alone.\n"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1121
+#: ../../diskdrake/interactive.pm_.c:1131
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2291,72 +2249,72 @@ msgid ""
"dual-booting your system.\n"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1140
+#: ../../diskdrake/interactive.pm_.c:1150
+msgid "Read-only"
+msgstr ""
+
+#: ../../diskdrake/interactive.pm_.c:1151
#, c-format
msgid "Size: %s\n"
msgstr "Mărime: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1141
+#: ../../diskdrake/interactive.pm_.c:1152
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Geometrie: %s cylinders, %s heads, %s sectors\n"
-#: ../../diskdrake/interactive.pm_.c:1142
+#: ../../diskdrake/interactive.pm_.c:1153
msgid "Info: "
msgstr "Info: "
-#: ../../diskdrake/interactive.pm_.c:1143
+#: ../../diskdrake/interactive.pm_.c:1154
#, c-format
msgid "LVM-disks %s\n"
msgstr "Discuri-LVM %s\n"
-#: ../../diskdrake/interactive.pm_.c:1144
+#: ../../diskdrake/interactive.pm_.c:1155
#, c-format
msgid "Partition table type: %s\n"
-msgstr "Tipul tabloul de partiții : %s\n"
+msgstr "Tipul tabloul de partiții: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1145
-#, fuzzy, c-format
+#: ../../diskdrake/interactive.pm_.c:1156
+#, c-format
msgid "on channel %d id %d\n"
-msgstr "pe bus-ul %d id %d\n"
+msgstr "pe canalul %d id %d\n"
-#: ../../diskdrake/interactive.pm_.c:1175
-#, fuzzy
+#: ../../diskdrake/interactive.pm_.c:1186
msgid "Filesystem encryption key"
-msgstr "Tipul de fișiere: "
+msgstr "Cheie criptare pt. sistemul de fișiere"
-#: ../../diskdrake/interactive.pm_.c:1176
+#: ../../diskdrake/interactive.pm_.c:1187
msgid "Choose your filesystem encryption key"
-msgstr ""
+msgstr "Selectați cheia de criptare pt. sistemul de fișiere"
-#: ../../diskdrake/interactive.pm_.c:1179
-#, fuzzy, c-format
+#: ../../diskdrake/interactive.pm_.c:1190
+#, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr ""
-"Această parole e prea simplă (ar trebui să fie de cel puțin %d caractere)"
+"Această cheie e prea simplă (ar trebui să fie de cel puțin %d caractere)"
-#: ../../diskdrake/interactive.pm_.c:1180
-#, fuzzy
+#: ../../diskdrake/interactive.pm_.c:1191
msgid "The encryption keys do not match"
-msgstr "Parolele nu corespund"
+msgstr "Cheile de criptare nu corespund"
-#: ../../diskdrake/interactive.pm_.c:1183
+#: ../../diskdrake/interactive.pm_.c:1194
msgid "Encryption key"
-msgstr ""
+msgstr "Cheia de criptare"
-#: ../../diskdrake/interactive.pm_.c:1184
+#: ../../diskdrake/interactive.pm_.c:1195
msgid "Encryption key (again)"
-msgstr ""
+msgstr "Cheia de criptare (din nou)"
#: ../../diskdrake/removable.pm_.c:47
-#, fuzzy
msgid "Change type"
-msgstr "Schimbă tipul partiției"
+msgstr "Schimbă tipul"
#: ../../diskdrake/removable_gtk.pm_.c:28
-#, fuzzy
msgid "Please click on a medium"
-msgstr "Vă rog faceți clic pe o partiție"
+msgstr "Vă rog să faceți clic pe un mediu"
#: ../../diskdrake/smbnfs_gtk.pm_.c:162
#, c-format
@@ -2364,17 +2322,14 @@ msgid "Can't login using username %s (bad password?)"
msgstr ""
#: ../../diskdrake/smbnfs_gtk.pm_.c:166 ../../diskdrake/smbnfs_gtk.pm_.c:175
-#, fuzzy
msgid "Domain Authentication Required"
-msgstr "Autentificare"
+msgstr "Se cere autentificare în domeniu"
#: ../../diskdrake/smbnfs_gtk.pm_.c:167
-#, fuzzy
msgid "Another one"
-msgstr "Interesant"
+msgstr ""
#: ../../diskdrake/smbnfs_gtk.pm_.c:167
-#, fuzzy
msgid "Which username"
msgstr "Numele utilizatorului"
@@ -2383,329 +2338,364 @@ msgid ""
"Please enter your username, password and domain name to access this host."
msgstr ""
-#: ../../diskdrake/smbnfs_gtk.pm_.c:178
-#, fuzzy
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3527
msgid "Username"
-msgstr "Numele utilizatorului"
+msgstr "Nume utilizator"
#: ../../diskdrake/smbnfs_gtk.pm_.c:180
-#, fuzzy
msgid "Domain"
-msgstr "Domeniu NIS"
+msgstr "Domeniu"
#: ../../diskdrake/smbnfs_gtk.pm_.c:200
-#, fuzzy
msgid "Search servers"
-msgstr "Server DNS"
+msgstr "Caută servere"
-#: ../../fs.pm_.c:552 ../../fs.pm_.c:562 ../../fs.pm_.c:566 ../../fs.pm_.c:570
-#: ../../fs.pm_.c:574 ../../fs.pm_.c:578
+#: ../../fs.pm_.c:544 ../../fs.pm_.c:554 ../../fs.pm_.c:558 ../../fs.pm_.c:562
+#: ../../fs.pm_.c:566 ../../fs.pm_.c:570
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s Formatarea %s eșuată"
-#: ../../fs.pm_.c:615
+#: ../../fs.pm_.c:607
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "Nu știu cum să formatez %s în tipul %s"
-#: ../../fs.pm_.c:687 ../../fs.pm_.c:731
+#: ../../fs.pm_.c:681 ../../fs.pm_.c:724
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../fs.pm_.c:746 ../../partition_table.pm_.c:602
+#: ../../fs.pm_.c:739 ../../partition_table.pm_.c:598
#, c-format
msgid "error unmounting %s: %s"
msgstr "eroare la demontarea %s: %s"
#: ../../fsedit.pm_.c:21
-#, fuzzy
msgid "simple"
-msgstr "Fișier"
+msgstr "simplu"
#: ../../fsedit.pm_.c:25
msgid "with /usr"
-msgstr ""
+msgstr "cu /usr"
#: ../../fsedit.pm_.c:30
msgid "server"
msgstr "server"
-#: ../../fsedit.pm_.c:472
+#: ../../fsedit.pm_.c:240
+#, c-format
+msgid ""
+"I can't read the partition table of device %s, it's too corrupted for me :(\n"
+"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
+"The other solution is to not allow DrakX to modify the partition table.\n"
+"(the error is %s)\n"
+"\n"
+"Do you agree to loose all the partitions?\n"
+msgstr ""
+
+#: ../../fsedit.pm_.c:501
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr ""
-#: ../../fsedit.pm_.c:473
+#: ../../fsedit.pm_.c:502
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr ""
-#: ../../fsedit.pm_.c:492
+#: ../../fsedit.pm_.c:521
msgid "Mount points must begin with a leading /"
msgstr "Punctele de montaje trebuie sa înceapă cu un /"
-#: ../../fsedit.pm_.c:493
+#: ../../fsedit.pm_.c:522
#, c-format
msgid "There is already a partition with mount point %s\n"
-msgstr "O partiție cu punctul de montaj %s există deja\n"
+msgstr "O partiție cu punctul de montare %s există deja\n"
-#: ../../fsedit.pm_.c:497
+#: ../../fsedit.pm_.c:526
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr ""
-#: ../../fsedit.pm_.c:499
+#: ../../fsedit.pm_.c:528
msgid "This directory should remain within the root filesystem"
msgstr ""
-#: ../../fsedit.pm_.c:501
-#, fuzzy
+#: ../../fsedit.pm_.c:530
msgid ""
"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
"point\n"
msgstr ""
-"Aveți nevoie de un sistem de fișiere serios (ext2, reiserfs) pentru\n"
-"acest punct de montaj.\n"
+"Aveți nevoie de un sistem de fișiere serios (ext2/ext3, reiserfs, xfs sau "
+"jfs) pentru\n"
+"acest punct de montare.\n"
-#: ../../fsedit.pm_.c:503
-#, fuzzy, c-format
+#: ../../fsedit.pm_.c:532
+#, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr ""
-"Aveți nevoie de un sistem de fișiere serios (ext2, reiserfs) pentru\n"
-"acest punct de montaj.\n"
+"Nu puteți monta un sistem de fișiere criptat pentru punctul de montare %s"
-#: ../../fsedit.pm_.c:570
+#: ../../fsedit.pm_.c:599
msgid "Not enough free space for auto-allocating"
-msgstr ""
+msgstr "Spațiu pe disc insuficient pentru auto-alocare"
-#: ../../fsedit.pm_.c:572
+#: ../../fsedit.pm_.c:601
msgid "Nothing to do"
-msgstr ""
+msgstr "Nimic de făcut"
-#: ../../fsedit.pm_.c:665
+#: ../../fsedit.pm_.c:694
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Eroare la citirea %s pentru a scrie: %s"
-#: ../../fsedit.pm_.c:750
+#: ../../harddrake/sound.pm_.c:155
+msgid "No alternative driver"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:156
+#, c-format
+msgid "There's no known OSS/ALSA alternative driver for your sound card (%s)"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:158
+#, fuzzy
+msgid "Sound configuration"
+msgstr "Configurare CUPS"
+
+#: ../../harddrake/sound.pm_.c:159
+#, c-format
msgid ""
-"An error occurred - no valid devices were found on which to create new "
-"filesystems. Please check your hardware for the cause of this problem"
+"Here you can select an alternative driver (either OSS or ALSA) for your "
+"sound card (%s)"
msgstr ""
-"O eroare a apărut - nu am găsit nici un periferic pentru a instala noi "
-"fișiere\n"
-"sistem. Verificați harware-ul pentru a detecta cauza acestei probleme."
-#: ../../fsedit.pm_.c:773
-msgid "You don't have any partitions!"
-msgstr "Nu aveți nici o partiție!"
+#: ../../harddrake/sound.pm_.c:162
+#, fuzzy
+msgid "Driver:"
+msgstr "Driver"
-#: ../../harddrake/ui.pm_.c:15
+#: ../../harddrake/sound.pm_.c:173
+msgid "No known driver"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:174
+#, c-format
+msgid "There's no known driver for your sound card (%s)"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:177
#, fuzzy
-msgid "Model"
-msgstr "Mouse USB"
+msgid "Unkown driver"
+msgstr "Model necunoscut"
-#: ../../harddrake/ui.pm_.c:15
-msgid "hard disk model"
+#: ../../harddrake/sound.pm_.c:178
+#, c-format
+msgid ""
+"The \"%s\" driver for your sound card is unlisted\n"
+"\n"
+"Please send the output of the \"lspcidrake -v\" command to\n"
+"<install at mandrakesoft dot com>\n"
+"with subject: unlisted sound driver \"%s\""
msgstr ""
#: ../../harddrake/ui.pm_.c:16
-#, fuzzy
-msgid "Channel"
-msgstr "Anulează"
+msgid "Model"
+msgstr "Model"
#: ../../harddrake/ui.pm_.c:16
+msgid "hard disk model"
+msgstr "Model disc fix"
+
+#: ../../harddrake/ui.pm_.c:17
+msgid "Channel"
+msgstr "Canal"
+
+#: ../../harddrake/ui.pm_.c:17
msgid "EIDE/SCSI channel"
-msgstr ""
+msgstr "Canal EIDE/SCSI"
-#: ../../harddrake/ui.pm_.c:18
+#: ../../harddrake/ui.pm_.c:19
msgid "Bus"
-msgstr ""
+msgstr "Magistrală"
-#: ../../harddrake/ui.pm_.c:19
+#: ../../harddrake/ui.pm_.c:20
msgid ""
"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
msgstr ""
-#: ../../harddrake/ui.pm_.c:20
-#, fuzzy
+#: ../../harddrake/ui.pm_.c:21
msgid "Module"
-msgstr "Mouse USB"
+msgstr "Module"
-#: ../../harddrake/ui.pm_.c:20
+#: ../../harddrake/ui.pm_.c:21
msgid "the module of the GNU/Linux kernel that handle that device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:21
+#: ../../harddrake/ui.pm_.c:22
msgid "Media class"
msgstr ""
-#: ../../harddrake/ui.pm_.c:21
+#: ../../harddrake/ui.pm_.c:22
msgid "class of hardware device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:22 ../../printerdrake.pm_.c:1404
-#, fuzzy
+#: ../../harddrake/ui.pm_.c:23 ../../printerdrake.pm_.c:1517
msgid "Description"
-msgstr "Specificați opțiunile"
+msgstr "Descriere"
-#: ../../harddrake/ui.pm_.c:22
+#: ../../harddrake/ui.pm_.c:23
msgid "this field describe the device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:24
-#, fuzzy
+#: ../../harddrake/ui.pm_.c:25
msgid "Bus identification"
-msgstr "Autentificare"
+msgstr "Identificare magistrală"
-#: ../../harddrake/ui.pm_.c:25
+#: ../../harddrake/ui.pm_.c:26
msgid ""
-"- PCI and USB devices : this list the vendor, device, subvendor and "
-"subdevice PCI/USB ids"
+"- PCI and USB devices: this list the vendor, device, subvendor and subdevice "
+"PCI/USB ids"
msgstr ""
-#: ../../harddrake/ui.pm_.c:27
+#: ../../harddrake/ui.pm_.c:28
msgid "Location on the bus"
-msgstr ""
+msgstr "Poziționarea pe magistrală"
-#: ../../harddrake/ui.pm_.c:28
+#: ../../harddrake/ui.pm_.c:29
msgid ""
"- pci devices: this gives the PCI slot, device and function of this card\n"
"- eide devices: the device is either a slave or a master device\n"
"- scsi devices: the scsi bus and the scsi device ids"
msgstr ""
-#: ../../harddrake/ui.pm_.c:31
-#, fuzzy
+#: ../../harddrake/ui.pm_.c:32
msgid "Old device file"
-msgstr "Selecționează fișierul"
+msgstr ""
-#: ../../harddrake/ui.pm_.c:32
+#: ../../harddrake/ui.pm_.c:33
msgid "old static device name used in dev package"
msgstr ""
-#: ../../harddrake/ui.pm_.c:33
-#, fuzzy
+#: ../../harddrake/ui.pm_.c:34
msgid "New devfs device"
-msgstr "Periferic pasarelă"
+msgstr "Dispozitiv nou devfs"
-#: ../../harddrake/ui.pm_.c:34
+#: ../../harddrake/ui.pm_.c:35
msgid "new dinamic device name generated by incore kernel devfs"
msgstr ""
-#: ../../harddrake/ui.pm_.c:35
+#: ../../harddrake/ui.pm_.c:36
msgid "Number of buttons"
-msgstr ""
+msgstr "Număr butoane"
-#: ../../harddrake/ui.pm_.c:36
+#: ../../harddrake/ui.pm_.c:37
msgid "the vendor name of the device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:60
+#: ../../harddrake/ui.pm_.c:38
#, fuzzy
+msgid "Alternative drivers"
+msgstr "Pagină de test alternativă (A4)"
+
+#: ../../harddrake/ui.pm_.c:39
+msgid "the list of alternative drivers for this sound card"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:63
msgid "/_Quit"
-msgstr "Ieșire"
+msgstr "/_Ieșire"
-#: ../../harddrake/ui.pm_.c:61 ../../harddrake/ui.pm_.c:62
-#: ../../harddrake/ui.pm_.c:68 ../../standalone/logdrake_.c:110
-#, fuzzy
+#: ../../harddrake/ui.pm_.c:64 ../../harddrake/ui.pm_.c:65
+#: ../../harddrake/ui.pm_.c:71 ../../standalone/logdrake_.c:110
msgid "/_Help"
-msgstr "Ajutor"
+msgstr "/_Ajutor"
-#: ../../harddrake/ui.pm_.c:62
-#, fuzzy
+#: ../../harddrake/ui.pm_.c:65
msgid "/_Help..."
-msgstr "Ajutor"
+msgstr "/_Ajutor..."
-#: ../../harddrake/ui.pm_.c:63
+#: ../../harddrake/ui.pm_.c:66
msgid "Harddrake help"
-msgstr ""
+msgstr "Ajutor HardDrake"
-#: ../../harddrake/ui.pm_.c:64
+#: ../../harddrake/ui.pm_.c:67
msgid ""
"Description of the fields:\n"
"\n"
msgstr ""
+"Descrierea câmpurilor:\n"
+"\n"
-#: ../../harddrake/ui.pm_.c:68
+#: ../../harddrake/ui.pm_.c:71
msgid "/_About..."
-msgstr ""
+msgstr "/Despre..."
-#: ../../harddrake/ui.pm_.c:69
+#: ../../harddrake/ui.pm_.c:72
msgid "About Harddrake"
-msgstr ""
+msgstr "Despre HardDrake"
-#: ../../harddrake/ui.pm_.c:70
+#: ../../harddrake/ui.pm_.c:73
msgid ""
"This is HardDrake, a Mandrake hardware configuration tool.\n"
"Version:"
msgstr ""
-#: ../../harddrake/ui.pm_.c:71
-#, fuzzy
+#: ../../harddrake/ui.pm_.c:74
msgid "Author:"
-msgstr "Autoprobează"
+msgstr "Autor: "
-#: ../../harddrake/ui.pm_.c:83
-#, fuzzy
+#: ../../harddrake/ui.pm_.c:86
msgid "Harddrake2 version "
-msgstr "Detecția discului dur"
+msgstr "HardDrake 2 versiunea "
-#: ../../harddrake/ui.pm_.c:91
-#, fuzzy
+#: ../../harddrake/ui.pm_.c:103
msgid "Detected hardware"
-msgstr "Vezi info hardware"
+msgstr "Echipamente detectate"
-#: ../../harddrake/ui.pm_.c:92
-#, fuzzy
-msgid "Configure module"
-msgstr "Configurație mouse"
+#: ../../harddrake/ui.pm_.c:105
+msgid "Information"
+msgstr "Informații"
-#: ../../harddrake/ui.pm_.c:92
-#, fuzzy
-msgid "Informations"
-msgstr "Afișează informațiile"
+#: ../../harddrake/ui.pm_.c:108
+msgid "Configure module"
+msgstr "Configurează module"
-#: ../../harddrake/ui.pm_.c:92
+#: ../../harddrake/ui.pm_.c:109
msgid "Run config tool"
msgstr ""
-#: ../../harddrake/ui.pm_.c:96
-#, fuzzy
+#: ../../harddrake/ui.pm_.c:113
msgid "Detection in progress"
-msgstr "Duplicați pounctul de montaj %s"
+msgstr "Detecția este în progres..."
-#: ../../harddrake/ui.pm_.c:96 ../../interactive.pm_.c:388
+#: ../../harddrake/ui.pm_.c:113 ../../interactive.pm_.c:391
msgid "Please wait"
-msgstr "Puțintică răbdare"
+msgstr "Vă rog să așteptați"
-#: ../../harddrake/ui.pm_.c:139
+#: ../../harddrake/ui.pm_.c:156
msgid "primary"
-msgstr ""
+msgstr "principal"
-#: ../../harddrake/ui.pm_.c:139
-#, fuzzy
+#: ../../harddrake/ui.pm_.c:156
msgid "secondary"
-msgstr "Testul se va termina în %d secunde"
+msgstr "secundar"
-#: ../../harddrake/ui.pm_.c:176
+#: ../../harddrake/ui.pm_.c:197
msgid "You can configure each parameter of the module here."
msgstr ""
-#: ../../harddrake/ui.pm_.c:192
-#, fuzzy, c-format
+#: ../../harddrake/ui.pm_.c:213
+#, c-format
msgid "Running \"%s\" ..."
-msgstr "Opțiuni pentru imprimanta lpd distantă"
+msgstr "Rulează \"%s\" ..."
#: ../../harddrake/v4l.pm_.c:15 ../../harddrake/v4l.pm_.c:65
-#, fuzzy
msgid "Auto-detect"
-msgstr "Opțiuni pentru imprimanta lpd distantă"
+msgstr "Auto-detecție"
#: ../../harddrake/v4l.pm_.c:66 ../../harddrake/v4l.pm_.c:186
-#, fuzzy
msgid "Unknown|Generic"
-msgstr "Generic"
+msgstr "Necunoscut|Generic"
#: ../../harddrake/v4l.pm_.c:98
msgid "Unknown|CPH05X (bt878) [many vendors]"
@@ -2724,56 +2714,54 @@ msgid ""
msgstr ""
#: ../../harddrake/v4l.pm_.c:213
-msgid "Card model :"
+msgid "Card model:"
msgstr ""
#: ../../harddrake/v4l.pm_.c:214
-#, fuzzy
-msgid "Tuner type :"
-msgstr "Schimbă tipul partiției"
+msgid "Tuner type:"
+msgstr "Tip tuner: "
#: ../../harddrake/v4l.pm_.c:215
-msgid "Number of capture buffers :"
-msgstr ""
+msgid "Number of capture buffers:"
+msgstr "Număr buffere de captură:"
#: ../../harddrake/v4l.pm_.c:215
msgid "number of capture buffers for mmap'ed capture"
-msgstr ""
+msgstr "Număr buffere de captură pt. captura mmap"
#: ../../harddrake/v4l.pm_.c:217
-#, fuzzy
-msgid "PLL setting :"
-msgstr "Formatare"
+msgid "PLL setting:"
+msgstr "Configurare PLL :"
#: ../../harddrake/v4l.pm_.c:218
-msgid "Radio support :"
-msgstr ""
+msgid "Radio support:"
+msgstr "Sprijin radio:"
#: ../../harddrake/v4l.pm_.c:218
msgid "enable radio support"
-msgstr ""
+msgstr "activare sprijin radio"
#: ../../help.pm_.c:13
msgid ""
"GNU/Linux is a multiuser system, and this means that each user can have his\n"
"own preferences, his own files and so on. You can read the ``User Guide''\n"
"to learn more. But unlike \"root\", which is the administrator, the users\n"
-"you will add here will not be entitled to change anything except their own\n"
-"files and their own configuration. You will have to create at least one\n"
-"regular user for yourself. That account is where you should log in for\n"
-"routine use. Although it is very practical to log in as \"root\" everyday,\n"
-"it may also be very dangerous! The slightest mistake could mean that your\n"
-"system would not work any more. If you make a serious mistake as a regular\n"
-"user, you may only lose some information, but not the entire system.\n"
+"you add here will not be entitled to change anything except their own files\n"
+"and their own configuration. You will have to create at least one regular\n"
+"user for yourself. That account is where you should log in for routine use.\n"
+"Although it is very practical to log in as \"root\" everyday, it may also\n"
+"be very dangerous! The slightest mistake could mean that your system would\n"
+"not work any more. If you make a serious mistake as a regular user, you may\n"
+"only lose some information, but not the entire system.\n"
"\n"
"First, you have to enter your real name. This is not mandatory, of course -\n"
"as you can actually enter whatever you want. DrakX will then take the first\n"
"word you have entered in the box and will bring it over to the \"User\n"
"name\". This is the name this particular user will use to log onto the\n"
"system. You can change it. You then have to enter a password here. A\n"
-"non-privileged (regular) user's password is not as crucial as \"root\"' one\n"
-"from a security point of view, but that is no reason to neglect it: after\n"
-"all, your files are at risk.\n"
+"non-privileged (regular) user's password is not as crucial as the \"root\"'\n"
+"one from a security point of view, but that is no reason to neglect it:\n"
+"after all, your files are at risk.\n"
"\n"
"If you click on \"Accept user\", you can then add as many as you want. Add\n"
"a user for each one of your friends: your father or your sister, for\n"
@@ -2852,7 +2840,7 @@ msgid ""
"to have a graphical workstation!\n"
"\n"
"Moving the mouse cursor over a group name will display a short explanatory\n"
-"text about that group. If you deselect all groups when performing a regular\n"
+"text about that group. If you unselect all groups when performing a regular\n"
"installation (by opposition to an upgrade), a dialog will pop up proposing\n"
"different options for a minimal installation:\n"
"\n"
@@ -2878,10 +2866,10 @@ msgstr ""
#: ../../help.pm_.c:128
msgid ""
-"Finally, depending on whether or not you selected individual packages, you\n"
-"will be presented a tree containing all packages classified by groups and\n"
-"subgroups. While browsing the tree, you can select entire groups,\n"
-"subgroups, or individual packages.\n"
+"Finally, depending on whether or not you chose to be able to select\n"
+"individual packages, you will be presented a tree containing all packages\n"
+"classified by groups and subgroups. While browsing the tree, you can select\n"
+"entire groups, subgroups, or individual packages.\n"
"\n"
"Whenever you select a package on the tree, a description appears on the\n"
"right. When your selection is finished, click the \"Install\" button which\n"
@@ -2916,11 +2904,11 @@ msgstr ""
#: ../../help.pm_.c:164
msgid ""
-"You are now proposed to set up your Internet/network connection. If you\n"
-"wish to connect your computer to the Internet or to a local network, click\n"
-"\"OK\". The autodetection of network devices and modem will be launched. If\n"
-"this detection fails, uncheck the \"Use auto detection\" box next time. You\n"
-"may also choose not to configure the network, or do it later; in that case,\n"
+"You are now able to set up your Internet/network connection. If you wish to\n"
+"connect your computer to the Internet or to a local network, click \"OK\".\n"
+"The autodetection of network devices and modem will be launched. If this\n"
+"detection fails, uncheck the \"Use auto detection\" box next time. You may\n"
+"also choose not to configure the network, or do it later; in that case,\n"
"simply click the \"Cancel\" button.\n"
"\n"
"Available connections are: traditional modem, ISDN modem, ADSL connection,\n"
@@ -2939,7 +2927,6 @@ msgid ""
msgstr ""
#: ../../help.pm_.c:186
-#, fuzzy
msgid ""
"You may now choose which services you wish to start at boot time.\n"
"\n"
@@ -2957,15 +2944,12 @@ msgid ""
"enabled on a server. In general, select only the services you really need.\n"
"!!"
msgstr ""
-"Puteți alege acum serviciile ce doriți să inițializați la demararea\n"
-"calculatorului. Dacă plasați mouse-ul deasupra rubricii, un mic balon de\n"
-"ajutor va apare pentru a descrie rolul serviciului respectiv."
#: ../../help.pm_.c:203
msgid ""
"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
"local time according to the time zone you selected. It is however possible\n"
-"to deactivate this by deselecting \"Hardware clock set to GMT\" so that the\n"
+"to deactivate this by unselecting \"Hardware clock set to GMT\" so that the\n"
"hardware clock is the same as the system clock. This is useful when the\n"
"machine is hosting another operating system like Windows.\n"
"\n"
@@ -2996,24 +2980,12 @@ msgid ""
"If you can see the message during the test, and answer \"Yes\", then DrakX\n"
"will proceed to the next step. If you cannot see the message, it simply\n"
"means that the configuration was wrong and the test will automatically end\n"
-"after 10 seconds, restoring the screen."
-msgstr ""
-
-#: ../../help.pm_.c:237
-msgid ""
-"The first time you try the X configuration, you may not be very satisfied\n"
-"with its display (screen is too small, shifted left or right...). Hence,\n"
-"even if X starts up correctly, DrakX then asks you if the configuration\n"
-"suits you. It will also propose to change it by displaying a list of valid\n"
-"modes it could find, asking you to select one.\n"
-"\n"
-"As a last resort, if you still cannot get X to work, choose \"Change\n"
-"graphics card\", select \"Unlisted card\", and when prompted on which\n"
-"server, choose \"FBDev\". This is a failsafe option which works with any\n"
-"modern graphics card. Then choose \"Test again\" to be sure."
+"after 10 seconds, restoring the screen. Refer then to the Video\n"
+"configuration section of the user guide for more information on how to\n"
+"configure your display."
msgstr ""
-#: ../../help.pm_.c:249
+#: ../../help.pm_.c:239
msgid ""
"Finally, you will be asked whether you want to see the graphical interface\n"
"at boot. Note this question will be asked even if you chose not to test the\n"
@@ -3022,7 +2994,7 @@ msgid ""
"configured."
msgstr ""
-#: ../../help.pm_.c:256
+#: ../../help.pm_.c:246
msgid ""
"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
@@ -3042,13 +3014,13 @@ msgid ""
"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
"password, or any other reason.\n"
"\n"
-"When you click on this step, you will be asked to enter a disk inside the\n"
-"drive. The floppy disk you will insert must be empty or contain data which\n"
-"you do not need. You will not have to format it since DrakX will rewrite\n"
-"the whole disk."
+"If you say \"Yes\", you will be asked to enter a disk inside the drive. The\n"
+"floppy disk you will insert must be empty or contain data which you do not\n"
+"need. You will not have to format it since DrakX will rewrite the whole\n"
+"disk."
msgstr ""
-#: ../../help.pm_.c:280
+#: ../../help.pm_.c:270
msgid ""
"At this point, you need to choose where you want to install the Mandrake\n"
"Linux operating system on your hard drive. If your hard drive is empty or\n"
@@ -3081,7 +3053,9 @@ msgid ""
"\n"
" * \"Use existing partition\": the wizard has detected one or more existing\n"
"Linux partitions on your hard drive. If you want to use them, choose this\n"
-"option;\n"
+"option. You will then be asked to choose the mount points associated to\n"
+"each of the partitions. The legacy mount points are selected by default,\n"
+"and you should generally keep them.\n"
"\n"
" * \"Use the free space on the Windows; partition\": if Microsoft Windows\n"
"is installed on your hard drive and takes all the space available on it,\n"
@@ -3114,10 +3088,12 @@ msgid ""
" * \"Expert mode\": choose this option if you want to manually partition\n"
"your hard drive. Be careful - it is a powerful but dangerous choice. You\n"
"can very easily lose all your data. Hence, do not choose this unless you\n"
-"know what you are doing."
+"know what you are doing. To know how do use the DiskDrake utility used\n"
+"here, refer to the section ``Managing Your Partitions'' of the ````User\n"
+"Guide''''"
msgstr ""
-#: ../../help.pm_.c:347
+#: ../../help.pm_.c:341
msgid ""
"There you are. Installation is now complete and your GNU/Linux system is\n"
"ready to use. Just click \"OK\" to reboot the system. You can start\n"
@@ -3150,7 +3126,7 @@ msgid ""
"\"mformat a:\")"
msgstr ""
-#: ../../help.pm_.c:378
+#: ../../help.pm_.c:372
msgid ""
"Any partitions that have been newly defined must be formatted for use\n"
"(formatting means creating a filesystem).\n"
@@ -3178,7 +3154,7 @@ msgid ""
"for bad blocks on the disk."
msgstr ""
-#: ../../help.pm_.c:404
+#: ../../help.pm_.c:398
msgid ""
"Your new Mandrake Linux operating system is currently being installed.\n"
"Depending on the number of packages you will be installing and the speed of\n"
@@ -3188,12 +3164,12 @@ msgid ""
"Please be patient."
msgstr ""
-#: ../../help.pm_.c:412
+#: ../../help.pm_.c:406
msgid ""
"At the time you are installing Mandrake Linux, it is likely that some\n"
"packages have been updated since the initial release. Some bugs may have\n"
"been fixed, and security issues solved. To allow you to benefit from these\n"
-"updates, you are now proposed to download them from the Internet. Choose\n"
+"updates, you are now able to download them from the Internet. Choose\n"
"\"Yes\" if you have a working Internet connection, or \"No\" if you prefer\n"
"to install updated packages later.\n"
"\n"
@@ -3203,7 +3179,7 @@ msgid ""
"install the selected package(s), or \"Cancel\" to abort."
msgstr ""
-#: ../../help.pm_.c:425
+#: ../../help.pm_.c:419
msgid ""
"Before continuing, you should read carefully the terms of the license. It\n"
"covers the whole Mandrake Linux distribution, and if you do not agree with\n"
@@ -3212,19 +3188,19 @@ msgid ""
"\"Accept\" button."
msgstr ""
-#: ../../help.pm_.c:432
+#: ../../help.pm_.c:426
msgid ""
"At this point, it is time to choose the security level desired for the\n"
"machine. As a rule of thumb, the more exposed the machine is, and the more\n"
"the data stored in it is crucial, the higher the security level should be.\n"
"However, a higher security level is generally obtained at the expense of\n"
-"easiness of use. Refer to the \"msec\" chapter of the ``Reference Manual''\n"
-"to get more information about the meaning of these levels.\n"
+"ease of use. Refer to the \"msec\" chapter of the ``Reference Manual'' to\n"
+"get more information about the meaning of these levels.\n"
"\n"
"If you do not know what to choose, keep the default option."
msgstr ""
-#: ../../help.pm_.c:442
+#: ../../help.pm_.c:436
msgid ""
"At this point, you need to choose which partition(s) will be used for the\n"
"installation of your Mandrake Linux system. If partitions have already been\n"
@@ -3241,26 +3217,26 @@ msgid ""
" * \"Clear all\": this option deletes all partitions on the selected hard\n"
"drive;\n"
"\n"
-" * \"Auto allocate\": this option enables to automatically create \"Ext2\"\n"
-"and swap partitions in free space of your hard drive;\n"
+" * \"Auto allocate\": this option enables to automatically create ext3 and\n"
+"swap partitions in free space of your hard drive;\n"
"\n"
-" * \"More\": gives access to additional features:\n"
+"\"More\": gives access to additional features:\n"
"\n"
-" * \"Save partition table\": saves the partition table to a floppy.\n"
-"Useful for later partition-table recovery if necessary. It is strongly\n"
-"recommended to perform this step;\n"
+" * \"Save partition table\": saves the partition table to a floppy. Useful\n"
+"for later partition-table recovery if necessary. It is strongly recommended\n"
+"to perform this step;\n"
"\n"
-" * \"Restore partition table\": allows to restore a previously saved\n"
+" * \"Restore partition table\": allows to restore a previously saved\n"
"partition table from floppy disk;\n"
"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you\n"
-"can try to recover it using this option. Please be careful and remember\n"
-"that it can fail;\n"
+" * \"Rescue partition table\": if your partition table is damaged, you can\n"
+"try to recover it using this option. Please be careful and remember that it\n"
+"can fail;\n"
"\n"
-" * \"Reload partition table\": discards all changes and loads your\n"
-"initial partition table;\n"
+" * \"Reload partition table\": discards all changes and loads your initial\n"
+"partition table;\n"
"\n"
-" * \"Removable media automounting\": unchecking this option will force\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
"users to manually mount and unmount removable medias such as floppies and\n"
"CD-ROMs.\n"
"\n"
@@ -3288,7 +3264,7 @@ msgid ""
" * Ctrl-m to set the mount point.\n"
"\n"
"To get information about the different filesystem types available, please\n"
-"read the ext2fs chapter from the ``Reference Manual''.\n"
+"read the ext2FS chapter from the ``Reference Manual''.\n"
"\n"
"If you are installing on a PPC machine, you will want to create a small HFS\n"
"``bootstrap'' partition of at least 1MB, which will be used by the yaboot\n"
@@ -3297,7 +3273,7 @@ msgid ""
"emergency boot situations."
msgstr ""
-#: ../../help.pm_.c:513
+#: ../../help.pm_.c:507
msgid ""
"More than one Microsoft partition has been detected on your hard drive.\n"
"Please choose the one you want to resize in order to install your new\n"
@@ -3330,34 +3306,34 @@ msgid ""
"disk or partition is called \"C:\")."
msgstr ""
-#: ../../help.pm_.c:544
+#: ../../help.pm_.c:538
msgid "Please be patient. This operation can take several minutes."
-msgstr ""
+msgstr "Vă rog așteptați. Această operație poate dura mai multe minute."
-#: ../../help.pm_.c:547
+#: ../../help.pm_.c:541
msgid ""
"DrakX now needs to know if you want to perform a default (\"Recommended\")\n"
"installation or if you want to have greater control (\"Expert\"). You can\n"
"also choose to do a new install or an upgrade of an existing Mandrake Linux\n"
"system:\n"
"\n"
-" * \"Install\": completely wipes out the old system. In fact, depending on\n"
-"what currently holds your machine, you will be able to keep some old (Linux\n"
-"or other) partitions unchanged;\n"
+" * \"Install\": completely wipes out the old system, however, depending on\n"
+"what is currently installed on your machine, you may be able to keep some\n"
+"old partitions (Linux or otherwise) unchanged;\n"
"\n"
" * \"Upgrade\": this installation class allows to simply update the\n"
"packages currently installed on your Mandrake Linux system. It keeps the\n"
"current partitions of your hard drives as well as user configurations. All\n"
-"other configuration steps remain available with respect to plain\n"
+"other configuration steps remain available, similar to a normal\n"
"installation;\n"
"\n"
-" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
-"existing Mandrake Linux system while keeping all system configurations\n"
-"unchanged. Adding new packages to the current installation is also\n"
-"possible.\n"
+" * \"Upgrade Packages Only\": this new installation class allows you to\n"
+"upgrade an existing Mandrake Linux system while keeping all system\n"
+"configurations unchanged. Adding new packages to the current installation\n"
+"is also possible.\n"
"\n"
-"Upgrades should work fine for Mandrake Linux systems starting from \"8.1\"\n"
-"release.\n"
+"Upgrades should work fine on Mandrake Linux systems containing version\n"
+"\"8.1\" or later.\n"
"\n"
"Depending on your knowledge of GNU/Linux, select one of the following\n"
"choices:\n"
@@ -3366,30 +3342,35 @@ msgid ""
"operating system. The installation will be very easy and you will only be\n"
"asked a few questions;\n"
"\n"
-" * Expert: if you have a good knowledge of GNU/Linux, you can choose this\n"
-"installation class. The expert installation will allow you to perform a\n"
-"highly-customized installation. Answering some of the questions can be\n"
-"difficult if you do not have a good knowledge of GNU/Linux, so do not\n"
-"choose this unless you know what you are doing."
+" * Expert: if you have a good understanding of GNU/Linux, you may wish to\n"
+"perform a highly customized installation. Some of the decisions you will\n"
+"have to make may be difficult if you do not have good knowledge of\n"
+"GNU/Linux, so it is not recommended that those without a fair amount of\n"
+"experience select this installation class."
msgstr ""
-#: ../../help.pm_.c:584
+#: ../../help.pm_.c:578
msgid ""
"Normally, DrakX selects the right keyboard for you (depending on the\n"
-"language you have chosen) and you won't even see this step. However, you\n"
-"might not have a keyboard that corresponds exactly to your language: for\n"
-"example, if you are an English speaking Swiss person, you may still want\n"
-"your keyboard to be a Swiss keyboard. Or if you speak English but are\n"
-"located in Quebec, you may find yourself in the same situation. In both\n"
-"cases, you will have to go back to this installation step and select an\n"
-"appropriate keyboard from the list.\n"
+"language you have chosen). However, you might not have a keyboard that\n"
+"corresponds exactly to your language: for example, if you are an English\n"
+"speaking Swiss person, you may still want your keyboard to be a Swiss\n"
+"keyboard. Or if you speak English but are located in Quebec, you may find\n"
+"yourself in the same situation. In both cases, you will have to go back to\n"
+"this installation step and select an appropriate keyboard from the list.\n"
"\n"
"Click on the \"More\" button to be presented with the complete list of\n"
-"supported keyboards."
+"supported keyboards.\n"
+"\n"
+"If you choose a keyboard layout based on a non-latin alphabet, you will be\n"
+"asked on next dialog to choose the key binding that will switch the\n"
+"keyboard layout between the latin and non latin layouts."
msgstr ""
-#: ../../help.pm_.c:597
+#: ../../help.pm_.c:594
msgid ""
+"The first step is to choose your preferred language.\n"
+"\n"
"Please choose your preferred language for installation and system usage.\n"
"\n"
"Clicking on the \"Advanced\" button will allow you to select other\n"
@@ -3403,7 +3384,7 @@ msgid ""
"additional locales, click the \"OK\" button to continue."
msgstr ""
-#: ../../help.pm_.c:610
+#: ../../help.pm_.c:609
msgid ""
"DrakX generally detects the number of buttons your mouse has. If not, it\n"
"assumes you have a two-button mouse and will set it up for third-button\n"
@@ -3416,19 +3397,25 @@ msgid ""
"If you choose a mouse other than the default, a test screen will be\n"
"displayed. Use the buttons and wheel to verify that the settings are\n"
"correct. If the mouse is not working well, press the space bar or [Return]\n"
-"to \"Cancel\" and choose again."
+"to \"Cancel\" and choose again.\n"
+"\n"
+"Wheel mouses are sometimes not automatically detected. You will need to\n"
+"manually select it in the list. Be sure to select the one corresponding to\n"
+"the correct port it is attached to. After you have pressed the \"OK\"\n"
+"button, a mouse image is displayed. You then need to move the wheel of your\n"
+"mouse to activate it correctly. Then test all buttons and movements are\n"
+"correct."
msgstr ""
-#: ../../help.pm_.c:624
-#, fuzzy
+#: ../../help.pm_.c:630
msgid ""
"Please select the correct port. For example, the \"COM1\" port under\n"
"Windows is named \"ttyS0\" under GNU/Linux."
msgstr ""
-"Vă rog selectați portul corect. De exemplu, portul COM1 din Windows e\n"
-"numit ttyS0 în Linux."
+"Vă rog selectați portul corect. De exemplu, portul \"COM1\" din Windows e\n"
+"numit \"ttyS0\" în GNU/Linux."
-#: ../../help.pm_.c:628
+#: ../../help.pm_.c:634
msgid ""
"This is the most crucial decision point for the security of your GNU/Linux\n"
"system: you have to enter the \"root\" password. \"root\" is the system\n"
@@ -3458,15 +3445,15 @@ msgid ""
"In Expert mode, you will be asked if you will be connecting to an\n"
"authentication server, like NIS or LDAP.\n"
"\n"
-"If your network uses the LDAP (or NIS) protocol for authentication, select\n"
-"\"LDAP\" (or \"NIS\") as authentication. If you do not know, ask your\n"
-"network administrator.\n"
+"If your network uses either of the LDAP, NIS, or PDC Windows Domain\n"
+"authentication services, select the appropriate one as \"authentication\".\n"
+"If you do not know, ask your network administrator.\n"
"\n"
"If your computer is not connected to any administrated network, you will\n"
"want to choose \"Local files\" for authentication."
msgstr ""
-#: ../../help.pm_.c:664
+#: ../../help.pm_.c:670
msgid ""
"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
@@ -3505,8 +3492,11 @@ msgid ""
"options. !!\n"
"\n"
"Clicking the \"Advanced\" button in this dialog will offer many advanced\n"
-"options, which are reserved to the expert user.\n"
-"\n"
+"options, which are reserved for the expert user."
+msgstr ""
+
+#: ../../help.pm_.c:710
+msgid ""
"After you have configured the general bootloader parameters, the list of\n"
"boot options which will be available at boot time will be displayed.\n"
"\n"
@@ -3514,36 +3504,25 @@ msgid ""
"automatically be added to the boot menu. Here, you can choose to fine-tune\n"
"the existing options. Select an entry and click \"Modify\" to modify or\n"
"remove it; \"Add\" creates a new entry; and \"Done\" goes on to the next\n"
-"installation step."
-msgstr ""
-
-#: ../../help.pm_.c:713
-#, fuzzy
-msgid ""
-"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
-"either GNU/Linux or any other operating system present on your computer.\n"
-"Normally, these other operating systems are correctly detected and\n"
-"installed. If this is not the case, you can add an entry by hand in this\n"
-"screen. Be careful to choose the correct parameters.\n"
+"installation step.\n"
"\n"
"You may also not want to give access to these other operating systems to\n"
"anyone. In which case, you can delete the corresponding entries. But then,\n"
"you will need a boot disk in order to boot those other operating systems!"
msgstr ""
-"LILO (de la LInux LOader) și Grub sunt gestionare de demaraj. Amîndoi sunt\n"
-"capabili să demareze Linux sau un alt sistem prezent în calculator.\n"
+"LILO (de la LInux LOader) și Grub sunt gestionare de pornire. Amândouă sunt\n"
+"capabile să demareze Linux sau un alt sistem prezent în calculator.\n"
"În mod normal, aceste alte sisteme de operare sunt detectate și instalate\n"
-"corect. Dacă cumva nu e cazul, puteți adăuga o intrare manual în acest\n"
+"corect. Dacă cumva nu e cazul, puteți adăuga manual o intrare în acest\n"
"ecran. Aveți grijă să alegeți parametrii cei buni.\n"
"\n"
"\n"
"Puteți de asemenea să interziceți accesul acestor alte sisteme a altor \n"
"utilizatori, caz în care ar trebui să ștergeți intrările acestor sisteme.\n"
-"În acest ultim caz însă, veți avea nevoie de un floppy de demaraj pentru\n"
+"În acest ultim caz însă, veți avea nevoie de un floppy de demarare pentru\n"
"a putea le demara!"
#: ../../help.pm_.c:724
-#, fuzzy
msgid ""
"You must indicate where you wish to place the information required to boot\n"
"to GNU/Linux.\n"
@@ -3551,12 +3530,11 @@ msgid ""
"Unless you know exactly what you are doing, choose \"First sector of drive\n"
"(MBR)\"."
msgstr ""
-"Va trebui să indicați unde să puneți informația necesară pentru a porni "
+"Va trebui să indicați unde să puneți informația necesară pentru a porni GNU/"
"Linux.\n"
"\n"
-"\n"
-"În general alegeți \"Primul sector al discului\". Alegeți altceva doar dacă "
-"știți ce faceți."
+"În general alegeți \"Primul sector al discului (MBR)\". Alegeți altceva doar "
+"dacă știți ce faceți."
#: ../../help.pm_.c:731
msgid ""
@@ -3590,18 +3568,18 @@ msgstr ""
#: ../../help.pm_.c:759
msgid ""
-"DrakX now detects any IDE device present in your computer. It will also\n"
-"scan for one or more PCI SCSI card(s) on your system. If a SCSI card is\n"
+"DrakX now detects any IDE devices present in your computer. It will also\n"
+"scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
"found, DrakX will automatically install the appropriate driver.\n"
"\n"
"Because hardware detection does not always detect a piece of hardware,\n"
"DrakX will ask you to confirm if a PCI SCSI card is present. Click \"Yes\"\n"
"if you know that there is a SCSI card installed in your machine. You will\n"
-"be presented a list of SCSI cards to choose from. Click \"No\" if you have\n"
-"no SCSI hardware. If you are unsure, you can check the list of hardware\n"
-"detected in your machine by selecting \"See hardware info\" and clicking\n"
-"\"OK\". Examine the list of hardware and then click on the \"OK\" button to\n"
-"return to the SCSI interface question.\n"
+"be presented with a list of SCSI cards to choose from. Click \"No\" if you\n"
+"have no SCSI hardware. If you are unsure, you can check the list of\n"
+"hardware detected in your machine by selecting \"See hardware info\" and\n"
+"clicking \"OK\". Examine the list of hardware and then click on the \"OK\"\n"
+"button to return to the SCSI interface question.\n"
"\n"
"If you have to manually specify your adapter, DrakX will ask if you want to\n"
"specify options for it. You should allow DrakX to probe the hardware for\n"
@@ -3718,7 +3696,9 @@ msgid ""
"order to configure the clock according to the time zone you are in;\n"
"\n"
" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
-"configuration wizard;\n"
+"configuration wizard. Consult the corresponding chapter of the ``User\n"
+"Guide'' for more information on how to setup a new printer. The interface\n"
+"presented there is similar to the one used during installation;\n"
"\n"
" * \"Sound card\": if a sound card is detected on your system, it is\n"
"displayed here. No modification possible at installation time;\n"
@@ -3731,14 +3711,14 @@ msgid ""
"associated with it."
msgstr ""
-#: ../../help.pm_.c:894
+#: ../../help.pm_.c:896
msgid ""
"Choose the hard drive you want to erase in order to install your new\n"
"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
"and will not be recoverable!"
msgstr ""
-#: ../../help.pm_.c:899
+#: ../../help.pm_.c:901
msgid ""
"Click on \"OK\" if you want to delete all data and partitions present on\n"
"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
@@ -3762,7 +3742,7 @@ msgstr ""
msgid "You must also format %s"
msgstr ""
-#: ../../install_any.pm_.c:418
+#: ../../install_any.pm_.c:423
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -3777,30 +3757,48 @@ msgid ""
"Do you really want to install these servers?\n"
msgstr ""
-#: ../../install_any.pm_.c:453
+#: ../../install_any.pm_.c:441
+#, c-format
+msgid ""
+"The following packages will be removed to allow upgrading your system: %s\n"
+"\n"
+"\n"
+"Do you really want to remove these packages?\n"
+msgstr ""
+
+#: ../../install_any.pm_.c:471
msgid "Can't use broadcast with no NIS domain"
msgstr "Nu pot să folosesc difuzia fără nici un domeniu NIS"
-#: ../../install_any.pm_.c:841
-#, fuzzy, c-format
+#: ../../install_any.pm_.c:862
+#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
-msgstr "Introduceți o dischetă în perifericul %s"
+msgstr "Introduceți o dischetă formatată FAT în unitatea %s"
-#: ../../install_any.pm_.c:845
+#: ../../install_any.pm_.c:866
msgid "This floppy is not FAT formatted"
-msgstr ""
+msgstr "Acest floppy nu este formatat FAT"
-#: ../../install_any.pm_.c:857
+#: ../../install_any.pm_.c:878
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
msgstr ""
-#: ../../install_any.pm_.c:880 ../../partition_table.pm_.c:771
+#: ../../install_any.pm_.c:901 ../../partition_table.pm_.c:767
#, c-format
msgid "Error reading file %s"
msgstr "Eroare la citirea fișierului %s"
+#: ../../install_any.pm_.c:1023
+msgid ""
+"An error occurred - no valid devices were found on which to create new "
+"filesystems. Please check your hardware for the cause of this problem"
+msgstr ""
+"O eroare a apărut - nu am găsit nici un periferic pentru a instala noi "
+"fișiere\n"
+"sistem. Verificați harware-ul pentru a detecta cauza acestei probleme."
+
#: ../../install_interactive.pm_.c:23
#, c-format
msgid ""
@@ -3816,7 +3814,7 @@ msgid ""
msgstr ""
"Trebuie să aveți o partiție root.\n"
"Pentru aceasta, creați o partiție (sau faceți clic pe un existentă).\n"
-"Alegeți apoi acțiunea ``Punct de montaj'' și fixați-o la '/'"
+"Alegeți apoi acțiunea ``Punct de montare'' și fixați-o la '/'"
#: ../../install_interactive.pm_.c:63
msgid "You must have a swap partition"
@@ -3832,82 +3830,73 @@ msgstr ""
"\n"
"Să continui totuși?"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:168
-#, fuzzy
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:169
msgid "You must have a FAT partition mounted in /boot/efi"
-msgstr "Trebuie să aveți o partiție swap"
+msgstr "Trebuie să aveți o partiție FAT montată în /boot/efi"
-#: ../../install_interactive.pm_.c:91
-#, fuzzy
+#: ../../install_interactive.pm_.c:92
msgid "Use free space"
-msgstr "Folosește pentru loopback"
+msgstr "Folosește spațiul liber"
-#: ../../install_interactive.pm_.c:93
+#: ../../install_interactive.pm_.c:94
msgid "Not enough free space to allocate new partitions"
-msgstr ""
+msgstr "Spațiu pe disc insuficient pentru alocarea de noi partiții"
-#: ../../install_interactive.pm_.c:101
-#, fuzzy
+#: ../../install_interactive.pm_.c:102
msgid "Use existing partitions"
-msgstr "Formatarea partițiilor"
+msgstr "Folosește partiționarea existentă"
-#: ../../install_interactive.pm_.c:103
-#, fuzzy
+#: ../../install_interactive.pm_.c:104
msgid "There is no existing partition to use"
-msgstr "Încercare de salvare a tabloului de partiții"
+msgstr "Nu există partiții utilizabile"
-#: ../../install_interactive.pm_.c:110
-#, fuzzy
+#: ../../install_interactive.pm_.c:111
msgid "Use the Windows partition for loopback"
-msgstr "Folosește pentru loopback"
+msgstr "Folosește partiția Windows pentru loopback"
-#: ../../install_interactive.pm_.c:113
-#, fuzzy
+#: ../../install_interactive.pm_.c:114
msgid "Which partition do you want to use for Linux4Win?"
-msgstr "Ce partițe doriți să folosiiț pentru a instala Linux4Win?"
+msgstr "Ce partiție doriți să folosiți pentru a instala Linux4Win?"
-#: ../../install_interactive.pm_.c:115
+#: ../../install_interactive.pm_.c:116
msgid "Choose the sizes"
msgstr "Alegeți mărimile"
-#: ../../install_interactive.pm_.c:116
+#: ../../install_interactive.pm_.c:117
msgid "Root partition size in MB: "
msgstr "Mărimea partiției root în MB:"
-#: ../../install_interactive.pm_.c:117
+#: ../../install_interactive.pm_.c:118
msgid "Swap partition size in MB: "
-msgstr "Mărimea partiției swap în MB:: "
+msgstr "Mărimea partiției swap în MB: "
-#: ../../install_interactive.pm_.c:126
+#: ../../install_interactive.pm_.c:128
msgid "Use the free space on the Windows partition"
msgstr ""
-#: ../../install_interactive.pm_.c:129
-#, fuzzy
+#: ../../install_interactive.pm_.c:131
msgid "Which partition do you want to resize?"
-msgstr "Ce tip de partiție doriți?"
+msgstr "Care partiție doriți să o redimensionați?"
-#: ../../install_interactive.pm_.c:131
-#, fuzzy
+#: ../../install_interactive.pm_.c:133
msgid "Resizing Windows partition"
-msgstr "Calculează salturile de fișiere FAT"
+msgstr "Redimensionez partiția Windows"
-#: ../../install_interactive.pm_.c:134
+#: ../../install_interactive.pm_.c:136
#, c-format
msgid ""
"The FAT resizer is unable to handle your partition, \n"
"the following error occured: %s"
msgstr ""
-#: ../../install_interactive.pm_.c:137
+#: ../../install_interactive.pm_.c:139
msgid ""
"Your Windows partition is too fragmented. Please reboot your computer under "
"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
"installation."
msgstr ""
-#: ../../install_interactive.pm_.c:138
-#, fuzzy
+#: ../../install_interactive.pm_.c:140
msgid ""
"WARNING!\n"
"\n"
@@ -3920,95 +3909,88 @@ msgid ""
msgstr ""
"AVERTISMENT!\n"
"\n"
-"DrakX va redimensiona acum partițiile Windows. Aveți grijă: această "
-"operație\n"
-"est periculoasă. Dacă nu ați făcut-o deja, ar trebui mai întîi să părăsiți\n"
-"instalarea și șa executați scandisk în Windows (și defrag opțional), apio\n"
+"DrakX va redimensiona acum partiția Windows. Aveți grijă: această operație\n"
+"este periculoasă. Dacă nu ați făcut-o deja, ar trebui mai întâi să părăsiți\n"
+"instalarea și să executați scandisk în Windows (și defrag opțional), apoi\n"
"reîncepeți instalarea. Ar trebui de asemenea să faceți o copie a datelor\n"
"dumneavoastră. Dacă sunteți sigur, apăsați Ok."
-#: ../../install_interactive.pm_.c:148
-#, fuzzy
+#: ../../install_interactive.pm_.c:150
msgid "Which size do you want to keep for Windows on"
-msgstr "La ce sector doriți sa schimbați ?"
+msgstr "Cât spațiu doriți să păstrați alocat pentru Windows pe"
-#: ../../install_interactive.pm_.c:149
-#, fuzzy, c-format
+#: ../../install_interactive.pm_.c:151
+#, c-format
msgid "partition %s"
-msgstr "Partiție"
+msgstr "partiția %s"
-#: ../../install_interactive.pm_.c:156
-#, fuzzy, c-format
+#: ../../install_interactive.pm_.c:158
+#, c-format
msgid "FAT resizing failed: %s"
-msgstr "Redimensionarea automată a eșuat"
+msgstr "Redimensionarea FAT a eșuat: %s"
-#: ../../install_interactive.pm_.c:171
+#: ../../install_interactive.pm_.c:173
msgid ""
"There is no FAT partition to resize or to use as loopback (or not enough "
"space left)"
msgstr ""
-#: ../../install_interactive.pm_.c:177
+#: ../../install_interactive.pm_.c:179
msgid "Erase entire disk"
-msgstr ""
+msgstr "Șterge tot discul"
-#: ../../install_interactive.pm_.c:177
+#: ../../install_interactive.pm_.c:179
msgid "Remove Windows(TM)"
-msgstr ""
+msgstr "Șterge Windows(TM)"
-#: ../../install_interactive.pm_.c:180
+#: ../../install_interactive.pm_.c:182
msgid "You have more than one hard drive, which one do you install linux on?"
msgstr ""
-#: ../../install_interactive.pm_.c:183
-#, fuzzy, c-format
+#: ../../install_interactive.pm_.c:185
+#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
-msgstr ""
-"După redimensionarea partiției %s toate datele de pe aceasta partiție vor fi "
-"pierdute"
+msgstr "TOATE partițiile existente și datele lor se vor pierde pe unitatea %s"
-#: ../../install_interactive.pm_.c:191
-#, fuzzy
+#: ../../install_interactive.pm_.c:193
msgid "Custom disk partitioning"
-msgstr "Formatarea partițiilor"
+msgstr "Partiționare disc personalizată"
-#: ../../install_interactive.pm_.c:195
+#: ../../install_interactive.pm_.c:197
msgid "Use fdisk"
-msgstr ""
+msgstr "Folosește fdisk"
-#: ../../install_interactive.pm_.c:198
-#, fuzzy, c-format
+#: ../../install_interactive.pm_.c:200
+#, c-format
msgid ""
"You can now partition %s.\n"
"When you are done, don't forget to save using `w'"
msgstr ""
-"Puteți partiționa acum discul %s dumneavoastră dur\n"
+"Puteți partiționa acum discul %s \n"
"Cînd ați terminat, nu uitați să înregistrați folosind `w'"
-#: ../../install_interactive.pm_.c:227
-#, fuzzy
+#: ../../install_interactive.pm_.c:229
msgid "You don't have enough free space on your Windows partition"
-msgstr "Nu aveți nici o partiție Windows"
+msgstr "Nu aveți spațiu suficient pe nici o partiție Windows"
-#: ../../install_interactive.pm_.c:243
-#, fuzzy
+#: ../../install_interactive.pm_.c:245
msgid "I can't find any room for installing"
-msgstr "Imposibil de adăugat o alta partiție"
+msgstr "Nu am spațiu suficient pentru instalare"
-#: ../../install_interactive.pm_.c:246
+#: ../../install_interactive.pm_.c:248
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr ""
-#: ../../install_interactive.pm_.c:250
-#, fuzzy, c-format
+#: ../../install_interactive.pm_.c:252
+#, c-format
msgid "Partitioning failed: %s"
-msgstr "Tipul tabloul de partiții : %s\n"
+msgstr "Partiționarea a eșuat: %s"
-#: ../../install_interactive.pm_.c:260
+#: ../../install_interactive.pm_.c:262
msgid "Bringing up the network"
-msgstr "Configurație rețea"
+msgstr "Pornire rețea"
-#: ../../install_interactive.pm_.c:265
+#: ../../install_interactive.pm_.c:267
msgid "Bringing down the network"
msgstr "Oprire rețea"
@@ -4020,12 +4002,12 @@ msgstr ""
"A apărut o eroare pe care nu știu să o interpretez în mod corect.\n"
"Continuați pe riscul dumneavoastră."
-#: ../../install_steps.pm_.c:210
+#: ../../install_steps.pm_.c:211
#, c-format
msgid "Duplicate mount point %s"
-msgstr "Duplicați pounctul de montaj %s"
+msgstr "Punct de montare duplicat %s"
-#: ../../install_steps.pm_.c:379
+#: ../../install_steps.pm_.c:380
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -4038,14 +4020,14 @@ msgstr ""
"Mandrake/RPMS/*.rpm\" pentru a verifica cdrom-ul pe un\n"
"sistem instalat.\n"
-#: ../../install_steps.pm_.c:451
+#: ../../install_steps.pm_.c:452
#, c-format
msgid "Welcome to %s"
msgstr "Bine ați venit la %s"
-#: ../../install_steps.pm_.c:530 ../../install_steps.pm_.c:770
+#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:772
msgid "No floppy drive available"
-msgstr "Nici dischetă disponibilă"
+msgstr "Nici o unitate de dischetă nu este disponibilă"
#: ../../install_steps_auto_install.pm_.c:76
#: ../../install_steps_stdio.pm_.c:22
@@ -4063,78 +4045,75 @@ msgstr ""
#: ../../install_steps_gtk.pm_.c:161 ../../install_steps_interactive.pm_.c:231
msgid "Install Class"
-msgstr "Tip de instalare"
+msgstr "Clasa de instalare"
#: ../../install_steps_gtk.pm_.c:164
-#, fuzzy
msgid "Please choose one of the following classes of installation:"
-msgstr "Vă rog alegeți unul din următoarele tipuri de instalare"
+msgstr "Vă rog să alegeți una din următoarele clase de instalare:"
-#: ../../install_steps_gtk.pm_.c:243 ../../install_steps_interactive.pm_.c:694
+#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:678
msgid "Package Group Selection"
msgstr "Selectarea grupurilor de pachete"
-#: ../../install_steps_gtk.pm_.c:276 ../../install_steps_interactive.pm_.c:709
+#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:693
msgid "Individual package selection"
msgstr "Selectare individuală a pachetelor"
-#: ../../install_steps_gtk.pm_.c:299 ../../install_steps_interactive.pm_.c:633
+#: ../../install_steps_gtk.pm_.c:293 ../../install_steps_interactive.pm_.c:617
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Mărime totală: %d / %d MB "
-#: ../../install_steps_gtk.pm_.c:341
+#: ../../install_steps_gtk.pm_.c:335
msgid "Bad package"
msgstr "Pachet defectuos"
-#: ../../install_steps_gtk.pm_.c:342
+#: ../../install_steps_gtk.pm_.c:336
#, c-format
msgid "Name: %s\n"
msgstr "Nume: %s\n"
-#: ../../install_steps_gtk.pm_.c:343
+#: ../../install_steps_gtk.pm_.c:337
#, c-format
msgid "Version: %s\n"
msgstr "Versiune: %s\n"
-#: ../../install_steps_gtk.pm_.c:344
+#: ../../install_steps_gtk.pm_.c:338
#, c-format
msgid "Size: %d KB\n"
msgstr "Mărime: %d KB\n"
-#: ../../install_steps_gtk.pm_.c:345
+#: ../../install_steps_gtk.pm_.c:339
#, c-format
msgid "Importance: %s\n"
msgstr "Importanță: %s\n"
-#: ../../install_steps_gtk.pm_.c:367
+#: ../../install_steps_gtk.pm_.c:361
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr "Nu aveți destul spațiu pentru a instala acest pachet"
-#: ../../install_steps_gtk.pm_.c:372
-#, fuzzy
+#: ../../install_steps_gtk.pm_.c:366
msgid "The following packages are going to be installed"
-msgstr "Pachetele următoare urmează să fie dezinstalate"
+msgstr "Următoarele pachetele vor instalate"
-#: ../../install_steps_gtk.pm_.c:373
-#, fuzzy
+#: ../../install_steps_gtk.pm_.c:367
msgid "The following packages are going to be removed"
-msgstr "Următoare pachete vor fi instalate/șterse"
+msgstr "Următoarele pachete vor fi șterse"
-#: ../../install_steps_gtk.pm_.c:385
+#: ../../install_steps_gtk.pm_.c:379
msgid "You can't select/unselect this package"
msgstr "Nu puteți selecta/deselecta acest pachet"
-#: ../../install_steps_gtk.pm_.c:397
+#: ../../install_steps_gtk.pm_.c:391
msgid "This is a mandatory package, it can't be unselected"
msgstr "Acesta este un pachet indispensabil și nu poate fi deselectat"
-#: ../../install_steps_gtk.pm_.c:399
+#: ../../install_steps_gtk.pm_.c:393
msgid "You can't unselect this package. It is already installed"
-msgstr "Nu puteți deselecta aces pachet. E deja instalat"
+msgstr "Nu puteți deselecta acest pachet. E deja instalat"
-#: ../../install_steps_gtk.pm_.c:402
+#: ../../install_steps_gtk.pm_.c:396
msgid ""
"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
@@ -4142,80 +4121,74 @@ msgstr ""
"Acest pachet trebuie actualizat\n"
"Sunteți sigur că doriți să-l deselectați ?"
-#: ../../install_steps_gtk.pm_.c:405
+#: ../../install_steps_gtk.pm_.c:399
msgid "You can't unselect this package. It must be upgraded"
msgstr "Nu puteți deselecta acest pachet. Trebuie acualizat."
-#: ../../install_steps_gtk.pm_.c:410
+#: ../../install_steps_gtk.pm_.c:404
msgid "Show automatically selected packages"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:411 ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_gtk.pm_.c:405 ../../install_steps_interactive.pm_.c:255
#: ../../install_steps_interactive.pm_.c:259
-#: ../../standalone/drakbackup_.c:3600
+#: ../../standalone/drakbackup_.c:4257
msgid "Install"
msgstr "Instalare"
-#: ../../install_steps_gtk.pm_.c:414
-#, fuzzy
+#: ../../install_steps_gtk.pm_.c:408
msgid "Load/Save on floppy"
-msgstr "Înregistreaza pe dischetă"
+msgstr "Încarcă/Înregistrează (de) pe dischetă"
-#: ../../install_steps_gtk.pm_.c:415
-#, fuzzy
+#: ../../install_steps_gtk.pm_.c:409
msgid "Updating package selection"
-msgstr "Selectare individuală a pachetelor"
+msgstr "Actualizare pachete selectate"
-#: ../../install_steps_gtk.pm_.c:420
-#, fuzzy
+#: ../../install_steps_gtk.pm_.c:414
msgid "Minimal install"
-msgstr "Dezinstalare"
+msgstr "Instalare minimă"
-#: ../../install_steps_gtk.pm_.c:435 ../../install_steps_interactive.pm_.c:538
+#: ../../install_steps_gtk.pm_.c:429 ../../install_steps_interactive.pm_.c:522
msgid "Choose the packages you want to install"
msgstr "Alegeți pachetele pe care doriți să le instalați"
-#: ../../install_steps_gtk.pm_.c:451 ../../install_steps_interactive.pm_.c:778
+#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:762
msgid "Installing"
msgstr "În curs de instalare"
-#: ../../install_steps_gtk.pm_.c:457
+#: ../../install_steps_gtk.pm_.c:451
msgid "Estimating"
msgstr "Estimare"
-#: ../../install_steps_gtk.pm_.c:464
+#: ../../install_steps_gtk.pm_.c:458
msgid "Time remaining "
msgstr "Timp rămas "
-#: ../../install_steps_gtk.pm_.c:476
-#, fuzzy
+#: ../../install_steps_gtk.pm_.c:470
msgid "Please wait, preparing installation..."
-msgstr "Pregătesc instalarea"
+msgstr "Vă rog să așteptați, pregătesc instalarea..."
-#: ../../install_steps_gtk.pm_.c:560
+#: ../../install_steps_gtk.pm_.c:554
#, c-format
msgid "%d packages"
msgstr "%d pachete"
-#: ../../install_steps_gtk.pm_.c:565
+#: ../../install_steps_gtk.pm_.c:559
#, c-format
msgid "Installing package %s"
msgstr "Instalarea pachetului %s"
-#: ../../install_steps_gtk.pm_.c:602 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:802
+#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:786
#: ../../standalone/drakautoinst_.c:202
-#, fuzzy
msgid "Accept"
-msgstr "Acceptare utilizator"
+msgstr "Acceptă"
-#: ../../install_steps_gtk.pm_.c:602 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:802
-#, fuzzy
+#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:786
msgid "Refuse"
-msgstr "Redimensionează"
+msgstr "Refuză"
-#: ../../install_steps_gtk.pm_.c:603 ../../install_steps_interactive.pm_.c:803
+#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:787
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4226,21 +4199,21 @@ msgid ""
msgstr ""
"Schimbați Cd-Rom-ul!\n"
"\n"
-"Vă rog introduceți Cd-Rom etichetat \"%s\" și apoi apăsați Ok.\n"
-"Dacă nu-l aveți, apăsați Anulează pentru a evita instalarea de pe acest Cd-"
+"Vă rog introduceți Cd-Rom-ul etichetat \"%s\" și apoi apăsați Ok.\n"
+"Dacă nu-l aveți, apăsați Renunță pentru a evita instalarea de pe acest Cd-"
"Rom."
-#: ../../install_steps_gtk.pm_.c:617 ../../install_steps_gtk.pm_.c:621
-#: ../../install_steps_interactive.pm_.c:815
-#: ../../install_steps_interactive.pm_.c:819
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_gtk.pm_.c:615
+#: ../../install_steps_interactive.pm_.c:799
+#: ../../install_steps_interactive.pm_.c:803
msgid "Go on anyway?"
msgstr "Să continui totuși?"
-#: ../../install_steps_gtk.pm_.c:617 ../../install_steps_interactive.pm_.c:815
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:799
msgid "There was an error ordering packages:"
msgstr "O eroare a apărut la ordonarea pachetelor:"
-#: ../../install_steps_gtk.pm_.c:621 ../../install_steps_interactive.pm_.c:819
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:803
msgid "There was an error installing packages:"
msgstr "A fost o eroare la instalarea pachetelor:"
@@ -4281,13 +4254,12 @@ msgid "An error occurred"
msgstr "A apărut o eroare"
#: ../../install_steps_interactive.pm_.c:85
-#, fuzzy
msgid "Do you really want to leave the installation?"
-msgstr "Doriți să testați configurația ?"
+msgstr "Chiar doriți să abandonați instalarea?"
#: ../../install_steps_interactive.pm_.c:112
msgid "License agreement"
-msgstr ""
+msgstr "Termeni de licențiere"
#: ../../install_steps_interactive.pm_.c:113
msgid ""
@@ -4412,18 +4384,17 @@ msgstr ""
#: ../../install_steps_interactive.pm_.c:191
msgid "Are you sure you refuse the licence?"
-msgstr ""
+msgstr "Chiar doriți să refuzați licența?"
#: ../../install_steps_interactive.pm_.c:211
-#: ../../install_steps_interactive.pm_.c:1038
+#: ../../install_steps_interactive.pm_.c:1023
#: ../../standalone/keyboarddrake_.c:31
msgid "Keyboard"
msgstr "Tastatură"
#: ../../install_steps_interactive.pm_.c:212
-#, fuzzy
msgid "Please choose your keyboard layout."
-msgstr "Alegeți tastatura."
+msgstr "Vă rog să alegeți dispunerea tastaturii."
#: ../../install_steps_interactive.pm_.c:213
msgid "Here is the full list of keyboards available"
@@ -4431,15 +4402,13 @@ msgstr ""
#: ../../install_steps_interactive.pm_.c:231
msgid "Which installation class do you want?"
-msgstr "Ce tip de instalare doriți?"
+msgstr "Ce clasă de instalare doriți?"
#: ../../install_steps_interactive.pm_.c:235
-#, fuzzy
msgid "Install/Update"
msgstr "Instalare/Actualizare"
#: ../../install_steps_interactive.pm_.c:235
-#, fuzzy
msgid "Is this an install or an update?"
msgstr "Este vorba de o instalare sau de o actualizare ?"
@@ -4454,40 +4423,37 @@ msgstr "Expert"
#: ../../install_steps_interactive.pm_.c:255
#: ../../install_steps_interactive.pm_.c:259
-#, fuzzy
msgid "Upgrade"
msgstr "Actualizare"
#: ../../install_steps_interactive.pm_.c:255
#: ../../install_steps_interactive.pm_.c:259
-#, fuzzy
msgid "Upgrade packages only"
-msgstr "Selectare individuală a pachetelor"
+msgstr "Numai actualizare pachete"
#: ../../install_steps_interactive.pm_.c:275
-#, fuzzy
msgid "Please choose the type of your mouse."
-msgstr "Vă rog, alegeți tipul de mouse?"
+msgstr "Vă rog să alegeți tipul de mouse folosit."
-#: ../../install_steps_interactive.pm_.c:281 ../../standalone/mousedrake_.c:59
+#: ../../install_steps_interactive.pm_.c:281 ../../standalone/mousedrake_.c:60
msgid "Mouse Port"
msgstr "Port Mouse"
-#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:61
msgid "Please choose on which serial port your mouse is connected to."
msgstr "Pe ce port serie este conectat mouse-ul?"
#: ../../install_steps_interactive.pm_.c:290
msgid "Buttons emulation"
-msgstr ""
+msgstr "Emulare butoane"
#: ../../install_steps_interactive.pm_.c:292
msgid "Button 2 Emulation"
-msgstr ""
+msgstr "Emulare buton 2"
#: ../../install_steps_interactive.pm_.c:293
msgid "Button 3 Emulation"
-msgstr ""
+msgstr "Emulare buton 3"
#: ../../install_steps_interactive.pm_.c:314
msgid "Configuring PCMCIA cards..."
@@ -4505,197 +4471,167 @@ msgstr "Configurația IDE"
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:336
+#: ../../install_steps_interactive.pm_.c:338
msgid "No partition available"
msgstr "nici o partiție disponibilă"
-#: ../../install_steps_interactive.pm_.c:339
+#: ../../install_steps_interactive.pm_.c:341
msgid "Scanning partitions to find mount points"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:347
+#: ../../install_steps_interactive.pm_.c:349
msgid "Choose the mount points"
-msgstr "Alegeți punctele de montaj"
-
-#: ../../install_steps_interactive.pm_.c:366
-#, fuzzy, c-format
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to not allow DrakX to modify the partition table.\n"
-"(the error is %s)\n"
-"\n"
-"Do you agree to loose all the partitions?\n"
-msgstr ""
-"Nu pot citi tabloul de partiții, e prea deteriorat după mine :(\n"
-"Voi încerca să continui ștergînd partițiile greșite"
+msgstr "Alegeți punctele de montare"
#: ../../install_steps_interactive.pm_.c:379
msgid ""
-"DiskDrake failed to read correctly the partition table.\n"
-"Continue at your own risk!"
-msgstr ""
-"DiskDrake a eșuat la citirea corectă a tabloului de partiții.\n"
-"Continuați pe riscul dumneavoastră!"
-
-#: ../../install_steps_interactive.pm_.c:396
-msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:405
-#, fuzzy
+#: ../../install_steps_interactive.pm_.c:388
msgid "No root partition found to perform an upgrade"
-msgstr "N'am găsit nici o partiție root"
+msgstr "Nu am găsit nici o partiție root de actualizat"
-#: ../../install_steps_interactive.pm_.c:406
+#: ../../install_steps_interactive.pm_.c:389
msgid "Root Partition"
msgstr "Partiția Root"
-#: ../../install_steps_interactive.pm_.c:407
+#: ../../install_steps_interactive.pm_.c:390
msgid "What is the root partition (/) of your system?"
msgstr "Care e partiția root (/) a sistemului dumneavoastră?"
-#: ../../install_steps_interactive.pm_.c:421
+#: ../../install_steps_interactive.pm_.c:404
msgid "You need to reboot for the partition table modifications to take place"
msgstr ""
"Trebuie să redemarați pentru a înregistra modificările tabloului de partiții"
-#: ../../install_steps_interactive.pm_.c:445
+#: ../../install_steps_interactive.pm_.c:428
msgid "Choose the partitions you want to format"
msgstr "Alegeți partițiile pe care doriți sa le formataăi"
-#: ../../install_steps_interactive.pm_.c:446
+#: ../../install_steps_interactive.pm_.c:429
msgid "Check bad blocks?"
msgstr "Să verific blocurile defectuoase?"
-#: ../../install_steps_interactive.pm_.c:473
+#: ../../install_steps_interactive.pm_.c:456
msgid "Formatting partitions"
msgstr "Formatarea partițiilor"
-#: ../../install_steps_interactive.pm_.c:475
+#: ../../install_steps_interactive.pm_.c:458
#, c-format
msgid "Creating and formatting file %s"
msgstr "Crearea și formatarea fișierului %s"
-#: ../../install_steps_interactive.pm_.c:480
+#: ../../install_steps_interactive.pm_.c:463
#, c-format
msgid ""
"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
"you can loose data)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:482
+#: ../../install_steps_interactive.pm_.c:465
msgid "Not enough swap space to fulfill installation, please add some"
msgstr "Swap insuficient pentru a termina instalarea, mai adăugați ceva"
-#: ../../install_steps_interactive.pm_.c:489
-#, fuzzy
+#: ../../install_steps_interactive.pm_.c:472
msgid "Looking for available packages and rebuilding rpm database..."
-msgstr "Căutarea pachetelor disponibile"
+msgstr "Căutare pachete disponibile și reconstrucție bază de date RPM..."
-#: ../../install_steps_interactive.pm_.c:490
+#: ../../install_steps_interactive.pm_.c:473
msgid "Looking for available packages..."
msgstr "Căutarea pachetelor disponibile"
-#: ../../install_steps_interactive.pm_.c:493
-#, fuzzy
+#: ../../install_steps_interactive.pm_.c:476
msgid "Looking at packages already installed..."
-msgstr "Nu puteți deselecta aces pachet. E deja instalat"
+msgstr "Căutare pachetele instalate deja ..."
-#: ../../install_steps_interactive.pm_.c:497
+#: ../../install_steps_interactive.pm_.c:480
msgid "Finding packages to upgrade..."
msgstr "Cautarea pachetelor de actualizat"
-#: ../../install_steps_interactive.pm_.c:515
-#, fuzzy, c-format
+#: ../../install_steps_interactive.pm_.c:498
+#, c-format
msgid ""
"Your system does not have enough space left for installation or upgrade (%d "
"> %d)"
msgstr ""
-"Sistemul dumneavoastră nu ar destul spațiu disponibil pentru instalare\n"
-"sau actualizare"
+"Sistemul dumneavoastră nu are destul spațiu disponibil pentru instalare\n"
+"sau actualizare (%d > %d)"
-#: ../../install_steps_interactive.pm_.c:550
+#: ../../install_steps_interactive.pm_.c:534
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:553
-#, fuzzy
+#: ../../install_steps_interactive.pm_.c:537
msgid "Load from floppy"
-msgstr "Restaurează din dischetă"
+msgstr "Încarcă de pe dischetă"
-#: ../../install_steps_interactive.pm_.c:555
-#, fuzzy
+#: ../../install_steps_interactive.pm_.c:539
msgid "Loading from floppy"
-msgstr "Restaurează din dischetă"
+msgstr "Încarc de pe dischetă"
-#: ../../install_steps_interactive.pm_.c:555
-#, fuzzy
+#: ../../install_steps_interactive.pm_.c:539
msgid "Package selection"
-msgstr "Selectarea grupurilor de pachete"
+msgstr "Selectare pachete"
-#: ../../install_steps_interactive.pm_.c:560
-#, fuzzy
+#: ../../install_steps_interactive.pm_.c:544
msgid "Insert a floppy containing package selection"
-msgstr "Introduceți o dischetă în perifericul %s"
+msgstr "Introduceți o dischetă ce conține selecția pachetelor"
-#: ../../install_steps_interactive.pm_.c:572
+#: ../../install_steps_interactive.pm_.c:556
msgid "Save on floppy"
-msgstr "Înregistreaza pe dischetă"
+msgstr "Înregistrează pe dischetă"
-#: ../../install_steps_interactive.pm_.c:646
+#: ../../install_steps_interactive.pm_.c:630
msgid "Selected size is larger than available space"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:660
-#, fuzzy
+#: ../../install_steps_interactive.pm_.c:644
msgid "Type of install"
-msgstr "Alegeți pachetul de instalat"
+msgstr "Tip instalare"
-#: ../../install_steps_interactive.pm_.c:661
+#: ../../install_steps_interactive.pm_.c:645
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:664
-#, fuzzy
+#: ../../install_steps_interactive.pm_.c:648
msgid "With X"
-msgstr "Așteptare"
+msgstr "Cu X"
-#: ../../install_steps_interactive.pm_.c:666
+#: ../../install_steps_interactive.pm_.c:650
msgid "With basic documentation (recommended!)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:667
+#: ../../install_steps_interactive.pm_.c:651
msgid "Truly minimal install (especially no urpmi)"
-msgstr ""
+msgstr "Instalare cu adevărat minimă (în mod expres fără urpmi)"
-#: ../../install_steps_interactive.pm_.c:752
+#: ../../install_steps_interactive.pm_.c:736
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
"If only some CDs are missing, unselect them, then click Ok."
msgstr ""
"Dacă aveți toate CD-urile din lista de mai jos, apăsați Ok.\n"
-"Dacă nu aveți nici unul din aceste CD-uri, apăsați Anulează.\n"
+"Dacă nu aveți nici unul din aceste CD-uri, apăsați Renunță.\n"
"Dacă nu vă lispsesc decît cîteva CD-uri, deselectați-le și faceți click pe "
"Ok."
-#: ../../install_steps_interactive.pm_.c:757
+#: ../../install_steps_interactive.pm_.c:741
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "Cd-Rom etichetat \"%s\""
-#: ../../install_steps_interactive.pm_.c:778
+#: ../../install_steps_interactive.pm_.c:762
msgid "Preparing installation"
msgstr "Pregătesc instalarea"
-#: ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:771
#, c-format
msgid ""
"Installing package %s\n"
@@ -4704,21 +4640,21 @@ msgstr ""
"instalarea pachetului %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:833
+#: ../../install_steps_interactive.pm_.c:817
msgid "Post-install configuration"
msgstr "Configurație post-install"
-#: ../../install_steps_interactive.pm_.c:839
-#, fuzzy, c-format
+#: ../../install_steps_interactive.pm_.c:823
+#, c-format
msgid "Please insert the Boot floppy used in drive %s"
-msgstr "Introduceți o dischetă în perifericul %s"
+msgstr "Introduceți discheta de pornire (de Boot) folosită în perifericul %s"
-#: ../../install_steps_interactive.pm_.c:845
-#, fuzzy, c-format
+#: ../../install_steps_interactive.pm_.c:829
+#, c-format
msgid "Please insert the Update Modules floppy in drive %s"
-msgstr "Introduceți uo dischetă goală în perifericul %s"
+msgstr "Introduceți discheta cu module actualizate în perifericul %s"
-#: ../../install_steps_interactive.pm_.c:865
+#: ../../install_steps_interactive.pm_.c:849
msgid ""
"You now have the opportunity to download encryption software.\n"
"\n"
@@ -4757,7 +4693,7 @@ msgid ""
"USA"
msgstr ""
"Aveți acum posibilitatea de a recupera de pe Internet programele destinate\n"
-"criptajului.\n"
+"criptării.\n"
"\n"
"AVERTISMENT:\n"
"\n"
@@ -4771,7 +4707,7 @@ msgstr ""
"\n"
"În nici un caz MandrakeSoft sau unul dintre fabricanții săi și/sau\n"
"furnizorii săi n'ar putea să poarte responsabilitatea unor deteriorări\n"
-"indirecte sau accidentale (incluzînd, dar fără as e limita la pierderi\n"
+"indirecte sau accidentale (incluzînd, dar fără a se limita la pierderi\n"
"sau profituri, întreruperi de afaceri, pierdere a datelor comerciale și\n"
"alte pierderi și unele indemnizări eventuale din cauza unor decizii)\n"
"suscitate în urma folosirii, posesiei, sau a simplei recuperări a acestor\n"
@@ -4785,7 +4721,7 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:904
+#: ../../install_steps_interactive.pm_.c:888
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
"have been released after the distribution was released. They may\n"
@@ -4797,169 +4733,160 @@ msgid ""
"Do you want to install the updates ?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:919
-#, fuzzy
+#: ../../install_steps_interactive.pm_.c:903
msgid ""
"Contacting Mandrake Linux web site to get the list of available mirrors..."
-msgstr "Contactarea oglinzii pentru recuperarea pachetelor disponibile"
+msgstr ""
+"Contactez situl Mandrake Linux pentru obținerea listei oglinzilor "
+"disponibile..."
-#: ../../install_steps_interactive.pm_.c:924
+#: ../../install_steps_interactive.pm_.c:908
msgid "Choose a mirror from which to get the packages"
-msgstr "Alegeți o oglindă de la care să recuperați pachetele"
+msgstr "Alegeți o oglindă de la care să descărcați pachetele"
-#: ../../install_steps_interactive.pm_.c:933
+#: ../../install_steps_interactive.pm_.c:917
msgid "Contacting the mirror to get the list of available packages..."
-msgstr "Contactarea oglinzii pentru recuperarea pachetelor disponibile"
+msgstr ""
+"Contactez serverul oglindă pentru preluarea listei pachetelor disponibile..."
-#: ../../install_steps_interactive.pm_.c:960
-#, fuzzy
+#: ../../install_steps_interactive.pm_.c:945
msgid "Which is your timezone?"
-msgstr "Care e folosința sistemului dumneavoastră?"
+msgstr "Care este zona dvs. de timp?"
-#: ../../install_steps_interactive.pm_.c:965
-#, fuzzy
+#: ../../install_steps_interactive.pm_.c:950
msgid "Hardware clock set to GMT"
-msgstr "Ceasul dumneavoastră hardware e fixat la GMT?"
+msgstr "Ceas hardware fixat la GMT"
-#: ../../install_steps_interactive.pm_.c:966
+#: ../../install_steps_interactive.pm_.c:951
msgid "Automatic time synchronization (using NTP)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:973
-#, fuzzy
+#: ../../install_steps_interactive.pm_.c:958
msgid "NTP Server"
-msgstr "Server NIS"
+msgstr "Server NTP"
-#: ../../install_steps_interactive.pm_.c:1007
-#: ../../install_steps_interactive.pm_.c:1015
-#, fuzzy
+#: ../../install_steps_interactive.pm_.c:992
+#: ../../install_steps_interactive.pm_.c:1000
msgid "Remote CUPS server"
-msgstr "Coadă distantă:"
+msgstr "Coadă imprimare CUPS la distanță:"
-#: ../../install_steps_interactive.pm_.c:1008
-#, fuzzy
+#: ../../install_steps_interactive.pm_.c:993
msgid "No printer"
-msgstr "Imprimantă locală"
+msgstr "Fără imprimantă"
-#: ../../install_steps_interactive.pm_.c:1025
-#, fuzzy
+#: ../../install_steps_interactive.pm_.c:1010
msgid "Do you have an ISA sound card?"
-msgstr "Aveți o altă interfața?"
+msgstr "Aveți o cartelă de sunet ISA?"
-#: ../../install_steps_interactive.pm_.c:1027
+#: ../../install_steps_interactive.pm_.c:1012
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1029
+#: ../../install_steps_interactive.pm_.c:1014
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
+"Nu am detectat nici o cartelă de sunet. Încercați \"harddrake\" după "
+"instalare"
-#: ../../install_steps_interactive.pm_.c:1034 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1019 ../../steps.pm_.c:27
msgid "Summary"
-msgstr ""
+msgstr "Sumar"
-#: ../../install_steps_interactive.pm_.c:1037
-#, fuzzy
+#: ../../install_steps_interactive.pm_.c:1022
msgid "Mouse"
-msgstr "Mouse USB"
+msgstr "Mouse"
-#: ../../install_steps_interactive.pm_.c:1039
+#: ../../install_steps_interactive.pm_.c:1024
msgid "Timezone"
-msgstr ""
+msgstr "Zona de timp"
-#: ../../install_steps_interactive.pm_.c:1040 ../../printerdrake.pm_.c:2728
-#: ../../printerdrake.pm_.c:2814
+#: ../../install_steps_interactive.pm_.c:1025 ../../printerdrake.pm_.c:2937
+#: ../../printerdrake.pm_.c:3026
msgid "Printer"
msgstr "Imprimantă"
-#: ../../install_steps_interactive.pm_.c:1042
+#: ../../install_steps_interactive.pm_.c:1027
msgid "ISDN card"
-msgstr ""
+msgstr "Cartelă ISDN"
-#: ../../install_steps_interactive.pm_.c:1045
-#: ../../install_steps_interactive.pm_.c:1047
+#: ../../install_steps_interactive.pm_.c:1030
+#: ../../install_steps_interactive.pm_.c:1032
msgid "Sound card"
-msgstr ""
+msgstr "Cartelă de sunet"
-#: ../../install_steps_interactive.pm_.c:1049
+#: ../../install_steps_interactive.pm_.c:1034
msgid "TV card"
-msgstr ""
+msgstr "Cartelă TV"
-#: ../../install_steps_interactive.pm_.c:1089
-#: ../../install_steps_interactive.pm_.c:1114
-#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1074
+#: ../../install_steps_interactive.pm_.c:1099
+#: ../../install_steps_interactive.pm_.c:1103
msgid "LDAP"
-msgstr ""
+msgstr "LDAP"
-#: ../../install_steps_interactive.pm_.c:1090
-#: ../../install_steps_interactive.pm_.c:1114
-#: ../../install_steps_interactive.pm_.c:1127
-#, fuzzy
+#: ../../install_steps_interactive.pm_.c:1075
+#: ../../install_steps_interactive.pm_.c:1099
+#: ../../install_steps_interactive.pm_.c:1112
msgid "NIS"
-msgstr "Folosește NIS"
+msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1091
-#: ../../install_steps_interactive.pm_.c:1114
-#: ../../install_steps_interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1141
-#, fuzzy
+#: ../../install_steps_interactive.pm_.c:1076
+#: ../../install_steps_interactive.pm_.c:1099
+#: ../../install_steps_interactive.pm_.c:1120
+#: ../../install_steps_interactive.pm_.c:1126
msgid "Windows Domain"
-msgstr "Domeniu NIS"
+msgstr "Domeniu Windows"
-#: ../../install_steps_interactive.pm_.c:1092
-#: ../../install_steps_interactive.pm_.c:1114
-#, fuzzy
+#: ../../install_steps_interactive.pm_.c:1077
+#: ../../install_steps_interactive.pm_.c:1099
msgid "Local files"
-msgstr "Imprimantă locală"
+msgstr "Fișiere locale"
-#: ../../install_steps_interactive.pm_.c:1101
-#: ../../install_steps_interactive.pm_.c:1102 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1086
+#: ../../install_steps_interactive.pm_.c:1087 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Alegeți parola pentru root"
-#: ../../install_steps_interactive.pm_.c:1103
+#: ../../install_steps_interactive.pm_.c:1088
msgid "No password"
msgstr "Nici o parolă"
-#: ../../install_steps_interactive.pm_.c:1108
+#: ../../install_steps_interactive.pm_.c:1093
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr ""
-"Această parole e prea simplă (ar trebui să fie de cel puțin %d caractere)"
+"Această parolă e prea simplă (ar trebui să fie de cel puțin %d caractere)"
-#: ../../install_steps_interactive.pm_.c:1114 ../../network/modem.pm_.c:49
+#: ../../install_steps_interactive.pm_.c:1099 ../../network/modem.pm_.c:49
#: ../../standalone/drakconnect_.c:625 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Autentificare"
-#: ../../install_steps_interactive.pm_.c:1122
-#, fuzzy
+#: ../../install_steps_interactive.pm_.c:1107
msgid "Authentication LDAP"
-msgstr "Autentificare"
+msgstr "Autentificare prin LDAP"
-#: ../../install_steps_interactive.pm_.c:1123
+#: ../../install_steps_interactive.pm_.c:1108
msgid "LDAP Base dn"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1124
-#, fuzzy
+#: ../../install_steps_interactive.pm_.c:1109
msgid "LDAP Server"
-msgstr "Server NIS"
+msgstr "Server LDAP"
-#: ../../install_steps_interactive.pm_.c:1130
-#, fuzzy
+#: ../../install_steps_interactive.pm_.c:1115
msgid "Authentication NIS"
msgstr "Autentificare NIS"
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1116
msgid "NIS Domain"
msgstr "Domeniu NIS"
-#: ../../install_steps_interactive.pm_.c:1132
+#: ../../install_steps_interactive.pm_.c:1117
msgid "NIS Server"
msgstr "Server NIS"
-#: ../../install_steps_interactive.pm_.c:1138
+#: ../../install_steps_interactive.pm_.c:1123
msgid ""
"For this to work for a W2K PDC, you will probably need to have the admin "
"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
@@ -4975,22 +4902,19 @@ msgid ""
"good."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1140
-#, fuzzy
+#: ../../install_steps_interactive.pm_.c:1125
msgid "Authentication Windows Domain"
-msgstr "Autentificare"
+msgstr "Autentificare în domeniu Windows"
-#: ../../install_steps_interactive.pm_.c:1142
-#, fuzzy
+#: ../../install_steps_interactive.pm_.c:1127
msgid "Domain Admin User Name"
-msgstr "Nume de conexiune"
+msgstr ""
-#: ../../install_steps_interactive.pm_.c:1143
+#: ../../install_steps_interactive.pm_.c:1128
msgid "Domain Admin Password"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1178
-#, fuzzy
+#: ../../install_steps_interactive.pm_.c:1163
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
"depending on the normal bootloader. This is useful if you don't want to "
@@ -5009,26 +4933,26 @@ msgid ""
msgstr ""
"O dischetă personalizată de demaraj permite un mod de a accede la sistemul\n"
"vostru Linux fără a depinde de gestionarul de demaraj normal. Acesta este \n"
-"util dacă nu doriți să instalați LILO (sau grub) în sistem sau dacâ alte \n"
+"util dacă nu doriți să instalați LILO (sau grub) în sistem sau dacă alte \n"
"sisteme șterg LILO sau dacă LILO nu funcționează în sistemul dumneavoastră.\n"
-"O dischetă personalizată poate fi de asemena folosită ca o imagine de\n"
-"depanaj, ceea ce permite recuperări mult mai ușoare în urmă unor pane "
+"O dischetă personalizată poate fi de asemenea folosită ca o imagine de\n"
+"depanaj, ceea ce permite recuperări mult mai ușoare în urma unor pane "
"severe.\n"
"Doriți să creați o dischetă de demaraj pentru sistemul dumneavoastră ?"
-#: ../../install_steps_interactive.pm_.c:1194
+#: ../../install_steps_interactive.pm_.c:1179
msgid "First floppy drive"
-msgstr "Primul periferic de dichetă"
+msgstr "Primul periferic de dischetă"
-#: ../../install_steps_interactive.pm_.c:1195
+#: ../../install_steps_interactive.pm_.c:1180
msgid "Second floppy drive"
msgstr "Al doilea periferic de dischetă"
-#: ../../install_steps_interactive.pm_.c:1196 ../../printerdrake.pm_.c:2277
+#: ../../install_steps_interactive.pm_.c:1181 ../../printerdrake.pm_.c:2470
msgid "Skip"
msgstr "Sari peste"
-#: ../../install_steps_interactive.pm_.c:1201
+#: ../../install_steps_interactive.pm_.c:1186
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5053,7 +4977,7 @@ msgstr ""
"Doriți să creați o dischetă de demaraj pentru sistemul dumneavoastră ?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1207
+#: ../../install_steps_interactive.pm_.c:1192
msgid ""
"\n"
"\n"
@@ -5062,29 +4986,29 @@ msgid ""
"because XFS needs a very large driver)."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1215
+#: ../../install_steps_interactive.pm_.c:1200
msgid "Sorry, no floppy drive available"
msgstr "Îmi pare rău dar nu găsesc nici un periferic de dischetă disponibil."
-#: ../../install_steps_interactive.pm_.c:1219
+#: ../../install_steps_interactive.pm_.c:1204
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr ""
-"Alegeți perifericul pe care-l doriți pentru a realiza un disc de demaraj."
+"Alegeți perifericul pe care-l doriți pentru a realiza un disc de demarare."
-#: ../../install_steps_interactive.pm_.c:1223
-#, fuzzy, c-format
+#: ../../install_steps_interactive.pm_.c:1208
+#, c-format
msgid "Insert a floppy in %s"
msgstr "Introduceți o dischetă în perifericul %s"
-#: ../../install_steps_interactive.pm_.c:1226
+#: ../../install_steps_interactive.pm_.c:1211
msgid "Creating bootdisk..."
-msgstr "Crearea dischetei de demaraj"
+msgstr "Crearea dischetei de demaraj..."
-#: ../../install_steps_interactive.pm_.c:1233
+#: ../../install_steps_interactive.pm_.c:1218
msgid "Preparing bootloader..."
-msgstr "Pegătirea gestionalului de demaraj"
+msgstr "Pegătirea gestionalului de demaraj..."
-#: ../../install_steps_interactive.pm_.c:1244
+#: ../../install_steps_interactive.pm_.c:1229
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5092,12 +5016,11 @@ msgid ""
" need to use BootX to boot your machine"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1250
-#, fuzzy
+#: ../../install_steps_interactive.pm_.c:1235
msgid "Do you want to use aboot?"
-msgstr "Vreți să folosiți SILO?"
+msgstr "Vreți să folosiți aboot?"
-#: ../../install_steps_interactive.pm_.c:1253
+#: ../../install_steps_interactive.pm_.c:1238
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -5105,17 +5028,16 @@ msgstr ""
"Eroare la instalrea lui aboot,\n"
"să încerc să forțați instalarea chiar dacă aceasta distruge prima partiție ?"
-#: ../../install_steps_interactive.pm_.c:1260
-#, fuzzy
+#: ../../install_steps_interactive.pm_.c:1245
msgid "Installing bootloader"
-msgstr "Instalați un gestionar de demaraj"
+msgstr "Instalare gestionar de demaraj"
-#: ../../install_steps_interactive.pm_.c:1266
-#, fuzzy
+#: ../../install_steps_interactive.pm_.c:1251
msgid "Installation of bootloader failed. The following error occured:"
-msgstr "Instalarea lui LILO a eșuat. Următoarea eroare a apărut:"
+msgstr ""
+"Instalarea gestionarului de demaraj a eșuat. A apărut următoarea eroare :"
-#: ../../install_steps_interactive.pm_.c:1274
+#: ../../install_steps_interactive.pm_.c:1259
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -5126,27 +5048,27 @@ msgid ""
"At your next boot you should see the bootloader prompt."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1308
+#: ../../install_steps_interactive.pm_.c:1293
#: ../../standalone/drakautoinst_.c:79
#, c-format
msgid "Insert a blank floppy in drive %s"
-msgstr "Introduceți uo dischetă goală în perifericul %s"
+msgstr "Introduceți o dischetă goală în perifericul %s"
-#: ../../install_steps_interactive.pm_.c:1312
+#: ../../install_steps_interactive.pm_.c:1297
msgid "Creating auto install floppy..."
-msgstr "Creati discheta de autoinstalare"
+msgstr "Creez discheta de autoinstalare..."
-#: ../../install_steps_interactive.pm_.c:1323
+#: ../../install_steps_interactive.pm_.c:1308
msgid ""
"Some steps are not completed.\n"
"\n"
"Do you really want to quit now?"
msgstr ""
-"Cîteva etape nu au fost completate.\n"
+"Câteva etape nu au fost terminate.\n"
"\n"
-"Chiar vreți să terminați acum?"
+"Chiar vreți să abandonați acum?"
-#: ../../install_steps_interactive.pm_.c:1334
+#: ../../install_steps_interactive.pm_.c:1319
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
@@ -5168,7 +5090,7 @@ msgstr ""